|
@@ -65,9 +65,9 @@ public class ChannelWithdrawMgrController extends BaseApiController {
|
|
|
List<ChannelWithdrawVO> withdrawList = channelWithdrawService.listWithdrawVO(new QueryWrapper<ChannelWithdraw>()
|
|
|
.eq(null != status && status != 0, "t1.status", status)
|
|
|
.eq(StringUtils.isNotBlank(name), "t2.name", name)
|
|
|
- .ge(null != startDay, "t1.created_time", startDay)
|
|
|
- .lt(null != endDay, "t1.created_time", endDay)
|
|
|
- .orderByDesc("t1.created_time"));
|
|
|
+ .ge(null != startDay, "t1.create_time", startDay)
|
|
|
+ .lt(null != endDay, "t1.create_time", endDay)
|
|
|
+ .orderByDesc("t1.create_time"));
|
|
|
return getDataTable(withdrawList);
|
|
|
}
|
|
|
|