|
@ -444,4 +444,54 @@ public class ApiCustomInfoController { |
|
|
public Result addEnterpriseReport(@LoginUser TokenDto userDetail, @RequestBody EnterpriseReportAddFormDTO enterpriseReportAddFormDTO){ |
|
|
public Result addEnterpriseReport(@LoginUser TokenDto userDetail, @RequestBody EnterpriseReportAddFormDTO enterpriseReportAddFormDTO){ |
|
|
return customService.addEnterpriseReport(userDetail,enterpriseReportAddFormDTO); |
|
|
return customService.addEnterpriseReport(userDetail,enterpriseReportAddFormDTO); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* 大屏获取 一键直通 |
|
|
|
|
|
* |
|
|
|
|
|
* @param formDTO |
|
|
|
|
|
* @return com.elink.esua.epdc.commons.tools.utils.Result<java.util.List<com.elink.esua.epdc.dto.result.EpdcDeptInfoResultDTO>> |
|
|
|
|
|
* @Author lc |
|
|
|
|
|
* @Date 13:41 2020-05-20 |
|
|
|
|
|
**/ |
|
|
|
|
|
@GetMapping("screenJinShui/deptinfo/list") |
|
|
|
|
|
public Result<List<EpdcDeptInfoResultDTO>> screenListDeptInfo(EpdcDeptInfoFormDTO formDTO) { |
|
|
|
|
|
return customService.listDeptInfo(formDTO); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* @Description 大屏 获取有档案的归属部门列表 |
|
|
|
|
|
* @Author lc |
|
|
|
|
|
* @Date 2020/7/7 |
|
|
|
|
|
* @Param [formDTO] |
|
|
|
|
|
* @return com.elink.esua.epdc.commons.tools.utils.Result<java.util.List<com.elink.esua.epdc.dto.result.ArchiveDeptResultDTO>> |
|
|
|
|
|
**/ |
|
|
|
|
|
@GetMapping("screenJinShui/archive/depts") |
|
|
|
|
|
public Result<List<ArchiveDeptResultDTO>> screenListArchiveDeptInfo(ArchiveDeptFormDTO formDTO) { |
|
|
|
|
|
return customService.listArchiveDeptInfo(formDTO); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* @Description 大屏 获取档案列表 |
|
|
|
|
|
* @Author lc |
|
|
|
|
|
* @Date 2020/7/7 |
|
|
|
|
|
* @Param [formDTO] |
|
|
|
|
|
* @return com.elink.esua.epdc.commons.tools.utils.Result<java.util.List<com.elink.esua.epdc.dto.result.ArchiveDeptResultDTO>> |
|
|
|
|
|
**/ |
|
|
|
|
|
@GetMapping("screenJinShui/archive/list") |
|
|
|
|
|
public Result<List<ArchiveResultDTO>> screenListArchivesInfo(ArchiveFormDTO formDTO) { |
|
|
|
|
|
return customService.listArchivesInfo(formDTO); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* @Description 大屏 获取档案详情 |
|
|
|
|
|
* @Author songyunpeng |
|
|
|
|
|
* @Date 2020/7/7 |
|
|
|
|
|
* @Param [formDTO] |
|
|
|
|
|
* @return com.elink.esua.epdc.commons.tools.utils.Result<java.util.List<com.elink.esua.epdc.dto.result.ArchiveDeptResultDTO>> |
|
|
|
|
|
**/ |
|
|
|
|
|
@GetMapping("screenJinShui/archive/detail/{id}") |
|
|
|
|
|
public Result<ArchiveDetailResultDTO> getScreenArchiveDetail(@PathVariable("id") String id) { |
|
|
|
|
|
return customService.getArchiveDetail(id); |
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|