|
@@ -73,6 +73,7 @@ public class LisExcelResFacade {
|
|
|
max = getValue(row.getCell(4)).trim();
|
|
|
min = getValue(row.getCell(5)).trim();
|
|
|
time = getValue(row.getCell(6)).trim();
|
|
|
+ type = getValue(row.getCell(7)).trim();
|
|
|
} else {
|
|
|
mealName = null;
|
|
|
itemName = null;
|
|
@@ -81,6 +82,7 @@ public class LisExcelResFacade {
|
|
|
max = null;
|
|
|
min = null;
|
|
|
time = null;
|
|
|
+ type = null;
|
|
|
}
|
|
|
|
|
|
if (StringUtil.isEmpty(mealName) && StringUtil.isEmpty(itemName)
|
|
@@ -109,6 +111,7 @@ public class LisExcelResFacade {
|
|
|
lisExcelWrapper.setMax(max);
|
|
|
lisExcelWrapper.setMin(min);
|
|
|
lisExcelWrapper.setTime(time);
|
|
|
+ lisExcelWrapper.setType(type);
|
|
|
lisExcelWrapperList.add(lisExcelWrapper);
|
|
|
} catch (Exception e) {
|
|
|
e.printStackTrace();
|