Merge branch 'refs/heads/dev' into dev-二期封板
This commit is contained in:
@@ -49,7 +49,6 @@ import com.ebiz.component.base.service.ConfigCodeService;
|
||||
import com.ebiz.component.dto.InterfaceExecuteDTO;
|
||||
import com.ebiz.component.service.InterfaceInfoExService;
|
||||
import com.ebiz.component.utils.IdNumberDesensitizer;
|
||||
import com.ebiz.component.utils.MobileDesensitizer;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.apache.commons.lang3.ObjectUtils;
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
@@ -417,7 +416,7 @@ public class SysUserExServiceImpl implements SysUserExService {
|
||||
.setParams(Arrays.asList(
|
||||
customerInfo.getCustomerNo(),
|
||||
customerInfo.getName(),
|
||||
MobileDesensitizer.desensitizeMobile(customerInfo.getMobile()),
|
||||
"",
|
||||
customerInfo.getIdType(),
|
||||
IdNumberDesensitizer.desensitizeIdNumber(customerInfo.getIdNo()),
|
||||
activationCode)
|
||||
@@ -494,7 +493,7 @@ public class SysUserExServiceImpl implements SysUserExService {
|
||||
addYjyFamilyMemberList.add(new JSONObject()
|
||||
.fluentPut("name", addCustomerFamilyMemberDTO.getName())
|
||||
.fluentPut("sex", StringUtils.equals(addCustomerFamilyMemberDTO.getGender(), "0") ? "1" : "2")
|
||||
.fluentPut("phone", MobileDesensitizer.desensitizeMobile(addCustomerFamilyMemberDTO.getMobile()))
|
||||
.fluentPut("phone", "")
|
||||
.fluentPut("id_type", addCustomerFamilyMemberDTO.getIdType())
|
||||
.fluentPut("id_no", IdNumberDesensitizer.desensitizeIdNumber(addCustomerFamilyMemberDTO.getIdNo()))
|
||||
.fluentPut("birthday", addCustomerFamilyMemberDTO.getBirthDate())
|
||||
|
||||
@@ -30,7 +30,6 @@ import com.ebiz.component.dto.InterfaceExecuteDTO;
|
||||
import com.ebiz.component.service.InterfaceInfoExService;
|
||||
import com.ebiz.component.service.impl.YjyEncryptServiceImpl;
|
||||
import com.ebiz.component.utils.IdNumberDesensitizer;
|
||||
import com.ebiz.component.utils.MobileDesensitizer;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.data.redis.core.StringRedisTemplate;
|
||||
@@ -93,7 +92,7 @@ public class YjyBenefitApiServiceImpl implements BenefitApiService {
|
||||
.setParams(Arrays.asList(
|
||||
customerInfo.getCustomerNo(), // out_user_id: 第三方用户ID,用于标识用户的唯一参数, 传表里面的用户id(客户号可能会变)
|
||||
customerInfo.getName(), // out_username: 姓名
|
||||
MobileDesensitizer.desensitizeMobile(customerInfo.getMobile()), // out_phone: 手机号
|
||||
"", // out_phone: 手机号
|
||||
IdTypeEnum.getYjyCodeByCode(customerInfo.getIdType()), // out_id_type: 证件类型
|
||||
IdNumberDesensitizer.desensitizeIdNumber(customerInfo.getIdNo()),
|
||||
orderId, // 订单号: out_order_no
|
||||
|
||||
Reference in New Issue
Block a user