|
@@ -79,7 +79,7 @@ public class AppGameLotteryController extends BaseController{
|
|
queryLotteryWrapper.between(AppGameLottery::getGameRecordDate, strDate + " 00:00:00", strDate + " 23:59:59");
|
|
queryLotteryWrapper.between(AppGameLottery::getGameRecordDate, strDate + " 00:00:00", strDate + " 23:59:59");
|
|
}
|
|
}
|
|
queryLotteryWrapper.eq(AppGameLottery::getIsLottery, 1);
|
|
queryLotteryWrapper.eq(AppGameLottery::getIsLottery, 1);
|
|
- queryLotteryWrapper.orderByDesc(AppGameLottery::getGameDate);
|
|
|
|
|
|
+ queryLotteryWrapper.orderByDesc(AppGameLottery::getGameRecordDate).orderByDesc(AppGameLottery::getGameDate);
|
|
List<AppGameLottery> list = appGameLotteryService.list(queryLotteryWrapper);
|
|
List<AppGameLottery> list = appGameLotteryService.list(queryLotteryWrapper);
|
|
List<AppGameLotteryVO> resultList = new ArrayList<>();
|
|
List<AppGameLotteryVO> resultList = new ArrayList<>();
|
|
|
|
|