去掉未实现的查询所有数据接口
parent
335dc0f6a7
commit
5906ab39b5
|
|
@ -58,12 +58,6 @@ public class CorpInfoController {
|
||||||
return corpInfoService.listPage(qry);
|
return corpInfoService.listPage(qry);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ApiOperation("所有数据")
|
|
||||||
@PostMapping("/listAll")
|
|
||||||
public MultiResponse<CorpInfoCO> listAll() {
|
|
||||||
return MultiResponse.of(new ArrayList<CorpInfoCO>());
|
|
||||||
}
|
|
||||||
|
|
||||||
@ApiOperation("详情")
|
@ApiOperation("详情")
|
||||||
@PostMapping("/info/{id}")
|
@PostMapping("/info/{id}")
|
||||||
public SingleResponse<CorpInfoCO> getInfoById(@PathVariable("id") Long id) {
|
public SingleResponse<CorpInfoCO> getInfoById(@PathVariable("id") Long id) {
|
||||||
|
|
|
||||||
|
|
@ -46,12 +46,6 @@ public class CorpInfoXgfController {
|
||||||
return corpInfoXgfService.listPage(qry);
|
return corpInfoXgfService.listPage(qry);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ApiOperation(value = "所有数据",hidden = true)
|
|
||||||
@PostMapping("/listAll")
|
|
||||||
public MultiResponse<CorpInfoXgfCO> listAll() {
|
|
||||||
return MultiResponse.of(new ArrayList<CorpInfoXgfCO>());
|
|
||||||
}
|
|
||||||
|
|
||||||
@ApiOperation("相关方企业详情")
|
@ApiOperation("相关方企业详情")
|
||||||
@PostMapping("/info/{id}")
|
@PostMapping("/info/{id}")
|
||||||
public SingleResponse<CorpInfoXgfCO> getInfoById(@PathVariable("id") Long id) {
|
public SingleResponse<CorpInfoXgfCO> getInfoById(@PathVariable("id") Long id) {
|
||||||
|
|
|
||||||
|
|
@ -45,12 +45,6 @@ public class CorpQualificationInfoController {
|
||||||
return corpQualificationInfoService.listPage(qry);
|
return corpQualificationInfoService.listPage(qry);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ApiOperation("所有数据")
|
|
||||||
@PostMapping("/listAll")
|
|
||||||
public MultiResponse<CorpQualificationInfoCO> listAll() {
|
|
||||||
return MultiResponse.of(new ArrayList<CorpQualificationInfoCO>());
|
|
||||||
}
|
|
||||||
|
|
||||||
@ApiOperation("详情")
|
@ApiOperation("详情")
|
||||||
@PostMapping("/info/{id}")
|
@PostMapping("/info/{id}")
|
||||||
public SingleResponse<CorpQualificationInfoCO> getInfoById(@PathVariable("id") Long id) {
|
public SingleResponse<CorpQualificationInfoCO> getInfoById(@PathVariable("id") Long id) {
|
||||||
|
|
|
||||||
|
|
@ -52,13 +52,6 @@ public class DepartmentController {
|
||||||
return departmentService.listPage(qry);
|
return departmentService.listPage(qry);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ApiOperation("所有数据")
|
|
||||||
@PostMapping("/listAll")
|
|
||||||
public MultiResponse<DepartmentCO> listAll() {
|
|
||||||
// return deptFacade.getTreeByCurrentOrgId();
|
|
||||||
return MultiResponse.of(new ArrayList<DepartmentCO>());
|
|
||||||
}
|
|
||||||
|
|
||||||
@ApiOperation("部门详情")
|
@ApiOperation("部门详情")
|
||||||
@PostMapping("/info/{id}")
|
@PostMapping("/info/{id}")
|
||||||
public SingleResponse<DepartmentInfoCO> getInfoById(@PathVariable("id") Long id) {
|
public SingleResponse<DepartmentInfoCO> getInfoById(@PathVariable("id") Long id) {
|
||||||
|
|
|
||||||
|
|
@ -46,12 +46,6 @@ public class DepartmentSuperviseController {
|
||||||
return departmentSuperviseService.listPage(qry);
|
return departmentSuperviseService.listPage(qry);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ApiOperation("所有数据")
|
|
||||||
@GetMapping("/listAll")
|
|
||||||
public MultiResponse<DepartmentSuperviseCO> listAll() {
|
|
||||||
return MultiResponse.of(new ArrayList<DepartmentSuperviseCO>());
|
|
||||||
}
|
|
||||||
|
|
||||||
@ApiOperation("详情")
|
@ApiOperation("详情")
|
||||||
@GetMapping("/{id}")
|
@GetMapping("/{id}")
|
||||||
public SingleResponse<DepartmentSuperviseCO> getInfoById(@PathVariable("id") Long id) {
|
public SingleResponse<DepartmentSuperviseCO> getInfoById(@PathVariable("id") Long id) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue