com.macro.mall.dto.OmsReturnApplyQueryParam Java Examples
The following examples show how to use
com.macro.mall.dto.OmsReturnApplyQueryParam.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: OmsOrderReturnApplyController.java From mall-swarm with Apache License 2.0 | 5 votes |
@ApiOperation("分页查询退货申请") @RequestMapping(value = "/list", method = RequestMethod.GET) @ResponseBody public CommonResult<CommonPage<OmsOrderReturnApply>> list(OmsReturnApplyQueryParam queryParam, @RequestParam(value = "pageSize", defaultValue = "5") Integer pageSize, @RequestParam(value = "pageNum", defaultValue = "1") Integer pageNum) { List<OmsOrderReturnApply> returnApplyList = returnApplyService.list(queryParam, pageSize, pageNum); return CommonResult.success(CommonPage.restPage(returnApplyList)); }
Example #2
Source File: OmsOrderReturnApplyController.java From macrozheng with Apache License 2.0 | 5 votes |
@ApiOperation("分页查询退货申请") @RequestMapping(value = "/list", method = RequestMethod.GET) @ResponseBody public CommonResult<CommonPage<OmsOrderReturnApply>> list(OmsReturnApplyQueryParam queryParam, @RequestParam(value = "pageSize", defaultValue = "5") Integer pageSize, @RequestParam(value = "pageNum", defaultValue = "1") Integer pageNum) { List<OmsOrderReturnApply> returnApplyList = returnApplyService.list(queryParam, pageSize, pageNum); return CommonResult.success(CommonPage.restPage(returnApplyList)); }
Example #3
Source File: OmsOrderReturnApplyController.java From mall with Apache License 2.0 | 5 votes |
@ApiOperation("分页查询退货申请") @RequestMapping(value = "/list", method = RequestMethod.GET) @ResponseBody public CommonResult<CommonPage<OmsOrderReturnApply>> list(OmsReturnApplyQueryParam queryParam, @RequestParam(value = "pageSize", defaultValue = "5") Integer pageSize, @RequestParam(value = "pageNum", defaultValue = "1") Integer pageNum) { List<OmsOrderReturnApply> returnApplyList = returnApplyService.list(queryParam, pageSize, pageNum); return CommonResult.success(CommonPage.restPage(returnApplyList)); }
Example #4
Source File: OmsOrderReturnApplyController.java From macrozheng-mall with MIT License | 5 votes |
@ApiOperation("分页查询退货申请") @RequestMapping(value = "/list", method = RequestMethod.GET) @ResponseBody public Object list(OmsReturnApplyQueryParam queryParam, @RequestParam(value = "pageSize", defaultValue = "5") Integer pageSize, @RequestParam(value = "pageNum", defaultValue = "1") Integer pageNum) { List<OmsOrderReturnApply> returnApplyList = returnApplyService.list(queryParam, pageSize, pageNum); return new CommonResult().pageSuccess(returnApplyList); }
Example #5
Source File: OmsOrderReturnApplyServiceImpl.java From mall-swarm with Apache License 2.0 | 4 votes |
@Override public List<OmsOrderReturnApply> list(OmsReturnApplyQueryParam queryParam, Integer pageSize, Integer pageNum) { PageHelper.startPage(pageNum,pageSize); return returnApplyDao.getList(queryParam); }
Example #6
Source File: OmsOrderReturnApplyServiceImpl.java From macrozheng with Apache License 2.0 | 4 votes |
@Override public List<OmsOrderReturnApply> list(OmsReturnApplyQueryParam queryParam, Integer pageSize, Integer pageNum) { PageHelper.startPage(pageNum,pageSize); return returnApplyDao.getList(queryParam); }
Example #7
Source File: OmsOrderReturnApplyServiceImpl.java From mall with Apache License 2.0 | 4 votes |
@Override public List<OmsOrderReturnApply> list(OmsReturnApplyQueryParam queryParam, Integer pageSize, Integer pageNum) { PageHelper.startPage(pageNum,pageSize); return returnApplyDao.getList(queryParam); }
Example #8
Source File: OmsOrderReturnApplyServiceImpl.java From macrozheng-mall with MIT License | 4 votes |
@Override public List<OmsOrderReturnApply> list(OmsReturnApplyQueryParam queryParam, Integer pageSize, Integer pageNum) { PageHelper.startPage(pageNum,pageSize); return returnApplyDao.getList(queryParam); }
Example #9
Source File: OmsOrderReturnApplyDao.java From mall-swarm with Apache License 2.0 | 2 votes |
/** * 查询申请列表 */ List<OmsOrderReturnApply> getList(@Param("queryParam") OmsReturnApplyQueryParam queryParam);
Example #10
Source File: OmsOrderReturnApplyService.java From mall-swarm with Apache License 2.0 | 2 votes |
/** * 分页查询申请 */ List<OmsOrderReturnApply> list(OmsReturnApplyQueryParam queryParam, Integer pageSize, Integer pageNum);
Example #11
Source File: OmsOrderReturnApplyDao.java From macrozheng with Apache License 2.0 | 2 votes |
/** * 查询申请列表 */ List<OmsOrderReturnApply> getList(@Param("queryParam") OmsReturnApplyQueryParam queryParam);
Example #12
Source File: OmsOrderReturnApplyService.java From macrozheng with Apache License 2.0 | 2 votes |
/** * 分页查询申请 */ List<OmsOrderReturnApply> list(OmsReturnApplyQueryParam queryParam, Integer pageSize, Integer pageNum);
Example #13
Source File: OmsOrderReturnApplyDao.java From mall with Apache License 2.0 | 2 votes |
/** * 查询申请列表 */ List<OmsOrderReturnApply> getList(@Param("queryParam") OmsReturnApplyQueryParam queryParam);
Example #14
Source File: OmsOrderReturnApplyService.java From mall with Apache License 2.0 | 2 votes |
/** * 分页查询申请 */ List<OmsOrderReturnApply> list(OmsReturnApplyQueryParam queryParam, Integer pageSize, Integer pageNum);
Example #15
Source File: OmsOrderReturnApplyDao.java From macrozheng-mall with MIT License | 2 votes |
/** * 查询申请列表 */ List<OmsOrderReturnApply> getList(@Param("queryParam") OmsReturnApplyQueryParam queryParam);
Example #16
Source File: OmsOrderReturnApplyService.java From macrozheng-mall with MIT License | 2 votes |
/** * 分页查询申请 */ List<OmsOrderReturnApply> list(OmsReturnApplyQueryParam queryParam, Integer pageSize, Integer pageNum);