|
@@ -38,7 +38,7 @@ public interface VoyageStockMapper extends BaseMapperX<VoyageStockDO> {
|
|
|
.eqIfPresent(VoyageStockDO::getShipId, reqVO.getShipId())
|
|
.eqIfPresent(VoyageStockDO::getShipId, reqVO.getShipId())
|
|
|
.inIfPresent(VoyageStockDO::getVoyageId, reqVO.getVoyageIds())
|
|
.inIfPresent(VoyageStockDO::getVoyageId, reqVO.getVoyageIds())
|
|
|
.betweenIfPresent(VoyageDO::getStartTime, reqVO.getVoyageTime()[0], reqVO.getVoyageTime()[1])
|
|
.betweenIfPresent(VoyageDO::getStartTime, reqVO.getVoyageTime()[0], reqVO.getVoyageTime()[1])
|
|
|
- .orderByDesc(VoyageStockDO::getVoyageId);
|
|
|
|
|
|
|
+ .orderByAsc(VoyageDO::getStartTime);
|
|
|
return selectJoinPage(reqVO, VoyageStockDO.class, wrapperX);
|
|
return selectJoinPage(reqVO, VoyageStockDO.class, wrapperX);
|
|
|
}
|
|
}
|
|
|
|
|
|