Commit 7efabce9 authored by 曹盼盼's avatar 曹盼盼

分页

parent 5c742fa7
......@@ -143,7 +143,9 @@ public class QualityProblemController extends BaseController {
@TycloudOperation(ApiLevel = UserType.AGENCY,needAuth = false)
@RequestMapping(value = "/pageList", method = RequestMethod.GET)
@ApiOperation(httpMethod = "GET", value = "列表分页查询", notes = "列表分页查询")
public ResponseModel<IPage<QualityProblemDto>> getItems(String current, String size,QualityProblemDto qualityProblemDto){
public ResponseModel<IPage<QualityProblemDto>> getItems(QualityProblemDto qualityProblemDto){
String current="1";
String size="20";
return ResponseHelper.buildResponse(qualityProblemServiceImpl.getItems(current,size,qualityProblemDto));
}
......
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