add 企标计划-分页列表查询无权限
This commit is contained in:
+17
@@ -61,6 +61,23 @@ public class EnterpriseStandardPlanController extends JeroController<EnterpriseS
|
||||
return Result.OK(pageList);
|
||||
}
|
||||
|
||||
/**
|
||||
* 分页列表查询
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
@AutoLog(value = "企标计划-分页列表查询无权限")
|
||||
@ApiOperation(value = "企标计划-分页列表查询无权限", notes = "企标计划-分页列表查询无权限")
|
||||
@GetMapping(value = "/pageNoAuth")
|
||||
public Result<?> queryPageListNoAuth(EnterpriseStandardPlan enterpriseStandardPlan,
|
||||
HttpServletRequest req,
|
||||
@RequestParam(name = "pageNo", defaultValue = "1") @ApiParam("页码") Integer pageNo,
|
||||
@RequestParam(name = "pageSize", defaultValue = "10") @ApiParam("页面显示数量") Integer pageSize) {
|
||||
IPage<EnterpriseStandardPlan> page = new Page<>(pageNo, pageSize);
|
||||
IPage<EnterpriseStandardPlanVo> pageList = esPlanService.queryPageList(enterpriseStandardPlan, req, page);
|
||||
return Result.OK(pageList);
|
||||
}
|
||||
|
||||
/**
|
||||
* 通过id删除
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user