Commit e7613efd1461c08b34e297eb6282cf8c7277176a

Authored by 胡翰林
1 parent 505e0332

bug修复

... ... @@ -645,7 +645,7 @@ public class CaseService {
645 645 }
646 646 }
647 647
648   - lambda.orderByDesc(BaseModel::getCreateTime, Case::getCode);
  648 + lambda.orderByDesc(BaseModel::getCreateTime, Case::getCode, Case::getId);
649 649
650 650 return queryWrapper;
651 651 }
... ...
... ... @@ -6,6 +6,7 @@ import com.alibaba.excel.exception.ExcelDataConvertException;
6 6 import com.alibaba.fastjson.JSONObject;
7 7 import com.ash.base.*;
8 8 import com.ash.base.excelOpt.ExcelErrorMessage;
  9 +import com.ash.entity.Case;
9 10 import com.ash.entity.WarningInstance;
10 11 import com.ash.entity.WarningInstanceAnalysis;
11 12 import com.ash.entity.dao.WarningInstanceMapper;
... ... @@ -367,7 +368,7 @@ public class WarningInstanceService {
367 368 }
368 369 }
369 370
370   - lambda.orderByDesc(BaseModel::getCreateTime, WarningInstance::getCode);
  371 + lambda.orderByDesc(BaseModel::getCreateTime, WarningInstance::getCode, WarningInstance::getId);
371 372 return queryWrapper;
372 373 }
373 374
... ...