bug--升级fastjson1.2.74、修复佣金明显排序问题

This commit is contained in:
taozi
2020-10-16 16:19:40 +08:00
parent c14422a985
commit f00f05133f
2 changed files with 2 additions and 1 deletions

View File

@ -213,6 +213,7 @@ public class YxUserBillServiceImpl extends BaseServiceImpl<UserBillMapper, YxUse
for (BillVo billDTO : billDTOList) {
LambdaQueryWrapper<YxUserBill> wrapperT = new LambdaQueryWrapper<>();
wrapperT.in(YxUserBill::getId,Arrays.asList(billDTO.getIds().split(",")));
wrapperT.orderByDesc(YxUserBill::getCreateTime);
billDTO.setList(yxUserBillMapper.getUserBillList(wrapperT));
}