|
@@ -53,7 +53,7 @@ public class ChannelMoneyController extends BaseApiController {
|
|
|
Long channelId = SecurityUtils.getLoginUser().getChannelId();
|
|
|
QueryWrapper<ChannelMoneyLog> queryWrapper = new QueryWrapper();
|
|
|
queryWrapper.lambda().eq(ChannelMoneyLog::getChannelId, channelId);
|
|
|
- queryWrapper.lambda().orderByDesc(ChannelMoneyLog::getBizTime);
|
|
|
+ queryWrapper.lambda().orderByDesc(ChannelMoneyLog::getCreatedTime);
|
|
|
startPage();
|
|
|
List<ChannelMoneyLog> list = channelMoneyLogService.list(queryWrapper);
|
|
|
List<ChannelMoneyLogVO> channelMoneyLogVOS = mapperFacade.mapAsList(list, ChannelMoneyLogVO.class);
|