|
|
@@ -52,7 +52,9 @@ public interface EquipBoilerMapper extends BaseMapperX<EquipBoilerDO> {
|
|
|
.eqIfPresent(EquipBoilerDO::getStatus, reqVO.getStatus())
|
|
|
.eqIfPresent(EquipBoilerDO::getUseStatus, reqVO.getUseStatus())
|
|
|
.eqIfPresent(EquipBoilerDO::getRelatedDepartment, reqVO.getRelatedDepartment())
|
|
|
- .orderByDesc(EquipBoilerDO::getId));
|
|
|
+ .orderByAsc(EquipBoilerDO::getUseStatus)
|
|
|
+ .orderByDesc(EquipBoilerDO::getUnitName)
|
|
|
+ .orderByDesc(EquipBoilerDO::getType));
|
|
|
}
|
|
|
|
|
|
List<AppointmentEquipsPageRespVO> selectAppointmentItemPage(ConfirmOrderPageVO reqVO);
|