Commit 15bce4b42f53c4d3054f1dc91fca0fd86ddda6bb

Authored by 徐烜
1 parent ced1974f

1、国际化改造:车辆基础信息后端国际化改造

src/main/java/com/bsth/controller/schedule/BController.java
... ... @@ -8,6 +8,7 @@ import com.bsth.service.schedule.BService;
8 8 import com.bsth.service.schedule.exception.ScheduleException;
9 9 import com.bsth.service.schedule.utils.DataToolsFile;
10 10 import com.bsth.service.sys.SysUserService;
  11 +import com.bsth.util.I18n;
11 12 import com.google.common.base.Splitter;
12 13 import org.apache.commons.lang3.StringUtils;
13 14 import org.apache.poi.ss.usermodel.Workbook;
... ... @@ -30,6 +31,8 @@ public class BController<T, ID extends Serializable> {
30 31 protected BService<T, ID> bService;
31 32 @Autowired
32 33 private SysUserService sysUserService;
  34 + @Autowired
  35 + private I18n i18n;
33 36  
34 37 //---------------- CRUD 操作 ----------------//
35 38 // Create操作
... ... @@ -186,12 +189,12 @@ public class BController&lt;T, ID extends Serializable&gt; {
186 189 try {
187 190 File file = new File(String.valueOf(params.get("filename")));
188 191 if (!file.exists()) {
189   - throw new Exception("导入文件不存在!");
  192 + throw new Exception(this.i18n.getMessage("bController-line192"));
190 193 }
191 194 bService.importData(file, params);
192 195  
193 196 rtn.put("status", ResponseCode.SUCCESS);
194   - rtn.put("msg", "导入文件成功");
  197 + rtn.put("msg", this.i18n.getMessage("bController-line197"));
195 198 } catch (Exception exp) {
196 199 rtn.put("status", ResponseCode.ERROR);
197 200 rtn.put("msg", exp.getMessage());
... ... @@ -211,7 +214,7 @@ public class BController&lt;T, ID extends Serializable&gt; {
211 214 bService.importData(dataToolsFile.getFile(), params);
212 215  
213 216 rtn.put("status", ResponseCode.SUCCESS);
214   - rtn.put("msg", "上传&导入文件成功");
  217 + rtn.put("msg", this.i18n.getMessage("bController-line217"));
215 218 } catch (Exception exp) {
216 219 exp.printStackTrace();
217 220 rtn.put("status", ResponseCode.ERROR);
... ...
src/main/java/com/bsth/service/schedule/datatools/CarsDataToolsImpl.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.*;
  4 +import com.bsth.service.schedule.utils.DataToolsFile;
  5 +import com.bsth.service.schedule.utils.DataToolsProperties;
  6 +import com.bsth.service.schedule.utils.DataToolsService;
5 7 import com.bsth.util.I18n;
6   -import jxl.write.Label;
7   -import jxl.write.WritableSheet;
8   -import jxl.write.WritableWorkbook;
9 8 import org.slf4j.Logger;
10 9 import org.slf4j.LoggerFactory;
11 10 import org.springframework.beans.factory.annotation.Autowired;
12 11 import org.springframework.beans.factory.annotation.Qualifier;
13   -import org.springframework.boot.context.properties.EnableConfigurationProperties;
14 12 import org.springframework.stereotype.Service;
15 13  
16 14 import java.io.File;
17 15 import java.io.PrintWriter;
18 16 import java.io.StringWriter;
19 17 import java.util.HashMap;
  18 +import java.util.Locale;
20 19 import java.util.Map;
21 20  
22 21 /**
... ... @@ -36,48 +35,7 @@ public class CarsDataToolsImpl implements DataToolsService {
36 35  
37 36 @Override
38 37 public DataToolsFile uploadFile(String filename, byte[] filedata) throws ScheduleException {
39   - try {
40   - // 对上传的excel文件做处理
41   - // 将第一个sheet保存成一个xls文件
42   - DataToolsFile dataToolsFile = dataToolsService.uploadFile(filename, filedata);
43   - File file = dataToolsFile.getFile();
44   -
45   - // poi api
46   - org.apache.poi.ss.usermodel.Workbook poi_workbook = dataToolsFile.getFileType().getWorkBook(file);
47   - org.apache.poi.ss.usermodel.Sheet poi_sheet = poi_workbook.getSheetAt(0); // 第一个sheet
48   - int rowNum = poi_sheet.getLastRowNum(); // 获取总共多少行
49   - if (rowNum < 0) {
50   - throw new RuntimeException("表格内容为空!");
51   - }
52   - int colNum = poi_sheet.getRow(0).getLastCellNum(); // 获取总共多少列,以第一行为主
53   -
54   - // jxl api
55   - File fileCal = new File(file.getAbsolutePath() + "_sheetChange.xls");
56   - WritableWorkbook writableWorkbook = jxl.Workbook.createWorkbook(fileCal);
57   - WritableSheet writableSheet = writableWorkbook.createSheet("工作表1", 0);
58   -
59   - for (int i = 0; i <= rowNum; i++) {
60   - for (int j = 0; j <= colNum; j++) {
61   - // poi读
62   - String cellContent = PoiUtils.getStringValueFromCell(poi_sheet.getRow(i).getCell(j));
63   - // jxl写
64   - writableSheet.addCell(new Label(j, i, cellContent));
65   - }
66   -
67   - }
68   - writableWorkbook.write();
69   - writableWorkbook.close();
70   - poi_workbook.close();
71   -
72   - DataToolsFile dataToolsFile1 = new DataToolsFile();
73   - dataToolsFile1.setFile(fileCal);
74   - dataToolsFile1.setFileType(DataToolsFileType.XLS);
75   -
76   - return dataToolsFile1;
77   -
78   - } catch (Exception exp) {
79   - throw new ScheduleException(exp);
80   - }
  38 + return this.dataToolsService.uploadFile(filename, filedata);
81 39 }
82 40  
83 41 @Override
... ... @@ -86,8 +44,17 @@ public class CarsDataToolsImpl implements DataToolsService {
86 44 LOGGER.info("//---------------- 导入车辆基础信息 start... ----------------//");
87 45 // 创建ktr转换所需参数
88 46 Map<String, Object> ktrParms = new HashMap<>();
89   - File ktrFile = new File(this.getClass().getResource(
90   - dataToolsProperties.getCarsDatainputktr()).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.getZhVehicleBasicDataImport()).toURI());
  52 + } else if ("en".equals(country)) {
  53 + ktrFile = new File(this.getClass().getResource(
  54 + dataToolsProperties.getEnVehicleBasicDataImport()).toURI());
  55 + } else {
  56 + throw new Exception("not found Local[" + country + "] corresponding ktr.");
  57 + }
91 58  
92 59 // 通用参数,转换文件路径,excel输入文件路径,错误输出文件路径
93 60 ktrParms.put("transpath", ktrFile.getAbsolutePath());
... ... @@ -114,8 +81,17 @@ public class CarsDataToolsImpl implements DataToolsService {
114 81 LOGGER.info("//---------------- 导出车辆基础信息 start... ----------------//");
115 82 // 创建ktr转换所需参数
116 83 Map<String, Object> ktrParms = new HashMap<>();
117   - File ktrFile = new File(this.getClass().getResource(
118   - dataToolsProperties.getCarsDataoutputktr()).toURI());
  84 + String country = Locale.getDefault().getLanguage();
  85 + File ktrFile = null;
  86 + if ("zh".equals(country)) {
  87 + ktrFile = new File(this.getClass().getResource(
  88 + dataToolsProperties.getZhVehicleBasicDataExport()).toURI());
  89 + } else if ("en".equals(country)) {
  90 + ktrFile = new File(this.getClass().getResource(
  91 + dataToolsProperties.getEnVehicleBasicDataExport()).toURI());
  92 + } else {
  93 + throw new Exception("not found Local[" + country + "] corresponding ktr.");
  94 + }
119 95  
120 96 // 通用参数,转换文件路径,excel输出文件名
121 97 ktrParms.put("transpath", ktrFile.getAbsolutePath());
... ...
src/main/java/com/bsth/service/schedule/exception/ScheduleException.java
... ... @@ -5,7 +5,7 @@ package com.bsth.service.schedule.exception;
5 5 */
6 6 public class ScheduleException extends Exception {
7 7 public ScheduleException(String message) {
8   - super("计划调度业务错误==>>" + message);
  8 + super(message);
9 9 }
10 10 public ScheduleException(Throwable throwable) {
11 11 super(throwable);
... ...
src/main/java/com/bsth/service/schedule/impl/CarsServiceImpl.java
... ... @@ -9,6 +9,7 @@ import com.bsth.service.schedule.CarsService;
9 9 import com.bsth.service.schedule.exception.ScheduleException;
10 10 import com.bsth.service.schedule.utils.DataToolsFile;
11 11 import com.bsth.service.schedule.utils.DataToolsService;
  12 +import com.bsth.util.I18n;
12 13 import org.springframework.beans.factory.annotation.Autowired;
13 14 import org.springframework.beans.factory.annotation.Qualifier;
14 15 import org.springframework.stereotype.Service;
... ... @@ -37,6 +38,9 @@ public class CarsServiceImpl extends BServiceImpl&lt;Cars, Integer&gt; implements Cars
37 38 @Autowired
38 39 private CarConfigInfoRepository carConfigInfoRepository;
39 40  
  41 + @Autowired
  42 + private I18n i18n;
  43 +
40 44 @Override
41 45 public Cars save(Cars cars) {
42 46 if (cars.getId() != null && cars.getScrapState()) { // 更新车辆信息,报废车辆
... ... @@ -97,7 +101,7 @@ public class CarsServiceImpl extends BServiceImpl&lt;Cars, Integer&gt; implements Cars
97 101 }
98 102 param.put("insideCode_eq", cars.getInsideCode());
99 103 if (!CollectionUtils.isEmpty(list(param))) {
100   - throw new ScheduleException("车辆内部编号/自编号重复");
  104 + throw new ScheduleException(this.i18n.getMessage("carsServiceImpl-line104"));
101 105 }
102 106 }
103 107  
... ... @@ -111,7 +115,7 @@ public class CarsServiceImpl extends BServiceImpl&lt;Cars, Integer&gt; implements Cars
111 115 }
112 116 param.put("carCode_eq", cars.getCarCode());
113 117 if (!CollectionUtils.isEmpty(list(param))) {
114   - throw new ScheduleException("车辆编号重复");
  118 + throw new ScheduleException(this.i18n.getMessage("carsServiceImpl-line118"));
115 119 }
116 120 }
117 121  
... ... @@ -125,7 +129,7 @@ public class CarsServiceImpl extends BServiceImpl&lt;Cars, Integer&gt; implements Cars
125 129 }
126 130 param.put("carPlate_eq", cars.getCarPlate());
127 131 if (!CollectionUtils.isEmpty(list(param))) {
128   - throw new ScheduleException("车牌号重复");
  132 + throw new ScheduleException(this.i18n.getMessage("carsServiceImpl-line132"));
129 133 }
130 134 }
131 135  
... ... @@ -140,7 +144,7 @@ public class CarsServiceImpl extends BServiceImpl&lt;Cars, Integer&gt; implements Cars
140 144 param.put("scrapState_eq", false);
141 145 param.put("equipmentCode_eq", cars.getEquipmentCode());
142 146 if (!CollectionUtils.isEmpty(list(param))) {
143   - throw new ScheduleException("设备编号重复");
  147 + throw new ScheduleException(this.i18n.getMessage("carsServiceImpl-line147"));
144 148 }
145 149 }
146 150 }
... ...
src/main/java/com/bsth/service/schedule/utils/DataToolsProperties.java
... ... @@ -50,10 +50,56 @@ public class DataToolsProperties {
50 50 /** ktr通用变量-数据库库名 */
51 51 private String kvarsDbdname;
52 52  
53   - //------------------------- 导入数据ktr --------------------------//
54   - /** 车辆信息导入ktr转换 */
  53 + //---------------------------- 车辆基础数据相关ktr(以下)----------------------------//
  54 + /** 车辆基础信息导入(英文) */
  55 + @NotNull
  56 + private String enVehicleBasicDataImport;
  57 + /** 车辆基础信息导出(英文) */
  58 + @NotNull
  59 + private String enVehicleBasicDataExport;
  60 + /** 车辆基础信息导入(中文) */
55 61 @NotNull
56   - private String carsDatainputktr;
  62 + private String zhVehicleBasicDataImport;
  63 + /** 车辆基础信息导出(中文) */
  64 + @NotNull
  65 + private String zhVehicleBasicDataExport;
  66 +
  67 + public String getEnVehicleBasicDataImport() {
  68 + return enVehicleBasicDataImport;
  69 + }
  70 +
  71 + public void setEnVehicleBasicDataImport(String enVehicleBasicDataImport) {
  72 + this.enVehicleBasicDataImport = enVehicleBasicDataImport;
  73 + }
  74 +
  75 + public String getEnVehicleBasicDataExport() {
  76 + return enVehicleBasicDataExport;
  77 + }
  78 +
  79 + public void setEnVehicleBasicDataExport(String enVehicleBasicDataExport) {
  80 + this.enVehicleBasicDataExport = enVehicleBasicDataExport;
  81 + }
  82 +
  83 + public String getZhVehicleBasicDataImport() {
  84 + return zhVehicleBasicDataImport;
  85 + }
  86 +
  87 + public void setZhVehicleBasicDataImport(String zhVehicleBasicDataImport) {
  88 + this.zhVehicleBasicDataImport = zhVehicleBasicDataImport;
  89 + }
  90 +
  91 + public String getZhVehicleBasicDataExport() {
  92 + return zhVehicleBasicDataExport;
  93 + }
  94 +
  95 + public void setZhVehicleBasicDataExport(String zhVehicleBasicDataExport) {
  96 + this.zhVehicleBasicDataExport = zhVehicleBasicDataExport;
  97 + }
  98 +
  99 + //---------------------------- 车辆基础数据相关ktr(以上)----------------------------//
  100 +
  101 +
  102 + //------------------------- 导入数据ktr --------------------------//
57 103 /** 人员信息导入ktr转换 */
58 104 @NotNull
59 105 private String employeesDatainputktr;
... ... @@ -96,9 +142,6 @@ public class DataToolsProperties {
96 142  
97 143  
98 144 //------------------------- 导出数据ktr --------------------------//
99   - /** 车辆信息导出ktr转换 */
100   - @NotNull
101   - private String carsDataoutputktr;
102 145 /** 人员信息导出ktr转换 */
103 146 @NotNull
104 147 private String employeesDataoutputktr;
... ... @@ -147,10 +190,6 @@ public class DataToolsProperties {
147 190 this.transErrordir = transErrordir;
148 191 }
149 192  
150   - public String getCarsDatainputktr() {
151   - return carsDatainputktr;
152   - }
153   -
154 193 public String getTtinfodetailMetadatainputktr() {
155 194 return ttinfodetailMetadatainputktr;
156 195 }
... ... @@ -159,10 +198,6 @@ public class DataToolsProperties {
159 198 this.ttinfodetailMetadatainputktr = ttinfodetailMetadatainputktr;
160 199 }
161 200  
162   - public void setCarsDatainputktr(String carsDatainputktr) {
163   - this.carsDatainputktr = carsDatainputktr;
164   - }
165   -
166 201 public String getEmployeesDatainputktr() {
167 202 return employeesDatainputktr;
168 203 }
... ... @@ -275,14 +310,6 @@ public class DataToolsProperties {
275 310 this.fileoutputDir = fileoutputDir;
276 311 }
277 312  
278   - public String getCarsDataoutputktr() {
279   - return carsDataoutputktr;
280   - }
281   -
282   - public void setCarsDataoutputktr(String carsDataoutputktr) {
283   - this.carsDataoutputktr = carsDataoutputktr;
284   - }
285   -
286 313 public String getEmployeesDataoutputktr() {
287 314 return employeesDataoutputktr;
288 315 }
... ...
src/main/java/com/bsth/service/schedule/utils/DataToolsServiceImpl.java
1 1 package com.bsth.service.schedule.utils;
2 2  
3 3 import com.bsth.service.schedule.exception.ScheduleException;
  4 +import com.bsth.util.I18n;
4 5 import com.google.common.io.Files;
  6 +import jxl.write.Label;
  7 +import jxl.write.WritableSheet;
  8 +import jxl.write.WritableWorkbook;
5 9 import org.joda.time.DateTime;
6 10 import org.pentaho.di.core.KettleEnvironment;
7 11 import org.pentaho.di.core.logging.KettleLogStore;
... ... @@ -33,6 +37,8 @@ public class DataToolsServiceImpl implements DataToolsService {
33 37  
34 38 @Autowired
35 39 private DataToolsProperties dataToolsProperties;
  40 + @Autowired
  41 + private I18n i18n;
36 42  
37 43 /** 原子操作类 */
38 44 private AtomicBoolean flag = new AtomicBoolean(false);
... ... @@ -46,14 +52,12 @@ public class DataToolsServiceImpl implements DataToolsService {
46 52  
47 53 // 添加全局ktr变量,并覆盖原来的设置
48 54 Map<String, String> kvars = new HashMap<>();
49   - kvars.put("v_db_ip", dataToolsProperties.getKvarsDbip());
50   - kvars.put("v_db_uname", dataToolsProperties.getKvarsDbuname());
51   - kvars.put("v_db_pwd", dataToolsProperties.getKvarsDbpwd());
52   - kvars.put("v_db_dname", dataToolsProperties.getKvarsDbdname());
53 55 EnvUtil.applyKettleProperties(kvars, true);
54 56 KettleEnvironment.init(); // 默认使用jndi数据源
55 57 // 使用自定义的jndi上下文工厂
56   - System.setProperty("java.naming.factory.initial", "com.bsth.service.schedule.utils.jndi.MySimpleJndiContextFactory");
  58 + System.setProperty(
  59 + "java.naming.factory.initial",
  60 + "com.bsth.service.schedule.utils.jndi.MySimpleJndiContextFactory");
57 61 }
58 62 }
59 63  
... ... @@ -97,8 +101,9 @@ public class DataToolsServiceImpl implements DataToolsService {
97 101  
98 102 LOGGER.info("start uploadFile...originalFilename={}", filename);
99 103  
100   - DataToolsFile dataToolsFile = new DataToolsFile();
  104 + // 1、上传文件到指定目录
101 105  
  106 + DataToolsFile dataToolsFile = new DataToolsFile();
102 107 // 判定文件类型(目前只支持xls,xlsx文件)
103 108 if (DataToolsFileType.XLS.isThisType(filedata)) {
104 109 // xls文件
... ... @@ -124,12 +129,44 @@ public class DataToolsServiceImpl implements DataToolsService {
124 129 Files.write(filedata, dataToolsFile.getFile());
125 130 } else {
126 131 // 非excel文件
127   - throw new Exception("非.xls .xlsx 格式文件!");
  132 + throw new Exception(this.i18n.getMessage("dataToolsServiceImpl-line132"));
128 133 }
129 134  
130 135 LOGGER.info("uploadFile success...newFilename={}", dataToolsFile.getFile().getAbsolutePath());
131 136  
132   - return dataToolsFile;
  137 + // 2、对上传的excel文件做处理,将第一个sheet保存成一个xls文件
  138 + // poi api
  139 + org.apache.poi.ss.usermodel.Workbook poi_workbook = dataToolsFile.getFileType().getWorkBook(dataToolsFile.getFile());
  140 + org.apache.poi.ss.usermodel.Sheet poi_sheet = poi_workbook.getSheetAt(0); // 第一个sheet
  141 + int rowNum = poi_sheet.getLastRowNum(); // 获取总共多少行
  142 + if (rowNum < 0) {
  143 + throw new RuntimeException(this.i18n.getMessage("dataToolsServiceImpl-line143"));
  144 + }
  145 + int colNum = poi_sheet.getRow(0).getLastCellNum(); // 获取总共多少列,以第一行为主
  146 +
  147 + // jxl api
  148 + File fileCal = new File(dataToolsFile.getFile().getAbsolutePath() + "_sheetChange.xls");
  149 + WritableWorkbook writableWorkbook = jxl.Workbook.createWorkbook(fileCal);
  150 + WritableSheet writableSheet = writableWorkbook.createSheet(this.i18n.getMessage("dataToolsServiceImpl-line150"), 0);
  151 +
  152 + for (int i = 0; i <= rowNum; i++) {
  153 + for (int j = 0; j <= colNum; j++) {
  154 + // poi读
  155 + String cellContent = PoiUtils.getStringValueFromCell(poi_sheet.getRow(i).getCell(j));
  156 + // jxl写
  157 + writableSheet.addCell(new Label(j, i, cellContent));
  158 + }
  159 +
  160 + }
  161 + writableWorkbook.write();
  162 + writableWorkbook.close();
  163 + poi_workbook.close();
  164 +
  165 + DataToolsFile dataToolsFile1 = new DataToolsFile();
  166 + dataToolsFile1.setFile(fileCal);
  167 + dataToolsFile1.setFileType(DataToolsFileType.XLS);
  168 +
  169 + return dataToolsFile1;
133 170 } catch (Exception exp) {
134 171 LOGGER.info("uploadFile failed...stackTrace...");
135 172  
... ... @@ -153,8 +190,7 @@ public class DataToolsServiceImpl implements DataToolsService {
153 190 // 检查参数
154 191 String transpath = String.valueOf(params.get("transpath"));
155 192 if ("null".equals(transpath)) {
156   - throw new Exception(
157   - "没有指定transpath参数值,无法确定ktr转换文件!");
  193 + throw new Exception(this.i18n.getMessage("dataToolsServiceImpl-line193"));
158 194 }
159 195 File ktrFile = new File(transpath);
160 196 // 设置文件路径,错误输出文件路径参数
... ... @@ -221,8 +257,7 @@ public class DataToolsServiceImpl implements DataToolsService {
221 257 }
222 258 String transpath = String.valueOf(params.get("transpath"));
223 259 if ("null".equals(transpath)) {
224   - throw new Exception(
225   - "没有指定transpath参数值,无法确定ktr转换文件!");
  260 + throw new Exception(this.i18n.getMessage("dataToolsServiceImpl-line260"));
226 261 }
227 262 File ktrFile = new File(transpath);
228 263 // 设置文件路径参数
... ...
src/main/resources/datatools/config-cloud.properties
... ... @@ -2,18 +2,8 @@
2 2  
3 3 # 1、kettle配置文件路径(类路径)
4 4 datatools.kettle_properties=/datatools/kettle.properties
5   -# 2、ktr文件通用配置变量(数据库连接,根据不同的环境需要修正)
6   -
7   -#数据库ip地址
8   -datatools.kvars_dbip=192.170.100.132
9   -#数据库用户名
10   -datatools.kvars_dbuname=root
11   -#数据库密码
12   -datatools.kvars_dbpwd=root2jsp
13   -#数据库库名
14   -datatools.kvars_dbdname=control
15   -
16   -# 3、上传数据配置信息
  5 +
  6 +# 2、上传数据配置信息
17 7 # 上传文件目录配置(根据不同的环境需要修正)
18 8 datatools.fileupload_dir=/home/bsth_control_u_d_files
19 9 # ktr转换文件,中配置的错误输出目录(根据不同的环境需要修正)
... ... @@ -23,9 +13,20 @@ datatools.trans_tempdir=/home/bsth_control_u_d_files/temp
23 13 # 模版文件目录
24 14 datatools.trans_templatedir=/home/bsth_control_u_d_files/template
25 15  
  16 +# 3、数据导出配置信息
  17 +# 导出数据文件目录配置(根据不同的环境需要修正)
  18 +datatools.fileoutput_dir=/home/bsth_control_u_d_files
  19 +
  20 +
  21 +##---------------------------- 车辆基础数据相关ktr(以下)----------------------------##
  22 +datatools.en_vehicle_basic_data_import=/datatools/ktrs/en/vehicle-basic-data_import.ktr
  23 +datatools.en_vehicle_basic_data_export=/datatools/ktrs/en/vehicle-basic-data_export.ktr
  24 +datatools.zh_vehicle_basic_data_import=/datatools/ktrs/zh/vehicle-basic-data_import.ktr
  25 +datatools.zh_vehicle_basic_data_export=/datatools/ktrs/zh/vehicle-basic-data_export.ktr
  26 +##---------------------------- 车辆基础数据相关ktr(以上)----------------------------##
  27 +
  28 +
26 29 ##---------------------------- 导入数据ktr ----------------------------##
27   -# 车辆信息导入ktr转换
28   -datatools.cars_datainputktr=/datatools/ktrs/carsDataInput.ktr
29 30 # 人员信息导入
30 31 datatools.employees_datainputktr=/datatools/ktrs/employeesDataInput.ktr
31 32 # 路牌信息导入
... ... @@ -55,13 +56,8 @@ datatools.employeesconfig_datainputktr=/datatools/ktrs/employeesConfigDataInput.
55 56 # 排版规则信息导入
56 57 datatools.schedulerule_datainputktr=/datatools/ktrs/scheduleRuleDataInput.ktr
57 58  
58   -# 4、数据导出配置信息
59   -# 导出数据文件目录配置(根据不同的环境需要修正)
60   -datatools.fileoutput_dir=/home/bsth_control_u_d_files
61 59  
62 60 ##---------------------------- 导出数据ktr -----------------------------##
63   -# 车辆信息导出ktr转换
64   -datatools.cars_dataoutputktr=/datatools/ktrs/carsDataOutput.ktr
65 61 # 人员信息导出ktr转换
66 62 datatools.employees_dataoutputktr=/datatools/ktrs/employeesDataOutput.ktr
67 63 # 时刻表导出元数据ktr转换
... ...
src/main/resources/datatools/config-dev.properties
... ... @@ -2,17 +2,8 @@
2 2  
3 3 # 1、kettle配置文件路径(类路径)
4 4 datatools.kettle_properties=/datatools/kettle.properties
5   -# 2、ktr文件通用配置变量(数据库连接,根据不同的环境需要修正)
6   -#数据库ip地址
7   -datatools.kvars_dbip=127.0.0.1
8   -#数据库用户名
9   -datatools.kvars_dbuname=root
10   -#数据库密码
11   -datatools.kvars_dbpwd=
12   -#数据库库名
13   -datatools.kvars_dbdname=test_control
14   -
15   -# 3、上传数据配置信息
  5 +
  6 +# 2、上传数据配置信息
16 7 # 上传文件目录配置(根据不同的环境需要修正)
17 8 datatools.fileupload_dir=/Users/xu/resource/project_code/runtime_temp/bsth_control_u_d_files
18 9 # ktr转换文件,中配置的错误输出目录(根据不同的环境需要修正)
... ... @@ -22,9 +13,22 @@ datatools.trans_tempdir=/Users/xu/resource/project_code/runtime_temp/bsth_contro
22 13 # 模版文件目录
23 14 datatools.trans_templatedir=/Users/xu/resource/project_code/runtime_temp/bsth_control_u_d_files/template
24 15  
  16 +# 3、数据导出配置信息
  17 +# 导出数据文件目录配置(根据不同的环境需要修正)
  18 +datatools.fileoutput_dir=/Users/xu/resource/project_code/runtime_temp/bsth_control_u_d_files
  19 +
  20 +##---------------------------- 车辆基础数据相关ktr(以下)----------------------------##
  21 +datatools.en_vehicle_basic_data_import=/datatools/ktrs/en/vehicle-basic-data_import.ktr
  22 +datatools.en_vehicle_basic_data_export=/datatools/ktrs/en/vehicle-basic-data_export.ktr
  23 +datatools.zh_vehicle_basic_data_import=/datatools/ktrs/zh/vehicle-basic-data_import.ktr
  24 +datatools.zh_vehicle_basic_data_export=/datatools/ktrs/zh/vehicle-basic-data_export.ktr
  25 +##---------------------------- 车辆基础数据相关ktr(以上)----------------------------##
  26 +
  27 +
  28 +
  29 +
  30 +
25 31 ##---------------------------- 导入数据ktr ----------------------------##
26   -# 车辆信息导入ktr转换
27   -datatools.cars_datainputktr=/datatools/ktrs/carsDataInput.ktr
28 32 # 人员信息导入
29 33 datatools.employees_datainputktr=/datatools/ktrs/employeesDataInput.ktr
30 34 # 路牌信息导入
... ... @@ -54,13 +58,7 @@ datatools.employeesconfig_datainputktr=/datatools/ktrs/employeesConfigDataInput.
54 58 # 排版规则信息导入
55 59 datatools.schedulerule_datainputktr=/datatools/ktrs/scheduleRuleDataInput.ktr
56 60  
57   -# 4、数据导出配置信息
58   -# 导出数据文件目录配置(根据不同的环境需要修正)
59   -datatools.fileoutput_dir=/Users/xu/resource/project_code/runtime_temp/bsth_control_u_d_files
60   -
61 61 ##---------------------------- 导出数据ktr -----------------------------##
62   -# 车辆信息导出ktr转换
63   -datatools.cars_dataoutputktr=/datatools/ktrs/carsDataOutput.ktr
64 62 # 人员信息导出ktr转换
65 63 datatools.employees_dataoutputktr=/datatools/ktrs/employeesDataOutput.ktr
66 64 # 时刻表导出元数据ktr转换
... ...
src/main/resources/datatools/config-prod.properties
... ... @@ -2,18 +2,8 @@
2 2  
3 3 # 1、kettle配置文件路径(类路径)
4 4 datatools.kettle_properties=/datatools/kettle.properties
5   -# 2、ktr文件通用配置变量(数据库连接,根据不同的环境需要修正)
6   -
7   -#数据库ip地址
8   -datatools.kvars_dbip=192.168.168.241
9   -#数据库用户名
10   -datatools.kvars_dbuname=root
11   -#数据库密码
12   -datatools.kvars_dbpwd=root2jsp
13   -#数据库库名
14   -datatools.kvars_dbdname=pd_control
15   -
16   -# 3、上传数据配置信息
  5 +
  6 +# 2、上传数据配置信息
17 7 # 上传文件目录配置(根据不同的环境需要修正)
18 8 datatools.fileupload_dir=/home/bsth_control_u_d_files
19 9 # ktr转换文件,中配置的错误输出目录(根据不同的环境需要修正)
... ... @@ -23,9 +13,21 @@ datatools.trans_tempdir=/home/bsth_control_u_d_files/temp
23 13 # 模版文件目录
24 14 datatools.trans_templatedir=/home/bsth_control_u_d_files/template
25 15  
  16 +# 3、数据导出配置信息
  17 +# 导出数据文件目录配置(根据不同的环境需要修正)
  18 +datatools.fileoutput_dir=/home/bsth_control_u_d_files
  19 +
  20 +
  21 +##---------------------------- 车辆基础数据相关ktr(以下)----------------------------##
  22 +datatools.en_vehicle_basic_data_import=/datatools/ktrs/en/vehicle-basic-data_import.ktr
  23 +datatools.en_vehicle_basic_data_export=/datatools/ktrs/en/vehicle-basic-data_export.ktr
  24 +datatools.zh_vehicle_basic_data_import=/datatools/ktrs/zh/vehicle-basic-data_import.ktr
  25 +datatools.zh_vehicle_basic_data_export=/datatools/ktrs/zh/vehicle-basic-data_export.ktr
  26 +##---------------------------- 车辆基础数据相关ktr(以上)----------------------------##
  27 +
  28 +
  29 +
26 30 ##---------------------------- 导入数据ktr ----------------------------##
27   -# 车辆信息导入ktr转换
28   -datatools.cars_datainputktr=/datatools/ktrs/carsDataInput.ktr
29 31 # 人员信息导入
30 32 datatools.employees_datainputktr=/datatools/ktrs/employeesDataInput.ktr
31 33 # 路牌信息导入
... ... @@ -55,13 +57,8 @@ datatools.employeesconfig_datainputktr=/datatools/ktrs/employeesConfigDataInput.
55 57 # 排版规则信息导入
56 58 datatools.schedulerule_datainputktr=/datatools/ktrs/scheduleRuleDataInput.ktr
57 59  
58   -# 4、数据导出配置信息
59   -# 导出数据文件目录配置(根据不同的环境需要修正)
60   -datatools.fileoutput_dir=/home/bsth_control_u_d_files
61 60  
62 61 ##---------------------------- 导出数据ktr -----------------------------##
63   -# 车辆信息导出ktr转换
64   -datatools.cars_dataoutputktr=/datatools/ktrs/carsDataOutput.ktr
65 62 # 人员信息导出ktr转换
66 63 datatools.employees_dataoutputktr=/datatools/ktrs/employeesDataOutput.ktr
67 64 # 时刻表导出元数据ktr转换
... ...
src/main/resources/datatools/config-test.properties
... ... @@ -2,30 +2,32 @@
2 2  
3 3 # 1、kettle配置文件路径(类路径)
4 4 datatools.kettle_properties=/datatools/kettle.properties
5   -# 2、ktr文件通用配置变量(数据库连接,根据不同的环境需要修正)
6   -
7   -#数据库ip地址
8   -datatools.kvars_dbip=10.10.200.148
9   -#数据库用户名
10   -datatools.kvars_dbuname=root
11   -#数据库密码
12   -datatools.kvars_dbpwd=root
13   -#数据库库名
14   -datatools.kvars_dbdname=control
15   -
16   -# 3、上传数据配置信息
  5 +
  6 +# 2、上传数据配置信息
17 7 # 上传文件目录配置(根据不同的环境需要修正)
18   -datatools.fileupload_dir=/home/bsth_control_u_d_files
  8 +datatools.fileupload_dir=/Users/xu/resource/project_code/runtime_temp/bsth_control_u_d_files
19 9 # ktr转换文件,中配置的错误输出目录(根据不同的环境需要修正)
20   -datatools.trans_errordir=/home/bsth_control_u_d_files/erroroutput
  10 +datatools.trans_errordir=/Users/xu/resource/project_code/runtime_temp/bsth_control_u_d_files/erroroutput
21 11 # 临时输出文件目录
22   -datatools.trans_tempdir=/home/bsth_control_u_d_files/temp
  12 +datatools.trans_tempdir=/Users/xu/resource/project_code/runtime_temp/bsth_control_u_d_files/temp
23 13 # 模版文件目录
24   -datatools.trans_templatedir=/home/bsth_control_u_d_files/template
  14 +datatools.trans_templatedir=/Users/xu/resource/project_code/runtime_temp/bsth_control_u_d_files/template
  15 +
  16 +# 3、数据导出配置信息
  17 +# 导出数据文件目录配置(根据不同的环境需要修正)
  18 +datatools.fileoutput_dir=/Users/xu/resource/project_code/runtime_temp/bsth_control_u_d_files
  19 +
  20 +
  21 +
  22 +##---------------------------- 车辆基础数据相关ktr(以下)----------------------------##
  23 +datatools.en_vehicle_basic_data_import=/datatools/ktrs/en/vehicle-basic-data_import.ktr
  24 +datatools.en_vehicle_basic_data_export=/datatools/ktrs/en/vehicle-basic-data_export.ktr
  25 +datatools.zh_vehicle_basic_data_import=/datatools/ktrs/zh/vehicle-basic-data_import.ktr
  26 +datatools.zh_vehicle_basic_data_export=/datatools/ktrs/zh/vehicle-basic-data_export.ktr
  27 +##---------------------------- 车辆基础数据相关ktr(以上)----------------------------##
  28 +
25 29  
26 30 ##---------------------------- 导入数据ktr ----------------------------##
27   -# 车辆信息导入ktr转换
28   -datatools.cars_datainputktr=/datatools/ktrs/carsDataInput.ktr
29 31 # 人员信息导入
30 32 datatools.employees_datainputktr=/datatools/ktrs/employeesDataInput.ktr
31 33 # 路牌信息导入
... ... @@ -55,13 +57,7 @@ datatools.employeesconfig_datainputktr=/datatools/ktrs/employeesConfigDataInput.
55 57 # 排版规则信息导入
56 58 datatools.schedulerule_datainputktr=/datatools/ktrs/scheduleRuleDataInput.ktr
57 59  
58   -# 4、数据导出配置信息
59   -# 导出数据文件目录配置(根据不同的环境需要修正)
60   -datatools.fileoutput_dir=/home/bsth_control_u_d_files
61   -
62 60 ##---------------------------- 导出数据ktr -----------------------------##
63   -# 车辆信息导出ktr转换
64   -datatools.cars_dataoutputktr=/datatools/ktrs/carsDataOutput.ktr
65 61 # 人员信息导出ktr转换
66 62 datatools.employees_dataoutputktr=/datatools/ktrs/employeesDataOutput.ktr
67 63 # 时刻表导出元数据ktr转换
... ...
src/main/resources/datatools/ktrs/en/vehicle-basic-data_export.ktr 0 → 100644
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<transformation>
  3 + <info>
  4 + <name>&#x8f66;&#x8f86;&#x4fe1;&#x606f;&#x5bfc;&#x51fa;_en</name>
  5 + <description>&#x8f66;&#x8f86;&#x4fe1;&#x606f;&#x5bfc;&#x51fa;</description>
  6 + <extended_description>&#x8f66;&#x8f86;&#x57fa;&#x7840;&#x4fe1;&#x606f;</extended_description>
  7 + <trans_version/>
  8 + <trans_type>Normal</trans_type>
  9 + <trans_status>0</trans_status>
  10 + <directory>&#x2f;</directory>
  11 + <parameters>
  12 + <parameter>
  13 + <name>QUERY</name>
  14 + <default_value/>
  15 + <description>&#x67e5;&#x8be2;</description>
  16 + </parameter>
  17 + <parameter>
  18 + <name>cgsbm_in</name>
  19 + <default_value/>
  20 + <description>&#x5206;&#x516c;&#x53f8;&#x7f16;&#x7801;</description>
  21 + </parameter>
  22 + <parameter>
  23 + <name>filepath</name>
  24 + <default_value>1&#x3d;1</default_value>
  25 + <description>excel&#x6587;&#x4ef6;&#x8def;&#x5f84;</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>2016&#x2f;08&#x2f;05 16&#x3a;42&#x3a;22.753</created_date>
  86 + <modified_user>-</modified_user>
  87 + <modified_date>2016&#x2f;08&#x2f;05 16&#x3a;42&#x3a;22.753</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>&#x82f1;&#x6587;&#x6a21;&#x7248;&#x5bfc;&#x51fa;&#xa;excel&#x4e2d;&#x6587;&#x5b57;&#x6bb5;&#x540d; excel&#x82f1;&#x6587;&#x5b57;&#x6bb5;&#x540d; &#xa;&#x8f66;&#x724c;&#x53f7; license number &#xa;&#x5185;&#x90e8;&#x7f16;&#x7801; internal number &#xa;&#x6240;&#x5c5e;&#x516c;&#x53f8; company &#xa;&#x6240;&#x5c5e;&#x5206;&#x516c;&#x53f8; branch &#xa;&#x8bbe;&#x5907;&#x4f9b;&#x5e94;&#x5382;&#x5546; equipment supplier &#xa;&#x8bbe;&#x5907;&#x7ec8;&#x7aef;&#x53f7; terminal number &#xa;&#x662f;&#x5426;&#x7535;&#x8f66; Is it a tram </note>
  94 + <xloc>42</xloc>
  95 + <yloc>190</yloc>
  96 + <width>275</width>
  97 + <heigth>154</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>&#x516c;&#x53f8;&#x67e5;&#x8be2;</from><to>&#x5206;&#x516c;&#x53f8;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>
  826 + <hop> <from>&#x5206;&#x516c;&#x53f8;&#x67e5;&#x8be2;</from><to>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</to><enabled>Y</enabled> </hop>
  827 + <hop> <from>&#x6dfb;&#x52a0;&#x67e5;&#x8be2;&#x5e38;&#x91cf;</from><to>&#x516c;&#x53f8;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>
  828 + <hop> <from>&#x8f66;&#x8f86;&#x4fe1;&#x606f;&#x8868;&#x8f93;&#x5165;</from><to>&#x6dfb;&#x52a0;&#x67e5;&#x8be2;&#x5e38;&#x91cf;</to><enabled>Y</enabled> </hop>
  829 + <hop> <from>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</from><to>&#x662f;&#x5426;&#x7535;&#x8f66;</to><enabled>Y</enabled> </hop>
  830 + <hop> <from>&#x662f;&#x5426;&#x7535;&#x8f66;</from><to>&#x82f1;&#x6587;&#x5b57;&#x6bb5;&#x540d;</to><enabled>Y</enabled> </hop>
  831 + <hop> <from>&#x82f1;&#x6587;&#x5b57;&#x6bb5;&#x540d;</from><to>Excel&#x8f93;&#x51fa;</to><enabled>Y</enabled> </hop>
  832 + </order>
  833 + <step>
  834 + <name>Excel&#x8f93;&#x51fa;</name>
  835 + <type>ExcelOutput</type>
  836 + <description/>
  837 + <distribute>Y</distribute>
  838 + <custom_distribution/>
  839 + <copies>1</copies>
  840 + <partitioning>
  841 + <method>none</method>
  842 + <schema_name/>
  843 + </partitioning>
  844 + <header>Y</header>
  845 + <footer>N</footer>
  846 + <encoding/>
  847 + <append>N</append>
  848 + <add_to_result_filenames>Y</add_to_result_filenames>
  849 + <file>
  850 + <name>&#x24;&#x7b;filepath&#x7d;</name>
  851 + <extention>xls</extention>
  852 + <do_not_open_newfile_init>N</do_not_open_newfile_init>
  853 + <create_parent_folder>N</create_parent_folder>
  854 + <split>N</split>
  855 + <add_date>N</add_date>
  856 + <add_time>N</add_time>
  857 + <SpecifyFormat>N</SpecifyFormat>
  858 + <date_time_format>yyyyMMddHHmmss</date_time_format>
  859 + <sheetname>sheet1</sheetname>
  860 + <autosizecolums>N</autosizecolums>
  861 + <nullisblank>N</nullisblank>
  862 + <protect_sheet>N</protect_sheet>
  863 + <password>Encrypted </password>
  864 + <splitevery>0</splitevery>
  865 + <usetempfiles>N</usetempfiles>
  866 + <tempdirectory/>
  867 + </file>
  868 + <template>
  869 + <enabled>N</enabled>
  870 + <append>N</append>
  871 + <filename>template.xls</filename>
  872 + </template>
  873 + <fields>
  874 + <field>
  875 + <name>license number</name>
  876 + <type>String</type>
  877 + <format/>
  878 + </field>
  879 + <field>
  880 + <name>internal number</name>
  881 + <type>String</type>
  882 + <format/>
  883 + </field>
  884 + <field>
  885 + <name>company</name>
  886 + <type>String</type>
  887 + <format/>
  888 + </field>
  889 + <field>
  890 + <name>branch</name>
  891 + <type>String</type>
  892 + <format/>
  893 + </field>
  894 + <field>
  895 + <name>equipment supplier</name>
  896 + <type>String</type>
  897 + <format/>
  898 + </field>
  899 + <field>
  900 + <name>terminal number</name>
  901 + <type>String</type>
  902 + <format/>
  903 + </field>
  904 + <field>
  905 + <name>Is it a tram</name>
  906 + <type>String</type>
  907 + <format/>
  908 + </field>
  909 + </fields>
  910 + <custom>
  911 + <header_font_name>arial</header_font_name>
  912 + <header_font_size>10</header_font_size>
  913 + <header_font_bold>N</header_font_bold>
  914 + <header_font_italic>N</header_font_italic>
  915 + <header_font_underline>no</header_font_underline>
  916 + <header_font_orientation>horizontal</header_font_orientation>
  917 + <header_font_color>black</header_font_color>
  918 + <header_background_color>none</header_background_color>
  919 + <header_row_height>255</header_row_height>
  920 + <header_alignment>left</header_alignment>
  921 + <header_image/>
  922 + <row_font_name>arial</row_font_name>
  923 + <row_font_size>10</row_font_size>
  924 + <row_font_color>black</row_font_color>
  925 + <row_background_color>none</row_background_color>
  926 + </custom>
  927 + <cluster_schema/>
  928 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  929 + <xloc>500</xloc>
  930 + <yloc>311</yloc>
  931 + <draw>Y</draw>
  932 + </GUI>
  933 + </step>
  934 +
  935 + <step>
  936 + <name>&#x516c;&#x53f8;&#x67e5;&#x8be2;</name>
  937 + <type>DBLookup</type>
  938 + <description/>
  939 + <distribute>Y</distribute>
  940 + <custom_distribution/>
  941 + <copies>1</copies>
  942 + <partitioning>
  943 + <method>none</method>
  944 + <schema_name/>
  945 + </partitioning>
  946 + <connection>control_jndi</connection>
  947 + <cache>N</cache>
  948 + <cache_load_all>N</cache_load_all>
  949 + <cache_size>0</cache_size>
  950 + <lookup>
  951 + <schema/>
  952 + <table>bsth_c_business</table>
  953 + <orderby/>
  954 + <fail_on_multiple>N</fail_on_multiple>
  955 + <eat_row_on_failure>N</eat_row_on_failure>
  956 + <key>
  957 + <name>up_code</name>
  958 + <field>up_code</field>
  959 + <condition>&#x3d;</condition>
  960 + <name2/>
  961 + </key>
  962 + <key>
  963 + <name>business_code</name>
  964 + <field>business_code</field>
  965 + <condition>&#x3d;</condition>
  966 + <name2/>
  967 + </key>
  968 + <value>
  969 + <name>business_name</name>
  970 + <rename>gs</rename>
  971 + <default/>
  972 + <type>String</type>
  973 + </value>
  974 + </lookup>
  975 + <cluster_schema/>
  976 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  977 + <xloc>364</xloc>
  978 + <yloc>60</yloc>
  979 + <draw>Y</draw>
  980 + </GUI>
  981 + </step>
  982 +
  983 + <step>
  984 + <name>&#x5206;&#x516c;&#x53f8;&#x67e5;&#x8be2;</name>
  985 + <type>DBLookup</type>
  986 + <description/>
  987 + <distribute>Y</distribute>
  988 + <custom_distribution/>
  989 + <copies>1</copies>
  990 + <partitioning>
  991 + <method>none</method>
  992 + <schema_name/>
  993 + </partitioning>
  994 + <connection>control_jndi</connection>
  995 + <cache>N</cache>
  996 + <cache_load_all>N</cache_load_all>
  997 + <cache_size>0</cache_size>
  998 + <lookup>
  999 + <schema/>
  1000 + <table>bsth_c_business</table>
  1001 + <orderby/>
  1002 + <fail_on_multiple>N</fail_on_multiple>
  1003 + <eat_row_on_failure>N</eat_row_on_failure>
  1004 + <key>
  1005 + <name>business_code</name>
  1006 + <field>up_code</field>
  1007 + <condition>&#x3d;</condition>
  1008 + <name2/>
  1009 + </key>
  1010 + <key>
  1011 + <name>branche_company_code</name>
  1012 + <field>business_code</field>
  1013 + <condition>&#x3d;</condition>
  1014 + <name2/>
  1015 + </key>
  1016 + <value>
  1017 + <name>business_name</name>
  1018 + <rename>fgs</rename>
  1019 + <default/>
  1020 + <type>String</type>
  1021 + </value>
  1022 + </lookup>
  1023 + <cluster_schema/>
  1024 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1025 + <xloc>491</xloc>
  1026 + <yloc>60</yloc>
  1027 + <draw>Y</draw>
  1028 + </GUI>
  1029 + </step>
  1030 +
  1031 + <step>
  1032 + <name>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</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> <field> <name>car_plate</name>
  1043 + <rename>&#x8f66;&#x724c;&#x53f7;</rename>
  1044 + <length>-2</length>
  1045 + <precision>-2</precision>
  1046 + </field> <field> <name>inside_code</name>
  1047 + <rename>&#x5185;&#x90e8;&#x7f16;&#x7801;</rename>
  1048 + <length>-2</length>
  1049 + <precision>-2</precision>
  1050 + </field> <field> <name>gs</name>
  1051 + <rename>&#x6240;&#x5c5e;&#x516c;&#x53f8;</rename>
  1052 + <length>-2</length>
  1053 + <precision>-2</precision>
  1054 + </field> <field> <name>fgs</name>
  1055 + <rename>&#x6240;&#x5c5e;&#x5206;&#x516c;&#x53f8;</rename>
  1056 + <length>-2</length>
  1057 + <precision>-2</precision>
  1058 + </field> <field> <name>supplier_name</name>
  1059 + <rename>&#x8bbe;&#x5907;&#x4f9b;&#x5e94;&#x5382;&#x5546;</rename>
  1060 + <length>-2</length>
  1061 + <precision>-2</precision>
  1062 + </field> <field> <name>equipment_code</name>
  1063 + <rename>&#x8bbe;&#x5907;&#x7ec8;&#x7aef;&#x53f7;</rename>
  1064 + <length>-2</length>
  1065 + <precision>-2</precision>
  1066 + </field> <field> <name>sfdc</name>
  1067 + <rename>sfdc_cal</rename>
  1068 + <length>-2</length>
  1069 + <precision>-2</precision>
  1070 + </field> <select_unspecified>N</select_unspecified>
  1071 + </fields> <cluster_schema/>
  1072 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1073 + <xloc>495</xloc>
  1074 + <yloc>173</yloc>
  1075 + <draw>Y</draw>
  1076 + </GUI>
  1077 + </step>
  1078 +
  1079 + <step>
  1080 + <name>&#x662f;&#x5426;&#x7535;&#x8f66;</name>
  1081 + <type>ScriptValueMod</type>
  1082 + <description/>
  1083 + <distribute>Y</distribute>
  1084 + <custom_distribution/>
  1085 + <copies>1</copies>
  1086 + <partitioning>
  1087 + <method>none</method>
  1088 + <schema_name/>
  1089 + </partitioning>
  1090 + <compatible>N</compatible>
  1091 + <optimizationLevel>9</optimizationLevel>
  1092 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  1093 + <jsScript_name>Script 1</jsScript_name>
  1094 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var &#x662f;&#x5426;&#x7535;&#x8f66; &#x3d; &#x22;N&#x22;&#x3b;&#xa;&#xa;if&#x28;sfdc_cal &#x3d;&#x3d; 0&#x29; &#x7b;&#xa; &#x662f;&#x5426;&#x7535;&#x8f66; &#x3d; &#x22;N&#x22;&#x3b;&#xa;&#x7d; else if &#x28;sfdc_cal &#x3d;&#x3d; 1&#x29; &#x7b;&#xa; &#x662f;&#x5426;&#x7535;&#x8f66; &#x3d; &#x22;Y&#x22;&#x3b;&#xa;&#x7d; else &#x7b;&#xa; &#x662f;&#x5426;&#x7535;&#x8f66; &#x3d; &#x22;N&#x22;&#x3b;&#xa;&#x7d;&#xa;</jsScript_script>
  1095 + </jsScript> </jsScripts> <fields> <field> <name>&#x662f;&#x5426;&#x7535;&#x8f66;</name>
  1096 + <rename>&#x662f;&#x5426;&#x7535;&#x8f66;</rename>
  1097 + <type>String</type>
  1098 + <length>-1</length>
  1099 + <precision>-1</precision>
  1100 + <replace>N</replace>
  1101 + </field> </fields> <cluster_schema/>
  1102 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1103 + <xloc>366</xloc>
  1104 + <yloc>177</yloc>
  1105 + <draw>Y</draw>
  1106 + </GUI>
  1107 + </step>
  1108 +
  1109 + <step>
  1110 + <name>&#x6dfb;&#x52a0;&#x67e5;&#x8be2;&#x5e38;&#x91cf;</name>
  1111 + <type>ScriptValueMod</type>
  1112 + <description/>
  1113 + <distribute>Y</distribute>
  1114 + <custom_distribution/>
  1115 + <copies>1</copies>
  1116 + <partitioning>
  1117 + <method>none</method>
  1118 + <schema_name/>
  1119 + </partitioning>
  1120 + <compatible>N</compatible>
  1121 + <optimizationLevel>9</optimizationLevel>
  1122 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  1123 + <jsScript_name>Script 1</jsScript_name>
  1124 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var up_code &#x3d; &#x27;88&#x27;&#x3b;</jsScript_script>
  1125 + </jsScript> </jsScripts> <fields> <field> <name>up_code</name>
  1126 + <rename>up_code</rename>
  1127 + <type>String</type>
  1128 + <length>-1</length>
  1129 + <precision>-1</precision>
  1130 + <replace>N</replace>
  1131 + </field> </fields> <cluster_schema/>
  1132 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1133 + <xloc>227</xloc>
  1134 + <yloc>59</yloc>
  1135 + <draw>Y</draw>
  1136 + </GUI>
  1137 + </step>
  1138 +
  1139 + <step>
  1140 + <name>&#x82f1;&#x6587;&#x5b57;&#x6bb5;&#x540d;</name>
  1141 + <type>SelectValues</type>
  1142 + <description/>
  1143 + <distribute>Y</distribute>
  1144 + <custom_distribution/>
  1145 + <copies>1</copies>
  1146 + <partitioning>
  1147 + <method>none</method>
  1148 + <schema_name/>
  1149 + </partitioning>
  1150 + <fields> <field> <name>&#x8f66;&#x724c;&#x53f7;</name>
  1151 + <rename>license number</rename>
  1152 + <length>-2</length>
  1153 + <precision>-2</precision>
  1154 + </field> <field> <name>&#x5185;&#x90e8;&#x7f16;&#x7801;</name>
  1155 + <rename>internal number</rename>
  1156 + <length>-2</length>
  1157 + <precision>-2</precision>
  1158 + </field> <field> <name>&#x6240;&#x5c5e;&#x516c;&#x53f8;</name>
  1159 + <rename>company</rename>
  1160 + <length>-2</length>
  1161 + <precision>-2</precision>
  1162 + </field> <field> <name>&#x6240;&#x5c5e;&#x5206;&#x516c;&#x53f8;</name>
  1163 + <rename>branch</rename>
  1164 + <length>-2</length>
  1165 + <precision>-2</precision>
  1166 + </field> <field> <name>&#x8bbe;&#x5907;&#x4f9b;&#x5e94;&#x5382;&#x5546;</name>
  1167 + <rename>equipment supplier</rename>
  1168 + <length>-2</length>
  1169 + <precision>-2</precision>
  1170 + </field> <field> <name>&#x8bbe;&#x5907;&#x7ec8;&#x7aef;&#x53f7;</name>
  1171 + <rename>terminal number</rename>
  1172 + <length>-2</length>
  1173 + <precision>-2</precision>
  1174 + </field> <field> <name>&#x662f;&#x5426;&#x7535;&#x8f66;</name>
  1175 + <rename>Is it a tram</rename>
  1176 + <length>-2</length>
  1177 + <precision>-2</precision>
  1178 + </field> <select_unspecified>N</select_unspecified>
  1179 + </fields> <cluster_schema/>
  1180 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1181 + <xloc>370</xloc>
  1182 + <yloc>313</yloc>
  1183 + <draw>Y</draw>
  1184 + </GUI>
  1185 + </step>
  1186 +
  1187 + <step>
  1188 + <name>&#x8f66;&#x8f86;&#x4fe1;&#x606f;&#x8868;&#x8f93;&#x5165;</name>
  1189 + <type>TableInput</type>
  1190 + <description/>
  1191 + <distribute>Y</distribute>
  1192 + <custom_distribution/>
  1193 + <copies>1</copies>
  1194 + <partitioning>
  1195 + <method>none</method>
  1196 + <schema_name/>
  1197 + </partitioning>
  1198 + <connection>control_jndi</connection>
  1199 + <sql>SELECT &#x2a; FROM bsth_c_cars&#xa;where &#x24;&#x7b;QUERY&#x7d;</sql>
  1200 + <limit>0</limit>
  1201 + <lookup/>
  1202 + <execute_each_row>N</execute_each_row>
  1203 + <variables_active>Y</variables_active>
  1204 + <lazy_conversion_active>N</lazy_conversion_active>
  1205 + <cluster_schema/>
  1206 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1207 + <xloc>88</xloc>
  1208 + <yloc>59</yloc>
  1209 + <draw>Y</draw>
  1210 + </GUI>
  1211 + </step>
  1212 +
  1213 + <step_error_handling>
  1214 + </step_error_handling>
  1215 + <slave-step-copy-partition-distribution>
  1216 +</slave-step-copy-partition-distribution>
  1217 + <slave_transformation>N</slave_transformation>
  1218 +
  1219 +</transformation>
... ...
src/main/resources/datatools/ktrs/en/vehicle-basic-data_import.ktr 0 → 100644
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<transformation>
  3 + <info>
  4 + <name>&#x8f66;&#x8f86;&#x4fe1;&#x606f;&#x5bfc;&#x5165;_en</name>
  5 + <description>&#x8f66;&#x8f86;&#x4fe1;&#x606f;&#x5bfc;&#x5165;</description>
  6 + <extended_description>&#x8f66;&#x8f86;&#x57fa;&#x7840;&#x4fe1;&#x606f;</extended_description>
  7 + <trans_version/>
  8 + <trans_type>Normal</trans_type>
  9 + <trans_status>0</trans_status>
  10 + <directory>&#x2f;</directory>
  11 + <parameters>
  12 + <parameter>
  13 + <name>erroroutputdir</name>
  14 + <default_value/>
  15 + <description>ktr step&#x914d;&#x7f6e;&#x7684;&#x9519;&#x8bef;&#x8f93;&#x51fa;&#x76ee;&#x5f55;</description>
  16 + </parameter>
  17 + <parameter>
  18 + <name>filepath</name>
  19 + <default_value/>
  20 + <description>&#x5f85;&#x5904;&#x7406;&#x5bfc;&#x5165;&#x7684;excel&#x6587;&#x4ef6;</description>
  21 + </parameter>
  22 + </parameters>
  23 + <log>
  24 +<trans-log-table><connection/>
  25 +<schema/>
  26 +<table/>
  27 +<size_limit_lines/>
  28 +<interval/>
  29 +<timeout_days/>
  30 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STATUS</id><enabled>Y</enabled><name>STATUS</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name><subject/></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name><subject/></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name><subject/></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name><subject/></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name><subject/></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name><subject/></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>STARTDATE</id><enabled>Y</enabled><name>STARTDATE</name></field><field><id>ENDDATE</id><enabled>Y</enabled><name>ENDDATE</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>DEPDATE</id><enabled>Y</enabled><name>DEPDATE</name></field><field><id>REPLAYDATE</id><enabled>Y</enabled><name>REPLAYDATE</name></field><field><id>LOG_FIELD</id><enabled>Y</enabled><name>LOG_FIELD</name></field><field><id>EXECUTING_SERVER</id><enabled>N</enabled><name>EXECUTING_SERVER</name></field><field><id>EXECUTING_USER</id><enabled>N</enabled><name>EXECUTING_USER</name></field><field><id>CLIENT</id><enabled>N</enabled><name>CLIENT</name></field></trans-log-table>
  31 +<perf-log-table><connection/>
  32 +<schema/>
  33 +<table/>
  34 +<interval/>
  35 +<timeout_days/>
  36 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>SEQ_NR</id><enabled>Y</enabled><name>SEQ_NR</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>INPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>INPUT_BUFFER_ROWS</name></field><field><id>OUTPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>OUTPUT_BUFFER_ROWS</name></field></perf-log-table>
  37 +<channel-log-table><connection/>
  38 +<schema/>
  39 +<table/>
  40 +<timeout_days/>
  41 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>LOGGING_OBJECT_TYPE</id><enabled>Y</enabled><name>LOGGING_OBJECT_TYPE</name></field><field><id>OBJECT_NAME</id><enabled>Y</enabled><name>OBJECT_NAME</name></field><field><id>OBJECT_COPY</id><enabled>Y</enabled><name>OBJECT_COPY</name></field><field><id>REPOSITORY_DIRECTORY</id><enabled>Y</enabled><name>REPOSITORY_DIRECTORY</name></field><field><id>FILENAME</id><enabled>Y</enabled><name>FILENAME</name></field><field><id>OBJECT_ID</id><enabled>Y</enabled><name>OBJECT_ID</name></field><field><id>OBJECT_REVISION</id><enabled>Y</enabled><name>OBJECT_REVISION</name></field><field><id>PARENT_CHANNEL_ID</id><enabled>Y</enabled><name>PARENT_CHANNEL_ID</name></field><field><id>ROOT_CHANNEL_ID</id><enabled>Y</enabled><name>ROOT_CHANNEL_ID</name></field></channel-log-table>
  42 +<step-log-table><connection/>
  43 +<schema/>
  44 +<table/>
  45 +<timeout_days/>
  46 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>LOG_FIELD</id><enabled>N</enabled><name>LOG_FIELD</name></field></step-log-table>
  47 +<metrics-log-table><connection/>
  48 +<schema/>
  49 +<table/>
  50 +<timeout_days/>
  51 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>METRICS_DATE</id><enabled>Y</enabled><name>METRICS_DATE</name></field><field><id>METRICS_CODE</id><enabled>Y</enabled><name>METRICS_CODE</name></field><field><id>METRICS_DESCRIPTION</id><enabled>Y</enabled><name>METRICS_DESCRIPTION</name></field><field><id>METRICS_SUBJECT</id><enabled>Y</enabled><name>METRICS_SUBJECT</name></field><field><id>METRICS_TYPE</id><enabled>Y</enabled><name>METRICS_TYPE</name></field><field><id>METRICS_VALUE</id><enabled>Y</enabled><name>METRICS_VALUE</name></field></metrics-log-table>
  52 + </log>
  53 + <maxdate>
  54 + <connection/>
  55 + <table/>
  56 + <field/>
  57 + <offset>0.0</offset>
  58 + <maxdiff>0.0</maxdiff>
  59 + </maxdate>
  60 + <size_rowset>10000</size_rowset>
  61 + <sleep_time_empty>50</sleep_time_empty>
  62 + <sleep_time_full>50</sleep_time_full>
  63 + <unique_connections>N</unique_connections>
  64 + <feedback_shown>Y</feedback_shown>
  65 + <feedback_size>50000</feedback_size>
  66 + <using_thread_priorities>Y</using_thread_priorities>
  67 + <shared_objects_file/>
  68 + <capture_step_performance>N</capture_step_performance>
  69 + <step_performance_capturing_delay>1000</step_performance_capturing_delay>
  70 + <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit>
  71 + <dependencies>
  72 + </dependencies>
  73 + <partitionschemas>
  74 + </partitionschemas>
  75 + <slaveservers>
  76 + </slaveservers>
  77 + <clusterschemas>
  78 + </clusterschemas>
  79 + <created_user>-</created_user>
  80 + <created_date>2016&#x2f;06&#x2f;23 17&#x3a;44&#x3a;46.781</created_date>
  81 + <modified_user>-</modified_user>
  82 + <modified_date>2016&#x2f;06&#x2f;23 17&#x3a;44&#x3a;46.781</modified_date>
  83 + <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA&#x3d;</key_for_session_key>
  84 + <is_key_private>N</is_key_private>
  85 + </info>
  86 + <notepads>
  87 + <notepad>
  88 + <note>&#x82f1;&#x6587;&#x6a21;&#x7248;&#x5bfc;&#x5165;&#xa;excel&#x4e2d;&#x6587;&#x5b57;&#x6bb5;&#x540d; excel&#x82f1;&#x6587;&#x5b57;&#x6bb5;&#x540d; &#x6570;&#x636e;&#x5e93;&#x8868;&#x5b57;&#x6bb5;&#x540d;&#xa;&#x8f66;&#x724c;&#x53f7; license number car_plate&#xa;&#x5185;&#x90e8;&#x7f16;&#x7801; internal number inside_code&#xa;&#x6240;&#x5c5e;&#x516c;&#x53f8; company company&#xa;&#x6240;&#x5c5e;&#x5206;&#x516c;&#x53f8; branch branche_company&#xa;&#x8bbe;&#x5907;&#x4f9b;&#x5e94;&#x5382;&#x5546; equipment supplier supplier_name&#xa;&#x8bbe;&#x5907;&#x7ec8;&#x7aef;&#x53f7; terminal number equipment_code&#xa;&#x662f;&#x5426;&#x7535;&#x8f66; Is it a tram sfdc</note>
  89 + <xloc>52</xloc>
  90 + <yloc>241</yloc>
  91 + <width>378</width>
  92 + <heigth>154</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_cars 2</from><to>&#x9519;&#x8bef;&#x8f93;&#x51fa; 2</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>&#x5185;&#x90e8;&#x7f16;&#x7801;&#x4e0d;&#x4e3a;&#x7a7a;</from><to>&#x6dfb;&#x52a0;&#x67e5;&#x8be2;&#x5e38;&#x91cf;</to><enabled>Y</enabled> </hop>
  823 + <hop> <from>&#x6dfb;&#x52a0;&#x67e5;&#x8be2;&#x5e38;&#x91cf;</from><to>&#x516c;&#x53f8;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>
  824 + <hop> <from>&#x516c;&#x53f8;&#x67e5;&#x8be2;</from><to>&#x516c;&#x53f8;&#x4ee3;&#x7801;&#x4e0d;&#x4e3a;&#x7a7a;</to><enabled>Y</enabled> </hop>
  825 + <hop> <from>&#x516c;&#x53f8;&#x4ee3;&#x7801;&#x4e0d;&#x4e3a;&#x7a7a;</from><to>&#x5206;&#x516c;&#x53f8;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>
  826 + <hop> <from>&#x5206;&#x516c;&#x53f8;&#x67e5;&#x8be2;</from><to>&#x5206;&#x516c;&#x53f8;&#x4ee3;&#x7801;&#x4e0d;&#x4e3a;&#x7a7a;</to><enabled>Y</enabled> </hop>
  827 + <hop> <from>&#x5206;&#x516c;&#x53f8;&#x4ee3;&#x7801;&#x4e0d;&#x4e3a;&#x7a7a;</from><to>&#x8f66;&#x8f86;&#x7f16;&#x7801;</to><enabled>Y</enabled> </hop>
  828 + <hop> <from>&#x8f66;&#x8f86;&#x7f16;&#x7801;</from><to>&#x662f;&#x5426;&#x7535;&#x8f66;</to><enabled>Y</enabled> </hop>
  829 + <hop> <from>&#x662f;&#x5426;&#x7535;&#x8f66;</from><to>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_cars 2</to><enabled>Y</enabled> </hop>
  830 + <hop> <from>&#x539f;&#x59cb;&#x7cfb;&#x7edf;&#x5bfc;&#x51fa;&#x7684;Excel&#x8f93;&#x5165;</from><to>&#x4fee;&#x6b63;&#x5b57;&#x6bb5;&#x540d;&#xff08;&#x7a7a;&#x683c;&#x66ff;&#x6362;&#x6210;_&#xff09;</to><enabled>Y</enabled> </hop>
  831 + <hop> <from>&#x4fee;&#x6b63;&#x5b57;&#x6bb5;&#x540d;&#xff08;&#x7a7a;&#x683c;&#x66ff;&#x6362;&#x6210;_&#xff09;</from><to>&#x5185;&#x90e8;&#x7f16;&#x7801;&#x4e0d;&#x4e3a;&#x7a7a;</to><enabled>Y</enabled> </hop>
  832 + </order>
  833 + <step>
  834 + <name>&#x516c;&#x53f8;&#x4ee3;&#x7801;&#x4e0d;&#x4e3a;&#x7a7a;</name>
  835 + <type>FilterRows</type>
  836 + <description/>
  837 + <distribute>Y</distribute>
  838 + <custom_distribution/>
  839 + <copies>1</copies>
  840 + <partitioning>
  841 + <method>none</method>
  842 + <schema_name/>
  843 + </partitioning>
  844 +<send_true_to/>
  845 +<send_false_to/>
  846 + <compare>
  847 +<condition>
  848 + <negated>N</negated>
  849 + <conditions>
  850 + <condition>
  851 + <negated>N</negated>
  852 + <leftvalue>gs_code</leftvalue>
  853 + <function>IS NOT NULL</function>
  854 + <rightvalue/>
  855 + </condition>
  856 + </conditions>
  857 + </condition>
  858 + </compare>
  859 + <cluster_schema/>
  860 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  861 + <xloc>542</xloc>
  862 + <yloc>164</yloc>
  863 + <draw>Y</draw>
  864 + </GUI>
  865 + </step>
  866 +
  867 + <step>
  868 + <name>&#x516c;&#x53f8;&#x67e5;&#x8be2;</name>
  869 + <type>DBLookup</type>
  870 + <description/>
  871 + <distribute>Y</distribute>
  872 + <custom_distribution/>
  873 + <copies>1</copies>
  874 + <partitioning>
  875 + <method>none</method>
  876 + <schema_name/>
  877 + </partitioning>
  878 + <connection>control_jndi</connection>
  879 + <cache>N</cache>
  880 + <cache_load_all>N</cache_load_all>
  881 + <cache_size>0</cache_size>
  882 + <lookup>
  883 + <schema/>
  884 + <table>bsth_c_business</table>
  885 + <orderby/>
  886 + <fail_on_multiple>N</fail_on_multiple>
  887 + <eat_row_on_failure>N</eat_row_on_failure>
  888 + <key>
  889 + <name>up_code</name>
  890 + <field>up_code</field>
  891 + <condition>&#x3d;</condition>
  892 + <name2/>
  893 + </key>
  894 + <key>
  895 + <name>company</name>
  896 + <field>business_name</field>
  897 + <condition>&#x3d;</condition>
  898 + <name2/>
  899 + </key>
  900 + <value>
  901 + <name>business_code</name>
  902 + <rename>gs_code</rename>
  903 + <default/>
  904 + <type>String</type>
  905 + </value>
  906 + </lookup>
  907 + <cluster_schema/>
  908 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  909 + <xloc>540</xloc>
  910 + <yloc>59</yloc>
  911 + <draw>Y</draw>
  912 + </GUI>
  913 + </step>
  914 +
  915 + <step>
  916 + <name>&#x5185;&#x90e8;&#x7f16;&#x7801;&#x4e0d;&#x4e3a;&#x7a7a;</name>
  917 + <type>FilterRows</type>
  918 + <description/>
  919 + <distribute>Y</distribute>
  920 + <custom_distribution/>
  921 + <copies>1</copies>
  922 + <partitioning>
  923 + <method>none</method>
  924 + <schema_name/>
  925 + </partitioning>
  926 +<send_true_to/>
  927 +<send_false_to/>
  928 + <compare>
  929 +<condition>
  930 + <negated>N</negated>
  931 + <conditions>
  932 + <condition>
  933 + <negated>N</negated>
  934 + <leftvalue>internal_number</leftvalue>
  935 + <function>IS NOT NULL</function>
  936 + <rightvalue/>
  937 + </condition>
  938 + </conditions>
  939 + </condition>
  940 + </compare>
  941 + <cluster_schema/>
  942 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  943 + <xloc>387</xloc>
  944 + <yloc>165</yloc>
  945 + <draw>Y</draw>
  946 + </GUI>
  947 + </step>
  948 +
  949 + <step>
  950 + <name>&#x5206;&#x516c;&#x53f8;&#x4ee3;&#x7801;&#x4e0d;&#x4e3a;&#x7a7a;</name>
  951 + <type>FilterRows</type>
  952 + <description/>
  953 + <distribute>Y</distribute>
  954 + <custom_distribution/>
  955 + <copies>1</copies>
  956 + <partitioning>
  957 + <method>none</method>
  958 + <schema_name/>
  959 + </partitioning>
  960 +<send_true_to/>
  961 +<send_false_to/>
  962 + <compare>
  963 +<condition>
  964 + <negated>N</negated>
  965 + <conditions>
  966 + <condition>
  967 + <negated>N</negated>
  968 + <leftvalue>fgs_code</leftvalue>
  969 + <function>IS NOT NULL</function>
  970 + <rightvalue/>
  971 + </condition>
  972 + </conditions>
  973 + </condition>
  974 + </compare>
  975 + <cluster_schema/>
  976 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  977 + <xloc>685</xloc>
  978 + <yloc>162</yloc>
  979 + <draw>Y</draw>
  980 + </GUI>
  981 + </step>
  982 +
  983 + <step>
  984 + <name>&#x5206;&#x516c;&#x53f8;&#x67e5;&#x8be2;</name>
  985 + <type>DBLookup</type>
  986 + <description/>
  987 + <distribute>Y</distribute>
  988 + <custom_distribution/>
  989 + <copies>1</copies>
  990 + <partitioning>
  991 + <method>none</method>
  992 + <schema_name/>
  993 + </partitioning>
  994 + <connection>control_jndi</connection>
  995 + <cache>N</cache>
  996 + <cache_load_all>N</cache_load_all>
  997 + <cache_size>0</cache_size>
  998 + <lookup>
  999 + <schema/>
  1000 + <table>bsth_c_business</table>
  1001 + <orderby/>
  1002 + <fail_on_multiple>N</fail_on_multiple>
  1003 + <eat_row_on_failure>N</eat_row_on_failure>
  1004 + <key>
  1005 + <name>gs_code</name>
  1006 + <field>up_code</field>
  1007 + <condition>&#x3d;</condition>
  1008 + <name2/>
  1009 + </key>
  1010 + <key>
  1011 + <name>branch</name>
  1012 + <field>business_name</field>
  1013 + <condition>&#x3d;</condition>
  1014 + <name2/>
  1015 + </key>
  1016 + <value>
  1017 + <name>business_code</name>
  1018 + <rename>fgs_code</rename>
  1019 + <default/>
  1020 + <type>String</type>
  1021 + </value>
  1022 + </lookup>
  1023 + <cluster_schema/>
  1024 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1025 + <xloc>683</xloc>
  1026 + <yloc>59</yloc>
  1027 + <draw>Y</draw>
  1028 + </GUI>
  1029 + </step>
  1030 +
  1031 + <step>
  1032 + <name>&#x539f;&#x59cb;&#x7cfb;&#x7edf;&#x5bfc;&#x51fa;&#x7684;Excel&#x8f93;&#x5165;</name>
  1033 + <type>ExcelInput</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 + <header>Y</header>
  1043 + <noempty>Y</noempty>
  1044 + <stoponempty>N</stoponempty>
  1045 + <filefield/>
  1046 + <sheetfield/>
  1047 + <sheetrownumfield/>
  1048 + <rownumfield/>
  1049 + <sheetfield/>
  1050 + <filefield/>
  1051 + <limit>0</limit>
  1052 + <encoding/>
  1053 + <add_to_result_filenames>Y</add_to_result_filenames>
  1054 + <accept_filenames>Y</accept_filenames>
  1055 + <accept_field>filepath_</accept_field>
  1056 + <accept_stepname>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</accept_stepname>
  1057 + <file>
  1058 + <name/>
  1059 + <filemask/>
  1060 + <exclude_filemask/>
  1061 + <file_required>N</file_required>
  1062 + <include_subfolders>N</include_subfolders>
  1063 + </file>
  1064 + <fields>
  1065 + <field>
  1066 + <name>license number</name>
  1067 + <type>String</type>
  1068 + <length>-1</length>
  1069 + <precision>-1</precision>
  1070 + <trim_type>none</trim_type>
  1071 + <repeat>N</repeat>
  1072 + <format/>
  1073 + <currency/>
  1074 + <decimal/>
  1075 + <group/>
  1076 + </field>
  1077 + <field>
  1078 + <name>internal number</name>
  1079 + <type>String</type>
  1080 + <length>-1</length>
  1081 + <precision>-1</precision>
  1082 + <trim_type>none</trim_type>
  1083 + <repeat>N</repeat>
  1084 + <format/>
  1085 + <currency/>
  1086 + <decimal/>
  1087 + <group/>
  1088 + </field>
  1089 + <field>
  1090 + <name>company</name>
  1091 + <type>String</type>
  1092 + <length>-1</length>
  1093 + <precision>-1</precision>
  1094 + <trim_type>none</trim_type>
  1095 + <repeat>N</repeat>
  1096 + <format/>
  1097 + <currency/>
  1098 + <decimal/>
  1099 + <group/>
  1100 + </field>
  1101 + <field>
  1102 + <name>branch</name>
  1103 + <type>String</type>
  1104 + <length>-1</length>
  1105 + <precision>-1</precision>
  1106 + <trim_type>none</trim_type>
  1107 + <repeat>N</repeat>
  1108 + <format/>
  1109 + <currency/>
  1110 + <decimal/>
  1111 + <group/>
  1112 + </field>
  1113 + <field>
  1114 + <name>equipment supplier</name>
  1115 + <type>String</type>
  1116 + <length>-1</length>
  1117 + <precision>-1</precision>
  1118 + <trim_type>none</trim_type>
  1119 + <repeat>N</repeat>
  1120 + <format/>
  1121 + <currency/>
  1122 + <decimal/>
  1123 + <group/>
  1124 + </field>
  1125 + <field>
  1126 + <name>terminal number</name>
  1127 + <type>String</type>
  1128 + <length>-1</length>
  1129 + <precision>-1</precision>
  1130 + <trim_type>none</trim_type>
  1131 + <repeat>N</repeat>
  1132 + <format/>
  1133 + <currency/>
  1134 + <decimal/>
  1135 + <group/>
  1136 + </field>
  1137 + <field>
  1138 + <name>is it a tram</name>
  1139 + <type>String</type>
  1140 + <length>-1</length>
  1141 + <precision>-1</precision>
  1142 + <trim_type>none</trim_type>
  1143 + <repeat>N</repeat>
  1144 + <format/>
  1145 + <currency/>
  1146 + <decimal/>
  1147 + <group/>
  1148 + </field>
  1149 + </fields>
  1150 + <sheets>
  1151 + <sheet>
  1152 + <name>sheet1</name>
  1153 + <startrow>0</startrow>
  1154 + <startcol>0</startcol>
  1155 + </sheet>
  1156 + </sheets>
  1157 + <strict_types>N</strict_types>
  1158 + <error_ignored>N</error_ignored>
  1159 + <error_line_skipped>N</error_line_skipped>
  1160 + <bad_line_files_destination_directory/>
  1161 + <bad_line_files_extension>warning</bad_line_files_extension>
  1162 + <error_line_files_destination_directory/>
  1163 + <error_line_files_extension>error</error_line_files_extension>
  1164 + <line_number_files_destination_directory/>
  1165 + <line_number_files_extension>line</line_number_files_extension>
  1166 + <shortFileFieldName/>
  1167 + <pathFieldName/>
  1168 + <hiddenFieldName/>
  1169 + <lastModificationTimeFieldName/>
  1170 + <uriNameFieldName/>
  1171 + <rootUriNameFieldName/>
  1172 + <extensionFieldName/>
  1173 + <sizeFieldName/>
  1174 + <spreadsheet_type>JXL</spreadsheet_type>
  1175 + <cluster_schema/>
  1176 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1177 + <xloc>218</xloc>
  1178 + <yloc>59</yloc>
  1179 + <draw>Y</draw>
  1180 + </GUI>
  1181 + </step>
  1182 +
  1183 + <step>
  1184 + <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_cars 2</name>
  1185 + <type>InsertUpdate</type>
  1186 + <description/>
  1187 + <distribute>Y</distribute>
  1188 + <custom_distribution/>
  1189 + <copies>1</copies>
  1190 + <partitioning>
  1191 + <method>none</method>
  1192 + <schema_name/>
  1193 + </partitioning>
  1194 + <connection>control_jndi</connection>
  1195 + <commit>500</commit>
  1196 + <update_bypassed>N</update_bypassed>
  1197 + <lookup>
  1198 + <schema/>
  1199 + <table>bsth_c_cars</table>
  1200 + <key>
  1201 + <name>internal_number</name>
  1202 + <field>inside_code</field>
  1203 + <condition>&#x3d;</condition>
  1204 + <name2/>
  1205 + </key>
  1206 + <value>
  1207 + <name>car_plate</name>
  1208 + <rename>license_number</rename>
  1209 + <update>Y</update>
  1210 + </value>
  1211 + <value>
  1212 + <name>car_code</name>
  1213 + <rename>cl_code</rename>
  1214 + <update>Y</update>
  1215 + </value>
  1216 + <value>
  1217 + <name>inside_code</name>
  1218 + <rename>internal_number</rename>
  1219 + <update>Y</update>
  1220 + </value>
  1221 + <value>
  1222 + <name>company</name>
  1223 + <rename>company</rename>
  1224 + <update>Y</update>
  1225 + </value>
  1226 + <value>
  1227 + <name>business_code</name>
  1228 + <rename>gs_code</rename>
  1229 + <update>Y</update>
  1230 + </value>
  1231 + <value>
  1232 + <name>branche_company</name>
  1233 + <rename>branch</rename>
  1234 + <update>Y</update>
  1235 + </value>
  1236 + <value>
  1237 + <name>branche_company_code</name>
  1238 + <rename>fgs_code</rename>
  1239 + <update>Y</update>
  1240 + </value>
  1241 + <value>
  1242 + <name>supplier_name</name>
  1243 + <rename>equipment_supplier</rename>
  1244 + <update>Y</update>
  1245 + </value>
  1246 + <value>
  1247 + <name>equipment_code</name>
  1248 + <rename>terminal_number</rename>
  1249 + <update>Y</update>
  1250 + </value>
  1251 + <value>
  1252 + <name>sfdc</name>
  1253 + <rename>sfdc_cal</rename>
  1254 + <update>Y</update>
  1255 + </value>
  1256 + </lookup>
  1257 + <cluster_schema/>
  1258 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1259 + <xloc>561</xloc>
  1260 + <yloc>359</yloc>
  1261 + <draw>Y</draw>
  1262 + </GUI>
  1263 + </step>
  1264 +
  1265 + <step>
  1266 + <name>&#x662f;&#x5426;&#x7535;&#x8f66;</name>
  1267 + <type>ScriptValueMod</type>
  1268 + <description/>
  1269 + <distribute>Y</distribute>
  1270 + <custom_distribution/>
  1271 + <copies>1</copies>
  1272 + <partitioning>
  1273 + <method>none</method>
  1274 + <schema_name/>
  1275 + </partitioning>
  1276 + <compatible>N</compatible>
  1277 + <optimizationLevel>9</optimizationLevel>
  1278 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  1279 + <jsScript_name>Script 1</jsScript_name>
  1280 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var sfdc_cal &#x3d; 0&#x3b;&#xa;&#xa;if &#x28;is_it_a_tram &#x3d;&#x3d; &#x22;Y&#x22;&#x29; &#x7b;&#xa; sfdc_cal &#x3d; 1&#x3b;&#xa;&#x7d;</jsScript_script>
  1281 + </jsScript> </jsScripts> <fields> <field> <name>sfdc_cal</name>
  1282 + <rename>sfdc_cal</rename>
  1283 + <type>Integer</type>
  1284 + <length>16</length>
  1285 + <precision>2</precision>
  1286 + <replace>N</replace>
  1287 + </field> </fields> <cluster_schema/>
  1288 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1289 + <xloc>888</xloc>
  1290 + <yloc>273</yloc>
  1291 + <draw>Y</draw>
  1292 + </GUI>
  1293 + </step>
  1294 +
  1295 + <step>
  1296 + <name>&#x6dfb;&#x52a0;&#x67e5;&#x8be2;&#x5e38;&#x91cf;</name>
  1297 + <type>ScriptValueMod</type>
  1298 + <description/>
  1299 + <distribute>Y</distribute>
  1300 + <custom_distribution/>
  1301 + <copies>1</copies>
  1302 + <partitioning>
  1303 + <method>none</method>
  1304 + <schema_name/>
  1305 + </partitioning>
  1306 + <compatible>N</compatible>
  1307 + <optimizationLevel>9</optimizationLevel>
  1308 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  1309 + <jsScript_name>Script 1</jsScript_name>
  1310 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var up_code &#x3d; &#x27;88&#x27;&#x3b;</jsScript_script>
  1311 + </jsScript> </jsScripts> <fields> <field> <name>up_code</name>
  1312 + <rename>up_code</rename>
  1313 + <type>String</type>
  1314 + <length>-1</length>
  1315 + <precision>-1</precision>
  1316 + <replace>N</replace>
  1317 + </field> </fields> <cluster_schema/>
  1318 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1319 + <xloc>389</xloc>
  1320 + <yloc>61</yloc>
  1321 + <draw>Y</draw>
  1322 + </GUI>
  1323 + </step>
  1324 +
  1325 + <step>
  1326 + <name>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</name>
  1327 + <type>GetVariable</type>
  1328 + <description/>
  1329 + <distribute>Y</distribute>
  1330 + <custom_distribution/>
  1331 + <copies>1</copies>
  1332 + <partitioning>
  1333 + <method>none</method>
  1334 + <schema_name/>
  1335 + </partitioning>
  1336 + <fields>
  1337 + <field>
  1338 + <name>filepath_</name>
  1339 + <variable>&#x24;&#x7b;filepath&#x7d;</variable>
  1340 + <type>String</type>
  1341 + <format/>
  1342 + <currency/>
  1343 + <decimal/>
  1344 + <group/>
  1345 + <length>-1</length>
  1346 + <precision>-1</precision>
  1347 + <trim_type>none</trim_type>
  1348 + </field>
  1349 + <field>
  1350 + <name>erroroutputdir_</name>
  1351 + <variable>&#x24;&#x7b;erroroutputdir&#x7d;</variable>
  1352 + <type>String</type>
  1353 + <format/>
  1354 + <currency/>
  1355 + <decimal/>
  1356 + <group/>
  1357 + <length>-1</length>
  1358 + <precision>-1</precision>
  1359 + <trim_type>none</trim_type>
  1360 + </field>
  1361 + </fields>
  1362 + <cluster_schema/>
  1363 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1364 + <xloc>70</xloc>
  1365 + <yloc>59</yloc>
  1366 + <draw>Y</draw>
  1367 + </GUI>
  1368 + </step>
  1369 +
  1370 + <step>
  1371 + <name>&#x8f66;&#x8f86;&#x7f16;&#x7801;</name>
  1372 + <type>ScriptValueMod</type>
  1373 + <description/>
  1374 + <distribute>Y</distribute>
  1375 + <custom_distribution/>
  1376 + <copies>1</copies>
  1377 + <partitioning>
  1378 + <method>none</method>
  1379 + <schema_name/>
  1380 + </partitioning>
  1381 + <compatible>N</compatible>
  1382 + <optimizationLevel>9</optimizationLevel>
  1383 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  1384 + <jsScript_name>Script 1</jsScript_name>
  1385 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var cl_code &#x3d; gs_code &#x2b; &#x22;0&#x22; &#x2b; internal_number&#x3b;</jsScript_script>
  1386 + </jsScript> </jsScripts> <fields> <field> <name>cl_code</name>
  1387 + <rename>cl_code</rename>
  1388 + <type>String</type>
  1389 + <length>-1</length>
  1390 + <precision>-1</precision>
  1391 + <replace>N</replace>
  1392 + </field> </fields> <cluster_schema/>
  1393 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1394 + <xloc>688</xloc>
  1395 + <yloc>273</yloc>
  1396 + <draw>Y</draw>
  1397 + </GUI>
  1398 + </step>
  1399 +
  1400 + <step>
  1401 + <name>&#x9519;&#x8bef;&#x8f93;&#x51fa; 2</name>
  1402 + <type>ExcelOutput</type>
  1403 + <description/>
  1404 + <distribute>Y</distribute>
  1405 + <custom_distribution/>
  1406 + <copies>1</copies>
  1407 + <partitioning>
  1408 + <method>none</method>
  1409 + <schema_name/>
  1410 + </partitioning>
  1411 + <header>Y</header>
  1412 + <footer>N</footer>
  1413 + <encoding/>
  1414 + <append>N</append>
  1415 + <add_to_result_filenames>Y</add_to_result_filenames>
  1416 + <file>
  1417 + <name>&#x24;&#x7b;erroroutputdir&#x7d;&#x2f;&#x8f66;&#x8f86;&#x57fa;&#x7840;&#x4fe1;&#x606f;_&#x9519;&#x8bef;</name>
  1418 + <extention>xls</extention>
  1419 + <do_not_open_newfile_init>N</do_not_open_newfile_init>
  1420 + <create_parent_folder>N</create_parent_folder>
  1421 + <split>N</split>
  1422 + <add_date>N</add_date>
  1423 + <add_time>N</add_time>
  1424 + <SpecifyFormat>N</SpecifyFormat>
  1425 + <date_time_format/>
  1426 + <sheetname>Sheet1</sheetname>
  1427 + <autosizecolums>N</autosizecolums>
  1428 + <nullisblank>N</nullisblank>
  1429 + <protect_sheet>N</protect_sheet>
  1430 + <password>Encrypted </password>
  1431 + <splitevery>0</splitevery>
  1432 + <usetempfiles>N</usetempfiles>
  1433 + <tempdirectory/>
  1434 + </file>
  1435 + <template>
  1436 + <enabled>N</enabled>
  1437 + <append>N</append>
  1438 + <filename>template.xls</filename>
  1439 + </template>
  1440 + <fields>
  1441 + <field>
  1442 + <name>license_number</name>
  1443 + <type>String</type>
  1444 + <format/>
  1445 + </field>
  1446 + <field>
  1447 + <name>internal_number</name>
  1448 + <type>String</type>
  1449 + <format/>
  1450 + </field>
  1451 + <field>
  1452 + <name>company</name>
  1453 + <type>String</type>
  1454 + <format/>
  1455 + </field>
  1456 + <field>
  1457 + <name>branch</name>
  1458 + <type>String</type>
  1459 + <format/>
  1460 + </field>
  1461 + <field>
  1462 + <name>equipment_supplier</name>
  1463 + <type>String</type>
  1464 + <format/>
  1465 + </field>
  1466 + <field>
  1467 + <name>terminal_number</name>
  1468 + <type>String</type>
  1469 + <format/>
  1470 + </field>
  1471 + <field>
  1472 + <name>error_count</name>
  1473 + <type>Integer</type>
  1474 + <format/>
  1475 + </field>
  1476 + <field>
  1477 + <name>error_desc</name>
  1478 + <type>String</type>
  1479 + <format/>
  1480 + </field>
  1481 + <field>
  1482 + <name>error_column1</name>
  1483 + <type>String</type>
  1484 + <format/>
  1485 + </field>
  1486 + <field>
  1487 + <name>error_column2</name>
  1488 + <type>String</type>
  1489 + <format/>
  1490 + </field>
  1491 + </fields>
  1492 + <custom>
  1493 + <header_font_name>arial</header_font_name>
  1494 + <header_font_size>10</header_font_size>
  1495 + <header_font_bold>N</header_font_bold>
  1496 + <header_font_italic>N</header_font_italic>
  1497 + <header_font_underline>no</header_font_underline>
  1498 + <header_font_orientation>horizontal</header_font_orientation>
  1499 + <header_font_color>black</header_font_color>
  1500 + <header_background_color>none</header_background_color>
  1501 + <header_row_height>255</header_row_height>
  1502 + <header_alignment>left</header_alignment>
  1503 + <header_image/>
  1504 + <row_font_name>arial</row_font_name>
  1505 + <row_font_size>10</row_font_size>
  1506 + <row_font_color>black</row_font_color>
  1507 + <row_background_color>none</row_background_color>
  1508 + </custom>
  1509 + <cluster_schema/>
  1510 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1511 + <xloc>561</xloc>
  1512 + <yloc>479</yloc>
  1513 + <draw>Y</draw>
  1514 + </GUI>
  1515 + </step>
  1516 +
  1517 + <step>
  1518 + <name>&#x4fee;&#x6b63;&#x5b57;&#x6bb5;&#x540d;&#xff08;&#x7a7a;&#x683c;&#x66ff;&#x6362;&#x6210;_&#xff09;</name>
  1519 + <type>SelectValues</type>
  1520 + <description/>
  1521 + <distribute>Y</distribute>
  1522 + <custom_distribution/>
  1523 + <copies>1</copies>
  1524 + <partitioning>
  1525 + <method>none</method>
  1526 + <schema_name/>
  1527 + </partitioning>
  1528 + <fields> <field> <name>equipment supplier</name>
  1529 + <rename>equipment_supplier</rename>
  1530 + <length>-2</length>
  1531 + <precision>-2</precision>
  1532 + </field> <field> <name>internal number</name>
  1533 + <rename>internal_number</rename>
  1534 + <length>-2</length>
  1535 + <precision>-2</precision>
  1536 + </field> <field> <name>license number</name>
  1537 + <rename>license_number</rename>
  1538 + <length>-2</length>
  1539 + <precision>-2</precision>
  1540 + </field> <field> <name>terminal number</name>
  1541 + <rename>terminal_number</rename>
  1542 + <length>-2</length>
  1543 + <precision>-2</precision>
  1544 + </field> <field> <name>is it a tram</name>
  1545 + <rename>is_it_a_tram</rename>
  1546 + <length>-2</length>
  1547 + <precision>-2</precision>
  1548 + </field> <select_unspecified>Y</select_unspecified>
  1549 + </fields> <cluster_schema/>
  1550 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1551 + <xloc>218</xloc>
  1552 + <yloc>168</yloc>
  1553 + <draw>Y</draw>
  1554 + </GUI>
  1555 + </step>
  1556 +
  1557 + <step_error_handling>
  1558 + <error>
  1559 + <source_step>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_cars 2</source_step>
  1560 + <target_step>&#x9519;&#x8bef;&#x8f93;&#x51fa; 2</target_step>
  1561 + <is_enabled>Y</is_enabled>
  1562 + <nr_valuename>error_count</nr_valuename>
  1563 + <descriptions_valuename>error_desc</descriptions_valuename>
  1564 + <fields_valuename>error_column1</fields_valuename>
  1565 + <codes_valuename>error_column2</codes_valuename>
  1566 + <max_errors/>
  1567 + <max_pct_errors/>
  1568 + <min_pct_rows/>
  1569 + </error>
  1570 + </step_error_handling>
  1571 + <slave-step-copy-partition-distribution>
  1572 +</slave-step-copy-partition-distribution>
  1573 + <slave_transformation>N</slave_transformation>
  1574 +
  1575 +</transformation>
... ...
src/main/resources/datatools/ktrs/carsDataOutput.ktr renamed to src/main/resources/datatools/ktrs/zh/vehicle-basic-data_export.ktr
1 1 <?xml version="1.0" encoding="UTF-8"?>
2 2 <transformation>
3 3 <info>
4   - <name>&#x8f66;&#x8f86;&#x4fe1;&#x606f;&#x5bfc;&#x51fa;</name>
  4 + <name>&#x8f66;&#x8f86;&#x4fe1;&#x606f;&#x5bfc;&#x51fa;_zh</name>
5 5 <description>&#x8f66;&#x8f86;&#x4fe1;&#x606f;&#x5bfc;&#x51fa;</description>
6 6 <extended_description>&#x8f66;&#x8f86;&#x57fa;&#x7840;&#x4fe1;&#x606f;</extended_description>
7 7 <trans_version/>
... ... @@ -396,6 +396,33 @@
396 396 </attributes>
397 397 </connection>
398 398 <connection>
  399 + <name>test_control_local</name>
  400 + <server>localhost</server>
  401 + <type>MYSQL</type>
  402 + <access>Native</access>
  403 + <database>test_control</database>
  404 + <port>3306</port>
  405 + <username>root</username>
  406 + <password>Encrypted </password>
  407 + <servername/>
  408 + <data_tablespace/>
  409 + <index_tablespace/>
  410 + <attributes>
  411 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  412 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  413 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  414 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  415 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  416 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  417 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  418 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  419 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  420 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  421 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  422 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  423 + </attributes>
  424 + </connection>
  425 + <connection>
399 426 <name>test_control&#xff08;&#x672c;&#x673a;&#xff09;</name>
400 427 <server>127.0.0.1</server>
401 428 <type>MYSQL</type>
... ... @@ -408,6 +435,62 @@
408 435 <data_tablespace/>
409 436 <index_tablespace/>
410 437 <attributes>
  438 + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
  439 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  440 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  441 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  442 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  443 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  444 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  445 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  446 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  447 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  448 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  449 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  450 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  451 + </attributes>
  452 + </connection>
  453 + <connection>
  454 + <name>wzk_mysql_jndi</name>
  455 + <server/>
  456 + <type>MYSQL</type>
  457 + <access>JNDI</access>
  458 + <database>wzk_mysql</database>
  459 + <port>1521</port>
  460 + <username/>
  461 + <password>Encrypted </password>
  462 + <servername/>
  463 + <data_tablespace/>
  464 + <index_tablespace/>
  465 + <attributes>
  466 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  467 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  468 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  469 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  470 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  471 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  472 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  473 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  474 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  475 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  476 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  477 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  478 + </attributes>
  479 + </connection>
  480 + <connection>
  481 + <name>wzk&#xff08;&#x672c;&#x673a;&#xff09;</name>
  482 + <server>localhost</server>
  483 + <type>MYSQL</type>
  484 + <access>Native</access>
  485 + <database>pdgj_wzk_sys</database>
  486 + <port>3306</port>
  487 + <username>root</username>
  488 + <password>Encrypted </password>
  489 + <servername/>
  490 + <data_tablespace/>
  491 + <index_tablespace/>
  492 + <attributes>
  493 + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
411 494 <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
412 495 <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
413 496 <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
... ... @@ -575,7 +658,7 @@
575 658 </connection>
576 659 <connection>
577 660 <name>&#x516c;&#x53f8;ygjw</name>
578   - <server>192.168.168.1</server>
  661 + <server>192.168.168.178</server>
579 662 <type>ORACLE</type>
580 663 <access>Native</access>
581 664 <database>orcl</database>
... ... @@ -597,6 +680,126 @@
597 680 <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
598 681 </attributes>
599 682 </connection>
  683 + <connection>
  684 + <name>&#x516c;&#x53f8;&#x673a;&#x52a1;_pdgj</name>
  685 + <server>192.168.168.178</server>
  686 + <type>ORACLE</type>
  687 + <access>Native</access>
  688 + <database>orcl</database>
  689 + <port>1521</port>
  690 + <username>pdgj</username>
  691 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10ce96a8d0</password>
  692 + <servername/>
  693 + <data_tablespace/>
  694 + <index_tablespace/>
  695 + <attributes>
  696 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  697 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  698 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  699 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  700 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  701 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  702 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  703 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  704 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  705 + </attributes>
  706 + </connection>
  707 + <connection>
  708 + <name>&#x5916;&#x7f51;vpn&#x4e34;&#x6e2f;&#x673a;&#x52a1;oracle</name>
  709 + <server>10.10.150.114</server>
  710 + <type>ORACLE</type>
  711 + <access>Native</access>
  712 + <database>helowin</database>
  713 + <port>1521</port>
  714 + <username>lgjw</username>
  715 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d295a5cd</password>
  716 + <servername/>
  717 + <data_tablespace/>
  718 + <index_tablespace/>
  719 + <attributes>
  720 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  721 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  722 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  723 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  724 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  725 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  726 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  727 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  728 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  729 + </attributes>
  730 + </connection>
  731 + <connection>
  732 + <name>&#x5916;&#x7f51;&#x5357;&#x6c47;&#x673a;&#x52a1;oracle</name>
  733 + <server>58.247.254.118</server>
  734 + <type>ORACLE</type>
  735 + <access>Native</access>
  736 + <database>orcl</database>
  737 + <port>15211</port>
  738 + <username>nhjw</username>
  739 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d09aa5cd</password>
  740 + <servername/>
  741 + <data_tablespace/>
  742 + <index_tablespace/>
  743 + <attributes>
  744 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  745 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  746 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  747 + <attribute><code>PORT_NUMBER</code><attribute>15211</attribute></attribute>
  748 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  749 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  750 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  751 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  752 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  753 + </attributes>
  754 + </connection>
  755 + <connection>
  756 + <name>&#x5916;&#x7f51;&#x6768;&#x9ad8;&#x673a;&#x52a1;oracle</name>
  757 + <server>58.247.254.118</server>
  758 + <type>ORACLE</type>
  759 + <access>Native</access>
  760 + <database>orcl</database>
  761 + <port>15211</port>
  762 + <username>ygjw</username>
  763 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10c795a5cd</password>
  764 + <servername/>
  765 + <data_tablespace/>
  766 + <index_tablespace/>
  767 + <attributes>
  768 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  769 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  770 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  771 + <attribute><code>PORT_NUMBER</code><attribute>15211</attribute></attribute>
  772 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  773 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  774 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  775 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  776 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  777 + </attributes>
  778 + </connection>
  779 + <connection>
  780 + <name>&#x5916;&#x7f51;&#x91d1;&#x9ad8;&#x673a;&#x52a1;oracle</name>
  781 + <server>58.247.254.118</server>
  782 + <type>ORACLE</type>
  783 + <access>Native</access>
  784 + <database>orcl</database>
  785 + <port>15211</port>
  786 + <username>jwgl</username>
  787 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d485a8d6</password>
  788 + <servername/>
  789 + <data_tablespace/>
  790 + <index_tablespace/>
  791 + <attributes>
  792 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  793 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  794 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  795 + <attribute><code>PORT_NUMBER</code><attribute>15211</attribute></attribute>
  796 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  797 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  798 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  799 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  800 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  801 + </attributes>
  802 + </connection>
600 803 <order>
601 804 <hop> <from>&#x516c;&#x53f8;&#x67e5;&#x8be2;</from><to>&#x5206;&#x516c;&#x53f8;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>
602 805 <hop> <from>&#x5206;&#x516c;&#x53f8;&#x67e5;&#x8be2;</from><to>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</to><enabled>Y</enabled> </hop>
... ...
src/main/resources/datatools/ktrs/carsDataInput.ktr renamed to src/main/resources/datatools/ktrs/zh/vehicle-basic-data_import.ktr
1 1 <?xml version="1.0" encoding="UTF-8"?>
2 2 <transformation>
3 3 <info>
4   - <name>&#x8f66;&#x8f86;&#x4fe1;&#x606f;&#x5bfc;&#x5165;</name>
  4 + <name>&#x8f66;&#x8f86;&#x4fe1;&#x606f;&#x5bfc;&#x5165;_zh</name>
5 5 <description>&#x8f66;&#x8f86;&#x4fe1;&#x606f;&#x5bfc;&#x5165;</description>
6 6 <extended_description>&#x8f66;&#x8f86;&#x57fa;&#x7840;&#x4fe1;&#x606f;</extended_description>
7 7 <trans_version/>
... ... @@ -391,6 +391,33 @@
391 391 </attributes>
392 392 </connection>
393 393 <connection>
  394 + <name>test_control_local</name>
  395 + <server>localhost</server>
  396 + <type>MYSQL</type>
  397 + <access>Native</access>
  398 + <database>test_control</database>
  399 + <port>3306</port>
  400 + <username>root</username>
  401 + <password>Encrypted </password>
  402 + <servername/>
  403 + <data_tablespace/>
  404 + <index_tablespace/>
  405 + <attributes>
  406 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  407 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  408 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  409 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  410 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  411 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  412 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  413 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  414 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  415 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  416 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  417 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  418 + </attributes>
  419 + </connection>
  420 + <connection>
394 421 <name>test_control&#xff08;&#x672c;&#x673a;&#xff09;</name>
395 422 <server>127.0.0.1</server>
396 423 <type>MYSQL</type>
... ... @@ -403,6 +430,62 @@
403 430 <data_tablespace/>
404 431 <index_tablespace/>
405 432 <attributes>
  433 + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
  434 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  435 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  436 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  437 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  438 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  439 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  440 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  441 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  442 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  443 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  444 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  445 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  446 + </attributes>
  447 + </connection>
  448 + <connection>
  449 + <name>wzk_mysql_jndi</name>
  450 + <server/>
  451 + <type>MYSQL</type>
  452 + <access>JNDI</access>
  453 + <database>wzk_mysql</database>
  454 + <port>1521</port>
  455 + <username/>
  456 + <password>Encrypted </password>
  457 + <servername/>
  458 + <data_tablespace/>
  459 + <index_tablespace/>
  460 + <attributes>
  461 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  462 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  463 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  464 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  465 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  466 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  467 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  468 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  469 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  470 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  471 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  472 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  473 + </attributes>
  474 + </connection>
  475 + <connection>
  476 + <name>wzk&#xff08;&#x672c;&#x673a;&#xff09;</name>
  477 + <server>localhost</server>
  478 + <type>MYSQL</type>
  479 + <access>Native</access>
  480 + <database>pdgj_wzk_sys</database>
  481 + <port>3306</port>
  482 + <username>root</username>
  483 + <password>Encrypted </password>
  484 + <servername/>
  485 + <data_tablespace/>
  486 + <index_tablespace/>
  487 + <attributes>
  488 + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
406 489 <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
407 490 <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
408 491 <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
... ... @@ -570,7 +653,7 @@
570 653 </connection>
571 654 <connection>
572 655 <name>&#x516c;&#x53f8;ygjw</name>
573   - <server>192.168.168.1</server>
  656 + <server>192.168.168.178</server>
574 657 <type>ORACLE</type>
575 658 <access>Native</access>
576 659 <database>orcl</database>
... ... @@ -592,6 +675,126 @@
592 675 <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
593 676 </attributes>
594 677 </connection>
  678 + <connection>
  679 + <name>&#x516c;&#x53f8;&#x673a;&#x52a1;_pdgj</name>
  680 + <server>192.168.168.178</server>
  681 + <type>ORACLE</type>
  682 + <access>Native</access>
  683 + <database>orcl</database>
  684 + <port>1521</port>
  685 + <username>pdgj</username>
  686 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10ce96a8d0</password>
  687 + <servername/>
  688 + <data_tablespace/>
  689 + <index_tablespace/>
  690 + <attributes>
  691 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  692 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  693 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  694 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  695 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  696 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  697 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  698 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  699 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  700 + </attributes>
  701 + </connection>
  702 + <connection>
  703 + <name>&#x5916;&#x7f51;vpn&#x4e34;&#x6e2f;&#x673a;&#x52a1;oracle</name>
  704 + <server>10.10.150.114</server>
  705 + <type>ORACLE</type>
  706 + <access>Native</access>
  707 + <database>helowin</database>
  708 + <port>1521</port>
  709 + <username>lgjw</username>
  710 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d295a5cd</password>
  711 + <servername/>
  712 + <data_tablespace/>
  713 + <index_tablespace/>
  714 + <attributes>
  715 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  716 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  717 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  718 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  719 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  720 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  721 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  722 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  723 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  724 + </attributes>
  725 + </connection>
  726 + <connection>
  727 + <name>&#x5916;&#x7f51;&#x5357;&#x6c47;&#x673a;&#x52a1;oracle</name>
  728 + <server>58.247.254.118</server>
  729 + <type>ORACLE</type>
  730 + <access>Native</access>
  731 + <database>orcl</database>
  732 + <port>15211</port>
  733 + <username>nhjw</username>
  734 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d09aa5cd</password>
  735 + <servername/>
  736 + <data_tablespace/>
  737 + <index_tablespace/>
  738 + <attributes>
  739 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  740 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  741 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  742 + <attribute><code>PORT_NUMBER</code><attribute>15211</attribute></attribute>
  743 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  744 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  745 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  746 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  747 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  748 + </attributes>
  749 + </connection>
  750 + <connection>
  751 + <name>&#x5916;&#x7f51;&#x6768;&#x9ad8;&#x673a;&#x52a1;oracle</name>
  752 + <server>58.247.254.118</server>
  753 + <type>ORACLE</type>
  754 + <access>Native</access>
  755 + <database>orcl</database>
  756 + <port>15211</port>
  757 + <username>ygjw</username>
  758 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10c795a5cd</password>
  759 + <servername/>
  760 + <data_tablespace/>
  761 + <index_tablespace/>
  762 + <attributes>
  763 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  764 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  765 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  766 + <attribute><code>PORT_NUMBER</code><attribute>15211</attribute></attribute>
  767 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  768 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  769 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  770 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  771 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  772 + </attributes>
  773 + </connection>
  774 + <connection>
  775 + <name>&#x5916;&#x7f51;&#x91d1;&#x9ad8;&#x673a;&#x52a1;oracle</name>
  776 + <server>58.247.254.118</server>
  777 + <type>ORACLE</type>
  778 + <access>Native</access>
  779 + <database>orcl</database>
  780 + <port>15211</port>
  781 + <username>jwgl</username>
  782 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d485a8d6</password>
  783 + <servername/>
  784 + <data_tablespace/>
  785 + <index_tablespace/>
  786 + <attributes>
  787 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  788 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  789 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  790 + <attribute><code>PORT_NUMBER</code><attribute>15211</attribute></attribute>
  791 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  792 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  793 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  794 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  795 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  796 + </attributes>
  797 + </connection>
595 798 <order>
596 799 <hop> <from>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_cars 2</from><to>&#x9519;&#x8bef;&#x8f93;&#x51fa; 2</to><enabled>Y</enabled> </hop>
597 800 <hop> <from>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</from><to>&#x539f;&#x59cb;&#x7cfb;&#x7edf;&#x5bfc;&#x51fa;&#x7684;Excel&#x8f93;&#x5165;</to><enabled>Y</enabled> </hop>
... ...
src/main/resources/message_en_US.properties
... ... @@ -4525,4 +4525,19 @@ txt-4525=Format: 00:00
4525 4525 txt-4526=Live
4526 4526 txt-4527=Historical data
4527 4527 txt-5000=Operation successfully
4528   -txt-5001=Operation failed
4529 4528 \ No newline at end of file
  4529 +txt-5001=Operation failed
  4530 +
  4531 +dataToolsServiceImpl-line132=not .xls .xlsx type file.
  4532 +dataToolsServiceImpl-line143=table content is empty.
  4533 +dataToolsServiceImpl-line150=sheet1
  4534 +dataToolsServiceImpl-line193=not set transpath paramter, not found ktr file.
  4535 +dataToolsServiceImpl-line260=not set transpath paramter, not found ktr file.
  4536 +
  4537 +carsServiceImpl-line104=duplicate internal number
  4538 +carsServiceImpl-line118=duplicate vehicle Code
  4539 +carsServiceImpl-line132=duplicate license number
  4540 +carsServiceImpl-line147=duplicate terminal number
  4541 +
  4542 +bController-line192=import file not exist
  4543 +bController-line197=import file successful
  4544 +bController-line217=upload and import file successful
... ...
src/main/resources/message_zh_CN.properties
... ... @@ -4526,4 +4526,19 @@ txt-4525=格式: 00:00
4526 4526 txt-4526=直播
4527 4527 txt-4527=历史数据
4528 4528 txt-5000=操作成功
4529   -txt-5001=操作失败
4530 4529 \ No newline at end of file
  4530 +txt-5001=操作失败
  4531 +
  4532 +dataToolsServiceImpl-line132=非.xls .xlsx 格式文件!
  4533 +dataToolsServiceImpl-line143=表格内容为空!
  4534 +dataToolsServiceImpl-line150=工作表1
  4535 +dataToolsServiceImpl-line193=没有指定transpath参数值,无法确定ktr转换文件!
  4536 +dataToolsServiceImpl-line260=没有指定transpath参数值,无法确定ktr转换文件!
  4537 +
  4538 +carsServiceImpl-line104=车辆内部编号/自编号重复
  4539 +carsServiceImpl-line118=车辆编号重复
  4540 +carsServiceImpl-line132=车牌号重复
  4541 +carsServiceImpl-line147=设备编号重复
  4542 +
  4543 +bController-line192=导入文件不存在!
  4544 +bController-line197=导入文件成功
  4545 +bController-line217=上传&导入文件成功
... ...
src/main/resources/static/pages/scheduleApp/language/en.js
... ... @@ -96,8 +96,12 @@ var ScheduleApp_en_language = {
96 96 "busInfoManage_index_breadcrumb-title-3" : "vehicle information management",
97 97 // line36
98 98 "busInfoManage_index_caption-title" : "Vehicle information table",
  99 + // line41
  100 + "busInfoManage_index_caption-action-1" : "Add vehicle information",
99 101 // line47
100 102 "busInfoManage_index_tool-title" : "Data tool",
  103 + // line54
  104 + "busInfoManage_index_tool-action-1" : "Import from excel",
101 105 // line60
102 106 "busInfoManage_index_tool-action-2" : "Export to excel",
103 107  
... ... @@ -352,6 +356,19 @@ var ScheduleApp_en_language = {
352 356 "busInfoManage_form_page_line473_txt-4173" : "Submit",
353 357 "busInfoManage_form_page_line474_txt-3817" : "Cancel",
354 358  
  359 + // 页面:dataImport.html
  360 + "busInfoManage_dataImport_page_line2_txt-4338" : "Vehicle basic information import from excel",
  361 + "busInfoManage_dataImport_page_line7_txt-2684" : "Select file",
  362 + "busInfoManage_dataImport_page_line20_txt-3658" : "file name",
  363 + "busInfoManage_dataImport_page_line21_txt-4092" : "Size(MB)",
  364 + "busInfoManage_dataImport_page_line22_txt-4091" : "progress",
  365 + "busInfoManage_dataImport_page_line23_txt-3874" : "Status",
  366 + "busInfoManage_dataImport_page_line24_txt-3942" : "Operation",
  367 + "busInfoManage_dataImport_page_line53_txt-4154" : "upload",
  368 + "busInfoManage_dataImport_page_line57_txt-3817" : "Cancel",
  369 + "busInfoManage_dataImport_page_line60_txt-3868" : "Delete",
  370 + "busInfoManage_dataImport_page_line71_txt-4015" : "Close",
  371 +
355 372 // module.js
356 373 "busInfoManage_module_js_line31_txt-2479" : "Vehicle number",
357 374 "busInfoManage_module_js_line33_txt-3764" : "Self-numbering",
... ...
src/main/resources/static/pages/scheduleApp/language/zh.js
... ... @@ -96,8 +96,12 @@ var ScheduleApp_zh_language = {
96 96 "busInfoManage_index_breadcrumb-title-3" : "车辆信息管理",
97 97 // line36
98 98 "busInfoManage_index_caption-title" : "车辆信息表",
  99 + // line41
  100 + "busInfoManage_index_caption-action-1" : "添加车辆信息",
99 101 // line47
100 102 "busInfoManage_index_tool-title" : "数据工具",
  103 + // line54
  104 + "busInfoManage_index_tool-action-1" : "导入excel",
101 105 // line60
102 106 "busInfoManage_index_tool-action-2" : "导出excel",
103 107  
... ... @@ -352,6 +356,19 @@ var ScheduleApp_zh_language = {
352 356 "busInfoManage_form_page_line473_txt-4173" : "提交",
353 357 "busInfoManage_form_page_line474_txt-3817" : "取消",
354 358  
  359 + // 页面:dataImport.html
  360 + "busInfoManage_dataImport_page_line2_txt-4338" : "车辆基础信息excel数据导入",
  361 + "busInfoManage_dataImport_page_line7_txt-2684" : "选择文件",
  362 + "busInfoManage_dataImport_page_line20_txt-3658" : "文件名",
  363 + "busInfoManage_dataImport_page_line21_txt-4092" : "大小(M)",
  364 + "busInfoManage_dataImport_page_line22_txt-4091" : "进度",
  365 + "busInfoManage_dataImport_page_line23_txt-3874" : "状态",
  366 + "busInfoManage_dataImport_page_line24_txt-3942" : "操作",
  367 + "busInfoManage_dataImport_page_line53_txt-4154" : "上传",
  368 + "busInfoManage_dataImport_page_line57_txt-3817" : "取消",
  369 + "busInfoManage_dataImport_page_line60_txt-3868" : "删除",
  370 + "busInfoManage_dataImport_page_line71_txt-4015" : "关闭",
  371 +
355 372 // module.js
356 373 "busInfoManage_module_js_line31_txt-2479" : "车辆编号",
357 374 "busInfoManage_module_js_line33_txt-3764" : "自编号",
... ...
src/main/resources/static/pages/scheduleApp/module/basicInfo/busInfoManage/dataImport.html
1 1 <div class="modal-header">
2   - <h3 class="modal-title">$$$$$${txt-4338}</h3>
  2 + <h3 class="modal-title">{{"busInfoManage_dataImport_page_line2_txt-4338" | translate}}</h3>
3 3 </div>
4 4 <div class="modal-body">
5 5 <div class="col-md-6">
6 6 <div class="input-group">
7   - <input type="file" class="form-control" nv-file-select="" uploader="ctrl.uploader"/>
8   - <span class="input-group-btn">
  7 + <label class="btn btn-info" for="xFile">{{"busInfoManage_dataImport_page_line7_txt-2684" | translate}}</label>
  8 + <input id="xFile" type="file" style="position: absolute;clip: rect(0 0 0 0);" class="form-control" nv-file-select="" uploader="ctrl.uploader"/>
9 9 <button type="button" ng-click="ctrl.clearInputFile()" class="btn btn-default">
10 10 <span class="glyphicon glyphicon-trash"></span>
11 11 </button>
12   - </span>
13 12 </div>
14 13 </div>
15 14  
... ... @@ -17,11 +16,11 @@
17 16 <table class="table table-hover table-light">
18 17 <thead>
19 18 <tr class="uppercase">
20   - <th width="50%">$$$$$${txt-3658}</th>
21   - <th ng-show="ctrl.uploader.isHTML5">$$$$$${txt-4092}</th>
22   - <th ng-show="ctrl.uploader.isHTML5">$$$$$${txt-4091}</th>
23   - <th>$$$$$${txt-3874}</th>
24   - <th>$$$$$${txt-3942}</th>
  19 + <th width="50%">{{"busInfoManage_dataImport_page_line20_txt-3658" | translate}}</th>
  20 + <th ng-show="ctrl.uploader.isHTML5">{{"busInfoManage_dataImport_page_line21_txt-4092" | translate}}</th>
  21 + <th ng-show="ctrl.uploader.isHTML5">{{"busInfoManage_dataImport_page_line22_txt-4091" | translate}}</th>
  22 + <th>{{"busInfoManage_dataImport_page_line23_txt-3874" | translate}}</th>
  23 + <th>{{"busInfoManage_dataImport_page_line24_txt-3942" | translate}}</th>
25 24 </tr>
26 25 </thead>
27 26 <tbody>
... ... @@ -50,14 +49,14 @@
50 49 <td nowrap>
51 50 <button type="button" class="btn btn-success btn-xs" ng-click="item.upload()"
52 51 ng-disabled="item.isReady || item.isUploading || item.isSuccess">
53   - <span class="glyphicon glyphicon-upload"></span> $$$$$${txt-4154}
  52 + <span class="glyphicon glyphicon-upload"></span> {{"busInfoManage_dataImport_page_line53_txt-4154" | translate}}
54 53 </button>
55 54 <button type="button" class="btn btn-warning btn-xs" ng-click="item.cancel()"
56 55 ng-disabled="!item.isUploading">
57   - <span class="glyphicon glyphicon-ban-circle"></span> $$$$$${txt-3817}
  56 + <span class="glyphicon glyphicon-ban-circle"></span> {{"busInfoManage_dataImport_page_line57_txt-3817" | translate}}
58 57 </button>
59 58 <button type="button" class="btn btn-danger btn-xs" ng-click="item.remove()">
60   - <span class="glyphicon glyphicon-trash"></span> $$$$$${txt-3868}
  59 + <span class="glyphicon glyphicon-trash"></span> {{"busInfoManage_dataImport_page_line60_txt-3868" | translate}}
61 60 </button>
62 61 </td>
63 62 </tr>
... ... @@ -68,5 +67,5 @@
68 67 </div>
69 68  
70 69 <div class="modal-footer">
71   - <button class="btn btn-primary" ng-click="ctrl.close()" ng-disabled="item.isUploading">$$$$$${txt-4015}</button>
72   -</div>
73 70 \ No newline at end of file
  71 + <button class="btn btn-primary" ng-click="ctrl.close()" ng-disabled="item.isUploading">{{"busInfoManage_dataImport_page_line71_txt-4015" | translate}}</button>
  72 +</div>
... ...
src/main/resources/static/pages/scheduleApp/module/basicInfo/busInfoManage/index.html
... ... @@ -36,10 +36,10 @@
36 36 <span class="caption-subject bold uppercase">{{"busInfoManage_index_caption-title" | translate}}</span>
37 37 </div>
38 38 <div class="actions">
39   - <!--<a href="javascript:" class="btn blue" ng-click="ctrl.goForm()">-->
40   - <!--<i class="fa fa-plus"></i>-->
41   - <!--添加车辆信息-->
42   - <!--</a>-->
  39 + <a href="javascript:" class="btn blue" ng-click="ctrl.goForm()">
  40 + <i class="fa fa-plus"></i>
  41 + {{"busInfoManage_index_caption-action-1" | translate}}
  42 + </a>
43 43  
44 44 <div class="btn-group">
45 45 <a href="javascript:" class="btn red btn-outline" data-toggle="dropdown">
... ... @@ -48,12 +48,12 @@
48 48 <i class="fa fa-angle-down"></i>
49 49 </a>
50 50 <ul class="dropdown-menu pull-right">
51   - <!--<li>-->
52   - <!--<a href="javascript:" class="tool-action" ng-click="ctrl.importData()">-->
53   - <!--<i class="fa fa-file-excel-o"></i>-->
54   - <!--导入excel-->
55   - <!--</a>-->
56   - <!--</li>-->
  51 + <li>
  52 + <a href="javascript:" class="tool-action" ng-click="ctrl.importData()">
  53 + <i class="fa fa-file-excel-o"></i>
  54 + {{"busInfoManage_index_tool-action-1" | translate}}
  55 + </a>
  56 + </li>
57 57 <li>
58 58 <a href="javascript:" class="tool-action" ng-click="ctrl.exportData()">
59 59 <i class="fa fa-file-excel-o"></i>
... ...