Commit 830a2e3ed772c773cf467578971449e1256d0d34

Authored by 徐烜
1 parent 15bce4b4

1、国际化改造:人员基础信息后端国际化改造

src/main/java/com/bsth/service/schedule/datatools/EmployeeDataToolsImpl.java
1 package com.bsth.service.schedule.datatools; 1 package com.bsth.service.schedule.datatools;
2 2
3 import com.bsth.service.schedule.exception.ScheduleException; 3 import com.bsth.service.schedule.exception.ScheduleException;
4 -import com.bsth.service.schedule.utils.*;  
5 -import jxl.write.Label;  
6 -import jxl.write.WritableSheet;  
7 -import jxl.write.WritableWorkbook; 4 +import com.bsth.service.schedule.utils.DataToolsFile;
  5 +import com.bsth.service.schedule.utils.DataToolsProperties;
  6 +import com.bsth.service.schedule.utils.DataToolsService;
  7 +import com.bsth.util.I18n;
8 import org.slf4j.Logger; 8 import org.slf4j.Logger;
9 import org.slf4j.LoggerFactory; 9 import org.slf4j.LoggerFactory;
10 import org.springframework.beans.factory.annotation.Autowired; 10 import org.springframework.beans.factory.annotation.Autowired;
11 import org.springframework.beans.factory.annotation.Qualifier; 11 import org.springframework.beans.factory.annotation.Qualifier;
12 -import org.springframework.boot.context.properties.EnableConfigurationProperties;  
13 import org.springframework.stereotype.Service; 12 import org.springframework.stereotype.Service;
14 13
15 import java.io.File; 14 import java.io.File;
16 import java.io.PrintWriter; 15 import java.io.PrintWriter;
17 import java.io.StringWriter; 16 import java.io.StringWriter;
18 import java.util.HashMap; 17 import java.util.HashMap;
  18 +import java.util.Locale;
19 import java.util.Map; 19 import java.util.Map;
20 20
21 /** 21 /**
@@ -35,48 +35,7 @@ public class EmployeeDataToolsImpl implements DataToolsService { @@ -35,48 +35,7 @@ public class EmployeeDataToolsImpl implements DataToolsService {
35 35
36 @Override 36 @Override
37 public DataToolsFile uploadFile(String filename, byte[] filedata) throws ScheduleException { 37 public DataToolsFile uploadFile(String filename, byte[] filedata) throws ScheduleException {
38 - try {  
39 - // 对上传的excel文件做处理  
40 - // 将第一个sheet保存成一个xls文件  
41 - DataToolsFile dataToolsFile = dataToolsService.uploadFile(filename, filedata);  
42 - File file = dataToolsFile.getFile();  
43 -  
44 - // poi api  
45 - org.apache.poi.ss.usermodel.Workbook poi_workbook = dataToolsFile.getFileType().getWorkBook(file);  
46 - org.apache.poi.ss.usermodel.Sheet poi_sheet = poi_workbook.getSheetAt(0); // 第一个sheet  
47 - int rowNum = poi_sheet.getLastRowNum(); // 获取总共多少行  
48 - if (rowNum < 0) {  
49 - throw new RuntimeException("表格内容为空!");  
50 - }  
51 - int colNum = poi_sheet.getRow(0).getLastCellNum(); // 获取总共多少列,以第一行为主  
52 -  
53 - // jxl api  
54 - File fileCal = new File(file.getAbsolutePath() + "_sheetChange.xls");  
55 - WritableWorkbook writableWorkbook = jxl.Workbook.createWorkbook(fileCal);  
56 - WritableSheet writableSheet = writableWorkbook.createSheet("工作表1", 0);  
57 -  
58 - for (int i = 0; i <= rowNum; i++) {  
59 - for (int j = 0; j <= colNum; j++) {  
60 - // poi读  
61 - String cellContent = PoiUtils.getStringValueFromCell(poi_sheet.getRow(i).getCell(j));  
62 - // jxl写  
63 - writableSheet.addCell(new Label(j, i, cellContent));  
64 - }  
65 -  
66 - }  
67 - writableWorkbook.write();  
68 - writableWorkbook.close();  
69 - poi_workbook.close();  
70 -  
71 - DataToolsFile dataToolsFile1 = new DataToolsFile();  
72 - dataToolsFile1.setFile(fileCal);  
73 - dataToolsFile1.setFileType(DataToolsFileType.XLS);  
74 -  
75 - return dataToolsFile1;  
76 -  
77 - } catch (Exception exp) {  
78 - throw new ScheduleException(exp);  
79 - } 38 + return this.dataToolsService.uploadFile(filename, filedata);
80 } 39 }
81 40
82 @Override 41 @Override
@@ -85,8 +44,17 @@ public class EmployeeDataToolsImpl implements DataToolsService { @@ -85,8 +44,17 @@ public class EmployeeDataToolsImpl implements DataToolsService {
85 LOGGER.info("//---------------- 导入人员基础信息 start... ----------------//"); 44 LOGGER.info("//---------------- 导入人员基础信息 start... ----------------//");
86 // 创建ktr转换所需参数 45 // 创建ktr转换所需参数
87 Map<String, Object> ktrParms = new HashMap<>(); 46 Map<String, Object> ktrParms = new HashMap<>();
88 - File ktrFile = new File(this.getClass().getResource(  
89 - dataToolsProperties.getEmployeesDatainputktr()).toURI()); 47 + String country = Locale.getDefault().getLanguage();
  48 + File ktrFile = null;
  49 + if ("zh".equals(country)) {
  50 + ktrFile = new File(this.getClass().getResource(
  51 + dataToolsProperties.getZhPersonnelBasicDataImport()).toURI());
  52 + } else if ("en".equals(country)) {
  53 + ktrFile = new File(this.getClass().getResource(
  54 + dataToolsProperties.getEnPersonnelBasicDataImport()).toURI());
  55 + } else {
  56 + throw new Exception("not found Local[" + country + "] corresponding ktr.");
  57 + }
90 58
91 // 通用参数,转换文件路径,excel输入文件路径,错误输出文件路径 59 // 通用参数,转换文件路径,excel输入文件路径,错误输出文件路径
92 ktrParms.put("transpath", ktrFile.getAbsolutePath()); 60 ktrParms.put("transpath", ktrFile.getAbsolutePath());
@@ -113,12 +81,21 @@ public class EmployeeDataToolsImpl implements DataToolsService { @@ -113,12 +81,21 @@ public class EmployeeDataToolsImpl implements DataToolsService {
113 LOGGER.info("//---------------- 导出人员基础信息 start... ----------------//"); 81 LOGGER.info("//---------------- 导出人员基础信息 start... ----------------//");
114 // 创建ktr转换所需参数 82 // 创建ktr转换所需参数
115 Map<String, Object> ktrParms = new HashMap<>(); 83 Map<String, Object> ktrParms = new HashMap<>();
116 - File ktrFile = new File(this.getClass().getResource(  
117 - dataToolsProperties.getEmployeesDataoutputktr()).toURI()); 84 + String country = Locale.getDefault().getLanguage();
  85 + File ktrFile = null;
  86 + if ("zh".equals(country)) {
  87 + ktrFile = new File(this.getClass().getResource(
  88 + dataToolsProperties.getZhPersonnelBasicDataExport()).toURI());
  89 + } else if ("en".equals(country)) {
  90 + ktrFile = new File(this.getClass().getResource(
  91 + dataToolsProperties.getEnPersonnelBasicDataExport()).toURI());
  92 + } else {
  93 + throw new Exception("not found Local[" + country + "] corresponding ktr.");
  94 + }
118 95
119 // 通用参数,转换文件路径,excel输出文件名 96 // 通用参数,转换文件路径,excel输出文件名
120 ktrParms.put("transpath", ktrFile.getAbsolutePath()); 97 ktrParms.put("transpath", ktrFile.getAbsolutePath());
121 - ktrParms.put("filename", "$$$$$${txt-1614}_download-"); 98 + ktrParms.put("filename", I18n.getInstance().getMessage("txt-1614") + "_download-");
122 99
123 ktrParms.putAll(params); 100 ktrParms.putAll(params);
124 101
src/main/java/com/bsth/service/schedule/impl/EmployeeServiceImpl.java
@@ -5,6 +5,7 @@ import com.bsth.service.schedule.EmployeeService; @@ -5,6 +5,7 @@ import com.bsth.service.schedule.EmployeeService;
5 import com.bsth.service.schedule.exception.ScheduleException; 5 import com.bsth.service.schedule.exception.ScheduleException;
6 import com.bsth.service.schedule.utils.DataToolsFile; 6 import com.bsth.service.schedule.utils.DataToolsFile;
7 import com.bsth.service.schedule.utils.DataToolsService; 7 import com.bsth.service.schedule.utils.DataToolsService;
  8 +import com.bsth.util.I18n;
8 import org.springframework.beans.factory.annotation.Autowired; 9 import org.springframework.beans.factory.annotation.Autowired;
9 import org.springframework.beans.factory.annotation.Qualifier; 10 import org.springframework.beans.factory.annotation.Qualifier;
10 import org.springframework.stereotype.Service; 11 import org.springframework.stereotype.Service;
@@ -48,9 +49,9 @@ public class EmployeeServiceImpl extends BServiceImpl&lt;Personnel, Integer&gt; implem @@ -48,9 +49,9 @@ public class EmployeeServiceImpl extends BServiceImpl&lt;Personnel, Integer&gt; implem
48 param.put("id_ne", personnel.getId()); 49 param.put("id_ne", personnel.getId());
49 } 50 }
50 param.put("companyCode_eq", personnel.getCompanyCode()); 51 param.put("companyCode_eq", personnel.getCompanyCode());
51 - param.put("jobCode_eq", personnel.getJobCode()); 52 + param.put("jobCodeori_eq", personnel.getJobCode());
52 if (!CollectionUtils.isEmpty(list(param))) { 53 if (!CollectionUtils.isEmpty(list(param))) {
53 - throw new ScheduleException("相同公司工号重复"); 54 + throw new ScheduleException(I18n.getInstance().getMessage("employeeServiceImpl-line54"));
54 } 55 }
55 } 56 }
56 } 57 }
src/main/java/com/bsth/service/schedule/utils/DataToolsProperties.java
@@ -98,11 +98,56 @@ public class DataToolsProperties { @@ -98,11 +98,56 @@ public class DataToolsProperties {
98 98
99 //---------------------------- 车辆基础数据相关ktr(以上)----------------------------// 99 //---------------------------- 车辆基础数据相关ktr(以上)----------------------------//
100 100
  101 + //---------------------------- 人员基础数据相关ktr(以下)----------------------------//
  102 + /** 人员基础信息导入(英文) */
  103 + @NotNull
  104 + private String enPersonnelBasicDataImport;
  105 + /** 人员基础信息导出(英文) */
  106 + @NotNull
  107 + private String enPersonnelBasicDataExport;
  108 + /** 人员基础信息导入(中文) */
  109 + @NotNull
  110 + private String zhPersonnelBasicDataImport;
  111 + /** 人员基础信息导入(中文) */
  112 + @NotNull
  113 + private String zhPersonnelBasicDataExport;
  114 +
  115 + public String getEnPersonnelBasicDataImport() {
  116 + return enPersonnelBasicDataImport;
  117 + }
  118 +
  119 + public void setEnPersonnelBasicDataImport(String enPersonnelBasicDataImport) {
  120 + this.enPersonnelBasicDataImport = enPersonnelBasicDataImport;
  121 + }
  122 +
  123 + public String getEnPersonnelBasicDataExport() {
  124 + return enPersonnelBasicDataExport;
  125 + }
  126 +
  127 + public void setEnPersonnelBasicDataExport(String enPersonnelBasicDataExport) {
  128 + this.enPersonnelBasicDataExport = enPersonnelBasicDataExport;
  129 + }
  130 +
  131 + public String getZhPersonnelBasicDataImport() {
  132 + return zhPersonnelBasicDataImport;
  133 + }
  134 +
  135 + public void setZhPersonnelBasicDataImport(String zhPersonnelBasicDataImport) {
  136 + this.zhPersonnelBasicDataImport = zhPersonnelBasicDataImport;
  137 + }
  138 +
  139 + public String getZhPersonnelBasicDataExport() {
  140 + return zhPersonnelBasicDataExport;
  141 + }
  142 +
  143 + public void setZhPersonnelBasicDataExport(String zhPersonnelBasicDataExport) {
  144 + this.zhPersonnelBasicDataExport = zhPersonnelBasicDataExport;
  145 + }
  146 +
  147 + //---------------------------- 人员基础数据相关ktr(以上)----------------------------//
  148 +
