Commit 43b2561e authored by suhuiguang's avatar suhuiguang

1.新增问题流水表气瓶

parent 7e07602e
...@@ -94,10 +94,10 @@ public class CylinderQuestionInfoController extends BaseController { ...@@ -94,10 +94,10 @@ public class CylinderQuestionInfoController extends BaseController {
@TycloudOperation(ApiLevel = UserType.AGENCY, needAuth = false) @TycloudOperation(ApiLevel = UserType.AGENCY, needAuth = false)
@GetMapping(value = "/page") @GetMapping(value = "/page")
@ApiOperation(httpMethod = "GET", value = "问题信息列表分页查询", notes = "问题信息列表分页查询") @ApiOperation(httpMethod = "GET", value = "问题信息列表分页查询", notes = "问题信息列表分页查询")
public ResponseModel<Page<CylinderQuestionInfoDto>> queryForPage(@ApiParam(name = "页数") @RequestParam(value = "current") int current, public ResponseModel<Page<CylinderQuestionInfoDto>> queryForPage(@ApiParam(value = "页数") @RequestParam(value = "current") int current,
@ApiParam(name = "每页大小") @RequestParam(value = "size") int size, @ApiParam(value = "每页大小") @RequestParam(value = "size") int size,
@ApiParam(name = "问题类型枚举") @RequestParam(value = "questionType",required = false) String questionType, @ApiParam(value = "问题类型枚举") @RequestParam(value = "questionType",required = false) String questionType,
@ApiParam(name = "行政区域code") @RequestParam(value = "regionCode",required = false) String regionCode) { @ApiParam(value = "行政区域code") @RequestParam(value = "regionCode",required = false) String regionCode) {
Page<CylinderQuestionInfoDto> page = new Page<CylinderQuestionInfoDto>(); Page<CylinderQuestionInfoDto> page = new Page<CylinderQuestionInfoDto>();
page.setCurrent(current); page.setCurrent(current);
page.setSize(size); page.setSize(size);
......
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