Commit bde4755bbb4fae6755377030482b356da215b22f

Authored by 徐烜
1 parent 74baff22

1、国际化改造:车辆配置管理后端国际化改造

src/main/java/com/bsth/service/schedule/datatools/CarConfigInfoDataToolsImpl.java
1 1 package com.bsth.service.schedule.datatools;
2 2  
3 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;
8   -import org.apache.poi.ss.usermodel.Sheet;
9   -import org.apache.poi.ss.usermodel.Workbook;
  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;
10 8 import org.slf4j.Logger;
11 9 import org.slf4j.LoggerFactory;
12 10 import org.springframework.beans.factory.annotation.Autowired;
13 11 import org.springframework.beans.factory.annotation.Qualifier;
14   -import org.springframework.boot.context.properties.EnableConfigurationProperties;
15 12 import org.springframework.stereotype.Service;
16 13  
17 14 import java.io.File;
18 15 import java.io.PrintWriter;
19 16 import java.io.StringWriter;
20 17 import java.util.HashMap;
  18 +import java.util.Locale;
21 19 import java.util.Map;
22 20  
23 21 /**
... ... @@ -37,48 +35,7 @@ public class CarConfigInfoDataToolsImpl implements DataToolsService {
37 35  
38 36 @Override
39 37 public DataToolsFile uploadFile(String filename, byte[] filedata) throws ScheduleException {
40   - try {
41   - // 对上传的excel文件做处理
42   - // 将第一个sheet保存成一个xls文件
43   - DataToolsFile dataToolsFile = dataToolsService.uploadFile(filename, filedata);
44   - File file = dataToolsFile.getFile();
45   -
46   - // poi api
47   - Workbook poi_workbook = dataToolsFile.getFileType().getWorkBook(file);
48   - Sheet poi_sheet = poi_workbook.getSheetAt(0); // 第一个sheet
49   - int rowNum = poi_sheet.getLastRowNum(); // 获取总共多少行
50   - if (rowNum < 0) {
51   - throw new RuntimeException("表格内容为空!");
52   - }
53   - int colNum = poi_sheet.getRow(0).getLastCellNum(); // 获取总共多少列,以第一行为主
54   -
55   - // jxl api
56   - File fileCal = new File(file.getAbsolutePath() + "_sheetChange.xls");
57   - WritableWorkbook writableWorkbook = jxl.Workbook.createWorkbook(fileCal);
58   - WritableSheet writableSheet = writableWorkbook.createSheet("工作表1", 0);
59   -
60   - for (int i = 0; i <= rowNum; i++) {
61   - for (int j = 0; j <= colNum; j++) {
62   - // poi读
63   - String cellContent = PoiUtils.getStringValueFromCell(poi_sheet.getRow(i).getCell(j));
64   - // jxl写
65   - writableSheet.addCell(new Label(j, i, cellContent));
66   - }
67   -
68   - }
69   - writableWorkbook.write();
70   - writableWorkbook.close();
71   - poi_workbook.close();
72   -
73   - DataToolsFile dataToolsFile1 = new DataToolsFile();
74   - dataToolsFile1.setFile(fileCal);
75   - dataToolsFile1.setFileType(DataToolsFileType.XLS);
76   -
77   - return dataToolsFile1;
78   -
79   - } catch (Exception exp) {
80   - throw new ScheduleException(exp);
81   - }
  38 + return this.dataToolsService.uploadFile(filename, filedata);
82 39 }
83 40  
84 41 @Override
... ... @@ -87,8 +44,17 @@ public class CarConfigInfoDataToolsImpl implements DataToolsService {
87 44 LOGGER.info("//---------------- 导入车辆配置信息 start... ----------------//");
88 45 // 创建ktr转换所需参数
89 46 Map<String, Object> ktrParms = new HashMap<>();
90   - File ktrFile = new File(this.getClass().getResource(
91   - dataToolsProperties.getCarsconfigDatainputktr()).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.getZhVehicleConfigDataImport()).toURI());
  52 + } else if ("en".equals(country)) {
  53 + ktrFile = new File(this.getClass().getResource(
  54 + dataToolsProperties.getEnVehicleConfigDataImport()).toURI());
  55 + } else {
  56 + throw new Exception("not found Local[" + country + "] corresponding ktr.");
  57 + }
92 58  
93 59 // 通用参数,转换文件路径,excel输入文件路径,错误输出文件路径
94 60 ktrParms.put("transpath", ktrFile.getAbsolutePath());
... ... @@ -117,12 +83,21 @@ public class CarConfigInfoDataToolsImpl implements DataToolsService {
117 83 LOGGER.info("//---------------- 导出车辆配置信息 start... ----------------//");
118 84 // 创建ktr转换所需参数
119 85 Map<String, Object> ktrParms = new HashMap<>();
120   - File ktrFile = new File(this.getClass().getResource(
121   - dataToolsProperties.getCarsconfigDataoutputktr()).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.getZhVehicleConfigDataExport()).toURI());
  91 + } else if ("en".equals(country)) {
  92 + ktrFile = new File(this.getClass().getResource(
  93 + dataToolsProperties.getEnVehicleConfigDataExport()).toURI());
  94 + } else {
  95 + throw new Exception("not found Local[" + country + "] corresponding ktr.");
  96 + }
122 97  
123 98 // 通用参数,转换文件路径,excel输出文件名
124 99 ktrParms.put("transpath", ktrFile.getAbsolutePath());
125   - ktrParms.put("filename", "$$$$$${txt-1616}_download-");
  100 + ktrParms.put("filename", I18n.getInstance().getMessage("txt-1616") + "_download-");
126 101  
127 102 ktrParms.putAll(params);
128 103  
... ...
src/main/java/com/bsth/service/schedule/impl/CarConfigInfoServiceImpl.java
... ... @@ -10,6 +10,7 @@ import com.bsth.service.schedule.ScheduleRule1FlatService;
10 10 import com.bsth.service.schedule.exception.ScheduleException;
11 11 import com.bsth.service.schedule.utils.DataToolsFile;
12 12 import com.bsth.service.schedule.utils.DataToolsService;
  13 +import com.bsth.util.I18n;
13 14 import org.springframework.beans.factory.annotation.Autowired;
14 15 import org.springframework.beans.factory.annotation.Qualifier;
15 16 import org.springframework.stereotype.Service;
... ... @@ -53,7 +54,7 @@ public class CarConfigInfoServiceImpl extends BServiceImpl&lt;CarConfigInfo, Long&gt;
53 54 @Override
54 55 public void validate_cars_gs(CarConfigInfo carConfigInfo, List<CompanyAuthority> companyAuthorityList) throws ScheduleException {
55 56 if (CollectionUtils.isEmpty(companyAuthorityList)) {
56   - throw new ScheduleException("当前用户没有公司权限!");
  57 + throw new ScheduleException(I18n.getInstance().getMessage("carConfigInfoServiceImpl-line57"));
57 58 }
58 59  
59 60 boolean isFind = false;
... ... @@ -65,14 +66,14 @@ public class CarConfigInfoServiceImpl extends BServiceImpl&lt;CarConfigInfo, Long&gt;
65 66 }
66 67 }
67 68 if (!isFind) {
68   - throw new ScheduleException("当前车辆不在用户所属公司中!");
  69 + throw new ScheduleException(I18n.getInstance().getMessage("carConfigInfoServiceImpl-line69"));
69 70 }
70 71 }
71 72  
72 73 @Override
73 74 public void validate_cars_fgs(CarConfigInfo carConfigInfo, List<CompanyAuthority> companyAuthorityList) throws ScheduleException {
74 75 if (CollectionUtils.isEmpty(companyAuthorityList)) {
75   - throw new ScheduleException("当前用户没有分公司权限!");
  76 + throw new ScheduleException(I18n.getInstance().getMessage("carConfigInfoServiceImpl-line76"));
76 77 }
77 78  
78 79 boolean isFind = false;
... ... @@ -97,7 +98,7 @@ public class CarConfigInfoServiceImpl extends BServiceImpl&lt;CarConfigInfo, Long&gt;
97 98 }
98 99 }
99 100 if (!isFind) {
100   - throw new ScheduleException("当前车辆不在用户所属分公司中!");
  101 + throw new ScheduleException(I18n.getInstance().getMessage("carConfigInfoServiceImpl-line101"));
101 102 }
102 103 }
103 104  
... ... @@ -112,17 +113,18 @@ public class CarConfigInfoServiceImpl extends BServiceImpl&lt;CarConfigInfo, Long&gt;
112 113 if (carConfigInfo.getXl() == null ||
113 114 carConfigInfo.getXl().getId() == null ||
114 115 carConfigInfo.getXl().getName() == null) {
115   - throw new ScheduleException("线路未选择");
  116 + throw new ScheduleException(I18n.getInstance().getMessage("carConfigInfoServiceImpl-line116"));
116 117 } else {
117 118 // param.put("xl.id_eq", carConfigInfo.getXl().getId());
118 119 param.put("isCancel_eq", false);
119 120 if (carConfigInfo.getCl() == null || carConfigInfo.getCl().getId() == null) {
120   - throw new ScheduleException("车辆未选择");
  121 + throw new ScheduleException(I18n.getInstance().getMessage("carConfigInfoServiceImpl-line121"));
121 122 } else {
122 123 param.put("cl.id_eq", carConfigInfo.getCl().getId());
123 124 List<CarConfigInfo> carConfigInfos = list(param);
124 125 if (!CollectionUtils.isEmpty(carConfigInfos)) {
125   - throw new ScheduleException("车辆已经配置在" + carConfigInfos.get(0).getXl().getName() + "线路中!");
  126 + throw new ScheduleException(I18n.getInstance().getMessage("carConfigInfoServiceImpl-line126",
  127 + carConfigInfos.get(0).getXl().getName()));
126 128 }
127 129 }
128 130 }
... ... @@ -137,7 +139,8 @@ public class CarConfigInfoServiceImpl extends BServiceImpl&lt;CarConfigInfo, Long&gt;
137 139 List<CarConfigInfo> carConfigInfos = list(param);
138 140 for (CarConfigInfo carConfigInfo : carConfigInfos) {
139 141 if (!carConfigInfo.getXl().getId().equals(xlId)) {
140   - throw new ScheduleException("车辆不配置在当前线路下,配置在" + carConfigInfo.getXl().getName() + "线路中!");
  142 + throw new ScheduleException(I18n.getInstance().getMessage("carConfigInfoServiceImpl-line142",
  143 + carConfigInfo.getXl().getName()));
141 144 }
142 145 }
143 146 }
... ... @@ -150,7 +153,7 @@ public class CarConfigInfoServiceImpl extends BServiceImpl&lt;CarConfigInfo, Long&gt;
150 153 param.put("isCancel_eq", false);
151 154 List<CarConfigInfo> carConfigInfos = list(param);
152 155 if (CollectionUtils.isEmpty(carConfigInfos)) {
153   - throw new ScheduleException("当前车辆没有配置在当前线路中,不属于当前线路!");
  156 + throw new ScheduleException(I18n.getInstance().getMessage("carConfigInfoServiceImpl-line156"));
154 157 }
155 158 }
156 159  
... ... @@ -174,7 +177,7 @@ public class CarConfigInfoServiceImpl extends BServiceImpl&lt;CarConfigInfo, Long&gt;
174 177 if (CollectionUtils.isEmpty(scheduleRule1Flats)) {
175 178 carConfigInfo.setIsCancel(true);
176 179 } else {
177   - throw new ScheduleException("车辆配置已被规则使用,不能作废,请先修改规则!");
  180 + throw new ScheduleException(I18n.getInstance().getMessage("carConfigInfoServiceImpl-line180"));
178 181 }
179 182 }
180 183 }
... ...
src/main/java/com/bsth/service/schedule/utils/DataToolsProperties.java
... ... @@ -39,6 +39,54 @@ public class DataToolsProperties {
39 39 @NotNull
40 40 private String kettleProperties;
41 41  
  42 + //---------------------------- 车辆配置数据相关ktr(以下)----------------------------//
  43 + /** 车辆配置数据导入(英文)*/
  44 + @NotNull
  45 + private String enVehicleConfigDataImport;
  46 + /** 车辆配置数据导出(英文)*/
  47 + @NotNull
  48 + private String enVehicleConfigDataExport;
  49 + /** 车辆配置数据导入(中文)*/
  50 + @NotNull
  51 + private String zhVehicleConfigDataImport;
  52 + /** 车辆配置数据导出(中文)*/
  53 + @NotNull
  54 + private String zhVehicleConfigDataExport;
  55 +
  56 + public String getEnVehicleConfigDataImport() {
  57 + return enVehicleConfigDataImport;
  58 + }
  59 +
  60 + public void setEnVehicleConfigDataImport(String enVehicleConfigDataImport) {
  61 + this.enVehicleConfigDataImport = enVehicleConfigDataImport;
  62 + }
  63 +
  64 + public String getEnVehicleConfigDataExport() {
  65 + return enVehicleConfigDataExport;
  66 + }
  67 +
  68 + public void setEnVehicleConfigDataExport(String enVehicleConfigDataExport) {
  69 + this.enVehicleConfigDataExport = enVehicleConfigDataExport;
  70 + }
  71 +
  72 + public String getZhVehicleConfigDataImport() {
  73 + return zhVehicleConfigDataImport;
  74 + }
  75 +
  76 + public void setZhVehicleConfigDataImport(String zhVehicleConfigDataImport) {
  77 + this.zhVehicleConfigDataImport = zhVehicleConfigDataImport;
  78 + }
  79 +
  80 + public String getZhVehicleConfigDataExport() {
  81 + return zhVehicleConfigDataExport;
  82 + }
  83 +
  84 + public void setZhVehicleConfigDataExport(String zhVehicleConfigDataExport) {
  85 + this.zhVehicleConfigDataExport = zhVehicleConfigDataExport;
  86 + }
  87 +
  88 + //---------------------------- 车辆配置数据相关ktr(以上)----------------------------//
  89 +
