Commit 3c81ac98 authored by 周健威's avatar 周健威

修改代码

parent e8dec9d2
......@@ -17,8 +17,8 @@ import static com.github.wxiaoqi.security.common.constant.CommonConstants.SYS_FA
@RequestMapping("customForm")
public class CustomFormController extends BaseController<CustomFormBiz,CustomForm> {
@RequestMapping(value = "list",method = RequestMethod.GET)
public ObjectRestResponse<PageDataVO<CustomForm>> list(CustomQueryDTO dto) {
@RequestMapping(value = "pageList",method = RequestMethod.GET)
public ObjectRestResponse<PageDataVO<CustomForm>> pageList(CustomQueryDTO dto) {
return ObjectRestResponse.succ(PageDataVO.pageInfo(dto.initQuery(), () -> baseBiz.selectByWeekend(w -> {
w.andEqualTo(CustomForm::getIsDel, SYS_FALSE);
if(null != dto.getType()) {
......
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