|
|
@ -84,7 +84,64 @@ public class YiFengScreenController { |
|
|
|
private IcSeedPowerCompanyService icSeedPowerCompanyService; |
|
|
|
@Autowired |
|
|
|
private IcPartyMemberZxhService icPartyMemberZxhService; |
|
|
|
@Autowired |
|
|
|
private IcGovernActService icGovernActService; |
|
|
|
@Autowired |
|
|
|
private IcGovernServiceService icGovernServiceService; |
|
|
|
@Autowired |
|
|
|
private IcGovernUserService icGovernUserService; |
|
|
|
|
|
|
|
/** |
|
|
|
* @Description: 治理人员列表 |
|
|
|
* @param params: |
|
|
|
* @Return com.epmet.commons.tools.utils.Result<com.epmet.commons.tools.page.PageData < com.epmet.resi.partymember.dto.IcGovernUserDTO>> |
|
|
|
* @Author: lichao |
|
|
|
* @Date: 2024/4/8 09:29 |
|
|
|
*/ |
|
|
|
@GetMapping("governUserList") |
|
|
|
public Result<PageData<IcGovernUserDTO>> governUserList(@RequestParam Map<String, Object> params){ |
|
|
|
PageData<IcGovernUserDTO> page = icGovernUserService.page(params); |
|
|
|
return new Result<PageData<IcGovernUserDTO>>().ok(page); |
|
|
|
} |
|
|
|
@GetMapping("governUserDetail/{id}") |
|
|
|
public Result<IcGovernUserDTO> governUserDetail(@PathVariable("id") String id){ |
|
|
|
IcGovernUserDTO data = icGovernUserService.get(id); |
|
|
|
return new Result<IcGovernUserDTO>().ok(data); |
|
|
|
} |
|
|
|
/** |
|
|
|
* @Description: 治理服务列表 |
|
|
|
* @param params: |
|
|
|
* @Return com.epmet.commons.tools.utils.Result<com.epmet.commons.tools.page.PageData < com.epmet.resi.partymember.dto.partymember.IcGovernServiceDTO>> |
|
|
|
* @Author: lichao |
|
|
|
* @Date: 2024/4/8 09:28 |
|
|
|
*/ |
|
|
|
@GetMapping("governServiceList") |
|
|
|
public Result<PageData<IcGovernServiceDTO>> governServiceList(@RequestParam Map<String, Object> params){ |
|
|
|
PageData<IcGovernServiceDTO> page = icGovernServiceService.page(params); |
|
|
|
return new Result<PageData<IcGovernServiceDTO>>().ok(page); |
|
|
|
} |
|
|
|
@GetMapping("governServiceDetail/{id}") |
|
|
|
public Result<IcGovernServiceDTO> governServiceDetail(@PathVariable("id") String id){ |
|
|
|
IcGovernServiceDTO data = icGovernServiceService.get(id); |
|
|
|
return new Result<IcGovernServiceDTO>().ok(data); |
|
|
|
} |
|
|
|
/** |
|
|
|
* @Description: 治理活动列表 |
|
|
|
* @param params: |
|
|
|
* @Return com.epmet.commons.tools.utils.Result<com.epmet.commons.tools.page.PageData < com.epmet.resi.partymember.dto.IcGovernActDTO>> |
|
|
|
* @Author: lichao |
|
|
|
* @Date: 2024/4/8 09:27 |
|
|
|
*/ |
|
|
|
@GetMapping("governActList") |
|
|
|
public Result<PageData<IcGovernActDTO>> governActList(@RequestParam Map<String, Object> params){ |
|
|
|
PageData<IcGovernActDTO> page = icGovernActService.page(params); |
|
|
|
return new Result<PageData<IcGovernActDTO>>().ok(page); |
|
|
|
} |
|
|
|
@GetMapping("governActDetail/{id}") |
|
|
|
public Result<IcGovernActDTO> governActDetail(@PathVariable("id") String id){ |
|
|
|
IcGovernActDTO data = icGovernActService.get(id); |
|
|
|
return new Result<IcGovernActDTO>().ok(data); |
|
|
|
} |
|
|
|
/** |
|
|
|
* @Description: 党建中心户 |
|
|
|
* @param params: |
|
|
|