|
@@ -853,10 +853,11 @@ public class OrderBaseExcelLogic {
|
|
|
int index = 1;
|
|
|
for (Object o : rows) {
|
|
|
++index;
|
|
|
- String errPrefix = "第" + (index) + "行,工单号:"+ rows.get(1)+":";
|
|
|
|
|
|
List<String> row = (List<String>) o;
|
|
|
|
|
|
+ String errPrefix = "第" + (index) + "行,工单号:"+ row.get(1)+":";
|
|
|
+
|
|
|
String pgOrderId = row.get(0);
|
|
|
String status = row.get(1);
|
|
|
String serviceStatus = row.get(2);
|