|
@@ -174,7 +174,7 @@ public class LargePlatAssetServiceImpl implements ILargePlatAssetService {
|
|
|
if (flag == 0){
|
|
|
list = platAssetMapper.getSceneRateX();
|
|
|
for (LargeLogistics it : list){
|
|
|
- it.setAppName(it.getAppName().substring(6));
|
|
|
+ it.setAppName(it.getAppName().substring(6, 8));
|
|
|
}
|
|
|
}
|
|
|
else {
|
|
@@ -207,7 +207,7 @@ public class LargePlatAssetServiceImpl implements ILargePlatAssetService {
|
|
|
List<String> list1 = new ArrayList<>();
|
|
|
List<Long> list2 = new ArrayList<>();
|
|
|
for (LargeLogistics it : list){
|
|
|
- list1.add(it.getAppName().substring(6));
|
|
|
+ list1.add(it.getAppName().substring(6, 8));
|
|
|
list2.add(it.getInspectionSchemeNum());
|
|
|
}
|
|
|
Map<String, Object> map = new HashMap<>();
|