|
@ -21,6 +21,7 @@ import com.epmet.commons.tools.utils.DateUtils; |
|
|
import com.epmet.commons.tools.utils.Result; |
|
|
import com.epmet.commons.tools.utils.Result; |
|
|
import com.epmet.commons.tools.validator.ValidatorUtils; |
|
|
import com.epmet.commons.tools.validator.ValidatorUtils; |
|
|
import com.epmet.dataaggre.beans.GridMemberDataAnalysisExcelExportBean; |
|
|
import com.epmet.dataaggre.beans.GridMemberDataAnalysisExcelExportBean; |
|
|
|
|
|
import com.epmet.dataaggre.dto.epmetuser.result.StaffSelectResDTO; |
|
|
import com.epmet.dataaggre.dto.govorg.CustomerAgencyDTO; |
|
|
import com.epmet.dataaggre.dto.govorg.CustomerAgencyDTO; |
|
|
import com.epmet.dataaggre.dto.govorg.CustomerGridDTO; |
|
|
import com.epmet.dataaggre.dto.govorg.CustomerGridDTO; |
|
|
import com.epmet.dataaggre.dto.govorg.form.*; |
|
|
import com.epmet.dataaggre.dto.govorg.form.*; |
|
@ -179,6 +180,18 @@ public class GovOrgController { |
|
|
return new Result<OrgStaffListResultDTO>().ok(govOrgService.staffList(formDTO)); |
|
|
return new Result<OrgStaffListResultDTO>().ok(govOrgService.staffList(formDTO)); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* 组织下的工作人员 下拉框 |
|
|
|
|
|
* |
|
|
|
|
|
* @param tokenDto |
|
|
|
|
|
* @param agencyId |
|
|
|
|
|
* @return |
|
|
|
|
|
*/ |
|
|
|
|
|
@PostMapping("staff-select-list/{agencyId}") |
|
|
|
|
|
public Result<List<StaffSelectResDTO>> staffSelectList(@LoginUser TokenDto tokenDto, @PathVariable("agencyId") String agencyId) { |
|
|
|
|
|
return new Result<List<StaffSelectResDTO>>().ok(govOrgService.staffSelectList(tokenDto.getCustomerId(), agencyId)); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
* @Param formDTO |
|
|
* @Param formDTO |
|
|
* @Description 获取当前组织下的【组织添加的】工作人员 组织/部门/网格下人员列表 |
|
|
* @Description 获取当前组织下的【组织添加的】工作人员 组织/部门/网格下人员列表 |
|
|