|
@@ -22,8 +22,10 @@ import org.apache.poi.ss.usermodel.Row;
|
|
|
import org.apache.poi.ss.usermodel.Sheet;
|
|
|
import org.apache.poi.ss.usermodel.Workbook;
|
|
|
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
|
|
|
+import org.json.JSONObject;
|
|
|
import org.junit.Before;
|
|
|
import org.junit.Test;
|
|
|
+import org.junit.platform.commons.util.StringUtils;
|
|
|
import org.junit.runner.RunWith;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.beans.factory.annotation.Value;
|
|
@@ -48,9 +50,9 @@ import java.util.concurrent.atomic.AtomicInteger;
|
|
|
@RunWith(SpringRunner.class)
|
|
|
public class ImportFuncidForRwdEdit {
|
|
|
|
|
|
- private String basepath = "D:\\资料\\工作资料\\原型图\\数据中台\\数据字典数据";
|
|
|
+ private String basepath = "D:\\users\\数据字典v3.1.11\\数据字典附表(20210701)";
|
|
|
|
|
|
- private String outPath = "D:/资料/工作资料/原型图/数据中台/out/funcid-" + DateUtils.format(new Date()) + ".dml.sql";
|
|
|
+ private String outPath = "D:/users/20210701/edit/funcid-" + DateUtils.format(new Date()) + ".dml.sql";
|
|
|
|
|
|
private final static String VERSION = "3.1.11";
|
|
|
|
|
@@ -75,14 +77,14 @@ public class ImportFuncidForRwdEdit {
|
|
|
@Test
|
|
|
public void importFuncidDef() throws IOException {
|
|
|
List<FuncidDefModel> funcids = new LinkedList<>();
|
|
|
-// importBase(funcids);
|
|
|
+ //importBase(funcids);
|
|
|
importSpace(funcids);
|
|
|
-// importSystem(funcids);
|
|
|
-// importEquipment(funcids);
|
|
|
-// importComponent(funcids);
|
|
|
- //importVirtual(funcids);
|
|
|
-// importTool(funcids);
|
|
|
-// importMaterial(funcids);
|
|
|
+ importSystem(funcids);
|
|
|
+ importEquipment(funcids);
|
|
|
+ importComponent(funcids);
|
|
|
+ importVirtual(funcids);
|
|
|
+ importTool(funcids);
|
|
|
+ importMaterial(funcids);
|
|
|
}
|
|
|
|
|
|
private void writeFuncSqlToFile(List<FuncidDefModel> funcids,String classCode) throws IOException {
|
|
@@ -291,6 +293,14 @@ public class ImportFuncidForRwdEdit {
|
|
|
writeFuncSqlToFile(funcids,classCode);
|
|
|
}
|
|
|
|
|
|
+ private void analysisSheetDataAndWriteToFile(String key, String fileName, String sheetName,String shareType,AtomicInteger commonSeq,Map<String,String> rwdDefClassMap) throws IOException {
|
|
|
+ String classCode = rwdDefClassMap.get(key);
|
|
|
+ // 1.解析Sheet数据
|
|
|
+ List<FuncidDefModel> funcids = new ArrayList<>(readSheet(classCode, fileName, sheetName, shareType,commonSeq));
|
|
|
+ // 2.写入文件
|
|
|
+ writeFuncSqlToFile(funcids,classCode);
|
|
|
+ }
|
|
|
+
|
|
|
private void importSystem(List<FuncidDefModel> funcids) throws IOException {
|
|
|
analysisSheetDataAndWriteToFile("system", "/附表6-机电精装类对象通用属性点表.xlsx", "系统类","1");
|
|
|
AtomicInteger systemCommonSeq = new AtomicInteger(this.systemCommonSeq.intValue());
|
|
@@ -820,7 +830,7 @@ public class ImportFuncidForRwdEdit {
|
|
|
equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
analysisSheetDataAndWriteToFile("WSDHHE", "/附表8-设备类对象分类属性点表/附表8.4-给排水专业设备/附表8.4.2-生活热水系统设备.xlsx", "DHHE生活热水换热器","2",equipCommonSeq);
|
|
|
equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
- analysisSheetDataAndWriteToFile("WS DHS", "/附表8-设备类对象分类属性点表/附表8.4-给排水专业设备/附表8.4.2-生活热水系统设备.xlsx", " DHSU生活热水供水机组","2",equipCommonSeq);
|
|
|
+ analysisSheetDataAndWriteToFile("WSDHSU", "/附表8-设备类对象分类属性点表/附表8.4-给排水专业设备/附表8.4.2-生活热水系统设备.xlsx", " DHSU生活热水供水机组","2",equipCommonSeq);
|
|
|
equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
analysisSheetDataAndWriteToFile("WSDHHP", "/附表8-设备类对象分类属性点表/附表8.4-给排水专业设备/附表8.4.2-生活热水系统设备.xlsx", "DHHP生活热水水泵","2",equipCommonSeq);
|
|
|
equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
@@ -1271,7 +1281,6 @@ public class ImportFuncidForRwdEdit {
|
|
|
analysisSheetDataAndWriteToFile("OTXXUA", "/附表8-设备类对象分类属性点表/附表8.8-其他专业设备/附表8.8.7-其他设备.xlsx", "XXUA无人机","2",equipCommonSeq);
|
|
|
equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
analysisSheetDataAndWriteToFile("OTXXCR", "/附表8-设备类对象分类属性点表/附表8.8-其他专业设备/附表8.8.7-其他设备.xlsx", "XXCR扫地机器人","2",equipCommonSeq);
|
|
|
-
|
|
|
}
|
|
|
|
|
|
private void importComponent(List<FuncidDefModel> funcids) throws IOException {
|
|
@@ -1339,7 +1348,6 @@ public class ImportFuncidForRwdEdit {
|
|
|
componentCommonSeq = new AtomicInteger(this.componentCommonSeq.intValue());
|
|
|
analysisSheetDataAndWriteToFile("OTSheet1", "/附表9-部件类对象分类属性点表/附表9.8-其他专业部件.xlsx", "Sheet1","2",componentCommonSeq);
|
|
|
//componentCommonSeq = new AtomicInteger(this.componentCommonSeq.intValue());
|
|
|
-
|
|
|
}
|
|
|
|
|
|
private void importVirtual(List<FuncidDefModel> funcids) throws IOException {
|
|
@@ -1352,11 +1360,560 @@ public class ImportFuncidForRwdEdit {
|
|
|
}
|
|
|
|
|
|
private void importTool(List<FuncidDefModel> funcids) throws IOException {
|
|
|
+ Map<String, String> rwdDefClassMap = queryRwdDefClass();
|
|
|
analysisSheetDataAndWriteToFile("tool", "/附表10-耗材工具类对象通用属性点表.xlsx", "工具类","2");
|
|
|
+ analysisSheetDataAndWriteToFile("ET-电子秤", "/附表12-工具类对象分类属性点表/附表12.1-电动工具/附表12.1.1-电动测量工具.xlsx", "电子秤","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("ET-泄露检测仪", "/附表12-工具类对象分类属性点表/附表12.1-电动工具/附表12.1.1-电动测量工具.xlsx", "泄露检测仪","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("ET-钳流表", "/附表12-工具类对象分类属性点表/附表12.1-电动工具/附表12.1.1-电动测量工具.xlsx", "钳流表","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("ET-电子湿度计", "/附表12-工具类对象分类属性点表/附表12.1-电动工具/附表12.1.1-电动测量工具.xlsx", "电子湿度计","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("ET-电子温度计", "/附表12-工具类对象分类属性点表/附表12.1-电动工具/附表12.1.1-电动测量工具.xlsx", "电子温度计","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("ET-万用表", "/附表12-工具类对象分类属性点表/附表12.1-电动工具/附表12.1.1-电动测量工具.xlsx", "万用表","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("ET-兆欧表", "/附表12-工具类对象分类属性点表/附表12.1-电动工具/附表12.1.1-电动测量工具.xlsx", "兆欧表","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("ET-手电钻", "/附表12-工具类对象分类属性点表/附表12.1-电动工具/附表12.1.2-电动钻孔工具.xlsx", "手电钻","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("ET-水钻", "/附表12-工具类对象分类属性点表/附表12.1-电动工具/附表12.1.2-电动钻孔工具.xlsx", "水钻","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("ET-磁力钻", "/附表12-工具类对象分类属性点表/附表12.1-电动工具/附表12.1.2-电动钻孔工具.xlsx", "磁力钻","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("ET-电剪刀", "/附表12-工具类对象分类属性点表/附表12.1-电动工具/附表12.1.3-电动切割工具.xlsx", "电剪刀","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("ET-云石机", "/附表12-工具类对象分类属性点表/附表12.1-电动工具/附表12.1.3-电动切割工具.xlsx", "云石机","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("ET-电动型材切割机", "/附表12-工具类对象分类属性点表/附表12.1-电动工具/附表12.1.3-电动切割工具.xlsx", "电动型材切割机","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("ET-电圆锯", "/附表12-工具类对象分类属性点表/附表12.1-电动工具/附表12.1.3-电动切割工具.xlsx", "电圆锯","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("ET-电链锯", "/附表12-工具类对象分类属性点表/附表12.1-电动工具/附表12.1.3-电动切割工具.xlsx", "电链锯","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("ET-往复锯", "/附表12-工具类对象分类属性点表/附表12.1-电动工具/附表12.1.3-电动切割工具.xlsx", "往复锯","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("ET-电刨", "/附表12-工具类对象分类属性点表/附表12.1-电动工具/附表12.1.4-电动打磨工具.xlsx", "电刨","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("ET-开槽机", "/附表12-工具类对象分类属性点表/附表12.1-电动工具/附表12.1.4-电动打磨工具.xlsx", "开槽机","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("ET-角磨机", "/附表12-工具类对象分类属性点表/附表12.1-电动工具/附表12.1.4-电动打磨工具.xlsx", "角磨机","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("ET-电焊机", "/附表12-工具类对象分类属性点表/附表12.1-电动工具/附表12.1.5-电动成型工具.xlsx", "电焊机","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("ET-坡口机", "/附表12-工具类对象分类属性点表/附表12.1-电动工具/附表12.1.5-电动成型工具.xlsx", "坡口机","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("ET-套丝机", "/附表12-工具类对象分类属性点表/附表12.1-电动工具/附表12.1.5-电动成型工具.xlsx", "套丝机","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("ET-压槽机", "/附表12-工具类对象分类属性点表/附表12.1-电动工具/附表12.1.5-电动成型工具.xlsx", "压槽机","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("ET-吸尘器", "/附表12-工具类对象分类属性点表/附表12.1-电动工具/附表12.1.6-电动清洁工具.xlsx", "吸尘器","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("ET-晶面机", "/附表12-工具类对象分类属性点表/附表12.1-电动工具/附表12.1.6-电动清洁工具.xlsx", "晶面机","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("ET-地毯清洗机", "/附表12-工具类对象分类属性点表/附表12.1-电动工具/附表12.1.6-电动清洁工具.xlsx", "地毯清洗机","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("ET-扫地机", "/附表12-工具类对象分类属性点表/附表12.1-电动工具/附表12.1.6-电动清洁工具.xlsx", "扫地机","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("ET-轧碎机", "/附表12-工具类对象分类属性点表/附表12.1-电动工具/附表12.1.7-其他电动工具.xlsx", "轧碎机","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("ET-热风枪", "/附表12-工具类对象分类属性点表/附表12.1-电动工具/附表12.1.7-其他电动工具.xlsx", "热风枪","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("ET-电动无气喷涂机", "/附表12-工具类对象分类属性点表/附表12.1-电动工具/附表12.1.7-其他电动工具.xlsx", "电动无气喷涂机","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("ET-管道疏通机", "/附表12-工具类对象分类属性点表/附表12.1-电动工具/附表12.1.7-其他电动工具.xlsx", "管道疏通机","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("ET-粉碎机", "/附表12-工具类对象分类属性点表/附表12.1-电动工具/附表12.1.7-其他电动工具.xlsx", "粉碎机","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("ET-锡炉", "/附表12-工具类对象分类属性点表/附表12.1-电动工具/附表12.1.7-其他电动工具.xlsx", "锡炉","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("PT-气锤", "/附表12-工具类对象分类属性点表/附表12.2-气动工具/附表12.2.1-气动装配作业工具.xlsx", "气锤","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("PT-气动扳手", "/附表12-工具类对象分类属性点表/附表12.2-气动工具/附表12.2.1-气动装配作业工具.xlsx", "气动扳手","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("PT-气动铆钉枪", "/附表12-工具类对象分类属性点表/附表12.2-气动工具/附表12.2.1-气动装配作业工具.xlsx", "气动铆钉枪","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("PT-气钻", "/附表12-工具类对象分类属性点表/附表12.2-气动工具/附表12.2.1-气动装配作业工具.xlsx", "气钻","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("PT-气动螺丝刀", "/附表12-工具类对象分类属性点表/附表12.2-气动工具/附表12.2.1-气动装配作业工具.xlsx", "气动螺丝刀","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("PT-气镐", "/附表12-工具类对象分类属性点表/附表12.2-气动工具/附表12.2.2-气动金属切削工具.xlsx", "气镐","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("PT-气动磨机", "/附表12-工具类对象分类属性点表/附表12.2-气动工具/附表12.2.2-气动金属切削工具.xlsx", "气动磨机","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("PT-气铲", "/附表12-工具类对象分类属性点表/附表12.2-气动工具/附表12.2.2-气动金属切削工具.xlsx", "气铲","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("PT-气动无气喷涂机", "/附表12-工具类对象分类属性点表/附表12.2-气动工具/附表12.2.3-其他气动工具.xlsx", "气动无气喷涂机","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HT-扳手", "/附表12-工具类对象分类属性点表/附表12.3-手动工具/附表12.3.1-手动紧固工具.xlsx", "扳手","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HT-钳子", "/附表12-工具类对象分类属性点表/附表12.3-手动工具/附表12.3.1-手动紧固工具.xlsx", "钳子","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HT-手锤", "/附表12-工具类对象分类属性点表/附表12.3-手动工具/附表12.3.1-手动紧固工具.xlsx", "手锤","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HT-螺丝刀", "/附表12-工具类对象分类属性点表/附表12.3-手动工具/附表12.3.1-手动紧固工具.xlsx", "螺丝刀","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HT-冲子", "/附表12-工具类对象分类属性点表/附表12.3-手动工具/附表12.3.10-其他手动工具.xlsx", "冲子","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HT-压线刀", "/附表12-工具类对象分类属性点表/附表12.3-手动工具/附表12.3.10-其他手动工具.xlsx", "压线刀","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HT-手提工具箱", "/附表12-工具类对象分类属性点表/附表12.3-手动工具/附表12.3.10-其他手动工具.xlsx", "手提工具箱","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HT-机油枪", "/附表12-工具类对象分类属性点表/附表12.3-手动工具/附表12.3.10-其他手动工具.xlsx", "机油枪","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HT-胶枪", "/附表12-工具类对象分类属性点表/附表12.3-手动工具/附表12.3.10-其他手动工具.xlsx", "胶枪","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HT-钢丝刷", "/附表12-工具类对象分类属性点表/附表12.3-手动工具/附表12.3.10-其他手动工具.xlsx", "钢丝刷","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HT-铲", "/附表12-工具类对象分类属性点表/附表12.3-手动工具/附表12.3.2-手动挖掘工具.xlsx", "铲","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HT-钢钎", "/附表12-工具类对象分类属性点表/附表12.3-手动工具/附表12.3.2-手动挖掘工具.xlsx", "钢钎","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HT-镐", "/附表12-工具类对象分类属性点表/附表12.3-手动工具/附表12.3.2-手动挖掘工具.xlsx", "镐","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HT-手动切割机", "/附表12-工具类对象分类属性点表/附表12.3-手动工具/附表12.3.3-手工切割工具.xlsx", "手动切割机","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HT-斧子", "/附表12-工具类对象分类属性点表/附表12.3-手动工具/附表12.3.3-手工切割工具.xlsx", "斧子","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HT-切管机", "/附表12-工具类对象分类属性点表/附表12.3-手动工具/附表12.3.3-手工切割工具.xlsx", "切管机","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HT-钢锯", "/附表12-工具类对象分类属性点表/附表12.3-手动工具/附表12.3.3-手工切割工具.xlsx", "钢锯","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HT-剪刀", "/附表12-工具类对象分类属性点表/附表12.3-手动工具/附表12.3.3-手工切割工具.xlsx", "剪刀","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HT-锉刀", "/附表12-工具类对象分类属性点表/附表12.3-手动工具/附表12.3.4-手动修整工具.xlsx", "锉刀","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HT-抹子", "/附表12-工具类对象分类属性点表/附表12.3-手动工具/附表12.3.4-手动修整工具.xlsx", "抹子","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HT-油刷", "/附表12-工具类对象分类属性点表/附表12.3-手动工具/附表12.3.4-手动修整工具.xlsx", "油刷","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HT-喷枪", "/附表12-工具类对象分类属性点表/附表12.3-手动工具/附表12.3.4-手动修整工具.xlsx", "喷枪","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HT-涂料辊", "/附表12-工具类对象分类属性点表/附表12.3-手动工具/附表12.3.4-手动修整工具.xlsx", "涂料辊","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HT-手推车", "/附表12-工具类对象分类属性点表/附表12.3-手动工具/附表12.3.5-手动移动工具.xlsx", "手推车","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HT-杠杆", "/附表12-工具类对象分类属性点表/附表12.3-手动工具/附表12.3.5-手动移动工具.xlsx", "杠杆","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HT-量尺", "/附表12-工具类对象分类属性点表/附表12.3-手动工具/附表12.3.6-手动测量工具.xlsx", "量尺","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HT-量规", "/附表12-工具类对象分类属性点表/附表12.3-手动工具/附表12.3.6-手动测量工具.xlsx", "量规","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HT-千分尺", "/附表12-工具类对象分类属性点表/附表12.3-手动工具/附表12.3.6-手动测量工具.xlsx", "千分尺","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HT-天平", "/附表12-工具类对象分类属性点表/附表12.3-手动工具/附表12.3.6-手动测量工具.xlsx", "天平","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HT-压力表", "/附表12-工具类对象分类属性点表/附表12.3-手动工具/附表12.3.6-手动测量工具.xlsx", "压力表","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HT-湿度计", "/附表12-工具类对象分类属性点表/附表12.3-手动工具/附表12.3.6-手动测量工具.xlsx", "湿度计","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HT-温度计", "/附表12-工具类对象分类属性点表/附表12.3-手动工具/附表12.3.6-手动测量工具.xlsx", "温度计","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HT-扫把", "/附表12-工具类对象分类属性点表/附表12.3-手动工具/附表12.3.7-手动清洁工具.xlsx", "扫把","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HT-水桶", "/附表12-工具类对象分类属性点表/附表12.3-手动工具/附表12.3.7-手动清洁工具.xlsx", "水桶","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HT-簸箕", "/附表12-工具类对象分类属性点表/附表12.3-手动工具/附表12.3.7-手动清洁工具.xlsx", "簸箕","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HT-拖把", "/附表12-工具类对象分类属性点表/附表12.3-手动工具/附表12.3.7-手动清洁工具.xlsx", "拖把","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HT-手动弯管机", "/附表12-工具类对象分类属性点表/附表12.3-手动工具/附表12.3.8-手动管道工具.xlsx", "手动弯管机","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HT-管子割刀", "/附表12-工具类对象分类属性点表/附表12.3-手动工具/附表12.3.8-手动管道工具.xlsx", "管子割刀","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HT-涨管器", "/附表12-工具类对象分类属性点表/附表12.3-手动工具/附表12.3.8-手动管道工具.xlsx", "涨管器","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HT-开孔器", "/附表12-工具类对象分类属性点表/附表12.3-手动工具/附表12.3.8-手动管道工具.xlsx", "开孔器","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HT-管子铰板", "/附表12-工具类对象分类属性点表/附表12.3-手动工具/附表12.3.8-手动管道工具.xlsx", "管子铰板","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HT-吸锡线", "/附表12-工具类对象分类属性点表/附表12.3-手动工具/附表12.3.9-手动焊接工具.xlsx", "吸锡线","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("OT-高空工作安全带", "/附表12-工具类对象分类属性点表/附表12.4-其他工具/附表12.4.1-服装类工具.xlsx", "高空工作安全带","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("OT-工程组人员服装", "/附表12-工具类对象分类属性点表/附表12.4-其他工具/附表12.4.1-服装类工具.xlsx", "工程组人员服装","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("OT-电焊帽", "/附表12-工具类对象分类属性点表/附表12.4-其他工具/附表12.4.1-服装类工具.xlsx", "电焊帽","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ //equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
}
|
|
|
|
|
|
private void importMaterial(List<FuncidDefModel> funcids) throws IOException {
|
|
|
analysisSheetDataAndWriteToFile("material", "/附表10-耗材工具类对象通用属性点表.xlsx", "耗材类","2");
|
|
|
+ Map<String, String> rwdDefClassMap = queryRwdDefClass();
|
|
|
+ analysisSheetDataAndWriteToFile("HC-普通钉类", "/附表11-耗材类对象分类属性点表/附表11.1-五金耗材/附表11.1.1-紧固件耗材.xlsx", "普通钉类","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HC-铆钉", "/附表11-耗材类对象分类属性点表/附表11.1-五金耗材/附表11.1.1-紧固件耗材.xlsx", "铆钉","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HC-螺钉", "/附表11-耗材类对象分类属性点表/附表11.1-五金耗材/附表11.1.1-紧固件耗材.xlsx", "螺钉","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HC-螺栓", "/附表11-耗材类对象分类属性点表/附表11.1-五金耗材/附表11.1.1-紧固件耗材.xlsx", "螺栓","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HC-膨胀螺栓", "/附表11-耗材类对象分类属性点表/附表11.1-五金耗材/附表11.1.1-紧固件耗材.xlsx", "膨胀螺栓","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HC-螺母", "/附表11-耗材类对象分类属性点表/附表11.1-五金耗材/附表11.1.1-紧固件耗材.xlsx", "螺母","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HC-螺柱", "/附表11-耗材类对象分类属性点表/附表11.1-五金耗材/附表11.1.1-紧固件耗材.xlsx", "螺柱","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HC-垫圈", "/附表11-耗材类对象分类属性点表/附表11.1-五金耗材/附表11.1.1-紧固件耗材.xlsx", "垫圈","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HC-挡圈", "/附表11-耗材类对象分类属性点表/附表11.1-五金耗材/附表11.1.1-紧固件耗材.xlsx", "挡圈","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HC-销", "/附表11-耗材类对象分类属性点表/附表11.1-五金耗材/附表11.1.1-紧固件耗材.xlsx", "销","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HC-键", "/附表11-耗材类对象分类属性点表/附表11.1-五金耗材/附表11.1.1-紧固件耗材.xlsx", "键","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HC-门锁", "/附表11-耗材类对象分类属性点表/附表11.1-五金耗材/附表11.1.2-门窗五金耗材.xlsx", "门锁","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HC-窗锁", "/附表11-耗材类对象分类属性点表/附表11.1-五金耗材/附表11.1.2-门窗五金耗材.xlsx", "窗锁","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HC-门窗拉手", "/附表11-耗材类对象分类属性点表/附表11.1-五金耗材/附表11.1.2-门窗五金耗材.xlsx", "门窗拉手","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HC-滑撑", "/附表11-耗材类对象分类属性点表/附表11.1-五金耗材/附表11.1.2-门窗五金耗材.xlsx", "滑撑","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HC-门窗合页", "/附表11-耗材类对象分类属性点表/附表11.1-五金耗材/附表11.1.2-门窗五金耗材.xlsx", "门窗合页","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HC-闭门器", "/附表11-耗材类对象分类属性点表/附表11.1-五金耗材/附表11.1.2-门窗五金耗材.xlsx", "闭门器","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HC-导轨", "/附表11-耗材类对象分类属性点表/附表11.1-五金耗材/附表11.1.2-门窗五金耗材.xlsx", "导轨","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HC-开窗器", "/附表11-耗材类对象分类属性点表/附表11.1-五金耗材/附表11.1.2-门窗五金耗材.xlsx", "开窗器","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HC-插销", "/附表11-耗材类对象分类属性点表/附表11.1-五金耗材/附表11.1.2-门窗五金耗材.xlsx", "插销","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HC-门定位器", "/附表11-耗材类对象分类属性点表/附表11.1-五金耗材/附表11.1.2-门窗五金耗材.xlsx", "门定位器","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HC-门窗滑轮", "/附表11-耗材类对象分类属性点表/附表11.1-五金耗材/附表11.1.2-门窗五金耗材.xlsx", "门窗滑轮","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HC-传动锁闭器", "/附表11-耗材类对象分类属性点表/附表11.1-五金耗材/附表11.1.2-门窗五金耗材.xlsx", "传动锁闭器","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HC-玻璃门夹", "/附表11-耗材类对象分类属性点表/附表11.1-五金耗材/附表11.1.2-门窗五金耗材.xlsx", "玻璃门夹","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HC-驳接爪", "/附表11-耗材类对象分类属性点表/附表11.1-五金耗材/附表11.1.3-幕墙五金耗材.xlsx", "驳接爪","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HC-驳接头", "/附表11-耗材类对象分类属性点表/附表11.1-五金耗材/附表11.1.3-幕墙五金耗材.xlsx", "驳接头","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HC-挂件", "/附表11-耗材类对象分类属性点表/附表11.1-五金耗材/附表11.1.3-幕墙五金耗材.xlsx", "挂件","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HC-家具合页", "/附表11-耗材类对象分类属性点表/附表11.1-五金耗材/附表11.1.4-家具五金耗材.xlsx", "家具合页","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HC-家具拉手", "/附表11-耗材类对象分类属性点表/附表11.1-五金耗材/附表11.1.4-家具五金耗材.xlsx", "家具拉手","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HC-家具锁", "/附表11-耗材类对象分类属性点表/附表11.1-五金耗材/附表11.1.4-家具五金耗材.xlsx", "家具锁","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HC-脚轮", "/附表11-耗材类对象分类属性点表/附表11.1-五金耗材/附表11.1.4-家具五金耗材.xlsx", "脚轮","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HC-弹簧", "/附表11-耗材类对象分类属性点表/附表11.1-五金耗材/附表11.1.4-家具五金耗材.xlsx", "弹簧","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HC-抽屉滑轨", "/附表11-耗材类对象分类属性点表/附表11.1-五金耗材/附表11.1.4-家具五金耗材.xlsx", "抽屉滑轨","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HC-水龙头", "/附表11-耗材类对象分类属性点表/附表11.1-五金耗材/附表11.1.5-水暖五金耗材.xlsx", "水龙头","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HC-淋浴器", "/附表11-耗材类对象分类属性点表/附表11.1-五金耗材/附表11.1.5-水暖五金耗材.xlsx", "淋浴器","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HC-地漏", "/附表11-耗材类对象分类属性点表/附表11.1-五金耗材/附表11.1.5-水暖五金耗材.xlsx", "地漏","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HC-地漏盖", "/附表11-耗材类对象分类属性点表/附表11.1-五金耗材/附表11.1.5-水暖五金耗材.xlsx", "地漏盖","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HC-扫除口", "/附表11-耗材类对象分类属性点表/附表11.1-五金耗材/附表11.1.5-水暖五金耗材.xlsx", "扫除口","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HC-存水弯", "/附表11-耗材类对象分类属性点表/附表11.1-五金耗材/附表11.1.5-水暖五金耗材.xlsx", "存水弯","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HC-检查口", "/附表11-耗材类对象分类属性点表/附表11.1-五金耗材/附表11.1.5-水暖五金耗材.xlsx", "检查口","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HC-排水栓", "/附表11-耗材类对象分类属性点表/附表11.1-五金耗材/附表11.1.5-水暖五金耗材.xlsx", "排水栓","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HC-镜子", "/附表11-耗材类对象分类属性点表/附表11.1-五金耗材/附表11.1.6-卫浴五金耗材.xlsx", "镜子","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HC-托架", "/附表11-耗材类对象分类属性点表/附表11.1-五金耗材/附表11.1.6-卫浴五金耗材.xlsx", "托架","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HC-马桶刷盒", "/附表11-耗材类对象分类属性点表/附表11.1-五金耗材/附表11.1.6-卫浴五金耗材.xlsx", "马桶刷盒","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HC-其他卫浴五金", "/附表11-耗材类对象分类属性点表/附表11.1-五金耗材/附表11.1.6-卫浴五金耗材.xlsx", "其他卫浴五金","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HC-轴承", "/附表11-耗材类对象分类属性点表/附表11.1-五金耗材/附表11.1.7-配件五金耗材.xlsx", "轴承","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HC-网", "/附表11-耗材类对象分类属性点表/附表11.1-五金耗材/附表11.1.7-配件五金耗材.xlsx", "网","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HC-铁丝", "/附表11-耗材类对象分类属性点表/附表11.1-五金耗材/附表11.1.7-配件五金耗材.xlsx", "铁丝","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HC-铁件", "/附表11-耗材类对象分类属性点表/附表11.1-五金耗材/附表11.1.7-配件五金耗材.xlsx", "铁件","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("HC-滚子链条", "/附表11-耗材类对象分类属性点表/附表11.1-五金耗材/附表11.1.7-配件五金耗材.xlsx", "滚子链条","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("TC-焊条", "/附表11-耗材类对象分类属性点表/附表11.2-工具耗材/附表11.2.1-焊接耗材.xlsx", "焊条","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("TC-焊丝", "/附表11-耗材类对象分类属性点表/附表11.2-工具耗材/附表11.2.1-焊接耗材.xlsx", "焊丝","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("TC-焊机焊粉", "/附表11-耗材类对象分类属性点表/附表11.2-工具耗材/附表11.2.1-焊接耗材.xlsx", "焊机焊粉","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("TC-钎料", "/附表11-耗材类对象分类属性点表/附表11.2-工具耗材/附表11.2.1-焊接耗材.xlsx", "钎料","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("TC-钎剂", "/附表11-耗材类对象分类属性点表/附表11.2-工具耗材/附表11.2.1-焊接耗材.xlsx", "钎剂","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("TC-云石片", "/附表11-耗材类对象分类属性点表/附表11.2-工具耗材/附表11.2.2-切割耗材.xlsx", "云石片","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("TC-切割片", "/附表11-耗材类对象分类属性点表/附表11.2-工具耗材/附表11.2.2-切割耗材.xlsx", "切割片","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("TC-锯片", "/附表11-耗材类对象分类属性点表/附表11.2-工具耗材/附表11.2.2-切割耗材.xlsx", "锯片","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("TC-锯条", "/附表11-耗材类对象分类属性点表/附表11.2-工具耗材/附表11.2.2-切割耗材.xlsx", "锯条","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("TC-砂轮", "/附表11-耗材类对象分类属性点表/附表11.2-工具耗材/附表11.2.3-抛磨耗材.xlsx", "砂轮","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("TC-磨头", "/附表11-耗材类对象分类属性点表/附表11.2-工具耗材/附表11.2.3-抛磨耗材.xlsx", "磨头","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("TC-砂瓦", "/附表11-耗材类对象分类属性点表/附表11.2-工具耗材/附表11.2.3-抛磨耗材.xlsx", "砂瓦","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("TC-砂纸", "/附表11-耗材类对象分类属性点表/附表11.2-工具耗材/附表11.2.3-抛磨耗材.xlsx", "砂纸","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("TC-砂布", "/附表11-耗材类对象分类属性点表/附表11.2-工具耗材/附表11.2.3-抛磨耗材.xlsx", "砂布","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("TC-油石", "/附表11-耗材类对象分类属性点表/附表11.2-工具耗材/附表11.2.3-抛磨耗材.xlsx", "油石","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("TC-冲", "/附表11-耗材类对象分类属性点表/附表11.2-工具耗材/附表11.2.4-冲凿耗材.xlsx", "冲","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("TC-凿", "/附表11-耗材类对象分类属性点表/附表11.2-工具耗材/附表11.2.4-冲凿耗材.xlsx", "凿","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("TC-电钻钻头", "/附表11-耗材类对象分类属性点表/附表11.2-工具耗材/附表11.2.5-批咀钻头耗材.xlsx", "电钻钻头","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("TC-水钻头", "/附表11-耗材类对象分类属性点表/附表11.2-工具耗材/附表11.2.5-批咀钻头耗材.xlsx", "水钻头","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("TC-螺丝刀头", "/附表11-耗材类对象分类属性点表/附表11.2-工具耗材/附表11.2.5-批咀钻头耗材.xlsx", "螺丝刀头","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("CM-通用涂料", "/附表11-耗材类对象分类属性点表/附表11.3-覆盖材料耗材/附表11.3.1-涂料耗材.xlsx", "通用涂料","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("CM-建筑涂料", "/附表11-耗材类对象分类属性点表/附表11.3-覆盖材料耗材/附表11.3.1-涂料耗材.xlsx", "建筑涂料","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("CM-建筑功能涂料", "/附表11-耗材类对象分类属性点表/附表11.3-覆盖材料耗材/附表11.3.1-涂料耗材.xlsx", "建筑功能涂料","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("CM-木器涂料", "/附表11-耗材类对象分类属性点表/附表11.3-覆盖材料耗材/附表11.3.1-涂料耗材.xlsx", "木器涂料","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("CM-金属涂料", "/附表11-耗材类对象分类属性点表/附表11.3-覆盖材料耗材/附表11.3.1-涂料耗材.xlsx", "金属涂料","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("CM-路面涂料", "/附表11-耗材类对象分类属性点表/附表11.3-覆盖材料耗材/附表11.3.1-涂料耗材.xlsx", "路面涂料","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("CM-沥青", "/附表11-耗材类对象分类属性点表/附表11.3-覆盖材料耗材/附表11.3.2-防腐防水材料耗材.xlsx", "沥青","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("CM-防水卷材", "/附表11-耗材类对象分类属性点表/附表11.3-覆盖材料耗材/附表11.3.2-防腐防水材料耗材.xlsx", "防水卷材","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("CM-防水密封材料", "/附表11-耗材类对象分类属性点表/附表11.3-覆盖材料耗材/附表11.3.2-防腐防水材料耗材.xlsx", "防水密封材料","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("CM-止水材料", "/附表11-耗材类对象分类属性点表/附表11.3-覆盖材料耗材/附表11.3.2-防腐防水材料耗材.xlsx", "止水材料","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("CM-堵漏灌浆补强材料", "/附表11-耗材类对象分类属性点表/附表11.3-覆盖材料耗材/附表11.3.2-防腐防水材料耗材.xlsx", "堵漏灌浆补强材料","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("OG-燃料油", "/附表11-耗材类对象分类属性点表/附表11.4-油品及胶粘材料耗材/附表11.4.1-油品耗材.xlsx", "燃料油","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("OG-绝缘油", "/附表11-耗材类对象分类属性点表/附表11.4-油品及胶粘材料耗材/附表11.4.1-油品耗材.xlsx", "绝缘油","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("OG-溶剂油", "/附表11-耗材类对象分类属性点表/附表11.4-油品及胶粘材料耗材/附表11.4.1-油品耗材.xlsx", "溶剂油","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("OG-润滑油", "/附表11-耗材类对象分类属性点表/附表11.4-油品及胶粘材料耗材/附表11.4.1-油品耗材.xlsx", "润滑油","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("OG-润滑脂", "/附表11-耗材类对象分类属性点表/附表11.4-油品及胶粘材料耗材/附表11.4.1-油品耗材.xlsx", "润滑脂","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("OG-润滑蜡", "/附表11-耗材类对象分类属性点表/附表11.4-油品及胶粘材料耗材/附表11.4.1-油品耗材.xlsx", "润滑蜡","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("OG-树脂", "/附表11-耗材类对象分类属性点表/附表11.4-油品及胶粘材料耗材/附表11.4.1-油品耗材.xlsx", "树脂","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("OG-颜料", "/附表11-耗材类对象分类属性点表/附表11.4-油品及胶粘材料耗材/附表11.4.1-油品耗材.xlsx", "颜料","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("OG-胶粘剂", "/附表11-耗材类对象分类属性点表/附表11.4-油品及胶粘材料耗材/附表11.4.2-胶粘材料耗材.xlsx", "胶粘剂","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("OG-胶粘制品", "/附表11-耗材类对象分类属性点表/附表11.4-油品及胶粘材料耗材/附表11.4.2-胶粘材料耗材.xlsx", "胶粘制品","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("PM-镀锌钢管", "/附表11-耗材类对象分类属性点表/附表11.5-管路耗材/附表11.5.1-管材耗材.xlsx", "镀锌钢管","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("PM-不锈钢管", "/附表11-耗材类对象分类属性点表/附表11.5-管路耗材/附表11.5.1-管材耗材.xlsx", "不锈钢管","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("PM-铸铁管", "/附表11-耗材类对象分类属性点表/附表11.5-管路耗材/附表11.5.1-管材耗材.xlsx", "铸铁管","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("PM-铝管", "/附表11-耗材类对象分类属性点表/附表11.5-管路耗材/附表11.5.1-管材耗材.xlsx", "铝管","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("PM-铜管", "/附表11-耗材类对象分类属性点表/附表11.5-管路耗材/附表11.5.1-管材耗材.xlsx", "铜管","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("PM-铜合金管", "/附表11-耗材类对象分类属性点表/附表11.5-管路耗材/附表11.5.1-管材耗材.xlsx", "铜合金管","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("PM-铅管", "/附表11-耗材类对象分类属性点表/附表11.5-管路耗材/附表11.5.1-管材耗材.xlsx", "铅管","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("PM-塑料管", "/附表11-耗材类对象分类属性点表/附表11.5-管路耗材/附表11.5.1-管材耗材.xlsx", "塑料管","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("PM-橡胶管", "/附表11-耗材类对象分类属性点表/附表11.5-管路耗材/附表11.5.1-管材耗材.xlsx", "橡胶管","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("PM-复合管", "/附表11-耗材类对象分类属性点表/附表11.5-管路耗材/附表11.5.1-管材耗材.xlsx", "复合管","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("PM-混凝土管", "/附表11-耗材类对象分类属性点表/附表11.5-管路耗材/附表11.5.1-管材耗材.xlsx", "混凝土管","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("PM-法兰", "/附表11-耗材类对象分类属性点表/附表11.5-管路耗材/附表11.5.2-连接管件耗材.xlsx", "法兰","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("PM-阀门", "/附表11-耗材类对象分类属性点表/附表11.5-管路耗材/附表11.5.2-连接管件耗材.xlsx", "阀门","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("PM-活接", "/附表11-耗材类对象分类属性点表/附表11.5-管路耗材/附表11.5.2-连接管件耗材.xlsx", "活接","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("PM-喉箍", "/附表11-耗材类对象分类属性点表/附表11.5-管路耗材/附表11.5.2-连接管件耗材.xlsx", "喉箍","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("PM-管箍", "/附表11-耗材类对象分类属性点表/附表11.5-管路耗材/附表11.5.2-连接管件耗材.xlsx", "管箍","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("PM-卡套", "/附表11-耗材类对象分类属性点表/附表11.5-管路耗材/附表11.5.2-连接管件耗材.xlsx", "卡套","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("PM-软接头", "/附表11-耗材类对象分类属性点表/附表11.5-管路耗材/附表11.5.2-连接管件耗材.xlsx", "软接头","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("PM-弯头", "/附表11-耗材类对象分类属性点表/附表11.5-管路耗材/附表11.5.3-方向管件耗材.xlsx", "弯头","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("PM-弯管", "/附表11-耗材类对象分类属性点表/附表11.5-管路耗材/附表11.5.3-方向管件耗材.xlsx", "弯管","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("PM-异径管", "/附表11-耗材类对象分类属性点表/附表11.5-管路耗材/附表11.5.4-管径管件耗材.xlsx", "异径管","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("PM-异径弯头", "/附表11-耗材类对象分类属性点表/附表11.5-管路耗材/附表11.5.4-管径管件耗材.xlsx", "异径弯头","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("PM-支管台", "/附表11-耗材类对象分类属性点表/附表11.5-管路耗材/附表11.5.4-管径管件耗材.xlsx", "支管台","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("PM-补强管", "/附表11-耗材类对象分类属性点表/附表11.5-管路耗材/附表11.5.4-管径管件耗材.xlsx", "补强管","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("PM-三通", "/附表11-耗材类对象分类属性点表/附表11.5-管路耗材/附表11.5.5-分支管件耗材.xlsx", "三通","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("PM-四通", "/附表11-耗材类对象分类属性点表/附表11.5-管路耗材/附表11.5.5-分支管件耗材.xlsx", "四通","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("PM-垫片", "/附表11-耗材类对象分类属性点表/附表11.5-管路耗材/附表11.5.6-密封管件耗材.xlsx", "垫片","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("PM-生料带", "/附表11-耗材类对象分类属性点表/附表11.5-管路耗材/附表11.5.6-密封管件耗材.xlsx", "生料带","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("PM-线麻", "/附表11-耗材类对象分类属性点表/附表11.5-管路耗材/附表11.5.6-密封管件耗材.xlsx", "线麻","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("PM-管堵", "/附表11-耗材类对象分类属性点表/附表11.5-管路耗材/附表11.5.6-密封管件耗材.xlsx", "管堵","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("PM-盲板", "/附表11-耗材类对象分类属性点表/附表11.5-管路耗材/附表11.5.6-密封管件耗材.xlsx", "盲板","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("PM-封头", "/附表11-耗材类对象分类属性点表/附表11.5-管路耗材/附表11.5.6-密封管件耗材.xlsx", "封头","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("PM-卡环", "/附表11-耗材类对象分类属性点表/附表11.5-管路耗材/附表11.5.7-固定管件耗材.xlsx", "卡环","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("PM-托钩", "/附表11-耗材类对象分类属性点表/附表11.5-管路耗材/附表11.5.7-固定管件耗材.xlsx", "托钩","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("PM-吊环", "/附表11-耗材类对象分类属性点表/附表11.5-管路耗材/附表11.5.7-固定管件耗材.xlsx", "吊环","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("PM-支架", "/附表11-耗材类对象分类属性点表/附表11.5-管路耗材/附表11.5.7-固定管件耗材.xlsx", "支架","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("PM-套管", "/附表11-耗材类对象分类属性点表/附表11.5-管路耗材/附表11.5.7-固定管件耗材.xlsx", "套管","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("PM-管卡", "/附表11-耗材类对象分类属性点表/附表11.5-管路耗材/附表11.5.7-固定管件耗材.xlsx", "管卡","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("SC-灭火器", "/附表11-耗材类对象分类属性点表/附表11.6-安全耗材/附表11.6.1-消防耗材.xlsx", "灭火器","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("SC-灭火剂", "/附表11-耗材类对象分类属性点表/附表11.6-安全耗材/附表11.6.1-消防耗材.xlsx", "灭火剂","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("SC-灭火散材", "/附表11-耗材类对象分类属性点表/附表11.6-安全耗材/附表11.6.1-消防耗材.xlsx", "灭火散材","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("SC-路锥", "/附表11-耗材类对象分类属性点表/附表11.6-安全耗材/附表11.6.2-安防耗材.xlsx", "路锥","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("SC-铁马", "/附表11-耗材类对象分类属性点表/附表11.6-安全耗材/附表11.6.2-安防耗材.xlsx", "铁马","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("SC-铁马罩", "/附表11-耗材类对象分类属性点表/附表11.6-安全耗材/附表11.6.2-安防耗材.xlsx", "铁马罩","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("SC-防爆毯", "/附表11-耗材类对象分类属性点表/附表11.6-安全耗材/附表11.6.2-安防耗材.xlsx", "防爆毯","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("SC-防爆围栏", "/附表11-耗材类对象分类属性点表/附表11.6-安全耗材/附表11.6.2-安防耗材.xlsx", "防爆围栏","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("SC-防爆罐", "/附表11-耗材类对象分类属性点表/附表11.6-安全耗材/附表11.6.2-安防耗材.xlsx", "防爆罐","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("SC-防汛沙袋", "/附表11-耗材类对象分类属性点表/附表11.6-安全耗材/附表11.6.2-安防耗材.xlsx", "防汛沙袋","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("EC-灯头", "/附表11-耗材类对象分类属性点表/附表11.7-电器耗材/附表11.7.1-灯具附件耗材.xlsx", "灯头","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("EC-灯罩", "/附表11-耗材类对象分类属性点表/附表11.7-电器耗材/附表11.7.1-灯具附件耗材.xlsx", "灯罩","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("EC-灯架", "/附表11-耗材类对象分类属性点表/附表11.7-电器耗材/附表11.7.1-灯具附件耗材.xlsx", "灯架","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("EC-灯伞", "/附表11-耗材类对象分类属性点表/附表11.7-电器耗材/附表11.7.1-灯具附件耗材.xlsx", "灯伞","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("EC-灯臂", "/附表11-耗材类对象分类属性点表/附表11.7-电器耗材/附表11.7.1-灯具附件耗材.xlsx", "灯臂","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("EC-启辉器", "/附表11-耗材类对象分类属性点表/附表11.7-电器耗材/附表11.7.1-灯具附件耗材.xlsx", "启辉器","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("EC-镇流器", "/附表11-耗材类对象分类属性点表/附表11.7-电器耗材/附表11.7.1-灯具附件耗材.xlsx", "镇流器","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("EC-灯具电源转换器", "/附表11-耗材类对象分类属性点表/附表11.7-电器耗材/附表11.7.1-灯具附件耗材.xlsx", "灯具电源转换器","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("EC-灯线", "/附表11-耗材类对象分类属性点表/附表11.7-电器耗材/附表11.7.1-灯具附件耗材.xlsx", "灯线","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("EC-熔断器", "/附表11-耗材类对象分类属性点表/附表11.7-电器耗材/附表11.7.2-保险绝缘及电热材料耗材.xlsx", "熔断器","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("EC-熔断丝", "/附表11-耗材类对象分类属性点表/附表11.7-电器耗材/附表11.7.2-保险绝缘及电热材料耗材.xlsx", "熔断丝","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("EC-固定插座", "/附表11-耗材类对象分类属性点表/附表11.7-电器耗材/附表11.7.3-电源配件耗材.xlsx", "固定插座","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("EC-移动插座", "/附表11-耗材类对象分类属性点表/附表11.7-电器耗材/附表11.7.3-电源配件耗材.xlsx", "移动插座","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("EC-电源插座转换器", "/附表11-耗材类对象分类属性点表/附表11.7-电器耗材/附表11.7.3-电源配件耗材.xlsx", "电源插座转换器","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("EC-控制开关", "/附表11-耗材类对象分类属性点表/附表11.7-电器耗材/附表11.7.3-电源配件耗材.xlsx", "控制开关","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("OC-笔记本", "/附表11-耗材类对象分类属性点表/附表11.8-办公耗材/附表11.8.1-办公用纸耗材.xlsx", "笔记本","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("OC-笔", "/附表11-耗材类对象分类属性点表/附表11.8-办公耗材/附表11.8.1-办公用纸耗材.xlsx", "笔","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("OC-复印纸", "/附表11-耗材类对象分类属性点表/附表11.8-办公耗材/附表11.8.1-办公用纸耗材.xlsx", "复印纸","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("OC-特种纸", "/附表11-耗材类对象分类属性点表/附表11.8-办公耗材/附表11.8.1-办公用纸耗材.xlsx", "特种纸","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("OC-墨盒", "/附表11-耗材类对象分类属性点表/附表11.8-办公耗材/附表11.8.2-打印耗材.xlsx", "墨盒","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("OC-墨粉", "/附表11-耗材类对象分类属性点表/附表11.8-办公耗材/附表11.8.2-打印耗材.xlsx", "墨粉","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("OC-硒鼓", "/附表11-耗材类对象分类属性点表/附表11.8-办公耗材/附表11.8.2-打印耗材.xlsx", "硒鼓","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("OC-文件袋", "/附表11-耗材类对象分类属性点表/附表11.8-办公耗材/附表11.8.3-装订耗材.xlsx", "文件袋","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("OC-标签", "/附表11-耗材类对象分类属性点表/附表11.8-办公耗材/附表11.8.3-装订耗材.xlsx", "标签","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("OC-长尾夹", "/附表11-耗材类对象分类属性点表/附表11.8-办公耗材/附表11.8.3-装订耗材.xlsx", "长尾夹","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("OC-订书钉", "/附表11-耗材类对象分类属性点表/附表11.8-办公耗材/附表11.8.3-装订耗材.xlsx", "订书钉","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("OC-回形针", "/附表11-耗材类对象分类属性点表/附表11.8-办公耗材/附表11.8.3-装订耗材.xlsx", "回形针","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("LC-抽纸", "/附表11-耗材类对象分类属性点表/附表11.9-生活耗材/附表11.9.1-生活用纸耗材.xlsx", "抽纸","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("LC-卷纸", "/附表11-耗材类对象分类属性点表/附表11.9-生活耗材/附表11.9.1-生活用纸耗材.xlsx", "卷纸","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("LC-湿纸", "/附表11-耗材类对象分类属性点表/附表11.9-生活耗材/附表11.9.1-生活用纸耗材.xlsx", "湿纸","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("LC-洗洁精", "/附表11-耗材类对象分类属性点表/附表11.9-生活耗材/附表11.9.2-清洁用品耗材.xlsx", "洗洁精","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("LC-洁厕剂", "/附表11-耗材类对象分类属性点表/附表11.9-生活耗材/附表11.9.2-清洁用品耗材.xlsx", "洁厕剂","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("LC-消毒液", "/附表11-耗材类对象分类属性点表/附表11.9-生活耗材/附表11.9.2-清洁用品耗材.xlsx", "消毒液","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("LC-清洁剂", "/附表11-耗材类对象分类属性点表/附表11.9-生活耗材/附表11.9.2-清洁用品耗材.xlsx", "清洁剂","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("LC-垃圾袋", "/附表11-耗材类对象分类属性点表/附表11.9-生活耗材/附表11.9.2-清洁用品耗材.xlsx", "垃圾袋","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("LC-牙膏", "/附表11-耗材类对象分类属性点表/附表11.9-生活耗材/附表11.9.3-卫生用品耗材.xlsx", "牙膏","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("LC-牙刷", "/附表11-耗材类对象分类属性点表/附表11.9-生活耗材/附表11.9.3-卫生用品耗材.xlsx", "牙刷","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("LC-拖鞋", "/附表11-耗材类对象分类属性点表/附表11.9-生活耗材/附表11.9.3-卫生用品耗材.xlsx", "拖鞋","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("LC-梳子", "/附表11-耗材类对象分类属性点表/附表11.9-生活耗材/附表11.9.3-卫生用品耗材.xlsx", "梳子","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("LC-沐浴露", "/附表11-耗材类对象分类属性点表/附表11.9-生活耗材/附表11.9.3-卫生用品耗材.xlsx", "沐浴露","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("LC-洗发水", "/附表11-耗材类对象分类属性点表/附表11.9-生活耗材/附表11.9.3-卫生用品耗材.xlsx", "洗发水","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("LC-被子", "/附表11-耗材类对象分类属性点表/附表11.9-生活耗材/附表11.9.4-家纺用品耗材.xlsx", "被子","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("LC-枕头", "/附表11-耗材类对象分类属性点表/附表11.9-生活耗材/附表11.9.4-家纺用品耗材.xlsx", "枕头","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("LC-毛巾", "/附表11-耗材类对象分类属性点表/附表11.9-生活耗材/附表11.9.4-家纺用品耗材.xlsx", "毛巾","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("LC-床单", "/附表11-耗材类对象分类属性点表/附表11.9-生活耗材/附表11.9.4-家纺用品耗材.xlsx", "床单","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("LC-毛毯", "/附表11-耗材类对象分类属性点表/附表11.9-生活耗材/附表11.9.4-家纺用品耗材.xlsx", "毛毯","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ analysisSheetDataAndWriteToFile("LC-窗帘", "/附表11-耗材类对象分类属性点表/附表11.9-生活耗材/附表11.9.4-家纺用品耗材.xlsx", "窗帘","2",equipCommonSeq,rwdDefClassMap);
|
|
|
+ equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
+ //equipCommonSeq = new AtomicInteger(this.equipCommonSeq.intValue());
|
|
|
}
|
|
|
|
|
|
@Data
|
|
@@ -1480,5 +2037,56 @@ public class ImportFuncidForRwdEdit {
|
|
|
System.err.println(JacksonMapper.toSimpleJson(array));
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 获取类型定义
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ private Map<String,String> queryRwdDefClass(){
|
|
|
+ Map<String, String> rwdDefClassMap = new HashMap<>();
|
|
|
+ //查询类型定义
|
|
|
+ String url = rwdeditServer + "/rwdedit/def/class";
|
|
|
+ JacksonCriteria criteria = JacksonCriteria.newInstance();
|
|
|
+ //criteria.add("systemCode", key);
|
|
|
+ String dmpToken = queryRwdLoginToken();
|
|
|
+ HttpUtils.HttpResult response = httpUtils.post(url, JacksonMapper.toSimpleJson(criteria), 300000,dmpToken);
|
|
|
+ if (!response.success()) {
|
|
|
+ return null;
|
|
|
+ }
|
|
|
+ String content = response.getContent();
|
|
|
+ ObjectNode objectNode = JacksonMapper.toObject(content, ObjectNode.class);
|
|
|
+ ArrayNode data = JacksonMapper.getArray(objectNode, "data", JsonNodeFactory.instance.arrayNode());
|
|
|
+ data.forEach(item->{
|
|
|
+ ObjectNode obj = (ObjectNode) item;
|
|
|
+ String code = JacksonMapper.getString(obj, "code");
|
|
|
+ String systemCode = JacksonMapper.getString(obj, "systemCode");
|
|
|
+ if(StringUtils.isBlank(systemCode)){
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ String name = JacksonMapper.getString(obj, "name");
|
|
|
+ rwdDefClassMap.put(systemCode+"-"+name,code);
|
|
|
+ });
|
|
|
+ return rwdDefClassMap;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 获取登录token
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ private String queryRwdLoginToken(){
|
|
|
+ String url = rwdeditServer + "/rwdedit/login";
|
|
|
+ ObjectNode criteria =JsonNodeFactory.instance.objectNode();
|
|
|
+ criteria.put("username", "admin");
|
|
|
+ criteria.put("password","123456");
|
|
|
+ HttpUtils.HttpResult response = httpUtils.post(url, JacksonMapper.toSimpleJson(criteria), 300000);
|
|
|
+ if (!response.success()) {
|
|
|
+ return null;
|
|
|
+ }
|
|
|
+ String content = response.getContent();
|
|
|
+ ObjectNode objectNode = JacksonMapper.toObject(content, ObjectNode.class);
|
|
|
+ ObjectNode data = JacksonMapper.getObject(objectNode, "data", JsonNodeFactory.instance.objectNode());
|
|
|
+ String token = JacksonMapper.getString(data, "token");
|
|
|
+ return token;
|
|
|
+ }
|
|
|
}
|
|
|
|