Commit 980f130f authored by liuChang's avatar liuChang

导出优化

parent 0e7d902d
...@@ -45,7 +45,7 @@ public class ExportController { ...@@ -45,7 +45,7 @@ public class ExportController {
/* /*
* 企业基本信息表导出 * 企业基本信息表导出
*/ */
@PostMapping("/enterpriseInfo/export") @PostMapping("/enterprise/info")
public void enterpriseInfoExport(@RequestBody JSONObject object) { public void enterpriseInfoExport(@RequestBody JSONObject object) {
ComposeQueryDto compose = com.alibaba.fastjson2.JSONObject.parseObject(object.toJSONString(), ComposeQueryDto.class); ComposeQueryDto compose = com.alibaba.fastjson2.JSONObject.parseObject(object.toJSONString(), ComposeQueryDto.class);
if (StringUtils.isEmpty(compose.getExportExeclName())){ if (StringUtils.isEmpty(compose.getExportExeclName())){
...@@ -57,7 +57,7 @@ public class ExportController { ...@@ -57,7 +57,7 @@ public class ExportController {
/* /*
* 企业资质表导出 * 企业资质表导出
*/ */
@PostMapping("/aptitude/export") @PostMapping("/aptitude")
public void enterpriseAptitudeExport(@RequestBody JSONObject object) { public void enterpriseAptitudeExport(@RequestBody JSONObject object) {
ComposeQueryDto compose = com.alibaba.fastjson2.JSONObject.parseObject(object.toJSONString(), ComposeQueryDto.class); ComposeQueryDto compose = com.alibaba.fastjson2.JSONObject.parseObject(object.toJSONString(), ComposeQueryDto.class);
if (StringUtils.isEmpty(compose.getExportExeclName())){ if (StringUtils.isEmpty(compose.getExportExeclName())){
...@@ -69,7 +69,7 @@ public class ExportController { ...@@ -69,7 +69,7 @@ public class ExportController {
/* /*
* 重点项目清单导出 * 重点项目清单导出
*/ */
@RequestMapping("/important/export") @RequestMapping("/important")
public void exportImportant(@RequestBody JSONObject object) { public void exportImportant(@RequestBody JSONObject object) {
ComposeQueryDto compose = com.alibaba.fastjson2.JSONObject.parseObject(object.toJSONString(), ComposeQueryDto.class); ComposeQueryDto compose = com.alibaba.fastjson2.JSONObject.parseObject(object.toJSONString(), ComposeQueryDto.class);
if (StringUtils.isEmpty(compose.getExportExeclName())){ if (StringUtils.isEmpty(compose.getExportExeclName())){
...@@ -81,7 +81,7 @@ public class ExportController { ...@@ -81,7 +81,7 @@ public class ExportController {
/** /**
* 集团成员列表导出 * 集团成员列表导出
*/ */
@PostMapping("/combine/memberList/export") @PostMapping("/combine/memberList")
public void memberListExportPre(@RequestBody JskCombineSearchDto dto) throws Exception { public void memberListExportPre(@RequestBody JskCombineSearchDto dto) throws Exception {
exportService.memberListExport(dto); exportService.memberListExport(dto);
} }
...@@ -101,13 +101,13 @@ public class ExportController { ...@@ -101,13 +101,13 @@ public class ExportController {
} }
//查城投平台导出 //查城投平台导出
@PostMapping(value = "/uipSerach/export") @PostMapping(value = "/uipSerach")
public void uipSerachExport(@RequestBody @Valid EnterpriseUipSearchBody vo) throws Exception { public void uipSerachExport(@RequestBody @Valid EnterpriseUipSearchBody vo) throws Exception {
exportService.uipSerachExport(vo); exportService.uipSerachExport(vo);
} }
//市场经济 城投平台导出 //市场经济 城投平台导出
@PostMapping("/urbanInvestmentPlatform/export") @PostMapping("/urbanInvestmentPlatform")
public void export(@RequestBody UrbanInvestmentPlatformDto dto) { public void export(@RequestBody UrbanInvestmentPlatformDto dto) {
exportService.export(dto); exportService.export(dto);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment