Commit 0e19ca28225557b3e28584783f72801dfbd0afcd

Authored by 徐烜
1 parent 4d10ac98

1、国际化改造,排班规则管理后端国际化改造

Too many changes to show.

To preserve performance only 9 of 10 files are displayed.

src/main/java/com/bsth/service/schedule/datatools/ScheduleRule1FlatDataToolsImpl.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 ScheduleRule1FlatDataToolsImpl implements DataToolsService { @@ -35,48 +35,7 @@ public class ScheduleRule1FlatDataToolsImpl 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 ScheduleRule1FlatDataToolsImpl implements DataToolsService { @@ -85,8 +44,17 @@ public class ScheduleRule1FlatDataToolsImpl 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.getScheduleruleDatainputktr()).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.getZhScheduleRuleDataImport()).toURI());
  52 + } else if ("en".equals(country)) {
  53 + ktrFile = new File(this.getClass().getResource(
  54 + dataToolsProperties.getEnScheduleRuleDataImport()).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 ScheduleRule1FlatDataToolsImpl implements DataToolsService { @@ -115,12 +83,21 @@ public class ScheduleRule1FlatDataToolsImpl 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.getScheduleruleOutput()).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.getZhScheduleRuleDataExport()).toURI());
  91 + } else if ("en".equals(country)) {
  92 + ktrFile = new File(this.getClass().getResource(
  93 + dataToolsProperties.getEnScheduleRuleDataExport()).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", "$$$$$${txt-1836}_download-"); 100 + ktrParms.put("filename", I18n.getInstance().getMessage("txt-1836") + "_download-");
124 101
125 ktrParms.putAll(params); 102 ktrParms.putAll(params);
126 103
src/main/java/com/bsth/service/schedule/utils/DataToolsProperties.java
@@ -39,6 +39,54 @@ public class DataToolsProperties { @@ -39,6 +39,54 @@ public class DataToolsProperties {
39 @NotNull 39 @NotNull
40 private String kettleProperties; 40 private String kettleProperties;
41 41
  42 + //---------------------------- 排班规则数据相关ktr(以下)----------------------------//
  43 + /** 排班规则数据导入(英文)*/
  44 + @NotNull
  45 + private String enScheduleRuleDataImport;
  46 + /** 排班规则数据导出(英文)*/
  47 + @NotNull
  48 + private String enScheduleRuleDataExport;
  49 + /** 排班规则数据导入(中文)*/
  50 + @NotNull
  51 + private String zhScheduleRuleDataImport;
  52 + /** 排班规则数据导出(中文)*/
  53 + @NotNull
  54 + private String zhScheduleRuleDataExport;
  55 +
  56 + public String getEnScheduleRuleDataImport() {
  57 + return enScheduleRuleDataImport;
  58 + }
  59 +
  60 + public void setEnScheduleRuleDataImport(String enScheduleRuleDataImport) {
  61 + this.enScheduleRuleDataImport = enScheduleRuleDataImport;
  62 + }
  63 +
  64 + public String getEnScheduleRuleDataExport() {
  65 + return enScheduleRuleDataExport;
  66 + }
  67 +
  68 + public void setEnScheduleRuleDataExport(String enScheduleRuleDataExport) {
  69 + this.enScheduleRuleDataExport = enScheduleRuleDataExport;
  70 + }
  71 +
  72 + public String getZhScheduleRuleDataImport() {
  73 + return zhScheduleRuleDataImport;
  74 + }
  75 +
  76 + public void setZhScheduleRuleDataImport(String zhScheduleRuleDataImport) {
  77 + this.zhScheduleRuleDataImport = zhScheduleRuleDataImport;
  78 + }
  79 +
  80 + public String getZhScheduleRuleDataExport() {
  81 + return zhScheduleRuleDataExport;
  82 + }
  83 +
  84 + public void setZhScheduleRuleDataExport(String zhScheduleRuleDataExport) {
  85 + this.zhScheduleRuleDataExport = zhScheduleRuleDataExport;
  86 + }
  87 + //---------------------------- 排班规则数据相关ktr(以上)----------------------------//
  88 +
  89 +
42 //---------------------------- 人员配置数据相关ktr(以下)----------------------------// 90 //---------------------------- 人员配置数据相关ktr(以下)----------------------------//
43 /** 人员配置数据导入(英文)*/ 91 /** 人员配置数据导入(英文)*/
44 @NotNull 92 @NotNull
@@ -306,9 +354,6 @@ public class DataToolsProperties { @@ -306,9 +354,6 @@ public class DataToolsProperties {
306 /** 时刻表明细信息导入2,一般格式(路牌列后加一列工时列)参看 TimetableExcelFormatType */ 354 /** 时刻表明细信息导入2,一般格式(路牌列后加一列工时列)参看 TimetableExcelFormatType */
307 @NotNull 355 @NotNull
308 private String ttinfodetailDatainputktr2normalwithgs; 356 private String ttinfodetailDatainputktr2normalwithgs;
309 - /** 排班规则信息导入 */  
310 - @NotNull  
311 - private String scheduleruleDatainputktr;  
312 357
313 358
314 //------------------------- 导出数据ktr --------------------------// 359 //------------------------- 导出数据ktr --------------------------//
@@ -318,9 +363,6 @@ public class DataToolsProperties { @@ -318,9 +363,6 @@ public class DataToolsProperties {
318 /** 时刻表导出数据ktr转换 */ 363 /** 时刻表导出数据ktr转换 */
319 @NotNull 364 @NotNull
320 private String ttinfodetailOutput; 365 private String ttinfodetailOutput;
321 - @NotNull  
322 - /** 排版规则导出数据ktr转换 */  
323 - private String scheduleruleOutput;  
324 366
325 //------------------------ 数据同步ktr -----------------------// 367 //------------------------ 数据同步ktr -----------------------//
326 @NotNull 368 @NotNull
@@ -368,14 +410,6 @@ public class DataToolsProperties { @@ -368,14 +410,6 @@ public class DataToolsProperties {
368 this.ttinfodetailDatainputktr = ttinfodetailDatainputktr; 410 this.ttinfodetailDatainputktr = ttinfodetailDatainputktr;
369 } 411 }
370 412
371 - public String getScheduleruleDatainputktr() {  
372 - return scheduleruleDatainputktr;  
373 - }  
374 -  
375 - public void setScheduleruleDatainputktr(String scheduleruleDatainputktr) {  
376 - this.scheduleruleDatainputktr = scheduleruleDatainputktr;  
377 - }  
378 -  
379 public String getKettleProperties() { 413 public String getKettleProperties() {
380 return kettleProperties; 414 return kettleProperties;
381 } 415 }
@@ -424,14 +458,6 @@ public class DataToolsProperties { @@ -424,14 +458,6 @@ public class DataToolsProperties {
424 this.ttinfodetailOutput = ttinfodetailOutput; 458 this.ttinfodetailOutput = ttinfodetailOutput;
425 } 459 }
426 460
427 - public String getScheduleruleOutput() {  
428 - return scheduleruleOutput;  
429 - }  
430 -  
431 - public void setScheduleruleOutput(String scheduleruleOutput) {  
432 - this.scheduleruleOutput = scheduleruleOutput;  
433 - }  
434 -  
435 public String getTtinfodetailDatainputktr2version() { 461 public String getTtinfodetailDatainputktr2version() {
436 return ttinfodetailDatainputktr2version; 462 return ttinfodetailDatainputktr2version;
437 } 463 }
src/main/resources/datatools/config-cloud.properties
@@ -53,6 +53,13 @@ datatools.zh_employee_config_data_import=/datatools/ktrs/zh/employee-config-data @@ -53,6 +53,13 @@ datatools.zh_employee_config_data_import=/datatools/ktrs/zh/employee-config-data
53 datatools.zh_employee_config_data_export=/datatools/ktrs/zh/employee-config-data_export.ktr 53 datatools.zh_employee_config_data_export=/datatools/ktrs/zh/employee-config-data_export.ktr
54 ##---------------------------- 人员配置数据相关ktr(以上)----------------------------## 54 ##---------------------------- 人员配置数据相关ktr(以上)----------------------------##
55 55
  56 +##---------------------------- 排班规则数据相关ktr(以下)----------------------------##
  57 +datatools.en_schedule_rule_data_import=/datatools/ktrs/en/schedule-rule-data_import.ktr
  58 +datatools.en_schedule_rule_data_export=/datatools/ktrs/en/schedule-rule-data_export.ktr
  59 +datatools.zh_schedule_rule_data_import=/datatools/ktrs/zh/schedule-rule-data_import.ktr
  60 +datatools.zh_schedule_rule_data_export=/datatools/ktrs/zh/schedule-rule-data_export.ktr
  61 +##---------------------------- 排班规则数据相关ktr(以上)----------------------------##
  62 +
56 63
57 ##---------------------------- 导入数据ktr ----------------------------## 64 ##---------------------------- 导入数据ktr ----------------------------##
58 # 时刻表基础信息导入 65 # 时刻表基础信息导入
@@ -72,17 +79,12 @@ datatools.ttinfodetail_datainputktr2version2=/datatools/ktrs/ttinfodetailDataInp @@ -72,17 +79,12 @@ datatools.ttinfodetail_datainputktr2version2=/datatools/ktrs/ttinfodetailDataInp
72 # 时刻表明细信息导入2,一般格式(路牌列后加一列工时列) 79 # 时刻表明细信息导入2,一般格式(路牌列后加一列工时列)
73 datatools.ttinfodetail_datainputktr2normalwithgs=/datatools/ktrs/ttinfodetailDataInput2_normalwithgs.ktr 80 datatools.ttinfodetail_datainputktr2normalwithgs=/datatools/ktrs/ttinfodetailDataInput2_normalwithgs.ktr
74 81
75 -# 排版规则信息导入  
76 -datatools.schedulerule_datainputktr=/datatools/ktrs/scheduleRuleDataInput.ktr  
77 -  
78 82
79 ##---------------------------- 导出数据ktr -----------------------------## 83 ##---------------------------- 导出数据ktr -----------------------------##
80 # 时刻表导出元数据ktr转换 84 # 时刻表导出元数据ktr转换
81 datatools.ttinfodetail_metaoutput=/datatools/ktrs/ttinfodetailDataOutputMetaData.ktr 85 datatools.ttinfodetail_metaoutput=/datatools/ktrs/ttinfodetailDataOutputMetaData.ktr
82 # 时刻表导出数据ktr转换 86 # 时刻表导出数据ktr转换
83 datatools.ttinfodetail_output=/datatools/ktrs/ttinfodetailDataOutput.ktr 87 datatools.ttinfodetail_output=/datatools/ktrs/ttinfodetailDataOutput.ktr
84 -# 排版规则导出数据ktr转换  
85 -datatools.schedulerule_output=/datatools/ktrs/scheduleRuleDataOutput.ktr  
86 88
87 ##--------------------------- 数据同步ktr ------------------------## 89 ##--------------------------- 数据同步ktr ------------------------##
88 datatools.vehicle_datasyncktr=/datatools/ktrs/vehicleDataSync.ktr 90 datatools.vehicle_datasyncktr=/datatools/ktrs/vehicleDataSync.ktr
src/main/resources/datatools/config-dev.properties
@@ -52,6 +52,13 @@ datatools.zh_employee_config_data_import=/datatools/ktrs/zh/employee-config-data @@ -52,6 +52,13 @@ datatools.zh_employee_config_data_import=/datatools/ktrs/zh/employee-config-data
52 datatools.zh_employee_config_data_export=/datatools/ktrs/zh/employee-config-data_export.ktr 52 datatools.zh_employee_config_data_export=/datatools/ktrs/zh/employee-config-data_export.ktr
53 ##---------------------------- 人员配置数据相关ktr(以上)----------------------------## 53 ##---------------------------- 人员配置数据相关ktr(以上)----------------------------##
54 54
  55 +##---------------------------- 排班规则数据相关ktr(以下)----------------------------##
  56 +datatools.en_schedule_rule_data_import=/datatools/ktrs/en/schedule-rule-data_import.ktr
  57 +datatools.en_schedule_rule_data_export=/datatools/ktrs/en/schedule-rule-data_export.ktr
  58 +datatools.zh_schedule_rule_data_import=/datatools/ktrs/zh/schedule-rule-data_import.ktr
  59 +datatools.zh_schedule_rule_data_export=/datatools/ktrs/zh/schedule-rule-data_export.ktr
  60 +##---------------------------- 排班规则数据相关ktr(以上)----------------------------##
  61 +
55 62
56 ##---------------------------- 导入数据ktr ----------------------------## 63 ##---------------------------- 导入数据ktr ----------------------------##
57 # 时刻表基础信息导入 64 # 时刻表基础信息导入
@@ -71,16 +78,11 @@ datatools.ttinfodetail_datainputktr2version2=/datatools/ktrs/ttinfodetailDataInp @@ -71,16 +78,11 @@ datatools.ttinfodetail_datainputktr2version2=/datatools/ktrs/ttinfodetailDataInp
71 # 时刻表明细信息导入2,一般格式(路牌列后加一列工时列) 78 # 时刻表明细信息导入2,一般格式(路牌列后加一列工时列)
72 datatools.ttinfodetail_datainputktr2normalwithgs=/datatools/ktrs/ttinfodetailDataInput2_normalwithgs.ktr 79 datatools.ttinfodetail_datainputktr2normalwithgs=/datatools/ktrs/ttinfodetailDataInput2_normalwithgs.ktr
73 80
74 -# 排版规则信息导入  
75 -datatools.schedulerule_datainputktr=/datatools/ktrs/scheduleRuleDataInput.ktr  
76 -  
77 ##---------------------------- 导出数据ktr -----------------------------## 81 ##---------------------------- 导出数据ktr -----------------------------##
78 # 时刻表导出元数据ktr转换 82 # 时刻表导出元数据ktr转换
79 datatools.ttinfodetail_metaoutput=/datatools/ktrs/ttinfodetailDataOutputMetaData.ktr 83 datatools.ttinfodetail_metaoutput=/datatools/ktrs/ttinfodetailDataOutputMetaData.ktr
80 # 时刻表导出数据ktr转换 84 # 时刻表导出数据ktr转换
81 datatools.ttinfodetail_output=/datatools/ktrs/ttinfodetailDataOutput.ktr 85 datatools.ttinfodetail_output=/datatools/ktrs/ttinfodetailDataOutput.ktr
82 -# 排版规则导出数据ktr转换  
83 -datatools.schedulerule_output=/datatools/ktrs/scheduleRuleDataOutput.ktr  
84 86
85 87
86 ##--------------------------- 数据同步ktr ------------------------## 88 ##--------------------------- 数据同步ktr ------------------------##
src/main/resources/datatools/config-prod.properties
@@ -53,6 +53,13 @@ datatools.zh_employee_config_data_import=/datatools/ktrs/zh/employee-config-data @@ -53,6 +53,13 @@ datatools.zh_employee_config_data_import=/datatools/ktrs/zh/employee-config-data
53 datatools.zh_employee_config_data_export=/datatools/ktrs/zh/employee-config-data_export.ktr 53 datatools.zh_employee_config_data_export=/datatools/ktrs/zh/employee-config-data_export.ktr
54 ##---------------------------- 人员配置数据相关ktr(以上)----------------------------## 54 ##---------------------------- 人员配置数据相关ktr(以上)----------------------------##
55 55
  56 +##---------------------------- 排班规则数据相关ktr(以下)----------------------------##
  57 +datatools.en_schedule_rule_data_import=/datatools/ktrs/en/schedule-rule-data_import.ktr
  58 +datatools.en_schedule_rule_data_export=/datatools/ktrs/en/schedule-rule-data_export.ktr
  59 +datatools.zh_schedule_rule_data_import=/datatools/ktrs/zh/schedule-rule-data_import.ktr
  60 +datatools.zh_schedule_rule_data_export=/datatools/ktrs/zh/schedule-rule-data_export.ktr
  61 +##---------------------------- 排班规则数据相关ktr(以上)----------------------------##
  62 +
56 63
57 ##---------------------------- 导入数据ktr ----------------------------## 64 ##---------------------------- 导入数据ktr ----------------------------##
58 # 时刻表基础信息导入 65 # 时刻表基础信息导入
@@ -72,17 +79,12 @@ datatools.ttinfodetail_datainputktr2version2=/datatools/ktrs/ttinfodetailDataInp @@ -72,17 +79,12 @@ datatools.ttinfodetail_datainputktr2version2=/datatools/ktrs/ttinfodetailDataInp
72 # 时刻表明细信息导入2,一般格式(路牌列后加一列工时列) 79 # 时刻表明细信息导入2,一般格式(路牌列后加一列工时列)
73 datatools.ttinfodetail_datainputktr2normalwithgs=/datatools/ktrs/ttinfodetailDataInput2_normalwithgs.ktr 80 datatools.ttinfodetail_datainputktr2normalwithgs=/datatools/ktrs/ttinfodetailDataInput2_normalwithgs.ktr
74 81
75 -# 排版规则信息导入  
76 -datatools.schedulerule_datainputktr=/datatools/ktrs/scheduleRuleDataInput.ktr  
77 -  
78 82
79 ##---------------------------- 导出数据ktr -----------------------------## 83 ##---------------------------- 导出数据ktr -----------------------------##
80 # 时刻表导出元数据ktr转换 84 # 时刻表导出元数据ktr转换
81 datatools.ttinfodetail_metaoutput=/datatools/ktrs/ttinfodetailDataOutputMetaData.ktr 85 datatools.ttinfodetail_metaoutput=/datatools/ktrs/ttinfodetailDataOutputMetaData.ktr
82 # 时刻表导出数据ktr转换 86 # 时刻表导出数据ktr转换
83 datatools.ttinfodetail_output=/datatools/ktrs/ttinfodetailDataOutput.ktr 87 datatools.ttinfodetail_output=/datatools/ktrs/ttinfodetailDataOutput.ktr
84 -# 排版规则导出数据ktr转换  
85 -datatools.schedulerule_output=/datatools/ktrs/scheduleRuleDataOutput.ktr  
86 88
87 ##--------------------------- 数据同步ktr ------------------------## 89 ##--------------------------- 数据同步ktr ------------------------##
88 datatools.vehicle_datasyncktr=/datatools/ktrs/vehicleDataSync.ktr 90 datatools.vehicle_datasyncktr=/datatools/ktrs/vehicleDataSync.ktr
src/main/resources/datatools/config-test.properties
@@ -54,6 +54,13 @@ datatools.zh_employee_config_data_import=/datatools/ktrs/zh/employee-config-data @@ -54,6 +54,13 @@ datatools.zh_employee_config_data_import=/datatools/ktrs/zh/employee-config-data
54 datatools.zh_employee_config_data_export=/datatools/ktrs/zh/employee-config-data_export.ktr 54 datatools.zh_employee_config_data_export=/datatools/ktrs/zh/employee-config-data_export.ktr
55 ##---------------------------- 人员配置数据相关ktr(以上)----------------------------## 55 ##---------------------------- 人员配置数据相关ktr(以上)----------------------------##
56 56
  57 +##---------------------------- 排班规则数据相关ktr(以下)----------------------------##
  58 +datatools.en_schedule_rule_data_import=/datatools/ktrs/en/schedule-rule-data_import.ktr
  59 +datatools.en_schedule_rule_data_export=/datatools/ktrs/en/schedule-rule-data_export.ktr
  60 +datatools.zh_schedule_rule_data_import=/datatools/ktrs/zh/schedule-rule-data_import.ktr
  61 +datatools.zh_schedule_rule_data_export=/datatools/ktrs/zh/schedule-rule-data_export.ktr
  62 +##---------------------------- 排班规则数据相关ktr(以上)----------------------------##
  63 +
57 64
58 ##---------------------------- 导入数据ktr ----------------------------## 65 ##---------------------------- 导入数据ktr ----------------------------##
59 # 时刻表基础信息导入 66 # 时刻表基础信息导入
@@ -73,16 +80,11 @@ datatools.ttinfodetail_datainputktr2version2=/datatools/ktrs/ttinfodetailDataInp @@ -73,16 +80,11 @@ datatools.ttinfodetail_datainputktr2version2=/datatools/ktrs/ttinfodetailDataInp
73 # 时刻表明细信息导入2,一般格式(路牌列后加一列工时列) 80 # 时刻表明细信息导入2,一般格式(路牌列后加一列工时列)
74 datatools.ttinfodetail_datainputktr2normalwithgs=/datatools/ktrs/ttinfodetailDataInput2_normalwithgs.ktr 81 datatools.ttinfodetail_datainputktr2normalwithgs=/datatools/ktrs/ttinfodetailDataInput2_normalwithgs.ktr
75 82
76 -# 排版规则信息导入  
77 -datatools.schedulerule_datainputktr=/datatools/ktrs/scheduleRuleDataInput.ktr  
78 -  
79 ##---------------------------- 导出数据ktr -----------------------------## 83 ##---------------------------- 导出数据ktr -----------------------------##
80 # 时刻表导出元数据ktr转换 84 # 时刻表导出元数据ktr转换
81 datatools.ttinfodetail_metaoutput=/datatools/ktrs/ttinfodetailDataOutputMetaData.ktr 85 datatools.ttinfodetail_metaoutput=/datatools/ktrs/ttinfodetailDataOutputMetaData.ktr
82 # 时刻表导出数据ktr转换 86 # 时刻表导出数据ktr转换
83 datatools.ttinfodetail_output=/datatools/ktrs/ttinfodetailDataOutput.ktr 87 datatools.ttinfodetail_output=/datatools/ktrs/ttinfodetailDataOutput.ktr
84 -# 排版规则导出数据ktr转换  
85 -datatools.schedulerule_output=/datatools/ktrs/scheduleRuleDataOutput.ktr  
86 88
87 ##--------------------------- 数据同步ktr ------------------------## 89 ##--------------------------- 数据同步ktr ------------------------##
88 datatools.vehicle_datasyncktr=/datatools/ktrs/vehicleDataSync.ktr 90 datatools.vehicle_datasyncktr=/datatools/ktrs/vehicleDataSync.ktr
src/main/resources/datatools/ktrs/en/schedule-rule-data_export.ktr 0 → 100644
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<transformation>
  3 + <info>
  4 + <name>&#x6392;&#x73ed;&#x89c4;&#x5219;&#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>&#x2f;Users&#x2f;xu&#x2f;resource&#x2f;project_code&#x2f;runtime_temp&#x2f;bsth_control_u_d_files&#x2f;test.xls</default_value>
  15 + <description>excel&#x6587;&#x4ef6;&#x8def;&#x5f84;</description>
  16 + </parameter>
  17 + <parameter>
  18 + <name>templatepath</name>
  19 + <default_value>&#x2f;Users&#x2f;xu&#x2f;resource&#x2f;project_code&#x2f;runtime_temp&#x2f;bsth_control_u_d_files&#x2f;template</default_value>
  20 + <description>&#x6a21;&#x7248;&#x6587;&#x4ef6;&#x8def;&#x5f84;</description>
  21 + </parameter>
  22 + <parameter>
  23 + <name>xlid</name>
  24 + <default_value>115</default_value>
  25 + <description>&#x7ebf;&#x8def;id</description>
  26 + </parameter>
  27 + </parameters>
  28 + <log>
  29 +<trans-log-table><connection/>
  30 +<schema/>
  31 +<table/>
  32 +<size_limit_lines/>
  33 +<interval/>
  34 +<timeout_days/>
  35 +<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>
  36 +<perf-log-table><connection/>
  37 +<schema/>
  38 +<table/>
  39 +<interval/>
  40 +<timeout_days/>
  41 +<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>
  42 +<channel-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>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>
  47 +<step-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>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>
  52 +<metrics-log-table><connection/>
  53 +<schema/>
  54 +<table/>
  55 +<timeout_days/>
  56 +<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>
  57 + </log>
  58 + <maxdate>
  59 + <connection/>
  60 + <table/>
  61 + <field/>
  62 + <offset>0.0</offset>
  63 + <maxdiff>0.0</maxdiff>
  64 + </maxdate>
  65 + <size_rowset>10000</size_rowset>
  66 + <sleep_time_empty>50</sleep_time_empty>
  67 + <sleep_time_full>50</sleep_time_full>
  68 + <unique_connections>N</unique_connections>
  69 + <feedback_shown>Y</feedback_shown>
  70 + <feedback_size>50000</feedback_size>
  71 + <using_thread_priorities>Y</using_thread_priorities>
  72 + <shared_objects_file/>
  73 + <capture_step_performance>N</capture_step_performance>
  74 + <step_performance_capturing_delay>1000</step_performance_capturing_delay>
  75 + <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit>
  76 + <dependencies>
  77 + </dependencies>
  78 + <partitionschemas>
  79 + </partitionschemas>
  80 + <slaveservers>
  81 + </slaveservers>
  82 + <clusterschemas>
  83 + </clusterschemas>
  84 + <created_user>-</created_user>
  85 + <created_date>2017&#x2f;01&#x2f;09 13&#x3a;35&#x3a;19.384</created_date>
  86 + <modified_user>-</modified_user>
  87 + <modified_date>2017&#x2f;01&#x2f;09 13&#x3a;35&#x3a;19.384</modified_date>
  88 + <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA&#x3d;</key_for_session_key>
  89 + <is_key_private>N</is_key_private>
  90 + </info>
  91 + <notepads>
  92 + <notepad>
  93 + <note>&#x8fd9;&#x91cc;&#x6709;&#x4e9b;&#x95ee;&#x9898;&#xa;&#x5728;window2012&#x7684;&#x73af;&#x5883;&#x4e0b;&#xff0c;&#xa;MySql&#x6570;&#x636e;&#x5e93;&#x67e5;&#x8be2;&#x4e2d;&#x5982;&#x679c;&#x8fd4;&#x56de;&#x4e2d;&#x6587;&#x5185;&#x5bb9;&#x7684;&#x5b57;&#x6bb5;&#xff0c;&#x8fd9;&#x4e2a;&#x5185;&#x5bb9;&#x4e71;&#x7801;&#xa;&#x89e3;&#x51b3;&#x529e;&#x6cd5;&#xff0c;&#x5c31;&#x662f;&#x6570;&#x636e;&#x5e93;&#x67e5;&#x8be2;&#x5168;&#x90e8;&#x7f13;&#x5b58;&#xff0c;&#x5c31;&#x4e0d;&#x4e71;&#x7801;&#xa;linux&#x73af;&#x5883;&#x4e0b;&#x6ca1;&#x95ee;&#x9898;</note>
  94 + <xloc>118</xloc>
  95 + <yloc>158</yloc>
  96 + <width>333</width>
  97 + <heigth>90</heigth>
  98 + <fontname>YaHei Consolas Hybrid</fontname>
  99 + <fontsize>12</fontsize>
  100 + <fontbold>N</fontbold>
  101 + <fontitalic>N</fontitalic>
  102 + <fontcolorred>0</fontcolorred>
  103 + <fontcolorgreen>0</fontcolorgreen>
  104 + <fontcolorblue>0</fontcolorblue>
  105 + <backgroundcolorred>255</backgroundcolorred>
  106 + <backgroundcolorgreen>205</backgroundcolorgreen>
  107 + <backgroundcolorblue>112</backgroundcolorblue>
  108 + <bordercolorred>100</bordercolorred>
  109 + <bordercolorgreen>100</bordercolorgreen>
  110 + <bordercolorblue>100</bordercolorblue>
  111 + <drawshadow>Y</drawshadow>
  112 + </notepad>
  113 + <notepad>
  114 + <note>Excel output &#x6b65;&#x9aa4;&#xa;&#x4f7f;&#x7528;&#x6a21;&#x7248;&#x4f1a;&#x62a5;&#x9519;&#xff0c;&#xa;PDI-5031&#xa;&#xa;Excel writer &#x4e0d;&#x77e5;&#x9053;&#x62a5;&#x4e0d;&#x62a5;&#x9519;&#xa;</note>
  115 + <xloc>806</xloc>
  116 + <yloc>315</yloc>
  117 + <width>185</width>
  118 + <heigth>106</heigth>
  119 + <fontname>YaHei Consolas Hybrid</fontname>
  120 + <fontsize>12</fontsize>
  121 + <fontbold>N</fontbold>
  122 + <fontitalic>N</fontitalic>
  123 + <fontcolorred>0</fontcolorred>
  124 + <fontcolorgreen>0</fontcolorgreen>
  125 + <fontcolorblue>0</fontcolorblue>
  126 + <backgroundcolorred>255</backgroundcolorred>
  127 + <backgroundcolorgreen>205</backgroundcolorgreen>
  128 + <backgroundcolorblue>112</backgroundcolorblue>
  129 + <bordercolorred>100</bordercolorred>
  130 + <bordercolorgreen>100</bordercolorgreen>
  131 + <bordercolorblue>100</bordercolorblue>
  132 + <drawshadow>Y</drawshadow>
  133 + </notepad>
  134 + <notepad>
  135 + <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;&#x5185;&#x90e8;&#x7f16;&#x7801; internal number&#xa;&#x542f;&#x7528;&#x65e5;&#x671f; activation date&#xa;&#x8d77;&#x59cb;&#x8def;&#x724c; starting road sign&#xa;&#x8def;&#x724c;&#x8303;&#x56f4; road sign range&#xa;&#x8d77;&#x59cb;&#x4eba;&#x5458; starting staff&#xa;&#x4eba;&#x5458;&#x8303;&#x56f4; staff range&#xa;&#x7ffb;&#x73ed;&#x683c;&#x5f0f; shift format</note>
  136 + <xloc>121</xloc>
  137 + <yloc>282</yloc>
  138 + <width>261</width>
  139 + <heigth>170</heigth>
  140 + <fontname>YaHei Consolas Hybrid</fontname>
  141 + <fontsize>12</fontsize>
  142 + <fontbold>N</fontbold>
  143 + <fontitalic>N</fontitalic>
  144 + <fontcolorred>0</fontcolorred>
  145 + <fontcolorgreen>0</fontcolorgreen>
  146 + <fontcolorblue>0</fontcolorblue>
  147 + <backgroundcolorred>255</backgroundcolorred>
  148 + <backgroundcolorgreen>205</backgroundcolorgreen>
  149 + <backgroundcolorblue>112</backgroundcolorblue>
  150 + <bordercolorred>100</bordercolorred>
  151 + <bordercolorgreen>100</bordercolorgreen>
  152 + <bordercolorblue>100</bordercolorblue>
  153 + <drawshadow>Y</drawshadow>
  154 + </notepad>
  155 + </notepads>
  156 + <connection>
  157 + <name>192.168.168.1_jwgl_dw</name>
  158 + <server>192.168.168.1</server>
  159 + <type>ORACLE</type>
  160 + <access>Native</access>
  161 + <database>orcl</database>
  162 + <port>1521</port>
  163 + <username>jwgl_dw</username>
  164 + <password>Encrypted 2be98afc86aa7f2e4cb13b977d2adabcd</password>
  165 + <servername/>
  166 + <data_tablespace/>
  167 + <index_tablespace/>
  168 + <attributes>
  169 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  170 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  171 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  172 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  173 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  174 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  175 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  176 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  177 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  178 + </attributes>
  179 + </connection>
  180 + <connection>
  181 + <name>bus_control_variable</name>
  182 + <server>&#x24;&#x7b;v_db_ip&#x7d;</server>
  183 + <type>MYSQL</type>
  184 + <access>Native</access>
  185 + <database>&#x24;&#x7b;v_db_dname&#x7d;</database>
  186 + <port>3306</port>
  187 + <username>&#x24;&#x7b;v_db_uname&#x7d;</username>
  188 + <password>&#x24;&#x7b;v_db_pwd&#x7d;</password>
  189 + <servername/>
  190 + <data_tablespace/>
  191 + <index_tablespace/>
  192 + <attributes>
  193 + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
  194 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  195 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  196 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  197 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  198 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  199 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  200 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  201 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  202 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  203 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  204 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  205 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  206 + </attributes>
  207 + </connection>
  208 + <connection>
  209 + <name>bus_control_&#x516c;&#x53f8;_201</name>
  210 + <server>localhost</server>
  211 + <type>MYSQL</type>
  212 + <access>Native</access>
  213 + <database>control</database>
  214 + <port>3306</port>
  215 + <username>root</username>
  216 + <password>Encrypted </password>
  217 + <servername/>
  218 + <data_tablespace/>
  219 + <index_tablespace/>
  220 + <attributes>
  221 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  222 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  223 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  224 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  225 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  226 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  227 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  228 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  229 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  230 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  231 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  232 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  233 + </attributes>
  234 + </connection>
  235 + <connection>
  236 + <name>bus_control_&#x672c;&#x673a;</name>
  237 + <server>localhost</server>
  238 + <type>MYSQL</type>
  239 + <access>Native</access>
  240 + <database>control</database>
  241 + <port>3306</port>
  242 + <username>root</username>
  243 + <password>Encrypted </password>
  244 + <servername/>
  245 + <data_tablespace/>
  246 + <index_tablespace/>
  247 + <attributes>
  248 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  249 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  250 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  251 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  252 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  253 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  254 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  255 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  256 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  257 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  258 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  259 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  260 + </attributes>
  261 + </connection>
  262 + <connection>
  263 + <name>control_jndi</name>
  264 + <server/>
  265 + <type>MYSQL</type>
  266 + <access>JNDI</access>
  267 + <database>control_jndi</database>
  268 + <port>1521</port>
  269 + <username/>
  270 + <password>Encrypted </password>
  271 + <servername/>
  272 + <data_tablespace/>
  273 + <index_tablespace/>
  274 + <attributes>
  275 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  276 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  277 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  278 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  279 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  280 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  281 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  282 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  283 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  284 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  285 + </attributes>
  286 + </connection>
  287 + <connection>
  288 + <name>JGJW_VM</name>
  289 + <server>192.168.198.240</server>
  290 + <type>ORACLE</type>
  291 + <access>Native</access>
  292 + <database>orcl</database>
  293 + <port>1521</port>
  294 + <username>jwgl</username>
  295 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d485a8d6</password>
  296 + <servername/>
  297 + <data_tablespace/>
  298 + <index_tablespace/>
  299 + <attributes>
  300 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  301 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  302 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  303 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  304 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  305 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  306 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  307 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  308 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  309 + </attributes>
  310 + </connection>
  311 + <connection>
  312 + <name>NHJW_VM</name>
  313 + <server>192.168.198.240</server>
  314 + <type>ORACLE</type>
  315 + <access>Native</access>
  316 + <database>orcl</database>
  317 + <port>1521</port>
  318 + <username>nhjw</username>
  319 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d09aa5cd</password>
  320 + <servername/>
  321 + <data_tablespace/>
  322 + <index_tablespace/>
  323 + <attributes>
  324 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  325 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  326 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  327 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  328 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  329 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  330 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  331 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  332 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  333 + </attributes>
  334 + </connection>
  335 + <connection>
  336 + <name>PDGJ_VM</name>
  337 + <server>192.168.198.240</server>
  338 + <type>ORACLE</type>
  339 + <access>Native</access>
  340 + <database>orcl</database>
  341 + <port>1521</port>
  342 + <username>pdgj</username>
  343 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10ce96a8d0</password>
  344 + <servername/>
  345 + <data_tablespace/>
  346 + <index_tablespace/>
  347 + <attributes>
  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>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  355 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  356 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  357 + </attributes>
  358 + </connection>
  359 + <connection>
  360 + <name>repair_dw_mysql_jndi</name>
  361 + <server/>
  362 + <type>MYSQL</type>
  363 + <access>JNDI</access>
  364 + <database>repair_dw_mysql</database>
  365 + <port>1521</port>
  366 + <username/>
  367 + <password>Encrypted </password>
  368 + <servername/>
  369 + <data_tablespace/>
  370 + <index_tablespace/>
  371 + <attributes>
  372 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  373 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  374 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  375 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  376 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  377 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  378 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  379 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  380 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  381 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  382 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  383 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  384 + </attributes>
  385 + </connection>
  386 + <connection>
  387 + <name>repair_dw&#xff08;&#x672c;&#x673a;&#xff09;</name>
  388 + <server>localhost</server>
  389 + <type>MYSQL</type>
  390 + <access>Native</access>
  391 + <database>ruoyi-vue-3.5</database>
  392 + <port>3306</port>
  393 + <username>root</username>
  394 + <password>Encrypted </password>
  395 + <servername/>
  396 + <data_tablespace/>
  397 + <index_tablespace/>
  398 + <attributes>
  399 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  400 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  401 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  402 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  403 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  404 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  405 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  406 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  407 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  408 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  409 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  410 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  411 + </attributes>
  412 + </connection>
  413 + <connection>
  414 + <name>repair_real_h2</name>
  415 + <server/>
  416 + <type>H2</type>
  417 + <access>JNDI</access>
  418 + <database>repair_real_h2</database>
  419 + <port>1521</port>
  420 + <username/>
  421 + <password>Encrypted </password>
  422 + <servername/>
  423 + <data_tablespace/>
  424 + <index_tablespace/>
  425 + <attributes>
  426 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  427 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  428 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  429 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  430 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  431 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  432 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  433 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  434 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  435 + </attributes>
  436 + </connection>
  437 + <connection>
  438 + <name>SNJW_VM</name>
  439 + <server>192.168.198.240</server>
  440 + <type>ORACLE</type>
  441 + <access>Native</access>
  442 + <database>orcl</database>
  443 + <port>1521</port>
  444 + <username>snjw</username>
  445 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10cd9ca5cd</password>
  446 + <servername/>
  447 + <data_tablespace/>
  448 + <index_tablespace/>
  449 + <attributes>
  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>1521</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>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  457 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  458 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  459 + </attributes>
  460 + </connection>
  461 + <connection>
  462 + <name>test_control_local</name>
  463 + <server>localhost</server>
  464 + <type>MYSQL</type>
  465 + <access>Native</access>
  466 + <database>test_control</database>
  467 + <port>3306</port>
  468 + <username>root</username>
  469 + <password>Encrypted </password>
  470 + <servername/>
  471 + <data_tablespace/>
  472 + <index_tablespace/>
  473 + <attributes>
  474 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  475 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  476 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  477 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  478 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  479 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  480 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  481 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  482 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  483 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  484 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  485 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  486 + </attributes>
  487 + </connection>
  488 + <connection>
  489 + <name>test_control&#xff08;&#x672c;&#x673a;&#xff09;</name>
  490 + <server>127.0.0.1</server>
  491 + <type>MYSQL</type>
  492 + <access>Native</access>
  493 + <database>test_control</database>
  494 + <port>3306</port>
  495 + <username>root</username>
  496 + <password>Encrypted </password>
  497 + <servername/>
  498 + <data_tablespace/>
  499 + <index_tablespace/>
  500 + <attributes>
  501 + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
  502 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  503 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  504 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  505 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  506 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  507 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  508 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  509 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  510 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  511 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  512 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  513 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  514 + </attributes>
  515 + </connection>
  516 + <connection>
  517 + <name>wzk_mysql_jndi</name>
  518 + <server/>
  519 + <type>MYSQL</type>
  520 + <access>JNDI</access>
  521 + <database>wzk_mysql</database>
  522 + <port>1521</port>
  523 + <username/>
  524 + <password>Encrypted </password>
  525 + <servername/>
  526 + <data_tablespace/>
  527 + <index_tablespace/>
  528 + <attributes>
  529 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  530 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  531 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  532 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  533 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  534 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  535 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  536 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  537 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  538 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  539 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  540 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  541 + </attributes>
  542 + </connection>
  543 + <connection>
  544 + <name>wzk&#xff08;&#x672c;&#x673a;&#xff09;</name>
  545 + <server>localhost</server>
  546 + <type>MYSQL</type>
  547 + <access>Native</access>
  548 + <database>pdgj_wzk_sys</database>
  549 + <port>3306</port>
  550 + <username>root</username>
  551 + <password>Encrypted </password>
  552 + <servername/>
  553 + <data_tablespace/>
  554 + <index_tablespace/>
  555 + <attributes>
  556 + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
  557 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  558 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  559 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  560 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  561 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  562 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  563 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  564 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  565 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  566 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  567 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  568 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  569 + </attributes>
  570 + </connection>
  571 + <connection>
  572 + <name>xlab_mysql_youle</name>
  573 + <server>101.231.124.8</server>
  574 + <type>MYSQL</type>
  575 + <access>Native</access>
  576 + <database>xlab_youle</database>
  577 + <port>45687</port>
  578 + <username>xlab-youle</username>
  579 + <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password>
  580 + <servername/>
  581 + <data_tablespace/>
  582 + <index_tablespace/>
  583 + <attributes>
  584 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  585 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  586 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  587 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  588 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  589 + <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute>
  590 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  591 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  592 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  593 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  594 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  595 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  596 + </attributes>
  597 + </connection>
  598 + <connection>
  599 + <name>xlab_mysql_youle&#xff08;&#x672c;&#x673a;&#xff09;</name>
  600 + <server>localhost</server>
  601 + <type>MYSQL</type>
  602 + <access>Native</access>
  603 + <database>xlab_youle</database>
  604 + <port>3306</port>
  605 + <username>root</username>
  606 + <password>Encrypted </password>
  607 + <servername/>
  608 + <data_tablespace/>
  609 + <index_tablespace/>
  610 + <attributes>
  611 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  612 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  613 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  614 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  615 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  616 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  617 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  618 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  619 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  620 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  621 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  622 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  623 + </attributes>
  624 + </connection>
  625 + <connection>
  626 + <name>xlab_youle</name>
  627 + <server/>
  628 + <type>MYSQL</type>
  629 + <access>JNDI</access>
  630 + <database>xlab_youle</database>
  631 + <port>1521</port>
  632 + <username/>
  633 + <password>Encrypted </password>
  634 + <servername/>
  635 + <data_tablespace/>
  636 + <index_tablespace/>
  637 + <attributes>
  638 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  639 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  640 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  641 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  642 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  643 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  644 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  645 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  646 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  647 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  648 + </attributes>
  649 + </connection>
  650 + <connection>
  651 + <name>YGJW_VM</name>
  652 + <server>192.168.198.240</server>
  653 + <type>ORACLE</type>
  654 + <access>Native</access>
  655 + <database>orcl</database>
  656 + <port>1521</port>
  657 + <username>ygjw</username>
  658 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10c795a5cd</password>
  659 + <servername/>
  660 + <data_tablespace/>
  661 + <index_tablespace/>
  662 + <attributes>
  663 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  664 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  665 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  666 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  667 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  668 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  669 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  670 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  671 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  672 + </attributes>
  673 + </connection>
  674 + <connection>
  675 + <name>&#x516c;&#x53f8;jgjw</name>
  676 + <server>192.168.168.1</server>
  677 + <type>ORACLE</type>
  678 + <access>Native</access>
  679 + <database>orcl</database>
  680 + <port>1521</port>
  681 + <username>jwgl</username>
  682 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d485a8d6</password>
  683 + <servername/>
  684 + <data_tablespace/>
  685 + <index_tablespace/>
  686 + <attributes>
  687 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  688 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  689 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  690 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  691 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  692 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  693 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  694 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  695 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  696 + </attributes>
  697 + </connection>
  698 + <connection>
  699 + <name>&#x516c;&#x53f8;snjw</name>
  700 + <server>192.168.168.1</server>
  701 + <type>ORACLE</type>
  702 + <access>Native</access>
  703 + <database>orcl</database>
  704 + <port>1521</port>
  705 + <username>snjw</username>
  706 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10cd9ca5cd</password>
  707 + <servername/>
  708 + <data_tablespace/>
  709 + <index_tablespace/>
  710 + <attributes>
  711 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  712 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  713 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  714 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  715 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  716 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  717 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  718 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  719 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  720 + </attributes>
  721 + </connection>
  722 + <connection>
  723 + <name>&#x516c;&#x53f8;ygjw</name>
  724 + <server>192.168.168.178</server>
  725 + <type>ORACLE</type>
  726 + <access>Native</access>
  727 + <database>orcl</database>
  728 + <port>1521</port>
  729 + <username>ygjw</username>
  730 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10c795a5cd</password>
  731 + <servername/>
  732 + <data_tablespace/>
  733 + <index_tablespace/>
  734 + <attributes>
  735 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  736 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  737 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  738 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  739 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  740 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  741 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  742 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  743 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  744 + </attributes>
  745 + </connection>
  746 + <connection>
  747 + <name>&#x516c;&#x53f8;&#x673a;&#x52a1;_pdgj</name>
  748 + <server>192.168.168.178</server>
  749 + <type>ORACLE</type>
  750 + <access>Native</access>
  751 + <database>orcl</database>
  752 + <port>1521</port>
  753 + <username>pdgj</username>
  754 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10ce96a8d0</password>
  755 + <servername/>
  756 + <data_tablespace/>
  757 + <index_tablespace/>
  758 + <attributes>
  759 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  760 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  761 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  762 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  763 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  764 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  765 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  766 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  767 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  768 + </attributes>
  769 + </connection>
  770 + <connection>
  771 + <name>&#x5916;&#x7f51;vpn&#x4e34;&#x6e2f;&#x673a;&#x52a1;oracle</name>
  772 + <server>10.10.150.114</server>
  773 + <type>ORACLE</type>
  774 + <access>Native</access>
  775 + <database>helowin</database>
  776 + <port>1521</port>
  777 + <username>lgjw</username>
  778 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d295a5cd</password>
  779 + <servername/>
  780 + <data_tablespace/>
  781 + <index_tablespace/>
  782 + <attributes>
  783 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  784 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  785 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  786 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  787 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  788 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  789 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  790 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  791 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  792 + </attributes>
  793 + </connection>
  794 + <connection>
  795 + <name>&#x5916;&#x7f51;&#x5357;&#x6c47;&#x673a;&#x52a1;oracle</name>
  796 + <server>58.247.254.118</server>
  797 + <type>ORACLE</type>
  798 + <access>Native</access>
  799 + <database>orcl</database>
  800 + <port>15211</port>
  801 + <username>nhjw</username>
  802 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d09aa5cd</password>
  803 + <servername/>
  804 + <data_tablespace/>
  805 + <index_tablespace/>
  806 + <attributes>
  807 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  808 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  809 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  810 + <attribute><code>PORT_NUMBER</code><attribute>15211</attribute></attribute>
  811 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  812 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  813 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  814 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  815 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  816 + </attributes>
  817 + </connection>
  818 + <connection>
  819 + <name>&#x5916;&#x7f51;&#x6768;&#x9ad8;&#x673a;&#x52a1;oracle</name>
  820 + <server>58.247.254.118</server>
  821 + <type>ORACLE</type>
  822 + <access>Native</access>
  823 + <database>orcl</database>
  824 + <port>15211</port>
  825 + <username>ygjw</username>
  826 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10c795a5cd</password>
  827 + <servername/>
  828 + <data_tablespace/>
  829 + <index_tablespace/>
  830 + <attributes>
  831 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  832 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  833 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  834 + <attribute><code>PORT_NUMBER</code><attribute>15211</attribute></attribute>
  835 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  836 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  837 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  838 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  839 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  840 + </attributes>
  841 + </connection>
  842 + <connection>
  843 + <name>&#x5916;&#x7f51;&#x91d1;&#x9ad8;&#x673a;&#x52a1;oracle</name>
  844 + <server>58.247.254.118</server>
  845 + <type>ORACLE</type>
  846 + <access>Native</access>
  847 + <database>orcl</database>
  848 + <port>15211</port>
  849 + <username>jwgl</username>
  850 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d485a8d6</password>
  851 + <servername/>
  852 + <data_tablespace/>
  853 + <index_tablespace/>
  854 + <attributes>
  855 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  856 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  857 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  858 + <attribute><code>PORT_NUMBER</code><attribute>15211</attribute></attribute>
  859 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  860 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  861 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  862 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  863 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  864 + </attributes>
  865 + </connection>
  866 + <order>
  867 + <hop> <from>&#x6392;&#x7248;&#x89c4;&#x5219;</from><to>&#x7ebf;&#x8def;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>
  868 + <hop> <from>&#x7ebf;&#x8def;&#x67e5;&#x8be2;</from><to>&#x8f66;&#x8f86;&#x914d;&#x7f6e;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>
  869 + <hop> <from>&#x8f66;&#x8f86;&#x914d;&#x7f6e;&#x67e5;&#x8be2;</from><to>&#x8f66;&#x8f86;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>
  870 + <hop> <from>&#x8f66;&#x8f86;&#x67e5;&#x8be2;</from><to>&#x683c;&#x5f0f;&#x5316;&#x65e5;&#x671f;</to><enabled>Y</enabled> </hop>
  871 + <hop> <from>&#x683c;&#x5f0f;&#x5316;&#x65e5;&#x671f;</from><to>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</to><enabled>Y</enabled> </hop>
  872 + <hop> <from>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</from><to>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</to><enabled>Y</enabled> </hop>
  873 + <hop> <from>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</from><to>Microsoft Excel &#x8f93;&#x51fa;</to><enabled>Y</enabled> </hop>
  874 + </order>
  875 + <step>
  876 + <name>Microsoft Excel &#x8f93;&#x51fa;</name>
  877 + <type>TypeExitExcelWriterStep</type>
  878 + <description/>
  879 + <distribute>Y</distribute>
  880 + <custom_distribution/>
  881 + <copies>1</copies>
  882 + <partitioning>
  883 + <method>none</method>
  884 + <schema_name/>
  885 + </partitioning>
  886 + <header>Y</header>
  887 + <footer>N</footer>
  888 + <makeSheetActive>Y</makeSheetActive>
  889 + <rowWritingMethod>overwrite</rowWritingMethod>
  890 + <startingCell>A1</startingCell>
  891 + <appendOmitHeader>N</appendOmitHeader>
  892 + <appendOffset>0</appendOffset>
  893 + <appendEmpty>0</appendEmpty>
  894 + <rowWritingMethod>overwrite</rowWritingMethod>
  895 + <forceFormulaRecalculation>N</forceFormulaRecalculation>
  896 + <leaveExistingStylesUnchanged>N</leaveExistingStylesUnchanged>
  897 + <appendLines>N</appendLines>
  898 + <add_to_result_filenames>Y</add_to_result_filenames>
  899 + <file>
  900 + <name>&#x24;&#x7b;filepath&#x7d;</name>
  901 + <extention>xls</extention>
  902 + <do_not_open_newfile_init>N</do_not_open_newfile_init>
  903 + <split>N</split>
  904 + <add_date>N</add_date>
  905 + <add_time>N</add_time>
  906 + <SpecifyFormat>N</SpecifyFormat>
  907 + <date_time_format/>
  908 + <sheetname>sheet1</sheetname>
  909 + <autosizecolums>N</autosizecolums>
  910 + <stream_data>N</stream_data>
  911 + <protect_sheet>N</protect_sheet>
  912 + <password>Encrypted </password>
  913 + <protected_by/>
  914 + <splitevery>0</splitevery>
  915 + <if_file_exists>new</if_file_exists>
  916 + <if_sheet_exists>new</if_sheet_exists>
  917 + </file>
  918 + <template>
  919 + <enabled>N</enabled>
  920 + <sheet_enabled>N</sheet_enabled>
  921 + <filename>template.xls</filename>
  922 + <sheetname/>
  923 + </template>
  924 + <fields>
  925 + <field>
  926 + <name>route name</name>
  927 + <type>String</type>
  928 + <format/>
  929 + <title/>
  930 + <titleStyleCell/>
  931 + <styleCell/>
  932 + <commentField/>
  933 + <commentAuthorField/>
  934 + <formula>N</formula>
  935 + <hyperlinkField/>
  936 + </field>
  937 + <field>
  938 + <name>internal number</name>
  939 + <type>String</type>
  940 + <format/>
  941 + <title/>
  942 + <titleStyleCell/>
  943 + <styleCell/>
  944 + <commentField/>
  945 + <commentAuthorField/>
  946 + <formula>N</formula>
  947 + <hyperlinkField/>
  948 + </field>
  949 + <field>
  950 + <name>activation date</name>
  951 + <type>Date</type>
  952 + <format>yyyy-mm-dd</format>
  953 + <title/>
  954 + <titleStyleCell/>
  955 + <styleCell/>
  956 + <commentField/>
  957 + <commentAuthorField/>
  958 + <formula>N</formula>
  959 + <hyperlinkField/>
  960 + </field>
  961 + <field>
  962 + <name>starting road sign</name>
  963 + <type>Integer</type>
  964 + <format>0</format>
  965 + <title/>
  966 + <titleStyleCell/>
  967 + <styleCell/>
  968 + <commentField/>
  969 + <commentAuthorField/>
  970 + <formula>N</formula>
  971 + <hyperlinkField/>
  972 + </field>
  973 + <field>
  974 + <name>road sign range</name>
  975 + <type>String</type>
  976 + <format/>
  977 + <title/>
  978 + <titleStyleCell/>
  979 + <styleCell/>
  980 + <commentField/>
  981 + <commentAuthorField/>
  982 + <formula>N</formula>
  983 + <hyperlinkField/>
  984 + </field>
  985 + <field>
  986 + <name>starting staff</name>
  987 + <type>Integer</type>
  988 + <format>0</format>
  989 + <title/>
  990 + <titleStyleCell/>
  991 + <styleCell/>
  992 + <commentField/>
  993 + <commentAuthorField/>
  994 + <formula>N</formula>
  995 + <hyperlinkField/>
  996 + </field>
  997 + <field>
  998 + <name>staff range</name>
  999 + <type>String</type>
  1000 + <format/>
  1001 + <title/>
  1002 + <titleStyleCell/>
  1003 + <styleCell/>
  1004 + <commentField/>
  1005 + <commentAuthorField/>
  1006 + <formula>N</formula>
  1007 + <hyperlinkField/>
  1008 + </field>
  1009 + <field>
  1010 + <name>shift format</name>
  1011 + <type>String</type>
  1012 + <format/>
  1013 + <title/>
  1014 + <titleStyleCell/>
  1015 + <styleCell/>
  1016 + <commentField/>
  1017 + <commentAuthorField/>
  1018 + <formula>N</formula>
  1019 + <hyperlinkField/>
  1020 + </field>
  1021 + </fields>
  1022 + <cluster_schema/>
  1023 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1024 + <xloc>572</xloc>
  1025 + <yloc>361</yloc>
  1026 + <draw>Y</draw>
  1027 + </GUI>
  1028 + </step>
  1029 +
  1030 + <step>
  1031 + <name>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</name>
  1032 + <type>SelectValues</type>
  1033 + <description/>
  1034 + <distribute>Y</distribute>
  1035 + <custom_distribution/>
  1036 + <copies>1</copies>
  1037 + <partitioning>
  1038 + <method>none</method>
  1039 + <schema_name/>
  1040 + </partitioning>
  1041 + <fields> <field> <name>xlmc</name>
  1042 + <rename>route name</rename>
  1043 + <length>-2</length>
  1044 + <precision>-2</precision>
  1045 + </field> <field> <name>zbh</name>
  1046 + <rename>internal number</rename>
  1047 + <length>-2</length>
  1048 + <precision>-2</precision>
  1049 + </field> <field> <name>qyrq</name>
  1050 + <rename>activation date</rename>
  1051 + <length>-2</length>
  1052 + <precision>-2</precision>
  1053 + </field> <field> <name>lp_start</name>
  1054 + <rename>starting road sign</rename>
  1055 + <length>-2</length>
  1056 + <precision>-2</precision>
  1057 + </field> <field> <name>lp_names</name>
  1058 + <rename>road sign range</rename>
  1059 + <length>-2</length>
  1060 + <precision>-2</precision>
  1061 + </field> <field> <name>ry_start</name>
  1062 + <rename>starting staff</rename>
  1063 + <length>-2</length>
  1064 + <precision>-2</precision>
  1065 + </field> <field> <name>ry_dbbms</name>
  1066 + <rename>staff range</rename>
  1067 + <length>-2</length>
  1068 + <precision>-2</precision>
  1069 + </field> <field> <name>fbgs</name>
  1070 + <rename>shift format</rename>
  1071 + <length>-2</length>
  1072 + <precision>-2</precision>
  1073 + </field> <select_unspecified>N</select_unspecified>
  1074 + </fields> <cluster_schema/>
  1075 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1076 + <xloc>705</xloc>
  1077 + <yloc>270</yloc>
  1078 + <draw>Y</draw>
  1079 + </GUI>
  1080 + </step>
  1081 +
  1082 + <step>
  1083 + <name>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</name>
  1084 + <type>SortRows</type>
  1085 + <description/>
  1086 + <distribute>Y</distribute>
  1087 + <custom_distribution/>
  1088 + <copies>1</copies>
  1089 + <partitioning>
  1090 + <method>none</method>
  1091 + <schema_name/>
  1092 + </partitioning>
  1093 + <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
  1094 + <prefix>out</prefix>
  1095 + <sort_size>1000000</sort_size>
  1096 + <free_memory/>
  1097 + <compress>N</compress>
  1098 + <compress_variable/>
  1099 + <unique_rows>N</unique_rows>
  1100 + <fields>
  1101 + <field>
  1102 + <name>xlmc</name>
  1103 + <ascending>Y</ascending>
  1104 + <case_sensitive>N</case_sensitive>
  1105 + <presorted>N</presorted>
  1106 + </field>
  1107 + <field>
  1108 + <name>zbh</name>
  1109 + <ascending>Y</ascending>
  1110 + <case_sensitive>N</case_sensitive>
  1111 + <presorted>N</presorted>
  1112 + </field>
  1113 + <field>
  1114 + <name>qyrq</name>
  1115 + <ascending>Y</ascending>
  1116 + <case_sensitive>N</case_sensitive>
  1117 + <presorted>N</presorted>
  1118 + </field>
  1119 + <field>
  1120 + <name>lp_names</name>
  1121 + <ascending>Y</ascending>
  1122 + <case_sensitive>N</case_sensitive>
  1123 + <presorted>N</presorted>
  1124 + </field>
  1125 + <field>
  1126 + <name>ry_dbbms</name>
  1127 + <ascending>Y</ascending>
  1128 + <case_sensitive>N</case_sensitive>
  1129 + <presorted>N</presorted>
  1130 + </field>
  1131 + </fields>
  1132 + <cluster_schema/>
  1133 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1134 + <xloc>705</xloc>
  1135 + <yloc>177</yloc>
  1136 + <draw>Y</draw>
  1137 + </GUI>
  1138 + </step>
  1139 +
  1140 + <step>
  1141 + <name>&#x6392;&#x7248;&#x89c4;&#x5219;</name>
  1142 + <type>TableInput</type>
  1143 + <description/>
  1144 + <distribute>Y</distribute>
  1145 + <custom_distribution/>
  1146 + <copies>1</copies>
  1147 + <partitioning>
  1148 + <method>none</method>
  1149 + <schema_name/>
  1150 + </partitioning>
  1151 + <connection>control_jndi</connection>
  1152 + <sql>SELECT &#x2a; FROM bsth_c_s_sr1_flat&#xa;where xl &#x3d; &#x24;&#x7b;xlid&#x7d;</sql>
  1153 + <limit>0</limit>
  1154 + <lookup/>
  1155 + <execute_each_row>N</execute_each_row>
  1156 + <variables_active>Y</variables_active>
  1157 + <lazy_conversion_active>N</lazy_conversion_active>
  1158 + <cluster_schema/>
  1159 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1160 + <xloc>129</xloc>
  1161 + <yloc>65</yloc>
  1162 + <draw>Y</draw>
  1163 + </GUI>
  1164 + </step>
  1165 +
  1166 + <step>
  1167 + <name>&#x683c;&#x5f0f;&#x5316;&#x65e5;&#x671f;</name>
  1168 + <type>SelectValues</type>
  1169 + <description/>
  1170 + <distribute>Y</distribute>
  1171 + <custom_distribution/>
  1172 + <copies>1</copies>
  1173 + <partitioning>
  1174 + <method>none</method>
  1175 + <schema_name/>
  1176 + </partitioning>
  1177 + <fields> <select_unspecified>N</select_unspecified>
  1178 + <meta> <name>qyrq</name>
  1179 + <rename>qyrq</rename>
  1180 + <type>String</type>
  1181 + <length>-2</length>
  1182 + <precision>-2</precision>
  1183 + <conversion_mask>yyyy-MM-dd</conversion_mask>
  1184 + <date_format_lenient>false</date_format_lenient>
  1185 + <date_format_locale/>
  1186 + <date_format_timezone/>
  1187 + <lenient_string_to_number>false</lenient_string_to_number>
  1188 + <encoding/>
  1189 + <decimal_symbol/>
  1190 + <grouping_symbol/>
  1191 + <currency_symbol/>
  1192 + <storage_type/>
  1193 + </meta> <meta> <name>lp_start</name>
  1194 + <rename>lp_start</rename>
  1195 + <type>String</type>
  1196 + <length>-2</length>
  1197 + <precision>-2</precision>
  1198 + <conversion_mask/>
  1199 + <date_format_lenient>false</date_format_lenient>
  1200 + <date_format_locale/>
  1201 + <date_format_timezone/>
  1202 + <lenient_string_to_number>false</lenient_string_to_number>
  1203 + <encoding/>
  1204 + <decimal_symbol/>
  1205 + <grouping_symbol/>
  1206 + <currency_symbol/>
  1207 + <storage_type/>
  1208 + </meta> <meta> <name>ry_start</name>
  1209 + <rename>ry_start</rename>
  1210 + <type>String</type>
  1211 + <length>-2</length>
  1212 + <precision>-2</precision>
  1213 + <conversion_mask>&#x23;</conversion_mask>
  1214 + <date_format_lenient>false</date_format_lenient>
  1215 + <date_format_locale/>
  1216 + <date_format_timezone/>
  1217 + <lenient_string_to_number>false</lenient_string_to_number>
  1218 + <encoding/>
  1219 + <decimal_symbol/>
  1220 + <grouping_symbol/>
  1221 + <currency_symbol/>
  1222 + <storage_type/>
  1223 + </meta> </fields> <cluster_schema/>
  1224 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1225 + <xloc>705</xloc>
  1226 + <yloc>65</yloc>
  1227 + <draw>Y</draw>
  1228 + </GUI>
  1229 + </step>
  1230 +
  1231 + <step>
  1232 + <name>&#x7ebf;&#x8def;&#x67e5;&#x8be2;</name>
  1233 + <type>DBLookup</type>
  1234 + <description/>
  1235 + <distribute>Y</distribute>
  1236 + <custom_distribution/>
  1237 + <copies>1</copies>
  1238 + <partitioning>
  1239 + <method>none</method>
  1240 + <schema_name/>
  1241 + </partitioning>
  1242 + <connection>control_jndi</connection>
  1243 + <cache>Y</cache>
  1244 + <cache_load_all>Y</cache_load_all>
  1245 + <cache_size>0</cache_size>
  1246 + <lookup>
  1247 + <schema/>
  1248 + <table>bsth_c_line</table>
  1249 + <orderby/>
  1250 + <fail_on_multiple>N</fail_on_multiple>
  1251 + <eat_row_on_failure>N</eat_row_on_failure>
  1252 + <key>
  1253 + <name>xl</name>
  1254 + <field>id</field>
  1255 + <condition>&#x3d;</condition>
  1256 + <name2/>
  1257 + </key>
  1258 + <value>
  1259 + <name>name</name>
  1260 + <rename>xlmc</rename>
  1261 + <default/>
  1262 + <type>String</type>
  1263 + </value>
  1264 + </lookup>
  1265 + <cluster_schema/>
  1266 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1267 + <xloc>329</xloc>
  1268 + <yloc>65</yloc>
  1269 + <draw>Y</draw>
  1270 + </GUI>
  1271 + </step>
  1272 +
  1273 + <step>
  1274 + <name>&#x8f66;&#x8f86;&#x67e5;&#x8be2;</name>
  1275 + <type>DBLookup</type>
  1276 + <description/>
  1277 + <distribute>Y</distribute>
  1278 + <custom_distribution/>
  1279 + <copies>1</copies>
  1280 + <partitioning>
  1281 + <method>none</method>
  1282 + <schema_name/>
  1283 + </partitioning>
  1284 + <connection>control_jndi</connection>
  1285 + <cache>N</cache>
  1286 + <cache_load_all>N</cache_load_all>
  1287 + <cache_size>0</cache_size>
  1288 + <lookup>
  1289 + <schema/>
  1290 + <table>bsth_c_cars</table>
  1291 + <orderby/>
  1292 + <fail_on_multiple>N</fail_on_multiple>
  1293 + <eat_row_on_failure>N</eat_row_on_failure>
  1294 + <key>
  1295 + <name>clid</name>
  1296 + <field>id</field>
  1297 + <condition>&#x3d;</condition>
  1298 + <name2/>
  1299 + </key>
  1300 + <value>
  1301 + <name>inside_code</name>
  1302 + <rename>zbh</rename>
  1303 + <default/>
  1304 + <type>String</type>
  1305 + </value>
  1306 + </lookup>
  1307 + <cluster_schema/>
  1308 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1309 + <xloc>600</xloc>
  1310 + <yloc>64</yloc>
  1311 + <draw>Y</draw>
  1312 + </GUI>
  1313 + </step>
  1314 +
  1315 + <step>
  1316 + <name>&#x8f66;&#x8f86;&#x914d;&#x7f6e;&#x67e5;&#x8be2;</name>
  1317 + <type>DBLookup</type>
  1318 + <description/>
  1319 + <distribute>Y</distribute>
  1320 + <custom_distribution/>
  1321 + <copies>1</copies>
  1322 + <partitioning>
  1323 + <method>none</method>
  1324 + <schema_name/>
  1325 + </partitioning>
  1326 + <connection>control_jndi</connection>
  1327 + <cache>N</cache>
  1328 + <cache_load_all>N</cache_load_all>
  1329 + <cache_size>0</cache_size>
  1330 + <lookup>
  1331 + <schema/>
  1332 + <table>bsth_c_s_ccinfo</table>
  1333 + <orderby/>
  1334 + <fail_on_multiple>N</fail_on_multiple>
  1335 + <eat_row_on_failure>N</eat_row_on_failure>
  1336 + <key>
  1337 + <name>car_config_info</name>
  1338 + <field>id</field>
  1339 + <condition>&#x3d;</condition>
  1340 + <name2/>
  1341 + </key>
  1342 + <value>
  1343 + <name>cl</name>
  1344 + <rename>clid</rename>
  1345 + <default/>
  1346 + <type>Integer</type>
  1347 + </value>
  1348 + </lookup>
  1349 + <cluster_schema/>
  1350 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1351 + <xloc>471</xloc>
  1352 + <yloc>64</yloc>
  1353 + <draw>Y</draw>
  1354 + </GUI>
  1355 + </step>
  1356 +
  1357 + <step_error_handling>
  1358 + </step_error_handling>
  1359 + <slave-step-copy-partition-distribution>
  1360 +</slave-step-copy-partition-distribution>
  1361 + <slave_transformation>N</slave_transformation>
  1362 +
  1363 +</transformation>
src/main/resources/datatools/ktrs/en/schedule-rule-data_import.ktr 0 → 100644
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<transformation>
  3 + <info>
  4 + <name>&#x6392;&#x73ed;&#x89c4;&#x5219;&#x4fe1;&#x606f;&#x5bfc;&#x5165;_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>erroroutputdir</name>
  14 + <default_value>&#x2f;Users&#x2f;xu&#x2f;resource&#x2f;project_code&#x2f;runtime_temp&#x2f;bsth_control_u_d_files&#x2f;erroroutput</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>&#x2f;Users&#x2f;xu&#x2f;resource&#x2f;project_code&#x2f;runtime_temp&#x2f;bsth_control_u_d_files&#x2f;&#x6392;&#x7248;&#x89c4;&#x5219;&#x4fe1;&#x606f;-167-&#x526f;&#x672c;.xls</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>2017&#x2f;01&#x2f;09 10&#x3a;10&#x3a;36.915</created_date>
  81 + <modified_user>-</modified_user>
  82 + <modified_date>2017&#x2f;01&#x2f;09 10&#x3a;10&#x3a;36.915</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>&#x4e1a;&#x52a1;&#x4fe1;&#x606f;&#x66f4;&#x65b0;&#xff1a;&#xa;1&#x3001;&#x4eba;&#x5458;&#x5982;&#x679c;&#x4f5c;&#x5e9f;&#x4e86;&#xff0c;&#x5ffd;&#x7565;&#x5173;&#x8054;&#x7684;&#x642d;&#x73ed;&#x7f16;&#x7801;&#xa;2&#x3001;&#x6240;&#x6709;&#x7684;&#x6570;&#x636e;&#x5e93; join step&#x7684;outer join&#x4e0d;&#x8981;&#x52fe;&#x9009;&#xff0c;&#xa; &#x4e0d;&#x52fe;&#x9009;&#x7684;&#x60c5;&#x51b5;&#x4e0b;&#xff0c;&#x5982;&#x679c;&#x5f53;&#x524d;input&#x884c;&#x6570;&#x636e;&#x53c2;&#x4e0e;&#x7684;&#x6570;&#x636e;&#x5e93;&#x67e5;&#x8be2;&#x6ca1;&#x627e;&#x5230;&#x6570;&#x636e;&#xff0c;&#x5219;output&#x884c;&#x5c31;&#x6ca1;&#x6709;&#x6570;&#x636e;&#x4e86;&#xff0c;&#xa; &#xff08;&#x4e4b;&#x524d;outer join&#x9009;&#x4e2d;&#xff0c;&#x9020;&#x6210;output&#x884c;&#x4e00;&#x76f4;&#x6709;&#x6570;&#x636e;&#xff0c;&#x540e;&#x9762;&#x8fd8;&#x8981;&#x4f7f;&#x7528;&#x8fc7;&#x6ee4;step&#x8fc7;&#x6ee4;&#x6570;&#x636e;&#xff09;</note>
  89 + <xloc>161</xloc>
  90 + <yloc>362</yloc>
  91 + <width>557</width>
  92 + <heigth>90</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;&#x5185;&#x90e8;&#x7f16;&#x7801; internal number&#xa;&#x542f;&#x7528;&#x65e5;&#x671f; activation date&#xa;&#x8d77;&#x59cb;&#x8def;&#x724c; starting road sign&#xa;&#x8def;&#x724c;&#x8303;&#x56f4; road sign range&#xa;&#x8d77;&#x59cb;&#x4eba;&#x5458; starting staff&#xa;&#x4eba;&#x5458;&#x8303;&#x56f4; staff range&#xa;&#x7ffb;&#x73ed;&#x683c;&#x5f0f; shift format</note>
  110 + <xloc>446</xloc>
  111 + <yloc>164</yloc>
  112 + <width>261</width>
  113 + <heigth>170</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>&#x5220;&#x9664;</from><to>&#x963b;&#x585e;&#x6570;&#x636e;&#x76f4;&#x5230;&#x6b65;&#x9aa4;&#x90fd;&#x5b8c;&#x6210;</to><enabled>Y</enabled> </hop>
  842 + <hop> <from>&#x963b;&#x585e;&#x6570;&#x636e;&#x76f4;&#x5230;&#x6b65;&#x9aa4;&#x90fd;&#x5b8c;&#x6210;</from><to>&#x89c4;&#x5219;&#x8868;&#x8f93;&#x51fa;</to><enabled>Y</enabled> </hop>
  843 + <hop> <from>&#x89c4;&#x5219;&#x8868;&#x8f93;&#x51fa;</from><to>&#x9519;&#x8bef;&#x8f93;&#x51fa; 2</to><enabled>Y</enabled> </hop>
  844 + <hop> <from>&#x542f;&#x7528;&#x65e5;&#x671f;&#x8f6c;&#x6362;</from><to>&#x9ed8;&#x8ba4;&#x7ffb;&#x73ed;&#x7c7b;&#x578b;</to><enabled>Y</enabled> </hop>
  845 + <hop> <from>&#x9ed8;&#x8ba4;&#x7ffb;&#x73ed;&#x7c7b;&#x578b;</from><to>&#x5220;&#x9664;</to><enabled>Y</enabled> </hop>
  846 + <hop> <from>&#x539f;&#x59cb;&#x7cfb;&#x7edf;&#x5bfc;&#x51fa;&#x7684;Excel&#x8f93;&#x5165;</from><to>&#x7ebf;&#x8def;&#x4fe1;&#x606f;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>
  847 + <hop> <from>&#x7ebf;&#x8def;&#x4fe1;&#x606f;&#x67e5;&#x8be2;</from><to>&#x8f66;&#x8f86;&#x914d;&#x7f6e;&#x4fe1;&#x606f;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>
  848 + <hop> <from>&#x8f66;&#x8f86;&#x914d;&#x7f6e;&#x4fe1;&#x606f;&#x67e5;&#x8be2;</from><to>&#x62c6;&#x5206;&#x8def;&#x724c;&#x8303;&#x56f4;&#x4fe1;&#x606f;</to><enabled>Y</enabled> </hop>
  849 + <hop> <from>&#x62c6;&#x5206;&#x8def;&#x724c;&#x8303;&#x56f4;&#x4fe1;&#x606f;</from><to>&#x8def;&#x724c;&#x4fe1;&#x606f;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>
  850 + <hop> <from>&#x8def;&#x724c;&#x4fe1;&#x606f;&#x67e5;&#x8be2;</from><to>&#x6392;&#x5e8f;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
  851 + <hop> <from>&#x6392;&#x5e8f;&#x6570;&#x636e;</from><to>&#x5206;&#x7ec4;&#x5408;&#x5e76;&#x8def;&#x724c;&#x4fe1;&#x606f;</to><enabled>Y</enabled> </hop>
  852 + <hop> <from>&#x5206;&#x7ec4;&#x5408;&#x5e76;&#x8def;&#x724c;&#x4fe1;&#x606f;</from><to>&#x62c6;&#x5206;&#x4eba;&#x5458;&#x8303;&#x56f4;&#x4fe1;&#x606f;</to><enabled>Y</enabled> </hop>
  853 + <hop> <from>&#x62c6;&#x5206;&#x4eba;&#x5458;&#x8303;&#x56f4;&#x4fe1;&#x606f;</from><to>&#x7ee7;&#x7eed;&#x62c6;&#x5206;&#x4eba;&#x5458;&#x8303;&#x56f4;&#xff08;&#x5206;&#x73ed;&#xff09;</to><enabled>Y</enabled> </hop>
  854 + <hop> <from>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;2</from><to>&#x5206;&#x7ec4;&#x5408;&#x5e76;&#x4eba;&#x5458;&#x914d;&#x7f6e;&#x4fe1;&#x606f;</to><enabled>Y</enabled> </hop>
  855 + <hop> <from>&#x5206;&#x7ec4;&#x5408;&#x5e76;&#x4eba;&#x5458;&#x914d;&#x7f6e;&#x4fe1;&#x606f;</from><to>&#x542f;&#x7528;&#x65e5;&#x671f;&#x8f6c;&#x6362;</to><enabled>Y</enabled> </hop>
  856 + <hop> <from>&#x7ee7;&#x7eed;&#x62c6;&#x5206;&#x4eba;&#x5458;&#x8303;&#x56f4;&#xff08;&#x5206;&#x73ed;&#xff09;</from><to>&#x5224;&#x65ad;&#x662f;&#x5426;&#x5206;&#x73ed;</to><enabled>Y</enabled> </hop>
  857 + <hop> <from>&#x5224;&#x65ad;&#x662f;&#x5426;&#x5206;&#x73ed;</from><to>&#x65e0;&#x5206;&#x73ed;&#x4eba;&#x5458;&#x914d;&#x7f6e;&#x4fe1;&#x606f;&#x67e5;&#x8be2; </to><enabled>Y</enabled> </hop>
  858 + <hop> <from>&#x5206;&#x73ed;&#x4eba;&#x5458;&#x914d;&#x7f6e;1&#x4fe1;&#x606f;&#x67e5;&#x8be2;</from><to>&#x5206;&#x73ed;&#x4eba;&#x5458;&#x914d;&#x7f6e;2&#x4fe1;&#x606f;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>
  859 + <hop> <from>&#x5224;&#x65ad;&#x662f;&#x5426;&#x5206;&#x73ed;</from><to>&#x5206;&#x73ed;&#x4eba;&#x5458;&#x914d;&#x7f6e;1&#x4fe1;&#x606f;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>
  860 + <hop> <from>&#x65e0;&#x5206;&#x73ed;&#x4eba;&#x5458;&#x914d;&#x7f6e;&#x4fe1;&#x606f;&#x67e5;&#x8be2; </from><to>&#x5904;&#x7406;&#x65e0;&#x5206;&#x73ed;&#x4eba;&#x5458;&#x914d;&#x7f6e;id&#x4fe1;&#x606f;</to><enabled>Y</enabled> </hop>
  861 + <hop> <from>&#x5206;&#x73ed;&#x4eba;&#x5458;&#x914d;&#x7f6e;2&#x4fe1;&#x606f;&#x67e5;&#x8be2;</from><to>&#x5408;&#x5e76;&#x5904;&#x7406;&#x5206;&#x73ed;&#x4eba;&#x5458;&#x914d;&#x7f6e;id&#x4fe1;&#x606f;</to><enabled>Y</enabled> </hop>
  862 + <hop> <from>&#x5904;&#x7406;&#x65e0;&#x5206;&#x73ed;&#x4eba;&#x5458;&#x914d;&#x7f6e;id&#x4fe1;&#x606f;</from><to>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</to><enabled>Y</enabled> </hop>
  863 + <hop> <from>&#x5408;&#x5e76;&#x5904;&#x7406;&#x5206;&#x73ed;&#x4eba;&#x5458;&#x914d;&#x7f6e;id&#x4fe1;&#x606f;</from><to>&#x5b57;&#x6bb5;&#x9009;&#x62e9; 2</to><enabled>Y</enabled> </hop>
  864 + <hop> <from>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</from><to>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;2</to><enabled>Y</enabled> </hop>
  865 + <hop> <from>&#x5b57;&#x6bb5;&#x9009;&#x62e9; 2</from><to>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;2</to><enabled>Y</enabled> </hop>
  866 + <hop> <from>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</from><to>&#x539f;&#x59cb;&#x7cfb;&#x7edf;&#x5bfc;&#x51fa;&#x7684;Excel&#x8f93;&#x5165;</to><enabled>Y</enabled> </hop>
  867 + </order>
  868 + <step>
  869 + <name>&#x5206;&#x73ed;&#x4eba;&#x5458;&#x914d;&#x7f6e;1&#x4fe1;&#x606f;&#x67e5;&#x8be2;</name>
  870 + <type>DBJoin</type>
  871 + <description/>
  872 + <distribute>Y</distribute>
  873 + <custom_distribution/>
  874 + <copies>1</copies>
  875 + <partitioning>
  876 + <method>none</method>
  877 + <schema_name/>
  878 + </partitioning>
  879 + <connection>control_jndi</connection>
  880 + <rowlimit>1</rowlimit>
  881 + <sql>select id as rycid1 from bsth_c_s_ecinfo employeeco0_ &#xa;where xl &#x3d; &#x3f; &#xa;and dbbm &#x3d; &#x3f; &#xa;and is_cancel &#x3d; 0&#xa;and &#x28;&#xa;&#x28;&#xa; select IFNULL&#x28;t2.destroy, 0&#x29; &#xa; from bsth_c_s_ecinfo t1 left join bsth_c_personnel t2 on t1.jsy &#x3d; t2.id &#xa; where t1.id &#x3d; employeeco0_.id&#xa;&#x29; &#x2b; &#xa;&#x28;&#xa; select IFNULL&#x28;t2.destroy, 0&#x29; &#xa; from bsth_c_s_ecinfo t1 left join bsth_c_personnel t2 on t1.spy &#x3d; t2.id &#xa; where t1.id &#x3d; employeeco0_.id&#xa;&#x29;&#xa;&#x29; &#x3d; 0</sql>
  882 + <outer_join>N</outer_join>
  883 + <replace_vars>N</replace_vars>
  884 + <parameter>
  885 + <field>
  886 + <name>xlid</name>
  887 + <type>Integer</type>
  888 + </field>
  889 + <field>
  890 + <name>dbbm1</name>
  891 + <type>String</type>
  892 + </field>
  893 + </parameter>
  894 + <cluster_schema/>
  895 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  896 + <xloc>950</xloc>
  897 + <yloc>113</yloc>
  898 + <draw>Y</draw>
  899 + </GUI>
  900 + </step>
  901 +
  902 + <step>
  903 + <name>&#x5206;&#x73ed;&#x4eba;&#x5458;&#x914d;&#x7f6e;2&#x4fe1;&#x606f;&#x67e5;&#x8be2;</name>
  904 + <type>DBJoin</type>
  905 + <description/>
  906 + <distribute>Y</distribute>
  907 + <custom_distribution/>
  908 + <copies>1</copies>
  909 + <partitioning>
  910 + <method>none</method>
  911 + <schema_name/>
  912 + </partitioning>
  913 + <connection>control_jndi</connection>
  914 + <rowlimit>1</rowlimit>
  915 + <sql>select id as rycid2 from bsth_c_s_ecinfo employeeco0_ &#xa;where xl &#x3d; &#x3f; &#xa;and dbbm &#x3d; &#x3f; &#xa;and is_cancel &#x3d; 0&#xa;and &#x28;&#xa;&#x28;&#xa; select IFNULL&#x28;t2.destroy, 0&#x29; &#xa; from bsth_c_s_ecinfo t1 left join bsth_c_personnel t2 on t1.jsy &#x3d; t2.id &#xa; where t1.id &#x3d; employeeco0_.id&#xa;&#x29; &#x2b; &#xa;&#x28;&#xa; select IFNULL&#x28;t2.destroy, 0&#x29; &#xa; from bsth_c_s_ecinfo t1 left join bsth_c_personnel t2 on t1.spy &#x3d; t2.id &#xa; where t1.id &#x3d; employeeco0_.id&#xa;&#x29;&#xa;&#x29; &#x3d; 0</sql>
  916 + <outer_join>N</outer_join>
  917 + <replace_vars>N</replace_vars>
  918 + <parameter>
  919 + <field>
  920 + <name>xlid</name>
  921 + <type>Integer</type>
  922 + </field>
  923 + <field>
  924 + <name>dbbm2</name>
  925 + <type>String</type>
  926 + </field>
  927 + </parameter>
  928 + <cluster_schema/>
  929 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  930 + <xloc>952</xloc>
  931 + <yloc>200</yloc>
  932 + <draw>Y</draw>
  933 + </GUI>
  934 + </step>
  935 +
  936 + <step>
  937 + <name>&#x5206;&#x7ec4;&#x5408;&#x5e76;&#x4eba;&#x5458;&#x914d;&#x7f6e;&#x4fe1;&#x606f;</name>
  938 + <type>GroupBy</type>
  939 + <description/>
  940 + <distribute>Y</distribute>
  941 + <custom_distribution/>
  942 + <copies>1</copies>
  943 + <partitioning>
  944 + <method>none</method>
  945 + <schema_name/>
  946 + </partitioning>
  947 + <all_rows>N</all_rows>
  948 + <ignore_aggregate>N</ignore_aggregate>
  949 + <field_ignore/>
  950 + <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
  951 + <prefix>grp</prefix>
  952 + <add_linenr>N</add_linenr>
  953 + <linenr_fieldname/>
  954 + <give_back_row>N</give_back_row>
  955 + <group>
  956 + <field>
  957 + <name>xlid</name>
  958 + </field>
  959 + <field>
  960 + <name>cid</name>
  961 + </field>
  962 + <field>
  963 + <name>lpnames</name>
  964 + </field>
  965 + <field>
  966 + <name>lpids</name>
  967 + </field>
  968 + <field>
  969 + <name>starting road sign</name>
  970 + </field>
  971 + <field>
  972 + <name>starting staff</name>
  973 + </field>
  974 + <field>
  975 + <name>staff range</name>
  976 + </field>
  977 + <field>
  978 + <name>activation date</name>
  979 + </field>
  980 + <field>
  981 + <name>shift format</name>
  982 + </field>
  983 + </group>
  984 + <fields>
  985 + <field>
  986 + <aggregate>rycids</aggregate>
  987 + <subject>rycid</subject>
  988 + <type>CONCAT_STRING</type>
  989 + <valuefield>,</valuefield>
  990 + </field>
  991 + <field>
  992 + <aggregate>rybms</aggregate>
  993 + <subject>rybm</subject>
  994 + <type>CONCAT_STRING</type>
  995 + <valuefield>,</valuefield>
  996 + </field>
  997 + </fields>
  998 + <cluster_schema/>
  999 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1000 + <xloc>765</xloc>
  1001 + <yloc>476</yloc>
  1002 + <draw>Y</draw>
  1003 + </GUI>
  1004 + </step>
  1005 +
  1006 + <step>
  1007 + <name>&#x5206;&#x7ec4;&#x5408;&#x5e76;&#x8def;&#x724c;&#x4fe1;&#x606f;</name>
  1008 + <type>GroupBy</type>
  1009 + <description/>
  1010 + <distribute>Y</distribute>
  1011 + <custom_distribution/>
  1012 + <copies>1</copies>
  1013 + <partitioning>
  1014 + <method>none</method>
  1015 + <schema_name/>
  1016 + </partitioning>
  1017 + <all_rows>N</all_rows>
  1018 + <ignore_aggregate>N</ignore_aggregate>
  1019 + <field_ignore/>
  1020 + <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
  1021 + <prefix>grp</prefix>
  1022 + <add_linenr>N</add_linenr>
  1023 + <linenr_fieldname/>
  1024 + <give_back_row>N</give_back_row>
  1025 + <group>
  1026 + <field>
  1027 + <name>xlid</name>
  1028 + </field>
  1029 + <field>
  1030 + <name>cid</name>
  1031 + </field>
  1032 + <field>
  1033 + <name>starting road sign</name>
  1034 + </field>
  1035 + <field>
  1036 + <name>starting staff</name>
  1037 + </field>
  1038 + <field>
  1039 + <name>staff range</name>
  1040 + </field>
  1041 + <field>
  1042 + <name>activation date</name>
  1043 + </field>
  1044 + <field>
  1045 + <name>shift format</name>
  1046 + </field>
  1047 + </group>
  1048 + <fields>
  1049 + <field>
  1050 + <aggregate>lpids</aggregate>
  1051 + <subject>lpid</subject>
  1052 + <type>CONCAT_STRING</type>
  1053 + <valuefield>,</valuefield>
  1054 + </field>
  1055 + <field>
  1056 + <aggregate>lpnames</aggregate>
  1057 + <subject>lpname</subject>
  1058 + <type>CONCAT_STRING</type>
  1059 + <valuefield>,</valuefield>
  1060 + </field>
  1061 + </fields>
  1062 + <cluster_schema/>
  1063 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1064 + <xloc>370</xloc>
  1065 + <yloc>293</yloc>
  1066 + <draw>Y</draw>
  1067 + </GUI>
  1068 + </step>
  1069 +
  1070 + <step>
  1071 + <name>&#x5220;&#x9664;</name>
  1072 + <type>Delete</type>
  1073 + <description/>
  1074 + <distribute>Y</distribute>
  1075 + <custom_distribution/>
  1076 + <copies>1</copies>
  1077 + <partitioning>
  1078 + <method>none</method>
  1079 + <schema_name/>
  1080 + </partitioning>
  1081 + <connection>control_jndi</connection>
  1082 + <commit>100</commit>
  1083 + <lookup>
  1084 + <schema/>
  1085 + <table>bsth_c_s_sr1_flat</table>
  1086 + <key>
  1087 + <name>xlid</name>
  1088 + <field>xl</field>
  1089 + <condition>&#x3d;</condition>
  1090 + <name2/>
  1091 + </key>
  1092 + </lookup>
  1093 + <cluster_schema/>
  1094 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1095 + <xloc>371</xloc>
  1096 + <yloc>479</yloc>
  1097 + <draw>Y</draw>
  1098 + </GUI>
  1099 + </step>
  1100 +
  1101 + <step>
  1102 + <name>&#x5224;&#x65ad;&#x662f;&#x5426;&#x5206;&#x73ed;</name>
  1103 + <type>FilterRows</type>
  1104 + <description/>
  1105 + <distribute>Y</distribute>
  1106 + <custom_distribution/>
  1107 + <copies>1</copies>
  1108 + <partitioning>
  1109 + <method>none</method>
  1110 + <schema_name/>
  1111 + </partitioning>
  1112 +<send_true_to>&#x65e0;&#x5206;&#x73ed;&#x4eba;&#x5458;&#x914d;&#x7f6e;&#x4fe1;&#x606f;&#x67e5;&#x8be2; </send_true_to>
  1113 +<send_false_to>&#x5206;&#x73ed;&#x4eba;&#x5458;&#x914d;&#x7f6e;1&#x4fe1;&#x606f;&#x67e5;&#x8be2;</send_false_to>
  1114 + <compare>
  1115 +<condition>
  1116 + <negated>N</negated>
  1117 + <leftvalue>dbbm2</leftvalue>
  1118 + <function>IS NULL</function>
  1119 + <rightvalue/>
  1120 + </condition>
  1121 + </compare>
  1122 + <cluster_schema/>
  1123 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1124 + <xloc>856</xloc>
  1125 + <yloc>24</yloc>
  1126 + <draw>Y</draw>
  1127 + </GUI>
  1128 + </step>
  1129 +
  1130 + <step>
  1131 + <name>&#x539f;&#x59cb;&#x7cfb;&#x7edf;&#x5bfc;&#x51fa;&#x7684;Excel&#x8f93;&#x5165;</name>
  1132 + <type>ExcelInput</type>
  1133 + <description/>
  1134 + <distribute>Y</distribute>
  1135 + <custom_distribution/>
  1136 + <copies>1</copies>
  1137 + <partitioning>
  1138 + <method>none</method>
  1139 + <schema_name/>
  1140 + </partitioning>
  1141 + <header>Y</header>
  1142 + <noempty>Y</noempty>
  1143 + <stoponempty>N</stoponempty>
  1144 + <filefield/>
  1145 + <sheetfield/>
  1146 + <sheetrownumfield/>
  1147 + <rownumfield/>
  1148 + <sheetfield/>
  1149 + <filefield/>
  1150 + <limit>0</limit>
  1151 + <encoding>UTF-8</encoding>
  1152 + <add_to_result_filenames>Y</add_to_result_filenames>
  1153 + <accept_filenames>Y</accept_filenames>
  1154 + <accept_field>filepath_</accept_field>
  1155 + <accept_stepname>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</accept_stepname>
  1156 + <file>
  1157 + <name/>
  1158 + <filemask/>
  1159 + <exclude_filemask/>
  1160 + <file_required>N</file_required>
  1161 + <include_subfolders>N</include_subfolders>
  1162 + </file>
  1163 + <fields>
  1164 + <field>
  1165 + <name>route name</name>
  1166 + <type>String</type>
  1167 + <length>-1</length>
  1168 + <precision>-1</precision>
  1169 + <trim_type>none</trim_type>
  1170 + <repeat>N</repeat>
  1171 + <format/>
  1172 + <currency/>
  1173 + <decimal/>
  1174 + <group/>
  1175 + </field>
  1176 + <field>
  1177 + <name>internal number</name>
  1178 + <type>String</type>
  1179 + <length>-1</length>
  1180 + <precision>-1</precision>
  1181 + <trim_type>none</trim_type>
  1182 + <repeat>N</repeat>
  1183 + <format/>
  1184 + <currency/>
  1185 + <decimal/>
  1186 + <group/>
  1187 + </field>
  1188 + <field>
  1189 + <name>activation date</name>
  1190 + <type>String</type>
  1191 + <length>-1</length>
  1192 + <precision>-1</precision>
  1193 + <trim_type>none</trim_type>
  1194 + <repeat>N</repeat>
  1195 + <format/>
  1196 + <currency/>
  1197 + <decimal/>
  1198 + <group/>
  1199 + </field>
  1200 + <field>
  1201 + <name>starting road sign</name>
  1202 + <type>String</type>
  1203 + <length>-1</length>
  1204 + <precision>-1</precision>
  1205 + <trim_type>none</trim_type>
  1206 + <repeat>N</repeat>
  1207 + <format>&#x23;</format>
  1208 + <currency/>
  1209 + <decimal/>
  1210 + <group/>
  1211 + </field>
  1212 + <field>
  1213 + <name>road sign range</name>
  1214 + <type>String</type>
  1215 + <length>-1</length>
  1216 + <precision>-1</precision>
  1217 + <trim_type>none</trim_type>
  1218 + <repeat>N</repeat>
  1219 + <format>&#x23;</format>
  1220 + <currency/>
  1221 + <decimal/>
  1222 + <group/>
  1223 + </field>
  1224 + <field>
  1225 + <name>starting staff</name>
  1226 + <type>String</type>
  1227 + <length>-1</length>
  1228 + <precision>-1</precision>
  1229 + <trim_type>none</trim_type>
  1230 + <repeat>N</repeat>
  1231 + <format>&#x23;</format>
  1232 + <currency/>
  1233 + <decimal/>
  1234 + <group/>
  1235 + </field>
  1236 + <field>
  1237 + <name>staff range</name>
  1238 + <type>String</type>
  1239 + <length>-1</length>
  1240 + <precision>-1</precision>
  1241 + <trim_type>none</trim_type>
  1242 + <repeat>N</repeat>
  1243 + <format>&#x23;</format>
  1244 + <currency/>
  1245 + <decimal/>
  1246 + <group/>
  1247 + </field>
  1248 + <field>
  1249 + <name>shift format</name>
  1250 + <type>String</type>
  1251 + <length>-1</length>
  1252 + <precision>-1</precision>
  1253 + <trim_type>none</trim_type>
  1254 + <repeat>N</repeat>
  1255 + <format>&#x23;</format>
  1256 + <currency/>
  1257 + <decimal/>
  1258 + <group/>
  1259 + </field>
  1260 + </fields>
  1261 + <sheets>
  1262 + <sheet>
  1263 + <name>sheet1</name>
  1264 + <startrow>0</startrow>
  1265 + <startcol>0</startcol>
  1266 + </sheet>
  1267 + </sheets>
  1268 + <strict_types>N</strict_types>
  1269 + <error_ignored>N</error_ignored>
  1270 + <error_line_skipped>N</error_line_skipped>
  1271 + <bad_line_files_destination_directory/>
  1272 + <bad_line_files_extension>warning</bad_line_files_extension>
  1273 + <error_line_files_destination_directory/>
  1274 + <error_line_files_extension>error</error_line_files_extension>
  1275 + <line_number_files_destination_directory/>
  1276 + <line_number_files_extension>line</line_number_files_extension>
  1277 + <shortFileFieldName/>
  1278 + <pathFieldName/>
  1279 + <hiddenFieldName/>
  1280 + <lastModificationTimeFieldName/>
  1281 + <uriNameFieldName/>
  1282 + <rootUriNameFieldName/>
  1283 + <extensionFieldName/>
  1284 + <sizeFieldName/>
  1285 + <spreadsheet_type>JXL</spreadsheet_type>
  1286 + <cluster_schema/>
  1287 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1288 + <xloc>208</xloc>
  1289 + <yloc>21</yloc>
  1290 + <draw>Y</draw>
  1291 + </GUI>
  1292 + </step>
  1293 +
  1294 + <step>
  1295 + <name>&#x5408;&#x5e76;&#x5904;&#x7406;&#x5206;&#x73ed;&#x4eba;&#x5458;&#x914d;&#x7f6e;id&#x4fe1;&#x606f;</name>
  1296 + <type>ScriptValueMod</type>
  1297 + <description/>
  1298 + <distribute>Y</distribute>
  1299 + <custom_distribution/>
  1300 + <copies>1</copies>
  1301 + <partitioning>
  1302 + <method>none</method>
  1303 + <schema_name/>
  1304 + </partitioning>
  1305 + <compatible>N</compatible>
  1306 + <optimizationLevel>9</optimizationLevel>
  1307 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  1308 + <jsScript_name>Script 1</jsScript_name>
  1309 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var rycid&#x3b;&#xa;var rybm&#x3b;&#xa;&#xa;rycid &#x3d; rycid1 &#x2b; &#x22;-&#x22; &#x2b; rycid2&#x3b;&#xa;rybm &#x3d; dbbm1 &#x2b; &#x22;-&#x22; &#x2b; dbbm2&#x3b;&#xa;</jsScript_script>
  1310 + </jsScript> </jsScripts> <fields> <field> <name>rycid</name>
  1311 + <rename>rycid</rename>
  1312 + <type>String</type>
  1313 + <length>-1</length>
  1314 + <precision>-1</precision>
  1315 + <replace>N</replace>
  1316 + </field> <field> <name>rybm</name>
  1317 + <rename>rybm</rename>
  1318 + <type>String</type>
  1319 + <length>-1</length>
  1320 + <precision>-1</precision>
  1321 + <replace>N</replace>
  1322 + </field> </fields> <cluster_schema/>
  1323 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1324 + <xloc>953</xloc>
  1325 + <yloc>288</yloc>
  1326 + <draw>Y</draw>
  1327 + </GUI>
  1328 + </step>
  1329 +
  1330 + <step>
  1331 + <name>&#x542f;&#x7528;&#x65e5;&#x671f;&#x8f6c;&#x6362;</name>
  1332 + <type>SelectValues</type>
  1333 + <description/>
  1334 + <distribute>Y</distribute>
  1335 + <custom_distribution/>
  1336 + <copies>1</copies>
  1337 + <partitioning>
  1338 + <method>none</method>
  1339 + <schema_name/>
  1340 + </partitioning>
  1341 + <fields> <select_unspecified>N</select_unspecified>
  1342 + <meta> <name>activation date</name>
  1343 + <rename>activation date</rename>
  1344 + <type>Timestamp</type>
  1345 + <length>-2</length>
  1346 + <precision>-2</precision>
  1347 + <conversion_mask>yyyy-MM-dd</conversion_mask>
  1348 + <date_format_lenient>false</date_format_lenient>
  1349 + <date_format_locale/>
  1350 + <date_format_timezone/>
  1351 + <lenient_string_to_number>false</lenient_string_to_number>
  1352 + <encoding/>
  1353 + <decimal_symbol/>
  1354 + <grouping_symbol/>
  1355 + <currency_symbol/>
  1356 + <storage_type/>
  1357 + </meta> </fields> <cluster_schema/>
  1358 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1359 + <xloc>615</xloc>
  1360 + <yloc>480</yloc>
  1361 + <draw>Y</draw>
  1362 + </GUI>
  1363 + </step>
  1364 +
  1365 + <step>
  1366 + <name>&#x5904;&#x7406;&#x65e0;&#x5206;&#x73ed;&#x4eba;&#x5458;&#x914d;&#x7f6e;id&#x4fe1;&#x606f;</name>
  1367 + <type>ScriptValueMod</type>
  1368 + <description/>
  1369 + <distribute>Y</distribute>
  1370 + <custom_distribution/>
  1371 + <copies>1</copies>
  1372 + <partitioning>
  1373 + <method>none</method>
  1374 + <schema_name/>
  1375 + </partitioning>
  1376 + <compatible>N</compatible>
  1377 + <optimizationLevel>9</optimizationLevel>
  1378 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  1379 + <jsScript_name>Script 1</jsScript_name>
  1380 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var rycid&#x3b;&#xa;var rybm&#x3b;&#xa;&#xa;rycid &#x3d; rycid1&#x3b;&#xa;rybm &#x3d; dbbm1&#x3b;&#xa;</jsScript_script>
  1381 + </jsScript> </jsScripts> <fields> <field> <name>rycid</name>
  1382 + <rename>rycid</rename>
  1383 + <type>String</type>
  1384 + <length>-1</length>
  1385 + <precision>-1</precision>
  1386 + <replace>N</replace>
  1387 + </field> <field> <name>rybm</name>
  1388 + <rename>rybm</rename>
  1389 + <type>String</type>
  1390 + <length>-1</length>
  1391 + <precision>-1</precision>
  1392 + <replace>N</replace>
  1393 + </field> </fields> <cluster_schema/>
  1394 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1395 + <xloc>763</xloc>
  1396 + <yloc>197</yloc>
  1397 + <draw>Y</draw>
  1398 + </GUI>
  1399 + </step>
  1400 +
  1401 + <step>
  1402 + <name>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</name>
  1403 + <type>SelectValues</type>
  1404 + <description/>
  1405 + <distribute>Y</distribute>
  1406 + <custom_distribution/>
  1407 + <copies>1</copies>
  1408 + <partitioning>
  1409 + <method>none</method>
  1410 + <schema_name/>
  1411 + </partitioning>
  1412 + <fields> <field> <name>xlid</name>
  1413 + <rename/>
  1414 + <length>-2</length>
  1415 + <precision>-2</precision>
  1416 + </field> <field> <name>cid</name>
  1417 + <rename/>
  1418 + <length>-2</length>
  1419 + <precision>-2</precision>
  1420 + </field> <field> <name>lpnames</name>
  1421 + <rename/>
  1422 + <length>-2</length>
  1423 + <precision>-2</precision>
  1424 + </field> <field> <name>lpids</name>
  1425 + <rename/>
  1426 + <length>-2</length>
  1427 + <precision>-2</precision>
  1428 + </field> <field> <name>starting road sign</name>
  1429 + <rename/>
  1430 + <length>-2</length>
  1431 + <precision>-2</precision>
  1432 + </field> <field> <name>starting staff</name>
  1433 + <rename/>
  1434 + <length>-2</length>
  1435 + <precision>-2</precision>
  1436 + </field> <field> <name>staff range</name>
  1437 + <rename/>
  1438 + <length>-2</length>
  1439 + <precision>-2</precision>
  1440 + </field> <field> <name>activation date</name>
  1441 + <rename/>
  1442 + <length>-2</length>
  1443 + <precision>-2</precision>
  1444 + </field> <field> <name>shift format</name>
  1445 + <rename/>
  1446 + <length>-2</length>
  1447 + <precision>-2</precision>
  1448 + </field> <field> <name>rycid</name>
  1449 + <rename/>
  1450 + <length>-2</length>
  1451 + <precision>-2</precision>
  1452 + </field> <field> <name>rybm</name>
  1453 + <rename/>
  1454 + <length>-2</length>
  1455 + <precision>-2</precision>
  1456 + </field> <select_unspecified>N</select_unspecified>
  1457 + </fields> <cluster_schema/>
  1458 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1459 + <xloc>764</xloc>
  1460 + <yloc>386</yloc>
  1461 + <draw>Y</draw>
  1462 + </GUI>
  1463 + </step>
  1464 +
  1465 + <step>
  1466 + <name>&#x5b57;&#x6bb5;&#x9009;&#x62e9; 2</name>
  1467 + <type>SelectValues</type>
  1468 + <description/>
  1469 + <distribute>Y</distribute>
  1470 + <custom_distribution/>
  1471 + <copies>1</copies>
  1472 + <partitioning>
  1473 + <method>none</method>
  1474 + <schema_name/>
  1475 + </partitioning>
  1476 + <fields> <field> <name>xlid</name>
  1477 + <rename/>
  1478 + <length>-2</length>
  1479 + <precision>-2</precision>
  1480 + </field> <field> <name>cid</name>
  1481 + <rename/>
  1482 + <length>-2</length>
  1483 + <precision>-2</precision>
  1484 + </field> <field> <name>lpnames</name>
  1485 + <rename/>
  1486 + <length>-2</length>
  1487 + <precision>-2</precision>
  1488 + </field> <field> <name>lpids</name>
  1489 + <rename/>
  1490 + <length>-2</length>
  1491 + <precision>-2</precision>
  1492 + </field> <field> <name>starting road sign</name>
  1493 + <rename/>
  1494 + <length>-2</length>
  1495 + <precision>-2</precision>
  1496 + </field> <field> <name>starting staff</name>
  1497 + <rename/>
  1498 + <length>-2</length>
  1499 + <precision>-2</precision>
  1500 + </field> <field> <name>staff range</name>
  1501 + <rename/>
  1502 + <length>-2</length>
  1503 + <precision>-2</precision>
  1504 + </field> <field> <name>activation date</name>
  1505 + <rename/>
  1506 + <length>-2</length>
  1507 + <precision>-2</precision>
  1508 + </field> <field> <name>shift format</name>
  1509 + <rename/>
  1510 + <length>-2</length>
  1511 + <precision>-2</precision>
  1512 + </field> <field> <name>rycid</name>
  1513 + <rename/>
  1514 + <length>-2</length>
  1515 + <precision>-2</precision>
  1516 + </field> <field> <name>rybm</name>
  1517 + <rename/>
  1518 + <length>-2</length>
  1519 + <precision>-2</precision>
  1520 + </field> <select_unspecified>N</select_unspecified>
  1521 + </fields> <cluster_schema/>
  1522 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1523 + <xloc>956</xloc>
  1524 + <yloc>385</yloc>
  1525 + <draw>Y</draw>
  1526 + </GUI>
  1527 + </step>
  1528 +
  1529 + <step>
  1530 + <name>&#x62c6;&#x5206;&#x4eba;&#x5458;&#x8303;&#x56f4;&#x4fe1;&#x606f;</name>
  1531 + <type>SplitFieldToRows3</type>
  1532 + <description/>
  1533 + <distribute>Y</distribute>
  1534 + <custom_distribution/>
  1535 + <copies>1</copies>
  1536 + <partitioning>
  1537 + <method>none</method>
  1538 + <schema_name/>
  1539 + </partitioning>
  1540 + <splitfield>staff range</splitfield>
  1541 + <delimiter>,</delimiter>
  1542 + <newfield>dbbm</newfield>
  1543 + <rownum>N</rownum>
  1544 + <rownum_field/>
  1545 + <resetrownumber>Y</resetrownumber>
  1546 + <delimiter_is_regex>N</delimiter_is_regex>
  1547 + <cluster_schema/>
  1548 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1549 + <xloc>552</xloc>
  1550 + <yloc>21</yloc>
  1551 + <draw>Y</draw>
  1552 + </GUI>
  1553 + </step>
  1554 +
  1555 + <step>
  1556 + <name>&#x62c6;&#x5206;&#x8def;&#x724c;&#x8303;&#x56f4;&#x4fe1;&#x606f;</name>
  1557 + <type>SplitFieldToRows3</type>
  1558 + <description/>
  1559 + <distribute>Y</distribute>
  1560 + <custom_distribution/>
  1561 + <copies>1</copies>
  1562 + <partitioning>
  1563 + <method>none</method>
  1564 + <schema_name/>
  1565 + </partitioning>
  1566 + <splitfield>road sign range</splitfield>
  1567 + <delimiter>,</delimiter>
  1568 + <newfield>lpname</newfield>
  1569 + <rownum>N</rownum>
  1570 + <rownum_field/>
  1571 + <resetrownumber>Y</resetrownumber>
  1572 + <delimiter_is_regex>N</delimiter_is_regex>
  1573 + <cluster_schema/>
  1574 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1575 + <xloc>367</xloc>
  1576 + <yloc>20</yloc>
  1577 + <draw>Y</draw>
  1578 + </GUI>
  1579 + </step>
  1580 +
  1581 + <step>
  1582 + <name>&#x6392;&#x5e8f;&#x6570;&#x636e;</name>
  1583 + <type>SortRows</type>
  1584 + <description/>
  1585 + <distribute>Y</distribute>
  1586 + <custom_distribution/>
  1587 + <copies>1</copies>
  1588 + <partitioning>
  1589 + <method>none</method>
  1590 + <schema_name/>
  1591 + </partitioning>
  1592 + <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
  1593 + <prefix>out</prefix>
  1594 + <sort_size>1000000</sort_size>
  1595 + <free_memory/>
  1596 + <compress>N</compress>
  1597 + <compress_variable/>
  1598 + <unique_rows>N</unique_rows>
  1599 + <fields>
  1600 + <field>
  1601 + <name>xlid</name>
  1602 + <ascending>Y</ascending>
  1603 + <case_sensitive>N</case_sensitive>
  1604 + <presorted>N</presorted>
  1605 + </field>
  1606 + <field>
  1607 + <name>cid</name>
  1608 + <ascending>Y</ascending>
  1609 + <case_sensitive>N</case_sensitive>
  1610 + <presorted>N</presorted>
  1611 + </field>
  1612 + <field>
  1613 + <name>starting road sign</name>
  1614 + <ascending>Y</ascending>
  1615 + <case_sensitive>N</case_sensitive>
  1616 + <presorted>N</presorted>
  1617 + </field>
  1618 + <field>
  1619 + <name>starting staff</name>
  1620 + <ascending>Y</ascending>
  1621 + <case_sensitive>N</case_sensitive>
  1622 + <presorted>N</presorted>
  1623 + </field>
  1624 + <field>
  1625 + <name>staff range</name>
  1626 + <ascending>Y</ascending>
  1627 + <case_sensitive>N</case_sensitive>
  1628 + <presorted>N</presorted>
  1629 + </field>
  1630 + <field>
  1631 + <name>activation date</name>
  1632 + <ascending>Y</ascending>
  1633 + <case_sensitive>N</case_sensitive>
  1634 + <presorted>N</presorted>
  1635 + </field>
  1636 + <field>
  1637 + <name>shift format</name>
  1638 + <ascending>Y</ascending>
  1639 + <case_sensitive>N</case_sensitive>
  1640 + <presorted>N</presorted>
  1641 + </field>
  1642 + </fields>
  1643 + <cluster_schema/>
  1644 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1645 + <xloc>369</xloc>
  1646 + <yloc>205</yloc>
  1647 + <draw>Y</draw>
  1648 + </GUI>
  1649 + </step>
  1650 +
  1651 + <step>
  1652 + <name>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;2</name>
  1653 + <type>SortRows</type>
  1654 + <description/>
  1655 + <distribute>Y</distribute>
  1656 + <custom_distribution/>
  1657 + <copies>1</copies>
  1658 + <partitioning>
  1659 + <method>none</method>
  1660 + <schema_name/>
  1661 + </partitioning>
  1662 + <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
  1663 + <prefix>out</prefix>
  1664 + <sort_size>1000000</sort_size>
  1665 + <free_memory/>
  1666 + <compress>N</compress>
  1667 + <compress_variable/>
  1668 + <unique_rows>N</unique_rows>
  1669 + <fields>
  1670 + <field>
  1671 + <name>xlid</name>
  1672 + <ascending>Y</ascending>
  1673 + <case_sensitive>N</case_sensitive>
  1674 + <presorted>N</presorted>
  1675 + </field>
  1676 + <field>
  1677 + <name>cid</name>
  1678 + <ascending>Y</ascending>
  1679 + <case_sensitive>N</case_sensitive>
  1680 + <presorted>N</presorted>
  1681 + </field>
  1682 + <field>
  1683 + <name>lpnames</name>
  1684 + <ascending>Y</ascending>
  1685 + <case_sensitive>N</case_sensitive>
  1686 + <presorted>N</presorted>
  1687 + </field>
  1688 + <field>
  1689 + <name>lpids</name>
  1690 + <ascending>Y</ascending>
  1691 + <case_sensitive>N</case_sensitive>
  1692 + <presorted>N</presorted>
  1693 + </field>
  1694 + <field>
  1695 + <name>starting road sign</name>
  1696 + <ascending>Y</ascending>
  1697 + <case_sensitive>N</case_sensitive>
  1698 + <presorted>N</presorted>
  1699 + </field>
  1700 + <field>
  1701 + <name>starting staff</name>
  1702 + <ascending>Y</ascending>
  1703 + <case_sensitive>N</case_sensitive>
  1704 + <presorted>N</presorted>
  1705 + </field>
  1706 + <field>
  1707 + <name>staff range</name>
  1708 + <ascending>Y</ascending>
  1709 + <case_sensitive>N</case_sensitive>
  1710 + <presorted>N</presorted>
  1711 + </field>
  1712 + <field>
  1713 + <name>activation date</name>
  1714 + <ascending>Y</ascending>
  1715 + <case_sensitive>N</case_sensitive>
  1716 + <presorted>N</presorted>
  1717 + </field>
  1718 + <field>
  1719 + <name>shift format</name>
  1720 + <ascending>Y</ascending>
  1721 + <case_sensitive>N</case_sensitive>
  1722 + <presorted>N</presorted>
  1723 + </field>
  1724 + </fields>
  1725 + <cluster_schema/>
  1726 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1727 + <xloc>862</xloc>
  1728 + <yloc>474</yloc>
  1729 + <draw>Y</draw>
  1730 + </GUI>
  1731 + </step>
  1732 +
  1733 + <step>
  1734 + <name>&#x65e0;&#x5206;&#x73ed;&#x4eba;&#x5458;&#x914d;&#x7f6e;&#x4fe1;&#x606f;&#x67e5;&#x8be2; </name>
  1735 + <type>DBJoin</type>
  1736 + <description/>
  1737 + <distribute>Y</distribute>
  1738 + <custom_distribution/>
  1739 + <copies>1</copies>
  1740 + <partitioning>
  1741 + <method>none</method>
  1742 + <schema_name/>
  1743 + </partitioning>
  1744 + <connection>control_jndi</connection>
  1745 + <rowlimit>1</rowlimit>
  1746 + <sql>select id as rycid1 from bsth_c_s_ecinfo employeeco0_ &#xa;where xl &#x3d; &#x3f; &#xa;and dbbm &#x3d; &#x3f; &#xa;and is_cancel &#x3d; 0&#xa;and &#x28;&#xa;&#x28;&#xa; select IFNULL&#x28;t2.destroy, 0&#x29; &#xa; from bsth_c_s_ecinfo t1 left join bsth_c_personnel t2 on t1.jsy &#x3d; t2.id &#xa; where t1.id &#x3d; employeeco0_.id&#xa;&#x29; &#x2b; &#xa;&#x28;&#xa; select IFNULL&#x28;t2.destroy, 0&#x29; &#xa; from bsth_c_s_ecinfo t1 left join bsth_c_personnel t2 on t1.spy &#x3d; t2.id &#xa; where t1.id &#x3d; employeeco0_.id&#xa;&#x29;&#xa;&#x29; &#x3d; 0</sql>
  1747 + <outer_join>N</outer_join>
  1748 + <replace_vars>N</replace_vars>
  1749 + <parameter>
  1750 + <field>
  1751 + <name>xlid</name>
  1752 + <type>Integer</type>
  1753 + </field>
  1754 + <field>
  1755 + <name>dbbm1</name>
  1756 + <type>String</type>
  1757 + </field>
  1758 + </parameter>
  1759 + <cluster_schema/>
  1760 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1761 + <xloc>769</xloc>
  1762 + <yloc>115</yloc>
  1763 + <draw>Y</draw>
  1764 + </GUI>
  1765 + </step>
  1766 +
  1767 + <step>
  1768 + <name>&#x7ebf;&#x8def;&#x4fe1;&#x606f;&#x67e5;&#x8be2;</name>
  1769 + <type>DBJoin</type>
  1770 + <description/>
  1771 + <distribute>Y</distribute>
  1772 + <custom_distribution/>
  1773 + <copies>1</copies>
  1774 + <partitioning>
  1775 + <method>none</method>
  1776 + <schema_name/>
  1777 + </partitioning>
  1778 + <connection>control_jndi</connection>
  1779 + <rowlimit>1</rowlimit>
  1780 + <sql>select id as xlid from bsth_c_line&#xa;where name &#x3d; &#x3f; &#xa;and destroy &#x3d; 0 </sql>
  1781 + <outer_join>N</outer_join>
  1782 + <replace_vars>N</replace_vars>
  1783 + <parameter>
  1784 + <field>
  1785 + <name>route name</name>
  1786 + <type>String</type>
  1787 + </field>
  1788 + </parameter>
  1789 + <cluster_schema/>
  1790 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1791 + <xloc>208</xloc>
  1792 + <yloc>110</yloc>
  1793 + <draw>Y</draw>
  1794 + </GUI>
  1795 + </step>
  1796 +
  1797 + <step>
  1798 + <name>&#x7ee7;&#x7eed;&#x62c6;&#x5206;&#x4eba;&#x5458;&#x8303;&#x56f4;&#xff08;&#x5206;&#x73ed;&#xff09;</name>
  1799 + <type>FieldSplitter</type>
  1800 + <description/>
  1801 + <distribute>Y</distribute>
  1802 + <custom_distribution/>
  1803 + <copies>1</copies>
  1804 + <partitioning>
  1805 + <method>none</method>
  1806 + <schema_name/>
  1807 + </partitioning>
  1808 + <splitfield>dbbm</splitfield>
  1809 + <delimiter>-</delimiter>
  1810 + <enclosure/>
  1811 + <fields> <field> <name>dbbm1</name>
  1812 + <id/>
  1813 + <idrem>N</idrem>
  1814 + <type>String</type>
  1815 + <format/>
  1816 + <group/>
  1817 + <decimal/>
  1818 + <currency/>
  1819 + <length>-1</length>
  1820 + <precision>-1</precision>
  1821 + <nullif/>
  1822 + <ifnull/>
  1823 + <trimtype>none</trimtype>
  1824 + </field> <field> <name>dbbm2</name>
  1825 + <id/>
  1826 + <idrem>N</idrem>
  1827 + <type>String</type>
  1828 + <format/>
  1829 + <group/>
  1830 + <decimal/>
  1831 + <currency/>
  1832 + <length>-1</length>
  1833 + <precision>-1</precision>
  1834 + <nullif/>
  1835 + <ifnull/>
  1836 + <trimtype>none</trimtype>
  1837 + </field> </fields> <cluster_schema/>
  1838 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1839 + <xloc>711</xloc>
  1840 + <yloc>23</yloc>
  1841 + <draw>Y</draw>
  1842 + </GUI>
  1843 + </step>
  1844 +
  1845 + <step>
  1846 + <name>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</name>
  1847 + <type>GetVariable</type>
  1848 + <description/>
  1849 + <distribute>Y</distribute>
  1850 + <custom_distribution/>
  1851 + <copies>1</copies>
  1852 + <partitioning>
  1853 + <method>none</method>
  1854 + <schema_name/>
  1855 + </partitioning>
  1856 + <fields>
  1857 + <field>
  1858 + <name>filepath_</name>
  1859 + <variable>&#x24;&#x7b;filepath&#x7d;</variable>
  1860 + <type>String</type>
  1861 + <format/>
  1862 + <currency/>
  1863 + <decimal/>
  1864 + <group/>
  1865 + <length>-1</length>
  1866 + <precision>-1</precision>
  1867 + <trim_type>none</trim_type>
  1868 + </field>
  1869 + <field>
  1870 + <name>erroroutputdir_</name>
  1871 + <variable>&#x24;&#x7b;erroroutputdir&#x7d;</variable>
  1872 + <type>String</type>
  1873 + <format/>
  1874 + <currency/>
  1875 + <decimal/>
  1876 + <group/>
  1877 + <length>-1</length>
  1878 + <precision>-1</precision>
  1879 + <trim_type>none</trim_type>
  1880 + </field>
  1881 + </fields>
  1882 + <cluster_schema/>
  1883 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1884 + <xloc>53</xloc>
  1885 + <yloc>23</yloc>
  1886 + <draw>Y</draw>
  1887 + </GUI>
  1888 + </step>
  1889 +
  1890 + <step>
  1891 + <name>&#x89c4;&#x5219;&#x8868;&#x8f93;&#x51fa;</name>
  1892 + <type>TableOutput</type>
  1893 + <description/>
  1894 + <distribute>Y</distribute>
  1895 + <custom_distribution/>
  1896 + <copies>1</copies>
  1897 + <partitioning>
  1898 + <method>none</method>
  1899 + <schema_name/>
  1900 + </partitioning>
  1901 + <connection>control_jndi</connection>
  1902 + <schema/>
  1903 + <table>bsth_c_s_sr1_flat</table>
  1904 + <commit>1000</commit>
  1905 + <truncate>N</truncate>
  1906 + <ignore_errors>N</ignore_errors>
  1907 + <use_batch>Y</use_batch>
  1908 + <specify_fields>Y</specify_fields>
  1909 + <partitioning_enabled>N</partitioning_enabled>
  1910 + <partitioning_field/>
  1911 + <partitioning_daily>N</partitioning_daily>
  1912 + <partitioning_monthly>Y</partitioning_monthly>
  1913 + <tablename_in_field>N</tablename_in_field>
  1914 + <tablename_field/>
  1915 + <tablename_in_table>Y</tablename_in_table>
  1916 + <return_keys>N</return_keys>
  1917 + <return_field/>
  1918 + <fields>
  1919 + <field>
  1920 + <column_name>xl</column_name>
  1921 + <stream_name>xlid</stream_name>
  1922 + </field>
  1923 + <field>
  1924 + <column_name>car_config_info</column_name>
  1925 + <stream_name>cid</stream_name>
  1926 + </field>
  1927 + <field>
  1928 + <column_name>lp_names</column_name>
  1929 + <stream_name>lpnames</stream_name>
  1930 + </field>
  1931 + <field>
  1932 + <column_name>lp_ids</column_name>
  1933 + <stream_name>lpids</stream_name>
  1934 + </field>
  1935 + <field>
  1936 + <column_name>lp_start</column_name>
  1937 + <stream_name>starting road sign</stream_name>
  1938 + </field>
  1939 + <field>
  1940 + <column_name>ry_start</column_name>
  1941 + <stream_name>starting staff</stream_name>
  1942 + </field>
  1943 + <field>
  1944 + <column_name>qyrq</column_name>
  1945 + <stream_name>activation date</stream_name>
  1946 + </field>
  1947 + <field>
  1948 + <column_name>fbgs</column_name>
  1949 + <stream_name>shift format</stream_name>
  1950 + </field>
  1951 + <field>
  1952 + <column_name>ry_dbbms</column_name>
  1953 + <stream_name>rybms</stream_name>
  1954 + </field>
  1955 + <field>
  1956 + <column_name>ry_config_ids</column_name>
  1957 + <stream_name>rycids</stream_name>
  1958 + </field>
  1959 + <field>
  1960 + <column_name>fbtype</column_name>
  1961 + <stream_name>fbtype</stream_name>
  1962 + </field>
  1963 + </fields>
  1964 + <cluster_schema/>
  1965 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1966 + <xloc>65</xloc>
  1967 + <yloc>481</yloc>
  1968 + <draw>Y</draw>
  1969 + </GUI>
  1970 + </step>
  1971 +
  1972 + <step>
  1973 + <name>&#x8def;&#x724c;&#x4fe1;&#x606f;&#x67e5;&#x8be2;</name>
  1974 + <type>DBJoin</type>
  1975 + <description/>
  1976 + <distribute>Y</distribute>
  1977 + <custom_distribution/>
  1978 + <copies>1</copies>
  1979 + <partitioning>
  1980 + <method>none</method>
  1981 + <schema_name/>
  1982 + </partitioning>
  1983 + <connection>control_jndi</connection>
  1984 + <rowlimit>1</rowlimit>
  1985 + <sql>select id as lpid from bsth_c_s_gbi&#xa;where xl &#x3d; &#x3f; &#xa;and lp_name &#x3d; &#x3f; &#xa;and is_cancel &#x3d; 0</sql>
  1986 + <outer_join>N</outer_join>
  1987 + <replace_vars>N</replace_vars>
  1988 + <parameter>
  1989 + <field>
  1990 + <name>xlid</name>
  1991 + <type>Integer</type>
  1992 + </field>
  1993 + <field>
  1994 + <name>lpname</name>
  1995 + <type>String</type>
  1996 + </field>
  1997 + </parameter>
  1998 + <cluster_schema/>
  1999 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2000 + <xloc>366</xloc>
  2001 + <yloc>111</yloc>
  2002 + <draw>Y</draw>
  2003 + </GUI>
  2004 + </step>
  2005 +
  2006 + <step>
  2007 + <name>&#x8f66;&#x8f86;&#x914d;&#x7f6e;&#x4fe1;&#x606f;&#x67e5;&#x8be2;</name>
  2008 + <type>DBJoin</type>
  2009 + <description/>
  2010 + <distribute>Y</distribute>
  2011 + <custom_distribution/>
  2012 + <copies>1</copies>
  2013 + <partitioning>
  2014 + <method>none</method>
  2015 + <schema_name/>
  2016 + </partitioning>
  2017 + <connection>control_jndi</connection>
  2018 + <rowlimit>1</rowlimit>
  2019 + <sql>select t1.id as cid &#xa;from bsth_c_s_ccinfo t1 left join bsth_c_cars t2 on t1.cl &#x3d; t2.id&#xa;where t1.xl &#x3d; &#x3f; &#xa;and t2.inside_code &#x3d; &#x3f; &#xa;and t1.is_cancel &#x3d; 0 </sql>
  2020 + <outer_join>N</outer_join>
  2021 + <replace_vars>N</replace_vars>
  2022 + <parameter>
  2023 + <field>
  2024 + <name>xlid</name>
  2025 + <type>Integer</type>
  2026 + </field>
  2027 + <field>
  2028 + <name>internal number</name>
  2029 + <type>String</type>
  2030 + </field>
  2031 + </parameter>
  2032 + <cluster_schema/>
  2033 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2034 + <xloc>209</xloc>
  2035 + <yloc>207</yloc>
  2036 + <draw>Y</draw>
  2037 + </GUI>
  2038 + </step>
  2039 +
  2040 + <step>
  2041 + <name>&#x9519;&#x8bef;&#x8f93;&#x51fa; 2</name>
  2042 + <type>ExcelOutput</type>
  2043 + <description/>
  2044 + <distribute>Y</distribute>
  2045 + <custom_distribution/>
  2046 + <copies>1</copies>
  2047 + <partitioning>
  2048 + <method>none</method>
  2049 + <schema_name/>
  2050 + </partitioning>
  2051 + <header>Y</header>
  2052 + <footer>N</footer>
  2053 + <encoding>UTF-8</encoding>
  2054 + <append>N</append>
  2055 + <add_to_result_filenames>Y</add_to_result_filenames>
  2056 + <file>
  2057 + <name>&#x24;&#x7b;erroroutputdir&#x7d;&#x2f;&#x6392;&#x7248;&#x89c4;&#x5219;&#x4fe1;&#x606f;&#x5bfc;&#x5165;_&#x9519;&#x8bef;</name>
  2058 + <extention>xls</extention>
  2059 + <do_not_open_newfile_init>N</do_not_open_newfile_init>
  2060 + <create_parent_folder>N</create_parent_folder>
  2061 + <split>N</split>
  2062 + <add_date>N</add_date>
  2063 + <add_time>N</add_time>
  2064 + <SpecifyFormat>N</SpecifyFormat>
  2065 + <date_time_format/>
  2066 + <sheetname>sheet1</sheetname>
  2067 + <autosizecolums>N</autosizecolums>
  2068 + <nullisblank>N</nullisblank>
  2069 + <protect_sheet>N</protect_sheet>
  2070 + <password>Encrypted </password>
  2071 + <splitevery>0</splitevery>
  2072 + <usetempfiles>N</usetempfiles>
  2073 + <tempdirectory/>
  2074 + </file>
  2075 + <template>
  2076 + <enabled>N</enabled>
  2077 + <append>N</append>
  2078 + <filename>template.xls</filename>
  2079 + </template>
  2080 + <fields>
  2081 + <field>
  2082 + <name>xlid</name>
  2083 + <type>Integer</type>
  2084 + <format/>
  2085 + </field>
  2086 + <field>
  2087 + <name>cid</name>
  2088 + <type>Integer</type>
  2089 + <format/>
  2090 + </field>
  2091 + <field>
  2092 + <name>lpnames</name>
  2093 + <type>String</type>
  2094 + <format/>
  2095 + </field>
  2096 + <field>
  2097 + <name>lpids</name>
  2098 + <type>String</type>
  2099 + <format/>
  2100 + </field>
  2101 + <field>
  2102 + <name>starting road sign</name>
  2103 + <type>String</type>
  2104 + <format/>
  2105 + </field>
  2106 + <field>
  2107 + <name>starting staff</name>
  2108 + <type>String</type>
  2109 + <format/>
  2110 + </field>
  2111 + <field>
  2112 + <name>staff range</name>
  2113 + <type>String</type>
  2114 + <format/>
  2115 + </field>
  2116 + <field>
  2117 + <name>activation date</name>
  2118 + <type>Timestamp</type>
  2119 + <format/>
  2120 + </field>
  2121 + <field>
  2122 + <name>shift format</name>
  2123 + <type>String</type>
  2124 + <format/>
  2125 + </field>
  2126 + <field>
  2127 + <name>isCancel</name>
  2128 + <type>Integer</type>
  2129 + <format/>
  2130 + </field>
  2131 + <field>
  2132 + <name>rycids</name>
  2133 + <type>String</type>
  2134 + <format/>
  2135 + </field>
  2136 + <field>
  2137 + <name>rybms</name>
  2138 + <type>String</type>
  2139 + <format/>
  2140 + </field>
  2141 + <field>
  2142 + <name>error_count</name>
  2143 + <type>Integer</type>
  2144 + <format/>
  2145 + </field>
  2146 + <field>
  2147 + <name>error_desc</name>
  2148 + <type>String</type>
  2149 + <format/>
  2150 + </field>
  2151 + <field>
  2152 + <name>error_column1</name>
  2153 + <type>String</type>
  2154 + <format/>
  2155 + </field>
  2156 + <field>
  2157 + <name>error_column2</name>
  2158 + <type>String</type>
  2159 + <format/>
  2160 + </field>
  2161 + </fields>
  2162 + <custom>
  2163 + <header_font_name>arial</header_font_name>
  2164 + <header_font_size>10</header_font_size>
  2165 + <header_font_bold>N</header_font_bold>
  2166 + <header_font_italic>N</header_font_italic>
  2167 + <header_font_underline>no</header_font_underline>
  2168 + <header_font_orientation>horizontal</header_font_orientation>
  2169 + <header_font_color>black</header_font_color>
  2170 + <header_background_color>none</header_background_color>
  2171 + <header_row_height>255</header_row_height>
  2172 + <header_alignment>left</header_alignment>
  2173 + <header_image/>
  2174 + <row_font_name>arial</row_font_name>
  2175 + <row_font_size>10</row_font_size>
  2176 + <row_font_color>black</row_font_color>
  2177 + <row_background_color>none</row_background_color>
  2178 + </custom>
  2179 + <cluster_schema/>
  2180 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2181 + <xloc>64</xloc>
  2182 + <yloc>380</yloc>
  2183 + <draw>Y</draw>
  2184 + </GUI>
  2185 + </step>
  2186 +
  2187 + <step>
  2188 + <name>&#x963b;&#x585e;&#x6570;&#x636e;&#x76f4;&#x5230;&#x6b65;&#x9aa4;&#x90fd;&#x5b8c;&#x6210;</name>
  2189 + <type>BlockUntilStepsFinish</type>
  2190 + <description/>
  2191 + <distribute>Y</distribute>
  2192 + <custom_distribution/>
  2193 + <copies>1</copies>
  2194 + <partitioning>
  2195 + <method>none</method>
  2196 + <schema_name/>
  2197 + </partitioning>
  2198 + <steps>
  2199 + <step>
  2200 + <name>&#x5220;&#x9664;</name>
  2201 + <CopyNr>0</CopyNr>
  2202 + </step>
  2203 + </steps>
  2204 + <cluster_schema/>
  2205 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2206 + <xloc>216</xloc>
  2207 + <yloc>480</yloc>
  2208 + <draw>Y</draw>
  2209 + </GUI>
  2210 + </step>
  2211 +
  2212 + <step>
  2213 + <name>&#x9ed8;&#x8ba4;&#x7ffb;&#x73ed;&#x7c7b;&#x578b;</name>
  2214 + <type>Constant</type>
  2215 + <description/>
  2216 + <distribute>Y</distribute>
  2217 + <custom_distribution/>
  2218 + <copies>1</copies>
  2219 + <partitioning>
  2220 + <method>none</method>
  2221 + <schema_name/>
  2222 + </partitioning>
  2223 + <fields>
  2224 + <field>
  2225 + <name>fbtype</name>
  2226 + <type>String</type>
  2227 + <format/>
  2228 + <currency/>
  2229 + <decimal/>
  2230 + <group/>
  2231 + <nullif>0</nullif>
  2232 + <length>-1</length>
  2233 + <precision>-1</precision>
  2234 + <set_empty_string>N</set_empty_string>
  2235 + </field>
  2236 + </fields>
  2237 + <cluster_schema/>
  2238 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2239 + <xloc>485</xloc>
  2240 + <yloc>481</yloc>
  2241 + <draw>Y</draw>
  2242 + </GUI>
  2243 + </step>
  2244 +
  2245 + <step_error_handling>
  2246 + <error>
  2247 + <source_step>&#x89c4;&#x5219;&#x8868;&#x8f93;&#x51fa;</source_step>
  2248 + <target_step>&#x9519;&#x8bef;&#x8f93;&#x51fa; 2</target_step>
  2249 + <is_enabled>Y</is_enabled>
  2250 + <nr_valuename>error_count</nr_valuename>
  2251 + <descriptions_valuename>error_desc</descriptions_valuename>
  2252 + <fields_valuename>error_column1</fields_valuename>
  2253 + <codes_valuename>error_column2</codes_valuename>
  2254 + <max_errors/>
  2255 + <max_pct_errors/>
  2256 + <min_pct_rows/>
  2257 + </error>
  2258 + </step_error_handling>
  2259 + <slave-step-copy-partition-distribution>
  2260 +</slave-step-copy-partition-distribution>
  2261 + <slave_transformation>N</slave_transformation>
  2262 +
  2263 +</transformation>
src/main/resources/datatools/ktrs/scheduleRuleDataOutput.ktr renamed to src/main/resources/datatools/ktrs/zh/schedule-rule-data_export.ktr
1 <?xml version="1.0" encoding="UTF-8"?> 1 <?xml version="1.0" encoding="UTF-8"?>
2 <transformation> 2 <transformation>
3 <info> 3 <info>
4 - <name>&#x6392;&#x73ed;&#x89c4;&#x5219;&#x4fe1;&#x606f;&#x5bfc;&#x51fa;</name> 4 + <name>&#x6392;&#x73ed;&#x89c4;&#x5219;&#x4fe1;&#x606f;&#x5bfc;&#x51fa;_zh</name>
5 <description/> 5 <description/>
6 <extended_description/> 6 <extended_description/>
7 <trans_version/> 7 <trans_version/>
@@ -438,6 +438,33 @@ @@ -438,6 +438,33 @@
438 </attributes> 438 </attributes>
439 </connection> 439 </connection>
440 <connection> 440 <connection>
  441 + <name>test_control_local</name>
  442 + <server>localhost</server>
  443 + <type>MYSQL</type>
  444 + <access>Native</access>
  445 + <database>test_control</database>
  446 + <port>3306</port>
  447 + <username>root</username>
  448 + <password>Encrypted </password>
  449 + <servername/>
  450 + <data_tablespace/>
  451 + <index_tablespace/>
  452 + <attributes>
  453 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  454 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  455 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  456 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  457 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  458 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  459 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  460 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  461 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  462 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  463 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  464 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  465 + </attributes>
  466 + </connection>
  467 + <connection>
441 <name>test_control&#xff08;&#x672c;&#x673a;&#xff09;</name> 468 <name>test_control&#xff08;&#x672c;&#x673a;&#xff09;</name>
442 <server>127.0.0.1</server> 469 <server>127.0.0.1</server>
443 <type>MYSQL</type> 470 <type>MYSQL</type>
@@ -450,6 +477,62 @@ @@ -450,6 +477,62 @@
450 <data_tablespace/> 477 <data_tablespace/>
451 <index_tablespace/> 478 <index_tablespace/>
452 <attributes> 479 <attributes>
  480 + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
  481 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  482 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  483 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  484 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  485 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  486 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  487 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  488 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  489 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  490 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  491 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  492 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  493 + </attributes>
  494 + </connection>
  495 + <connection>
  496 + <name>wzk_mysql_jndi</name>
  497 + <server/>
  498 + <type>MYSQL</type>
  499 + <access>JNDI</access>
  500 + <database>wzk_mysql</database>
  501 + <port>1521</port>
  502 + <username/>
  503 + <password>Encrypted </password>
  504 + <servername/>
  505 + <data_tablespace/>
  506 + <index_tablespace/>
  507 + <attributes>
  508 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  509 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  510 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  511 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  512 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  513 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  514 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  515 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  516 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  517 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  518 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  519 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  520 + </attributes>
  521 + </connection>
  522 + <connection>
  523 + <name>wzk&#xff08;&#x672c;&#x673a;&#xff09;</name>
  524 + <server>localhost</server>
  525 + <type>MYSQL</type>
  526 + <access>Native</access>
  527 + <database>pdgj_wzk_sys</database>
  528 + <port>3306</port>
  529 + <username>root</username>
  530 + <password>Encrypted </password>
  531 + <servername/>
  532 + <data_tablespace/>
  533 + <index_tablespace/>
  534 + <attributes>
  535 + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
453 <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> 536 <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
454 <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> 537 <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
455 <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> 538 <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
@@ -617,7 +700,7 @@ @@ -617,7 +700,7 @@
617 </connection> 700 </connection>
618 <connection> 701 <connection>
619 <name>&#x516c;&#x53f8;ygjw</name> 702 <name>&#x516c;&#x53f8;ygjw</name>
620 - <server>192.168.168.1</server> 703 + <server>192.168.168.178</server>
621 <type>ORACLE</type> 704 <type>ORACLE</type>
622 <access>Native</access> 705 <access>Native</access>
623 <database>orcl</database> 706 <database>orcl</database>
@@ -639,6 +722,126 @@ @@ -639,6 +722,126 @@
639 <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> 722 <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
640 </attributes> 723 </attributes>
641 </connection> 724 </connection>
  725 + <connection>
  726 + <name>&#x516c;&#x53f8;&#x673a;&#x52a1;_pdgj</name>
  727 + <server>192.168.168.178</server>
  728 + <type>ORACLE</type>
  729 + <access>Native</access>
  730 + <database>orcl</database>
  731 + <port>1521</port>
  732 + <username>pdgj</username>
  733 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10ce96a8d0</password>
  734 + <servername/>
  735 + <data_tablespace/>
  736 + <index_tablespace/>
  737 + <attributes>
  738 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  739 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  740 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  741 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  742 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  743 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  744 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  745 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  746 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  747 + </attributes>
  748 + </connection>
  749 + <connection>
  750 + <name>&#x5916;&#x7f51;vpn&#x4e34;&#x6e2f;&#x673a;&#x52a1;oracle</name>
  751 + <server>10.10.150.114</server>
  752 + <type>ORACLE</type>
  753 + <access>Native</access>
  754 + <database>helowin</database>
  755 + <port>1521</port>
  756 + <username>lgjw</username>
  757 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d295a5cd</password>
  758 + <servername/>
  759 + <data_tablespace/>
  760 + <index_tablespace/>
  761 + <attributes>
  762 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  763 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  764 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  765 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  766 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  767 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  768 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  769 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  770 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  771 + </attributes>
  772 + </connection>
  773 + <connection>
  774 + <name>&#x5916;&#x7f51;&#x5357;&#x6c47;&#x673a;&#x52a1;oracle</name>
  775 + <server>58.247.254.118</server>
  776 + <type>ORACLE</type>
  777 + <access>Native</access>
  778 + <database>orcl</database>
  779 + <port>15211</port>
  780 + <username>nhjw</username>
  781 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d09aa5cd</password>
  782 + <servername/>
  783 + <data_tablespace/>
  784 + <index_tablespace/>
  785 + <attributes>
  786 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  787 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  788 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  789 + <attribute><code>PORT_NUMBER</code><attribute>15211</attribute></attribute>
  790 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  791 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  792 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  793 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  794 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  795 + </attributes>
  796 + </connection>
  797 + <connection>
  798 + <name>&#x5916;&#x7f51;&#x6768;&#x9ad8;&#x673a;&#x52a1;oracle</name>
  799 + <server>58.247.254.118</server>
  800 + <type>ORACLE</type>
  801 + <access>Native</access>
  802 + <database>orcl</database>
  803 + <port>15211</port>
  804 + <username>ygjw</username>
  805 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10c795a5cd</password>
  806 + <servername/>
  807 + <data_tablespace/>
  808 + <index_tablespace/>
  809 + <attributes>
  810 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  811 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  812 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  813 + <attribute><code>PORT_NUMBER</code><attribute>15211</attribute></attribute>
  814 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  815 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  816 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  817 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  818 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  819 + </attributes>
  820 + </connection>
  821 + <connection>
  822 + <name>&#x5916;&#x7f51;&#x91d1;&#x9ad8;&#x673a;&#x52a1;oracle</name>
  823 + <server>58.247.254.118</server>
  824 + <type>ORACLE</type>
  825 + <access>Native</access>
  826 + <database>orcl</database>
  827 + <port>15211</port>
  828 + <username>jwgl</username>
  829 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d485a8d6</password>
  830 + <servername/>
  831 + <data_tablespace/>
  832 + <index_tablespace/>
  833 + <attributes>
  834 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  835 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  836 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  837 + <attribute><code>PORT_NUMBER</code><attribute>15211</attribute></attribute>
  838 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  839 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  840 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  841 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  842 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  843 + </attributes>
  844 + </connection>
642 <order> 845 <order>
643 <hop> <from>&#x6392;&#x7248;&#x89c4;&#x5219;</from><to>&#x7ebf;&#x8def;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop> 846 <hop> <from>&#x6392;&#x7248;&#x89c4;&#x5219;</from><to>&#x7ebf;&#x8def;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>
644 <hop> <from>&#x7ebf;&#x8def;&#x67e5;&#x8be2;</from><to>&#x8f66;&#x8f86;&#x914d;&#x7f6e;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop> 847 <hop> <from>&#x7ebf;&#x8def;&#x67e5;&#x8be2;</from><to>&#x8f66;&#x8f86;&#x914d;&#x7f6e;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>