42 90 //---------------------------- 路牌信息相关ktr(以下)----------------------------//
43 91 /** 路牌信息导入(英文) */
44 92 @NotNull
... ... @@ -186,9 +234,6 @@ public class DataToolsProperties {
186 234  
187 235  
188 236 //------------------------- 导入数据ktr --------------------------//
189   - /** 车辆配置信息导入 */
190   - @NotNull
191   - private String carsconfigDatainputktr;
192 237 /** 人员配置信息导入 */
193 238 @NotNull
194 239 private String employeesconfigDatainputktr;
... ... @@ -232,9 +277,6 @@ public class DataToolsProperties {
232 277 /** 排版规则导出数据ktr转换 */
233 278 private String scheduleruleOutput;
234 279 @NotNull
235   - /** 车辆配置信息导出ktr转换 */
236   - private String carsconfigDataoutputktr;
237   - @NotNull
238 280 /** 人员配置信息导出ktr转换 */
239 281 private String employeesconfigDataoutputktr;
240 282  
... ... @@ -272,14 +314,6 @@ public class DataToolsProperties {
272 314 this.ttinfodetailMetadatainputktr = ttinfodetailMetadatainputktr;
273 315 }
274 316  
275   - public String getCarsconfigDatainputktr() {
276   - return carsconfigDatainputktr;
277   - }
278   -
279   - public void setCarsconfigDatainputktr(String carsconfigDatainputktr) {
280   - this.carsconfigDatainputktr = carsconfigDatainputktr;
281   - }
282   -
283 317 public String getEmployeesconfigDatainputktr() {
284 318 return employeesconfigDatainputktr;
285 319 }
... ... @@ -364,14 +398,6 @@ public class DataToolsProperties {
364 398 this.scheduleruleOutput = scheduleruleOutput;
365 399 }
366 400  
367   - public String getCarsconfigDataoutputktr() {
368   - return carsconfigDataoutputktr;
369   - }
370   -
371   - public void setCarsconfigDataoutputktr(String carsconfigDataoutputktr) {
372   - this.carsconfigDataoutputktr = carsconfigDataoutputktr;
373   - }
374   -
375 401 public String getTtinfodetailDatainputktr2version() {
376 402 return ttinfodetailDatainputktr2version;
377 403 }
... ...
src/main/resources/datatools/config-cloud.properties
... ... @@ -39,6 +39,13 @@ datatools.zh_road_sign_data_import=/datatools/ktrs/zh/road-sign-data_import.ktr
39 39 datatools.zh_road_sign_data_export=/datatools/ktrs/zh/road-sign-data_export.ktr
40 40 ##---------------------------- 路牌信息相关ktr(以上)----------------------------##
41 41  
  42 +##---------------------------- 车辆配置数据相关ktr(以下)----------------------------##
  43 +datatools.en_vehicle_config_data_import=/datatools/ktrs/en/vehicle-config-data_import.ktr
  44 +datatools.en_vehicle_config_data_export=/datatools/ktrs/en/vehicle-config-data_export.ktr
  45 +datatools.zh_vehicle_config_data_import=/datatools/ktrs/zh/vehicle-config-data_import.ktr
  46 +datatools.zh_vehicle_config_data_export=/datatools/ktrs/zh/vehicle-config-data_export.ktr
  47 +##---------------------------- 车辆配置数据相关ktr(以上)----------------------------##
  48 +
42 49  
43 50 ##---------------------------- 导入数据ktr ----------------------------##
44 51 # 时刻表基础信息导入
... ... @@ -58,8 +65,6 @@ datatools.ttinfodetail_datainputktr2version2=/datatools/ktrs/ttinfodetailDataInp
58 65 # 时刻表明细信息导入2,一般格式(路牌列后加一列工时列)
59 66 datatools.ttinfodetail_datainputktr2normalwithgs=/datatools/ktrs/ttinfodetailDataInput2_normalwithgs.ktr
60 67  
61   -# 车辆配置信息导入
62   -datatools.carsconfig_datainputktr=/datatools/ktrs/carsConfigDataInput.ktr
63 68 # 人员配置信息导入
64 69 datatools.employeesconfig_datainputktr=/datatools/ktrs/employeesConfigDataInput.ktr
65 70  
... ... @@ -75,8 +80,6 @@ datatools.ttinfodetail_output=/datatools/ktrs/ttinfodetailDataOutput.ktr
75 80 # 排版规则导出数据ktr转换
76 81 datatools.schedulerule_output=/datatools/ktrs/scheduleRuleDataOutput.ktr
77 82  
78   -# 车辆配置信息导出ktr转换
79   -datatools.carsconfig_dataoutputktr=/datatools/ktrs/carsConfigDataOutput.ktr
80 83 # 人员配置信息导出ktr转换
81 84 datatools.employeesconfig_dataoutputktr=/datatools/ktrs/employeesConfigDataOutput.ktr
82 85  
... ...
src/main/resources/datatools/config-dev.properties
... ... @@ -38,6 +38,13 @@ datatools.zh_road_sign_data_import=/datatools/ktrs/zh/road-sign-data_import.ktr
38 38 datatools.zh_road_sign_data_export=/datatools/ktrs/zh/road-sign-data_export.ktr
39 39 ##---------------------------- 路牌信息相关ktr(以上)----------------------------##
40 40  
  41 +##---------------------------- 车辆配置数据相关ktr(以下)----------------------------##
  42 +datatools.en_vehicle_config_data_import=/datatools/ktrs/en/vehicle-config-data_import.ktr
  43 +datatools.en_vehicle_config_data_export=/datatools/ktrs/en/vehicle-config-data_export.ktr
  44 +datatools.zh_vehicle_config_data_import=/datatools/ktrs/zh/vehicle-config-data_import.ktr
  45 +datatools.zh_vehicle_config_data_export=/datatools/ktrs/zh/vehicle-config-data_export.ktr
  46 +##---------------------------- 车辆配置数据相关ktr(以上)----------------------------##
  47 +
41 48  
42 49 ##---------------------------- 导入数据ktr ----------------------------##
43 50 # 时刻表基础信息导入
... ... @@ -57,8 +64,6 @@ datatools.ttinfodetail_datainputktr2version2=/datatools/ktrs/ttinfodetailDataInp
57 64 # 时刻表明细信息导入2,一般格式(路牌列后加一列工时列)
58 65 datatools.ttinfodetail_datainputktr2normalwithgs=/datatools/ktrs/ttinfodetailDataInput2_normalwithgs.ktr
59 66  
60   -# 车辆配置信息导入
61   -datatools.carsconfig_datainputktr=/datatools/ktrs/carsConfigDataInput.ktr
62 67 # 人员配置信息导入
63 68 datatools.employeesconfig_datainputktr=/datatools/ktrs/employeesConfigDataInput.ktr
64 69  
... ... @@ -73,8 +78,6 @@ datatools.ttinfodetail_output=/datatools/ktrs/ttinfodetailDataOutput.ktr
73 78 # 排版规则导出数据ktr转换
74 79 datatools.schedulerule_output=/datatools/ktrs/scheduleRuleDataOutput.ktr
75 80  
76   -# 车辆配置信息导出ktr转换
77   -datatools.carsconfig_dataoutputktr=/datatools/ktrs/carsConfigDataOutput.ktr
78 81 # 人员配置信息导出ktr转换
79 82 datatools.employeesconfig_dataoutputktr=/datatools/ktrs/employeesConfigDataOutput.ktr
80 83  
... ...
src/main/resources/datatools/config-prod.properties
... ... @@ -39,6 +39,13 @@ datatools.zh_road_sign_data_import=/datatools/ktrs/zh/road-sign-data_import.ktr
39 39 datatools.zh_road_sign_data_export=/datatools/ktrs/zh/road-sign-data_export.ktr
40 40 ##---------------------------- 路牌信息相关ktr(以上)----------------------------##
41 41  
  42 +##---------------------------- 车辆配置数据相关ktr(以下)----------------------------##
  43 +datatools.en_vehicle_config_data_import=/datatools/ktrs/en/vehicle-config-data_import.ktr
  44 +datatools.en_vehicle_config_data_export=/datatools/ktrs/en/vehicle-config-data_export.ktr
  45 +datatools.zh_vehicle_config_data_import=/datatools/ktrs/zh/vehicle-config-data_import.ktr
  46 +datatools.zh_vehicle_config_data_export=/datatools/ktrs/zh/vehicle-config-data_export.ktr
  47 +##---------------------------- 车辆配置数据相关ktr(以上)----------------------------##
  48 +
42 49  
43 50 ##---------------------------- 导入数据ktr ----------------------------##
44 51 # 时刻表基础信息导入
... ... @@ -58,8 +65,6 @@ datatools.ttinfodetail_datainputktr2version2=/datatools/ktrs/ttinfodetailDataInp
58 65 # 时刻表明细信息导入2,一般格式(路牌列后加一列工时列)
59 66 datatools.ttinfodetail_datainputktr2normalwithgs=/datatools/ktrs/ttinfodetailDataInput2_normalwithgs.ktr
60 67  
61   -# 车辆配置信息导入
62   -datatools.carsconfig_datainputktr=/datatools/ktrs/carsConfigDataInput.ktr
63 68 # 人员配置信息导入
64 69 datatools.employeesconfig_datainputktr=/datatools/ktrs/employeesConfigDataInput.ktr
65 70  
... ... @@ -75,8 +80,6 @@ datatools.ttinfodetail_output=/datatools/ktrs/ttinfodetailDataOutput.ktr
75 80 # 排版规则导出数据ktr转换
76 81 datatools.schedulerule_output=/datatools/ktrs/scheduleRuleDataOutput.ktr
77 82  
78   -# 车辆配置信息导出ktr转换
79   -datatools.carsconfig_dataoutputktr=/datatools/ktrs/carsConfigDataOutput.ktr
80 83 # 人员配置信息导出ktr转换
81 84 datatools.employeesconfig_dataoutputktr=/datatools/ktrs/employeesConfigDataOutput.ktr
82 85  
... ...
src/main/resources/datatools/config-test.properties
... ... @@ -40,6 +40,13 @@ datatools.zh_road_sign_data_import=/datatools/ktrs/zh/road-sign-data_import.ktr
40 40 datatools.zh_road_sign_data_export=/datatools/ktrs/zh/road-sign-data_export.ktr
41 41 ##---------------------------- 路牌信息相关ktr(以上)----------------------------##
42 42  
  43 +##---------------------------- 车辆配置数据相关ktr(以下)----------------------------##
  44 +datatools.en_vehicle_config_data_import=/datatools/ktrs/en/vehicle-config-data_import.ktr
  45 +datatools.en_vehicle_config_data_export=/datatools/ktrs/en/vehicle-config-data_export.ktr
  46 +datatools.zh_vehicle_config_data_import=/datatools/ktrs/zh/vehicle-config-data_import.ktr
  47 +datatools.zh_vehicle_config_data_export=/datatools/ktrs/zh/vehicle-config-data_export.ktr
  48 +##---------------------------- 车辆配置数据相关ktr(以上)----------------------------##
  49 +
43 50  
44 51 ##---------------------------- 导入数据ktr ----------------------------##
45 52 # 时刻表基础信息导入
... ... @@ -59,8 +66,6 @@ datatools.ttinfodetail_datainputktr2version2=/datatools/ktrs/ttinfodetailDataInp
59 66 # 时刻表明细信息导入2,一般格式(路牌列后加一列工时列)
60 67 datatools.ttinfodetail_datainputktr2normalwithgs=/datatools/ktrs/ttinfodetailDataInput2_normalwithgs.ktr
61 68  
62   -# 车辆配置信息导入
63   -datatools.carsconfig_datainputktr=/datatools/ktrs/carsConfigDataInput.ktr
64 69 # 人员配置信息导入
65 70 datatools.employeesconfig_datainputktr=/datatools/ktrs/employeesConfigDataInput.ktr
66 71  
... ... @@ -75,8 +80,6 @@ datatools.ttinfodetail_output=/datatools/ktrs/ttinfodetailDataOutput.ktr
75 80 # 排版规则导出数据ktr转换
76 81 datatools.schedulerule_output=/datatools/ktrs/scheduleRuleDataOutput.ktr
77 82  
78   -# 车辆配置信息导出ktr转换
79   -datatools.carsconfig_dataoutputktr=/datatools/ktrs/carsConfigDataOutput.ktr
80 83 # 人员配置信息导出ktr转换
81 84 datatools.employeesconfig_dataoutputktr=/datatools/ktrs/employeesConfigDataOutput.ktr
82 85  
... ...
src/main/resources/datatools/ktrs/en/vehicle-config-data_export.ktr 0 → 100644
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<transformation>
  3 + <info>
  4 + <name>&#x8f66;&#x8f86;&#x914d;&#x7f6e;&#x4fe1;&#x606f;&#x5bfc;&#x51fa;_en</name>
  5 + <description/>
  6 + <extended_description/>
  7 + <trans_version/>
  8 + <trans_type>Normal</trans_type>
  9 + <trans_status>0</trans_status>
  10 + <directory>&#x2f;</directory>
  11 + <parameters>
  12 + <parameter>
  13 + <name>filepath</name>
  14 + <default_value/>
  15 + <description>excel&#x6587;&#x4ef6;&#x8def;&#x5f84;</description>
  16 + </parameter>
  17 + <parameter>
  18 + <name>templatepath</name>
  19 + <default_value/>
  20 + <description>&#x6a21;&#x7248;&#x6587;&#x4ef6;&#x8def;&#x5f84;</description>
  21 + </parameter>
  22 + <parameter>
  23 + <name>xlid</name>
  24 + <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;11 14&#x3a;14&#x3a;13.722</created_date>
  86 + <modified_user>-</modified_user>
  87 + <modified_date>2017&#x2f;01&#x2f;11 14&#x3a;14&#x3a;13.722</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>81</xloc>
  95 + <yloc>172</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>&#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;&#x7ec8;&#x7ed3;&#x65e5;&#x671f; end date&#xa;&#x505c;&#x8f66;&#x70b9; parking lot</note>
  115 + <xloc>182</xloc>
  116 + <yloc>299</yloc>
  117 + <width>233</width>
  118 + <heigth>122</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 + </notepads>
  135 + <connection>
  136 + <name>192.168.168.1_jwgl_dw</name>
  137 + <server>192.168.168.1</server>
  138 + <type>ORACLE</type>
  139 + <access>Native</access>
  140 + <database>orcl</database>
  141 + <port>1521</port>
  142 + <username>jwgl_dw</username>
  143 + <password>Encrypted 2be98afc86aa7f2e4cb13b977d2adabcd</password>
  144 + <servername/>
  145 + <data_tablespace/>
  146 + <index_tablespace/>
  147 + <attributes>
  148 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  149 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  150 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  151 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  152 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  153 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  154 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  155 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  156 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  157 + </attributes>
  158 + </connection>
  159 + <connection>
  160 + <name>bus_control_variable</name>
  161 + <server>&#x24;&#x7b;v_db_ip&#x7d;</server>
  162 + <type>MYSQL</type>
  163 + <access>Native</access>
  164 + <database>&#x24;&#x7b;v_db_dname&#x7d;</database>
  165 + <port>3306</port>
  166 + <username>&#x24;&#x7b;v_db_uname&#x7d;</username>
  167 + <password>&#x24;&#x7b;v_db_pwd&#x7d;</password>
  168 + <servername/>
  169 + <data_tablespace/>
  170 + <index_tablespace/>
  171 + <attributes>
  172 + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
  173 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  174 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  175 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  176 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  177 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  178 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  179 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  180 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  181 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  182 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  183 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  184 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  185 + </attributes>
  186 + </connection>
  187 + <connection>
  188 + <name>bus_control_&#x516c;&#x53f8;_201</name>
  189 + <server>localhost</server>
  190 + <type>MYSQL</type>
  191 + <access>Native</access>
  192 + <database>control</database>
  193 + <port>3306</port>
  194 + <username>root</username>
  195 + <password>Encrypted </password>
  196 + <servername/>
  197 + <data_tablespace/>
  198 + <index_tablespace/>
  199 + <attributes>
  200 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  201 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  202 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  203 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  204 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  205 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  206 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  207 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  208 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  209 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  210 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  211 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  212 + </attributes>
  213 + </connection>
  214 + <connection>
  215 + <name>bus_control_&#x672c;&#x673a;</name>
  216 + <server>localhost</server>
  217 + <type>MYSQL</type>
  218 + <access>Native</access>
  219 + <database>control</database>
  220 + <port>3306</port>
  221 + <username>root</username>
  222 + <password>Encrypted </password>
  223 + <servername/>
  224 + <data_tablespace/>
  225 + <index_tablespace/>
  226 + <attributes>
  227 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  228 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  229 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  230 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  231 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  232 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  233 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  234 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  235 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  236 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  237 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  238 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  239 + </attributes>
  240 + </connection>
  241 + <connection>
  242 + <name>control_jndi</name>
  243 + <server/>
  244 + <type>MYSQL</type>
  245 + <access>JNDI</access>
  246 + <database>control_jndi</database>
  247 + <port>1521</port>
  248 + <username/>
  249 + <password>Encrypted </password>
  250 + <servername/>
  251 + <data_tablespace/>
  252 + <index_tablespace/>
  253 + <attributes>
  254 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  255 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  256 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  257 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  258 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  259 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  260 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  261 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  262 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  263 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  264 + </attributes>
  265 + </connection>
  266 + <connection>
  267 + <name>JGJW_VM</name>
  268 + <server>192.168.198.240</server>
  269 + <type>ORACLE</type>
  270 + <access>Native</access>
  271 + <database>orcl</database>
  272 + <port>1521</port>
  273 + <username>jwgl</username>
  274 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d485a8d6</password>
  275 + <servername/>
  276 + <data_tablespace/>
  277 + <index_tablespace/>
  278 + <attributes>
  279 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  280 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  281 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  282 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  283 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  284 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  285 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  286 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  287 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  288 + </attributes>
  289 + </connection>
  290 + <connection>
  291 + <name>NHJW_VM</name>
  292 + <server>192.168.198.240</server>
  293 + <type>ORACLE</type>
  294 + <access>Native</access>
  295 + <database>orcl</database>
  296 + <port>1521</port>
  297 + <username>nhjw</username>
  298 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d09aa5cd</password>
  299 + <servername/>
  300 + <data_tablespace/>
  301 + <index_tablespace/>
  302 + <attributes>
  303 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  304 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  305 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  306 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  307 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  308 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  309 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  310 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  311 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  312 + </attributes>
  313 + </connection>
  314 + <connection>
  315 + <name>PDGJ_VM</name>
  316 + <server>192.168.198.240</server>
  317 + <type>ORACLE</type>
  318 + <access>Native</access>
  319 + <database>orcl</database>
  320 + <port>1521</port>
  321 + <username>pdgj</username>
  322 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10ce96a8d0</password>
  323 + <servername/>
  324 + <data_tablespace/>
  325 + <index_tablespace/>
  326 + <attributes>
  327 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  328 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  329 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  330 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  331 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  332 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  333 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  334 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  335 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  336 + </attributes>
  337 + </connection>
  338 + <connection>
  339 + <name>repair_dw_mysql_jndi</name>
  340 + <server/>
  341 + <type>MYSQL</type>
  342 + <access>JNDI</access>
  343 + <database>repair_dw_mysql</database>
  344 + <port>1521</port>
  345 + <username/>
  346 + <password>Encrypted </password>
  347 + <servername/>
  348 + <data_tablespace/>
  349 + <index_tablespace/>
  350 + <attributes>
  351 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  352 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  353 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  354 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  355 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  356 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  357 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  358 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  359 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  360 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  361 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  362 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  363 + </attributes>
  364 + </connection>
  365 + <connection>
  366 + <name>repair_dw&#xff08;&#x672c;&#x673a;&#xff09;</name>
  367 + <server>localhost</server>
  368 + <type>MYSQL</type>
  369 + <access>Native</access>
  370 + <database>ruoyi-vue-3.5</database>
  371 + <port>3306</port>
  372 + <username>root</username>
  373 + <password>Encrypted </password>
  374 + <servername/>
  375 + <data_tablespace/>
  376 + <index_tablespace/>
  377 + <attributes>
  378 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  379 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  380 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  381 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  382 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  383 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  384 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  385 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  386 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  387 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  388 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  389 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  390 + </attributes>
  391 + </connection>
  392 + <connection>
  393 + <name>repair_real_h2</name>
  394 + <server/>
  395 + <type>H2</type>
  396 + <access>JNDI</access>
  397 + <database>repair_real_h2</database>
  398 + <port>1521</port>
  399 + <username/>
  400 + <password>Encrypted </password>
  401 + <servername/>
  402 + <data_tablespace/>
  403 + <index_tablespace/>
  404 + <attributes>
  405 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  406 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  407 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  408 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  409 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  410 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  411 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  412 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  413 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  414 + </attributes>
  415 + </connection>
  416 + <connection>
  417 + <name>SNJW_VM</name>
  418 + <server>192.168.198.240</server>
  419 + <type>ORACLE</type>
  420 + <access>Native</access>
  421 + <database>orcl</database>
  422 + <port>1521</port>
  423 + <username>snjw</username>
  424 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10cd9ca5cd</password>
  425 + <servername/>
  426 + <data_tablespace/>
  427 + <index_tablespace/>
  428 + <attributes>
  429 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  430 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  431 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  432 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  433 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  434 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  435 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  436 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  437 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  438 + </attributes>
  439 + </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>
  468 + <name>test_control&#xff08;&#x672c;&#x673a;&#xff09;</name>
  469 + <server>127.0.0.1</server>
  470 + <type>MYSQL</type>
  471 + <access>Native</access>
  472 + <database>test_control</database>
  473 + <port>3306</port>
  474 + <username>root</username>
  475 + <password>Encrypted </password>
  476 + <servername/>
  477 + <data_tablespace/>
  478 + <index_tablespace/>
  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>
  536 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  537 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  538 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  539 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  540 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  541 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  542 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  543 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  544 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  545 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  546 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  547 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  548 + </attributes>
  549 + </connection>
  550 + <connection>
  551 + <name>xlab_mysql_youle</name>
  552 + <server>101.231.124.8</server>
  553 + <type>MYSQL</type>
  554 + <access>Native</access>
  555 + <database>xlab_youle</database>
  556 + <port>45687</port>
  557 + <username>xlab-youle</username>
  558 + <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password>
  559 + <servername/>
  560 + <data_tablespace/>
  561 + <index_tablespace/>
  562 + <attributes>
  563 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  564 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  565 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  566 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  567 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  568 + <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute>
  569 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  570 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  571 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  572 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  573 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  574 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  575 + </attributes>
  576 + </connection>
  577 + <connection>
  578 + <name>xlab_mysql_youle&#xff08;&#x672c;&#x673a;&#xff09;</name>
  579 + <server>localhost</server>
  580 + <type>MYSQL</type>
  581 + <access>Native</access>
  582 + <database>xlab_youle</database>
  583 + <port>3306</port>
  584 + <username>root</username>
  585 + <password>Encrypted </password>
  586 + <servername/>
  587 + <data_tablespace/>
  588 + <index_tablespace/>
  589 + <attributes>
  590 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  591 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  592 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  593 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  594 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  595 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  596 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  597 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  598 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  599 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  600 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  601 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  602 + </attributes>
  603 + </connection>
  604 + <connection>
  605 + <name>xlab_youle</name>
  606 + <server/>
  607 + <type>MYSQL</type>
  608 + <access>JNDI</access>
  609 + <database>xlab_youle</database>
  610 + <port>1521</port>
  611 + <username/>
  612 + <password>Encrypted </password>
  613 + <servername/>
  614 + <data_tablespace/>
  615 + <index_tablespace/>
  616 + <attributes>
  617 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  618 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  619 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  620 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  621 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  622 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  623 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  624 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  625 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  626 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  627 + </attributes>
  628 + </connection>
  629 + <connection>
  630 + <name>YGJW_VM</name>
  631 + <server>192.168.198.240</server>
  632 + <type>ORACLE</type>
  633 + <access>Native</access>
  634 + <database>orcl</database>
  635 + <port>1521</port>
  636 + <username>ygjw</username>
  637 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10c795a5cd</password>
  638 + <servername/>
  639 + <data_tablespace/>
  640 + <index_tablespace/>
  641 + <attributes>
  642 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  643 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  644 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  645 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  646 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  647 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  648 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  649 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  650 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  651 + </attributes>
  652 + </connection>
  653 + <connection>
  654 + <name>&#x516c;&#x53f8;jgjw</name>
  655 + <server>192.168.168.1</server>
  656 + <type>ORACLE</type>
  657 + <access>Native</access>
  658 + <database>orcl</database>
  659 + <port>1521</port>
  660 + <username>jwgl</username>
  661 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d485a8d6</password>
  662 + <servername/>
  663 + <data_tablespace/>
  664 + <index_tablespace/>
  665 + <attributes>
  666 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  667 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  668 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  669 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  670 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  671 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  672 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  673 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  674 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  675 + </attributes>
  676 + </connection>
  677 + <connection>
  678 + <name>&#x516c;&#x53f8;snjw</name>
  679 + <server>192.168.168.1</server>
  680 + <type>ORACLE</type>
  681 + <access>Native</access>
  682 + <database>orcl</database>
  683 + <port>1521</port>
  684 + <username>snjw</username>
  685 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10cd9ca5cd</password>
  686 + <servername/>
  687 + <data_tablespace/>
  688 + <index_tablespace/>
  689 + <attributes>
  690 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  691 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  692 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  693 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  694 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  695 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  696 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  697 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  698 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  699 + </attributes>
  700 + </connection>
  701 + <connection>
  702 + <name>&#x516c;&#x53f8;ygjw</name>
  703 + <server>192.168.168.178</server>
  704 + <type>ORACLE</type>
  705 + <access>Native</access>
  706 + <database>orcl</database>
  707 + <port>1521</port>
  708 + <username>ygjw</username>
  709 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10c795a5cd</password>
  710 + <servername/>
  711 + <data_tablespace/>
  712 + <index_tablespace/>
  713 + <attributes>
  714 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  715 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  716 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  717 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  718 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  719 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  720 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  721 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  722 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  723 + </attributes>
  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>
  845 + <order>
  846 + <hop> <from>&#x8f66;&#x8f86;&#x914d;&#x7f6e;&#xff08;&#x6ca1;&#x6709;&#x4f5c;&#x5e9f;&#xff09;</from><to>&#x7ebf;&#x8def;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>
  847 + <hop> <from>&#x7ebf;&#x8def;&#x67e5;&#x8be2;</from><to>&#x8f66;&#x8f86;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>
  848 + <hop> <from>&#x8f66;&#x8f86;&#x67e5;&#x8be2;</from><to>&#x683c;&#x5f0f;&#x5316;&#x65e5;&#x671f;</to><enabled>Y</enabled> </hop>
  849 + <hop> <from>&#x683c;&#x5f0f;&#x5316;&#x65e5;&#x671f;</from><to>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</to><enabled>Y</enabled> </hop>
  850 + <hop> <from>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</from><to>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</to><enabled>Y</enabled> </hop>
  851 + <hop> <from>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</from><to>Excel&#x8f93;&#x51fa;</to><enabled>Y</enabled> </hop>
  852 + </order>
  853 + <step>
  854 + <name>Excel&#x8f93;&#x51fa;</name>
  855 + <type>ExcelOutput</type>
  856 + <description/>
  857 + <distribute>Y</distribute>
  858 + <custom_distribution/>
  859 + <copies>1</copies>
  860 + <partitioning>
  861 + <method>none</method>
  862 + <schema_name/>
  863 + </partitioning>
  864 + <header>Y</header>
  865 + <footer>N</footer>
  866 + <encoding/>
  867 + <append>N</append>
  868 + <add_to_result_filenames>Y</add_to_result_filenames>
  869 + <file>
  870 + <name>&#x24;&#x7b;filepath&#x7d;</name>
  871 + <extention>xls</extention>
  872 + <do_not_open_newfile_init>N</do_not_open_newfile_init>
  873 + <create_parent_folder>N</create_parent_folder>
  874 + <split>N</split>
  875 + <add_date>N</add_date>
  876 + <add_time>N</add_time>
  877 + <SpecifyFormat>N</SpecifyFormat>
  878 + <date_time_format>yyyyMMddHHmmss</date_time_format>
  879 + <sheetname>sheet1</sheetname>
  880 + <autosizecolums>N</autosizecolums>
  881 + <nullisblank>N</nullisblank>
  882 + <protect_sheet>N</protect_sheet>
  883 + <password>Encrypted </password>
  884 + <splitevery>0</splitevery>
  885 + <usetempfiles>N</usetempfiles>
  886 + <tempdirectory/>
  887 + </file>
  888 + <template>
  889 + <enabled>N</enabled>
  890 + <append>N</append>
  891 + <filename>template.xls</filename>
  892 + </template>
  893 + <fields>
  894 + <field>
  895 + <name>route name</name>
  896 + <type>String</type>
  897 + <format/>
  898 + </field>
  899 + <field>
  900 + <name>internal number</name>
  901 + <type>String</type>
  902 + <format/>
  903 + </field>
  904 + <field>
  905 + <name>activation date</name>
  906 + <type>String</type>
  907 + <format/>
  908 + </field>
  909 + <field>
  910 + <name>end date</name>
  911 + <type>String</type>
  912 + <format/>
  913 + </field>
  914 + <field>
  915 + <name>parking lot</name>
  916 + <type>String</type>
  917 + <format/>
  918 + </field>
  919 + </fields>
  920 + <custom>
  921 + <header_font_name>arial</header_font_name>
  922 + <header_font_size>10</header_font_size>
  923 + <header_font_bold>N</header_font_bold>
  924 + <header_font_italic>N</header_font_italic>
  925 + <header_font_underline>no</header_font_underline>
  926 + <header_font_orientation>horizontal</header_font_orientation>
  927 + <header_font_color>black</header_font_color>
  928 + <header_background_color>none</header_background_color>
  929 + <header_row_height>255</header_row_height>
  930 + <header_alignment>left</header_alignment>
  931 + <header_image/>
  932 + <row_font_name>arial</row_font_name>
  933 + <row_font_size>10</row_font_size>
  934 + <row_font_color>black</row_font_color>
  935 + <row_background_color>none</row_background_color>
  936 + </custom>
  937 + <cluster_schema/>
  938 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  939 + <xloc>596</xloc>
  940 + <yloc>265</yloc>
  941 + <draw>Y</draw>
  942 + </GUI>
  943 + </step>
  944 +
  945 + <step>
  946 + <name>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</name>
  947 + <type>SelectValues</type>
  948 + <description/>
  949 + <distribute>Y</distribute>
  950 + <custom_distribution/>
  951 + <copies>1</copies>
  952 + <partitioning>
  953 + <method>none</method>
  954 + <schema_name/>
  955 + </partitioning>
  956 + <fields> <field> <name>xlmc</name>
  957 + <rename>route name</rename>
  958 + <length>-2</length>
  959 + <precision>-2</precision>
  960 + </field> <field> <name>zbh</name>
  961 + <rename>internal number</rename>
  962 + <length>-2</length>
  963 + <precision>-2</precision>
  964 + </field> <field> <name>qyrq</name>
  965 + <rename>activation date</rename>
  966 + <length>-2</length>
  967 + <precision>-2</precision>
  968 + </field> <field> <name>zzrq</name>
  969 + <rename>end date</rename>
  970 + <length>-2</length>
  971 + <precision>-2</precision>
  972 + </field> <field> <name>tcd</name>
  973 + <rename>parking lot</rename>
  974 + <length>-2</length>
  975 + <precision>-2</precision>
  976 + </field> <select_unspecified>N</select_unspecified>
  977 + </fields> <cluster_schema/>
  978 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  979 + <xloc>595</xloc>
  980 + <yloc>167</yloc>
  981 + <draw>Y</draw>
  982 + </GUI>
  983 + </step>
  984 +
  985 + <step>
  986 + <name>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</name>
  987 + <type>SortRows</type>
  988 + <description/>
  989 + <distribute>Y</distribute>
  990 + <custom_distribution/>
  991 + <copies>1</copies>
  992 + <partitioning>
  993 + <method>none</method>
  994 + <schema_name/>
  995 + </partitioning>
  996 + <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
  997 + <prefix>out</prefix>
  998 + <sort_size>1000000</sort_size>
  999 + <free_memory/>
  1000 + <compress>N</compress>
  1001 + <compress_variable/>
  1002 + <unique_rows>N</unique_rows>
  1003 + <fields>
  1004 + <field>
  1005 + <name>xlmc</name>
  1006 + <ascending>Y</ascending>
  1007 + <case_sensitive>N</case_sensitive>
  1008 + <presorted>N</presorted>
  1009 + </field>
  1010 + <field>
  1011 + <name>zbh</name>
  1012 + <ascending>Y</ascending>
  1013 + <case_sensitive>N</case_sensitive>
  1014 + <presorted>N</presorted>
  1015 + </field>
  1016 + <field>
  1017 + <name>qyrq</name>
  1018 + <ascending>Y</ascending>
  1019 + <case_sensitive>N</case_sensitive>
  1020 + <presorted>N</presorted>
  1021 + </field>
  1022 + </fields>
  1023 + <cluster_schema/>
  1024 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1025 + <xloc>592</xloc>
  1026 + <yloc>66</yloc>
  1027 + <draw>Y</draw>
  1028 + </GUI>
  1029 + </step>
  1030 +
  1031 + <step>
  1032 + <name>&#x683c;&#x5f0f;&#x5316;&#x65e5;&#x671f;</name>
  1033 + <type>SelectValues</type>
  1034 + <description/>
  1035 + <distribute>Y</distribute>
  1036 + <custom_distribution/>
  1037 + <copies>1</copies>
  1038 + <partitioning>
  1039 + <method>none</method>
  1040 + <schema_name/>
  1041 + </partitioning>
  1042 + <fields> <select_unspecified>N</select_unspecified>
  1043 + <meta> <name>qyrq</name>
  1044 + <rename>qyrq</rename>
  1045 + <type>String</type>
  1046 + <length>-2</length>
  1047 + <precision>-2</precision>
  1048 + <conversion_mask>yyyy-MM-dd</conversion_mask>
  1049 + <date_format_lenient>false</date_format_lenient>
  1050 + <date_format_locale/>
  1051 + <date_format_timezone/>
  1052 + <lenient_string_to_number>false</lenient_string_to_number>
  1053 + <encoding/>
  1054 + <decimal_symbol/>
  1055 + <grouping_symbol/>
  1056 + <currency_symbol/>
  1057 + <storage_type/>
  1058 + </meta> <meta> <name>zzrq</name>
  1059 + <rename>zzrq</rename>
  1060 + <type>String</type>
  1061 + <length>-2</length>
  1062 + <precision>-2</precision>
  1063 + <conversion_mask>yyyy-MM-dd</conversion_mask>
  1064 + <date_format_lenient>false</date_format_lenient>
  1065 + <date_format_locale/>
  1066 + <date_format_timezone/>
  1067 + <lenient_string_to_number>false</lenient_string_to_number>
  1068 + <encoding/>
  1069 + <decimal_symbol/>
  1070 + <grouping_symbol/>
  1071 + <currency_symbol/>
  1072 + <storage_type/>
  1073 + </meta> </fields> <cluster_schema/>
  1074 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1075 + <xloc>478</xloc>
  1076 + <yloc>66</yloc>
  1077 + <draw>Y</draw>
  1078 + </GUI>
  1079 + </step>
  1080 +
  1081 + <step>
  1082 + <name>&#x7ebf;&#x8def;&#x67e5;&#x8be2;</name>
  1083 + <type>DBLookup</type>
  1084 + <description/>
  1085 + <distribute>Y</distribute>
  1086 + <custom_distribution/>
  1087 + <copies>1</copies>
  1088 + <partitioning>
  1089 + <method>none</method>
  1090 + <schema_name/>
  1091 + </partitioning>
  1092 + <connection>control_jndi</connection>
  1093 + <cache>Y</cache>
  1094 + <cache_load_all>Y</cache_load_all>
  1095 + <cache_size>0</cache_size>
  1096 + <lookup>
  1097 + <schema/>
  1098 + <table>bsth_c_line</table>
  1099 + <orderby/>
  1100 + <fail_on_multiple>N</fail_on_multiple>
  1101 + <eat_row_on_failure>N</eat_row_on_failure>
  1102 + <key>
  1103 + <name>xl</name>
  1104 + <field>id</field>
  1105 + <condition>&#x3d;</condition>
  1106 + <name2/>
  1107 + </key>
  1108 + <value>
  1109 + <name>name</name>
  1110 + <rename>xlmc</rename>
  1111 + <default/>
  1112 + <type>String</type>
  1113 + </value>
  1114 + </lookup>
  1115 + <cluster_schema/>
  1116 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1117 + <xloc>248</xloc>
  1118 + <yloc>67</yloc>
  1119 + <draw>Y</draw>
  1120 + </GUI>
  1121 + </step>
  1122 +
  1123 + <step>
  1124 + <name>&#x8f66;&#x8f86;&#x67e5;&#x8be2;</name>
  1125 + <type>DBLookup</type>
  1126 + <description/>
  1127 + <distribute>Y</distribute>
  1128 + <custom_distribution/>
  1129 + <copies>1</copies>
  1130 + <partitioning>
  1131 + <method>none</method>
  1132 + <schema_name/>
  1133 + </partitioning>
  1134 + <connection>control_jndi</connection>
  1135 + <cache>N</cache>
  1136 + <cache_load_all>N</cache_load_all>
  1137 + <cache_size>0</cache_size>
  1138 + <lookup>
  1139 + <schema/>
  1140 + <table>bsth_c_cars</table>
  1141 + <orderby/>
  1142 + <fail_on_multiple>N</fail_on_multiple>
  1143 + <eat_row_on_failure>N</eat_row_on_failure>
  1144 + <key>
  1145 + <name>cl</name>
  1146 + <field>id</field>
  1147 + <condition>&#x3d;</condition>
  1148 + <name2/>
  1149 + </key>
  1150 + <value>
  1151 + <name>inside_code</name>
  1152 + <rename>zbh</rename>
  1153 + <default/>
  1154 + <type>String</type>
  1155 + </value>
  1156 + </lookup>
  1157 + <cluster_schema/>
  1158 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1159 + <xloc>361</xloc>
  1160 + <yloc>67</yloc>
  1161 + <draw>Y</draw>
  1162 + </GUI>
  1163 + </step>
  1164 +
  1165 + <step>
  1166 + <name>&#x8f66;&#x8f86;&#x914d;&#x7f6e;&#xff08;&#x6ca1;&#x6709;&#x4f5c;&#x5e9f;&#xff09;</name>
  1167 + <type>TableInput</type>
  1168 + <description/>
  1169 + <distribute>Y</distribute>
  1170 + <custom_distribution/>
  1171 + <copies>1</copies>
  1172 + <partitioning>
  1173 + <method>none</method>
  1174 + <schema_name/>
  1175 + </partitioning>
  1176 + <connection>control_jndi</connection>
  1177 + <sql>select &#x2a; from bsth_c_s_ccinfo where is_cancel &#x3d; 0 and xl &#x3d; &#x24;&#x7b;xlid&#x7d;</sql>
  1178 + <limit>0</limit>
  1179 + <lookup/>
  1180 + <execute_each_row>N</execute_each_row>
  1181 + <variables_active>Y</variables_active>
  1182 + <lazy_conversion_active>N</lazy_conversion_active>
  1183 + <cluster_schema/>
  1184 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1185 + <xloc>106</xloc>
  1186 + <yloc>68</yloc>
  1187 + <draw>Y</draw>
  1188 + </GUI>
  1189 + </step>
  1190 +
  1191 + <step_error_handling>
  1192 + </step_error_handling>
  1193 + <slave-step-copy-partition-distribution>
  1194 +</slave-step-copy-partition-distribution>
  1195 + <slave_transformation>N</slave_transformation>
  1196 +
  1197 +</transformation>
... ...
src/main/resources/datatools/ktrs/en/vehicle-config-data_import.ktr 0 → 100644
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<transformation>
  3 + <info>
  4 + <name>&#x8f66;&#x8f86;&#x914d;&#x7f6e;&#x4fe1;&#x606f;&#x5bfc;&#x5165;_en</name>
  5 + <description>&#x8f66;&#x8f86;&#x914d;&#x7f6e;&#x4fe1;&#x606f;&#x5bfc;&#x5165;</description>
  6 + <extended_description>&#x914d;&#x8f66;&#x4fe1;&#x606f;</extended_description>
  7 + <trans_version/>
  8 + <trans_type>Normal</trans_type>
  9 + <trans_status>0</trans_status>
  10 + <directory>&#x2f;</directory>
  11 + <parameters>
  12 + <parameter>
  13 + <name>erroroutputdir</name>
  14 + <default_value/>
  15 + <description>ktr step&#x914d;&#x7f6e;&#x7684;&#x9519;&#x8bef;&#x8f93;&#x51fa;&#x76ee;&#x5f55;</description>
  16 + </parameter>
  17 + <parameter>
  18 + <name>filepath</name>
  19 + <default_value/>
  20 + <description>&#x5f85;&#x5904;&#x7406;&#x5bfc;&#x5165;&#x7684;excel&#x6587;&#x4ef6;</description>
  21 + </parameter>
  22 + </parameters>
  23 + <log>
  24 +<trans-log-table><connection/>
  25 +<schema/>
  26 +<table/>
  27 +<size_limit_lines/>
  28 +<interval/>
  29 +<timeout_days/>
  30 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STATUS</id><enabled>Y</enabled><name>STATUS</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name><subject/></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name><subject/></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name><subject/></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name><subject/></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name><subject/></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name><subject/></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>STARTDATE</id><enabled>Y</enabled><name>STARTDATE</name></field><field><id>ENDDATE</id><enabled>Y</enabled><name>ENDDATE</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>DEPDATE</id><enabled>Y</enabled><name>DEPDATE</name></field><field><id>REPLAYDATE</id><enabled>Y</enabled><name>REPLAYDATE</name></field><field><id>LOG_FIELD</id><enabled>Y</enabled><name>LOG_FIELD</name></field><field><id>EXECUTING_SERVER</id><enabled>N</enabled><name>EXECUTING_SERVER</name></field><field><id>EXECUTING_USER</id><enabled>N</enabled><name>EXECUTING_USER</name></field><field><id>CLIENT</id><enabled>N</enabled><name>CLIENT</name></field></trans-log-table>
  31 +<perf-log-table><connection/>
  32 +<schema/>
  33 +<table/>
  34 +<interval/>
  35 +<timeout_days/>
  36 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>SEQ_NR</id><enabled>Y</enabled><name>SEQ_NR</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>INPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>INPUT_BUFFER_ROWS</name></field><field><id>OUTPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>OUTPUT_BUFFER_ROWS</name></field></perf-log-table>
  37 +<channel-log-table><connection/>
  38 +<schema/>
  39 +<table/>
  40 +<timeout_days/>
  41 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>LOGGING_OBJECT_TYPE</id><enabled>Y</enabled><name>LOGGING_OBJECT_TYPE</name></field><field><id>OBJECT_NAME</id><enabled>Y</enabled><name>OBJECT_NAME</name></field><field><id>OBJECT_COPY</id><enabled>Y</enabled><name>OBJECT_COPY</name></field><field><id>REPOSITORY_DIRECTORY</id><enabled>Y</enabled><name>REPOSITORY_DIRECTORY</name></field><field><id>FILENAME</id><enabled>Y</enabled><name>FILENAME</name></field><field><id>OBJECT_ID</id><enabled>Y</enabled><name>OBJECT_ID</name></field><field><id>OBJECT_REVISION</id><enabled>Y</enabled><name>OBJECT_REVISION</name></field><field><id>PARENT_CHANNEL_ID</id><enabled>Y</enabled><name>PARENT_CHANNEL_ID</name></field><field><id>ROOT_CHANNEL_ID</id><enabled>Y</enabled><name>ROOT_CHANNEL_ID</name></field></channel-log-table>
  42 +<step-log-table><connection/>
  43 +<schema/>
  44 +<table/>
  45 +<timeout_days/>
  46 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>LOG_FIELD</id><enabled>N</enabled><name>LOG_FIELD</name></field></step-log-table>
  47 +<metrics-log-table><connection/>
  48 +<schema/>
  49 +<table/>
  50 +<timeout_days/>
  51 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>METRICS_DATE</id><enabled>Y</enabled><name>METRICS_DATE</name></field><field><id>METRICS_CODE</id><enabled>Y</enabled><name>METRICS_CODE</name></field><field><id>METRICS_DESCRIPTION</id><enabled>Y</enabled><name>METRICS_DESCRIPTION</name></field><field><id>METRICS_SUBJECT</id><enabled>Y</enabled><name>METRICS_SUBJECT</name></field><field><id>METRICS_TYPE</id><enabled>Y</enabled><name>METRICS_TYPE</name></field><field><id>METRICS_VALUE</id><enabled>Y</enabled><name>METRICS_VALUE</name></field></metrics-log-table>
  52 + </log>
  53 + <maxdate>
  54 + <connection/>
  55 + <table/>
  56 + <field/>
  57 + <offset>0.0</offset>
  58 + <maxdiff>0.0</maxdiff>
  59 + </maxdate>
  60 + <size_rowset>10000</size_rowset>
  61 + <sleep_time_empty>50</sleep_time_empty>
  62 + <sleep_time_full>50</sleep_time_full>
  63 + <unique_connections>N</unique_connections>
  64 + <feedback_shown>Y</feedback_shown>
  65 + <feedback_size>50000</feedback_size>
  66 + <using_thread_priorities>Y</using_thread_priorities>
  67 + <shared_objects_file/>
  68 + <capture_step_performance>N</capture_step_performance>
  69 + <step_performance_capturing_delay>1000</step_performance_capturing_delay>
  70 + <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit>
  71 + <dependencies>
  72 + </dependencies>
  73 + <partitionschemas>
  74 + </partitionschemas>
  75 + <slaveservers>
  76 + </slaveservers>
  77 + <clusterschemas>
  78 + </clusterschemas>
  79 + <created_user>-</created_user>
  80 + <created_date>2016&#x2f;06&#x2f;29 13&#x3a;15&#x3a;32.118</created_date>
  81 + <modified_user>-</modified_user>
  82 + <modified_date>2016&#x2f;06&#x2f;29 13&#x3a;15&#x3a;32.118</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>&#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;&#xa;</note>
  89 + <xloc>40</xloc>
  90 + <yloc>238</yloc>
  91 + <width>333</width>
  92 + <heigth>106</heigth>
  93 + <fontname>YaHei Consolas Hybrid</fontname>
  94 + <fontsize>12</fontsize>
  95 + <fontbold>N</fontbold>
  96 + <fontitalic>N</fontitalic>
  97 + <fontcolorred>0</fontcolorred>
  98 + <fontcolorgreen>0</fontcolorgreen>
  99 + <fontcolorblue>0</fontcolorblue>
  100 + <backgroundcolorred>255</backgroundcolorred>
  101 + <backgroundcolorgreen>205</backgroundcolorgreen>
  102 + <backgroundcolorblue>112</backgroundcolorblue>
  103 + <bordercolorred>100</bordercolorred>
  104 + <bordercolorgreen>100</bordercolorgreen>
  105 + <bordercolorblue>100</bordercolorblue>
  106 + <drawshadow>Y</drawshadow>
  107 + </notepad>
  108 + <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;&#x7ec8;&#x7ed3;&#x65e5;&#x671f; end date&#xa;&#x505c;&#x8f66;&#x70b9; parking lot</note>
  110 + <xloc>423</xloc>
  111 + <yloc>235</yloc>
  112 + <width>233</width>
  113 + <heigth>122</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>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ccinfo</from><to>&#x9519;&#x8bef;&#x8f93;&#x51fa;</to><enabled>Y</enabled> </hop>
  842 + <hop> <from>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</from><to>&#x539f;&#x59cb;&#x7cfb;&#x7edf;&#x5bfc;&#x51fa;&#x7684;Excel&#x8f93;&#x5165;</to><enabled>Y</enabled> </hop>
  843 + <hop> <from>&#x539f;&#x59cb;&#x7cfb;&#x7edf;&#x5bfc;&#x51fa;&#x7684;Excel&#x8f93;&#x5165;</from><to>&#x542f;&#x7528;&#x88ab;&#x6570;&#x636e;flag</to><enabled>Y</enabled> </hop>
  844 + <hop> <from>&#x542f;&#x7528;&#x88ab;&#x6570;&#x636e;flag</from><to>&#x7ebf;&#x8def;id&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>
  845 + <hop> <from>&#x7ebf;&#x8def;id&#x67e5;&#x8be2;</from><to>&#x8fc7;&#x6ee4;&#x7ebf;&#x8def;id&#x4e3a;&#x7a7a;&#x8bb0;&#x5f55;</to><enabled>Y</enabled> </hop>
  846 + <hop> <from>&#x8fc7;&#x6ee4;&#x7ebf;&#x8def;id&#x4e3a;&#x7a7a;&#x8bb0;&#x5f55;</from><to>&#x8f66;&#x8f86;id&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>
  847 + <hop> <from>&#x8f66;&#x8f86;id&#x67e5;&#x8be2;</from><to>&#x8fc7;&#x6ee4;&#x8f66;&#x8f86;id&#x4e3a;&#x7a7a;&#x8bb0;&#x5f55;</to><enabled>Y</enabled> </hop>
  848 + <hop> <from>&#x8fc7;&#x6ee4;&#x8f66;&#x8f86;id&#x4e3a;&#x7a7a;&#x8bb0;&#x5f55;</from><to>&#x65e5;&#x671f;&#x8f6c;&#x6362;</to><enabled>Y</enabled> </hop>
  849 + <hop> <from>&#x65e5;&#x671f;&#x8f6c;&#x6362;</from><to>&#x662f;&#x5426;&#x5207;&#x6362;</to><enabled>Y</enabled> </hop>
  850 + <hop> <from>&#x662f;&#x5426;&#x5207;&#x6362;</from><to>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ccinfo</to><enabled>Y</enabled> </hop>
  851 + </order>
  852 + <step>
  853 + <name>&#x539f;&#x59cb;&#x7cfb;&#x7edf;&#x5bfc;&#x51fa;&#x7684;Excel&#x8f93;&#x5165;</name>
  854 + <type>ExcelInput</type>
  855 + <description/>
  856 + <distribute>Y</distribute>
  857 + <custom_distribution/>
  858 + <copies>1</copies>
  859 + <partitioning>
  860 + <method>none</method>
  861 + <schema_name/>
  862 + </partitioning>
  863 + <header>Y</header>
  864 + <noempty>Y</noempty>
  865 + <stoponempty>N</stoponempty>
  866 + <filefield/>
  867 + <sheetfield/>
  868 + <sheetrownumfield/>
  869 + <rownumfield/>
  870 + <sheetfield/>
  871 + <filefield/>
  872 + <limit>0</limit>
  873 + <encoding/>
  874 + <add_to_result_filenames>Y</add_to_result_filenames>
  875 + <accept_filenames>Y</accept_filenames>
  876 + <accept_field>filepath_</accept_field>
  877 + <accept_stepname>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</accept_stepname>
  878 + <file>
  879 + <name/>
  880 + <filemask/>
  881 + <exclude_filemask/>
  882 + <file_required>N</file_required>
  883 + <include_subfolders>N</include_subfolders>
  884 + </file>
  885 + <fields>
  886 + <field>
  887 + <name>route name</name>
  888 + <type>String</type>
  889 + <length>-1</length>
  890 + <precision>-1</precision>
  891 + <trim_type>none</trim_type>
  892 + <repeat>N</repeat>
  893 + <format/>
  894 + <currency/>
  895 + <decimal/>
  896 + <group/>
  897 + </field>
  898 + <field>
  899 + <name>internal number</name>
  900 + <type>String</type>
  901 + <length>-1</length>
  902 + <precision>-1</precision>
  903 + <trim_type>none</trim_type>
  904 + <repeat>N</repeat>
  905 + <format>&#x23;</format>
  906 + <currency/>
  907 + <decimal/>
  908 + <group/>
  909 + </field>
  910 + <field>
  911 + <name>activation date</name>
  912 + <type>String</type>
  913 + <length>-1</length>
  914 + <precision>-1</precision>
  915 + <trim_type>none</trim_type>
  916 + <repeat>N</repeat>
  917 + <format/>
  918 + <currency/>
  919 + <decimal/>
  920 + <group/>
  921 + </field>
  922 + <field>
  923 + <name>end date</name>
  924 + <type>String</type>
  925 + <length>-1</length>
  926 + <precision>-1</precision>
  927 + <trim_type>none</trim_type>
  928 + <repeat>N</repeat>
  929 + <format/>
  930 + <currency/>
  931 + <decimal/>
  932 + <group/>
  933 + </field>
  934 + <field>
  935 + <name>parking lot</name>
  936 + <type>String</type>
  937 + <length>-1</length>
  938 + <precision>-1</precision>
  939 + <trim_type>none</trim_type>
  940 + <repeat>N</repeat>
  941 + <format/>
  942 + <currency/>
  943 + <decimal/>
  944 + <group/>
  945 + </field>
  946 + </fields>
  947 + <sheets>
  948 + <sheet>
  949 + <name>sheet1</name>
  950 + <startrow>0</startrow>
  951 + <startcol>0</startcol>
  952 + </sheet>
  953 + </sheets>
  954 + <strict_types>N</strict_types>
  955 + <error_ignored>N</error_ignored>
  956 + <error_line_skipped>N</error_line_skipped>
  957 + <bad_line_files_destination_directory/>
  958 + <bad_line_files_extension>warning</bad_line_files_extension>
  959 + <error_line_files_destination_directory/>
  960 + <error_line_files_extension>error</error_line_files_extension>
  961 + <line_number_files_destination_directory/>
  962 + <line_number_files_extension>line</line_number_files_extension>
  963 + <shortFileFieldName/>
  964 + <pathFieldName/>
  965 + <hiddenFieldName/>
  966 + <lastModificationTimeFieldName/>
  967 + <uriNameFieldName/>
  968 + <rootUriNameFieldName/>
  969 + <extensionFieldName/>
  970 + <sizeFieldName/>
  971 + <spreadsheet_type>JXL</spreadsheet_type>
  972 + <cluster_schema/>
  973 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  974 + <xloc>155</xloc>
  975 + <yloc>56</yloc>
  976 + <draw>Y</draw>
  977 + </GUI>
  978 + </step>
  979 +
  980 + <step>
  981 + <name>&#x542f;&#x7528;&#x88ab;&#x6570;&#x636e;flag</name>
  982 + <type>Constant</type>
  983 + <description/>
  984 + <distribute>Y</distribute>
  985 + <custom_distribution/>
  986 + <copies>1</copies>
  987 + <partitioning>
  988 + <method>none</method>
  989 + <schema_name/>
  990 + </partitioning>
  991 + <fields>
  992 + <field>
  993 + <name>isCancel</name>
  994 + <type>Integer</type>
  995 + <format/>
  996 + <currency/>
  997 + <decimal/>
  998 + <group/>
  999 + <nullif>0</nullif>
  1000 + <length>-1</length>
  1001 + <precision>-1</precision>
  1002 + <set_empty_string>N</set_empty_string>
  1003 + </field>
  1004 + </fields>
  1005 + <cluster_schema/>
  1006 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1007 + <xloc>315</xloc>
  1008 + <yloc>57</yloc>
  1009 + <draw>Y</draw>
  1010 + </GUI>
  1011 + </step>
  1012 +
  1013 + <step>
  1014 + <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ccinfo</name>
  1015 + <type>InsertUpdate</type>
  1016 + <description/>
  1017 + <distribute>Y</distribute>
  1018 + <custom_distribution/>
  1019 + <copies>1</copies>
  1020 + <partitioning>
  1021 + <method>none</method>
  1022 + <schema_name/>
  1023 + </partitioning>
  1024 + <connection>control_jndi</connection>
  1025 + <commit>100</commit>
  1026 + <update_bypassed>N</update_bypassed>
  1027 + <lookup>
  1028 + <schema/>
  1029 + <table>bsth_c_s_ccinfo</table>
  1030 + <key>
  1031 + <name>xlid</name>
  1032 + <field>xl</field>
  1033 + <condition>&#x3d;</condition>
  1034 + <name2/>
  1035 + </key>
  1036 + <key>
  1037 + <name>clid</name>
  1038 + <field>cl</field>
  1039 + <condition>&#x3d;</condition>
  1040 + <name2/>
  1041 + </key>
  1042 + <key>
  1043 + <name>isCancel</name>
  1044 + <field>is_cancel</field>
  1045 + <condition>&#x3d;</condition>
  1046 + <name2/>
  1047 + </key>
  1048 + <value>
  1049 + <name>xl</name>
  1050 + <rename>xlId</rename>
  1051 + <update>N</update>
  1052 + </value>
  1053 + <value>
  1054 + <name>cl</name>
  1055 + <rename>clId</rename>
  1056 + <update>N</update>
  1057 + </value>
  1058 + <value>
  1059 + <name>is_switch</name>
  1060 + <rename>isswitch</rename>
  1061 + <update>N</update>
  1062 + </value>
  1063 + <value>
  1064 + <name>tcd</name>
  1065 + <rename>parking lot</rename>
  1066 + <update>N</update>
  1067 + </value>
  1068 + <value>
  1069 + <name>zzrq</name>
  1070 + <rename>end date</rename>
  1071 + <update>N</update>
  1072 + </value>
  1073 + <value>
  1074 + <name>qyrq</name>
  1075 + <rename>activation date</rename>
  1076 + <update>N</update>
  1077 + </value>
  1078 + <value>
  1079 + <name>is_cancel</name>
  1080 + <rename>isCancel</rename>
  1081 + <update>N</update>
  1082 + </value>
  1083 + </lookup>
  1084 + <cluster_schema/>
  1085 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1086 + <xloc>804</xloc>
  1087 + <yloc>236</yloc>
  1088 + <draw>Y</draw>
  1089 + </GUI>
  1090 + </step>
  1091 +
  1092 + <step>
  1093 + <name>&#x65e5;&#x671f;&#x8f6c;&#x6362;</name>
  1094 + <type>SelectValues</type>
  1095 + <description/>
  1096 + <distribute>Y</distribute>
  1097 + <custom_distribution/>
  1098 + <copies>1</copies>
  1099 + <partitioning>
  1100 + <method>none</method>
  1101 + <schema_name/>
  1102 + </partitioning>
  1103 + <fields> <select_unspecified>N</select_unspecified>
  1104 + <meta> <name>activation date</name>
  1105 + <rename>activation date</rename>
  1106 + <type>Timestamp</type>
  1107 + <length>-2</length>
  1108 + <precision>-2</precision>
  1109 + <conversion_mask>yyyy-MM-dd</conversion_mask>
  1110 + <date_format_lenient>false</date_format_lenient>
  1111 + <date_format_locale/>
  1112 + <date_format_timezone/>
  1113 + <lenient_string_to_number>false</lenient_string_to_number>
  1114 + <encoding/>
  1115 + <decimal_symbol/>
  1116 + <grouping_symbol/>
  1117 + <currency_symbol/>
  1118 + <storage_type/>
  1119 + </meta> <meta> <name>end date</name>
  1120 + <rename>end date</rename>
  1121 + <type>Timestamp</type>
  1122 + <length>-2</length>
  1123 + <precision>-2</precision>
  1124 + <conversion_mask>yyyy-MM-dd</conversion_mask>
  1125 + <date_format_lenient>false</date_format_lenient>
  1126 + <date_format_locale/>
  1127 + <date_format_timezone/>
  1128 + <lenient_string_to_number>false</lenient_string_to_number>
  1129 + <encoding/>
  1130 + <decimal_symbol/>
  1131 + <grouping_symbol/>
  1132 + <currency_symbol/>
  1133 + <storage_type/>
  1134 + </meta> </fields> <cluster_schema/>
  1135 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1136 + <xloc>703</xloc>
  1137 + <yloc>136</yloc>
  1138 + <draw>Y</draw>
  1139 + </GUI>
  1140 + </step>
  1141 +
  1142 + <step>
  1143 + <name>&#x662f;&#x5426;&#x5207;&#x6362;</name>
  1144 + <type>Constant</type>
  1145 + <description/>
  1146 + <distribute>Y</distribute>
  1147 + <custom_distribution/>
  1148 + <copies>1</copies>
  1149 + <partitioning>
  1150 + <method>none</method>
  1151 + <schema_name/>
  1152 + </partitioning>
  1153 + <fields>
  1154 + <field>
  1155 + <name>isswitch</name>
  1156 + <type>Integer</type>
  1157 + <format/>
  1158 + <currency/>
  1159 + <decimal/>
  1160 + <group/>
  1161 + <nullif>0</nullif>
  1162 + <length>-1</length>
  1163 + <precision>-1</precision>
  1164 + <set_empty_string>N</set_empty_string>
  1165 + </field>
  1166 + </fields>
  1167 + <cluster_schema/>
  1168 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1169 + <xloc>803</xloc>
  1170 + <yloc>137</yloc>
  1171 + <draw>Y</draw>
  1172 + </GUI>
  1173 + </step>
  1174 +
  1175 + <step>
  1176 + <name>&#x7ebf;&#x8def;id&#x67e5;&#x8be2;</name>
  1177 + <type>DBLookup</type>
  1178 + <description/>
  1179 + <distribute>Y</distribute>
  1180 + <custom_distribution/>
  1181 + <copies>1</copies>
  1182 + <partitioning>
  1183 + <method>none</method>
  1184 + <schema_name/>
  1185 + </partitioning>
  1186 + <connection>control_jndi</connection>
  1187 + <cache>Y</cache>
  1188 + <cache_load_all>Y</cache_load_all>
  1189 + <cache_size>0</cache_size>
  1190 + <lookup>
  1191 + <schema/>
  1192 + <table>bsth_c_line</table>
  1193 + <orderby/>
  1194 + <fail_on_multiple>N</fail_on_multiple>
  1195 + <eat_row_on_failure>N</eat_row_on_failure>
  1196 + <key>
  1197 + <name>route name</name>
  1198 + <field>name</field>
  1199 + <condition>&#x3d;</condition>
  1200 + <name2/>
  1201 + </key>
  1202 + <key>
  1203 + <name>isCancel</name>
  1204 + <field>destroy</field>
  1205 + <condition>&#x3d;</condition>
  1206 + <name2/>
  1207 + </key>
  1208 + <value>
  1209 + <name>id</name>
  1210 + <rename>xlid</rename>
  1211 + <default/>
  1212 + <type>Integer</type>
  1213 + </value>
  1214 + </lookup>
  1215 + <cluster_schema/>
  1216 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1217 + <xloc>438</xloc>
  1218 + <yloc>57</yloc>
  1219 + <draw>Y</draw>
  1220 + </GUI>
  1221 + </step>
  1222 +
  1223 + <step>
  1224 + <name>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</name>
  1225 + <type>GetVariable</type>
  1226 + <description/>
  1227 + <distribute>Y</distribute>
  1228 + <custom_distribution/>
  1229 + <copies>1</copies>
  1230 + <partitioning>
  1231 + <method>none</method>
  1232 + <schema_name/>
  1233 + </partitioning>
  1234 + <fields>
  1235 + <field>
  1236 + <name>filepath_</name>
  1237 + <variable>&#x24;&#x7b;filepath&#x7d;</variable>
  1238 + <type>String</type>
  1239 + <format/>
  1240 + <currency/>
  1241 + <decimal/>
  1242 + <group/>
  1243 + <length>-1</length>
  1244 + <precision>-1</precision>
  1245 + <trim_type>none</trim_type>
  1246 + </field>
  1247 + <field>
  1248 + <name>erroroutputdir_</name>
  1249 + <variable>&#x24;&#x7b;erroroutputdir&#x7d;</variable>
  1250 + <type>String</type>
  1251 + <format/>
  1252 + <currency/>
  1253 + <decimal/>
  1254 + <group/>
  1255 + <length>-1</length>
  1256 + <precision>-1</precision>
  1257 + <trim_type>none</trim_type>
  1258 + </field>
  1259 + </fields>
  1260 + <cluster_schema/>
  1261 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1262 + <xloc>156</xloc>
  1263 + <yloc>150</yloc>
  1264 + <draw>Y</draw>
  1265 + </GUI>
  1266 + </step>
  1267 +
  1268 + <step>
  1269 + <name>&#x8f66;&#x8f86;id&#x67e5;&#x8be2;</name>
  1270 + <type>DBLookup</type>
  1271 + <description/>
  1272 + <distribute>Y</distribute>
  1273 + <custom_distribution/>
  1274 + <copies>1</copies>
  1275 + <partitioning>
  1276 + <method>none</method>
  1277 + <schema_name/>
  1278 + </partitioning>
  1279 + <connection>control_jndi</connection>
  1280 + <cache>Y</cache>
  1281 + <cache_load_all>Y</cache_load_all>
  1282 + <cache_size>0</cache_size>
  1283 + <lookup>
  1284 + <schema/>
  1285 + <table>bsth_c_cars</table>
  1286 + <orderby/>
  1287 + <fail_on_multiple>N</fail_on_multiple>
  1288 + <eat_row_on_failure>N</eat_row_on_failure>
  1289 + <key>
  1290 + <name>internal number</name>
  1291 + <field>inside_code</field>
  1292 + <condition>&#x3d;</condition>
  1293 + <name2/>
  1294 + </key>
  1295 + <value>
  1296 + <name>id</name>
  1297 + <rename>clid</rename>
  1298 + <default/>
  1299 + <type>Integer</type>
  1300 + </value>
  1301 + </lookup>
  1302 + <cluster_schema/>
  1303 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1304 + <xloc>440</xloc>
  1305 + <yloc>138</yloc>
  1306 + <draw>Y</draw>
  1307 + </GUI>
  1308 + </step>
  1309 +
  1310 + <step>
  1311 + <name>&#x8fc7;&#x6ee4;&#x7ebf;&#x8def;id&#x4e3a;&#x7a7a;&#x8bb0;&#x5f55;</name>
  1312 + <type>FilterRows</type>
  1313 + <description/>
  1314 + <distribute>Y</distribute>
  1315 + <custom_distribution/>
  1316 + <copies>1</copies>
  1317 + <partitioning>
  1318 + <method>none</method>
  1319 + <schema_name/>
  1320 + </partitioning>
  1321 +<send_true_to>&#x8f66;&#x8f86;id&#x67e5;&#x8be2;</send_true_to>
  1322 +<send_false_to/>
  1323 + <compare>
  1324 +<condition>
  1325 + <negated>N</negated>
  1326 + <leftvalue>xlid</leftvalue>
  1327 + <function>IS NOT NULL</function>
  1328 + <rightvalue/>
  1329 + </condition>
  1330 + </compare>
  1331 + <cluster_schema/>
  1332 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1333 + <xloc>563</xloc>
  1334 + <yloc>57</yloc>
  1335 + <draw>Y</draw>
  1336 + </GUI>
  1337 + </step>
  1338 +
  1339 + <step>
  1340 + <name>&#x8fc7;&#x6ee4;&#x8f66;&#x8f86;id&#x4e3a;&#x7a7a;&#x8bb0;&#x5f55;</name>
  1341 + <type>FilterRows</type>
  1342 + <description/>
  1343 + <distribute>Y</distribute>
  1344 + <custom_distribution/>
  1345 + <copies>1</copies>
  1346 + <partitioning>
  1347 + <method>none</method>
  1348 + <schema_name/>
  1349 + </partitioning>
  1350 +<send_true_to>&#x65e5;&#x671f;&#x8f6c;&#x6362;</send_true_to>
  1351 +<send_false_to/>
  1352 + <compare>
  1353 +<condition>
  1354 + <negated>N</negated>
  1355 + <leftvalue>clid</leftvalue>
  1356 + <function>IS NOT NULL</function>
  1357 + <rightvalue/>
  1358 + </condition>
  1359 + </compare>
  1360 + <cluster_schema/>
  1361 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1362 + <xloc>566</xloc>
  1363 + <yloc>137</yloc>
  1364 + <draw>Y</draw>
  1365 + </GUI>
  1366 + </step>
  1367 +
  1368 + <step>
  1369 + <name>&#x9519;&#x8bef;&#x8f93;&#x51fa;</name>
  1370 + <type>ExcelOutput</type>
  1371 + <description/>
  1372 + <distribute>Y</distribute>
  1373 + <custom_distribution/>
  1374 + <copies>1</copies>
  1375 + <partitioning>
  1376 + <method>none</method>
  1377 + <schema_name/>
  1378 + </partitioning>
  1379 + <header>Y</header>
  1380 + <footer>N</footer>
  1381 + <encoding>UTF-8</encoding>
  1382 + <append>N</append>
  1383 + <add_to_result_filenames>Y</add_to_result_filenames>
  1384 + <file>
  1385 + <name>&#x24;&#x7b;erroroutputdir&#x7d;&#x2f;&#x5f53;&#x524d;&#x914d;&#x8f66;_&#x9519;&#x8bef;</name>
  1386 + <extention>xls</extention>
  1387 + <do_not_open_newfile_init>N</do_not_open_newfile_init>
  1388 + <create_parent_folder>N</create_parent_folder>
  1389 + <split>N</split>
  1390 + <add_date>N</add_date>
  1391 + <add_time>N</add_time>
  1392 + <SpecifyFormat>N</SpecifyFormat>
  1393 + <date_time_format/>
  1394 + <sheetname>Sheet1</sheetname>
  1395 + <autosizecolums>N</autosizecolums>
  1396 + <nullisblank>N</nullisblank>
  1397 + <protect_sheet>N</protect_sheet>
  1398 + <password>Encrypted </password>
  1399 + <splitevery>0</splitevery>
  1400 + <usetempfiles>N</usetempfiles>
  1401 + <tempdirectory/>
  1402 + </file>
  1403 + <template>
  1404 + <enabled>N</enabled>
  1405 + <append>N</append>
  1406 + <filename>template.xls</filename>
  1407 + </template>
  1408 + <fields>
  1409 + <field>
  1410 + <name>route name</name>
  1411 + <type>String</type>
  1412 + <format/>
  1413 + </field>
  1414 + <field>
  1415 + <name>internal number</name>
  1416 + <type>String</type>
  1417 + <format/>
  1418 + </field>
  1419 + <field>
  1420 + <name>activation date</name>
  1421 + <type>Timestamp</type>
  1422 + <format/>
  1423 + </field>
  1424 + <field>
  1425 + <name>end date</name>
  1426 + <type>Timestamp</type>
  1427 + <format/>
  1428 + </field>
  1429 + <field>
  1430 + <name>parking lot</name>
  1431 + <type>String</type>
  1432 + <format/>
  1433 + </field>
  1434 + <field>
  1435 + <name>isCancel</name>
  1436 + <type>Integer</type>
  1437 + <format/>
  1438 + </field>
  1439 + <field>
  1440 + <name>xlid</name>
  1441 + <type>Integer</type>
  1442 + <format/>
  1443 + </field>
  1444 + <field>
  1445 + <name>clid</name>
  1446 + <type>Integer</type>
  1447 + <format/>
  1448 + </field>
  1449 + <field>
  1450 + <name>isswitch</name>
  1451 + <type>Integer</type>
  1452 + <format/>
  1453 + </field>
  1454 + <field>
  1455 + <name>error_count</name>
  1456 + <type>Integer</type>
  1457 + <format/>
  1458 + </field>
  1459 + <field>
  1460 + <name>error_desc</name>
  1461 + <type>String</type>
  1462 + <format/>
  1463 + </field>
  1464 + <field>
  1465 + <name>error_column1</name>
  1466 + <type>String</type>
  1467 + <format/>
  1468 + </field>
  1469 + <field>
  1470 + <name>error_column2</name>
  1471 + <type>String</type>
  1472 + <format/>
  1473 + </field>
  1474 + </fields>
  1475 + <custom>
  1476 + <header_font_name>arial</header_font_name>
  1477 + <header_font_size>10</header_font_size>
  1478 + <header_font_bold>N</header_font_bold>
  1479 + <header_font_italic>N</header_font_italic>
  1480 + <header_font_underline>no</header_font_underline>
  1481 + <header_font_orientation>horizontal</header_font_orientation>
  1482 + <header_font_color>black</header_font_color>
  1483 + <header_background_color>none</header_background_color>
  1484 + <header_row_height>255</header_row_height>
  1485 + <header_alignment>left</header_alignment>
  1486 + <header_image/>
  1487 + <row_font_name>arial</row_font_name>
  1488 + <row_font_size>10</row_font_size>
  1489 + <row_font_color>black</row_font_color>
  1490 + <row_background_color>none</row_background_color>
  1491 + </custom>
  1492 + <cluster_schema/>
  1493 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1494 + <xloc>807</xloc>
  1495 + <yloc>353</yloc>
  1496 + <draw>Y</draw>
  1497 + </GUI>
  1498 + </step>
  1499 +
  1500 + <step_error_handling>
  1501 + <error>
  1502 + <source_step>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ccinfo</source_step>
  1503 + <target_step>&#x9519;&#x8bef;&#x8f93;&#x51fa;</target_step>
  1504 + <is_enabled>Y</is_enabled>
  1505 + <nr_valuename>error_count</nr_valuename>
  1506 + <descriptions_valuename>error_desc</descriptions_valuename>
  1507 + <fields_valuename>error_column1</fields_valuename>
  1508 + <codes_valuename>error_column2</codes_valuename>
  1509 + <max_errors/>
  1510 + <max_pct_errors/>
  1511 + <min_pct_rows/>
  1512 + </error>
  1513 + </step_error_handling>
  1514 + <slave-step-copy-partition-distribution>
  1515 +</slave-step-copy-partition-distribution>
  1516 + <slave_transformation>N</slave_transformation>
  1517 +
  1518 +</transformation>
... ...
src/main/resources/datatools/ktrs/zh/vehicle-config-data_export.ktr 0 → 100644
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<transformation>
  3 + <info>
  4 + <name>&#x8f66;&#x8f86;&#x914d;&#x7f6e;&#x4fe1;&#x606f;&#x5bfc;&#x51fa;_zh</name>
  5 + <description/>
  6 + <extended_description/>
  7 + <trans_version/>
  8 + <trans_type>Normal</trans_type>
  9 + <trans_status>0</trans_status>
  10 + <directory>&#x2f;</directory>
  11 + <parameters>
  12 + <parameter>
  13 + <name>filepath</name>
  14 + <default_value/>
  15 + <description>excel&#x6587;&#x4ef6;&#x8def;&#x5f84;</description>
  16 + </parameter>
  17 + <parameter>
  18 + <name>templatepath</name>
  19 + <default_value/>
  20 + <description>&#x6a21;&#x7248;&#x6587;&#x4ef6;&#x8def;&#x5f84;</description>
  21 + </parameter>
  22 + <parameter>
  23 + <name>xlid</name>
  24 + <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;11 14&#x3a;14&#x3a;13.722</created_date>
  86 + <modified_user>-</modified_user>
  87 + <modified_date>2017&#x2f;01&#x2f;11 14&#x3a;14&#x3a;13.722</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>81</xloc>
  95 + <yloc>172</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 + </notepads>
  114 + <connection>
  115 + <name>192.168.168.1_jwgl_dw</name>
  116 + <server>192.168.168.1</server>
  117 + <type>ORACLE</type>
  118 + <access>Native</access>
  119 + <database>orcl</database>
  120 + <port>1521</port>
  121 + <username>jwgl_dw</username>
  122 + <password>Encrypted 2be98afc86aa7f2e4cb13b977d2adabcd</password>
  123 + <servername/>
  124 + <data_tablespace/>
  125 + <index_tablespace/>
  126 + <attributes>
  127 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  128 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  129 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  130 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  131 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  132 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  133 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  134 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  135 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  136 + </attributes>
  137 + </connection>
  138 + <connection>
  139 + <name>bus_control_variable</name>
  140 + <server>&#x24;&#x7b;v_db_ip&#x7d;</server>
  141 + <type>MYSQL</type>
  142 + <access>Native</access>
  143 + <database>&#x24;&#x7b;v_db_dname&#x7d;</database>
  144 + <port>3306</port>
  145 + <username>&#x24;&#x7b;v_db_uname&#x7d;</username>
  146 + <password>&#x24;&#x7b;v_db_pwd&#x7d;</password>
  147 + <servername/>
  148 + <data_tablespace/>
  149 + <index_tablespace/>
  150 + <attributes>
  151 + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
  152 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  153 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  154 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  155 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  156 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  157 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  158 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  159 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  160 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  161 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  162 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  163 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  164 + </attributes>
  165 + </connection>
  166 + <connection>
  167 + <name>bus_control_&#x516c;&#x53f8;_201</name>
  168 + <server>localhost</server>
  169 + <type>MYSQL</type>
  170 + <access>Native</access>
  171 + <database>control</database>
  172 + <port>3306</port>
  173 + <username>root</username>
  174 + <password>Encrypted </password>
  175 + <servername/>
  176 + <data_tablespace/>
  177 + <index_tablespace/>
  178 + <attributes>
  179 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  180 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  181 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  182 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  183 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  184 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  185 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  186 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  187 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  188 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  189 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  190 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  191 + </attributes>
  192 + </connection>
  193 + <connection>
  194 + <name>bus_control_&#x672c;&#x673a;</name>
  195 + <server>localhost</server>
  196 + <type>MYSQL</type>
  197 + <access>Native</access>
  198 + <database>control</database>
  199 + <port>3306</port>
  200 + <username>root</username>
  201 + <password>Encrypted </password>
  202 + <servername/>
  203 + <data_tablespace/>
  204 + <index_tablespace/>
  205 + <attributes>
  206 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  207 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  208 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  209 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  210 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  211 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  212 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  213 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  214 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  215 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  216 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  217 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  218 + </attributes>
  219 + </connection>
  220 + <connection>
  221 + <name>control_jndi</name>
  222 + <server/>
  223 + <type>MYSQL</type>
  224 + <access>JNDI</access>
  225 + <database>control_jndi</database>
  226 + <port>1521</port>
  227 + <username/>
  228 + <password>Encrypted </password>
  229 + <servername/>
  230 + <data_tablespace/>
  231 + <index_tablespace/>
  232 + <attributes>
  233 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  234 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  235 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  236 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  237 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  238 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  239 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  240 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  241 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  242 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  243 + </attributes>
  244 + </connection>
  245 + <connection>
  246 + <name>JGJW_VM</name>
  247 + <server>192.168.198.240</server>
  248 + <type>ORACLE</type>
  249 + <access>Native</access>
  250 + <database>orcl</database>
  251 + <port>1521</port>
  252 + <username>jwgl</username>
  253 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d485a8d6</password>
  254 + <servername/>
  255 + <data_tablespace/>
  256 + <index_tablespace/>
  257 + <attributes>
  258 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  259 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  260 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  261 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  262 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  263 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  264 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  265 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  266 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  267 + </attributes>
  268 + </connection>
  269 + <connection>
  270 + <name>NHJW_VM</name>
  271 + <server>192.168.198.240</server>
  272 + <type>ORACLE</type>
  273 + <access>Native</access>
  274 + <database>orcl</database>
  275 + <port>1521</port>
  276 + <username>nhjw</username>
  277 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d09aa5cd</password>
  278 + <servername/>
  279 + <data_tablespace/>
  280 + <index_tablespace/>
  281 + <attributes>
  282 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  283 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  284 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  285 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  286 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  287 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  288 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  289 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  290 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  291 + </attributes>
  292 + </connection>
  293 + <connection>
  294 + <name>PDGJ_VM</name>
  295 + <server>192.168.198.240</server>
  296 + <type>ORACLE</type>
  297 + <access>Native</access>
  298 + <database>orcl</database>
  299 + <port>1521</port>
  300 + <username>pdgj</username>
  301 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10ce96a8d0</password>
  302 + <servername/>
  303 + <data_tablespace/>
  304 + <index_tablespace/>
  305 + <attributes>
  306 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  307 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  308 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  309 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  310 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  311 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  312 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  313 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  314 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  315 + </attributes>
  316 + </connection>
  317 + <connection>
  318 + <name>repair_dw_mysql_jndi</name>
  319 + <server/>
  320 + <type>MYSQL</type>
  321 + <access>JNDI</access>
  322 + <database>repair_dw_mysql</database>
  323 + <port>1521</port>
  324 + <username/>
  325 + <password>Encrypted </password>
  326 + <servername/>
  327 + <data_tablespace/>
  328 + <index_tablespace/>
  329 + <attributes>
  330 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  331 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  332 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  333 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  334 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  335 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  336 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  337 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  338 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  339 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  340 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  341 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  342 + </attributes>
  343 + </connection>
  344 + <connection>
  345 + <name>repair_dw&#xff08;&#x672c;&#x673a;&#xff09;</name>
  346 + <server>localhost</server>
  347 + <type>MYSQL</type>
  348 + <access>Native</access>
  349 + <database>ruoyi-vue-3.5</database>
  350 + <port>3306</port>
  351 + <username>root</username>
  352 + <password>Encrypted </password>
  353 + <servername/>
  354 + <data_tablespace/>
  355 + <index_tablespace/>
  356 + <attributes>
  357 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  358 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  359 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  360 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  361 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  362 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  363 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  364 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  365 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  366 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  367 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  368 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  369 + </attributes>
  370 + </connection>
  371 + <connection>
  372 + <name>repair_real_h2</name>
  373 + <server/>
  374 + <type>H2</type>
  375 + <access>JNDI</access>
  376 + <database>repair_real_h2</database>
  377 + <port>1521</port>
  378 + <username/>
  379 + <password>Encrypted </password>
  380 + <servername/>
  381 + <data_tablespace/>
  382 + <index_tablespace/>
  383 + <attributes>
  384 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  385 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  386 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  387 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  388 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  389 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  390 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  391 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  392 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  393 + </attributes>
  394 + </connection>
  395 + <connection>
  396 + <name>SNJW_VM</name>
  397 + <server>192.168.198.240</server>
  398 + <type>ORACLE</type>
  399 + <access>Native</access>
  400 + <database>orcl</database>
  401 + <port>1521</port>
  402 + <username>snjw</username>
  403 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10cd9ca5cd</password>
  404 + <servername/>
  405 + <data_tablespace/>
  406 + <index_tablespace/>
  407 + <attributes>
  408 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  409 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  410 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  411 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  412 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  413 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  414 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  415 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  416 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  417 + </attributes>
  418 + </connection>
  419 + <connection>
  420 + <name>test_control_local</name>
  421 + <server>localhost</server>
  422 + <type>MYSQL</type>
  423 + <access>Native</access>
  424 + <database>test_control</database>
  425 + <port>3306</port>
  426 + <username>root</username>
  427 + <password>Encrypted </password>
  428 + <servername/>
  429 + <data_tablespace/>
  430 + <index_tablespace/>
  431 + <attributes>
  432 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  433 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  434 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  435 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  436 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  437 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  438 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  439 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  440 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  441 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  442 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  443 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  444 + </attributes>
  445 + </connection>
  446 + <connection>
  447 + <name>test_control&#xff08;&#x672c;&#x673a;&#xff09;</name>
  448 + <server>127.0.0.1</server>
  449 + <type>MYSQL</type>
  450 + <access>Native</access>
  451 + <database>test_control</database>
  452 + <port>3306</port>
  453 + <username>root</username>
  454 + <password>Encrypted </password>
  455 + <servername/>
  456 + <data_tablespace/>
  457 + <index_tablespace/>
  458 + <attributes>
  459 + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
  460 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  461 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  462 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  463 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  464 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  465 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  466 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  467 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  468 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  469 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  470 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  471 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  472 + </attributes>
  473 + </connection>
  474 + <connection>
  475 + <name>wzk_mysql_jndi</name>
  476 + <server/>
  477 + <type>MYSQL</type>
  478 + <access>JNDI</access>
  479 + <database>wzk_mysql</database>
  480 + <port>1521</port>
  481 + <username/>
  482 + <password>Encrypted </password>
  483 + <servername/>
  484 + <data_tablespace/>
  485 + <index_tablespace/>
  486 + <attributes>
  487 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  488 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  489 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  490 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  491 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  492 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  493 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  494 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  495 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  496 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  497 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  498 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  499 + </attributes>
  500 + </connection>
  501 + <connection>
  502 + <name>wzk&#xff08;&#x672c;&#x673a;&#xff09;</name>
  503 + <server>localhost</server>
  504 + <type>MYSQL</type>
  505 + <access>Native</access>
  506 + <database>pdgj_wzk_sys</database>
  507 + <port>3306</port>
  508 + <username>root</username>
  509 + <password>Encrypted </password>
  510 + <servername/>
  511 + <data_tablespace/>
  512 + <index_tablespace/>
  513 + <attributes>
  514 + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
  515 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  516 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  517 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  518 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  519 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  520 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  521 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  522 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  523 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  524 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  525 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  526 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  527 + </attributes>
  528 + </connection>
  529 + <connection>
  530 + <name>xlab_mysql_youle</name>
  531 + <server>101.231.124.8</server>
  532 + <type>MYSQL</type>
  533 + <access>Native</access>
  534 + <database>xlab_youle</database>
  535 + <port>45687</port>
  536 + <username>xlab-youle</username>
  537 + <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password>
  538 + <servername/>
  539 + <data_tablespace/>
  540 + <index_tablespace/>
  541 + <attributes>
  542 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  543 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  544 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  545 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  546 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  547 + <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute>
  548 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  549 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  550 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  551 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  552 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  553 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  554 + </attributes>
  555 + </connection>
  556 + <connection>
  557 + <name>xlab_mysql_youle&#xff08;&#x672c;&#x673a;&#xff09;</name>
  558 + <server>localhost</server>
  559 + <type>MYSQL</type>
  560 + <access>Native</access>
  561 + <database>xlab_youle</database>
  562 + <port>3306</port>
  563 + <username>root</username>
  564 + <password>Encrypted </password>
  565 + <servername/>
  566 + <data_tablespace/>
  567 + <index_tablespace/>
  568 + <attributes>
  569 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  570 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  571 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  572 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  573 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  574 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  575 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  576 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  577 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  578 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  579 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  580 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  581 + </attributes>
  582 + </connection>
  583 + <connection>
  584 + <name>xlab_youle</name>
  585 + <server/>
  586 + <type>MYSQL</type>
  587 + <access>JNDI</access>
  588 + <database>xlab_youle</database>
  589 + <port>1521</port>
  590 + <username/>
  591 + <password>Encrypted </password>
  592 + <servername/>
  593 + <data_tablespace/>
  594 + <index_tablespace/>
  595 + <attributes>
  596 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  597 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  598 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  599 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  600 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  601 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  602 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  603 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  604 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  605 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  606 + </attributes>
  607 + </connection>
  608 + <connection>
  609 + <name>YGJW_VM</name>
  610 + <server>192.168.198.240</server>
  611 + <type>ORACLE</type>
  612 + <access>Native</access>
  613 + <database>orcl</database>
  614 + <port>1521</port>
  615 + <username>ygjw</username>
  616 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10c795a5cd</password>
  617 + <servername/>
  618 + <data_tablespace/>
  619 + <index_tablespace/>
  620 + <attributes>
  621 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  622 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  623 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  624 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  625 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  626 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  627 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  628 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  629 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  630 + </attributes>
  631 + </connection>
  632 + <connection>
  633 + <name>&#x516c;&#x53f8;jgjw</name>
  634 + <server>192.168.168.1</server>
  635 + <type>ORACLE</type>
  636 + <access>Native</access>
  637 + <database>orcl</database>
  638 + <port>1521</port>
  639 + <username>jwgl</username>
  640 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d485a8d6</password>
  641 + <servername/>
  642 + <data_tablespace/>
  643 + <index_tablespace/>
  644 + <attributes>
  645 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  646 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  647 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  648 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  649 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  650 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  651 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  652 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  653 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  654 + </attributes>
  655 + </connection>
  656 + <connection>
  657 + <name>&#x516c;&#x53f8;snjw</name>
  658 + <server>192.168.168.1</server>
  659 + <type>ORACLE</type>
  660 + <access>Native</access>
  661 + <database>orcl</database>
  662 + <port>1521</port>
  663 + <username>snjw</username>
  664 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10cd9ca5cd</password>
  665 + <servername/>
  666 + <data_tablespace/>
  667 + <index_tablespace/>
  668 + <attributes>
  669 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  670 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  671 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  672 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  673 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  674 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  675 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  676 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  677 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  678 + </attributes>
  679 + </connection>
  680 + <connection>
  681 + <name>&#x516c;&#x53f8;ygjw</name>
  682 + <server>192.168.168.178</server>
  683 + <type>ORACLE</type>
  684 + <access>Native</access>
  685 + <database>orcl</database>
  686 + <port>1521</port>
  687 + <username>ygjw</username>
  688 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10c795a5cd</password>
  689 + <servername/>
  690 + <data_tablespace/>
  691 + <index_tablespace/>
  692 + <attributes>
  693 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  694 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  695 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  696 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  697 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  698 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  699 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  700 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  701 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  702 + </attributes>
  703 + </connection>
  704 + <connection>
  705 + <name>&#x516c;&#x53f8;&#x673a;&#x52a1;_pdgj</name>
  706 + <server>192.168.168.178</server>
  707 + <type>ORACLE</type>
  708 + <access>Native</access>
  709 + <database>orcl</database>
  710 + <port>1521</port>
  711 + <username>pdgj</username>
  712 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10ce96a8d0</password>
  713 + <servername/>
  714 + <data_tablespace/>
  715 + <index_tablespace/>
  716 + <attributes>
  717 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  718 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  719 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  720 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  721 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  722 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  723 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  724 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  725 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  726 + </attributes>
  727 + </connection>
  728 + <connection>
  729 + <name>&#x5916;&#x7f51;vpn&#x4e34;&#x6e2f;&#x673a;&#x52a1;oracle</name>
  730 + <server>10.10.150.114</server>
  731 + <type>ORACLE</type>
  732 + <access>Native</access>
  733 + <database>helowin</database>
  734 + <port>1521</port>
  735 + <username>lgjw</username>
  736 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d295a5cd</password>
  737 + <servername/>
  738 + <data_tablespace/>
  739 + <index_tablespace/>
  740 + <attributes>
  741 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  742 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  743 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  744 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  745 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  746 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  747 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  748 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  749 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  750 + </attributes>
  751 + </connection>
  752 + <connection>
  753 + <name>&#x5916;&#x7f51;&#x5357;&#x6c47;&#x673a;&#x52a1;oracle</name>
  754 + <server>58.247.254.118</server>
  755 + <type>ORACLE</type>
  756 + <access>Native</access>
  757 + <database>orcl</database>
  758 + <port>15211</port>
  759 + <username>nhjw</username>
  760 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d09aa5cd</password>
  761 + <servername/>
  762 + <data_tablespace/>
  763 + <index_tablespace/>
  764 + <attributes>
  765 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  766 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  767 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  768 + <attribute><code>PORT_NUMBER</code><attribute>15211</attribute></attribute>
  769 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  770 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  771 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  772 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  773 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  774 + </attributes>
  775 + </connection>
  776 + <connection>
  777 + <name>&#x5916;&#x7f51;&#x6768;&#x9ad8;&#x673a;&#x52a1;oracle</name>
  778 + <server>58.247.254.118</server>
  779 + <type>ORACLE</type>
  780 + <access>Native</access>
  781 + <database>orcl</database>
  782 + <port>15211</port>
  783 + <username>ygjw</username>
  784 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10c795a5cd</password>
  785 + <servername/>
  786 + <data_tablespace/>
  787 + <index_tablespace/>
  788 + <attributes>
  789 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  790 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  791 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  792 + <attribute><code>PORT_NUMBER</code><attribute>15211</attribute></attribute>
  793 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  794 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  795 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  796 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  797 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  798 + </attributes>
  799 + </connection>
  800 + <connection>
  801 + <name>&#x5916;&#x7f51;&#x91d1;&#x9ad8;&#x673a;&#x52a1;oracle</name>
  802 + <server>58.247.254.118</server>
  803 + <type>ORACLE</type>
  804 + <access>Native</access>
  805 + <database>orcl</database>
  806 + <port>15211</port>
  807 + <username>jwgl</username>
  808 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d485a8d6</password>
  809 + <servername/>
  810 + <data_tablespace/>
  811 + <index_tablespace/>
  812 + <attributes>
  813 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  814 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  815 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  816 + <attribute><code>PORT_NUMBER</code><attribute>15211</attribute></attribute>
  817 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  818 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  819 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  820 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  821 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  822 + </attributes>
  823 + </connection>
  824 + <order>
  825 + <hop> <from>&#x8f66;&#x8f86;&#x914d;&#x7f6e;&#xff08;&#x6ca1;&#x6709;&#x4f5c;&#x5e9f;&#xff09;</from><to>&#x7ebf;&#x8def;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>
  826 + <hop> <from>&#x7ebf;&#x8def;&#x67e5;&#x8be2;</from><to>&#x8f66;&#x8f86;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>
  827 + <hop> <from>&#x8f66;&#x8f86;&#x67e5;&#x8be2;</from><to>&#x683c;&#x5f0f;&#x5316;&#x65e5;&#x671f;</to><enabled>Y</enabled> </hop>
  828 + <hop> <from>&#x683c;&#x5f0f;&#x5316;&#x65e5;&#x671f;</from><to>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</to><enabled>Y</enabled> </hop>
  829 + <hop> <from>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</from><to>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</to><enabled>Y</enabled> </hop>
  830 + <hop> <from>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</from><to>Excel&#x8f93;&#x51fa;</to><enabled>Y</enabled> </hop>
  831 + </order>
  832 + <step>
  833 + <name>Excel&#x8f93;&#x51fa;</name>
  834 + <type>ExcelOutput</type>
  835 + <description/>
  836 + <distribute>Y</distribute>
  837 + <custom_distribution/>
  838 + <copies>1</copies>
  839 + <partitioning>
  840 + <method>none</method>
  841 + <schema_name/>
  842 + </partitioning>
  843 + <header>Y</header>
  844 + <footer>N</footer>
  845 + <encoding/>
  846 + <append>N</append>
  847 + <add_to_result_filenames>Y</add_to_result_filenames>
  848 + <file>
  849 + <name>&#x24;&#x7b;filepath&#x7d;</name>
  850 + <extention>xls</extention>
  851 + <do_not_open_newfile_init>N</do_not_open_newfile_init>
  852 + <create_parent_folder>N</create_parent_folder>
  853 + <split>N</split>
  854 + <add_date>N</add_date>
  855 + <add_time>N</add_time>
  856 + <SpecifyFormat>N</SpecifyFormat>
  857 + <date_time_format>yyyyMMddHHmmss</date_time_format>
  858 + <sheetname>&#x5de5;&#x4f5c;&#x8868;1</sheetname>
  859 + <autosizecolums>N</autosizecolums>
  860 + <nullisblank>N</nullisblank>
  861 + <protect_sheet>N</protect_sheet>
  862 + <password>Encrypted </password>
  863 + <splitevery>0</splitevery>
  864 + <usetempfiles>N</usetempfiles>
  865 + <tempdirectory/>
  866 + </file>
  867 + <template>
  868 + <enabled>N</enabled>
  869 + <append>N</append>
  870 + <filename>template.xls</filename>
  871 + </template>
  872 + <fields>
  873 + <field>
  874 + <name>&#x7ebf;&#x8def;</name>
  875 + <type>String</type>
  876 + <format/>
  877 + </field>
  878 + <field>
  879 + <name>&#x5185;&#x90e8;&#x7f16;&#x7801;</name>
  880 + <type>String</type>
  881 + <format/>
  882 + </field>
  883 + <field>
  884 + <name>&#x542f;&#x7528;&#x65e5;&#x671f;</name>
  885 + <type>String</type>
  886 + <format/>
  887 + </field>
  888 + <field>
  889 + <name>&#x7ec8;&#x7ed3;&#x65e5;&#x671f;</name>
  890 + <type>String</type>
  891 + <format/>
  892 + </field>
  893 + <field>
  894 + <name>&#x505c;&#x8f66;&#x70b9;</name>
  895 + <type>String</type>
  896 + <format/>
  897 + </field>
  898 + </fields>
  899 + <custom>
  900 + <header_font_name>arial</header_font_name>
  901 + <header_font_size>10</header_font_size>
  902 + <header_font_bold>N</header_font_bold>
  903 + <header_font_italic>N</header_font_italic>
  904 + <header_font_underline>no</header_font_underline>
  905 + <header_font_orientation>horizontal</header_font_orientation>
  906 + <header_font_color>black</header_font_color>
  907 + <header_background_color>none</header_background_color>
  908 + <header_row_height>255</header_row_height>
  909 + <header_alignment>left</header_alignment>
  910 + <header_image/>
  911 + <row_font_name>arial</row_font_name>
  912 + <row_font_size>10</row_font_size>
  913 + <row_font_color>black</row_font_color>
  914 + <row_background_color>none</row_background_color>
  915 + </custom>
  916 + <cluster_schema/>
  917 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  918 + <xloc>596</xloc>
  919 + <yloc>265</yloc>
  920 + <draw>Y</draw>
  921 + </GUI>
  922 + </step>
  923 +
  924 + <step>
  925 + <name>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</name>
  926 + <type>SelectValues</type>
  927 + <description/>
  928 + <distribute>Y</distribute>
  929 + <custom_distribution/>
  930 + <copies>1</copies>
  931 + <partitioning>
  932 + <method>none</method>
  933 + <schema_name/>
  934 + </partitioning>
  935 + <fields> <field> <name>xlmc</name>
  936 + <rename>&#x7ebf;&#x8def;</rename>
  937 + <length>-2</length>
  938 + <precision>-2</precision>
  939 + </field> <field> <name>zbh</name>
  940 + <rename>&#x5185;&#x90e8;&#x7f16;&#x7801;</rename>
  941 + <length>-2</length>
  942 + <precision>-2</precision>
  943 + </field> <field> <name>qyrq</name>
  944 + <rename>&#x542f;&#x7528;&#x65e5;&#x671f;</rename>
  945 + <length>-2</length>
  946 + <precision>-2</precision>
  947 + </field> <field> <name>zzrq</name>
  948 + <rename>&#x7ec8;&#x7ed3;&#x65e5;&#x671f;</rename>
  949 + <length>-2</length>
  950 + <precision>-2</precision>
  951 + </field> <field> <name>tcd</name>
  952 + <rename>&#x505c;&#x8f66;&#x70b9;</rename>
  953 + <length>-2</length>
  954 + <precision>-2</precision>
  955 + </field> <select_unspecified>N</select_unspecified>
  956 + </fields> <cluster_schema/>
  957 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  958 + <xloc>595</xloc>
  959 + <yloc>167</yloc>
  960 + <draw>Y</draw>
  961 + </GUI>
  962 + </step>
  963 +
  964 + <step>
  965 + <name>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</name>
  966 + <type>SortRows</type>
  967 + <description/>
  968 + <distribute>Y</distribute>
  969 + <custom_distribution/>
  970 + <copies>1</copies>
  971 + <partitioning>
  972 + <method>none</method>
  973 + <schema_name/>
  974 + </partitioning>
  975 + <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
  976 + <prefix>out</prefix>
  977 + <sort_size>1000000</sort_size>
  978 + <free_memory/>
  979 + <compress>N</compress>
  980 + <compress_variable/>
  981 + <unique_rows>N</unique_rows>
  982 + <fields>
  983 + <field>
  984 + <name>xlmc</name>
  985 + <ascending>Y</ascending>
  986 + <case_sensitive>N</case_sensitive>
  987 + <presorted>N</presorted>
  988 + </field>
  989 + <field>
  990 + <name>zbh</name>
  991 + <ascending>Y</ascending>
  992 + <case_sensitive>N</case_sensitive>
  993 + <presorted>N</presorted>
  994 + </field>
  995 + <field>
  996 + <name>qyrq</name>
  997 + <ascending>Y</ascending>
  998 + <case_sensitive>N</case_sensitive>
  999 + <presorted>N</presorted>
  1000 + </field>
  1001 + </fields>
  1002 + <cluster_schema/>
  1003 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1004 + <xloc>592</xloc>
  1005 + <yloc>66</yloc>
  1006 + <draw>Y</draw>
  1007 + </GUI>
  1008 + </step>
  1009 +
  1010 + <step>
  1011 + <name>&#x683c;&#x5f0f;&#x5316;&#x65e5;&#x671f;</name>
  1012 + <type>SelectValues</type>
  1013 + <description/>
  1014 + <distribute>Y</distribute>
  1015 + <custom_distribution/>
  1016 + <copies>1</copies>
  1017 + <partitioning>
  1018 + <method>none</method>
  1019 + <schema_name/>
  1020 + </partitioning>
  1021 + <fields> <select_unspecified>N</select_unspecified>
  1022 + <meta> <name>qyrq</name>
  1023 + <rename>qyrq</rename>
  1024 + <type>String</type>
  1025 + <length>-2</length>
  1026 + <precision>-2</precision>
  1027 + <conversion_mask>yyyy-MM-dd</conversion_mask>
  1028 + <date_format_lenient>false</date_format_lenient>
  1029 + <date_format_locale/>
  1030 + <date_format_timezone/>
  1031 + <lenient_string_to_number>false</lenient_string_to_number>
  1032 + <encoding/>
  1033 + <decimal_symbol/>
  1034 + <grouping_symbol/>
  1035 + <currency_symbol/>
  1036 + <storage_type/>
  1037 + </meta> <meta> <name>zzrq</name>
  1038 + <rename>zzrq</rename>
  1039 + <type>String</type>
  1040 + <length>-2</length>
  1041 + <precision>-2</precision>
  1042 + <conversion_mask>yyyy-MM-dd</conversion_mask>
  1043 + <date_format_lenient>false</date_format_lenient>
  1044 + <date_format_locale/>
  1045 + <date_format_timezone/>
  1046 + <lenient_string_to_number>false</lenient_string_to_number>
  1047 + <encoding/>
  1048 + <decimal_symbol/>
  1049 + <grouping_symbol/>
  1050 + <currency_symbol/>
  1051 + <storage_type/>
  1052 + </meta> </fields> <cluster_schema/>
  1053 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1054 + <xloc>478</xloc>
  1055 + <yloc>66</yloc>
  1056 + <draw>Y</draw>
  1057 + </GUI>
  1058 + </step>
  1059 +
  1060 + <step>
  1061 + <name>&#x7ebf;&#x8def;&#x67e5;&#x8be2;</name>
  1062 + <type>DBLookup</type>
  1063 + <description/>
  1064 + <distribute>Y</distribute>
  1065 + <custom_distribution/>
  1066 + <copies>1</copies>
  1067 + <partitioning>
  1068 + <method>none</method>
  1069 + <schema_name/>
  1070 + </partitioning>
  1071 + <connection>control_jndi</connection>
  1072 + <cache>Y</cache>
  1073 + <cache_load_all>Y</cache_load_all>
  1074 + <cache_size>0</cache_size>
  1075 + <lookup>
  1076 + <schema/>
  1077 + <table>bsth_c_line</table>
  1078 + <orderby/>
  1079 + <fail_on_multiple>N</fail_on_multiple>
  1080 + <eat_row_on_failure>N</eat_row_on_failure>
  1081 + <key>
  1082 + <name>xl</name>
  1083 + <field>id</field>
  1084 + <condition>&#x3d;</condition>
  1085 + <name2/>
  1086 + </key>
  1087 + <value>
  1088 + <name>name</name>
  1089 + <rename>xlmc</rename>
  1090 + <default/>
  1091 + <type>String</type>
  1092 + </value>
  1093 + </lookup>
  1094 + <cluster_schema/>
  1095 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1096 + <xloc>248</xloc>
  1097 + <yloc>67</yloc>
  1098 + <draw>Y</draw>
  1099 + </GUI>
  1100 + </step>
  1101 +
  1102 + <step>
  1103 + <name>&#x8f66;&#x8f86;&#x67e5;&#x8be2;</name>
  1104 + <type>DBLookup</type>
  1105 + <description/>
  1106 + <distribute>Y</distribute>
  1107 + <custom_distribution/>
  1108 + <copies>1</copies>
  1109 + <partitioning>
  1110 + <method>none</method>
  1111 + <schema_name/>
  1112 + </partitioning>
  1113 + <connection>control_jndi</connection>
  1114 + <cache>N</cache>
  1115 + <cache_load_all>N</cache_load_all>
  1116 + <cache_size>0</cache_size>
  1117 + <lookup>
  1118 + <schema/>
  1119 + <table>bsth_c_cars</table>
  1120 + <orderby/>
  1121 + <fail_on_multiple>N</fail_on_multiple>
  1122 + <eat_row_on_failure>N</eat_row_on_failure>
  1123 + <key>
  1124 + <name>cl</name>
  1125 + <field>id</field>
  1126 + <condition>&#x3d;</condition>
  1127 + <name2/>
  1128 + </key>
  1129 + <value>
  1130 + <name>inside_code</name>
  1131 + <rename>zbh</rename>
  1132 + <default/>
  1133 + <type>String</type>
  1134 + </value>
  1135 + </lookup>
  1136 + <cluster_schema/>
  1137 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1138 + <xloc>361</xloc>
  1139 + <yloc>67</yloc>
  1140 + <draw>Y</draw>
  1141 + </GUI>
  1142 + </step>
  1143 +
  1144 + <step>
  1145 + <name>&#x8f66;&#x8f86;&#x914d;&#x7f6e;&#xff08;&#x6ca1;&#x6709;&#x4f5c;&#x5e9f;&#xff09;</name>
  1146 + <type>TableInput</type>
  1147 + <description/>
  1148 + <distribute>Y</distribute>
  1149 + <custom_distribution/>
  1150 + <copies>1</copies>
  1151 + <partitioning>
  1152 + <method>none</method>
  1153 + <schema_name/>
  1154 + </partitioning>
  1155 + <connection>control_jndi</connection>
  1156 + <sql>select &#x2a; from bsth_c_s_ccinfo where is_cancel &#x3d; 0 and xl &#x3d; &#x24;&#x7b;xlid&#x7d;</sql>
  1157 + <limit>0</limit>
  1158 + <lookup/>
  1159 + <execute_each_row>N</execute_each_row>
  1160 + <variables_active>Y</variables_active>
  1161 + <lazy_conversion_active>N</lazy_conversion_active>
  1162 + <cluster_schema/>
  1163 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1164 + <xloc>106</xloc>
  1165 + <yloc>68</yloc>
  1166 + <draw>Y</draw>
  1167 + </GUI>
  1168 + </step>
  1169 +
  1170 + <step_error_handling>
  1171 + </step_error_handling>
  1172 + <slave-step-copy-partition-distribution>
  1173 +</slave-step-copy-partition-distribution>
  1174 + <slave_transformation>N</slave_transformation>
  1175 +
  1176 +</transformation>
... ...
src/main/resources/datatools/ktrs/zh/vehicle-config-data_import.ktr 0 → 100644
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<transformation>
  3 + <info>
  4 + <name>&#x8f66;&#x8f86;&#x914d;&#x7f6e;&#x4fe1;&#x606f;&#x5bfc;&#x5165;_zh</name>
  5 + <description>&#x8f66;&#x8f86;&#x914d;&#x7f6e;&#x4fe1;&#x606f;&#x5bfc;&#x5165;</description>
  6 + <extended_description>&#x914d;&#x8f66;&#x4fe1;&#x606f;</extended_description>
  7 + <trans_version/>
  8 + <trans_type>Normal</trans_type>
  9 + <trans_status>0</trans_status>
  10 + <directory>&#x2f;</directory>
  11 + <parameters>
  12 + <parameter>
  13 + <name>erroroutputdir</name>
  14 + <default_value/>
  15 + <description>ktr step&#x914d;&#x7f6e;&#x7684;&#x9519;&#x8bef;&#x8f93;&#x51fa;&#x76ee;&#x5f55;</description>
  16 + </parameter>
  17 + <parameter>
  18 + <name>filepath</name>
  19 + <default_value/>
  20 + <description>&#x5f85;&#x5904;&#x7406;&#x5bfc;&#x5165;&#x7684;excel&#x6587;&#x4ef6;</description>
  21 + </parameter>
  22 + </parameters>
  23 + <log>
  24 +<trans-log-table><connection/>
  25 +<schema/>
  26 +<table/>
  27 +<size_limit_lines/>
  28 +<interval/>
  29 +<timeout_days/>
  30 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STATUS</id><enabled>Y</enabled><name>STATUS</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name><subject/></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name><subject/></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name><subject/></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name><subject/></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name><subject/></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name><subject/></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>STARTDATE</id><enabled>Y</enabled><name>STARTDATE</name></field><field><id>ENDDATE</id><enabled>Y</enabled><name>ENDDATE</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>DEPDATE</id><enabled>Y</enabled><name>DEPDATE</name></field><field><id>REPLAYDATE</id><enabled>Y</enabled><name>REPLAYDATE</name></field><field><id>LOG_FIELD</id><enabled>Y</enabled><name>LOG_FIELD</name></field><field><id>EXECUTING_SERVER</id><enabled>N</enabled><name>EXECUTING_SERVER</name></field><field><id>EXECUTING_USER</id><enabled>N</enabled><name>EXECUTING_USER</name></field><field><id>CLIENT</id><enabled>N</enabled><name>CLIENT</name></field></trans-log-table>
  31 +<perf-log-table><connection/>
  32 +<schema/>
  33 +<table/>
  34 +<interval/>
  35 +<timeout_days/>
  36 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>SEQ_NR</id><enabled>Y</enabled><name>SEQ_NR</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>INPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>INPUT_BUFFER_ROWS</name></field><field><id>OUTPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>OUTPUT_BUFFER_ROWS</name></field></perf-log-table>
  37 +<channel-log-table><connection/>
  38 +<schema/>
  39 +<table/>
  40 +<timeout_days/>
  41 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>LOGGING_OBJECT_TYPE</id><enabled>Y</enabled><name>LOGGING_OBJECT_TYPE</name></field><field><id>OBJECT_NAME</id><enabled>Y</enabled><name>OBJECT_NAME</name></field><field><id>OBJECT_COPY</id><enabled>Y</enabled><name>OBJECT_COPY</name></field><field><id>REPOSITORY_DIRECTORY</id><enabled>Y</enabled><name>REPOSITORY_DIRECTORY</name></field><field><id>FILENAME</id><enabled>Y</enabled><name>FILENAME</name></field><field><id>OBJECT_ID</id><enabled>Y</enabled><name>OBJECT_ID</name></field><field><id>OBJECT_REVISION</id><enabled>Y</enabled><name>OBJECT_REVISION</name></field><field><id>PARENT_CHANNEL_ID</id><enabled>Y</enabled><name>PARENT_CHANNEL_ID</name></field><field><id>ROOT_CHANNEL_ID</id><enabled>Y</enabled><name>ROOT_CHANNEL_ID</name></field></channel-log-table>
  42 +<step-log-table><connection/>
  43 +<schema/>
  44 +<table/>
  45 +<timeout_days/>
  46 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>LOG_FIELD</id><enabled>N</enabled><name>LOG_FIELD</name></field></step-log-table>
  47 +<metrics-log-table><connection/>
  48 +<schema/>
  49 +<table/>
  50 +<timeout_days/>
  51 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>METRICS_DATE</id><enabled>Y</enabled><name>METRICS_DATE</name></field><field><id>METRICS_CODE</id><enabled>Y</enabled><name>METRICS_CODE</name></field><field><id>METRICS_DESCRIPTION</id><enabled>Y</enabled><name>METRICS_DESCRIPTION</name></field><field><id>METRICS_SUBJECT</id><enabled>Y</enabled><name>METRICS_SUBJECT</name></field><field><id>METRICS_TYPE</id><enabled>Y</enabled><name>METRICS_TYPE</name></field><field><id>METRICS_VALUE</id><enabled>Y</enabled><name>METRICS_VALUE</name></field></metrics-log-table>
  52 + </log>
  53 + <maxdate>
  54 + <connection/>
  55 + <table/>
  56 + <field/>
  57 + <offset>0.0</offset>
  58 + <maxdiff>0.0</maxdiff>
  59 + </maxdate>
  60 + <size_rowset>10000</size_rowset>
  61 + <sleep_time_empty>50</sleep_time_empty>
  62 + <sleep_time_full>50</sleep_time_full>
  63 + <unique_connections>N</unique_connections>
  64 + <feedback_shown>Y</feedback_shown>
  65 + <feedback_size>50000</feedback_size>
  66 + <using_thread_priorities>Y</using_thread_priorities>
  67 + <shared_objects_file/>
  68 + <capture_step_performance>N</capture_step_performance>
  69 + <step_performance_capturing_delay>1000</step_performance_capturing_delay>
  70 + <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit>
  71 + <dependencies>
  72 + </dependencies>
  73 + <partitionschemas>
  74 + </partitionschemas>
  75 + <slaveservers>
  76 + </slaveservers>
  77 + <clusterschemas>
  78 + </clusterschemas>
  79 + <created_user>-</created_user>
  80 + <created_date>2016&#x2f;06&#x2f;29 13&#x3a;15&#x3a;32.118</created_date>
  81 + <modified_user>-</modified_user>
  82 + <modified_date>2016&#x2f;06&#x2f;29 13&#x3a;15&#x3a;32.118</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>&#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;&#xa;</note>
  89 + <xloc>40</xloc>
  90 + <yloc>238</yloc>
  91 + <width>333</width>
  92 + <heigth>106</heigth>
  93 + <fontname>YaHei Consolas Hybrid</fontname>
  94 + <fontsize>12</fontsize>
  95 + <fontbold>N</fontbold>
  96 + <fontitalic>N</fontitalic>
  97 + <fontcolorred>0</fontcolorred>
  98 + <fontcolorgreen>0</fontcolorgreen>
  99 + <fontcolorblue>0</fontcolorblue>
  100 + <backgroundcolorred>255</backgroundcolorred>
  101 + <backgroundcolorgreen>205</backgroundcolorgreen>
  102 + <backgroundcolorblue>112</backgroundcolorblue>
  103 + <bordercolorred>100</bordercolorred>
  104 + <bordercolorgreen>100</bordercolorgreen>
  105 + <bordercolorblue>100</bordercolorblue>
  106 + <drawshadow>Y</drawshadow>
  107 + </notepad>
  108 + </notepads>
  109 + <connection>
  110 + <name>192.168.168.1_jwgl_dw</name>
  111 + <server>192.168.168.1</server>
  112 + <type>ORACLE</type>
  113 + <access>Native</access>
  114 + <database>orcl</database>
  115 + <port>1521</port>
  116 + <username>jwgl_dw</username>
  117 + <password>Encrypted 2be98afc86aa7f2e4cb13b977d2adabcd</password>
  118 + <servername/>
  119 + <data_tablespace/>
  120 + <index_tablespace/>
  121 + <attributes>
  122 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  123 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  124 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  125 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  126 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  127 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  128 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  129 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  130 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  131 + </attributes>
  132 + </connection>
  133 + <connection>
  134 + <name>bus_control_variable</name>
  135 + <server>&#x24;&#x7b;v_db_ip&#x7d;</server>
  136 + <type>MYSQL</type>
  137 + <access>Native</access>
  138 + <database>&#x24;&#x7b;v_db_dname&#x7d;</database>
  139 + <port>3306</port>
  140 + <username>&#x24;&#x7b;v_db_uname&#x7d;</username>
  141 + <password>&#x24;&#x7b;v_db_pwd&#x7d;</password>
  142 + <servername/>
  143 + <data_tablespace/>
  144 + <index_tablespace/>
  145 + <attributes>
  146 + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
  147 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  148 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  149 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  150 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  151 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  152 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  153 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  154 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  155 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  156 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  157 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  158 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  159 + </attributes>
  160 + </connection>
  161 + <connection>
  162 + <name>bus_control_&#x516c;&#x53f8;_201</name>
  163 + <server>localhost</server>
  164 + <type>MYSQL</type>
  165 + <access>Native</access>
  166 + <database>control</database>
  167 + <port>3306</port>
  168 + <username>root</username>
  169 + <password>Encrypted </password>
  170 + <servername/>
  171 + <data_tablespace/>
  172 + <index_tablespace/>
  173 + <attributes>
  174 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  175 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  176 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  177 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  178 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  179 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  180 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  181 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  182 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  183 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  184 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  185 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  186 + </attributes>
  187 + </connection>
  188 + <connection>
  189 + <name>bus_control_&#x672c;&#x673a;</name>
  190 + <server>localhost</server>
  191 + <type>MYSQL</type>
  192 + <access>Native</access>
  193 + <database>control</database>
  194 + <port>3306</port>
  195 + <username>root</username>
  196 + <password>Encrypted </password>
  197 + <servername/>
  198 + <data_tablespace/>
  199 + <index_tablespace/>
  200 + <attributes>
  201 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  202 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  203 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  204 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  205 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  206 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  207 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  208 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  209 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  210 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  211 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  212 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  213 + </attributes>
  214 + </connection>
  215 + <connection>
  216 + <name>control_jndi</name>
  217 + <server/>
  218 + <type>MYSQL</type>
  219 + <access>JNDI</access>
  220 + <database>control_jndi</database>
  221 + <port>1521</port>
  222 + <username/>
  223 + <password>Encrypted </password>
  224 + <servername/>
  225 + <data_tablespace/>
  226 + <index_tablespace/>
  227 + <attributes>
  228 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  229 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  230 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  231 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  232 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  233 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  234 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  235 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  236 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  237 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  238 + </attributes>
  239 + </connection>
  240 + <connection>
  241 + <name>JGJW_VM</name>
  242 + <server>192.168.198.240</server>
  243 + <type>ORACLE</type>
  244 + <access>Native</access>
  245 + <database>orcl</database>
  246 + <port>1521</port>
  247 + <username>jwgl</username>
  248 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d485a8d6</password>
  249 + <servername/>
  250 + <data_tablespace/>
  251 + <index_tablespace/>
  252 + <attributes>
  253 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  254 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  255 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  256 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  257 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  258 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  259 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  260 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  261 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  262 + </attributes>
  263 + </connection>
  264 + <connection>
  265 + <name>NHJW_VM</name>
  266 + <server>192.168.198.240</server>
  267 + <type>ORACLE</type>
  268 + <access>Native</access>
  269 + <database>orcl</database>
  270 + <port>1521</port>
  271 + <username>nhjw</username>
  272 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d09aa5cd</password>
  273 + <servername/>
  274 + <data_tablespace/>
  275 + <index_tablespace/>
  276 + <attributes>
  277 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  278 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  279 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  280 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  281 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  282 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  283 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  284 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  285 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  286 + </attributes>
  287 + </connection>
  288 + <connection>
  289 + <name>PDGJ_VM</name>
  290 + <server>192.168.198.240</server>
  291 + <type>ORACLE</type>
  292 + <access>Native</access>
  293 + <database>orcl</database>
  294 + <port>1521</port>
  295 + <username>pdgj</username>
  296 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10ce96a8d0</password>
  297 + <servername/>
  298 + <data_tablespace/>
  299 + <index_tablespace/>
  300 + <attributes>
  301 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  302 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  303 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  304 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  305 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  306 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  307 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  308 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  309 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  310 + </attributes>
  311 + </connection>
  312 + <connection>
  313 + <name>repair_dw_mysql_jndi</name>
  314 + <server/>
  315 + <type>MYSQL</type>
  316 + <access>JNDI</access>
  317 + <database>repair_dw_mysql</database>
  318 + <port>1521</port>
  319 + <username/>
  320 + <password>Encrypted </password>
  321 + <servername/>
  322 + <data_tablespace/>
  323 + <index_tablespace/>
  324 + <attributes>
  325 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  326 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  327 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  328 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  329 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  330 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  331 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  332 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  333 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  334 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  335 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  336 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  337 + </attributes>
  338 + </connection>
  339 + <connection>
  340 + <name>repair_dw&#xff08;&#x672c;&#x673a;&#xff09;</name>
  341 + <server>localhost</server>
  342 + <type>MYSQL</type>
  343 + <access>Native</access>
  344 + <database>ruoyi-vue-3.5</database>
  345 + <port>3306</port>
  346 + <username>root</username>
  347 + <password>Encrypted </password>
  348 + <servername/>
  349 + <data_tablespace/>
  350 + <index_tablespace/>
  351 + <attributes>
  352 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  353 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  354 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  355 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  356 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  357 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  358 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  359 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  360 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  361 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  362 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  363 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  364 + </attributes>
  365 + </connection>
  366 + <connection>
  367 + <name>repair_real_h2</name>
  368 + <server/>
  369 + <type>H2</type>
  370 + <access>JNDI</access>
  371 + <database>repair_real_h2</database>
  372 + <port>1521</port>
  373 + <username/>
  374 + <password>Encrypted </password>
  375 + <servername/>
  376 + <data_tablespace/>
  377 + <index_tablespace/>
  378 + <attributes>
  379 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  380 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  381 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  382 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  383 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  384 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  385 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  386 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  387 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  388 + </attributes>
  389 + </connection>
  390 + <connection>
  391 + <name>SNJW_VM</name>
  392 + <server>192.168.198.240</server>
  393 + <type>ORACLE</type>
  394 + <access>Native</access>
  395 + <database>orcl</database>
  396 + <port>1521</port>
  397 + <username>snjw</username>
  398 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10cd9ca5cd</password>
  399 + <servername/>
  400 + <data_tablespace/>
  401 + <index_tablespace/>
  402 + <attributes>
  403 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  404 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  405 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  406 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  407 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  408 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  409 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  410 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  411 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  412 + </attributes>
  413 + </connection>
  414 + <connection>
  415 + <name>test_control_local</name>
  416 + <server>localhost</server>
  417 + <type>MYSQL</type>
  418 + <access>Native</access>
  419 + <database>test_control</database>
  420 + <port>3306</port>
  421 + <username>root</username>
  422 + <password>Encrypted </password>
  423 + <servername/>
  424 + <data_tablespace/>
  425 + <index_tablespace/>
  426 + <attributes>
  427 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  428 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  429 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  430 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  431 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  432 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  433 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  434 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  435 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  436 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  437 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  438 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  439 + </attributes>
  440 + </connection>
  441 + <connection>
  442 + <name>test_control&#xff08;&#x672c;&#x673a;&#xff09;</name>
  443 + <server>127.0.0.1</server>
  444 + <type>MYSQL</type>
  445 + <access>Native</access>
  446 + <database>test_control</database>
  447 + <port>3306</port>
  448 + <username>root</username>
  449 + <password>Encrypted </password>
  450 + <servername/>
  451 + <data_tablespace/>
  452 + <index_tablespace/>
  453 + <attributes>
  454 + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
  455 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  456 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  457 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  458 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  459 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  460 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  461 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  462 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  463 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  464 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  465 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  466 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  467 + </attributes>
  468 + </connection>
  469 + <connection>
  470 + <name>wzk_mysql_jndi</name>
  471 + <server/>
  472 + <type>MYSQL</type>
  473 + <access>JNDI</access>
  474 + <database>wzk_mysql</database>
  475 + <port>1521</port>
  476 + <username/>
  477 + <password>Encrypted </password>
  478 + <servername/>
  479 + <data_tablespace/>
  480 + <index_tablespace/>
  481 + <attributes>
  482 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  483 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  484 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  485 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  486 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  487 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  488 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  489 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  490 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  491 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  492 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  493 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  494 + </attributes>
  495 + </connection>
  496 + <connection>
  497 + <name>wzk&#xff08;&#x672c;&#x673a;&#xff09;</name>
  498 + <server>localhost</server>
  499 + <type>MYSQL</type>
  500 + <access>Native</access>
  501 + <database>pdgj_wzk_sys</database>
  502 + <port>3306</port>
  503 + <username>root</username>
  504 + <password>Encrypted </password>
  505 + <servername/>
  506 + <data_tablespace/>
  507 + <index_tablespace/>
  508 + <attributes>
  509 + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
  510 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  511 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  512 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  513 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  514 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  515 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  516 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  517 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  518 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  519 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  520 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  521 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  522 + </attributes>
  523 + </connection>
  524 + <connection>
  525 + <name>xlab_mysql_youle</name>
  526 + <server>101.231.124.8</server>
  527 + <type>MYSQL</type>
  528 + <access>Native</access>
  529 + <database>xlab_youle</database>
  530 + <port>45687</port>
  531 + <username>xlab-youle</username>
  532 + <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password>
  533 + <servername/>
  534 + <data_tablespace/>
  535 + <index_tablespace/>
  536 + <attributes>
  537 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  538 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  539 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  540 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  541 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  542 + <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute>
  543 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  544 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  545 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  546 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  547 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  548 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  549 + </attributes>
  550 + </connection>
  551 + <connection>
  552 + <name>xlab_mysql_youle&#xff08;&#x672c;&#x673a;&#xff09;</name>
  553 + <server>localhost</server>
  554 + <type>MYSQL</type>
  555 + <access>Native</access>
  556 + <database>xlab_youle</database>
  557 + <port>3306</port>
  558 + <username>root</username>
  559 + <password>Encrypted </password>
  560 + <servername/>
  561 + <data_tablespace/>
  562 + <index_tablespace/>
  563 + <attributes>
  564 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  565 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  566 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  567 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  568 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  569 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  570 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  571 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  572 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  573 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  574 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  575 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  576 + </attributes>
  577 + </connection>
  578 + <connection>
  579 + <name>xlab_youle</name>
  580 + <server/>
  581 + <type>MYSQL</type>
  582 + <access>JNDI</access>
  583 + <database>xlab_youle</database>
  584 + <port>1521</port>
  585 + <username/>
  586 + <password>Encrypted </password>
  587 + <servername/>
  588 + <data_tablespace/>
  589 + <index_tablespace/>
  590 + <attributes>
  591 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  592 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  593 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  594 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  595 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  596 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  597 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  598 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  599 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  600 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  601 + </attributes>
  602 + </connection>
  603 + <connection>
  604 + <name>YGJW_VM</name>
  605 + <server>192.168.198.240</server>
  606 + <type>ORACLE</type>
  607 + <access>Native</access>
  608 + <database>orcl</database>
  609 + <port>1521</port>
  610 + <username>ygjw</username>
  611 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10c795a5cd</password>
  612 + <servername/>
  613 + <data_tablespace/>
  614 + <index_tablespace/>
  615 + <attributes>
  616 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  617 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  618 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  619 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  620 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  621 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  622 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  623 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  624 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  625 + </attributes>
  626 + </connection>
  627 + <connection>
  628 + <name>&#x516c;&#x53f8;jgjw</name>
  629 + <server>192.168.168.1</server>
  630 + <type>ORACLE</type>
  631 + <access>Native</access>
  632 + <database>orcl</database>
  633 + <port>1521</port>
  634 + <username>jwgl</username>
  635 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d485a8d6</password>
  636 + <servername/>
  637 + <data_tablespace/>
  638 + <index_tablespace/>
  639 + <attributes>
  640 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  641 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  642 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  643 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  644 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  645 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  646 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  647 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  648 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  649 + </attributes>
  650 + </connection>
  651 + <connection>
  652 + <name>&#x516c;&#x53f8;snjw</name>
  653 + <server>192.168.168.1</server>
  654 + <type>ORACLE</type>
  655 + <access>Native</access>
  656 + <database>orcl</database>
  657 + <port>1521</port>
  658 + <username>snjw</username>
  659 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10cd9ca5cd</password>
  660 + <servername/>
  661 + <data_tablespace/>
  662 + <index_tablespace/>
  663 + <attributes>
  664 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  665 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  666 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  667 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  668 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  669 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  670 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  671 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  672 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  673 + </attributes>
  674 + </connection>
  675 + <connection>
  676 + <name>&#x516c;&#x53f8;ygjw</name>
  677 + <server>192.168.168.178</server>
  678 + <type>ORACLE</type>
  679 + <access>Native</access>
  680 + <database>orcl</database>
  681 + <port>1521</port>
  682 + <username>ygjw</username>
  683 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10c795a5cd</password>
  684 + <servername/>
  685 + <data_tablespace/>
  686 + <index_tablespace/>
  687 + <attributes>
  688 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  689 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  690 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  691 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  692 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  693 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  694 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  695 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  696 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  697 + </attributes>
  698 + </connection>
  699 + <connection>
  700 + <name>&#x516c;&#x53f8;&#x673a;&#x52a1;_pdgj</name>
  701 + <server>192.168.168.178</server>
  702 + <type>ORACLE</type>
  703 + <access>Native</access>
  704 + <database>orcl</database>
  705 + <port>1521</port>
  706 + <username>pdgj</username>
  707 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10ce96a8d0</password>
  708 + <servername/>
  709 + <data_tablespace/>
  710 + <index_tablespace/>
  711 + <attributes>
  712 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  713 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  714 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  715 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  716 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  717 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  718 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  719 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  720 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  721 + </attributes>
  722 + </connection>
  723 + <connection>
  724 + <name>&#x5916;&#x7f51;vpn&#x4e34;&#x6e2f;&#x673a;&#x52a1;oracle</name>
  725 + <server>10.10.150.114</server>
  726 + <type>ORACLE</type>
  727 + <access>Native</access>
  728 + <database>helowin</database>
  729 + <port>1521</port>
  730 + <username>lgjw</username>
  731 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d295a5cd</password>
  732 + <servername/>
  733 + <data_tablespace/>
  734 + <index_tablespace/>
  735 + <attributes>
  736 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  737 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  738 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  739 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  740 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  741 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  742 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  743 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  744 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  745 + </attributes>
  746 + </connection>
  747 + <connection>
  748 + <name>&#x5916;&#x7f51;&#x5357;&#x6c47;&#x673a;&#x52a1;oracle</name>
  749 + <server>58.247.254.118</server>
  750 + <type>ORACLE</type>
  751 + <access>Native</access>
  752 + <database>orcl</database>
  753 + <port>15211</port>
  754 + <username>nhjw</username>
  755 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d09aa5cd</password>
  756 + <servername/>
  757 + <data_tablespace/>
  758 + <index_tablespace/>
  759 + <attributes>
  760 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  761 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  762 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  763 + <attribute><code>PORT_NUMBER</code><attribute>15211</attribute></attribute>
  764 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  765 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  766 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  767 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  768 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  769 + </attributes>
  770 + </connection>
  771 + <connection>
  772 + <name>&#x5916;&#x7f51;&#x6768;&#x9ad8;&#x673a;&#x52a1;oracle</name>
  773 + <server>58.247.254.118</server>
  774 + <type>ORACLE</type>
  775 + <access>Native</access>
  776 + <database>orcl</database>
  777 + <port>15211</port>
  778 + <username>ygjw</username>
  779 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10c795a5cd</password>
  780 + <servername/>
  781 + <data_tablespace/>
  782 + <index_tablespace/>
  783 + <attributes>
  784 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  785 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  786 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  787 + <attribute><code>PORT_NUMBER</code><attribute>15211</attribute></attribute>
  788 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  789 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  790 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  791 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  792 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  793 + </attributes>
  794 + </connection>
  795 + <connection>
  796 + <name>&#x5916;&#x7f51;&#x91d1;&#x9ad8;&#x673a;&#x52a1;oracle</name>
  797 + <server>58.247.254.118</server>
  798 + <type>ORACLE</type>
  799 + <access>Native</access>
  800 + <database>orcl</database>
  801 + <port>15211</port>
  802 + <username>jwgl</username>
  803 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d485a8d6</password>
  804 + <servername/>
  805 + <data_tablespace/>
  806 + <index_tablespace/>
  807 + <attributes>
  808 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  809 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  810 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  811 + <attribute><code>PORT_NUMBER</code><attribute>15211</attribute></attribute>
  812 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  813 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  814 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  815 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  816 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  817 + </attributes>
  818 + </connection>
  819 + <order>
  820 + <hop> <from>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ccinfo</from><to>&#x9519;&#x8bef;&#x8f93;&#x51fa;</to><enabled>Y</enabled> </hop>
  821 + <hop> <from>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</from><to>&#x539f;&#x59cb;&#x7cfb;&#x7edf;&#x5bfc;&#x51fa;&#x7684;Excel&#x8f93;&#x5165;</to><enabled>Y</enabled> </hop>
  822 + <hop> <from>&#x539f;&#x59cb;&#x7cfb;&#x7edf;&#x5bfc;&#x51fa;&#x7684;Excel&#x8f93;&#x5165;</from><to>&#x542f;&#x7528;&#x88ab;&#x6570;&#x636e;flag</to><enabled>Y</enabled> </hop>
  823 + <hop> <from>&#x542f;&#x7528;&#x88ab;&#x6570;&#x636e;flag</from><to>&#x7ebf;&#x8def;id&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>
  824 + <hop> <from>&#x7ebf;&#x8def;id&#x67e5;&#x8be2;</from><to>&#x8fc7;&#x6ee4;&#x7ebf;&#x8def;id&#x4e3a;&#x7a7a;&#x8bb0;&#x5f55;</to><enabled>Y</enabled> </hop>
  825 + <hop> <from>&#x8fc7;&#x6ee4;&#x7ebf;&#x8def;id&#x4e3a;&#x7a7a;&#x8bb0;&#x5f55;</from><to>&#x8f66;&#x8f86;id&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>
  826 + <hop> <from>&#x8f66;&#x8f86;id&#x67e5;&#x8be2;</from><to>&#x8fc7;&#x6ee4;&#x8f66;&#x8f86;id&#x4e3a;&#x7a7a;&#x8bb0;&#x5f55;</to><enabled>Y</enabled> </hop>
  827 + <hop> <from>&#x8fc7;&#x6ee4;&#x8f66;&#x8f86;id&#x4e3a;&#x7a7a;&#x8bb0;&#x5f55;</from><to>&#x65e5;&#x671f;&#x8f6c;&#x6362;</to><enabled>Y</enabled> </hop>
  828 + <hop> <from>&#x65e5;&#x671f;&#x8f6c;&#x6362;</from><to>&#x662f;&#x5426;&#x5207;&#x6362;</to><enabled>Y</enabled> </hop>
  829 + <hop> <from>&#x662f;&#x5426;&#x5207;&#x6362;</from><to>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ccinfo</to><enabled>Y</enabled> </hop>
  830 + </order>
  831 + <step>
  832 + <name>&#x539f;&#x59cb;&#x7cfb;&#x7edf;&#x5bfc;&#x51fa;&#x7684;Excel&#x8f93;&#x5165;</name>
  833 + <type>ExcelInput</type>
  834 + <description/>
  835 + <distribute>Y</distribute>
  836 + <custom_distribution/>
  837 + <copies>1</copies>
  838 + <partitioning>
  839 + <method>none</method>
  840 + <schema_name/>
  841 + </partitioning>
  842 + <header>Y</header>
  843 + <noempty>Y</noempty>
  844 + <stoponempty>N</stoponempty>
  845 + <filefield/>
  846 + <sheetfield/>
  847 + <sheetrownumfield/>
  848 + <rownumfield/>
  849 + <sheetfield/>
  850 + <filefield/>
  851 + <limit>0</limit>
  852 + <encoding/>
  853 + <add_to_result_filenames>Y</add_to_result_filenames>
  854 + <accept_filenames>Y</accept_filenames>
  855 + <accept_field>filepath_</accept_field>
  856 + <accept_stepname>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</accept_stepname>
  857 + <file>
  858 + <name/>
  859 + <filemask/>
  860 + <exclude_filemask/>
  861 + <file_required>N</file_required>
  862 + <include_subfolders>N</include_subfolders>
  863 + </file>
  864 + <fields>
  865 + <field>
  866 + <name>&#x7ebf;&#x8def;</name>
  867 + <type>String</type>
  868 + <length>-1</length>
  869 + <precision>-1</precision>
  870 + <trim_type>none</trim_type>
  871 + <repeat>N</repeat>
  872 + <format/>
  873 + <currency/>
  874 + <decimal/>
  875 + <group/>
  876 + </field>
  877 + <field>
  878 + <name>&#x5185;&#x90e8;&#x7f16;&#x7801;</name>
  879 + <type>String</type>
  880 + <length>-1</length>
  881 + <precision>-1</precision>
  882 + <trim_type>none</trim_type>
  883 + <repeat>N</repeat>
  884 + <format>&#x23;</format>
  885 + <currency/>
  886 + <decimal/>
  887 + <group/>
  888 + </field>
  889 + <field>
  890 + <name>&#x542f;&#x7528;&#x65e5;&#x671f;</name>
  891 + <type>String</type>
  892 + <length>-1</length>
  893 + <precision>-1</precision>
  894 + <trim_type>none</trim_type>
  895 + <repeat>N</repeat>
  896 + <format/>
  897 + <currency/>
  898 + <decimal/>
  899 + <group/>
  900 + </field>
  901 + <field>
  902 + <name>&#x7ec8;&#x7ed3;&#x65e5;&#x671f;</name>
  903 + <type>String</type>
  904 + <length>-1</length>
  905 + <precision>-1</precision>
  906 + <trim_type>none</trim_type>
  907 + <repeat>N</repeat>
  908 + <format/>
  909 + <currency/>
  910 + <decimal/>
  911 + <group/>
  912 + </field>
  913 + <field>
  914 + <name>&#x505c;&#x8f66;&#x70b9;</name>
  915 + <type>String</type>
  916 + <length>-1</length>
  917 + <precision>-1</precision>
  918 + <trim_type>none</trim_type>
  919 + <repeat>N</repeat>
  920 + <format/>
  921 + <currency/>
  922 + <decimal/>
  923 + <group/>
  924 + </field>
  925 + </fields>
  926 + <sheets>
  927 + <sheet>
  928 + <name>&#x5de5;&#x4f5c;&#x8868;1</name>
  929 + <startrow>0</startrow>
  930 + <startcol>0</startcol>
  931 + </sheet>
  932 + </sheets>
  933 + <strict_types>N</strict_types>
  934 + <error_ignored>N</error_ignored>
  935 + <error_line_skipped>N</error_line_skipped>
  936 + <bad_line_files_destination_directory/>
  937 + <bad_line_files_extension>warning</bad_line_files_extension>
  938 + <error_line_files_destination_directory/>
  939 + <error_line_files_extension>error</error_line_files_extension>
  940 + <line_number_files_destination_directory/>
  941 + <line_number_files_extension>line</line_number_files_extension>
  942 + <shortFileFieldName/>
  943 + <pathFieldName/>
  944 + <hiddenFieldName/>
  945 + <lastModificationTimeFieldName/>
  946 + <uriNameFieldName/>
  947 + <rootUriNameFieldName/>
  948 + <extensionFieldName/>
  949 + <sizeFieldName/>
  950 + <spreadsheet_type>JXL</spreadsheet_type>
  951 + <cluster_schema/>
  952 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  953 + <xloc>155</xloc>
  954 + <yloc>56</yloc>
  955 + <draw>Y</draw>
  956 + </GUI>
  957 + </step>
  958 +
  959 + <step>
  960 + <name>&#x542f;&#x7528;&#x88ab;&#x6570;&#x636e;flag</name>
  961 + <type>Constant</type>
  962 + <description/>
  963 + <distribute>Y</distribute>
  964 + <custom_distribution/>
  965 + <copies>1</copies>
  966 + <partitioning>
  967 + <method>none</method>
  968 + <schema_name/>
  969 + </partitioning>
  970 + <fields>
  971 + <field>
  972 + <name>isCancel</name>
  973 + <type>Integer</type>
  974 + <format/>
  975 + <currency/>
  976 + <decimal/>
  977 + <group/>
  978 + <nullif>0</nullif>
  979 + <length>-1</length>
  980 + <precision>-1</precision>
  981 + <set_empty_string>N</set_empty_string>
  982 + </field>
  983 + </fields>
  984 + <cluster_schema/>
  985 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  986 + <xloc>315</xloc>
  987 + <yloc>57</yloc>
  988 + <draw>Y</draw>
  989 + </GUI>
  990 + </step>
  991 +
  992 + <step>
  993 + <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ccinfo</name>
  994 + <type>InsertUpdate</type>
  995 + <description/>
  996 + <distribute>Y</distribute>
  997 + <custom_distribution/>
  998 + <copies>1</copies>
  999 + <partitioning>
  1000 + <method>none</method>
  1001 + <schema_name/>
  1002 + </partitioning>
  1003 + <connection>control_jndi</connection>
  1004 + <commit>100</commit>
  1005 + <update_bypassed>N</update_bypassed>
  1006 + <lookup>
  1007 + <schema/>
  1008 + <table>bsth_c_s_ccinfo</table>
  1009 + <key>
  1010 + <name>xlid</name>
  1011 + <field>xl</field>
  1012 + <condition>&#x3d;</condition>
  1013 + <name2/>
  1014 + </key>
  1015 + <key>
  1016 + <name>clid</name>
  1017 + <field>cl</field>
  1018 + <condition>&#x3d;</condition>
  1019 + <name2/>
  1020 + </key>
  1021 + <key>
  1022 + <name>isCancel</name>
  1023 + <field>is_cancel</field>
  1024 + <condition>&#x3d;</condition>
  1025 + <name2/>
  1026 + </key>
  1027 + <value>
  1028 + <name>xl</name>
  1029 + <rename>xlId</rename>
  1030 + <update>N</update>
  1031 + </value>
  1032 + <value>
  1033 + <name>cl</name>
  1034 + <rename>clId</rename>
  1035 + <update>N</update>
  1036 + </value>
  1037 + <value>
  1038 + <name>is_switch</name>
  1039 + <rename>isswitch</rename>
  1040 + <update>N</update>
  1041 + </value>
  1042 + <value>
  1043 + <name>tcd</name>
  1044 + <rename>&#x505c;&#x8f66;&#x70b9;</rename>
  1045 + <update>N</update>
  1046 + </value>
  1047 + <value>
  1048 + <name>zzrq</name>
  1049 + <rename>&#x7ec8;&#x7ed3;&#x65e5;&#x671f;</rename>
  1050 + <update>N</update>
  1051 + </value>
  1052 + <value>
  1053 + <name>qyrq</name>
  1054 + <rename>&#x542f;&#x7528;&#x65e5;&#x671f;</rename>
  1055 + <update>N</update>
  1056 + </value>
  1057 + <value>
  1058 + <name>is_cancel</name>
  1059 + <rename>isCancel</rename>
  1060 + <update>N</update>
  1061 + </value>
  1062 + </lookup>
  1063 + <cluster_schema/>
  1064 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1065 + <xloc>804</xloc>
  1066 + <yloc>236</yloc>
  1067 + <draw>Y</draw>
  1068 + </GUI>
  1069 + </step>
  1070 +
  1071 + <step>
  1072 + <name>&#x65e5;&#x671f;&#x8f6c;&#x6362;</name>
  1073 + <type>SelectValues</type>
  1074 + <description/>
  1075 + <distribute>Y</distribute>
  1076 + <custom_distribution/>
  1077 + <copies>1</copies>
  1078 + <partitioning>
  1079 + <method>none</method>
  1080 + <schema_name/>
  1081 + </partitioning>
  1082 + <fields> <select_unspecified>N</select_unspecified>
  1083 + <meta> <name>&#x542f;&#x7528;&#x65e5;&#x671f;</name>
  1084 + <rename>&#x542f;&#x7528;&#x65e5;&#x671f;</rename>
  1085 + <type>Timestamp</type>
  1086 + <length>-2</length>
  1087 + <precision>-2</precision>
  1088 + <conversion_mask>yyyy-MM-dd</conversion_mask>
  1089 + <date_format_lenient>false</date_format_lenient>
  1090 + <date_format_locale/>
  1091 + <date_format_timezone/>
  1092 + <lenient_string_to_number>false</lenient_string_to_number>
  1093 + <encoding/>
  1094 + <decimal_symbol/>
  1095 + <grouping_symbol/>
  1096 + <currency_symbol/>
  1097 + <storage_type/>
  1098 + </meta> <meta> <name>&#x7ec8;&#x7ed3;&#x65e5;&#x671f;</name>
  1099 + <rename>&#x7ec8;&#x7ed3;&#x65e5;&#x671f;</rename>
  1100 + <type>Timestamp</type>
  1101 + <length>-2</length>
  1102 + <precision>-2</precision>
  1103 + <conversion_mask>yyyy-MM-dd</conversion_mask>
  1104 + <date_format_lenient>false</date_format_lenient>
  1105 + <date_format_locale/>
  1106 + <date_format_timezone/>
  1107 + <lenient_string_to_number>false</lenient_string_to_number>
  1108 + <encoding/>
  1109 + <decimal_symbol/>
  1110 + <grouping_symbol/>
  1111 + <currency_symbol/>
  1112 + <storage_type/>
  1113 + </meta> </fields> <cluster_schema/>
  1114 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1115 + <xloc>703</xloc>
  1116 + <yloc>136</yloc>
  1117 + <draw>Y</draw>
  1118 + </GUI>
  1119 + </step>
  1120 +
  1121 + <step>
  1122 + <name>&#x662f;&#x5426;&#x5207;&#x6362;</name>
  1123 + <type>Constant</type>
  1124 + <description/>
  1125 + <distribute>Y</distribute>
  1126 + <custom_distribution/>
  1127 + <copies>1</copies>
  1128 + <partitioning>
  1129 + <method>none</method>
  1130 + <schema_name/>
  1131 + </partitioning>
  1132 + <fields>
  1133 + <field>
  1134 + <name>isswitch</name>
  1135 + <type>Integer</type>
  1136 + <format/>
  1137 + <currency/>
  1138 + <decimal/>
  1139 + <group/>
  1140 + <nullif>0</nullif>
  1141 + <length>-1</length>
  1142 + <precision>-1</precision>
  1143 + <set_empty_string>N</set_empty_string>
  1144 + </field>
  1145 + </fields>
  1146 + <cluster_schema/>
  1147 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1148 + <xloc>803</xloc>
  1149 + <yloc>137</yloc>
  1150 + <draw>Y</draw>
  1151 + </GUI>
  1152 + </step>
  1153 +
  1154 + <step>
  1155 + <name>&#x7ebf;&#x8def;id&#x67e5;&#x8be2;</name>
  1156 + <type>DBLookup</type>
  1157 + <description/>
  1158 + <distribute>Y</distribute>
  1159 + <custom_distribution/>
  1160 + <copies>1</copies>
  1161 + <partitioning>
  1162 + <method>none</method>
  1163 + <schema_name/>
  1164 + </partitioning>
  1165 + <connection>control_jndi</connection>
  1166 + <cache>Y</cache>
  1167 + <cache_load_all>Y</cache_load_all>
  1168 + <cache_size>0</cache_size>
  1169 + <lookup>
  1170 + <schema/>
  1171 + <table>bsth_c_line</table>
  1172 + <orderby/>
  1173 + <fail_on_multiple>N</fail_on_multiple>
  1174 + <eat_row_on_failure>N</eat_row_on_failure>
  1175 + <key>
  1176 + <name>&#x7ebf;&#x8def;</name>
  1177 + <field>name</field>
  1178 + <condition>&#x3d;</condition>
  1179 + <name2/>
  1180 + </key>
  1181 + <key>
  1182 + <name>isCancel</name>
  1183 + <field>destroy</field>
  1184 + <condition>&#x3d;</condition>
  1185 + <name2/>
  1186 + </key>
  1187 + <value>
  1188 + <name>id</name>
  1189 + <rename>xlid</rename>
  1190 + <default/>
  1191 + <type>Integer</type>
  1192 + </value>
  1193 + </lookup>
  1194 + <cluster_schema/>
  1195 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1196 + <xloc>438</xloc>
  1197 + <yloc>57</yloc>
  1198 + <draw>Y</draw>
  1199 + </GUI>
  1200 + </step>
  1201 +
  1202 + <step>
  1203 + <name>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</name>
  1204 + <type>GetVariable</type>
  1205 + <description/>
  1206 + <distribute>Y</distribute>
  1207 + <custom_distribution/>
  1208 + <copies>1</copies>
  1209 + <partitioning>
  1210 + <method>none</method>
  1211 + <schema_name/>
  1212 + </partitioning>
  1213 + <fields>
  1214 + <field>
  1215 + <name>filepath_</name>
  1216 + <variable>&#x24;&#x7b;filepath&#x7d;</variable>
  1217 + <type>String</type>
  1218 + <format/>
  1219 + <currency/>
  1220 + <decimal/>
  1221 + <group/>
  1222 + <length>-1</length>
  1223 + <precision>-1</precision>
  1224 + <trim_type>none</trim_type>
  1225 + </field>
  1226 + <field>
  1227 + <name>erroroutputdir_</name>
  1228 + <variable>&#x24;&#x7b;erroroutputdir&#x7d;</variable>
  1229 + <type>String</type>
  1230 + <format/>
  1231 + <currency/>
  1232 + <decimal/>
  1233 + <group/>
  1234 + <length>-1</length>
  1235 + <precision>-1</precision>
  1236 + <trim_type>none</trim_type>
  1237 + </field>
  1238 + </fields>
  1239 + <cluster_schema/>
  1240 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1241 + <xloc>156</xloc>
  1242 + <yloc>150</yloc>
  1243 + <draw>Y</draw>
  1244 + </GUI>
  1245 + </step>
  1246 +
  1247 + <step>
  1248 + <name>&#x8f66;&#x8f86;id&#x67e5;&#x8be2;</name>
  1249 + <type>DBLookup</type>
  1250 + <description/>
  1251 + <distribute>Y</distribute>
  1252 + <custom_distribution/>
  1253 + <copies>1</copies>
  1254 + <partitioning>
  1255 + <method>none</method>
  1256 + <schema_name/>
  1257 + </partitioning>
  1258 + <connection>control_jndi</connection>
  1259 + <cache>Y</cache>
  1260 + <cache_load_all>Y</cache_load_all>
  1261 + <cache_size>0</cache_size>
  1262 + <lookup>
  1263 + <schema/>
  1264 + <table>bsth_c_cars</table>
  1265 + <orderby/>
  1266 + <fail_on_multiple>N</fail_on_multiple>
  1267 + <eat_row_on_failure>N</eat_row_on_failure>
  1268 + <key>
  1269 + <name>&#x5185;&#x90e8;&#x7f16;&#x7801;</name>
  1270 + <field>inside_code</field>
  1271 + <condition>&#x3d;</condition>
  1272 + <name2/>
  1273 + </key>
  1274 + <value>
  1275 + <name>id</name>
  1276 + <rename>clid</rename>
  1277 + <default/>
  1278 + <type>Integer</type>
  1279 + </value>
  1280 + </lookup>
  1281 + <cluster_schema/>
  1282 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1283 + <xloc>440</xloc>
  1284 + <yloc>138</yloc>
  1285 + <draw>Y</draw>
  1286 + </GUI>
  1287 + </step>
  1288 +
  1289 + <step>
  1290 + <name>&#x8fc7;&#x6ee4;&#x7ebf;&#x8def;id&#x4e3a;&#x7a7a;&#x8bb0;&#x5f55;</name>
  1291 + <type>FilterRows</type>
  1292 + <description/>
  1293 + <distribute>Y</distribute>
  1294 + <custom_distribution/>
  1295 + <copies>1</copies>
  1296 + <partitioning>
  1297 + <method>none</method>
  1298 + <schema_name/>
  1299 + </partitioning>
  1300 +<send_true_to>&#x8f66;&#x8f86;id&#x67e5;&#x8be2;</send_true_to>
  1301 +<send_false_to/>
  1302 + <compare>
  1303 +<condition>
  1304 + <negated>N</negated>
  1305 + <leftvalue>xlid</leftvalue>
  1306 + <function>IS NOT NULL</function>
  1307 + <rightvalue/>
  1308 + </condition>
  1309 + </compare>
  1310 + <cluster_schema/>
  1311 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1312 + <xloc>563</xloc>
  1313 + <yloc>57</yloc>
  1314 + <draw>Y</draw>
  1315 + </GUI>
  1316 + </step>
  1317 +
  1318 + <step>
  1319 + <name>&#x8fc7;&#x6ee4;&#x8f66;&#x8f86;id&#x4e3a;&#x7a7a;&#x8bb0;&#x5f55;</name>
  1320 + <type>FilterRows</type>
  1321 + <description/>
  1322 + <distribute>Y</distribute>
  1323 + <custom_distribution/>
  1324 + <copies>1</copies>
  1325 + <partitioning>
  1326 + <method>none</method>
  1327 + <schema_name/>
  1328 + </partitioning>
  1329 +<send_true_to>&#x65e5;&#x671f;&#x8f6c;&#x6362;</send_true_to>
  1330 +<send_false_to/>
  1331 + <compare>
  1332 +<condition>
  1333 + <negated>N</negated>
  1334 + <leftvalue>clid</leftvalue>
  1335 + <function>IS NOT NULL</function>
  1336 + <rightvalue/>
  1337 + </condition>
  1338 + </compare>
  1339 + <cluster_schema/>
  1340 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1341 + <xloc>566</xloc>
  1342 + <yloc>137</yloc>
  1343 + <draw>Y</draw>
  1344 + </GUI>
  1345 + </step>
  1346 +
  1347 + <step>
  1348 + <name>&#x9519;&#x8bef;&#x8f93;&#x51fa;</name>
  1349 + <type>ExcelOutput</type>
  1350 + <description/>
  1351 + <distribute>Y</distribute>
  1352 + <custom_distribution/>
  1353 + <copies>1</copies>
  1354 + <partitioning>
  1355 + <method>none</method>
  1356 + <schema_name/>
  1357 + </partitioning>
  1358 + <header>Y</header>
  1359 + <footer>N</footer>
  1360 + <encoding>UTF-8</encoding>
  1361 + <append>N</append>
  1362 + <add_to_result_filenames>Y</add_to_result_filenames>
  1363 + <file>
  1364 + <name>&#x24;&#x7b;erroroutputdir&#x7d;&#x2f;&#x5f53;&#x524d;&#x914d;&#x8f66;_&#x9519;&#x8bef;</name>
  1365 + <extention>xls</extention>
  1366 + <do_not_open_newfile_init>N</do_not_open_newfile_init>
  1367 + <create_parent_folder>N</create_parent_folder>
  1368 + <split>N</split>
  1369 + <add_date>N</add_date>
  1370 + <add_time>N</add_time>
  1371 + <SpecifyFormat>N</SpecifyFormat>
  1372 + <date_time_format/>
  1373 + <sheetname>Sheet1</sheetname>
  1374 + <autosizecolums>N</autosizecolums>
  1375 + <nullisblank>N</nullisblank>
  1376 + <protect_sheet>N</protect_sheet>
  1377 + <password>Encrypted </password>
  1378 + <splitevery>0</splitevery>
  1379 + <usetempfiles>N</usetempfiles>
  1380 + <tempdirectory/>
  1381 + </file>
  1382 + <template>
  1383 + <enabled>N</enabled>
  1384 + <append>N</append>
  1385 + <filename>template.xls</filename>
  1386 + </template>
  1387 + <fields>
  1388 + <field>
  1389 + <name>&#x7ebf;&#x8def;</name>
  1390 + <type>String</type>
  1391 + <format/>
  1392 + </field>
  1393 + <field>
  1394 + <name>&#x5185;&#x90e8;&#x7f16;&#x7801;</name>
  1395 + <type>String</type>
  1396 + <format/>
  1397 + </field>
  1398 + <field>
  1399 + <name>&#x542f;&#x7528;&#x65e5;&#x671f;</name>
  1400 + <type>Timestamp</type>
  1401 + <format/>
  1402 + </field>
  1403 + <field>
  1404 + <name>&#x7ec8;&#x7ed3;&#x65e5;&#x671f;</name>
  1405 + <type>Timestamp</type>
  1406 + <format/>
  1407 + </field>
  1408 + <field>
  1409 + <name>&#x505c;&#x8f66;&#x70b9;</name>
  1410 + <type>String</type>
  1411 + <format/>
  1412 + </field>
  1413 + <field>
  1414 + <name>isCancel</name>
  1415 + <type>Integer</type>
  1416 + <format/>
  1417 + </field>
  1418 + <field>
  1419 + <name>xlid</name>
  1420 + <type>Integer</type>
  1421 + <format/>
  1422 + </field>
  1423 + <field>
  1424 + <name>clid</name>
  1425 + <type>Integer</type>
  1426 + <format/>
  1427 + </field>
  1428 + <field>
  1429 + <name>isswitch</name>
  1430 + <type>Integer</type>
  1431 + <format/>
  1432 + </field>
  1433 + <field>
  1434 + <name>error_count</name>
  1435 + <type>Integer</type>
  1436 + <format/>
  1437 + </field>
  1438 + <field>
  1439 + <name>error_desc</name>
  1440 + <type>String</type>
  1441 + <format/>
  1442 + </field>
  1443 + <field>
  1444 + <name>error_column1</name>
  1445 + <type>String</type>
  1446 + <format/>
  1447 + </field>
  1448 + <field>
  1449 + <name>error_column2</name>
  1450 + <type>String</type>
  1451 + <format/>
  1452 + </field>
  1453 + </fields>
  1454 + <custom>
  1455 + <header_font_name>arial</header_font_name>
  1456 + <header_font_size>10</header_font_size>
  1457 + <header_font_bold>N</header_font_bold>
  1458 + <header_font_italic>N</header_font_italic>
  1459 + <header_font_underline>no</header_font_underline>
  1460 + <header_font_orientation>horizontal</header_font_orientation>
  1461 + <header_font_color>black</header_font_color>
  1462 + <header_background_color>none</header_background_color>
  1463 + <header_row_height>255</header_row_height>
  1464 + <header_alignment>left</header_alignment>
  1465 + <header_image/>
  1466 + <row_font_name>arial</row_font_name>
  1467 + <row_font_size>10</row_font_size>
  1468 + <row_font_color>black</row_font_color>
  1469 + <row_background_color>none</row_background_color>
  1470 + </custom>
  1471 + <cluster_schema/>
  1472 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1473 + <xloc>807</xloc>
  1474 + <yloc>353</yloc>
  1475 + <draw>Y</draw>
  1476 + </GUI>
  1477 + </step>
  1478 +
  1479 + <step_error_handling>
  1480 + <error>
  1481 + <source_step>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ccinfo</source_step>
  1482 + <target_step>&#x9519;&#x8bef;&#x8f93;&#x51fa;</target_step>
  1483 + <is_enabled>Y</is_enabled>
  1484 + <nr_valuename>error_count</nr_valuename>
  1485 + <descriptions_valuename>error_desc</descriptions_valuename>
  1486 + <fields_valuename>error_column1</fields_valuename>
  1487 + <codes_valuename>error_column2</codes_valuename>
  1488 + <max_errors/>
  1489 + <max_pct_errors/>
  1490 + <min_pct_rows/>
  1491 + </error>
  1492 + </step_error_handling>
  1493 + <slave-step-copy-partition-distribution>
  1494 +</slave-step-copy-partition-distribution>
  1495 + <slave_transformation>N</slave_transformation>
  1496 +
  1497 +</transformation>
... ...
src/main/resources/message_en_US.properties
... ... @@ -4550,6 +4550,17 @@ guideboardInfoServiceImpl-line89=route not select
4550 4550 guideboardInfoServiceImpl-line95=duplicate road sign name
4551 4551 guideboardInfoServiceImpl-line125=the road sign is associated with timetable[######{0}],do not be voided.
4552 4552  
  4553 +carConfigInfoServiceImpl-line57=current user do not have the company permission.
  4554 +carConfigInfoServiceImpl-line69=vehicle is not associated with the company of the current user.
  4555 +carConfigInfoServiceImpl-line76=current user do not have the company permission.
  4556 +carConfigInfoServiceImpl-line101=vehicle is not associated with the branch company of the current user.
  4557 +carConfigInfoServiceImpl-line116=route not select
  4558 +carConfigInfoServiceImpl-line121=vehicle not select
  4559 +carConfigInfoServiceImpl-line126=vehicle is associated with the route[######{0}].
  4560 +carConfigInfoServiceImpl-line142=vehicle is associated with the route[######{0}].
  4561 +carConfigInfoServiceImpl-line156=vehicle is not associated with the current route.
  4562 +carConfigInfoServiceImpl-line180=the vehicle configuration is associated with the schedule rule,do not be voided.
  4563 +
4553 4564 bController-line192=import file not exist
4554 4565 bController-line197=import file successful
4555 4566 bController-line217=upload and import file successful
... ...
src/main/resources/message_zh_CN.properties
... ... @@ -4551,6 +4551,16 @@ guideboardInfoServiceImpl-line89=线路未选择
4551 4551 guideboardInfoServiceImpl-line95=路牌名字重复
4552 4552 guideboardInfoServiceImpl-line125=在时刻表######{0}已使用,无法作废!
4553 4553  
  4554 +carConfigInfoServiceImpl-line57=当前用户没有公司权限!
  4555 +carConfigInfoServiceImpl-line69=当前车辆不在用户所属公司中!
  4556 +carConfigInfoServiceImpl-line76=当前用户没有公司权限!
  4557 +carConfigInfoServiceImpl-line101=当前车辆不在用户所属分公司中!
  4558 +carConfigInfoServiceImpl-line116=线路未选择
  4559 +carConfigInfoServiceImpl-line121=车辆未选择
  4560 +carConfigInfoServiceImpl-line126=车辆已经配置在######{0}线路中!
  4561 +carConfigInfoServiceImpl-line142=车辆不配置在当前线路下,配置在######{0}线路中!
  4562 +carConfigInfoServiceImpl-line156=当前车辆没有配置在当前线路中,不属于当前线路!
  4563 +carConfigInfoServiceImpl-line180=车辆配置已被规则使用,不能作废,请先修改规则!
4554 4564  
4555 4565 bController-line192=导入文件不存在!
4556 4566 bController-line197=导入文件成功
... ...