|
@ -421,7 +421,7 @@ public class IcResiUserController implements ResultDataResolver { |
|
|
* @author yinzuomei |
|
|
* @author yinzuomei |
|
|
* @date 2021/10/28 10:29 上午 |
|
|
* @date 2021/10/28 10:29 上午 |
|
|
*/ |
|
|
*/ |
|
|
@MaskResponse(fieldNames = {"NAME", "MOBILE","ID_CARD"}, fieldsMaskType = {MaskResponse.MASK_TYPE_CHINESE_NAME,MaskResponse.MASK_TYPE_MOBILE, MaskResponse.MASK_TYPE_ID_CARD}) |
|
|
@MaskResponse(fieldNames = {"MOBILE","ID_CARD"}, fieldsMaskType = {MaskResponse.MASK_TYPE_MOBILE, MaskResponse.MASK_TYPE_ID_CARD}) |
|
|
@PostMapping("detail") |
|
|
@PostMapping("detail") |
|
|
public Result queryIcResiDetail(@LoginUser TokenDto tokenDto, @RequestBody IcResiDetailFormDTO pageFormDTO) { |
|
|
public Result queryIcResiDetail(@LoginUser TokenDto tokenDto, @RequestBody IcResiDetailFormDTO pageFormDTO) { |
|
|
//pageFormDTO.setCustomerId("45687aa479955f9d06204d415238f7cc");
|
|
|
//pageFormDTO.setCustomerId("45687aa479955f9d06204d415238f7cc");
|
|
@ -755,7 +755,7 @@ public class IcResiUserController implements ResultDataResolver { |
|
|
* @author zxc |
|
|
* @author zxc |
|
|
* @date 2021/11/3 9:21 上午 |
|
|
* @date 2021/11/3 9:21 上午 |
|
|
*/ |
|
|
*/ |
|
|
@MaskResponse(fieldNames = {"name", "mobile"}, fieldsMaskType = {MaskResponse.MASK_TYPE_CHINESE_NAME,MaskResponse.MASK_TYPE_MOBILE}) |
|
|
@MaskResponse(fieldNames = {"mobile"}, fieldsMaskType = {MaskResponse.MASK_TYPE_MOBILE}) |
|
|
@PostMapping("persondata") |
|
|
@PostMapping("persondata") |
|
|
public Result<PersonDataResultDTO> personData(@LoginUser TokenDto tokenDto, @RequestBody PersonDataFormDTO formDTO) { |
|
|
public Result<PersonDataResultDTO> personData(@LoginUser TokenDto tokenDto, @RequestBody PersonDataFormDTO formDTO) { |
|
|
formDTO.setCustomerId(tokenDto.getCustomerId()); |
|
|
formDTO.setCustomerId(tokenDto.getCustomerId()); |
|
@ -785,7 +785,7 @@ public class IcResiUserController implements ResultDataResolver { |
|
|
* @param tokenDto |
|
|
* @param tokenDto |
|
|
* @return 根据分类搜索 |
|
|
* @return 根据分类搜索 |
|
|
*/ |
|
|
*/ |
|
|
@MaskResponse(fieldNames = {"name", "mobile","idCard"}, fieldsMaskType = {MaskResponse.MASK_TYPE_CHINESE_NAME,MaskResponse.MASK_TYPE_MOBILE, MaskResponse.MASK_TYPE_ID_CARD}) |
|
|
@MaskResponse(fieldNames = {"mobile","idCard"}, fieldsMaskType = {MaskResponse.MASK_TYPE_MOBILE, MaskResponse.MASK_TYPE_ID_CARD}) |
|
|
@PostMapping("searchbycategory") |
|
|
@PostMapping("searchbycategory") |
|
|
public Result<PageData<SearchByNameResultDTO>> search(@RequestBody SearchByNameFormDTO formDTO, @LoginUser TokenDto tokenDto) { |
|
|
public Result<PageData<SearchByNameResultDTO>> search(@RequestBody SearchByNameFormDTO formDTO, @LoginUser TokenDto tokenDto) { |
|
|
formDTO.setCustomerId(tokenDto.getCustomerId()); |
|
|
formDTO.setCustomerId(tokenDto.getCustomerId()); |
|
@ -1045,7 +1045,7 @@ public class IcResiUserController implements ResultDataResolver { |
|
|
* @param resiUserId |
|
|
* @param resiUserId |
|
|
* @return |
|
|
* @return |
|
|
*/ |
|
|
*/ |
|
|
@MaskResponse(fieldNames = {"icUserName","mobile","idCard"}, fieldsMaskType = {MaskResponse.MASK_TYPE_CHINESE_NAME,MaskResponse.MASK_TYPE_MOBILE,MaskResponse.MASK_TYPE_ID_CARD}) |
|
|
@MaskResponse(fieldNames = {"mobile","idCard"}, fieldsMaskType = {MaskResponse.MASK_TYPE_MOBILE,MaskResponse.MASK_TYPE_ID_CARD}) |
|
|
@PostMapping("resi-brief/{resi-user-id}") |
|
|
@PostMapping("resi-brief/{resi-user-id}") |
|
|
public Result<IcResiUserBriefDTO> getResiBrief(@PathVariable("resi-user-id") String resiUserId, @LoginUser TokenDto loginUser) { |
|
|
public Result<IcResiUserBriefDTO> getResiBrief(@PathVariable("resi-user-id") String resiUserId, @LoginUser TokenDto loginUser) { |
|
|
String customerId = loginUser.getCustomerId(); |
|
|
String customerId = loginUser.getCustomerId(); |
|
|