| | |
| | | .eq(PricingParam::getId,pricingParam.getId()) |
| | | .set(PricingParam::getEditor,principal.getId()) |
| | | .set(PricingParam::getName,pricingParam.getName()) |
| | | .set(PricingParam::getStatus,pricingParam.getStatus()) |
| | | .set(PricingParam::getStartDate,pricingParam.getStartDate()) |
| | | .set(PricingParam::getEndDate,pricingParam.getEndDate()) |
| | | .set(PricingParam::getSortnum,pricingParam.getSortnum()); |
| | |
| | | queryWrapper.lambda().eq(PricingParam::getInfo, pageWrap.getModel().getInfo()); |
| | | } |
| | | queryWrapper.lambda().orderByAsc(PricingParam::getSortnum); |
| | | queryWrapper.lambda().orderByAsc(PricingParam::getStatus); |
| | | return PageData.from(pricingParamMapper.selectPage(page, queryWrapper)); |
| | | } |
| | | |