法规技术评估-条款导入增加itemId
This commit is contained in:
+2
@@ -403,6 +403,8 @@ public class LawsTechnologyEvaluationEOServiceImpl extends ServiceImpl<LawsTechn
|
|||||||
String itemName = row.getCell(1, Row.MissingCellPolicy.CREATE_NULL_AS_BLANK).toString();
|
String itemName = row.getCell(1, Row.MissingCellPolicy.CREATE_NULL_AS_BLANK).toString();
|
||||||
String itemContents = row.getCell(2, Row.MissingCellPolicy.CREATE_NULL_AS_BLANK).toString();
|
String itemContents = row.getCell(2, Row.MissingCellPolicy.CREATE_NULL_AS_BLANK).toString();
|
||||||
Map<String,Object> itemInfoMap = new HashMap<>();
|
Map<String,Object> itemInfoMap = new HashMap<>();
|
||||||
|
String itemId = UUID.randomUUID().toString().replace("-", "");
|
||||||
|
itemInfoMap.put("itemId",itemId);
|
||||||
itemInfoMap.put("itemNum",itemNum);
|
itemInfoMap.put("itemNum",itemNum);
|
||||||
itemInfoMap.put("itemName",itemName);
|
itemInfoMap.put("itemName",itemName);
|
||||||
itemInfoMap.put("itemContent",itemContents);
|
itemInfoMap.put("itemContent",itemContents);
|
||||||
|
|||||||
Reference in New Issue
Block a user