|
|
@ -426,6 +426,7 @@ public class IcResiUserController implements ResultDataResolver { |
|
|
|
* @author yinzuomei |
|
|
|
* @date 2021/10/28 10:29 上午 |
|
|
|
*/ |
|
|
|
@MaskResponse(fieldNames = {"MOBILE","ID_CARD"}, fieldsMaskType = {MaskResponse.MASK_TYPE_MOBILE, MaskResponse.MASK_TYPE_ID_CARD}) |
|
|
|
@PostMapping("detail") |
|
|
|
public Result queryIcResiDetail(@LoginUser TokenDto tokenDto, @RequestBody IcResiDetailFormDTO pageFormDTO) { |
|
|
|
//pageFormDTO.setCustomerId("45687aa479955f9d06204d415238f7cc");
|
|
|
@ -773,6 +774,7 @@ public class IcResiUserController implements ResultDataResolver { |
|
|
|
* @author zxc |
|
|
|
* @date 2021/11/3 9:21 上午 |
|
|
|
*/ |
|
|
|
@MaskResponse(fieldNames = {"mobile"}, fieldsMaskType = {MaskResponse.MASK_TYPE_MOBILE}) |
|
|
|
@PostMapping("persondata") |
|
|
|
public Result<PersonDataResultDTO> personData(@LoginUser TokenDto tokenDto, @RequestBody PersonDataFormDTO formDTO) { |
|
|
|
formDTO.setCustomerId(tokenDto.getCustomerId()); |
|
|
@ -802,6 +804,7 @@ public class IcResiUserController implements ResultDataResolver { |
|
|
|
* @param tokenDto |
|
|
|
* @return 根据分类搜索 |
|
|
|
*/ |
|
|
|
@MaskResponse(fieldNames = {"mobile","idCard"}, fieldsMaskType = {MaskResponse.MASK_TYPE_MOBILE, MaskResponse.MASK_TYPE_ID_CARD}) |
|
|
|
@PostMapping("searchbycategory") |
|
|
|
public Result<PageData<SearchByNameResultDTO>> search(@RequestBody SearchByNameFormDTO formDTO, @LoginUser TokenDto tokenDto) { |
|
|
|
formDTO.setCustomerId(tokenDto.getCustomerId()); |
|
|
@ -914,7 +917,7 @@ public class IcResiUserController implements ResultDataResolver { |
|
|
|
* @Date 2021/12/10 17:54 |
|
|
|
*/ |
|
|
|
@PostMapping("partymemberagelist") |
|
|
|
@MaskResponse(fieldNames = {"mobile"}, fieldsMaskType = {MaskResponse.MASK_TYPE_MOBILE}) |
|
|
|
@MaskResponse(fieldNames = {"name","mobile"}, fieldsMaskType = {MaskResponse.MASK_TYPE_CHINESE_NAME,MaskResponse.MASK_TYPE_MOBILE}) |
|
|
|
public Result<PageData<PartyMemberAgeResultDTO>> partyMemberAgelist(@RequestBody PartyMemberListFormDTO formDTO) { |
|
|
|
ValidatorUtils.validateEntity(formDTO); |
|
|
|
return new Result<PageData<PartyMemberAgeResultDTO>>().ok(icResiUserService.getPartyMemberAgeList(formDTO)); |
|
|
@ -993,7 +996,7 @@ public class IcResiUserController implements ResultDataResolver { |
|
|
|
* @Date 2021/12/10 17:58 |
|
|
|
*/ |
|
|
|
@PostMapping("partymembereducationlist") |
|
|
|
@MaskResponse(fieldNames = {"mobile"}, fieldsMaskType = {MaskResponse.MASK_TYPE_MOBILE}) |
|
|
|
@MaskResponse(fieldNames = {"name","mobile"}, fieldsMaskType = {MaskResponse.MASK_TYPE_CHINESE_NAME,MaskResponse.MASK_TYPE_MOBILE}) |
|
|
|
public Result<PageData<PartyMemberEducationResultDTO>> partyMemberEducationlist(@RequestBody PartyMemberListFormDTO formDTO) { |
|
|
|
ValidatorUtils.validateEntity(formDTO); |
|
|
|
return new Result<PageData<PartyMemberEducationResultDTO>>().ok(icResiUserService.getPartyMemberEducationList(formDTO)); |
|
|
@ -1061,6 +1064,7 @@ public class IcResiUserController implements ResultDataResolver { |
|
|
|
* @param resiUserId |
|
|
|
* @return |
|
|
|
*/ |
|
|
|
@MaskResponse(fieldNames = {"mobile","idCard"}, fieldsMaskType = {MaskResponse.MASK_TYPE_MOBILE,MaskResponse.MASK_TYPE_ID_CARD}) |
|
|
|
@PostMapping("resi-brief/{resi-user-id}") |
|
|
|
public Result<IcResiUserBriefDTO> getResiBrief(@PathVariable("resi-user-id") String resiUserId, @LoginUser TokenDto loginUser) { |
|
|
|
String customerId = loginUser.getCustomerId(); |
|
|
@ -1435,6 +1439,7 @@ public class IcResiUserController implements ResultDataResolver { |
|
|
|
* @Author sun |
|
|
|
* @Description 【人房概览】居民统计数点击查询列表 |
|
|
|
**/ |
|
|
|
@MaskResponse(fieldNames = {"mobile", "idCard"},fieldsMaskType = {MaskResponse.MASK_TYPE_MOBILE, MaskResponse.MASK_TYPE_ID_CARD}) |
|
|
|
@PostMapping("icuserstatislist") |
|
|
|
public Result<PageData<SearchByNameResultDTO>> icUserStatisList(@LoginUser TokenDto tokenDto, @RequestBody UserChartFormDTO formDTO) { |
|
|
|
formDTO.setCustomerId(tokenDto.getCustomerId()); |
|
|
|