Commit 74baff22614cc6ecf99b7e284e7bd4faab73a13b

Authored by 徐烜
1 parent 4fcdd22c

1、国际化改造:路牌信息管理后端国际化改造

src/main/java/com/bsth/service/schedule/datatools/GuideboardInfoDataToolsImpl.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 GuideboardInfoDataToolsImpl implements DataToolsService { @@ -35,48 +35,7 @@ public class GuideboardInfoDataToolsImpl 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 GuideboardInfoDataToolsImpl implements DataToolsService { @@ -85,8 +44,17 @@ public class GuideboardInfoDataToolsImpl 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.getGuideboardsDatainputktr()).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.getZhRoadSignDataImport()).toURI());
  52 + } else if ("en".equals(country)) {
  53 + ktrFile = new File(this.getClass().getResource(
  54 + dataToolsProperties.getEnRoadSignDataImport()).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());
@@ -115,12 +83,21 @@ public class GuideboardInfoDataToolsImpl implements DataToolsService { @@ -115,12 +83,21 @@ public class GuideboardInfoDataToolsImpl implements DataToolsService {
115 LOGGER.info("//---------------- 导出路牌信息 start... ----------------//"); 83 LOGGER.info("//---------------- 导出路牌信息 start... ----------------//");
116 // 创建ktr转换所需参数 84 // 创建ktr转换所需参数
117 Map<String, Object> ktrParms = new HashMap<>(); 85 Map<String, Object> ktrParms = new HashMap<>();
118 - File ktrFile = new File(this.getClass().getResource(  
119 - dataToolsProperties.getGuideboardsDataoutputktr()).toURI()); 86 + String country = Locale.getDefault().getLanguage();
  87 + File ktrFile = null;
  88 + if ("zh".equals(country)) {
  89 + ktrFile = new File(this.getClass().getResource(
  90 + dataToolsProperties.getZhRoadSignDataExport()).toURI());
  91 + } else if ("en".equals(country)) {
  92 + ktrFile = new File(this.getClass().getResource(
  93 + dataToolsProperties.getEnRoadSignDataExport()).toURI());
  94 + } else {
  95 + throw new Exception("not found Local[" + country + "] corresponding ktr.");
  96 + }
120 97
121 // 通用参数,转换文件路径,excel输出文件名 98 // 通用参数,转换文件路径,excel输出文件名
122 ktrParms.put("transpath", ktrFile.getAbsolutePath()); 99 ktrParms.put("transpath", ktrFile.getAbsolutePath());
123 - ktrParms.put("filename", "路牌信息_download-"); 100 + ktrParms.put("filename", I18n.getInstance().getMessage("txt-2943") + "_download-");
124 101
125 ktrParms.putAll(params); 102 ktrParms.putAll(params);
126 103
src/main/java/com/bsth/service/schedule/impl/GuideboardInfoServiceImpl.java
@@ -7,6 +7,7 @@ import com.bsth.service.schedule.TTInfoDetailService; @@ -7,6 +7,7 @@ import com.bsth.service.schedule.TTInfoDetailService;
7 import com.bsth.service.schedule.exception.ScheduleException; 7 import com.bsth.service.schedule.exception.ScheduleException;
8 import com.bsth.service.schedule.utils.DataToolsFile; 8 import com.bsth.service.schedule.utils.DataToolsFile;
9 import com.bsth.service.schedule.utils.DataToolsService; 9 import com.bsth.service.schedule.utils.DataToolsService;
  10 +import com.bsth.util.I18n;
10 import org.springframework.beans.factory.annotation.Autowired; 11 import org.springframework.beans.factory.annotation.Autowired;
11 import org.springframework.beans.factory.annotation.Qualifier; 12 import org.springframework.beans.factory.annotation.Qualifier;
12 import org.springframework.dao.DataAccessException; 13 import org.springframework.dao.DataAccessException;
@@ -65,13 +66,13 @@ public class GuideboardInfoServiceImpl extends BServiceImpl&lt;GuideboardInfo, Long @@ -65,13 +66,13 @@ public class GuideboardInfoServiceImpl extends BServiceImpl&lt;GuideboardInfo, Long
65 } 66 }
66 67
67 if (guideboardInfo.getXl() == null || guideboardInfo.getXl().getId() == null) { 68 if (guideboardInfo.getXl() == null || guideboardInfo.getXl().getId() == null) {
68 - throw new ScheduleException("线路未选择"); 69 + throw new ScheduleException(I18n.getInstance().getMessage("guideboardInfoServiceImpl-line69"));
69 } else { 70 } else {
70 param.put("isCancel_eq", false); // 作废的也算入判定区 71 param.put("isCancel_eq", false); // 作废的也算入判定区
71 param.put("xl.id_eq", guideboardInfo.getXl().getId()); 72 param.put("xl.id_eq", guideboardInfo.getXl().getId());
72 param.put("lpNo_eq", guideboardInfo.getLpNo()); 73 param.put("lpNo_eq", guideboardInfo.getLpNo());
73 if (!CollectionUtils.isEmpty(list(param))) { 74 if (!CollectionUtils.isEmpty(list(param))) {
74 - throw new ScheduleException("路牌编号重复"); 75 + throw new ScheduleException(I18n.getInstance().getMessage("guideboardInfoServiceImpl-line75"));
75 } 76 }
76 } 77 }
77 } 78 }
@@ -85,13 +86,13 @@ public class GuideboardInfoServiceImpl extends BServiceImpl&lt;GuideboardInfo, Long @@ -85,13 +86,13 @@ public class GuideboardInfoServiceImpl extends BServiceImpl&lt;GuideboardInfo, Long
85 } 86 }
86 87
87 if (guideboardInfo.getXl() == null || guideboardInfo.getXl().getId() == null) { 88 if (guideboardInfo.getXl() == null || guideboardInfo.getXl().getId() == null) {
88 - throw new ScheduleException("线路未选择"); 89 + throw new ScheduleException(I18n.getInstance().getMessage("guideboardInfoServiceImpl-line89"));
89 } else { 90 } else {
90 param.put("isCancel_eq", false); // 作废的也算入判定区 91 param.put("isCancel_eq", false); // 作废的也算入判定区
91 param.put("xl.id_eq", guideboardInfo.getXl().getId()); 92 param.put("xl.id_eq", guideboardInfo.getXl().getId());
92 param.put("lpName_eq", guideboardInfo.getLpName()); 93 param.put("lpName_eq", guideboardInfo.getLpName());
93 if (!CollectionUtils.isEmpty(list(param))) { 94 if (!CollectionUtils.isEmpty(list(param))) {
94 - throw new ScheduleException("路牌名字重复"); 95 + throw new ScheduleException(I18n.getInstance().getMessage("guideboardInfoServiceImpl-line95"));
95 } 96 }
96 } 97 }
97 } 98 }
@@ -121,9 +122,8 @@ public class GuideboardInfoServiceImpl extends BServiceImpl&lt;GuideboardInfo, Long @@ -121,9 +122,8 @@ public class GuideboardInfoServiceImpl extends BServiceImpl&lt;GuideboardInfo, Long
121 if (CollectionUtils.isEmpty(ttInfoDetailList)) { 122 if (CollectionUtils.isEmpty(ttInfoDetailList)) {
122 guideboardInfo.setIsCancel(true); 123 guideboardInfo.setIsCancel(true);
123 } else { 124 } else {
124 - throw new ScheduleException("在时刻表" +  
125 - ttInfoDetailList.get(0).getTtinfo().getName() +  
126 - "已使用,无法作废!"); 125 + throw new ScheduleException(I18n.getInstance().getMessage("guideboardInfoServiceImpl-line125",
  126 + ttInfoDetailList.get(0).getTtinfo().getName()));
127 } 127 }
128 } 128 }
129 } 129 }
src/main/java/com/bsth/service/schedule/utils/DataToolsProperties.java
@@ -11,7 +11,8 @@ import javax.validation.constraints.NotNull; @@ -11,7 +11,8 @@ import javax.validation.constraints.NotNull;
11 */ 11 */
12 @Component 12 @Component
13 @ConfigurationProperties( 13 @ConfigurationProperties(
14 - ignoreInvalidFields = true, 14 + ignoreInvalidFields = false,
  15 + ignoreUnknownFields = false,
15 prefix = "datatools" 16 prefix = "datatools"
16 ) 17 )
17 @PropertySource("classpath:datatools/config-${spring.profiles.active}.properties") 18 @PropertySource("classpath:datatools/config-${spring.profiles.active}.properties")
@@ -38,17 +39,54 @@ public class DataToolsProperties { @@ -38,17 +39,54 @@ public class DataToolsProperties {
38 @NotNull 39 @NotNull
39 private String kettleProperties; 40 private String kettleProperties;
40 41
41 - /** ktr通用变量-数据库ip地址 */ 42 + //---------------------------- 路牌信息相关ktr(以下)----------------------------//
  43 + /** 路牌信息导入(英文) */
42 @NotNull 44 @NotNull
43 - private String kvarsDbip;  
44 - /** ktr通用变量-数据库用户名 */ 45 + private String enRoadSignDataImport;
  46 + /** 路牌信息导出(英文) */
45 @NotNull 47 @NotNull
46 - private String kvarsDbuname;  
47 - /** ktr通用变量-数据库密码 */ 48 + private String enRoadSignDataExport;
  49 + /** 路牌信息导入(中文) */
48 @NotNull 50 @NotNull
49 - private String kvarsDbpwd;  
50 - /** ktr通用变量-数据库库名 */  
51 - private String kvarsDbdname; 51 + private String zhRoadSignDataImport;
  52 + /** 路牌信息导出(中文) */
  53 + @NotNull
  54 + private String zhRoadSignDataExport;
  55 +
  56 + public String getEnRoadSignDataImport() {
  57 + return enRoadSignDataImport;
  58 + }
  59 +
  60 + public void setEnRoadSignDataImport(String enRoadSignDataImport) {
  61 + this.enRoadSignDataImport = enRoadSignDataImport;
  62 + }
  63 +
  64 + public String getEnRoadSignDataExport() {
  65 + return enRoadSignDataExport;
  66 + }
  67 +
  68 + public void setEnRoadSignDataExport(String enRoadSignDataExport) {
  69 + this.enRoadSignDataExport = enRoadSignDataExport;
  70 + }
  71 +
  72 + public String getZhRoadSignDataImport() {
  73 + return zhRoadSignDataImport;
  74 + }
  75 +
  76 + public void setZhRoadSignDataImport(String zhRoadSignDataImport) {
  77 + this.zhRoadSignDataImport = zhRoadSignDataImport;
  78 + }
  79 +
  80 + public String getZhRoadSignDataExport() {
  81 + return zhRoadSignDataExport;
  82 + }
  83 +
  84 + public void setZhRoadSignDataExport(String zhRoadSignDataExport) {
  85 + this.zhRoadSignDataExport = zhRoadSignDataExport;
  86 + }
  87 +
  88 + //---------------------------- 路牌信息相关ktr(以上)----------------------------//
  89 +
52 90
53 //---------------------------- 车辆基础数据相关ktr(以下)----------------------------// 91 //---------------------------- 车辆基础数据相关ktr(以下)----------------------------//
54 /** 车辆基础信息导入(英文) */ 92 /** 车辆基础信息导入(英文) */
@@ -154,9 +192,6 @@ public class DataToolsProperties { @@ -154,9 +192,6 @@ public class DataToolsProperties {
154 /** 人员配置信息导入 */ 192 /** 人员配置信息导入 */
155 @NotNull 193 @NotNull
156 private String employeesconfigDatainputktr; 194 private String employeesconfigDatainputktr;
157 - /** 路牌信息导入 */  
158 - @NotNull  
159 - private String guideboardsDatainputktr;  
160 /** 时刻表基础信息导入 */ 195 /** 时刻表基础信息导入 */
161 @NotNull 196 @NotNull
162 private String ttinfoDatainputktr; 197 private String ttinfoDatainputktr;
@@ -202,9 +237,6 @@ public class DataToolsProperties { @@ -202,9 +237,6 @@ public class DataToolsProperties {
202 @NotNull 237 @NotNull
203 /** 人员配置信息导出ktr转换 */ 238 /** 人员配置信息导出ktr转换 */
204 private String employeesconfigDataoutputktr; 239 private String employeesconfigDataoutputktr;
205 - @NotNull  
206 - /** 路牌信息导出 */  
207 - private String guideboardsDataoutputktr;  
208 240
209 //------------------------ 数据同步ktr -----------------------// 241 //------------------------ 数据同步ktr -----------------------//
210 @NotNull 242 @NotNull
@@ -256,42 +288,6 @@ public class DataToolsProperties { @@ -256,42 +288,6 @@ public class DataToolsProperties {
256 this.employeesconfigDatainputktr = employeesconfigDatainputktr; 288 this.employeesconfigDatainputktr = employeesconfigDatainputktr;
257 } 289 }
258 290
259 - public String getGuideboardsDatainputktr() {  
260 - return guideboardsDatainputktr;  
261 - }  
262 -  
263 - public void setGuideboardsDatainputktr(String guideboardsDatainputktr) {  
264 - this.guideboardsDatainputktr = guideboardsDatainputktr;  
265 - }  
266 -  
267 - public String getTtinfoDatainputktr() {  
268 - return ttinfoDatainputktr;  
269 - }  
270 -  
271 - public String getKvarsDbip() {  
272 - return kvarsDbip;  
273 - }  
274 -  
275 - public void setKvarsDbip(String kvarsDbip) {  
276 - this.kvarsDbip = kvarsDbip;  
277 - }  
278 -  
279 - public String getKvarsDbuname() {  
280 - return kvarsDbuname;  
281 - }  
282 -  
283 - public void setKvarsDbuname(String kvarsDbuname) {  
284 - this.kvarsDbuname = kvarsDbuname;  
285 - }  
286 -  
287 - public String getKvarsDbpwd() {  
288 - return kvarsDbpwd;  
289 - }  
290 -  
291 - public void setKvarsDbpwd(String kvarsDbpwd) {  
292 - this.kvarsDbpwd = kvarsDbpwd;  
293 - }  
294 -  
295 public void setTtinfoDatainputktr(String ttinfoDatainputktr) { 291 public void setTtinfoDatainputktr(String ttinfoDatainputktr) {
296 this.ttinfoDatainputktr = ttinfoDatainputktr; 292 this.ttinfoDatainputktr = ttinfoDatainputktr;
297 } 293 }
@@ -344,14 +340,6 @@ public class DataToolsProperties { @@ -344,14 +340,6 @@ public class DataToolsProperties {
344 this.fileoutputDir = fileoutputDir; 340 this.fileoutputDir = fileoutputDir;
345 } 341 }
346 342
347 - public String getKvarsDbdname() {  
348 - return kvarsDbdname;  
349 - }  
350 -  
351 - public void setKvarsDbdname(String kvarsDbdname) {  
352 - this.kvarsDbdname = kvarsDbdname;  
353 - }  
354 -  
355 public String getTtinfodetailMetaoutput() { 343 public String getTtinfodetailMetaoutput() {
356 return ttinfodetailMetaoutput; 344 return ttinfodetailMetaoutput;
357 } 345 }
@@ -400,14 +388,6 @@ public class DataToolsProperties { @@ -400,14 +388,6 @@ public class DataToolsProperties {
400 this.employeesconfigDataoutputktr = employeesconfigDataoutputktr; 388 this.employeesconfigDataoutputktr = employeesconfigDataoutputktr;
401 } 389 }
402 390
403 - public String getGuideboardsDataoutputktr() {  
404 - return guideboardsDataoutputktr;  
405 - }  
406 -  
407 - public void setGuideboardsDataoutputktr(String guideboardsDataoutputktr) {  
408 - this.guideboardsDataoutputktr = guideboardsDataoutputktr;  
409 - }  
410 -  
411 public String getTtinfodetailDatainputktr2() { 391 public String getTtinfodetailDatainputktr2() {
412 return ttinfodetailDatainputktr2; 392 return ttinfodetailDatainputktr2;
413 } 393 }
src/main/resources/datatools/config-cloud.properties
@@ -32,10 +32,15 @@ datatools.zh_personnel_basic_data_import=/datatools/ktrs/zh/personnel-basic-data @@ -32,10 +32,15 @@ datatools.zh_personnel_basic_data_import=/datatools/ktrs/zh/personnel-basic-data
32 datatools.zh_personnel_basic_data_export=/datatools/ktrs/zh/personnel-basic-data_export.ktr 32 datatools.zh_personnel_basic_data_export=/datatools/ktrs/zh/personnel-basic-data_export.ktr
33 ##---------------------------- 人员基础数据相关ktr(以上)----------------------------## 33 ##---------------------------- 人员基础数据相关ktr(以上)----------------------------##
34 34
  35 +##---------------------------- 路牌信息相关ktr(以下)----------------------------##
  36 +datatools.en_road_sign_data_import=/datatools/ktrs/en/road-sign-data_import.ktr
  37 +datatools.en_road_sign_data_export=/datatools/ktrs/en/road-sign-data_export.ktr
  38 +datatools.zh_road_sign_data_import=/datatools/ktrs/zh/road-sign-data_import.ktr
  39 +datatools.zh_road_sign_data_export=/datatools/ktrs/zh/road-sign-data_export.ktr
  40 +##---------------------------- 路牌信息相关ktr(以上)----------------------------##
  41 +
35 42
36 ##---------------------------- 导入数据ktr ----------------------------## 43 ##---------------------------- 导入数据ktr ----------------------------##
37 -# 路牌信息导入  
38 -datatools.guideboards_datainputktr=/datatools/ktrs/guideboardDataInput.ktr  
39 # 时刻表基础信息导入 44 # 时刻表基础信息导入
40 datatools.ttinfo_datainputktr=/datatools/ktrs/ttinfoDataInput.ktr 45 datatools.ttinfo_datainputktr=/datatools/ktrs/ttinfoDataInput.ktr
41 # 时刻表明细信息导入(元数据) 46 # 时刻表明细信息导入(元数据)
@@ -75,9 +80,6 @@ datatools.carsconfig_dataoutputktr=/datatools/ktrs/carsConfigDataOutput.ktr @@ -75,9 +80,6 @@ datatools.carsconfig_dataoutputktr=/datatools/ktrs/carsConfigDataOutput.ktr
75 # 人员配置信息导出ktr转换 80 # 人员配置信息导出ktr转换
76 datatools.employeesconfig_dataoutputktr=/datatools/ktrs/employeesConfigDataOutput.ktr 81 datatools.employeesconfig_dataoutputktr=/datatools/ktrs/employeesConfigDataOutput.ktr
77 82
78 -# 路牌信息导出  
79 -datatools.guideboards_dataoutputktr=/datatools/ktrs/guideboardDataOutput.ktr  
80 -  
81 ##--------------------------- 数据同步ktr ------------------------## 83 ##--------------------------- 数据同步ktr ------------------------##
82 datatools.vehicle_datasyncktr=/datatools/ktrs/vehicleDataSync.ktr 84 datatools.vehicle_datasyncktr=/datatools/ktrs/vehicleDataSync.ktr
83 85
src/main/resources/datatools/config-dev.properties
@@ -31,12 +31,15 @@ datatools.zh_personnel_basic_data_import=/datatools/ktrs/zh/personnel-basic-data @@ -31,12 +31,15 @@ datatools.zh_personnel_basic_data_import=/datatools/ktrs/zh/personnel-basic-data
31 datatools.zh_personnel_basic_data_export=/datatools/ktrs/zh/personnel-basic-data_export.ktr 31 datatools.zh_personnel_basic_data_export=/datatools/ktrs/zh/personnel-basic-data_export.ktr
32 ##---------------------------- 人员基础数据相关ktr(以上)----------------------------## 32 ##---------------------------- 人员基础数据相关ktr(以上)----------------------------##
33 33
34 - 34 +##---------------------------- 路牌信息相关ktr(以下)----------------------------##
  35 +datatools.en_road_sign_data_import=/datatools/ktrs/en/road-sign-data_import.ktr
  36 +datatools.en_road_sign_data_export=/datatools/ktrs/en/road-sign-data_export.ktr
  37 +datatools.zh_road_sign_data_import=/datatools/ktrs/zh/road-sign-data_import.ktr
  38 +datatools.zh_road_sign_data_export=/datatools/ktrs/zh/road-sign-data_export.ktr
  39 +##---------------------------- 路牌信息相关ktr(以上)----------------------------##
35 40
36 41
37 ##---------------------------- 导入数据ktr ----------------------------## 42 ##---------------------------- 导入数据ktr ----------------------------##
38 -# 路牌信息导入  
39 -datatools.guideboards_datainputktr=/datatools/ktrs/guideboardDataInput.ktr  
40 # 时刻表基础信息导入 43 # 时刻表基础信息导入
41 datatools.ttinfo_datainputktr=/datatools/ktrs/ttinfoDataInput.ktr 44 datatools.ttinfo_datainputktr=/datatools/ktrs/ttinfoDataInput.ktr
42 # 时刻表明细信息导入(元数据) 45 # 时刻表明细信息导入(元数据)
@@ -75,9 +78,6 @@ datatools.carsconfig_dataoutputktr=/datatools/ktrs/carsConfigDataOutput.ktr @@ -75,9 +78,6 @@ datatools.carsconfig_dataoutputktr=/datatools/ktrs/carsConfigDataOutput.ktr
75 # 人员配置信息导出ktr转换 78 # 人员配置信息导出ktr转换
76 datatools.employeesconfig_dataoutputktr=/datatools/ktrs/employeesConfigDataOutput.ktr 79 datatools.employeesconfig_dataoutputktr=/datatools/ktrs/employeesConfigDataOutput.ktr
77 80
78 -# 路牌信息导出  
79 -datatools.guideboards_dataoutputktr=/datatools/ktrs/guideboardDataOutput.ktr  
80 -  
81 81
82 ##--------------------------- 数据同步ktr ------------------------## 82 ##--------------------------- 数据同步ktr ------------------------##
83 datatools.vehicle_datasyncktr=/datatools/ktrs/vehicleDataSync.ktr 83 datatools.vehicle_datasyncktr=/datatools/ktrs/vehicleDataSync.ktr
src/main/resources/datatools/config-prod.properties
@@ -32,11 +32,15 @@ datatools.zh_personnel_basic_data_import=/datatools/ktrs/zh/personnel-basic-data @@ -32,11 +32,15 @@ datatools.zh_personnel_basic_data_import=/datatools/ktrs/zh/personnel-basic-data
32 datatools.zh_personnel_basic_data_export=/datatools/ktrs/zh/personnel-basic-data_export.ktr 32 datatools.zh_personnel_basic_data_export=/datatools/ktrs/zh/personnel-basic-data_export.ktr
33 ##---------------------------- 人员基础数据相关ktr(以上)----------------------------## 33 ##---------------------------- 人员基础数据相关ktr(以上)----------------------------##
34 34
  35 +##---------------------------- 路牌信息相关ktr(以下)----------------------------##
  36 +datatools.en_road_sign_data_import=/datatools/ktrs/en/road-sign-data_import.ktr
  37 +datatools.en_road_sign_data_export=/datatools/ktrs/en/road-sign-data_export.ktr
  38 +datatools.zh_road_sign_data_import=/datatools/ktrs/zh/road-sign-data_import.ktr
  39 +datatools.zh_road_sign_data_export=/datatools/ktrs/zh/road-sign-data_export.ktr
  40 +##---------------------------- 路牌信息相关ktr(以上)----------------------------##
35 41
36 42
37 ##---------------------------- 导入数据ktr ----------------------------## 43 ##---------------------------- 导入数据ktr ----------------------------##
38 -# 路牌信息导入  
39 -datatools.guideboards_datainputktr=/datatools/ktrs/guideboardDataInput.ktr  
40 # 时刻表基础信息导入 44 # 时刻表基础信息导入
41 datatools.ttinfo_datainputktr=/datatools/ktrs/ttinfoDataInput.ktr 45 datatools.ttinfo_datainputktr=/datatools/ktrs/ttinfoDataInput.ktr
42 # 时刻表明细信息导入(元数据) 46 # 时刻表明细信息导入(元数据)
@@ -76,9 +80,6 @@ datatools.carsconfig_dataoutputktr=/datatools/ktrs/carsConfigDataOutput.ktr @@ -76,9 +80,6 @@ datatools.carsconfig_dataoutputktr=/datatools/ktrs/carsConfigDataOutput.ktr
76 # 人员配置信息导出ktr转换 80 # 人员配置信息导出ktr转换
77 datatools.employeesconfig_dataoutputktr=/datatools/ktrs/employeesConfigDataOutput.ktr 81 datatools.employeesconfig_dataoutputktr=/datatools/ktrs/employeesConfigDataOutput.ktr
78 82
79 -# 路牌信息导出  
80 -datatools.guideboards_dataoutputktr=/datatools/ktrs/guideboardDataOutput.ktr  
81 -  
82 ##--------------------------- 数据同步ktr ------------------------## 83 ##--------------------------- 数据同步ktr ------------------------##
83 datatools.vehicle_datasyncktr=/datatools/ktrs/vehicleDataSync.ktr 84 datatools.vehicle_datasyncktr=/datatools/ktrs/vehicleDataSync.ktr
84 85
src/main/resources/datatools/config-test.properties
@@ -33,10 +33,15 @@ datatools.zh_personnel_basic_data_import=/datatools/ktrs/zh/personnel-basic-data @@ -33,10 +33,15 @@ datatools.zh_personnel_basic_data_import=/datatools/ktrs/zh/personnel-basic-data
33 datatools.zh_personnel_basic_data_export=/datatools/ktrs/zh/personnel-basic-data_export.ktr 33 datatools.zh_personnel_basic_data_export=/datatools/ktrs/zh/personnel-basic-data_export.ktr
34 ##---------------------------- 人员基础数据相关ktr(以上)----------------------------## 34 ##---------------------------- 人员基础数据相关ktr(以上)----------------------------##
35 35
  36 +##---------------------------- 路牌信息相关ktr(以下)----------------------------##
  37 +datatools.en_road_sign_data_import=/datatools/ktrs/en/road-sign-data_import.ktr
  38 +datatools.en_road_sign_data_export=/datatools/ktrs/en/road-sign-data_export.ktr
  39 +datatools.zh_road_sign_data_import=/datatools/ktrs/zh/road-sign-data_import.ktr
  40 +datatools.zh_road_sign_data_export=/datatools/ktrs/zh/road-sign-data_export.ktr
  41 +##---------------------------- 路牌信息相关ktr(以上)----------------------------##
  42 +
36 43
37 ##---------------------------- 导入数据ktr ----------------------------## 44 ##---------------------------- 导入数据ktr ----------------------------##
38 -# 路牌信息导入  
39 -datatools.guideboards_datainputktr=/datatools/ktrs/guideboardDataInput.ktr  
40 # 时刻表基础信息导入 45 # 时刻表基础信息导入
41 datatools.ttinfo_datainputktr=/datatools/ktrs/ttinfoDataInput.ktr 46 datatools.ttinfo_datainputktr=/datatools/ktrs/ttinfoDataInput.ktr
42 # 时刻表明细信息导入(元数据) 47 # 时刻表明细信息导入(元数据)
@@ -75,9 +80,6 @@ datatools.carsconfig_dataoutputktr=/datatools/ktrs/carsConfigDataOutput.ktr @@ -75,9 +80,6 @@ datatools.carsconfig_dataoutputktr=/datatools/ktrs/carsConfigDataOutput.ktr
75 # 人员配置信息导出ktr转换 80 # 人员配置信息导出ktr转换
76 datatools.employeesconfig_dataoutputktr=/datatools/ktrs/employeesConfigDataOutput.ktr 81 datatools.employeesconfig_dataoutputktr=/datatools/ktrs/employeesConfigDataOutput.ktr
77 82
78 -# 路牌信息导出  
79 -datatools.guideboards_dataoutputktr=/datatools/ktrs/guideboardDataOutput.ktr  
80 -  
81 ##--------------------------- 数据同步ktr ------------------------## 83 ##--------------------------- 数据同步ktr ------------------------##
82 datatools.vehicle_datasyncktr=/datatools/ktrs/vehicleDataSync.ktr 84 datatools.vehicle_datasyncktr=/datatools/ktrs/vehicleDataSync.ktr
83 85
src/main/resources/datatools/ktrs/en/road-sign-data_export.ktr 0 → 100644
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<transformation>
  3 + <info>
  4 + <name>&#x8def;&#x724c;&#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>filepath</name>
  14 + <default_value/>
  15 + <description>excel&#x6587;&#x4ef6;&#x8def;&#x5f84;</description>
  16 + </parameter>
  17 + <parameter>
  18 + <name>xlid</name>
  19 + <default_value/>
  20 + <description>&#x7ebf;&#x8def;id</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>2017&#x2f;02&#x2f;06 11&#x3a;05&#x3a;17.781</created_date>
  81 + <modified_user>-</modified_user>
  82 + <modified_date>2017&#x2f;02&#x2f;06 11&#x3a;05&#x3a;17.781</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;&#x7ebf;&#x8def; route name&#xa;&#x8def;&#x724c;&#x7f16;&#x53f7; road sign number&#xa;&#x8def;&#x724c;&#x540d;&#x79f0; road sign name&#xa;&#x8def;&#x724c;&#x7c7b;&#x578b; road sign type</note>
  89 + <xloc>244</xloc>
  90 + <yloc>192</yloc>
  91 + <width>247</width>
  92 + <heigth>106</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>&#x8def;&#x724c;&#x6570;&#x636e;&#xff08;&#x6ca1;&#x6709;&#x4f5c;&#x5e9f;&#xff09;</from><to>&#x7ebf;&#x8def;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>
  821 + <hop> <from>&#x7ebf;&#x8def;&#x67e5;&#x8be2;</from><to>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</to><enabled>Y</enabled> </hop>
  822 + <hop> <from>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</from><to>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</to><enabled>Y</enabled> </hop>
  823 + <hop> <from>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</from><to>Excel&#x8f93;&#x51fa;</to><enabled>Y</enabled> </hop>
  824 + </order>
  825 + <step>
  826 + <name>Excel&#x8f93;&#x51fa;</name>
  827 + <type>ExcelOutput</type>
  828 + <description/>
  829 + <distribute>Y</distribute>
  830 + <custom_distribution/>
  831 + <copies>1</copies>
  832 + <partitioning>
  833 + <method>none</method>
  834 + <schema_name/>
  835 + </partitioning>
  836 + <header>Y</header>
  837 + <footer>N</footer>
  838 + <encoding/>
  839 + <append>N</append>
  840 + <add_to_result_filenames>Y</add_to_result_filenames>
  841 + <file>
  842 + <name>&#x24;&#x7b;filepath&#x7d;</name>
  843 + <extention>xls</extention>
  844 + <do_not_open_newfile_init>N</do_not_open_newfile_init>
  845 + <create_parent_folder>N</create_parent_folder>
  846 + <split>N</split>
  847 + <add_date>N</add_date>
  848 + <add_time>N</add_time>
  849 + <SpecifyFormat>N</SpecifyFormat>
  850 + <date_time_format>yyyyMMddHHmmss</date_time_format>
  851 + <sheetname>sheet1</sheetname>
  852 + <autosizecolums>N</autosizecolums>
  853 + <nullisblank>N</nullisblank>
  854 + <protect_sheet>N</protect_sheet>
  855 + <password>Encrypted </password>
  856 + <splitevery>0</splitevery>
  857 + <usetempfiles>N</usetempfiles>
  858 + <tempdirectory/>
  859 + </file>
  860 + <template>
  861 + <enabled>N</enabled>
  862 + <append>N</append>
  863 + <filename>template.xls</filename>
  864 + </template>
  865 + <fields>
  866 + <field>
  867 + <name>route name</name>
  868 + <type>String</type>
  869 + <format/>
  870 + </field>
  871 + <field>
  872 + <name>road sign number</name>
  873 + <type>String</type>
  874 + <format/>
  875 + </field>
  876 + <field>
  877 + <name>road sign name</name>
  878 + <type>String</type>
  879 + <format/>
  880 + </field>
  881 + <field>
  882 + <name>road sign type</name>
  883 + <type>String</type>
  884 + <format/>
  885 + </field>
  886 + </fields>
  887 + <custom>
  888 + <header_font_name>arial</header_font_name>
  889 + <header_font_size>10</header_font_size>
  890 + <header_font_bold>N</header_font_bold>
  891 + <header_font_italic>N</header_font_italic>
  892 + <header_font_underline>no</header_font_underline>
  893 + <header_font_orientation>horizontal</header_font_orientation>
  894 + <header_font_color>black</header_font_color>
  895 + <header_background_color>none</header_background_color>
  896 + <header_row_height>255</header_row_height>
  897 + <header_alignment>left</header_alignment>
  898 + <header_image/>
  899 + <row_font_name>arial</row_font_name>
  900 + <row_font_size>10</row_font_size>
  901 + <row_font_color>black</row_font_color>
  902 + <row_background_color>none</row_background_color>
  903 + </custom>
  904 + <cluster_schema/>
  905 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  906 + <xloc>644</xloc>
  907 + <yloc>92</yloc>
  908 + <draw>Y</draw>
  909 + </GUI>
  910 + </step>
  911 +
  912 + <step>
  913 + <name>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</name>
  914 + <type>SelectValues</type>
  915 + <description/>
  916 + <distribute>Y</distribute>
  917 + <custom_distribution/>
  918 + <copies>1</copies>
  919 + <partitioning>
  920 + <method>none</method>
  921 + <schema_name/>
  922 + </partitioning>
  923 + <fields> <select_unspecified>N</select_unspecified>
  924 + <meta> <name>xlmc</name>
  925 + <rename>route name</rename>
  926 + <type>None</type>
  927 + <length>-2</length>
  928 + <precision>-2</precision>
  929 + <conversion_mask/>
  930 + <date_format_lenient>false</date_format_lenient>
  931 + <date_format_locale/>
  932 + <date_format_timezone/>
  933 + <lenient_string_to_number>false</lenient_string_to_number>
  934 + <encoding/>
  935 + <decimal_symbol/>
  936 + <grouping_symbol/>
  937 + <currency_symbol/>
  938 + <storage_type/>
  939 + </meta> <meta> <name>lp_no</name>
  940 + <rename>road sign number</rename>
  941 + <type>String</type>
  942 + <length>-2</length>
  943 + <precision>-2</precision>
  944 + <conversion_mask>&#x23;</conversion_mask>
  945 + <date_format_lenient>false</date_format_lenient>
  946 + <date_format_locale/>
  947 + <date_format_timezone/>
  948 + <lenient_string_to_number>false</lenient_string_to_number>
  949 + <encoding/>
  950 + <decimal_symbol/>
  951 + <grouping_symbol/>
  952 + <currency_symbol/>
  953 + <storage_type/>
  954 + </meta> <meta> <name>lp_name</name>
  955 + <rename>road sign name</rename>
  956 + <type>None</type>
  957 + <length>-2</length>
  958 + <precision>-2</precision>
  959 + <conversion_mask/>
  960 + <date_format_lenient>false</date_format_lenient>
  961 + <date_format_locale/>
  962 + <date_format_timezone/>
  963 + <lenient_string_to_number>false</lenient_string_to_number>
  964 + <encoding/>
  965 + <decimal_symbol/>
  966 + <grouping_symbol/>
  967 + <currency_symbol/>
  968 + <storage_type/>
  969 + </meta> <meta> <name>lp_type</name>
  970 + <rename>road sign type</rename>
  971 + <type>None</type>
  972 + <length>-2</length>
  973 + <precision>-2</precision>
  974 + <conversion_mask/>
  975 + <date_format_lenient>false</date_format_lenient>
  976 + <date_format_locale/>
  977 + <date_format_timezone/>
  978 + <lenient_string_to_number>false</lenient_string_to_number>
  979 + <encoding/>
  980 + <decimal_symbol/>
  981 + <grouping_symbol/>
  982 + <currency_symbol/>
  983 + <storage_type/>
  984 + </meta> </fields> <cluster_schema/>
  985 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  986 + <xloc>507</xloc>
  987 + <yloc>91</yloc>
  988 + <draw>Y</draw>
  989 + </GUI>
  990 + </step>
  991 +
  992 + <step>
  993 + <name>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</name>
  994 + <type>SortRows</type>
  995 + <description/>
  996 + <distribute>Y</distribute>
  997 + <custom_distribution/>
  998 + <copies>1</copies>
  999 + <partitioning>
  1000 + <method>none</method>
  1001 + <schema_name/>
  1002 + </partitioning>
  1003 + <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
  1004 + <prefix>out</prefix>
  1005 + <sort_size>1000000</sort_size>
  1006 + <free_memory/>
  1007 + <compress>N</compress>
  1008 + <compress_variable/>
  1009 + <unique_rows>N</unique_rows>
  1010 + <fields>
  1011 + <field>
  1012 + <name>xl</name>
  1013 + <ascending>Y</ascending>
  1014 + <case_sensitive>N</case_sensitive>
  1015 + <presorted>N</presorted>
  1016 + </field>
  1017 + <field>
  1018 + <name>lp_no</name>
  1019 + <ascending>Y</ascending>
  1020 + <case_sensitive>N</case_sensitive>
  1021 + <presorted>N</presorted>
  1022 + </field>
  1023 + <field>
  1024 + <name>is_cancel</name>
  1025 + <ascending>N</ascending>
  1026 + <case_sensitive>N</case_sensitive>
  1027 + <presorted>N</presorted>
  1028 + </field>
  1029 + </fields>
  1030 + <cluster_schema/>
  1031 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1032 + <xloc>384</xloc>
  1033 + <yloc>91</yloc>
  1034 + <draw>Y</draw>
  1035 + </GUI>
  1036 + </step>
  1037 +
  1038 + <step>
  1039 + <name>&#x7ebf;&#x8def;&#x67e5;&#x8be2;</name>
  1040 + <type>DBLookup</type>
  1041 + <description/>
  1042 + <distribute>Y</distribute>
  1043 + <custom_distribution/>
  1044 + <copies>1</copies>
  1045 + <partitioning>
  1046 + <method>none</method>
  1047 + <schema_name/>
  1048 + </partitioning>
  1049 + <connection>control_jndi</connection>
  1050 + <cache>Y</cache>
  1051 + <cache_load_all>Y</cache_load_all>
  1052 + <cache_size>0</cache_size>
  1053 + <lookup>
  1054 + <schema/>
  1055 + <table>bsth_c_line</table>
  1056 + <orderby/>
  1057 + <fail_on_multiple>N</fail_on_multiple>
  1058 + <eat_row_on_failure>N</eat_row_on_failure>
  1059 + <key>
  1060 + <name>xl</name>
  1061 + <field>id</field>
  1062 + <condition>&#x3d;</condition>
  1063 + <name2/>
  1064 + </key>
  1065 + <value>
  1066 + <name>name</name>
  1067 + <rename>xlmc</rename>
  1068 + <default/>
  1069 + <type>String</type>
  1070 + </value>
  1071 + </lookup>
  1072 + <cluster_schema/>
  1073 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1074 + <xloc>262</xloc>
  1075 + <yloc>92</yloc>
  1076 + <draw>Y</draw>
  1077 + </GUI>
  1078 + </step>
  1079 +
  1080 + <step>
  1081 + <name>&#x8def;&#x724c;&#x6570;&#x636e;&#xff08;&#x6ca1;&#x6709;&#x4f5c;&#x5e9f;&#xff09;</name>
  1082 + <type>TableInput</type>
  1083 + <description/>
  1084 + <distribute>Y</distribute>
  1085 + <custom_distribution/>
  1086 + <copies>1</copies>
  1087 + <partitioning>
  1088 + <method>none</method>
  1089 + <schema_name/>
  1090 + </partitioning>
  1091 + <connection>control_jndi</connection>
  1092 + <sql>select &#x2a; from bsth_c_s_gbi&#xa;where is_cancel &#x3d; 0 and xl &#x3d; &#x24;&#x7b;xlid&#x7d;</sql>
  1093 + <limit>0</limit>
  1094 + <lookup/>
  1095 + <execute_each_row>N</execute_each_row>
  1096 + <variables_active>Y</variables_active>
  1097 + <lazy_conversion_active>N</lazy_conversion_active>
  1098 + <cluster_schema/>
  1099 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1100 + <xloc>134</xloc>
  1101 + <yloc>92</yloc>
  1102 + <draw>Y</draw>
  1103 + </GUI>
  1104 + </step>
  1105 +
  1106 + <step_error_handling>
  1107 + </step_error_handling>
  1108 + <slave-step-copy-partition-distribution>
  1109 +</slave-step-copy-partition-distribution>
  1110 + <slave_transformation>N</slave_transformation>
  1111 +
  1112 +</transformation>
src/main/resources/datatools/ktrs/en/road-sign-data_import.ktr 0 → 100644
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<transformation>
  3 + <info>
  4 + <name>&#x8def;&#x724c;&#x4fe1;&#x606f;&#x5bfc;&#x5165;_en</name>
  5 + <description>&#x8def;&#x724c;&#x4fe1;&#x606f;&#x5bfc;&#x5165;</description>
  6 + <extended_description>&#x7ebf;&#x8def;&#x8fd0;&#x8425;&#x7684;&#x8def;&#x724c;&#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 17&#x3a;00&#x3a;01.094</created_date>
  81 + <modified_user>-</modified_user>
  82 + <modified_date>2016&#x2f;06&#x2f;29 17&#x3a;00&#x3a;01.094</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>&#x8def;&#x724c;&#x4fe1;&#x606f;&#x8f93;&#x5165;&#xff0c;&#x8def;&#x724c;&#x540d;&#x5b57;&#x662f;&#x4e0d;&#x80fd;&#x91cd;&#x590d;&#x7684;&#xa;&#x4e00;&#x822c;&#x6765;&#x8bf4;&#xff0c;&#x5e94;&#x8be5;&#x662f;&#x5bfc;&#x5165;&#x65f6;&#x523b;&#x6570;&#x636e;&#x81ea;&#x52a8;&#x751f;&#x6210;&#x7684;&#xff0c;&#x8fd9;&#x4e2a;&#x518d;&#x8bae;&#xa;&#xa;</note>
  89 + <xloc>57</xloc>
  90 + <yloc>291</yloc>
  91 + <width>298</width>
  92 + <heigth>74</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 + <notepad>
  109 + <note>&#x82f1;&#x6587;&#x6a21;&#x7248;&#x5bfc;&#x5165;&#xa;excel&#x4e2d;&#x6587;&#x5b57;&#x6bb5;&#x540d; excel&#x82f1;&#x6587;&#x5b57;&#x6bb5;&#x540d; &#xa;&#x7ebf;&#x8def; route name&#xa;&#x8def;&#x724c;&#x7f16;&#x53f7; road sign number&#xa;&#x8def;&#x724c;&#x540d;&#x79f0; road sign name&#xa;&#x8def;&#x724c;&#x7c7b;&#x578b; road sign type</note>
  110 + <xloc>57</xloc>
  111 + <yloc>394</yloc>
  112 + <width>247</width>
  113 + <heigth>106</heigth>
  114 + <fontname>YaHei Consolas Hybrid</fontname>
  115 + <fontsize>12</fontsize>
  116 + <fontbold>N</fontbold>
  117 + <fontitalic>N</fontitalic>
  118 + <fontcolorred>0</fontcolorred>
  119 + <fontcolorgreen>0</fontcolorgreen>
  120 + <fontcolorblue>0</fontcolorblue>
  121 + <backgroundcolorred>255</backgroundcolorred>
  122 + <backgroundcolorgreen>205</backgroundcolorgreen>
  123 + <backgroundcolorblue>112</backgroundcolorblue>
  124 + <bordercolorred>100</bordercolorred>
  125 + <bordercolorgreen>100</bordercolorgreen>
  126 + <bordercolorblue>100</bordercolorblue>
  127 + <drawshadow>Y</drawshadow>
  128 + </notepad>
  129 + </notepads>
  130 + <connection>
  131 + <name>192.168.168.1_jwgl_dw</name>
  132 + <server>192.168.168.1</server>
  133 + <type>ORACLE</type>
  134 + <access>Native</access>
  135 + <database>orcl</database>
  136 + <port>1521</port>
  137 + <username>jwgl_dw</username>
  138 + <password>Encrypted 2be98afc86aa7f2e4cb13b977d2adabcd</password>
  139 + <servername/>
  140 + <data_tablespace/>
  141 + <index_tablespace/>
  142 + <attributes>
  143 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  144 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  145 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  146 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  147 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  148 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  149 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  150 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  151 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  152 + </attributes>
  153 + </connection>
  154 + <connection>
  155 + <name>bus_control_variable</name>
  156 + <server>&#x24;&#x7b;v_db_ip&#x7d;</server>
  157 + <type>MYSQL</type>
  158 + <access>Native</access>
  159 + <database>&#x24;&#x7b;v_db_dname&#x7d;</database>
  160 + <port>3306</port>
  161 + <username>&#x24;&#x7b;v_db_uname&#x7d;</username>
  162 + <password>&#x24;&#x7b;v_db_pwd&#x7d;</password>
  163 + <servername/>
  164 + <data_tablespace/>
  165 + <index_tablespace/>
  166 + <attributes>
  167 + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
  168 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  169 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  170 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  171 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  172 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  173 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  174 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  175 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  176 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  177 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  178 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  179 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  180 + </attributes>
  181 + </connection>
  182 + <connection>
  183 + <name>bus_control_&#x516c;&#x53f8;_201</name>
  184 + <server>localhost</server>
  185 + <type>MYSQL</type>
  186 + <access>Native</access>
  187 + <database>control</database>
  188 + <port>3306</port>
  189 + <username>root</username>
  190 + <password>Encrypted </password>
  191 + <servername/>
  192 + <data_tablespace/>
  193 + <index_tablespace/>
  194 + <attributes>
  195 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  196 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  197 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  198 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  199 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  200 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  201 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  202 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  203 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  204 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  205 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  206 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  207 + </attributes>
  208 + </connection>
  209 + <connection>
  210 + <name>bus_control_&#x672c;&#x673a;</name>
  211 + <server>localhost</server>
  212 + <type>MYSQL</type>
  213 + <access>Native</access>
  214 + <database>control</database>
  215 + <port>3306</port>
  216 + <username>root</username>
  217 + <password>Encrypted </password>
  218 + <servername/>
  219 + <data_tablespace/>
  220 + <index_tablespace/>
  221 + <attributes>
  222 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  223 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  224 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  225 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  226 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  227 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  228 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  229 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  230 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  231 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  232 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  233 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  234 + </attributes>
  235 + </connection>
  236 + <connection>
  237 + <name>control_jndi</name>
  238 + <server/>
  239 + <type>MYSQL</type>
  240 + <access>JNDI</access>
  241 + <database>control_jndi</database>
  242 + <port>1521</port>
  243 + <username/>
  244 + <password>Encrypted </password>
  245 + <servername/>
  246 + <data_tablespace/>
  247 + <index_tablespace/>
  248 + <attributes>
  249 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  250 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  251 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  252 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  253 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  254 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  255 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  256 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  257 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  258 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  259 + </attributes>
  260 + </connection>
  261 + <connection>
  262 + <name>JGJW_VM</name>
  263 + <server>192.168.198.240</server>
  264 + <type>ORACLE</type>
  265 + <access>Native</access>
  266 + <database>orcl</database>
  267 + <port>1521</port>
  268 + <username>jwgl</username>
  269 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d485a8d6</password>
  270 + <servername/>
  271 + <data_tablespace/>
  272 + <index_tablespace/>
  273 + <attributes>
  274 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  275 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  276 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  277 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  278 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  279 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  280 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  281 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  282 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  283 + </attributes>
  284 + </connection>
  285 + <connection>
  286 + <name>NHJW_VM</name>
  287 + <server>192.168.198.240</server>
  288 + <type>ORACLE</type>
  289 + <access>Native</access>
  290 + <database>orcl</database>
  291 + <port>1521</port>
  292 + <username>nhjw</username>
  293 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d09aa5cd</password>
  294 + <servername/>
  295 + <data_tablespace/>
  296 + <index_tablespace/>
  297 + <attributes>
  298 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  299 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  300 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  301 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  302 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  303 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  304 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  305 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  306 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  307 + </attributes>
  308 + </connection>
  309 + <connection>
  310 + <name>PDGJ_VM</name>
  311 + <server>192.168.198.240</server>
  312 + <type>ORACLE</type>
  313 + <access>Native</access>
  314 + <database>orcl</database>
  315 + <port>1521</port>
  316 + <username>pdgj</username>
  317 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10ce96a8d0</password>
  318 + <servername/>
  319 + <data_tablespace/>
  320 + <index_tablespace/>
  321 + <attributes>
  322 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  323 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  324 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  325 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  326 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  327 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  328 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  329 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  330 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  331 + </attributes>
  332 + </connection>
  333 + <connection>
  334 + <name>repair_dw_mysql_jndi</name>
  335 + <server/>
  336 + <type>MYSQL</type>
  337 + <access>JNDI</access>
  338 + <database>repair_dw_mysql</database>
  339 + <port>1521</port>
  340 + <username/>
  341 + <password>Encrypted </password>
  342 + <servername/>
  343 + <data_tablespace/>
  344 + <index_tablespace/>
  345 + <attributes>
  346 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  347 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  348 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  349 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  350 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  351 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  352 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  353 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  354 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  355 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  356 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  357 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  358 + </attributes>
  359 + </connection>
  360 + <connection>
  361 + <name>repair_dw&#xff08;&#x672c;&#x673a;&#xff09;</name>
  362 + <server>localhost</server>
  363 + <type>MYSQL</type>
  364 + <access>Native</access>
  365 + <database>ruoyi-vue-3.5</database>
  366 + <port>3306</port>
  367 + <username>root</username>
  368 + <password>Encrypted </password>
  369 + <servername/>
  370 + <data_tablespace/>
  371 + <index_tablespace/>
  372 + <attributes>
  373 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  374 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  375 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  376 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  377 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  378 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  379 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  380 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  381 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  382 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  383 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  384 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  385 + </attributes>
  386 + </connection>
  387 + <connection>
  388 + <name>repair_real_h2</name>
  389 + <server/>
  390 + <type>H2</type>
  391 + <access>JNDI</access>
  392 + <database>repair_real_h2</database>
  393 + <port>1521</port>
  394 + <username/>
  395 + <password>Encrypted </password>
  396 + <servername/>
  397 + <data_tablespace/>
  398 + <index_tablespace/>
  399 + <attributes>
  400 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  401 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  402 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  403 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  404 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  405 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  406 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  407 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  408 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  409 + </attributes>
  410 + </connection>
  411 + <connection>
  412 + <name>SNJW_VM</name>
  413 + <server>192.168.198.240</server>
  414 + <type>ORACLE</type>
  415 + <access>Native</access>
  416 + <database>orcl</database>
  417 + <port>1521</port>
  418 + <username>snjw</username>
  419 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10cd9ca5cd</password>
  420 + <servername/>
  421 + <data_tablespace/>
  422 + <index_tablespace/>
  423 + <attributes>
  424 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  425 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  426 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  427 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  428 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  429 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  430 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  431 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  432 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  433 + </attributes>
  434 + </connection>
  435 + <connection>
  436 + <name>test_control_local</name>
  437 + <server>localhost</server>
  438 + <type>MYSQL</type>
  439 + <access>Native</access>
  440 + <database>test_control</database>
  441 + <port>3306</port>
  442 + <username>root</username>
  443 + <password>Encrypted </password>
  444 + <servername/>
  445 + <data_tablespace/>
  446 + <index_tablespace/>
  447 + <attributes>
  448 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  449 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  450 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  451 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  452 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  453 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  454 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  455 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  456 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  457 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  458 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  459 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  460 + </attributes>
  461 + </connection>
  462 + <connection>
  463 + <name>test_control&#xff08;&#x672c;&#x673a;&#xff09;</name>
  464 + <server>127.0.0.1</server>
  465 + <type>MYSQL</type>
  466 + <access>Native</access>
  467 + <database>test_control</database>
  468 + <port>3306</port>
  469 + <username>root</username>
  470 + <password>Encrypted </password>
  471 + <servername/>
  472 + <data_tablespace/>
  473 + <index_tablespace/>
  474 + <attributes>
  475 + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
  476 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  477 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  478 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  479 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  480 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  481 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  482 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  483 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  484 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  485 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  486 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  487 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  488 + </attributes>
  489 + </connection>
  490 + <connection>
  491 + <name>wzk_mysql_jndi</name>
  492 + <server/>
  493 + <type>MYSQL</type>
  494 + <access>JNDI</access>
  495 + <database>wzk_mysql</database>
  496 + <port>1521</port>
  497 + <username/>
  498 + <password>Encrypted </password>
  499 + <servername/>
  500 + <data_tablespace/>
  501 + <index_tablespace/>
  502 + <attributes>
  503 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  504 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  505 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  506 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  507 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  508 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  509 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  510 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  511 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  512 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  513 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  514 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  515 + </attributes>
  516 + </connection>
  517 + <connection>
  518 + <name>wzk&#xff08;&#x672c;&#x673a;&#xff09;</name>
  519 + <server>localhost</server>
  520 + <type>MYSQL</type>
  521 + <access>Native</access>
  522 + <database>pdgj_wzk_sys</database>
  523 + <port>3306</port>
  524 + <username>root</username>
  525 + <password>Encrypted </password>
  526 + <servername/>
  527 + <data_tablespace/>
  528 + <index_tablespace/>
  529 + <attributes>
  530 + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
  531 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  532 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  533 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  534 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  535 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  536 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  537 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  538 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  539 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  540 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  541 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  542 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  543 + </attributes>
  544 + </connection>
  545 + <connection>
  546 + <name>xlab_mysql_youle</name>
  547 + <server>101.231.124.8</server>
  548 + <type>MYSQL</type>
  549 + <access>Native</access>
  550 + <database>xlab_youle</database>
  551 + <port>45687</port>
  552 + <username>xlab-youle</username>
  553 + <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password>
  554 + <servername/>
  555 + <data_tablespace/>
  556 + <index_tablespace/>
  557 + <attributes>
  558 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  559 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  560 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  561 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  562 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  563 + <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute>
  564 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  565 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  566 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  567 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  568 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  569 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  570 + </attributes>
  571 + </connection>
  572 + <connection>
  573 + <name>xlab_mysql_youle&#xff08;&#x672c;&#x673a;&#xff09;</name>
  574 + <server>localhost</server>
  575 + <type>MYSQL</type>
  576 + <access>Native</access>
  577 + <database>xlab_youle</database>
  578 + <port>3306</port>
  579 + <username>root</username>
  580 + <password>Encrypted </password>
  581 + <servername/>
  582 + <data_tablespace/>
  583 + <index_tablespace/>
  584 + <attributes>
  585 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  586 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  587 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  588 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  589 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  590 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  591 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  592 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  593 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  594 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  595 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  596 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  597 + </attributes>
  598 + </connection>
  599 + <connection>
  600 + <name>xlab_youle</name>
  601 + <server/>
  602 + <type>MYSQL</type>
  603 + <access>JNDI</access>
  604 + <database>xlab_youle</database>
  605 + <port>1521</port>
  606 + <username/>
  607 + <password>Encrypted </password>
  608 + <servername/>
  609 + <data_tablespace/>
  610 + <index_tablespace/>
  611 + <attributes>
  612 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  613 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  614 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  615 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  616 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  617 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  618 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  619 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  620 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  621 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  622 + </attributes>
  623 + </connection>
  624 + <connection>
  625 + <name>YGJW_VM</name>
  626 + <server>192.168.198.240</server>
  627 + <type>ORACLE</type>
  628 + <access>Native</access>
  629 + <database>orcl</database>
  630 + <port>1521</port>
  631 + <username>ygjw</username>
  632 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10c795a5cd</password>
  633 + <servername/>
  634 + <data_tablespace/>
  635 + <index_tablespace/>
  636 + <attributes>
  637 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  638 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  639 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  640 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  641 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  642 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  643 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  644 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  645 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  646 + </attributes>
  647 + </connection>
  648 + <connection>
  649 + <name>&#x516c;&#x53f8;jgjw</name>
  650 + <server>192.168.168.1</server>
  651 + <type>ORACLE</type>
  652 + <access>Native</access>
  653 + <database>orcl</database>
  654 + <port>1521</port>
  655 + <username>jwgl</username>
  656 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d485a8d6</password>
  657 + <servername/>
  658 + <data_tablespace/>
  659 + <index_tablespace/>
  660 + <attributes>
  661 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  662 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  663 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  664 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  665 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  666 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  667 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  668 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  669 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  670 + </attributes>
  671 + </connection>
  672 + <connection>
  673 + <name>&#x516c;&#x53f8;snjw</name>
  674 + <server>192.168.168.1</server>
  675 + <type>ORACLE</type>
  676 + <access>Native</access>
  677 + <database>orcl</database>
  678 + <port>1521</port>
  679 + <username>snjw</username>
  680 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10cd9ca5cd</password>
  681 + <servername/>
  682 + <data_tablespace/>
  683 + <index_tablespace/>
  684 + <attributes>
  685 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  686 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  687 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  688 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  689 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  690 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  691 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  692 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  693 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  694 + </attributes>
  695 + </connection>
  696 + <connection>
  697 + <name>&#x516c;&#x53f8;ygjw</name>
  698 + <server>192.168.168.178</server>
  699 + <type>ORACLE</type>
  700 + <access>Native</access>
  701 + <database>orcl</database>
  702 + <port>1521</port>
  703 + <username>ygjw</username>
  704 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10c795a5cd</password>
  705 + <servername/>
  706 + <data_tablespace/>
  707 + <index_tablespace/>
  708 + <attributes>
  709 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  710 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  711 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  712 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  713 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  714 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  715 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  716 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  717 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  718 + </attributes>
  719 + </connection>
  720 + <connection>
  721 + <name>&#x516c;&#x53f8;&#x673a;&#x52a1;_pdgj</name>
  722 + <server>192.168.168.178</server>
  723 + <type>ORACLE</type>
  724 + <access>Native</access>
  725 + <database>orcl</database>
  726 + <port>1521</port>
  727 + <username>pdgj</username>
  728 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10ce96a8d0</password>
  729 + <servername/>
  730 + <data_tablespace/>
  731 + <index_tablespace/>
  732 + <attributes>
  733 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  734 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  735 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  736 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  737 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  738 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  739 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  740 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  741 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  742 + </attributes>
  743 + </connection>
  744 + <connection>
  745 + <name>&#x5916;&#x7f51;vpn&#x4e34;&#x6e2f;&#x673a;&#x52a1;oracle</name>
  746 + <server>10.10.150.114</server>
  747 + <type>ORACLE</type>
  748 + <access>Native</access>
  749 + <database>helowin</database>
  750 + <port>1521</port>
  751 + <username>lgjw</username>
  752 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d295a5cd</password>
  753 + <servername/>
  754 + <data_tablespace/>
  755 + <index_tablespace/>
  756 + <attributes>
  757 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  758 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  759 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  760 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  761 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  762 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  763 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  764 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  765 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  766 + </attributes>
  767 + </connection>
  768 + <connection>
  769 + <name>&#x5916;&#x7f51;&#x5357;&#x6c47;&#x673a;&#x52a1;oracle</name>
  770 + <server>58.247.254.118</server>
  771 + <type>ORACLE</type>
  772 + <access>Native</access>
  773 + <database>orcl</database>
  774 + <port>15211</port>
  775 + <username>nhjw</username>
  776 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d09aa5cd</password>
  777 + <servername/>
  778 + <data_tablespace/>
  779 + <index_tablespace/>
  780 + <attributes>
  781 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  782 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  783 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  784 + <attribute><code>PORT_NUMBER</code><attribute>15211</attribute></attribute>
  785 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  786 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  787 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  788 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  789 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  790 + </attributes>
  791 + </connection>
  792 + <connection>
  793 + <name>&#x5916;&#x7f51;&#x6768;&#x9ad8;&#x673a;&#x52a1;oracle</name>
  794 + <server>58.247.254.118</server>
  795 + <type>ORACLE</type>
  796 + <access>Native</access>
  797 + <database>orcl</database>
  798 + <port>15211</port>
  799 + <username>ygjw</username>
  800 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10c795a5cd</password>
  801 + <servername/>
  802 + <data_tablespace/>
  803 + <index_tablespace/>
  804 + <attributes>
  805 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  806 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  807 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  808 + <attribute><code>PORT_NUMBER</code><attribute>15211</attribute></attribute>
  809 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  810 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  811 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  812 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  813 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  814 + </attributes>
  815 + </connection>
  816 + <connection>
  817 + <name>&#x5916;&#x7f51;&#x91d1;&#x9ad8;&#x673a;&#x52a1;oracle</name>
  818 + <server>58.247.254.118</server>
  819 + <type>ORACLE</type>
  820 + <access>Native</access>
  821 + <database>orcl</database>
  822 + <port>15211</port>
  823 + <username>jwgl</username>
  824 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d485a8d6</password>
  825 + <servername/>
  826 + <data_tablespace/>
  827 + <index_tablespace/>
  828 + <attributes>
  829 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  830 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  831 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  832 + <attribute><code>PORT_NUMBER</code><attribute>15211</attribute></attribute>
  833 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  834 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  835 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  836 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  837 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  838 + </attributes>
  839 + </connection>
  840 + <order>
  841 + <hop> <from>&#x5b57;&#x6bb5;&#x6539;&#x540d;</from><to>&#x67e5;&#x8be2;&#x7ebf;&#x8def;&#x5173;&#x8054;</to><enabled>Y</enabled> </hop>
  842 + <hop> <from>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_gbi</from><to>&#x9519;&#x8bef;&#x8f93;&#x51fa;</to><enabled>Y</enabled> </hop>
  843 + <hop> <from>&#x539f;&#x59cb;&#x7cfb;&#x7edf;&#x5bfc;&#x51fa;&#x7684;Excel&#x8f93;&#x5165;</from><to>&#x5b57;&#x6bb5;&#x6539;&#x540d;</to><enabled>Y</enabled> </hop>
  844 + <hop> <from>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</from><to>&#x539f;&#x59cb;&#x7cfb;&#x7edf;&#x5bfc;&#x51fa;&#x7684;Excel&#x8f93;&#x5165;</to><enabled>Y</enabled> </hop>
  845 + <hop> <from>&#x67e5;&#x8be2;&#x7ebf;&#x8def;&#x5173;&#x8054;</from><to>&#x542f;&#x7528;&#x88ab;&#x6570;&#x636e;flag</to><enabled>Y</enabled> </hop>
  846 + <hop> <from>&#x542f;&#x7528;&#x88ab;&#x6570;&#x636e;flag</from><to>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_gbi</to><enabled>Y</enabled> </hop>
  847 + </order>
  848 + <step>
  849 + <name>&#x539f;&#x59cb;&#x7cfb;&#x7edf;&#x5bfc;&#x51fa;&#x7684;Excel&#x8f93;&#x5165;</name>
  850 + <type>ExcelInput</type>
  851 + <description/>
  852 + <distribute>Y</distribute>
  853 + <custom_distribution/>
  854 + <copies>1</copies>
  855 + <partitioning>
  856 + <method>none</method>
  857 + <schema_name/>
  858 + </partitioning>
  859 + <header>Y</header>
  860 + <noempty>Y</noempty>
  861 + <stoponempty>N</stoponempty>
  862 + <filefield/>
  863 + <sheetfield/>
  864 + <sheetrownumfield/>
  865 + <rownumfield/>
  866 + <sheetfield/>
  867 + <filefield/>
  868 + <limit>0</limit>
  869 + <encoding/>
  870 + <add_to_result_filenames>Y</add_to_result_filenames>
  871 + <accept_filenames>Y</accept_filenames>
  872 + <accept_field>filepath_</accept_field>
  873 + <accept_stepname>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</accept_stepname>
  874 + <file>
  875 + <name/>
  876 + <filemask/>
  877 + <exclude_filemask/>
  878 + <file_required>N</file_required>
  879 + <include_subfolders>N</include_subfolders>
  880 + </file>
  881 + <fields>
  882 + <field>
  883 + <name>route name</name>
  884 + <type>String</type>
  885 + <length>-1</length>
  886 + <precision>-1</precision>
  887 + <trim_type>none</trim_type>
  888 + <repeat>N</repeat>
  889 + <format/>
  890 + <currency/>
  891 + <decimal/>
  892 + <group/>
  893 + </field>
  894 + <field>
  895 + <name>road sign number</name>
  896 + <type>String</type>
  897 + <length>-1</length>
  898 + <precision>-1</precision>
  899 + <trim_type>none</trim_type>
  900 + <repeat>N</repeat>
  901 + <format>&#x23;</format>
  902 + <currency/>
  903 + <decimal/>
  904 + <group/>
  905 + </field>
  906 + <field>
  907 + <name>road sign name</name>
  908 + <type>String</type>
  909 + <length>-1</length>
  910 + <precision>-1</precision>
  911 + <trim_type>none</trim_type>
  912 + <repeat>N</repeat>
  913 + <format>&#x23;</format>
  914 + <currency/>
  915 + <decimal/>
  916 + <group/>
  917 + </field>
  918 + <field>
  919 + <name>road sign type</name>
  920 + <type>String</type>
  921 + <length>-1</length>
  922 + <precision>-1</precision>
  923 + <trim_type>none</trim_type>
  924 + <repeat>N</repeat>
  925 + <format/>
  926 + <currency/>
  927 + <decimal/>
  928 + <group/>
  929 + </field>
  930 + </fields>
  931 + <sheets>
  932 + <sheet>
  933 + <name>sheet1</name>
  934 + <startrow>0</startrow>
  935 + <startcol>0</startcol>
  936 + </sheet>
  937 + </sheets>
  938 + <strict_types>N</strict_types>
  939 + <error_ignored>N</error_ignored>
  940 + <error_line_skipped>N</error_line_skipped>
  941 + <bad_line_files_destination_directory/>
  942 + <bad_line_files_extension>warning</bad_line_files_extension>
  943 + <error_line_files_destination_directory/>
  944 + <error_line_files_extension>error</error_line_files_extension>
  945 + <line_number_files_destination_directory/>
  946 + <line_number_files_extension>line</line_number_files_extension>
  947 + <shortFileFieldName/>
  948 + <pathFieldName/>
  949 + <hiddenFieldName/>
  950 + <lastModificationTimeFieldName/>
  951 + <uriNameFieldName/>
  952 + <rootUriNameFieldName/>
  953 + <extensionFieldName/>
  954 + <sizeFieldName/>
  955 + <spreadsheet_type>JXL</spreadsheet_type>
  956 + <cluster_schema/>
  957 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  958 + <xloc>150</xloc>
  959 + <yloc>68</yloc>
  960 + <draw>Y</draw>
  961 + </GUI>
  962 + </step>
  963 +
  964 + <step>
  965 + <name>&#x542f;&#x7528;&#x88ab;&#x6570;&#x636e;flag</name>
  966 + <type>Constant</type>
  967 + <description/>
  968 + <distribute>Y</distribute>
  969 + <custom_distribution/>
  970 + <copies>1</copies>
  971 + <partitioning>
  972 + <method>none</method>
  973 + <schema_name/>
  974 + </partitioning>
  975 + <fields>
  976 + <field>
  977 + <name>isCancel</name>
  978 + <type>Integer</type>
  979 + <format/>
  980 + <currency/>
  981 + <decimal/>
  982 + <group/>
  983 + <nullif>0</nullif>
  984 + <length>-1</length>
  985 + <precision>-1</precision>
  986 + <set_empty_string>N</set_empty_string>
  987 + </field>
  988 + </fields>
  989 + <cluster_schema/>
  990 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  991 + <xloc>544</xloc>
  992 + <yloc>70</yloc>
  993 + <draw>Y</draw>
  994 + </GUI>
  995 + </step>
  996 +
  997 + <step>
  998 + <name>&#x5b57;&#x6bb5;&#x6539;&#x540d;</name>
  999 + <type>SelectValues</type>
  1000 + <description/>
  1001 + <distribute>Y</distribute>
  1002 + <custom_distribution/>
  1003 + <copies>1</copies>
  1004 + <partitioning>
  1005 + <method>none</method>
  1006 + <schema_name/>
  1007 + </partitioning>
  1008 + <fields> <select_unspecified>N</select_unspecified>
  1009 + <meta> <name>route name</name>
  1010 + <rename>xl</rename>
  1011 + <type>String</type>
  1012 + <length>-2</length>
  1013 + <precision>-2</precision>
  1014 + <conversion_mask/>
  1015 + <date_format_lenient>false</date_format_lenient>
  1016 + <date_format_locale/>
  1017 + <date_format_timezone/>
  1018 + <lenient_string_to_number>false</lenient_string_to_number>
  1019 + <encoding/>
  1020 + <decimal_symbol/>
  1021 + <grouping_symbol/>
  1022 + <currency_symbol/>
  1023 + <storage_type/>
  1024 + </meta> <meta> <name>road sign number</name>
  1025 + <rename>lpno</rename>
  1026 + <type>Integer</type>
  1027 + <length>-2</length>
  1028 + <precision>-2</precision>
  1029 + <conversion_mask/>
  1030 + <date_format_lenient>false</date_format_lenient>
  1031 + <date_format_locale/>
  1032 + <date_format_timezone/>
  1033 + <lenient_string_to_number>false</lenient_string_to_number>
  1034 + <encoding/>
  1035 + <decimal_symbol/>
  1036 + <grouping_symbol/>
  1037 + <currency_symbol/>
  1038 + <storage_type/>
  1039 + </meta> <meta> <name>road sign name</name>
  1040 + <rename>lpname</rename>
  1041 + <type>String</type>
  1042 + <length>-2</length>
  1043 + <precision>-2</precision>
  1044 + <conversion_mask/>
  1045 + <date_format_lenient>false</date_format_lenient>
  1046 + <date_format_locale/>
  1047 + <date_format_timezone/>
  1048 + <lenient_string_to_number>false</lenient_string_to_number>
  1049 + <encoding/>
  1050 + <decimal_symbol/>
  1051 + <grouping_symbol/>
  1052 + <currency_symbol/>
  1053 + <storage_type/>
  1054 + </meta> <meta> <name>road sign type</name>
  1055 + <rename>lptype</rename>
  1056 + <type>String</type>
  1057 + <length>-2</length>
  1058 + <precision>-2</precision>
  1059 + <conversion_mask/>
  1060 + <date_format_lenient>false</date_format_lenient>
  1061 + <date_format_locale/>
  1062 + <date_format_timezone/>
  1063 + <lenient_string_to_number>false</lenient_string_to_number>
  1064 + <encoding/>
  1065 + <decimal_symbol/>
  1066 + <grouping_symbol/>
  1067 + <currency_symbol/>
  1068 + <storage_type/>
  1069 + </meta> </fields> <cluster_schema/>
  1070 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1071 + <xloc>295</xloc>
  1072 + <yloc>68</yloc>
  1073 + <draw>Y</draw>
  1074 + </GUI>
  1075 + </step>
  1076 +
  1077 + <step>
  1078 + <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_gbi</name>
  1079 + <type>InsertUpdate</type>
  1080 + <description/>
  1081 + <distribute>Y</distribute>
  1082 + <custom_distribution/>
  1083 + <copies>1</copies>
  1084 + <partitioning>
  1085 + <method>none</method>
  1086 + <schema_name/>
  1087 + </partitioning>
  1088 + <connection>control_jndi</connection>
  1089 + <commit>100</commit>
  1090 + <update_bypassed>N</update_bypassed>
  1091 + <lookup>
  1092 + <schema/>
  1093 + <table>bsth_c_s_gbi</table>
  1094 + <key>
  1095 + <name>xlid</name>
  1096 + <field>xl</field>
  1097 + <condition>&#x3d;</condition>
  1098 + <name2/>
  1099 + </key>
  1100 + <key>
  1101 + <name>lpname</name>
  1102 + <field>lp_name</field>
  1103 + <condition>&#x3d;</condition>
  1104 + <name2/>
  1105 + </key>
  1106 + <key>
  1107 + <name>isCancel</name>
  1108 + <field>is_cancel</field>
  1109 + <condition>&#x3d;</condition>
  1110 + <name2/>
  1111 + </key>
  1112 + <value>
  1113 + <name>xl</name>
  1114 + <rename>xlid</rename>
  1115 + <update>Y</update>
  1116 + </value>
  1117 + <value>
  1118 + <name>lp_no</name>
  1119 + <rename>lpno</rename>
  1120 + <update>Y</update>
  1121 + </value>
  1122 + <value>
  1123 + <name>lp_name</name>
  1124 + <rename>lpname</rename>
  1125 + <update>Y</update>
  1126 + </value>
  1127 + <value>
  1128 + <name>lp_type</name>
  1129 + <rename>lptype</rename>
  1130 + <update>Y</update>
  1131 + </value>
  1132 + <value>
  1133 + <name>is_cancel</name>
  1134 + <rename>isCancel</rename>
  1135 + <update>Y</update>
  1136 + </value>
  1137 + </lookup>
  1138 + <cluster_schema/>
  1139 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1140 + <xloc>545</xloc>
  1141 + <yloc>184</yloc>
  1142 + <draw>Y</draw>
  1143 + </GUI>
  1144 + </step>
  1145 +
  1146 + <step>
  1147 + <name>&#x67e5;&#x8be2;&#x7ebf;&#x8def;&#x5173;&#x8054;</name>
  1148 + <type>DBLookup</type>
  1149 + <description/>
  1150 + <distribute>Y</distribute>
  1151 + <custom_distribution/>
  1152 + <copies>1</copies>
  1153 + <partitioning>
  1154 + <method>none</method>
  1155 + <schema_name/>
  1156 + </partitioning>
  1157 + <connection>control_jndi</connection>
  1158 + <cache>Y</cache>
  1159 + <cache_load_all>Y</cache_load_all>
  1160 + <cache_size>0</cache_size>
  1161 + <lookup>
  1162 + <schema/>
  1163 + <table>bsth_c_line</table>
  1164 + <orderby/>
  1165 + <fail_on_multiple>N</fail_on_multiple>
  1166 + <eat_row_on_failure>N</eat_row_on_failure>
  1167 + <key>
  1168 + <name>xl</name>
  1169 + <field>name</field>
  1170 + <condition>&#x3d;</condition>
  1171 + <name2/>
  1172 + </key>
  1173 + <value>
  1174 + <name>id</name>
  1175 + <rename>xlid</rename>
  1176 + <default/>
  1177 + <type>Integer</type>
  1178 + </value>
  1179 + </lookup>
  1180 + <cluster_schema/>
  1181 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1182 + <xloc>428</xloc>
  1183 + <yloc>69</yloc>
  1184 + <draw>Y</draw>
  1185 + </GUI>
  1186 + </step>
  1187 +
  1188 + <step>
  1189 + <name>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</name>
  1190 + <type>GetVariable</type>
  1191 + <description/>
  1192 + <distribute>Y</distribute>
  1193 + <custom_distribution/>
  1194 + <copies>1</copies>
  1195 + <partitioning>
  1196 + <method>none</method>
  1197 + <schema_name/>
  1198 + </partitioning>
  1199 + <fields>
  1200 + <field>
  1201 + <name>filepath_</name>
  1202 + <variable>&#x24;&#x7b;filepath&#x7d;</variable>
  1203 + <type>String</type>
  1204 + <format/>
  1205 + <currency/>
  1206 + <decimal/>
  1207 + <group/>
  1208 + <length>-1</length>
  1209 + <precision>-1</precision>
  1210 + <trim_type>none</trim_type>
  1211 + </field>
  1212 + <field>
  1213 + <name>erroroutputdir_</name>
  1214 + <variable>&#x24;&#x7b;erroroutputdir&#x7d;</variable>
  1215 + <type>String</type>
  1216 + <format/>
  1217 + <currency/>
  1218 + <decimal/>
  1219 + <group/>
  1220 + <length>-1</length>
  1221 + <precision>-1</precision>
  1222 + <trim_type>none</trim_type>
  1223 + </field>
  1224 + </fields>
  1225 + <cluster_schema/>
  1226 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1227 + <xloc>152</xloc>
  1228 + <yloc>193</yloc>
  1229 + <draw>Y</draw>
  1230 + </GUI>
  1231 + </step>
  1232 +
  1233 + <step>
  1234 + <name>&#x9519;&#x8bef;&#x8f93;&#x51fa;</name>
  1235 + <type>ExcelOutput</type>
  1236 + <description/>
  1237 + <distribute>Y</distribute>
  1238 + <custom_distribution/>
  1239 + <copies>1</copies>
  1240 + <partitioning>
  1241 + <method>none</method>
  1242 + <schema_name/>
  1243 + </partitioning>
  1244 + <header>Y</header>
  1245 + <footer>N</footer>
  1246 + <encoding>UTF-8</encoding>
  1247 + <append>N</append>
  1248 + <add_to_result_filenames>Y</add_to_result_filenames>
  1249 + <file>
  1250 + <name>&#x24;&#x7b;erroroutputdir&#x7d;&#x2f;&#x8def;&#x724c;_&#x9519;&#x8bef;</name>
  1251 + <extention>xls</extention>
  1252 + <do_not_open_newfile_init>N</do_not_open_newfile_init>
  1253 + <create_parent_folder>N</create_parent_folder>
  1254 + <split>N</split>
  1255 + <add_date>N</add_date>
  1256 + <add_time>N</add_time>
  1257 + <SpecifyFormat>N</SpecifyFormat>
  1258 + <date_time_format/>
  1259 + <sheetname>Sheet1</sheetname>
  1260 + <autosizecolums>N</autosizecolums>
  1261 + <nullisblank>N</nullisblank>
  1262 + <protect_sheet>N</protect_sheet>
  1263 + <password>Encrypted </password>
  1264 + <splitevery>0</splitevery>
  1265 + <usetempfiles>N</usetempfiles>
  1266 + <tempdirectory/>
  1267 + </file>
  1268 + <template>
  1269 + <enabled>N</enabled>
  1270 + <append>N</append>
  1271 + <filename>template.xls</filename>
  1272 + </template>
  1273 + <fields>
  1274 + <field>
  1275 + <name>filepath_</name>
  1276 + <type>String</type>
  1277 + <format/>
  1278 + </field>
  1279 + <field>
  1280 + <name>erroroutputdir_</name>
  1281 + <type>String</type>
  1282 + <format/>
  1283 + </field>
  1284 + <field>
  1285 + <name>xl</name>
  1286 + <type>String</type>
  1287 + <format/>
  1288 + </field>
  1289 + <field>
  1290 + <name>lpno</name>
  1291 + <type>Integer</type>
  1292 + <format/>
  1293 + </field>
  1294 + <field>
  1295 + <name>lpname</name>
  1296 + <type>String</type>
  1297 + <format/>
  1298 + </field>
  1299 + <field>
  1300 + <name>lptype</name>
  1301 + <type>String</type>
  1302 + <format/>
  1303 + </field>
  1304 + <field>
  1305 + <name>xlid</name>
  1306 + <type>Integer</type>
  1307 + <format/>
  1308 + </field>
  1309 + <field>
  1310 + <name>isCancel</name>
  1311 + <type>Integer</type>
  1312 + <format/>
  1313 + </field>
  1314 + <field>
  1315 + <name>error_count</name>
  1316 + <type>Integer</type>
  1317 + <format/>
  1318 + </field>
  1319 + <field>
  1320 + <name>error_desc</name>
  1321 + <type>String</type>
  1322 + <format/>
  1323 + </field>
  1324 + <field>
  1325 + <name>error_column1</name>
  1326 + <type>String</type>
  1327 + <format/>
  1328 + </field>
  1329 + <field>
  1330 + <name>error_column2</name>
  1331 + <type>String</type>
  1332 + <format/>
  1333 + </field>
  1334 + </fields>
  1335 + <custom>
  1336 + <header_font_name>arial</header_font_name>
  1337 + <header_font_size>10</header_font_size>
  1338 + <header_font_bold>N</header_font_bold>
  1339 + <header_font_italic>N</header_font_italic>
  1340 + <header_font_underline>no</header_font_underline>
  1341 + <header_font_orientation>horizontal</header_font_orientation>
  1342 + <header_font_color>black</header_font_color>
  1343 + <header_background_color>none</header_background_color>
  1344 + <header_row_height>255</header_row_height>
  1345 + <header_alignment>left</header_alignment>
  1346 + <header_image/>
  1347 + <row_font_name>arial</row_font_name>
  1348 + <row_font_size>10</row_font_size>
  1349 + <row_font_color>black</row_font_color>
  1350 + <row_background_color>none</row_background_color>
  1351 + </custom>
  1352 + <cluster_schema/>
  1353 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1354 + <xloc>545</xloc>
  1355 + <yloc>307</yloc>
  1356 + <draw>Y</draw>
  1357 + </GUI>
  1358 + </step>
  1359 +
  1360 + <step_error_handling>
  1361 + <error>
  1362 + <source_step>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_gbi</source_step>
  1363 + <target_step>&#x9519;&#x8bef;&#x8f93;&#x51fa;</target_step>
  1364 + <is_enabled>Y</is_enabled>
  1365 + <nr_valuename>error_count</nr_valuename>
  1366 + <descriptions_valuename>error_desc</descriptions_valuename>
  1367 + <fields_valuename>error_column1</fields_valuename>
  1368 + <codes_valuename>error_column2</codes_valuename>
  1369 + <max_errors/>
  1370 + <max_pct_errors/>
  1371 + <min_pct_rows/>
  1372 + </error>
  1373 + </step_error_handling>
  1374 + <slave-step-copy-partition-distribution>
  1375 +</slave-step-copy-partition-distribution>
  1376 + <slave_transformation>N</slave_transformation>
  1377 +
  1378 +</transformation>
src/main/resources/datatools/ktrs/zh/road-sign-data-export.ktr 0 → 100644
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<transformation>
  3 + <info>
  4 + <name>&#x8def;&#x724c;&#x4fe1;&#x606f;&#x5bfc;&#x51fa;_zh</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>filepath</name>
  14 + <default_value/>
  15 + <description>excel&#x6587;&#x4ef6;&#x8def;&#x5f84;</description>
  16 + </parameter>
  17 + <parameter>
  18 + <name>xlid</name>
  19 + <default_value/>
  20 + <description>&#x7ebf;&#x8def;id</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>2017&#x2f;02&#x2f;06 11&#x3a;05&#x3a;17.781</created_date>
  81 + <modified_user>-</modified_user>
  82 + <modified_date>2017&#x2f;02&#x2f;06 11&#x3a;05&#x3a;17.781</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 + </notepads>
  88 + <connection>
  89 + <name>192.168.168.1_jwgl_dw</name>
  90 + <server>192.168.168.1</server>
  91 + <type>ORACLE</type>
  92 + <access>Native</access>
  93 + <database>orcl</database>
  94 + <port>1521</port>
  95 + <username>jwgl_dw</username>
  96 + <password>Encrypted 2be98afc86aa7f2e4cb13b977d2adabcd</password>
  97 + <servername/>
  98 + <data_tablespace/>
  99 + <index_tablespace/>
  100 + <attributes>
  101 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  102 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  103 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  104 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  105 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  106 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  107 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  108 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  109 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  110 + </attributes>
  111 + </connection>
  112 + <connection>
  113 + <name>bus_control_variable</name>
  114 + <server>&#x24;&#x7b;v_db_ip&#x7d;</server>
  115 + <type>MYSQL</type>
  116 + <access>Native</access>
  117 + <database>&#x24;&#x7b;v_db_dname&#x7d;</database>
  118 + <port>3306</port>
  119 + <username>&#x24;&#x7b;v_db_uname&#x7d;</username>
  120 + <password>&#x24;&#x7b;v_db_pwd&#x7d;</password>
  121 + <servername/>
  122 + <data_tablespace/>
  123 + <index_tablespace/>
  124 + <attributes>
  125 + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
  126 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  127 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  128 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  129 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  130 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  131 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  132 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  133 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  134 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  135 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  136 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  137 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  138 + </attributes>
  139 + </connection>
  140 + <connection>
  141 + <name>bus_control_&#x516c;&#x53f8;_201</name>
  142 + <server>localhost</server>
  143 + <type>MYSQL</type>
  144 + <access>Native</access>
  145 + <database>control</database>
  146 + <port>3306</port>
  147 + <username>root</username>
  148 + <password>Encrypted </password>
  149 + <servername/>
  150 + <data_tablespace/>
  151 + <index_tablespace/>
  152 + <attributes>
  153 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  154 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  155 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  156 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  157 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  158 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  159 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  160 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  161 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  162 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  163 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  164 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  165 + </attributes>
  166 + </connection>
  167 + <connection>
  168 + <name>bus_control_&#x672c;&#x673a;</name>
  169 + <server>localhost</server>
  170 + <type>MYSQL</type>
  171 + <access>Native</access>
  172 + <database>control</database>
  173 + <port>3306</port>
  174 + <username>root</username>
  175 + <password>Encrypted </password>
  176 + <servername/>
  177 + <data_tablespace/>
  178 + <index_tablespace/>
  179 + <attributes>
  180 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  181 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  182 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  183 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  184 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  185 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  186 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  187 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  188 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  189 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  190 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  191 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  192 + </attributes>
  193 + </connection>
  194 + <connection>
  195 + <name>control_jndi</name>
  196 + <server/>
  197 + <type>MYSQL</type>
  198 + <access>JNDI</access>
  199 + <database>control_jndi</database>
  200 + <port>1521</port>
  201 + <username/>
  202 + <password>Encrypted </password>
  203 + <servername/>
  204 + <data_tablespace/>
  205 + <index_tablespace/>
  206 + <attributes>
  207 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  208 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  209 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  210 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  211 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  212 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  213 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  214 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  215 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  216 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  217 + </attributes>
  218 + </connection>
  219 + <connection>
  220 + <name>JGJW_VM</name>
  221 + <server>192.168.198.240</server>
  222 + <type>ORACLE</type>
  223 + <access>Native</access>
  224 + <database>orcl</database>
  225 + <port>1521</port>
  226 + <username>jwgl</username>
  227 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d485a8d6</password>
  228 + <servername/>
  229 + <data_tablespace/>
  230 + <index_tablespace/>
  231 + <attributes>
  232 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  233 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  234 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  235 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  236 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  237 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  238 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  239 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  240 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  241 + </attributes>
  242 + </connection>
  243 + <connection>
  244 + <name>NHJW_VM</name>
  245 + <server>192.168.198.240</server>
  246 + <type>ORACLE</type>
  247 + <access>Native</access>
  248 + <database>orcl</database>
  249 + <port>1521</port>
  250 + <username>nhjw</username>
  251 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d09aa5cd</password>
  252 + <servername/>
  253 + <data_tablespace/>
  254 + <index_tablespace/>
  255 + <attributes>
  256 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  257 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  258 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  259 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  260 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  261 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  262 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  263 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  264 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  265 + </attributes>
  266 + </connection>
  267 + <connection>
  268 + <name>PDGJ_VM</name>
  269 + <server>192.168.198.240</server>
  270 + <type>ORACLE</type>
  271 + <access>Native</access>
  272 + <database>orcl</database>
  273 + <port>1521</port>
  274 + <username>pdgj</username>
  275 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10ce96a8d0</password>
  276 + <servername/>
  277 + <data_tablespace/>
  278 + <index_tablespace/>
  279 + <attributes>
  280 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  281 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  282 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  283 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  284 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  285 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  286 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  287 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  288 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  289 + </attributes>
  290 + </connection>
  291 + <connection>
  292 + <name>repair_dw_mysql_jndi</name>
  293 + <server/>
  294 + <type>MYSQL</type>
  295 + <access>JNDI</access>
  296 + <database>repair_dw_mysql</database>
  297 + <port>1521</port>
  298 + <username/>
  299 + <password>Encrypted </password>
  300 + <servername/>
  301 + <data_tablespace/>
  302 + <index_tablespace/>
  303 + <attributes>
  304 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  305 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  306 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  307 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  308 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  309 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  310 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  311 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  312 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  313 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  314 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  315 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  316 + </attributes>
  317 + </connection>
  318 + <connection>
  319 + <name>repair_dw&#xff08;&#x672c;&#x673a;&#xff09;</name>
  320 + <server>localhost</server>
  321 + <type>MYSQL</type>
  322 + <access>Native</access>
  323 + <database>ruoyi-vue-3.5</database>
  324 + <port>3306</port>
  325 + <username>root</username>
  326 + <password>Encrypted </password>
  327 + <servername/>
  328 + <data_tablespace/>
  329 + <index_tablespace/>
  330 + <attributes>
  331 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  332 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  333 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  334 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  335 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  336 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  337 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  338 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  339 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  340 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  341 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  342 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  343 + </attributes>
  344 + </connection>
  345 + <connection>
  346 + <name>repair_real_h2</name>
  347 + <server/>
  348 + <type>H2</type>
  349 + <access>JNDI</access>
  350 + <database>repair_real_h2</database>
  351 + <port>1521</port>
  352 + <username/>
  353 + <password>Encrypted </password>
  354 + <servername/>
  355 + <data_tablespace/>
  356 + <index_tablespace/>
  357 + <attributes>
  358 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  359 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  360 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  361 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  362 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  363 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  364 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  365 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  366 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  367 + </attributes>
  368 + </connection>
  369 + <connection>
  370 + <name>SNJW_VM</name>
  371 + <server>192.168.198.240</server>
  372 + <type>ORACLE</type>
  373 + <access>Native</access>
  374 + <database>orcl</database>
  375 + <port>1521</port>
  376 + <username>snjw</username>
  377 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10cd9ca5cd</password>
  378 + <servername/>
  379 + <data_tablespace/>
  380 + <index_tablespace/>
  381 + <attributes>
  382 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  383 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  384 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  385 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  386 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  387 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  388 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  389 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  390 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  391 + </attributes>
  392 + </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>
  421 + <name>test_control&#xff08;&#x672c;&#x673a;&#xff09;</name>
  422 + <server>127.0.0.1</server>
  423 + <type>MYSQL</type>
  424 + <access>Native</access>
  425 + <database>test_control</database>
  426 + <port>3306</port>
  427 + <username>root</username>
  428 + <password>Encrypted </password>
  429 + <servername/>
  430 + <data_tablespace/>
  431 + <index_tablespace/>
  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>
  489 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  490 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  491 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  492 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  493 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  494 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  495 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  496 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  497 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  498 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  499 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  500 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  501 + </attributes>
  502 + </connection>
  503 + <connection>
  504 + <name>xlab_mysql_youle</name>
  505 + <server>101.231.124.8</server>
  506 + <type>MYSQL</type>
  507 + <access>Native</access>
  508 + <database>xlab_youle</database>
  509 + <port>45687</port>
  510 + <username>xlab-youle</username>
  511 + <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password>
  512 + <servername/>
  513 + <data_tablespace/>
  514 + <index_tablespace/>
  515 + <attributes>
  516 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  517 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  518 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  519 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  520 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  521 + <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute>
  522 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  523 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  524 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  525 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  526 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  527 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  528 + </attributes>
  529 + </connection>
  530 + <connection>
  531 + <name>xlab_mysql_youle&#xff08;&#x672c;&#x673a;&#xff09;</name>
  532 + <server>localhost</server>
  533 + <type>MYSQL</type>
  534 + <access>Native</access>
  535 + <database>xlab_youle</database>
  536 + <port>3306</port>
  537 + <username>root</username>
  538 + <password>Encrypted </password>
  539 + <servername/>
  540 + <data_tablespace/>
  541 + <index_tablespace/>
  542 + <attributes>
  543 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  544 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  545 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  546 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  547 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  548 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  549 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  550 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  551 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  552 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  553 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  554 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  555 + </attributes>
  556 + </connection>
  557 + <connection>
  558 + <name>xlab_youle</name>
  559 + <server/>
  560 + <type>MYSQL</type>
  561 + <access>JNDI</access>
  562 + <database>xlab_youle</database>
  563 + <port>1521</port>
  564 + <username/>
  565 + <password>Encrypted </password>
  566 + <servername/>
  567 + <data_tablespace/>
  568 + <index_tablespace/>
  569 + <attributes>
  570 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  571 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  572 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  573 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  574 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  575 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  576 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  577 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  578 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  579 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  580 + </attributes>
  581 + </connection>
  582 + <connection>
  583 + <name>YGJW_VM</name>
  584 + <server>192.168.198.240</server>
  585 + <type>ORACLE</type>
  586 + <access>Native</access>
  587 + <database>orcl</database>
  588 + <port>1521</port>
  589 + <username>ygjw</username>
  590 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10c795a5cd</password>
  591 + <servername/>
  592 + <data_tablespace/>
  593 + <index_tablespace/>
  594 + <attributes>
  595 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  596 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  597 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  598 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  599 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  600 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  601 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  602 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  603 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  604 + </attributes>
  605 + </connection>
  606 + <connection>
  607 + <name>&#x516c;&#x53f8;jgjw</name>
  608 + <server>192.168.168.1</server>
  609 + <type>ORACLE</type>
  610 + <access>Native</access>
  611 + <database>orcl</database>
  612 + <port>1521</port>
  613 + <username>jwgl</username>
  614 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d485a8d6</password>
  615 + <servername/>
  616 + <data_tablespace/>
  617 + <index_tablespace/>
  618 + <attributes>
  619 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  620 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  621 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  622 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  623 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  624 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  625 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  626 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  627 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  628 + </attributes>
  629 + </connection>
  630 + <connection>
  631 + <name>&#x516c;&#x53f8;snjw</name>
  632 + <server>192.168.168.1</server>
  633 + <type>ORACLE</type>
  634 + <access>Native</access>
  635 + <database>orcl</database>
  636 + <port>1521</port>
  637 + <username>snjw</username>
  638 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10cd9ca5cd</password>
  639 + <servername/>
  640 + <data_tablespace/>
  641 + <index_tablespace/>
  642 + <attributes>
  643 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  644 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  645 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  646 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  647 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  648 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  649 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  650 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  651 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  652 + </attributes>
  653 + </connection>
  654 + <connection>
  655 + <name>&#x516c;&#x53f8;ygjw</name>
  656 + <server>192.168.168.178</server>
  657 + <type>ORACLE</type>
  658 + <access>Native</access>
  659 + <database>orcl</database>
  660 + <port>1521</port>
  661 + <username>ygjw</username>
  662 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10c795a5cd</password>
  663 + <servername/>
  664 + <data_tablespace/>
  665 + <index_tablespace/>
  666 + <attributes>
  667 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  668 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  669 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  670 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  671 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  672 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  673 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  674 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  675 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  676 + </attributes>
  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>
  798 + <order>
  799 + <hop> <from>&#x8def;&#x724c;&#x6570;&#x636e;&#xff08;&#x6ca1;&#x6709;&#x4f5c;&#x5e9f;&#xff09;</from><to>&#x7ebf;&#x8def;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>
  800 + <hop> <from>&#x7ebf;&#x8def;&#x67e5;&#x8be2;</from><to>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</to><enabled>Y</enabled> </hop>
  801 + <hop> <from>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</from><to>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</to><enabled>Y</enabled> </hop>
  802 + <hop> <from>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</from><to>Excel&#x8f93;&#x51fa;</to><enabled>Y</enabled> </hop>
  803 + </order>
  804 + <step>
  805 + <name>Excel&#x8f93;&#x51fa;</name>
  806 + <type>ExcelOutput</type>
  807 + <description/>
  808 + <distribute>Y</distribute>
  809 + <custom_distribution/>
  810 + <copies>1</copies>
  811 + <partitioning>
  812 + <method>none</method>
  813 + <schema_name/>
  814 + </partitioning>
  815 + <header>Y</header>
  816 + <footer>N</footer>
  817 + <encoding/>
  818 + <append>N</append>
  819 + <add_to_result_filenames>Y</add_to_result_filenames>
  820 + <file>
  821 + <name>&#x24;&#x7b;filepath&#x7d;</name>
  822 + <extention>xls</extention>
  823 + <do_not_open_newfile_init>N</do_not_open_newfile_init>
  824 + <create_parent_folder>N</create_parent_folder>
  825 + <split>N</split>
  826 + <add_date>N</add_date>
  827 + <add_time>N</add_time>
  828 + <SpecifyFormat>N</SpecifyFormat>
  829 + <date_time_format>yyyyMMddHHmmss</date_time_format>
  830 + <sheetname>&#x5de5;&#x4f5c;&#x8868;1</sheetname>
  831 + <autosizecolums>N</autosizecolums>
  832 + <nullisblank>N</nullisblank>
  833 + <protect_sheet>N</protect_sheet>
  834 + <password>Encrypted </password>
  835 + <splitevery>0</splitevery>
  836 + <usetempfiles>N</usetempfiles>
  837 + <tempdirectory/>
  838 + </file>
  839 + <template>
  840 + <enabled>N</enabled>
  841 + <append>N</append>
  842 + <filename>template.xls</filename>
  843 + </template>
  844 + <fields>
  845 + <field>
  846 + <name>&#x7ebf;&#x8def;</name>
  847 + <type>String</type>
  848 + <format/>
  849 + </field>
  850 + <field>
  851 + <name>&#x8def;&#x724c;&#x7f16;&#x53f7;</name>
  852 + <type>String</type>
  853 + <format/>
  854 + </field>
  855 + <field>
  856 + <name>&#x8def;&#x724c;&#x540d;&#x79f0;</name>
  857 + <type>String</type>
  858 + <format/>
  859 + </field>
  860 + <field>
  861 + <name>&#x8def;&#x724c;&#x7c7b;&#x578b;</name>
  862 + <type>String</type>
  863 + <format/>
  864 + </field>
  865 + </fields>
  866 + <custom>
  867 + <header_font_name>arial</header_font_name>
  868 + <header_font_size>10</header_font_size>
  869 + <header_font_bold>N</header_font_bold>
  870 + <header_font_italic>N</header_font_italic>
  871 + <header_font_underline>no</header_font_underline>
  872 + <header_font_orientation>horizontal</header_font_orientation>
  873 + <header_font_color>black</header_font_color>
  874 + <header_background_color>none</header_background_color>
  875 + <header_row_height>255</header_row_height>
  876 + <header_alignment>left</header_alignment>
  877 + <header_image/>
  878 + <row_font_name>arial</row_font_name>
  879 + <row_font_size>10</row_font_size>
  880 + <row_font_color>black</row_font_color>
  881 + <row_background_color>none</row_background_color>
  882 + </custom>
  883 + <cluster_schema/>
  884 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  885 + <xloc>644</xloc>
  886 + <yloc>92</yloc>
  887 + <draw>Y</draw>
  888 + </GUI>
  889 + </step>
  890 +
  891 + <step>
  892 + <name>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</name>
  893 + <type>SelectValues</type>
  894 + <description/>
  895 + <distribute>Y</distribute>
  896 + <custom_distribution/>
  897 + <copies>1</copies>
  898 + <partitioning>
  899 + <method>none</method>
  900 + <schema_name/>
  901 + </partitioning>
  902 + <fields> <select_unspecified>N</select_unspecified>
  903 + <meta> <name>xlmc</name>
  904 + <rename>&#x7ebf;&#x8def;</rename>
  905 + <type>None</type>
  906 + <length>-2</length>
  907 + <precision>-2</precision>
  908 + <conversion_mask/>
  909 + <date_format_lenient>false</date_format_lenient>
  910 + <date_format_locale/>
  911 + <date_format_timezone/>
  912 + <lenient_string_to_number>false</lenient_string_to_number>
  913 + <encoding/>
  914 + <decimal_symbol/>
  915 + <grouping_symbol/>
  916 + <currency_symbol/>
  917 + <storage_type/>
  918 + </meta> <meta> <name>lp_no</name>
  919 + <rename>&#x8def;&#x724c;&#x7f16;&#x53f7;</rename>
  920 + <type>String</type>
  921 + <length>-2</length>
  922 + <precision>-2</precision>
  923 + <conversion_mask>&#x23;</conversion_mask>
  924 + <date_format_lenient>false</date_format_lenient>
  925 + <date_format_locale/>
  926 + <date_format_timezone/>
  927 + <lenient_string_to_number>false</lenient_string_to_number>
  928 + <encoding/>
  929 + <decimal_symbol/>
  930 + <grouping_symbol/>
  931 + <currency_symbol/>
  932 + <storage_type/>
  933 + </meta> <meta> <name>lp_name</name>
  934 + <rename>&#x8def;&#x724c;&#x540d;&#x79f0;</rename>
  935 + <type>None</type>
  936 + <length>-2</length>
  937 + <precision>-2</precision>
  938 + <conversion_mask/>
  939 + <date_format_lenient>false</date_format_lenient>
  940 + <date_format_locale/>
  941 + <date_format_timezone/>
  942 + <lenient_string_to_number>false</lenient_string_to_number>
  943 + <encoding/>
  944 + <decimal_symbol/>
  945 + <grouping_symbol/>
  946 + <currency_symbol/>
  947 + <storage_type/>
  948 + </meta> <meta> <name>lp_type</name>
  949 + <rename>&#x8def;&#x724c;&#x7c7b;&#x578b;</rename>
  950 + <type>None</type>
  951 + <length>-2</length>
  952 + <precision>-2</precision>
  953 + <conversion_mask/>
  954 + <date_format_lenient>false</date_format_lenient>
  955 + <date_format_locale/>
  956 + <date_format_timezone/>
  957 + <lenient_string_to_number>false</lenient_string_to_number>
  958 + <encoding/>
  959 + <decimal_symbol/>
  960 + <grouping_symbol/>
  961 + <currency_symbol/>
  962 + <storage_type/>
  963 + </meta> </fields> <cluster_schema/>
  964 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  965 + <xloc>507</xloc>
  966 + <yloc>91</yloc>
  967 + <draw>Y</draw>
  968 + </GUI>
  969 + </step>
  970 +
  971 + <step>
  972 + <name>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</name>
  973 + <type>SortRows</type>
  974 + <description/>
  975 + <distribute>Y</distribute>
  976 + <custom_distribution/>
  977 + <copies>1</copies>
  978 + <partitioning>
  979 + <method>none</method>
  980 + <schema_name/>
  981 + </partitioning>
  982 + <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
  983 + <prefix>out</prefix>
  984 + <sort_size>1000000</sort_size>
  985 + <free_memory/>
  986 + <compress>N</compress>
  987 + <compress_variable/>
  988 + <unique_rows>N</unique_rows>
  989 + <fields>
  990 + <field>
  991 + <name>xl</name>
  992 + <ascending>Y</ascending>
  993 + <case_sensitive>N</case_sensitive>
  994 + <presorted>N</presorted>
  995 + </field>
  996 + <field>
  997 + <name>lp_no</name>
  998 + <ascending>Y</ascending>
  999 + <case_sensitive>N</case_sensitive>
  1000 + <presorted>N</presorted>
  1001 + </field>
  1002 + <field>
  1003 + <name>is_cancel</name>
  1004 + <ascending>N</ascending>
  1005 + <case_sensitive>N</case_sensitive>
  1006 + <presorted>N</presorted>
  1007 + </field>
  1008 + </fields>
  1009 + <cluster_schema/>
  1010 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1011 + <xloc>384</xloc>
  1012 + <yloc>91</yloc>
  1013 + <draw>Y</draw>
  1014 + </GUI>
  1015 + </step>
  1016 +
  1017 + <step>
  1018 + <name>&#x7ebf;&#x8def;&#x67e5;&#x8be2;</name>
  1019 + <type>DBLookup</type>
  1020 + <description/>
  1021 + <distribute>Y</distribute>
  1022 + <custom_distribution/>
  1023 + <copies>1</copies>
  1024 + <partitioning>
  1025 + <method>none</method>
  1026 + <schema_name/>
  1027 + </partitioning>
  1028 + <connection>control_jndi</connection>
  1029 + <cache>Y</cache>
  1030 + <cache_load_all>Y</cache_load_all>
  1031 + <cache_size>0</cache_size>
  1032 + <lookup>
  1033 + <schema/>
  1034 + <table>bsth_c_line</table>
  1035 + <orderby/>
  1036 + <fail_on_multiple>N</fail_on_multiple>
  1037 + <eat_row_on_failure>N</eat_row_on_failure>
  1038 + <key>
  1039 + <name>xl</name>
  1040 + <field>id</field>
  1041 + <condition>&#x3d;</condition>
  1042 + <name2/>
  1043 + </key>
  1044 + <value>
  1045 + <name>name</name>
  1046 + <rename>xlmc</rename>
  1047 + <default/>
  1048 + <type>String</type>
  1049 + </value>
  1050 + </lookup>
  1051 + <cluster_schema/>
  1052 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1053 + <xloc>262</xloc>
  1054 + <yloc>92</yloc>
  1055 + <draw>Y</draw>
  1056 + </GUI>
  1057 + </step>
  1058 +
  1059 + <step>
  1060 + <name>&#x8def;&#x724c;&#x6570;&#x636e;&#xff08;&#x6ca1;&#x6709;&#x4f5c;&#x5e9f;&#xff09;</name>
  1061 + <type>TableInput</type>
  1062 + <description/>
  1063 + <distribute>Y</distribute>
  1064 + <custom_distribution/>
  1065 + <copies>1</copies>
  1066 + <partitioning>
  1067 + <method>none</method>
  1068 + <schema_name/>
  1069 + </partitioning>
  1070 + <connection>control_jndi</connection>
  1071 + <sql>select &#x2a; from bsth_c_s_gbi&#xa;where is_cancel &#x3d; 0 and xl &#x3d; &#x24;&#x7b;xlid&#x7d;</sql>
  1072 + <limit>0</limit>
  1073 + <lookup/>
  1074 + <execute_each_row>N</execute_each_row>
  1075 + <variables_active>Y</variables_active>
  1076 + <lazy_conversion_active>N</lazy_conversion_active>
  1077 + <cluster_schema/>
  1078 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1079 + <xloc>134</xloc>
  1080 + <yloc>92</yloc>
  1081 + <draw>Y</draw>
  1082 + </GUI>
  1083 + </step>
  1084 +
  1085 + <step_error_handling>
  1086 + </step_error_handling>
  1087 + <slave-step-copy-partition-distribution>
  1088 +</slave-step-copy-partition-distribution>
  1089 + <slave_transformation>N</slave_transformation>
  1090 +
  1091 +</transformation>
src/main/resources/datatools/ktrs/zh/road-sign-data_import.ktr 0 → 100644
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<transformation>
  3 + <info>
  4 + <name>&#x8def;&#x724c;&#x4fe1;&#x606f;&#x5bfc;&#x5165;_zh</name>
  5 + <description>&#x8def;&#x724c;&#x4fe1;&#x606f;&#x5bfc;&#x5165;</description>
  6 + <extended_description>&#x7ebf;&#x8def;&#x8fd0;&#x8425;&#x7684;&#x8def;&#x724c;&#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 17&#x3a;00&#x3a;01.094</created_date>
  81 + <modified_user>-</modified_user>
  82 + <modified_date>2016&#x2f;06&#x2f;29 17&#x3a;00&#x3a;01.094</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>&#x8def;&#x724c;&#x4fe1;&#x606f;&#x8f93;&#x5165;&#xff0c;&#x8def;&#x724c;&#x540d;&#x5b57;&#x662f;&#x4e0d;&#x80fd;&#x91cd;&#x590d;&#x7684;&#xa;&#x4e00;&#x822c;&#x6765;&#x8bf4;&#xff0c;&#x5e94;&#x8be5;&#x662f;&#x5bfc;&#x5165;&#x65f6;&#x523b;&#x6570;&#x636e;&#x81ea;&#x52a8;&#x751f;&#x6210;&#x7684;&#xff0c;&#x8fd9;&#x4e2a;&#x518d;&#x8bae;&#xa;&#xa;</note>
  89 + <xloc>57</xloc>
  90 + <yloc>291</yloc>
  91 + <width>298</width>
  92 + <heigth>74</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>&#x5b57;&#x6bb5;&#x6539;&#x540d;</from><to>&#x67e5;&#x8be2;&#x7ebf;&#x8def;&#x5173;&#x8054;</to><enabled>Y</enabled> </hop>
  821 + <hop> <from>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_gbi</from><to>&#x9519;&#x8bef;&#x8f93;&#x51fa;</to><enabled>Y</enabled> </hop>
  822 + <hop> <from>&#x539f;&#x59cb;&#x7cfb;&#x7edf;&#x5bfc;&#x51fa;&#x7684;Excel&#x8f93;&#x5165;</from><to>&#x5b57;&#x6bb5;&#x6539;&#x540d;</to><enabled>Y</enabled> </hop>
  823 + <hop> <from>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</from><to>&#x539f;&#x59cb;&#x7cfb;&#x7edf;&#x5bfc;&#x51fa;&#x7684;Excel&#x8f93;&#x5165;</to><enabled>Y</enabled> </hop>
  824 + <hop> <from>&#x67e5;&#x8be2;&#x7ebf;&#x8def;&#x5173;&#x8054;</from><to>&#x542f;&#x7528;&#x88ab;&#x6570;&#x636e;flag</to><enabled>Y</enabled> </hop>
  825 + <hop> <from>&#x542f;&#x7528;&#x88ab;&#x6570;&#x636e;flag</from><to>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_gbi</to><enabled>Y</enabled> </hop>
  826 + </order>
  827 + <step>
  828 + <name>&#x539f;&#x59cb;&#x7cfb;&#x7edf;&#x5bfc;&#x51fa;&#x7684;Excel&#x8f93;&#x5165;</name>
  829 + <type>ExcelInput</type>
  830 + <description/>
  831 + <distribute>Y</distribute>
  832 + <custom_distribution/>
  833 + <copies>1</copies>
  834 + <partitioning>
  835 + <method>none</method>
  836 + <schema_name/>
  837 + </partitioning>
  838 + <header>Y</header>
  839 + <noempty>Y</noempty>
  840 + <stoponempty>N</stoponempty>
  841 + <filefield/>
  842 + <sheetfield/>
  843 + <sheetrownumfield/>
  844 + <rownumfield/>
  845 + <sheetfield/>
  846 + <filefield/>
  847 + <limit>0</limit>
  848 + <encoding/>
  849 + <add_to_result_filenames>Y</add_to_result_filenames>
  850 + <accept_filenames>Y</accept_filenames>
  851 + <accept_field>filepath_</accept_field>
  852 + <accept_stepname>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</accept_stepname>
  853 + <file>
  854 + <name/>
  855 + <filemask/>
  856 + <exclude_filemask/>
  857 + <file_required>N</file_required>
  858 + <include_subfolders>N</include_subfolders>
  859 + </file>
  860 + <fields>
  861 + <field>
  862 + <name>&#x7ebf;&#x8def;</name>
  863 + <type>String</type>
  864 + <length>-1</length>
  865 + <precision>-1</precision>
  866 + <trim_type>none</trim_type>
  867 + <repeat>N</repeat>
  868 + <format/>
  869 + <currency/>
  870 + <decimal/>
  871 + <group/>
  872 + </field>
  873 + <field>
  874 + <name>&#x8def;&#x724c;&#x7f16;&#x53f7;</name>
  875 + <type>String</type>
  876 + <length>-1</length>
  877 + <precision>-1</precision>
  878 + <trim_type>none</trim_type>
  879 + <repeat>N</repeat>
  880 + <format>&#x23;</format>
  881 + <currency/>
  882 + <decimal/>
  883 + <group/>
  884 + </field>
  885 + <field>
  886 + <name>&#x8def;&#x724c;&#x540d;&#x79f0;</name>
  887 + <type>String</type>
  888 + <length>-1</length>
  889 + <precision>-1</precision>
  890 + <trim_type>none</trim_type>
  891 + <repeat>N</repeat>
  892 + <format>&#x23;</format>
  893 + <currency/>
  894 + <decimal/>
  895 + <group/>
  896 + </field>
  897 + <field>
  898 + <name>&#x8def;&#x724c;&#x7c7b;&#x578b;</name>
  899 + <type>String</type>
  900 + <length>-1</length>
  901 + <precision>-1</precision>
  902 + <trim_type>none</trim_type>
  903 + <repeat>N</repeat>
  904 + <format/>
  905 + <currency/>
  906 + <decimal/>
  907 + <group/>
  908 + </field>
  909 + </fields>
  910 + <sheets>
  911 + <sheet>
  912 + <name>&#x5de5;&#x4f5c;&#x8868;1</name>
  913 + <startrow>0</startrow>
  914 + <startcol>0</startcol>
  915 + </sheet>
  916 + </sheets>
  917 + <strict_types>N</strict_types>
  918 + <error_ignored>N</error_ignored>
  919 + <error_line_skipped>N</error_line_skipped>
  920 + <bad_line_files_destination_directory/>
  921 + <bad_line_files_extension>warning</bad_line_files_extension>
  922 + <error_line_files_destination_directory/>
  923 + <error_line_files_extension>error</error_line_files_extension>
  924 + <line_number_files_destination_directory/>
  925 + <line_number_files_extension>line</line_number_files_extension>
  926 + <shortFileFieldName/>
  927 + <pathFieldName/>
  928 + <hiddenFieldName/>
  929 + <lastModificationTimeFieldName/>
  930 + <uriNameFieldName/>
  931 + <rootUriNameFieldName/>
  932 + <extensionFieldName/>
  933 + <sizeFieldName/>
  934 + <spreadsheet_type>JXL</spreadsheet_type>
  935 + <cluster_schema/>
  936 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  937 + <xloc>150</xloc>
  938 + <yloc>68</yloc>
  939 + <draw>Y</draw>
  940 + </GUI>
  941 + </step>
  942 +
  943 + <step>
  944 + <name>&#x542f;&#x7528;&#x88ab;&#x6570;&#x636e;flag</name>
  945 + <type>Constant</type>
  946 + <description/>
  947 + <distribute>Y</distribute>
  948 + <custom_distribution/>
  949 + <copies>1</copies>
  950 + <partitioning>
  951 + <method>none</method>
  952 + <schema_name/>
  953 + </partitioning>
  954 + <fields>
  955 + <field>
  956 + <name>isCancel</name>
  957 + <type>Integer</type>
  958 + <format/>
  959 + <currency/>
  960 + <decimal/>
  961 + <group/>
  962 + <nullif>0</nullif>
  963 + <length>-1</length>
  964 + <precision>-1</precision>
  965 + <set_empty_string>N</set_empty_string>
  966 + </field>
  967 + </fields>
  968 + <cluster_schema/>
  969 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  970 + <xloc>544</xloc>
  971 + <yloc>70</yloc>
  972 + <draw>Y</draw>
  973 + </GUI>
  974 + </step>
  975 +
  976 + <step>
  977 + <name>&#x5b57;&#x6bb5;&#x6539;&#x540d;</name>
  978 + <type>SelectValues</type>
  979 + <description/>
  980 + <distribute>Y</distribute>
  981 + <custom_distribution/>
  982 + <copies>1</copies>
  983 + <partitioning>
  984 + <method>none</method>
  985 + <schema_name/>
  986 + </partitioning>
  987 + <fields> <select_unspecified>N</select_unspecified>
  988 + <meta> <name>&#x7ebf;&#x8def;</name>
  989 + <rename>xl</rename>
  990 + <type>String</type>
  991 + <length>-2</length>
  992 + <precision>-2</precision>
  993 + <conversion_mask/>
  994 + <date_format_lenient>false</date_format_lenient>
  995 + <date_format_locale/>
  996 + <date_format_timezone/>
  997 + <lenient_string_to_number>false</lenient_string_to_number>
  998 + <encoding/>
  999 + <decimal_symbol/>
  1000 + <grouping_symbol/>
  1001 + <currency_symbol/>
  1002 + <storage_type/>
  1003 + </meta> <meta> <name>&#x8def;&#x724c;&#x7f16;&#x53f7;</name>
  1004 + <rename>lpno</rename>
  1005 + <type>Integer</type>
  1006 + <length>-2</length>
  1007 + <precision>-2</precision>
  1008 + <conversion_mask/>
  1009 + <date_format_lenient>false</date_format_lenient>
  1010 + <date_format_locale/>
  1011 + <date_format_timezone/>
  1012 + <lenient_string_to_number>false</lenient_string_to_number>
  1013 + <encoding/>
  1014 + <decimal_symbol/>
  1015 + <grouping_symbol/>
  1016 + <currency_symbol/>
  1017 + <storage_type/>
  1018 + </meta> <meta> <name>&#x8def;&#x724c;&#x540d;&#x79f0;</name>
  1019 + <rename>lpname</rename>
  1020 + <type>String</type>
  1021 + <length>-2</length>
  1022 + <precision>-2</precision>
  1023 + <conversion_mask/>
  1024 + <date_format_lenient>false</date_format_lenient>
  1025 + <date_format_locale/>
  1026 + <date_format_timezone/>
  1027 + <lenient_string_to_number>false</lenient_string_to_number>
  1028 + <encoding/>
  1029 + <decimal_symbol/>
  1030 + <grouping_symbol/>
  1031 + <currency_symbol/>
  1032 + <storage_type/>
  1033 + </meta> <meta> <name>&#x8def;&#x724c;&#x7c7b;&#x578b;</name>
  1034 + <rename>lptype</rename>
  1035 + <type>String</type>
  1036 + <length>-2</length>
  1037 + <precision>-2</precision>
  1038 + <conversion_mask/>
  1039 + <date_format_lenient>false</date_format_lenient>
  1040 + <date_format_locale/>
  1041 + <date_format_timezone/>
  1042 + <lenient_string_to_number>false</lenient_string_to_number>
  1043 + <encoding/>
  1044 + <decimal_symbol/>
  1045 + <grouping_symbol/>
  1046 + <currency_symbol/>
  1047 + <storage_type/>
  1048 + </meta> </fields> <cluster_schema/>
  1049 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1050 + <xloc>295</xloc>
  1051 + <yloc>68</yloc>
  1052 + <draw>Y</draw>
  1053 + </GUI>
  1054 + </step>
  1055 +
  1056 + <step>
  1057 + <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_gbi</name>
  1058 + <type>InsertUpdate</type>
  1059 + <description/>
  1060 + <distribute>Y</distribute>
  1061 + <custom_distribution/>
  1062 + <copies>1</copies>
  1063 + <partitioning>
  1064 + <method>none</method>
  1065 + <schema_name/>
  1066 + </partitioning>
  1067 + <connection>control_jndi</connection>
  1068 + <commit>100</commit>
  1069 + <update_bypassed>N</update_bypassed>
  1070 + <lookup>
  1071 + <schema/>
  1072 + <table>bsth_c_s_gbi</table>
  1073 + <key>
  1074 + <name>xlid</name>
  1075 + <field>xl</field>
  1076 + <condition>&#x3d;</condition>
  1077 + <name2/>
  1078 + </key>
  1079 + <key>
  1080 + <name>lpname</name>
  1081 + <field>lp_name</field>
  1082 + <condition>&#x3d;</condition>
  1083 + <name2/>
  1084 + </key>
  1085 + <key>
  1086 + <name>isCancel</name>
  1087 + <field>is_cancel</field>
  1088 + <condition>&#x3d;</condition>
  1089 + <name2/>
  1090 + </key>
  1091 + <value>
  1092 + <name>xl</name>
  1093 + <rename>xlid</rename>
  1094 + <update>Y</update>
  1095 + </value>
  1096 + <value>
  1097 + <name>lp_no</name>
  1098 + <rename>lpno</rename>
  1099 + <update>Y</update>
  1100 + </value>
  1101 + <value>
  1102 + <name>lp_name</name>
  1103 + <rename>lpname</rename>
  1104 + <update>Y</update>
  1105 + </value>
  1106 + <value>
  1107 + <name>lp_type</name>
  1108 + <rename>lptype</rename>
  1109 + <update>Y</update>
  1110 + </value>
  1111 + <value>
  1112 + <name>is_cancel</name>
  1113 + <rename>isCancel</rename>
  1114 + <update>Y</update>
  1115 + </value>
  1116 + </lookup>
  1117 + <cluster_schema/>
  1118 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1119 + <xloc>545</xloc>
  1120 + <yloc>184</yloc>
  1121 + <draw>Y</draw>
  1122 + </GUI>
  1123 + </step>
  1124 +
  1125 + <step>
  1126 + <name>&#x67e5;&#x8be2;&#x7ebf;&#x8def;&#x5173;&#x8054;</name>
  1127 + <type>DBLookup</type>
  1128 + <description/>
  1129 + <distribute>Y</distribute>
  1130 + <custom_distribution/>
  1131 + <copies>1</copies>
  1132 + <partitioning>
  1133 + <method>none</method>
  1134 + <schema_name/>
  1135 + </partitioning>
  1136 + <connection>control_jndi</connection>
  1137 + <cache>Y</cache>
  1138 + <cache_load_all>Y</cache_load_all>
  1139 + <cache_size>0</cache_size>
  1140 + <lookup>
  1141 + <schema/>
  1142 + <table>bsth_c_line</table>
  1143 + <orderby/>
  1144 + <fail_on_multiple>N</fail_on_multiple>
  1145 + <eat_row_on_failure>N</eat_row_on_failure>
  1146 + <key>
  1147 + <name>xl</name>
  1148 + <field>name</field>
  1149 + <condition>&#x3d;</condition>
  1150 + <name2/>
  1151 + </key>
  1152 + <value>
  1153 + <name>id</name>
  1154 + <rename>xlid</rename>
  1155 + <default/>
  1156 + <type>Integer</type>
  1157 + </value>
  1158 + </lookup>
  1159 + <cluster_schema/>
  1160 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1161 + <xloc>428</xloc>
  1162 + <yloc>69</yloc>
  1163 + <draw>Y</draw>
  1164 + </GUI>
  1165 + </step>
  1166 +
  1167 + <step>
  1168 + <name>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</name>
  1169 + <type>GetVariable</type>
  1170 + <description/>
  1171 + <distribute>Y</distribute>
  1172 + <custom_distribution/>
  1173 + <copies>1</copies>
  1174 + <partitioning>
  1175 + <method>none</method>
  1176 + <schema_name/>
  1177 + </partitioning>
  1178 + <fields>
  1179 + <field>
  1180 + <name>filepath_</name>
  1181 + <variable>&#x24;&#x7b;filepath&#x7d;</variable>
  1182 + <type>String</type>
  1183 + <format/>
  1184 + <currency/>
  1185 + <decimal/>
  1186 + <group/>
  1187 + <length>-1</length>
  1188 + <precision>-1</precision>
  1189 + <trim_type>none</trim_type>
  1190 + </field>
  1191 + <field>
  1192 + <name>erroroutputdir_</name>
  1193 + <variable>&#x24;&#x7b;erroroutputdir&#x7d;</variable>
  1194 + <type>String</type>
  1195 + <format/>
  1196 + <currency/>
  1197 + <decimal/>
  1198 + <group/>
  1199 + <length>-1</length>
  1200 + <precision>-1</precision>
  1201 + <trim_type>none</trim_type>
  1202 + </field>
  1203 + </fields>
  1204 + <cluster_schema/>
  1205 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1206 + <xloc>152</xloc>
  1207 + <yloc>193</yloc>
  1208 + <draw>Y</draw>
  1209 + </GUI>
  1210 + </step>
  1211 +
  1212 + <step>
  1213 + <name>&#x9519;&#x8bef;&#x8f93;&#x51fa;</name>
  1214 + <type>ExcelOutput</type>
  1215 + <description/>
  1216 + <distribute>Y</distribute>
  1217 + <custom_distribution/>
  1218 + <copies>1</copies>
  1219 + <partitioning>
  1220 + <method>none</method>
  1221 + <schema_name/>
  1222 + </partitioning>
  1223 + <header>Y</header>
  1224 + <footer>N</footer>
  1225 + <encoding>UTF-8</encoding>
  1226 + <append>N</append>
  1227 + <add_to_result_filenames>Y</add_to_result_filenames>
  1228 + <file>
  1229 + <name>&#x24;&#x7b;erroroutputdir&#x7d;&#x2f;&#x8def;&#x724c;_&#x9519;&#x8bef;</name>
  1230 + <extention>xls</extention>
  1231 + <do_not_open_newfile_init>N</do_not_open_newfile_init>
  1232 + <create_parent_folder>N</create_parent_folder>
  1233 + <split>N</split>
  1234 + <add_date>N</add_date>
  1235 + <add_time>N</add_time>
  1236 + <SpecifyFormat>N</SpecifyFormat>
  1237 + <date_time_format/>
  1238 + <sheetname>Sheet1</sheetname>
  1239 + <autosizecolums>N</autosizecolums>
  1240 + <nullisblank>N</nullisblank>
  1241 + <protect_sheet>N</protect_sheet>
  1242 + <password>Encrypted </password>
  1243 + <splitevery>0</splitevery>
  1244 + <usetempfiles>N</usetempfiles>
  1245 + <tempdirectory/>
  1246 + </file>
  1247 + <template>
  1248 + <enabled>N</enabled>
  1249 + <append>N</append>
  1250 + <filename>template.xls</filename>
  1251 + </template>
  1252 + <fields>
  1253 + <field>
  1254 + <name>filepath_</name>
  1255 + <type>String</type>
  1256 + <format/>
  1257 + </field>
  1258 + <field>
  1259 + <name>erroroutputdir_</name>
  1260 + <type>String</type>
  1261 + <format/>
  1262 + </field>
  1263 + <field>
  1264 + <name>xl</name>
  1265 + <type>String</type>
  1266 + <format/>
  1267 + </field>
  1268 + <field>
  1269 + <name>lpno</name>
  1270 + <type>Integer</type>
  1271 + <format/>
  1272 + </field>
  1273 + <field>
  1274 + <name>lpname</name>
  1275 + <type>String</type>
  1276 + <format/>
  1277 + </field>
  1278 + <field>
  1279 + <name>lptype</name>
  1280 + <type>String</type>
  1281 + <format/>
  1282 + </field>
  1283 + <field>
  1284 + <name>xlid</name>
  1285 + <type>Integer</type>
  1286 + <format/>
  1287 + </field>
  1288 + <field>
  1289 + <name>isCancel</name>
  1290 + <type>Integer</type>
  1291 + <format/>
  1292 + </field>
  1293 + <field>
  1294 + <name>error_count</name>
  1295 + <type>Integer</type>
  1296 + <format/>
  1297 + </field>
  1298 + <field>
  1299 + <name>error_desc</name>
  1300 + <type>String</type>
  1301 + <format/>
  1302 + </field>
  1303 + <field>
  1304 + <name>error_column1</name>
  1305 + <type>String</type>
  1306 + <format/>
  1307 + </field>
  1308 + <field>
  1309 + <name>error_column2</name>
  1310 + <type>String</type>
  1311 + <format/>
  1312 + </field>
  1313 + </fields>
  1314 + <custom>
  1315 + <header_font_name>arial</header_font_name>
  1316 + <header_font_size>10</header_font_size>
  1317 + <header_font_bold>N</header_font_bold>
  1318 + <header_font_italic>N</header_font_italic>
  1319 + <header_font_underline>no</header_font_underline>
  1320 + <header_font_orientation>horizontal</header_font_orientation>
  1321 + <header_font_color>black</header_font_color>
  1322 + <header_background_color>none</header_background_color>
  1323 + <header_row_height>255</header_row_height>
  1324 + <header_alignment>left</header_alignment>
  1325 + <header_image/>
  1326 + <row_font_name>arial</row_font_name>
  1327 + <row_font_size>10</row_font_size>
  1328 + <row_font_color>black</row_font_color>
  1329 + <row_background_color>none</row_background_color>
  1330 + </custom>
  1331 + <cluster_schema/>
  1332 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1333 + <xloc>545</xloc>
  1334 + <yloc>307</yloc>
  1335 + <draw>Y</draw>
  1336 + </GUI>
  1337 + </step>
  1338 +
  1339 + <step_error_handling>
  1340 + <error>
  1341 + <source_step>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_gbi</source_step>
  1342 + <target_step>&#x9519;&#x8bef;&#x8f93;&#x51fa;</target_step>
  1343 + <is_enabled>Y</is_enabled>
  1344 + <nr_valuename>error_count</nr_valuename>
  1345 + <descriptions_valuename>error_desc</descriptions_valuename>
  1346 + <fields_valuename>error_column1</fields_valuename>
  1347 + <codes_valuename>error_column2</codes_valuename>
  1348 + <max_errors/>
  1349 + <max_pct_errors/>
  1350 + <min_pct_rows/>
  1351 + </error>
  1352 + </step_error_handling>
  1353 + <slave-step-copy-partition-distribution>
  1354 +</slave-step-copy-partition-distribution>
  1355 + <slave_transformation>N</slave_transformation>
  1356 +
  1357 +</transformation>
src/main/resources/message_en_US.properties
@@ -4544,6 +4544,12 @@ carDeviceServiceImpl-line57=activation date must be later than historical activa @@ -4544,6 +4544,12 @@ carDeviceServiceImpl-line57=activation date must be later than historical activa
4544 4544
4545 employeeServiceImpl-line54=duplicate employee number 4545 employeeServiceImpl-line54=duplicate employee number
4546 4546
  4547 +guideboardInfoServiceImpl-line69=route not select
  4548 +guideboardInfoServiceImpl-line75=duplicate road sign number
  4549 +guideboardInfoServiceImpl-line89=route not select
  4550 +guideboardInfoServiceImpl-line95=duplicate road sign name
  4551 +guideboardInfoServiceImpl-line125=the road sign is associated with timetable[######{0}],do not be voided.
  4552 +
4547 bController-line192=import file not exist 4553 bController-line192=import file not exist
4548 bController-line197=import file successful 4554 bController-line197=import file successful
4549 bController-line217=upload and import file successful 4555 bController-line217=upload and import file successful
src/main/resources/message_zh_CN.properties
@@ -4545,6 +4545,13 @@ carDeviceServiceImpl-line57=启用日期必须比历史的启用日期大 @@ -4545,6 +4545,13 @@ carDeviceServiceImpl-line57=启用日期必须比历史的启用日期大
4545 4545
4546 employeeServiceImpl-line54=相同公司工号重复 4546 employeeServiceImpl-line54=相同公司工号重复
4547 4547
  4548 +guideboardInfoServiceImpl-line69=线路未选择
  4549 +guideboardInfoServiceImpl-line75=路牌编号重复
  4550 +guideboardInfoServiceImpl-line89=线路未选择
  4551 +guideboardInfoServiceImpl-line95=路牌名字重复
  4552 +guideboardInfoServiceImpl-line125=在时刻表######{0}已使用,无法作废!
  4553 +
  4554 +
4548 bController-line192=导入文件不存在! 4555 bController-line192=导入文件不存在!
4549 bController-line197=导入文件成功 4556 bController-line197=导入文件成功
4550 bController-line217=上传&导入文件成功 4557 bController-line217=上传&导入文件成功
src/main/resources/static/pages/scheduleApp/language/en.js
@@ -784,7 +784,7 @@ var ScheduleApp_en_language = { @@ -784,7 +784,7 @@ var ScheduleApp_en_language = {
784 "busConfig_form_page_line29_txt-3849" : "Form", 784 "busConfig_form_page_line29_txt-3849" : "Form",
785 "busConfig_form_page_line44_txt-3347" : "Route name", 785 "busConfig_form_page_line44_txt-3347" : "Route name",
786 "busConfig_form_page_line54_txt-3364" : "Please enter pinyin", 786 "busConfig_form_page_line54_txt-3364" : "Please enter pinyin",
787 - "busConfig_form_page_line61_txt-1788" : "Line must be selected", 787 + "busConfig_form_page_line61_txt-1788" : "Line must be selected",
788 "busConfig_form_page_line65_txt-4009" : "Vehicles", 788 "busConfig_form_page_line65_txt-4009" : "Vehicles",
789 "busConfig_form_page_line75_txt-3364" : "Please enter pinyin", 789 "busConfig_form_page_line75_txt-3364" : "Please enter pinyin",
790 "busConfig_form_page_line88_txt-1794" : "Vehicle must be selected", 790 "busConfig_form_page_line88_txt-1794" : "Vehicle must be selected",