|
@ -32,8 +32,8 @@ public class DfDangerousTaskController { |
|
|
*/ |
|
|
*/ |
|
|
@ApiOperation("堤防病险工程核查任务列表") |
|
|
@ApiOperation("堤防病险工程核查任务列表") |
|
|
@PostMapping("/page") |
|
|
@PostMapping("/page") |
|
|
public Response<IPage<DfDangerousTaskDto>> listByPage(@RequestBody SearchParam<DfDangerousTaskSearchDto> sp) { |
|
|
public IPage<DfDangerousTaskDto> listByPage(@RequestBody SearchParam<DfDangerousTaskSearchDto> sp) { |
|
|
return Response.ok(dangerousTaskService.getListByPage(sp)); |
|
|
return dangerousTaskService.getListByPage(sp); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
@ -43,8 +43,8 @@ public class DfDangerousTaskController { |
|
|
*/ |
|
|
*/ |
|
|
@ApiOperation("堤防关联的安全鉴定列表") |
|
|
@ApiOperation("堤防关联的安全鉴定列表") |
|
|
@PostMapping("/salePage") |
|
|
@PostMapping("/salePage") |
|
|
public Response<IPage<DfAqjdProjecDto>> salePage(@RequestBody SearchParam<DfAqjdProjecDto> sp) { |
|
|
public IPage<DfAqjdProjecDto> salePage(@RequestBody SearchParam<DfAqjdProjecDto> sp) { |
|
|
return Response.ok(dangerousTaskService.getAqjdListByPage(sp)); |
|
|
return dangerousTaskService.getAqjdListByPage(sp); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|