Commit c9c4ee47 by wangweidong

土工试验修改

parent 5052d786
......@@ -71,6 +71,21 @@ public class SoilSampleController extends ServiceController {
}
@ApiOperation(value = "样品留存查询", notes = "样品留存查询")
@ApiImplicitParams({
@ApiImplicitParam(name = RestConstants.PAGE_PAGE, value = "请求数据的页码", required = true, paramType = "query", dataType = "int"),
@ApiImplicitParam(name = RestConstants.PAGE_ROWS, value = "每页条数", required = true, paramType = "query", dataType = "int"),
@ApiImplicitParam(name = RestConstants.PAGE_SIDX, value = "排序字段", paramType = "query", dataType = "String"),
@ApiImplicitParam(name = RestConstants.PAGE_SORD, value = "排序方式", paramType = "query", dataType = "String"),
})
@PostMapping("/page_retain")
public RestResult<Page<SoilSampleVO>> getPageRetain(SoilSampleVO soilSample) {
soilSample.setStatus(SoilSampleStatusEnum.RETAIN);
return success(soilSampleService.pageVO(getPage(), soilSample));
}
@ApiOperation(value = "收样历史分页列表", notes = "收样历史分页列表")
@ApiImplicitParams({
@ApiImplicitParam(name = RestConstants.PAGE_PAGE, value = "请求数据的页码", required = true, paramType = "query", dataType = "int"),
......
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