|
|
@ -1,5 +1,6 @@ |
|
|
|
package com.epmet.controller; |
|
|
|
|
|
|
|
import com.epmet.commons.tools.annotation.MaskResponse; |
|
|
|
import com.epmet.commons.tools.exception.EpmetErrorCode; |
|
|
|
import com.epmet.commons.tools.exception.EpmetException; |
|
|
|
import com.epmet.commons.tools.page.PageData; |
|
|
@ -173,6 +174,8 @@ public class LingShanSpecialCrowdController { |
|
|
|
* @date: 2023/4/20 5:42 PM |
|
|
|
*/ |
|
|
|
@GetMapping("listSpecialCrowd") |
|
|
|
@MaskResponse(fieldNames = {"name", "mobile", "idCard"}, |
|
|
|
fieldsMaskType = { MaskResponse.MASK_TYPE_CHINESE_NAME, MaskResponse.MASK_TYPE_MOBILE, MaskResponse.MASK_TYPE_ID_CARD }) |
|
|
|
public Result<PageData<LingShanSpecialCrowdListResultDTO>> listSpecialCrowds(@RequestParam(value = "orgId", required = false) String orgId, |
|
|
|
@RequestParam(value = "orgType", required = false) String orgType, |
|
|
|
@RequestParam(value = "specialType", required = false) String specialType, |
|
|
|