101 149
102 //------------------------- 导入数据ktr --------------------------// 150 //------------------------- 导入数据ktr --------------------------//
103 - /** 人员信息导入ktr转换 */  
104 - @NotNull  
105 - private String employeesDatainputktr;  
106 /** 车辆配置信息导入 */ 151 /** 车辆配置信息导入 */
107 @NotNull 152 @NotNull
108 private String carsconfigDatainputktr; 153 private String carsconfigDatainputktr;
@@ -142,9 +187,6 @@ public class DataToolsProperties { @@ -142,9 +187,6 @@ public class DataToolsProperties {
142 187
143 188
144 //------------------------- 导出数据ktr --------------------------// 189 //------------------------- 导出数据ktr --------------------------//
145 - /** 人员信息导出ktr转换 */  
146 - @NotNull  
147 - private String employeesDataoutputktr;  
148 /** 时刻表导出元数据ktr转换 */ 190 /** 时刻表导出元数据ktr转换 */
149 @NotNull 191 @NotNull
150 private String ttinfodetailMetaoutput; 192 private String ttinfodetailMetaoutput;
@@ -198,14 +240,6 @@ public class DataToolsProperties { @@ -198,14 +240,6 @@ public class DataToolsProperties {
198 this.ttinfodetailMetadatainputktr = ttinfodetailMetadatainputktr; 240 this.ttinfodetailMetadatainputktr = ttinfodetailMetadatainputktr;
199 } 241 }
200 242
201 - public String getEmployeesDatainputktr() {  
202 - return employeesDatainputktr;  
203 - }  
204 -  
205 - public void setEmployeesDatainputktr(String employeesDatainputktr) {  
206 - this.employeesDatainputktr = employeesDatainputktr;  
207 - }  
208 -  
209 public String getCarsconfigDatainputktr() { 243 public String getCarsconfigDatainputktr() {
210 return carsconfigDatainputktr; 244 return carsconfigDatainputktr;
211 } 245 }
@@ -310,14 +344,6 @@ public class DataToolsProperties { @@ -310,14 +344,6 @@ public class DataToolsProperties {
310 this.fileoutputDir = fileoutputDir; 344 this.fileoutputDir = fileoutputDir;
311 } 345 }
312 346
313 - public String getEmployeesDataoutputktr() {  
314 - return employeesDataoutputktr;  
315 - }  
316 -  
317 - public void setEmployeesDataoutputktr(String employeesDataoutputktr) {  
318 - this.employeesDataoutputktr = employeesDataoutputktr;  
319 - }  
320 -  
321 public String getKvarsDbdname() { 347 public String getKvarsDbdname() {
322 return kvarsDbdname; 348 return kvarsDbdname;
323 } 349 }
src/main/resources/datatools/config-cloud.properties
@@ -25,10 +25,15 @@ datatools.zh_vehicle_basic_data_import=/datatools/ktrs/zh/vehicle-basic-data_imp @@ -25,10 +25,15 @@ datatools.zh_vehicle_basic_data_import=/datatools/ktrs/zh/vehicle-basic-data_imp
25 datatools.zh_vehicle_basic_data_export=/datatools/ktrs/zh/vehicle-basic-data_export.ktr 25 datatools.zh_vehicle_basic_data_export=/datatools/ktrs/zh/vehicle-basic-data_export.ktr
26 ##---------------------------- 车辆基础数据相关ktr(以上)----------------------------## 26 ##---------------------------- 车辆基础数据相关ktr(以上)----------------------------##
27 27
  28 +##---------------------------- 人员基础数据相关ktr(以下)----------------------------##
  29 +datatools.en_personnel_basic_data_import=/datatools/ktrs/en/personnel-basic-data_import.ktr
  30 +datatools.en_personnel_basic_data_export=/datatools/ktrs/en/personnel-basic-data_export.ktr
  31 +datatools.zh_personnel_basic_data_import=/datatools/ktrs/zh/personnel-basic-data_import.ktr
  32 +datatools.zh_personnel_basic_data_export=/datatools/ktrs/zh/personnel-basic-data_export.ktr
  33 +##---------------------------- 人员基础数据相关ktr(以上)----------------------------##
  34 +
28 35
29 ##---------------------------- 导入数据ktr ----------------------------## 36 ##---------------------------- 导入数据ktr ----------------------------##
30 -# 人员信息导入  
31 -datatools.employees_datainputktr=/datatools/ktrs/employeesDataInput.ktr  
32 # 路牌信息导入 37 # 路牌信息导入
33 datatools.guideboards_datainputktr=/datatools/ktrs/guideboardDataInput.ktr 38 datatools.guideboards_datainputktr=/datatools/ktrs/guideboardDataInput.ktr
34 # 时刻表基础信息导入 39 # 时刻表基础信息导入
@@ -58,8 +63,6 @@ datatools.schedulerule_datainputktr=/datatools/ktrs/scheduleRuleDataInput.ktr @@ -58,8 +63,6 @@ datatools.schedulerule_datainputktr=/datatools/ktrs/scheduleRuleDataInput.ktr
58 63
59 64
60 ##---------------------------- 导出数据ktr -----------------------------## 65 ##---------------------------- 导出数据ktr -----------------------------##
61 -# 人员信息导出ktr转换  
62 -datatools.employees_dataoutputktr=/datatools/ktrs/employeesDataOutput.ktr  
63 # 时刻表导出元数据ktr转换 66 # 时刻表导出元数据ktr转换
64 datatools.ttinfodetail_metaoutput=/datatools/ktrs/ttinfodetailDataOutputMetaData.ktr 67 datatools.ttinfodetail_metaoutput=/datatools/ktrs/ttinfodetailDataOutputMetaData.ktr
65 # 时刻表导出数据ktr转换 68 # 时刻表导出数据ktr转换
src/main/resources/datatools/config-dev.properties
@@ -24,13 +24,17 @@ datatools.zh_vehicle_basic_data_import=/datatools/ktrs/zh/vehicle-basic-data_imp @@ -24,13 +24,17 @@ datatools.zh_vehicle_basic_data_import=/datatools/ktrs/zh/vehicle-basic-data_imp
24 datatools.zh_vehicle_basic_data_export=/datatools/ktrs/zh/vehicle-basic-data_export.ktr 24 datatools.zh_vehicle_basic_data_export=/datatools/ktrs/zh/vehicle-basic-data_export.ktr
25 ##---------------------------- 车辆基础数据相关ktr(以上)----------------------------## 25 ##---------------------------- 车辆基础数据相关ktr(以上)----------------------------##
26 26
  27 +##---------------------------- 人员基础数据相关ktr(以下)----------------------------##
  28 +datatools.en_personnel_basic_data_import=/datatools/ktrs/en/personnel-basic-data_import.ktr
  29 +datatools.en_personnel_basic_data_export=/datatools/ktrs/en/personnel-basic-data_export.ktr
  30 +datatools.zh_personnel_basic_data_import=/datatools/ktrs/zh/personnel-basic-data_import.ktr
  31 +datatools.zh_personnel_basic_data_export=/datatools/ktrs/zh/personnel-basic-data_export.ktr
  32 +##---------------------------- 人员基础数据相关ktr(以上)----------------------------##
27 33
28 34
29 35
30 36
31 ##---------------------------- 导入数据ktr ----------------------------## 37 ##---------------------------- 导入数据ktr ----------------------------##
32 -# 人员信息导入  
33 -datatools.employees_datainputktr=/datatools/ktrs/employeesDataInput.ktr  
34 # 路牌信息导入 38 # 路牌信息导入
35 datatools.guideboards_datainputktr=/datatools/ktrs/guideboardDataInput.ktr 39 datatools.guideboards_datainputktr=/datatools/ktrs/guideboardDataInput.ktr
36 # 时刻表基础信息导入 40 # 时刻表基础信息导入
@@ -59,8 +63,6 @@ datatools.employeesconfig_datainputktr=/datatools/ktrs/employeesConfigDataInput. @@ -59,8 +63,6 @@ datatools.employeesconfig_datainputktr=/datatools/ktrs/employeesConfigDataInput.
59 datatools.schedulerule_datainputktr=/datatools/ktrs/scheduleRuleDataInput.ktr 63 datatools.schedulerule_datainputktr=/datatools/ktrs/scheduleRuleDataInput.ktr
60 64
61 ##---------------------------- 导出数据ktr -----------------------------## 65 ##---------------------------- 导出数据ktr -----------------------------##
62 -# 人员信息导出ktr转换  
63 -datatools.employees_dataoutputktr=/datatools/ktrs/employeesDataOutput.ktr  
64 # 时刻表导出元数据ktr转换 66 # 时刻表导出元数据ktr转换
65 datatools.ttinfodetail_metaoutput=/datatools/ktrs/ttinfodetailDataOutputMetaData.ktr 67 datatools.ttinfodetail_metaoutput=/datatools/ktrs/ttinfodetailDataOutputMetaData.ktr
66 # 时刻表导出数据ktr转换 68 # 时刻表导出数据ktr转换
src/main/resources/datatools/config-prod.properties
@@ -25,11 +25,16 @@ datatools.zh_vehicle_basic_data_import=/datatools/ktrs/zh/vehicle-basic-data_imp @@ -25,11 +25,16 @@ datatools.zh_vehicle_basic_data_import=/datatools/ktrs/zh/vehicle-basic-data_imp
25 datatools.zh_vehicle_basic_data_export=/datatools/ktrs/zh/vehicle-basic-data_export.ktr 25 datatools.zh_vehicle_basic_data_export=/datatools/ktrs/zh/vehicle-basic-data_export.ktr
26 ##---------------------------- 车辆基础数据相关ktr(以上)----------------------------## 26 ##---------------------------- 车辆基础数据相关ktr(以上)----------------------------##
27 27
  28 +##---------------------------- 人员基础数据相关ktr(以下)----------------------------##
  29 +datatools.en_personnel_basic_data_import=/datatools/ktrs/en/personnel-basic-data_import.ktr
  30 +datatools.en_personnel_basic_data_export=/datatools/ktrs/en/personnel-basic-data_export.ktr
  31 +datatools.zh_personnel_basic_data_import=/datatools/ktrs/zh/personnel-basic-data_import.ktr
  32 +datatools.zh_personnel_basic_data_export=/datatools/ktrs/zh/personnel-basic-data_export.ktr
  33 +##---------------------------- 人员基础数据相关ktr(以上)----------------------------##
  34 +
28 35
29 36
30 ##---------------------------- 导入数据ktr ----------------------------## 37 ##---------------------------- 导入数据ktr ----------------------------##
31 -# 人员信息导入  
32 -datatools.employees_datainputktr=/datatools/ktrs/employeesDataInput.ktr  
33 # 路牌信息导入 38 # 路牌信息导入
34 datatools.guideboards_datainputktr=/datatools/ktrs/guideboardDataInput.ktr 39 datatools.guideboards_datainputktr=/datatools/ktrs/guideboardDataInput.ktr
35 # 时刻表基础信息导入 40 # 时刻表基础信息导入
@@ -59,8 +64,6 @@ datatools.schedulerule_datainputktr=/datatools/ktrs/scheduleRuleDataInput.ktr @@ -59,8 +64,6 @@ datatools.schedulerule_datainputktr=/datatools/ktrs/scheduleRuleDataInput.ktr
59 64
60 65
61 ##---------------------------- 导出数据ktr -----------------------------## 66 ##---------------------------- 导出数据ktr -----------------------------##
62 -# 人员信息导出ktr转换  
63 -datatools.employees_dataoutputktr=/datatools/ktrs/employeesDataOutput.ktr  
64 # 时刻表导出元数据ktr转换 67 # 时刻表导出元数据ktr转换
65 datatools.ttinfodetail_metaoutput=/datatools/ktrs/ttinfodetailDataOutputMetaData.ktr 68 datatools.ttinfodetail_metaoutput=/datatools/ktrs/ttinfodetailDataOutputMetaData.ktr
66 # 时刻表导出数据ktr转换 69 # 时刻表导出数据ktr转换
src/main/resources/datatools/config-test.properties
@@ -26,10 +26,15 @@ datatools.zh_vehicle_basic_data_import=/datatools/ktrs/zh/vehicle-basic-data_imp @@ -26,10 +26,15 @@ datatools.zh_vehicle_basic_data_import=/datatools/ktrs/zh/vehicle-basic-data_imp
26 datatools.zh_vehicle_basic_data_export=/datatools/ktrs/zh/vehicle-basic-data_export.ktr 26 datatools.zh_vehicle_basic_data_export=/datatools/ktrs/zh/vehicle-basic-data_export.ktr
27 ##---------------------------- 车辆基础数据相关ktr(以上)----------------------------## 27 ##---------------------------- 车辆基础数据相关ktr(以上)----------------------------##
28 28
  29 +##---------------------------- 人员基础数据相关ktr(以下)----------------------------##
  30 +datatools.en_personnel_basic_data_import=/datatools/ktrs/en/personnel-basic-data_import.ktr
  31 +datatools.en_personnel_basic_data_export=/datatools/ktrs/en/personnel-basic-data_export.ktr
  32 +datatools.zh_personnel_basic_data_import=/datatools/ktrs/zh/personnel-basic-data_import.ktr
  33 +datatools.zh_personnel_basic_data_export=/datatools/ktrs/zh/personnel-basic-data_export.ktr
  34 +##---------------------------- 人员基础数据相关ktr(以上)----------------------------##
  35 +
29 36
30 ##---------------------------- 导入数据ktr ----------------------------## 37 ##---------------------------- 导入数据ktr ----------------------------##
31 -# 人员信息导入  
32 -datatools.employees_datainputktr=/datatools/ktrs/employeesDataInput.ktr  
33 # 路牌信息导入 38 # 路牌信息导入
34 datatools.guideboards_datainputktr=/datatools/ktrs/guideboardDataInput.ktr 39 datatools.guideboards_datainputktr=/datatools/ktrs/guideboardDataInput.ktr
35 # 时刻表基础信息导入 40 # 时刻表基础信息导入
@@ -58,8 +63,6 @@ datatools.employeesconfig_datainputktr=/datatools/ktrs/employeesConfigDataInput. @@ -58,8 +63,6 @@ datatools.employeesconfig_datainputktr=/datatools/ktrs/employeesConfigDataInput.
58 datatools.schedulerule_datainputktr=/datatools/ktrs/scheduleRuleDataInput.ktr 63 datatools.schedulerule_datainputktr=/datatools/ktrs/scheduleRuleDataInput.ktr
59 64
60 ##---------------------------- 导出数据ktr -----------------------------## 65 ##---------------------------- 导出数据ktr -----------------------------##
61 -# 人员信息导出ktr转换  
62 -datatools.employees_dataoutputktr=/datatools/ktrs/employeesDataOutput.ktr  
63 # 时刻表导出元数据ktr转换 66 # 时刻表导出元数据ktr转换
64 datatools.ttinfodetail_metaoutput=/datatools/ktrs/ttinfodetailDataOutputMetaData.ktr 67 datatools.ttinfodetail_metaoutput=/datatools/ktrs/ttinfodetailDataOutputMetaData.ktr
65 # 时刻表导出数据ktr转换 68 # 时刻表导出数据ktr转换
src/main/resources/datatools/ktrs/en/personnel-basic-data_export.ktr 0 → 100644
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<transformation>
  3 + <info>
  4 + <name>&#x4eba;&#x5458;&#x4fe1;&#x606f;&#x5bfc;&#x51fa;_en</name>
  5 + <description/>
  6 + <extended_description/>
  7 + <trans_version/>
  8 + <trans_type>Normal</trans_type>
  9 + <trans_status>0</trans_status>
  10 + <directory>&#x2f;</directory>
  11 + <parameters>
  12 + <parameter>
  13 + <name>cgsbm_in</name>
  14 + <default_value/>
  15 + <description>&#x5206;&#x516c;&#x53f8;&#x7f16;&#x7801;</description>
  16 + </parameter>
  17 + <parameter>
  18 + <name>filepath</name>
  19 + <default_value/>
  20 + <description>excel&#x6587;&#x4ef6;&#x8def;&#x5f84;</description>
  21 + </parameter>
  22 + </parameters>
  23 + <log>
  24 +<trans-log-table><connection/>
  25 +<schema/>
  26 +<table/>
  27 +<size_limit_lines/>
  28 +<interval/>
  29 +<timeout_days/>
  30 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STATUS</id><enabled>Y</enabled><name>STATUS</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name><subject/></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name><subject/></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name><subject/></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name><subject/></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name><subject/></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name><subject/></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>STARTDATE</id><enabled>Y</enabled><name>STARTDATE</name></field><field><id>ENDDATE</id><enabled>Y</enabled><name>ENDDATE</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>DEPDATE</id><enabled>Y</enabled><name>DEPDATE</name></field><field><id>REPLAYDATE</id><enabled>Y</enabled><name>REPLAYDATE</name></field><field><id>LOG_FIELD</id><enabled>Y</enabled><name>LOG_FIELD</name></field><field><id>EXECUTING_SERVER</id><enabled>N</enabled><name>EXECUTING_SERVER</name></field><field><id>EXECUTING_USER</id><enabled>N</enabled><name>EXECUTING_USER</name></field><field><id>CLIENT</id><enabled>N</enabled><name>CLIENT</name></field></trans-log-table>
  31 +<perf-log-table><connection/>
  32 +<schema/>
  33 +<table/>
  34 +<interval/>
  35 +<timeout_days/>
  36 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>SEQ_NR</id><enabled>Y</enabled><name>SEQ_NR</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>INPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>INPUT_BUFFER_ROWS</name></field><field><id>OUTPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>OUTPUT_BUFFER_ROWS</name></field></perf-log-table>
  37 +<channel-log-table><connection/>
  38 +<schema/>
  39 +<table/>
  40 +<timeout_days/>
  41 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>LOGGING_OBJECT_TYPE</id><enabled>Y</enabled><name>LOGGING_OBJECT_TYPE</name></field><field><id>OBJECT_NAME</id><enabled>Y</enabled><name>OBJECT_NAME</name></field><field><id>OBJECT_COPY</id><enabled>Y</enabled><name>OBJECT_COPY</name></field><field><id>REPOSITORY_DIRECTORY</id><enabled>Y</enabled><name>REPOSITORY_DIRECTORY</name></field><field><id>FILENAME</id><enabled>Y</enabled><name>FILENAME</name></field><field><id>OBJECT_ID</id><enabled>Y</enabled><name>OBJECT_ID</name></field><field><id>OBJECT_REVISION</id><enabled>Y</enabled><name>OBJECT_REVISION</name></field><field><id>PARENT_CHANNEL_ID</id><enabled>Y</enabled><name>PARENT_CHANNEL_ID</name></field><field><id>ROOT_CHANNEL_ID</id><enabled>Y</enabled><name>ROOT_CHANNEL_ID</name></field></channel-log-table>
  42 +<step-log-table><connection/>
  43 +<schema/>
  44 +<table/>
  45 +<timeout_days/>
  46 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>LOG_FIELD</id><enabled>N</enabled><name>LOG_FIELD</name></field></step-log-table>
  47 +<metrics-log-table><connection/>
  48 +<schema/>
  49 +<table/>
  50 +<timeout_days/>
  51 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>METRICS_DATE</id><enabled>Y</enabled><name>METRICS_DATE</name></field><field><id>METRICS_CODE</id><enabled>Y</enabled><name>METRICS_CODE</name></field><field><id>METRICS_DESCRIPTION</id><enabled>Y</enabled><name>METRICS_DESCRIPTION</name></field><field><id>METRICS_SUBJECT</id><enabled>Y</enabled><name>METRICS_SUBJECT</name></field><field><id>METRICS_TYPE</id><enabled>Y</enabled><name>METRICS_TYPE</name></field><field><id>METRICS_VALUE</id><enabled>Y</enabled><name>METRICS_VALUE</name></field></metrics-log-table>
  52 + </log>
  53 + <maxdate>
  54 + <connection/>
  55 + <table/>
  56 + <field/>
  57 + <offset>0.0</offset>
  58 + <maxdiff>0.0</maxdiff>
  59 + </maxdate>
  60 + <size_rowset>10000</size_rowset>
  61 + <sleep_time_empty>50</sleep_time_empty>
  62 + <sleep_time_full>50</sleep_time_full>
  63 + <unique_connections>N</unique_connections>
  64 + <feedback_shown>Y</feedback_shown>
  65 + <feedback_size>50000</feedback_size>
  66 + <using_thread_priorities>Y</using_thread_priorities>
  67 + <shared_objects_file/>
  68 + <capture_step_performance>N</capture_step_performance>
  69 + <step_performance_capturing_delay>1000</step_performance_capturing_delay>
  70 + <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit>
  71 + <dependencies>
  72 + </dependencies>
  73 + <partitionschemas>
  74 + </partitionschemas>
  75 + <slaveservers>
  76 + </slaveservers>
  77 + <clusterschemas>
  78 + </clusterschemas>
  79 + <created_user>-</created_user>
  80 + <created_date>2016&#x2f;08&#x2f;09 09&#x3a;57&#x3a;38.471</created_date>
  81 + <modified_user>-</modified_user>
  82 + <modified_date>2016&#x2f;08&#x2f;09 09&#x3a;57&#x3a;38.471</modified_date>
  83 + <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA&#x3d;</key_for_session_key>
  84 + <is_key_private>N</is_key_private>
  85 + </info>
  86 + <notepads>
  87 + <notepad>
  88 + <note>&#x82f1;&#x6587;&#x6a21;&#x7248;&#x5bfc;&#x51fa;&#xa;excel&#x4e2d;&#x6587;&#x5b57;&#x6bb5;&#x540d; excel&#x82f1;&#x6587;&#x5b57;&#x6bb5;&#x540d; &#xa;&#x59d3;&#x540d; name &#xa;&#x5de5;&#x53f7; employee number&#xa;&#x6027;&#x522b; gender&#xa;&#x6240;&#x5c5e;&#x516c;&#x53f8; company&#xa;&#x6240;&#x5c5e;&#x5206;&#x516c;&#x53f8; branch company&#xa;&#x4e00;&#x5361;&#x901a;&#x53f7; one card number&#xa;&#x8fd0;&#x8425;&#x670d;&#x52a1;&#x8bc1;&#x53f7; Operation service certificate number&#xa;&#x5c97;&#x4f4d; occupation type&#xa;&#x5907;&#x6ce8; remarks</note>
  89 + <xloc>124</xloc>
  90 + <yloc>166</yloc>
  91 + <width>376</width>
  92 + <heigth>186</heigth>
  93 + <fontname>YaHei Consolas Hybrid</fontname>
  94 + <fontsize>12</fontsize>
  95 + <fontbold>N</fontbold>
  96 + <fontitalic>N</fontitalic>
  97 + <fontcolorred>0</fontcolorred>
  98 + <fontcolorgreen>0</fontcolorgreen>
  99 + <fontcolorblue>0</fontcolorblue>
  100 + <backgroundcolorred>255</backgroundcolorred>
  101 + <backgroundcolorgreen>205</backgroundcolorgreen>
  102 + <backgroundcolorblue>112</backgroundcolorblue>
  103 + <bordercolorred>100</bordercolorred>
  104 + <bordercolorgreen>100</bordercolorgreen>
  105 + <bordercolorblue>100</bordercolorblue>
  106 + <drawshadow>Y</drawshadow>
  107 + </notepad>
  108 + </notepads>
  109 + <connection>
  110 + <name>192.168.168.1_jwgl_dw</name>
  111 + <server>192.168.168.1</server>
  112 + <type>ORACLE</type>
  113 + <access>Native</access>
  114 + <database>orcl</database>
  115 + <port>1521</port>
  116 + <username>jwgl_dw</username>
  117 + <password>Encrypted 2be98afc86aa7f2e4cb13b977d2adabcd</password>
  118 + <servername/>
  119 + <data_tablespace/>
  120 + <index_tablespace/>
  121 + <attributes>
  122 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  123 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  124 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  125 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  126 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  127 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  128 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  129 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  130 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  131 + </attributes>
  132 + </connection>
  133 + <connection>
  134 + <name>bus_control_variable</name>
  135 + <server>&#x24;&#x7b;v_db_ip&#x7d;</server>
  136 + <type>MYSQL</type>
  137 + <access>Native</access>
  138 + <database>&#x24;&#x7b;v_db_dname&#x7d;</database>
  139 + <port>3306</port>
  140 + <username>&#x24;&#x7b;v_db_uname&#x7d;</username>
  141 + <password>&#x24;&#x7b;v_db_pwd&#x7d;</password>
  142 + <servername/>
  143 + <data_tablespace/>
  144 + <index_tablespace/>
  145 + <attributes>
  146 + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
  147 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  148 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  149 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  150 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  151 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  152 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  153 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  154 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  155 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  156 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  157 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  158 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  159 + </attributes>
  160 + </connection>
  161 + <connection>
  162 + <name>bus_control_&#x516c;&#x53f8;_201</name>
  163 + <server>localhost</server>
  164 + <type>MYSQL</type>
  165 + <access>Native</access>
  166 + <database>control</database>
  167 + <port>3306</port>
  168 + <username>root</username>
  169 + <password>Encrypted </password>
  170 + <servername/>
  171 + <data_tablespace/>
  172 + <index_tablespace/>
  173 + <attributes>
  174 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  175 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  176 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  177 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  178 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  179 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  180 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  181 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  182 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  183 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  184 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  185 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  186 + </attributes>
  187 + </connection>
  188 + <connection>
  189 + <name>bus_control_&#x672c;&#x673a;</name>
  190 + <server>localhost</server>
  191 + <type>MYSQL</type>
  192 + <access>Native</access>
  193 + <database>control</database>
  194 + <port>3306</port>
  195 + <username>root</username>
  196 + <password>Encrypted </password>
  197 + <servername/>
  198 + <data_tablespace/>
  199 + <index_tablespace/>
  200 + <attributes>
  201 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  202 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  203 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  204 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  205 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  206 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  207 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  208 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  209 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  210 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  211 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  212 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  213 + </attributes>
  214 + </connection>
  215 + <connection>
  216 + <name>control_jndi</name>
  217 + <server/>
  218 + <type>MYSQL</type>
  219 + <access>JNDI</access>
  220 + <database>control_jndi</database>
  221 + <port>1521</port>
  222 + <username/>
  223 + <password>Encrypted </password>
  224 + <servername/>
  225 + <data_tablespace/>
  226 + <index_tablespace/>
  227 + <attributes>
  228 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  229 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  230 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  231 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  232 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  233 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  234 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  235 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  236 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  237 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  238 + </attributes>
  239 + </connection>
  240 + <connection>
  241 + <name>JGJW_VM</name>
  242 + <server>192.168.198.240</server>
  243 + <type>ORACLE</type>
  244 + <access>Native</access>
  245 + <database>orcl</database>
  246 + <port>1521</port>
  247 + <username>jwgl</username>
  248 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d485a8d6</password>
  249 + <servername/>
  250 + <data_tablespace/>
  251 + <index_tablespace/>
  252 + <attributes>
  253 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  254 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  255 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  256 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  257 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  258 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  259 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  260 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  261 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  262 + </attributes>
  263 + </connection>
  264 + <connection>
  265 + <name>NHJW_VM</name>
  266 + <server>192.168.198.240</server>
  267 + <type>ORACLE</type>
  268 + <access>Native</access>
  269 + <database>orcl</database>
  270 + <port>1521</port>
  271 + <username>nhjw</username>
  272 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d09aa5cd</password>
  273 + <servername/>
  274 + <data_tablespace/>
  275 + <index_tablespace/>
  276 + <attributes>
  277 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  278 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  279 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  280 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  281 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  282 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  283 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  284 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  285 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  286 + </attributes>
  287 + </connection>
  288 + <connection>
  289 + <name>PDGJ_VM</name>
  290 + <server>192.168.198.240</server>
  291 + <type>ORACLE</type>
  292 + <access>Native</access>
  293 + <database>orcl</database>
  294 + <port>1521</port>
  295 + <username>pdgj</username>
  296 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10ce96a8d0</password>
  297 + <servername/>
  298 + <data_tablespace/>
  299 + <index_tablespace/>
  300 + <attributes>
  301 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  302 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  303 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  304 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  305 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  306 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  307 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  308 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  309 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  310 + </attributes>
  311 + </connection>
  312 + <connection>
  313 + <name>repair_dw_mysql_jndi</name>
  314 + <server/>
  315 + <type>MYSQL</type>
  316 + <access>JNDI</access>
  317 + <database>repair_dw_mysql</database>
  318 + <port>1521</port>
  319 + <username/>
  320 + <password>Encrypted </password>
  321 + <servername/>
  322 + <data_tablespace/>
  323 + <index_tablespace/>
  324 + <attributes>
  325 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  326 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  327 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  328 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  329 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  330 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  331 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  332 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  333 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  334 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  335 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  336 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  337 + </attributes>
  338 + </connection>
  339 + <connection>
  340 + <name>repair_dw&#xff08;&#x672c;&#x673a;&#xff09;</name>
  341 + <server>localhost</server>
  342 + <type>MYSQL</type>
  343 + <access>Native</access>
  344 + <database>ruoyi-vue-3.5</database>
  345 + <port>3306</port>
  346 + <username>root</username>
  347 + <password>Encrypted </password>
  348 + <servername/>
  349 + <data_tablespace/>
  350 + <index_tablespace/>
  351 + <attributes>
  352 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  353 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  354 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  355 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  356 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  357 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  358 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  359 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  360 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  361 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  362 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  363 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  364 + </attributes>
  365 + </connection>
  366 + <connection>
  367 + <name>repair_real_h2</name>
  368 + <server/>
  369 + <type>H2</type>
  370 + <access>JNDI</access>
  371 + <database>repair_real_h2</database>
  372 + <port>1521</port>
  373 + <username/>
  374 + <password>Encrypted </password>
  375 + <servername/>
  376 + <data_tablespace/>
  377 + <index_tablespace/>
  378 + <attributes>
  379 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  380 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  381 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  382 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  383 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  384 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  385 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  386 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  387 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  388 + </attributes>
  389 + </connection>
  390 + <connection>
  391 + <name>SNJW_VM</name>
  392 + <server>192.168.198.240</server>
  393 + <type>ORACLE</type>
  394 + <access>Native</access>
  395 + <database>orcl</database>
  396 + <port>1521</port>
  397 + <username>snjw</username>
  398 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10cd9ca5cd</password>
  399 + <servername/>
  400 + <data_tablespace/>
  401 + <index_tablespace/>
  402 + <attributes>
  403 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  404 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  405 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  406 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  407 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  408 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  409 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  410 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  411 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  412 + </attributes>
  413 + </connection>
  414 + <connection>
  415 + <name>test_control_local</name>
  416 + <server>localhost</server>
  417 + <type>MYSQL</type>
  418 + <access>Native</access>
  419 + <database>test_control</database>
  420 + <port>3306</port>
  421 + <username>root</username>
  422 + <password>Encrypted </password>
  423 + <servername/>
  424 + <data_tablespace/>
  425 + <index_tablespace/>
  426 + <attributes>
  427 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  428 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  429 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  430 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  431 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  432 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  433 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  434 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  435 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  436 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  437 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  438 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  439 + </attributes>
  440 + </connection>
  441 + <connection>
  442 + <name>test_control&#xff08;&#x672c;&#x673a;&#xff09;</name>
  443 + <server>127.0.0.1</server>
  444 + <type>MYSQL</type>
  445 + <access>Native</access>
  446 + <database>test_control</database>
  447 + <port>3306</port>
  448 + <username>root</username>
  449 + <password>Encrypted </password>
  450 + <servername/>
  451 + <data_tablespace/>
  452 + <index_tablespace/>
  453 + <attributes>
  454 + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
  455 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  456 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  457 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  458 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  459 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  460 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  461 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  462 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  463 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  464 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  465 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  466 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  467 + </attributes>
  468 + </connection>
  469 + <connection>
  470 + <name>wzk_mysql_jndi</name>
  471 + <server/>
  472 + <type>MYSQL</type>
  473 + <access>JNDI</access>
  474 + <database>wzk_mysql</database>
  475 + <port>1521</port>
  476 + <username/>
  477 + <password>Encrypted </password>
  478 + <servername/>
  479 + <data_tablespace/>
  480 + <index_tablespace/>
  481 + <attributes>
  482 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  483 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  484 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  485 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  486 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  487 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  488 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  489 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  490 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  491 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  492 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  493 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  494 + </attributes>
  495 + </connection>
  496 + <connection>
  497 + <name>wzk&#xff08;&#x672c;&#x673a;&#xff09;</name>
  498 + <server>localhost</server>
  499 + <type>MYSQL</type>
  500 + <access>Native</access>
  501 + <database>pdgj_wzk_sys</database>
  502 + <port>3306</port>
  503 + <username>root</username>
  504 + <password>Encrypted </password>
  505 + <servername/>
  506 + <data_tablespace/>
  507 + <index_tablespace/>
  508 + <attributes>
  509 + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
  510 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  511 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  512 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  513 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  514 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  515 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  516 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  517 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  518 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  519 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  520 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  521 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  522 + </attributes>
  523 + </connection>
  524 + <connection>
  525 + <name>xlab_mysql_youle</name>
  526 + <server>101.231.124.8</server>
  527 + <type>MYSQL</type>
  528 + <access>Native</access>
  529 + <database>xlab_youle</database>
  530 + <port>45687</port>
  531 + <username>xlab-youle</username>
  532 + <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password>
  533 + <servername/>
  534 + <data_tablespace/>
  535 + <index_tablespace/>
  536 + <attributes>
  537 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  538 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  539 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  540 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  541 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  542 + <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute>
  543 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  544 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  545 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  546 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  547 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  548 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  549 + </attributes>
  550 + </connection>
  551 + <connection>
  552 + <name>xlab_mysql_youle&#xff08;&#x672c;&#x673a;&#xff09;</name>
  553 + <server>localhost</server>
  554 + <type>MYSQL</type>
  555 + <access>Native</access>
  556 + <database>xlab_youle</database>
  557 + <port>3306</port>
  558 + <username>root</username>
  559 + <password>Encrypted </password>
  560 + <servername/>
  561 + <data_tablespace/>
  562 + <index_tablespace/>
  563 + <attributes>
  564 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  565 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  566 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  567 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  568 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  569 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  570 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  571 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  572 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  573 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  574 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  575 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  576 + </attributes>
  577 + </connection>
  578 + <connection>
  579 + <name>xlab_youle</name>
  580 + <server/>
  581 + <type>MYSQL</type>
  582 + <access>JNDI</access>
  583 + <database>xlab_youle</database>
  584 + <port>1521</port>
  585 + <username/>
  586 + <password>Encrypted </password>
  587 + <servername/>
  588 + <data_tablespace/>
  589 + <index_tablespace/>
  590 + <attributes>
  591 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  592 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  593 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  594 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  595 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  596 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  597 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  598 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  599 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  600 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  601 + </attributes>
  602 + </connection>
  603 + <connection>
  604 + <name>YGJW_VM</name>
  605 + <server>192.168.198.240</server>
  606 + <type>ORACLE</type>
  607 + <access>Native</access>
  608 + <database>orcl</database>
  609 + <port>1521</port>
  610 + <username>ygjw</username>
  611 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10c795a5cd</password>
  612 + <servername/>
  613 + <data_tablespace/>
  614 + <index_tablespace/>
  615 + <attributes>
  616 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  617 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  618 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  619 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  620 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  621 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  622 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  623 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  624 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  625 + </attributes>
  626 + </connection>
  627 + <connection>
  628 + <name>&#x516c;&#x53f8;jgjw</name>
  629 + <server>192.168.168.1</server>
  630 + <type>ORACLE</type>
  631 + <access>Native</access>
  632 + <database>orcl</database>
  633 + <port>1521</port>
  634 + <username>jwgl</username>
  635 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d485a8d6</password>
  636 + <servername/>
  637 + <data_tablespace/>
  638 + <index_tablespace/>
  639 + <attributes>
  640 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  641 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  642 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  643 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  644 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  645 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  646 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  647 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  648 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  649 + </attributes>
  650 + </connection>
  651 + <connection>
  652 + <name>&#x516c;&#x53f8;snjw</name>
  653 + <server>192.168.168.1</server>
  654 + <type>ORACLE</type>
  655 + <access>Native</access>
  656 + <database>orcl</database>
  657 + <port>1521</port>
  658 + <username>snjw</username>
  659 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10cd9ca5cd</password>
  660 + <servername/>
  661 + <data_tablespace/>
  662 + <index_tablespace/>
  663 + <attributes>
  664 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  665 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  666 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  667 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  668 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  669 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  670 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  671 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  672 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  673 + </attributes>
  674 + </connection>
  675 + <connection>
  676 + <name>&#x516c;&#x53f8;ygjw</name>
  677 + <server>192.168.168.178</server>
  678 + <type>ORACLE</type>
  679 + <access>Native</access>
  680 + <database>orcl</database>
  681 + <port>1521</port>
  682 + <username>ygjw</username>
  683 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10c795a5cd</password>
  684 + <servername/>
  685 + <data_tablespace/>
  686 + <index_tablespace/>
  687 + <attributes>
  688 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  689 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  690 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  691 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  692 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  693 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  694 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  695 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  696 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  697 + </attributes>
  698 + </connection>
  699 + <connection>
  700 + <name>&#x516c;&#x53f8;&#x673a;&#x52a1;_pdgj</name>
  701 + <server>192.168.168.178</server>
  702 + <type>ORACLE</type>
  703 + <access>Native</access>
  704 + <database>orcl</database>
  705 + <port>1521</port>
  706 + <username>pdgj</username>
  707 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10ce96a8d0</password>
  708 + <servername/>
  709 + <data_tablespace/>
  710 + <index_tablespace/>
  711 + <attributes>
  712 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  713 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  714 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  715 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  716 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  717 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  718 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  719 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  720 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  721 + </attributes>
  722 + </connection>
  723 + <connection>
  724 + <name>&#x5916;&#x7f51;vpn&#x4e34;&#x6e2f;&#x673a;&#x52a1;oracle</name>
  725 + <server>10.10.150.114</server>
  726 + <type>ORACLE</type>
  727 + <access>Native</access>
  728 + <database>helowin</database>
  729 + <port>1521</port>
  730 + <username>lgjw</username>
  731 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d295a5cd</password>
  732 + <servername/>
  733 + <data_tablespace/>
  734 + <index_tablespace/>
  735 + <attributes>
  736 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  737 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  738 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  739 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  740 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  741 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  742 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  743 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  744 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  745 + </attributes>
  746 + </connection>
  747 + <connection>
  748 + <name>&#x5916;&#x7f51;&#x5357;&#x6c47;&#x673a;&#x52a1;oracle</name>
  749 + <server>58.247.254.118</server>
  750 + <type>ORACLE</type>
  751 + <access>Native</access>
  752 + <database>orcl</database>
  753 + <port>15211</port>
  754 + <username>nhjw</username>
  755 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d09aa5cd</password>
  756 + <servername/>
  757 + <data_tablespace/>
  758 + <index_tablespace/>
  759 + <attributes>
  760 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  761 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  762 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  763 + <attribute><code>PORT_NUMBER</code><attribute>15211</attribute></attribute>
  764 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  765 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  766 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  767 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  768 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  769 + </attributes>
  770 + </connection>
  771 + <connection>
  772 + <name>&#x5916;&#x7f51;&#x6768;&#x9ad8;&#x673a;&#x52a1;oracle</name>
  773 + <server>58.247.254.118</server>
  774 + <type>ORACLE</type>
  775 + <access>Native</access>
  776 + <database>orcl</database>
  777 + <port>15211</port>
  778 + <username>ygjw</username>
  779 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10c795a5cd</password>
  780 + <servername/>
  781 + <data_tablespace/>
  782 + <index_tablespace/>
  783 + <attributes>
  784 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  785 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  786 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  787 + <attribute><code>PORT_NUMBER</code><attribute>15211</attribute></attribute>
  788 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  789 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  790 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  791 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  792 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  793 + </attributes>
  794 + </connection>
  795 + <connection>
  796 + <name>&#x5916;&#x7f51;&#x91d1;&#x9ad8;&#x673a;&#x52a1;oracle</name>
  797 + <server>58.247.254.118</server>
  798 + <type>ORACLE</type>
  799 + <access>Native</access>
  800 + <database>orcl</database>
  801 + <port>15211</port>
  802 + <username>jwgl</username>
  803 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d485a8d6</password>
  804 + <servername/>
  805 + <data_tablespace/>
  806 + <index_tablespace/>
  807 + <attributes>
  808 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  809 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  810 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  811 + <attribute><code>PORT_NUMBER</code><attribute>15211</attribute></attribute>
  812 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  813 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  814 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  815 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  816 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  817 + </attributes>
  818 + </connection>
  819 + <order>
  820 + <hop> <from>&#x4eba;&#x5458;&#x4fe1;&#x606f;&#x8868;&#x8f93;&#x5165;</from><to>&#x6dfb;&#x52a0;&#x67e5;&#x8be2;&#x5e38;&#x91cf;</to><enabled>Y</enabled> </hop>
  821 + <hop> <from>&#x5c97;&#x4f4d;&#x6570;&#x636e;&#x67e5;&#x8be2;</from><to>&#x6027;&#x522b;&#x6570;&#x636e;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>
  822 + <hop> <from>&#x6027;&#x522b;&#x6570;&#x636e;&#x67e5;&#x8be2;</from><to>&#x5904;&#x7406;&#x5de5;&#x53f7;</to><enabled>Y</enabled> </hop>
  823 + <hop> <from>&#x5904;&#x7406;&#x5de5;&#x53f7;</from><to>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</to><enabled>Y</enabled> </hop>
  824 + <hop> <from>&#x6dfb;&#x52a0;&#x67e5;&#x8be2;&#x5e38;&#x91cf;</from><to>&#x516c;&#x53f8;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>
  825 + <hop> <from>&#x516c;&#x53f8;&#x67e5;&#x8be2;</from><to>&#x5206;&#x516c;&#x53f8;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>
  826 + <hop> <from>&#x5206;&#x516c;&#x53f8;&#x67e5;&#x8be2;</from><to>&#x5c97;&#x4f4d;&#x6570;&#x636e;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>
  827 + <hop> <from>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</from><to>&#x82f1;&#x6587;&#x5b57;&#x6bb5;&#x540d;</to><enabled>Y</enabled> </hop>
  828 + <hop> <from>&#x82f1;&#x6587;&#x5b57;&#x6bb5;&#x540d;</from><to>Excel&#x8f93;&#x51fa;</to><enabled>Y</enabled> </hop>
  829 + </order>
  830 + <step>
  831 + <name>Excel&#x8f93;&#x51fa;</name>
  832 + <type>ExcelOutput</type>
  833 + <description/>
  834 + <distribute>Y</distribute>
  835 + <custom_distribution/>
  836 + <copies>1</copies>
  837 + <partitioning>
  838 + <method>none</method>
  839 + <schema_name/>
  840 + </partitioning>
  841 + <header>Y</header>
  842 + <footer>N</footer>
  843 + <encoding/>
  844 + <append>N</append>
  845 + <add_to_result_filenames>Y</add_to_result_filenames>
  846 + <file>
  847 + <name>&#x24;&#x7b;filepath&#x7d;</name>
  848 + <extention>xls</extention>
  849 + <do_not_open_newfile_init>N</do_not_open_newfile_init>
  850 + <create_parent_folder>N</create_parent_folder>
  851 + <split>N</split>
  852 + <add_date>N</add_date>
  853 + <add_time>N</add_time>
  854 + <SpecifyFormat>N</SpecifyFormat>
  855 + <date_time_format>yyyyMMddHHmmss</date_time_format>
  856 + <sheetname>sheet1</sheetname>
  857 + <autosizecolums>N</autosizecolums>
  858 + <nullisblank>N</nullisblank>
  859 + <protect_sheet>N</protect_sheet>
  860 + <password>Encrypted </password>
  861 + <splitevery>0</splitevery>
  862 + <usetempfiles>N</usetempfiles>
  863 + <tempdirectory/>
  864 + </file>
  865 + <template>
  866 + <enabled>N</enabled>
  867 + <append>N</append>
  868 + <filename>template.xls</filename>
  869 + </template>
  870 + <fields>
  871 + <field>
  872 + <name>name</name>
  873 + <type>String</type>
  874 + <format/>
  875 + </field>
  876 + <field>
  877 + <name>employee number</name>
  878 + <type>String</type>
  879 + <format/>
  880 + </field>
  881 + <field>
  882 + <name>gender</name>
  883 + <type>String</type>
  884 + <format/>
  885 + </field>
  886 + <field>
  887 + <name>company</name>
  888 + <type>String</type>
  889 + <format/>
  890 + </field>
  891 + <field>
  892 + <name>branch company</name>
  893 + <type>String</type>
  894 + <format/>
  895 + </field>
  896 + <field>
  897 + <name>one card number</name>
  898 + <type>String</type>
  899 + <format/>
  900 + </field>
  901 + <field>
  902 + <name>Operation service certificate number</name>
  903 + <type>String</type>
  904 + <format/>
  905 + </field>
  906 + <field>
  907 + <name>occupation type</name>
  908 + <type>String</type>
  909 + <format/>
  910 + </field>
  911 + <field>
  912 + <name>remarks</name>
  913 + <type>String</type>
  914 + <format/>
  915 + </field>
  916 + </fields>
  917 + <custom>
  918 + <header_font_name>arial</header_font_name>
  919 + <header_font_size>10</header_font_size>
  920 + <header_font_bold>N</header_font_bold>
  921 + <header_font_italic>N</header_font_italic>
  922 + <header_font_underline>no</header_font_underline>
  923 + <header_font_orientation>horizontal</header_font_orientation>
  924 + <header_font_color>black</header_font_color>
  925 + <header_background_color>none</header_background_color>
  926 + <header_row_height>255</header_row_height>
  927 + <header_alignment>left</header_alignment>
  928 + <header_image/>
  929 + <row_font_name>arial</row_font_name>
  930 + <row_font_size>10</row_font_size>
  931 + <row_font_color>black</row_font_color>
  932 + <row_background_color>none</row_background_color>
  933 + </custom>
  934 + <cluster_schema/>
  935 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  936 + <xloc>633</xloc>
  937 + <yloc>387</yloc>
  938 + <draw>Y</draw>
  939 + </GUI>
  940 + </step>
  941 +
  942 + <step>
  943 + <name>&#x4eba;&#x5458;&#x4fe1;&#x606f;&#x8868;&#x8f93;&#x5165;</name>
  944 + <type>TableInput</type>
  945 + <description/>
  946 + <distribute>Y</distribute>
  947 + <custom_distribution/>
  948 + <copies>1</copies>
  949 + <partitioning>
  950 + <method>none</method>
  951 + <schema_name/>
  952 + </partitioning>
  953 + <connection>control_jndi</connection>
  954 + <sql>SELECT &#x2a; FROM bsth_c_personnel&#xa;where concat&#x28;company_code, &#x27;_&#x27;, branche_company_code&#x29; in &#x28;&#x24;&#x7b;cgsbm_in&#x7d;&#x29;</sql>
  955 + <limit>0</limit>
  956 + <lookup/>
  957 + <execute_each_row>N</execute_each_row>
  958 + <variables_active>Y</variables_active>
  959 + <lazy_conversion_active>N</lazy_conversion_active>
  960 + <cluster_schema/>
  961 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  962 + <xloc>112</xloc>
  963 + <yloc>66</yloc>
  964 + <draw>Y</draw>
  965 + </GUI>
  966 + </step>
  967 +
  968 + <step>
  969 + <name>&#x516c;&#x53f8;&#x67e5;&#x8be2;</name>
  970 + <type>DBLookup</type>
  971 + <description/>
  972 + <distribute>Y</distribute>
  973 + <custom_distribution/>
  974 + <copies>1</copies>
  975 + <partitioning>
  976 + <method>none</method>
  977 + <schema_name/>
  978 + </partitioning>
  979 + <connection>control_jndi</connection>
  980 + <cache>N</cache>
  981 + <cache_load_all>N</cache_load_all>
  982 + <cache_size>0</cache_size>
  983 + <lookup>
  984 + <schema/>
  985 + <table>bsth_c_business</table>
  986 + <orderby/>
  987 + <fail_on_multiple>N</fail_on_multiple>
  988 + <eat_row_on_failure>N</eat_row_on_failure>
  989 + <key>
  990 + <name>up_code</name>
  991 + <field>up_code</field>
  992 + <condition>&#x3d;</condition>
  993 + <name2/>
  994 + </key>
  995 + <key>
  996 + <name>company_code</name>
  997 + <field>business_code</field>
  998 + <condition>&#x3d;</condition>
  999 + <name2/>
  1000 + </key>
  1001 + <value>
  1002 + <name>business_name</name>
  1003 + <rename>gs</rename>
  1004 + <default/>
  1005 + <type>String</type>
  1006 + </value>
  1007 + </lookup>
  1008 + <cluster_schema/>
  1009 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1010 + <xloc>361</xloc>
  1011 + <yloc>65</yloc>
  1012 + <draw>Y</draw>
  1013 + </GUI>
  1014 + </step>
  1015 +
  1016 + <step>
  1017 + <name>&#x5206;&#x516c;&#x53f8;&#x67e5;&#x8be2;</name>
  1018 + <type>DBLookup</type>
  1019 + <description/>
  1020 + <distribute>Y</distribute>
  1021 + <custom_distribution/>
  1022 + <copies>1</copies>
  1023 + <partitioning>
  1024 + <method>none</method>
  1025 + <schema_name/>
  1026 + </partitioning>
  1027 + <connection>control_jndi</connection>
  1028 + <cache>N</cache>
  1029 + <cache_load_all>N</cache_load_all>
  1030 + <cache_size>0</cache_size>
  1031 + <lookup>
  1032 + <schema/>
  1033 + <table>bsth_c_business</table>
  1034 + <orderby/>
  1035 + <fail_on_multiple>N</fail_on_multiple>
  1036 + <eat_row_on_failure>N</eat_row_on_failure>
  1037 + <key>
  1038 + <name>company_code</name>
  1039 + <field>up_code</field>
  1040 + <condition>&#x3d;</condition>
  1041 + <name2/>
  1042 + </key>
  1043 + <key>
  1044 + <name>branche_company_code</name>
  1045 + <field>business_code</field>
  1046 + <condition>&#x3d;</condition>
  1047 + <name2/>
  1048 + </key>
  1049 + <value>
  1050 + <name>business_name</name>
  1051 + <rename>fgs</rename>
  1052 + <default/>
  1053 + <type>String</type>
  1054 + </value>
  1055 + </lookup>
  1056 + <cluster_schema/>
  1057 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1058 + <xloc>479</xloc>
  1059 + <yloc>67</yloc>
  1060 + <draw>Y</draw>
  1061 + </GUI>
  1062 + </step>
  1063 +
  1064 + <step>
  1065 + <name>&#x5904;&#x7406;&#x5de5;&#x53f7;</name>
  1066 + <type>ScriptValueMod</type>
  1067 + <description/>
  1068 + <distribute>Y</distribute>
  1069 + <custom_distribution/>
  1070 + <copies>1</copies>
  1071 + <partitioning>
  1072 + <method>none</method>
  1073 + <schema_name/>
  1074 + </partitioning>
  1075 + <compatible>N</compatible>
  1076 + <optimizationLevel>9</optimizationLevel>
  1077 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  1078 + <jsScript_name>Script 1</jsScript_name>
  1079 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var jc&#x3b;&#xa;jc &#x3d; job_code.split&#x28;&#x22;-&#x22;&#x29;&#x5b;1&#x5d;&#x3b;</jsScript_script>
  1080 + </jsScript> </jsScripts> <fields> <field> <name>jc</name>
  1081 + <rename>jc</rename>
  1082 + <type>String</type>
  1083 + <length>-1</length>
  1084 + <precision>-1</precision>
  1085 + <replace>N</replace>
  1086 + </field> </fields> <cluster_schema/>
  1087 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1088 + <xloc>786</xloc>
  1089 + <yloc>168</yloc>
  1090 + <draw>Y</draw>
  1091 + </GUI>
  1092 + </step>
  1093 +
  1094 + <step>
  1095 + <name>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</name>
  1096 + <type>SelectValues</type>
  1097 + <description/>
  1098 + <distribute>Y</distribute>
  1099 + <custom_distribution/>
  1100 + <copies>1</copies>
  1101 + <partitioning>
  1102 + <method>none</method>
  1103 + <schema_name/>
  1104 + </partitioning>
  1105 + <fields> <field> <name>personnel_name</name>
  1106 + <rename>&#x59d3;&#x540d;</rename>
  1107 + <length>-2</length>
  1108 + <precision>-2</precision>
  1109 + </field> <field> <name>jc</name>
  1110 + <rename>&#x5de5;&#x53f7;</rename>
  1111 + <length>-2</length>
  1112 + <precision>-2</precision>
  1113 + </field> <field> <name>sex</name>
  1114 + <rename>&#x6027;&#x522b;</rename>
  1115 + <length>-2</length>
  1116 + <precision>-2</precision>
  1117 + </field> <field> <name>gs</name>
  1118 + <rename>&#x6240;&#x5c5e;&#x516c;&#x53f8;</rename>
  1119 + <length>-2</length>
  1120 + <precision>-2</precision>
  1121 + </field> <field> <name>fgs</name>
  1122 + <rename>&#x6240;&#x5c5e;&#x5206;&#x516c;&#x53f8;</rename>
  1123 + <length>-2</length>
  1124 + <precision>-2</precision>
  1125 + </field> <field> <name>ic_card_code</name>
  1126 + <rename>&#x4e00;&#x5361;&#x901a;&#x53f7;</rename>
  1127 + <length>-2</length>
  1128 + <precision>-2</precision>
  1129 + </field> <field> <name>papers_code</name>
  1130 + <rename>&#x8fd0;&#x8425;&#x670d;&#x52a1;&#x8bc1;&#x53f7;</rename>
  1131 + <length>-2</length>
  1132 + <precision>-2</precision>
  1133 + </field> <field> <name>gz</name>
  1134 + <rename>&#x5c97;&#x4f4d;</rename>
  1135 + <length>-2</length>
  1136 + <precision>-2</precision>
  1137 + </field> <field> <name>remark</name>
  1138 + <rename>&#x5907;&#x6ce8;</rename>
  1139 + <length>-2</length>
  1140 + <precision>-2</precision>
  1141 + </field> <select_unspecified>N</select_unspecified>
  1142 + </fields> <cluster_schema/>
  1143 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1144 + <xloc>634</xloc>
  1145 + <yloc>167</yloc>
  1146 + <draw>Y</draw>
  1147 + </GUI>
  1148 + </step>
  1149 +
  1150 + <step>
  1151 + <name>&#x5c97;&#x4f4d;&#x6570;&#x636e;&#x67e5;&#x8be2;</name>
  1152 + <type>DBLookup</type>
  1153 + <description/>
  1154 + <distribute>Y</distribute>
  1155 + <custom_distribution/>
  1156 + <copies>1</copies>
  1157 + <partitioning>
  1158 + <method>none</method>
  1159 + <schema_name/>
  1160 + </partitioning>
  1161 + <connection>control_jndi</connection>
  1162 + <cache>N</cache>
  1163 + <cache_load_all>N</cache_load_all>
  1164 + <cache_size>0</cache_size>
  1165 + <lookup>
  1166 + <schema/>
  1167 + <table>bsth_c_sys_dictionary</table>
  1168 + <orderby/>
  1169 + <fail_on_multiple>N</fail_on_multiple>
  1170 + <eat_row_on_failure>N</eat_row_on_failure>
  1171 + <key>
  1172 + <name>gzType</name>
  1173 + <field>d_group</field>
  1174 + <condition>&#x3d;</condition>
  1175 + <name2/>
  1176 + </key>
  1177 + <key>
  1178 + <name>posts</name>
  1179 + <field>d_code</field>
  1180 + <condition>&#x3d;</condition>
  1181 + <name2/>
  1182 + </key>
  1183 + <value>
  1184 + <name>d_name</name>
  1185 + <rename>gz</rename>
  1186 + <default/>
  1187 + <type>String</type>
  1188 + </value>
  1189 + </lookup>
  1190 + <cluster_schema/>
  1191 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1192 + <xloc>633</xloc>
  1193 + <yloc>69</yloc>
  1194 + <draw>Y</draw>
  1195 + </GUI>
  1196 + </step>
  1197 +
  1198 + <step>
  1199 + <name>&#x6027;&#x522b;&#x6570;&#x636e;&#x67e5;&#x8be2;</name>
  1200 + <type>DBLookup</type>
  1201 + <description/>
  1202 + <distribute>Y</distribute>
  1203 + <custom_distribution/>
  1204 + <copies>1</copies>
  1205 + <partitioning>
  1206 + <method>none</method>
  1207 + <schema_name/>
  1208 + </partitioning>
  1209 + <connection>control_jndi</connection>
  1210 + <cache>N</cache>
  1211 + <cache_load_all>N</cache_load_all>
  1212 + <cache_size>0</cache_size>
  1213 + <lookup>
  1214 + <schema/>
  1215 + <table>bsth_c_sys_dictionary</table>
  1216 + <orderby/>
  1217 + <fail_on_multiple>N</fail_on_multiple>
  1218 + <eat_row_on_failure>N</eat_row_on_failure>
  1219 + <key>
  1220 + <name>sexType</name>
  1221 + <field>d_group</field>
  1222 + <condition>&#x3d;</condition>
  1223 + <name2/>
  1224 + </key>
  1225 + <key>
  1226 + <name>personnel_type</name>
  1227 + <field>d_code</field>
  1228 + <condition>&#x3d;</condition>
  1229 + <name2/>
  1230 + </key>
  1231 + <value>
  1232 + <name>d_name</name>
  1233 + <rename>sex</rename>
  1234 + <default/>
  1235 + <type>String</type>
  1236 + </value>
  1237 + </lookup>
  1238 + <cluster_schema/>
  1239 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1240 + <xloc>785</xloc>
  1241 + <yloc>70</yloc>
  1242 + <draw>Y</draw>
  1243 + </GUI>
  1244 + </step>
  1245 +
  1246 + <step>
  1247 + <name>&#x6dfb;&#x52a0;&#x67e5;&#x8be2;&#x5e38;&#x91cf;</name>
  1248 + <type>ScriptValueMod</type>
  1249 + <description/>
  1250 + <distribute>Y</distribute>
  1251 + <custom_distribution/>
  1252 + <copies>1</copies>
  1253 + <partitioning>
  1254 + <method>none</method>
  1255 + <schema_name/>
  1256 + </partitioning>
  1257 + <compatible>N</compatible>
  1258 + <optimizationLevel>9</optimizationLevel>
  1259 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  1260 + <jsScript_name>Script 1</jsScript_name>
  1261 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var up_code &#x3d; &#x27;88&#x27;&#x3b;&#xa;var sexType &#x3d; &#x27;sexType&#x27;&#x3b;&#xa;var gzType &#x3d; &#x27;gzType&#x27;&#x3b;</jsScript_script>
  1262 + </jsScript> </jsScripts> <fields> <field> <name>up_code</name>
  1263 + <rename>up_code</rename>
  1264 + <type>String</type>
  1265 + <length>-1</length>
  1266 + <precision>-1</precision>
  1267 + <replace>N</replace>
  1268 + </field> <field> <name>sexType</name>
  1269 + <rename>sexType</rename>
  1270 + <type>String</type>
  1271 + <length>-1</length>
  1272 + <precision>-1</precision>
  1273 + <replace>N</replace>
  1274 + </field> <field> <name>gzType</name>
  1275 + <rename>gzType</rename>
  1276 + <type>String</type>
  1277 + <length>-1</length>
  1278 + <precision>-1</precision>
  1279 + <replace>N</replace>
  1280 + </field> </fields> <cluster_schema/>
  1281 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1282 + <xloc>235</xloc>
  1283 + <yloc>65</yloc>
  1284 + <draw>Y</draw>
  1285 + </GUI>
  1286 + </step>
  1287 +
  1288 + <step>
  1289 + <name>&#x82f1;&#x6587;&#x5b57;&#x6bb5;&#x540d;</name>
  1290 + <type>SelectValues</type>
  1291 + <description/>
  1292 + <distribute>Y</distribute>
  1293 + <custom_distribution/>
  1294 + <copies>1</copies>
  1295 + <partitioning>
  1296 + <method>none</method>
  1297 + <schema_name/>
  1298 + </partitioning>
  1299 + <fields> <field> <name>&#x59d3;&#x540d;</name>
  1300 + <rename>name</rename>
  1301 + <length>-2</length>
  1302 + <precision>-2</precision>
  1303 + </field> <field> <name>&#x5de5;&#x53f7;</name>
  1304 + <rename>employee number</rename>
  1305 + <length>-2</length>
  1306 + <precision>-2</precision>
  1307 + </field> <field> <name>&#x6027;&#x522b;</name>
  1308 + <rename>gender</rename>
  1309 + <length>-2</length>
  1310 + <precision>-2</precision>
  1311 + </field> <field> <name>&#x6240;&#x5c5e;&#x516c;&#x53f8;</name>
  1312 + <rename>company</rename>
  1313 + <length>-2</length>
  1314 + <precision>-2</precision>
  1315 + </field> <field> <name>&#x6240;&#x5c5e;&#x5206;&#x516c;&#x53f8;</name>
  1316 + <rename>branch company</rename>
  1317 + <length>-2</length>
  1318 + <precision>-2</precision>
  1319 + </field> <field> <name>&#x4e00;&#x5361;&#x901a;&#x53f7;</name>
  1320 + <rename>one card number</rename>
  1321 + <length>-2</length>
  1322 + <precision>-2</precision>
  1323 + </field> <field> <name>&#x8fd0;&#x8425;&#x670d;&#x52a1;&#x8bc1;&#x53f7;</name>
  1324 + <rename>Operation service certificate number</rename>
  1325 + <length>-2</length>
  1326 + <precision>-2</precision>
  1327 + </field> <field> <name>&#x5c97;&#x4f4d;</name>
  1328 + <rename>occupation type</rename>
  1329 + <length>-2</length>
  1330 + <precision>-2</precision>
  1331 + </field> <field> <name>&#x5907;&#x6ce8;</name>
  1332 + <rename>remarks</rename>
  1333 + <length>-2</length>
  1334 + <precision>-2</precision>
  1335 + </field> <select_unspecified>N</select_unspecified>
  1336 + </fields> <cluster_schema/>
  1337 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1338 + <xloc>634</xloc>
  1339 + <yloc>268</yloc>
  1340 + <draw>Y</draw>
  1341 + </GUI>
  1342 + </step>
  1343 +
  1344 + <step_error_handling>
  1345 + </step_error_handling>
  1346 + <slave-step-copy-partition-distribution>
  1347 +</slave-step-copy-partition-distribution>
  1348 + <slave_transformation>N</slave_transformation>
  1349 +
  1350 +</transformation>
src/main/resources/datatools/ktrs/en/personnel-basic-data_import.ktr 0 → 100644
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<transformation>
  3 + <info>
  4 + <name>&#x4eba;&#x5458;&#x4fe1;&#x606f;&#x5bfc;&#x5165;_en</name>
  5 + <description>&#x4eba;&#x5458;&#x57fa;&#x7840;&#x4fe1;&#x606f;&#x5bfc;&#x5165;</description>
  6 + <extended_description>&#x4eba;&#x5458;&#x57fa;&#x7840;&#x4fe1;&#x606f;</extended_description>
  7 + <trans_version/>
  8 + <trans_type>Normal</trans_type>
  9 + <trans_status>0</trans_status>
  10 + <directory>&#x2f;</directory>
  11 + <parameters>
  12 + <parameter>
  13 + <name>erroroutputdir</name>
  14 + <default_value/>
  15 + <description>ktr step&#x914d;&#x7f6e;&#x7684;&#x9519;&#x8bef;&#x8f93;&#x51fa;&#x76ee;&#x5f55;</description>
  16 + </parameter>
  17 + <parameter>
  18 + <name>filepath</name>
  19 + <default_value/>
  20 + <description>&#x5f85;&#x5904;&#x7406;&#x5bfc;&#x5165;&#x7684;excel&#x6587;&#x4ef6;</description>
  21 + </parameter>
  22 + </parameters>
  23 + <log>
  24 +<trans-log-table><connection/>
  25 +<schema/>
  26 +<table/>
  27 +<size_limit_lines/>
  28 +<interval/>
  29 +<timeout_days/>
  30 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STATUS</id><enabled>Y</enabled><name>STATUS</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name><subject/></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name><subject/></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name><subject/></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name><subject/></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name><subject/></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name><subject/></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>STARTDATE</id><enabled>Y</enabled><name>STARTDATE</name></field><field><id>ENDDATE</id><enabled>Y</enabled><name>ENDDATE</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>DEPDATE</id><enabled>Y</enabled><name>DEPDATE</name></field><field><id>REPLAYDATE</id><enabled>Y</enabled><name>REPLAYDATE</name></field><field><id>LOG_FIELD</id><enabled>Y</enabled><name>LOG_FIELD</name></field><field><id>EXECUTING_SERVER</id><enabled>N</enabled><name>EXECUTING_SERVER</name></field><field><id>EXECUTING_USER</id><enabled>N</enabled><name>EXECUTING_USER</name></field><field><id>CLIENT</id><enabled>N</enabled><name>CLIENT</name></field></trans-log-table>
  31 +<perf-log-table><connection/>
  32 +<schema/>
  33 +<table/>
  34 +<interval/>
  35 +<timeout_days/>
  36 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>SEQ_NR</id><enabled>Y</enabled><name>SEQ_NR</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>INPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>INPUT_BUFFER_ROWS</name></field><field><id>OUTPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>OUTPUT_BUFFER_ROWS</name></field></perf-log-table>
  37 +<channel-log-table><connection/>
  38 +<schema/>
  39 +<table/>
  40 +<timeout_days/>
  41 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>LOGGING_OBJECT_TYPE</id><enabled>Y</enabled><name>LOGGING_OBJECT_TYPE</name></field><field><id>OBJECT_NAME</id><enabled>Y</enabled><name>OBJECT_NAME</name></field><field><id>OBJECT_COPY</id><enabled>Y</enabled><name>OBJECT_COPY</name></field><field><id>REPOSITORY_DIRECTORY</id><enabled>Y</enabled><name>REPOSITORY_DIRECTORY</name></field><field><id>FILENAME</id><enabled>Y</enabled><name>FILENAME</name></field><field><id>OBJECT_ID</id><enabled>Y</enabled><name>OBJECT_ID</name></field><field><id>OBJECT_REVISION</id><enabled>Y</enabled><name>OBJECT_REVISION</name></field><field><id>PARENT_CHANNEL_ID</id><enabled>Y</enabled><name>PARENT_CHANNEL_ID</name></field><field><id>ROOT_CHANNEL_ID</id><enabled>Y</enabled><name>ROOT_CHANNEL_ID</name></field></channel-log-table>
  42 +<step-log-table><connection/>
  43 +<schema/>
  44 +<table/>
  45 +<timeout_days/>
  46 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>LOG_FIELD</id><enabled>N</enabled><name>LOG_FIELD</name></field></step-log-table>
  47 +<metrics-log-table><connection/>
  48 +<schema/>
  49 +<table/>
  50 +<timeout_days/>
  51 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>METRICS_DATE</id><enabled>Y</enabled><name>METRICS_DATE</name></field><field><id>METRICS_CODE</id><enabled>Y</enabled><name>METRICS_CODE</name></field><field><id>METRICS_DESCRIPTION</id><enabled>Y</enabled><name>METRICS_DESCRIPTION</name></field><field><id>METRICS_SUBJECT</id><enabled>Y</enabled><name>METRICS_SUBJECT</name></field><field><id>METRICS_TYPE</id><enabled>Y</enabled><name>METRICS_TYPE</name></field><field><id>METRICS_VALUE</id><enabled>Y</enabled><name>METRICS_VALUE</name></field></metrics-log-table>
  52 + </log>
  53 + <maxdate>
  54 + <connection/>
  55 + <table/>
  56 + <field/>
  57 + <offset>0.0</offset>
  58 + <maxdiff>0.0</maxdiff>
  59 + </maxdate>
  60 + <size_rowset>10000</size_rowset>
  61 + <sleep_time_empty>50</sleep_time_empty>
  62 + <sleep_time_full>50</sleep_time_full>
  63 + <unique_connections>N</unique_connections>
  64 + <feedback_shown>Y</feedback_shown>
  65 + <feedback_size>50000</feedback_size>
  66 + <using_thread_priorities>Y</using_thread_priorities>
  67 + <shared_objects_file/>
  68 + <capture_step_performance>N</capture_step_performance>
  69 + <step_performance_capturing_delay>1000</step_performance_capturing_delay>
  70 + <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit>
  71 + <dependencies>
  72 + </dependencies>
  73 + <partitionschemas>
  74 + </partitionschemas>
  75 + <slaveservers>
  76 + </slaveservers>
  77 + <clusterschemas>
  78 + </clusterschemas>
  79 + <created_user>-</created_user>
  80 + <created_date>2016&#x2f;06&#x2f;29 10&#x3a;18&#x3a;56.974</created_date>
  81 + <modified_user>-</modified_user>
  82 + <modified_date>2016&#x2f;06&#x2f;29 10&#x3a;18&#x3a;56.974</modified_date>
  83 + <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA&#x3d;</key_for_session_key>
  84 + <is_key_private>N</is_key_private>
  85 + </info>
  86 + <notepads>
  87 + <notepad>
  88 + <note>&#x82f1;&#x6587;&#x6a21;&#x7248;&#x5bfc;&#x5165;&#xa;excel&#x4e2d;&#x6587;&#x5b57;&#x6bb5;&#x540d; excel&#x82f1;&#x6587;&#x5b57;&#x6bb5;&#x540d; &#xa;&#x59d3;&#x540d; name &#xa;&#x5de5;&#x53f7; employee number&#xa;&#x6027;&#x522b; gender&#xa;&#x6240;&#x5c5e;&#x516c;&#x53f8; company&#xa;&#x6240;&#x5c5e;&#x5206;&#x516c;&#x53f8; branch company&#xa;&#x4e00;&#x5361;&#x901a;&#x53f7; one card number&#xa;&#x8fd0;&#x8425;&#x670d;&#x52a1;&#x8bc1;&#x53f7; Operation service certificate number&#xa;&#x5c97;&#x4f4d; occupation type&#xa;&#x5907;&#x6ce8; remarks</note>
  89 + <xloc>36</xloc>
  90 + <yloc>250</yloc>
  91 + <width>376</width>
  92 + <heigth>186</heigth>
  93 + <fontname>YaHei Consolas Hybrid</fontname>
  94 + <fontsize>12</fontsize>
  95 + <fontbold>N</fontbold>
  96 + <fontitalic>N</fontitalic>
  97 + <fontcolorred>0</fontcolorred>
  98 + <fontcolorgreen>0</fontcolorgreen>
  99 + <fontcolorblue>0</fontcolorblue>
  100 + <backgroundcolorred>255</backgroundcolorred>
  101 + <backgroundcolorgreen>205</backgroundcolorgreen>
  102 + <backgroundcolorblue>112</backgroundcolorblue>
  103 + <bordercolorred>100</bordercolorred>
  104 + <bordercolorgreen>100</bordercolorgreen>
  105 + <bordercolorblue>100</bordercolorblue>
  106 + <drawshadow>Y</drawshadow>
  107 + </notepad>
  108 + </notepads>
  109 + <connection>
  110 + <name>192.168.168.1_jwgl_dw</name>
  111 + <server>192.168.168.1</server>
  112 + <type>ORACLE</type>
  113 + <access>Native</access>
  114 + <database>orcl</database>
  115 + <port>1521</port>
  116 + <username>jwgl_dw</username>
  117 + <password>Encrypted 2be98afc86aa7f2e4cb13b977d2adabcd</password>
  118 + <servername/>
  119 + <data_tablespace/>
  120 + <index_tablespace/>
  121 + <attributes>
  122 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  123 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  124 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  125 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  126 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  127 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  128 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  129 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  130 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  131 + </attributes>
  132 + </connection>
  133 + <connection>
  134 + <name>bus_control_variable</name>
  135 + <server>&#x24;&#x7b;v_db_ip&#x7d;</server>
  136 + <type>MYSQL</type>
  137 + <access>Native</access>
  138 + <database>&#x24;&#x7b;v_db_dname&#x7d;</database>
  139 + <port>3306</port>
  140 + <username>&#x24;&#x7b;v_db_uname&#x7d;</username>
  141 + <password>&#x24;&#x7b;v_db_pwd&#x7d;</password>
  142 + <servername/>
  143 + <data_tablespace/>
  144 + <index_tablespace/>
  145 + <attributes>
  146 + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
  147 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  148 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  149 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  150 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  151 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  152 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  153 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  154 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  155 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  156 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  157 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  158 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  159 + </attributes>
  160 + </connection>
  161 + <connection>
  162 + <name>bus_control_&#x516c;&#x53f8;_201</name>
  163 + <server>localhost</server>
  164 + <type>MYSQL</type>
  165 + <access>Native</access>
  166 + <database>control</database>
  167 + <port>3306</port>
  168 + <username>root</username>
  169 + <password>Encrypted </password>
  170 + <servername/>
  171 + <data_tablespace/>
  172 + <index_tablespace/>
  173 + <attributes>
  174 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  175 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  176 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  177 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  178 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  179 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  180 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  181 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  182 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  183 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  184 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  185 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  186 + </attributes>
  187 + </connection>
  188 + <connection>
  189 + <name>bus_control_&#x672c;&#x673a;</name>
  190 + <server>localhost</server>
  191 + <type>MYSQL</type>
  192 + <access>Native</access>
  193 + <database>control</database>
  194 + <port>3306</port>
  195 + <username>root</username>
  196 + <password>Encrypted </password>
  197 + <servername/>
  198 + <data_tablespace/>
  199 + <index_tablespace/>
  200 + <attributes>
  201 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  202 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  203 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  204 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  205 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  206 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  207 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  208 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  209 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  210 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  211 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  212 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  213 + </attributes>
  214 + </connection>
  215 + <connection>
  216 + <name>control_jndi</name>
  217 + <server/>
  218 + <type>MYSQL</type>
  219 + <access>JNDI</access>
  220 + <database>control_jndi</database>
  221 + <port>1521</port>
  222 + <username/>
  223 + <password>Encrypted </password>
  224 + <servername/>
  225 + <data_tablespace/>
  226 + <index_tablespace/>
  227 + <attributes>
  228 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  229 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  230 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  231 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  232 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  233 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  234 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  235 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  236 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  237 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  238 + </attributes>
  239 + </connection>
  240 + <connection>
  241 + <name>JGJW_VM</name>
  242 + <server>192.168.198.240</server>
  243 + <type>ORACLE</type>
  244 + <access>Native</access>
  245 + <database>orcl</database>
  246 + <port>1521</port>
  247 + <username>jwgl</username>
  248 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d485a8d6</password>
  249 + <servername/>
  250 + <data_tablespace/>
  251 + <index_tablespace/>
  252 + <attributes>
  253 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  254 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  255 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  256 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  257 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  258 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  259 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  260 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  261 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  262 + </attributes>
  263 + </connection>
  264 + <connection>
  265 + <name>NHJW_VM</name>
  266 + <server>192.168.198.240</server>
  267 + <type>ORACLE</type>
  268 + <access>Native</access>
  269 + <database>orcl</database>
  270 + <port>1521</port>
  271 + <username>nhjw</username>
  272 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d09aa5cd</password>
  273 + <servername/>
  274 + <data_tablespace/>
  275 + <index_tablespace/>
  276 + <attributes>
  277 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  278 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  279 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  280 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  281 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  282 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  283 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  284 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  285 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  286 + </attributes>
  287 + </connection>
  288 + <connection>
  289 + <name>PDGJ_VM</name>
  290 + <server>192.168.198.240</server>
  291 + <type>ORACLE</type>
  292 + <access>Native</access>
  293 + <database>orcl</database>
  294 + <port>1521</port>
  295 + <username>pdgj</username>
  296 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10ce96a8d0</password>
  297 + <servername/>
  298 + <data_tablespace/>
  299 + <index_tablespace/>
  300 + <attributes>
  301 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  302 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  303 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  304 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  305 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  306 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  307 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  308 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  309 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  310 + </attributes>
  311 + </connection>
  312 + <connection>
  313 + <name>repair_dw_mysql_jndi</name>
  314 + <server/>
  315 + <type>MYSQL</type>
  316 + <access>JNDI</access>
  317 + <database>repair_dw_mysql</database>
  318 + <port>1521</port>
  319 + <username/>
  320 + <password>Encrypted </password>
  321 + <servername/>
  322 + <data_tablespace/>
  323 + <index_tablespace/>
  324 + <attributes>
  325 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  326 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  327 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  328 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  329 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  330 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  331 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  332 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  333 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  334 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  335 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  336 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  337 + </attributes>
  338 + </connection>
  339 + <connection>
  340 + <name>repair_dw&#xff08;&#x672c;&#x673a;&#xff09;</name>
  341 + <server>localhost</server>
  342 + <type>MYSQL</type>
  343 + <access>Native</access>
  344 + <database>ruoyi-vue-3.5</database>
  345 + <port>3306</port>
  346 + <username>root</username>
  347 + <password>Encrypted </password>
  348 + <servername/>
  349 + <data_tablespace/>
  350 + <index_tablespace/>
  351 + <attributes>
  352 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  353 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  354 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  355 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  356 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  357 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  358 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  359 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  360 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  361 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  362 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  363 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  364 + </attributes>
  365 + </connection>
  366 + <connection>
  367 + <name>repair_real_h2</name>
  368 + <server/>
  369 + <type>H2</type>
  370 + <access>JNDI</access>
  371 + <database>repair_real_h2</database>
  372 + <port>1521</port>
  373 + <username/>
  374 + <password>Encrypted </password>
  375 + <servername/>
  376 + <data_tablespace/>
  377 + <index_tablespace/>
  378 + <attributes>
  379 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  380 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  381 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  382 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  383 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  384 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  385 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  386 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  387 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  388 + </attributes>
  389 + </connection>
  390 + <connection>
  391 + <name>SNJW_VM</name>
  392 + <server>192.168.198.240</server>
  393 + <type>ORACLE</type>
  394 + <access>Native</access>
  395 + <database>orcl</database>
  396 + <port>1521</port>
  397 + <username>snjw</username>
  398 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10cd9ca5cd</password>
  399 + <servername/>
  400 + <data_tablespace/>
  401 + <index_tablespace/>
  402 + <attributes>
  403 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  404 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  405 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  406 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  407 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  408 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  409 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  410 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  411 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  412 + </attributes>
  413 + </connection>
  414 + <connection>
  415 + <name>test_control_local</name>
  416 + <server>localhost</server>
  417 + <type>MYSQL</type>
  418 + <access>Native</access>
  419 + <database>test_control</database>
  420 + <port>3306</port>
  421 + <username>root</username>
  422 + <password>Encrypted </password>
  423 + <servername/>
  424 + <data_tablespace/>
  425 + <index_tablespace/>
  426 + <attributes>
  427 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  428 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  429 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  430 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  431 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  432 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  433 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  434 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  435 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  436 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  437 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  438 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  439 + </attributes>
  440 + </connection>
  441 + <connection>
  442 + <name>test_control&#xff08;&#x672c;&#x673a;&#xff09;</name>
  443 + <server>127.0.0.1</server>
  444 + <type>MYSQL</type>
  445 + <access>Native</access>
  446 + <database>test_control</database>
  447 + <port>3306</port>
  448 + <username>root</username>
  449 + <password>Encrypted </password>
  450 + <servername/>
  451 + <data_tablespace/>
  452 + <index_tablespace/>
  453 + <attributes>
  454 + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
  455 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  456 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  457 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  458 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  459 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  460 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  461 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  462 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  463 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  464 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  465 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  466 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  467 + </attributes>
  468 + </connection>
  469 + <connection>
  470 + <name>wzk_mysql_jndi</name>
  471 + <server/>
  472 + <type>MYSQL</type>
  473 + <access>JNDI</access>
  474 + <database>wzk_mysql</database>
  475 + <port>1521</port>
  476 + <username/>
  477 + <password>Encrypted </password>
  478 + <servername/>
  479 + <data_tablespace/>
  480 + <index_tablespace/>
  481 + <attributes>
  482 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  483 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  484 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  485 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  486 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  487 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  488 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  489 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  490 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  491 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  492 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  493 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  494 + </attributes>
  495 + </connection>
  496 + <connection>
  497 + <name>wzk&#xff08;&#x672c;&#x673a;&#xff09;</name>
  498 + <server>localhost</server>
  499 + <type>MYSQL</type>
  500 + <access>Native</access>
  501 + <database>pdgj_wzk_sys</database>
  502 + <port>3306</port>
  503 + <username>root</username>
  504 + <password>Encrypted </password>
  505 + <servername/>
  506 + <data_tablespace/>
  507 + <index_tablespace/>
  508 + <attributes>
  509 + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
  510 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  511 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  512 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  513 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  514 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  515 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  516 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  517 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  518 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  519 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  520 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  521 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  522 + </attributes>
  523 + </connection>
  524 + <connection>
  525 + <name>xlab_mysql_youle</name>
  526 + <server>101.231.124.8</server>
  527 + <type>MYSQL</type>
  528 + <access>Native</access>
  529 + <database>xlab_youle</database>
  530 + <port>45687</port>
  531 + <username>xlab-youle</username>
  532 + <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password>
  533 + <servername/>
  534 + <data_tablespace/>
  535 + <index_tablespace/>
  536 + <attributes>
  537 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  538 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  539 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  540 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  541 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  542 + <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute>
  543 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  544 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  545 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  546 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  547 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  548 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  549 + </attributes>
  550 + </connection>
  551 + <connection>
  552 + <name>xlab_mysql_youle&#xff08;&#x672c;&#x673a;&#xff09;</name>
  553 + <server>localhost</server>
  554 + <type>MYSQL</type>
  555 + <access>Native</access>
  556 + <database>xlab_youle</database>
  557 + <port>3306</port>
  558 + <username>root</username>
  559 + <password>Encrypted </password>
  560 + <servername/>
  561 + <data_tablespace/>
  562 + <index_tablespace/>
  563 + <attributes>
  564 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  565 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  566 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  567 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  568 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  569 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  570 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  571 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  572 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  573 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  574 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  575 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  576 + </attributes>
  577 + </connection>
  578 + <connection>
  579 + <name>xlab_youle</name>
  580 + <server/>
  581 + <type>MYSQL</type>
  582 + <access>JNDI</access>
  583 + <database>xlab_youle</database>
  584 + <port>1521</port>
  585 + <username/>
  586 + <password>Encrypted </password>
  587 + <servername/>
  588 + <data_tablespace/>
  589 + <index_tablespace/>
  590 + <attributes>
  591 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  592 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  593 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  594 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  595 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  596 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  597 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  598 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  599 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  600 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  601 + </attributes>
  602 + </connection>
  603 + <connection>
  604 + <name>YGJW_VM</name>
  605 + <server>192.168.198.240</server>
  606 + <type>ORACLE</type>
  607 + <access>Native</access>
  608 + <database>orcl</database>
  609 + <port>1521</port>
  610 + <username>ygjw</username>
  611 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10c795a5cd</password>
  612 + <servername/>
  613 + <data_tablespace/>
  614 + <index_tablespace/>
  615 + <attributes>
  616 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  617 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  618 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  619 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  620 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  621 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  622 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  623 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  624 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  625 + </attributes>
  626 + </connection>
  627 + <connection>
  628 + <name>&#x516c;&#x53f8;jgjw</name>
  629 + <server>192.168.168.1</server>
  630 + <type>ORACLE</type>
  631 + <access>Native</access>
  632 + <database>orcl</database>
  633 + <port>1521</port>
  634 + <username>jwgl</username>
  635 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d485a8d6</password>
  636 + <servername/>
  637 + <data_tablespace/>
  638 + <index_tablespace/>
  639 + <attributes>
  640 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  641 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  642 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  643 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  644 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  645 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  646 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  647 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  648 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  649 + </attributes>
  650 + </connection>
  651 + <connection>
  652 + <name>&#x516c;&#x53f8;snjw</name>
  653 + <server>192.168.168.1</server>
  654 + <type>ORACLE</type>
  655 + <access>Native</access>
  656 + <database>orcl</database>
  657 + <port>1521</port>
  658 + <username>snjw</username>
  659 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10cd9ca5cd</password>
  660 + <servername/>
  661 + <data_tablespace/>
  662 + <index_tablespace/>
  663 + <attributes>
  664 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  665 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  666 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  667 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  668 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  669 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  670 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  671 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  672 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  673 + </attributes>
  674 + </connection>
  675 + <connection>
  676 + <name>&#x516c;&#x53f8;ygjw</name>
  677 + <server>192.168.168.178</server>
  678 + <type>ORACLE</type>
  679 + <access>Native</access>
  680 + <database>orcl</database>
  681 + <port>1521</port>
  682 + <username>ygjw</username>
  683 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10c795a5cd</password>
  684 + <servername/>
  685 + <data_tablespace/>
  686 + <index_tablespace/>
  687 + <attributes>
  688 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  689 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  690 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  691 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  692 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  693 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  694 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  695 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  696 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  697 + </attributes>
  698 + </connection>
  699 + <connection>
  700 + <name>&#x516c;&#x53f8;&#x673a;&#x52a1;_pdgj</name>
  701 + <server>192.168.168.178</server>
  702 + <type>ORACLE</type>
  703 + <access>Native</access>
  704 + <database>orcl</database>
  705 + <port>1521</port>
  706 + <username>pdgj</username>
  707 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10ce96a8d0</password>
  708 + <servername/>
  709 + <data_tablespace/>
  710 + <index_tablespace/>
  711 + <attributes>
  712 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  713 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  714 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  715 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  716 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  717 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  718 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  719 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  720 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  721 + </attributes>
  722 + </connection>
  723 + <connection>
  724 + <name>&#x5916;&#x7f51;vpn&#x4e34;&#x6e2f;&#x673a;&#x52a1;oracle</name>
  725 + <server>10.10.150.114</server>
  726 + <type>ORACLE</type>
  727 + <access>Native</access>
  728 + <database>helowin</database>
  729 + <port>1521</port>
  730 + <username>lgjw</username>
  731 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d295a5cd</password>
  732 + <servername/>
  733 + <data_tablespace/>
  734 + <index_tablespace/>
  735 + <attributes>
  736 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  737 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  738 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  739 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  740 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  741 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  742 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  743 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  744 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  745 + </attributes>
  746 + </connection>
  747 + <connection>
  748 + <name>&#x5916;&#x7f51;&#x5357;&#x6c47;&#x673a;&#x52a1;oracle</name>
  749 + <server>58.247.254.118</server>
  750 + <type>ORACLE</type>
  751 + <access>Native</access>
  752 + <database>orcl</database>
  753 + <port>15211</port>
  754 + <username>nhjw</username>
  755 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d09aa5cd</password>
  756 + <servername/>
  757 + <data_tablespace/>
  758 + <index_tablespace/>
  759 + <attributes>
  760 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  761 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  762 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  763 + <attribute><code>PORT_NUMBER</code><attribute>15211</attribute></attribute>
  764 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  765 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  766 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  767 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  768 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  769 + </attributes>
  770 + </connection>
  771 + <connection>
  772 + <name>&#x5916;&#x7f51;&#x6768;&#x9ad8;&#x673a;&#x52a1;oracle</name>
  773 + <server>58.247.254.118</server>
  774 + <type>ORACLE</type>
  775 + <access>Native</access>
  776 + <database>orcl</database>
  777 + <port>15211</port>
  778 + <username>ygjw</username>
  779 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10c795a5cd</password>
  780 + <servername/>
  781 + <data_tablespace/>
  782 + <index_tablespace/>
  783 + <attributes>
  784 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  785 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  786 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  787 + <attribute><code>PORT_NUMBER</code><attribute>15211</attribute></attribute>
  788 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  789 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  790 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  791 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  792 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  793 + </attributes>
  794 + </connection>
  795 + <connection>
  796 + <name>&#x5916;&#x7f51;&#x91d1;&#x9ad8;&#x673a;&#x52a1;oracle</name>
  797 + <server>58.247.254.118</server>
  798 + <type>ORACLE</type>
  799 + <access>Native</access>
  800 + <database>orcl</database>
  801 + <port>15211</port>
  802 + <username>jwgl</username>
  803 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d485a8d6</password>
  804 + <servername/>
  805 + <data_tablespace/>
  806 + <index_tablespace/>
  807 + <attributes>
  808 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  809 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  810 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  811 + <attribute><code>PORT_NUMBER</code><attribute>15211</attribute></attribute>
  812 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  813 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  814 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  815 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  816 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  817 + </attributes>
  818 + </connection>
  819 + <order>
  820 + <hop> <from>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_personnel</from><to>&#x9519;&#x8bef;&#x8f93;&#x51fa;</to><enabled>Y</enabled> </hop>
  821 + <hop> <from>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</from><to>&#x539f;&#x59cb;&#x7cfb;&#x7edf;&#x5bfc;&#x51fa;&#x7684;Excel&#x8f93;&#x5165;</to><enabled>Y</enabled> </hop>
  822 + <hop> <from>&#x6dfb;&#x52a0;&#x67e5;&#x8be2;&#x5e38;&#x91cf;</from><to>&#x516c;&#x53f8;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>
  823 + <hop> <from>&#x5de5;&#x53f7;&#x4e0d;&#x4e3a;&#x7a7a;</from><to>&#x6dfb;&#x52a0;&#x67e5;&#x8be2;&#x5e38;&#x91cf;</to><enabled>Y</enabled> </hop>
  824 + <hop> <from>&#x516c;&#x53f8;&#x67e5;&#x8be2;</from><to>&#x516c;&#x53f8;&#x4ee3;&#x7801;&#x4e0d;&#x4e3a;&#x7a7a;</to><enabled>Y</enabled> </hop>
  825 + <hop> <from>&#x516c;&#x53f8;&#x4ee3;&#x7801;&#x4e0d;&#x4e3a;&#x7a7a;</from><to>&#x5206;&#x516c;&#x53f8;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>
  826 + <hop> <from>&#x5206;&#x516c;&#x53f8;&#x67e5;&#x8be2;</from><to>&#x5206;&#x516c;&#x53f8;&#x4ee3;&#x7801;&#x4e0d;&#x4e3a;&#x7a7a;</to><enabled>Y</enabled> </hop>
  827 + <hop> <from>&#x5206;&#x516c;&#x53f8;&#x4ee3;&#x7801;&#x4e0d;&#x4e3a;&#x7a7a;</from><to>&#x5904;&#x7406;&#x5de5;&#x53f7;&#x524d;&#x7f00;</to><enabled>Y</enabled> </hop>
  828 + <hop> <from>&#x5904;&#x7406;&#x5de5;&#x53f7;&#x524d;&#x7f00;</from><to>&#x5c97;&#x4f4d;&#x6570;&#x636e;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>
  829 + <hop> <from>&#x5c97;&#x4f4d;&#x6570;&#x636e;&#x67e5;&#x8be2;</from><to>&#x6027;&#x522b;&#x6570;&#x636e;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>
  830 + <hop> <from>&#x6027;&#x522b;&#x6570;&#x636e;&#x67e5;&#x8be2;</from><to>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_personnel</to><enabled>Y</enabled> </hop>
  831 + <hop> <from>&#x539f;&#x59cb;&#x7cfb;&#x7edf;&#x5bfc;&#x51fa;&#x7684;Excel&#x8f93;&#x5165;</from><to>&#x4fee;&#x6b63;&#x5b57;&#x6bb5;&#x540d;&#xff08;&#x7a7a;&#x683c;&#x66ff;&#x6362;&#x6210;_&#xff09;</to><enabled>Y</enabled> </hop>
  832 + <hop> <from>&#x4fee;&#x6b63;&#x5b57;&#x6bb5;&#x540d;&#xff08;&#x7a7a;&#x683c;&#x66ff;&#x6362;&#x6210;_&#xff09;</from><to>&#x5de5;&#x53f7;&#x4e0d;&#x4e3a;&#x7a7a;</to><enabled>Y</enabled> </hop>
  833 + </order>
  834 + <step>
  835 + <name>&#x516c;&#x53f8;&#x4ee3;&#x7801;&#x4e0d;&#x4e3a;&#x7a7a;</name>
  836 + <type>FilterRows</type>
  837 + <description/>
  838 + <distribute>Y</distribute>
  839 + <custom_distribution/>
  840 + <copies>1</copies>
  841 + <partitioning>
  842 + <method>none</method>
  843 + <schema_name/>
  844 + </partitioning>
  845 +<send_true_to/>
  846 +<send_false_to/>
  847 + <compare>
  848 +<condition>
  849 + <negated>N</negated>
  850 + <conditions>
  851 + <condition>
  852 + <negated>N</negated>
  853 + <leftvalue>gs_code</leftvalue>
  854 + <function>IS NOT NULL</function>
  855 + <rightvalue/>
  856 + </condition>
  857 + </conditions>
  858 + </condition>
  859 + </compare>
  860 + <cluster_schema/>
  861 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  862 + <xloc>628</xloc>
  863 + <yloc>176</yloc>
  864 + <draw>Y</draw>
  865 + </GUI>
  866 + </step>
  867 +
  868 + <step>
  869 + <name>&#x516c;&#x53f8;&#x67e5;&#x8be2;</name>
  870 + <type>DBLookup</type>
  871 + <description/>
  872 + <distribute>Y</distribute>
  873 + <custom_distribution/>
  874 + <copies>1</copies>
  875 + <partitioning>
  876 + <method>none</method>
  877 + <schema_name/>
  878 + </partitioning>
  879 + <connection>control_jndi</connection>
  880 + <cache>N</cache>
  881 + <cache_load_all>N</cache_load_all>
  882 + <cache_size>0</cache_size>
  883 + <lookup>
  884 + <schema/>
  885 + <table>bsth_c_business</table>
  886 + <orderby/>
  887 + <fail_on_multiple>N</fail_on_multiple>
  888 + <eat_row_on_failure>N</eat_row_on_failure>
  889 + <key>
  890 + <name>up_code</name>
  891 + <field>up_code</field>
  892 + <condition>&#x3d;</condition>
  893 + <name2/>
  894 + </key>
  895 + <key>
  896 + <name>company</name>
  897 + <field>business_name</field>
  898 + <condition>&#x3d;</condition>
  899 + <name2/>
  900 + </key>
  901 + <value>
  902 + <name>business_code</name>
  903 + <rename>gs_code</rename>
  904 + <default/>
  905 + <type>String</type>
  906 + </value>
  907 + </lookup>
  908 + <cluster_schema/>
  909 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  910 + <xloc>628</xloc>
  911 + <yloc>84</yloc>
  912 + <draw>Y</draw>
  913 + </GUI>
  914 + </step>
  915 +
  916 + <step>
  917 + <name>&#x5206;&#x516c;&#x53f8;&#x4ee3;&#x7801;&#x4e0d;&#x4e3a;&#x7a7a;</name>
  918 + <type>FilterRows</type>
  919 + <description/>
  920 + <distribute>Y</distribute>
  921 + <custom_distribution/>
  922 + <copies>1</copies>
  923 + <partitioning>
  924 + <method>none</method>
  925 + <schema_name/>
  926 + </partitioning>
  927 +<send_true_to/>
  928 +<send_false_to/>
  929 + <compare>
  930 +<condition>
  931 + <negated>N</negated>
  932 + <conditions>
  933 + <condition>
  934 + <negated>N</negated>
  935 + <leftvalue>fgs_code</leftvalue>
  936 + <function>IS NOT NULL</function>
  937 + <rightvalue/>
  938 + </condition>
  939 + </conditions>
  940 + </condition>
  941 + </compare>
  942 + <cluster_schema/>
  943 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  944 + <xloc>801</xloc>
  945 + <yloc>179</yloc>
  946 + <draw>Y</draw>
  947 + </GUI>
  948 + </step>
  949 +
  950 + <step>
  951 + <name>&#x5206;&#x516c;&#x53f8;&#x67e5;&#x8be2;</name>
  952 + <type>DBLookup</type>
  953 + <description/>
  954 + <distribute>Y</distribute>
  955 + <custom_distribution/>
  956 + <copies>1</copies>
  957 + <partitioning>
  958 + <method>none</method>
  959 + <schema_name/>
  960 + </partitioning>
  961 + <connection>control_jndi</connection>
  962 + <cache>N</cache>
  963 + <cache_load_all>N</cache_load_all>
  964 + <cache_size>0</cache_size>
  965 + <lookup>
  966 + <schema/>
  967 + <table>bsth_c_business</table>
  968 + <orderby/>
  969 + <fail_on_multiple>N</fail_on_multiple>
  970 + <eat_row_on_failure>N</eat_row_on_failure>
  971 + <key>
  972 + <name>gs_code</name>
  973 + <field>up_code</field>
  974 + <condition>&#x3d;</condition>
  975 + <name2/>
  976 + </key>
  977 + <key>
  978 + <name>branch_company</name>
  979 + <field>business_name</field>
  980 + <condition>&#x3d;</condition>
  981 + <name2/>
  982 + </key>
  983 + <value>
  984 + <name>business_code</name>
  985 + <rename>fgs_code</rename>
  986 + <default/>
  987 + <type>String</type>
  988 + </value>
  989 + </lookup>
  990 + <cluster_schema/>
  991 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  992 + <xloc>801</xloc>
  993 + <yloc>84</yloc>
  994 + <draw>Y</draw>
  995 + </GUI>
  996 + </step>
  997 +
  998 + <step>
  999 + <name>&#x539f;&#x59cb;&#x7cfb;&#x7edf;&#x5bfc;&#x51fa;&#x7684;Excel&#x8f93;&#x5165;</name>
  1000 + <type>ExcelInput</type>
  1001 + <description/>
  1002 + <distribute>Y</distribute>
  1003 + <custom_distribution/>
  1004 + <copies>1</copies>
  1005 + <partitioning>
  1006 + <method>none</method>
  1007 + <schema_name/>
  1008 + </partitioning>
  1009 + <header>Y</header>
  1010 + <noempty>Y</noempty>
  1011 + <stoponempty>N</stoponempty>
  1012 + <filefield/>
  1013 + <sheetfield/>
  1014 + <sheetrownumfield/>
  1015 + <rownumfield/>
  1016 + <sheetfield/>
  1017 + <filefield/>
  1018 + <limit>0</limit>
  1019 + <encoding>UTF-8</encoding>
  1020 + <add_to_result_filenames>Y</add_to_result_filenames>
  1021 + <accept_filenames>Y</accept_filenames>
  1022 + <accept_field>filepath_</accept_field>
  1023 + <accept_stepname>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</accept_stepname>
  1024 + <file>
  1025 + <name/>
  1026 + <filemask/>
  1027 + <exclude_filemask/>
  1028 + <file_required>N</file_required>
  1029 + <include_subfolders>N</include_subfolders>
  1030 + </file>
  1031 + <fields>
  1032 + <field>
  1033 + <name>name</name>
  1034 + <type>String</type>
  1035 + <length>-1</length>
  1036 + <precision>-1</precision>
  1037 + <trim_type>none</trim_type>
  1038 + <repeat>N</repeat>
  1039 + <format/>
  1040 + <currency/>
  1041 + <decimal/>
  1042 + <group/>
  1043 + </field>
  1044 + <field>
  1045 + <name>employee number</name>
  1046 + <type>String</type>
  1047 + <length>-1</length>
  1048 + <precision>-1</precision>
  1049 + <trim_type>none</trim_type>
  1050 + <repeat>N</repeat>
  1051 + <format>&#x23;</format>
  1052 + <currency/>
  1053 + <decimal/>
  1054 + <group/>
  1055 + </field>
  1056 + <field>
  1057 + <name>gender</name>
  1058 + <type>String</type>
  1059 + <length>-1</length>
  1060 + <precision>-1</precision>
  1061 + <trim_type>none</trim_type>
  1062 + <repeat>N</repeat>
  1063 + <format/>
  1064 + <currency/>
  1065 + <decimal/>
  1066 + <group/>
  1067 + </field>
  1068 + <field>
  1069 + <name>company</name>
  1070 + <type>String</type>
  1071 + <length>-1</length>
  1072 + <precision>-1</precision>
  1073 + <trim_type>none</trim_type>
  1074 + <repeat>N</repeat>
  1075 + <format/>
  1076 + <currency/>
  1077 + <decimal/>
  1078 + <group/>
  1079 + </field>
  1080 + <field>
  1081 + <name>branch company</name>
  1082 + <type>String</type>
  1083 + <length>-1</length>
  1084 + <precision>-1</precision>
  1085 + <trim_type>none</trim_type>
  1086 + <repeat>N</repeat>
  1087 + <format/>
  1088 + <currency/>
  1089 + <decimal/>
  1090 + <group/>
  1091 + </field>
  1092 + <field>
  1093 + <name>one card number</name>
  1094 + <type>String</type>
  1095 + <length>-1</length>
  1096 + <precision>-1</precision>
  1097 + <trim_type>none</trim_type>
  1098 + <repeat>N</repeat>
  1099 + <format>&#x23;</format>
  1100 + <currency/>
  1101 + <decimal/>
  1102 + <group/>
  1103 + </field>
  1104 + <field>
  1105 + <name>operation service certificate number</name>
  1106 + <type>String</type>
  1107 + <length>-1</length>
  1108 + <precision>-1</precision>
  1109 + <trim_type>none</trim_type>
  1110 + <repeat>N</repeat>
  1111 + <format>&#x23;</format>
  1112 + <currency/>
  1113 + <decimal/>
  1114 + <group/>
  1115 + </field>
  1116 + <field>
  1117 + <name>occupation type</name>
  1118 + <type>String</type>
  1119 + <length>-1</length>
  1120 + <precision>-1</precision>
  1121 + <trim_type>none</trim_type>
  1122 + <repeat>N</repeat>
  1123 + <format/>
  1124 + <currency/>
  1125 + <decimal/>
  1126 + <group/>
  1127 + </field>
  1128 + <field>
  1129 + <name>remarks</name>
  1130 + <type>String</type>
  1131 + <length>-1</length>
  1132 + <precision>-1</precision>
  1133 + <trim_type>none</trim_type>
  1134 + <repeat>N</repeat>
  1135 + <format/>
  1136 + <currency/>
  1137 + <decimal/>
  1138 + <group/>
  1139 + </field>
  1140 + </fields>
  1141 + <sheets>
  1142 + <sheet>
  1143 + <name>sheet1</name>
  1144 + <startrow>0</startrow>
  1145 + <startcol>0</startcol>
  1146 + </sheet>
  1147 + </sheets>
  1148 + <strict_types>N</strict_types>
  1149 + <error_ignored>N</error_ignored>
  1150 + <error_line_skipped>N</error_line_skipped>
  1151 + <bad_line_files_destination_directory/>
  1152 + <bad_line_files_extension>warning</bad_line_files_extension>
  1153 + <error_line_files_destination_directory/>
  1154 + <error_line_files_extension>error</error_line_files_extension>
  1155 + <line_number_files_destination_directory/>
  1156 + <line_number_files_extension>line</line_number_files_extension>
  1157 + <shortFileFieldName/>
  1158 + <pathFieldName/>
  1159 + <hiddenFieldName/>
  1160 + <lastModificationTimeFieldName/>
  1161 + <uriNameFieldName/>
  1162 + <rootUriNameFieldName/>
  1163 + <extensionFieldName/>
  1164 + <sizeFieldName/>
  1165 + <spreadsheet_type>JXL</spreadsheet_type>
  1166 + <cluster_schema/>
  1167 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1168 + <xloc>236</xloc>
  1169 + <yloc>83</yloc>
  1170 + <draw>Y</draw>
  1171 + </GUI>
  1172 + </step>
  1173 +
  1174 + <step>
  1175 + <name>&#x5904;&#x7406;&#x5de5;&#x53f7;&#x524d;&#x7f00;</name>
  1176 + <type>ScriptValueMod</type>
  1177 + <description/>
  1178 + <distribute>Y</distribute>
  1179 + <custom_distribution/>
  1180 + <copies>1</copies>
  1181 + <partitioning>
  1182 + <method>none</method>
  1183 + <schema_name/>
  1184 + </partitioning>
  1185 + <compatible>N</compatible>
  1186 + <optimizationLevel>9</optimizationLevel>
  1187 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  1188 + <jsScript_name>Script 1</jsScript_name>
  1189 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var gh_calcu &#x3d; employee_number&#x3b;&#xa;&#xa;if &#x28;employee_number.indexOf&#x28;gs_code &#x2b; &#x22;-&#x22;&#x29; &#x3c; 0&#x29; &#x7b;&#xa; gh_calcu &#x3d; gs_code &#x2b; &#x22;-&#x22; &#x2b; employee_number&#x3b;&#xa;&#x7d; </jsScript_script>
  1190 + </jsScript> </jsScripts> <fields> <field> <name>gh_calcu</name>
  1191 + <rename>gh_calcu</rename>
  1192 + <type>String</type>
  1193 + <length>-1</length>
  1194 + <precision>-1</precision>
  1195 + <replace>N</replace>
  1196 + </field> </fields> <cluster_schema/>
  1197 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1198 + <xloc>801</xloc>
  1199 + <yloc>296</yloc>
  1200 + <draw>Y</draw>
  1201 + </GUI>
  1202 + </step>
  1203 +
  1204 + <step>
  1205 + <name>&#x5c97;&#x4f4d;&#x6570;&#x636e;&#x67e5;&#x8be2;</name>
  1206 + <type>DBLookup</type>
  1207 + <description/>
  1208 + <distribute>Y</distribute>
  1209 + <custom_distribution/>
  1210 + <copies>1</copies>
  1211 + <partitioning>
  1212 + <method>none</method>
  1213 + <schema_name/>
  1214 + </partitioning>
  1215 + <connection>control_jndi</connection>
  1216 + <cache>N</cache>
  1217 + <cache_load_all>N</cache_load_all>
  1218 + <cache_size>0</cache_size>
  1219 + <lookup>
  1220 + <schema/>
  1221 + <table>bsth_c_sys_dictionary</table>
  1222 + <orderby/>
  1223 + <fail_on_multiple>N</fail_on_multiple>
  1224 + <eat_row_on_failure>N</eat_row_on_failure>
  1225 + <key>
  1226 + <name>gzType</name>
  1227 + <field>d_group</field>
  1228 + <condition>&#x3d;</condition>
  1229 + <name2/>
  1230 + </key>
  1231 + <key>
  1232 + <name>occupation_type</name>
  1233 + <field>d_name</field>
  1234 + <condition>&#x3d;</condition>
  1235 + <name2/>
  1236 + </key>
  1237 + <value>
  1238 + <name>d_code</name>
  1239 + <rename>posts</rename>
  1240 + <default/>
  1241 + <type>String</type>
  1242 + </value>
  1243 + </lookup>
  1244 + <cluster_schema/>
  1245 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1246 + <xloc>631</xloc>
  1247 + <yloc>295</yloc>
  1248 + <draw>Y</draw>
  1249 + </GUI>
  1250 + </step>
  1251 +
  1252 + <step>
  1253 + <name>&#x5de5;&#x53f7;&#x4e0d;&#x4e3a;&#x7a7a;</name>
  1254 + <type>FilterRows</type>
  1255 + <description/>
  1256 + <distribute>Y</distribute>
  1257 + <custom_distribution/>
  1258 + <copies>1</copies>
  1259 + <partitioning>
  1260 + <method>none</method>
  1261 + <schema_name/>
  1262 + </partitioning>
  1263 +<send_true_to/>
  1264 +<send_false_to/>
  1265 + <compare>
  1266 +<condition>
  1267 + <negated>N</negated>
  1268 + <conditions>
  1269 + <condition>
  1270 + <negated>N</negated>
  1271 + <leftvalue>employee_number</leftvalue>
  1272 + <function>IS NOT NULL</function>
  1273 + <rightvalue/>
  1274 + </condition>
  1275 + </conditions>
  1276 + </condition>
  1277 + </compare>
  1278 + <cluster_schema/>
  1279 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1280 + <xloc>415</xloc>
  1281 + <yloc>179</yloc>
  1282 + <draw>Y</draw>
  1283 + </GUI>
  1284 + </step>
  1285 +
  1286 + <step>
  1287 + <name>&#x6027;&#x522b;&#x6570;&#x636e;&#x67e5;&#x8be2;</name>
  1288 + <type>DBLookup</type>
  1289 + <description/>
  1290 + <distribute>Y</distribute>
  1291 + <custom_distribution/>
  1292 + <copies>1</copies>
  1293 + <partitioning>
  1294 + <method>none</method>
  1295 + <schema_name/>
  1296 + </partitioning>
  1297 + <connection>control_jndi</connection>
  1298 + <cache>N</cache>
  1299 + <cache_load_all>N</cache_load_all>
  1300 + <cache_size>0</cache_size>
  1301 + <lookup>
  1302 + <schema/>
  1303 + <table>bsth_c_sys_dictionary</table>
  1304 + <orderby/>
  1305 + <fail_on_multiple>N</fail_on_multiple>
  1306 + <eat_row_on_failure>N</eat_row_on_failure>
  1307 + <key>
  1308 + <name>sexType</name>
  1309 + <field>d_group</field>
  1310 + <condition>&#x3d;</condition>
  1311 + <name2/>
  1312 + </key>
  1313 + <key>
  1314 + <name>gender</name>
  1315 + <field>d_name</field>
  1316 + <condition>&#x3d;</condition>
  1317 + <name2/>
  1318 + </key>
  1319 + <value>
  1320 + <name>d_code</name>
  1321 + <rename>sex</rename>
  1322 + <default/>
  1323 + <type>String</type>
  1324 + </value>
  1325 + </lookup>
  1326 + <cluster_schema/>
  1327 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1328 + <xloc>499</xloc>
  1329 + <yloc>298</yloc>
  1330 + <draw>Y</draw>
  1331 + </GUI>
  1332 + </step>
  1333 +
  1334 + <step>
  1335 + <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_personnel</name>
  1336 + <type>InsertUpdate</type>
  1337 + <description/>
  1338 + <distribute>Y</distribute>
  1339 + <custom_distribution/>
  1340 + <copies>1</copies>
  1341 + <partitioning>
  1342 + <method>none</method>
  1343 + <schema_name/>
  1344 + </partitioning>
  1345 + <connection>control_jndi</connection>
  1346 + <commit>500</commit>
  1347 + <update_bypassed>N</update_bypassed>
  1348 + <lookup>
  1349 + <schema/>
  1350 + <table>bsth_c_personnel</table>
  1351 + <key>
  1352 + <name>gh_calcu</name>
  1353 + <field>job_code</field>
  1354 + <condition>&#x3d;</condition>
  1355 + <name2/>
  1356 + </key>
  1357 + <value>
  1358 + <name>company</name>
  1359 + <rename>company</rename>
  1360 + <update>Y</update>
  1361 + </value>
  1362 + <value>
  1363 + <name>company_code</name>
  1364 + <rename>gs_code</rename>
  1365 + <update>Y</update>
  1366 + </value>
  1367 + <value>
  1368 + <name>branche_company</name>
  1369 + <rename>branch_company</rename>
  1370 + <update>Y</update>
  1371 + </value>
  1372 + <value>
  1373 + <name>branche_company_code</name>
  1374 + <rename>fgs_code</rename>
  1375 + <update>Y</update>
  1376 + </value>
  1377 + <value>
  1378 + <name>ic_card_code</name>
  1379 + <rename>one_card_number</rename>
  1380 + <update>Y</update>
  1381 + </value>
  1382 + <value>
  1383 + <name>papers_code</name>
  1384 + <rename>operation_service_certificate_number</rename>
  1385 + <update>Y</update>
  1386 + </value>
  1387 + <value>
  1388 + <name>job_code</name>
  1389 + <rename>gh_calcu</rename>
  1390 + <update>Y</update>
  1391 + </value>
  1392 + <value>
  1393 + <name>job_codeori</name>
  1394 + <rename>employee_number</rename>
  1395 + <update>Y</update>
  1396 + </value>
  1397 + <value>
  1398 + <name>personnel_name</name>
  1399 + <rename>name</rename>
  1400 + <update>Y</update>
  1401 + </value>
  1402 + <value>
  1403 + <name>personnel_type</name>
  1404 + <rename>sex</rename>
  1405 + <update>Y</update>
  1406 + </value>
  1407 + <value>
  1408 + <name>posts</name>
  1409 + <rename>posts</rename>
  1410 + <update>Y</update>
  1411 + </value>
  1412 + <value>
  1413 + <name>remark</name>
  1414 + <rename>remarks</rename>
  1415 + <update>Y</update>
  1416 + </value>
  1417 + </lookup>
  1418 + <cluster_schema/>
  1419 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1420 + <xloc>502</xloc>
  1421 + <yloc>423</yloc>
  1422 + <draw>Y</draw>
  1423 + </GUI>
  1424 + </step>
  1425 +
  1426 + <step>
  1427 + <name>&#x6dfb;&#x52a0;&#x67e5;&#x8be2;&#x5e38;&#x91cf;</name>
  1428 + <type>ScriptValueMod</type>
  1429 + <description/>
  1430 + <distribute>Y</distribute>
  1431 + <custom_distribution/>
  1432 + <copies>1</copies>
  1433 + <partitioning>
  1434 + <method>none</method>
  1435 + <schema_name/>
  1436 + </partitioning>
  1437 + <compatible>N</compatible>
  1438 + <optimizationLevel>9</optimizationLevel>
  1439 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  1440 + <jsScript_name>Script 1</jsScript_name>
  1441 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var up_code &#x3d; &#x27;88&#x27;&#x3b;&#xa;var sexType &#x3d; &#x27;sexType&#x27;&#x3b;&#xa;var gzType &#x3d; &#x27;gzType&#x27;&#x3b;</jsScript_script>
  1442 + </jsScript> </jsScripts> <fields> <field> <name>up_code</name>
  1443 + <rename>up_code</rename>
  1444 + <type>String</type>
  1445 + <length>-1</length>
  1446 + <precision>-1</precision>
  1447 + <replace>N</replace>
  1448 + </field> <field> <name>sexType</name>
  1449 + <rename>sexType</rename>
  1450 + <type>String</type>
  1451 + <length>-1</length>
  1452 + <precision>-1</precision>
  1453 + <replace>N</replace>
  1454 + </field> <field> <name>gzType</name>
  1455 + <rename>gzType</rename>
  1456 + <type>String</type>
  1457 + <length>-1</length>
  1458 + <precision>-1</precision>
  1459 + <replace>N</replace>
  1460 + </field> </fields> <cluster_schema/>
  1461 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1462 + <xloc>414</xloc>
  1463 + <yloc>85</yloc>
  1464 + <draw>Y</draw>
  1465 + </GUI>
  1466 + </step>
  1467 +
  1468 + <step>
  1469 + <name>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</name>
  1470 + <type>GetVariable</type>
  1471 + <description/>
  1472 + <distribute>Y</distribute>
  1473 + <custom_distribution/>
  1474 + <copies>1</copies>
  1475 + <partitioning>
  1476 + <method>none</method>
  1477 + <schema_name/>
  1478 + </partitioning>
  1479 + <fields>
  1480 + <field>
  1481 + <name>filepath_</name>
  1482 + <variable>&#x24;&#x7b;filepath&#x7d;</variable>
  1483 + <type>String</type>
  1484 + <format/>
  1485 + <currency/>
  1486 + <decimal/>
  1487 + <group/>
  1488 + <length>-1</length>
  1489 + <precision>-1</precision>
  1490 + <trim_type>none</trim_type>
  1491 + </field>
  1492 + <field>
  1493 + <name>erroroutputdir_</name>
  1494 + <variable>&#x24;&#x7b;erroroutputdir&#x7d;</variable>
  1495 + <type>String</type>
  1496 + <format/>
  1497 + <currency/>
  1498 + <decimal/>
  1499 + <group/>
  1500 + <length>-1</length>
  1501 + <precision>-1</precision>
  1502 + <trim_type>none</trim_type>
  1503 + </field>
  1504 + </fields>
  1505 + <cluster_schema/>
  1506 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1507 + <xloc>70</xloc>
  1508 + <yloc>85</yloc>
  1509 + <draw>Y</draw>
  1510 + </GUI>
  1511 + </step>
  1512 +
  1513 + <step>
  1514 + <name>&#x9519;&#x8bef;&#x8f93;&#x51fa;</name>
  1515 + <type>ExcelOutput</type>
  1516 + <description/>
  1517 + <distribute>Y</distribute>
  1518 + <custom_distribution/>
  1519 + <copies>1</copies>
  1520 + <partitioning>
  1521 + <method>none</method>
  1522 + <schema_name/>
  1523 + </partitioning>
  1524 + <header>Y</header>
  1525 + <footer>N</footer>
  1526 + <encoding>UTF-8</encoding>
  1527 + <append>N</append>
  1528 + <add_to_result_filenames>Y</add_to_result_filenames>
  1529 + <file>
  1530 + <name>&#x24;&#x7b;erroroutputdir&#x7d;&#x2f;&#x4eba;&#x5458;&#x57fa;&#x7840;&#x4fe1;&#x606f;_&#x9519;&#x8bef;</name>
  1531 + <extention>xls</extention>
  1532 + <do_not_open_newfile_init>N</do_not_open_newfile_init>
  1533 + <create_parent_folder>N</create_parent_folder>
  1534 + <split>N</split>
  1535 + <add_date>N</add_date>
  1536 + <add_time>N</add_time>
  1537 + <SpecifyFormat>N</SpecifyFormat>
  1538 + <date_time_format/>
  1539 + <sheetname>Sheet1</sheetname>
  1540 + <autosizecolums>N</autosizecolums>
  1541 + <nullisblank>N</nullisblank>
  1542 + <protect_sheet>N</protect_sheet>
  1543 + <password>Encrypted </password>
  1544 + <splitevery>0</splitevery>
  1545 + <usetempfiles>N</usetempfiles>
  1546 + <tempdirectory/>
  1547 + </file>
  1548 + <template>
  1549 + <enabled>N</enabled>
  1550 + <append>N</append>
  1551 + <filename>template.xls</filename>
  1552 + </template>
  1553 + <fields>
  1554 + <field>
  1555 + <name>name</name>
  1556 + <type>String</type>
  1557 + <format/>
  1558 + </field>
  1559 + <field>
  1560 + <name>employee_number</name>
  1561 + <type>String</type>
  1562 + <format/>
  1563 + </field>
  1564 + <field>
  1565 + <name>company</name>
  1566 + <type>String</type>
  1567 + <format/>
  1568 + </field>
  1569 + <field>
  1570 + <name>gs_code</name>
  1571 + <type>String</type>
  1572 + <format/>
  1573 + </field>
  1574 + <field>
  1575 + <name>branch_company</name>
  1576 + <type>String</type>
  1577 + <format/>
  1578 + </field>
  1579 + <field>
  1580 + <name>fgs_code</name>
  1581 + <type>String</type>
  1582 + <format/>
  1583 + </field>
  1584 + <field>
  1585 + <name>gh_calcu</name>
  1586 + <type>String</type>
  1587 + <format/>
  1588 + </field>
  1589 + <field>
  1590 + <name>error_count</name>
  1591 + <type>Integer</type>
  1592 + <format/>
  1593 + </field>
  1594 + <field>
  1595 + <name>error_desc</name>
  1596 + <type>String</type>
  1597 + <format/>
  1598 + </field>
  1599 + <field>
  1600 + <name>error_column1</name>
  1601 + <type>String</type>
  1602 + <format/>
  1603 + </field>
  1604 + <field>
  1605 + <name>error_column2</name>
  1606 + <type>String</type>
  1607 + <format/>
  1608 + </field>
  1609 + </fields>
  1610 + <custom>
  1611 + <header_font_name>arial</header_font_name>
  1612 + <header_font_size>10</header_font_size>
  1613 + <header_font_bold>N</header_font_bold>
  1614 + <header_font_italic>N</header_font_italic>
  1615 + <header_font_underline>no</header_font_underline>
  1616 + <header_font_orientation>horizontal</header_font_orientation>
  1617 + <header_font_color>black</header_font_color>
  1618 + <header_background_color>none</header_background_color>
  1619 + <header_row_height>255</header_row_height>
  1620 + <header_alignment>left</header_alignment>
  1621 + <header_image/>
  1622 + <row_font_name>arial</row_font_name>
  1623 + <row_font_size>10</row_font_size>
  1624 + <row_font_color>black</row_font_color>
  1625 + <row_background_color>none</row_background_color>
  1626 + </custom>
  1627 + <cluster_schema/>
  1628 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1629 + <xloc>502</xloc>
  1630 + <yloc>568</yloc>
  1631 + <draw>Y</draw>
  1632 + </GUI>
  1633 + </step>
  1634 +
  1635 + <step>
  1636 + <name>&#x4fee;&#x6b63;&#x5b57;&#x6bb5;&#x540d;&#xff08;&#x7a7a;&#x683c;&#x66ff;&#x6362;&#x6210;_&#xff09;</name>
  1637 + <type>SelectValues</type>
  1638 + <description/>
  1639 + <distribute>Y</distribute>
  1640 + <custom_distribution/>
  1641 + <copies>1</copies>
  1642 + <partitioning>
  1643 + <method>none</method>
  1644 + <schema_name/>
  1645 + </partitioning>
  1646 + <fields> <field> <name>branch company</name>
  1647 + <rename>branch_company</rename>
  1648 + <length>-2</length>
  1649 + <precision>-2</precision>
  1650 + </field> <field> <name>employee number</name>
  1651 + <rename>employee_number</rename>
  1652 + <length>-2</length>
  1653 + <precision>-2</precision>
  1654 + </field> <field> <name>occupation type</name>
  1655 + <rename>occupation_type</rename>
  1656 + <length>-2</length>
  1657 + <precision>-2</precision>
  1658 + </field> <field> <name>one card number</name>
  1659 + <rename>one_card_number</rename>
  1660 + <length>-2</length>
  1661 + <precision>-2</precision>
  1662 + </field> <field> <name>operation service certificate number</name>
  1663 + <rename>operation_service_certificate_number</rename>
  1664 + <length>-2</length>
  1665 + <precision>-2</precision>
  1666 + </field> <select_unspecified>Y</select_unspecified>
  1667 + </fields> <cluster_schema/>
  1668 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1669 + <xloc>237</xloc>
  1670 + <yloc>180</yloc>
  1671 + <draw>Y</draw>
  1672 + </GUI>
  1673 + </step>
  1674 +
  1675 + <step_error_handling>
  1676 + <error>
  1677 + <source_step>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_personnel</source_step>
  1678 + <target_step>&#x9519;&#x8bef;&#x8f93;&#x51fa;</target_step>
  1679 + <is_enabled>Y</is_enabled>
  1680 + <nr_valuename>error_count</nr_valuename>
  1681 + <descriptions_valuename>error_desc</descriptions_valuename>
  1682 + <fields_valuename>error_column1</fields_valuename>
  1683 + <codes_valuename>error_column2</codes_valuename>
  1684 + <max_errors/>
  1685 + <max_pct_errors/>
  1686 + <min_pct_rows/>
  1687 + </error>
  1688 + </step_error_handling>
  1689 + <slave-step-copy-partition-distribution>
  1690 +</slave-step-copy-partition-distribution>
  1691 + <slave_transformation>N</slave_transformation>
  1692 +
  1693 +</transformation>
src/main/resources/datatools/ktrs/employeesDataOutput.ktr renamed to src/main/resources/datatools/ktrs/zh/personnel-basic-data_export.ktr
1 <?xml version="1.0" encoding="UTF-8"?> 1 <?xml version="1.0" encoding="UTF-8"?>
2 <transformation> 2 <transformation>
3 <info> 3 <info>
4 - <name>&#x4eba;&#x5458;&#x4fe1;&#x606f;&#x5bfc;&#x51fa;</name> 4 + <name>&#x4eba;&#x5458;&#x4fe1;&#x606f;&#x5bfc;&#x51fa;_zh</name>
5 <description/> 5 <description/>
6 <extended_description/> 6 <extended_description/>
7 <trans_version/> 7 <trans_version/>
@@ -391,6 +391,33 @@ @@ -391,6 +391,33 @@
391 </attributes> 391 </attributes>
392 </connection> 392 </connection>
393 <connection> 393 <connection>
  394 + <name>test_control_local</name>
  395 + <server>localhost</server>
  396 + <type>MYSQL</type>
  397 + <access>Native</access>
  398 + <database>test_control</database>
  399 + <port>3306</port>
  400 + <username>root</username>
  401 + <password>Encrypted </password>
  402 + <servername/>
  403 + <data_tablespace/>
  404 + <index_tablespace/>
  405 + <attributes>
  406 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  407 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  408 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  409 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  410 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  411 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  412 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  413 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  414 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  415 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  416 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  417 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  418 + </attributes>
  419 + </connection>
  420 + <connection>
394 <name>test_control&#xff08;&#x672c;&#x673a;&#xff09;</name> 421 <name>test_control&#xff08;&#x672c;&#x673a;&#xff09;</name>
395 <server>127.0.0.1</server> 422 <server>127.0.0.1</server>
396 <type>MYSQL</type> 423 <type>MYSQL</type>
@@ -403,6 +430,62 @@ @@ -403,6 +430,62 @@
403 <data_tablespace/> 430 <data_tablespace/>
404 <index_tablespace/> 431 <index_tablespace/>
405 <attributes> 432 <attributes>
  433 + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
  434 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  435 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  436 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  437 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  438 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  439 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  440 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  441 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  442 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  443 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  444 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  445 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  446 + </attributes>
  447 + </connection>
  448 + <connection>
  449 + <name>wzk_mysql_jndi</name>
  450 + <server/>
  451 + <type>MYSQL</type>
  452 + <access>JNDI</access>
  453 + <database>wzk_mysql</database>
  454 + <port>1521</port>
  455 + <username/>
  456 + <password>Encrypted </password>
  457 + <servername/>
  458 + <data_tablespace/>
  459 + <index_tablespace/>
  460 + <attributes>
  461 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  462 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  463 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  464 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  465 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  466 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  467 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  468 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  469 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  470 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  471 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  472 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  473 + </attributes>
  474 + </connection>
  475 + <connection>
  476 + <name>wzk&#xff08;&#x672c;&#x673a;&#xff09;</name>
  477 + <server>localhost</server>
  478 + <type>MYSQL</type>
  479 + <access>Native</access>
  480 + <database>pdgj_wzk_sys</database>
  481 + <port>3306</port>
  482 + <username>root</username>
  483 + <password>Encrypted </password>
  484 + <servername/>
  485 + <data_tablespace/>
  486 + <index_tablespace/>
  487 + <attributes>
  488 + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
406 <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> 489 <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
407 <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> 490 <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
408 <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> 491 <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
@@ -570,7 +653,7 @@ @@ -570,7 +653,7 @@
570 </connection> 653 </connection>
571 <connection> 654 <connection>
572 <name>&#x516c;&#x53f8;ygjw</name> 655 <name>&#x516c;&#x53f8;ygjw</name>
573 - <server>192.168.168.1</server> 656 + <server>192.168.168.178</server>
574 <type>ORACLE</type> 657 <type>ORACLE</type>
575 <access>Native</access> 658 <access>Native</access>
576 <database>orcl</database> 659 <database>orcl</database>
@@ -592,6 +675,126 @@ @@ -592,6 +675,126 @@
592 <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> 675 <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
593 </attributes> 676 </attributes>
594 </connection> 677 </connection>
  678 + <connection>
  679 + <name>&#x516c;&#x53f8;&#x673a;&#x52a1;_pdgj</name>
  680 + <server>192.168.168.178</server>
  681 + <type>ORACLE</type>
  682 + <access>Native</access>
  683 + <database>orcl</database>
  684 + <port>1521</port>
  685 + <username>pdgj</username>
  686 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10ce96a8d0</password>
  687 + <servername/>
  688 + <data_tablespace/>
  689 + <index_tablespace/>
  690 + <attributes>
  691 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  692 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  693 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  694 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  695 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  696 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  697 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  698 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  699 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  700 + </attributes>
  701 + </connection>
  702 + <connection>
  703 + <name>&#x5916;&#x7f51;vpn&#x4e34;&#x6e2f;&#x673a;&#x52a1;oracle</name>
  704 + <server>10.10.150.114</server>
  705 + <type>ORACLE</type>
  706 + <access>Native</access>
  707 + <database>helowin</database>
  708 + <port>1521</port>
  709 + <username>lgjw</username>
  710 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d295a5cd</password>
  711 + <servername/>
  712 + <data_tablespace/>
  713 + <index_tablespace/>
  714 + <attributes>
  715 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  716 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  717 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  718 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  719 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  720 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  721 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  722 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  723 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  724 + </attributes>
  725 + </connection>
  726 + <connection>
  727 + <name>&#x5916;&#x7f51;&#x5357;&#x6c47;&#x673a;&#x52a1;oracle</name>
  728 + <server>58.247.254.118</server>
  729 + <type>ORACLE</type>
  730 + <access>Native</access>
  731 + <database>orcl</database>
  732 + <port>15211</port>
  733 + <username>nhjw</username>
  734 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d09aa5cd</password>
  735 + <servername/>
  736 + <data_tablespace/>
  737 + <index_tablespace/>
  738 + <attributes>
  739 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  740 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  741 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  742 + <attribute><code>PORT_NUMBER</code><attribute>15211</attribute></attribute>
  743 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  744 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  745 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  746 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  747 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  748 + </attributes>
  749 + </connection>
  750 + <connection>
  751 + <name>&#x5916;&#x7f51;&#x6768;&#x9ad8;&#x673a;&#x52a1;oracle</name>
  752 + <server>58.247.254.118</server>
  753 + <type>ORACLE</type>
  754 + <access>Native</access>
  755 + <database>orcl</database>
  756 + <port>15211</port>
  757 + <username>ygjw</username>
  758 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10c795a5cd</password>
  759 + <servername/>
  760 + <data_tablespace/>
  761 + <index_tablespace/>
  762 + <attributes>
  763 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  764 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  765 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  766 + <attribute><code>PORT_NUMBER</code><attribute>15211</attribute></attribute>
  767 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  768 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  769 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  770 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  771 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  772 + </attributes>
  773 + </connection>
  774 + <connection>
  775 + <name>&#x5916;&#x7f51;&#x91d1;&#x9ad8;&#x673a;&#x52a1;oracle</name>
  776 + <server>58.247.254.118</server>
  777 + <type>ORACLE</type>
  778 + <access>Native</access>
  779 + <database>orcl</database>
  780 + <port>15211</port>
  781 + <username>jwgl</username>
  782 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d485a8d6</password>
  783 + <servername/>
  784 + <data_tablespace/>
  785 + <index_tablespace/>
  786 + <attributes>
  787 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  788 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  789 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  790 + <attribute><code>PORT_NUMBER</code><attribute>15211</attribute></attribute>
  791 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  792 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  793 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  794 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  795 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  796 + </attributes>
  797 + </connection>
595 <order> 798 <order>
596 <hop> <from>&#x4eba;&#x5458;&#x4fe1;&#x606f;&#x8868;&#x8f93;&#x5165;</from><to>&#x6dfb;&#x52a0;&#x67e5;&#x8be2;&#x5e38;&#x91cf;</to><enabled>Y</enabled> </hop> 799 <hop> <from>&#x4eba;&#x5458;&#x4fe1;&#x606f;&#x8868;&#x8f93;&#x5165;</from><to>&#x6dfb;&#x52a0;&#x67e5;&#x8be2;&#x5e38;&#x91cf;</to><enabled>Y</enabled> </hop>
597 <hop> <from>&#x5c97;&#x4f4d;&#x6570;&#x636e;&#x67e5;&#x8be2;</from><to>&#x6027;&#x522b;&#x6570;&#x636e;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop> 800 <hop> <from>&#x5c97;&#x4f4d;&#x6570;&#x636e;&#x67e5;&#x8be2;</from><to>&#x6027;&#x522b;&#x6570;&#x636e;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>
src/main/resources/datatools/ktrs/employeesDataInput.ktr renamed to src/main/resources/datatools/ktrs/zh/personnel-basic-data_import.ktr
1 <?xml version="1.0" encoding="UTF-8"?> 1 <?xml version="1.0" encoding="UTF-8"?>
2 <transformation> 2 <transformation>
3 <info> 3 <info>
4 - <name>&#x4eba;&#x5458;&#x4fe1;&#x606f;&#x5bfc;&#x5165;</name> 4 + <name>&#x4eba;&#x5458;&#x4fe1;&#x606f;&#x5bfc;&#x5165;_zh</name>
5 <description>&#x4eba;&#x5458;&#x57fa;&#x7840;&#x4fe1;&#x606f;&#x5bfc;&#x5165;</description> 5 <description>&#x4eba;&#x5458;&#x57fa;&#x7840;&#x4fe1;&#x606f;&#x5bfc;&#x5165;</description>
6 <extended_description>&#x4eba;&#x5458;&#x57fa;&#x7840;&#x4fe1;&#x606f;</extended_description> 6 <extended_description>&#x4eba;&#x5458;&#x57fa;&#x7840;&#x4fe1;&#x606f;</extended_description>
7 <trans_version/> 7 <trans_version/>
@@ -391,6 +391,33 @@ @@ -391,6 +391,33 @@
391 </attributes> 391 </attributes>
392 </connection> 392 </connection>
393 <connection> 393 <connection>
  394 + <name>test_control_local</name>
  395 + <server>localhost</server>
  396 + <type>MYSQL</type>
  397 + <access>Native</access>
  398 + <database>test_control</database>
  399 + <port>3306</port>
  400 + <username>root</username>
  401 + <password>Encrypted </password>
  402 + <servername/>
  403 + <data_tablespace/>
  404 + <index_tablespace/>
  405 + <attributes>
  406 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  407 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  408 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  409 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  410 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  411 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  412 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  413 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  414 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  415 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  416 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  417 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  418 + </attributes>
  419 + </connection>
  420 + <connection>
394 <name>test_control&#xff08;&#x672c;&#x673a;&#xff09;</name> 421 <name>test_control&#xff08;&#x672c;&#x673a;&#xff09;</name>
395 <server>127.0.0.1</server> 422 <server>127.0.0.1</server>
396 <type>MYSQL</type> 423 <type>MYSQL</type>
@@ -403,6 +430,62 @@ @@ -403,6 +430,62 @@
403 <data_tablespace/> 430 <data_tablespace/>
404 <index_tablespace/> 431 <index_tablespace/>
405 <attributes> 432 <attributes>
  433 + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
  434 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  435 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  436 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  437 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  438 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  439 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  440 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  441 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  442 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  443 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  444 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  445 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  446 + </attributes>
  447 + </connection>
  448 + <connection>
  449 + <name>wzk_mysql_jndi</name>
  450 + <server/>
  451 + <type>MYSQL</type>
  452 + <access>JNDI</access>
  453 + <database>wzk_mysql</database>
  454 + <port>1521</port>
  455 + <username/>
  456 + <password>Encrypted </password>
  457 + <servername/>
  458 + <data_tablespace/>
  459 + <index_tablespace/>
  460 + <attributes>
  461 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  462 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  463 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  464 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  465 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  466 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  467 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  468 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  469 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  470 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  471 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  472 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  473 + </attributes>
  474 + </connection>
  475 + <connection>
  476 + <name>wzk&#xff08;&#x672c;&#x673a;&#xff09;</name>
  477 + <server>localhost</server>
  478 + <type>MYSQL</type>
  479 + <access>Native</access>
  480 + <database>pdgj_wzk_sys</database>
  481 + <port>3306</port>
  482 + <username>root</username>
  483 + <password>Encrypted </password>
  484 + <servername/>
  485 + <data_tablespace/>
  486 + <index_tablespace/>
  487 + <attributes>
  488 + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
406 <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> 489 <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
407 <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> 490 <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
408 <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> 491 <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
@@ -570,7 +653,7 @@ @@ -570,7 +653,7 @@
570 </connection> 653 </connection>
571 <connection> 654 <connection>
572 <name>&#x516c;&#x53f8;ygjw</name> 655 <name>&#x516c;&#x53f8;ygjw</name>
573 - <server>192.168.168.1</server> 656 + <server>192.168.168.178</server>
574 <type>ORACLE</type> 657 <type>ORACLE</type>
575 <access>Native</access> 658 <access>Native</access>
576 <database>orcl</database> 659 <database>orcl</database>
@@ -592,6 +675,126 @@ @@ -592,6 +675,126 @@
592 <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> 675 <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
593 </attributes> 676 </attributes>
594 </connection> 677 </connection>
  678 + <connection>
  679 + <name>&#x516c;&#x53f8;&#x673a;&#x52a1;_pdgj</name>
  680 + <server>192.168.168.178</server>
  681 + <type>ORACLE</type>
  682 + <access>Native</access>
  683 + <database>orcl</database>
  684 + <port>1521</port>
  685 + <username>pdgj</username>
  686 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10ce96a8d0</password>
  687 + <servername/>
  688 + <data_tablespace/>
  689 + <index_tablespace/>
  690 + <attributes>
  691 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  692 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  693 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  694 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  695 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  696 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  697 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  698 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  699 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  700 + </attributes>
  701 + </connection>
  702 + <connection>
  703 + <name>&#x5916;&#x7f51;vpn&#x4e34;&#x6e2f;&#x673a;&#x52a1;oracle</name>
  704 + <server>10.10.150.114</server>
  705 + <type>ORACLE</type>
  706 + <access>Native</access>
  707 + <database>helowin</database>
  708 + <port>1521</port>
  709 + <username>lgjw</username>
  710 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d295a5cd</password>
  711 + <servername/>
  712 + <data_tablespace/>
  713 + <index_tablespace/>
  714 + <attributes>
  715 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  716 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  717 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  718 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  719 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  720 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  721 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  722 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  723 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  724 + </attributes>
  725 + </connection>
  726 + <connection>
  727 + <name>&#x5916;&#x7f51;&#x5357;&#x6c47;&#x673a;&#x52a1;oracle</name>
  728 + <server>58.247.254.118</server>
  729 + <type>ORACLE</type>
  730 + <access>Native</access>
  731 + <database>orcl</database>
  732 + <port>15211</port>
  733 + <username>nhjw</username>
  734 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d09aa5cd</password>
  735 + <servername/>
  736 + <data_tablespace/>
  737 + <index_tablespace/>
  738 + <attributes>
  739 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  740 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  741 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  742 + <attribute><code>PORT_NUMBER</code><attribute>15211</attribute></attribute>
  743 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  744 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  745 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  746 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  747 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  748 + </attributes>
  749 + </connection>
  750 + <connection>
  751 + <name>&#x5916;&#x7f51;&#x6768;&#x9ad8;&#x673a;&#x52a1;oracle</name>
  752 + <server>58.247.254.118</server>
  753 + <type>ORACLE</type>
  754 + <access>Native</access>
  755 + <database>orcl</database>
  756 + <port>15211</port>
  757 + <username>ygjw</username>
  758 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10c795a5cd</password>
  759 + <servername/>
  760 + <data_tablespace/>
  761 + <index_tablespace/>
  762 + <attributes>
  763 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  764 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  765 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  766 + <attribute><code>PORT_NUMBER</code><attribute>15211</attribute></attribute>
  767 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  768 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  769 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  770 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  771 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  772 + </attributes>
  773 + </connection>
  774 + <connection>
  775 + <name>&#x5916;&#x7f51;&#x91d1;&#x9ad8;&#x673a;&#x52a1;oracle</name>
  776 + <server>58.247.254.118</server>
  777 + <type>ORACLE</type>
  778 + <access>Native</access>
  779 + <database>orcl</database>
  780 + <port>15211</port>
  781 + <username>jwgl</username>
  782 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d485a8d6</password>
  783 + <servername/>
  784 + <data_tablespace/>
  785 + <index_tablespace/>
  786 + <attributes>
  787 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  788 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  789 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  790 + <attribute><code>PORT_NUMBER</code><attribute>15211</attribute></attribute>
  791 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  792 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  793 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  794 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  795 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  796 + </attributes>
  797 + </connection>
595 <order> 798 <order>
596 <hop> <from>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_personnel</from><to>&#x9519;&#x8bef;&#x8f93;&#x51fa;</to><enabled>Y</enabled> </hop> 799 <hop> <from>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_personnel</from><to>&#x9519;&#x8bef;&#x8f93;&#x51fa;</to><enabled>Y</enabled> </hop>
597 <hop> <from>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</from><to>&#x539f;&#x59cb;&#x7cfb;&#x7edf;&#x5bfc;&#x51fa;&#x7684;Excel&#x8f93;&#x5165;</to><enabled>Y</enabled> </hop> 800 <hop> <from>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</from><to>&#x539f;&#x59cb;&#x7cfb;&#x7edf;&#x5bfc;&#x51fa;&#x7684;Excel&#x8f93;&#x5165;</to><enabled>Y</enabled> </hop>
src/main/resources/message_en_US.properties
@@ -4538,6 +4538,8 @@ carsServiceImpl-line118=duplicate vehicle Code @@ -4538,6 +4538,8 @@ carsServiceImpl-line118=duplicate vehicle Code
4538 carsServiceImpl-line132=duplicate license number 4538 carsServiceImpl-line132=duplicate license number
4539 carsServiceImpl-line147=duplicate terminal number 4539 carsServiceImpl-line147=duplicate terminal number
4540 4540
  4541 +employeeServiceImpl-line54=duplicate employee number
  4542 +
4541 bController-line192=import file not exist 4543 bController-line192=import file not exist
4542 bController-line197=import file successful 4544 bController-line197=import file successful
4543 bController-line217=upload and import file successful 4545 bController-line217=upload and import file successful
src/main/resources/message_zh_CN.properties
@@ -4539,6 +4539,8 @@ carsServiceImpl-line118=车辆编号重复 @@ -4539,6 +4539,8 @@ carsServiceImpl-line118=车辆编号重复
4539 carsServiceImpl-line132=车牌号重复 4539 carsServiceImpl-line132=车牌号重复
4540 carsServiceImpl-line147=设备编号重复 4540 carsServiceImpl-line147=设备编号重复
4541 4541
  4542 +employeeServiceImpl-line54=相同公司工号重复
  4543 +
4542 bController-line192=导入文件不存在! 4544 bController-line192=导入文件不存在!
4543 bController-line197=导入文件成功 4545 bController-line197=导入文件成功
4544 bController-line217=上传&导入文件成功 4546 bController-line217=上传&导入文件成功
src/main/resources/static/pages/scheduleApp/language/en.js
@@ -394,7 +394,8 @@ var ScheduleApp_en_language = { @@ -394,7 +394,8 @@ var ScheduleApp_en_language = {
394 "employeeInfoManage_index_page_line36_txt-2234" : "Personnel information table", 394 "employeeInfoManage_index_page_line36_txt-2234" : "Personnel information table",
395 "employeeInfoManage_index_page_line41_txt-1648" : "Add personnel information", 395 "employeeInfoManage_index_page_line41_txt-1648" : "Add personnel information",
396 "employeeInfoManage_index_page_line47_txt-3339" : "Data tool", 396 "employeeInfoManage_index_page_line47_txt-3339" : "Data tool",
397 - "employeeInfoManage_index_page_line54_txt-4493" : "Export to excel", 397 + "employeeInfoManage_index_page_line54_txt-4449" : "Import from excel",
  398 + "employeeInfoManage_index_page_line60_txt-4493" : "Export to excel",
398 399
399 // 页面:orderOptionOpen.html 400 // 页面:orderOptionOpen.html
400 "employeeInfoManage_orderOptionOpen_page_line5_txt-1682" : "Sort field selection", 401 "employeeInfoManage_orderOptionOpen_page_line5_txt-1682" : "Sort field selection",
@@ -517,6 +518,19 @@ var ScheduleApp_en_language = { @@ -517,6 +518,19 @@ var ScheduleApp_en_language = {
517 "employeeInfoManage_form_page_line174_txt-4173" : "Submit", 518 "employeeInfoManage_form_page_line174_txt-4173" : "Submit",
518 "employeeInfoManage_form_page_line175_txt-3817" : "Cancel", 519 "employeeInfoManage_form_page_line175_txt-3817" : "Cancel",
519 520
  521 + // 页面:dataImport.html
  522 + "employeeInfoManage_dataImport_page_line2_txt-4335" : "Basic information of personnel import from excel",
  523 + "employeeInfoManage_dataImport_page_line7_txt-2684" : "Select file",
  524 + "employeeInfoManage_dataImport_page_line20_txt-3658" : "file name",
  525 + "employeeInfoManage_dataImport_page_line21_txt-4092" : "Size(MB)",
  526 + "employeeInfoManage_dataImport_page_line22_txt-4091" : "progress",
  527 + "employeeInfoManage_dataImport_page_line23_txt-3874" : "Status",
  528 + "employeeInfoManage_dataImport_page_line24_txt-3942" : "Operation",
  529 + "employeeInfoManage_dataImport_page_line53_txt-4154" : "upload",
  530 + "employeeInfoManage_dataImport_page_line57_txt-3817" : "Cancel",
  531 + "employeeInfoManage_dataImport_page_line60_txt-3868" : "Delete",
  532 + "employeeInfoManage_dataImport_page_line71_txt-4015" : "Close",
  533 +
520 // module.js 534 // module.js
521 "employeeInfoManage_module_js_line33_txt-3949" : "Name", 535 "employeeInfoManage_module_js_line33_txt-3949" : "Name",
522 "employeeInfoManage_module_js_line34_txt-3940" : "Worker number", 536 "employeeInfoManage_module_js_line34_txt-3940" : "Worker number",
src/main/resources/static/pages/scheduleApp/language/zh.js
@@ -394,7 +394,8 @@ var ScheduleApp_zh_language = { @@ -394,7 +394,8 @@ var ScheduleApp_zh_language = {
394 "employeeInfoManage_index_page_line36_txt-2234" : "人员信息表", 394 "employeeInfoManage_index_page_line36_txt-2234" : "人员信息表",
395 "employeeInfoManage_index_page_line41_txt-1648" : "添加人员信息", 395 "employeeInfoManage_index_page_line41_txt-1648" : "添加人员信息",
396 "employeeInfoManage_index_page_line47_txt-3339" : "数据工具", 396 "employeeInfoManage_index_page_line47_txt-3339" : "数据工具",
397 - "employeeInfoManage_index_page_line54_txt-4493" : "导出Excel", 397 + "employeeInfoManage_index_page_line54_txt-4449" : "导入Excel",
  398 + "employeeInfoManage_index_page_line60_txt-4493" : "导出Excel",
398 399
399 // 页面:orderOptionOpen.html 400 // 页面:orderOptionOpen.html
400 "employeeInfoManage_orderOptionOpen_page_line5_txt-1682" : "排序字段选择", 401 "employeeInfoManage_orderOptionOpen_page_line5_txt-1682" : "排序字段选择",
@@ -517,6 +518,19 @@ var ScheduleApp_zh_language = { @@ -517,6 +518,19 @@ var ScheduleApp_zh_language = {
517 "employeeInfoManage_form_page_line174_txt-4173" : "提交", 518 "employeeInfoManage_form_page_line174_txt-4173" : "提交",
518 "employeeInfoManage_form_page_line175_txt-3817" : "取消", 519 "employeeInfoManage_form_page_line175_txt-3817" : "取消",
519 520
  521 + // 页面:dataImport.html
  522 + "employeeInfoManage_dataImport_page_line2_txt-4335" : "人员基础信息excel数据导入",
  523 + "employeeInfoManage_dataImport_page_line7_txt-2684" : "选择文件",
  524 + "employeeInfoManage_dataImport_page_line20_txt-3658" : "文件名",
  525 + "employeeInfoManage_dataImport_page_line21_txt-4092" : "大小(M)",
  526 + "employeeInfoManage_dataImport_page_line22_txt-4091" : "进度",
  527 + "employeeInfoManage_dataImport_page_line23_txt-3874" : "状态",
  528 + "employeeInfoManage_dataImport_page_line24_txt-3942" : "操作",
  529 + "employeeInfoManage_dataImport_page_line53_txt-4154" : "上传",
  530 + "employeeInfoManage_dataImport_page_line57_txt-3817" : "取消",
  531 + "employeeInfoManage_dataImport_page_line60_txt-3868" : "删除",
  532 + "employeeInfoManage_dataImport_page_line71_txt-4015" : "关闭",
  533 +
520 // module.js 534 // module.js
521 "employeeInfoManage_module_js_line33_txt-3949" : "姓名", 535 "employeeInfoManage_module_js_line33_txt-3949" : "姓名",
522 "employeeInfoManage_module_js_line34_txt-3940" : "工号", 536 "employeeInfoManage_module_js_line34_txt-3940" : "工号",
src/main/resources/static/pages/scheduleApp/module/basicInfo/employeeInfoManage/dataImport.html
1 <div class="modal-header"> 1 <div class="modal-header">
2 - <h3 class="modal-title">$$$$$${txt-4335}</h3> 2 + <h3 class="modal-title">{{"employeeInfoManage_dataImport_page_line2_txt-4335" | translate}}</h3>
3 </div> 3 </div>
4 <div class="modal-body"> 4 <div class="modal-body">
5 <div class="col-md-6"> 5 <div class="col-md-6">
6 <div class="input-group"> 6 <div class="input-group">
7 - <input type="file" class="form-control" nv-file-select="" uploader="ctrl.uploader"/>  
8 - <span class="input-group-btn"> 7 + <label class="btn btn-info" for="xFile">{{"employeeInfoManage_dataImport_page_line7_txt-2684" | translate}}</label>
  8 + <input id="xFile" type="file" style="position: absolute;clip: rect(0 0 0 0);" class="form-control" nv-file-select="" uploader="ctrl.uploader"/>
9 <button type="button" ng-click="ctrl.clearInputFile()" class="btn btn-default"> 9 <button type="button" ng-click="ctrl.clearInputFile()" class="btn btn-default">
10 <span class="glyphicon glyphicon-trash"></span> 10 <span class="glyphicon glyphicon-trash"></span>
11 </button> 11 </button>
12 - </span>  
13 </div> 12 </div>
14 </div> 13 </div>
15 14
16 <div class="table-scrollable table-scrollable-borderless"> 15 <div class="table-scrollable table-scrollable-borderless">
  16 +
17 <table class="table table-hover table-light"> 17 <table class="table table-hover table-light">
18 <thead> 18 <thead>
19 <tr class="uppercase"> 19 <tr class="uppercase">
20 - <th width="50%">$$$$$${txt-3658}</th>  
21 - <th ng-show="ctrl.uploader.isHTML5">$$$$$${txt-4092}</th>  
22 - <th ng-show="ctrl.uploader.isHTML5">$$$$$${txt-4091}</th>  
23 - <th>$$$$$${txt-3874}</th>  
24 - <th>$$$$$${txt-3942}</th> 20 + <th width="50%">{{"employeeInfoManage_dataImport_page_line20_txt-3658" | translate}}</th>
  21 + <th ng-show="ctrl.uploader.isHTML5">{{"employeeInfoManage_dataImport_page_line21_txt-4092" | translate}}</th>
  22 + <th ng-show="ctrl.uploader.isHTML5">{{"employeeInfoManage_dataImport_page_line22_txt-4091" | translate}}</th>
  23 + <th>{{"employeeInfoManage_dataImport_page_line23_txt-3874" | translate}}</th>
  24 + <th>{{"employeeInfoManage_dataImport_page_line24_txt-3942" | translate}}</th>
25 </tr> 25 </tr>
26 </thead> 26 </thead>
27 <tbody> 27 <tbody>
@@ -50,14 +50,14 @@ @@ -50,14 +50,14 @@
50 <td nowrap> 50 <td nowrap>
51 <button type="button" class="btn btn-success btn-xs" ng-click="item.upload()" 51 <button type="button" class="btn btn-success btn-xs" ng-click="item.upload()"
52 ng-disabled="item.isReady || item.isUploading || item.isSuccess"> 52 ng-disabled="item.isReady || item.isUploading || item.isSuccess">
53 - <span class="glyphicon glyphicon-upload"></span> $$$$$${txt-4154} 53 + <span class="glyphicon glyphicon-upload"></span> {{"employeeInfoManage_dataImport_page_line53_txt-4154" | translate}}
54 </button> 54 </button>
55 <button type="button" class="btn btn-warning btn-xs" ng-click="item.cancel()" 55 <button type="button" class="btn btn-warning btn-xs" ng-click="item.cancel()"
56 ng-disabled="!item.isUploading"> 56 ng-disabled="!item.isUploading">
57 - <span class="glyphicon glyphicon-ban-circle"></span> $$$$$${txt-3817} 57 + <span class="glyphicon glyphicon-ban-circle"></span> {{"employeeInfoManage_dataImport_page_line57_txt-3817" | translate}}
58 </button> 58 </button>
59 <button type="button" class="btn btn-danger btn-xs" ng-click="item.remove()"> 59 <button type="button" class="btn btn-danger btn-xs" ng-click="item.remove()">
60 - <span class="glyphicon glyphicon-trash"></span> $$$$$${txt-3868} 60 + <span class="glyphicon glyphicon-trash"></span> {{"employeeInfoManage_dataImport_page_line60_txt-3868" | translate}}
61 </button> 61 </button>
62 </td> 62 </td>
63 </tr> 63 </tr>
@@ -68,5 +68,5 @@ @@ -68,5 +68,5 @@
68 </div> 68 </div>
69 69
70 <div class="modal-footer"> 70 <div class="modal-footer">
71 - <button class="btn btn-primary" ng-click="ctrl.close()">$$$$$${txt-4015}</button>  
72 -</div>  
73 \ No newline at end of file 71 \ No newline at end of file
  72 + <button class="btn btn-primary" ng-click="ctrl.close()">{{"employeeInfoManage_dataImport_page_line71_txt-4015" | translate}}</button>
  73 +</div>
src/main/resources/static/pages/scheduleApp/module/basicInfo/employeeInfoManage/edit.html
@@ -88,7 +88,7 @@ @@ -88,7 +88,7 @@
88 required placeholder="{{'employeeInfoManage_edit_page_line88_txt-2346' | translate}}" 88 required placeholder="{{'employeeInfoManage_edit_page_line88_txt-2346' | translate}}"
89 remote-Validation 89 remote-Validation
90 remotevtype="ee_gh" 90 remotevtype="ee_gh"
91 - remotevparam="{{ {'id_eq': ctrl.employeeInfoForSave.id, 'companyCode_eq' : ctrl.employeeInfoForSave.companyCode, 'jobCode_eq': ctrl.employeeInfoForSave.jobCode} | json}}"/> 91 + remotevparam="{{ {'id_eq': ctrl.employeeInfoForSave.id, 'companyCode_eq' : ctrl.employeeInfoForSave.companyCode, 'jobCode_eq': ctrl.employeeInfoForSave.jobCodeori} | json}}"/>
92 </div> 92 </div>
93 <!-- 隐藏块,显示验证信息 --> 93 <!-- 隐藏块,显示验证信息 -->
94 <div class="alert alert-danger well-sm" ng-show="myForm.jobCode.$error.required"> 94 <div class="alert alert-danger well-sm" ng-show="myForm.jobCode.$error.required">
src/main/resources/static/pages/scheduleApp/module/basicInfo/employeeInfoManage/form.html
@@ -88,7 +88,7 @@ @@ -88,7 +88,7 @@
88 required placeholder="{{'employeeInfoManage_form_page_line88_txt-2346' | translate}}" 88 required placeholder="{{'employeeInfoManage_form_page_line88_txt-2346' | translate}}"
89 remote-Validation 89 remote-Validation
90 remotevtype="ee_gh" 90 remotevtype="ee_gh"
91 - remotevparam="{{ {'companyCode_eq' : ctrl.employeeInfoForSave.companyCode, 'jobCode_eq': ctrl.employeeInfoForSave.jobCode} | json}}"/> 91 + remotevparam="{{ {'companyCode_eq' : ctrl.employeeInfoForSave.companyCode, 'jobCode_eq': ctrl.employeeInfoForSave.jobCodeori} | json}}"/>
92 </div> 92 </div>
93 <!-- 隐藏块,显示验证信息 --> 93 <!-- 隐藏块,显示验证信息 -->
94 <div class="alert alert-danger well-sm" ng-show="myForm.jobCode.$error.required"> 94 <div class="alert alert-danger well-sm" ng-show="myForm.jobCode.$error.required">
src/main/resources/static/pages/scheduleApp/module/basicInfo/employeeInfoManage/index.html
@@ -49,9 +49,15 @@ @@ -49,9 +49,15 @@
49 </a> 49 </a>
50 <ul class="dropdown-menu pull-right"> 50 <ul class="dropdown-menu pull-right">
51 <li> 51 <li>
  52 + <a href="javascript:" class="tool-action" ng-click="ctrl.importData()">
  53 + <i class="fa fa-file-excel-o"></i>
  54 + {{"employeeInfoManage_index_page_line54_txt-4449" | translate}}
  55 + </a>
  56 + </li>
  57 + <li>
52 <a href="javascript:" class="tool-action" ng-click="ctrl.exportData()"> 58 <a href="javascript:" class="tool-action" ng-click="ctrl.exportData()">
53 <i class="fa fa-file-excel-o"></i> 59 <i class="fa fa-file-excel-o"></i>
54 - {{"employeeInfoManage_index_page_line54_txt-4493" | translate}} 60 + {{"employeeInfoManage_index_page_line60_txt-4493" | translate}}
55 </a> 61 </a>
56 </li> 62 </li>
57 <!--<li class="divider"></li>--> 63 <!--<li class="divider"></li>-->