Commit 3d521c543cbf9a5f889e44f15c8d69c149e12f06

Authored by 徐烜
1 parent d6584abe

1、国际化改造,时刻表管理后端国际化改造

Showing 31 changed files with 22617 additions and 607 deletions
src/main/java/com/bsth/controller/schedule/core/legacy/TTInfoDetailController.java
... ... @@ -11,6 +11,7 @@ import com.bsth.service.schedule.timetable.TimetableExcelFormatType;
11 11 import com.bsth.service.schedule.utils.DataToolsFile;
12 12 import com.bsth.service.schedule.utils.DataToolsFileType;
13 13 import com.bsth.service.schedule.utils.MyHttpUtils;
  14 +import com.bsth.util.I18n;
14 15 import org.springframework.beans.factory.annotation.Autowired;
15 16 import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;
16 17 import org.springframework.web.bind.annotation.*;
... ... @@ -51,7 +52,7 @@ public class TTInfoDetailController extends BController<TTInfoDetail, Long> {
51 52 Map<String, Object> rtn = new HashMap<>();
52 53 try {
53 54 if (lineversion == null) {
54   - throw new Exception("线路版本未知");
  55 + throw new Exception(I18n.getInstance().getMessage("tTInfoDetailController-line54"));
55 56 }
56 57 ttInfoDetailService.validateExcelSheet(filename, sheetname, lineid, linename, lineversion,
57 58 TimetableExcelFormatType.fromDesc(excelFormatType));
... ... @@ -145,11 +146,11 @@ public class TTInfoDetailController extends BController&lt;TTInfoDetail, Long&gt; {
145 146 try {
146 147 this.ttInfoDetailService.addLp(ttInfoId, lpId);
147 148 rtn.put("status", ResponseCode.SUCCESS);
148   - rtn.put("data", "添加路牌成功!");
  149 + rtn.put("data", "ok!");
149 150 } catch (Exception exp) {
150 151 exp.printStackTrace();
151 152 rtn.put("status", ResponseCode.ERROR);
152   - rtn.put("msg", "添加路牌失败:" + exp.getMessage());
  153 + rtn.put("msg", "Failure:" + exp.getMessage());
153 154 }
154 155 return rtn;
155 156 }
... ... @@ -160,11 +161,11 @@ public class TTInfoDetailController extends BController&lt;TTInfoDetail, Long&gt; {
160 161 try {
161 162 this.ttInfoDetailService.removeBcByLp(ttInfoId, lpId);
162 163 rtn.put("status", ResponseCode.SUCCESS);
163   - rtn.put("data", "删除路牌成功!");
  164 + rtn.put("data", "ok!");
164 165 } catch (Exception exp) {
165 166 exp.printStackTrace();
166 167 rtn.put("status", ResponseCode.ERROR);
167   - rtn.put("msg", "删除路牌失败:" + exp.getMessage());
  168 + rtn.put("msg", "Failure:" + exp.getMessage());
168 169 }
169 170 return rtn;
170 171 }
... ... @@ -177,11 +178,11 @@ public class TTInfoDetailController extends BController&lt;TTInfoDetail, Long&gt; {
177 178 try {
178 179 this.ttInfoDetailService.switchBcByLp(ttInfoId, lpAId, lpBId);
179 180 rtn.put("status", ResponseCode.SUCCESS);
180   - rtn.put("data", "调换路牌成功!");
  181 + rtn.put("data", "ok!");
181 182 } catch (Exception exp) {
182 183 exp.printStackTrace();
183 184 rtn.put("status", ResponseCode.ERROR);
184   - rtn.put("msg", "调换路牌失败:" + exp.getMessage());
  185 + rtn.put("msg", "Failure:" + exp.getMessage());
185 186 }
186 187 return rtn;
187 188 }
... ... @@ -197,7 +198,7 @@ public class TTInfoDetailController extends BController&lt;TTInfoDetail, Long&gt; {
197 198 } else if ("xlsx".equals(type)) {
198 199 dataToolsFile = ttInfoDetailService.exportDynamicTTinfo(dtInfos, DataToolsFileType.XLSX);
199 200 } else {
200   - throw new Exception("未知的导出格式==>" + type);
  201 + throw new Exception("unknown export type==>" + type);
201 202 }
202 203  
203 204 // 流输出导出文件
... ...
src/main/java/com/bsth/service/schedule/datatools/TTInfoDetailDataToolsImpl.java
... ... @@ -7,6 +7,8 @@ import com.bsth.service.schedule.timetable.TimetableExcelData;
7 7 import com.bsth.service.schedule.timetable.TimetableExcelFormatType;
8 8 import com.bsth.service.schedule.timetable.strategy.impl.TimetableExcelDataImportStrategyImpl;
9 9 import com.bsth.service.schedule.utils.*;
  10 +import com.bsth.util.I18n;
  11 +import com.google.common.io.Files;
10 12 import jxl.Sheet;
11 13 import jxl.Workbook;
12 14 import jxl.write.Label;
... ... @@ -53,26 +55,43 @@ public class TTInfoDetailDataToolsImpl implements DataToolsService, TTInfoDetail
53 55 @Override
54 56 public DataToolsFile uploadFile(String filename, byte[] filedata) throws ScheduleException {
55 57 try {
56   - // 对上传的excel文件做处理,将第一个sheet名字设定为工作表1
57   - DataToolsFile file = dataToolsService.uploadFile(filename, filedata);
58   -// Workbook workbook = Workbook.getWorkbook(file);
59   -// Sheet sheet = workbook.getSheet(0);
60   -//
61   -// File fileCal = new File(file.getAbsolutePath() + "_sheetChange.xls");
62   -// WritableWorkbook writableWorkbook = Workbook.createWorkbook(fileCal);
63   -// WritableSheet writableSheet = writableWorkbook.createSheet("工作表1", 0);
64   -// for (int i = 0; i < sheet.getRows(); i++) {
65   -// Cell[] cells = sheet.getRow(i);
66   -// for (int j = 0; j < cells.length; j++) {
67   -// writableSheet.addCell(new Label(j, i, cells[j].getContents()));
68   -// }
69   -// }
70   -// writableWorkbook.write();
71   -// writableWorkbook.close();
72   -//
73   -// return fileCal;
  58 + LOGGER.info("start uploadFile...originalFilename={}", filename);
74 59  
75   - return file;
  60 + // 1、上传文件到指定目录
  61 +
  62 + DataToolsFile dataToolsFile = new DataToolsFile();
  63 + // 判定文件类型(目前只支持xls,xlsx文件)
  64 + if (DataToolsFileType.XLS.isThisType(filedata)) {
  65 + // xls文件
  66 + dataToolsFile.setFileType(DataToolsFileType.XLS);
  67 + dataToolsFile.setFile(new File(DataToolsFileType.XLS.getNewFileName(
  68 + dataToolsProperties.getFileuploadDir(),
  69 + File.separator,
  70 + filename,
  71 + "-upload-",
  72 + new DateTime().toString("yyyyMMddHHmmss")
  73 + )));
  74 + Files.write(filedata, dataToolsFile.getFile());
  75 + } else if (DataToolsFileType.XLSX.isThisType(filedata)) {
  76 + // xlsx文件
  77 + dataToolsFile.setFileType(DataToolsFileType.XLSX);
  78 + dataToolsFile.setFile(new File(DataToolsFileType.XLSX.getNewFileName(
  79 + dataToolsProperties.getFileuploadDir(),
  80 + File.separator,
  81 + filename,
  82 + "-upload-",
  83 + new DateTime().toString("yyyyMMddHHmmss")
  84 + )));
  85 + Files.write(filedata, dataToolsFile.getFile());
  86 + } else {
  87 + // 非excel文件
  88 + throw new Exception(I18n.getInstance().getMessage("dataToolsServiceImpl-line132"));
  89 + }
  90 +
  91 + LOGGER.info("uploadFile success...newFilename={}", dataToolsFile.getFile().getAbsolutePath());
  92 +
  93 +
  94 + return dataToolsFile;
76 95  
77 96 } catch (Exception exp) {
78 97 throw new ScheduleException(exp);
... ... @@ -242,14 +261,26 @@ public class TTInfoDetailDataToolsImpl implements DataToolsService, TTInfoDetail
242 261  
243 262 // 创建ktr转换所需参数
244 263 Map<String, Object> ktrParms = new HashMap<>();
245   - File ktrFile = new File(this.getClass().getResource(
246   - dataToolsProperties.getTtinfodetailMetaoutput()).toURI());
247   - File ktrFile2 = new File(this.getClass().getResource(
248   - dataToolsProperties.getTtinfodetailOutput()).toURI());
  264 + String country = Locale.getDefault().getLanguage();
  265 + File ktrFile = null;
  266 + File ktrFile2 = null;
  267 + if ("zh".equals(country)) {
  268 + ktrFile = new File(this.getClass().getResource(
  269 + dataToolsProperties.getZhTtinfoDetailMetaDataForExport()).toURI());
  270 + ktrFile2 = new File(this.getClass().getResource(
  271 + dataToolsProperties.getZhTtinfoDetailDataExport()).toURI());
  272 + } else if ("en".equals(country)) {
  273 + ktrFile = new File(this.getClass().getResource(
  274 + dataToolsProperties.getEnTtinfoDetailMetaDataForExport()).toURI());
  275 + ktrFile2 = new File(this.getClass().getResource(
  276 + dataToolsProperties.getEnTtinfoDetailDataExport()).toURI());
  277 + } else {
  278 + throw new Exception("not found Local[" + country + "] corresponding ktr.");
  279 + }
249 280  
250 281 // 通用参数,转换文件路径,excel输出文件名
251 282 ktrParms.put("transpath", ktrFile.getAbsolutePath());
252   - ktrParms.put("filename", String.format("时刻表_(id=%s)_download-", String.valueOf(params.get("ttinfoid"))));
  283 + ktrParms.put("filename", String.format(I18n.getInstance().getMessage("tTInfoDetailDataToolsImpl-line264") + "_(id=%s)_download-", String.valueOf(params.get("ttinfoid"))));
253 284  
254 285 // 附加参数
255 286 ktrParms.put("injectktrfile", ktrFile2.getAbsolutePath()); // 注入元数据的ktr文件
... ... @@ -267,9 +298,9 @@ public class TTInfoDetailDataToolsImpl implements DataToolsService, TTInfoDetail
267 298 } else if (DataToolsFileType.XLSX.isThisType(file.getFile())) {
268 299 poi_workbook = DataToolsFileType.XLSX.getWorkBook(file.getFile());
269 300 } else {
270   - throw new Exception("不是xls xlsx文件!");
  301 + throw new Exception(I18n.getInstance().getMessage("tTInfoDetailDataToolsImpl-line283"));
271 302 }
272   - poi_sheet = poi_workbook.getSheet("Sheet1");
  303 + poi_sheet = poi_workbook.getSheetAt(0); // 获取第一个sheet,前提ktr输出的第一个sheet就是导出内容
273 304 List<String> colList = new ArrayList<>();
274 305 int rownums = poi_sheet.getLastRowNum() + 1;
275 306 int colnums = poi_sheet.getRow(0).getLastCellNum();
... ... @@ -322,8 +353,17 @@ public class TTInfoDetailDataToolsImpl implements DataToolsService, TTInfoDetail
322 353  
323 354 // 创建ktr转换所需参数
324 355 Map<String, Object> ktrParms = new HashMap<>();
325   - File ktrFile = new File(this.getClass().getResource(
326   - dataToolsProperties.getTtinfodetailForeditktr()).toURI());
  356 + String country = Locale.getDefault().getLanguage();
  357 + File ktrFile;
  358 + if ("zh".equals(country)) {
  359 + ktrFile = new File(this.getClass().getResource(
  360 + dataToolsProperties.getZhTtinfoDetailDataExportForEdit()).toURI());
  361 + } else if ("en".equals(country)) {
  362 + ktrFile = new File(this.getClass().getResource(
  363 + dataToolsProperties.getEnTtinfoDetailDataExportForEdit()).toURI());
  364 + } else {
  365 + throw new Exception("not found Local[" + country + "] corresponding ktr.");
  366 + }
327 367  
328 368 // 通用参数,转换文件路径,excel输出文件名,错误输出文件路径
329 369 ktrParms.put("transpath", ktrFile.getAbsolutePath());
... ... @@ -358,9 +398,9 @@ public class TTInfoDetailDataToolsImpl implements DataToolsService, TTInfoDetail
358 398 double all_lc_yy = 0; // 总营运里程
359 399  
360 400 String[] headarrays = new String[maxfcno.intValue() + 3];
361   - headarrays[0] = "$$$$$${txt-4022}";
362   - headarrays[maxfcno.intValue() + 1] = "$$$$$${txt-4376}";
363   - headarrays[maxfcno.intValue() + 2] = "$$$$$${txt-2804}";
  401 + headarrays[0] = I18n.getInstance().getMessage("tTInfoDetailDataToolsImpl-line383");
  402 + headarrays[maxfcno.intValue() + 1] = I18n.getInstance().getMessage("tTInfoDetailDataToolsImpl-line384");
  403 + headarrays[maxfcno.intValue() + 2] = I18n.getInstance().getMessage("tTInfoDetailDataToolsImpl-line385");
364 404  
365 405 for (int r = 1; r < sheet.getRows(); r++) {
366 406 List<FcInfo> fcInfos = new ArrayList<>();
... ... @@ -435,7 +475,7 @@ public class TTInfoDetailDataToolsImpl implements DataToolsService, TTInfoDetail
435 475 }
436 476 editInfo.getHeader().addAll(Arrays.asList(headarrays));
437 477  
438   - editInfo.setYy_desc(String.format("$$$$$${txt-2914}", all_bc_ks, all_bc_yy, all_lc_ks, all_lc_yy, all_lc_ks + all_lc_yy));
  478 + editInfo.setYy_desc(String.format(I18n.getInstance().getMessage("tTInfoDetailDataToolsImpl-line460"), all_bc_ks, all_bc_yy, all_lc_ks, all_lc_yy, all_lc_ks + all_lc_yy));
439 479 }
440 480  
441 481 LOGGER.info("//---------------- 时刻表编辑用数据输出 success... ----------------//");
... ...
src/main/java/com/bsth/service/schedule/impl/TTInfoDetailServiceImpl.java
... ... @@ -33,6 +33,7 @@ import com.bsth.service.schedule.timetable.TimetableExcelFormatType;
33 33 import com.bsth.service.schedule.timetable.strategy.impl.TimetableExcelDataValidateStrategyImpl;
34 34 import com.bsth.service.schedule.timetable.strategy.impl.TimetableExcelPVDataExportStrategyImpl;
35 35 import com.bsth.service.schedule.utils.*;
  36 +import com.bsth.util.I18n;
36 37 import org.apache.commons.lang3.StringUtils;
37 38 import org.apache.commons.lang3.time.DateFormatUtils;
38 39 import org.apache.poi.ss.usermodel.*;
... ... @@ -114,7 +115,7 @@ public class TTInfoDetailServiceImpl extends BServiceImpl&lt;TTInfoDetail, Long&gt; im
114 115 "select station_code as zcode, station_name as zname, concat(station_name, '(站点)') as aname from bsth_c_ls_stationroute " +
115 116 "where destroy = 0 and line = ? and directions = ? and versions = ? " +
116 117 "union all " +
117   - "select park_code as zcode, park_name as zname, concat(park_name, '(停车场)') as aname from bsth_c_car_park " +
  118 + "select park_code as zcode, park_name as zname, concat(park_name, '(" + I18n.getInstance().getMessage("tTInfoDetailServiceImpl-line118") + ")') as aname from bsth_c_car_park " +
118 119 "where destroy = 0 " +
119 120 ") a ";
120 121  
... ... @@ -174,11 +175,11 @@ public class TTInfoDetailServiceImpl extends BServiceImpl&lt;TTInfoDetail, Long&gt; im
174 175 public void addLp(Long ttInfoId, Long lpId) {
175 176 List<TTInfoDetail> bcList = this.ttInfoDetailRepository.findBcdetails(ttInfoId, lpId);
176 177 if (!CollectionUtils.isEmpty(bcList)) {
177   - throw new RuntimeException("路牌已经存在!");
  178 + throw new RuntimeException(I18n.getInstance().getMessage("tTInfoDetailServiceImpl-line178"));
178 179 }
179 180 List<TTInfoDetail> allBcList = this.ttInfoDetailRepository.findByTtinfoId(ttInfoId);
180 181 if (CollectionUtils.isEmpty(allBcList)) {
181   - throw new RuntimeException("时刻表没有班次(添加路牌至少需要一个班次)!");
  182 + throw new RuntimeException(I18n.getInstance().getMessage("tTInfoDetailServiceImpl-line182"));
182 183 }
183 184  
184 185 Integer maxBcs = this.ttInfoDetailRepository.findMaxBcs(ttInfoId).intValue();
... ... @@ -262,31 +263,31 @@ public class TTInfoDetailServiceImpl extends BServiceImpl&lt;TTInfoDetail, Long&gt; im
262 263 public void validateAssoLineInfo(Integer lineinfoid) throws ScheduleException {
263 264 LineInformation lineInformation = lineInformationService.findById(lineinfoid);
264 265 if (lineInformation.getUpInMileage() == null) {
265   - throw new ScheduleException("上行进场里程为空");
  266 + throw new ScheduleException(I18n.getInstance().getMessage("tTInfoDetailServiceImpl-line266"));
266 267 } else if (lineInformation.getUpInTimer() == null) {
267   - throw new ScheduleException("上行进场时间为空");
  268 + throw new ScheduleException(I18n.getInstance().getMessage("tTInfoDetailServiceImpl-line268"));
268 269 } else if (lineInformation.getUpOutMileage() == null) {
269   - throw new ScheduleException("上行出场里程为空");
  270 + throw new ScheduleException(I18n.getInstance().getMessage("tTInfoDetailServiceImpl-line270"));
270 271 } else if (lineInformation.getUpOutTimer() == null) {
271   - throw new ScheduleException("上行出场时间为空");
  272 + throw new ScheduleException(I18n.getInstance().getMessage("tTInfoDetailServiceImpl-line272"));
272 273 } else if (lineInformation.getUpMileage() == null) {
273   - throw new ScheduleException("上行班次里程为空");
  274 + throw new ScheduleException(I18n.getInstance().getMessage("tTInfoDetailServiceImpl-line274"));
274 275 } else if (lineInformation.getUpTravelTime() == null) {
275   - throw new ScheduleException("上行班次时间为空");
  276 + throw new ScheduleException(I18n.getInstance().getMessage("tTInfoDetailServiceImpl-line276"));
276 277 } else if (lineInformation.getDownInMileage() == null) {
277   - throw new ScheduleException("下行进场里程为空");
  278 + throw new ScheduleException(I18n.getInstance().getMessage("tTInfoDetailServiceImpl-line278"));
278 279 } else if (lineInformation.getDownInTimer() == null) {
279   - throw new ScheduleException("下行进场时间为空");
  280 + throw new ScheduleException(I18n.getInstance().getMessage("tTInfoDetailServiceImpl-line280"));
280 281 } else if (lineInformation.getDownOutMileage() == null) {
281   - throw new ScheduleException("下行出场里程为空");
  282 + throw new ScheduleException(I18n.getInstance().getMessage("tTInfoDetailServiceImpl-line282"));
282 283 } else if (lineInformation.getDownOutTimer() == null) {
283   - throw new ScheduleException("下行出场时间为空");
  284 + throw new ScheduleException(I18n.getInstance().getMessage("tTInfoDetailServiceImpl-line284"));
284 285 } else if (lineInformation.getDownMileage() == null) {
285   - throw new ScheduleException("下行班次里程为空");
  286 + throw new ScheduleException(I18n.getInstance().getMessage("tTInfoDetailServiceImpl-line286"));
286 287 } else if (lineInformation.getDownTravelTime() == null) {
287   - throw new ScheduleException("下行班次时间为空");
  288 + throw new ScheduleException(I18n.getInstance().getMessage("tTInfoDetailServiceImpl-line288"));
288 289 } else if (StringUtils.isEmpty(lineInformation.getCarPark())) {
289   - throw new ScheduleException("停车场必须选择");
  290 + throw new ScheduleException(I18n.getInstance().getMessage("tTInfoDetailServiceImpl-line290"));
290 291 }
291 292  
292 293 // 单独验证停车场信息
... ... @@ -295,13 +296,13 @@ public class TTInfoDetailServiceImpl extends BServiceImpl&lt;TTInfoDetail, Long&gt; im
295 296 p1.put("parkCode_eq", tcccode);
296 297 List<CarPark> carParkList = (List<CarPark>) carParkService.list(p1);
297 298 if (CollectionUtils.isEmpty(carParkList)) {
298   - throw new ScheduleException(String.format("线路标准里的停车场code=%s,在停车场信息中未找到", tcccode));
  299 + throw new ScheduleException(String.format(I18n.getInstance().getMessage("tTInfoDetailServiceImpl-line299"), tcccode));
299 300 } else if (carParkList.size() > 1) {
300   - throw new ScheduleException(String.format("线路标准里的停车场code=%s,在停车场信息中有重复数据", tcccode));
  301 + throw new ScheduleException(String.format(I18n.getInstance().getMessage("tTInfoDetailServiceImpl-line301"), tcccode));
301 302 } else {
302 303 CarPark carPark = carParkList.get(0);
303 304 if (StringUtils.isEmpty(carPark.getParkName())) {
304   - throw new ScheduleException(String.format("线路标准里的停车场code=%s,在停车场信息中没有停车场名字", tcccode));
  305 + throw new ScheduleException(String.format(I18n.getInstance().getMessage("tTInfoDetailServiceImpl-line305"), tcccode));
305 306 }
306 307 }
307 308  
... ...
src/main/java/com/bsth/service/schedule/impl/TTInfoServiceImpl.java
... ... @@ -9,6 +9,7 @@ import com.bsth.repository.schedule.TTInfoRepository;
9 9 import com.bsth.service.schedule.TTInfoService;
10 10 import com.bsth.service.schedule.exception.ScheduleException;
11 11 import com.bsth.service.schedule.utils.TimeTableProto;
  12 +import com.bsth.util.I18n;
12 13 import org.apache.commons.lang3.StringUtils;
13 14 import org.joda.time.DateTime;
14 15 import org.slf4j.Logger;
... ... @@ -51,7 +52,7 @@ public class TTInfoServiceImpl extends BServiceImpl&lt;TTInfo, Long&gt; implements TTI
51 52 param.put("name_eq", ttInfo.getName());
52 53  
53 54 if (!CollectionUtils.isEmpty(list(param))) {
54   - throw new ScheduleException("名字重复");
  55 + throw new ScheduleException(I18n.getInstance().getMessage("tTInfoServiceImpl-line54"));
55 56 }
56 57 }
57 58  
... ... @@ -68,7 +69,7 @@ public class TTInfoServiceImpl extends BServiceImpl&lt;TTInfo, Long&gt; implements TTI
68 69 param.put("isEnableDisTemplate_eq", true);
69 70 List<TTInfo> ttInfos = list(param);
70 71 if (StringUtils.isEmpty(ttInfo.getRule_days())) {
71   - throw new ScheduleException("常规有效日为空");
  72 + throw new ScheduleException(I18n.getInstance().getMessage("tTInfoServiceImpl-line72"));
72 73 } else {
73 74 String[] nds = ttInfo.getRule_days().split(",");
74 75 for (TTInfo t : ttInfos) {
... ... @@ -78,7 +79,7 @@ public class TTInfoServiceImpl extends BServiceImpl&lt;TTInfo, Long&gt; implements TTI
78 79 //
79 80 } else {
80 81 if (nds[i].equals(nds_e[i])) {
81   - throw new ScheduleException("当前常规有效日期已经使用");
  82 + throw new ScheduleException(I18n.getInstance().getMessage("tTInfoServiceImpl-line82"));
82 83 }
83 84 }
84 85 }
... ... @@ -109,7 +110,7 @@ public class TTInfoServiceImpl extends BServiceImpl&lt;TTInfo, Long&gt; implements TTI
109 110 } else {
110 111 for (String sd : sds) {
111 112 if (t.getSpecial_days().indexOf(sd) != -1) {
112   - throw new ScheduleException("当前特殊日期已经使用");
  113 + throw new ScheduleException(I18n.getInstance().getMessage("tTInfoServiceImpl-line113"));
113 114 }
114 115 }
115 116 }
... ... @@ -165,8 +166,8 @@ public class TTInfoServiceImpl extends BServiceImpl&lt;TTInfo, Long&gt; implements TTI
165 166 int version = Integer.parseInt(lv.get("version").toString());
166 167  
167 168 String vname = t_name;
168   - String rq = t_sd == null ? "未知启用日期" : new DateTime(t_sd).toString("YYYY年MM月dd日");
169   - String sdesc = status == 0 ? "$$$$$${txt-4010}" : (status == 1 ? "当前" : "待更新");
  169 + String rq = t_sd == null ? I18n.getInstance().getMessage("tTInfoServiceImpl-line169") : new DateTime(t_sd).toString("YYYY-MM-dd");
  170 + String sdesc = status == 0 ? I18n.getInstance().getMessage("tTInfoServiceImpl-line170") : (status == 1 ? I18n.getInstance().getMessage("tTInfoServiceImpl-line170-1") : I18n.getInstance().getMessage("tTInfoServiceImpl-line170-2"));
170 171  
171 172 Map<String, Object> value = new HashMap<>();
172 173 value.put("desc", vname + "-" + rq + "-" + sdesc);
... ... @@ -189,9 +190,9 @@ public class TTInfoServiceImpl extends BServiceImpl&lt;TTInfo, Long&gt; implements TTI
189 190  
190 191 Map<String, Object> lv;
191 192 if (CollectionUtils.isEmpty(lineVersionDescs)) {
192   - return "未知版本";
  193 + return I18n.getInstance().getMessage("tTInfoServiceImpl-line193");
193 194 } else if (lineVersionDescs.size() > 1) {
194   - return "重复版本";
  195 + return I18n.getInstance().getMessage("tTInfoServiceImpl-line195");
195 196 } else {
196 197 lv = lineVersionDescs.get(0);
197 198 }
... ... @@ -201,8 +202,8 @@ public class TTInfoServiceImpl extends BServiceImpl&lt;TTInfo, Long&gt; implements TTI
201 202 int status = Integer.parseInt(lv.get("status").toString());
202 203  
203 204 String vname = t_name;
204   - String rq = t_sd == null ? "未知启用日期" : new DateTime(t_sd).toString("YYYY年MM月dd日");
205   - String sdesc = status == 0 ? "$$$$$${txt-4010}" : (status == 1 ? "当前" : "待更新");
  205 + String rq = t_sd == null ? I18n.getInstance().getMessage("tTInfoServiceImpl-line205") : new DateTime(t_sd).toString("YYYY-MM-dd");
  206 + String sdesc = status == 0 ? I18n.getInstance().getMessage("tTInfoServiceImpl-line206") : (status == 1 ? I18n.getInstance().getMessage("tTInfoServiceImpl-line206-1") : I18n.getInstance().getMessage("tTInfoServiceImpl-line206-2"));
206 207  
207 208 return String.format("%s-%s-%s", vname, rq, sdesc);
208 209 }
... ...
src/main/java/com/bsth/service/schedule/timetable/TimetableExcelData.java
... ... @@ -15,6 +15,7 @@ import com.bsth.service.schedule.timetable.strategy.TimetableExcelDataImportStra
15 15 import com.bsth.service.schedule.timetable.strategy.TimetableExcelDataValidateStrategy;
16 16 import com.bsth.service.schedule.timetable.strategy.TimetableExcelPVDataExportStrategy;
17 17 import com.bsth.service.schedule.utils.*;
  18 +import com.bsth.util.I18n;
18 19 import org.apache.commons.lang3.StringUtils;
19 20 import org.apache.poi.ss.usermodel.Sheet;
20 21 import org.apache.poi.ss.usermodel.Workbook;
... ... @@ -75,17 +76,17 @@ public class TimetableExcelData {
75 76 // 初始化内部标识excel单元格
76 77 private void initInternalExcelCells() {
77 78 int rowCount = this.excelWorkBookSheet.getLastRowNum() + 1; // 基于0 base的,长度加1
78   - Assert.isTrue(rowCount > 1, String.format("%s 工作区没有数据!", this.excelWorkBookSheet.getSheetName()));
  79 + Assert.isTrue(rowCount > 1, String.format(I18n.getInstance().getMessage("timetableExcelData-line79"), this.excelWorkBookSheet.getSheetName()));
79 80 int colCount = this.excelWorkBookSheet.getRow(0).getLastCellNum(); // 不需要加1,就是长度
80   - Assert.isTrue(colCount > 0, String.format("%s 工作区第一行没有数据!", this.excelWorkBookSheet.getSheetName()));
  81 + Assert.isTrue(colCount > 0, String.format(I18n.getInstance().getMessage("timetableExcelData-line81"), this.excelWorkBookSheet.getSheetName()));
81 82  
82 83 this.internalExcelCells = new TimetableExcelInternalCell[rowCount][colCount];
83 84 for (int rowNum = 0; rowNum < rowCount; rowNum ++) {
84 85 for (int colNum = 0; colNum < colCount; colNum ++) {
85 86 TimetableExcelInternalCell cell = new TimetableExcelInternalCell();
86 87 String cell_con = StringUtils.trimToEmpty(PoiUtils.getStringValueFromCell(
87   - this.excelWorkBookSheet.getRow(rowNum).getCell(colNum))
88   - .replaceAll("\\s*", "")); // trimToEmpty
  88 + this.excelWorkBookSheet.getRow(rowNum).getCell(colNum)));
  89 +// .replaceAll("\\s*", "")); // 去除所有空格(由于英文版中空格有业务意义,所以不用replace)
89 90  
90 91 // 如果站名中有类似->{数字},使用正则表达式过滤掉
91 92 cell_con = cell_con.replaceAll("(->\\d+)", "");
... ... @@ -300,15 +301,15 @@ public class TimetableExcelData {
300 301 public TimetableExcelData build() throws ScheduleException {
301 302 // 0、检测时刻表excel业务格式
302 303 if (this.timetableExcelFormatType == null) {
303   - throw new ScheduleException("导入的Excel类型为空!");
  304 + throw new ScheduleException(I18n.getInstance().getMessage("timetableExcelData-line304"));
304 305 }
305 306  
306 307 // 1、检测excel文件,创建excel workbook对象
307 308 // 1-1、检测文件是否存在
308   - Assert.hasText(this.excelFilePath, "导入的Excel文件路径为空!");
  309 + Assert.hasText(this.excelFilePath, I18n.getInstance().getMessage("timetableExcelData-line309"));
309 310 File file = new File(this.excelFilePath);
310 311 if (!file.exists()) {
311   - throw new ScheduleException("导入的Excel文件[" + this.excelFilePath + "]不存在!");
  312 + throw new ScheduleException(I18n.getInstance().getMessage("timetableExcelData-line312", this.excelFilePath));
312 313 }
313 314 // 1-2、检测文件类型
314 315 DataToolsFile dataToolsFile = new DataToolsFile();
... ... @@ -318,28 +319,28 @@ public class TimetableExcelData {
318 319 } else if (DataToolsFileType.XLSX.isThisType(file)) {
319 320 dataToolsFile.setFileType(DataToolsFileType.XLSX);
320 321 } else {
321   - throw new ScheduleException("导入的Excel文件[" + this.excelFilePath + "]内部不是xls,xlsx文件!");
  322 + throw new ScheduleException(I18n.getInstance().getMessage("timetableExcelData-line322", this.excelFilePath));
322 323 }
323 324 // 1-3、创建workbook
324 325 this.excelWorkBook = dataToolsFile.getFileType().getWorkBook(dataToolsFile.getFile());
325 326 // 1-4、检测sheet名字
326   - Assert.hasText(this.excelSheetName, "导入的Excel sheet名字为空!");
  327 + Assert.hasText(this.excelSheetName, I18n.getInstance().getMessage("timetableExcelData-line327"));
327 328 this.excelWorkBookSheet = this.excelWorkBook.getSheet(this.excelSheetName);
328 329 if (this.excelWorkBookSheet == null) {
329   - throw new ScheduleException("导入的Excel文件sheet[" + this.excelSheetName + "]不存在!");
  330 + throw new ScheduleException(I18n.getInstance().getMessage("timetableExcelData-line330", this.excelSheetName));
330 331 }
331 332  
332 333 // 2、获取线路信息,站点路由信息
333 334 // 2-1、线路信息
334   - Assert.notNull(this.lineService, "线路信息service为空!");
335   - Assert.notNull(this.lineId, "线路Id为空!");
  335 + Assert.notNull(this.lineService, I18n.getInstance().getMessage("timetableExcelData-line335"));
  336 + Assert.notNull(this.lineId, I18n.getInstance().getMessage("timetableExcelData-line336"));
336 337 this.line = this.lineService.findById(this.lineId);
337 338 if (this.line == null) {
338   - throw new ScheduleException("线路[id=" + this.lineId + "]不存在!");
  339 + throw new ScheduleException(I18n.getInstance().getMessage("timetableExcelData-line339", String.valueOf(this.lineId)));
339 340 }
340 341 // 2-2、站点路由信息
341   - Assert.notNull(this.lsStationRouteService, "站点路由信息service为空!");
342   - Assert.notNull(this.lineRouteVersion, "线路站点路由版本为空!");
  342 + Assert.notNull(this.lsStationRouteService, I18n.getInstance().getMessage("timetableExcelData-line342"));
  343 + Assert.notNull(this.lineRouteVersion, I18n.getInstance().getMessage("timetableExcelData-line343"));
343 344 Map<String, Object> p1 = new HashMap<>();
344 345 p1.put("line.id_eq", this.lineId);
345 346 p1.put("stationMark_in", "B,E"); // 起点站
... ... @@ -347,21 +348,21 @@ public class TimetableExcelData {
347 348 p1.put("versions_eq", this.lineRouteVersion); // 带线路版本
348 349 this.lsStationRouteList = (List<LsStationRoute>) this.lsStationRouteService.findAllByParams(p1);
349 350 if (CollectionUtils.isEmpty(this.lsStationRouteList)) {
350   - throw new ScheduleException("线路[" + this.line.getName() + "],站点路由[版本=" + this.lineRouteVersion + "]信息为空");
  351 + throw new ScheduleException(I18n.getInstance().getMessage("timetableExcelData-line351", this.line.getName(), String.valueOf(this.lineRouteVersion)));
351 352 }
352 353  
353 354 // 3、获取路牌信息
354   - Assert.notNull(this.guideboardInfoService, "路牌信息service为空!");
  355 + Assert.notNull(this.guideboardInfoService, I18n.getInstance().getMessage("timetableExcelData-line355"));
355 356 p1.clear();
356 357 p1.put("xl.id_eq", this.lineId);
357 358 p1.put("isCancel_eq", false);
358 359 this.guideboardInfoList = guideboardInfoService.list(p1);
359 360 if (CollectionUtils.isEmpty(this.guideboardInfoList)) {
360   - throw new ScheduleException("线路[" + this.line.getName() + "]路牌信息为空!");
  361 + throw new ScheduleException(I18n.getInstance().getMessage("timetableExcelData-line361", this.line.getName()));
361 362 }
362 363  
363 364 // 4、验证策略类
364   - Assert.notNull(this.timetableExcelDataValidateStrategy, "时刻表excel验证策略类为空!");
  365 + Assert.notNull(this.timetableExcelDataValidateStrategy, I18n.getInstance().getMessage("timetableExcelData-line365"));
365 366  
366 367 return new TimetableExcelData(this);
367 368 }
... ... @@ -468,7 +469,7 @@ public class TimetableExcelData {
468 469  
469 470 public TimetableExcelData build() throws ScheduleException {
470 471 // 0、验证策略类
471   - Assert.notNull(this.timetableExcelDataImportStrategy, "时刻表excel导入策略类为空!");
  472 + Assert.notNull(this.timetableExcelDataImportStrategy, I18n.getInstance().getMessage("timetableExcelData-line472"));
472 473  
473 474 // 注意:这里不做其他验证,业务上导入前必须验证的(调用验证用的builder)
474 475 File file = new File(this.excelFilePath);
... ... @@ -548,20 +549,20 @@ public class TimetableExcelData {
548 549  
549 550 public TimetableExcelData build() {
550 551 // 1、参数验证
551   - Assert.notNull(this.ttInfoId, "时刻表Id为空!");
552   - Assert.notNull(ttInfoRepository, "时刻表repo为空!");
553   - Assert.notNull(ttInfoDetailRepository, "时刻表明细repo为空!");
554   - Assert.notNull(timetableExcelPVDataExportStrategy, "时刻表预览excel数据导出策略为空!");
  552 + Assert.notNull(this.ttInfoId, I18n.getInstance().getMessage("timetableExcelData-line552"));
  553 + Assert.notNull(ttInfoRepository, I18n.getInstance().getMessage("timetableExcelData-line553"));
  554 + Assert.notNull(ttInfoDetailRepository, I18n.getInstance().getMessage("timetableExcelData-line554"));
  555 + Assert.notNull(timetableExcelPVDataExportStrategy, I18n.getInstance().getMessage("timetableExcelData-line555"));
555 556  
556 557 // 2、获取时刻表数据
557 558 this.ttInfo = this.ttInfoRepository.findOneExtend(this.ttInfoId);
558   - Assert.notNull(this.ttInfo, "时刻表[id=" + this.ttInfoId + "]未找到!");
  559 + Assert.notNull(this.ttInfo, I18n.getInstance().getMessage("timetableExcelData-line559", String.valueOf(this.ttInfoId)));
559 560  
560 561 // 3、获取时刻表明细数据
561 562 this.ttInfoDetailList = this.ttInfoDetailRepository.findByTtinfoId(this.ttInfoId);
562 563  
563 564 // 4、计算导出文件路径
564   - Assert.notNull(this.dataToolsProperties, "dataTools配置文件类为空!");
  565 + Assert.notNull(this.dataToolsProperties, I18n.getInstance().getMessage("timetableExcelData-line565"));
565 566 this.pvExportFilePath = dataToolsProperties.getFileoutputDir() +
566 567 File.separator +
567 568 ttInfo.getName() + "预览信息-" +
... ...
src/main/java/com/bsth/service/schedule/timetable/strategy/impl/TimetableExcelDataImportStrategyImpl.java
... ... @@ -6,6 +6,7 @@ import com.bsth.service.schedule.timetable.TimetableExcelFormatType;
6 6 import com.bsth.service.schedule.timetable.strategy.TimetableExcelDataImportStrategy;
7 7 import com.bsth.service.schedule.utils.DataToolsProperties;
8 8 import com.bsth.service.schedule.utils.DataToolsService;
  9 +import com.bsth.util.I18n;
9 10 import jxl.write.Label;
10 11 import jxl.write.WritableSheet;
11 12 import jxl.write.WritableWorkbook;
... ... @@ -17,6 +18,7 @@ import org.slf4j.LoggerFactory;
17 18 import java.io.File;
18 19 import java.util.ArrayList;
19 20 import java.util.List;
  21 +import java.util.Locale;
20 22 import java.util.Map;
21 23  
22 24 /**
... ... @@ -58,14 +60,14 @@ public class TimetableExcelDataImportStrategyImpl implements TimetableExcelDataI
58 60 // 2-1-2、如果导入格式是Dynamic,忽略指定列
59 61 if (timetableExcelFormatType == TimetableExcelFormatType.Dynamic) {
60 62 if ("报到".equals(cell.cellContent) ||
61   - "$$$$$${txt-4502}".equals(cell.cellContent) ||
62   - "$$$$$${txt-4501}".equals(cell.cellContent) ||
63   - "$$$$$${txt-3536}".equals(cell.cellContent) ||
64   - "$$$$$${txt-4405}".equals(cell.cellContent) ||
65   - "$$$$$${txt-2437}".equals(cell.cellContent) ||
66   - "$$$$$${txt-4496}".equals(cell.cellContent) ||
67   - "$$$$$${txt-4406}".equals(cell.cellContent) ||
68   - "$$$$$${txt-2783}".equals(cell.cellContent)) {
  63 + I18n.getInstance().getMessage("timetableExcelDataImportStrategyImpl_line62_txt-4502").equals(cell.cellContent) ||
  64 + I18n.getInstance().getMessage("timetableExcelDataImportStrategyImpl_line63_txt-4501").equals(cell.cellContent) ||
  65 + I18n.getInstance().getMessage("timetableExcelDataImportStrategyImpl_line64_txt-3536").equals(cell.cellContent) ||
  66 + I18n.getInstance().getMessage("timetableExcelDataImportStrategyImpl_line65_txt-4405").equals(cell.cellContent) ||
  67 + I18n.getInstance().getMessage("timetableExcelDataImportStrategyImpl_line66_txt-2437").equals(cell.cellContent) ||
  68 + I18n.getInstance().getMessage("timetableExcelDataImportStrategyImpl_line67_txt-4496").equals(cell.cellContent) ||
  69 + I18n.getInstance().getMessage("timetableExcelDataImportStrategyImpl_line68_txt-4406").equals(cell.cellContent) ||
  70 + I18n.getInstance().getMessage("timetableExcelDataImportStrategyImpl_line69_txt-2783").equals(cell.cellContent)) {
69 71 // 这些列都忽略,不参与计算
70 72 cell.isEnable = false;
71 73 }
... ... @@ -141,36 +143,69 @@ public class TimetableExcelDataImportStrategyImpl implements TimetableExcelDataI
141 143 ktrParams.put("filepath", fileCal.getAbsolutePath());
142 144 } catch (Exception exp) {
143 145 exp.printStackTrace();
144   - throw new ScheduleException("$$$$$${txt-2115}异常!");
  146 + throw new ScheduleException(I18n.getInstance().getMessage("timetableExcelDataImportStrategyImpl_line145_txt-2115"));
145 147 }
146 148  
147 149 // 3-3、计算ktr路径相关参数
148 150 try {
  151 + String country = Locale.getDefault().getLanguage();
149 152 // 元数据ktr
150   - File mktrFile = new File(this.getClass().getResource(
151   - dataToolsProperties.getTtinfodetailMetadatainputktr()).toURI());
  153 + File mktrFile;
  154 + if ("zh".equals(country)) {
  155 + mktrFile = new File(this.getClass().getResource(
  156 + dataToolsProperties.getZhTtinfoDetailMetaDataForImport()).toURI());
  157 + } else if ("en".equals(country)) {
  158 + mktrFile = new File(this.getClass().getResource(
  159 + dataToolsProperties.getEnTtinfoDetailMetaDataForImport()).toURI());
  160 + } else {
  161 + throw new Exception("not found Local[" + country + "] corresponding ktr.");
  162 + }
152 163 ktrParams.put("transpath", mktrFile.getAbsolutePath());
153 164  
154 165 // 实际数据ktr
155 166 if (timetableExcelFormatType == TimetableExcelFormatType.Normal) {
156   - File normal_ktrFile = new File(this.getClass().getResource(
157   - dataToolsProperties.getTtinfodetailDatainputktr2version()).toURI());
  167 + File normal_ktrFile;
  168 + if ("zh".equals(country)) {
  169 + normal_ktrFile = new File(this.getClass().getResource(
  170 + dataToolsProperties.getZhTtinfoDetailDataImportOfNormal()).toURI());
  171 + } else if ("en".equals(country)) {
  172 + normal_ktrFile = new File(this.getClass().getResource(
  173 + dataToolsProperties.getEnTtinfoDetailDataImportOfNormal()).toURI());
  174 + } else {
  175 + throw new Exception("not found Local[" + country + "] corresponding ktr.");
  176 + }
158 177 ktrParams.put("injectktrfile", normal_ktrFile.getAbsolutePath());
159 178 } else if (timetableExcelFormatType == TimetableExcelFormatType.NormalWithGs) {
160   - File noramlwithgs_ktrFile = new File(this.getClass().getResource(
161   - dataToolsProperties.getTtinfodetailDatainputktr2normalwithgs()).toURI());
162   - ktrParams.put("injectktrfile", noramlwithgs_ktrFile.getAbsolutePath());
  179 + File normalwithgs_ktrFile;
  180 + if ("zh".equals(country)) {
  181 + normalwithgs_ktrFile = new File(this.getClass().getResource(
  182 + dataToolsProperties.getZhTtinfoDetailDataImportOfNormalWithGs()).toURI());
  183 + } else if ("en".equals(country)) {
  184 + normalwithgs_ktrFile = new File(this.getClass().getResource(
  185 + dataToolsProperties.getEnTtinfoDetailDataImportOfNormalWithGs()).toURI());
  186 + } else {
  187 + throw new Exception("not found Local[" + country + "] corresponding ktr.");
  188 + }
  189 + ktrParams.put("injectktrfile", normalwithgs_ktrFile.getAbsolutePath());
163 190 } else if (timetableExcelFormatType == TimetableExcelFormatType.Dynamic) {
164   - File dynamic_ktrFile = new File(this.getClass().getResource(
165   - dataToolsProperties.getTtinfodetailDatainputktr2version2()).toURI());
  191 + File dynamic_ktrFile;
  192 + if ("zh".equals(country)) {
  193 + dynamic_ktrFile = new File(this.getClass().getResource(
  194 + dataToolsProperties.getZhTtinfoDetailDataImportOfDynamic()).toURI());
  195 + } else if ("en".equals(country)) {
  196 + dynamic_ktrFile = new File(this.getClass().getResource(
  197 + dataToolsProperties.getEnTtinfoDetailDataImportOfDynamic()).toURI());
  198 + } else {
  199 + throw new Exception("not found Local[" + country + "] corresponding ktr.");
  200 + }
166 201 ktrParams.put("injectktrfile", dynamic_ktrFile.getAbsolutePath());
167 202 } else {
168   - throw new ScheduleException("未知的TimetableExcelFormatType格式[" + timetableExcelFormatType + "]");
  203 + throw new ScheduleException(I18n.getInstance().getMessage("timetableExcelDataImportStrategyImpl_line203", timetableExcelFormatType.getDesc()));
169 204 }
170 205  
171 206 } catch (Exception exp) {
172 207 exp.printStackTrace();
173   - throw new ScheduleException("$$$$$${txt-2115}异常!");
  208 + throw new ScheduleException(I18n.getInstance().getMessage("timetableExcelDataImportStrategyImpl_line208_txt-2115"));
174 209 }
175 210  
176 211 // 3-4、执行ktr
... ...
src/main/java/com/bsth/service/schedule/timetable/strategy/impl/TimetableExcelDataValidateStrategyImpl.java
... ... @@ -7,6 +7,7 @@ import com.bsth.service.schedule.exception.ScheduleException;
7 7 import com.bsth.service.schedule.timetable.TimetableExcelFormatType;
8 8 import com.bsth.service.schedule.timetable.TimetableExcelData.TimetableExcelInternalCell;
9 9 import com.bsth.service.schedule.timetable.strategy.TimetableExcelDataValidateStrategy;
  10 +import com.bsth.util.I18n;
10 11 import org.apache.commons.lang3.StringUtils;
11 12 import org.springframework.util.CollectionUtils;
12 13  
... ... @@ -47,7 +48,7 @@ public class TimetableExcelDataValidateStrategyImpl implements TimetableExcelDat
47 48 Line line,
48 49 List<LsStationRoute> lsStationRouteList) throws ScheduleException {
49 50 if (StringUtils.isEmpty(routeName)) {
50   - throw new ScheduleException(String.format("第1行,第%d列数据不能为空", colNum + 1));
  51 + throw new ScheduleException(String.format(I18n.getInstance().getMessage("timetableExcelDataValidateStrategyImpl-line51"), colNum + 1));
51 52 }
52 53  
53 54 List<LsStationRoute> lsStationRoutes = new ArrayList<>();
... ... @@ -58,13 +59,13 @@ public class TimetableExcelDataValidateStrategyImpl implements TimetableExcelDat
58 59 }
59 60  
60 61 if (CollectionUtils.isEmpty(lsStationRoutes)) {
61   - throw new ScheduleException(String.format("第1行,第%d列数据%s在%s站点路由中不是起点站",
  62 + throw new ScheduleException(String.format(I18n.getInstance().getMessage("timetableExcelDataValidateStrategyImpl-line62"),
62 63 colNum + 1, routeName, line.getName()));
63 64 } else if (lsStationRoutes.size() > 1) {
64   - throw new ScheduleException(String.format("第1行,第%d列数据%s在%s站点路由中上下行都是起点站",
  65 + throw new ScheduleException(String.format(I18n.getInstance().getMessage("timetableExcelDataValidateStrategyImpl-line65"),
65 66 colNum + 1, routeName, line.getName()));
66 67 } else if (StringUtils.isEmpty(lsStationRoutes.get(0).getStationCode())) {
67   - throw new ScheduleException(String.format("第1行,第%d列数据%s在%s站点路由中没有站点编码",
  68 + throw new ScheduleException(String.format(I18n.getInstance().getMessage("timetableExcelDataValidateStrategyImpl-line68"),
68 69 colNum + 1, routeName, line.getName()));
69 70 }
70 71  
... ... @@ -77,7 +78,7 @@ public class TimetableExcelDataValidateStrategyImpl implements TimetableExcelDat
77 78 Line line,
78 79 List<GuideboardInfo> guideboardInfoList) throws ScheduleException {
79 80 if (StringUtils.isEmpty(guideboardName)) {
80   - throw new ScheduleException(String.format("第%d行,第1列路牌无数据", rowNum + 1));
  81 + throw new ScheduleException(String.format(I18n.getInstance().getMessage("timetableExcelDataValidateStrategyImpl-line81"), rowNum + 1));
81 82 }
82 83  
83 84 List<GuideboardInfo> guideboardInfos = new ArrayList<>();
... ... @@ -88,10 +89,10 @@ public class TimetableExcelDataValidateStrategyImpl implements TimetableExcelDat
88 89 }
89 90  
90 91 if (CollectionUtils.isEmpty(guideboardInfos)) {
91   - throw new ScheduleException(String.format("第%d行,第1列的路牌在%s中不存在",
  92 + throw new ScheduleException(String.format(I18n.getInstance().getMessage("timetableExcelDataValidateStrategyImpl-line92"),
92 93 rowNum + 1, line.getName()));
93 94 } else if (guideboardInfos.size() > 1) {
94   - throw new ScheduleException(String.format("第%d行,第1列的路牌在%s中重复",
  95 + throw new ScheduleException(String.format(I18n.getInstance().getMessage("timetableExcelDataValidateStrategyImpl-line95"),
95 96 rowNum + 1, line.getName()));
96 97 }
97 98 }
... ... @@ -115,7 +116,7 @@ public class TimetableExcelDataValidateStrategyImpl implements TimetableExcelDat
115 116 Matcher m3 = p3.matcher(fcsjContent.trim());
116 117 boolean expected = m1.matches() || m2.matches() || m3.matches();
117 118 if (!expected) {
118   - throw new ScheduleException(String.format("第%d行,第%d列的发车时间格式不正确,格式应为hh:mm或hh,mm或hhmm",
  119 + throw new ScheduleException(String.format(I18n.getInstance().getMessage("timetableExcelDataValidateStrategyImpl-line119"),
119 120 rowNum + 1, colNum + 1));
120 121 }
121 122 } else if (timetableExcelFormatType == TimetableExcelFormatType.Dynamic) {
... ... @@ -124,11 +125,11 @@ public class TimetableExcelDataValidateStrategyImpl implements TimetableExcelDat
124 125 boolean expected = m1.matches() || m2.matches();
125 126 if (!expected) {
126 127 throw new ScheduleException(String.format(
127   - "第%d行,第%d列的发车时间格式不正确,格式应为(报|出)hh:mm或hh:mm(X|※)",
  128 + I18n.getInstance().getMessage("timetableExcelDataValidateStrategyImpl-line128"),
128 129 rowNum + 1, colNum + 1));
129 130 }
130 131 } else {
131   - throw new ScheduleException(String.format("未知的导入格式[%s]", timetableExcelFormatType.getDesc()));
  132 + throw new ScheduleException(String.format(I18n.getInstance().getMessage("timetableExcelDataValidateStrategyImpl-line132"), timetableExcelFormatType.getDesc()));
132 133 }
133 134 }
134 135  
... ... @@ -138,12 +139,12 @@ public class TimetableExcelDataValidateStrategyImpl implements TimetableExcelDat
138 139 Matcher m1 = p5.matcher(gsContent.trim());
139 140 boolean expected = m1.matches();
140 141 if (!expected) {
141   - throw new ScheduleException(String.format("第%d行,第%d列的工时格式不正确,格式应为整数或浮点数",
  142 + throw new ScheduleException(String.format(I18n.getInstance().getMessage("timetableExcelDataValidateStrategyImpl-line142"),
142 143 rowNum + 1, colNum + 1));
143 144 }
144 145 Double gs = new Double(gsContent.trim());
145 146 if (gs < 0) {
146   - throw new ScheduleException(String.format("第%d行,第%d列的工时值必须大于0",
  147 + throw new ScheduleException(String.format(I18n.getInstance().getMessage("timetableExcelDataValidateStrategyImpl-line147"),
147 148 rowNum + 1, colNum + 1));
148 149 }
149 150 }
... ... @@ -168,7 +169,7 @@ public class TimetableExcelDataValidateStrategyImpl implements TimetableExcelDat
168 169 int rowCount = internalExcelCells.length;
169 170 int colCount = internalExcelCells[0].length;
170 171 if (rowCount <= 1 || colCount <= 1) {
171   - throw new ScheduleException("工作区至少包含2行2列的数据");
  172 + throw new ScheduleException(I18n.getInstance().getMessage("timetableExcelDataValidateStrategyImpl-line172"));
172 173 }
173 174  
174 175 // 2、验证单元格信息
... ... @@ -179,16 +180,16 @@ public class TimetableExcelDataValidateStrategyImpl implements TimetableExcelDat
179 180  
180 181 // 2-1-1、第一行,第一列必须路牌2个字
181 182 if (colNum == 0) {
182   - if (!"$$$$$${txt-4022}".equals(cell.cellContent)) {
183   - throw new ScheduleException("第1行,第1列数据必须是路牌2个字");
  183 + if (!I18n.getInstance().getMessage("timetableExcelDataValidateStrategyImpl-line183").equals(cell.cellContent)) {
  184 + throw new ScheduleException(I18n.getInstance().getMessage("timetableExcelDataValidateStrategyImpl-line184"));
184 185 }
185 186 cell.isLpNameCell = true;
186 187 continue;
187 188 }
188 189 // 2-1-1-1、如果导入格式是NormalWithGs,第一行,第二列必须工时2个字
189 190 if (colNum == 1 && timetableExcelFormatType == TimetableExcelFormatType.NormalWithGs) {
190   - if (!"$$$$$${txt-4214}".equals(cell.cellContent)) {
191   - throw new ScheduleException("第1行,第2列数据必须是工时2个字");
  191 + if (!I18n.getInstance().getMessage("timetableExcelDataValidateStrategyImpl-line191").equals(cell.cellContent)) {
  192 + throw new ScheduleException(I18n.getInstance().getMessage("timetableExcelDataValidateStrategyImpl-line192"));
192 193 }
193 194 cell.isGsCell = true;
194 195 continue;
... ... @@ -196,15 +197,15 @@ public class TimetableExcelDataValidateStrategyImpl implements TimetableExcelDat
196 197  
197 198 // 2-1-2、如果导入格式是Dynamic,忽略指定列
198 199 if (timetableExcelFormatType == TimetableExcelFormatType.Dynamic) {
199   - if ("报到".equals(cell.cellContent) ||
200   - "$$$$$${txt-4502}".equals(cell.cellContent) ||
201   - "$$$$$${txt-4501}".equals(cell.cellContent) ||
202   - "$$$$$${txt-3536}".equals(cell.cellContent) ||
203   - "$$$$$${txt-4405}".equals(cell.cellContent) ||
204   - "$$$$$${txt-2437}".equals(cell.cellContent) ||
205   - "$$$$$${txt-4496}".equals(cell.cellContent) ||
206   - "$$$$$${txt-4406}".equals(cell.cellContent) ||
207   - "$$$$$${txt-2783}".equals(cell.cellContent)) {
  200 + if (I18n.getInstance().getMessage("timetableExcelDataValidateStrategyImpl-line200").equals(cell.cellContent) ||
  201 + I18n.getInstance().getMessage("timetableExcelDataValidateStrategyImpl-line201").equals(cell.cellContent) ||
  202 + I18n.getInstance().getMessage("timetableExcelDataValidateStrategyImpl-line202").equals(cell.cellContent) ||
  203 + I18n.getInstance().getMessage("timetableExcelDataValidateStrategyImpl-line203").equals(cell.cellContent) ||
  204 + I18n.getInstance().getMessage("timetableExcelDataValidateStrategyImpl-line204").equals(cell.cellContent) ||
  205 + I18n.getInstance().getMessage("timetableExcelDataValidateStrategyImpl-line205").equals(cell.cellContent) ||
  206 + I18n.getInstance().getMessage("timetableExcelDataValidateStrategyImpl-line206").equals(cell.cellContent) ||
  207 + I18n.getInstance().getMessage("timetableExcelDataValidateStrategyImpl-line207").equals(cell.cellContent) ||
  208 + I18n.getInstance().getMessage("timetableExcelDataValidateStrategyImpl-line208").equals(cell.cellContent)) {
208 209 // 这些列都忽略,不参与计算
209 210 cell.isEnable = false;
210 211 continue;
... ... @@ -212,12 +213,12 @@ public class TimetableExcelDataValidateStrategyImpl implements TimetableExcelDat
212 213 }
213 214  
214 215 // 2-1-3、出场,进场班次,不验证路由
215   - if ("$$$$$${txt-3989}".equals(cell.cellContent)) {
  216 + if (I18n.getInstance().getMessage("timetableExcelDataValidateStrategyImpl-line216").equals(cell.cellContent)) {
216 217 cell.isBc = true;
217 218 cell.isOutBc = true;
218 219 continue;
219 220 }
220   - if ("$$$$$${txt-3990}".equals(cell.cellContent)) {
  221 + if (I18n.getInstance().getMessage("timetableExcelDataValidateStrategyImpl-line221").equals(cell.cellContent)) {
221 222 cell.isBc = true;
222 223 cell.isInBc = true;
223 224 continue;
... ... @@ -238,9 +239,9 @@ public class TimetableExcelDataValidateStrategyImpl implements TimetableExcelDat
238 239 for (int rowNum = 1; rowNum < rowCount; rowNum ++) {
239 240 TimetableExcelInternalCell cell = internalExcelCells[rowNum][0];
240 241 if (StringUtils.isEmpty(cell.cellContent)) {
241   - throw new ScheduleException(String.format("第%d行,第1列路牌无数据", rowNum + 1));
  242 + throw new ScheduleException(String.format(I18n.getInstance().getMessage("timetableExcelDataValidateStrategyImpl-line242"), rowNum + 1));
242 243 } else if (gbIndexMap.get(cell.cellContent) != null) {
243   - throw new ScheduleException(String.format("第%d行,第1列的路牌数据与第%d行,第1列数据重复",
  244 + throw new ScheduleException(String.format(I18n.getInstance().getMessage("timetableExcelDataValidateStrategyImpl-line244"),
244 245 rowNum + 1,
245 246 gbIndexMap.get(cell.cellContent)));
246 247 } else {
... ... @@ -267,7 +268,7 @@ public class TimetableExcelDataValidateStrategyImpl implements TimetableExcelDat
267 268 this.validateGsContentCell(rowNum, colNum, cell.cellContent);
268 269 }
269 270 } else {
270   - throw new ScheduleException(String.format("第%d行,第%d列的单元格内容既不是发车时间,也不是工时!",
  271 + throw new ScheduleException(String.format(I18n.getInstance().getMessage("timetableExcelDataValidateStrategyImpl-line271"),
271 272 rowNum + 1, colNum + 1));
272 273 }
273 274 }
... ...
src/main/java/com/bsth/service/schedule/utils/DataToolsProperties.java
... ... @@ -39,6 +39,164 @@ public class DataToolsProperties {
39 39 @NotNull
40 40 private String kettleProperties;
41 41  
  42 + //---------------------------- 时刻表数据相关ktr(以下)----------------------------//
  43 + /** 时刻表数据导出用于编辑(英文) */
  44 + @NotNull
  45 + private String enTtinfoDetailDataExportForEdit;
  46 + /** 时刻表数据导出用于编辑(中文) */
  47 + @NotNull
  48 + private String zhTtinfoDetailDataExportForEdit;
  49 +
  50 + /** 时刻表数据导出用元数据(英文) */
  51 + @NotNull
  52 + private String enTtinfoDetailMetaDataForExport;
  53 + /** 时刻表数据导出(英文) */
  54 + @NotNull
  55 + private String enTtinfoDetailDataExport;
  56 + /** 时刻表数据导出用元数据(中文) */
  57 + @NotNull
  58 + private String zhTtinfoDetailMetaDataForExport;
  59 + /** 时刻表数据导出(中文) */
  60 + @NotNull
  61 + private String zhTtinfoDetailDataExport;
  62 + /** 时刻表数据导入用元数据(英文) */
  63 + @NotNull
  64 + private String enTtinfoDetailMetaDataForImport;
  65 + /** 时刻表数据导入用元数据(中文) */
  66 + @NotNull
  67 + private String zhTtinfoDetailMetaDataForImport;
  68 + /** 时刻表数据导入-动态导入格式(英文) */
  69 + @NotNull
  70 + private String enTtinfoDetailDataImportOfDynamic;
  71 + /** 时刻表数据导入-动态导入格式(中文) */
  72 + @NotNull
  73 + private String zhTtinfoDetailDataImportOfDynamic;
  74 + /** 时刻表数据导入-普通导入格式(英文) */
  75 + @NotNull
  76 + private String enTtinfoDetailDataImportOfNormal;
  77 + /** 时刻表数据导入-普通导入格式(中文) */
  78 + @NotNull
  79 + private String zhTtinfoDetailDataImportOfNormal;
  80 + /** 时刻表数据导入-普通带工时导入格式(英文) */
  81 + @NotNull
  82 + private String enTtinfoDetailDataImportOfNormalWithGs;
  83 + /** 时刻表数据导入-普通带工时导入格式(中文) */
  84 + @NotNull
  85 + private String zhTtinfoDetailDataImportOfNormalWithGs;
  86 +
  87 + public String getEnTtinfoDetailMetaDataForImport() {
  88 + return enTtinfoDetailMetaDataForImport;
  89 + }
  90 +
  91 + public void setEnTtinfoDetailMetaDataForImport(String enTtinfoDetailMetaDataForImport) {
  92 + this.enTtinfoDetailMetaDataForImport = enTtinfoDetailMetaDataForImport;
  93 + }
  94 +
  95 + public String getZhTtinfoDetailMetaDataForImport() {
  96 + return zhTtinfoDetailMetaDataForImport;
  97 + }
  98 +
  99 + public void setZhTtinfoDetailMetaDataForImport(String zhTtinfoDetailMetaDataForImport) {
  100 + this.zhTtinfoDetailMetaDataForImport = zhTtinfoDetailMetaDataForImport;
  101 + }
  102 +
  103 + public String getEnTtinfoDetailDataImportOfDynamic() {
  104 + return enTtinfoDetailDataImportOfDynamic;
  105 + }
  106 +
  107 + public void setEnTtinfoDetailDataImportOfDynamic(String enTtinfoDetailDataImportOfDynamic) {
  108 + this.enTtinfoDetailDataImportOfDynamic = enTtinfoDetailDataImportOfDynamic;
  109 + }
  110 +
  111 + public String getZhTtinfoDetailDataImportOfDynamic() {
  112 + return zhTtinfoDetailDataImportOfDynamic;
  113 + }
  114 +
  115 + public void setZhTtinfoDetailDataImportOfDynamic(String zhTtinfoDetailDataImportOfDynamic) {
  116 + this.zhTtinfoDetailDataImportOfDynamic = zhTtinfoDetailDataImportOfDynamic;
  117 + }
  118 +
  119 + public String getEnTtinfoDetailDataImportOfNormal() {
  120 + return enTtinfoDetailDataImportOfNormal;
  121 + }
  122 +
  123 + public void setEnTtinfoDetailDataImportOfNormal(String enTtinfoDetailDataImportOfNormal) {
  124 + this.enTtinfoDetailDataImportOfNormal = enTtinfoDetailDataImportOfNormal;
  125 + }
  126 +
  127 + public String getZhTtinfoDetailDataImportOfNormal() {
  128 + return zhTtinfoDetailDataImportOfNormal;
  129 + }
  130 +
  131 + public void setZhTtinfoDetailDataImportOfNormal(String zhTtinfoDetailDataImportOfNormal) {
  132 + this.zhTtinfoDetailDataImportOfNormal = zhTtinfoDetailDataImportOfNormal;
  133 + }
  134 +
  135 + public String getEnTtinfoDetailDataImportOfNormalWithGs() {
  136 + return enTtinfoDetailDataImportOfNormalWithGs;
  137 + }
  138 +
  139 + public void setEnTtinfoDetailDataImportOfNormalWithGs(String enTtinfoDetailDataImportOfNormalWithGs) {
  140 + this.enTtinfoDetailDataImportOfNormalWithGs = enTtinfoDetailDataImportOfNormalWithGs;
  141 + }
  142 +
  143 + public String getZhTtinfoDetailDataImportOfNormalWithGs() {
  144 + return zhTtinfoDetailDataImportOfNormalWithGs;
  145 + }
  146 +
  147 + public void setZhTtinfoDetailDataImportOfNormalWithGs(String zhTtinfoDetailDataImportOfNormalWithGs) {
  148 + this.zhTtinfoDetailDataImportOfNormalWithGs = zhTtinfoDetailDataImportOfNormalWithGs;
  149 + }
  150 +
  151 + public String getEnTtinfoDetailMetaDataForExport() {
  152 + return enTtinfoDetailMetaDataForExport;
  153 + }
  154 +
  155 + public void setEnTtinfoDetailMetaDataForExport(String enTtinfoDetailMetaDataForExport) {
  156 + this.enTtinfoDetailMetaDataForExport = enTtinfoDetailMetaDataForExport;
  157 + }
  158 +
  159 + public String getEnTtinfoDetailDataExport() {
  160 + return enTtinfoDetailDataExport;
  161 + }
  162 +
  163 + public void setEnTtinfoDetailDataExport(String enTtinfoDetailDataExport) {
  164 + this.enTtinfoDetailDataExport = enTtinfoDetailDataExport;
  165 + }
  166 +
  167 + public String getZhTtinfoDetailMetaDataForExport() {
  168 + return zhTtinfoDetailMetaDataForExport;
  169 + }
  170 +
  171 + public void setZhTtinfoDetailMetaDataForExport(String zhTtinfoDetailMetaDataForExport) {
  172 + this.zhTtinfoDetailMetaDataForExport = zhTtinfoDetailMetaDataForExport;
  173 + }
  174 +
  175 + public String getZhTtinfoDetailDataExport() {
  176 + return zhTtinfoDetailDataExport;
  177 + }
  178 +
  179 + public void setZhTtinfoDetailDataExport(String zhTtinfoDetailDataExport) {
  180 + this.zhTtinfoDetailDataExport = zhTtinfoDetailDataExport;
  181 + }
  182 +
  183 + public String getEnTtinfoDetailDataExportForEdit() {
  184 + return enTtinfoDetailDataExportForEdit;
  185 + }
  186 +
  187 + public void setEnTtinfoDetailDataExportForEdit(String enTtinfoDetailDataExportForEdit) {
  188 + this.enTtinfoDetailDataExportForEdit = enTtinfoDetailDataExportForEdit;
  189 + }
  190 +
  191 + public String getZhTtinfoDetailDataExportForEdit() {
  192 + return zhTtinfoDetailDataExportForEdit;
  193 + }
  194 +
  195 + public void setZhTtinfoDetailDataExportForEdit(String zhTtinfoDetailDataExportForEdit) {
  196 + this.zhTtinfoDetailDataExportForEdit = zhTtinfoDetailDataExportForEdit;
  197 + }
  198 + //---------------------------- 时刻表数据相关ktr(以上)----------------------------//
  199 +
42 200 //---------------------------- 排班规则数据相关ktr(以下)----------------------------//
43 201 /** 排班规则数据导入(英文)*/
44 202 @NotNull
... ... @@ -133,7 +291,7 @@ public class DataToolsProperties {
133 291 this.zhEmployeeConfigDataExport = zhEmployeeConfigDataExport;
134 292 }
135 293  
136   -//---------------------------- 人员配置数据相关ktr(以上)----------------------------//
  294 + //---------------------------- 人员配置数据相关ktr(以上)----------------------------//
137 295  
138 296 //---------------------------- 车辆配置数据相关ktr(以下)----------------------------//
139 297 /** 车辆配置数据导入(英文)*/
... ... @@ -231,7 +389,6 @@ public class DataToolsProperties {
231 389  
232 390 //---------------------------- 路牌信息相关ktr(以上)----------------------------//
233 391  
234   -
235 392 //---------------------------- 车辆基础数据相关ktr(以下)----------------------------//
236 393 /** 车辆基础信息导入(英文) */
237 394 @NotNull
... ... @@ -328,42 +485,6 @@ public class DataToolsProperties {
328 485  
329 486 //---------------------------- 人员基础数据相关ktr(以上)----------------------------//
330 487  
331   -
332   - //------------------------- 导入数据ktr --------------------------//
333   - /** 时刻表基础信息导入 */
334   - @NotNull
335   - private String ttinfoDatainputktr;
336   - /** 时刻表明细信息导入(元数据) */
337   - @NotNull
338   - private String ttinfodetailMetadatainputktr;
339   - /** 时刻表明细编辑用数据 */
340   - @NotNull
341   - private String ttinfodetailForeditktr;
342   - /** 时刻表明细信息导入 */
343   - @NotNull
344   - private String ttinfodetailDatainputktr;
345   - /** 时刻表明细信息导入2 */
346   - @NotNull
347   - private String ttinfodetailDatainputktr2;
348   - /** 时刻表明细信息导入2(带版本) */
349   - @NotNull
350   - private String ttinfodetailDatainputktr2version;
351   - /** 时刻表明细信息导入2(带版本),使用生成时刻表格式 */
352   - @NotNull
353   - private String ttinfodetailDatainputktr2version2;
354   - /** 时刻表明细信息导入2,一般格式(路牌列后加一列工时列)参看 TimetableExcelFormatType */
355   - @NotNull
356   - private String ttinfodetailDatainputktr2normalwithgs;
357   -
358   -
359   - //------------------------- 导出数据ktr --------------------------//
360   - /** 时刻表导出元数据ktr转换 */
361   - @NotNull
362   - private String ttinfodetailMetaoutput;
363   - /** 时刻表导出数据ktr转换 */
364   - @NotNull
365   - private String ttinfodetailOutput;
366   -
367 488 //------------------------ 数据同步ktr -----------------------//
368 489 @NotNull
369 490 /** 车辆信息同步 */
... ... @@ -390,26 +511,6 @@ public class DataToolsProperties {
390 511 this.transErrordir = transErrordir;
391 512 }
392 513  
393   - public String getTtinfodetailMetadatainputktr() {
394   - return ttinfodetailMetadatainputktr;
395   - }
396   -
397   - public void setTtinfodetailMetadatainputktr(String ttinfodetailMetadatainputktr) {
398   - this.ttinfodetailMetadatainputktr = ttinfodetailMetadatainputktr;
399   - }
400   -
401   - public void setTtinfoDatainputktr(String ttinfoDatainputktr) {
402   - this.ttinfoDatainputktr = ttinfoDatainputktr;
403   - }
404   -
405   - public String getTtinfodetailDatainputktr() {
406   - return ttinfodetailDatainputktr;
407   - }
408   -
409   - public void setTtinfodetailDatainputktr(String ttinfodetailDatainputktr) {
410   - this.ttinfodetailDatainputktr = ttinfodetailDatainputktr;
411   - }
412   -
413 514 public String getKettleProperties() {
414 515 return kettleProperties;
415 516 }
... ... @@ -426,14 +527,6 @@ public class DataToolsProperties {
426 527 this.transTempdir = transTempdir;
427 528 }
428 529  
429   - public String getTtinfodetailForeditktr() {
430   - return ttinfodetailForeditktr;
431   - }
432   -
433   - public void setTtinfodetailForeditktr(String ttinfodetailForeditktr) {
434   - this.ttinfodetailForeditktr = ttinfodetailForeditktr;
435   - }
436   -
437 530 public String getFileoutputDir() {
438 531 return fileoutputDir;
439 532 }
... ... @@ -442,38 +535,6 @@ public class DataToolsProperties {
442 535 this.fileoutputDir = fileoutputDir;
443 536 }
444 537  
445   - public String getTtinfodetailMetaoutput() {
446   - return ttinfodetailMetaoutput;
447   - }
448   -
449   - public void setTtinfodetailMetaoutput(String ttinfodetailMetaoutput) {
450   - this.ttinfodetailMetaoutput = ttinfodetailMetaoutput;
451   - }
452   -
453   - public String getTtinfodetailOutput() {
454   - return ttinfodetailOutput;
455   - }
456   -
457   - public void setTtinfodetailOutput(String ttinfodetailOutput) {
458   - this.ttinfodetailOutput = ttinfodetailOutput;
459   - }
460   -
461   - public String getTtinfodetailDatainputktr2version() {
462   - return ttinfodetailDatainputktr2version;
463   - }
464   -
465   - public void setTtinfodetailDatainputktr2version(String ttinfodetailDatainputktr2version) {
466   - this.ttinfodetailDatainputktr2version = ttinfodetailDatainputktr2version;
467   - }
468   -
469   - public String getTtinfodetailDatainputktr2() {
470   - return ttinfodetailDatainputktr2;
471   - }
472   -
473   - public void setTtinfodetailDatainputktr2(String ttinfodetailDatainputktr2) {
474   - this.ttinfodetailDatainputktr2 = ttinfodetailDatainputktr2;
475   - }
476   -
477 538 public String getTransTemplatedir() {
478 539 return transTemplatedir;
479 540 }
... ... @@ -482,22 +543,6 @@ public class DataToolsProperties {
482 543 this.transTemplatedir = transTemplatedir;
483 544 }
484 545  
485   - public String getTtinfodetailDatainputktr2version2() {
486   - return ttinfodetailDatainputktr2version2;
487   - }
488   -
489   - public void setTtinfodetailDatainputktr2version2(String ttinfodetailDatainputktr2version2) {
490   - this.ttinfodetailDatainputktr2version2 = ttinfodetailDatainputktr2version2;
491   - }
492   -
493   - public String getTtinfodetailDatainputktr2normalwithgs() {
494   - return ttinfodetailDatainputktr2normalwithgs;
495   - }
496   -
497   - public void setTtinfodetailDatainputktr2normalwithgs(String ttinfodetailDatainputktr2normalwithgs) {
498   - this.ttinfodetailDatainputktr2normalwithgs = ttinfodetailDatainputktr2normalwithgs;
499   - }
500   -
501 546 public String getVehicleDatasyncktr() {
502 547 return vehicleDatasyncktr;
503 548 }
... ...
src/main/resources/datatools/config-cloud.properties
... ... @@ -17,6 +17,22 @@ datatools.trans_templatedir=/home/bsth_control_u_d_files/template
17 17 # 导出数据文件目录配置(根据不同的环境需要修正)
18 18 datatools.fileoutput_dir=/home/bsth_control_u_d_files
19 19  
  20 +##---------------------------- 时刻表数据相关ktr(以下)----------------------------##
  21 +datatools.en_ttinfo_detail_meta_data_for_export=/datatools/ktrs/en/ttinfo-detail-metadata_for_export.ktr
  22 +datatools.en_ttinfo_detail_data_export=/datatools/ktrs/en/ttinfo-detail-data_export.ktr
  23 +datatools.zh_ttinfo_detail_meta_data_for_export=/datatools/ktrs/zh/ttinfo-detail-metadata_for_export.ktr
  24 +datatools.zh_ttinfo_detail_data_export=/datatools/ktrs/zh/ttinfo-detail-data_export.ktr
  25 +datatools.en_ttinfo_detail_data_export_for_edit=/datatools/ktrs/en/ttinfo-detail-data_export_for_edit.ktr
  26 +datatools.zh_ttinfo_detail_data_export_for_edit=/datatools/ktrs/zh/ttinfo-detail-data_export_for_edit.ktr
  27 +datatools.en_ttinfo_detail_meta_data_for_import=/datatools/ktrs/en/ttinfo-detail-metadata_for_import.ktr
  28 +datatools.zh_ttinfo_detail_meta_data_for_import=/datatools/ktrs/zh/ttinfo-detail-metadata_for_import.ktr
  29 +datatools.en_ttinfo_detail_data_import_of_dynamic=/datatools/ktrs/en/ttinfo-detail-data_import_of_dynamic.ktr
  30 +datatools.zh_ttinfo_detail_data_import_of_dynamic=/datatools/ktrs/zh/ttinfo-detail-data_import_of_dynamic.ktr
  31 +datatools.en_ttinfo_detail_data_import_of_normal=/datatools/ktrs/en/ttinfo-detail-data_import_of_normal.ktr
  32 +datatools.zh_ttinfo_detail_data_import_of_normal=/datatools/ktrs/zh/ttinfo-detail-data_import_of_normal.ktr
  33 +datatools.en_ttinfo_detail_data_import_of_normal_with_gs=/datatools/ktrs/en/ttinfo-detail-data_import_of_normalWithGs.ktr
  34 +datatools.zh_ttinfo_detail_data_import_of_normal_with_gs=/datatools/ktrs/zh/ttinfo-detail-data_import_of_normalWithGs.ktr
  35 +##---------------------------- 时刻表数据相关ktr(以下)----------------------------##
20 36  
21 37 ##---------------------------- 车辆基础数据相关ktr(以下)----------------------------##
22 38 datatools.en_vehicle_basic_data_import=/datatools/ktrs/en/vehicle-basic-data_import.ktr
... ... @@ -60,32 +76,6 @@ datatools.zh_schedule_rule_data_import=/datatools/ktrs/zh/schedule-rule-data_imp
60 76 datatools.zh_schedule_rule_data_export=/datatools/ktrs/zh/schedule-rule-data_export.ktr
61 77 ##---------------------------- 排班规则数据相关ktr(以上)----------------------------##
62 78  
63   -
64   -##---------------------------- 导入数据ktr ----------------------------##
65   -# 时刻表基础信息导入
66   -datatools.ttinfo_datainputktr=/datatools/ktrs/ttinfoDataInput.ktr
67   -# 时刻表明细信息导入(元数据)
68   -datatools.ttinfodetail_metadatainputktr=/datatools/ktrs/ttinfodetailDataInputMetaData.ktr
69   -# 时刻表明细编辑用数据
70   -datatools.ttinfodetail_foreditktr=/datatools/ktrs/ttinfodetailoutputforedit.ktr
71   -# 时刻表明细信息导入
72   -datatools.ttinfodetail_datainputktr=/datatools/ktrs/ttinfodetailDataInput.ktr
73   -# 时刻表明细信息导入2
74   -datatools.ttinfodetail_datainputktr2=/datatools/ktrs/ttinfodetailDataInput2.ktr
75   -# 时刻表明细信息导入2(版本化)
76   -datatools.ttinfodetail_datainputktr2version=/datatools/ktrs/ttinfodetailDataInput2_version.ktr
77   -# 时刻表明细信息导入2(版本化),使用生成时刻表格式
78   -datatools.ttinfodetail_datainputktr2version2=/datatools/ktrs/ttinfodetailDataInput2_version_2.ktr
79   -# 时刻表明细信息导入2,一般格式(路牌列后加一列工时列)
80   -datatools.ttinfodetail_datainputktr2normalwithgs=/datatools/ktrs/ttinfodetailDataInput2_normalwithgs.ktr
81   -
82   -
83   -##---------------------------- 导出数据ktr -----------------------------##
84   -# 时刻表导出元数据ktr转换
85   -datatools.ttinfodetail_metaoutput=/datatools/ktrs/ttinfodetailDataOutputMetaData.ktr
86   -# 时刻表导出数据ktr转换
87   -datatools.ttinfodetail_output=/datatools/ktrs/ttinfodetailDataOutput.ktr
88   -
89 79 ##--------------------------- 数据同步ktr ------------------------##
90 80 datatools.vehicle_datasyncktr=/datatools/ktrs/vehicleDataSync.ktr
91 81  
... ...
src/main/resources/datatools/config-dev.properties
... ... @@ -17,6 +17,23 @@ datatools.trans_templatedir=/Users/xu/resource/project_code/runtime_temp/bsth_co
17 17 # 导出数据文件目录配置(根据不同的环境需要修正)
18 18 datatools.fileoutput_dir=/Users/xu/resource/project_code/runtime_temp/bsth_control_u_d_files
19 19  
  20 +##---------------------------- 时刻表数据相关ktr(以下)----------------------------##
  21 +datatools.en_ttinfo_detail_meta_data_for_export=/datatools/ktrs/en/ttinfo-detail-metadata_for_export.ktr
  22 +datatools.en_ttinfo_detail_data_export=/datatools/ktrs/en/ttinfo-detail-data_export.ktr
  23 +datatools.zh_ttinfo_detail_meta_data_for_export=/datatools/ktrs/zh/ttinfo-detail-metadata_for_export.ktr
  24 +datatools.zh_ttinfo_detail_data_export=/datatools/ktrs/zh/ttinfo-detail-data_export.ktr
  25 +datatools.en_ttinfo_detail_data_export_for_edit=/datatools/ktrs/en/ttinfo-detail-data_export_for_edit.ktr
  26 +datatools.zh_ttinfo_detail_data_export_for_edit=/datatools/ktrs/zh/ttinfo-detail-data_export_for_edit.ktr
  27 +datatools.en_ttinfo_detail_meta_data_for_import=/datatools/ktrs/en/ttinfo-detail-metadata_for_import.ktr
  28 +datatools.zh_ttinfo_detail_meta_data_for_import=/datatools/ktrs/zh/ttinfo-detail-metadata_for_import.ktr
  29 +datatools.en_ttinfo_detail_data_import_of_dynamic=/datatools/ktrs/en/ttinfo-detail-data_import_of_dynamic.ktr
  30 +datatools.zh_ttinfo_detail_data_import_of_dynamic=/datatools/ktrs/zh/ttinfo-detail-data_import_of_dynamic.ktr
  31 +datatools.en_ttinfo_detail_data_import_of_normal=/datatools/ktrs/en/ttinfo-detail-data_import_of_normal.ktr
  32 +datatools.zh_ttinfo_detail_data_import_of_normal=/datatools/ktrs/zh/ttinfo-detail-data_import_of_normal.ktr
  33 +datatools.en_ttinfo_detail_data_import_of_normal_with_gs=/datatools/ktrs/en/ttinfo-detail-data_import_of_normalWithGs.ktr
  34 +datatools.zh_ttinfo_detail_data_import_of_normal_with_gs=/datatools/ktrs/zh/ttinfo-detail-data_import_of_normalWithGs.ktr
  35 +##---------------------------- 时刻表数据相关ktr(以下)----------------------------##
  36 +
20 37 ##---------------------------- 车辆基础数据相关ktr(以下)----------------------------##
21 38 datatools.en_vehicle_basic_data_import=/datatools/ktrs/en/vehicle-basic-data_import.ktr
22 39 datatools.en_vehicle_basic_data_export=/datatools/ktrs/en/vehicle-basic-data_export.ktr
... ... @@ -59,32 +76,6 @@ datatools.zh_schedule_rule_data_import=/datatools/ktrs/zh/schedule-rule-data_imp
59 76 datatools.zh_schedule_rule_data_export=/datatools/ktrs/zh/schedule-rule-data_export.ktr
60 77 ##---------------------------- 排班规则数据相关ktr(以上)----------------------------##
61 78  
62   -
63   -##---------------------------- 导入数据ktr ----------------------------##
64   -# 时刻表基础信息导入
65   -datatools.ttinfo_datainputktr=/datatools/ktrs/ttinfoDataInput.ktr
66   -# 时刻表明细信息导入(元数据)
67   -datatools.ttinfodetail_metadatainputktr=/datatools/ktrs/ttinfodetailDataInputMetaData.ktr
68   -# 时刻表明细编辑用数据
69   -datatools.ttinfodetail_foreditktr=/datatools/ktrs/ttinfodetailoutputforedit.ktr
70   -# 时刻表明细信息导入
71   -datatools.ttinfodetail_datainputktr=/datatools/ktrs/ttinfodetailDataInput.ktr
72   -# 时刻表明细信息导入2
73   -datatools.ttinfodetail_datainputktr2=/datatools/ktrs/ttinfodetailDataInput2.ktr
74   -# 时刻表明细信息导入2(版本化)
75   -datatools.ttinfodetail_datainputktr2version=/datatools/ktrs/ttinfodetailDataInput2_version.ktr
76   -# 时刻表明细信息导入2(版本化),使用生成时刻表格式
77   -datatools.ttinfodetail_datainputktr2version2=/datatools/ktrs/ttinfodetailDataInput2_version_2.ktr
78   -# 时刻表明细信息导入2,一般格式(路牌列后加一列工时列)
79   -datatools.ttinfodetail_datainputktr2normalwithgs=/datatools/ktrs/ttinfodetailDataInput2_normalwithgs.ktr
80   -
81   -##---------------------------- 导出数据ktr -----------------------------##
82   -# 时刻表导出元数据ktr转换
83   -datatools.ttinfodetail_metaoutput=/datatools/ktrs/ttinfodetailDataOutputMetaData.ktr
84   -# 时刻表导出数据ktr转换
85   -datatools.ttinfodetail_output=/datatools/ktrs/ttinfodetailDataOutput.ktr
86   -
87   -
88 79 ##--------------------------- 数据同步ktr ------------------------##
89 80 datatools.vehicle_datasyncktr=/datatools/ktrs/vehicleDataSync.ktr
90 81  
... ...
src/main/resources/datatools/config-prod.properties
... ... @@ -17,6 +17,22 @@ datatools.trans_templatedir=/home/bsth_control_u_d_files/template
17 17 # 导出数据文件目录配置(根据不同的环境需要修正)
18 18 datatools.fileoutput_dir=/home/bsth_control_u_d_files
19 19  
  20 +##---------------------------- 时刻表数据相关ktr(以下)----------------------------##
  21 +datatools.en_ttinfo_detail_meta_data_for_export=/datatools/ktrs/en/ttinfo-detail-metadata_for_export.ktr
  22 +datatools.en_ttinfo_detail_data_export=/datatools/ktrs/en/ttinfo-detail-data_export.ktr
  23 +datatools.zh_ttinfo_detail_meta_data_for_export=/datatools/ktrs/zh/ttinfo-detail-metadata_for_export.ktr
  24 +datatools.zh_ttinfo_detail_data_export=/datatools/ktrs/zh/ttinfo-detail-data_export.ktr
  25 +datatools.en_ttinfo_detail_data_export_for_edit=/datatools/ktrs/en/ttinfo-detail-data_export_for_edit.ktr
  26 +datatools.zh_ttinfo_detail_data_export_for_edit=/datatools/ktrs/zh/ttinfo-detail-data_export_for_edit.ktr
  27 +datatools.en_ttinfo_detail_meta_data_for_import=/datatools/ktrs/en/ttinfo-detail-metadata_for_import.ktr
  28 +datatools.zh_ttinfo_detail_meta_data_for_import=/datatools/ktrs/zh/ttinfo-detail-metadata_for_import.ktr
  29 +datatools.en_ttinfo_detail_data_import_of_dynamic=/datatools/ktrs/en/ttinfo-detail-data_import_of_dynamic.ktr
  30 +datatools.zh_ttinfo_detail_data_import_of_dynamic=/datatools/ktrs/zh/ttinfo-detail-data_import_of_dynamic.ktr
  31 +datatools.en_ttinfo_detail_data_import_of_normal=/datatools/ktrs/en/ttinfo-detail-data_import_of_normal.ktr
  32 +datatools.zh_ttinfo_detail_data_import_of_normal=/datatools/ktrs/zh/ttinfo-detail-data_import_of_normal.ktr
  33 +datatools.en_ttinfo_detail_data_import_of_normal_with_gs=/datatools/ktrs/en/ttinfo-detail-data_import_of_normalWithGs.ktr
  34 +datatools.zh_ttinfo_detail_data_import_of_normal_with_gs=/datatools/ktrs/zh/ttinfo-detail-data_import_of_normalWithGs.ktr
  35 +##---------------------------- 时刻表数据相关ktr(以下)----------------------------##
20 36  
21 37 ##---------------------------- 车辆基础数据相关ktr(以下)----------------------------##
22 38 datatools.en_vehicle_basic_data_import=/datatools/ktrs/en/vehicle-basic-data_import.ktr
... ... @@ -60,32 +76,6 @@ datatools.zh_schedule_rule_data_import=/datatools/ktrs/zh/schedule-rule-data_imp
60 76 datatools.zh_schedule_rule_data_export=/datatools/ktrs/zh/schedule-rule-data_export.ktr
61 77 ##---------------------------- 排班规则数据相关ktr(以上)----------------------------##
62 78  
63   -
64   -##---------------------------- 导入数据ktr ----------------------------##
65   -# 时刻表基础信息导入
66   -datatools.ttinfo_datainputktr=/datatools/ktrs/ttinfoDataInput.ktr
67   -# 时刻表明细信息导入(元数据)
68   -datatools.ttinfodetail_metadatainputktr=/datatools/ktrs/ttinfodetailDataInputMetaData.ktr
69   -# 时刻表明细编辑用数据
70   -datatools.ttinfodetail_foreditktr=/datatools/ktrs/ttinfodetailoutputforedit.ktr
71   -# 时刻表明细信息导入
72   -datatools.ttinfodetail_datainputktr=/datatools/ktrs/ttinfodetailDataInput.ktr
73   -# 时刻表明细信息导入2
74   -datatools.ttinfodetail_datainputktr2=/datatools/ktrs/ttinfodetailDataInput2.ktr
75   -# 时刻表明细信息导入2(版本化)
76   -datatools.ttinfodetail_datainputktr2version=/datatools/ktrs/ttinfodetailDataInput2_version.ktr
77   -# 时刻表明细信息导入2(版本化),使用生成时刻表格式
78   -datatools.ttinfodetail_datainputktr2version2=/datatools/ktrs/ttinfodetailDataInput2_version_2.ktr
79   -# 时刻表明细信息导入2,一般格式(路牌列后加一列工时列)
80   -datatools.ttinfodetail_datainputktr2normalwithgs=/datatools/ktrs/ttinfodetailDataInput2_normalwithgs.ktr
81   -
82   -
83   -##---------------------------- 导出数据ktr -----------------------------##
84   -# 时刻表导出元数据ktr转换
85   -datatools.ttinfodetail_metaoutput=/datatools/ktrs/ttinfodetailDataOutputMetaData.ktr
86   -# 时刻表导出数据ktr转换
87   -datatools.ttinfodetail_output=/datatools/ktrs/ttinfodetailDataOutput.ktr
88   -
89 79 ##--------------------------- 数据同步ktr ------------------------##
90 80 datatools.vehicle_datasyncktr=/datatools/ktrs/vehicleDataSync.ktr
91 81  
... ...
src/main/resources/datatools/config-test.properties
... ... @@ -17,7 +17,22 @@ datatools.trans_templatedir=/Users/xu/resource/project_code/runtime_temp/bsth_co
17 17 # 导出数据文件目录配置(根据不同的环境需要修正)
18 18 datatools.fileoutput_dir=/Users/xu/resource/project_code/runtime_temp/bsth_control_u_d_files
19 19  
20   -
  20 +##---------------------------- 时刻表数据相关ktr(以下)----------------------------##
  21 +datatools.en_ttinfo_detail_meta_data_for_export=/datatools/ktrs/en/ttinfo-detail-metadata_for_export.ktr
  22 +datatools.en_ttinfo_detail_data_export=/datatools/ktrs/en/ttinfo-detail-data_export.ktr
  23 +datatools.zh_ttinfo_detail_meta_data_for_export=/datatools/ktrs/zh/ttinfo-detail-metadata_for_export.ktr
  24 +datatools.zh_ttinfo_detail_data_export=/datatools/ktrs/zh/ttinfo-detail-data_export.ktr
  25 +datatools.en_ttinfo_detail_data_export_for_edit=/datatools/ktrs/en/ttinfo-detail-data_export_for_edit.ktr
  26 +datatools.zh_ttinfo_detail_data_export_for_edit=/datatools/ktrs/zh/ttinfo-detail-data_export_for_edit.ktr
  27 +datatools.en_ttinfo_detail_meta_data_for_import=/datatools/ktrs/en/ttinfo-detail-metadata_for_import.ktr
  28 +datatools.zh_ttinfo_detail_meta_data_for_import=/datatools/ktrs/zh/ttinfo-detail-metadata_for_import.ktr
  29 +datatools.en_ttinfo_detail_data_import_of_dynamic=/datatools/ktrs/en/ttinfo-detail-data_import_of_dynamic.ktr
  30 +datatools.zh_ttinfo_detail_data_import_of_dynamic=/datatools/ktrs/zh/ttinfo-detail-data_import_of_dynamic.ktr
  31 +datatools.en_ttinfo_detail_data_import_of_normal=/datatools/ktrs/en/ttinfo-detail-data_import_of_normal.ktr
  32 +datatools.zh_ttinfo_detail_data_import_of_normal=/datatools/ktrs/zh/ttinfo-detail-data_import_of_normal.ktr
  33 +datatools.en_ttinfo_detail_data_import_of_normal_with_gs=/datatools/ktrs/en/ttinfo-detail-data_import_of_normalWithGs.ktr
  34 +datatools.zh_ttinfo_detail_data_import_of_normal_with_gs=/datatools/ktrs/zh/ttinfo-detail-data_import_of_normalWithGs.ktr
  35 +##---------------------------- 时刻表数据相关ktr(以下)----------------------------##
21 36  
22 37 ##---------------------------- 车辆基础数据相关ktr(以下)----------------------------##
23 38 datatools.en_vehicle_basic_data_import=/datatools/ktrs/en/vehicle-basic-data_import.ktr
... ... @@ -62,30 +77,6 @@ datatools.zh_schedule_rule_data_export=/datatools/ktrs/zh/schedule-rule-data_exp
62 77 ##---------------------------- 排班规则数据相关ktr(以上)----------------------------##
63 78  
64 79  
65   -##---------------------------- 导入数据ktr ----------------------------##
66   -# 时刻表基础信息导入
67   -datatools.ttinfo_datainputktr=/datatools/ktrs/ttinfoDataInput.ktr
68   -# 时刻表明细信息导入(元数据)
69   -datatools.ttinfodetail_metadatainputktr=/datatools/ktrs/ttinfodetailDataInputMetaData.ktr
70   -# 时刻表明细编辑用数据
71   -datatools.ttinfodetail_foreditktr=/datatools/ktrs/ttinfodetailoutputforedit.ktr
72   -# 时刻表明细信息导入
73   -datatools.ttinfodetail_datainputktr=/datatools/ktrs/ttinfodetailDataInput.ktr
74   -# 时刻表明细信息导入2
75   -datatools.ttinfodetail_datainputktr2=/datatools/ktrs/ttinfodetailDataInput2.ktr
76   -# 时刻表明细信息导入2(版本化)
77   -datatools.ttinfodetail_datainputktr2version=/datatools/ktrs/ttinfodetailDataInput2_version.ktr
78   -# 时刻表明细信息导入2(版本化),使用生成时刻表格式
79   -datatools.ttinfodetail_datainputktr2version2=/datatools/ktrs/ttinfodetailDataInput2_version_2.ktr
80   -# 时刻表明细信息导入2,一般格式(路牌列后加一列工时列)
81   -datatools.ttinfodetail_datainputktr2normalwithgs=/datatools/ktrs/ttinfodetailDataInput2_normalwithgs.ktr
82   -
83   -##---------------------------- 导出数据ktr -----------------------------##
84   -# 时刻表导出元数据ktr转换
85   -datatools.ttinfodetail_metaoutput=/datatools/ktrs/ttinfodetailDataOutputMetaData.ktr
86   -# 时刻表导出数据ktr转换
87   -datatools.ttinfodetail_output=/datatools/ktrs/ttinfodetailDataOutput.ktr
88   -
89 80 ##--------------------------- 数据同步ktr ------------------------##
90 81 datatools.vehicle_datasyncktr=/datatools/ktrs/vehicleDataSync.ktr
91 82  
... ...
src/main/resources/datatools/ktrs/en/ttinfo-detail-data_export.ktr 0 → 100644
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<transformation>
  3 + <info>
  4 + <name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x5bfc;&#x51fa;_en</name>
  5 + <description/>
  6 + <extended_description/>
  7 + <trans_version/>
  8 + <trans_type>Normal</trans_type>
  9 + <trans_status>0</trans_status>
  10 + <directory>&#x2f;</directory>
  11 + <parameters>
  12 + </parameters>
  13 + <log>
  14 +<trans-log-table><connection/>
  15 +<schema/>
  16 +<table/>
  17 +<size_limit_lines/>
  18 +<interval/>
  19 +<timeout_days/>
  20 +<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>
  21 +<perf-log-table><connection/>
  22 +<schema/>
  23 +<table/>
  24 +<interval/>
  25 +<timeout_days/>
  26 +<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>
  27 +<channel-log-table><connection/>
  28 +<schema/>
  29 +<table/>
  30 +<timeout_days/>
  31 +<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>
  32 +<step-log-table><connection/>
  33 +<schema/>
  34 +<table/>
  35 +<timeout_days/>
  36 +<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>
  37 +<metrics-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>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>
  42 + </log>
  43 + <maxdate>
  44 + <connection/>
  45 + <table/>
  46 + <field/>
  47 + <offset>0.0</offset>
  48 + <maxdiff>0.0</maxdiff>
  49 + </maxdate>
  50 + <size_rowset>10000</size_rowset>
  51 + <sleep_time_empty>50</sleep_time_empty>
  52 + <sleep_time_full>50</sleep_time_full>
  53 + <unique_connections>N</unique_connections>
  54 + <feedback_shown>Y</feedback_shown>
  55 + <feedback_size>50000</feedback_size>
  56 + <using_thread_priorities>Y</using_thread_priorities>
  57 + <shared_objects_file/>
  58 + <capture_step_performance>N</capture_step_performance>
  59 + <step_performance_capturing_delay>1000</step_performance_capturing_delay>
  60 + <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit>
  61 + <dependencies>
  62 + </dependencies>
  63 + <partitionschemas>
  64 + </partitionschemas>
  65 + <slaveservers>
  66 + </slaveservers>
  67 + <clusterschemas>
  68 + </clusterschemas>
  69 + <created_user>-</created_user>
  70 + <created_date>2016&#x2f;11&#x2f;15 13&#x3a;00&#x3a;52.076</created_date>
  71 + <modified_user>-</modified_user>
  72 + <modified_date>2016&#x2f;11&#x2f;15 13&#x3a;00&#x3a;52.076</modified_date>
  73 + <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA&#x3d;</key_for_session_key>
  74 + <is_key_private>N</is_key_private>
  75 + </info>
  76 + <notepads>
  77 + <notepad>
  78 + <note>&#x8fd9;&#x91cc;&#x6709;&#x4e9b;&#x95ee;&#x9898;&#xa;&#x5728;window2012&#x7684;&#x73af;&#x5883;&#x4e0b;&#xff0c;&#xa;MySql&#x6570;&#x636e;&#x5e93;&#x67e5;&#x8be2;&#x4e2d;&#x5982;&#x679c;&#x8fd4;&#x56de;&#x4e2d;&#x6587;&#x5185;&#x5bb9;&#x7684;&#x5b57;&#x6bb5;&#xff0c;&#x8fd9;&#x4e2a;&#x5185;&#x5bb9;&#x4e71;&#x7801;&#xa;&#x89e3;&#x51b3;&#x529e;&#x6cd5;&#xff0c;&#x5c31;&#x662f;&#x6570;&#x636e;&#x5e93;&#x67e5;&#x8be2;&#x5168;&#x90e8;&#x7f13;&#x5b58;&#xff0c;&#x5c31;&#x4e0d;&#x4e71;&#x7801;&#xa;linux&#x73af;&#x5883;&#x4e0b;&#x6ca1;&#x95ee;&#x9898;</note>
  79 + <xloc>114</xloc>
  80 + <yloc>227</yloc>
  81 + <width>333</width>
  82 + <heigth>90</heigth>
  83 + <fontname>YaHei Consolas Hybrid</fontname>
  84 + <fontsize>12</fontsize>
  85 + <fontbold>N</fontbold>
  86 + <fontitalic>N</fontitalic>
  87 + <fontcolorred>0</fontcolorred>
  88 + <fontcolorgreen>0</fontcolorgreen>
  89 + <fontcolorblue>0</fontcolorblue>
  90 + <backgroundcolorred>255</backgroundcolorred>
  91 + <backgroundcolorgreen>205</backgroundcolorgreen>
  92 + <backgroundcolorblue>112</backgroundcolorblue>
  93 + <bordercolorred>100</bordercolorred>
  94 + <bordercolorgreen>100</bordercolorgreen>
  95 + <bordercolorblue>100</bordercolorblue>
  96 + <drawshadow>Y</drawshadow>
  97 + </notepad>
  98 + </notepads>
  99 + <connection>
  100 + <name>192.168.168.1_jwgl_dw</name>
  101 + <server>192.168.168.1</server>
  102 + <type>ORACLE</type>
  103 + <access>Native</access>
  104 + <database>orcl</database>
  105 + <port>1521</port>
  106 + <username>jwgl_dw</username>
  107 + <password>Encrypted 2be98afc86aa7f2e4cb13b977d2adabcd</password>
  108 + <servername/>
  109 + <data_tablespace/>
  110 + <index_tablespace/>
  111 + <attributes>
  112 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  113 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  114 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  115 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  116 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  117 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  118 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  119 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  120 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  121 + </attributes>
  122 + </connection>
  123 + <connection>
  124 + <name>bus_control_variable</name>
  125 + <server>&#x24;&#x7b;v_db_ip&#x7d;</server>
  126 + <type>MYSQL</type>
  127 + <access>Native</access>
  128 + <database>&#x24;&#x7b;v_db_dname&#x7d;</database>
  129 + <port>3306</port>
  130 + <username>&#x24;&#x7b;v_db_uname&#x7d;</username>
  131 + <password>&#x24;&#x7b;v_db_pwd&#x7d;</password>
  132 + <servername/>
  133 + <data_tablespace/>
  134 + <index_tablespace/>
  135 + <attributes>
  136 + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
  137 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  138 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  139 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  140 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  141 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  142 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  143 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  144 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  145 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  146 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  147 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  148 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  149 + </attributes>
  150 + </connection>
  151 + <connection>
  152 + <name>bus_control_&#x516c;&#x53f8;_201</name>
  153 + <server>localhost</server>
  154 + <type>MYSQL</type>
  155 + <access>Native</access>
  156 + <database>control</database>
  157 + <port>3306</port>
  158 + <username>root</username>
  159 + <password>Encrypted </password>
  160 + <servername/>
  161 + <data_tablespace/>
  162 + <index_tablespace/>
  163 + <attributes>
  164 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  165 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  166 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  167 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  168 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  169 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  170 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  171 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  172 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  173 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  174 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  175 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  176 + </attributes>
  177 + </connection>
  178 + <connection>
  179 + <name>bus_control_&#x672c;&#x673a;</name>
  180 + <server>localhost</server>
  181 + <type>MYSQL</type>
  182 + <access>Native</access>
  183 + <database>control</database>
  184 + <port>3306</port>
  185 + <username>root</username>
  186 + <password>Encrypted </password>
  187 + <servername/>
  188 + <data_tablespace/>
  189 + <index_tablespace/>
  190 + <attributes>
  191 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  192 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  193 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  194 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  195 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  196 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  197 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  198 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  199 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  200 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  201 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  202 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  203 + </attributes>
  204 + </connection>
  205 + <connection>
  206 + <name>control_jndi</name>
  207 + <server/>
  208 + <type>MYSQL</type>
  209 + <access>JNDI</access>
  210 + <database>control_jndi</database>
  211 + <port>1521</port>
  212 + <username/>
  213 + <password>Encrypted </password>
  214 + <servername/>
  215 + <data_tablespace/>
  216 + <index_tablespace/>
  217 + <attributes>
  218 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  219 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  220 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  221 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  222 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  223 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  224 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  225 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  226 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  227 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  228 + </attributes>
  229 + </connection>
  230 + <connection>
  231 + <name>JGJW_VM</name>
  232 + <server>192.168.198.240</server>
  233 + <type>ORACLE</type>
  234 + <access>Native</access>
  235 + <database>orcl</database>
  236 + <port>1521</port>
  237 + <username>jwgl</username>
  238 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d485a8d6</password>
  239 + <servername/>
  240 + <data_tablespace/>
  241 + <index_tablespace/>
  242 + <attributes>
  243 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  244 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  245 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  246 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  247 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  248 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  249 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  250 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  251 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  252 + </attributes>
  253 + </connection>
  254 + <connection>
  255 + <name>NHJW_VM</name>
  256 + <server>192.168.198.240</server>
  257 + <type>ORACLE</type>
  258 + <access>Native</access>
  259 + <database>orcl</database>
  260 + <port>1521</port>
  261 + <username>nhjw</username>
  262 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d09aa5cd</password>
  263 + <servername/>
  264 + <data_tablespace/>
  265 + <index_tablespace/>
  266 + <attributes>
  267 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  268 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  269 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  270 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  271 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  272 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  273 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  274 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  275 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  276 + </attributes>
  277 + </connection>
  278 + <connection>
  279 + <name>PDGJ_VM</name>
  280 + <server>192.168.198.240</server>
  281 + <type>ORACLE</type>
  282 + <access>Native</access>
  283 + <database>orcl</database>
  284 + <port>1521</port>
  285 + <username>pdgj</username>
  286 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10ce96a8d0</password>
  287 + <servername/>
  288 + <data_tablespace/>
  289 + <index_tablespace/>
  290 + <attributes>
  291 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  292 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  293 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  294 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  295 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  296 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  297 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  298 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  299 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  300 + </attributes>
  301 + </connection>
  302 + <connection>
  303 + <name>repair_dw_mysql_jndi</name>
  304 + <server/>
  305 + <type>MYSQL</type>
  306 + <access>JNDI</access>
  307 + <database>repair_dw_mysql</database>
  308 + <port>1521</port>
  309 + <username/>
  310 + <password>Encrypted </password>
  311 + <servername/>
  312 + <data_tablespace/>
  313 + <index_tablespace/>
  314 + <attributes>
  315 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  316 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  317 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  318 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  319 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  320 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  321 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  322 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  323 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  324 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  325 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  326 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  327 + </attributes>
  328 + </connection>
  329 + <connection>
  330 + <name>repair_dw&#xff08;&#x672c;&#x673a;&#xff09;</name>
  331 + <server>localhost</server>
  332 + <type>MYSQL</type>
  333 + <access>Native</access>
  334 + <database>ruoyi-vue-3.5</database>
  335 + <port>3306</port>
  336 + <username>root</username>
  337 + <password>Encrypted </password>
  338 + <servername/>
  339 + <data_tablespace/>
  340 + <index_tablespace/>
  341 + <attributes>
  342 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  343 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  344 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  345 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  346 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  347 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  348 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  349 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  350 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  351 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  352 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  353 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  354 + </attributes>
  355 + </connection>
  356 + <connection>
  357 + <name>repair_real_h2</name>
  358 + <server/>
  359 + <type>H2</type>
  360 + <access>JNDI</access>
  361 + <database>repair_real_h2</database>
  362 + <port>1521</port>
  363 + <username/>
  364 + <password>Encrypted </password>
  365 + <servername/>
  366 + <data_tablespace/>
  367 + <index_tablespace/>
  368 + <attributes>
  369 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  370 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  371 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  372 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  373 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  374 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  375 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  376 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  377 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  378 + </attributes>
  379 + </connection>
  380 + <connection>
  381 + <name>SNJW_VM</name>
  382 + <server>192.168.198.240</server>
  383 + <type>ORACLE</type>
  384 + <access>Native</access>
  385 + <database>orcl</database>
  386 + <port>1521</port>
  387 + <username>snjw</username>
  388 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10cd9ca5cd</password>
  389 + <servername/>
  390 + <data_tablespace/>
  391 + <index_tablespace/>
  392 + <attributes>
  393 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  394 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  395 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  396 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  397 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  398 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  399 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  400 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  401 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  402 + </attributes>
  403 + </connection>
  404 + <connection>
  405 + <name>test_control_local</name>
  406 + <server>localhost</server>
  407 + <type>MYSQL</type>
  408 + <access>Native</access>
  409 + <database>test_control</database>
  410 + <port>3306</port>
  411 + <username>root</username>
  412 + <password>Encrypted </password>
  413 + <servername/>
  414 + <data_tablespace/>
  415 + <index_tablespace/>
  416 + <attributes>
  417 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  418 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  419 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  420 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  421 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  422 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  423 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  424 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  425 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  426 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  427 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  428 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  429 + </attributes>
  430 + </connection>
  431 + <connection>
  432 + <name>test_control&#xff08;&#x672c;&#x673a;&#xff09;</name>
  433 + <server>127.0.0.1</server>
  434 + <type>MYSQL</type>
  435 + <access>Native</access>
  436 + <database>test_control</database>
  437 + <port>3306</port>
  438 + <username>root</username>
  439 + <password>Encrypted </password>
  440 + <servername/>
  441 + <data_tablespace/>
  442 + <index_tablespace/>
  443 + <attributes>
  444 + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
  445 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  446 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  447 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  448 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  449 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  450 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  451 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  452 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  453 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  454 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  455 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  456 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  457 + </attributes>
  458 + </connection>
  459 + <connection>
  460 + <name>wzk_mysql_jndi</name>
  461 + <server/>
  462 + <type>MYSQL</type>
  463 + <access>JNDI</access>
  464 + <database>wzk_mysql</database>
  465 + <port>1521</port>
  466 + <username/>
  467 + <password>Encrypted </password>
  468 + <servername/>
  469 + <data_tablespace/>
  470 + <index_tablespace/>
  471 + <attributes>
  472 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  473 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  474 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  475 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  476 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  477 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  478 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  479 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  480 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  481 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  482 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  483 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  484 + </attributes>
  485 + </connection>
  486 + <connection>
  487 + <name>wzk&#xff08;&#x672c;&#x673a;&#xff09;</name>
  488 + <server>localhost</server>
  489 + <type>MYSQL</type>
  490 + <access>Native</access>
  491 + <database>pdgj_wzk_sys</database>
  492 + <port>3306</port>
  493 + <username>root</username>
  494 + <password>Encrypted </password>
  495 + <servername/>
  496 + <data_tablespace/>
  497 + <index_tablespace/>
  498 + <attributes>
  499 + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
  500 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  501 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  502 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  503 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  504 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  505 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  506 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  507 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  508 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  509 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  510 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  511 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  512 + </attributes>
  513 + </connection>
  514 + <connection>
  515 + <name>xlab_mysql_youle</name>
  516 + <server>101.231.124.8</server>
  517 + <type>MYSQL</type>
  518 + <access>Native</access>
  519 + <database>xlab_youle</database>
  520 + <port>45687</port>
  521 + <username>xlab-youle</username>
  522 + <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password>
  523 + <servername/>
  524 + <data_tablespace/>
  525 + <index_tablespace/>
  526 + <attributes>
  527 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  528 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  529 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  530 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  531 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  532 + <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute>
  533 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  534 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  535 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  536 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  537 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  538 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  539 + </attributes>
  540 + </connection>
  541 + <connection>
  542 + <name>xlab_mysql_youle&#xff08;&#x672c;&#x673a;&#xff09;</name>
  543 + <server>localhost</server>
  544 + <type>MYSQL</type>
  545 + <access>Native</access>
  546 + <database>xlab_youle</database>
  547 + <port>3306</port>
  548 + <username>root</username>
  549 + <password>Encrypted </password>
  550 + <servername/>
  551 + <data_tablespace/>
  552 + <index_tablespace/>
  553 + <attributes>
  554 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  555 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  556 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  557 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  558 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  559 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  560 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  561 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  562 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  563 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  564 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  565 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  566 + </attributes>
  567 + </connection>
  568 + <connection>
  569 + <name>xlab_youle</name>
  570 + <server/>
  571 + <type>MYSQL</type>
  572 + <access>JNDI</access>
  573 + <database>xlab_youle</database>
  574 + <port>1521</port>
  575 + <username/>
  576 + <password>Encrypted </password>
  577 + <servername/>
  578 + <data_tablespace/>
  579 + <index_tablespace/>
  580 + <attributes>
  581 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  582 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  583 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  584 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  585 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  586 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  587 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  588 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  589 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  590 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  591 + </attributes>
  592 + </connection>
  593 + <connection>
  594 + <name>YGJW_VM</name>
  595 + <server>192.168.198.240</server>
  596 + <type>ORACLE</type>
  597 + <access>Native</access>
  598 + <database>orcl</database>
  599 + <port>1521</port>
  600 + <username>ygjw</username>
  601 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10c795a5cd</password>
  602 + <servername/>
  603 + <data_tablespace/>
  604 + <index_tablespace/>
  605 + <attributes>
  606 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  607 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  608 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  609 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  610 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  611 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  612 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  613 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  614 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  615 + </attributes>
  616 + </connection>
  617 + <connection>
  618 + <name>&#x516c;&#x53f8;jgjw</name>
  619 + <server>192.168.168.1</server>
  620 + <type>ORACLE</type>
  621 + <access>Native</access>
  622 + <database>orcl</database>
  623 + <port>1521</port>
  624 + <username>jwgl</username>
  625 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d485a8d6</password>
  626 + <servername/>
  627 + <data_tablespace/>
  628 + <index_tablespace/>
  629 + <attributes>
  630 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  631 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  632 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  633 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  634 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  635 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  636 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  637 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  638 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  639 + </attributes>
  640 + </connection>
  641 + <connection>
  642 + <name>&#x516c;&#x53f8;snjw</name>
  643 + <server>192.168.168.1</server>
  644 + <type>ORACLE</type>
  645 + <access>Native</access>
  646 + <database>orcl</database>
  647 + <port>1521</port>
  648 + <username>snjw</username>
  649 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10cd9ca5cd</password>
  650 + <servername/>
  651 + <data_tablespace/>
  652 + <index_tablespace/>
  653 + <attributes>
  654 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  655 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  656 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  657 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  658 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  659 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  660 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  661 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  662 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  663 + </attributes>
  664 + </connection>
  665 + <connection>
  666 + <name>&#x516c;&#x53f8;ygjw</name>
  667 + <server>192.168.168.178</server>
  668 + <type>ORACLE</type>
  669 + <access>Native</access>
  670 + <database>orcl</database>
  671 + <port>1521</port>
  672 + <username>ygjw</username>
  673 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10c795a5cd</password>
  674 + <servername/>
  675 + <data_tablespace/>
  676 + <index_tablespace/>
  677 + <attributes>
  678 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  679 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  680 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  681 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  682 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  683 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  684 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  685 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  686 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  687 + </attributes>
  688 + </connection>
  689 + <connection>
  690 + <name>&#x516c;&#x53f8;&#x673a;&#x52a1;_pdgj</name>
  691 + <server>192.168.168.178</server>
  692 + <type>ORACLE</type>
  693 + <access>Native</access>
  694 + <database>orcl</database>
  695 + <port>1521</port>
  696 + <username>pdgj</username>
  697 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10ce96a8d0</password>
  698 + <servername/>
  699 + <data_tablespace/>
  700 + <index_tablespace/>
  701 + <attributes>
  702 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  703 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  704 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  705 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  706 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  707 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  708 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  709 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  710 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  711 + </attributes>
  712 + </connection>
  713 + <connection>
  714 + <name>&#x5916;&#x7f51;vpn&#x4e34;&#x6e2f;&#x673a;&#x52a1;oracle</name>
  715 + <server>10.10.150.114</server>
  716 + <type>ORACLE</type>
  717 + <access>Native</access>
  718 + <database>helowin</database>
  719 + <port>1521</port>
  720 + <username>lgjw</username>
  721 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d295a5cd</password>
  722 + <servername/>
  723 + <data_tablespace/>
  724 + <index_tablespace/>
  725 + <attributes>
  726 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  727 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  728 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  729 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  730 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  731 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  732 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  733 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  734 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  735 + </attributes>
  736 + </connection>
  737 + <connection>
  738 + <name>&#x5916;&#x7f51;&#x5357;&#x6c47;&#x673a;&#x52a1;oracle</name>
  739 + <server>58.247.254.118</server>
  740 + <type>ORACLE</type>
  741 + <access>Native</access>
  742 + <database>orcl</database>
  743 + <port>15211</port>
  744 + <username>nhjw</username>
  745 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d09aa5cd</password>
  746 + <servername/>
  747 + <data_tablespace/>
  748 + <index_tablespace/>
  749 + <attributes>
  750 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  751 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  752 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  753 + <attribute><code>PORT_NUMBER</code><attribute>15211</attribute></attribute>
  754 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  755 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  756 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  757 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  758 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  759 + </attributes>
  760 + </connection>
  761 + <connection>
  762 + <name>&#x5916;&#x7f51;&#x6768;&#x9ad8;&#x673a;&#x52a1;oracle</name>
  763 + <server>58.247.254.118</server>
  764 + <type>ORACLE</type>
  765 + <access>Native</access>
  766 + <database>orcl</database>
  767 + <port>15211</port>
  768 + <username>ygjw</username>
  769 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10c795a5cd</password>
  770 + <servername/>
  771 + <data_tablespace/>
  772 + <index_tablespace/>
  773 + <attributes>
  774 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  775 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  776 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  777 + <attribute><code>PORT_NUMBER</code><attribute>15211</attribute></attribute>
  778 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  779 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  780 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  781 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  782 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  783 + </attributes>
  784 + </connection>
  785 + <connection>
  786 + <name>&#x5916;&#x7f51;&#x91d1;&#x9ad8;&#x673a;&#x52a1;oracle</name>
  787 + <server>58.247.254.118</server>
  788 + <type>ORACLE</type>
  789 + <access>Native</access>
  790 + <database>orcl</database>
  791 + <port>15211</port>
  792 + <username>jwgl</username>
  793 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d485a8d6</password>
  794 + <servername/>
  795 + <data_tablespace/>
  796 + <index_tablespace/>
  797 + <attributes>
  798 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  799 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  800 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  801 + <attribute><code>PORT_NUMBER</code><attribute>15211</attribute></attribute>
  802 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  803 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  804 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  805 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  806 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  807 + </attributes>
  808 + </connection>
  809 + <order>
  810 + <hop> <from>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</from><to>&#x5217;&#x8f6c;&#x884c;</to><enabled>Y</enabled> </hop>
  811 + <hop> <from>&#x5217;&#x8f6c;&#x884c;</from><to>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</to><enabled>Y</enabled> </hop>
  812 + <hop> <from>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</from><to>Excel&#x8f93;&#x51fa;</to><enabled>Y</enabled> </hop>
  813 + <hop> <from>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x6570;&#x636e;&#x8868;</from><to>&#x8def;&#x724c;&#x540d;&#x5b57;&#x67e5;&#x627e;</to><enabled>Y</enabled> </hop>
  814 + <hop> <from>&#x8def;&#x724c;&#x540d;&#x5b57;&#x67e5;&#x627e;</from><to>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</to><enabled>Y</enabled> </hop>
  815 + </order>
  816 + <step>
  817 + <name>Excel&#x8f93;&#x51fa;</name>
  818 + <type>ExcelOutput</type>
  819 + <description/>
  820 + <distribute>Y</distribute>
  821 + <custom_distribution/>
  822 + <copies>1</copies>
  823 + <partitioning>
  824 + <method>none</method>
  825 + <schema_name/>
  826 + </partitioning>
  827 + <header>Y</header>
  828 + <footer>N</footer>
  829 + <encoding/>
  830 + <append>N</append>
  831 + <add_to_result_filenames>Y</add_to_result_filenames>
  832 + <file>
  833 + <name>&#x24;&#x7b;filepath&#x7d;</name>
  834 + <extention>xls</extention>
  835 + <do_not_open_newfile_init>N</do_not_open_newfile_init>
  836 + <create_parent_folder>N</create_parent_folder>
  837 + <split>N</split>
  838 + <add_date>N</add_date>
  839 + <add_time>N</add_time>
  840 + <SpecifyFormat>N</SpecifyFormat>
  841 + <date_time_format/>
  842 + <sheetname>sheet1</sheetname>
  843 + <autosizecolums>N</autosizecolums>
  844 + <nullisblank>N</nullisblank>
  845 + <protect_sheet>N</protect_sheet>
  846 + <password>Encrypted </password>
  847 + <splitevery>0</splitevery>
  848 + <usetempfiles>N</usetempfiles>
  849 + <tempdirectory/>
  850 + </file>
  851 + <template>
  852 + <enabled>N</enabled>
  853 + <append>N</append>
  854 + <filename>template.xls</filename>
  855 + </template>
  856 + <fields>
  857 + </fields>
  858 + <custom>
  859 + <header_font_name>arial</header_font_name>
  860 + <header_font_size>10</header_font_size>
  861 + <header_font_bold>N</header_font_bold>
  862 + <header_font_italic>N</header_font_italic>
  863 + <header_font_underline>no</header_font_underline>
  864 + <header_font_orientation>horizontal</header_font_orientation>
  865 + <header_font_color>black</header_font_color>
  866 + <header_background_color>none</header_background_color>
  867 + <header_row_height>255</header_row_height>
  868 + <header_alignment>left</header_alignment>
  869 + <header_image/>
  870 + <row_font_name>arial</row_font_name>
  871 + <row_font_size>10</row_font_size>
  872 + <row_font_color>black</row_font_color>
  873 + <row_background_color>none</row_background_color>
  874 + </custom>
  875 + <cluster_schema/>
  876 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  877 + <xloc>731</xloc>
  878 + <yloc>65</yloc>
  879 + <draw>Y</draw>
  880 + </GUI>
  881 + </step>
  882 +
  883 + <step>
  884 + <name>&#x5217;&#x8f6c;&#x884c;</name>
  885 + <type>Denormaliser</type>
  886 + <description/>
  887 + <distribute>Y</distribute>
  888 + <custom_distribution/>
  889 + <copies>1</copies>
  890 + <partitioning>
  891 + <method>none</method>
  892 + <schema_name/>
  893 + </partitioning>
  894 + <key_field>fcno</key_field>
  895 + <group>
  896 + <field>
  897 + <name>lp</name>
  898 + </field>
  899 + </group>
  900 + <fields>
  901 + <field>
  902 + <field_name>fcsj</field_name>
  903 + <key_value>1</key_value>
  904 + <target_name>&#x51fa;&#x573a;1</target_name>
  905 + <target_type>String</target_type>
  906 + <target_format/>
  907 + <target_length>-1</target_length>
  908 + <target_precision>-1</target_precision>
  909 + <target_decimal_symbol/>
  910 + <target_grouping_symbol/>
  911 + <target_currency_symbol/>
  912 + <target_null_string/>
  913 + <target_aggregation_type>-</target_aggregation_type>
  914 + </field>
  915 + <field>
  916 + <field_name>fcsj</field_name>
  917 + <key_value>2</key_value>
  918 + <target_name>&#x9752;&#x5b89;&#x8def;&#x6c7d;&#x8f66;&#x7ad9;2</target_name>
  919 + <target_type>String</target_type>
  920 + <target_format/>
  921 + <target_length>-1</target_length>
  922 + <target_precision>-1</target_precision>
  923 + <target_decimal_symbol/>
  924 + <target_grouping_symbol/>
  925 + <target_currency_symbol/>
  926 + <target_null_string/>
  927 + <target_aggregation_type>-</target_aggregation_type>
  928 + </field>
  929 + <field>
  930 + <field_name>fcsj</field_name>
  931 + <key_value>3</key_value>
  932 + <target_name>&#x9752;&#x5b89;&#x8def;&#x6c7d;&#x8f66;&#x7ad9;3</target_name>
  933 + <target_type>String</target_type>
  934 + <target_format/>
  935 + <target_length>-1</target_length>
  936 + <target_precision>-1</target_precision>
  937 + <target_decimal_symbol/>
  938 + <target_grouping_symbol/>
  939 + <target_currency_symbol/>
  940 + <target_null_string/>
  941 + <target_aggregation_type>-</target_aggregation_type>
  942 + </field>
  943 + <field>
  944 + <field_name>fcsj</field_name>
  945 + <key_value>4</key_value>
  946 + <target_name>&#x9752;&#x5b89;&#x8def;&#x6c7d;&#x8f66;&#x7ad9;4</target_name>
  947 + <target_type>String</target_type>
  948 + <target_format/>
  949 + <target_length>-1</target_length>
  950 + <target_precision>-1</target_precision>
  951 + <target_decimal_symbol/>
  952 + <target_grouping_symbol/>
  953 + <target_currency_symbol/>
  954 + <target_null_string/>
  955 + <target_aggregation_type>-</target_aggregation_type>
  956 + </field>
  957 + <field>
  958 + <field_name>fcsj</field_name>
  959 + <key_value>5</key_value>
  960 + <target_name>&#x9752;&#x5b89;&#x8def;&#x6c7d;&#x8f66;&#x7ad9;5</target_name>
  961 + <target_type>String</target_type>
  962 + <target_format/>
  963 + <target_length>-1</target_length>
  964 + <target_precision>-1</target_precision>
  965 + <target_decimal_symbol/>
  966 + <target_grouping_symbol/>
  967 + <target_currency_symbol/>
  968 + <target_null_string/>
  969 + <target_aggregation_type>-</target_aggregation_type>
  970 + </field>
  971 + <field>
  972 + <field_name>fcsj</field_name>
  973 + <key_value>6</key_value>
  974 + <target_name>&#x9752;&#x5b89;&#x8def;&#x6c7d;&#x8f66;&#x7ad9;6</target_name>
  975 + <target_type>String</target_type>
  976 + <target_format/>
  977 + <target_length>-1</target_length>
  978 + <target_precision>-1</target_precision>
  979 + <target_decimal_symbol/>
  980 + <target_grouping_symbol/>
  981 + <target_currency_symbol/>
  982 + <target_null_string/>
  983 + <target_aggregation_type>-</target_aggregation_type>
  984 + </field>
  985 + <field>
  986 + <field_name>fcsj</field_name>
  987 + <key_value>7</key_value>
  988 + <target_name>&#x8fdb;&#x573a;7</target_name>
  989 + <target_type>String</target_type>
  990 + <target_format/>
  991 + <target_length>-1</target_length>
  992 + <target_precision>-1</target_precision>
  993 + <target_decimal_symbol/>
  994 + <target_grouping_symbol/>
  995 + <target_currency_symbol/>
  996 + <target_null_string/>
  997 + <target_aggregation_type>-</target_aggregation_type>
  998 + </field>
  999 + </fields>
  1000 + <cluster_schema/>
  1001 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1002 + <xloc>531</xloc>
  1003 + <yloc>65</yloc>
  1004 + <draw>Y</draw>
  1005 + </GUI>
  1006 + </step>
  1007 +
  1008 + <step>
  1009 + <name>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</name>
  1010 + <type>SelectValues</type>
  1011 + <description/>
  1012 + <distribute>Y</distribute>
  1013 + <custom_distribution/>
  1014 + <copies>1</copies>
  1015 + <partitioning>
  1016 + <method>none</method>
  1017 + <schema_name/>
  1018 + </partitioning>
  1019 + <fields> <field> <name>lp_name</name>
  1020 + <rename>Road sign</rename>
  1021 + <length>-2</length>
  1022 + <precision>-2</precision>
  1023 + </field> <select_unspecified>Y</select_unspecified>
  1024 + </fields> <cluster_schema/>
  1025 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1026 + <xloc>534</xloc>
  1027 + <yloc>243</yloc>
  1028 + <draw>Y</draw>
  1029 + </GUI>
  1030 + </step>
  1031 +
  1032 + <step>
  1033 + <name>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</name>
  1034 + <type>SortRows</type>
  1035 + <description/>
  1036 + <distribute>Y</distribute>
  1037 + <custom_distribution/>
  1038 + <copies>1</copies>
  1039 + <partitioning>
  1040 + <method>none</method>
  1041 + <schema_name/>
  1042 + </partitioning>
  1043 + <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
  1044 + <prefix>out</prefix>
  1045 + <sort_size>1000000</sort_size>
  1046 + <free_memory/>
  1047 + <compress>N</compress>
  1048 + <compress_variable/>
  1049 + <unique_rows>N</unique_rows>
  1050 + <fields>
  1051 + <field>
  1052 + <name>lp</name>
  1053 + <ascending>Y</ascending>
  1054 + <case_sensitive>N</case_sensitive>
  1055 + <presorted>N</presorted>
  1056 + </field>
  1057 + <field>
  1058 + <name>fcno</name>
  1059 + <ascending>Y</ascending>
  1060 + <case_sensitive>N</case_sensitive>
  1061 + <presorted>N</presorted>
  1062 + </field>
  1063 + </fields>
  1064 + <cluster_schema/>
  1065 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1066 + <xloc>331</xloc>
  1067 + <yloc>65</yloc>
  1068 + <draw>Y</draw>
  1069 + </GUI>
  1070 + </step>
  1071 +
  1072 + <step>
  1073 + <name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x6570;&#x636e;&#x8868;</name>
  1074 + <type>TableInput</type>
  1075 + <description/>
  1076 + <distribute>Y</distribute>
  1077 + <custom_distribution/>
  1078 + <copies>1</copies>
  1079 + <partitioning>
  1080 + <method>none</method>
  1081 + <schema_name/>
  1082 + </partitioning>
  1083 + <connection>control_jndi</connection>
  1084 + <sql>select &#x2a; from bsth_c_s_ttinfo_detail&#xa;where ttinfo &#x3d; &#x24;&#x7b;ttinfoid&#x7d;</sql>
  1085 + <limit>0</limit>
  1086 + <lookup/>
  1087 + <execute_each_row>N</execute_each_row>
  1088 + <variables_active>Y</variables_active>
  1089 + <lazy_conversion_active>N</lazy_conversion_active>
  1090 + <cluster_schema/>
  1091 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1092 + <xloc>131</xloc>
  1093 + <yloc>65</yloc>
  1094 + <draw>Y</draw>
  1095 + </GUI>
  1096 + </step>
  1097 +
  1098 + <step>
  1099 + <name>&#x8def;&#x724c;&#x540d;&#x5b57;&#x67e5;&#x627e;</name>
  1100 + <type>DBLookup</type>
  1101 + <description/>
  1102 + <distribute>Y</distribute>
  1103 + <custom_distribution/>
  1104 + <copies>1</copies>
  1105 + <partitioning>
  1106 + <method>none</method>
  1107 + <schema_name/>
  1108 + </partitioning>
  1109 + <connection>control_jndi</connection>
  1110 + <cache>Y</cache>
  1111 + <cache_load_all>Y</cache_load_all>
  1112 + <cache_size>0</cache_size>
  1113 + <lookup>
  1114 + <schema/>
  1115 + <table>bsth_c_s_gbi</table>
  1116 + <orderby/>
  1117 + <fail_on_multiple>N</fail_on_multiple>
  1118 + <eat_row_on_failure>N</eat_row_on_failure>
  1119 + <key>
  1120 + <name>lp</name>
  1121 + <field>id</field>
  1122 + <condition>&#x3d;</condition>
  1123 + <name2/>
  1124 + </key>
  1125 + <value>
  1126 + <name>lp_name</name>
  1127 + <rename>lp_name</rename>
  1128 + <default/>
  1129 + <type>String</type>
  1130 + </value>
  1131 + </lookup>
  1132 + <cluster_schema/>
  1133 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1134 + <xloc>237</xloc>
  1135 + <yloc>156</yloc>
  1136 + <draw>Y</draw>
  1137 + </GUI>
  1138 + </step>
  1139 +
  1140 + <step_error_handling>
  1141 + </step_error_handling>
  1142 + <slave-step-copy-partition-distribution>
  1143 +</slave-step-copy-partition-distribution>
  1144 + <slave_transformation>N</slave_transformation>
  1145 +
  1146 +</transformation>
... ...
src/main/resources/datatools/ktrs/en/ttinfo-detail-data_export_for_edit.ktr 0 → 100644
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<transformation>
  3 + <info>
  4 + <name>ttinfodetailoutputforedit_en</name>
  5 + <description/>
  6 + <extended_description/>
  7 + <trans_version/>
  8 + <trans_type>Normal</trans_type>
  9 + <trans_status>0</trans_status>
  10 + <directory>&#x2f;</directory>
  11 + <parameters>
  12 + <parameter>
  13 + <name>tempfilepath</name>
  14 + <default_value>&#x2f;Users&#x2f;xu&#x2f;resource&#x2f;project_code&#x2f;runtime_temp&#x2f;bsth_control_u_d_files&#x2f;temp&#x2f;test</default_value>
  15 + <description>&#x9ed8;&#x8ba4;&#x8f93;&#x51fa;&#x7684;&#x6587;&#x4ef6;&#x8def;&#x5f84;&#x540d;</description>
  16 + </parameter>
  17 + <parameter>
  18 + <name>ttid</name>
  19 + <default_value>4692</default_value>
  20 + <description>&#x65f6;&#x523b;&#x8868;id</description>
  21 + </parameter>
  22 + <parameter>
  23 + <name>xlid</name>
  24 + <default_value>10658</default_value>
  25 + <description>&#x7ebf;&#x8def;id</description>
  26 + </parameter>
  27 + </parameters>
  28 + <log>
  29 +<trans-log-table><connection/>
  30 +<schema/>
  31 +<table/>
  32 +<size_limit_lines/>
  33 +<interval/>
  34 +<timeout_days/>
  35 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STATUS</id><enabled>Y</enabled><name>STATUS</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name><subject/></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name><subject/></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name><subject/></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name><subject/></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name><subject/></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name><subject/></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>STARTDATE</id><enabled>Y</enabled><name>STARTDATE</name></field><field><id>ENDDATE</id><enabled>Y</enabled><name>ENDDATE</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>DEPDATE</id><enabled>Y</enabled><name>DEPDATE</name></field><field><id>REPLAYDATE</id><enabled>Y</enabled><name>REPLAYDATE</name></field><field><id>LOG_FIELD</id><enabled>Y</enabled><name>LOG_FIELD</name></field><field><id>EXECUTING_SERVER</id><enabled>N</enabled><name>EXECUTING_SERVER</name></field><field><id>EXECUTING_USER</id><enabled>N</enabled><name>EXECUTING_USER</name></field><field><id>CLIENT</id><enabled>N</enabled><name>CLIENT</name></field></trans-log-table>
  36 +<perf-log-table><connection/>
  37 +<schema/>
  38 +<table/>
  39 +<interval/>
  40 +<timeout_days/>
  41 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>SEQ_NR</id><enabled>Y</enabled><name>SEQ_NR</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>INPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>INPUT_BUFFER_ROWS</name></field><field><id>OUTPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>OUTPUT_BUFFER_ROWS</name></field></perf-log-table>
  42 +<channel-log-table><connection/>
  43 +<schema/>
  44 +<table/>
  45 +<timeout_days/>
  46 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>LOGGING_OBJECT_TYPE</id><enabled>Y</enabled><name>LOGGING_OBJECT_TYPE</name></field><field><id>OBJECT_NAME</id><enabled>Y</enabled><name>OBJECT_NAME</name></field><field><id>OBJECT_COPY</id><enabled>Y</enabled><name>OBJECT_COPY</name></field><field><id>REPOSITORY_DIRECTORY</id><enabled>Y</enabled><name>REPOSITORY_DIRECTORY</name></field><field><id>FILENAME</id><enabled>Y</enabled><name>FILENAME</name></field><field><id>OBJECT_ID</id><enabled>Y</enabled><name>OBJECT_ID</name></field><field><id>OBJECT_REVISION</id><enabled>Y</enabled><name>OBJECT_REVISION</name></field><field><id>PARENT_CHANNEL_ID</id><enabled>Y</enabled><name>PARENT_CHANNEL_ID</name></field><field><id>ROOT_CHANNEL_ID</id><enabled>Y</enabled><name>ROOT_CHANNEL_ID</name></field></channel-log-table>
  47 +<step-log-table><connection/>
  48 +<schema/>
  49 +<table/>
  50 +<timeout_days/>
  51 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>LOG_FIELD</id><enabled>N</enabled><name>LOG_FIELD</name></field></step-log-table>
  52 +<metrics-log-table><connection/>
  53 +<schema/>
  54 +<table/>
  55 +<timeout_days/>
  56 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>METRICS_DATE</id><enabled>Y</enabled><name>METRICS_DATE</name></field><field><id>METRICS_CODE</id><enabled>Y</enabled><name>METRICS_CODE</name></field><field><id>METRICS_DESCRIPTION</id><enabled>Y</enabled><name>METRICS_DESCRIPTION</name></field><field><id>METRICS_SUBJECT</id><enabled>Y</enabled><name>METRICS_SUBJECT</name></field><field><id>METRICS_TYPE</id><enabled>Y</enabled><name>METRICS_TYPE</name></field><field><id>METRICS_VALUE</id><enabled>Y</enabled><name>METRICS_VALUE</name></field></metrics-log-table>
  57 + </log>
  58 + <maxdate>
  59 + <connection/>
  60 + <table/>
  61 + <field/>
  62 + <offset>0.0</offset>
  63 + <maxdiff>0.0</maxdiff>
  64 + </maxdate>
  65 + <size_rowset>10000</size_rowset>
  66 + <sleep_time_empty>50</sleep_time_empty>
  67 + <sleep_time_full>50</sleep_time_full>
  68 + <unique_connections>N</unique_connections>
  69 + <feedback_shown>Y</feedback_shown>
  70 + <feedback_size>50000</feedback_size>
  71 + <using_thread_priorities>Y</using_thread_priorities>
  72 + <shared_objects_file/>
  73 + <capture_step_performance>N</capture_step_performance>
  74 + <step_performance_capturing_delay>1000</step_performance_capturing_delay>
  75 + <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit>
  76 + <dependencies>
  77 + </dependencies>
  78 + <partitionschemas>
  79 + </partitionschemas>
  80 + <slaveservers>
  81 + </slaveservers>
  82 + <clusterschemas>
  83 + </clusterschemas>
  84 + <created_user>-</created_user>
  85 + <created_date>2016&#x2f;07&#x2f;11 21&#x3a;45&#x3a;05.041</created_date>
  86 + <modified_user>-</modified_user>
  87 + <modified_date>2016&#x2f;07&#x2f;11 21&#x3a;45&#x3a;05.041</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>&#x6b64;&#x5904;&#x8f6c;&#x6362;excel&#x6709;&#x95ee;&#x9898;&#xff0c;&#xa;2003&#x683c;&#x5f0f;&#x7684;xls&#x6700;&#x591a;256&#x5217;&#xff0c;&#xa;&#x8fd9;&#x91cc;&#x660e;&#x663e;&#x8d85;&#x8fc7;&#xff0c;&#x6240;&#x4ee5;&#x628a;&#x6240;&#x6709;&#x5185;&#x5bb9;&#x5408;&#x5e76;&#x6210;1&#x5217;&#xff0c;&#xa;&#x7528;,&#x5206;&#x9694;</note>
  94 + <xloc>316</xloc>
  95 + <yloc>166</yloc>
  96 + <width>245</width>
  97 + <heigth>74</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>&#x5217;&#x8f6c;&#x884c;</from><to>&#x53bb;&#x9664;&#x5b57;&#x6bb5;</to><enabled>Y</enabled> </hop>
  826 + <hop> <from>&#x53bb;&#x9664;&#x5b57;&#x6bb5;</from><to>Excel&#x8f93;&#x51fa;</to><enabled>Y</enabled> </hop>
  827 + <hop> <from>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</from><to>&#x8868;&#x8f93;&#x5165;</to><enabled>Y</enabled> </hop>
  828 + <hop> <from>&#x8ba1;&#x7b97;&#x53d1;&#x8f66;&#x7ad9;&#x540d;</from><to>&#x5408;&#x5e76;&#x5185;&#x5bb9;</to><enabled>Y</enabled> </hop>
  829 + <hop> <from>&#x5408;&#x5e76;&#x5185;&#x5bb9;</from><to>&#x5217;&#x8f6c;&#x884c;</to><enabled>Y</enabled> </hop>
  830 + <hop> <from>&#x8868;&#x8f93;&#x5165;</from><to>&#x8ba1;&#x7b97;&#x53d1;&#x8f66;&#x7ad9;&#x540d;</to><enabled>Y</enabled> </hop>
  831 + </order>
  832 + <step>
  833 + <name>Excel&#x8f93;&#x51fa;</name>
  834 + <type>ExcelOutput</type>
  835 + <description/>
  836 + <distribute>Y</distribute>
  837 + <custom_distribution/>
  838 + <copies>1</copies>
  839 + <partitioning>
  840 + <method>none</method>
  841 + <schema_name/>
  842 + </partitioning>
  843 + <header>Y</header>
  844 + <footer>N</footer>
  845 + <encoding/>
  846 + <append>N</append>
  847 + <add_to_result_filenames>Y</add_to_result_filenames>
  848 + <file>
  849 + <name>&#x24;&#x7b;tempfilepath&#x7d;</name>
  850 + <extention>xls</extention>
  851 + <do_not_open_newfile_init>N</do_not_open_newfile_init>
  852 + <create_parent_folder>N</create_parent_folder>
  853 + <split>N</split>
  854 + <add_date>N</add_date>
  855 + <add_time>N</add_time>
  856 + <SpecifyFormat>N</SpecifyFormat>
  857 + <date_time_format/>
  858 + <sheetname>sheet1</sheetname>
  859 + <autosizecolums>N</autosizecolums>
  860 + <nullisblank>N</nullisblank>
  861 + <protect_sheet>N</protect_sheet>
  862 + <password>Encrypted </password>
  863 + <splitevery>0</splitevery>
  864 + <usetempfiles>N</usetempfiles>
  865 + <tempdirectory/>
  866 + </file>
  867 + <template>
  868 + <enabled>N</enabled>
  869 + <append>N</append>
  870 + <filename>template.xls</filename>
  871 + </template>
  872 + <fields>
  873 + <field>
  874 + <name>lp</name>
  875 + <type>String</type>
  876 + <format/>
  877 + </field>
  878 + <field>
  879 + <name>fcno1</name>
  880 + <type>String</type>
  881 + <format/>
  882 + </field>
  883 + <field>
  884 + <name>fcno2</name>
  885 + <type>String</type>
  886 + <format/>
  887 + </field>
  888 + <field>
  889 + <name>fcno3</name>
  890 + <type>String</type>
  891 + <format/>
  892 + </field>
  893 + <field>
  894 + <name>fcno4</name>
  895 + <type>String</type>
  896 + <format/>
  897 + </field>
  898 + <field>
  899 + <name>fcno5</name>
  900 + <type>String</type>
  901 + <format/>
  902 + </field>
  903 + <field>
  904 + <name>fcno6</name>
  905 + <type>String</type>
  906 + <format/>
  907 + </field>
  908 + <field>
  909 + <name>fcno7</name>
  910 + <type>String</type>
  911 + <format/>
  912 + </field>
  913 + <field>
  914 + <name>fcno8</name>
  915 + <type>String</type>
  916 + <format/>
  917 + </field>
  918 + <field>
  919 + <name>fcno9</name>
  920 + <type>String</type>
  921 + <format/>
  922 + </field>
  923 + <field>
  924 + <name>fcno10</name>
  925 + <type>String</type>
  926 + <format/>
  927 + </field>
  928 + <field>
  929 + <name>fcno11</name>
  930 + <type>String</type>
  931 + <format/>
  932 + </field>
  933 + <field>
  934 + <name>fcno12</name>
  935 + <type>String</type>
  936 + <format/>
  937 + </field>
  938 + <field>
  939 + <name>fcno13</name>
  940 + <type>String</type>
  941 + <format/>
  942 + </field>
  943 + <field>
  944 + <name>fcno14</name>
  945 + <type>String</type>
  946 + <format/>
  947 + </field>
  948 + <field>
  949 + <name>fcno15</name>
  950 + <type>String</type>
  951 + <format/>
  952 + </field>
  953 + <field>
  954 + <name>fcno16</name>
  955 + <type>String</type>
  956 + <format/>
  957 + </field>
  958 + <field>
  959 + <name>fcno17</name>
  960 + <type>String</type>
  961 + <format/>
  962 + </field>
  963 + <field>
  964 + <name>fcno18</name>
  965 + <type>String</type>
  966 + <format/>
  967 + </field>
  968 + <field>
  969 + <name>fcno19</name>
  970 + <type>String</type>
  971 + <format/>
  972 + </field>
  973 + <field>
  974 + <name>fcno20</name>
  975 + <type>String</type>
  976 + <format/>
  977 + </field>
  978 + <field>
  979 + <name>fcno21</name>
  980 + <type>String</type>
  981 + <format/>
  982 + </field>
  983 + <field>
  984 + <name>fcno22</name>
  985 + <type>String</type>
  986 + <format/>
  987 + </field>
  988 + <field>
  989 + <name>fcno23</name>
  990 + <type>String</type>
  991 + <format/>
  992 + </field>
  993 + <field>
  994 + <name>fcno24</name>
  995 + <type>String</type>
  996 + <format/>
  997 + </field>
  998 + <field>
  999 + <name>fcno25</name>
  1000 + <type>String</type>
  1001 + <format/>
  1002 + </field>
  1003 + <field>
  1004 + <name>fcno26</name>
  1005 + <type>String</type>
  1006 + <format/>
  1007 + </field>
  1008 + <field>
  1009 + <name>fcno27</name>
  1010 + <type>String</type>
  1011 + <format/>
  1012 + </field>
  1013 + <field>
  1014 + <name>fcno28</name>
  1015 + <type>String</type>
  1016 + <format/>
  1017 + </field>
  1018 + <field>
  1019 + <name>fcno29</name>
  1020 + <type>String</type>
  1021 + <format/>
  1022 + </field>
  1023 + <field>
  1024 + <name>fcno30</name>
  1025 + <type>String</type>
  1026 + <format/>
  1027 + </field>
  1028 + <field>
  1029 + <name>fcno31</name>
  1030 + <type>String</type>
  1031 + <format/>
  1032 + </field>
  1033 + <field>
  1034 + <name>fcno32</name>
  1035 + <type>String</type>
  1036 + <format/>
  1037 + </field>
  1038 + <field>
  1039 + <name>fcno33</name>
  1040 + <type>String</type>
  1041 + <format/>
  1042 + </field>
  1043 + <field>
  1044 + <name>fcno34</name>
  1045 + <type>String</type>
  1046 + <format/>
  1047 + </field>
  1048 + <field>
  1049 + <name>fcno35</name>
  1050 + <type>String</type>
  1051 + <format/>
  1052 + </field>
  1053 + <field>
  1054 + <name>fcno36</name>
  1055 + <type>String</type>
  1056 + <format/>
  1057 + </field>
  1058 + <field>
  1059 + <name>fcno37</name>
  1060 + <type>String</type>
  1061 + <format/>
  1062 + </field>
  1063 + <field>
  1064 + <name>fcno38</name>
  1065 + <type>String</type>
  1066 + <format/>
  1067 + </field>
  1068 + <field>
  1069 + <name>fcno39</name>
  1070 + <type>String</type>
  1071 + <format/>
  1072 + </field>
  1073 + <field>
  1074 + <name>fcno40</name>
  1075 + <type>String</type>
  1076 + <format/>
  1077 + </field>
  1078 + <field>
  1079 + <name>fcno41</name>
  1080 + <type>String</type>
  1081 + <format/>
  1082 + </field>
  1083 + <field>
  1084 + <name>fcno42</name>
  1085 + <type>String</type>
  1086 + <format/>
  1087 + </field>
  1088 + <field>
  1089 + <name>fcno43</name>
  1090 + <type>String</type>
  1091 + <format/>
  1092 + </field>
  1093 + <field>
  1094 + <name>fcno44</name>
  1095 + <type>String</type>
  1096 + <format/>
  1097 + </field>
  1098 + <field>
  1099 + <name>fcno45</name>
  1100 + <type>String</type>
  1101 + <format/>
  1102 + </field>
  1103 + <field>
  1104 + <name>fcno46</name>
  1105 + <type>String</type>
  1106 + <format/>
  1107 + </field>
  1108 + <field>
  1109 + <name>fcno47</name>
  1110 + <type>String</type>
  1111 + <format/>
  1112 + </field>
  1113 + <field>
  1114 + <name>fcno48</name>
  1115 + <type>String</type>
  1116 + <format/>
  1117 + </field>
  1118 + <field>
  1119 + <name>fcno49</name>
  1120 + <type>String</type>
  1121 + <format/>
  1122 + </field>
  1123 + <field>
  1124 + <name>fcno50</name>
  1125 + <type>String</type>
  1126 + <format/>
  1127 + </field>
  1128 + <field>
  1129 + <name>fcno51</name>
  1130 + <type>String</type>
  1131 + <format/>
  1132 + </field>
  1133 + <field>
  1134 + <name>fcno52</name>
  1135 + <type>String</type>
  1136 + <format/>
  1137 + </field>
  1138 + <field>
  1139 + <name>fcno53</name>
  1140 + <type>String</type>
  1141 + <format/>
  1142 + </field>
  1143 + <field>
  1144 + <name>fcno54</name>
  1145 + <type>String</type>
  1146 + <format/>
  1147 + </field>
  1148 + <field>
  1149 + <name>fcno55</name>
  1150 + <type>String</type>
  1151 + <format/>
  1152 + </field>
  1153 + <field>
  1154 + <name>fcno56</name>
  1155 + <type>String</type>
  1156 + <format/>
  1157 + </field>
  1158 + <field>
  1159 + <name>fcno57</name>
  1160 + <type>String</type>
  1161 + <format/>
  1162 + </field>
  1163 + <field>
  1164 + <name>fcno58</name>
  1165 + <type>String</type>
  1166 + <format/>
  1167 + </field>
  1168 + <field>
  1169 + <name>fcno59</name>
  1170 + <type>String</type>
  1171 + <format/>
  1172 + </field>
  1173 + <field>
  1174 + <name>fcno60</name>
  1175 + <type>String</type>
  1176 + <format/>
  1177 + </field>
  1178 + <field>
  1179 + <name>fcno61</name>
  1180 + <type>String</type>
  1181 + <format/>
  1182 + </field>
  1183 + <field>
  1184 + <name>fcno62</name>
  1185 + <type>String</type>
  1186 + <format/>
  1187 + </field>
  1188 + <field>
  1189 + <name>fcno63</name>
  1190 + <type>String</type>
  1191 + <format/>
  1192 + </field>
  1193 + <field>
  1194 + <name>fcno64</name>
  1195 + <type>String</type>
  1196 + <format/>
  1197 + </field>
  1198 + <field>
  1199 + <name>fcno65</name>
  1200 + <type>String</type>
  1201 + <format/>
  1202 + </field>
  1203 + <field>
  1204 + <name>fcno66</name>
  1205 + <type>String</type>
  1206 + <format/>
  1207 + </field>
  1208 + <field>
  1209 + <name>fcno67</name>
  1210 + <type>String</type>
  1211 + <format/>
  1212 + </field>
  1213 + <field>
  1214 + <name>fcno68</name>
  1215 + <type>String</type>
  1216 + <format/>
  1217 + </field>
  1218 + <field>
  1219 + <name>fcno69</name>
  1220 + <type>String</type>
  1221 + <format/>
  1222 + </field>
  1223 + <field>
  1224 + <name>fcno70</name>
  1225 + <type>String</type>
  1226 + <format/>
  1227 + </field>
  1228 + <field>
  1229 + <name>fcno71</name>
  1230 + <type>String</type>
  1231 + <format/>
  1232 + </field>
  1233 + <field>
  1234 + <name>fcno72</name>
  1235 + <type>String</type>
  1236 + <format/>
  1237 + </field>
  1238 + <field>
  1239 + <name>fcno73</name>
  1240 + <type>String</type>
  1241 + <format/>
  1242 + </field>
  1243 + <field>
  1244 + <name>fcno74</name>
  1245 + <type>String</type>
  1246 + <format/>
  1247 + </field>
  1248 + <field>
  1249 + <name>fcno75</name>
  1250 + <type>String</type>
  1251 + <format/>
  1252 + </field>
  1253 + <field>
  1254 + <name>fcno76</name>
  1255 + <type>String</type>
  1256 + <format/>
  1257 + </field>
  1258 + <field>
  1259 + <name>fcno77</name>
  1260 + <type>String</type>
  1261 + <format/>
  1262 + </field>
  1263 + <field>
  1264 + <name>fcno78</name>
  1265 + <type>String</type>
  1266 + <format/>
  1267 + </field>
  1268 + <field>
  1269 + <name>fcno79</name>
  1270 + <type>String</type>
  1271 + <format/>
  1272 + </field>
  1273 + <field>
  1274 + <name>fcno80</name>
  1275 + <type>String</type>
  1276 + <format/>
  1277 + </field>
  1278 + <field>
  1279 + <name>fcno81</name>
  1280 + <type>String</type>
  1281 + <format/>
  1282 + </field>
  1283 + <field>
  1284 + <name>fcno82</name>
  1285 + <type>String</type>
  1286 + <format/>
  1287 + </field>
  1288 + <field>
  1289 + <name>fcno83</name>
  1290 + <type>String</type>
  1291 + <format/>
  1292 + </field>
  1293 + <field>
  1294 + <name>fcno84</name>
  1295 + <type>String</type>
  1296 + <format/>
  1297 + </field>
  1298 + <field>
  1299 + <name>fcno85</name>
  1300 + <type>String</type>
  1301 + <format/>
  1302 + </field>
  1303 + <field>
  1304 + <name>fcno86</name>
  1305 + <type>String</type>
  1306 + <format/>
  1307 + </field>
  1308 + <field>
  1309 + <name>fcno87</name>
  1310 + <type>String</type>
  1311 + <format/>
  1312 + </field>
  1313 + <field>
  1314 + <name>fcno88</name>
  1315 + <type>String</type>
  1316 + <format/>
  1317 + </field>
  1318 + <field>
  1319 + <name>fcno89</name>
  1320 + <type>String</type>
  1321 + <format/>
  1322 + </field>
  1323 + <field>
  1324 + <name>fcno90</name>
  1325 + <type>String</type>
  1326 + <format/>
  1327 + </field>
  1328 + <field>
  1329 + <name>fcno91</name>
  1330 + <type>String</type>
  1331 + <format/>
  1332 + </field>
  1333 + <field>
  1334 + <name>fcno92</name>
  1335 + <type>String</type>
  1336 + <format/>
  1337 + </field>
  1338 + <field>
  1339 + <name>fcno93</name>
  1340 + <type>String</type>
  1341 + <format/>
  1342 + </field>
  1343 + <field>
  1344 + <name>fcno94</name>
  1345 + <type>String</type>
  1346 + <format/>
  1347 + </field>
  1348 + <field>
  1349 + <name>fcno95</name>
  1350 + <type>String</type>
  1351 + <format/>
  1352 + </field>
  1353 + <field>
  1354 + <name>fcno96</name>
  1355 + <type>String</type>
  1356 + <format/>
  1357 + </field>
  1358 + <field>
  1359 + <name>fcno97</name>
  1360 + <type>String</type>
  1361 + <format/>
  1362 + </field>
  1363 + <field>
  1364 + <name>fcno98</name>
  1365 + <type>String</type>
  1366 + <format/>
  1367 + </field>
  1368 + <field>
  1369 + <name>fcno99</name>
  1370 + <type>String</type>
  1371 + <format/>
  1372 + </field>
  1373 + <field>
  1374 + <name>fcno100</name>
  1375 + <type>String</type>
  1376 + <format/>
  1377 + </field>
  1378 + <field>
  1379 + <name>fcno101</name>
  1380 + <type>String</type>
  1381 + <format/>
  1382 + </field>
  1383 + <field>
  1384 + <name>fcno102</name>
  1385 + <type>String</type>
  1386 + <format/>
  1387 + </field>
  1388 + <field>
  1389 + <name>fcno103</name>
  1390 + <type>String</type>
  1391 + <format/>
  1392 + </field>
  1393 + <field>
  1394 + <name>fcno104</name>
  1395 + <type>String</type>
  1396 + <format/>
  1397 + </field>
  1398 + <field>
  1399 + <name>fcno105</name>
  1400 + <type>String</type>
  1401 + <format/>
  1402 + </field>
  1403 + <field>
  1404 + <name>fcno106</name>
  1405 + <type>String</type>
  1406 + <format/>
  1407 + </field>
  1408 + <field>
  1409 + <name>fcno107</name>
  1410 + <type>String</type>
  1411 + <format/>
  1412 + </field>
  1413 + <field>
  1414 + <name>fcno108</name>
  1415 + <type>String</type>
  1416 + <format/>
  1417 + </field>
  1418 + <field>
  1419 + <name>fcno109</name>
  1420 + <type>String</type>
  1421 + <format/>
  1422 + </field>
  1423 + <field>
  1424 + <name>fcno110</name>
  1425 + <type>String</type>
  1426 + <format/>
  1427 + </field>
  1428 + <field>
  1429 + <name>fcno111</name>
  1430 + <type>String</type>
  1431 + <format/>
  1432 + </field>
  1433 + <field>
  1434 + <name>fcno112</name>
  1435 + <type>String</type>
  1436 + <format/>
  1437 + </field>
  1438 + <field>
  1439 + <name>fcno113</name>
  1440 + <type>String</type>
  1441 + <format/>
  1442 + </field>
  1443 + <field>
  1444 + <name>fcno114</name>
  1445 + <type>String</type>
  1446 + <format/>
  1447 + </field>
  1448 + <field>
  1449 + <name>fcno115</name>
  1450 + <type>String</type>
  1451 + <format/>
  1452 + </field>
  1453 + <field>
  1454 + <name>fcno116</name>
  1455 + <type>String</type>
  1456 + <format/>
  1457 + </field>
  1458 + <field>
  1459 + <name>fcno117</name>
  1460 + <type>String</type>
  1461 + <format/>
  1462 + </field>
  1463 + <field>
  1464 + <name>fcno118</name>
  1465 + <type>String</type>
  1466 + <format/>
  1467 + </field>
  1468 + <field>
  1469 + <name>fcno119</name>
  1470 + <type>String</type>
  1471 + <format/>
  1472 + </field>
  1473 + <field>
  1474 + <name>fcno120</name>
  1475 + <type>String</type>
  1476 + <format/>
  1477 + </field>
  1478 + <field>
  1479 + <name>fcno121</name>
  1480 + <type>String</type>
  1481 + <format/>
  1482 + </field>
  1483 + <field>
  1484 + <name>fcno122</name>
  1485 + <type>String</type>
  1486 + <format/>
  1487 + </field>
  1488 + <field>
  1489 + <name>fcno123</name>
  1490 + <type>String</type>
  1491 + <format/>
  1492 + </field>
  1493 + <field>
  1494 + <name>fcno124</name>
  1495 + <type>String</type>
  1496 + <format/>
  1497 + </field>
  1498 + <field>
  1499 + <name>fcno125</name>
  1500 + <type>String</type>
  1501 + <format/>
  1502 + </field>
  1503 + <field>
  1504 + <name>fcno126</name>
  1505 + <type>String</type>
  1506 + <format/>
  1507 + </field>
  1508 + <field>
  1509 + <name>fcno127</name>
  1510 + <type>String</type>
  1511 + <format/>
  1512 + </field>
  1513 + <field>
  1514 + <name>fcno128</name>
  1515 + <type>String</type>
  1516 + <format/>
  1517 + </field>
  1518 + <field>
  1519 + <name>fcno129</name>
  1520 + <type>String</type>
  1521 + <format/>
  1522 + </field>
  1523 + <field>
  1524 + <name>fcno130</name>
  1525 + <type>String</type>
  1526 + <format/>
  1527 + </field>
  1528 + <field>
  1529 + <name>fcno131</name>
  1530 + <type>String</type>
  1531 + <format/>
  1532 + </field>
  1533 + <field>
  1534 + <name>fcno132</name>
  1535 + <type>String</type>
  1536 + <format/>
  1537 + </field>
  1538 + <field>
  1539 + <name>fcno133</name>
  1540 + <type>String</type>
  1541 + <format/>
  1542 + </field>
  1543 + <field>
  1544 + <name>fcno134</name>
  1545 + <type>String</type>
  1546 + <format/>
  1547 + </field>
  1548 + <field>
  1549 + <name>fcno135</name>
  1550 + <type>String</type>
  1551 + <format/>
  1552 + </field>
  1553 + <field>
  1554 + <name>fcno136</name>
  1555 + <type>String</type>
  1556 + <format/>
  1557 + </field>
  1558 + <field>
  1559 + <name>fcno137</name>
  1560 + <type>String</type>
  1561 + <format/>
  1562 + </field>
  1563 + <field>
  1564 + <name>fcno138</name>
  1565 + <type>String</type>
  1566 + <format/>
  1567 + </field>
  1568 + <field>
  1569 + <name>fcno139</name>
  1570 + <type>String</type>
  1571 + <format/>
  1572 + </field>
  1573 + <field>
  1574 + <name>fcno140</name>
  1575 + <type>String</type>
  1576 + <format/>
  1577 + </field>
  1578 + <field>
  1579 + <name>fcno141</name>
  1580 + <type>String</type>
  1581 + <format/>
  1582 + </field>
  1583 + <field>
  1584 + <name>fcno142</name>
  1585 + <type>String</type>
  1586 + <format/>
  1587 + </field>
  1588 + <field>
  1589 + <name>fcno143</name>
  1590 + <type>String</type>
  1591 + <format/>
  1592 + </field>
  1593 + <field>
  1594 + <name>fcno144</name>
  1595 + <type>String</type>
  1596 + <format/>
  1597 + </field>
  1598 + <field>
  1599 + <name>fcno145</name>
  1600 + <type>String</type>
  1601 + <format/>
  1602 + </field>
  1603 + <field>
  1604 + <name>fcno146</name>
  1605 + <type>String</type>
  1606 + <format/>
  1607 + </field>
  1608 + <field>
  1609 + <name>fcno147</name>
  1610 + <type>String</type>
  1611 + <format/>
  1612 + </field>
  1613 + <field>
  1614 + <name>fcno148</name>
  1615 + <type>String</type>
  1616 + <format/>
  1617 + </field>
  1618 + <field>
  1619 + <name>fcno149</name>
  1620 + <type>String</type>
  1621 + <format/>
  1622 + </field>
  1623 + <field>
  1624 + <name>fcno150</name>
  1625 + <type>String</type>
  1626 + <format/>
  1627 + </field>
  1628 + </fields>
  1629 + <custom>
  1630 + <header_font_name>arial</header_font_name>
  1631 + <header_font_size>10</header_font_size>
  1632 + <header_font_bold>N</header_font_bold>
  1633 + <header_font_italic>N</header_font_italic>
  1634 + <header_font_underline>no</header_font_underline>
  1635 + <header_font_orientation>horizontal</header_font_orientation>
  1636 + <header_font_color>black</header_font_color>
  1637 + <header_background_color>none</header_background_color>
  1638 + <header_row_height>255</header_row_height>
  1639 + <header_alignment>left</header_alignment>
  1640 + <header_image/>
  1641 + <row_font_name>arial</row_font_name>
  1642 + <row_font_size>10</row_font_size>
  1643 + <row_font_color>black</row_font_color>
  1644 + <row_background_color>none</row_background_color>
  1645 + </custom>
  1646 + <cluster_schema/>
  1647 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1648 + <xloc>692</xloc>
  1649 + <yloc>514</yloc>
  1650 + <draw>Y</draw>
  1651 + </GUI>
  1652 + </step>
  1653 +
  1654 + <step>
  1655 + <name>&#x5217;&#x8f6c;&#x884c;</name>
  1656 + <type>Denormaliser</type>
  1657 + <description/>
  1658 + <distribute>N</distribute>
  1659 + <custom_distribution/>
  1660 + <copies>1</copies>
  1661 + <partitioning>
  1662 + <method>none</method>
  1663 + <schema_name/>
  1664 + </partitioning>
  1665 + <key_field>fcno</key_field>
  1666 + <group>
  1667 + <field>
  1668 + <name>lp</name>
  1669 + </field>
  1670 + </group>
  1671 + <fields>
  1672 + <field>
  1673 + <field_name>all_content</field_name>
  1674 + <key_value>1</key_value>
  1675 + <target_name>fcno1</target_name>
  1676 + <target_type>String</target_type>
  1677 + <target_format/>
  1678 + <target_length>-1</target_length>
  1679 + <target_precision>-1</target_precision>
  1680 + <target_decimal_symbol/>
  1681 + <target_grouping_symbol/>
  1682 + <target_currency_symbol/>
  1683 + <target_null_string/>
  1684 + <target_aggregation_type>-</target_aggregation_type>
  1685 + </field>
  1686 + <field>
  1687 + <field_name>all_content</field_name>
  1688 + <key_value>2</key_value>
  1689 + <target_name>fcno2</target_name>
  1690 + <target_type>String</target_type>
  1691 + <target_format/>
  1692 + <target_length>-1</target_length>
  1693 + <target_precision>-1</target_precision>
  1694 + <target_decimal_symbol/>
  1695 + <target_grouping_symbol/>
  1696 + <target_currency_symbol/>
  1697 + <target_null_string/>
  1698 + <target_aggregation_type>-</target_aggregation_type>
  1699 + </field>
  1700 + <field>
  1701 + <field_name>all_content</field_name>
  1702 + <key_value>3</key_value>
  1703 + <target_name>fcno3</target_name>
  1704 + <target_type>String</target_type>
  1705 + <target_format/>
  1706 + <target_length>-1</target_length>
  1707 + <target_precision>-1</target_precision>
  1708 + <target_decimal_symbol/>
  1709 + <target_grouping_symbol/>
  1710 + <target_currency_symbol/>
  1711 + <target_null_string/>
  1712 + <target_aggregation_type>-</target_aggregation_type>
  1713 + </field>
  1714 + <field>
  1715 + <field_name>all_content</field_name>
  1716 + <key_value>4</key_value>
  1717 + <target_name>fcno4</target_name>
  1718 + <target_type>String</target_type>
  1719 + <target_format/>
  1720 + <target_length>-1</target_length>
  1721 + <target_precision>-1</target_precision>
  1722 + <target_decimal_symbol/>
  1723 + <target_grouping_symbol/>
  1724 + <target_currency_symbol/>
  1725 + <target_null_string/>
  1726 + <target_aggregation_type>-</target_aggregation_type>
  1727 + </field>
  1728 + <field>
  1729 + <field_name>all_content</field_name>
  1730 + <key_value>5</key_value>
  1731 + <target_name>fcno5</target_name>
  1732 + <target_type>String</target_type>
  1733 + <target_format/>
  1734 + <target_length>-1</target_length>
  1735 + <target_precision>-1</target_precision>
  1736 + <target_decimal_symbol/>
  1737 + <target_grouping_symbol/>
  1738 + <target_currency_symbol/>
  1739 + <target_null_string/>
  1740 + <target_aggregation_type>-</target_aggregation_type>
  1741 + </field>
  1742 + <field>
  1743 + <field_name>all_content</field_name>
  1744 + <key_value>6</key_value>
  1745 + <target_name>fcno6</target_name>
  1746 + <target_type>String</target_type>
  1747 + <target_format/>
  1748 + <target_length>-1</target_length>
  1749 + <target_precision>-1</target_precision>
  1750 + <target_decimal_symbol/>
  1751 + <target_grouping_symbol/>
  1752 + <target_currency_symbol/>
  1753 + <target_null_string/>
  1754 + <target_aggregation_type>-</target_aggregation_type>
  1755 + </field>
  1756 + <field>
  1757 + <field_name>all_content</field_name>
  1758 + <key_value>7</key_value>
  1759 + <target_name>fcno7</target_name>
  1760 + <target_type>String</target_type>
  1761 + <target_format/>
  1762 + <target_length>-1</target_length>
  1763 + <target_precision>-1</target_precision>
  1764 + <target_decimal_symbol/>
  1765 + <target_grouping_symbol/>
  1766 + <target_currency_symbol/>
  1767 + <target_null_string/>
  1768 + <target_aggregation_type>-</target_aggregation_type>
  1769 + </field>
  1770 + <field>
  1771 + <field_name>all_content</field_name>
  1772 + <key_value>8</key_value>
  1773 + <target_name>fcno8</target_name>
  1774 + <target_type>String</target_type>
  1775 + <target_format/>
  1776 + <target_length>-1</target_length>
  1777 + <target_precision>-1</target_precision>
  1778 + <target_decimal_symbol/>
  1779 + <target_grouping_symbol/>
  1780 + <target_currency_symbol/>
  1781 + <target_null_string/>
  1782 + <target_aggregation_type>-</target_aggregation_type>
  1783 + </field>
  1784 + <field>
  1785 + <field_name>all_content</field_name>
  1786 + <key_value>9</key_value>
  1787 + <target_name>fcno9</target_name>
  1788 + <target_type>String</target_type>
  1789 + <target_format/>
  1790 + <target_length>-1</target_length>
  1791 + <target_precision>-1</target_precision>
  1792 + <target_decimal_symbol/>
  1793 + <target_grouping_symbol/>
  1794 + <target_currency_symbol/>
  1795 + <target_null_string/>
  1796 + <target_aggregation_type>-</target_aggregation_type>
  1797 + </field>
  1798 + <field>
  1799 + <field_name>all_content</field_name>
  1800 + <key_value>10</key_value>
  1801 + <target_name>fcno10</target_name>
  1802 + <target_type>String</target_type>
  1803 + <target_format/>
  1804 + <target_length>-1</target_length>
  1805 + <target_precision>-1</target_precision>
  1806 + <target_decimal_symbol/>
  1807 + <target_grouping_symbol/>
  1808 + <target_currency_symbol/>
  1809 + <target_null_string/>
  1810 + <target_aggregation_type>-</target_aggregation_type>
  1811 + </field>
  1812 + <field>
  1813 + <field_name>all_content</field_name>
  1814 + <key_value>11</key_value>
  1815 + <target_name>fcno11</target_name>
  1816 + <target_type>String</target_type>
  1817 + <target_format/>
  1818 + <target_length>-1</target_length>
  1819 + <target_precision>-1</target_precision>
  1820 + <target_decimal_symbol/>
  1821 + <target_grouping_symbol/>
  1822 + <target_currency_symbol/>
  1823 + <target_null_string/>
  1824 + <target_aggregation_type>-</target_aggregation_type>
  1825 + </field>
  1826 + <field>
  1827 + <field_name>all_content</field_name>
  1828 + <key_value>12</key_value>
  1829 + <target_name>fcno12</target_name>
  1830 + <target_type>String</target_type>
  1831 + <target_format/>
  1832 + <target_length>-1</target_length>
  1833 + <target_precision>-1</target_precision>
  1834 + <target_decimal_symbol/>
  1835 + <target_grouping_symbol/>
  1836 + <target_currency_symbol/>
  1837 + <target_null_string/>
  1838 + <target_aggregation_type>-</target_aggregation_type>
  1839 + </field>
  1840 + <field>
  1841 + <field_name>all_content</field_name>
  1842 + <key_value>13</key_value>
  1843 + <target_name>fcno13</target_name>
  1844 + <target_type>String</target_type>
  1845 + <target_format/>
  1846 + <target_length>-1</target_length>
  1847 + <target_precision>-1</target_precision>
  1848 + <target_decimal_symbol/>
  1849 + <target_grouping_symbol/>
  1850 + <target_currency_symbol/>
  1851 + <target_null_string/>
  1852 + <target_aggregation_type>-</target_aggregation_type>
  1853 + </field>
  1854 + <field>
  1855 + <field_name>all_content</field_name>
  1856 + <key_value>14</key_value>
  1857 + <target_name>fcno14</target_name>
  1858 + <target_type>String</target_type>
  1859 + <target_format/>
  1860 + <target_length>-1</target_length>
  1861 + <target_precision>-1</target_precision>
  1862 + <target_decimal_symbol/>
  1863 + <target_grouping_symbol/>
  1864 + <target_currency_symbol/>
  1865 + <target_null_string/>
  1866 + <target_aggregation_type>-</target_aggregation_type>
  1867 + </field>
  1868 + <field>
  1869 + <field_name>all_content</field_name>
  1870 + <key_value>15</key_value>
  1871 + <target_name>fcno15</target_name>
  1872 + <target_type>String</target_type>
  1873 + <target_format/>
  1874 + <target_length>-1</target_length>
  1875 + <target_precision>-1</target_precision>
  1876 + <target_decimal_symbol/>
  1877 + <target_grouping_symbol/>
  1878 + <target_currency_symbol/>
  1879 + <target_null_string/>
  1880 + <target_aggregation_type>-</target_aggregation_type>
  1881 + </field>
  1882 + <field>
  1883 + <field_name>all_content</field_name>
  1884 + <key_value>16</key_value>
  1885 + <target_name>fcno16</target_name>
  1886 + <target_type>String</target_type>
  1887 + <target_format/>
  1888 + <target_length>-1</target_length>
  1889 + <target_precision>-1</target_precision>
  1890 + <target_decimal_symbol/>
  1891 + <target_grouping_symbol/>
  1892 + <target_currency_symbol/>
  1893 + <target_null_string/>
  1894 + <target_aggregation_type>-</target_aggregation_type>
  1895 + </field>
  1896 + <field>
  1897 + <field_name>all_content</field_name>
  1898 + <key_value>17</key_value>
  1899 + <target_name>fcno17</target_name>
  1900 + <target_type>String</target_type>
  1901 + <target_format/>
  1902 + <target_length>-1</target_length>
  1903 + <target_precision>-1</target_precision>
  1904 + <target_decimal_symbol/>
  1905 + <target_grouping_symbol/>
  1906 + <target_currency_symbol/>
  1907 + <target_null_string/>
  1908 + <target_aggregation_type>-</target_aggregation_type>
  1909 + </field>
  1910 + <field>
  1911 + <field_name>all_content</field_name>
  1912 + <key_value>18</key_value>
  1913 + <target_name>fcno18</target_name>
  1914 + <target_type>String</target_type>
  1915 + <target_format/>
  1916 + <target_length>-1</target_length>
  1917 + <target_precision>-1</target_precision>
  1918 + <target_decimal_symbol/>
  1919 + <target_grouping_symbol/>
  1920 + <target_currency_symbol/>
  1921 + <target_null_string/>
  1922 + <target_aggregation_type>-</target_aggregation_type>
  1923 + </field>
  1924 + <field>
  1925 + <field_name>all_content</field_name>
  1926 + <key_value>19</key_value>
  1927 + <target_name>fcno19</target_name>
  1928 + <target_type>String</target_type>
  1929 + <target_format/>
  1930 + <target_length>-1</target_length>
  1931 + <target_precision>-1</target_precision>
  1932 + <target_decimal_symbol/>
  1933 + <target_grouping_symbol/>
  1934 + <target_currency_symbol/>
  1935 + <target_null_string/>
  1936 + <target_aggregation_type>-</target_aggregation_type>
  1937 + </field>
  1938 + <field>
  1939 + <field_name>all_content</field_name>
  1940 + <key_value>20</key_value>
  1941 + <target_name>fcno20</target_name>
  1942 + <target_type>String</target_type>
  1943 + <target_format/>
  1944 + <target_length>-1</target_length>
  1945 + <target_precision>-1</target_precision>
  1946 + <target_decimal_symbol/>
  1947 + <target_grouping_symbol/>
  1948 + <target_currency_symbol/>
  1949 + <target_null_string/>
  1950 + <target_aggregation_type>-</target_aggregation_type>
  1951 + </field>
  1952 + <field>
  1953 + <field_name>all_content</field_name>
  1954 + <key_value>21</key_value>
  1955 + <target_name>fcno21</target_name>
  1956 + <target_type>String</target_type>
  1957 + <target_format/>
  1958 + <target_length>-1</target_length>
  1959 + <target_precision>-1</target_precision>
  1960 + <target_decimal_symbol/>
  1961 + <target_grouping_symbol/>
  1962 + <target_currency_symbol/>
  1963 + <target_null_string/>
  1964 + <target_aggregation_type>-</target_aggregation_type>
  1965 + </field>
  1966 + <field>
  1967 + <field_name>all_content</field_name>
  1968 + <key_value>22</key_value>
  1969 + <target_name>fcno22</target_name>
  1970 + <target_type>String</target_type>
  1971 + <target_format/>
  1972 + <target_length>-1</target_length>
  1973 + <target_precision>-1</target_precision>
  1974 + <target_decimal_symbol/>
  1975 + <target_grouping_symbol/>
  1976 + <target_currency_symbol/>
  1977 + <target_null_string/>
  1978 + <target_aggregation_type>-</target_aggregation_type>
  1979 + </field>
  1980 + <field>
  1981 + <field_name>all_content</field_name>
  1982 + <key_value>23</key_value>
  1983 + <target_name>fcno23</target_name>
  1984 + <target_type>String</target_type>
  1985 + <target_format/>
  1986 + <target_length>-1</target_length>
  1987 + <target_precision>-1</target_precision>
  1988 + <target_decimal_symbol/>
  1989 + <target_grouping_symbol/>
  1990 + <target_currency_symbol/>
  1991 + <target_null_string/>
  1992 + <target_aggregation_type>-</target_aggregation_type>
  1993 + </field>
  1994 + <field>
  1995 + <field_name>all_content</field_name>
  1996 + <key_value>24</key_value>
  1997 + <target_name>fcno24</target_name>
  1998 + <target_type>String</target_type>
  1999 + <target_format/>
  2000 + <target_length>-1</target_length>
  2001 + <target_precision>-1</target_precision>
  2002 + <target_decimal_symbol/>
  2003 + <target_grouping_symbol/>
  2004 + <target_currency_symbol/>
  2005 + <target_null_string/>
  2006 + <target_aggregation_type>-</target_aggregation_type>
  2007 + </field>
  2008 + <field>
  2009 + <field_name>all_content</field_name>
  2010 + <key_value>25</key_value>
  2011 + <target_name>fcno25</target_name>
  2012 + <target_type>String</target_type>
  2013 + <target_format/>
  2014 + <target_length>-1</target_length>
  2015 + <target_precision>-1</target_precision>
  2016 + <target_decimal_symbol/>
  2017 + <target_grouping_symbol/>
  2018 + <target_currency_symbol/>
  2019 + <target_null_string/>
  2020 + <target_aggregation_type>-</target_aggregation_type>
  2021 + </field>
  2022 + <field>
  2023 + <field_name>all_content</field_name>
  2024 + <key_value>26</key_value>
  2025 + <target_name>fcno26</target_name>
  2026 + <target_type>String</target_type>
  2027 + <target_format/>
  2028 + <target_length>-1</target_length>
  2029 + <target_precision>-1</target_precision>
  2030 + <target_decimal_symbol/>
  2031 + <target_grouping_symbol/>
  2032 + <target_currency_symbol/>
  2033 + <target_null_string/>
  2034 + <target_aggregation_type>-</target_aggregation_type>
  2035 + </field>
  2036 + <field>
  2037 + <field_name>all_content</field_name>
  2038 + <key_value>27</key_value>
  2039 + <target_name>fcno27</target_name>
  2040 + <target_type>String</target_type>
  2041 + <target_format/>
  2042 + <target_length>-1</target_length>
  2043 + <target_precision>-1</target_precision>
  2044 + <target_decimal_symbol/>
  2045 + <target_grouping_symbol/>
  2046 + <target_currency_symbol/>
  2047 + <target_null_string/>
  2048 + <target_aggregation_type>-</target_aggregation_type>
  2049 + </field>
  2050 + <field>
  2051 + <field_name>all_content</field_name>
  2052 + <key_value>28</key_value>
  2053 + <target_name>fcno28</target_name>
  2054 + <target_type>String</target_type>
  2055 + <target_format/>
  2056 + <target_length>-1</target_length>
  2057 + <target_precision>-1</target_precision>
  2058 + <target_decimal_symbol/>
  2059 + <target_grouping_symbol/>
  2060 + <target_currency_symbol/>
  2061 + <target_null_string/>
  2062 + <target_aggregation_type>-</target_aggregation_type>
  2063 + </field>
  2064 + <field>
  2065 + <field_name>all_content</field_name>
  2066 + <key_value>29</key_value>
  2067 + <target_name>fcno29</target_name>
  2068 + <target_type>String</target_type>
  2069 + <target_format/>
  2070 + <target_length>-1</target_length>
  2071 + <target_precision>-1</target_precision>
  2072 + <target_decimal_symbol/>
  2073 + <target_grouping_symbol/>
  2074 + <target_currency_symbol/>
  2075 + <target_null_string/>
  2076 + <target_aggregation_type>-</target_aggregation_type>
  2077 + </field>
  2078 + <field>
  2079 + <field_name>all_content</field_name>
  2080 + <key_value>30</key_value>
  2081 + <target_name>fcno30</target_name>
  2082 + <target_type>String</target_type>
  2083 + <target_format/>
  2084 + <target_length>-1</target_length>
  2085 + <target_precision>-1</target_precision>
  2086 + <target_decimal_symbol/>
  2087 + <target_grouping_symbol/>
  2088 + <target_currency_symbol/>
  2089 + <target_null_string/>
  2090 + <target_aggregation_type>-</target_aggregation_type>
  2091 + </field>
  2092 + <field>
  2093 + <field_name>all_content</field_name>
  2094 + <key_value>31</key_value>
  2095 + <target_name>fcno31</target_name>
  2096 + <target_type>String</target_type>
  2097 + <target_format/>
  2098 + <target_length>-1</target_length>
  2099 + <target_precision>-1</target_precision>
  2100 + <target_decimal_symbol/>
  2101 + <target_grouping_symbol/>
  2102 + <target_currency_symbol/>
  2103 + <target_null_string/>
  2104 + <target_aggregation_type>-</target_aggregation_type>
  2105 + </field>
  2106 + <field>
  2107 + <field_name>all_content</field_name>
  2108 + <key_value>32</key_value>
  2109 + <target_name>fcno32</target_name>
  2110 + <target_type>String</target_type>
  2111 + <target_format/>
  2112 + <target_length>-1</target_length>
  2113 + <target_precision>-1</target_precision>
  2114 + <target_decimal_symbol/>
  2115 + <target_grouping_symbol/>
  2116 + <target_currency_symbol/>
  2117 + <target_null_string/>
  2118 + <target_aggregation_type>-</target_aggregation_type>
  2119 + </field>
  2120 + <field>
  2121 + <field_name>all_content</field_name>
  2122 + <key_value>33</key_value>
  2123 + <target_name>fcno33</target_name>
  2124 + <target_type>String</target_type>
  2125 + <target_format/>
  2126 + <target_length>-1</target_length>
  2127 + <target_precision>-1</target_precision>
  2128 + <target_decimal_symbol/>
  2129 + <target_grouping_symbol/>
  2130 + <target_currency_symbol/>
  2131 + <target_null_string/>
  2132 + <target_aggregation_type>-</target_aggregation_type>
  2133 + </field>
  2134 + <field>
  2135 + <field_name>all_content</field_name>
  2136 + <key_value>34</key_value>
  2137 + <target_name>fcno34</target_name>
  2138 + <target_type>String</target_type>
  2139 + <target_format/>
  2140 + <target_length>-1</target_length>
  2141 + <target_precision>-1</target_precision>
  2142 + <target_decimal_symbol/>
  2143 + <target_grouping_symbol/>
  2144 + <target_currency_symbol/>
  2145 + <target_null_string/>
  2146 + <target_aggregation_type>-</target_aggregation_type>
  2147 + </field>
  2148 + <field>
  2149 + <field_name>all_content</field_name>
  2150 + <key_value>35</key_value>
  2151 + <target_name>fcno35</target_name>
  2152 + <target_type>String</target_type>
  2153 + <target_format/>
  2154 + <target_length>-1</target_length>
  2155 + <target_precision>-1</target_precision>
  2156 + <target_decimal_symbol/>
  2157 + <target_grouping_symbol/>
  2158 + <target_currency_symbol/>
  2159 + <target_null_string/>
  2160 + <target_aggregation_type>-</target_aggregation_type>
  2161 + </field>
  2162 + <field>
  2163 + <field_name>all_content</field_name>
  2164 + <key_value>36</key_value>
  2165 + <target_name>fcno36</target_name>
  2166 + <target_type>String</target_type>
  2167 + <target_format/>
  2168 + <target_length>-1</target_length>
  2169 + <target_precision>-1</target_precision>
  2170 + <target_decimal_symbol/>
  2171 + <target_grouping_symbol/>
  2172 + <target_currency_symbol/>
  2173 + <target_null_string/>
  2174 + <target_aggregation_type>-</target_aggregation_type>
  2175 + </field>
  2176 + <field>
  2177 + <field_name>all_content</field_name>
  2178 + <key_value>37</key_value>
  2179 + <target_name>fcno37</target_name>
  2180 + <target_type>String</target_type>
  2181 + <target_format/>
  2182 + <target_length>-1</target_length>
  2183 + <target_precision>-1</target_precision>
  2184 + <target_decimal_symbol/>
  2185 + <target_grouping_symbol/>
  2186 + <target_currency_symbol/>
  2187 + <target_null_string/>
  2188 + <target_aggregation_type>-</target_aggregation_type>
  2189 + </field>
  2190 + <field>
  2191 + <field_name>all_content</field_name>
  2192 + <key_value>38</key_value>
  2193 + <target_name>fcno38</target_name>
  2194 + <target_type>String</target_type>
  2195 + <target_format/>
  2196 + <target_length>-1</target_length>
  2197 + <target_precision>-1</target_precision>
  2198 + <target_decimal_symbol/>
  2199 + <target_grouping_symbol/>
  2200 + <target_currency_symbol/>
  2201 + <target_null_string/>
  2202 + <target_aggregation_type>-</target_aggregation_type>
  2203 + </field>
  2204 + <field>
  2205 + <field_name>all_content</field_name>
  2206 + <key_value>39</key_value>
  2207 + <target_name>fcno39</target_name>
  2208 + <target_type>String</target_type>
  2209 + <target_format/>
  2210 + <target_length>-1</target_length>
  2211 + <target_precision>-1</target_precision>
  2212 + <target_decimal_symbol/>
  2213 + <target_grouping_symbol/>
  2214 + <target_currency_symbol/>
  2215 + <target_null_string/>
  2216 + <target_aggregation_type>-</target_aggregation_type>
  2217 + </field>
  2218 + <field>
  2219 + <field_name>all_content</field_name>
  2220 + <key_value>40</key_value>
  2221 + <target_name>fcno40</target_name>
  2222 + <target_type>String</target_type>
  2223 + <target_format/>
  2224 + <target_length>-1</target_length>
  2225 + <target_precision>-1</target_precision>
  2226 + <target_decimal_symbol/>
  2227 + <target_grouping_symbol/>
  2228 + <target_currency_symbol/>
  2229 + <target_null_string/>
  2230 + <target_aggregation_type>-</target_aggregation_type>
  2231 + </field>
  2232 + <field>
  2233 + <field_name>all_content</field_name>
  2234 + <key_value>41</key_value>
  2235 + <target_name>fcno41</target_name>
  2236 + <target_type>String</target_type>
  2237 + <target_format/>
  2238 + <target_length>-1</target_length>
  2239 + <target_precision>-1</target_precision>
  2240 + <target_decimal_symbol/>
  2241 + <target_grouping_symbol/>
  2242 + <target_currency_symbol/>
  2243 + <target_null_string/>
  2244 + <target_aggregation_type>-</target_aggregation_type>
  2245 + </field>
  2246 + <field>
  2247 + <field_name>all_content</field_name>
  2248 + <key_value>42</key_value>
  2249 + <target_name>fcno42</target_name>
  2250 + <target_type>String</target_type>
  2251 + <target_format/>
  2252 + <target_length>-1</target_length>
  2253 + <target_precision>-1</target_precision>
  2254 + <target_decimal_symbol/>
  2255 + <target_grouping_symbol/>
  2256 + <target_currency_symbol/>
  2257 + <target_null_string/>
  2258 + <target_aggregation_type>-</target_aggregation_type>
  2259 + </field>
  2260 + <field>
  2261 + <field_name>all_content</field_name>
  2262 + <key_value>43</key_value>
  2263 + <target_name>fcno43</target_name>
  2264 + <target_type>String</target_type>
  2265 + <target_format/>
  2266 + <target_length>-1</target_length>
  2267 + <target_precision>-1</target_precision>
  2268 + <target_decimal_symbol/>
  2269 + <target_grouping_symbol/>
  2270 + <target_currency_symbol/>
  2271 + <target_null_string/>
  2272 + <target_aggregation_type>-</target_aggregation_type>
  2273 + </field>
  2274 + <field>
  2275 + <field_name>all_content</field_name>
  2276 + <key_value>44</key_value>
  2277 + <target_name>fcno44</target_name>
  2278 + <target_type>String</target_type>
  2279 + <target_format/>
  2280 + <target_length>-1</target_length>
  2281 + <target_precision>-1</target_precision>
  2282 + <target_decimal_symbol/>
  2283 + <target_grouping_symbol/>
  2284 + <target_currency_symbol/>
  2285 + <target_null_string/>
  2286 + <target_aggregation_type>-</target_aggregation_type>
  2287 + </field>
  2288 + <field>
  2289 + <field_name>all_content</field_name>
  2290 + <key_value>45</key_value>
  2291 + <target_name>fcno45</target_name>
  2292 + <target_type>String</target_type>
  2293 + <target_format/>
  2294 + <target_length>-1</target_length>
  2295 + <target_precision>-1</target_precision>
  2296 + <target_decimal_symbol/>
  2297 + <target_grouping_symbol/>
  2298 + <target_currency_symbol/>
  2299 + <target_null_string/>
  2300 + <target_aggregation_type>-</target_aggregation_type>
  2301 + </field>
  2302 + <field>
  2303 + <field_name>all_content</field_name>
  2304 + <key_value>46</key_value>
  2305 + <target_name>fcno46</target_name>
  2306 + <target_type>String</target_type>
  2307 + <target_format/>
  2308 + <target_length>-1</target_length>
  2309 + <target_precision>-1</target_precision>
  2310 + <target_decimal_symbol/>
  2311 + <target_grouping_symbol/>
  2312 + <target_currency_symbol/>
  2313 + <target_null_string/>
  2314 + <target_aggregation_type>-</target_aggregation_type>
  2315 + </field>
  2316 + <field>
  2317 + <field_name>all_content</field_name>
  2318 + <key_value>47</key_value>
  2319 + <target_name>fcno47</target_name>
  2320 + <target_type>String</target_type>
  2321 + <target_format/>
  2322 + <target_length>-1</target_length>
  2323 + <target_precision>-1</target_precision>
  2324 + <target_decimal_symbol/>
  2325 + <target_grouping_symbol/>
  2326 + <target_currency_symbol/>
  2327 + <target_null_string/>
  2328 + <target_aggregation_type>-</target_aggregation_type>
  2329 + </field>
  2330 + <field>
  2331 + <field_name>all_content</field_name>
  2332 + <key_value>48</key_value>
  2333 + <target_name>fcno48</target_name>
  2334 + <target_type>String</target_type>
  2335 + <target_format/>
  2336 + <target_length>-1</target_length>
  2337 + <target_precision>-1</target_precision>
  2338 + <target_decimal_symbol/>
  2339 + <target_grouping_symbol/>
  2340 + <target_currency_symbol/>
  2341 + <target_null_string/>
  2342 + <target_aggregation_type>-</target_aggregation_type>
  2343 + </field>
  2344 + <field>
  2345 + <field_name>all_content</field_name>
  2346 + <key_value>49</key_value>
  2347 + <target_name>fcno49</target_name>
  2348 + <target_type>String</target_type>
  2349 + <target_format/>
  2350 + <target_length>-1</target_length>
  2351 + <target_precision>-1</target_precision>
  2352 + <target_decimal_symbol/>
  2353 + <target_grouping_symbol/>
  2354 + <target_currency_symbol/>
  2355 + <target_null_string/>
  2356 + <target_aggregation_type>-</target_aggregation_type>
  2357 + </field>
  2358 + <field>
  2359 + <field_name>all_content</field_name>
  2360 + <key_value>50</key_value>
  2361 + <target_name>fcno50</target_name>
  2362 + <target_type>String</target_type>
  2363 + <target_format/>
  2364 + <target_length>-1</target_length>
  2365 + <target_precision>-1</target_precision>
  2366 + <target_decimal_symbol/>
  2367 + <target_grouping_symbol/>
  2368 + <target_currency_symbol/>
  2369 + <target_null_string/>
  2370 + <target_aggregation_type>-</target_aggregation_type>
  2371 + </field>
  2372 + <field>
  2373 + <field_name>all_content</field_name>
  2374 + <key_value>51</key_value>
  2375 + <target_name>fcno51</target_name>
  2376 + <target_type>String</target_type>
  2377 + <target_format/>
  2378 + <target_length>-1</target_length>
  2379 + <target_precision>-1</target_precision>
  2380 + <target_decimal_symbol/>
  2381 + <target_grouping_symbol/>
  2382 + <target_currency_symbol/>
  2383 + <target_null_string/>
  2384 + <target_aggregation_type>-</target_aggregation_type>
  2385 + </field>
  2386 + <field>
  2387 + <field_name>all_content</field_name>
  2388 + <key_value>52</key_value>
  2389 + <target_name>fcno52</target_name>
  2390 + <target_type>String</target_type>
  2391 + <target_format/>
  2392 + <target_length>-1</target_length>
  2393 + <target_precision>-1</target_precision>
  2394 + <target_decimal_symbol/>
  2395 + <target_grouping_symbol/>
  2396 + <target_currency_symbol/>
  2397 + <target_null_string/>
  2398 + <target_aggregation_type>-</target_aggregation_type>
  2399 + </field>
  2400 + <field>
  2401 + <field_name>all_content</field_name>
  2402 + <key_value>53</key_value>
  2403 + <target_name>fcno53</target_name>
  2404 + <target_type>String</target_type>
  2405 + <target_format/>
  2406 + <target_length>-1</target_length>
  2407 + <target_precision>-1</target_precision>
  2408 + <target_decimal_symbol/>
  2409 + <target_grouping_symbol/>
  2410 + <target_currency_symbol/>
  2411 + <target_null_string/>
  2412 + <target_aggregation_type>-</target_aggregation_type>
  2413 + </field>
  2414 + <field>
  2415 + <field_name>all_content</field_name>
  2416 + <key_value>54</key_value>
  2417 + <target_name>fcno54</target_name>
  2418 + <target_type>String</target_type>
  2419 + <target_format/>
  2420 + <target_length>-1</target_length>
  2421 + <target_precision>-1</target_precision>
  2422 + <target_decimal_symbol/>
  2423 + <target_grouping_symbol/>
  2424 + <target_currency_symbol/>
  2425 + <target_null_string/>
  2426 + <target_aggregation_type>-</target_aggregation_type>
  2427 + </field>
  2428 + <field>
  2429 + <field_name>all_content</field_name>
  2430 + <key_value>55</key_value>
  2431 + <target_name>fcno55</target_name>
  2432 + <target_type>String</target_type>
  2433 + <target_format/>
  2434 + <target_length>-1</target_length>
  2435 + <target_precision>-1</target_precision>
  2436 + <target_decimal_symbol/>
  2437 + <target_grouping_symbol/>
  2438 + <target_currency_symbol/>
  2439 + <target_null_string/>
  2440 + <target_aggregation_type>-</target_aggregation_type>
  2441 + </field>
  2442 + <field>
  2443 + <field_name>all_content</field_name>
  2444 + <key_value>56</key_value>
  2445 + <target_name>fcno56</target_name>
  2446 + <target_type>String</target_type>
  2447 + <target_format/>
  2448 + <target_length>-1</target_length>
  2449 + <target_precision>-1</target_precision>
  2450 + <target_decimal_symbol/>
  2451 + <target_grouping_symbol/>
  2452 + <target_currency_symbol/>
  2453 + <target_null_string/>
  2454 + <target_aggregation_type>-</target_aggregation_type>
  2455 + </field>
  2456 + <field>
  2457 + <field_name>all_content</field_name>
  2458 + <key_value>57</key_value>
  2459 + <target_name>fcno57</target_name>
  2460 + <target_type>String</target_type>
  2461 + <target_format/>
  2462 + <target_length>-1</target_length>
  2463 + <target_precision>-1</target_precision>
  2464 + <target_decimal_symbol/>
  2465 + <target_grouping_symbol/>
  2466 + <target_currency_symbol/>
  2467 + <target_null_string/>
  2468 + <target_aggregation_type>-</target_aggregation_type>
  2469 + </field>
  2470 + <field>
  2471 + <field_name>all_content</field_name>
  2472 + <key_value>58</key_value>
  2473 + <target_name>fcno58</target_name>
  2474 + <target_type>String</target_type>
  2475 + <target_format/>
  2476 + <target_length>-1</target_length>
  2477 + <target_precision>-1</target_precision>
  2478 + <target_decimal_symbol/>
  2479 + <target_grouping_symbol/>
  2480 + <target_currency_symbol/>
  2481 + <target_null_string/>
  2482 + <target_aggregation_type>-</target_aggregation_type>
  2483 + </field>
  2484 + <field>
  2485 + <field_name>all_content</field_name>
  2486 + <key_value>59</key_value>
  2487 + <target_name>fcno59</target_name>
  2488 + <target_type>String</target_type>
  2489 + <target_format/>
  2490 + <target_length>-1</target_length>
  2491 + <target_precision>-1</target_precision>
  2492 + <target_decimal_symbol/>
  2493 + <target_grouping_symbol/>
  2494 + <target_currency_symbol/>
  2495 + <target_null_string/>
  2496 + <target_aggregation_type>-</target_aggregation_type>
  2497 + </field>
  2498 + <field>
  2499 + <field_name>all_content</field_name>
  2500 + <key_value>60</key_value>
  2501 + <target_name>fcno60</target_name>
  2502 + <target_type>String</target_type>
  2503 + <target_format/>
  2504 + <target_length>-1</target_length>
  2505 + <target_precision>-1</target_precision>
  2506 + <target_decimal_symbol/>
  2507 + <target_grouping_symbol/>
  2508 + <target_currency_symbol/>
  2509 + <target_null_string/>
  2510 + <target_aggregation_type>-</target_aggregation_type>
  2511 + </field>
  2512 + <field>
  2513 + <field_name>all_content</field_name>
  2514 + <key_value>61</key_value>
  2515 + <target_name>fcno61</target_name>
  2516 + <target_type>String</target_type>
  2517 + <target_format/>
  2518 + <target_length>-1</target_length>
  2519 + <target_precision>-1</target_precision>
  2520 + <target_decimal_symbol/>
  2521 + <target_grouping_symbol/>
  2522 + <target_currency_symbol/>
  2523 + <target_null_string/>
  2524 + <target_aggregation_type>-</target_aggregation_type>
  2525 + </field>
  2526 + <field>
  2527 + <field_name>all_content</field_name>
  2528 + <key_value>62</key_value>
  2529 + <target_name>fcno62</target_name>
  2530 + <target_type>String</target_type>
  2531 + <target_format/>
  2532 + <target_length>-1</target_length>
  2533 + <target_precision>-1</target_precision>
  2534 + <target_decimal_symbol/>
  2535 + <target_grouping_symbol/>
  2536 + <target_currency_symbol/>
  2537 + <target_null_string/>
  2538 + <target_aggregation_type>-</target_aggregation_type>
  2539 + </field>
  2540 + <field>
  2541 + <field_name>all_content</field_name>
  2542 + <key_value>63</key_value>
  2543 + <target_name>fcno63</target_name>
  2544 + <target_type>String</target_type>
  2545 + <target_format/>
  2546 + <target_length>-1</target_length>
  2547 + <target_precision>-1</target_precision>
  2548 + <target_decimal_symbol/>
  2549 + <target_grouping_symbol/>
  2550 + <target_currency_symbol/>
  2551 + <target_null_string/>
  2552 + <target_aggregation_type>-</target_aggregation_type>
  2553 + </field>
  2554 + <field>
  2555 + <field_name>all_content</field_name>
  2556 + <key_value>64</key_value>
  2557 + <target_name>fcno64</target_name>
  2558 + <target_type>String</target_type>
  2559 + <target_format/>
  2560 + <target_length>-1</target_length>
  2561 + <target_precision>-1</target_precision>
  2562 + <target_decimal_symbol/>
  2563 + <target_grouping_symbol/>
  2564 + <target_currency_symbol/>
  2565 + <target_null_string/>
  2566 + <target_aggregation_type>-</target_aggregation_type>
  2567 + </field>
  2568 + <field>
  2569 + <field_name>all_content</field_name>
  2570 + <key_value>65</key_value>
  2571 + <target_name>fcno65</target_name>
  2572 + <target_type>String</target_type>
  2573 + <target_format/>
  2574 + <target_length>-1</target_length>
  2575 + <target_precision>-1</target_precision>
  2576 + <target_decimal_symbol/>
  2577 + <target_grouping_symbol/>
  2578 + <target_currency_symbol/>
  2579 + <target_null_string/>
  2580 + <target_aggregation_type>-</target_aggregation_type>
  2581 + </field>
  2582 + <field>
  2583 + <field_name>all_content</field_name>
  2584 + <key_value>66</key_value>
  2585 + <target_name>fcno66</target_name>
  2586 + <target_type>String</target_type>
  2587 + <target_format/>
  2588 + <target_length>-1</target_length>
  2589 + <target_precision>-1</target_precision>
  2590 + <target_decimal_symbol/>
  2591 + <target_grouping_symbol/>
  2592 + <target_currency_symbol/>
  2593 + <target_null_string/>
  2594 + <target_aggregation_type>-</target_aggregation_type>
  2595 + </field>
  2596 + <field>
  2597 + <field_name>all_content</field_name>
  2598 + <key_value>67</key_value>
  2599 + <target_name>fcno67</target_name>
  2600 + <target_type>String</target_type>
  2601 + <target_format/>
  2602 + <target_length>-1</target_length>
  2603 + <target_precision>-1</target_precision>
  2604 + <target_decimal_symbol/>
  2605 + <target_grouping_symbol/>
  2606 + <target_currency_symbol/>
  2607 + <target_null_string/>
  2608 + <target_aggregation_type>-</target_aggregation_type>
  2609 + </field>
  2610 + <field>
  2611 + <field_name>all_content</field_name>
  2612 + <key_value>68</key_value>
  2613 + <target_name>fcno68</target_name>
  2614 + <target_type>String</target_type>
  2615 + <target_format/>
  2616 + <target_length>-1</target_length>
  2617 + <target_precision>-1</target_precision>
  2618 + <target_decimal_symbol/>
  2619 + <target_grouping_symbol/>
  2620 + <target_currency_symbol/>
  2621 + <target_null_string/>
  2622 + <target_aggregation_type>-</target_aggregation_type>
  2623 + </field>
  2624 + <field>
  2625 + <field_name>all_content</field_name>
  2626 + <key_value>69</key_value>
  2627 + <target_name>fcno69</target_name>
  2628 + <target_type>String</target_type>
  2629 + <target_format/>
  2630 + <target_length>-1</target_length>
  2631 + <target_precision>-1</target_precision>
  2632 + <target_decimal_symbol/>
  2633 + <target_grouping_symbol/>
  2634 + <target_currency_symbol/>
  2635 + <target_null_string/>
  2636 + <target_aggregation_type>-</target_aggregation_type>
  2637 + </field>
  2638 + <field>
  2639 + <field_name>all_content</field_name>
  2640 + <key_value>70</key_value>
  2641 + <target_name>fcno70</target_name>
  2642 + <target_type>String</target_type>
  2643 + <target_format/>
  2644 + <target_length>-1</target_length>
  2645 + <target_precision>-1</target_precision>
  2646 + <target_decimal_symbol/>
  2647 + <target_grouping_symbol/>
  2648 + <target_currency_symbol/>
  2649 + <target_null_string/>
  2650 + <target_aggregation_type>-</target_aggregation_type>
  2651 + </field>
  2652 + <field>
  2653 + <field_name>all_content</field_name>
  2654 + <key_value>71</key_value>
  2655 + <target_name>fcno71</target_name>
  2656 + <target_type>String</target_type>
  2657 + <target_format/>
  2658 + <target_length>-1</target_length>
  2659 + <target_precision>-1</target_precision>
  2660 + <target_decimal_symbol/>
  2661 + <target_grouping_symbol/>
  2662 + <target_currency_symbol/>
  2663 + <target_null_string/>
  2664 + <target_aggregation_type>-</target_aggregation_type>
  2665 + </field>
  2666 + <field>
  2667 + <field_name>all_content</field_name>
  2668 + <key_value>72</key_value>
  2669 + <target_name>fcno72</target_name>
  2670 + <target_type>String</target_type>
  2671 + <target_format/>
  2672 + <target_length>-1</target_length>
  2673 + <target_precision>-1</target_precision>
  2674 + <target_decimal_symbol/>
  2675 + <target_grouping_symbol/>
  2676 + <target_currency_symbol/>
  2677 + <target_null_string/>
  2678 + <target_aggregation_type>-</target_aggregation_type>
  2679 + </field>
  2680 + <field>
  2681 + <field_name>all_content</field_name>
  2682 + <key_value>73</key_value>
  2683 + <target_name>fcno73</target_name>
  2684 + <target_type>String</target_type>
  2685 + <target_format/>
  2686 + <target_length>-1</target_length>
  2687 + <target_precision>-1</target_precision>
  2688 + <target_decimal_symbol/>
  2689 + <target_grouping_symbol/>
  2690 + <target_currency_symbol/>
  2691 + <target_null_string/>
  2692 + <target_aggregation_type>-</target_aggregation_type>
  2693 + </field>
  2694 + <field>
  2695 + <field_name>all_content</field_name>
  2696 + <key_value>74</key_value>
  2697 + <target_name>fcno74</target_name>
  2698 + <target_type>String</target_type>
  2699 + <target_format/>
  2700 + <target_length>-1</target_length>
  2701 + <target_precision>-1</target_precision>
  2702 + <target_decimal_symbol/>
  2703 + <target_grouping_symbol/>
  2704 + <target_currency_symbol/>
  2705 + <target_null_string/>
  2706 + <target_aggregation_type>-</target_aggregation_type>
  2707 + </field>
  2708 + <field>
  2709 + <field_name>all_content</field_name>
  2710 + <key_value>75</key_value>
  2711 + <target_name>fcno75</target_name>
  2712 + <target_type>String</target_type>
  2713 + <target_format/>
  2714 + <target_length>-1</target_length>
  2715 + <target_precision>-1</target_precision>
  2716 + <target_decimal_symbol/>
  2717 + <target_grouping_symbol/>
  2718 + <target_currency_symbol/>
  2719 + <target_null_string/>
  2720 + <target_aggregation_type>-</target_aggregation_type>
  2721 + </field>
  2722 + <field>
  2723 + <field_name>all_content</field_name>
  2724 + <key_value>76</key_value>
  2725 + <target_name>fcno76</target_name>
  2726 + <target_type>String</target_type>
  2727 + <target_format/>
  2728 + <target_length>-1</target_length>
  2729 + <target_precision>-1</target_precision>
  2730 + <target_decimal_symbol/>
  2731 + <target_grouping_symbol/>
  2732 + <target_currency_symbol/>
  2733 + <target_null_string/>
  2734 + <target_aggregation_type>-</target_aggregation_type>
  2735 + </field>
  2736 + <field>
  2737 + <field_name>all_content</field_name>
  2738 + <key_value>77</key_value>
  2739 + <target_name>fcno77</target_name>
  2740 + <target_type>String</target_type>
  2741 + <target_format/>
  2742 + <target_length>-1</target_length>
  2743 + <target_precision>-1</target_precision>
  2744 + <target_decimal_symbol/>
  2745 + <target_grouping_symbol/>
  2746 + <target_currency_symbol/>
  2747 + <target_null_string/>
  2748 + <target_aggregation_type>-</target_aggregation_type>
  2749 + </field>
  2750 + <field>
  2751 + <field_name>all_content</field_name>
  2752 + <key_value>78</key_value>
  2753 + <target_name>fcno78</target_name>
  2754 + <target_type>String</target_type>
  2755 + <target_format/>
  2756 + <target_length>-1</target_length>
  2757 + <target_precision>-1</target_precision>
  2758 + <target_decimal_symbol/>
  2759 + <target_grouping_symbol/>
  2760 + <target_currency_symbol/>
  2761 + <target_null_string/>
  2762 + <target_aggregation_type>-</target_aggregation_type>
  2763 + </field>
  2764 + <field>
  2765 + <field_name>all_content</field_name>
  2766 + <key_value>79</key_value>
  2767 + <target_name>fcno79</target_name>
  2768 + <target_type>String</target_type>
  2769 + <target_format/>
  2770 + <target_length>-1</target_length>
  2771 + <target_precision>-1</target_precision>
  2772 + <target_decimal_symbol/>
  2773 + <target_grouping_symbol/>
  2774 + <target_currency_symbol/>
  2775 + <target_null_string/>
  2776 + <target_aggregation_type>-</target_aggregation_type>
  2777 + </field>
  2778 + <field>
  2779 + <field_name>all_content</field_name>
  2780 + <key_value>80</key_value>
  2781 + <target_name>fcno80</target_name>
  2782 + <target_type>String</target_type>
  2783 + <target_format/>
  2784 + <target_length>-1</target_length>
  2785 + <target_precision>-1</target_precision>
  2786 + <target_decimal_symbol/>
  2787 + <target_grouping_symbol/>
  2788 + <target_currency_symbol/>
  2789 + <target_null_string/>
  2790 + <target_aggregation_type>-</target_aggregation_type>
  2791 + </field>
  2792 + <field>
  2793 + <field_name>all_content</field_name>
  2794 + <key_value>81</key_value>
  2795 + <target_name>fcno81</target_name>
  2796 + <target_type>String</target_type>
  2797 + <target_format/>
  2798 + <target_length>-1</target_length>
  2799 + <target_precision>-1</target_precision>
  2800 + <target_decimal_symbol/>
  2801 + <target_grouping_symbol/>
  2802 + <target_currency_symbol/>
  2803 + <target_null_string/>
  2804 + <target_aggregation_type>-</target_aggregation_type>
  2805 + </field>
  2806 + <field>
  2807 + <field_name>all_content</field_name>
  2808 + <key_value>82</key_value>
  2809 + <target_name>fcno82</target_name>
  2810 + <target_type>String</target_type>
  2811 + <target_format/>
  2812 + <target_length>-1</target_length>
  2813 + <target_precision>-1</target_precision>
  2814 + <target_decimal_symbol/>
  2815 + <target_grouping_symbol/>
  2816 + <target_currency_symbol/>
  2817 + <target_null_string/>
  2818 + <target_aggregation_type>-</target_aggregation_type>
  2819 + </field>
  2820 + <field>
  2821 + <field_name>all_content</field_name>
  2822 + <key_value>83</key_value>
  2823 + <target_name>fcno83</target_name>
  2824 + <target_type>String</target_type>
  2825 + <target_format/>
  2826 + <target_length>-1</target_length>
  2827 + <target_precision>-1</target_precision>
  2828 + <target_decimal_symbol/>
  2829 + <target_grouping_symbol/>
  2830 + <target_currency_symbol/>
  2831 + <target_null_string/>
  2832 + <target_aggregation_type>-</target_aggregation_type>
  2833 + </field>
  2834 + <field>
  2835 + <field_name>all_content</field_name>
  2836 + <key_value>84</key_value>
  2837 + <target_name>fcno84</target_name>
  2838 + <target_type>String</target_type>
  2839 + <target_format/>
  2840 + <target_length>-1</target_length>
  2841 + <target_precision>-1</target_precision>
  2842 + <target_decimal_symbol/>
  2843 + <target_grouping_symbol/>
  2844 + <target_currency_symbol/>
  2845 + <target_null_string/>
  2846 + <target_aggregation_type>-</target_aggregation_type>
  2847 + </field>
  2848 + <field>
  2849 + <field_name>all_content</field_name>
  2850 + <key_value>85</key_value>
  2851 + <target_name>fcno85</target_name>
  2852 + <target_type>String</target_type>
  2853 + <target_format/>
  2854 + <target_length>-1</target_length>
  2855 + <target_precision>-1</target_precision>
  2856 + <target_decimal_symbol/>
  2857 + <target_grouping_symbol/>
  2858 + <target_currency_symbol/>
  2859 + <target_null_string/>
  2860 + <target_aggregation_type>-</target_aggregation_type>
  2861 + </field>
  2862 + <field>
  2863 + <field_name>all_content</field_name>
  2864 + <key_value>86</key_value>
  2865 + <target_name>fcno86</target_name>
  2866 + <target_type>String</target_type>
  2867 + <target_format/>
  2868 + <target_length>-1</target_length>
  2869 + <target_precision>-1</target_precision>
  2870 + <target_decimal_symbol/>
  2871 + <target_grouping_symbol/>
  2872 + <target_currency_symbol/>
  2873 + <target_null_string/>
  2874 + <target_aggregation_type>-</target_aggregation_type>
  2875 + </field>
  2876 + <field>
  2877 + <field_name>all_content</field_name>
  2878 + <key_value>87</key_value>
  2879 + <target_name>fcno87</target_name>
  2880 + <target_type>String</target_type>
  2881 + <target_format/>
  2882 + <target_length>-1</target_length>
  2883 + <target_precision>-1</target_precision>
  2884 + <target_decimal_symbol/>
  2885 + <target_grouping_symbol/>
  2886 + <target_currency_symbol/>
  2887 + <target_null_string/>
  2888 + <target_aggregation_type>-</target_aggregation_type>
  2889 + </field>
  2890 + <field>
  2891 + <field_name>all_content</field_name>
  2892 + <key_value>88</key_value>
  2893 + <target_name>fcno88</target_name>
  2894 + <target_type>String</target_type>
  2895 + <target_format/>
  2896 + <target_length>-1</target_length>
  2897 + <target_precision>-1</target_precision>
  2898 + <target_decimal_symbol/>
  2899 + <target_grouping_symbol/>
  2900 + <target_currency_symbol/>
  2901 + <target_null_string/>
  2902 + <target_aggregation_type>-</target_aggregation_type>
  2903 + </field>
  2904 + <field>
  2905 + <field_name>all_content</field_name>
  2906 + <key_value>89</key_value>
  2907 + <target_name>fcno89</target_name>
  2908 + <target_type>String</target_type>
  2909 + <target_format/>
  2910 + <target_length>-1</target_length>
  2911 + <target_precision>-1</target_precision>
  2912 + <target_decimal_symbol/>
  2913 + <target_grouping_symbol/>
  2914 + <target_currency_symbol/>
  2915 + <target_null_string/>
  2916 + <target_aggregation_type>-</target_aggregation_type>
  2917 + </field>
  2918 + <field>
  2919 + <field_name>all_content</field_name>
  2920 + <key_value>90</key_value>
  2921 + <target_name>fcno90</target_name>
  2922 + <target_type>String</target_type>
  2923 + <target_format/>
  2924 + <target_length>-1</target_length>
  2925 + <target_precision>-1</target_precision>
  2926 + <target_decimal_symbol/>
  2927 + <target_grouping_symbol/>
  2928 + <target_currency_symbol/>
  2929 + <target_null_string/>
  2930 + <target_aggregation_type>-</target_aggregation_type>
  2931 + </field>
  2932 + <field>
  2933 + <field_name>all_content</field_name>
  2934 + <key_value>91</key_value>
  2935 + <target_name>fcno91</target_name>
  2936 + <target_type>String</target_type>
  2937 + <target_format/>
  2938 + <target_length>-1</target_length>
  2939 + <target_precision>-1</target_precision>
  2940 + <target_decimal_symbol/>
  2941 + <target_grouping_symbol/>
  2942 + <target_currency_symbol/>
  2943 + <target_null_string/>
  2944 + <target_aggregation_type>-</target_aggregation_type>
  2945 + </field>
  2946 + <field>
  2947 + <field_name>all_content</field_name>
  2948 + <key_value>92</key_value>
  2949 + <target_name>fcno92</target_name>
  2950 + <target_type>String</target_type>
  2951 + <target_format/>
  2952 + <target_length>-1</target_length>
  2953 + <target_precision>-1</target_precision>
  2954 + <target_decimal_symbol/>
  2955 + <target_grouping_symbol/>
  2956 + <target_currency_symbol/>
  2957 + <target_null_string/>
  2958 + <target_aggregation_type>-</target_aggregation_type>
  2959 + </field>
  2960 + <field>
  2961 + <field_name>all_content</field_name>
  2962 + <key_value>93</key_value>
  2963 + <target_name>fcno93</target_name>
  2964 + <target_type>String</target_type>
  2965 + <target_format/>
  2966 + <target_length>-1</target_length>
  2967 + <target_precision>-1</target_precision>
  2968 + <target_decimal_symbol/>
  2969 + <target_grouping_symbol/>
  2970 + <target_currency_symbol/>
  2971 + <target_null_string/>
  2972 + <target_aggregation_type>-</target_aggregation_type>
  2973 + </field>
  2974 + <field>
  2975 + <field_name>all_content</field_name>
  2976 + <key_value>94</key_value>
  2977 + <target_name>fcno94</target_name>
  2978 + <target_type>String</target_type>
  2979 + <target_format/>
  2980 + <target_length>-1</target_length>
  2981 + <target_precision>-1</target_precision>
  2982 + <target_decimal_symbol/>
  2983 + <target_grouping_symbol/>
  2984 + <target_currency_symbol/>
  2985 + <target_null_string/>
  2986 + <target_aggregation_type>-</target_aggregation_type>
  2987 + </field>
  2988 + <field>
  2989 + <field_name>all_content</field_name>
  2990 + <key_value>95</key_value>
  2991 + <target_name>fcno95</target_name>
  2992 + <target_type>String</target_type>
  2993 + <target_format/>
  2994 + <target_length>-1</target_length>
  2995 + <target_precision>-1</target_precision>
  2996 + <target_decimal_symbol/>
  2997 + <target_grouping_symbol/>
  2998 + <target_currency_symbol/>
  2999 + <target_null_string/>
  3000 + <target_aggregation_type>-</target_aggregation_type>
  3001 + </field>
  3002 + <field>
  3003 + <field_name>all_content</field_name>
  3004 + <key_value>96</key_value>
  3005 + <target_name>fcno96</target_name>
  3006 + <target_type>String</target_type>
  3007 + <target_format/>
  3008 + <target_length>-1</target_length>
  3009 + <target_precision>-1</target_precision>
  3010 + <target_decimal_symbol/>
  3011 + <target_grouping_symbol/>
  3012 + <target_currency_symbol/>
  3013 + <target_null_string/>
  3014 + <target_aggregation_type>-</target_aggregation_type>
  3015 + </field>
  3016 + <field>
  3017 + <field_name>all_content</field_name>
  3018 + <key_value>97</key_value>
  3019 + <target_name>fcno97</target_name>
  3020 + <target_type>String</target_type>
  3021 + <target_format/>
  3022 + <target_length>-1</target_length>
  3023 + <target_precision>-1</target_precision>
  3024 + <target_decimal_symbol/>
  3025 + <target_grouping_symbol/>
  3026 + <target_currency_symbol/>
  3027 + <target_null_string/>
  3028 + <target_aggregation_type>-</target_aggregation_type>
  3029 + </field>
  3030 + <field>
  3031 + <field_name>all_content</field_name>
  3032 + <key_value>98</key_value>
  3033 + <target_name>fcno98</target_name>
  3034 + <target_type>String</target_type>
  3035 + <target_format/>
  3036 + <target_length>-1</target_length>
  3037 + <target_precision>-1</target_precision>
  3038 + <target_decimal_symbol/>
  3039 + <target_grouping_symbol/>
  3040 + <target_currency_symbol/>
  3041 + <target_null_string/>
  3042 + <target_aggregation_type>-</target_aggregation_type>
  3043 + </field>
  3044 + <field>
  3045 + <field_name>all_content</field_name>
  3046 + <key_value>99</key_value>
  3047 + <target_name>fcno99</target_name>
  3048 + <target_type>String</target_type>
  3049 + <target_format/>
  3050 + <target_length>-1</target_length>
  3051 + <target_precision>-1</target_precision>
  3052 + <target_decimal_symbol/>
  3053 + <target_grouping_symbol/>
  3054 + <target_currency_symbol/>
  3055 + <target_null_string/>
  3056 + <target_aggregation_type>-</target_aggregation_type>
  3057 + </field>
  3058 + <field>
  3059 + <field_name>all_content</field_name>
  3060 + <key_value>100</key_value>
  3061 + <target_name>fcno100</target_name>
  3062 + <target_type>String</target_type>
  3063 + <target_format/>
  3064 + <target_length>-1</target_length>
  3065 + <target_precision>-1</target_precision>
  3066 + <target_decimal_symbol/>
  3067 + <target_grouping_symbol/>
  3068 + <target_currency_symbol/>
  3069 + <target_null_string/>
  3070 + <target_aggregation_type>-</target_aggregation_type>
  3071 + </field>
  3072 + <field>
  3073 + <field_name>all_content</field_name>
  3074 + <key_value>101</key_value>
  3075 + <target_name>fcno101</target_name>
  3076 + <target_type>String</target_type>
  3077 + <target_format/>
  3078 + <target_length>-1</target_length>
  3079 + <target_precision>-1</target_precision>
  3080 + <target_decimal_symbol/>
  3081 + <target_grouping_symbol/>
  3082 + <target_currency_symbol/>
  3083 + <target_null_string/>
  3084 + <target_aggregation_type>-</target_aggregation_type>
  3085 + </field>
  3086 + <field>
  3087 + <field_name>all_content</field_name>
  3088 + <key_value>102</key_value>
  3089 + <target_name>fcno102</target_name>
  3090 + <target_type>String</target_type>
  3091 + <target_format/>
  3092 + <target_length>-1</target_length>
  3093 + <target_precision>-1</target_precision>
  3094 + <target_decimal_symbol/>
  3095 + <target_grouping_symbol/>
  3096 + <target_currency_symbol/>
  3097 + <target_null_string/>
  3098 + <target_aggregation_type>-</target_aggregation_type>
  3099 + </field>
  3100 + <field>
  3101 + <field_name>all_content</field_name>
  3102 + <key_value>103</key_value>
  3103 + <target_name>fcno103</target_name>
  3104 + <target_type>String</target_type>
  3105 + <target_format/>
  3106 + <target_length>-1</target_length>
  3107 + <target_precision>-1</target_precision>
  3108 + <target_decimal_symbol/>
  3109 + <target_grouping_symbol/>
  3110 + <target_currency_symbol/>
  3111 + <target_null_string/>
  3112 + <target_aggregation_type>-</target_aggregation_type>
  3113 + </field>
  3114 + <field>
  3115 + <field_name>all_content</field_name>
  3116 + <key_value>104</key_value>
  3117 + <target_name>fcno104</target_name>
  3118 + <target_type>String</target_type>
  3119 + <target_format/>
  3120 + <target_length>-1</target_length>
  3121 + <target_precision>-1</target_precision>
  3122 + <target_decimal_symbol/>
  3123 + <target_grouping_symbol/>
  3124 + <target_currency_symbol/>
  3125 + <target_null_string/>
  3126 + <target_aggregation_type>-</target_aggregation_type>
  3127 + </field>
  3128 + <field>
  3129 + <field_name>all_content</field_name>
  3130 + <key_value>105</key_value>
  3131 + <target_name>fcno105</target_name>
  3132 + <target_type>String</target_type>
  3133 + <target_format/>
  3134 + <target_length>-1</target_length>
  3135 + <target_precision>-1</target_precision>
  3136 + <target_decimal_symbol/>
  3137 + <target_grouping_symbol/>
  3138 + <target_currency_symbol/>
  3139 + <target_null_string/>
  3140 + <target_aggregation_type>-</target_aggregation_type>
  3141 + </field>
  3142 + <field>
  3143 + <field_name>all_content</field_name>
  3144 + <key_value>106</key_value>
  3145 + <target_name>fcno106</target_name>
  3146 + <target_type>String</target_type>
  3147 + <target_format/>
  3148 + <target_length>-1</target_length>
  3149 + <target_precision>-1</target_precision>
  3150 + <target_decimal_symbol/>
  3151 + <target_grouping_symbol/>
  3152 + <target_currency_symbol/>
  3153 + <target_null_string/>
  3154 + <target_aggregation_type>-</target_aggregation_type>
  3155 + </field>
  3156 + <field>
  3157 + <field_name>all_content</field_name>
  3158 + <key_value>107</key_value>
  3159 + <target_name>fcno107</target_name>
  3160 + <target_type>String</target_type>
  3161 + <target_format/>
  3162 + <target_length>-1</target_length>
  3163 + <target_precision>-1</target_precision>
  3164 + <target_decimal_symbol/>
  3165 + <target_grouping_symbol/>
  3166 + <target_currency_symbol/>
  3167 + <target_null_string/>
  3168 + <target_aggregation_type>-</target_aggregation_type>
  3169 + </field>
  3170 + <field>
  3171 + <field_name>all_content</field_name>
  3172 + <key_value>108</key_value>
  3173 + <target_name>fcno108</target_name>
  3174 + <target_type>String</target_type>
  3175 + <target_format/>
  3176 + <target_length>-1</target_length>
  3177 + <target_precision>-1</target_precision>
  3178 + <target_decimal_symbol/>
  3179 + <target_grouping_symbol/>
  3180 + <target_currency_symbol/>
  3181 + <target_null_string/>
  3182 + <target_aggregation_type>-</target_aggregation_type>
  3183 + </field>
  3184 + <field>
  3185 + <field_name>all_content</field_name>
  3186 + <key_value>109</key_value>
  3187 + <target_name>fcno109</target_name>
  3188 + <target_type>String</target_type>
  3189 + <target_format/>
  3190 + <target_length>-1</target_length>
  3191 + <target_precision>-1</target_precision>
  3192 + <target_decimal_symbol/>
  3193 + <target_grouping_symbol/>
  3194 + <target_currency_symbol/>
  3195 + <target_null_string/>
  3196 + <target_aggregation_type>-</target_aggregation_type>
  3197 + </field>
  3198 + <field>
  3199 + <field_name>all_content</field_name>
  3200 + <key_value>110</key_value>
  3201 + <target_name>fcno110</target_name>
  3202 + <target_type>String</target_type>
  3203 + <target_format/>
  3204 + <target_length>-1</target_length>
  3205 + <target_precision>-1</target_precision>
  3206 + <target_decimal_symbol/>
  3207 + <target_grouping_symbol/>
  3208 + <target_currency_symbol/>
  3209 + <target_null_string/>
  3210 + <target_aggregation_type>-</target_aggregation_type>
  3211 + </field>
  3212 + <field>
  3213 + <field_name>all_content</field_name>
  3214 + <key_value>111</key_value>
  3215 + <target_name>fcno111</target_name>
  3216 + <target_type>String</target_type>
  3217 + <target_format/>
  3218 + <target_length>-1</target_length>
  3219 + <target_precision>-1</target_precision>
  3220 + <target_decimal_symbol/>
  3221 + <target_grouping_symbol/>
  3222 + <target_currency_symbol/>
  3223 + <target_null_string/>
  3224 + <target_aggregation_type>-</target_aggregation_type>
  3225 + </field>
  3226 + <field>
  3227 + <field_name>all_content</field_name>
  3228 + <key_value>112</key_value>
  3229 + <target_name>fcno112</target_name>
  3230 + <target_type>String</target_type>
  3231 + <target_format/>
  3232 + <target_length>-1</target_length>
  3233 + <target_precision>-1</target_precision>
  3234 + <target_decimal_symbol/>
  3235 + <target_grouping_symbol/>
  3236 + <target_currency_symbol/>
  3237 + <target_null_string/>
  3238 + <target_aggregation_type>-</target_aggregation_type>
  3239 + </field>
  3240 + <field>
  3241 + <field_name>all_content</field_name>
  3242 + <key_value>113</key_value>
  3243 + <target_name>fcno113</target_name>
  3244 + <target_type>String</target_type>
  3245 + <target_format/>
  3246 + <target_length>-1</target_length>
  3247 + <target_precision>-1</target_precision>
  3248 + <target_decimal_symbol/>
  3249 + <target_grouping_symbol/>
  3250 + <target_currency_symbol/>
  3251 + <target_null_string/>
  3252 + <target_aggregation_type>-</target_aggregation_type>
  3253 + </field>
  3254 + <field>
  3255 + <field_name>all_content</field_name>
  3256 + <key_value>114</key_value>
  3257 + <target_name>fcno114</target_name>
  3258 + <target_type>String</target_type>
  3259 + <target_format/>
  3260 + <target_length>-1</target_length>
  3261 + <target_precision>-1</target_precision>
  3262 + <target_decimal_symbol/>
  3263 + <target_grouping_symbol/>
  3264 + <target_currency_symbol/>
  3265 + <target_null_string/>
  3266 + <target_aggregation_type>-</target_aggregation_type>
  3267 + </field>
  3268 + <field>
  3269 + <field_name>all_content</field_name>
  3270 + <key_value>115</key_value>
  3271 + <target_name>fcno115</target_name>
  3272 + <target_type>String</target_type>
  3273 + <target_format/>
  3274 + <target_length>-1</target_length>
  3275 + <target_precision>-1</target_precision>
  3276 + <target_decimal_symbol/>
  3277 + <target_grouping_symbol/>
  3278 + <target_currency_symbol/>
  3279 + <target_null_string/>
  3280 + <target_aggregation_type>-</target_aggregation_type>
  3281 + </field>
  3282 + <field>
  3283 + <field_name>all_content</field_name>
  3284 + <key_value>116</key_value>
  3285 + <target_name>fcno116</target_name>
  3286 + <target_type>String</target_type>
  3287 + <target_format/>
  3288 + <target_length>-1</target_length>
  3289 + <target_precision>-1</target_precision>
  3290 + <target_decimal_symbol/>
  3291 + <target_grouping_symbol/>
  3292 + <target_currency_symbol/>
  3293 + <target_null_string/>
  3294 + <target_aggregation_type>-</target_aggregation_type>
  3295 + </field>
  3296 + <field>
  3297 + <field_name>all_content</field_name>
  3298 + <key_value>117</key_value>
  3299 + <target_name>fcno117</target_name>
  3300 + <target_type>String</target_type>
  3301 + <target_format/>
  3302 + <target_length>-1</target_length>
  3303 + <target_precision>-1</target_precision>
  3304 + <target_decimal_symbol/>
  3305 + <target_grouping_symbol/>
  3306 + <target_currency_symbol/>
  3307 + <target_null_string/>
  3308 + <target_aggregation_type>-</target_aggregation_type>
  3309 + </field>
  3310 + <field>
  3311 + <field_name>all_content</field_name>
  3312 + <key_value>118</key_value>
  3313 + <target_name>fcno118</target_name>
  3314 + <target_type>String</target_type>
  3315 + <target_format/>
  3316 + <target_length>-1</target_length>
  3317 + <target_precision>-1</target_precision>
  3318 + <target_decimal_symbol/>
  3319 + <target_grouping_symbol/>
  3320 + <target_currency_symbol/>
  3321 + <target_null_string/>
  3322 + <target_aggregation_type>-</target_aggregation_type>
  3323 + </field>
  3324 + <field>
  3325 + <field_name>all_content</field_name>
  3326 + <key_value>119</key_value>
  3327 + <target_name>fcno119</target_name>
  3328 + <target_type>String</target_type>
  3329 + <target_format/>
  3330 + <target_length>-1</target_length>
  3331 + <target_precision>-1</target_precision>
  3332 + <target_decimal_symbol/>
  3333 + <target_grouping_symbol/>
  3334 + <target_currency_symbol/>
  3335 + <target_null_string/>
  3336 + <target_aggregation_type>-</target_aggregation_type>
  3337 + </field>
  3338 + <field>
  3339 + <field_name>all_content</field_name>
  3340 + <key_value>120</key_value>
  3341 + <target_name>fcno120</target_name>
  3342 + <target_type>String</target_type>
  3343 + <target_format/>
  3344 + <target_length>-1</target_length>
  3345 + <target_precision>-1</target_precision>
  3346 + <target_decimal_symbol/>
  3347 + <target_grouping_symbol/>
  3348 + <target_currency_symbol/>
  3349 + <target_null_string/>
  3350 + <target_aggregation_type>-</target_aggregation_type>
  3351 + </field>
  3352 + <field>
  3353 + <field_name>all_content</field_name>
  3354 + <key_value>121</key_value>
  3355 + <target_name>fcno121</target_name>
  3356 + <target_type>String</target_type>
  3357 + <target_format/>
  3358 + <target_length>-1</target_length>
  3359 + <target_precision>-1</target_precision>
  3360 + <target_decimal_symbol/>
  3361 + <target_grouping_symbol/>
  3362 + <target_currency_symbol/>
  3363 + <target_null_string/>
  3364 + <target_aggregation_type>-</target_aggregation_type>
  3365 + </field>
  3366 + <field>
  3367 + <field_name>all_content</field_name>
  3368 + <key_value>122</key_value>
  3369 + <target_name>fcno122</target_name>
  3370 + <target_type>String</target_type>
  3371 + <target_format/>
  3372 + <target_length>-1</target_length>
  3373 + <target_precision>-1</target_precision>
  3374 + <target_decimal_symbol/>
  3375 + <target_grouping_symbol/>
  3376 + <target_currency_symbol/>
  3377 + <target_null_string/>
  3378 + <target_aggregation_type>-</target_aggregation_type>
  3379 + </field>
  3380 + <field>
  3381 + <field_name>all_content</field_name>
  3382 + <key_value>123</key_value>
  3383 + <target_name>fcno123</target_name>
  3384 + <target_type>String</target_type>
  3385 + <target_format/>
  3386 + <target_length>-1</target_length>
  3387 + <target_precision>-1</target_precision>
  3388 + <target_decimal_symbol/>
  3389 + <target_grouping_symbol/>
  3390 + <target_currency_symbol/>
  3391 + <target_null_string/>
  3392 + <target_aggregation_type>-</target_aggregation_type>
  3393 + </field>
  3394 + <field>
  3395 + <field_name>all_content</field_name>
  3396 + <key_value>124</key_value>
  3397 + <target_name>fcno124</target_name>
  3398 + <target_type>String</target_type>
  3399 + <target_format/>
  3400 + <target_length>-1</target_length>
  3401 + <target_precision>-1</target_precision>
  3402 + <target_decimal_symbol/>
  3403 + <target_grouping_symbol/>
  3404 + <target_currency_symbol/>
  3405 + <target_null_string/>
  3406 + <target_aggregation_type>-</target_aggregation_type>
  3407 + </field>
  3408 + <field>
  3409 + <field_name>all_content</field_name>
  3410 + <key_value>125</key_value>
  3411 + <target_name>fcno125</target_name>
  3412 + <target_type>String</target_type>
  3413 + <target_format/>
  3414 + <target_length>-1</target_length>
  3415 + <target_precision>-1</target_precision>
  3416 + <target_decimal_symbol/>
  3417 + <target_grouping_symbol/>
  3418 + <target_currency_symbol/>
  3419 + <target_null_string/>
  3420 + <target_aggregation_type>-</target_aggregation_type>
  3421 + </field>
  3422 + <field>
  3423 + <field_name>all_content</field_name>
  3424 + <key_value>126</key_value>
  3425 + <target_name>fcno126</target_name>
  3426 + <target_type>String</target_type>
  3427 + <target_format/>
  3428 + <target_length>-1</target_length>
  3429 + <target_precision>-1</target_precision>
  3430 + <target_decimal_symbol/>
  3431 + <target_grouping_symbol/>
  3432 + <target_currency_symbol/>
  3433 + <target_null_string/>
  3434 + <target_aggregation_type>-</target_aggregation_type>
  3435 + </field>
  3436 + <field>
  3437 + <field_name>all_content</field_name>
  3438 + <key_value>127</key_value>
  3439 + <target_name>fcno127</target_name>
  3440 + <target_type>String</target_type>
  3441 + <target_format/>
  3442 + <target_length>-1</target_length>
  3443 + <target_precision>-1</target_precision>
  3444 + <target_decimal_symbol/>
  3445 + <target_grouping_symbol/>
  3446 + <target_currency_symbol/>
  3447 + <target_null_string/>
  3448 + <target_aggregation_type>-</target_aggregation_type>
  3449 + </field>
  3450 + <field>
  3451 + <field_name>all_content</field_name>
  3452 + <key_value>128</key_value>
  3453 + <target_name>fcno128</target_name>
  3454 + <target_type>String</target_type>
  3455 + <target_format/>
  3456 + <target_length>-1</target_length>
  3457 + <target_precision>-1</target_precision>
  3458 + <target_decimal_symbol/>
  3459 + <target_grouping_symbol/>
  3460 + <target_currency_symbol/>
  3461 + <target_null_string/>
  3462 + <target_aggregation_type>-</target_aggregation_type>
  3463 + </field>
  3464 + <field>
  3465 + <field_name>all_content</field_name>
  3466 + <key_value>129</key_value>
  3467 + <target_name>fcno129</target_name>
  3468 + <target_type>String</target_type>
  3469 + <target_format/>
  3470 + <target_length>-1</target_length>
  3471 + <target_precision>-1</target_precision>
  3472 + <target_decimal_symbol/>
  3473 + <target_grouping_symbol/>
  3474 + <target_currency_symbol/>
  3475 + <target_null_string/>
  3476 + <target_aggregation_type>-</target_aggregation_type>
  3477 + </field>
  3478 + <field>
  3479 + <field_name>all_content</field_name>
  3480 + <key_value>130</key_value>
  3481 + <target_name>fcno130</target_name>
  3482 + <target_type>String</target_type>
  3483 + <target_format/>
  3484 + <target_length>-1</target_length>
  3485 + <target_precision>-1</target_precision>
  3486 + <target_decimal_symbol/>
  3487 + <target_grouping_symbol/>
  3488 + <target_currency_symbol/>
  3489 + <target_null_string/>
  3490 + <target_aggregation_type>-</target_aggregation_type>
  3491 + </field>
  3492 + <field>
  3493 + <field_name>all_content</field_name>
  3494 + <key_value>131</key_value>
  3495 + <target_name>fcno131</target_name>
  3496 + <target_type>String</target_type>
  3497 + <target_format/>
  3498 + <target_length>-1</target_length>
  3499 + <target_precision>-1</target_precision>
  3500 + <target_decimal_symbol/>
  3501 + <target_grouping_symbol/>
  3502 + <target_currency_symbol/>
  3503 + <target_null_string/>
  3504 + <target_aggregation_type>-</target_aggregation_type>
  3505 + </field>
  3506 + <field>
  3507 + <field_name>all_content</field_name>
  3508 + <key_value>132</key_value>
  3509 + <target_name>fcno132</target_name>
  3510 + <target_type>String</target_type>
  3511 + <target_format/>
  3512 + <target_length>-1</target_length>
  3513 + <target_precision>-1</target_precision>
  3514 + <target_decimal_symbol/>
  3515 + <target_grouping_symbol/>
  3516 + <target_currency_symbol/>
  3517 + <target_null_string/>
  3518 + <target_aggregation_type>-</target_aggregation_type>
  3519 + </field>
  3520 + <field>
  3521 + <field_name>all_content</field_name>
  3522 + <key_value>133</key_value>
  3523 + <target_name>fcno133</target_name>
  3524 + <target_type>String</target_type>
  3525 + <target_format/>
  3526 + <target_length>-1</target_length>
  3527 + <target_precision>-1</target_precision>
  3528 + <target_decimal_symbol/>
  3529 + <target_grouping_symbol/>
  3530 + <target_currency_symbol/>
  3531 + <target_null_string/>
  3532 + <target_aggregation_type>-</target_aggregation_type>
  3533 + </field>
  3534 + <field>
  3535 + <field_name>all_content</field_name>
  3536 + <key_value>134</key_value>
  3537 + <target_name>fcno134</target_name>
  3538 + <target_type>String</target_type>
  3539 + <target_format/>
  3540 + <target_length>-1</target_length>
  3541 + <target_precision>-1</target_precision>
  3542 + <target_decimal_symbol/>
  3543 + <target_grouping_symbol/>
  3544 + <target_currency_symbol/>
  3545 + <target_null_string/>
  3546 + <target_aggregation_type>-</target_aggregation_type>
  3547 + </field>
  3548 + <field>
  3549 + <field_name>all_content</field_name>
  3550 + <key_value>135</key_value>
  3551 + <target_name>fcno135</target_name>
  3552 + <target_type>String</target_type>
  3553 + <target_format/>
  3554 + <target_length>-1</target_length>
  3555 + <target_precision>-1</target_precision>
  3556 + <target_decimal_symbol/>
  3557 + <target_grouping_symbol/>
  3558 + <target_currency_symbol/>
  3559 + <target_null_string/>
  3560 + <target_aggregation_type>-</target_aggregation_type>
  3561 + </field>
  3562 + <field>
  3563 + <field_name>all_content</field_name>
  3564 + <key_value>136</key_value>
  3565 + <target_name>fcno136</target_name>
  3566 + <target_type>String</target_type>
  3567 + <target_format/>
  3568 + <target_length>-1</target_length>
  3569 + <target_precision>-1</target_precision>
  3570 + <target_decimal_symbol/>
  3571 + <target_grouping_symbol/>
  3572 + <target_currency_symbol/>
  3573 + <target_null_string/>
  3574 + <target_aggregation_type>-</target_aggregation_type>
  3575 + </field>
  3576 + <field>
  3577 + <field_name>all_content</field_name>
  3578 + <key_value>137</key_value>
  3579 + <target_name>fcno137</target_name>
  3580 + <target_type>String</target_type>
  3581 + <target_format/>
  3582 + <target_length>-1</target_length>
  3583 + <target_precision>-1</target_precision>
  3584 + <target_decimal_symbol/>
  3585 + <target_grouping_symbol/>
  3586 + <target_currency_symbol/>
  3587 + <target_null_string/>
  3588 + <target_aggregation_type>-</target_aggregation_type>
  3589 + </field>
  3590 + <field>
  3591 + <field_name>all_content</field_name>
  3592 + <key_value>138</key_value>
  3593 + <target_name>fcno138</target_name>
  3594 + <target_type>String</target_type>
  3595 + <target_format/>
  3596 + <target_length>-1</target_length>
  3597 + <target_precision>-1</target_precision>
  3598 + <target_decimal_symbol/>
  3599 + <target_grouping_symbol/>
  3600 + <target_currency_symbol/>
  3601 + <target_null_string/>
  3602 + <target_aggregation_type>-</target_aggregation_type>
  3603 + </field>
  3604 + <field>
  3605 + <field_name>all_content</field_name>
  3606 + <key_value>139</key_value>
  3607 + <target_name>fcno139</target_name>
  3608 + <target_type>String</target_type>
  3609 + <target_format/>
  3610 + <target_length>-1</target_length>
  3611 + <target_precision>-1</target_precision>
  3612 + <target_decimal_symbol/>
  3613 + <target_grouping_symbol/>
  3614 + <target_currency_symbol/>
  3615 + <target_null_string/>
  3616 + <target_aggregation_type>-</target_aggregation_type>
  3617 + </field>
  3618 + <field>
  3619 + <field_name>all_content</field_name>
  3620 + <key_value>140</key_value>
  3621 + <target_name>fcno140</target_name>
  3622 + <target_type>String</target_type>
  3623 + <target_format/>
  3624 + <target_length>-1</target_length>
  3625 + <target_precision>-1</target_precision>
  3626 + <target_decimal_symbol/>
  3627 + <target_grouping_symbol/>
  3628 + <target_currency_symbol/>
  3629 + <target_null_string/>
  3630 + <target_aggregation_type>-</target_aggregation_type>
  3631 + </field>
  3632 + <field>
  3633 + <field_name>all_content</field_name>
  3634 + <key_value>141</key_value>
  3635 + <target_name>fcno141</target_name>
  3636 + <target_type>String</target_type>
  3637 + <target_format/>
  3638 + <target_length>-1</target_length>
  3639 + <target_precision>-1</target_precision>
  3640 + <target_decimal_symbol/>
  3641 + <target_grouping_symbol/>
  3642 + <target_currency_symbol/>
  3643 + <target_null_string/>
  3644 + <target_aggregation_type>-</target_aggregation_type>
  3645 + </field>
  3646 + <field>
  3647 + <field_name>all_content</field_name>
  3648 + <key_value>142</key_value>
  3649 + <target_name>fcno142</target_name>
  3650 + <target_type>String</target_type>
  3651 + <target_format/>
  3652 + <target_length>-1</target_length>
  3653 + <target_precision>-1</target_precision>
  3654 + <target_decimal_symbol/>
  3655 + <target_grouping_symbol/>
  3656 + <target_currency_symbol/>
  3657 + <target_null_string/>
  3658 + <target_aggregation_type>-</target_aggregation_type>
  3659 + </field>
  3660 + <field>
  3661 + <field_name>all_content</field_name>
  3662 + <key_value>143</key_value>
  3663 + <target_name>fcno143</target_name>
  3664 + <target_type>String</target_type>
  3665 + <target_format/>
  3666 + <target_length>-1</target_length>
  3667 + <target_precision>-1</target_precision>
  3668 + <target_decimal_symbol/>
  3669 + <target_grouping_symbol/>
  3670 + <target_currency_symbol/>
  3671 + <target_null_string/>
  3672 + <target_aggregation_type>-</target_aggregation_type>
  3673 + </field>
  3674 + <field>
  3675 + <field_name>all_content</field_name>
  3676 + <key_value>144</key_value>
  3677 + <target_name>fcno144</target_name>
  3678 + <target_type>String</target_type>
  3679 + <target_format/>
  3680 + <target_length>-1</target_length>
  3681 + <target_precision>-1</target_precision>
  3682 + <target_decimal_symbol/>
  3683 + <target_grouping_symbol/>
  3684 + <target_currency_symbol/>
  3685 + <target_null_string/>
  3686 + <target_aggregation_type>-</target_aggregation_type>
  3687 + </field>
  3688 + <field>
  3689 + <field_name>all_content</field_name>
  3690 + <key_value>145</key_value>
  3691 + <target_name>fcno145</target_name>
  3692 + <target_type>String</target_type>
  3693 + <target_format/>
  3694 + <target_length>-1</target_length>
  3695 + <target_precision>-1</target_precision>
  3696 + <target_decimal_symbol/>
  3697 + <target_grouping_symbol/>
  3698 + <target_currency_symbol/>
  3699 + <target_null_string/>
  3700 + <target_aggregation_type>-</target_aggregation_type>
  3701 + </field>
  3702 + <field>
  3703 + <field_name>all_content</field_name>
  3704 + <key_value>146</key_value>
  3705 + <target_name>fcno146</target_name>
  3706 + <target_type>String</target_type>
  3707 + <target_format/>
  3708 + <target_length>-1</target_length>
  3709 + <target_precision>-1</target_precision>
  3710 + <target_decimal_symbol/>
  3711 + <target_grouping_symbol/>
  3712 + <target_currency_symbol/>
  3713 + <target_null_string/>
  3714 + <target_aggregation_type>-</target_aggregation_type>
  3715 + </field>
  3716 + <field>
  3717 + <field_name>all_content</field_name>
  3718 + <key_value>147</key_value>
  3719 + <target_name>fcno147</target_name>
  3720 + <target_type>String</target_type>
  3721 + <target_format/>
  3722 + <target_length>-1</target_length>
  3723 + <target_precision>-1</target_precision>
  3724 + <target_decimal_symbol/>
  3725 + <target_grouping_symbol/>
  3726 + <target_currency_symbol/>
  3727 + <target_null_string/>
  3728 + <target_aggregation_type>-</target_aggregation_type>
  3729 + </field>
  3730 + <field>
  3731 + <field_name>all_content</field_name>
  3732 + <key_value>148</key_value>
  3733 + <target_name>fcno148</target_name>
  3734 + <target_type>String</target_type>
  3735 + <target_format/>
  3736 + <target_length>-1</target_length>
  3737 + <target_precision>-1</target_precision>
  3738 + <target_decimal_symbol/>
  3739 + <target_grouping_symbol/>
  3740 + <target_currency_symbol/>
  3741 + <target_null_string/>
  3742 + <target_aggregation_type>-</target_aggregation_type>
  3743 + </field>
  3744 + <field>
  3745 + <field_name>all_content</field_name>
  3746 + <key_value>149</key_value>
  3747 + <target_name>fcno149</target_name>
  3748 + <target_type>String</target_type>
  3749 + <target_format/>
  3750 + <target_length>-1</target_length>
  3751 + <target_precision>-1</target_precision>
  3752 + <target_decimal_symbol/>
  3753 + <target_grouping_symbol/>
  3754 + <target_currency_symbol/>
  3755 + <target_null_string/>
  3756 + <target_aggregation_type>-</target_aggregation_type>
  3757 + </field>
  3758 + <field>
  3759 + <field_name>all_content</field_name>
  3760 + <key_value>150</key_value>
  3761 + <target_name>fcno150</target_name>
  3762 + <target_type>String</target_type>
  3763 + <target_format/>
  3764 + <target_length>-1</target_length>
  3765 + <target_precision>-1</target_precision>
  3766 + <target_decimal_symbol/>
  3767 + <target_grouping_symbol/>
  3768 + <target_currency_symbol/>
  3769 + <target_null_string/>
  3770 + <target_aggregation_type>-</target_aggregation_type>
  3771 + </field>
  3772 + </fields>
  3773 + <cluster_schema/>
  3774 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3775 + <xloc>683</xloc>
  3776 + <yloc>184</yloc>
  3777 + <draw>Y</draw>
  3778 + </GUI>
  3779 + </step>
  3780 +
  3781 + <step>
  3782 + <name>&#x53bb;&#x9664;&#x5b57;&#x6bb5;</name>
  3783 + <type>SelectValues</type>
  3784 + <description/>
  3785 + <distribute>N</distribute>
  3786 + <custom_distribution/>
  3787 + <copies>1</copies>
  3788 + <partitioning>
  3789 + <method>none</method>
  3790 + <schema_name/>
  3791 + </partitioning>
  3792 + <fields> <field> <name>lp</name>
  3793 + <rename/>
  3794 + <length>-2</length>
  3795 + <precision>-2</precision>
  3796 + </field> <field> <name>fcno1</name>
  3797 + <rename/>
  3798 + <length>-2</length>
  3799 + <precision>-2</precision>
  3800 + </field> <field> <name>fcno2</name>
  3801 + <rename/>
  3802 + <length>-2</length>
  3803 + <precision>-2</precision>
  3804 + </field> <field> <name>fcno3</name>
  3805 + <rename/>
  3806 + <length>-2</length>
  3807 + <precision>-2</precision>
  3808 + </field> <field> <name>fcno4</name>
  3809 + <rename/>
  3810 + <length>-2</length>
  3811 + <precision>-2</precision>
  3812 + </field> <field> <name>fcno5</name>
  3813 + <rename/>
  3814 + <length>-2</length>
  3815 + <precision>-2</precision>
  3816 + </field> <field> <name>fcno6</name>
  3817 + <rename/>
  3818 + <length>-2</length>
  3819 + <precision>-2</precision>
  3820 + </field> <field> <name>fcno7</name>
  3821 + <rename/>
  3822 + <length>-2</length>
  3823 + <precision>-2</precision>
  3824 + </field> <field> <name>fcno8</name>
  3825 + <rename/>
  3826 + <length>-2</length>
  3827 + <precision>-2</precision>
  3828 + </field> <field> <name>fcno9</name>
  3829 + <rename/>
  3830 + <length>-2</length>
  3831 + <precision>-2</precision>
  3832 + </field> <field> <name>fcno10</name>
  3833 + <rename/>
  3834 + <length>-2</length>
  3835 + <precision>-2</precision>
  3836 + </field> <field> <name>fcno11</name>
  3837 + <rename/>
  3838 + <length>-2</length>
  3839 + <precision>-2</precision>
  3840 + </field> <field> <name>fcno12</name>
  3841 + <rename/>
  3842 + <length>-2</length>
  3843 + <precision>-2</precision>
  3844 + </field> <field> <name>fcno13</name>
  3845 + <rename/>
  3846 + <length>-2</length>
  3847 + <precision>-2</precision>
  3848 + </field> <field> <name>fcno14</name>
  3849 + <rename/>
  3850 + <length>-2</length>
  3851 + <precision>-2</precision>
  3852 + </field> <field> <name>fcno15</name>
  3853 + <rename/>
  3854 + <length>-2</length>
  3855 + <precision>-2</precision>
  3856 + </field> <field> <name>fcno16</name>
  3857 + <rename/>
  3858 + <length>-2</length>
  3859 + <precision>-2</precision>
  3860 + </field> <field> <name>fcno17</name>
  3861 + <rename/>
  3862 + <length>-2</length>
  3863 + <precision>-2</precision>
  3864 + </field> <field> <name>fcno18</name>
  3865 + <rename/>
  3866 + <length>-2</length>
  3867 + <precision>-2</precision>
  3868 + </field> <field> <name>fcno19</name>
  3869 + <rename/>
  3870 + <length>-2</length>
  3871 + <precision>-2</precision>
  3872 + </field> <field> <name>fcno20</name>
  3873 + <rename/>
  3874 + <length>-2</length>
  3875 + <precision>-2</precision>
  3876 + </field> <field> <name>fcno21</name>
  3877 + <rename/>
  3878 + <length>-2</length>
  3879 + <precision>-2</precision>
  3880 + </field> <field> <name>fcno22</name>
  3881 + <rename/>
  3882 + <length>-2</length>
  3883 + <precision>-2</precision>
  3884 + </field> <field> <name>fcno23</name>
  3885 + <rename/>
  3886 + <length>-2</length>
  3887 + <precision>-2</precision>
  3888 + </field> <field> <name>fcno24</name>
  3889 + <rename/>
  3890 + <length>-2</length>
  3891 + <precision>-2</precision>
  3892 + </field> <field> <name>fcno25</name>
  3893 + <rename/>
  3894 + <length>-2</length>
  3895 + <precision>-2</precision>
  3896 + </field> <field> <name>fcno26</name>
  3897 + <rename/>
  3898 + <length>-2</length>
  3899 + <precision>-2</precision>
  3900 + </field> <field> <name>fcno27</name>
  3901 + <rename/>
  3902 + <length>-2</length>
  3903 + <precision>-2</precision>
  3904 + </field> <field> <name>fcno28</name>
  3905 + <rename/>
  3906 + <length>-2</length>
  3907 + <precision>-2</precision>
  3908 + </field> <field> <name>fcno29</name>
  3909 + <rename/>
  3910 + <length>-2</length>
  3911 + <precision>-2</precision>
  3912 + </field> <field> <name>fcno30</name>
  3913 + <rename/>
  3914 + <length>-2</length>
  3915 + <precision>-2</precision>
  3916 + </field> <field> <name>fcno31</name>
  3917 + <rename/>
  3918 + <length>-2</length>
  3919 + <precision>-2</precision>
  3920 + </field> <field> <name>fcno32</name>
  3921 + <rename/>
  3922 + <length>-2</length>
  3923 + <precision>-2</precision>
  3924 + </field> <field> <name>fcno33</name>
  3925 + <rename/>
  3926 + <length>-2</length>
  3927 + <precision>-2</precision>
  3928 + </field> <field> <name>fcno34</name>
  3929 + <rename/>
  3930 + <length>-2</length>
  3931 + <precision>-2</precision>
  3932 + </field> <field> <name>fcno35</name>
  3933 + <rename/>
  3934 + <length>-2</length>
  3935 + <precision>-2</precision>
  3936 + </field> <field> <name>fcno36</name>
  3937 + <rename/>
  3938 + <length>-2</length>
  3939 + <precision>-2</precision>
  3940 + </field> <field> <name>fcno37</name>
  3941 + <rename/>
  3942 + <length>-2</length>
  3943 + <precision>-2</precision>
  3944 + </field> <field> <name>fcno38</name>
  3945 + <rename/>
  3946 + <length>-2</length>
  3947 + <precision>-2</precision>
  3948 + </field> <field> <name>fcno39</name>
  3949 + <rename/>
  3950 + <length>-2</length>
  3951 + <precision>-2</precision>
  3952 + </field> <field> <name>fcno40</name>
  3953 + <rename/>
  3954 + <length>-2</length>
  3955 + <precision>-2</precision>
  3956 + </field> <field> <name>fcno41</name>
  3957 + <rename/>
  3958 + <length>-2</length>
  3959 + <precision>-2</precision>
  3960 + </field> <field> <name>fcno42</name>
  3961 + <rename/>
  3962 + <length>-2</length>
  3963 + <precision>-2</precision>
  3964 + </field> <field> <name>fcno43</name>
  3965 + <rename/>
  3966 + <length>-2</length>
  3967 + <precision>-2</precision>
  3968 + </field> <field> <name>fcno44</name>
  3969 + <rename/>
  3970 + <length>-2</length>
  3971 + <precision>-2</precision>
  3972 + </field> <field> <name>fcno45</name>
  3973 + <rename/>
  3974 + <length>-2</length>
  3975 + <precision>-2</precision>
  3976 + </field> <field> <name>fcno46</name>
  3977 + <rename/>
  3978 + <length>-2</length>
  3979 + <precision>-2</precision>
  3980 + </field> <field> <name>fcno47</name>
  3981 + <rename/>
  3982 + <length>-2</length>
  3983 + <precision>-2</precision>
  3984 + </field> <field> <name>fcno48</name>
  3985 + <rename/>
  3986 + <length>-2</length>
  3987 + <precision>-2</precision>
  3988 + </field> <field> <name>fcno49</name>
  3989 + <rename/>
  3990 + <length>-2</length>
  3991 + <precision>-2</precision>
  3992 + </field> <field> <name>fcno50</name>
  3993 + <rename/>
  3994 + <length>-2</length>
  3995 + <precision>-2</precision>
  3996 + </field> <field> <name>fcno51</name>
  3997 + <rename/>
  3998 + <length>-2</length>
  3999 + <precision>-2</precision>
  4000 + </field> <field> <name>fcno52</name>
  4001 + <rename/>
  4002 + <length>-2</length>
  4003 + <precision>-2</precision>
  4004 + </field> <field> <name>fcno53</name>
  4005 + <rename/>
  4006 + <length>-2</length>
  4007 + <precision>-2</precision>
  4008 + </field> <field> <name>fcno54</name>
  4009 + <rename/>
  4010 + <length>-2</length>
  4011 + <precision>-2</precision>
  4012 + </field> <field> <name>fcno55</name>
  4013 + <rename/>
  4014 + <length>-2</length>
  4015 + <precision>-2</precision>
  4016 + </field> <field> <name>fcno56</name>
  4017 + <rename/>
  4018 + <length>-2</length>
  4019 + <precision>-2</precision>
  4020 + </field> <field> <name>fcno57</name>
  4021 + <rename/>
  4022 + <length>-2</length>
  4023 + <precision>-2</precision>
  4024 + </field> <field> <name>fcno58</name>
  4025 + <rename/>
  4026 + <length>-2</length>
  4027 + <precision>-2</precision>
  4028 + </field> <field> <name>fcno59</name>
  4029 + <rename/>
  4030 + <length>-2</length>
  4031 + <precision>-2</precision>
  4032 + </field> <field> <name>fcno60</name>
  4033 + <rename/>
  4034 + <length>-2</length>
  4035 + <precision>-2</precision>
  4036 + </field> <field> <name>fcno61</name>
  4037 + <rename/>
  4038 + <length>-2</length>
  4039 + <precision>-2</precision>
  4040 + </field> <field> <name>fcno62</name>
  4041 + <rename/>
  4042 + <length>-2</length>
  4043 + <precision>-2</precision>
  4044 + </field> <field> <name>fcno63</name>
  4045 + <rename/>
  4046 + <length>-2</length>
  4047 + <precision>-2</precision>
  4048 + </field> <field> <name>fcno64</name>
  4049 + <rename/>
  4050 + <length>-2</length>
  4051 + <precision>-2</precision>
  4052 + </field> <field> <name>fcno65</name>
  4053 + <rename/>
  4054 + <length>-2</length>
  4055 + <precision>-2</precision>
  4056 + </field> <field> <name>fcno66</name>
  4057 + <rename/>
  4058 + <length>-2</length>
  4059 + <precision>-2</precision>
  4060 + </field> <field> <name>fcno67</name>
  4061 + <rename/>
  4062 + <length>-2</length>
  4063 + <precision>-2</precision>
  4064 + </field> <field> <name>fcno68</name>
  4065 + <rename/>
  4066 + <length>-2</length>
  4067 + <precision>-2</precision>
  4068 + </field> <field> <name>fcno69</name>
  4069 + <rename/>
  4070 + <length>-2</length>
  4071 + <precision>-2</precision>
  4072 + </field> <field> <name>fcno70</name>
  4073 + <rename/>
  4074 + <length>-2</length>
  4075 + <precision>-2</precision>
  4076 + </field> <field> <name>fcno71</name>
  4077 + <rename/>
  4078 + <length>-2</length>
  4079 + <precision>-2</precision>
  4080 + </field> <field> <name>fcno72</name>
  4081 + <rename/>
  4082 + <length>-2</length>
  4083 + <precision>-2</precision>
  4084 + </field> <field> <name>fcno73</name>
  4085 + <rename/>
  4086 + <length>-2</length>
  4087 + <precision>-2</precision>
  4088 + </field> <field> <name>fcno74</name>
  4089 + <rename/>
  4090 + <length>-2</length>
  4091 + <precision>-2</precision>
  4092 + </field> <field> <name>fcno75</name>
  4093 + <rename/>
  4094 + <length>-2</length>
  4095 + <precision>-2</precision>
  4096 + </field> <field> <name>fcno76</name>
  4097 + <rename/>
  4098 + <length>-2</length>
  4099 + <precision>-2</precision>
  4100 + </field> <field> <name>fcno77</name>
  4101 + <rename/>
  4102 + <length>-2</length>
  4103 + <precision>-2</precision>
  4104 + </field> <field> <name>fcno78</name>
  4105 + <rename/>
  4106 + <length>-2</length>
  4107 + <precision>-2</precision>
  4108 + </field> <field> <name>fcno79</name>
  4109 + <rename/>
  4110 + <length>-2</length>
  4111 + <precision>-2</precision>
  4112 + </field> <field> <name>fcno80</name>
  4113 + <rename/>
  4114 + <length>-2</length>
  4115 + <precision>-2</precision>
  4116 + </field> <field> <name>fcno81</name>
  4117 + <rename/>
  4118 + <length>-2</length>
  4119 + <precision>-2</precision>
  4120 + </field> <field> <name>fcno82</name>
  4121 + <rename/>
  4122 + <length>-2</length>
  4123 + <precision>-2</precision>
  4124 + </field> <field> <name>fcno83</name>
  4125 + <rename/>
  4126 + <length>-2</length>
  4127 + <precision>-2</precision>
  4128 + </field> <field> <name>fcno84</name>
  4129 + <rename/>
  4130 + <length>-2</length>
  4131 + <precision>-2</precision>
  4132 + </field> <field> <name>fcno85</name>
  4133 + <rename/>
  4134 + <length>-2</length>
  4135 + <precision>-2</precision>
  4136 + </field> <field> <name>fcno86</name>
  4137 + <rename/>
  4138 + <length>-2</length>
  4139 + <precision>-2</precision>
  4140 + </field> <field> <name>fcno87</name>
  4141 + <rename/>
  4142 + <length>-2</length>
  4143 + <precision>-2</precision>
  4144 + </field> <field> <name>fcno88</name>
  4145 + <rename/>
  4146 + <length>-2</length>
  4147 + <precision>-2</precision>
  4148 + </field> <field> <name>fcno89</name>
  4149 + <rename/>
  4150 + <length>-2</length>
  4151 + <precision>-2</precision>
  4152 + </field> <field> <name>fcno90</name>
  4153 + <rename/>
  4154 + <length>-2</length>
  4155 + <precision>-2</precision>
  4156 + </field> <field> <name>fcno91</name>
  4157 + <rename/>
  4158 + <length>-2</length>
  4159 + <precision>-2</precision>
  4160 + </field> <field> <name>fcno92</name>
  4161 + <rename/>
  4162 + <length>-2</length>
  4163 + <precision>-2</precision>
  4164 + </field> <field> <name>fcno93</name>
  4165 + <rename/>
  4166 + <length>-2</length>
  4167 + <precision>-2</precision>
  4168 + </field> <field> <name>fcno94</name>
  4169 + <rename/>
  4170 + <length>-2</length>
  4171 + <precision>-2</precision>
  4172 + </field> <field> <name>fcno95</name>
  4173 + <rename/>
  4174 + <length>-2</length>
  4175 + <precision>-2</precision>
  4176 + </field> <field> <name>fcno96</name>
  4177 + <rename/>
  4178 + <length>-2</length>
  4179 + <precision>-2</precision>
  4180 + </field> <field> <name>fcno97</name>
  4181 + <rename/>
  4182 + <length>-2</length>
  4183 + <precision>-2</precision>
  4184 + </field> <field> <name>fcno98</name>
  4185 + <rename/>
  4186 + <length>-2</length>
  4187 + <precision>-2</precision>
  4188 + </field> <field> <name>fcno99</name>
  4189 + <rename/>
  4190 + <length>-2</length>
  4191 + <precision>-2</precision>
  4192 + </field> <field> <name>fcno100</name>
  4193 + <rename/>
  4194 + <length>-2</length>
  4195 + <precision>-2</precision>
  4196 + </field> <field> <name>fcno101</name>
  4197 + <rename/>
  4198 + <length>-2</length>
  4199 + <precision>-2</precision>
  4200 + </field> <field> <name>fcno102</name>
  4201 + <rename/>
  4202 + <length>-2</length>
  4203 + <precision>-2</precision>
  4204 + </field> <field> <name>fcno103</name>
  4205 + <rename/>
  4206 + <length>-2</length>
  4207 + <precision>-2</precision>
  4208 + </field> <field> <name>fcno104</name>
  4209 + <rename/>
  4210 + <length>-2</length>
  4211 + <precision>-2</precision>
  4212 + </field> <field> <name>fcno105</name>
  4213 + <rename/>
  4214 + <length>-2</length>
  4215 + <precision>-2</precision>
  4216 + </field> <field> <name>fcno106</name>
  4217 + <rename/>
  4218 + <length>-2</length>
  4219 + <precision>-2</precision>
  4220 + </field> <field> <name>fcno107</name>
  4221 + <rename/>
  4222 + <length>-2</length>
  4223 + <precision>-2</precision>
  4224 + </field> <field> <name>fcno108</name>
  4225 + <rename/>
  4226 + <length>-2</length>
  4227 + <precision>-2</precision>
  4228 + </field> <field> <name>fcno109</name>
  4229 + <rename/>
  4230 + <length>-2</length>
  4231 + <precision>-2</precision>
  4232 + </field> <field> <name>fcno110</name>
  4233 + <rename/>
  4234 + <length>-2</length>
  4235 + <precision>-2</precision>
  4236 + </field> <field> <name>fcno111</name>
  4237 + <rename/>
  4238 + <length>-2</length>
  4239 + <precision>-2</precision>
  4240 + </field> <field> <name>fcno112</name>
  4241 + <rename/>
  4242 + <length>-2</length>
  4243 + <precision>-2</precision>
  4244 + </field> <field> <name>fcno113</name>
  4245 + <rename/>
  4246 + <length>-2</length>
  4247 + <precision>-2</precision>
  4248 + </field> <field> <name>fcno114</name>
  4249 + <rename/>
  4250 + <length>-2</length>
  4251 + <precision>-2</precision>
  4252 + </field> <field> <name>fcno115</name>
  4253 + <rename/>
  4254 + <length>-2</length>
  4255 + <precision>-2</precision>
  4256 + </field> <field> <name>fcno116</name>
  4257 + <rename/>
  4258 + <length>-2</length>
  4259 + <precision>-2</precision>
  4260 + </field> <field> <name>fcno117</name>
  4261 + <rename/>
  4262 + <length>-2</length>
  4263 + <precision>-2</precision>
  4264 + </field> <field> <name>fcno118</name>
  4265 + <rename/>
  4266 + <length>-2</length>
  4267 + <precision>-2</precision>
  4268 + </field> <field> <name>fcno119</name>
  4269 + <rename/>
  4270 + <length>-2</length>
  4271 + <precision>-2</precision>
  4272 + </field> <field> <name>fcno120</name>
  4273 + <rename/>
  4274 + <length>-2</length>
  4275 + <precision>-2</precision>
  4276 + </field> <field> <name>fcno121</name>
  4277 + <rename/>
  4278 + <length>-2</length>
  4279 + <precision>-2</precision>
  4280 + </field> <field> <name>fcno122</name>
  4281 + <rename/>
  4282 + <length>-2</length>
  4283 + <precision>-2</precision>
  4284 + </field> <field> <name>fcno123</name>
  4285 + <rename/>
  4286 + <length>-2</length>
  4287 + <precision>-2</precision>
  4288 + </field> <field> <name>fcno124</name>
  4289 + <rename/>
  4290 + <length>-2</length>
  4291 + <precision>-2</precision>
  4292 + </field> <field> <name>fcno125</name>
  4293 + <rename/>
  4294 + <length>-2</length>
  4295 + <precision>-2</precision>
  4296 + </field> <field> <name>fcno126</name>
  4297 + <rename/>
  4298 + <length>-2</length>
  4299 + <precision>-2</precision>
  4300 + </field> <field> <name>fcno127</name>
  4301 + <rename/>
  4302 + <length>-2</length>
  4303 + <precision>-2</precision>
  4304 + </field> <field> <name>fcno128</name>
  4305 + <rename/>
  4306 + <length>-2</length>
  4307 + <precision>-2</precision>
  4308 + </field> <field> <name>fcno129</name>
  4309 + <rename/>
  4310 + <length>-2</length>
  4311 + <precision>-2</precision>
  4312 + </field> <field> <name>fcno130</name>
  4313 + <rename/>
  4314 + <length>-2</length>
  4315 + <precision>-2</precision>
  4316 + </field> <field> <name>fcno131</name>
  4317 + <rename/>
  4318 + <length>-2</length>
  4319 + <precision>-2</precision>
  4320 + </field> <field> <name>fcno132</name>
  4321 + <rename/>
  4322 + <length>-2</length>
  4323 + <precision>-2</precision>
  4324 + </field> <field> <name>fcno133</name>
  4325 + <rename/>
  4326 + <length>-2</length>
  4327 + <precision>-2</precision>
  4328 + </field> <field> <name>fcno134</name>
  4329 + <rename/>
  4330 + <length>-2</length>
  4331 + <precision>-2</precision>
  4332 + </field> <field> <name>fcno135</name>
  4333 + <rename/>
  4334 + <length>-2</length>
  4335 + <precision>-2</precision>
  4336 + </field> <field> <name>fcno136</name>
  4337 + <rename/>
  4338 + <length>-2</length>
  4339 + <precision>-2</precision>
  4340 + </field> <field> <name>fcno137</name>
  4341 + <rename/>
  4342 + <length>-2</length>
  4343 + <precision>-2</precision>
  4344 + </field> <field> <name>fcno138</name>
  4345 + <rename/>
  4346 + <length>-2</length>
  4347 + <precision>-2</precision>
  4348 + </field> <field> <name>fcno139</name>
  4349 + <rename/>
  4350 + <length>-2</length>
  4351 + <precision>-2</precision>
  4352 + </field> <field> <name>fcno140</name>
  4353 + <rename/>
  4354 + <length>-2</length>
  4355 + <precision>-2</precision>
  4356 + </field> <field> <name>fcno141</name>
  4357 + <rename/>
  4358 + <length>-2</length>
  4359 + <precision>-2</precision>
  4360 + </field> <field> <name>fcno142</name>
  4361 + <rename/>
  4362 + <length>-2</length>
  4363 + <precision>-2</precision>
  4364 + </field> <field> <name>fcno143</name>
  4365 + <rename/>
  4366 + <length>-2</length>
  4367 + <precision>-2</precision>
  4368 + </field> <field> <name>fcno144</name>
  4369 + <rename/>
  4370 + <length>-2</length>
  4371 + <precision>-2</precision>
  4372 + </field> <field> <name>fcno145</name>
  4373 + <rename/>
  4374 + <length>-2</length>
  4375 + <precision>-2</precision>
  4376 + </field> <field> <name>fcno146</name>
  4377 + <rename/>
  4378 + <length>-2</length>
  4379 + <precision>-2</precision>
  4380 + </field> <field> <name>fcno147</name>
  4381 + <rename/>
  4382 + <length>-2</length>
  4383 + <precision>-2</precision>
  4384 + </field> <field> <name>fcno148</name>
  4385 + <rename/>
  4386 + <length>-2</length>
  4387 + <precision>-2</precision>
  4388 + </field> <field> <name>fcno149</name>
  4389 + <rename/>
  4390 + <length>-2</length>
  4391 + <precision>-2</precision>
  4392 + </field> <field> <name>fcno150</name>
  4393 + <rename/>
  4394 + <length>-2</length>
  4395 + <precision>-2</precision>
  4396 + </field> <select_unspecified>N</select_unspecified>
  4397 + </fields> <cluster_schema/>
  4398 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  4399 + <xloc>691</xloc>
  4400 + <yloc>361</yloc>
  4401 + <draw>Y</draw>
  4402 + </GUI>
  4403 + </step>
  4404 +
  4405 + <step>
  4406 + <name>&#x5408;&#x5e76;&#x5185;&#x5bb9;</name>
  4407 + <type>ScriptValueMod</type>
  4408 + <description/>
  4409 + <distribute>Y</distribute>
  4410 + <custom_distribution/>
  4411 + <copies>1</copies>
  4412 + <partitioning>
  4413 + <method>none</method>
  4414 + <schema_name/>
  4415 + </partitioning>
  4416 + <compatible>N</compatible>
  4417 + <optimizationLevel>9</optimizationLevel>
  4418 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  4419 + <jsScript_name>Script 1</jsScript_name>
  4420 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;&#x2f;&#x2f; &#x987a;&#x5e8f;&#xff0c;id,fcsj,jhlc,zdname,bctype,xldir,isfb&#xa;var all_content_array &#x3d; &#x5b;&#x5d;&#x3b;&#xa;var all_content &#x3d; &#x22;&#x22;&#x3b; &#xa;all_content_array.push&#x28;id&#x29;&#x3b;&#xa;all_content_array.push&#x28;fcsj&#x29;&#x3b;&#xa;all_content_array.push&#x28;jhlc&#x29;&#x3b;&#xa;all_content_array.push&#x28;fczdName&#x29;&#x3b;&#xa;all_content_array.push&#x28;bc_type&#x29;&#x3b;&#xa;all_content_array.push&#x28;xl_dir&#x29;&#x3b;&#xa;all_content_array.push&#x28;isfb&#x29;&#x3b;&#xa;all_content_array.push&#x28;qdz_code &#x7c;&#x7c; &#x27;null&#x27;&#x29;&#x3b;&#xa;all_content_array.push&#x28;zdz_code &#x7c;&#x7c; &#x27;null&#x27;&#x29;&#x3b;&#xa;all_content_array.push&#x28;ists&#x29;&#x3b;&#xa;all_content_array.push&#x28;bcsj &#x7c;&#x7c; &#x27;null&#x27;&#x29;&#x3b;&#xa;&#xa;all_content &#x3d; all_content_array.join&#x28;&#x22;,&#x22;&#x29;&#x3b; &#x2f;&#x2f; &#x9017;&#x53f7;&#x5206;&#x9694;</jsScript_script>
  4421 + </jsScript> </jsScripts> <fields> <field> <name>all_content</name>
  4422 + <rename>all_content</rename>
  4423 + <type>String</type>
  4424 + <length>-1</length>
  4425 + <precision>-1</precision>
  4426 + <replace>N</replace>
  4427 + </field> </fields> <cluster_schema/>
  4428 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  4429 + <xloc>441</xloc>
  4430 + <yloc>84</yloc>
  4431 + <draw>Y</draw>
  4432 + </GUI>
  4433 + </step>
  4434 +
  4435 + <step>
  4436 + <name>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</name>
  4437 + <type>GetVariable</type>
  4438 + <description/>
  4439 + <distribute>Y</distribute>
  4440 + <custom_distribution/>
  4441 + <copies>1</copies>
  4442 + <partitioning>
  4443 + <method>none</method>
  4444 + <schema_name/>
  4445 + </partitioning>
  4446 + <fields>
  4447 + <field>
  4448 + <name>xlid_</name>
  4449 + <variable>&#x24;&#x7b;xlid&#x7d;</variable>
  4450 + <type>Integer</type>
  4451 + <format/>
  4452 + <currency/>
  4453 + <decimal/>
  4454 + <group/>
  4455 + <length>-1</length>
  4456 + <precision>-1</precision>
  4457 + <trim_type>none</trim_type>
  4458 + </field>
  4459 + <field>
  4460 + <name>ttid_</name>
  4461 + <variable>&#x24;&#x7b;ttid&#x7d;</variable>
  4462 + <type>Number</type>
  4463 + <format/>
  4464 + <currency/>
  4465 + <decimal/>
  4466 + <group/>
  4467 + <length>-1</length>
  4468 + <precision>-1</precision>
  4469 + <trim_type>none</trim_type>
  4470 + </field>
  4471 + </fields>
  4472 + <cluster_schema/>
  4473 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  4474 + <xloc>45</xloc>
  4475 + <yloc>189</yloc>
  4476 + <draw>Y</draw>
  4477 + </GUI>
  4478 + </step>
  4479 +
  4480 + <step>
  4481 + <name>&#x8868;&#x8f93;&#x5165;</name>
  4482 + <type>TableInput</type>
  4483 + <description/>
  4484 + <distribute>Y</distribute>
  4485 + <custom_distribution/>
  4486 + <copies>1</copies>
  4487 + <partitioning>
  4488 + <method>none</method>
  4489 + <schema_name/>
  4490 + </partitioning>
  4491 + <connection>control_jndi</connection>
  4492 + <sql>select &#xa;t.id as id&#xa;, concat&#x28;g.id, &#x27;_&#x27;, g.lp_name&#x29; as lp&#xa;, g.xl as xl&#xa;, qdz_code&#xa;, qdz_name&#xa;, zdz_code&#xa;, zdz_name&#xa;, fcsj&#xa;, jhlc&#xa;, bc_type &#xa;, bcs&#xa;, fcno&#xa;, xl_dir&#xa;, isfb&#xa;, ists&#xa;, bcsj &#xa;from bsth_c_s_ttinfo_detail t left join &#xa;bsth_c_s_gbi g on t.lp &#x3d; g.id &#xa;where &#xa;g.xl &#x3d; &#x3f; and&#xa;t.ttinfo &#x3d; &#x3f; &#xa;order by g.lp_no asc, t.bcs asc</sql>
  4493 + <limit>0</limit>
  4494 + <lookup>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</lookup>
  4495 + <execute_each_row>N</execute_each_row>
  4496 + <variables_active>Y</variables_active>
  4497 + <lazy_conversion_active>N</lazy_conversion_active>
  4498 + <cluster_schema/>
  4499 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  4500 + <xloc>130</xloc>
  4501 + <yloc>85</yloc>
  4502 + <draw>Y</draw>
  4503 + </GUI>
  4504 + </step>
  4505 +
  4506 + <step>
  4507 + <name>&#x8ba1;&#x7b97;&#x53d1;&#x8f66;&#x7ad9;&#x540d;</name>
  4508 + <type>ScriptValueMod</type>
  4509 + <description/>
  4510 + <distribute>Y</distribute>
  4511 + <custom_distribution/>
  4512 + <copies>1</copies>
  4513 + <partitioning>
  4514 + <method>none</method>
  4515 + <schema_name/>
  4516 + </partitioning>
  4517 + <compatible>N</compatible>
  4518 + <optimizationLevel>9</optimizationLevel>
  4519 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  4520 + <jsScript_name>Script 1</jsScript_name>
  4521 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var fczdName &#x3d; null&#x3b; &#x2f;&#x2f; &#x53d1;&#x8f66;&#x7ad9;&#x70b9;&#x540d;&#x5b57;&#xa;if &#x28;bc_type &#x3d;&#x3d; &#x22;in&#x22;&#x29; &#x7b;&#xa; fczdName &#x3d; &#x22;Enter&#x22;&#x3b;&#xa;&#x7d; else if &#x28;bc_type &#x3d;&#x3d; &#x22;out&#x22;&#x29; &#x7b;&#xa; fczdName &#x3d; &#x22;Exit&#x22;&#x3b;&#xa;&#x7d; else &#x7b;&#xa; fczdName &#x3d; qdz_name&#x3b;&#xa;&#x7d;</jsScript_script>
  4522 + </jsScript> </jsScripts> <fields> <field> <name>fczdName</name>
  4523 + <rename>fczdName</rename>
  4524 + <type>String</type>
  4525 + <length>-1</length>
  4526 + <precision>-1</precision>
  4527 + <replace>N</replace>
  4528 + </field> </fields> <cluster_schema/>
  4529 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  4530 + <xloc>282</xloc>
  4531 + <yloc>82</yloc>
  4532 + <draw>Y</draw>
  4533 + </GUI>
  4534 + </step>
  4535 +
  4536 + <step_error_handling>
  4537 + </step_error_handling>
  4538 + <slave-step-copy-partition-distribution>
  4539 +</slave-step-copy-partition-distribution>
  4540 + <slave_transformation>N</slave_transformation>
  4541 +
  4542 +</transformation>
... ...
src/main/resources/datatools/ktrs/ttinfodetailDataInput2_version_2.ktr renamed to src/main/resources/datatools/ktrs/en/ttinfo-detail-data_import_of_dynamic.ktr
1 1 <?xml version="1.0" encoding="UTF-8"?>
2 2 <transformation>
3 3 <info>
4   - <name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x5bfc;&#x5165;-&#x7ad9;&#x70b9;&#x8def;&#x7531;&#x7248;&#x672c;2</name>
  4 + <name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x5bfc;&#x5165;-&#x7ad9;&#x70b9;&#x8def;&#x7531;&#x7248;&#x672c;2_en</name>
5 5 <description>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;&#x5bfc;&#x5165;</description>
6 6 <extended_description>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;&#xff0c;&#x4f7f;&#x7528;&#x751f;&#x6210;&#x65f6;&#x523b;&#x8868;&#x683c;&#x5f0f;</extended_description>
7 7 <trans_version/>
... ... @@ -486,6 +486,33 @@
486 486 </attributes>
487 487 </connection>
488 488 <connection>
  489 + <name>test_control_local</name>
  490 + <server>localhost</server>
  491 + <type>MYSQL</type>
  492 + <access>Native</access>
  493 + <database>test_control</database>
  494 + <port>3306</port>
  495 + <username>root</username>
  496 + <password>Encrypted </password>
  497 + <servername/>
  498 + <data_tablespace/>
  499 + <index_tablespace/>
  500 + <attributes>
  501 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  502 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  503 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  504 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  505 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  506 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  507 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  508 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  509 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  510 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  511 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  512 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  513 + </attributes>
  514 + </connection>
  515 + <connection>
489 516 <name>test_control&#xff08;&#x672c;&#x673a;&#xff09;</name>
490 517 <server>127.0.0.1</server>
491 518 <type>MYSQL</type>
... ... @@ -498,6 +525,62 @@
498 525 <data_tablespace/>
499 526 <index_tablespace/>
500 527 <attributes>
  528 + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
  529 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  530 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  531 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  532 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  533 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  534 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  535 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  536 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  537 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  538 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  539 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  540 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  541 + </attributes>
  542 + </connection>
  543 + <connection>
  544 + <name>wzk_mysql_jndi</name>
  545 + <server/>
  546 + <type>MYSQL</type>
  547 + <access>JNDI</access>
  548 + <database>wzk_mysql</database>
  549 + <port>1521</port>
  550 + <username/>
  551 + <password>Encrypted </password>
  552 + <servername/>
  553 + <data_tablespace/>
  554 + <index_tablespace/>
  555 + <attributes>
  556 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  557 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  558 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  559 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  560 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  561 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  562 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  563 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  564 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  565 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  566 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  567 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  568 + </attributes>
  569 + </connection>
  570 + <connection>
  571 + <name>wzk&#xff08;&#x672c;&#x673a;&#xff09;</name>
  572 + <server>localhost</server>
  573 + <type>MYSQL</type>
  574 + <access>Native</access>
  575 + <database>pdgj_wzk_sys</database>
  576 + <port>3306</port>
  577 + <username>root</username>
  578 + <password>Encrypted </password>
  579 + <servername/>
  580 + <data_tablespace/>
  581 + <index_tablespace/>
  582 + <attributes>
  583 + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
501 584 <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
502 585 <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
503 586 <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
... ... @@ -665,7 +748,7 @@
665 748 </connection>
666 749 <connection>
667 750 <name>&#x516c;&#x53f8;ygjw</name>
668   - <server>192.168.168.1</server>
  751 + <server>192.168.168.178</server>
669 752 <type>ORACLE</type>
670 753 <access>Native</access>
671 754 <database>orcl</database>
... ... @@ -687,6 +770,126 @@
687 770 <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
688 771 </attributes>
689 772 </connection>
  773 + <connection>
  774 + <name>&#x516c;&#x53f8;&#x673a;&#x52a1;_pdgj</name>
  775 + <server>192.168.168.178</server>
  776 + <type>ORACLE</type>
  777 + <access>Native</access>
  778 + <database>orcl</database>
  779 + <port>1521</port>
  780 + <username>pdgj</username>
  781 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10ce96a8d0</password>
  782 + <servername/>
  783 + <data_tablespace/>
  784 + <index_tablespace/>
  785 + <attributes>
  786 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  787 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  788 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  789 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  790 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  791 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  792 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  793 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  794 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  795 + </attributes>
  796 + </connection>
  797 + <connection>
  798 + <name>&#x5916;&#x7f51;vpn&#x4e34;&#x6e2f;&#x673a;&#x52a1;oracle</name>
  799 + <server>10.10.150.114</server>
  800 + <type>ORACLE</type>
  801 + <access>Native</access>
  802 + <database>helowin</database>
  803 + <port>1521</port>
  804 + <username>lgjw</username>
  805 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d295a5cd</password>
  806 + <servername/>
  807 + <data_tablespace/>
  808 + <index_tablespace/>
  809 + <attributes>
  810 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  811 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  812 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  813 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  814 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  815 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  816 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  817 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  818 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  819 + </attributes>
  820 + </connection>
  821 + <connection>
  822 + <name>&#x5916;&#x7f51;&#x5357;&#x6c47;&#x673a;&#x52a1;oracle</name>
  823 + <server>58.247.254.118</server>
  824 + <type>ORACLE</type>
  825 + <access>Native</access>
  826 + <database>orcl</database>
  827 + <port>15211</port>
  828 + <username>nhjw</username>
  829 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d09aa5cd</password>
  830 + <servername/>
  831 + <data_tablespace/>
  832 + <index_tablespace/>
  833 + <attributes>
  834 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  835 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  836 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  837 + <attribute><code>PORT_NUMBER</code><attribute>15211</attribute></attribute>
  838 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  839 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  840 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  841 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  842 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  843 + </attributes>
  844 + </connection>
  845 + <connection>
  846 + <name>&#x5916;&#x7f51;&#x6768;&#x9ad8;&#x673a;&#x52a1;oracle</name>
  847 + <server>58.247.254.118</server>
  848 + <type>ORACLE</type>
  849 + <access>Native</access>
  850 + <database>orcl</database>
  851 + <port>15211</port>
  852 + <username>ygjw</username>
  853 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10c795a5cd</password>
  854 + <servername/>
  855 + <data_tablespace/>
  856 + <index_tablespace/>
  857 + <attributes>
  858 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  859 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  860 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  861 + <attribute><code>PORT_NUMBER</code><attribute>15211</attribute></attribute>
  862 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  863 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  864 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  865 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  866 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  867 + </attributes>
  868 + </connection>
  869 + <connection>
  870 + <name>&#x5916;&#x7f51;&#x91d1;&#x9ad8;&#x673a;&#x52a1;oracle</name>
  871 + <server>58.247.254.118</server>
  872 + <type>ORACLE</type>
  873 + <access>Native</access>
  874 + <database>orcl</database>
  875 + <port>15211</port>
  876 + <username>jwgl</username>
  877 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d485a8d6</password>
  878 + <servername/>
  879 + <data_tablespace/>
  880 + <index_tablespace/>
  881 + <attributes>
  882 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  883 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  884 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  885 + <attribute><code>PORT_NUMBER</code><attribute>15211</attribute></attribute>
  886 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  887 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  888 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  889 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  890 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  891 + </attributes>
  892 + </connection>
690 893 <order>
691 894 <hop> <from>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</from><to>&#x73ed;&#x6b21;&#x6570;&#x636e;&#x8303;&#x5f0f;&#x5316;</to><enabled>Y</enabled> </hop>
692 895 <hop> <from>&#x6dfb;&#x52a0;&#x5bf9;&#x5e94;&#x73ed;&#x6b21;&#x6570;</from><to>&#x5904;&#x7406;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
... ...
src/main/resources/datatools/ktrs/en/ttinfo-detail-data_import_of_normal.ktr 0 → 100644
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<transformation>
  3 + <info>
  4 + <name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x5bfc;&#x5165;-&#x7ad9;&#x70b9;&#x8def;&#x7531;&#x7248;&#x672c;_en</name>
  5 + <description>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;&#x5bfc;&#x5165;</description>
  6 + <extended_description>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#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 + </parameters>
  13 + <log>
  14 +<trans-log-table><connection/>
  15 +<schema/>
  16 +<table/>
  17 +<size_limit_lines/>
  18 +<interval/>
  19 +<timeout_days/>
  20 +<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>
  21 +<perf-log-table><connection/>
  22 +<schema/>
  23 +<table/>
  24 +<interval/>
  25 +<timeout_days/>
  26 +<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>
  27 +<channel-log-table><connection/>
  28 +<schema/>
  29 +<table/>
  30 +<timeout_days/>
  31 +<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>
  32 +<step-log-table><connection/>
  33 +<schema/>
  34 +<table/>
  35 +<timeout_days/>
  36 +<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>
  37 +<metrics-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>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>
  42 + </log>
  43 + <maxdate>
  44 + <connection/>
  45 + <table/>
  46 + <field/>
  47 + <offset>0.0</offset>
  48 + <maxdiff>0.0</maxdiff>
  49 + </maxdate>
  50 + <size_rowset>10000</size_rowset>
  51 + <sleep_time_empty>50</sleep_time_empty>
  52 + <sleep_time_full>50</sleep_time_full>
  53 + <unique_connections>N</unique_connections>
  54 + <feedback_shown>Y</feedback_shown>
  55 + <feedback_size>50000</feedback_size>
  56 + <using_thread_priorities>Y</using_thread_priorities>
  57 + <shared_objects_file/>
  58 + <capture_step_performance>N</capture_step_performance>
  59 + <step_performance_capturing_delay>1000</step_performance_capturing_delay>
  60 + <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit>
  61 + <dependencies>
  62 + </dependencies>
  63 + <partitionschemas>
  64 + </partitionschemas>
  65 + <slaveservers>
  66 + </slaveservers>
  67 + <clusterschemas>
  68 + </clusterschemas>
  69 + <created_user>-</created_user>
  70 + <created_date>2016&#x2f;06&#x2f;30 12&#x3a;21&#x3a;57.536</created_date>
  71 + <modified_user>-</modified_user>
  72 + <modified_date>2016&#x2f;06&#x2f;30 12&#x3a;21&#x3a;57.536</modified_date>
  73 + <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA&#x3d;</key_for_session_key>
  74 + <is_key_private>N</is_key_private>
  75 + </info>
  76 + <notepads>
  77 + <notepad>
  78 + <note>&#x5b57;&#x5178;&#x8868;&#x5bf9;&#x5e94;&#xff08;&#x4ee5;&#x540e;&#x76f4;&#x63a5;&#x67e5;&#x627e;&#x8868; bsth_c_sys_dictionary&#xff09;&#xa;&#x7c7b;&#x578b; &#x4ee3;&#x7801; &#x540d;&#x79f0;&#xa;LineTrend 0 &#x4e0a;&#x884c;&#xa;LineTrend 1 &#x4e0b;&#x884c;&#xa;ScheduleType normal &#x6b63;&#x5e38;&#x73ed;&#x6b21;&#xa;ScheduleType out &#x51fa;&#x573a;&#xa;ScheduleType in &#x8fdb;&#x573a;&#xa;ScheduleType temp &#x4e34;&#x52a0;&#xa;ScheduleType region &#x533a;&#x95f4;&#xa;ScheduleType venting &#x653e;&#x7a7a;&#xa;ScheduleType major &#x653e;&#x5927;&#x7ad9;</note>
  79 + <xloc>606</xloc>
  80 + <yloc>129</yloc>
  81 + <width>332</width>
  82 + <heigth>186</heigth>
  83 + <fontname>YaHei Consolas Hybrid</fontname>
  84 + <fontsize>12</fontsize>
  85 + <fontbold>N</fontbold>
  86 + <fontitalic>N</fontitalic>
  87 + <fontcolorred>0</fontcolorred>
  88 + <fontcolorgreen>0</fontcolorgreen>
  89 + <fontcolorblue>0</fontcolorblue>
  90 + <backgroundcolorred>255</backgroundcolorred>
  91 + <backgroundcolorgreen>205</backgroundcolorgreen>
  92 + <backgroundcolorblue>112</backgroundcolorblue>
  93 + <bordercolorred>100</bordercolorred>
  94 + <bordercolorgreen>100</bordercolorgreen>
  95 + <bordercolorblue>100</bordercolorblue>
  96 + <drawshadow>Y</drawshadow>
  97 + </notepad>
  98 + <notepad>
  99 + <note>&#x56e0;&#x4e3a;&#x65f6;&#x523b;&#x8868;&#x8f93;&#x5165;&#x683c;&#x5f0f;&#x4e0d;&#x786e;&#x5b9a;&#x6027;&#xff0c;&#x4e3b;&#x8981;&#x56e0;&#x4e3a;&#x8868;&#x7ed3;&#x6784;&#x662f;&#x53cd;&#x8303;&#x5f0f;&#x5316;&#x7684;&#xff0c;&#xa;&#x6240;&#x4ee5;&#x9700;&#x8981;&#x5916;&#x90e8;&#x52a8;&#x6001;&#x6307;&#x5b9a;&#x613f;&#x6570;&#x636e;&#xff0c;&#x5934;&#x4e09;&#x4e2a;step&#x52a8;&#x6001;&#x6307;&#x5b9a;&#x613f;&#x6570;&#x636e;&#xa;&#xa;</note>
  100 + <xloc>79</xloc>
  101 + <yloc>206</yloc>
  102 + <width>346</width>
  103 + <heigth>74</heigth>
  104 + <fontname>YaHei Consolas Hybrid</fontname>
  105 + <fontsize>12</fontsize>
  106 + <fontbold>N</fontbold>
  107 + <fontitalic>N</fontitalic>
  108 + <fontcolorred>0</fontcolorred>
  109 + <fontcolorgreen>0</fontcolorgreen>
  110 + <fontcolorblue>0</fontcolorblue>
  111 + <backgroundcolorred>255</backgroundcolorred>
  112 + <backgroundcolorgreen>205</backgroundcolorgreen>
  113 + <backgroundcolorblue>112</backgroundcolorblue>
  114 + <bordercolorred>100</bordercolorred>
  115 + <bordercolorgreen>100</bordercolorgreen>
  116 + <bordercolorblue>100</bordercolorblue>
  117 + <drawshadow>Y</drawshadow>
  118 + </notepad>
  119 + <notepad>
  120 + <note>&#x8fd9;&#x91cc;&#x6709;&#x4e9b;&#x95ee;&#x9898;&#xa;&#x5728;window2012&#x7684;&#x73af;&#x5883;&#x4e0b;&#xff0c;&#xa;MySql&#x6570;&#x636e;&#x5e93;&#x67e5;&#x8be2;&#x4e2d;&#x5982;&#x679c;&#x8fd4;&#x56de;&#x4e2d;&#x6587;&#x5185;&#x5bb9;&#x7684;&#x5b57;&#x6bb5;&#xff0c;&#x8fd9;&#x4e2a;&#x5185;&#x5bb9;&#x4e71;&#x7801;&#xa;&#x89e3;&#x51b3;&#x529e;&#x6cd5;&#xff0c;&#x5c31;&#x662f;&#x6570;&#x636e;&#x5e93;&#x67e5;&#x8be2;&#x5168;&#x90e8;&#x7f13;&#x5b58;&#xff0c;&#x5c31;&#x4e0d;&#x4e71;&#x7801;&#xa;linux&#x73af;&#x5883;&#x4e0b;&#x6ca1;&#x95ee;&#x9898;</note>
  121 + <xloc>721</xloc>
  122 + <yloc>762</yloc>
  123 + <width>333</width>
  124 + <heigth>90</heigth>
  125 + <fontname>YaHei Consolas Hybrid</fontname>
  126 + <fontsize>12</fontsize>
  127 + <fontbold>N</fontbold>
  128 + <fontitalic>N</fontitalic>
  129 + <fontcolorred>0</fontcolorred>
  130 + <fontcolorgreen>0</fontcolorgreen>
  131 + <fontcolorblue>0</fontcolorblue>
  132 + <backgroundcolorred>255</backgroundcolorred>
  133 + <backgroundcolorgreen>205</backgroundcolorgreen>
  134 + <backgroundcolorblue>112</backgroundcolorblue>
  135 + <bordercolorred>100</bordercolorred>
  136 + <bordercolorgreen>100</bordercolorgreen>
  137 + <bordercolorblue>100</bordercolorblue>
  138 + <drawshadow>Y</drawshadow>
  139 + </notepad>
  140 + <notepad>
  141 + <note>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#xff0c;&#x65b9;&#x5411;&#x6709;&#x65f6;&#x786e;&#x5b9a;&#x4e0d;&#x51c6;&#xff0c;&#xa;&#x7a7a;&#x7684;&#x60c5;&#x51b5;&#x4e0b;&#x8bbe;&#x5b9a;&#x4e3a;0&#xff08;&#x4e0a;&#x884c;&#xff09;</note>
  142 + <xloc>104</xloc>
  143 + <yloc>939</yloc>
  144 + <width>178</width>
  145 + <heigth>42</heigth>
  146 + <fontname>YaHei Consolas Hybrid</fontname>
  147 + <fontsize>12</fontsize>
  148 + <fontbold>N</fontbold>
  149 + <fontitalic>N</fontitalic>
  150 + <fontcolorred>0</fontcolorred>
  151 + <fontcolorgreen>0</fontcolorgreen>
  152 + <fontcolorblue>0</fontcolorblue>
  153 + <backgroundcolorred>255</backgroundcolorred>
  154 + <backgroundcolorgreen>205</backgroundcolorgreen>
  155 + <backgroundcolorblue>112</backgroundcolorblue>
  156 + <bordercolorred>100</bordercolorred>
  157 + <bordercolorgreen>100</bordercolorgreen>
  158 + <bordercolorblue>100</bordercolorblue>
  159 + <drawshadow>Y</drawshadow>
  160 + </notepad>
  161 + <notepad>
  162 + <note>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#xff0c;&#x65b9;&#x5411;&#x6709;&#x65f6;&#x786e;&#x5b9a;&#x4e0d;&#x51c6;&#xff0c;&#xa;&#x7a7a;&#x7684;&#x60c5;&#x51b5;&#x4e0b;&#x8bbe;&#x5b9a;&#x4e3a;0&#xff08;&#x4e0a;&#x884c;&#xff09;</note>
  163 + <xloc>578</xloc>
  164 + <yloc>1084</yloc>
  165 + <width>178</width>
  166 + <heigth>42</heigth>
  167 + <fontname>YaHei Consolas Hybrid</fontname>
  168 + <fontsize>12</fontsize>
  169 + <fontbold>N</fontbold>
  170 + <fontitalic>N</fontitalic>
  171 + <fontcolorred>0</fontcolorred>
  172 + <fontcolorgreen>0</fontcolorgreen>
  173 + <fontcolorblue>0</fontcolorblue>
  174 + <backgroundcolorred>255</backgroundcolorred>
  175 + <backgroundcolorgreen>205</backgroundcolorgreen>
  176 + <backgroundcolorblue>112</backgroundcolorblue>
  177 + <bordercolorred>100</bordercolorred>
  178 + <bordercolorgreen>100</bordercolorgreen>
  179 + <bordercolorblue>100</bordercolorblue>
  180 + <drawshadow>Y</drawshadow>
  181 + </notepad>
  182 + </notepads>
  183 + <connection>
  184 + <name>192.168.168.1_jwgl_dw</name>
  185 + <server>192.168.168.1</server>
  186 + <type>ORACLE</type>
  187 + <access>Native</access>
  188 + <database>orcl</database>
  189 + <port>1521</port>
  190 + <username>jwgl_dw</username>
  191 + <password>Encrypted 2be98afc86aa7f2e4cb13b977d2adabcd</password>
  192 + <servername/>
  193 + <data_tablespace/>
  194 + <index_tablespace/>
  195 + <attributes>
  196 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  197 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  198 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  199 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  200 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  201 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  202 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  203 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  204 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  205 + </attributes>
  206 + </connection>
  207 + <connection>
  208 + <name>bus_control_variable</name>
  209 + <server>&#x24;&#x7b;v_db_ip&#x7d;</server>
  210 + <type>MYSQL</type>
  211 + <access>Native</access>
  212 + <database>&#x24;&#x7b;v_db_dname&#x7d;</database>
  213 + <port>3306</port>
  214 + <username>&#x24;&#x7b;v_db_uname&#x7d;</username>
  215 + <password>&#x24;&#x7b;v_db_pwd&#x7d;</password>
  216 + <servername/>
  217 + <data_tablespace/>
  218 + <index_tablespace/>
  219 + <attributes>
  220 + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
  221 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  222 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  223 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  224 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  225 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  226 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  227 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  228 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  229 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  230 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  231 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  232 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  233 + </attributes>
  234 + </connection>
  235 + <connection>
  236 + <name>bus_control_&#x516c;&#x53f8;_201</name>
  237 + <server>localhost</server>
  238 + <type>MYSQL</type>
  239 + <access>Native</access>
  240 + <database>control</database>
  241 + <port>3306</port>
  242 + <username>root</username>
  243 + <password>Encrypted </password>
  244 + <servername/>
  245 + <data_tablespace/>
  246 + <index_tablespace/>
  247 + <attributes>
  248 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  249 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  250 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  251 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  252 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  253 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  254 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  255 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  256 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  257 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  258 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  259 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  260 + </attributes>
  261 + </connection>
  262 + <connection>
  263 + <name>bus_control_&#x672c;&#x673a;</name>
  264 + <server>localhost</server>
  265 + <type>MYSQL</type>
  266 + <access>Native</access>
  267 + <database>control</database>
  268 + <port>3306</port>
  269 + <username>root</username>
  270 + <password>Encrypted </password>
  271 + <servername/>
  272 + <data_tablespace/>
  273 + <index_tablespace/>
  274 + <attributes>
  275 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  276 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  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>3306</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>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  284 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  285 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  286 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  287 + </attributes>
  288 + </connection>
  289 + <connection>
  290 + <name>control_jndi</name>
  291 + <server/>
  292 + <type>MYSQL</type>
  293 + <access>JNDI</access>
  294 + <database>control_jndi</database>
  295 + <port>1521</port>
  296 + <username/>
  297 + <password>Encrypted </password>
  298 + <servername/>
  299 + <data_tablespace/>
  300 + <index_tablespace/>
  301 + <attributes>
  302 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  303 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  304 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  305 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  306 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  307 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  308 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  309 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  310 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  311 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  312 + </attributes>
  313 + </connection>
  314 + <connection>
  315 + <name>JGJW_VM</name>
  316 + <server>192.168.198.240</server>
  317 + <type>ORACLE</type>
  318 + <access>Native</access>
  319 + <database>orcl</database>
  320 + <port>1521</port>
  321 + <username>jwgl</username>
  322 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d485a8d6</password>
  323 + <servername/>
  324 + <data_tablespace/>
  325 + <index_tablespace/>
  326 + <attributes>
  327 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  328 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  329 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  330 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  331 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  332 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  333 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  334 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  335 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  336 + </attributes>
  337 + </connection>
  338 + <connection>
  339 + <name>NHJW_VM</name>
  340 + <server>192.168.198.240</server>
  341 + <type>ORACLE</type>
  342 + <access>Native</access>
  343 + <database>orcl</database>
  344 + <port>1521</port>
  345 + <username>nhjw</username>
  346 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d09aa5cd</password>
  347 + <servername/>
  348 + <data_tablespace/>
  349 + <index_tablespace/>
  350 + <attributes>
  351 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  352 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  353 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  354 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  355 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  356 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  357 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  358 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  359 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  360 + </attributes>
  361 + </connection>
  362 + <connection>
  363 + <name>PDGJ_VM</name>
  364 + <server>192.168.198.240</server>
  365 + <type>ORACLE</type>
  366 + <access>Native</access>
  367 + <database>orcl</database>
  368 + <port>1521</port>
  369 + <username>pdgj</username>
  370 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10ce96a8d0</password>
  371 + <servername/>
  372 + <data_tablespace/>
  373 + <index_tablespace/>
  374 + <attributes>
  375 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  376 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  377 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  378 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  379 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  380 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  381 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  382 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  383 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  384 + </attributes>
  385 + </connection>
  386 + <connection>
  387 + <name>repair_dw_mysql_jndi</name>
  388 + <server/>
  389 + <type>MYSQL</type>
  390 + <access>JNDI</access>
  391 + <database>repair_dw_mysql</database>
  392 + <port>1521</port>
  393 + <username/>
  394 + <password>Encrypted </password>
  395 + <servername/>
  396 + <data_tablespace/>
  397 + <index_tablespace/>
  398 + <attributes>
  399 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  400 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  401 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  402 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  403 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  404 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  405 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  406 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  407 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  408 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  409 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  410 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  411 + </attributes>
  412 + </connection>
  413 + <connection>
  414 + <name>repair_dw&#xff08;&#x672c;&#x673a;&#xff09;</name>
  415 + <server>localhost</server>
  416 + <type>MYSQL</type>
  417 + <access>Native</access>
  418 + <database>ruoyi-vue-3.5</database>
  419 + <port>3306</port>
  420 + <username>root</username>
  421 + <password>Encrypted </password>
  422 + <servername/>
  423 + <data_tablespace/>
  424 + <index_tablespace/>
  425 + <attributes>
  426 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  427 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  428 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  429 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  430 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  431 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  432 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  433 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  434 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  435 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  436 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  437 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  438 + </attributes>
  439 + </connection>
  440 + <connection>
  441 + <name>repair_real_h2</name>
  442 + <server/>
  443 + <type>H2</type>
  444 + <access>JNDI</access>
  445 + <database>repair_real_h2</database>
  446 + <port>1521</port>
  447 + <username/>
  448 + <password>Encrypted </password>
  449 + <servername/>
  450 + <data_tablespace/>
  451 + <index_tablespace/>
  452 + <attributes>
  453 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  454 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  455 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  456 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  457 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  458 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  459 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  460 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  461 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  462 + </attributes>
  463 + </connection>
  464 + <connection>
  465 + <name>SNJW_VM</name>
  466 + <server>192.168.198.240</server>
  467 + <type>ORACLE</type>
  468 + <access>Native</access>
  469 + <database>orcl</database>
  470 + <port>1521</port>
  471 + <username>snjw</username>
  472 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10cd9ca5cd</password>
  473 + <servername/>
  474 + <data_tablespace/>
  475 + <index_tablespace/>
  476 + <attributes>
  477 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  478 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  479 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  480 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  481 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  482 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  483 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  484 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  485 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  486 + </attributes>
  487 + </connection>
  488 + <connection>
  489 + <name>test_control_local</name>
  490 + <server>localhost</server>
  491 + <type>MYSQL</type>
  492 + <access>Native</access>
  493 + <database>test_control</database>
  494 + <port>3306</port>
  495 + <username>root</username>
  496 + <password>Encrypted </password>
  497 + <servername/>
  498 + <data_tablespace/>
  499 + <index_tablespace/>
  500 + <attributes>
  501 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  502 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  503 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  504 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  505 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  506 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  507 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  508 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  509 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  510 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  511 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  512 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  513 + </attributes>
  514 + </connection>
  515 + <connection>
  516 + <name>test_control&#xff08;&#x672c;&#x673a;&#xff09;</name>
  517 + <server>127.0.0.1</server>
  518 + <type>MYSQL</type>
  519 + <access>Native</access>
  520 + <database>test_control</database>
  521 + <port>3306</port>
  522 + <username>root</username>
  523 + <password>Encrypted </password>
  524 + <servername/>
  525 + <data_tablespace/>
  526 + <index_tablespace/>
  527 + <attributes>
  528 + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
  529 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  530 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  531 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  532 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  533 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  534 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  535 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  536 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  537 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  538 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  539 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  540 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  541 + </attributes>
  542 + </connection>
  543 + <connection>
  544 + <name>wzk_mysql_jndi</name>
  545 + <server/>
  546 + <type>MYSQL</type>
  547 + <access>JNDI</access>
  548 + <database>wzk_mysql</database>
  549 + <port>1521</port>
  550 + <username/>
  551 + <password>Encrypted </password>
  552 + <servername/>
  553 + <data_tablespace/>
  554 + <index_tablespace/>
  555 + <attributes>
  556 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  557 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  558 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  559 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  560 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  561 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  562 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  563 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  564 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  565 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  566 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  567 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  568 + </attributes>
  569 + </connection>
  570 + <connection>
  571 + <name>wzk&#xff08;&#x672c;&#x673a;&#xff09;</name>
  572 + <server>localhost</server>
  573 + <type>MYSQL</type>
  574 + <access>Native</access>
  575 + <database>pdgj_wzk_sys</database>
  576 + <port>3306</port>
  577 + <username>root</username>
  578 + <password>Encrypted </password>
  579 + <servername/>
  580 + <data_tablespace/>
  581 + <index_tablespace/>
  582 + <attributes>
  583 + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
  584 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  585 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  586 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  587 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  588 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  589 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  590 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  591 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  592 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  593 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  594 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  595 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  596 + </attributes>
  597 + </connection>
  598 + <connection>
  599 + <name>xlab_mysql_youle</name>
  600 + <server>101.231.124.8</server>
  601 + <type>MYSQL</type>
  602 + <access>Native</access>
  603 + <database>xlab_youle</database>
  604 + <port>45687</port>
  605 + <username>xlab-youle</username>
  606 + <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password>
  607 + <servername/>
  608 + <data_tablespace/>
  609 + <index_tablespace/>
  610 + <attributes>
  611 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  612 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  613 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  614 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  615 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  616 + <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute>
  617 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  618 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  619 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  620 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  621 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  622 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  623 + </attributes>
  624 + </connection>
  625 + <connection>
  626 + <name>xlab_mysql_youle&#xff08;&#x672c;&#x673a;&#xff09;</name>
  627 + <server>localhost</server>
  628 + <type>MYSQL</type>
  629 + <access>Native</access>
  630 + <database>xlab_youle</database>
  631 + <port>3306</port>
  632 + <username>root</username>
  633 + <password>Encrypted </password>
  634 + <servername/>
  635 + <data_tablespace/>
  636 + <index_tablespace/>
  637 + <attributes>
  638 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  639 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  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>3306</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>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  647 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  648 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  649 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  650 + </attributes>
  651 + </connection>
  652 + <connection>
  653 + <name>xlab_youle</name>
  654 + <server/>
  655 + <type>MYSQL</type>
  656 + <access>JNDI</access>
  657 + <database>xlab_youle</database>
  658 + <port>1521</port>
  659 + <username/>
  660 + <password>Encrypted </password>
  661 + <servername/>
  662 + <data_tablespace/>
  663 + <index_tablespace/>
  664 + <attributes>
  665 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  666 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  667 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  668 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  669 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  670 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  671 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  672 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  673 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  674 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  675 + </attributes>
  676 + </connection>
  677 + <connection>
  678 + <name>YGJW_VM</name>
  679 + <server>192.168.198.240</server>
  680 + <type>ORACLE</type>
  681 + <access>Native</access>
  682 + <database>orcl</database>
  683 + <port>1521</port>
  684 + <username>ygjw</username>
  685 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10c795a5cd</password>
  686 + <servername/>
  687 + <data_tablespace/>
  688 + <index_tablespace/>
  689 + <attributes>
  690 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  691 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  692 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  693 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  694 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  695 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  696 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  697 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  698 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  699 + </attributes>
  700 + </connection>
  701 + <connection>
  702 + <name>&#x516c;&#x53f8;jgjw</name>
  703 + <server>192.168.168.1</server>
  704 + <type>ORACLE</type>
  705 + <access>Native</access>
  706 + <database>orcl</database>
  707 + <port>1521</port>
  708 + <username>jwgl</username>
  709 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d485a8d6</password>
  710 + <servername/>
  711 + <data_tablespace/>
  712 + <index_tablespace/>
  713 + <attributes>
  714 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  715 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  716 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  717 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  718 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  719 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  720 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  721 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  722 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  723 + </attributes>
  724 + </connection>
  725 + <connection>
  726 + <name>&#x516c;&#x53f8;snjw</name>
  727 + <server>192.168.168.1</server>
  728 + <type>ORACLE</type>
  729 + <access>Native</access>
  730 + <database>orcl</database>
  731 + <port>1521</port>
  732 + <username>snjw</username>
  733 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10cd9ca5cd</password>
  734 + <servername/>
  735 + <data_tablespace/>
  736 + <index_tablespace/>
  737 + <attributes>
  738 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  739 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  740 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  741 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  742 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  743 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  744 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  745 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  746 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  747 + </attributes>
  748 + </connection>
  749 + <connection>
  750 + <name>&#x516c;&#x53f8;ygjw</name>
  751 + <server>192.168.168.178</server>
  752 + <type>ORACLE</type>
  753 + <access>Native</access>
  754 + <database>orcl</database>
  755 + <port>1521</port>
  756 + <username>ygjw</username>
  757 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10c795a5cd</password>
  758 + <servername/>
  759 + <data_tablespace/>
  760 + <index_tablespace/>
  761 + <attributes>
  762 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  763 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  764 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  765 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  766 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  767 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  768 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  769 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  770 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  771 + </attributes>
  772 + </connection>
  773 + <connection>
  774 + <name>&#x516c;&#x53f8;&#x673a;&#x52a1;_pdgj</name>
  775 + <server>192.168.168.178</server>
  776 + <type>ORACLE</type>
  777 + <access>Native</access>
  778 + <database>orcl</database>
  779 + <port>1521</port>
  780 + <username>pdgj</username>
  781 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10ce96a8d0</password>
  782 + <servername/>
  783 + <data_tablespace/>
  784 + <index_tablespace/>
  785 + <attributes>
  786 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  787 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  788 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  789 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  790 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  791 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  792 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  793 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  794 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  795 + </attributes>
  796 + </connection>
  797 + <connection>
  798 + <name>&#x5916;&#x7f51;vpn&#x4e34;&#x6e2f;&#x673a;&#x52a1;oracle</name>
  799 + <server>10.10.150.114</server>
  800 + <type>ORACLE</type>
  801 + <access>Native</access>
  802 + <database>helowin</database>
  803 + <port>1521</port>
  804 + <username>lgjw</username>
  805 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d295a5cd</password>
  806 + <servername/>
  807 + <data_tablespace/>
  808 + <index_tablespace/>
  809 + <attributes>
  810 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  811 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  812 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  813 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  814 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  815 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  816 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  817 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  818 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  819 + </attributes>
  820 + </connection>
  821 + <connection>
  822 + <name>&#x5916;&#x7f51;&#x5357;&#x6c47;&#x673a;&#x52a1;oracle</name>
  823 + <server>58.247.254.118</server>
  824 + <type>ORACLE</type>
  825 + <access>Native</access>
  826 + <database>orcl</database>
  827 + <port>15211</port>
  828 + <username>nhjw</username>
  829 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d09aa5cd</password>
  830 + <servername/>
  831 + <data_tablespace/>
  832 + <index_tablespace/>
  833 + <attributes>
  834 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  835 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  836 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  837 + <attribute><code>PORT_NUMBER</code><attribute>15211</attribute></attribute>
  838 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  839 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  840 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  841 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  842 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  843 + </attributes>
  844 + </connection>
  845 + <connection>
  846 + <name>&#x5916;&#x7f51;&#x6768;&#x9ad8;&#x673a;&#x52a1;oracle</name>
  847 + <server>58.247.254.118</server>
  848 + <type>ORACLE</type>
  849 + <access>Native</access>
  850 + <database>orcl</database>
  851 + <port>15211</port>
  852 + <username>ygjw</username>
  853 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10c795a5cd</password>
  854 + <servername/>
  855 + <data_tablespace/>
  856 + <index_tablespace/>
  857 + <attributes>
  858 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  859 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  860 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  861 + <attribute><code>PORT_NUMBER</code><attribute>15211</attribute></attribute>
  862 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  863 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  864 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  865 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  866 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  867 + </attributes>
  868 + </connection>
  869 + <connection>
  870 + <name>&#x5916;&#x7f51;&#x91d1;&#x9ad8;&#x673a;&#x52a1;oracle</name>
  871 + <server>58.247.254.118</server>
  872 + <type>ORACLE</type>
  873 + <access>Native</access>
  874 + <database>orcl</database>
  875 + <port>15211</port>
  876 + <username>jwgl</username>
  877 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d485a8d6</password>
  878 + <servername/>
  879 + <data_tablespace/>
  880 + <index_tablespace/>
  881 + <attributes>
  882 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  883 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  884 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  885 + <attribute><code>PORT_NUMBER</code><attribute>15211</attribute></attribute>
  886 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  887 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  888 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  889 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  890 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  891 + </attributes>
  892 + </connection>
  893 + <order>
  894 + <hop> <from>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</from><to>&#x73ed;&#x6b21;&#x6570;&#x636e;&#x8303;&#x5f0f;&#x5316;</to><enabled>Y</enabled> </hop>
  895 + <hop> <from>&#x6dfb;&#x52a0;&#x53d1;&#x8f66;&#x987a;&#x5e8f;&#x53f7;</from><to>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;&#xff08;&#x53d1;&#x8f66;&#x65f6;&#x95f4;&#x4e3a;&#x7a7a;&#xff09;</to><enabled>Y</enabled> </hop>
  896 + <hop> <from>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;&#xff08;&#x53d1;&#x8f66;&#x65f6;&#x95f4;&#x4e3a;&#x7a7a;&#xff09;</from><to>&#x6dfb;&#x52a0;&#x5bf9;&#x5e94;&#x73ed;&#x6b21;&#x6570;</to><enabled>Y</enabled> </hop>
  897 + <hop> <from>&#x6dfb;&#x52a0;&#x5bf9;&#x5e94;&#x73ed;&#x6b21;&#x6570;</from><to>&#x5904;&#x7406;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
  898 + <hop> <from>&#x5904;&#x7406;&#x6570;&#x636e;</from><to>&#x5206;&#x7ec4;&#x5404;&#x4e2a;&#x8def;&#x724c;&#x7684;&#x7ad9;</to><enabled>Y</enabled> </hop>
  899 + <hop> <from>&#x67e5;&#x627e;&#x65f6;&#x523b;&#x8868;&#x57fa;&#x7840;&#x4fe1;&#x606f;&#x5173;&#x8054;</from><to>&#x67e5;&#x627e;&#x8def;&#x724c;&#x5173;&#x8054;</to><enabled>Y</enabled> </hop>
  900 + <hop> <from>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x5173;&#x8054;</from><to>&#x67e5;&#x627e;&#x65f6;&#x523b;&#x8868;&#x57fa;&#x7840;&#x4fe1;&#x606f;&#x5173;&#x8054;</to><enabled>Y</enabled> </hop>
  901 + <hop> <from>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178;</from><to>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178;</to><enabled>Y</enabled> </hop>
  902 + <hop> <from>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 2</from><to>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 2</to><enabled>Y</enabled> </hop>
  903 + <hop> <from>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 3</from><to>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 3</to><enabled>Y</enabled> </hop>
  904 + <hop> <from>&#x5339;&#x914d;&#x4e0a;&#x4e0b;&#x884c;&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</from><to>&#x7c7b;&#x578b;&#x4fee;&#x6b63;</to><enabled>Y</enabled> </hop>
  905 + <hop> <from>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;1</from><to>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</to><enabled>Y</enabled> </hop>
  906 + <hop> <from>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;1</from><to>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
  907 + <hop> <from>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</from><to>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
  908 + <hop> <from>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</from><to>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
  909 + <hop> <from>&#x67e5;&#x627e;&#x6240;&#x6709;&#x7ebf;&#x8def;&#x4e0a;&#x4e0b;&#x884c;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</from><to>&#x5339;&#x914d;&#x4e0a;&#x4e0b;&#x884c;&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>
  910 + <hop> <from>&#x67e5;&#x627e;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;</from><to>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178;</to><enabled>Y</enabled> </hop>
  911 + <hop> <from>&#x67e5;&#x627e;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</from><to>&#x67e5;&#x627e;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;</to><enabled>Y</enabled> </hop>
  912 + <hop> <from>&#x6b63;&#x5e38;&#x73ed;&#x6b21;_&#x5904;&#x7406;&#x6570;&#x636e;</from><to>&#x67e5;&#x627e;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</to><enabled>Y</enabled> </hop>
  913 + <hop> <from>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</from><to>&#x6b63;&#x5e38;&#x73ed;&#x6b21;_&#x5904;&#x7406;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
  914 + <hop> <from>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178;</from><to>&#x67e5;&#x627e;&#x6240;&#x6709;&#x7ebf;&#x8def;&#x4e0a;&#x4e0b;&#x884c;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>
  915 + <hop> <from>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 2</from><to>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x51fa;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>
  916 + <hop> <from>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 3</from><to>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x8fdb;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>
  917 + <hop> <from>&#x8ba1;&#x7b97;&#x73ed;&#x6b21;&#x7c7b;&#x578b;</from><to>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;1</to><enabled>Y</enabled> </hop>
  918 + <hop> <from>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</from><to>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;1</to><enabled>Y</enabled> </hop>
  919 + <hop> <from>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;1</from><to>&#x51fa;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x7ec8;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</to><enabled>Y</enabled> </hop>
  920 + <hop> <from>&#x51fa;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x7ec8;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</from><to>&#x67e5;&#x627e;&#x51fa;&#x573a;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</to><enabled>Y</enabled> </hop>
  921 + <hop> <from>&#x67e5;&#x627e;&#x51fa;&#x573a;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</from><to>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 2</to><enabled>Y</enabled> </hop>
  922 + <hop> <from>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</from><to>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;2</to><enabled>Y</enabled> </hop>
  923 + <hop> <from>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;2</from><to>&#x8fdb;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x8d77;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</to><enabled>Y</enabled> </hop>
  924 + <hop> <from>&#x8fdb;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x8d77;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</from><to>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ebf;&#x8def;&#x65b9;&#x5411;</to><enabled>Y</enabled> </hop>
  925 + <hop> <from>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ebf;&#x8def;&#x65b9;&#x5411;</from><to>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ec8;&#x70b9;&#x7ad9;&#xff0c;&#x5e76;&#x4f5c;&#x4e3a;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x7684;&#x8d77;&#x70b9;&#x7ad9;</to><enabled>Y</enabled> </hop>
  926 + <hop> <from>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</from><to>&#x6dfb;&#x52a0;&#x53d1;&#x8f66;&#x987a;&#x5e8f;&#x53f7;</to><enabled>Y</enabled> </hop>
  927 + <hop> <from>&#x5206;&#x7ec4;&#x5404;&#x4e2a;&#x8def;&#x724c;&#x7684;&#x7ad9;</from><to>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x5173;&#x8054;</to><enabled>Y</enabled> </hop>
  928 + <hop> <from>&#x589e;&#x52a0;&#x65f6;&#x523b;&#x8868;&#x540d;&#x5b57;&#xff0c;&#x7ebf;&#x8def;&#x540d;&#x5b57;&#xff0c;&#x505c;&#x8f66;&#x573a;&#x540d;&#x5b57;</from><to>&#x8bb0;&#x5f55;&#x5173;&#x8054; &#x28;&#x7b1b;&#x5361;&#x5c14;&#x8f93;&#x51fa;&#x29;</to><enabled>Y</enabled> </hop>
  929 + <hop> <from>&#x73ed;&#x6b21;&#x6570;&#x636e;&#x8303;&#x5f0f;&#x5316;</from><to>&#x8bb0;&#x5f55;&#x5173;&#x8054; &#x28;&#x7b1b;&#x5361;&#x5c14;&#x8f93;&#x51fa;&#x29;</to><enabled>Y</enabled> </hop>
  930 + <hop> <from>&#x8bb0;&#x5f55;&#x5173;&#x8054; &#x28;&#x7b1b;&#x5361;&#x5c14;&#x8f93;&#x51fa;&#x29;</from><to>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</to><enabled>Y</enabled> </hop>
  931 + <hop> <from>&#x7c7b;&#x578b;&#x4fee;&#x6b63;</from><to>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail</to><enabled>Y</enabled> </hop>
  932 + <hop> <from>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ec8;&#x70b9;&#x7ad9;&#xff0c;&#x5e76;&#x4f5c;&#x4e3a;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x7684;&#x8d77;&#x70b9;&#x7ad9;</from><to>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</to><enabled>Y</enabled> </hop>
  933 + <hop> <from>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</from><to>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 3</to><enabled>Y</enabled> </hop>
  934 + <hop> <from>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x51fa;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</from><to>&#x5339;&#x914d;&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>
  935 + <hop> <from>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x8fdb;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</from><to>&#x5339;&#x914d;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>
  936 + <hop> <from>&#x5339;&#x914d;&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</from><to>&#x4e0a;&#x4e0b;&#x884c;NULL&#x5224;&#x5b9a;</to><enabled>Y</enabled> </hop>
  937 + <hop> <from>&#x4e0a;&#x4e0b;&#x884c;NULL&#x5224;&#x5b9a;</from><to>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 2</to><enabled>Y</enabled> </hop>
  938 + <hop> <from>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 2</from><to>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail 2</to><enabled>Y</enabled> </hop>
  939 + <hop> <from>&#x5339;&#x914d;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</from><to>&#x4e0a;&#x4e0b;&#x884c;&#x5224;&#x5b9a; 2</to><enabled>Y</enabled> </hop>
  940 + <hop> <from>&#x4e0a;&#x4e0b;&#x884c;&#x5224;&#x5b9a; 2</from><to>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 3</to><enabled>Y</enabled> </hop>
  941 + <hop> <from>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 3</from><to>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail 3</to><enabled>Y</enabled> </hop>
  942 + <hop> <from>&#x67e5;&#x627e;&#x8def;&#x724c;&#x5173;&#x8054;</from><to>&#x7ad9;&#x70b9;&#x8def;&#x7531;&#x7248;&#x672c;&#x7c7b;&#x578b;</to><enabled>Y</enabled> </hop>
  943 + <hop> <from>&#x7ad9;&#x70b9;&#x8def;&#x7531;&#x7248;&#x672c;&#x7c7b;&#x578b;</from><to>&#x8ba1;&#x7b97;&#x73ed;&#x6b21;&#x7c7b;&#x578b;</to><enabled>Y</enabled> </hop>
  944 + <hop> <from>&#x7ad9;&#x70b9;&#x8def;&#x7531;&#x7248;&#x672c;&#x7c7b;&#x578b;</from><to>&#x66f4;&#x65b0;&#x65f6;&#x523b;&#x8868;&#x4e3b;&#x8868;&#x7248;&#x672c;</to><enabled>Y</enabled> </hop>
  945 + </order>
  946 + <step>
  947 + <name>&#x4e0a;&#x4e0b;&#x884c;NULL&#x5224;&#x5b9a;</name>
  948 + <type>IfNull</type>
  949 + <description/>
  950 + <distribute>Y</distribute>
  951 + <custom_distribution/>
  952 + <copies>1</copies>
  953 + <partitioning>
  954 + <method>none</method>
  955 + <schema_name/>
  956 + </partitioning>
  957 + <replaceAllByValue/>
  958 + <replaceAllMask/>
  959 + <selectFields>Y</selectFields>
  960 + <selectValuesType>N</selectValuesType>
  961 + <setEmptyStringAll>N</setEmptyStringAll>
  962 + <valuetypes>
  963 + </valuetypes>
  964 + <fields>
  965 + <field>
  966 + <name>sxx</name>
  967 + <value>0</value>
  968 + <mask/>
  969 + <set_empty_string>N</set_empty_string>
  970 + </field>
  971 + </fields>
  972 + <cluster_schema/>
  973 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  974 + <xloc>335</xloc>
  975 + <yloc>938</yloc>
  976 + <draw>Y</draw>
  977 + </GUI>
  978 + </step>
  979 +
  980 + <step>
  981 + <name>&#x4e0a;&#x4e0b;&#x884c;&#x5224;&#x5b9a; 2</name>
  982 + <type>IfNull</type>
  983 + <description/>
  984 + <distribute>Y</distribute>
  985 + <custom_distribution/>
  986 + <copies>1</copies>
  987 + <partitioning>
  988 + <method>none</method>
  989 + <schema_name/>
  990 + </partitioning>
  991 + <replaceAllByValue/>
  992 + <replaceAllMask/>
  993 + <selectFields>Y</selectFields>
  994 + <selectValuesType>N</selectValuesType>
  995 + <setEmptyStringAll>N</setEmptyStringAll>
  996 + <valuetypes>
  997 + </valuetypes>
  998 + <fields>
  999 + <field>
  1000 + <name>sxx2</name>
  1001 + <value>0</value>
  1002 + <mask/>
  1003 + <set_empty_string>N</set_empty_string>
  1004 + </field>
  1005 + </fields>
  1006 + <cluster_schema/>
  1007 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1008 + <xloc>804</xloc>
  1009 + <yloc>1081</yloc>
  1010 + <draw>Y</draw>
  1011 + </GUI>
  1012 + </step>
  1013 +
  1014 + <step>
  1015 + <name>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178;</name>
  1016 + <type>ValueMapper</type>
  1017 + <description/>
  1018 + <distribute>Y</distribute>
  1019 + <custom_distribution/>
  1020 + <copies>1</copies>
  1021 + <partitioning>
  1022 + <method>none</method>
  1023 + <schema_name/>
  1024 + </partitioning>
  1025 + <field_to_use>sxx</field_to_use>
  1026 + <target_field>sxx_desc</target_field>
  1027 + <non_match_default/>
  1028 + <fields>
  1029 + <field>
  1030 + <source_value>0</source_value>
  1031 + <target_value>&#x4e0a;&#x884c;</target_value>
  1032 + </field>
  1033 + <field>
  1034 + <source_value>1</source_value>
  1035 + <target_value>&#x4e0b;&#x884c;</target_value>
  1036 + </field>
  1037 + </fields>
  1038 + <cluster_schema/>
  1039 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1040 + <xloc>147</xloc>
  1041 + <yloc>403</yloc>
  1042 + <draw>Y</draw>
  1043 + </GUI>
  1044 + </step>
  1045 +
  1046 + <step>
  1047 + <name>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 2</name>
  1048 + <type>ValueMapper</type>
  1049 + <description/>
  1050 + <distribute>Y</distribute>
  1051 + <custom_distribution/>
  1052 + <copies>1</copies>
  1053 + <partitioning>
  1054 + <method>none</method>
  1055 + <schema_name/>
  1056 + </partitioning>
  1057 + <field_to_use>sxx</field_to_use>
  1058 + <target_field>sxx_desc</target_field>
  1059 + <non_match_default/>
  1060 + <fields>
  1061 + <field>
  1062 + <source_value>0</source_value>
  1063 + <target_value>&#x4e0a;&#x884c;</target_value>
  1064 + </field>
  1065 + <field>
  1066 + <source_value>1</source_value>
  1067 + <target_value>&#x4e0b;&#x884c;</target_value>
  1068 + </field>
  1069 + </fields>
  1070 + <cluster_schema/>
  1071 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1072 + <xloc>331</xloc>
  1073 + <yloc>598</yloc>
  1074 + <draw>Y</draw>
  1075 + </GUI>
  1076 + </step>
  1077 +
  1078 + <step>
  1079 + <name>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 3</name>
  1080 + <type>ValueMapper</type>
  1081 + <description/>
  1082 + <distribute>Y</distribute>
  1083 + <custom_distribution/>
  1084 + <copies>1</copies>
  1085 + <partitioning>
  1086 + <method>none</method>
  1087 + <schema_name/>
  1088 + </partitioning>
  1089 + <field_to_use>sxx</field_to_use>
  1090 + <target_field>sxx_desc</target_field>
  1091 + <non_match_default/>
  1092 + <fields>
  1093 + <field>
  1094 + <source_value>0</source_value>
  1095 + <target_value>&#x4e0a;&#x884c;</target_value>
  1096 + </field>
  1097 + <field>
  1098 + <source_value>1</source_value>
  1099 + <target_value>&#x4e0b;&#x884c;</target_value>
  1100 + </field>
  1101 + </fields>
  1102 + <cluster_schema/>
  1103 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1104 + <xloc>553</xloc>
  1105 + <yloc>859</yloc>
  1106 + <draw>Y</draw>
  1107 + </GUI>
  1108 + </step>
  1109 +
  1110 + <step>
  1111 + <name>&#x51fa;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x7ec8;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</name>
  1112 + <type>ScriptValueMod</type>
  1113 + <description/>
  1114 + <distribute>Y</distribute>
  1115 + <custom_distribution/>
  1116 + <copies>1</copies>
  1117 + <partitioning>
  1118 + <method>none</method>
  1119 + <schema_name/>
  1120 + </partitioning>
  1121 + <compatible>N</compatible>
  1122 + <optimizationLevel>9</optimizationLevel>
  1123 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  1124 + <jsScript_name>Script 1</jsScript_name>
  1125 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;&#x2f;&#x2f; &#x6dfb;&#x52a0;&#x7ad9;&#x70b9;&#x6807;&#x8bc6;&#xa;var cc_groups &#x3d; qdzgroups.split&#x28;&#x22;,&#x22;&#x29;&#x3b; &#x2f;&#x2f; &#x6240;&#x6709;&#x73ed;&#x6b21;&#x8d77;&#x70b9;&#x7ad9;&#x6570;&#x7ec4;&#xa;var zdzname &#x3d; cc_groups&#x5b;gno&#x5d;&#x3b; &#x2f;&#x2f; &#x51fa;&#x573a;&#x73ed;&#x6b21;&#x7684;&#x7ec8;&#x70b9;&#x7ad9;&#x662f;&#x4e0b;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x8d77;&#x59cb;&#x7ad9;&#xa;var endZdtype &#x3d; &#x27;B&#x27;&#x3b;&#xa;&#x2f;&#x2f; var endZdtype &#x3d; &#x27;E&#x27;&#x3b;&#xa;&#xa;var destory &#x3d; 0&#x3b; &#x2f;&#x2f; &#x672a;&#x64a4;&#x9500;flag</jsScript_script>
  1126 + </jsScript> </jsScripts> <fields> <field> <name>zdzname</name>
  1127 + <rename>zdzname</rename>
  1128 + <type>String</type>
  1129 + <length>-1</length>
  1130 + <precision>-1</precision>
  1131 + <replace>N</replace>
  1132 + </field> <field> <name>endZdtype</name>
  1133 + <rename>endZdtype</rename>
  1134 + <type>String</type>
  1135 + <length>-1</length>
  1136 + <precision>-1</precision>
  1137 + <replace>N</replace>
  1138 + </field> <field> <name>destory</name>
  1139 + <rename>destory</rename>
  1140 + <type>Integer</type>
  1141 + <length>-1</length>
  1142 + <precision>-1</precision>
  1143 + <replace>N</replace>
  1144 + </field> </fields> <cluster_schema/>
  1145 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1146 + <xloc>575</xloc>
  1147 + <yloc>502</yloc>
  1148 + <draw>Y</draw>
  1149 + </GUI>
  1150 + </step>
  1151 +
  1152 + <step>
  1153 + <name>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</name>
  1154 + <type>Dummy</type>
  1155 + <description/>
  1156 + <distribute>Y</distribute>
  1157 + <custom_distribution/>
  1158 + <copies>1</copies>
  1159 + <partitioning>
  1160 + <method>none</method>
  1161 + <schema_name/>
  1162 + </partitioning>
  1163 + <cluster_schema/>
  1164 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1165 + <xloc>869</xloc>
  1166 + <yloc>504</yloc>
  1167 + <draw>Y</draw>
  1168 + </GUI>
  1169 + </step>
  1170 +
  1171 + <step>
  1172 + <name>&#x5206;&#x7ec4;&#x5404;&#x4e2a;&#x8def;&#x724c;&#x7684;&#x7ad9;</name>
  1173 + <type>GroupBy</type>
  1174 + <description/>
  1175 + <distribute>Y</distribute>
  1176 + <custom_distribution/>
  1177 + <copies>1</copies>
  1178 + <partitioning>
  1179 + <method>none</method>
  1180 + <schema_name/>
  1181 + </partitioning>
  1182 + <all_rows>Y</all_rows>
  1183 + <ignore_aggregate>N</ignore_aggregate>
  1184 + <field_ignore/>
  1185 + <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
  1186 + <prefix>grp</prefix>
  1187 + <add_linenr>Y</add_linenr>
  1188 + <linenr_fieldname>gno</linenr_fieldname>
  1189 + <give_back_row>N</give_back_row>
  1190 + <group>
  1191 + <field>
  1192 + <name>lp</name>
  1193 + </field>
  1194 + </group>
  1195 + <fields>
  1196 + <field>
  1197 + <aggregate>qdzgroups</aggregate>
  1198 + <subject>qdzname</subject>
  1199 + <type>CONCAT_STRING</type>
  1200 + <valuefield>,</valuefield>
  1201 + </field>
  1202 + </fields>
  1203 + <cluster_schema/>
  1204 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1205 + <xloc>892</xloc>
  1206 + <yloc>44</yloc>
  1207 + <draw>Y</draw>
  1208 + </GUI>
  1209 + </step>
  1210 +
  1211 + <step>
  1212 + <name>&#x5339;&#x914d;&#x4e0a;&#x4e0b;&#x884c;&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
  1213 + <type>ScriptValueMod</type>
  1214 + <description/>
  1215 + <distribute>Y</distribute>
  1216 + <custom_distribution/>
  1217 + <copies>1</copies>
  1218 + <partitioning>
  1219 + <method>none</method>
  1220 + <schema_name/>
  1221 + </partitioning>
  1222 + <compatible>N</compatible>
  1223 + <optimizationLevel>9</optimizationLevel>
  1224 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  1225 + <jsScript_name>Script 1</jsScript_name>
  1226 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var jhlc&#x3b; &#x2f;&#x2f; &#x8ba1;&#x5212;&#x91cc;&#x7a0b;&#xa;var bcsj&#x3b; &#x2f;&#x2f; &#x73ed;&#x6b21;&#x65f6;&#x95f4;&#xa;&#xa;&#x2f;&#x2f; &#x65f6;&#x95f4;&#x8303;&#x56f4;&#x6b63;&#x5219;&#x8868;&#x8fbe;&#x5f0f;&#xa;var timeRex &#x3d; &#x2f;&#x5e;&#x28;&#x5b;01&#x5d;&#x3f;&#x5b;0-9&#x5d;&#x7c;2&#x5b;0-3&#x5d;&#x29;&#x3a;&#x5b;0-5&#x5d;&#x5b;0-9&#x5d;&#x24;&#x2f;&#x3b;&#xa;&#x2f;&#x2f; &#x53d1;&#x8f66;&#x65f6;&#x95f4;&#x8f6c;&#x6362;&#x6210;&#x65e5;&#x671f;&#xa;var fcsj_hour &#x3d; str2num&#x28;sendtime_calcu.substr&#x28;0, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa;var fcsj_min &#x3d; str2num&#x28;sendtime_calcu.substr&#x28;3, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa;var fcsj_date &#x3d; new Date&#x28;2000,1,1,fcsj_hour,fcsj_min,0&#x29;&#x3b;&#xa;&#xa;&#x2f;&#x2f; &#x5224;&#x5b9a;&#x662f;&#x5426;&#x65e9;&#x9ad8;&#x5cf0;&#xa;var isZgf &#x3d; false&#x3b;&#xa;if &#x28;timeRex.test&#x28;early_start_time&#x29; &#x26;&#x26; timeRex.test&#x28;early_end_time&#x29; &#x26;&#x26; early_up_time &#x21;&#x3d; null &#x26;&#x26; early_down_time &#x21;&#x3d; null&#x29; &#x7b;&#xa; var early_s_hour &#x3d; str2num&#x28;early_start_time.substr&#x28;0, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var early_s_min &#x3d; str2num&#x28;early_start_time.substr&#x28;3, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var early_s_date &#x3d; new Date&#x28;2000,1,1,early_s_hour,early_s_min,0&#x29;&#x3b;&#xa;&#xa; var early_e_hour &#x3d; str2num&#x28;early_end_time.substr&#x28;0, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var early_e_min &#x3d; str2num&#x28;early_end_time.substr&#x28;3, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var early_e_date &#x3d; new Date&#x28;2000,1,1,early_e_hour,early_e_min,0&#x29;&#x3b;&#xa;&#xa; if &#x28;fcsj_date &#x3e;&#x3d; early_s_date &#x26;&#x26; fcsj_date &#x3c;&#x3d; early_e_date&#x29; &#x7b;&#xa; isZgf &#x3d; true&#x3b;&#xa; &#x7d;&#xa;&#x7d;&#xa;&#xa;&#x2f;&#x2f; &#x5224;&#x5b9a;&#x662f;&#x5426;&#x665a;&#x9ad8;&#x5cf0;&#xa;var isWgf &#x3d; false&#x3b;&#xa;if &#x28;timeRex.test&#x28;late_start_time&#x29; &#x26;&#x26; timeRex.test&#x28;late_end_time&#x29; &#x26;&#x26; late_up_time &#x21;&#x3d; null &#x26;&#x26; late_down_time &#x21;&#x3d; null&#x29; &#x7b;&#xa; var late_s_hour &#x3d; str2num&#x28;late_start_time.substr&#x28;0, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var late_s_min &#x3d; str2num&#x28;late_start_time.substr&#x28;3, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var late_s_date &#x3d; new Date&#x28;2000,1,1,late_s_hour,late_s_min,0&#x29;&#x3b;&#xa;&#xa; var late_e_hour &#x3d; str2num&#x28;late_end_time.substr&#x28;0, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var late_e_min &#x3d; str2num&#x28;late_end_time.substr&#x28;3, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var late_e_date &#x3d; new Date&#x28;2000,1,1,late_e_hour,late_e_min,0&#x29;&#x3b;&#xa;&#xa; if &#x28;fcsj_date &#x3e;&#x3d; late_s_date &#x26;&#x26; fcsj_date &#x3c;&#x3d; late_e_date&#x29; &#x7b;&#xa; isWgf &#x3d; true&#x3b;&#xa; &#x7d;&#xa;&#x7d;&#xa;&#xa;&#x2f;&#x2f; &#x5224;&#x5b9a;&#x662f;&#x5426;&#x665a;&#x9ad8;&#x5cf0;&#xa;&#xa;if &#x28;sxx &#x3d;&#x3d; 0&#x29; &#x7b; &#x2f;&#x2f; &#x4e0a;&#x884c;&#xa; if &#x28;isZgf&#x29; &#x7b;&#xa; jhlc &#x3d; up_mileage&#x3b;&#xa; bcsj &#x3d; early_up_time &#x21;&#x3d; 0 &#x3f; early_up_time &#x3a; up_travel_time&#x3b;&#xa; &#x7d; else if &#x28;isWgf&#x29; &#x7b;&#xa; jhlc &#x3d; up_mileage&#x3b;&#xa; bcsj &#x3d; late_up_time &#x21;&#x3d; 0 &#x3f; late_up_time &#x3a; up_travel_time&#x3b;&#xa; &#x7d; else &#x7b;&#xa; jhlc &#x3d; up_mileage&#x3b;&#xa; bcsj &#x3d; up_travel_time&#x3b;&#xa; &#x7d;&#xa;&#x7d; else &#x7b; &#x2f;&#x2f; sxx &#x3d;&#x3d; 1 &#x4e0b;&#x884c;&#xa; if &#x28;isZgf&#x29; &#x7b;&#xa; jhlc &#x3d; down_mileage&#x3b;&#xa; bcsj &#x3d; early_down_time &#x21;&#x3d; 0 &#x3f; early_down_time &#x3a; down_travel_time&#x3b;&#xa; &#x7d; else if &#x28;isWgf&#x29; &#x7b;&#xa; jhlc &#x3d; down_mileage&#x3b;&#xa; bcsj &#x3d; late_down_time &#x21;&#x3d; 0 &#x3f; late_down_time &#x3a; down_travel_time&#x3b;&#xa; &#x7d; else &#x7b;&#xa; jhlc &#x3d; down_mileage&#x3b;&#xa; bcsj &#x3d; down_travel_time&#x3b;&#xa; &#x7d;&#xa;&#x7d;</jsScript_script>
  1227 + </jsScript> </jsScripts> <fields> <field> <name>jhlc</name>
  1228 + <rename>jhlc</rename>
  1229 + <type>String</type>
  1230 + <length>-1</length>
  1231 + <precision>-1</precision>
  1232 + <replace>N</replace>
  1233 + </field> <field> <name>bcsj</name>
  1234 + <rename>bcsj</rename>
  1235 + <type>String</type>
  1236 + <length>-1</length>
  1237 + <precision>-1</precision>
  1238 + <replace>N</replace>
  1239 + </field> </fields> <cluster_schema/>
  1240 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1241 + <xloc>148</xloc>
  1242 + <yloc>674</yloc>
  1243 + <draw>Y</draw>
  1244 + </GUI>
  1245 + </step>
  1246 +
  1247 + <step>
  1248 + <name>&#x5339;&#x914d;&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
  1249 + <type>ScriptValueMod</type>
  1250 + <description/>
  1251 + <distribute>Y</distribute>
  1252 + <custom_distribution/>
  1253 + <copies>1</copies>
  1254 + <partitioning>
  1255 + <method>none</method>
  1256 + <schema_name/>
  1257 + </partitioning>
  1258 + <compatible>N</compatible>
  1259 + <optimizationLevel>9</optimizationLevel>
  1260 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  1261 + <jsScript_name>Script 1</jsScript_name>
  1262 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var out_mileage&#x3b; &#x2f;&#x2f; &#x51fa;&#x573a;&#x8ba1;&#x5212;&#x91cc;&#x7a0b;&#xa;var out_time&#x3b; &#x2f;&#x2f; &#x51fa;&#x573a;&#x8ba1;&#x5212;&#x65f6;&#x95f4;&#xa;&#xa;if &#x28;sxx &#x3d;&#x3d; 0&#x29; &#x7b; &#x2f;&#x2f; &#x4e0a;&#x884c;&#xa; out_mileage &#x3d; up_out_mileage&#x3b;&#xa; out_time &#x3d; up_out_timer&#x3b;&#xa;&#x7d; else &#x7b; &#x2f;&#x2f; sxx &#x3d;&#x3d; 1 &#x4e0b;&#x884c;&#xa; out_mileage &#x3d; down_out_mileage&#x3b;&#xa; out_time &#x3d; down_out_timer&#x3b;&#xa;&#x7d;&#xa;&#xa;&#xa;&#xa;</jsScript_script>
  1263 + </jsScript> </jsScripts> <fields> <field> <name>out_mileage</name>
  1264 + <rename>out_mileage</rename>
  1265 + <type>String</type>
  1266 + <length>-1</length>
  1267 + <precision>-1</precision>
  1268 + <replace>N</replace>
  1269 + </field> <field> <name>out_time</name>
  1270 + <rename>out_time</rename>
  1271 + <type>String</type>
  1272 + <length>-1</length>
  1273 + <precision>-1</precision>
  1274 + <replace>N</replace>
  1275 + </field> </fields> <cluster_schema/>
  1276 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1277 + <xloc>336</xloc>
  1278 + <yloc>862</yloc>
  1279 + <draw>Y</draw>
  1280 + </GUI>
  1281 + </step>
  1282 +
  1283 + <step>
  1284 + <name>&#x5339;&#x914d;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
  1285 + <type>ScriptValueMod</type>
  1286 + <description/>
  1287 + <distribute>Y</distribute>
  1288 + <custom_distribution/>
  1289 + <copies>1</copies>
  1290 + <partitioning>
  1291 + <method>none</method>
  1292 + <schema_name/>
  1293 + </partitioning>
  1294 + <compatible>N</compatible>
  1295 + <optimizationLevel>9</optimizationLevel>
  1296 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  1297 + <jsScript_name>Script 1</jsScript_name>
  1298 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var parade_mileage&#x3b; &#x2f;&#x2f; &#x8fdb;&#x573a;&#x8ba1;&#x5212;&#x91cc;&#x7a0b;&#xa;var parade_time&#x3b; &#x2f;&#x2f; &#x8fdb;&#x573a;&#x8ba1;&#x5212;&#x65f6;&#x95f4;&#xa;&#xa;if &#x28;sxx2 &#x3d;&#x3d; 0&#x29; &#x7b; &#x2f;&#x2f; &#x4e0a;&#x884c;&#xa; parade_mileage &#x3d; up_in_mileage&#x3b;&#xa; parade_time &#x3d; up_in_timer&#x3b;&#xa;&#x7d; else &#x7b; &#x2f;&#x2f; sxx &#x3d;&#x3d; 1 &#x4e0b;&#x884c;&#xa; parade_mileage &#x3d; down_in_mileage&#x3b;&#xa; parade_time &#x3d; down_in_timer&#x3b;&#xa;&#x7d;&#xa;&#xa;&#xa;&#xa;</jsScript_script>
  1299 + </jsScript> </jsScripts> <fields> <field> <name>parade_mileage</name>
  1300 + <rename>parade_mileage</rename>
  1301 + <type>String</type>
  1302 + <length>-1</length>
  1303 + <precision>-1</precision>
  1304 + <replace>N</replace>
  1305 + </field> <field> <name>parade_time</name>
  1306 + <rename>parade_time</rename>
  1307 + <type>String</type>
  1308 + <length>-1</length>
  1309 + <precision>-1</precision>
  1310 + <replace>N</replace>
  1311 + </field> </fields> <cluster_schema/>
  1312 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1313 + <xloc>726</xloc>
  1314 + <yloc>1005</yloc>
  1315 + <draw>Y</draw>
  1316 + </GUI>
  1317 + </step>
  1318 +
  1319 + <step>
  1320 + <name>&#x589e;&#x52a0;&#x65f6;&#x523b;&#x8868;&#x540d;&#x5b57;&#xff0c;&#x7ebf;&#x8def;&#x540d;&#x5b57;&#xff0c;&#x505c;&#x8f66;&#x573a;&#x540d;&#x5b57;</name>
  1321 + <type>DataGrid</type>
  1322 + <description/>
  1323 + <distribute>Y</distribute>
  1324 + <custom_distribution/>
  1325 + <copies>1</copies>
  1326 + <partitioning>
  1327 + <method>none</method>
  1328 + <schema_name/>
  1329 + </partitioning>
  1330 + <fields>
  1331 + </fields>
  1332 + <data>
  1333 + <line> </line>
  1334 + </data>
  1335 + <cluster_schema/>
  1336 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1337 + <xloc>110</xloc>
  1338 + <yloc>133</yloc>
  1339 + <draw>Y</draw>
  1340 + </GUI>
  1341 + </step>
  1342 +
  1343 + <step>
  1344 + <name>&#x5904;&#x7406;&#x6570;&#x636e;</name>
  1345 + <type>ScriptValueMod</type>
  1346 + <description/>
  1347 + <distribute>Y</distribute>
  1348 + <custom_distribution/>
  1349 + <copies>1</copies>
  1350 + <partitioning>
  1351 + <method>none</method>
  1352 + <schema_name/>
  1353 + </partitioning>
  1354 + <compatible>N</compatible>
  1355 + <optimizationLevel>9</optimizationLevel>
  1356 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  1357 + <jsScript_name>Script 1</jsScript_name>
  1358 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;&#x2f;&#x2f; &#x5982;&#x679c;&#x7ad9;&#x540d;&#x4e2d;&#x6709;&#x7c7b;&#x4f3c;-&#x3e;&#x7b;&#x6570;&#x5b57;&#x7d;&#xff0c;&#x4f7f;&#x7528;&#x6b63;&#x5219;&#x8868;&#x8fbe;&#x5f0f;&#x8fc7;&#x6ee4;&#x6389;&#xa;qdzname &#x3d; qdzname.replace&#x28;&#x2f;-&#x3e;&#x5c;d&#x2b;&#x2f;g,&#x27;&#x27;&#x29;&#x3b;&#xa;if &#x28;qdzname &#x21;&#x3d; &#x22;Exit&#x22; &#x26;&#x26; qdzname &#x21;&#x3d; &#x22;Enter&#x22;&#x29; &#x7b;&#xa; qdzname &#x3d; qdzname &#x2b; &#x22;&#x25;&#x22;&#x3b; &#x2f;&#x2f; &#x6a21;&#x7cca;&#x5339;&#x914d;&#x6807;&#x8bc6;&#x7b26;&#xa;&#x7d;&#xa;&#xa;&#x2f;&#x2f; sendtime&#x5904;&#x7406;&#xff0c;hhmm&#xff0c;hh&#x3a;mm&#xff0c;hh,mm&#xa;var sendtime_calcu &#x3d; sendtime.replace&#x28;&#x2f;&#x5c;s&#x2f;g, &#x22;&#x22;&#x29;&#x3b;&#xa;if &#x28;sendtime.length &#x3d;&#x3d; 5&#x29; &#x7b; &#x2f;&#x2f; &#x6700;&#x957f;&#x683c;&#x5f0f;&#xff0c;&#x5305;&#x62ec;&#x5206;&#x9694;&#x7b26;&#xff0c;&#x7edf;&#x4e00;&#x628a;&#x5206;&#x9694;&#x7b26;&#x66ff;&#x6362;&#x6210;&#x5192;&#x53f7;&#xa; sendtime_calcu &#x3d; sendtime.substr&#x28;0, 2&#x29; &#x2b; &#x22;&#x3a;&#x22; &#x2b; sendtime.substr&#x28;3, 2&#x29;&#x3b;&#xa;&#x7d; else if &#x28;sendtime.length &#x3d;&#x3d; 4&#x29; &#x7b;&#xa; if &#x28;sendtime.indexOf&#x28;&#x22;&#x3a;&#x22;&#x29; &#x3e; 0&#x29; &#x7b; &#x2f;&#x2f; &#x5192;&#x53f7;&#x5206;&#x9694;&#xff0c;&#x65e0;&#x9700;&#x4fee;&#x6539;&#xa; sendtime_calcu &#x3d; sendtime&#x3b;&#xa; &#x7d; else if &#x28;sendtime.indexOf&#x28;&#x22;,&#x22;&#x29; &#x3e; 0&#x29; &#x7b; &#x2f;&#x2f; &#x9017;&#x53f7;&#x5206;&#x9694;&#xff0c;&#x6539;&#x6210;&#x5192;&#x53f7;&#x5206;&#x9694;&#xa; sendtime_calcu &#x3d; sendtime.substr&#x28;0, 1&#x29; &#x2b; &#x22;&#x3a;&#x22; &#x2b; sendtime.substr&#x28;2, 2&#x29;&#x3b;&#xa; &#x7d; else &#x7b; &#x2f;&#x2f; &#x65e0;&#x5206;&#x9694;&#x7b26;&#xff0c;&#x6539;&#x6210;&#x5192;&#x53f7;&#x5206;&#x9694;&#xa; sendtime_calcu &#x3d; sendtime.substr&#x28;0, 2&#x29; &#x2b; &#x22;&#x3a;&#x22; &#x2b; sendtime.substr&#x28;2, 2&#x29;&#x3b;&#xa; &#x7d;&#xa;&#x7d; else if &#x28;sendtime.length &#x3d;&#x3d; 3&#x29; &#x7b; &#x2f;&#x2f; &#x65e0;&#x5206;&#x9694;&#x7b26;&#xff0c;&#x6539;&#x6210;&#x5192;&#x53f7;&#x5206;&#x9694;&#xa; sendtime_calcu &#x3d; sendtime.substr&#x28;0, 1&#x29; &#x2b; &#x22;&#x3a;&#x22; &#x2b; sendtime.substr&#x28;1, 2&#x29;&#x3b;&#xa;&#x7d;&#xa;&#xa;&#x2f;&#x2f; &#x5168;&#x90e8;&#x4fee;&#x6b63;&#x5b8c;&#x6bd5;&#x540e;&#xff0c;&#x5982;&#x679c;&#x957f;&#x5ea6;&#x4e0d;&#x662f;5&#xff0c;&#x524d;&#x9762;&#x8865;0&#xa;if &#x28;sendtime_calcu.length &#x21;&#x3d; 5&#x29; &#x7b;&#xa; sendtime_calcu &#x3d; &#x22;0&#x22; &#x2b; sendtime_calcu&#x3b;&#xa;&#x7d;&#xa;&#xa;&#x2f;&#x2f; &#x8bbe;&#x7f6e;&#x5206;&#x73ed;&#xa;var isfb &#x3d; 0&#x3b;&#xa;&#xa;&#x2f;&#x2f; &#x8bbe;&#x7f6e;&#x505c;&#x9a76;&#xa;var ists &#x3d; 0&#x3b;&#xa;&#xa;&#x2f;&#x2f; &#x8bbe;&#x7f6e;isCanceled&#xa;var iscanceled &#x3d; 0&#x3b;</jsScript_script>
  1359 + </jsScript> </jsScripts> <fields> <field> <name>qdzname</name>
  1360 + <rename>qdzname</rename>
  1361 + <type>String</type>
  1362 + <length>-1</length>
  1363 + <precision>-1</precision>
  1364 + <replace>Y</replace>
  1365 + </field> <field> <name>isfb</name>
  1366 + <rename>isfb</rename>
  1367 + <type>Integer</type>
  1368 + <length>-1</length>
  1369 + <precision>-1</precision>
  1370 + <replace>N</replace>
  1371 + </field> <field> <name>iscanceled</name>
  1372 + <rename>iscanceled</rename>
  1373 + <type>Integer</type>
  1374 + <length>-1</length>
  1375 + <precision>-1</precision>
  1376 + <replace>N</replace>
  1377 + </field> <field> <name>sendtime_calcu</name>
  1378 + <rename>sendtime_calcu</rename>
  1379 + <type>String</type>
  1380 + <length>-1</length>
  1381 + <precision>-1</precision>
  1382 + <replace>N</replace>
  1383 + </field> <field> <name>ists</name>
  1384 + <rename>ists</rename>
  1385 + <type>Integer</type>
  1386 + <length>-1</length>
  1387 + <precision>-1</precision>
  1388 + <replace>N</replace>
  1389 + </field> </fields> <cluster_schema/>
  1390 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1391 + <xloc>788</xloc>
  1392 + <yloc>44</yloc>
  1393 + <draw>Y</draw>
  1394 + </GUI>
  1395 + </step>
  1396 +
  1397 + <step>
  1398 + <name>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</name>
  1399 + <type>SelectValues</type>
  1400 + <description/>
  1401 + <distribute>Y</distribute>
  1402 + <custom_distribution/>
  1403 + <copies>1</copies>
  1404 + <partitioning>
  1405 + <method>none</method>
  1406 + <schema_name/>
  1407 + </partitioning>
  1408 + <fields> <field> <name>Road sign</name>
  1409 + <rename>lp</rename>
  1410 + <length>-2</length>
  1411 + <precision>-2</precision>
  1412 + </field> <field> <name>&#x7ad9;&#x70b9;&#x540d;&#x79f0;</name>
  1413 + <rename>qdzname</rename>
  1414 + <length>-2</length>
  1415 + <precision>-2</precision>
  1416 + </field> <field> <name>Departure time</name>
  1417 + <rename>sendtime</rename>
  1418 + <length>-2</length>
  1419 + <precision>-2</precision>
  1420 + </field> <select_unspecified>Y</select_unspecified>
  1421 + </fields> <cluster_schema/>
  1422 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1423 + <xloc>444</xloc>
  1424 + <yloc>131</yloc>
  1425 + <draw>Y</draw>
  1426 + </GUI>
  1427 + </step>
  1428 +
  1429 + <step>
  1430 + <name>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;1</name>
  1431 + <type>FilterRows</type>
  1432 + <description/>
  1433 + <distribute>Y</distribute>
  1434 + <custom_distribution/>
  1435 + <copies>1</copies>
  1436 + <partitioning>
  1437 + <method>none</method>
  1438 + <schema_name/>
  1439 + </partitioning>
  1440 +<send_true_to>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</send_true_to>
  1441 +<send_false_to>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</send_false_to>
  1442 + <compare>
  1443 +<condition>
  1444 + <negated>N</negated>
  1445 + <leftvalue>bctype</leftvalue>
  1446 + <function>&#x3d;</function>
  1447 + <rightvalue/>
  1448 + <value><name>constant</name><type>String</type><text>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</text><length>-1</length><precision>-1</precision><isnull>N</isnull><mask/></value> </condition>
  1449 + </compare>
  1450 + <cluster_schema/>
  1451 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1452 + <xloc>860</xloc>
  1453 + <yloc>401</yloc>
  1454 + <draw>Y</draw>
  1455 + </GUI>
  1456 + </step>
  1457 +
  1458 + <step>
  1459 + <name>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</name>
  1460 + <type>FilterRows</type>
  1461 + <description/>
  1462 + <distribute>Y</distribute>
  1463 + <custom_distribution/>
  1464 + <copies>1</copies>
  1465 + <partitioning>
  1466 + <method>none</method>
  1467 + <schema_name/>
  1468 + </partitioning>
  1469 +<send_true_to>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</send_true_to>
  1470 +<send_false_to>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</send_false_to>
  1471 + <compare>
  1472 +<condition>
  1473 + <negated>N</negated>
  1474 + <leftvalue>bctype</leftvalue>
  1475 + <function>&#x3d;</function>
  1476 + <rightvalue/>
  1477 + <value><name>constant</name><type>String</type><text>&#x51fa;&#x573a;</text><length>-1</length><precision>-1</precision><isnull>N</isnull><mask/></value> </condition>
  1478 + </compare>
  1479 + <cluster_schema/>
  1480 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1481 + <xloc>995</xloc>
  1482 + <yloc>503</yloc>
  1483 + <draw>Y</draw>
  1484 + </GUI>
  1485 + </step>
  1486 +
  1487 + <step>
  1488 + <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail</name>
  1489 + <type>InsertUpdate</type>
  1490 + <description/>
  1491 + <distribute>Y</distribute>
  1492 + <custom_distribution/>
  1493 + <copies>1</copies>
  1494 + <partitioning>
  1495 + <method>none</method>
  1496 + <schema_name/>
  1497 + </partitioning>
  1498 + <connection>control_jndi</connection>
  1499 + <commit>100</commit>
  1500 + <update_bypassed>N</update_bypassed>
  1501 + <lookup>
  1502 + <schema/>
  1503 + <table>bsth_c_s_ttinfo_detail</table>
  1504 + <key>
  1505 + <name>xlid</name>
  1506 + <field>xl</field>
  1507 + <condition>&#x3d;</condition>
  1508 + <name2/>
  1509 + </key>
  1510 + <key>
  1511 + <name>ttid</name>
  1512 + <field>ttinfo</field>
  1513 + <condition>&#x3d;</condition>
  1514 + <name2/>
  1515 + </key>
  1516 + <key>
  1517 + <name>lpid</name>
  1518 + <field>lp</field>
  1519 + <condition>&#x3d;</condition>
  1520 + <name2/>
  1521 + </key>
  1522 + <key>
  1523 + <name>fcno</name>
  1524 + <field>fcno</field>
  1525 + <condition>&#x3d;</condition>
  1526 + <name2/>
  1527 + </key>
  1528 + <key>
  1529 + <name>bcs</name>
  1530 + <field>bcs</field>
  1531 + <condition>&#x3d;</condition>
  1532 + <name2/>
  1533 + </key>
  1534 + <value>
  1535 + <name>lp</name>
  1536 + <rename>lpid</rename>
  1537 + <update>Y</update>
  1538 + </value>
  1539 + <value>
  1540 + <name>bc_type</name>
  1541 + <rename>bctype_code</rename>
  1542 + <update>Y</update>
  1543 + </value>
  1544 + <value>
  1545 + <name>bcs</name>
  1546 + <rename>bcs</rename>
  1547 + <update>Y</update>
  1548 + </value>
  1549 + <value>
  1550 + <name>bcsj</name>
  1551 + <rename>bcsj</rename>
  1552 + <update>Y</update>
  1553 + </value>
  1554 + <value>
  1555 + <name>fcno</name>
  1556 + <rename>fcno</rename>
  1557 + <update>Y</update>
  1558 + </value>
  1559 + <value>
  1560 + <name>jhlc</name>
  1561 + <rename>jhlc</rename>
  1562 + <update>Y</update>
  1563 + </value>
  1564 + <value>
  1565 + <name>fcsj</name>
  1566 + <rename>sendtime_calcu</rename>
  1567 + <update>Y</update>
  1568 + </value>
  1569 + <value>
  1570 + <name>ttinfo</name>
  1571 + <rename>ttid</rename>
  1572 + <update>Y</update>
  1573 + </value>
  1574 + <value>
  1575 + <name>xl</name>
  1576 + <rename>xlid</rename>
  1577 + <update>Y</update>
  1578 + </value>
  1579 + <value>
  1580 + <name>qdz</name>
  1581 + <rename>qdzid</rename>
  1582 + <update>Y</update>
  1583 + </value>
  1584 + <value>
  1585 + <name>zdz</name>
  1586 + <rename>zdzid</rename>
  1587 + <update>Y</update>
  1588 + </value>
  1589 + <value>
  1590 + <name>xl_dir</name>
  1591 + <rename>sxx</rename>
  1592 + <update>Y</update>
  1593 + </value>
  1594 + <value>
  1595 + <name>isfb</name>
  1596 + <rename>isfb</rename>
  1597 + <update>Y</update>
  1598 + </value>
  1599 + <value>
  1600 + <name>qdz_code</name>
  1601 + <rename>qdzcode</rename>
  1602 + <update>Y</update>
  1603 + </value>
  1604 + <value>
  1605 + <name>qdz_name</name>
  1606 + <rename>qdzname_</rename>
  1607 + <update>Y</update>
  1608 + </value>
  1609 + <value>
  1610 + <name>zdz_code</name>
  1611 + <rename>zdzcode</rename>
  1612 + <update>Y</update>
  1613 + </value>
  1614 + <value>
  1615 + <name>zdz_name</name>
  1616 + <rename>zdzname</rename>
  1617 + <update>Y</update>
  1618 + </value>
  1619 + <value>
  1620 + <name>ists</name>
  1621 + <rename>ists</rename>
  1622 + <update>Y</update>
  1623 + </value>
  1624 + <value>
  1625 + <name>line_version</name>
  1626 + <rename>version</rename>
  1627 + <update>Y</update>
  1628 + </value>
  1629 + </lookup>
  1630 + <cluster_schema/>
  1631 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1632 + <xloc>143</xloc>
  1633 + <yloc>860</yloc>
  1634 + <draw>Y</draw>
  1635 + </GUI>
  1636 + </step>
  1637 +
  1638 + <step>
  1639 + <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail 2</name>
  1640 + <type>InsertUpdate</type>
  1641 + <description/>
  1642 + <distribute>Y</distribute>
  1643 + <custom_distribution/>
  1644 + <copies>1</copies>
  1645 + <partitioning>
  1646 + <method>none</method>
  1647 + <schema_name/>
  1648 + </partitioning>
  1649 + <connection>control_jndi</connection>
  1650 + <commit>100</commit>
  1651 + <update_bypassed>N</update_bypassed>
  1652 + <lookup>
  1653 + <schema/>
  1654 + <table>bsth_c_s_ttinfo_detail</table>
  1655 + <key>
  1656 + <name>xlid</name>
  1657 + <field>xl</field>
  1658 + <condition>&#x3d;</condition>
  1659 + <name2/>
  1660 + </key>
  1661 + <key>
  1662 + <name>ttid</name>
  1663 + <field>ttinfo</field>
  1664 + <condition>&#x3d;</condition>
  1665 + <name2/>
  1666 + </key>
  1667 + <key>
  1668 + <name>lpid</name>
  1669 + <field>lp</field>
  1670 + <condition>&#x3d;</condition>
  1671 + <name2/>
  1672 + </key>
  1673 + <key>
  1674 + <name>fcno</name>
  1675 + <field>fcno</field>
  1676 + <condition>&#x3d;</condition>
  1677 + <name2/>
  1678 + </key>
  1679 + <key>
  1680 + <name>bcs</name>
  1681 + <field>bcs</field>
  1682 + <condition>&#x3d;</condition>
  1683 + <name2/>
  1684 + </key>
  1685 + <value>
  1686 + <name>tcc</name>
  1687 + <rename>qdzid</rename>
  1688 + <update>Y</update>
  1689 + </value>
  1690 + <value>
  1691 + <name>zdz</name>
  1692 + <rename>zdzid</rename>
  1693 + <update>Y</update>
  1694 + </value>
  1695 + <value>
  1696 + <name>xl</name>
  1697 + <rename>xlid</rename>
  1698 + <update>Y</update>
  1699 + </value>
  1700 + <value>
  1701 + <name>ttinfo</name>
  1702 + <rename>ttid</rename>
  1703 + <update>Y</update>
  1704 + </value>
  1705 + <value>
  1706 + <name>xl_dir</name>
  1707 + <rename>sxx</rename>
  1708 + <update>Y</update>
  1709 + </value>
  1710 + <value>
  1711 + <name>lp</name>
  1712 + <rename>lpid</rename>
  1713 + <update>Y</update>
  1714 + </value>
  1715 + <value>
  1716 + <name>jhlc</name>
  1717 + <rename>out_mileage</rename>
  1718 + <update>Y</update>
  1719 + </value>
  1720 + <value>
  1721 + <name>fcsj</name>
  1722 + <rename>sendtime_calcu</rename>
  1723 + <update>Y</update>
  1724 + </value>
  1725 + <value>
  1726 + <name>bcsj</name>
  1727 + <rename>out_time</rename>
  1728 + <update>Y</update>
  1729 + </value>
  1730 + <value>
  1731 + <name>bcs</name>
  1732 + <rename>bcs</rename>
  1733 + <update>Y</update>
  1734 + </value>
  1735 + <value>
  1736 + <name>fcno</name>
  1737 + <rename>fcno</rename>
  1738 + <update>Y</update>
  1739 + </value>
  1740 + <value>
  1741 + <name>bc_type</name>
  1742 + <rename>bctype_code</rename>
  1743 + <update>Y</update>
  1744 + </value>
  1745 + <value>
  1746 + <name>isfb</name>
  1747 + <rename>isfb</rename>
  1748 + <update>Y</update>
  1749 + </value>
  1750 + <value>
  1751 + <name>qdz_code</name>
  1752 + <rename>qdzcode</rename>
  1753 + <update>Y</update>
  1754 + </value>
  1755 + <value>
  1756 + <name>qdz_name</name>
  1757 + <rename>tn</rename>
  1758 + <update>Y</update>
  1759 + </value>
  1760 + <value>
  1761 + <name>zdz_code</name>
  1762 + <rename>zdzcode</rename>
  1763 + <update>Y</update>
  1764 + </value>
  1765 + <value>
  1766 + <name>zdz_name</name>
  1767 + <rename>zdzname_</rename>
  1768 + <update>Y</update>
  1769 + </value>
  1770 + <value>
  1771 + <name>ists</name>
  1772 + <rename>ists</rename>
  1773 + <update>Y</update>
  1774 + </value>
  1775 + <value>
  1776 + <name>line_version</name>
  1777 + <rename>version</rename>
  1778 + <update>Y</update>
  1779 + </value>
  1780 + </lookup>
  1781 + <cluster_schema/>
  1782 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1783 + <xloc>340</xloc>
  1784 + <yloc>1087</yloc>
  1785 + <draw>Y</draw>
  1786 + </GUI>
  1787 + </step>
  1788 +
  1789 + <step>
  1790 + <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail 3</name>
  1791 + <type>InsertUpdate</type>
  1792 + <description/>
  1793 + <distribute>Y</distribute>
  1794 + <custom_distribution/>
  1795 + <copies>1</copies>
  1796 + <partitioning>
  1797 + <method>none</method>
  1798 + <schema_name/>
  1799 + </partitioning>
  1800 + <connection>control_jndi</connection>
  1801 + <commit>100</commit>
  1802 + <update_bypassed>N</update_bypassed>
  1803 + <lookup>
  1804 + <schema/>
  1805 + <table>bsth_c_s_ttinfo_detail</table>
  1806 + <key>
  1807 + <name>xlid</name>
  1808 + <field>xl</field>
  1809 + <condition>&#x3d;</condition>
  1810 + <name2/>
  1811 + </key>
  1812 + <key>
  1813 + <name>ttid</name>
  1814 + <field>ttinfo</field>
  1815 + <condition>&#x3d;</condition>
  1816 + <name2/>
  1817 + </key>
  1818 + <key>
  1819 + <name>lpid</name>
  1820 + <field>lp</field>
  1821 + <condition>&#x3d;</condition>
  1822 + <name2/>
  1823 + </key>
  1824 + <key>
  1825 + <name>fcno</name>
  1826 + <field>fcno</field>
  1827 + <condition>&#x3d;</condition>
  1828 + <name2/>
  1829 + </key>
  1830 + <key>
  1831 + <name>bcs</name>
  1832 + <field>bcs</field>
  1833 + <condition>&#x3d;</condition>
  1834 + <name2/>
  1835 + </key>
  1836 + <value>
  1837 + <name>fcno</name>
  1838 + <rename>fcno</rename>
  1839 + <update>Y</update>
  1840 + </value>
  1841 + <value>
  1842 + <name>bcs</name>
  1843 + <rename>bcs</rename>
  1844 + <update>Y</update>
  1845 + </value>
  1846 + <value>
  1847 + <name>xl</name>
  1848 + <rename>xlid</rename>
  1849 + <update>Y</update>
  1850 + </value>
  1851 + <value>
  1852 + <name>ttinfo</name>
  1853 + <rename>ttid</rename>
  1854 + <update>Y</update>
  1855 + </value>
  1856 + <value>
  1857 + <name>lp</name>
  1858 + <rename>lpid</rename>
  1859 + <update>Y</update>
  1860 + </value>
  1861 + <value>
  1862 + <name>bc_type</name>
  1863 + <rename>bctype_code</rename>
  1864 + <update>Y</update>
  1865 + </value>
  1866 + <value>
  1867 + <name>bcsj</name>
  1868 + <rename>parade_time</rename>
  1869 + <update>Y</update>
  1870 + </value>
  1871 + <value>
  1872 + <name>jhlc</name>
  1873 + <rename>parade_mileage</rename>
  1874 + <update>Y</update>
  1875 + </value>
  1876 + <value>
  1877 + <name>fcsj</name>
  1878 + <rename>sendtime_calcu</rename>
  1879 + <update>Y</update>
  1880 + </value>
  1881 + <value>
  1882 + <name>xl_dir</name>
  1883 + <rename>sxx2</rename>
  1884 + <update>Y</update>
  1885 + </value>
  1886 + <value>
  1887 + <name>qdz</name>
  1888 + <rename>qdzid</rename>
  1889 + <update>Y</update>
  1890 + </value>
  1891 + <value>
  1892 + <name>tcc</name>
  1893 + <rename>zdzid</rename>
  1894 + <update>Y</update>
  1895 + </value>
  1896 + <value>
  1897 + <name>isfb</name>
  1898 + <rename>isfb</rename>
  1899 + <update>Y</update>
  1900 + </value>
  1901 + <value>
  1902 + <name>qdz_code</name>
  1903 + <rename>qdzcode</rename>
  1904 + <update>Y</update>
  1905 + </value>
  1906 + <value>
  1907 + <name>qdz_name</name>
  1908 + <rename>qname</rename>
  1909 + <update>Y</update>
  1910 + </value>
  1911 + <value>
  1912 + <name>zdz_code</name>
  1913 + <rename>zdzcode</rename>
  1914 + <update>Y</update>
  1915 + </value>
  1916 + <value>
  1917 + <name>zdz_name</name>
  1918 + <rename>tn</rename>
  1919 + <update>Y</update>
  1920 + </value>
  1921 + <value>
  1922 + <name>ists</name>
  1923 + <rename>ists</rename>
  1924 + <update>Y</update>
  1925 + </value>
  1926 + <value>
  1927 + <name>line_version</name>
  1928 + <rename>version</rename>
  1929 + <update>Y</update>
  1930 + </value>
  1931 + </lookup>
  1932 + <cluster_schema/>
  1933 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1934 + <xloc>845</xloc>
  1935 + <yloc>899</yloc>
  1936 + <draw>Y</draw>
  1937 + </GUI>
  1938 + </step>
  1939 +
  1940 + <step>
  1941 + <name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</name>
  1942 + <type>ExcelInput</type>
  1943 + <description/>
  1944 + <distribute>N</distribute>
  1945 + <custom_distribution/>
  1946 + <copies>1</copies>
  1947 + <partitioning>
  1948 + <method>none</method>
  1949 + <schema_name/>
  1950 + </partitioning>
  1951 + <header>Y</header>
  1952 + <noempty>Y</noempty>
  1953 + <stoponempty>N</stoponempty>
  1954 + <filefield/>
  1955 + <sheetfield/>
  1956 + <sheetrownumfield/>
  1957 + <rownumfield/>
  1958 + <sheetfield/>
  1959 + <filefield/>
  1960 + <limit>0</limit>
  1961 + <encoding/>
  1962 + <add_to_result_filenames>Y</add_to_result_filenames>
  1963 + <accept_filenames>N</accept_filenames>
  1964 + <accept_field/>
  1965 + <accept_stepname/>
  1966 + <file>
  1967 + <name/>
  1968 + <filemask/>
  1969 + <exclude_filemask/>
  1970 + <file_required>N</file_required>
  1971 + <include_subfolders>N</include_subfolders>
  1972 + </file>
  1973 + <fields>
  1974 + </fields>
  1975 + <sheets>
  1976 + <sheet>
  1977 + <name/>
  1978 + <startrow>0</startrow>
  1979 + <startcol>0</startcol>
  1980 + </sheet>
  1981 + </sheets>
  1982 + <strict_types>N</strict_types>
  1983 + <error_ignored>N</error_ignored>
  1984 + <error_line_skipped>N</error_line_skipped>
  1985 + <bad_line_files_destination_directory/>
  1986 + <bad_line_files_extension>warning</bad_line_files_extension>
  1987 + <error_line_files_destination_directory/>
  1988 + <error_line_files_extension>error</error_line_files_extension>
  1989 + <line_number_files_destination_directory/>
  1990 + <line_number_files_extension>line</line_number_files_extension>
  1991 + <shortFileFieldName/>
  1992 + <pathFieldName/>
  1993 + <hiddenFieldName/>
  1994 + <lastModificationTimeFieldName/>
  1995 + <uriNameFieldName/>
  1996 + <rootUriNameFieldName/>
  1997 + <extensionFieldName/>
  1998 + <sizeFieldName/>
  1999 + <spreadsheet_type>JXL</spreadsheet_type>
  2000 + <cluster_schema/>
  2001 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2002 + <xloc>112</xloc>
  2003 + <yloc>44</yloc>
  2004 + <draw>Y</draw>
  2005 + </GUI>
  2006 + </step>
  2007 +
  2008 + <step>
  2009 + <name>&#x66f4;&#x65b0;&#x65f6;&#x523b;&#x8868;&#x4e3b;&#x8868;&#x7248;&#x672c;</name>
  2010 + <type>Update</type>
  2011 + <description/>
  2012 + <distribute>Y</distribute>
  2013 + <custom_distribution/>
  2014 + <copies>1</copies>
  2015 + <partitioning>
  2016 + <method>none</method>
  2017 + <schema_name/>
  2018 + </partitioning>
  2019 + <connection>control_jndi</connection>
  2020 + <skip_lookup>N</skip_lookup>
  2021 + <commit>100</commit>
  2022 + <use_batch>N</use_batch>
  2023 + <error_ignored>N</error_ignored>
  2024 + <ignore_flag_field/>
  2025 + <lookup>
  2026 + <schema/>
  2027 + <table>bsth_c_s_ttinfo</table>
  2028 + <key>
  2029 + <name>ttid</name>
  2030 + <field>id</field>
  2031 + <condition>&#x3d;</condition>
  2032 + <name2/>
  2033 + </key>
  2034 + <value>
  2035 + <name>line_version</name>
  2036 + <rename>version</rename>
  2037 + </value>
  2038 + </lookup>
  2039 + <cluster_schema/>
  2040 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2041 + <xloc>863</xloc>
  2042 + <yloc>338</yloc>
  2043 + <draw>Y</draw>
  2044 + </GUI>
  2045 + </step>
  2046 +
  2047 + <step>
  2048 + <name>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;1</name>
  2049 + <type>DBLookup</type>
  2050 + <description/>
  2051 + <distribute>Y</distribute>
  2052 + <custom_distribution/>
  2053 + <copies>1</copies>
  2054 + <partitioning>
  2055 + <method>none</method>
  2056 + <schema_name/>
  2057 + </partitioning>
  2058 + <connection>control_jndi</connection>
  2059 + <cache>N</cache>
  2060 + <cache_load_all>N</cache_load_all>
  2061 + <cache_size>0</cache_size>
  2062 + <lookup>
  2063 + <schema/>
  2064 + <table>bsth_c_car_park</table>
  2065 + <orderby/>
  2066 + <fail_on_multiple>N</fail_on_multiple>
  2067 + <eat_row_on_failure>N</eat_row_on_failure>
  2068 + <key>
  2069 + <name>tccname_</name>
  2070 + <field>park_name</field>
  2071 + <condition>&#x3d;</condition>
  2072 + <name2/>
  2073 + </key>
  2074 + <value>
  2075 + <name>id</name>
  2076 + <rename>qdzid</rename>
  2077 + <default/>
  2078 + <type>Integer</type>
  2079 + </value>
  2080 + <value>
  2081 + <name>park_code</name>
  2082 + <rename>qdzcode</rename>
  2083 + <default/>
  2084 + <type>String</type>
  2085 + </value>
  2086 + <value>
  2087 + <name>park_name</name>
  2088 + <rename>tn</rename>
  2089 + <default/>
  2090 + <type>String</type>
  2091 + </value>
  2092 + </lookup>
  2093 + <cluster_schema/>
  2094 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2095 + <xloc>755</xloc>
  2096 + <yloc>504</yloc>
  2097 + <draw>Y</draw>
  2098 + </GUI>
  2099 + </step>
  2100 +
  2101 + <step>
  2102 + <name>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;2</name>
  2103 + <type>DBLookup</type>
  2104 + <description/>
  2105 + <distribute>Y</distribute>
  2106 + <custom_distribution/>
  2107 + <copies>1</copies>
  2108 + <partitioning>
  2109 + <method>none</method>
  2110 + <schema_name/>
  2111 + </partitioning>
  2112 + <connection>control_jndi</connection>
  2113 + <cache>N</cache>
  2114 + <cache_load_all>N</cache_load_all>
  2115 + <cache_size>0</cache_size>
  2116 + <lookup>
  2117 + <schema/>
  2118 + <table>bsth_c_car_park</table>
  2119 + <orderby/>
  2120 + <fail_on_multiple>N</fail_on_multiple>
  2121 + <eat_row_on_failure>N</eat_row_on_failure>
  2122 + <key>
  2123 + <name>tccname_</name>
  2124 + <field>park_name</field>
  2125 + <condition>&#x3d;</condition>
  2126 + <name2/>
  2127 + </key>
  2128 + <value>
  2129 + <name>id</name>
  2130 + <rename>zdzid</rename>
  2131 + <default/>
  2132 + <type>Integer</type>
  2133 + </value>
  2134 + <value>
  2135 + <name>park_code</name>
  2136 + <rename>zdzcode</rename>
  2137 + <default/>
  2138 + <type>String</type>
  2139 + </value>
  2140 + <value>
  2141 + <name>park_name</name>
  2142 + <rename>tn</rename>
  2143 + <default/>
  2144 + <type>String</type>
  2145 + </value>
  2146 + </lookup>
  2147 + <cluster_schema/>
  2148 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2149 + <xloc>887</xloc>
  2150 + <yloc>608</yloc>
  2151 + <draw>Y</draw>
  2152 + </GUI>
  2153 + </step>
  2154 +
  2155 + <step>
  2156 + <name>&#x67e5;&#x627e;&#x51fa;&#x573a;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</name>
  2157 + <type>DBLookup</type>
  2158 + <description/>
  2159 + <distribute>Y</distribute>
  2160 + <custom_distribution/>
  2161 + <copies>1</copies>
  2162 + <partitioning>
  2163 + <method>none</method>
  2164 + <schema_name/>
  2165 + </partitioning>
  2166 + <connection>control_jndi</connection>
  2167 + <cache>N</cache>
  2168 + <cache_load_all>N</cache_load_all>
  2169 + <cache_size>0</cache_size>
  2170 + <lookup>
  2171 + <schema/>
  2172 + <table>bsth_c_ls_stationroute</table>
  2173 + <orderby/>
  2174 + <fail_on_multiple>N</fail_on_multiple>
  2175 + <eat_row_on_failure>N</eat_row_on_failure>
  2176 + <key>
  2177 + <name>xlid</name>
  2178 + <field>line</field>
  2179 + <condition>&#x3d;</condition>
  2180 + <name2/>
  2181 + </key>
  2182 + <key>
  2183 + <name>version</name>
  2184 + <field>versions</field>
  2185 + <condition>&#x3d;</condition>
  2186 + <name2/>
  2187 + </key>
  2188 + <key>
  2189 + <name>zdzname</name>
  2190 + <field>station_name</field>
  2191 + <condition>LIKE</condition>
  2192 + <name2/>
  2193 + </key>
  2194 + <key>
  2195 + <name>endZdtype</name>
  2196 + <field>station_mark</field>
  2197 + <condition>&#x3d;</condition>
  2198 + <name2/>
  2199 + </key>
  2200 + <key>
  2201 + <name>destory</name>
  2202 + <field>destroy</field>
  2203 + <condition>&#x3d;</condition>
  2204 + <name2/>
  2205 + </key>
  2206 + <value>
  2207 + <name>station</name>
  2208 + <rename>zdzid</rename>
  2209 + <default/>
  2210 + <type>Integer</type>
  2211 + </value>
  2212 + <value>
  2213 + <name>directions</name>
  2214 + <rename>sxx</rename>
  2215 + <default/>
  2216 + <type>Integer</type>
  2217 + </value>
  2218 + <value>
  2219 + <name>station_code</name>
  2220 + <rename>zdzcode</rename>
  2221 + <default/>
  2222 + <type>String</type>
  2223 + </value>
  2224 + <value>
  2225 + <name>station_name</name>
  2226 + <rename>zdzname_</rename>
  2227 + <default/>
  2228 + <type>String</type>
  2229 + </value>
  2230 + </lookup>
  2231 + <cluster_schema/>
  2232 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2233 + <xloc>329</xloc>
  2234 + <yloc>505</yloc>
  2235 + <draw>Y</draw>
  2236 + </GUI>
  2237 + </step>
  2238 +
  2239 + <step>
  2240 + <name>&#x67e5;&#x627e;&#x6240;&#x6709;&#x7ebf;&#x8def;&#x4e0a;&#x4e0b;&#x884c;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
  2241 + <type>DBLookup</type>
  2242 + <description/>
  2243 + <distribute>Y</distribute>
  2244 + <custom_distribution/>
  2245 + <copies>1</copies>
  2246 + <partitioning>
  2247 + <method>none</method>
  2248 + <schema_name/>
  2249 + </partitioning>
  2250 + <connection>control_jndi</connection>
  2251 + <cache>N</cache>
  2252 + <cache_load_all>N</cache_load_all>
  2253 + <cache_size>0</cache_size>
  2254 + <lookup>
  2255 + <schema/>
  2256 + <table>bsth_c_line_information</table>
  2257 + <orderby/>
  2258 + <fail_on_multiple>N</fail_on_multiple>
  2259 + <eat_row_on_failure>N</eat_row_on_failure>
  2260 + <key>
  2261 + <name>xlid</name>
  2262 + <field>line</field>
  2263 + <condition>&#x3d;</condition>
  2264 + <name2/>
  2265 + </key>
  2266 + <value>
  2267 + <name>up_mileage</name>
  2268 + <rename>up_mileage</rename>
  2269 + <default/>
  2270 + <type>Number</type>
  2271 + </value>
  2272 + <value>
  2273 + <name>down_mileage</name>
  2274 + <rename>down_mileage</rename>
  2275 + <default/>
  2276 + <type>Number</type>
  2277 + </value>
  2278 + <value>
  2279 + <name>up_travel_time</name>
  2280 + <rename>up_travel_time</rename>
  2281 + <default/>
  2282 + <type>Number</type>
  2283 + </value>
  2284 + <value>
  2285 + <name>down_travel_time</name>
  2286 + <rename>down_travel_time</rename>
  2287 + <default/>
  2288 + <type>Number</type>
  2289 + </value>
  2290 + <value>
  2291 + <name>early_start_time</name>
  2292 + <rename>early_start_time</rename>
  2293 + <default/>
  2294 + <type>String</type>
  2295 + </value>
  2296 + <value>
  2297 + <name>early_end_time</name>
  2298 + <rename>early_end_time</rename>
  2299 + <default/>
  2300 + <type>String</type>
  2301 + </value>
  2302 + <value>
  2303 + <name>early_up_time</name>
  2304 + <rename>early_up_time</rename>
  2305 + <default/>
  2306 + <type>Number</type>
  2307 + </value>
  2308 + <value>
  2309 + <name>early_down_time</name>
  2310 + <rename>early_down_time</rename>
  2311 + <default/>
  2312 + <type>Number</type>
  2313 + </value>
  2314 + <value>
  2315 + <name>late_start_time</name>
  2316 + <rename>late_start_time</rename>
  2317 + <default/>
  2318 + <type>String</type>
  2319 + </value>
  2320 + <value>
  2321 + <name>late_end_time</name>
  2322 + <rename>late_end_time</rename>
  2323 + <default/>
  2324 + <type>String</type>
  2325 + </value>
  2326 + <value>
  2327 + <name>late_up_time</name>
  2328 + <rename>late_up_time</rename>
  2329 + <default/>
  2330 + <type>Number</type>
  2331 + </value>
  2332 + <value>
  2333 + <name>late_down_time</name>
  2334 + <rename>late_down_time</rename>
  2335 + <default/>
  2336 + <type>Number</type>
  2337 + </value>
  2338 + </lookup>
  2339 + <cluster_schema/>
  2340 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2341 + <xloc>149</xloc>
  2342 + <yloc>581</yloc>
  2343 + <draw>Y</draw>
  2344 + </GUI>
  2345 + </step>
  2346 +
  2347 + <step>
  2348 + <name>&#x67e5;&#x627e;&#x65f6;&#x523b;&#x8868;&#x57fa;&#x7840;&#x4fe1;&#x606f;&#x5173;&#x8054;</name>
  2349 + <type>DBLookup</type>
  2350 + <description/>
  2351 + <distribute>Y</distribute>
  2352 + <custom_distribution/>
  2353 + <copies>1</copies>
  2354 + <partitioning>
  2355 + <method>none</method>
  2356 + <schema_name/>
  2357 + </partitioning>
  2358 + <connection>control_jndi</connection>
  2359 + <cache>N</cache>
  2360 + <cache_load_all>N</cache_load_all>
  2361 + <cache_size>0</cache_size>
  2362 + <lookup>
  2363 + <schema/>
  2364 + <table>bsth_c_s_ttinfo</table>
  2365 + <orderby/>
  2366 + <fail_on_multiple>N</fail_on_multiple>
  2367 + <eat_row_on_failure>N</eat_row_on_failure>
  2368 + <key>
  2369 + <name>xlid</name>
  2370 + <field>xl</field>
  2371 + <condition>&#x3d;</condition>
  2372 + <name2/>
  2373 + </key>
  2374 + <key>
  2375 + <name>ttinfoname_</name>
  2376 + <field>name</field>
  2377 + <condition>&#x3d;</condition>
  2378 + <name2/>
  2379 + </key>
  2380 + <key>
  2381 + <name>iscanceled</name>
  2382 + <field>is_cancel</field>
  2383 + <condition>&#x3d;</condition>
  2384 + <name2/>
  2385 + </key>
  2386 + <value>
  2387 + <name>id</name>
  2388 + <rename>ttid</rename>
  2389 + <default/>
  2390 + <type>Integer</type>
  2391 + </value>
  2392 + </lookup>
  2393 + <cluster_schema/>
  2394 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2395 + <xloc>1011</xloc>
  2396 + <yloc>134</yloc>
  2397 + <draw>Y</draw>
  2398 + </GUI>
  2399 + </step>
  2400 +
  2401 + <step>
  2402 + <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x5173;&#x8054;</name>
  2403 + <type>DBLookup</type>
  2404 + <description/>
  2405 + <distribute>Y</distribute>
  2406 + <custom_distribution/>
  2407 + <copies>1</copies>
  2408 + <partitioning>
  2409 + <method>none</method>
  2410 + <schema_name/>
  2411 + </partitioning>
  2412 + <connection>control_jndi</connection>
  2413 + <cache>N</cache>
  2414 + <cache_load_all>N</cache_load_all>
  2415 + <cache_size>0</cache_size>
  2416 + <lookup>
  2417 + <schema/>
  2418 + <table>bsth_c_line</table>
  2419 + <orderby/>
  2420 + <fail_on_multiple>N</fail_on_multiple>
  2421 + <eat_row_on_failure>N</eat_row_on_failure>
  2422 + <key>
  2423 + <name>xlname_</name>
  2424 + <field>name</field>
  2425 + <condition>&#x3d;</condition>
  2426 + <name2/>
  2427 + </key>
  2428 + <key>
  2429 + <name>iscanceled</name>
  2430 + <field>destroy</field>
  2431 + <condition>&#x3d;</condition>
  2432 + <name2/>
  2433 + </key>
  2434 + <value>
  2435 + <name>id</name>
  2436 + <rename>xlid</rename>
  2437 + <default/>
  2438 + <type>Integer</type>
  2439 + </value>
  2440 + </lookup>
  2441 + <cluster_schema/>
  2442 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2443 + <xloc>1007</xloc>
  2444 + <yloc>43</yloc>
  2445 + <draw>Y</draw>
  2446 + </GUI>
  2447 + </step>
  2448 +
  2449 + <step>
  2450 + <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x51fa;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
  2451 + <type>DBLookup</type>
  2452 + <description/>
  2453 + <distribute>Y</distribute>
  2454 + <custom_distribution/>
  2455 + <copies>1</copies>
  2456 + <partitioning>
  2457 + <method>none</method>
  2458 + <schema_name/>
  2459 + </partitioning>
  2460 + <connection>control_jndi</connection>
  2461 + <cache>N</cache>
  2462 + <cache_load_all>N</cache_load_all>
  2463 + <cache_size>0</cache_size>
  2464 + <lookup>
  2465 + <schema/>
  2466 + <table>bsth_c_line_information</table>
  2467 + <orderby/>
  2468 + <fail_on_multiple>N</fail_on_multiple>
  2469 + <eat_row_on_failure>N</eat_row_on_failure>
  2470 + <key>
  2471 + <name>xlid</name>
  2472 + <field>line</field>
  2473 + <condition>&#x3d;</condition>
  2474 + <name2/>
  2475 + </key>
  2476 + <value>
  2477 + <name>up_out_timer</name>
  2478 + <rename>up_out_timer</rename>
  2479 + <default/>
  2480 + <type>Number</type>
  2481 + </value>
  2482 + <value>
  2483 + <name>up_out_mileage</name>
  2484 + <rename>up_out_mileage</rename>
  2485 + <default/>
  2486 + <type>Number</type>
  2487 + </value>
  2488 + <value>
  2489 + <name>down_out_timer</name>
  2490 + <rename>down_out_timer</rename>
  2491 + <default/>
  2492 + <type>Number</type>
  2493 + </value>
  2494 + <value>
  2495 + <name>down_out_mileage</name>
  2496 + <rename>down_out_mileage</rename>
  2497 + <default/>
  2498 + <type>Number</type>
  2499 + </value>
  2500 + </lookup>
  2501 + <cluster_schema/>
  2502 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2503 + <xloc>335</xloc>
  2504 + <yloc>763</yloc>
  2505 + <draw>Y</draw>
  2506 + </GUI>
  2507 + </step>
  2508 +
  2509 + <step>
  2510 + <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x8fdb;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
  2511 + <type>DBLookup</type>
  2512 + <description/>
  2513 + <distribute>Y</distribute>
  2514 + <custom_distribution/>
  2515 + <copies>1</copies>
  2516 + <partitioning>
  2517 + <method>none</method>
  2518 + <schema_name/>
  2519 + </partitioning>
  2520 + <connection>control_jndi</connection>
  2521 + <cache>N</cache>
  2522 + <cache_load_all>N</cache_load_all>
  2523 + <cache_size>0</cache_size>
  2524 + <lookup>
  2525 + <schema/>
  2526 + <table>bsth_c_line_information</table>
  2527 + <orderby/>
  2528 + <fail_on_multiple>N</fail_on_multiple>
  2529 + <eat_row_on_failure>N</eat_row_on_failure>
  2530 + <key>
  2531 + <name>xlid</name>
  2532 + <field>line</field>
  2533 + <condition>&#x3d;</condition>
  2534 + <name2/>
  2535 + </key>
  2536 + <value>
  2537 + <name>up_in_mileage</name>
  2538 + <rename>up_in_mileage</rename>
  2539 + <default/>
  2540 + <type>Number</type>
  2541 + </value>
  2542 + <value>
  2543 + <name>up_in_timer</name>
  2544 + <rename>up_in_timer</rename>
  2545 + <default/>
  2546 + <type>Number</type>
  2547 + </value>
  2548 + <value>
  2549 + <name>down_in_mileage</name>
  2550 + <rename>down_in_mileage</rename>
  2551 + <default/>
  2552 + <type>Number</type>
  2553 + </value>
  2554 + <value>
  2555 + <name>down_in_timer</name>
  2556 + <rename>down_in_timer</rename>
  2557 + <default/>
  2558 + <type>Number</type>
  2559 + </value>
  2560 + </lookup>
  2561 + <cluster_schema/>
  2562 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2563 + <xloc>553</xloc>
  2564 + <yloc>1004</yloc>
  2565 + <draw>Y</draw>
  2566 + </GUI>
  2567 + </step>
  2568 +
  2569 + <step>
  2570 + <name>&#x67e5;&#x627e;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;</name>
  2571 + <type>DBLookup</type>
  2572 + <description/>
  2573 + <distribute>Y</distribute>
  2574 + <custom_distribution/>
  2575 + <copies>1</copies>
  2576 + <partitioning>
  2577 + <method>none</method>
  2578 + <schema_name/>
  2579 + </partitioning>
  2580 + <connection>control_jndi</connection>
  2581 + <cache>N</cache>
  2582 + <cache_load_all>N</cache_load_all>
  2583 + <cache_size>0</cache_size>
  2584 + <lookup>
  2585 + <schema/>
  2586 + <table>bsth_c_ls_stationroute</table>
  2587 + <orderby/>
  2588 + <fail_on_multiple>N</fail_on_multiple>
  2589 + <eat_row_on_failure>N</eat_row_on_failure>
  2590 + <key>
  2591 + <name>xlid</name>
  2592 + <field>line</field>
  2593 + <condition>&#x3d;</condition>
  2594 + <name2/>
  2595 + </key>
  2596 + <key>
  2597 + <name>version</name>
  2598 + <field>versions</field>
  2599 + <condition>&#x3d;</condition>
  2600 + <name2/>
  2601 + </key>
  2602 + <key>
  2603 + <name>sxx</name>
  2604 + <field>directions</field>
  2605 + <condition>&#x3d;</condition>
  2606 + <name2/>
  2607 + </key>
  2608 + <key>
  2609 + <name>endZdtype</name>
  2610 + <field>station_mark</field>
  2611 + <condition>&#x3d;</condition>
  2612 + <name2/>
  2613 + </key>
  2614 + <key>
  2615 + <name>destory</name>
  2616 + <field>destroy</field>
  2617 + <condition>&#x3d;</condition>
  2618 + <name2/>
  2619 + </key>
  2620 + <value>
  2621 + <name>station_name</name>
  2622 + <rename>zdzname</rename>
  2623 + <default/>
  2624 + <type>String</type>
  2625 + </value>
  2626 + <value>
  2627 + <name>station</name>
  2628 + <rename>zdzid</rename>
  2629 + <default/>
  2630 + <type>Integer</type>
  2631 + </value>
  2632 + <value>
  2633 + <name>station_code</name>
  2634 + <rename>zdzcode</rename>
  2635 + <default/>
  2636 + <type>String</type>
  2637 + </value>
  2638 + </lookup>
  2639 + <cluster_schema/>
  2640 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2641 + <xloc>280</xloc>
  2642 + <yloc>404</yloc>
  2643 + <draw>Y</draw>
  2644 + </GUI>
  2645 + </step>
  2646 +
  2647 + <step>
  2648 + <name>&#x67e5;&#x627e;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</name>
  2649 + <type>DBLookup</type>
  2650 + <description/>
  2651 + <distribute>Y</distribute>
  2652 + <custom_distribution/>
  2653 + <copies>1</copies>
  2654 + <partitioning>
  2655 + <method>none</method>
  2656 + <schema_name/>
  2657 + </partitioning>
  2658 + <connection>control_jndi</connection>
  2659 + <cache>N</cache>
  2660 + <cache_load_all>N</cache_load_all>
  2661 + <cache_size>0</cache_size>
  2662 + <lookup>
  2663 + <schema/>
  2664 + <table>bsth_c_ls_stationroute</table>
  2665 + <orderby/>
  2666 + <fail_on_multiple>N</fail_on_multiple>
  2667 + <eat_row_on_failure>N</eat_row_on_failure>
  2668 + <key>
  2669 + <name>xlid</name>
  2670 + <field>line</field>
  2671 + <condition>&#x3d;</condition>
  2672 + <name2/>
  2673 + </key>
  2674 + <key>
  2675 + <name>version</name>
  2676 + <field>versions</field>
  2677 + <condition>&#x3d;</condition>
  2678 + <name2/>
  2679 + </key>
  2680 + <key>
  2681 + <name>qdzname</name>
  2682 + <field>station_name</field>
  2683 + <condition>LIKE</condition>
  2684 + <name2/>
  2685 + </key>
  2686 + <key>
  2687 + <name>sendZdtype</name>
  2688 + <field>station_mark</field>
  2689 + <condition>&#x3d;</condition>
  2690 + <name2/>
  2691 + </key>
  2692 + <key>
  2693 + <name>destory</name>
  2694 + <field>destroy</field>
  2695 + <condition>&#x3d;</condition>
  2696 + <name2/>
  2697 + </key>
  2698 + <value>
  2699 + <name>station</name>
  2700 + <rename>qdzid</rename>
  2701 + <default/>
  2702 + <type>Integer</type>
  2703 + </value>
  2704 + <value>
  2705 + <name>directions</name>
  2706 + <rename>sxx</rename>
  2707 + <default/>
  2708 + <type>Integer</type>
  2709 + </value>
  2710 + <value>
  2711 + <name>station_code</name>
  2712 + <rename>qdzcode</rename>
  2713 + <default/>
  2714 + <type>String</type>
  2715 + </value>
  2716 + <value>
  2717 + <name>station_name</name>
  2718 + <rename>qdzname_</rename>
  2719 + <default/>
  2720 + <type>String</type>
  2721 + </value>
  2722 + </lookup>
  2723 + <cluster_schema/>
  2724 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2725 + <xloc>430</xloc>
  2726 + <yloc>403</yloc>
  2727 + <draw>Y</draw>
  2728 + </GUI>
  2729 + </step>
  2730 +
  2731 + <step>
  2732 + <name>&#x67e5;&#x627e;&#x8def;&#x724c;&#x5173;&#x8054;</name>
  2733 + <type>DBLookup</type>
  2734 + <description/>
  2735 + <distribute>Y</distribute>
  2736 + <custom_distribution/>
  2737 + <copies>1</copies>
  2738 + <partitioning>
  2739 + <method>none</method>
  2740 + <schema_name/>
  2741 + </partitioning>
  2742 + <connection>control_jndi</connection>
  2743 + <cache>N</cache>
  2744 + <cache_load_all>N</cache_load_all>
  2745 + <cache_size>0</cache_size>
  2746 + <lookup>
  2747 + <schema/>
  2748 + <table>bsth_c_s_gbi</table>
  2749 + <orderby/>
  2750 + <fail_on_multiple>N</fail_on_multiple>
  2751 + <eat_row_on_failure>N</eat_row_on_failure>
  2752 + <key>
  2753 + <name>xlid</name>
  2754 + <field>xl</field>
  2755 + <condition>&#x3d;</condition>
  2756 + <name2/>
  2757 + </key>
  2758 + <key>
  2759 + <name>lp</name>
  2760 + <field>lp_name</field>
  2761 + <condition>&#x3d;</condition>
  2762 + <name2/>
  2763 + </key>
  2764 + <key>
  2765 + <name>iscanceled</name>
  2766 + <field>is_cancel</field>
  2767 + <condition>&#x3d;</condition>
  2768 + <name2/>
  2769 + </key>
  2770 + <value>
  2771 + <name>id</name>
  2772 + <rename>lpid</rename>
  2773 + <default/>
  2774 + <type>Integer</type>
  2775 + </value>
  2776 + </lookup>
  2777 + <cluster_schema/>
  2778 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2779 + <xloc>1013</xloc>
  2780 + <yloc>221</yloc>
  2781 + <draw>Y</draw>
  2782 + </GUI>
  2783 + </step>
  2784 +
  2785 + <step>
  2786 + <name>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ebf;&#x8def;&#x65b9;&#x5411;</name>
  2787 + <type>DBLookup</type>
  2788 + <description/>
  2789 + <distribute>Y</distribute>
  2790 + <custom_distribution/>
  2791 + <copies>1</copies>
  2792 + <partitioning>
  2793 + <method>none</method>
  2794 + <schema_name/>
  2795 + </partitioning>
  2796 + <connection>control_jndi</connection>
  2797 + <cache>N</cache>
  2798 + <cache_load_all>N</cache_load_all>
  2799 + <cache_size>0</cache_size>
  2800 + <lookup>
  2801 + <schema/>
  2802 + <table>bsth_c_ls_stationroute</table>
  2803 + <orderby/>
  2804 + <fail_on_multiple>N</fail_on_multiple>
  2805 + <eat_row_on_failure>N</eat_row_on_failure>
  2806 + <key>
  2807 + <name>xlid</name>
  2808 + <field>line</field>
  2809 + <condition>&#x3d;</condition>
  2810 + <name2/>
  2811 + </key>
  2812 + <key>
  2813 + <name>version</name>
  2814 + <field>versions</field>
  2815 + <condition>&#x3d;</condition>
  2816 + <name2/>
  2817 + </key>
  2818 + <key>
  2819 + <name>startZdtype_calcu</name>
  2820 + <field>station_mark</field>
  2821 + <condition>&#x3d;</condition>
  2822 + <name2/>
  2823 + </key>
  2824 + <key>
  2825 + <name>qdzname_calcu</name>
  2826 + <field>station_name</field>
  2827 + <condition>LIKE</condition>
  2828 + <name2/>
  2829 + </key>
  2830 + <key>
  2831 + <name>destory</name>
  2832 + <field>destroy</field>
  2833 + <condition>&#x3d;</condition>
  2834 + <name2/>
  2835 + </key>
  2836 + <value>
  2837 + <name>directions</name>
  2838 + <rename>sxx</rename>
  2839 + <default/>
  2840 + <type>String</type>
  2841 + </value>
  2842 + </lookup>
  2843 + <cluster_schema/>
  2844 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2845 + <xloc>548</xloc>
  2846 + <yloc>610</yloc>
  2847 + <draw>Y</draw>
  2848 + </GUI>
  2849 + </step>
  2850 +
  2851 + <step>
  2852 + <name>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ec8;&#x70b9;&#x7ad9;&#xff0c;&#x5e76;&#x4f5c;&#x4e3a;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x7684;&#x8d77;&#x70b9;&#x7ad9;</name>
  2853 + <type>DBLookup</type>
  2854 + <description/>
  2855 + <distribute>Y</distribute>
  2856 + <custom_distribution/>
  2857 + <copies>1</copies>
  2858 + <partitioning>
  2859 + <method>none</method>
  2860 + <schema_name/>
  2861 + </partitioning>
  2862 + <connection>control_jndi</connection>
  2863 + <cache>N</cache>
  2864 + <cache_load_all>Y</cache_load_all>
  2865 + <cache_size>0</cache_size>
  2866 + <lookup>
  2867 + <schema/>
  2868 + <table>bsth_c_ls_stationroute</table>
  2869 + <orderby/>
  2870 + <fail_on_multiple>N</fail_on_multiple>
  2871 + <eat_row_on_failure>N</eat_row_on_failure>
  2872 + <key>
  2873 + <name>xlid</name>
  2874 + <field>line</field>
  2875 + <condition>&#x3d;</condition>
  2876 + <name2/>
  2877 + </key>
  2878 + <key>
  2879 + <name>version</name>
  2880 + <field>versions</field>
  2881 + <condition>&#x3d;</condition>
  2882 + <name2/>
  2883 + </key>
  2884 + <key>
  2885 + <name>endZdtype_calcu</name>
  2886 + <field>station_mark</field>
  2887 + <condition>&#x3d;</condition>
  2888 + <name2/>
  2889 + </key>
  2890 + <key>
  2891 + <name>sxx</name>
  2892 + <field>directions</field>
  2893 + <condition>&#x3d;</condition>
  2894 + <name2/>
  2895 + </key>
  2896 + <key>
  2897 + <name>destory</name>
  2898 + <field>destroy</field>
  2899 + <condition>&#x3d;</condition>
  2900 + <name2/>
  2901 + </key>
  2902 + <value>
  2903 + <name>station_name</name>
  2904 + <rename>zdzname_calcu</rename>
  2905 + <default/>
  2906 + <type>Integer</type>
  2907 + </value>
  2908 + </lookup>
  2909 + <cluster_schema/>
  2910 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2911 + <xloc>550</xloc>
  2912 + <yloc>701</yloc>
  2913 + <draw>Y</draw>
  2914 + </GUI>
  2915 + </step>
  2916 +
  2917 + <step>
  2918 + <name>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</name>
  2919 + <type>DBLookup</type>
  2920 + <description/>
  2921 + <distribute>Y</distribute>
  2922 + <custom_distribution/>
  2923 + <copies>1</copies>
  2924 + <partitioning>
  2925 + <method>none</method>
  2926 + <schema_name/>
  2927 + </partitioning>
  2928 + <connection>control_jndi</connection>
  2929 + <cache>N</cache>
  2930 + <cache_load_all>N</cache_load_all>
  2931 + <cache_size>0</cache_size>
  2932 + <lookup>
  2933 + <schema/>
  2934 + <table>bsth_c_ls_stationroute</table>
  2935 + <orderby/>
  2936 + <fail_on_multiple>N</fail_on_multiple>
  2937 + <eat_row_on_failure>N</eat_row_on_failure>
  2938 + <key>
  2939 + <name>xlid</name>
  2940 + <field>line</field>
  2941 + <condition>&#x3d;</condition>
  2942 + <name2/>
  2943 + </key>
  2944 + <key>
  2945 + <name>version</name>
  2946 + <field>versions</field>
  2947 + <condition>&#x3d;</condition>
  2948 + <name2/>
  2949 + </key>
  2950 + <key>
  2951 + <name>zdzname_calcu</name>
  2952 + <field>station_name</field>
  2953 + <condition>&#x3d;</condition>
  2954 + <name2/>
  2955 + </key>
  2956 + <key>
  2957 + <name>startZdtype_calcu</name>
  2958 + <field>station_mark</field>
  2959 + <condition>&#x3d;</condition>
  2960 + <name2/>
  2961 + </key>
  2962 + <key>
  2963 + <name>destory</name>
  2964 + <field>destroy</field>
  2965 + <condition>&#x3d;</condition>
  2966 + <name2/>
  2967 + </key>
  2968 + <value>
  2969 + <name>directions</name>
  2970 + <rename>sxx2</rename>
  2971 + <default/>
  2972 + <type>Integer</type>
  2973 + </value>
  2974 + <value>
  2975 + <name>station</name>
  2976 + <rename>qdzid</rename>
  2977 + <default/>
  2978 + <type>Integer</type>
  2979 + </value>
  2980 + <value>
  2981 + <name>station_code</name>
  2982 + <rename>qdzcode</rename>
  2983 + <default/>
  2984 + <type>String</type>
  2985 + </value>
  2986 + <value>
  2987 + <name>station_name</name>
  2988 + <rename>qname</rename>
  2989 + <default/>
  2990 + <type>String</type>
  2991 + </value>
  2992 + </lookup>
  2993 + <cluster_schema/>
  2994 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2995 + <xloc>551</xloc>
  2996 + <yloc>782</yloc>
  2997 + <draw>Y</draw>
  2998 + </GUI>
  2999 + </step>
  3000 +
  3001 + <step>
  3002 + <name>&#x6b63;&#x5e38;&#x73ed;&#x6b21;_&#x5904;&#x7406;&#x6570;&#x636e;</name>
  3003 + <type>ScriptValueMod</type>
  3004 + <description/>
  3005 + <distribute>Y</distribute>
  3006 + <custom_distribution/>
  3007 + <copies>1</copies>
  3008 + <partitioning>
  3009 + <method>none</method>
  3010 + <schema_name/>
  3011 + </partitioning>
  3012 + <compatible>N</compatible>
  3013 + <optimizationLevel>9</optimizationLevel>
  3014 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  3015 + <jsScript_name>Script 1</jsScript_name>
  3016 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;&#x2f;&#x2f; &#x6dfb;&#x52a0;&#x7ad9;&#x70b9;&#x6807;&#x8bc6;&#xa;var sendZdtype &#x3d; &#x27;B&#x27;&#x3b;&#xa;var endZdtype &#x3d; &#x27;E&#x27;&#x3b;&#xa;&#xa;var destory &#x3d; 0&#x3b; &#x2f;&#x2f; &#x672a;&#x64a4;&#x9500;flag</jsScript_script>
  3017 + </jsScript> </jsScripts> <fields> <field> <name>sendZdtype</name>
  3018 + <rename>sendZdtype</rename>
  3019 + <type>String</type>
  3020 + <length>-1</length>
  3021 + <precision>-1</precision>
  3022 + <replace>N</replace>
  3023 + </field> <field> <name>endZdtype</name>
  3024 + <rename>endZdtype</rename>
  3025 + <type>String</type>
  3026 + <length>-1</length>
  3027 + <precision>-1</precision>
  3028 + <replace>N</replace>
  3029 + </field> <field> <name>destory</name>
  3030 + <rename>destory</rename>
  3031 + <type>Integer</type>
  3032 + <length>-1</length>
  3033 + <precision>-1</precision>
  3034 + <replace>N</replace>
  3035 + </field> </fields> <cluster_schema/>
  3036 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3037 + <xloc>588</xloc>
  3038 + <yloc>403</yloc>
  3039 + <draw>Y</draw>
  3040 + </GUI>
  3041 + </step>
  3042 +
  3043 + <step>
  3044 + <name>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</name>
  3045 + <type>Dummy</type>
  3046 + <description/>
  3047 + <distribute>Y</distribute>
  3048 + <custom_distribution/>
  3049 + <copies>1</copies>
  3050 + <partitioning>
  3051 + <method>none</method>
  3052 + <schema_name/>
  3053 + </partitioning>
  3054 + <cluster_schema/>
  3055 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3056 + <xloc>725</xloc>
  3057 + <yloc>404</yloc>
  3058 + <draw>Y</draw>
  3059 + </GUI>
  3060 + </step>
  3061 +
  3062 + <step>
  3063 + <name>&#x6dfb;&#x52a0;&#x53d1;&#x8f66;&#x987a;&#x5e8f;&#x53f7;</name>
  3064 + <type>GroupBy</type>
  3065 + <description/>
  3066 + <distribute>Y</distribute>
  3067 + <custom_distribution/>
  3068 + <copies>1</copies>
  3069 + <partitioning>
  3070 + <method>none</method>
  3071 + <schema_name/>
  3072 + </partitioning>
  3073 + <all_rows>Y</all_rows>
  3074 + <ignore_aggregate>N</ignore_aggregate>
  3075 + <field_ignore/>
  3076 + <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
  3077 + <prefix>grp</prefix>
  3078 + <add_linenr>Y</add_linenr>
  3079 + <linenr_fieldname>fcno</linenr_fieldname>
  3080 + <give_back_row>N</give_back_row>
  3081 + <group>
  3082 + <field>
  3083 + <name>lp</name>
  3084 + </field>
  3085 + </group>
  3086 + <fields>
  3087 + </fields>
  3088 + <cluster_schema/>
  3089 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3090 + <xloc>442</xloc>
  3091 + <yloc>44</yloc>
  3092 + <draw>Y</draw>
  3093 + </GUI>
  3094 + </step>
  3095 +
  3096 + <step>
  3097 + <name>&#x6dfb;&#x52a0;&#x5bf9;&#x5e94;&#x73ed;&#x6b21;&#x6570;</name>
  3098 + <type>GroupBy</type>
  3099 + <description/>
  3100 + <distribute>Y</distribute>
  3101 + <custom_distribution/>
  3102 + <copies>1</copies>
  3103 + <partitioning>
  3104 + <method>none</method>
  3105 + <schema_name/>
  3106 + </partitioning>
  3107 + <all_rows>Y</all_rows>
  3108 + <ignore_aggregate>N</ignore_aggregate>
  3109 + <field_ignore/>
  3110 + <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
  3111 + <prefix>grp</prefix>
  3112 + <add_linenr>Y</add_linenr>
  3113 + <linenr_fieldname>bcs</linenr_fieldname>
  3114 + <give_back_row>N</give_back_row>
  3115 + <group>
  3116 + </group>
  3117 + <fields>
  3118 + </fields>
  3119 + <cluster_schema/>
  3120 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3121 + <xloc>692</xloc>
  3122 + <yloc>44</yloc>
  3123 + <draw>Y</draw>
  3124 + </GUI>
  3125 + </step>
  3126 +
  3127 + <step>
  3128 + <name>&#x73ed;&#x6b21;&#x6570;&#x636e;&#x8303;&#x5f0f;&#x5316;</name>
  3129 + <type>Normaliser</type>
  3130 + <description/>
  3131 + <distribute>Y</distribute>
  3132 + <custom_distribution/>
  3133 + <copies>1</copies>
  3134 + <partitioning>
  3135 + <method>none</method>
  3136 + <schema_name/>
  3137 + </partitioning>
  3138 + <typefield>&#x7ad9;&#x70b9;&#x540d;&#x79f0;</typefield>
  3139 + <fields> </fields> <cluster_schema/>
  3140 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3141 + <xloc>248</xloc>
  3142 + <yloc>44</yloc>
  3143 + <draw>Y</draw>
  3144 + </GUI>
  3145 + </step>
  3146 +
  3147 + <step>
  3148 + <name>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178;</name>
  3149 + <type>ValueMapper</type>
  3150 + <description/>
  3151 + <distribute>Y</distribute>
  3152 + <custom_distribution/>
  3153 + <copies>1</copies>
  3154 + <partitioning>
  3155 + <method>none</method>
  3156 + <schema_name/>
  3157 + </partitioning>
  3158 + <field_to_use>bctype</field_to_use>
  3159 + <target_field>bctype_code</target_field>
  3160 + <non_match_default>&#x672a;&#x77e5;&#x7c7b;&#x578b;</non_match_default>
  3161 + <fields>
  3162 + <field>
  3163 + <source_value>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</source_value>
  3164 + <target_value>normal</target_value>
  3165 + </field>
  3166 + <field>
  3167 + <source_value>&#x51fa;&#x573a;</source_value>
  3168 + <target_value>out</target_value>
  3169 + </field>
  3170 + <field>
  3171 + <source_value>&#x8fdb;&#x573a;</source_value>
  3172 + <target_value>in</target_value>
  3173 + </field>
  3174 + <field>
  3175 + <source_value>&#x52a0;&#x6cb9;</source_value>
  3176 + <target_value>oil</target_value>
  3177 + </field>
  3178 + <field>
  3179 + <source_value>&#x4e34;&#x52a0;</source_value>
  3180 + <target_value>temp</target_value>
  3181 + </field>
  3182 + <field>
  3183 + <source_value>&#x533a;&#x95f4;</source_value>
  3184 + <target_value>region</target_value>
  3185 + </field>
  3186 + <field>
  3187 + <source_value>&#x653e;&#x7a7a;</source_value>
  3188 + <target_value>venting</target_value>
  3189 + </field>
  3190 + <field>
  3191 + <source_value>&#x653e;&#x5927;&#x7ad9;</source_value>
  3192 + <target_value>major</target_value>
  3193 + </field>
  3194 + </fields>
  3195 + <cluster_schema/>
  3196 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3197 + <xloc>149</xloc>
  3198 + <yloc>491</yloc>
  3199 + <draw>Y</draw>
  3200 + </GUI>
  3201 + </step>
  3202 +
  3203 + <step>
  3204 + <name>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 2</name>
  3205 + <type>ValueMapper</type>
  3206 + <description/>
  3207 + <distribute>Y</distribute>
  3208 + <custom_distribution/>
  3209 + <copies>1</copies>
  3210 + <partitioning>
  3211 + <method>none</method>
  3212 + <schema_name/>
  3213 + </partitioning>
  3214 + <field_to_use>bctype</field_to_use>
  3215 + <target_field>bctype_code</target_field>
  3216 + <non_match_default>&#x672a;&#x77e5;&#x7c7b;&#x578b;</non_match_default>
  3217 + <fields>
  3218 + <field>
  3219 + <source_value>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</source_value>
  3220 + <target_value>normal</target_value>
  3221 + </field>
  3222 + <field>
  3223 + <source_value>&#x51fa;&#x573a;</source_value>
  3224 + <target_value>out</target_value>
  3225 + </field>
  3226 + <field>
  3227 + <source_value>&#x8fdb;&#x573a;</source_value>
  3228 + <target_value>in</target_value>
  3229 + </field>
  3230 + <field>
  3231 + <source_value>&#x52a0;&#x6cb9;</source_value>
  3232 + <target_value>oil</target_value>
  3233 + </field>
  3234 + <field>
  3235 + <source_value>&#x4e34;&#x52a0;</source_value>
  3236 + <target_value>temp</target_value>
  3237 + </field>
  3238 + <field>
  3239 + <source_value>&#x533a;&#x95f4;</source_value>
  3240 + <target_value>region</target_value>
  3241 + </field>
  3242 + <field>
  3243 + <source_value>&#x653e;&#x7a7a;</source_value>
  3244 + <target_value>venting</target_value>
  3245 + </field>
  3246 + <field>
  3247 + <source_value>&#x653e;&#x5927;&#x7ad9;</source_value>
  3248 + <target_value>major</target_value>
  3249 + </field>
  3250 + </fields>
  3251 + <cluster_schema/>
  3252 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3253 + <xloc>333</xloc>
  3254 + <yloc>681</yloc>
  3255 + <draw>Y</draw>
  3256 + </GUI>
  3257 + </step>
  3258 +
  3259 + <step>
  3260 + <name>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 3</name>
  3261 + <type>ValueMapper</type>
  3262 + <description/>
  3263 + <distribute>Y</distribute>
  3264 + <custom_distribution/>
  3265 + <copies>1</copies>
  3266 + <partitioning>
  3267 + <method>none</method>
  3268 + <schema_name/>
  3269 + </partitioning>
  3270 + <field_to_use>bctype</field_to_use>
  3271 + <target_field>bctype_code</target_field>
  3272 + <non_match_default>&#x672a;&#x77e5;&#x7c7b;&#x578b;</non_match_default>
  3273 + <fields>
  3274 + <field>
  3275 + <source_value>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</source_value>
  3276 + <target_value>normal</target_value>
  3277 + </field>
  3278 + <field>
  3279 + <source_value>&#x51fa;&#x573a;</source_value>
  3280 + <target_value>out</target_value>
  3281 + </field>
  3282 + <field>
  3283 + <source_value>&#x8fdb;&#x573a;</source_value>
  3284 + <target_value>in</target_value>
  3285 + </field>
  3286 + <field>
  3287 + <source_value>&#x52a0;&#x6cb9;</source_value>
  3288 + <target_value>oil</target_value>
  3289 + </field>
  3290 + <field>
  3291 + <source_value>&#x4e34;&#x52a0;</source_value>
  3292 + <target_value>temp</target_value>
  3293 + </field>
  3294 + <field>
  3295 + <source_value>&#x533a;&#x95f4;</source_value>
  3296 + <target_value>region</target_value>
  3297 + </field>
  3298 + <field>
  3299 + <source_value>&#x653e;&#x7a7a;</source_value>
  3300 + <target_value>venting</target_value>
  3301 + </field>
  3302 + <field>
  3303 + <source_value>&#x653e;&#x5927;&#x7ad9;</source_value>
  3304 + <target_value>major</target_value>
  3305 + </field>
  3306 + </fields>
  3307 + <cluster_schema/>
  3308 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3309 + <xloc>551</xloc>
  3310 + <yloc>928</yloc>
  3311 + <draw>Y</draw>
  3312 + </GUI>
  3313 + </step>
  3314 +
  3315 + <step>
  3316 + <name>&#x7ad9;&#x70b9;&#x8def;&#x7531;&#x7248;&#x672c;&#x7c7b;&#x578b;</name>
  3317 + <type>SelectValues</type>
  3318 + <description/>
  3319 + <distribute>N</distribute>
  3320 + <custom_distribution/>
  3321 + <copies>1</copies>
  3322 + <partitioning>
  3323 + <method>none</method>
  3324 + <schema_name/>
  3325 + </partitioning>
  3326 + <fields> <select_unspecified>Y</select_unspecified>
  3327 + <meta> <name>zdlyversion_</name>
  3328 + <rename>version</rename>
  3329 + <type>Integer</type>
  3330 + <length>-2</length>
  3331 + <precision>-2</precision>
  3332 + <conversion_mask/>
  3333 + <date_format_lenient>false</date_format_lenient>
  3334 + <date_format_locale/>
  3335 + <date_format_timezone/>
  3336 + <lenient_string_to_number>false</lenient_string_to_number>
  3337 + <encoding/>
  3338 + <decimal_symbol/>
  3339 + <grouping_symbol/>
  3340 + <currency_symbol/>
  3341 + <storage_type/>
  3342 + </meta> </fields> <cluster_schema/>
  3343 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3344 + <xloc>1016</xloc>
  3345 + <yloc>305</yloc>
  3346 + <draw>Y</draw>
  3347 + </GUI>
  3348 + </step>
  3349 +
  3350 + <step>
  3351 + <name>&#x7c7b;&#x578b;&#x4fee;&#x6b63;</name>
  3352 + <type>SelectValues</type>
  3353 + <description/>
  3354 + <distribute>Y</distribute>
  3355 + <custom_distribution/>
  3356 + <copies>1</copies>
  3357 + <partitioning>
  3358 + <method>none</method>
  3359 + <schema_name/>
  3360 + </partitioning>
  3361 + <fields> <select_unspecified>N</select_unspecified>
  3362 + <meta> <name>jhlc</name>
  3363 + <rename>jhlc</rename>
  3364 + <type>Number</type>
  3365 + <length>-2</length>
  3366 + <precision>-2</precision>
  3367 + <conversion_mask/>
  3368 + <date_format_lenient>false</date_format_lenient>
  3369 + <date_format_locale/>
  3370 + <date_format_timezone/>
  3371 + <lenient_string_to_number>false</lenient_string_to_number>
  3372 + <encoding/>
  3373 + <decimal_symbol/>
  3374 + <grouping_symbol/>
  3375 + <currency_symbol/>
  3376 + <storage_type/>
  3377 + </meta> <meta> <name>bcsj</name>
  3378 + <rename>bcsj</rename>
  3379 + <type>Integer</type>
  3380 + <length>-2</length>
  3381 + <precision>-2</precision>
  3382 + <conversion_mask/>
  3383 + <date_format_lenient>false</date_format_lenient>
  3384 + <date_format_locale/>
  3385 + <date_format_timezone/>
  3386 + <lenient_string_to_number>false</lenient_string_to_number>
  3387 + <encoding/>
  3388 + <decimal_symbol/>
  3389 + <grouping_symbol/>
  3390 + <currency_symbol/>
  3391 + <storage_type/>
  3392 + </meta> </fields> <cluster_schema/>
  3393 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3394 + <xloc>146</xloc>
  3395 + <yloc>768</yloc>
  3396 + <draw>Y</draw>
  3397 + </GUI>
  3398 + </step>
  3399 +
  3400 + <step>
  3401 + <name>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 2</name>
  3402 + <type>SelectValues</type>
  3403 + <description/>
  3404 + <distribute>Y</distribute>
  3405 + <custom_distribution/>
  3406 + <copies>1</copies>
  3407 + <partitioning>
  3408 + <method>none</method>
  3409 + <schema_name/>
  3410 + </partitioning>
  3411 + <fields> <select_unspecified>N</select_unspecified>
  3412 + <meta> <name>out_mileage</name>
  3413 + <rename>out_mileage</rename>
  3414 + <type>Number</type>
  3415 + <length>-2</length>
  3416 + <precision>-2</precision>
  3417 + <conversion_mask/>
  3418 + <date_format_lenient>false</date_format_lenient>
  3419 + <date_format_locale/>
  3420 + <date_format_timezone/>
  3421 + <lenient_string_to_number>false</lenient_string_to_number>
  3422 + <encoding/>
  3423 + <decimal_symbol/>
  3424 + <grouping_symbol/>
  3425 + <currency_symbol/>
  3426 + <storage_type/>
  3427 + </meta> <meta> <name>out_time</name>
  3428 + <rename>out_time</rename>
  3429 + <type>Integer</type>
  3430 + <length>-2</length>
  3431 + <precision>-2</precision>
  3432 + <conversion_mask/>
  3433 + <date_format_lenient>false</date_format_lenient>
  3434 + <date_format_locale/>
  3435 + <date_format_timezone/>
  3436 + <lenient_string_to_number>false</lenient_string_to_number>
  3437 + <encoding/>
  3438 + <decimal_symbol/>
  3439 + <grouping_symbol/>
  3440 + <currency_symbol/>
  3441 + <storage_type/>
  3442 + </meta> <meta> <name>sxx</name>
  3443 + <rename>sxx</rename>
  3444 + <type>Integer</type>
  3445 + <length>-2</length>
  3446 + <precision>-2</precision>
  3447 + <conversion_mask/>
  3448 + <date_format_lenient>false</date_format_lenient>
  3449 + <date_format_locale/>
  3450 + <date_format_timezone/>
  3451 + <lenient_string_to_number>false</lenient_string_to_number>
  3452 + <encoding/>
  3453 + <decimal_symbol/>
  3454 + <grouping_symbol/>
  3455 + <currency_symbol/>
  3456 + <storage_type/>
  3457 + </meta> </fields> <cluster_schema/>
  3458 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3459 + <xloc>338</xloc>
  3460 + <yloc>1008</yloc>
  3461 + <draw>Y</draw>
  3462 + </GUI>
  3463 + </step>
  3464 +
  3465 + <step>
  3466 + <name>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 3</name>
  3467 + <type>SelectValues</type>
  3468 + <description/>
  3469 + <distribute>Y</distribute>
  3470 + <custom_distribution/>
  3471 + <copies>1</copies>
  3472 + <partitioning>
  3473 + <method>none</method>
  3474 + <schema_name/>
  3475 + </partitioning>
  3476 + <fields> <select_unspecified>N</select_unspecified>
  3477 + <meta> <name>parade_mileage</name>
  3478 + <rename>parade_mileage</rename>
  3479 + <type>Number</type>
  3480 + <length>-2</length>
  3481 + <precision>-2</precision>
  3482 + <conversion_mask/>
  3483 + <date_format_lenient>false</date_format_lenient>
  3484 + <date_format_locale/>
  3485 + <date_format_timezone/>
  3486 + <lenient_string_to_number>false</lenient_string_to_number>
  3487 + <encoding/>
  3488 + <decimal_symbol/>
  3489 + <grouping_symbol/>
  3490 + <currency_symbol/>
  3491 + <storage_type/>
  3492 + </meta> <meta> <name>parade_time</name>
  3493 + <rename>parade_time</rename>
  3494 + <type>Integer</type>
  3495 + <length>-2</length>
  3496 + <precision>-2</precision>
  3497 + <conversion_mask/>
  3498 + <date_format_lenient>false</date_format_lenient>
  3499 + <date_format_locale/>
  3500 + <date_format_timezone/>
  3501 + <lenient_string_to_number>false</lenient_string_to_number>
  3502 + <encoding/>
  3503 + <decimal_symbol/>
  3504 + <grouping_symbol/>
  3505 + <currency_symbol/>
  3506 + <storage_type/>
  3507 + </meta> <meta> <name>sxx2</name>
  3508 + <rename>sxx2</rename>
  3509 + <type>Integer</type>
  3510 + <length>-2</length>
  3511 + <precision>-2</precision>
  3512 + <conversion_mask/>
  3513 + <date_format_lenient>false</date_format_lenient>
  3514 + <date_format_locale/>
  3515 + <date_format_timezone/>
  3516 + <lenient_string_to_number>false</lenient_string_to_number>
  3517 + <encoding/>
  3518 + <decimal_symbol/>
  3519 + <grouping_symbol/>
  3520 + <currency_symbol/>
  3521 + <storage_type/>
  3522 + </meta> </fields> <cluster_schema/>
  3523 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3524 + <xloc>847</xloc>
  3525 + <yloc>1003</yloc>
  3526 + <draw>Y</draw>
  3527 + </GUI>
  3528 + </step>
  3529 +
  3530 + <step>
  3531 + <name>&#x8ba1;&#x7b97;&#x73ed;&#x6b21;&#x7c7b;&#x578b;</name>
  3532 + <type>ValueMapper</type>
  3533 + <description/>
  3534 + <distribute>Y</distribute>
  3535 + <custom_distribution/>
  3536 + <copies>1</copies>
  3537 + <partitioning>
  3538 + <method>none</method>
  3539 + <schema_name/>
  3540 + </partitioning>
  3541 + <field_to_use>qdzname</field_to_use>
  3542 + <target_field>bctype</target_field>
  3543 + <non_match_default>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</non_match_default>
  3544 + <fields>
  3545 + <field>
  3546 + <source_value>Exit</source_value>
  3547 + <target_value>&#x51fa;&#x573a;</target_value>
  3548 + </field>
  3549 + <field>
  3550 + <source_value>Enter</source_value>
  3551 + <target_value>&#x8fdb;&#x573a;</target_value>
  3552 + </field>
  3553 + </fields>
  3554 + <cluster_schema/>
  3555 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3556 + <xloc>1014</xloc>
  3557 + <yloc>401</yloc>
  3558 + <draw>Y</draw>
  3559 + </GUI>
  3560 + </step>
  3561 +
  3562 + <step>
  3563 + <name>&#x8bb0;&#x5f55;&#x5173;&#x8054; &#x28;&#x7b1b;&#x5361;&#x5c14;&#x8f93;&#x51fa;&#x29;</name>
  3564 + <type>JoinRows</type>
  3565 + <description/>
  3566 + <distribute>Y</distribute>
  3567 + <custom_distribution/>
  3568 + <copies>1</copies>
  3569 + <partitioning>
  3570 + <method>none</method>
  3571 + <schema_name/>
  3572 + </partitioning>
  3573 + <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
  3574 + <prefix>out</prefix>
  3575 + <cache_size>500</cache_size>
  3576 + <main/>
  3577 + <compare>
  3578 +<condition>
  3579 + <negated>N</negated>
  3580 + <leftvalue/>
  3581 + <function>&#x3d;</function>
  3582 + <rightvalue/>
  3583 + </condition>
  3584 + </compare>
  3585 + <cluster_schema/>
  3586 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3587 + <xloc>310</xloc>
  3588 + <yloc>133</yloc>
  3589 + <draw>Y</draw>
  3590 + </GUI>
  3591 + </step>
  3592 +
  3593 + <step>
  3594 + <name>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;&#xff08;&#x53d1;&#x8f66;&#x65f6;&#x95f4;&#x4e3a;&#x7a7a;&#xff09;</name>
  3595 + <type>FilterRows</type>
  3596 + <description/>
  3597 + <distribute>Y</distribute>
  3598 + <custom_distribution/>
  3599 + <copies>1</copies>
  3600 + <partitioning>
  3601 + <method>none</method>
  3602 + <schema_name/>
  3603 + </partitioning>
  3604 +<send_true_to/>
  3605 +<send_false_to/>
  3606 + <compare>
  3607 +<condition>
  3608 + <negated>N</negated>
  3609 + <leftvalue>sendtime</leftvalue>
  3610 + <function>IS NOT NULL</function>
  3611 + <rightvalue/>
  3612 + </condition>
  3613 + </compare>
  3614 + <cluster_schema/>
  3615 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3616 + <xloc>571</xloc>
  3617 + <yloc>44</yloc>
  3618 + <draw>Y</draw>
  3619 + </GUI>
  3620 + </step>
  3621 +
  3622 + <step>
  3623 + <name>&#x8fdb;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x8d77;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</name>
  3624 + <type>ScriptValueMod</type>
  3625 + <description/>
  3626 + <distribute>Y</distribute>
  3627 + <custom_distribution/>
  3628 + <copies>1</copies>
  3629 + <partitioning>
  3630 + <method>none</method>
  3631 + <schema_name/>
  3632 + </partitioning>
  3633 + <compatible>N</compatible>
  3634 + <optimizationLevel>9</optimizationLevel>
  3635 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  3636 + <jsScript_name>Script 1</jsScript_name>
  3637 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;&#x2f;&#x2f; &#x6dfb;&#x52a0;&#x7ad9;&#x70b9;&#x6807;&#x8bc6;&#xa;var cc_groups &#x3d; qdzgroups.split&#x28;&#x22;,&#x22;&#x29;&#x3b; &#x2f;&#x2f; &#x6240;&#x6709;&#x73ed;&#x6b21;&#x8d77;&#x70b9;&#x7ad9;&#x6570;&#x7ec4;&#xa;var qdzname_calcu &#x3d; cc_groups&#x5b;gno - 2&#x5d;&#x3b; &#x2f;&#x2f; &#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x7684;&#x8d77;&#x70b9;&#x7ad9;&#x662f;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ec8;&#x70b9;&#x7ad9;&#xff0c;&#x8fd9;&#x91cc;&#x53ea;&#x6709;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x8d77;&#x70b9;&#x7ad9;&#xff0c;&#x8fd8;&#x9700;&#x8981;&#x8ba1;&#x7b97;&#xa;var startZdtype_calcu &#x3d; &#x27;B&#x27;&#x3b;&#xa;var endZdtype_calcu &#x3d; &#x27;E&#x27;&#x3b;&#xa;&#xa;var destory &#x3d; 0&#x3b; &#x2f;&#x2f; &#x672a;&#x64a4;&#x9500;flag</jsScript_script>
  3638 + </jsScript> </jsScripts> <fields> <field> <name>qdzname_calcu</name>
  3639 + <rename>qdzname_calcu</rename>
  3640 + <type>String</type>
  3641 + <length>-1</length>
  3642 + <precision>-1</precision>
  3643 + <replace>N</replace>
  3644 + </field> <field> <name>startZdtype_calcu</name>
  3645 + <rename>startZdtype_calcu</rename>
  3646 + <type>String</type>
  3647 + <length>-1</length>
  3648 + <precision>-1</precision>
  3649 + <replace>N</replace>
  3650 + </field> <field> <name>endZdtype_calcu</name>
  3651 + <rename>endZdtype_calcu</rename>
  3652 + <type>String</type>
  3653 + <length>-1</length>
  3654 + <precision>-1</precision>
  3655 + <replace>N</replace>
  3656 + </field> <field> <name>destory</name>
  3657 + <rename>destory</rename>
  3658 + <type>Integer</type>
  3659 + <length>-1</length>
  3660 + <precision>-1</precision>
  3661 + <replace>N</replace>
  3662 + </field> </fields> <cluster_schema/>
  3663 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3664 + <xloc>754</xloc>
  3665 + <yloc>610</yloc>
  3666 + <draw>Y</draw>
  3667 + </GUI>
  3668 + </step>
  3669 +
  3670 + <step>
  3671 + <name>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</name>
  3672 + <type>Dummy</type>
  3673 + <description/>
  3674 + <distribute>Y</distribute>
  3675 + <custom_distribution/>
  3676 + <copies>1</copies>
  3677 + <partitioning>
  3678 + <method>none</method>
  3679 + <schema_name/>
  3680 + </partitioning>
  3681 + <cluster_schema/>
  3682 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3683 + <xloc>997</xloc>
  3684 + <yloc>606</yloc>
  3685 + <draw>Y</draw>
  3686 + </GUI>
  3687 + </step>
  3688 +
  3689 + <step_error_handling>
  3690 + <error>
  3691 + <source_step>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail</source_step>
  3692 + <target_step/>
  3693 + <is_enabled>Y</is_enabled>
  3694 + <nr_valuename>c1</nr_valuename>
  3695 + <descriptions_valuename>c2</descriptions_valuename>
  3696 + <fields_valuename>c3</fields_valuename>
  3697 + <codes_valuename>c4</codes_valuename>
  3698 + <max_errors/>
  3699 + <max_pct_errors/>
  3700 + <min_pct_rows/>
  3701 + </error>
  3702 + </step_error_handling>
  3703 + <slave-step-copy-partition-distribution>
  3704 +</slave-step-copy-partition-distribution>
  3705 + <slave_transformation>N</slave_transformation>
  3706 +
  3707 +</transformation>
... ...
src/main/resources/datatools/ktrs/ttinfodetailDataInput2_normalwithgs.ktr renamed to src/main/resources/datatools/ktrs/en/ttinfo-detail-data_import_of_normalWithGs.ktr
1 1 <?xml version="1.0" encoding="UTF-8"?>
2 2 <transformation>
3 3 <info>
4   - <name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x5bfc;&#x5165;-normalWithGs</name>
  4 + <name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x5bfc;&#x5165;-normalWithGs_en</name>
5 5 <description>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;&#x5bfc;&#x5165;</description>
6 6 <extended_description>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;&#xff0c;&#x5e26;&#x5de5;&#x65f6;&#x7248;&#x672c;&#x5bfc;&#x5165;</extended_description>
7 7 <trans_version/>
... ... @@ -541,6 +541,61 @@
541 541 </attributes>
542 542 </connection>
543 543 <connection>
  544 + <name>wzk_mysql_jndi</name>
  545 + <server/>
  546 + <type>MYSQL</type>
  547 + <access>JNDI</access>
  548 + <database>wzk_mysql</database>
  549 + <port>1521</port>
  550 + <username/>
  551 + <password>Encrypted </password>
  552 + <servername/>
  553 + <data_tablespace/>
  554 + <index_tablespace/>
  555 + <attributes>
  556 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  557 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  558 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  559 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  560 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  561 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  562 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  563 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  564 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  565 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  566 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  567 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  568 + </attributes>
  569 + </connection>
  570 + <connection>
  571 + <name>wzk&#xff08;&#x672c;&#x673a;&#xff09;</name>
  572 + <server>localhost</server>
  573 + <type>MYSQL</type>
  574 + <access>Native</access>
  575 + <database>pdgj_wzk_sys</database>
  576 + <port>3306</port>
  577 + <username>root</username>
  578 + <password>Encrypted </password>
  579 + <servername/>
  580 + <data_tablespace/>
  581 + <index_tablespace/>
  582 + <attributes>
  583 + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
  584 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  585 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  586 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  587 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  588 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  589 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  590 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  591 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  592 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  593 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  594 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  595 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  596 + </attributes>
  597 + </connection>
  598 + <connection>
544 599 <name>xlab_mysql_youle</name>
545 600 <server>101.231.124.8</server>
546 601 <type>MYSQL</type>
... ... @@ -693,7 +748,7 @@
693 748 </connection>
694 749 <connection>
695 750 <name>&#x516c;&#x53f8;ygjw</name>
696   - <server>192.168.168.1</server>
  751 + <server>192.168.168.178</server>
697 752 <type>ORACLE</type>
698 753 <access>Native</access>
699 754 <database>orcl</database>
... ... @@ -716,6 +771,102 @@
716 771 </attributes>
717 772 </connection>
718 773 <connection>
  774 + <name>&#x516c;&#x53f8;&#x673a;&#x52a1;_pdgj</name>
  775 + <server>192.168.168.178</server>
  776 + <type>ORACLE</type>
  777 + <access>Native</access>
  778 + <database>orcl</database>
  779 + <port>1521</port>
  780 + <username>pdgj</username>
  781 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10ce96a8d0</password>
  782 + <servername/>
  783 + <data_tablespace/>
  784 + <index_tablespace/>
  785 + <attributes>
  786 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  787 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  788 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  789 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  790 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  791 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  792 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  793 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  794 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  795 + </attributes>
  796 + </connection>
  797 + <connection>
  798 + <name>&#x5916;&#x7f51;vpn&#x4e34;&#x6e2f;&#x673a;&#x52a1;oracle</name>
  799 + <server>10.10.150.114</server>
  800 + <type>ORACLE</type>
  801 + <access>Native</access>
  802 + <database>helowin</database>
  803 + <port>1521</port>
  804 + <username>lgjw</username>
  805 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d295a5cd</password>
  806 + <servername/>
  807 + <data_tablespace/>
  808 + <index_tablespace/>
  809 + <attributes>
  810 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  811 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  812 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  813 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  814 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  815 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  816 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  817 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  818 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  819 + </attributes>
  820 + </connection>
  821 + <connection>
  822 + <name>&#x5916;&#x7f51;&#x5357;&#x6c47;&#x673a;&#x52a1;oracle</name>
  823 + <server>58.247.254.118</server>
  824 + <type>ORACLE</type>
  825 + <access>Native</access>
  826 + <database>orcl</database>
  827 + <port>15211</port>
  828 + <username>nhjw</username>
  829 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d09aa5cd</password>
  830 + <servername/>
  831 + <data_tablespace/>
  832 + <index_tablespace/>
  833 + <attributes>
  834 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  835 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  836 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  837 + <attribute><code>PORT_NUMBER</code><attribute>15211</attribute></attribute>
  838 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  839 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  840 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  841 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  842 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  843 + </attributes>
  844 + </connection>
  845 + <connection>
  846 + <name>&#x5916;&#x7f51;&#x6768;&#x9ad8;&#x673a;&#x52a1;oracle</name>
  847 + <server>58.247.254.118</server>
  848 + <type>ORACLE</type>
  849 + <access>Native</access>
  850 + <database>orcl</database>
  851 + <port>15211</port>
  852 + <username>ygjw</username>
  853 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10c795a5cd</password>
  854 + <servername/>
  855 + <data_tablespace/>
  856 + <index_tablespace/>
  857 + <attributes>
  858 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  859 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  860 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  861 + <attribute><code>PORT_NUMBER</code><attribute>15211</attribute></attribute>
  862 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  863 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  864 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  865 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  866 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  867 + </attributes>
  868 + </connection>
  869 + <connection>
719 870 <name>&#x5916;&#x7f51;&#x91d1;&#x9ad8;&#x673a;&#x52a1;oracle</name>
720 871 <server>58.247.254.118</server>
721 872 <type>ORACLE</type>
... ... @@ -1207,7 +1358,7 @@
1207 1358 <optimizationLevel>9</optimizationLevel>
1208 1359 <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
1209 1360 <jsScript_name>Script 1</jsScript_name>
1210   - <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;&#x2f;&#x2f; &#x5982;&#x679c;&#x7ad9;&#x540d;&#x4e2d;&#x6709;&#x7c7b;&#x4f3c;-&#x3e;&#x7b;&#x6570;&#x5b57;&#x7d;&#xff0c;&#x4f7f;&#x7528;&#x6b63;&#x5219;&#x8868;&#x8fbe;&#x5f0f;&#x8fc7;&#x6ee4;&#x6389;&#xa;qdzname &#x3d; qdzname.replace&#x28;&#x2f;-&#x3e;&#x5c;d&#x2b;&#x2f;g,&#x27;&#x27;&#x29;&#x3b;&#xa;if &#x28;qdzname &#x21;&#x3d; &#x22;&#x51fa;&#x573a;&#x22; &#x26;&#x26; qdzname &#x21;&#x3d; &#x22;&#x8fdb;&#x573a;&#x22;&#x29; &#x7b;&#xa; qdzname &#x3d; qdzname &#x2b; &#x22;&#x25;&#x22;&#x3b; &#x2f;&#x2f; &#x6a21;&#x7cca;&#x5339;&#x914d;&#x6807;&#x8bc6;&#x7b26;&#xa;&#x7d;&#xa;&#xa;&#x2f;&#x2f; sendtime&#x5904;&#x7406;&#xff0c;hhmm&#xff0c;hh&#x3a;mm&#xff0c;hh,mm&#xa;var sendtime_calcu &#x3d; sendtime.replace&#x28;&#x2f;&#x5c;s&#x2f;g, &#x22;&#x22;&#x29;&#x3b;&#xa;if &#x28;sendtime.length &#x3d;&#x3d; 5&#x29; &#x7b; &#x2f;&#x2f; &#x6700;&#x957f;&#x683c;&#x5f0f;&#xff0c;&#x5305;&#x62ec;&#x5206;&#x9694;&#x7b26;&#xff0c;&#x7edf;&#x4e00;&#x628a;&#x5206;&#x9694;&#x7b26;&#x66ff;&#x6362;&#x6210;&#x5192;&#x53f7;&#xa; sendtime_calcu &#x3d; sendtime.substr&#x28;0, 2&#x29; &#x2b; &#x22;&#x3a;&#x22; &#x2b; sendtime.substr&#x28;3, 2&#x29;&#x3b;&#xa;&#x7d; else if &#x28;sendtime.length &#x3d;&#x3d; 4&#x29; &#x7b;&#xa; if &#x28;sendtime.indexOf&#x28;&#x22;&#x3a;&#x22;&#x29; &#x3e; 0&#x29; &#x7b; &#x2f;&#x2f; &#x5192;&#x53f7;&#x5206;&#x9694;&#xff0c;&#x65e0;&#x9700;&#x4fee;&#x6539;&#xa; sendtime_calcu &#x3d; sendtime&#x3b;&#xa; &#x7d; else if &#x28;sendtime.indexOf&#x28;&#x22;,&#x22;&#x29; &#x3e; 0&#x29; &#x7b; &#x2f;&#x2f; &#x9017;&#x53f7;&#x5206;&#x9694;&#xff0c;&#x6539;&#x6210;&#x5192;&#x53f7;&#x5206;&#x9694;&#xa; sendtime_calcu &#x3d; sendtime.substr&#x28;0, 1&#x29; &#x2b; &#x22;&#x3a;&#x22; &#x2b; sendtime.substr&#x28;2, 2&#x29;&#x3b;&#xa; &#x7d; else &#x7b; &#x2f;&#x2f; &#x65e0;&#x5206;&#x9694;&#x7b26;&#xff0c;&#x6539;&#x6210;&#x5192;&#x53f7;&#x5206;&#x9694;&#xa; sendtime_calcu &#x3d; sendtime.substr&#x28;0, 2&#x29; &#x2b; &#x22;&#x3a;&#x22; &#x2b; sendtime.substr&#x28;2, 2&#x29;&#x3b;&#xa; &#x7d;&#xa;&#x7d; else if &#x28;sendtime.length &#x3d;&#x3d; 3&#x29; &#x7b; &#x2f;&#x2f; &#x65e0;&#x5206;&#x9694;&#x7b26;&#xff0c;&#x6539;&#x6210;&#x5192;&#x53f7;&#x5206;&#x9694;&#xa; sendtime_calcu &#x3d; sendtime.substr&#x28;0, 1&#x29; &#x2b; &#x22;&#x3a;&#x22; &#x2b; sendtime.substr&#x28;1, 2&#x29;&#x3b;&#xa;&#x7d;&#xa;&#xa;&#x2f;&#x2f; &#x5168;&#x90e8;&#x4fee;&#x6b63;&#x5b8c;&#x6bd5;&#x540e;&#xff0c;&#x5982;&#x679c;&#x957f;&#x5ea6;&#x4e0d;&#x662f;5&#xff0c;&#x524d;&#x9762;&#x8865;0&#xa;if &#x28;sendtime_calcu.length &#x21;&#x3d; 5&#x29; &#x7b;&#xa; sendtime_calcu &#x3d; &#x22;0&#x22; &#x2b; sendtime_calcu&#x3b;&#xa;&#x7d;&#xa;&#xa;&#x2f;&#x2f; &#x8bbe;&#x7f6e;&#x5206;&#x73ed;&#xa;var isfb &#x3d; 0&#x3b;&#xa;&#xa;&#x2f;&#x2f; &#x8bbe;&#x7f6e;&#x505c;&#x9a76;&#xa;var ists &#x3d; 0&#x3b;&#xa;&#xa;&#x2f;&#x2f; &#x8bbe;&#x7f6e;isCanceled&#xa;var iscanceled &#x3d; 0&#x3b;</jsScript_script>
  1361 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;&#x2f;&#x2f; &#x5982;&#x679c;&#x7ad9;&#x540d;&#x4e2d;&#x6709;&#x7c7b;&#x4f3c;-&#x3e;&#x7b;&#x6570;&#x5b57;&#x7d;&#xff0c;&#x4f7f;&#x7528;&#x6b63;&#x5219;&#x8868;&#x8fbe;&#x5f0f;&#x8fc7;&#x6ee4;&#x6389;&#xa;qdzname &#x3d; qdzname.replace&#x28;&#x2f;-&#x3e;&#x5c;d&#x2b;&#x2f;g,&#x27;&#x27;&#x29;&#x3b;&#xa;if &#x28;qdzname &#x21;&#x3d; &#x22;Exit&#x22; &#x26;&#x26; qdzname &#x21;&#x3d; &#x22;Enter&#x22;&#x29; &#x7b;&#xa; qdzname &#x3d; qdzname &#x2b; &#x22;&#x25;&#x22;&#x3b; &#x2f;&#x2f; &#x6a21;&#x7cca;&#x5339;&#x914d;&#x6807;&#x8bc6;&#x7b26;&#xa;&#x7d;&#xa;&#xa;&#x2f;&#x2f; sendtime&#x5904;&#x7406;&#xff0c;hhmm&#xff0c;hh&#x3a;mm&#xff0c;hh,mm&#xa;var sendtime_calcu &#x3d; sendtime.replace&#x28;&#x2f;&#x5c;s&#x2f;g, &#x22;&#x22;&#x29;&#x3b;&#xa;if &#x28;sendtime.length &#x3d;&#x3d; 5&#x29; &#x7b; &#x2f;&#x2f; &#x6700;&#x957f;&#x683c;&#x5f0f;&#xff0c;&#x5305;&#x62ec;&#x5206;&#x9694;&#x7b26;&#xff0c;&#x7edf;&#x4e00;&#x628a;&#x5206;&#x9694;&#x7b26;&#x66ff;&#x6362;&#x6210;&#x5192;&#x53f7;&#xa; sendtime_calcu &#x3d; sendtime.substr&#x28;0, 2&#x29; &#x2b; &#x22;&#x3a;&#x22; &#x2b; sendtime.substr&#x28;3, 2&#x29;&#x3b;&#xa;&#x7d; else if &#x28;sendtime.length &#x3d;&#x3d; 4&#x29; &#x7b;&#xa; if &#x28;sendtime.indexOf&#x28;&#x22;&#x3a;&#x22;&#x29; &#x3e; 0&#x29; &#x7b; &#x2f;&#x2f; &#x5192;&#x53f7;&#x5206;&#x9694;&#xff0c;&#x65e0;&#x9700;&#x4fee;&#x6539;&#xa; sendtime_calcu &#x3d; sendtime&#x3b;&#xa; &#x7d; else if &#x28;sendtime.indexOf&#x28;&#x22;,&#x22;&#x29; &#x3e; 0&#x29; &#x7b; &#x2f;&#x2f; &#x9017;&#x53f7;&#x5206;&#x9694;&#xff0c;&#x6539;&#x6210;&#x5192;&#x53f7;&#x5206;&#x9694;&#xa; sendtime_calcu &#x3d; sendtime.substr&#x28;0, 1&#x29; &#x2b; &#x22;&#x3a;&#x22; &#x2b; sendtime.substr&#x28;2, 2&#x29;&#x3b;&#xa; &#x7d; else &#x7b; &#x2f;&#x2f; &#x65e0;&#x5206;&#x9694;&#x7b26;&#xff0c;&#x6539;&#x6210;&#x5192;&#x53f7;&#x5206;&#x9694;&#xa; sendtime_calcu &#x3d; sendtime.substr&#x28;0, 2&#x29; &#x2b; &#x22;&#x3a;&#x22; &#x2b; sendtime.substr&#x28;2, 2&#x29;&#x3b;&#xa; &#x7d;&#xa;&#x7d; else if &#x28;sendtime.length &#x3d;&#x3d; 3&#x29; &#x7b; &#x2f;&#x2f; &#x65e0;&#x5206;&#x9694;&#x7b26;&#xff0c;&#x6539;&#x6210;&#x5192;&#x53f7;&#x5206;&#x9694;&#xa; sendtime_calcu &#x3d; sendtime.substr&#x28;0, 1&#x29; &#x2b; &#x22;&#x3a;&#x22; &#x2b; sendtime.substr&#x28;1, 2&#x29;&#x3b;&#xa;&#x7d;&#xa;&#xa;&#x2f;&#x2f; &#x5168;&#x90e8;&#x4fee;&#x6b63;&#x5b8c;&#x6bd5;&#x540e;&#xff0c;&#x5982;&#x679c;&#x957f;&#x5ea6;&#x4e0d;&#x662f;5&#xff0c;&#x524d;&#x9762;&#x8865;0&#xa;if &#x28;sendtime_calcu.length &#x21;&#x3d; 5&#x29; &#x7b;&#xa; sendtime_calcu &#x3d; &#x22;0&#x22; &#x2b; sendtime_calcu&#x3b;&#xa;&#x7d;&#xa;&#xa;&#x2f;&#x2f; &#x8bbe;&#x7f6e;&#x5206;&#x73ed;&#xa;var isfb &#x3d; 0&#x3b;&#xa;&#xa;&#x2f;&#x2f; &#x8bbe;&#x7f6e;&#x505c;&#x9a76;&#xa;var ists &#x3d; 0&#x3b;&#xa;&#xa;&#x2f;&#x2f; &#x8bbe;&#x7f6e;isCanceled&#xa;var iscanceled &#x3d; 0&#x3b;</jsScript_script>
1211 1362 </jsScript> </jsScripts> <fields> <field> <name>qdzname</name>
1212 1363 <rename>qdzname</rename>
1213 1364 <type>String</type>
... ... @@ -1257,7 +1408,7 @@
1257 1408 <method>none</method>
1258 1409 <schema_name/>
1259 1410 </partitioning>
1260   - <fields> <field> <name>&#x8def;&#x724c;-&#x3e;&#x5de5;&#x65f6;</name>
  1411 + <fields> <field> <name>Road sign-&#x3e;Working Hours</name>
1261 1412 <rename>lpWithGs</rename>
1262 1413 <length>-2</length>
1263 1414 <precision>-2</precision>
... ... @@ -1265,7 +1416,7 @@
1265 1416 <rename>qdzname</rename>
1266 1417 <length>-2</length>
1267 1418 <precision>-2</precision>
1268   - </field> <field> <name>&#x53d1;&#x8f66;&#x65f6;&#x95f4;</name>
  1419 + </field> <field> <name>Departure time</name>
1269 1420 <rename>sendtime</rename>
1270 1421 <length>-2</length>
1271 1422 <precision>-2</precision>
... ... @@ -1279,6 +1430,42 @@
1279 1430 </step>
1280 1431  
1281 1432 <step>
  1433 + <name>&#x62c6;&#x5206;&#x8def;&#x724c;&#x548c;&#x5de5;&#x65f6;</name>
  1434 + <type>ScriptValueMod</type>
  1435 + <description/>
  1436 + <distribute>Y</distribute>
  1437 + <custom_distribution/>
  1438 + <copies>1</copies>
  1439 + <partitioning>
  1440 + <method>none</method>
  1441 + <schema_name/>
  1442 + </partitioning>
  1443 + <compatible>N</compatible>
  1444 + <optimizationLevel>9</optimizationLevel>
  1445 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  1446 + <jsScript_name>Script 1</jsScript_name>
  1447 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var lp &#x3d; lpWithGs.split&#x28;&#x22;-&#x3e;&#x22;&#x29;&#x5b;0&#x5d;&#x3b;&#xa;var gs &#x3d; lpWithGs.split&#x28;&#x22;-&#x3e;&#x22;&#x29;&#x5b;1&#x5d;&#x3b;</jsScript_script>
  1448 + </jsScript> </jsScripts> <fields> <field> <name>lp</name>
  1449 + <rename>lp</rename>
  1450 + <type>String</type>
  1451 + <length>-1</length>
  1452 + <precision>-1</precision>
  1453 + <replace>N</replace>
  1454 + </field> <field> <name>gs</name>
  1455 + <rename>gs</rename>
  1456 + <type>String</type>
  1457 + <length>-1</length>
  1458 + <precision>-1</precision>
  1459 + <replace>N</replace>
  1460 + </field> </fields> <cluster_schema/>
  1461 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1462 + <xloc>541</xloc>
  1463 + <yloc>137</yloc>
  1464 + <draw>Y</draw>
  1465 + </GUI>
  1466 + </step>
  1467 +
  1468 + <step>
1282 1469 <name>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;1</name>
1283 1470 <type>FilterRows</type>
1284 1471 <description/>
... ... @@ -1337,6 +1524,101 @@
1337 1524 </step>
1338 1525  
1339 1526 <step>
  1527 + <name>&#x63d2;&#x5165; &#x2f; &#x66f4;&#x65b0; &#x73ed;&#x578b;&#x8868;&#xff08;&#x5de5;&#x65f6;&#x6570;&#x636e;&#xff09;</name>
  1528 + <type>InsertUpdate</type>
  1529 + <description/>
  1530 + <distribute>Y</distribute>
  1531 + <custom_distribution/>
  1532 + <copies>1</copies>
  1533 + <partitioning>
  1534 + <method>none</method>
  1535 + <schema_name/>
  1536 + </partitioning>
  1537 + <connection>control_jndi</connection>
  1538 + <commit>100</commit>
  1539 + <update_bypassed>Y</update_bypassed>
  1540 + <lookup>
  1541 + <schema/>
  1542 + <table>bsth_c_s_ttinfo_bx_detail</table>
  1543 + <key>
  1544 + <name>xlid</name>
  1545 + <field>xl</field>
  1546 + <condition>&#x3d;</condition>
  1547 + <name2/>
  1548 + </key>
  1549 + <key>
  1550 + <name>ttid</name>
  1551 + <field>ttinfo</field>
  1552 + <condition>&#x3d;</condition>
  1553 + <name2/>
  1554 + </key>
  1555 + <key>
  1556 + <name>lpid</name>
  1557 + <field>lp</field>
  1558 + <condition>&#x3d;</condition>
  1559 + <name2/>
  1560 + </key>
  1561 + <key>
  1562 + <name>version</name>
  1563 + <field>line_version</field>
  1564 + <condition>&#x3d;</condition>
  1565 + <name2/>
  1566 + </key>
  1567 + <value>
  1568 + <name>gs</name>
  1569 + <rename>gs</rename>
  1570 + <update>Y</update>
  1571 + </value>
  1572 + <value>
  1573 + <name>bx_type1</name>
  1574 + <rename>update_bx1</rename>
  1575 + <update>Y</update>
  1576 + </value>
  1577 + <value>
  1578 + <name>bx_type2</name>
  1579 + <rename>update_bx2</rename>
  1580 + <update>Y</update>
  1581 + </value>
  1582 + <value>
  1583 + <name>bx_pds</name>
  1584 + <rename>update_pds</rename>
  1585 + <update>Y</update>
  1586 + </value>
  1587 + <value>
  1588 + <name>version</name>
  1589 + <rename>update_version</rename>
  1590 + <update>Y</update>
  1591 + </value>
  1592 + <value>
  1593 + <name>xl</name>
  1594 + <rename>xlid</rename>
  1595 + <update>Y</update>
  1596 + </value>
  1597 + <value>
  1598 + <name>ttinfo</name>
  1599 + <rename>ttid</rename>
  1600 + <update>Y</update>
  1601 + </value>
  1602 + <value>
  1603 + <name>lp</name>
  1604 + <rename>lpid</rename>
  1605 + <update>Y</update>
  1606 + </value>
  1607 + <value>
  1608 + <name>line_version</name>
  1609 + <rename>version</rename>
  1610 + <update>Y</update>
  1611 + </value>
  1612 + </lookup>
  1613 + <cluster_schema/>
  1614 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1615 + <xloc>481</xloc>
  1616 + <yloc>331</yloc>
  1617 + <draw>Y</draw>
  1618 + </GUI>
  1619 + </step>
  1620 +
  1621 + <step>
1340 1622 <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail</name>
1341 1623 <type>InsertUpdate</type>
1342 1624 <description/>
... ... @@ -2977,6 +3259,54 @@
2977 3259 </step>
2978 3260  
2979 3261 <step>
  3262 + <name>&#x73ed;&#x578b;&#x8868;&#x6570;&#x636e;</name>
  3263 + <type>ScriptValueMod</type>
  3264 + <description/>
  3265 + <distribute>Y</distribute>
  3266 + <custom_distribution/>
  3267 + <copies>1</copies>
  3268 + <partitioning>
  3269 + <method>none</method>
  3270 + <schema_name/>
  3271 + </partitioning>
  3272 + <compatible>N</compatible>
  3273 + <optimizationLevel>9</optimizationLevel>
  3274 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  3275 + <jsScript_name>Script 1</jsScript_name>
  3276 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var update_version &#x3d; 1&#x3b; &#x2f;&#x2f; &#x6570;&#x636e;version&#xa;var update_bx1 &#x3d; &#x22;_null_&#x22;&#x3b; &#x2f;&#x2f; &#x73ed;&#x578b;1&#xa;var update_bx2 &#x3d; &#x22;_null_&#x22;&#x3b; &#x2f;&#x2f; &#x73ed;&#x578b;2&#xa;var update_pds &#x3d; &#x22;0&#x22;&#x3b; &#x2f;&#x2f; &#x914d;&#x6863;&#x6570;</jsScript_script>
  3277 + </jsScript> </jsScripts> <fields> <field> <name>update_version</name>
  3278 + <rename>update_version</rename>
  3279 + <type>Integer</type>
  3280 + <length>-1</length>
  3281 + <precision>-1</precision>
  3282 + <replace>N</replace>
  3283 + </field> <field> <name>update_bx1</name>
  3284 + <rename>update_bx1</rename>
  3285 + <type>String</type>
  3286 + <length>-1</length>
  3287 + <precision>-1</precision>
  3288 + <replace>N</replace>
  3289 + </field> <field> <name>update_bx2</name>
  3290 + <rename>update_bx2</rename>
  3291 + <type>String</type>
  3292 + <length>-1</length>
  3293 + <precision>-1</precision>
  3294 + <replace>N</replace>
  3295 + </field> <field> <name>update_pds</name>
  3296 + <rename>update_pds</rename>
  3297 + <type>String</type>
  3298 + <length>-1</length>
  3299 + <precision>-1</precision>
  3300 + <replace>N</replace>
  3301 + </field> </fields> <cluster_schema/>
  3302 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3303 + <xloc>653</xloc>
  3304 + <yloc>332</yloc>
  3305 + <draw>Y</draw>
  3306 + </GUI>
  3307 + </step>
  3308 +
  3309 + <step>
2980 3310 <name>&#x73ed;&#x6b21;&#x6570;&#x636e;&#x8303;&#x5f0f;&#x5316;</name>
2981 3311 <type>Normaliser</type>
2982 3312 <description/>
... ... @@ -3395,11 +3725,11 @@
3395 3725 <non_match_default>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</non_match_default>
3396 3726 <fields>
3397 3727 <field>
3398   - <source_value>&#x51fa;&#x573a;</source_value>
  3728 + <source_value>Exit</source_value>
3399 3729 <target_value>&#x51fa;&#x573a;</target_value>
3400 3730 </field>
3401 3731 <field>
3402   - <source_value>&#x8fdb;&#x573a;</source_value>
  3732 + <source_value>Enter</source_value>
3403 3733 <target_value>&#x8fdb;&#x573a;</target_value>
3404 3734 </field>
3405 3735 </fields>
... ... @@ -3538,185 +3868,6 @@
3538 3868 </GUI>
3539 3869 </step>
3540 3870  
3541   - <step>
3542   - <name>&#x63d2;&#x5165; &#x2f; &#x66f4;&#x65b0; &#x73ed;&#x578b;&#x8868;&#xff08;&#x5de5;&#x65f6;&#x6570;&#x636e;&#xff09;</name>
3543   - <type>InsertUpdate</type>
3544   - <description/>
3545   - <distribute>Y</distribute>
3546   - <custom_distribution/>
3547   - <copies>1</copies>
3548   - <partitioning>
3549   - <method>none</method>
3550   - <schema_name/>
3551   - </partitioning>
3552   - <connection>control_jndi</connection>
3553   - <commit>100</commit>
3554   - <update_bypassed>Y</update_bypassed>
3555   - <lookup>
3556   - <schema/>
3557   - <table>bsth_c_s_ttinfo_bx_detail</table>
3558   - <key>
3559   - <name>xlid</name>
3560   - <field>xl</field>
3561   - <condition>&#x3d;</condition>
3562   - <name2/>
3563   - </key>
3564   - <key>
3565   - <name>ttid</name>
3566   - <field>ttinfo</field>
3567   - <condition>&#x3d;</condition>
3568   - <name2/>
3569   - </key>
3570   - <key>
3571   - <name>lpid</name>
3572   - <field>lp</field>
3573   - <condition>&#x3d;</condition>
3574   - <name2/>
3575   - </key>
3576   - <key>
3577   - <name>version</name>
3578   - <field>line_version</field>
3579   - <condition>&#x3d;</condition>
3580   - <name2/>
3581   - </key>
3582   - <value>
3583   - <name>gs</name>
3584   - <rename>gs</rename>
3585   - <update>Y</update>
3586   - </value>
3587   - <value>
3588   - <name>bx_type1</name>
3589   - <rename>update_bx1</rename>
3590   - <update>Y</update>
3591   - </value>
3592   - <value>
3593   - <name>bx_type2</name>
3594   - <rename>update_bx2</rename>
3595   - <update>Y</update>
3596   - </value>
3597   - <value>
3598   - <name>bx_pds</name>
3599   - <rename>update_pds</rename>
3600   - <update>Y</update>
3601   - </value>
3602   - <value>
3603   - <name>version</name>
3604   - <rename>update_version</rename>
3605   - <update>Y</update>
3606   - </value>
3607   - <value>
3608   - <name>xl</name>
3609   - <rename>xlid</rename>
3610   - <update>Y</update>
3611   - </value>
3612   - <value>
3613   - <name>ttinfo</name>
3614   - <rename>ttid</rename>
3615   - <update>Y</update>
3616   - </value>
3617   - <value>
3618   - <name>lp</name>
3619   - <rename>lpid</rename>
3620   - <update>Y</update>
3621   - </value>
3622   - <value>
3623   - <name>line_version</name>
3624   - <rename>version</rename>
3625   - <update>Y</update>
3626   - </value>
3627   - </lookup>
3628   - <cluster_schema/>
3629   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
3630   - <xloc>481</xloc>
3631   - <yloc>331</yloc>
3632   - <draw>Y</draw>
3633   - </GUI>
3634   - </step>
3635   -
3636   - <step>
3637   - <name>&#x62c6;&#x5206;&#x8def;&#x724c;&#x548c;&#x5de5;&#x65f6;</name>
3638   - <type>ScriptValueMod</type>
3639   - <description/>
3640   - <distribute>Y</distribute>
3641   - <custom_distribution/>
3642   - <copies>1</copies>
3643   - <partitioning>
3644   - <method>none</method>
3645   - <schema_name/>
3646   - </partitioning>
3647   - <compatible>N</compatible>
3648   - <optimizationLevel>9</optimizationLevel>
3649   - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
3650   - <jsScript_name>Script 1</jsScript_name>
3651   - <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var lp &#x3d; lpWithGs.split&#x28;&#x22;-&#x3e;&#x22;&#x29;&#x5b;0&#x5d;&#x3b;&#xa;var gs &#x3d; lpWithGs.split&#x28;&#x22;-&#x3e;&#x22;&#x29;&#x5b;1&#x5d;&#x3b;</jsScript_script>
3652   - </jsScript> </jsScripts> <fields> <field> <name>lp</name>
3653   - <rename>lp</rename>
3654   - <type>String</type>
3655   - <length>-1</length>
3656   - <precision>-1</precision>
3657   - <replace>N</replace>
3658   - </field> <field> <name>gs</name>
3659   - <rename>gs</rename>
3660   - <type>String</type>
3661   - <length>-1</length>
3662   - <precision>-1</precision>
3663   - <replace>N</replace>
3664   - </field> </fields> <cluster_schema/>
3665   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
3666   - <xloc>541</xloc>
3667   - <yloc>137</yloc>
3668   - <draw>Y</draw>
3669   - </GUI>
3670   - </step>
3671   -
3672   - <step>
3673   - <name>&#x73ed;&#x578b;&#x8868;&#x6570;&#x636e;</name>
3674   - <type>ScriptValueMod</type>
3675   - <description/>
3676   - <distribute>Y</distribute>
3677   - <custom_distribution/>
3678   - <copies>1</copies>
3679   - <partitioning>
3680   - <method>none</method>
3681   - <schema_name/>
3682   - </partitioning>
3683   - <compatible>N</compatible>
3684   - <optimizationLevel>9</optimizationLevel>
3685   - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
3686   - <jsScript_name>Script 1</jsScript_name>
3687   - <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var update_version &#x3d; 1&#x3b; &#x2f;&#x2f; &#x6570;&#x636e;version&#xa;var update_bx1 &#x3d; &#x22;_null_&#x22;&#x3b; &#x2f;&#x2f; &#x73ed;&#x578b;1&#xa;var update_bx2 &#x3d; &#x22;_null_&#x22;&#x3b; &#x2f;&#x2f; &#x73ed;&#x578b;2&#xa;var update_pds &#x3d; &#x22;0&#x22;&#x3b; &#x2f;&#x2f; &#x914d;&#x6863;&#x6570;</jsScript_script>
3688   - </jsScript> </jsScripts> <fields> <field> <name>update_version</name>
3689   - <rename>update_version</rename>
3690   - <type>Integer</type>
3691   - <length>-1</length>
3692   - <precision>-1</precision>
3693   - <replace>N</replace>
3694   - </field> <field> <name>update_bx1</name>
3695   - <rename>update_bx1</rename>
3696   - <type>String</type>
3697   - <length>-1</length>
3698   - <precision>-1</precision>
3699   - <replace>N</replace>
3700   - </field> <field> <name>update_bx2</name>
3701   - <rename>update_bx2</rename>
3702   - <type>String</type>
3703   - <length>-1</length>
3704   - <precision>-1</precision>
3705   - <replace>N</replace>
3706   - </field> <field> <name>update_pds</name>
3707   - <rename>update_pds</rename>
3708   - <type>String</type>
3709   - <length>-1</length>
3710   - <precision>-1</precision>
3711   - <replace>N</replace>
3712   - </field> </fields> <cluster_schema/>
3713   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
3714   - <xloc>653</xloc>
3715   - <yloc>332</yloc>
3716   - <draw>Y</draw>
3717   - </GUI>
3718   - </step>
3719   -
3720 3871 <step_error_handling>
3721 3872 <error>
3722 3873 <source_step>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail</source_step>
... ...
src/main/resources/datatools/ktrs/en/ttinfo-detail-metadata_for_export.ktr 0 → 100644
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<transformation>
  3 + <info>
  4 + <name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x5bfc;&#x51fa;&#x5143;&#x6570;&#x636e;_en</name>
  5 + <description/>
  6 + <extended_description/>
  7 + <trans_version/>
  8 + <trans_type>Normal</trans_type>
  9 + <trans_status>0</trans_status>
  10 + <directory>&#x2f;</directory>
  11 + <parameters>
  12 + <parameter>
  13 + <name>filepath</name>
  14 + <default_value>&#x2f;Users&#x2f;xu&#x2f;resource&#x2f;project_code&#x2f;runtime_temp&#x2f;bsth_control_u_d_files&#x2f;ttinfodetail_test.xls</default_value>
  15 + <description>&#x65f6;&#x523b;&#x8868;excel&#x5bfc;&#x51fa;&#x6587;&#x4ef6;&#x8def;&#x5f84;&#x540d;</description>
  16 + </parameter>
  17 + <parameter>
  18 + <name>injectktrfile</name>
  19 + <default_value>&#x2f;Users&#x2f;xu&#x2f;resource&#x2f;project_code&#x2f;bsth_project&#x2f;bsth_control_parent&#x2f;bsth_control&#x2f;src&#x2f;main&#x2f;resources&#x2f;datatools&#x2f;ktrs&#x2f;ttinfodetailDataOutput.ktr</default_value>
  20 + <description>&#x6ce8;&#x5165;&#x5143;&#x6570;&#x636e;&#x7684;ktr&#x6587;&#x4ef6;</description>
  21 + </parameter>
  22 + <parameter>
  23 + <name>ttinfoid</name>
  24 + <default_value>56</default_value>
  25 + <description>&#x65f6;&#x523b;&#x8868;id</description>
  26 + </parameter>
  27 + </parameters>
  28 + <log>
  29 +<trans-log-table><connection/>
  30 +<schema/>
  31 +<table/>
  32 +<size_limit_lines/>
  33 +<interval/>
  34 +<timeout_days/>
  35 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STATUS</id><enabled>Y</enabled><name>STATUS</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name><subject/></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name><subject/></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name><subject/></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name><subject/></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name><subject/></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name><subject/></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>STARTDATE</id><enabled>Y</enabled><name>STARTDATE</name></field><field><id>ENDDATE</id><enabled>Y</enabled><name>ENDDATE</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>DEPDATE</id><enabled>Y</enabled><name>DEPDATE</name></field><field><id>REPLAYDATE</id><enabled>Y</enabled><name>REPLAYDATE</name></field><field><id>LOG_FIELD</id><enabled>Y</enabled><name>LOG_FIELD</name></field><field><id>EXECUTING_SERVER</id><enabled>N</enabled><name>EXECUTING_SERVER</name></field><field><id>EXECUTING_USER</id><enabled>N</enabled><name>EXECUTING_USER</name></field><field><id>CLIENT</id><enabled>N</enabled><name>CLIENT</name></field></trans-log-table>
  36 +<perf-log-table><connection/>
  37 +<schema/>
  38 +<table/>
  39 +<interval/>
  40 +<timeout_days/>
  41 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>SEQ_NR</id><enabled>Y</enabled><name>SEQ_NR</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>INPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>INPUT_BUFFER_ROWS</name></field><field><id>OUTPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>OUTPUT_BUFFER_ROWS</name></field></perf-log-table>
  42 +<channel-log-table><connection/>
  43 +<schema/>
  44 +<table/>
  45 +<timeout_days/>
  46 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>LOGGING_OBJECT_TYPE</id><enabled>Y</enabled><name>LOGGING_OBJECT_TYPE</name></field><field><id>OBJECT_NAME</id><enabled>Y</enabled><name>OBJECT_NAME</name></field><field><id>OBJECT_COPY</id><enabled>Y</enabled><name>OBJECT_COPY</name></field><field><id>REPOSITORY_DIRECTORY</id><enabled>Y</enabled><name>REPOSITORY_DIRECTORY</name></field><field><id>FILENAME</id><enabled>Y</enabled><name>FILENAME</name></field><field><id>OBJECT_ID</id><enabled>Y</enabled><name>OBJECT_ID</name></field><field><id>OBJECT_REVISION</id><enabled>Y</enabled><name>OBJECT_REVISION</name></field><field><id>PARENT_CHANNEL_ID</id><enabled>Y</enabled><name>PARENT_CHANNEL_ID</name></field><field><id>ROOT_CHANNEL_ID</id><enabled>Y</enabled><name>ROOT_CHANNEL_ID</name></field></channel-log-table>
  47 +<step-log-table><connection/>
  48 +<schema/>
  49 +<table/>
  50 +<timeout_days/>
  51 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>LOG_FIELD</id><enabled>N</enabled><name>LOG_FIELD</name></field></step-log-table>
  52 +<metrics-log-table><connection/>
  53 +<schema/>
  54 +<table/>
  55 +<timeout_days/>
  56 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>METRICS_DATE</id><enabled>Y</enabled><name>METRICS_DATE</name></field><field><id>METRICS_CODE</id><enabled>Y</enabled><name>METRICS_CODE</name></field><field><id>METRICS_DESCRIPTION</id><enabled>Y</enabled><name>METRICS_DESCRIPTION</name></field><field><id>METRICS_SUBJECT</id><enabled>Y</enabled><name>METRICS_SUBJECT</name></field><field><id>METRICS_TYPE</id><enabled>Y</enabled><name>METRICS_TYPE</name></field><field><id>METRICS_VALUE</id><enabled>Y</enabled><name>METRICS_VALUE</name></field></metrics-log-table>
  57 + </log>
  58 + <maxdate>
  59 + <connection/>
  60 + <table/>
  61 + <field/>
  62 + <offset>0.0</offset>
  63 + <maxdiff>0.0</maxdiff>
  64 + </maxdate>
  65 + <size_rowset>10000</size_rowset>
  66 + <sleep_time_empty>50</sleep_time_empty>
  67 + <sleep_time_full>50</sleep_time_full>
  68 + <unique_connections>N</unique_connections>
  69 + <feedback_shown>Y</feedback_shown>
  70 + <feedback_size>50000</feedback_size>
  71 + <using_thread_priorities>Y</using_thread_priorities>
  72 + <shared_objects_file/>
  73 + <capture_step_performance>N</capture_step_performance>
  74 + <step_performance_capturing_delay>1000</step_performance_capturing_delay>
  75 + <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit>
  76 + <dependencies>
  77 + </dependencies>
  78 + <partitionschemas>
  79 + </partitionschemas>
  80 + <slaveservers>
  81 + </slaveservers>
  82 + <clusterschemas>
  83 + </clusterschemas>
  84 + <created_user>-</created_user>
  85 + <created_date>2016&#x2f;11&#x2f;15 15&#x3a;02&#x3a;41.624</created_date>
  86 + <modified_user>-</modified_user>
  87 + <modified_date>2016&#x2f;11&#x2f;15 15&#x3a;02&#x3a;41.624</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>TODO&#xff1a;&#x5982;&#x679c;groupby &#x52a0;&#x5165;bctype&#xff0c;&#xa;&#x5219;&#x4ee5;&#x53d1;&#x8f66;&#x987a;&#x5e8f;&#x53f7;&#xff0c;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5206;&#x7ec4;&#x7684;&#x6570;&#x636e;&#x53ef;&#x80fd;&#x91cd;&#x590d;&#xff0c;&#xa;&#x5e94;&#x4e3a;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x53ef;&#x80fd;&#x4e0d;&#x4e00;&#x6837;&#xff08;&#x5bfc;&#x5165;&#x4e4b;&#x540e;&#x4eba;&#x4e3a;&#x4fee;&#x6539;&#x7684;&#xff0c;&#x5982;&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6539;&#x6210;&#x533a;&#x95f4;&#xff09;&#xff0c;&#xa;&#x56e0;&#x4e3a;&#x5bfc;&#x51fa;&#x65f6;&#x5fc5;&#x987b;&#x6570;&#x636e;&#x4e0d;&#x91cd;&#x590d;&#xff0c;&#x8fd9;&#x91cc;&#x7684;&#x89e3;&#x51b3;&#x65b9;&#x6cd5;&#xff0c;&#x53ea;&#x4f7f;&#x7528;&#x53d1;&#x8f66;&#x987a;&#x5e8f;&#x53f7;&#x5206;&#x7ec4;&#xff0c;&#xa;&#x4ee5;&#x540e;&#x5efa;&#x8bae;&#xff0c;&#x8fd8;&#x662f;&#x539f;&#x6765;&#x7684;&#x65b9;&#x5f0f;&#x5206;&#x7ec4;&#xff0c;&#x7136;&#x540e;&#x628a;&#x66f4;&#x65b0;&#x65f6;&#x95f4;&#x665a;&#x7684;&#x53bb;&#x9664;&#xa;&#xa;&#x4ee5;&#x540e;&#x6539;&#x6210;&#x53bb;&#x9664;&#x91cd;&#x590d;&#x7eaa;&#x5f55;</note>
  94 + <xloc>178</xloc>
  95 + <yloc>547</yloc>
  96 + <width>406</width>
  97 + <heigth>122</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>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x5206;&#x7ec4;&#x6570;&#x636e;</from><to>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;</to><enabled>Y</enabled> </hop>
  826 + <hop> <from>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;</from><to>&#x8ba1;&#x7b97;&#x7ad9;&#x70b9;</to><enabled>Y</enabled> </hop>
  827 + <hop> <from>&#x8ba1;&#x7b97;excel&#x8f93;&#x51fa;&#x5b57;&#x6bb5;</from><to>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</to><enabled>Y</enabled> </hop>
  828 + <hop> <from>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</from><to>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</to><enabled>Y</enabled> </hop>
  829 + <hop> <from>&#x751f;&#x6210;&#x8def;&#x724c;&#x5b57;&#x6bb5;</from><to>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</to><enabled>Y</enabled> </hop>
  830 + <hop> <from>&#x8ba1;&#x7b97;&#x53cd;&#x8303;&#x5f0f;&#x5143;&#x6570;&#x636e;</from><to>ETL&#x5143;&#x6570;&#x636e;&#x6ce8;&#x5165;</to><enabled>Y</enabled> </hop>
  831 + <hop> <from>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</from><to>ETL&#x5143;&#x6570;&#x636e;&#x6ce8;&#x5165;</to><enabled>Y</enabled> </hop>
  832 + <hop> <from>&#x8ba1;&#x7b97;&#x7ad9;&#x70b9;</from><to>&#x67e5;&#x627e;&#x8d77;&#x70b9;&#x7ad9;</to><enabled>Y</enabled> </hop>
  833 + <hop> <from>&#x67e5;&#x627e;&#x8d77;&#x70b9;&#x7ad9;</from><to>&#x8ba1;&#x7b97;&#x53cd;&#x8303;&#x5f0f;&#x5143;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
  834 + <hop> <from>&#x67e5;&#x627e;&#x8d77;&#x70b9;&#x7ad9;</from><to>&#x8ba1;&#x7b97;excel&#x8f93;&#x51fa;&#x5b57;&#x6bb5;</to><enabled>Y</enabled> </hop>
  835 + </order>
  836 + <step>
  837 + <name>ETL&#x5143;&#x6570;&#x636e;&#x6ce8;&#x5165;</name>
  838 + <type>MetaInject</type>
  839 + <description/>
  840 + <distribute>Y</distribute>
  841 + <custom_distribution/>
  842 + <copies>1</copies>
  843 + <partitioning>
  844 + <method>none</method>
  845 + <schema_name/>
  846 + </partitioning>
  847 + <specification_method>filename</specification_method>
  848 + <trans_object_id/>
  849 + <trans_name/>
  850 + <filename>&#x24;&#x7b;injectktrfile&#x7d;</filename>
  851 + <directory_path/>
  852 + <source_step/>
  853 + <source_output_fields> </source_output_fields> <target_file/>
  854 + <no_execution>N</no_execution>
  855 + <stream_source_step/>
  856 + <stream_target_step/>
  857 + <mappings> <mapping> <target_step_name>Excel&#x8f93;&#x51fa;</target_step_name>
  858 + <target_attribute_key>TYPE</target_attribute_key>
  859 + <target_detail>Y</target_detail>
  860 + <source_step>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</source_step>
  861 + <source_field>fieldtype</source_field>
  862 + </mapping> <mapping> <target_step_name>Excel&#x8f93;&#x51fa;</target_step_name>
  863 + <target_attribute_key>NAME</target_attribute_key>
  864 + <target_detail>Y</target_detail>
  865 + <source_step>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</source_step>
  866 + <source_field>fieldname</source_field>
  867 + </mapping> <mapping> <target_step_name>&#x5217;&#x8f6c;&#x884c;</target_step_name>
  868 + <target_attribute_key>TARGET_NAME</target_attribute_key>
  869 + <target_detail>Y</target_detail>
  870 + <source_step>&#x8ba1;&#x7b97;&#x53cd;&#x8303;&#x5f0f;&#x5143;&#x6570;&#x636e;</source_step>
  871 + <source_field>targetfieldname</source_field>
  872 + </mapping> <mapping> <target_step_name>&#x5217;&#x8f6c;&#x884c;</target_step_name>
  873 + <target_attribute_key>NAME</target_attribute_key>
  874 + <target_detail>Y</target_detail>
  875 + <source_step>&#x8ba1;&#x7b97;&#x53cd;&#x8303;&#x5f0f;&#x5143;&#x6570;&#x636e;</source_step>
  876 + <source_field>valuefieldname</source_field>
  877 + </mapping> <mapping> <target_step_name>&#x5217;&#x8f6c;&#x884c;</target_step_name>
  878 + <target_attribute_key>TARGET_TYPE</target_attribute_key>
  879 + <target_detail>Y</target_detail>
  880 + <source_step>&#x8ba1;&#x7b97;&#x53cd;&#x8303;&#x5f0f;&#x5143;&#x6570;&#x636e;</source_step>
  881 + <source_field>targettype</source_field>
  882 + </mapping> <mapping> <target_step_name>&#x5217;&#x8f6c;&#x884c;</target_step_name>
  883 + <target_attribute_key>KEY_VALUE</target_attribute_key>
  884 + <target_detail>Y</target_detail>
  885 + <source_step>&#x8ba1;&#x7b97;&#x53cd;&#x8303;&#x5f0f;&#x5143;&#x6570;&#x636e;</source_step>
  886 + <source_field>keyvalue</source_field>
  887 + </mapping> </mappings> <cluster_schema/>
  888 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  889 + <xloc>640</xloc>
  890 + <yloc>64</yloc>
  891 + <draw>Y</draw>
  892 + </GUI>
  893 + </step>
  894 +
  895 + <step>
  896 + <name>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</name>
  897 + <type>SelectValues</type>
  898 + <description/>
  899 + <distribute>Y</distribute>
  900 + <custom_distribution/>
  901 + <copies>1</copies>
  902 + <partitioning>
  903 + <method>none</method>
  904 + <schema_name/>
  905 + </partitioning>
  906 + <fields> <field> <name>fieldname</name>
  907 + <rename/>
  908 + <length>-2</length>
  909 + <precision>-2</precision>
  910 + </field> <field> <name>fieldtype</name>
  911 + <rename/>
  912 + <length>-2</length>
  913 + <precision>-2</precision>
  914 + </field> <field> <name>fcno</name>
  915 + <rename/>
  916 + <length>-2</length>
  917 + <precision>-2</precision>
  918 + </field> <select_unspecified>N</select_unspecified>
  919 + </fields> <cluster_schema/>
  920 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  921 + <xloc>533</xloc>
  922 + <yloc>325</yloc>
  923 + <draw>Y</draw>
  924 + </GUI>
  925 + </step>
  926 +
  927 + <step>
  928 + <name>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</name>
  929 + <type>SortRows</type>
  930 + <description/>
  931 + <distribute>Y</distribute>
  932 + <custom_distribution/>
  933 + <copies>1</copies>
  934 + <partitioning>
  935 + <method>none</method>
  936 + <schema_name/>
  937 + </partitioning>
  938 + <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
  939 + <prefix>out</prefix>
  940 + <sort_size>1000000</sort_size>
  941 + <free_memory/>
  942 + <compress>N</compress>
  943 + <compress_variable/>
  944 + <unique_rows>N</unique_rows>
  945 + <fields>
  946 + <field>
  947 + <name>fcno</name>
  948 + <ascending>Y</ascending>
  949 + <case_sensitive>N</case_sensitive>
  950 + <presorted>N</presorted>
  951 + </field>
  952 + </fields>
  953 + <cluster_schema/>
  954 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  955 + <xloc>642</xloc>
  956 + <yloc>325</yloc>
  957 + <draw>Y</draw>
  958 + </GUI>
  959 + </step>
  960 +
  961 + <step>
  962 + <name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x5206;&#x7ec4;&#x6570;&#x636e;</name>
  963 + <type>TableInput</type>
  964 + <description/>
  965 + <distribute>Y</distribute>
  966 + <custom_distribution/>
  967 + <copies>1</copies>
  968 + <partitioning>
  969 + <method>none</method>
  970 + <schema_name/>
  971 + </partitioning>
  972 + <connection>control_jndi</connection>
  973 + <sql>select &#xa;fcno&#xa;, min&#x28;xl&#x29; xl &#xa;, min&#x28;xl_dir&#x29; xl_dir&#xa;, min&#x28;qdz_code&#x29; qdz&#xa;, min&#x28;zdz_code&#x29; zdz&#xa;, min&#x28;bc_type&#x29; bc_type &#xa;, min&#x28;line_version&#x29; line_version&#xa;from bsth_c_s_ttinfo_detail&#xa;where ttinfo &#x3d; &#x24;&#x7b;ttinfoid&#x7d;&#xa;group by fcno</sql>
  974 + <limit>0</limit>
  975 + <lookup/>
  976 + <execute_each_row>N</execute_each_row>
  977 + <variables_active>Y</variables_active>
  978 + <lazy_conversion_active>N</lazy_conversion_active>
  979 + <cluster_schema/>
  980 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  981 + <xloc>56</xloc>
  982 + <yloc>192</yloc>
  983 + <draw>Y</draw>
  984 + </GUI>
  985 + </step>
  986 +
  987 + <step>
  988 + <name>&#x67e5;&#x627e;&#x8d77;&#x70b9;&#x7ad9;</name>
  989 + <type>DBLookup</type>
  990 + <description/>
  991 + <distribute>N</distribute>
  992 + <custom_distribution/>
  993 + <copies>1</copies>
  994 + <partitioning>
  995 + <method>none</method>
  996 + <schema_name/>
  997 + </partitioning>
  998 + <connection>control_jndi</connection>
  999 + <cache>N</cache>
  1000 + <cache_load_all>Y</cache_load_all>
  1001 + <cache_size>0</cache_size>
  1002 + <lookup>
  1003 + <schema/>
  1004 + <table>bsth_c_ls_stationroute</table>
  1005 + <orderby/>
  1006 + <fail_on_multiple>N</fail_on_multiple>
  1007 + <eat_row_on_failure>N</eat_row_on_failure>
  1008 + <key>
  1009 + <name>xl</name>
  1010 + <field>line</field>
  1011 + <condition>&#x3d;</condition>
  1012 + <name2/>
  1013 + </key>
  1014 + <key>
  1015 + <name>xl_dir</name>
  1016 + <field>directions</field>
  1017 + <condition>&#x3d;</condition>
  1018 + <name2/>
  1019 + </key>
  1020 + <key>
  1021 + <name>line_version</name>
  1022 + <field>versions</field>
  1023 + <condition>&#x3d;</condition>
  1024 + <name2/>
  1025 + </key>
  1026 + <key>
  1027 + <name>smark</name>
  1028 + <field>station_mark</field>
  1029 + <condition>&#x3d;</condition>
  1030 + <name2/>
  1031 + </key>
  1032 + <key>
  1033 + <name>destroy</name>
  1034 + <field>destroy</field>
  1035 + <condition>&#x3d;</condition>
  1036 + <name2/>
  1037 + </key>
  1038 + <value>
  1039 + <name>station_name</name>
  1040 + <rename>zdname</rename>
  1041 + <default/>
  1042 + <type>String</type>
  1043 + </value>
  1044 + </lookup>
  1045 + <cluster_schema/>
  1046 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1047 + <xloc>412</xloc>
  1048 + <yloc>189</yloc>
  1049 + <draw>Y</draw>
  1050 + </GUI>
  1051 + </step>
  1052 +
  1053 + <step>
  1054 + <name>&#x751f;&#x6210;&#x8def;&#x724c;&#x5b57;&#x6bb5;</name>
  1055 + <type>RowGenerator</type>
  1056 + <description/>
  1057 + <distribute>Y</distribute>
  1058 + <custom_distribution/>
  1059 + <copies>1</copies>
  1060 + <partitioning>
  1061 + <method>none</method>
  1062 + <schema_name/>
  1063 + </partitioning>
  1064 + <fields>
  1065 + <field>
  1066 + <name>fieldname</name>
  1067 + <type>String</type>
  1068 + <format/>
  1069 + <currency/>
  1070 + <decimal/>
  1071 + <group/>
  1072 + <nullif>Road sign</nullif>
  1073 + <length>-1</length>
  1074 + <precision>-1</precision>
  1075 + <set_empty_string>N</set_empty_string>
  1076 + </field>
  1077 + <field>
  1078 + <name>fieldtype</name>
  1079 + <type>String</type>
  1080 + <format/>
  1081 + <currency/>
  1082 + <decimal/>
  1083 + <group/>
  1084 + <nullif>String</nullif>
  1085 + <length>-1</length>
  1086 + <precision>-1</precision>
  1087 + <set_empty_string>N</set_empty_string>
  1088 + </field>
  1089 + <field>
  1090 + <name>fcno</name>
  1091 + <type>Integer</type>
  1092 + <format/>
  1093 + <currency/>
  1094 + <decimal/>
  1095 + <group/>
  1096 + <nullif>0</nullif>
  1097 + <length>-1</length>
  1098 + <precision>-1</precision>
  1099 + <set_empty_string>N</set_empty_string>
  1100 + </field>
  1101 + </fields>
  1102 + <limit>1</limit>
  1103 + <never_ending>N</never_ending>
  1104 + <interval_in_ms>5000</interval_in_ms>
  1105 + <row_time_field>now</row_time_field>
  1106 + <last_time_field>FiveSecondsAgo</last_time_field>
  1107 + <cluster_schema/>
  1108 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1109 + <xloc>530</xloc>
  1110 + <yloc>194</yloc>
  1111 + <draw>Y</draw>
  1112 + </GUI>
  1113 + </step>
  1114 +
  1115 + <step>
  1116 + <name>&#x8ba1;&#x7b97;excel&#x8f93;&#x51fa;&#x5b57;&#x6bb5;</name>
  1117 + <type>ScriptValueMod</type>
  1118 + <description/>
  1119 + <distribute>Y</distribute>
  1120 + <custom_distribution/>
  1121 + <copies>1</copies>
  1122 + <partitioning>
  1123 + <method>none</method>
  1124 + <schema_name/>
  1125 + </partitioning>
  1126 + <compatible>N</compatible>
  1127 + <optimizationLevel>9</optimizationLevel>
  1128 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  1129 + <jsScript_name>Script 1</jsScript_name>
  1130 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var fieldname&#x3b; &#x2f;&#x2f; &#x5b57;&#x6bb5;&#x540d;&#xa;var fieldtype&#x3b; &#x2f;&#x2f; &#x5b57;&#x6bb5;&#x7c7b;&#x578b;&#xa;&#xa;if &#x28;bc_type &#x3d;&#x3d; &#x27;in&#x27;&#x29; &#x7b;&#xa; fieldname &#x3d; &#x27;Enter&#x27; &#x2b; &#x22;-&#x3e;&#x22; &#x2b; fcno&#x3b;&#xa;&#x7d; else if &#x28;bc_type &#x3d;&#x3d; &#x27;out&#x27;&#x29; &#x7b;&#xa; fieldname &#x3d; &#x27;Exit&#x27; &#x2b; &#x22;-&#x3e;&#x22; &#x2b; fcno&#x3b;&#xa;&#x7d; else if &#x28;bc_type &#x3d;&#x3d; &#x27;normal&#x27;&#x29; &#x7b;&#xa; fieldname &#x3d; zdname &#x2b; &#x22;-&#x3e;&#x22; &#x2b; fcno&#x3b;&#xa;&#x7d; else &#x7b;&#xa; fieldname &#x3d; zdname &#x2b; &#x22;-&#x3e;&#x22; &#x2b; fcno&#x3b;&#xa;&#x7d; &#xa;&#xa;fieldtype &#x3d; &#x27;String&#x27;&#x3b;&#xa;</jsScript_script>
  1131 + </jsScript> </jsScripts> <fields> <field> <name>fieldname</name>
  1132 + <rename>fieldname</rename>
  1133 + <type>String</type>
  1134 + <length>-1</length>
  1135 + <precision>-1</precision>
  1136 + <replace>N</replace>
  1137 + </field> <field> <name>fieldtype</name>
  1138 + <rename>fieldtype</rename>
  1139 + <type>String</type>
  1140 + <length>-1</length>
  1141 + <precision>-1</precision>
  1142 + <replace>N</replace>
  1143 + </field> </fields> <cluster_schema/>
  1144 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1145 + <xloc>410</xloc>
  1146 + <yloc>326</yloc>
  1147 + <draw>Y</draw>
  1148 + </GUI>
  1149 + </step>
  1150 +
  1151 + <step>
  1152 + <name>&#x8ba1;&#x7b97;&#x53cd;&#x8303;&#x5f0f;&#x5143;&#x6570;&#x636e;</name>
  1153 + <type>ScriptValueMod</type>
  1154 + <description/>
  1155 + <distribute>Y</distribute>
  1156 + <custom_distribution/>
  1157 + <copies>1</copies>
  1158 + <partitioning>
  1159 + <method>none</method>
  1160 + <schema_name/>
  1161 + </partitioning>
  1162 + <compatible>N</compatible>
  1163 + <optimizationLevel>9</optimizationLevel>
  1164 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  1165 + <jsScript_name>Script 1</jsScript_name>
  1166 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var targetfieldname&#x3b; &#x2f;&#x2f; &#x76ee;&#x6807;&#x5b57;&#x6bb5;&#x540d;&#xa;var targettype&#x3b; &#x2f;&#x2f; &#x76ee;&#x6807;&#x7c7b;&#x578b;&#xa;var valuefieldname&#x3b; &#x2f;&#x2f; &#x503c;&#x5b57;&#x6bb5;&#x540d;&#xa;var keyvalue&#x3b; &#x2f;&#x2f; &#x5173;&#x952e;&#x5b57;&#x503c;&#xa;&#xa;if &#x28;bc_type &#x3d;&#x3d; &#x27;in&#x27;&#x29; &#x7b;&#xa; targetfieldname &#x3d; &#x27;Enter&#x27; &#x2b; &#x22;-&#x3e;&#x22; &#x2b; fcno&#x3b;&#xa;&#x7d; else if &#x28;bc_type &#x3d;&#x3d; &#x27;out&#x27;&#x29; &#x7b;&#xa; targetfieldname &#x3d; &#x27;Exit&#x27; &#x2b; &#x22;-&#x3e;&#x22; &#x2b; fcno&#x3b;&#xa;&#x7d; else if &#x28;bc_type &#x3d;&#x3d; &#x27;normal&#x27;&#x29; &#x7b;&#xa; targetfieldname &#x3d; zdname &#x2b; &#x22;-&#x3e;&#x22; &#x2b; fcno&#x3b;&#xa;&#x7d; else &#x7b;&#xa; targetfieldname &#x3d; zdname &#x2b; &#x22;-&#x3e;&#x22; &#x2b; fcno&#x3b;&#xa;&#x7d; &#xa;&#xa;targettype &#x3d; &#x27;String&#x27;&#x3b;&#xa;valuefieldname &#x3d; &#x27;fcsj&#x27;&#x3b;&#xa;keyvalue &#x3d; fcno&#x3b;&#xa;</jsScript_script>
  1167 + </jsScript> </jsScripts> <fields> <field> <name>targetfieldname</name>
  1168 + <rename>targetfieldname</rename>
  1169 + <type>String</type>
  1170 + <length>-1</length>
  1171 + <precision>-1</precision>
  1172 + <replace>N</replace>
  1173 + </field> <field> <name>targettype</name>
  1174 + <rename>targettype</rename>
  1175 + <type>String</type>
  1176 + <length>-1</length>
  1177 + <precision>-1</precision>
  1178 + <replace>N</replace>
  1179 + </field> <field> <name>valuefieldname</name>
  1180 + <rename>valuefieldname</rename>
  1181 + <type>String</type>
  1182 + <length>-1</length>
  1183 + <precision>-1</precision>
  1184 + <replace>N</replace>
  1185 + </field> <field> <name>keyvalue</name>
  1186 + <rename>keyvalue</rename>
  1187 + <type>String</type>
  1188 + <length>-1</length>
  1189 + <precision>-1</precision>
  1190 + <replace>N</replace>
  1191 + </field> </fields> <cluster_schema/>
  1192 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1193 + <xloc>410</xloc>
  1194 + <yloc>64</yloc>
  1195 + <draw>Y</draw>
  1196 + </GUI>
  1197 + </step>
  1198 +
  1199 + <step>
  1200 + <name>&#x8ba1;&#x7b97;&#x7ad9;&#x70b9;</name>
  1201 + <type>ScriptValueMod</type>
  1202 + <description/>
  1203 + <distribute>Y</distribute>
  1204 + <custom_distribution/>
  1205 + <copies>1</copies>
  1206 + <partitioning>
  1207 + <method>none</method>
  1208 + <schema_name/>
  1209 + </partitioning>
  1210 + <compatible>N</compatible>
  1211 + <optimizationLevel>9</optimizationLevel>
  1212 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  1213 + <jsScript_name>Script 1</jsScript_name>
  1214 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;&#x2f;&#x2a;&#xa;var zd&#x3b;&#xa;&#xa;if &#x28;bc_type &#x3d;&#x3d; &#x27;in&#x27;&#x29; &#x7b;&#xa; zd &#x3d; qdz&#x3b;&#xa;&#x7d; else if &#x28;bc_type &#x3d;&#x3d; &#x27;out&#x27;&#x29; &#x7b;&#xa; zd &#x3d; zdz&#x3b;&#xa;&#x7d; else if &#x28;bc_type &#x3d;&#x3d; &#x27;normal&#x27;&#x29; &#x7b;&#xa; zd &#x3d; qdz&#x3b;&#xa;&#x7d; else &#x7b;&#xa; zd &#x3d; qdz&#x3b;&#xa;&#x7d;&#xa;&#x2a;&#x2f;&#xa;&#xa;&#x2f;&#x2f; &#x7ad9;&#x70b9;&#x6807;&#x5fd7;&#xa;var smark &#x3d; &#x22;B&#x22;&#x3b;&#xa;var destroy &#x3d; 0&#x3b;</jsScript_script>
  1215 + </jsScript> </jsScripts> <fields> <field> <name>smark</name>
  1216 + <rename>smark</rename>
  1217 + <type>String</type>
  1218 + <length>-1</length>
  1219 + <precision>-1</precision>
  1220 + <replace>N</replace>
  1221 + </field> <field> <name>destroy</name>
  1222 + <rename>destroy</rename>
  1223 + <type>Number</type>
  1224 + <length>16</length>
  1225 + <precision>2</precision>
  1226 + <replace>N</replace>
  1227 + </field> </fields> <cluster_schema/>
  1228 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1229 + <xloc>300</xloc>
  1230 + <yloc>190</yloc>
  1231 + <draw>Y</draw>
  1232 + </GUI>
  1233 + </step>
  1234 +
  1235 + <step>
  1236 + <name>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;</name>
  1237 + <type>FilterRows</type>
  1238 + <description/>
  1239 + <distribute>Y</distribute>
  1240 + <custom_distribution/>
  1241 + <copies>1</copies>
  1242 + <partitioning>
  1243 + <method>none</method>
  1244 + <schema_name/>
  1245 + </partitioning>
  1246 +<send_true_to/>
  1247 +<send_false_to/>
  1248 + <compare>
  1249 +<condition>
  1250 + <negated>N</negated>
  1251 + <conditions>
  1252 + <condition>
  1253 + <negated>N</negated>
  1254 + <leftvalue>bc_type</leftvalue>
  1255 + <function>IS NOT NULL</function>
  1256 + <rightvalue/>
  1257 + </condition>
  1258 + </conditions>
  1259 + </condition>
  1260 + </compare>
  1261 + <cluster_schema/>
  1262 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1263 + <xloc>182</xloc>
  1264 + <yloc>189</yloc>
  1265 + <draw>Y</draw>
  1266 + </GUI>
  1267 + </step>
  1268 +
  1269 + <step_error_handling>
  1270 + </step_error_handling>
  1271 + <slave-step-copy-partition-distribution>
  1272 +</slave-step-copy-partition-distribution>
  1273 + <slave_transformation>N</slave_transformation>
  1274 +
  1275 +</transformation>
... ...
src/main/resources/datatools/ktrs/ttinfodetailDataInputMetaData.ktr renamed to src/main/resources/datatools/ktrs/en/ttinfo-detail-metadata_for_import.ktr
1 1 <?xml version="1.0" encoding="UTF-8"?>
2 2 <transformation>
3 3 <info>
4   - <name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x5bfc;&#x5165;&#x5143;&#x6570;&#x636e;</name>
  4 + <name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x5bfc;&#x5165;&#x5143;&#x6570;&#x636e;_en</name>
5 5 <description/>
6 6 <extended_description/>
7 7 <trans_version/>
... ... @@ -501,6 +501,61 @@
501 501 </attributes>
502 502 </connection>
503 503 <connection>
  504 + <name>wzk_mysql_jndi</name>
  505 + <server/>
  506 + <type>MYSQL</type>
  507 + <access>JNDI</access>
  508 + <database>wzk_mysql</database>
  509 + <port>1521</port>
  510 + <username/>
  511 + <password>Encrypted </password>
  512 + <servername/>
  513 + <data_tablespace/>
  514 + <index_tablespace/>
  515 + <attributes>
  516 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  517 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  518 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  519 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  520 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  521 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  522 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  523 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  524 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  525 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  526 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  527 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  528 + </attributes>
  529 + </connection>
  530 + <connection>
  531 + <name>wzk&#xff08;&#x672c;&#x673a;&#xff09;</name>
  532 + <server>localhost</server>
  533 + <type>MYSQL</type>
  534 + <access>Native</access>
  535 + <database>pdgj_wzk_sys</database>
  536 + <port>3306</port>
  537 + <username>root</username>
  538 + <password>Encrypted </password>
  539 + <servername/>
  540 + <data_tablespace/>
  541 + <index_tablespace/>
  542 + <attributes>
  543 + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
  544 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  545 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  546 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  547 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  548 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  549 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  550 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  551 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  552 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  553 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  554 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  555 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  556 + </attributes>
  557 + </connection>
  558 + <connection>
504 559 <name>xlab_mysql_youle</name>
505 560 <server>101.231.124.8</server>
506 561 <type>MYSQL</type>
... ... @@ -653,7 +708,7 @@
653 708 </connection>
654 709 <connection>
655 710 <name>&#x516c;&#x53f8;ygjw</name>
656   - <server>192.168.168.1</server>
  711 + <server>192.168.168.178</server>
657 712 <type>ORACLE</type>
658 713 <access>Native</access>
659 714 <database>orcl</database>
... ... @@ -676,6 +731,102 @@
676 731 </attributes>
677 732 </connection>
678 733 <connection>
  734 + <name>&#x516c;&#x53f8;&#x673a;&#x52a1;_pdgj</name>
  735 + <server>192.168.168.178</server>
  736 + <type>ORACLE</type>
  737 + <access>Native</access>
  738 + <database>orcl</database>
  739 + <port>1521</port>
  740 + <username>pdgj</username>
  741 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10ce96a8d0</password>
  742 + <servername/>
  743 + <data_tablespace/>
  744 + <index_tablespace/>
  745 + <attributes>
  746 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  747 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  748 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  749 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  750 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  751 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  752 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  753 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  754 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  755 + </attributes>
  756 + </connection>
  757 + <connection>
  758 + <name>&#x5916;&#x7f51;vpn&#x4e34;&#x6e2f;&#x673a;&#x52a1;oracle</name>
  759 + <server>10.10.150.114</server>
  760 + <type>ORACLE</type>
  761 + <access>Native</access>
  762 + <database>helowin</database>
  763 + <port>1521</port>
  764 + <username>lgjw</username>
  765 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d295a5cd</password>
  766 + <servername/>
  767 + <data_tablespace/>
  768 + <index_tablespace/>
  769 + <attributes>
  770 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  771 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  772 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  773 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  774 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  775 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  776 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  777 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  778 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  779 + </attributes>
  780 + </connection>
  781 + <connection>
  782 + <name>&#x5916;&#x7f51;&#x5357;&#x6c47;&#x673a;&#x52a1;oracle</name>
  783 + <server>58.247.254.118</server>
  784 + <type>ORACLE</type>
  785 + <access>Native</access>
  786 + <database>orcl</database>
  787 + <port>15211</port>
  788 + <username>nhjw</username>
  789 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d09aa5cd</password>
  790 + <servername/>
  791 + <data_tablespace/>
  792 + <index_tablespace/>
  793 + <attributes>
  794 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  795 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  796 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  797 + <attribute><code>PORT_NUMBER</code><attribute>15211</attribute></attribute>
  798 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  799 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  800 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  801 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  802 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  803 + </attributes>
  804 + </connection>
  805 + <connection>
  806 + <name>&#x5916;&#x7f51;&#x6768;&#x9ad8;&#x673a;&#x52a1;oracle</name>
  807 + <server>58.247.254.118</server>
  808 + <type>ORACLE</type>
  809 + <access>Native</access>
  810 + <database>orcl</database>
  811 + <port>15211</port>
  812 + <username>ygjw</username>
  813 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10c795a5cd</password>
  814 + <servername/>
  815 + <data_tablespace/>
  816 + <index_tablespace/>
  817 + <attributes>
  818 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  819 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  820 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  821 + <attribute><code>PORT_NUMBER</code><attribute>15211</attribute></attribute>
  822 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  823 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  824 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  825 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  826 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  827 + </attributes>
  828 + </connection>
  829 + <connection>
679 830 <name>&#x5916;&#x7f51;&#x91d1;&#x9ad8;&#x673a;&#x52a1;oracle</name>
680 831 <server>58.247.254.118</server>
681 832 <type>ORACLE</type>
... ... @@ -1033,6 +1184,39 @@
1033 1184 </step>
1034 1185  
1035 1186 <step>
  1187 + <name>&#x5220;&#x9664;&#x4e4b;&#x524d;&#x7684;&#x73ed;&#x578b;&#x4fe1;&#x606f;</name>
  1188 + <type>ExecSQL</type>
  1189 + <description/>
  1190 + <distribute>Y</distribute>
  1191 + <custom_distribution/>
  1192 + <copies>1</copies>
  1193 + <partitioning>
  1194 + <method>none</method>
  1195 + <schema_name/>
  1196 + </partitioning>
  1197 + <connection>control_jndi</connection>
  1198 + <execute_each_row>Y</execute_each_row>
  1199 + <single_statement>N</single_statement>
  1200 + <replace_variables>N</replace_variables>
  1201 + <quoteString>N</quoteString>
  1202 + <sql>delete from bsth_c_s_ttinfo_bx_detail where ttinfo &#x3d; &#x3f;</sql>
  1203 + <set_params>N</set_params>
  1204 + <insert_field/>
  1205 + <update_field/>
  1206 + <delete_field/>
  1207 + <read_field/>
  1208 + <arguments>
  1209 + <argument><name>ttid_</name></argument>
  1210 + </arguments>
  1211 + <cluster_schema/>
  1212 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1213 + <xloc>812</xloc>
  1214 + <yloc>86</yloc>
  1215 + <draw>Y</draw>
  1216 + </GUI>
  1217 + </step>
  1218 +
  1219 + <step>
1036 1220 <name>&#x5408;&#x5e76;&#x589e;&#x52a0;&#x5e38;&#x91cf;&#x6570;&#x636e;metadata</name>
1037 1221 <type>Dummy</type>
1038 1222 <description/>
... ... @@ -1163,7 +1347,7 @@
1163 1347 <currency/>
1164 1348 <decimal/>
1165 1349 <group/>
1166   - <nullif>&#x53d1;&#x8f66;&#x65f6;&#x95f4;</nullif>
  1350 + <nullif>Departure time</nullif>
1167 1351 <length>-1</length>
1168 1352 <precision>-1</precision>
1169 1353 <set_empty_string>N</set_empty_string>
... ... @@ -1941,39 +2125,6 @@
1941 2125 </GUI>
1942 2126 </step>
1943 2127  
1944   - <step>
1945   - <name>&#x5220;&#x9664;&#x4e4b;&#x524d;&#x7684;&#x73ed;&#x578b;&#x4fe1;&#x606f;</name>
1946   - <type>ExecSQL</type>
1947   - <description/>
1948   - <distribute>Y</distribute>
1949   - <custom_distribution/>
1950   - <copies>1</copies>
1951   - <partitioning>
1952   - <method>none</method>
1953   - <schema_name/>
1954   - </partitioning>
1955   - <connection>control_jndi</connection>
1956   - <execute_each_row>Y</execute_each_row>
1957   - <single_statement>N</single_statement>
1958   - <replace_variables>N</replace_variables>
1959   - <quoteString>N</quoteString>
1960   - <sql>delete from bsth_c_s_ttinfo_bx_detail where ttinfo &#x3d; &#x3f;</sql>
1961   - <set_params>N</set_params>
1962   - <insert_field/>
1963   - <update_field/>
1964   - <delete_field/>
1965   - <read_field/>
1966   - <arguments>
1967   - <argument><name>ttid_</name></argument>
1968   - </arguments>
1969   - <cluster_schema/>
1970   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
1971   - <xloc>812</xloc>
1972   - <yloc>86</yloc>
1973   - <draw>Y</draw>
1974   - </GUI>
1975   - </step>
1976   -
1977 2128 <step_error_handling>
1978 2129 </step_error_handling>
1979 2130 <slave-step-copy-partition-distribution>
... ...
src/main/resources/datatools/ktrs/ttinfodetailDataOutput.ktr renamed to src/main/resources/datatools/ktrs/zh/ttinfo-detail-data_export.ktr
1 1 <?xml version="1.0" encoding="UTF-8"?>
2 2 <transformation>
3 3 <info>
4   - <name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x5bfc;&#x51fa;</name>
  4 + <name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x5bfc;&#x51fa;_zh</name>
5 5 <description/>
6 6 <extended_description/>
7 7 <trans_version/>
... ... @@ -402,6 +402,33 @@
402 402 </attributes>
403 403 </connection>
404 404 <connection>
  405 + <name>test_control_local</name>
  406 + <server>localhost</server>
  407 + <type>MYSQL</type>
  408 + <access>Native</access>
  409 + <database>test_control</database>
  410 + <port>3306</port>
  411 + <username>root</username>
  412 + <password>Encrypted </password>
  413 + <servername/>
  414 + <data_tablespace/>
  415 + <index_tablespace/>
  416 + <attributes>
  417 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  418 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  419 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  420 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  421 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  422 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  423 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  424 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  425 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  426 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  427 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  428 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  429 + </attributes>
  430 + </connection>
  431 + <connection>
405 432 <name>test_control&#xff08;&#x672c;&#x673a;&#xff09;</name>
406 433 <server>127.0.0.1</server>
407 434 <type>MYSQL</type>
... ... @@ -414,6 +441,62 @@
414 441 <data_tablespace/>
415 442 <index_tablespace/>
416 443 <attributes>
  444 + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
  445 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  446 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  447 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  448 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  449 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  450 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  451 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  452 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  453 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  454 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  455 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  456 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  457 + </attributes>
  458 + </connection>
  459 + <connection>
  460 + <name>wzk_mysql_jndi</name>
  461 + <server/>
  462 + <type>MYSQL</type>
  463 + <access>JNDI</access>
  464 + <database>wzk_mysql</database>
  465 + <port>1521</port>
  466 + <username/>
  467 + <password>Encrypted </password>
  468 + <servername/>
  469 + <data_tablespace/>
  470 + <index_tablespace/>
  471 + <attributes>
  472 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  473 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  474 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  475 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  476 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  477 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  478 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  479 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  480 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  481 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  482 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  483 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  484 + </attributes>
  485 + </connection>
  486 + <connection>
  487 + <name>wzk&#xff08;&#x672c;&#x673a;&#xff09;</name>
  488 + <server>localhost</server>
  489 + <type>MYSQL</type>
  490 + <access>Native</access>
  491 + <database>pdgj_wzk_sys</database>
  492 + <port>3306</port>
  493 + <username>root</username>
  494 + <password>Encrypted </password>
  495 + <servername/>
  496 + <data_tablespace/>
  497 + <index_tablespace/>
  498 + <attributes>
  499 + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
417 500 <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
418 501 <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
419 502 <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
... ... @@ -581,7 +664,7 @@
581 664 </connection>
582 665 <connection>
583 666 <name>&#x516c;&#x53f8;ygjw</name>
584   - <server>192.168.168.1</server>
  667 + <server>192.168.168.178</server>
585 668 <type>ORACLE</type>
586 669 <access>Native</access>
587 670 <database>orcl</database>
... ... @@ -603,6 +686,126 @@
603 686 <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
604 687 </attributes>
605 688 </connection>
  689 + <connection>
  690 + <name>&#x516c;&#x53f8;&#x673a;&#x52a1;_pdgj</name>
  691 + <server>192.168.168.178</server>
  692 + <type>ORACLE</type>
  693 + <access>Native</access>
  694 + <database>orcl</database>
  695 + <port>1521</port>
  696 + <username>pdgj</username>
  697 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10ce96a8d0</password>
  698 + <servername/>
  699 + <data_tablespace/>
  700 + <index_tablespace/>
  701 + <attributes>
  702 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  703 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  704 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  705 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  706 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  707 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  708 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  709 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  710 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  711 + </attributes>
  712 + </connection>
  713 + <connection>
  714 + <name>&#x5916;&#x7f51;vpn&#x4e34;&#x6e2f;&#x673a;&#x52a1;oracle</name>
  715 + <server>10.10.150.114</server>
  716 + <type>ORACLE</type>
  717 + <access>Native</access>
  718 + <database>helowin</database>
  719 + <port>1521</port>
  720 + <username>lgjw</username>
  721 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d295a5cd</password>
  722 + <servername/>
  723 + <data_tablespace/>
  724 + <index_tablespace/>
  725 + <attributes>
  726 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  727 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  728 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  729 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  730 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  731 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  732 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  733 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  734 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  735 + </attributes>
  736 + </connection>
  737 + <connection>
  738 + <name>&#x5916;&#x7f51;&#x5357;&#x6c47;&#x673a;&#x52a1;oracle</name>
  739 + <server>58.247.254.118</server>
  740 + <type>ORACLE</type>
  741 + <access>Native</access>
  742 + <database>orcl</database>
  743 + <port>15211</port>
  744 + <username>nhjw</username>
  745 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d09aa5cd</password>
  746 + <servername/>
  747 + <data_tablespace/>
  748 + <index_tablespace/>
  749 + <attributes>
  750 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  751 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  752 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  753 + <attribute><code>PORT_NUMBER</code><attribute>15211</attribute></attribute>
  754 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  755 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  756 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  757 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  758 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  759 + </attributes>
  760 + </connection>
  761 + <connection>
  762 + <name>&#x5916;&#x7f51;&#x6768;&#x9ad8;&#x673a;&#x52a1;oracle</name>
  763 + <server>58.247.254.118</server>
  764 + <type>ORACLE</type>
  765 + <access>Native</access>
  766 + <database>orcl</database>
  767 + <port>15211</port>
  768 + <username>ygjw</username>
  769 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10c795a5cd</password>
  770 + <servername/>
  771 + <data_tablespace/>
  772 + <index_tablespace/>
  773 + <attributes>
  774 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  775 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  776 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  777 + <attribute><code>PORT_NUMBER</code><attribute>15211</attribute></attribute>
  778 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  779 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  780 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  781 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  782 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  783 + </attributes>
  784 + </connection>
  785 + <connection>
  786 + <name>&#x5916;&#x7f51;&#x91d1;&#x9ad8;&#x673a;&#x52a1;oracle</name>
  787 + <server>58.247.254.118</server>
  788 + <type>ORACLE</type>
  789 + <access>Native</access>
  790 + <database>orcl</database>
  791 + <port>15211</port>
  792 + <username>jwgl</username>
  793 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d485a8d6</password>
  794 + <servername/>
  795 + <data_tablespace/>
  796 + <index_tablespace/>
  797 + <attributes>
  798 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  799 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  800 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  801 + <attribute><code>PORT_NUMBER</code><attribute>15211</attribute></attribute>
  802 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  803 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  804 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  805 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  806 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  807 + </attributes>
  808 + </connection>
606 809 <order>
607 810 <hop> <from>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</from><to>&#x5217;&#x8f6c;&#x884c;</to><enabled>Y</enabled> </hop>
608 811 <hop> <from>&#x5217;&#x8f6c;&#x884c;</from><to>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</to><enabled>Y</enabled> </hop>
... ... @@ -636,7 +839,7 @@
636 839 <add_time>N</add_time>
637 840 <SpecifyFormat>N</SpecifyFormat>
638 841 <date_time_format/>
639   - <sheetname>Sheet1</sheetname>
  842 + <sheetname>&#x5de5;&#x4f5c;&#x8868;1</sheetname>
640 843 <autosizecolums>N</autosizecolums>
641 844 <nullisblank>N</nullisblank>
642 845 <protect_sheet>N</protect_sheet>
... ...
src/main/resources/datatools/ktrs/ttinfodetailoutputforedit.ktr renamed to src/main/resources/datatools/ktrs/zh/ttinfo-detail-data_export_for_edit.ktr
1 1 <?xml version="1.0" encoding="UTF-8"?>
2 2 <transformation>
3 3 <info>
4   - <name>ttinfodetailoutputforedit</name>
  4 + <name>ttinfodetailoutputforedit_zh</name>
5 5 <description/>
6 6 <extended_description/>
7 7 <trans_version/>
... ... @@ -472,6 +472,61 @@
472 472 </attributes>
473 473 </connection>
474 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>
475 530 <name>xlab_mysql_youle</name>
476 531 <server>101.231.124.8</server>
477 532 <type>MYSQL</type>
... ... @@ -624,7 +679,7 @@
624 679 </connection>
625 680 <connection>
626 681 <name>&#x516c;&#x53f8;ygjw</name>
627   - <server>192.168.168.1</server>
  682 + <server>192.168.168.178</server>
628 683 <type>ORACLE</type>
629 684 <access>Native</access>
630 685 <database>orcl</database>
... ... @@ -647,6 +702,102 @@
647 702 </attributes>
648 703 </connection>
649 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>
650 801 <name>&#x5916;&#x7f51;&#x91d1;&#x9ad8;&#x673a;&#x52a1;oracle</name>
651 802 <server>58.247.254.118</server>
652 803 <type>ORACLE</type>
... ... @@ -704,7 +855,7 @@
704 855 <add_time>N</add_time>
705 856 <SpecifyFormat>N</SpecifyFormat>
706 857 <date_time_format/>
707   - <sheetname>Sheet1</sheetname>
  858 + <sheetname>&#x5de5;&#x4f5c;&#x8868;1</sheetname>
708 859 <autosizecolums>N</autosizecolums>
709 860 <nullisblank>N</nullisblank>
710 861 <protect_sheet>N</protect_sheet>
... ...
src/main/resources/datatools/ktrs/zh/ttinfo-detail-data_import_of_dynamic.ktr 0 → 100644
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<transformation>
  3 + <info>
  4 + <name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x5bfc;&#x5165;-&#x7ad9;&#x70b9;&#x8def;&#x7531;&#x7248;&#x672c;2_zh</name>
  5 + <description>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;&#x5bfc;&#x5165;</description>
  6 + <extended_description>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;&#xff0c;&#x4f7f;&#x7528;&#x751f;&#x6210;&#x65f6;&#x523b;&#x8868;&#x683c;&#x5f0f;</extended_description>
  7 + <trans_version/>
  8 + <trans_type>Normal</trans_type>
  9 + <trans_status>0</trans_status>
  10 + <directory>&#x2f;</directory>
  11 + <parameters>
  12 + </parameters>
  13 + <log>
  14 +<trans-log-table><connection/>
  15 +<schema/>
  16 +<table/>
  17 +<size_limit_lines/>
  18 +<interval/>
  19 +<timeout_days/>
  20 +<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>
  21 +<perf-log-table><connection/>
  22 +<schema/>
  23 +<table/>
  24 +<interval/>
  25 +<timeout_days/>
  26 +<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>
  27 +<channel-log-table><connection/>
  28 +<schema/>
  29 +<table/>
  30 +<timeout_days/>
  31 +<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>
  32 +<step-log-table><connection/>
  33 +<schema/>
  34 +<table/>
  35 +<timeout_days/>
  36 +<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>
  37 +<metrics-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>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>
  42 + </log>
  43 + <maxdate>
  44 + <connection/>
  45 + <table/>
  46 + <field/>
  47 + <offset>0.0</offset>
  48 + <maxdiff>0.0</maxdiff>
  49 + </maxdate>
  50 + <size_rowset>10000</size_rowset>
  51 + <sleep_time_empty>50</sleep_time_empty>
  52 + <sleep_time_full>50</sleep_time_full>
  53 + <unique_connections>N</unique_connections>
  54 + <feedback_shown>Y</feedback_shown>
  55 + <feedback_size>50000</feedback_size>
  56 + <using_thread_priorities>Y</using_thread_priorities>
  57 + <shared_objects_file/>
  58 + <capture_step_performance>N</capture_step_performance>
  59 + <step_performance_capturing_delay>1000</step_performance_capturing_delay>
  60 + <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit>
  61 + <dependencies>
  62 + </dependencies>
  63 + <partitionschemas>
  64 + </partitionschemas>
  65 + <slaveservers>
  66 + </slaveservers>
  67 + <clusterschemas>
  68 + </clusterschemas>
  69 + <created_user>-</created_user>
  70 + <created_date>2016&#x2f;06&#x2f;30 12&#x3a;21&#x3a;57.536</created_date>
  71 + <modified_user>-</modified_user>
  72 + <modified_date>2016&#x2f;06&#x2f;30 12&#x3a;21&#x3a;57.536</modified_date>
  73 + <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA&#x3d;</key_for_session_key>
  74 + <is_key_private>N</is_key_private>
  75 + </info>
  76 + <notepads>
  77 + <notepad>
  78 + <note>&#x5b57;&#x5178;&#x8868;&#x5bf9;&#x5e94;&#xff08;&#x4ee5;&#x540e;&#x76f4;&#x63a5;&#x67e5;&#x627e;&#x8868; bsth_c_sys_dictionary&#xff09;&#xa;&#x7c7b;&#x578b; &#x4ee3;&#x7801; &#x540d;&#x79f0;&#xa;LineTrend 0 &#x4e0a;&#x884c;&#xa;LineTrend 1 &#x4e0b;&#x884c;&#xa;ScheduleType normal &#x6b63;&#x5e38;&#x73ed;&#x6b21;&#xa;ScheduleType out &#x51fa;&#x573a;&#xa;ScheduleType in &#x8fdb;&#x573a;&#xa;ScheduleType temp &#x4e34;&#x52a0;&#xa;ScheduleType region &#x533a;&#x95f4;&#xa;ScheduleType venting &#x653e;&#x7a7a;&#xa;ScheduleType major &#x653e;&#x5927;&#x7ad9;</note>
  79 + <xloc>606</xloc>
  80 + <yloc>129</yloc>
  81 + <width>332</width>
  82 + <heigth>186</heigth>
  83 + <fontname>YaHei Consolas Hybrid</fontname>
  84 + <fontsize>12</fontsize>
  85 + <fontbold>N</fontbold>
  86 + <fontitalic>N</fontitalic>
  87 + <fontcolorred>0</fontcolorred>
  88 + <fontcolorgreen>0</fontcolorgreen>
  89 + <fontcolorblue>0</fontcolorblue>
  90 + <backgroundcolorred>255</backgroundcolorred>
  91 + <backgroundcolorgreen>205</backgroundcolorgreen>
  92 + <backgroundcolorblue>112</backgroundcolorblue>
  93 + <bordercolorred>100</bordercolorred>
  94 + <bordercolorgreen>100</bordercolorgreen>
  95 + <bordercolorblue>100</bordercolorblue>
  96 + <drawshadow>Y</drawshadow>
  97 + </notepad>
  98 + <notepad>
  99 + <note>&#x56e0;&#x4e3a;&#x65f6;&#x523b;&#x8868;&#x8f93;&#x5165;&#x683c;&#x5f0f;&#x4e0d;&#x786e;&#x5b9a;&#x6027;&#xff0c;&#x4e3b;&#x8981;&#x56e0;&#x4e3a;&#x8868;&#x7ed3;&#x6784;&#x662f;&#x53cd;&#x8303;&#x5f0f;&#x5316;&#x7684;&#xff0c;&#xa;&#x6240;&#x4ee5;&#x9700;&#x8981;&#x5916;&#x90e8;&#x52a8;&#x6001;&#x6307;&#x5b9a;&#x613f;&#x6570;&#x636e;&#xff0c;&#x5934;&#x4e09;&#x4e2a;step&#x52a8;&#x6001;&#x6307;&#x5b9a;&#x613f;&#x6570;&#x636e;&#xa;&#xa;</note>
  100 + <xloc>24</xloc>
  101 + <yloc>208</yloc>
  102 + <width>346</width>
  103 + <heigth>74</heigth>
  104 + <fontname>YaHei Consolas Hybrid</fontname>
  105 + <fontsize>12</fontsize>
  106 + <fontbold>N</fontbold>
  107 + <fontitalic>N</fontitalic>
  108 + <fontcolorred>0</fontcolorred>
  109 + <fontcolorgreen>0</fontcolorgreen>
  110 + <fontcolorblue>0</fontcolorblue>
  111 + <backgroundcolorred>255</backgroundcolorred>
  112 + <backgroundcolorgreen>205</backgroundcolorgreen>
  113 + <backgroundcolorblue>112</backgroundcolorblue>
  114 + <bordercolorred>100</bordercolorred>
  115 + <bordercolorgreen>100</bordercolorgreen>
  116 + <bordercolorblue>100</bordercolorblue>
  117 + <drawshadow>Y</drawshadow>
  118 + </notepad>
  119 + <notepad>
  120 + <note>&#x8fd9;&#x91cc;&#x6709;&#x4e9b;&#x95ee;&#x9898;&#xa;&#x5728;window2012&#x7684;&#x73af;&#x5883;&#x4e0b;&#xff0c;&#xa;MySql&#x6570;&#x636e;&#x5e93;&#x67e5;&#x8be2;&#x4e2d;&#x5982;&#x679c;&#x8fd4;&#x56de;&#x4e2d;&#x6587;&#x5185;&#x5bb9;&#x7684;&#x5b57;&#x6bb5;&#xff0c;&#x8fd9;&#x4e2a;&#x5185;&#x5bb9;&#x4e71;&#x7801;&#xa;&#x89e3;&#x51b3;&#x529e;&#x6cd5;&#xff0c;&#x5c31;&#x662f;&#x6570;&#x636e;&#x5e93;&#x67e5;&#x8be2;&#x5168;&#x90e8;&#x7f13;&#x5b58;&#xff0c;&#x5c31;&#x4e0d;&#x4e71;&#x7801;&#xa;linux&#x73af;&#x5883;&#x4e0b;&#x6ca1;&#x95ee;&#x9898;</note>
  121 + <xloc>721</xloc>
  122 + <yloc>762</yloc>
  123 + <width>333</width>
  124 + <heigth>90</heigth>
  125 + <fontname>YaHei Consolas Hybrid</fontname>
  126 + <fontsize>12</fontsize>
  127 + <fontbold>N</fontbold>
  128 + <fontitalic>N</fontitalic>
  129 + <fontcolorred>0</fontcolorred>
  130 + <fontcolorgreen>0</fontcolorgreen>
  131 + <fontcolorblue>0</fontcolorblue>
  132 + <backgroundcolorred>255</backgroundcolorred>
  133 + <backgroundcolorgreen>205</backgroundcolorgreen>
  134 + <backgroundcolorblue>112</backgroundcolorblue>
  135 + <bordercolorred>100</bordercolorred>
  136 + <bordercolorgreen>100</bordercolorgreen>
  137 + <bordercolorblue>100</bordercolorblue>
  138 + <drawshadow>Y</drawshadow>
  139 + </notepad>
  140 + <notepad>
  141 + <note>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#xff0c;&#x65b9;&#x5411;&#x6709;&#x65f6;&#x786e;&#x5b9a;&#x4e0d;&#x51c6;&#xff0c;&#xa;&#x7a7a;&#x7684;&#x60c5;&#x51b5;&#x4e0b;&#x8bbe;&#x5b9a;&#x4e3a;0&#xff08;&#x4e0a;&#x884c;&#xff09;</note>
  142 + <xloc>104</xloc>
  143 + <yloc>939</yloc>
  144 + <width>178</width>
  145 + <heigth>42</heigth>
  146 + <fontname>YaHei Consolas Hybrid</fontname>
  147 + <fontsize>12</fontsize>
  148 + <fontbold>N</fontbold>
  149 + <fontitalic>N</fontitalic>
  150 + <fontcolorred>0</fontcolorred>
  151 + <fontcolorgreen>0</fontcolorgreen>
  152 + <fontcolorblue>0</fontcolorblue>
  153 + <backgroundcolorred>255</backgroundcolorred>
  154 + <backgroundcolorgreen>205</backgroundcolorgreen>
  155 + <backgroundcolorblue>112</backgroundcolorblue>
  156 + <bordercolorred>100</bordercolorred>
  157 + <bordercolorgreen>100</bordercolorgreen>
  158 + <bordercolorblue>100</bordercolorblue>
  159 + <drawshadow>Y</drawshadow>
  160 + </notepad>
  161 + <notepad>
  162 + <note>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#xff0c;&#x65b9;&#x5411;&#x6709;&#x65f6;&#x786e;&#x5b9a;&#x4e0d;&#x51c6;&#xff0c;&#xa;&#x7a7a;&#x7684;&#x60c5;&#x51b5;&#x4e0b;&#x8bbe;&#x5b9a;&#x4e3a;0&#xff08;&#x4e0a;&#x884c;&#xff09;</note>
  163 + <xloc>578</xloc>
  164 + <yloc>1084</yloc>
  165 + <width>178</width>
  166 + <heigth>42</heigth>
  167 + <fontname>YaHei Consolas Hybrid</fontname>
  168 + <fontsize>12</fontsize>
  169 + <fontbold>N</fontbold>
  170 + <fontitalic>N</fontitalic>
  171 + <fontcolorred>0</fontcolorred>
  172 + <fontcolorgreen>0</fontcolorgreen>
  173 + <fontcolorblue>0</fontcolorblue>
  174 + <backgroundcolorred>255</backgroundcolorred>
  175 + <backgroundcolorgreen>205</backgroundcolorgreen>
  176 + <backgroundcolorblue>112</backgroundcolorblue>
  177 + <bordercolorred>100</bordercolorred>
  178 + <bordercolorgreen>100</bordercolorgreen>
  179 + <bordercolorblue>100</bordercolorblue>
  180 + <drawshadow>Y</drawshadow>
  181 + </notepad>
  182 + </notepads>
  183 + <connection>
  184 + <name>192.168.168.1_jwgl_dw</name>
  185 + <server>192.168.168.1</server>
  186 + <type>ORACLE</type>
  187 + <access>Native</access>
  188 + <database>orcl</database>
  189 + <port>1521</port>
  190 + <username>jwgl_dw</username>
  191 + <password>Encrypted 2be98afc86aa7f2e4cb13b977d2adabcd</password>
  192 + <servername/>
  193 + <data_tablespace/>
  194 + <index_tablespace/>
  195 + <attributes>
  196 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  197 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  198 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  199 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  200 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  201 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  202 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  203 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  204 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  205 + </attributes>
  206 + </connection>
  207 + <connection>
  208 + <name>bus_control_variable</name>
  209 + <server>&#x24;&#x7b;v_db_ip&#x7d;</server>
  210 + <type>MYSQL</type>
  211 + <access>Native</access>
  212 + <database>&#x24;&#x7b;v_db_dname&#x7d;</database>
  213 + <port>3306</port>
  214 + <username>&#x24;&#x7b;v_db_uname&#x7d;</username>
  215 + <password>&#x24;&#x7b;v_db_pwd&#x7d;</password>
  216 + <servername/>
  217 + <data_tablespace/>
  218 + <index_tablespace/>
  219 + <attributes>
  220 + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
  221 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  222 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  223 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  224 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  225 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  226 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  227 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  228 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  229 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  230 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  231 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  232 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  233 + </attributes>
  234 + </connection>
  235 + <connection>
  236 + <name>bus_control_&#x516c;&#x53f8;_201</name>
  237 + <server>localhost</server>
  238 + <type>MYSQL</type>
  239 + <access>Native</access>
  240 + <database>control</database>
  241 + <port>3306</port>
  242 + <username>root</username>
  243 + <password>Encrypted </password>
  244 + <servername/>
  245 + <data_tablespace/>
  246 + <index_tablespace/>
  247 + <attributes>
  248 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  249 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  250 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  251 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  252 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  253 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  254 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  255 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  256 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  257 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  258 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  259 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  260 + </attributes>
  261 + </connection>
  262 + <connection>
  263 + <name>bus_control_&#x672c;&#x673a;</name>
  264 + <server>localhost</server>
  265 + <type>MYSQL</type>
  266 + <access>Native</access>
  267 + <database>control</database>
  268 + <port>3306</port>
  269 + <username>root</username>
  270 + <password>Encrypted </password>
  271 + <servername/>
  272 + <data_tablespace/>
  273 + <index_tablespace/>
  274 + <attributes>
  275 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  276 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  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>3306</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>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  284 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  285 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  286 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  287 + </attributes>
  288 + </connection>
  289 + <connection>
  290 + <name>control_jndi</name>
  291 + <server/>
  292 + <type>MYSQL</type>
  293 + <access>JNDI</access>
  294 + <database>control_jndi</database>
  295 + <port>1521</port>
  296 + <username/>
  297 + <password>Encrypted </password>
  298 + <servername/>
  299 + <data_tablespace/>
  300 + <index_tablespace/>
  301 + <attributes>
  302 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  303 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  304 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  305 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  306 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  307 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  308 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  309 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  310 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  311 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  312 + </attributes>
  313 + </connection>
  314 + <connection>
  315 + <name>JGJW_VM</name>
  316 + <server>192.168.198.240</server>
  317 + <type>ORACLE</type>
  318 + <access>Native</access>
  319 + <database>orcl</database>
  320 + <port>1521</port>
  321 + <username>jwgl</username>
  322 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d485a8d6</password>
  323 + <servername/>
  324 + <data_tablespace/>
  325 + <index_tablespace/>
  326 + <attributes>
  327 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  328 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  329 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  330 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  331 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  332 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  333 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  334 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  335 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  336 + </attributes>
  337 + </connection>
  338 + <connection>
  339 + <name>NHJW_VM</name>
  340 + <server>192.168.198.240</server>
  341 + <type>ORACLE</type>
  342 + <access>Native</access>
  343 + <database>orcl</database>
  344 + <port>1521</port>
  345 + <username>nhjw</username>
  346 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d09aa5cd</password>
  347 + <servername/>
  348 + <data_tablespace/>
  349 + <index_tablespace/>
  350 + <attributes>
  351 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  352 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  353 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  354 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  355 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  356 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  357 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  358 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  359 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  360 + </attributes>
  361 + </connection>
  362 + <connection>
  363 + <name>PDGJ_VM</name>
  364 + <server>192.168.198.240</server>
  365 + <type>ORACLE</type>
  366 + <access>Native</access>
  367 + <database>orcl</database>
  368 + <port>1521</port>
  369 + <username>pdgj</username>
  370 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10ce96a8d0</password>
  371 + <servername/>
  372 + <data_tablespace/>
  373 + <index_tablespace/>
  374 + <attributes>
  375 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  376 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  377 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  378 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  379 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  380 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  381 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  382 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  383 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  384 + </attributes>
  385 + </connection>
  386 + <connection>
  387 + <name>repair_dw_mysql_jndi</name>
  388 + <server/>
  389 + <type>MYSQL</type>
  390 + <access>JNDI</access>
  391 + <database>repair_dw_mysql</database>
  392 + <port>1521</port>
  393 + <username/>
  394 + <password>Encrypted </password>
  395 + <servername/>
  396 + <data_tablespace/>
  397 + <index_tablespace/>
  398 + <attributes>
  399 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  400 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  401 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  402 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  403 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  404 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  405 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  406 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  407 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  408 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  409 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  410 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  411 + </attributes>
  412 + </connection>
  413 + <connection>
  414 + <name>repair_dw&#xff08;&#x672c;&#x673a;&#xff09;</name>
  415 + <server>localhost</server>
  416 + <type>MYSQL</type>
  417 + <access>Native</access>
  418 + <database>ruoyi-vue-3.5</database>
  419 + <port>3306</port>
  420 + <username>root</username>
  421 + <password>Encrypted </password>
  422 + <servername/>
  423 + <data_tablespace/>
  424 + <index_tablespace/>
  425 + <attributes>
  426 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  427 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  428 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  429 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  430 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  431 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  432 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  433 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  434 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  435 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  436 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  437 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  438 + </attributes>
  439 + </connection>
  440 + <connection>
  441 + <name>repair_real_h2</name>
  442 + <server/>
  443 + <type>H2</type>
  444 + <access>JNDI</access>
  445 + <database>repair_real_h2</database>
  446 + <port>1521</port>
  447 + <username/>
  448 + <password>Encrypted </password>
  449 + <servername/>
  450 + <data_tablespace/>
  451 + <index_tablespace/>
  452 + <attributes>
  453 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  454 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  455 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  456 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  457 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  458 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  459 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  460 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  461 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  462 + </attributes>
  463 + </connection>
  464 + <connection>
  465 + <name>SNJW_VM</name>
  466 + <server>192.168.198.240</server>
  467 + <type>ORACLE</type>
  468 + <access>Native</access>
  469 + <database>orcl</database>
  470 + <port>1521</port>
  471 + <username>snjw</username>
  472 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10cd9ca5cd</password>
  473 + <servername/>
  474 + <data_tablespace/>
  475 + <index_tablespace/>
  476 + <attributes>
  477 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  478 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  479 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  480 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  481 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  482 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  483 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  484 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  485 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  486 + </attributes>
  487 + </connection>
  488 + <connection>
  489 + <name>test_control_local</name>
  490 + <server>localhost</server>
  491 + <type>MYSQL</type>
  492 + <access>Native</access>
  493 + <database>test_control</database>
  494 + <port>3306</port>
  495 + <username>root</username>
  496 + <password>Encrypted </password>
  497 + <servername/>
  498 + <data_tablespace/>
  499 + <index_tablespace/>
  500 + <attributes>
  501 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  502 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  503 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  504 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  505 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  506 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  507 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  508 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  509 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  510 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  511 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  512 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  513 + </attributes>
  514 + </connection>
  515 + <connection>
  516 + <name>test_control&#xff08;&#x672c;&#x673a;&#xff09;</name>
  517 + <server>127.0.0.1</server>
  518 + <type>MYSQL</type>
  519 + <access>Native</access>
  520 + <database>test_control</database>
  521 + <port>3306</port>
  522 + <username>root</username>
  523 + <password>Encrypted </password>
  524 + <servername/>
  525 + <data_tablespace/>
  526 + <index_tablespace/>
  527 + <attributes>
  528 + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
  529 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  530 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  531 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  532 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  533 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  534 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  535 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  536 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  537 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  538 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  539 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  540 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  541 + </attributes>
  542 + </connection>
  543 + <connection>
  544 + <name>wzk_mysql_jndi</name>
  545 + <server/>
  546 + <type>MYSQL</type>
  547 + <access>JNDI</access>
  548 + <database>wzk_mysql</database>
  549 + <port>1521</port>
  550 + <username/>
  551 + <password>Encrypted </password>
  552 + <servername/>
  553 + <data_tablespace/>
  554 + <index_tablespace/>
  555 + <attributes>
  556 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  557 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  558 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  559 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  560 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  561 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  562 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  563 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  564 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  565 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  566 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  567 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  568 + </attributes>
  569 + </connection>
  570 + <connection>
  571 + <name>wzk&#xff08;&#x672c;&#x673a;&#xff09;</name>
  572 + <server>localhost</server>
  573 + <type>MYSQL</type>
  574 + <access>Native</access>
  575 + <database>pdgj_wzk_sys</database>
  576 + <port>3306</port>
  577 + <username>root</username>
  578 + <password>Encrypted </password>
  579 + <servername/>
  580 + <data_tablespace/>
  581 + <index_tablespace/>
  582 + <attributes>
  583 + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
  584 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  585 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  586 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  587 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  588 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  589 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  590 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  591 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  592 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  593 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  594 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  595 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  596 + </attributes>
  597 + </connection>
  598 + <connection>
  599 + <name>xlab_mysql_youle</name>
  600 + <server>101.231.124.8</server>
  601 + <type>MYSQL</type>
  602 + <access>Native</access>
  603 + <database>xlab_youle</database>
  604 + <port>45687</port>
  605 + <username>xlab-youle</username>
  606 + <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password>
  607 + <servername/>
  608 + <data_tablespace/>
  609 + <index_tablespace/>
  610 + <attributes>
  611 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  612 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  613 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  614 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  615 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  616 + <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute>
  617 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  618 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  619 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  620 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  621 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  622 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  623 + </attributes>
  624 + </connection>
  625 + <connection>
  626 + <name>xlab_mysql_youle&#xff08;&#x672c;&#x673a;&#xff09;</name>
  627 + <server>localhost</server>
  628 + <type>MYSQL</type>
  629 + <access>Native</access>
  630 + <database>xlab_youle</database>
  631 + <port>3306</port>
  632 + <username>root</username>
  633 + <password>Encrypted </password>
  634 + <servername/>
  635 + <data_tablespace/>
  636 + <index_tablespace/>
  637 + <attributes>
  638 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  639 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  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>3306</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>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  647 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  648 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  649 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  650 + </attributes>
  651 + </connection>
  652 + <connection>
  653 + <name>xlab_youle</name>
  654 + <server/>
  655 + <type>MYSQL</type>
  656 + <access>JNDI</access>
  657 + <database>xlab_youle</database>
  658 + <port>1521</port>
  659 + <username/>
  660 + <password>Encrypted </password>
  661 + <servername/>
  662 + <data_tablespace/>
  663 + <index_tablespace/>
  664 + <attributes>
  665 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  666 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  667 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  668 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  669 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  670 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  671 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  672 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  673 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  674 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  675 + </attributes>
  676 + </connection>
  677 + <connection>
  678 + <name>YGJW_VM</name>
  679 + <server>192.168.198.240</server>
  680 + <type>ORACLE</type>
  681 + <access>Native</access>
  682 + <database>orcl</database>
  683 + <port>1521</port>
  684 + <username>ygjw</username>
  685 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10c795a5cd</password>
  686 + <servername/>
  687 + <data_tablespace/>
  688 + <index_tablespace/>
  689 + <attributes>
  690 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  691 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  692 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  693 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  694 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  695 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  696 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  697 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  698 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  699 + </attributes>
  700 + </connection>
  701 + <connection>
  702 + <name>&#x516c;&#x53f8;jgjw</name>
  703 + <server>192.168.168.1</server>
  704 + <type>ORACLE</type>
  705 + <access>Native</access>
  706 + <database>orcl</database>
  707 + <port>1521</port>
  708 + <username>jwgl</username>
  709 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d485a8d6</password>
  710 + <servername/>
  711 + <data_tablespace/>
  712 + <index_tablespace/>
  713 + <attributes>
  714 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  715 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  716 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  717 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  718 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  719 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  720 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  721 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  722 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  723 + </attributes>
  724 + </connection>
  725 + <connection>
  726 + <name>&#x516c;&#x53f8;snjw</name>
  727 + <server>192.168.168.1</server>
  728 + <type>ORACLE</type>
  729 + <access>Native</access>
  730 + <database>orcl</database>
  731 + <port>1521</port>
  732 + <username>snjw</username>
  733 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10cd9ca5cd</password>
  734 + <servername/>
  735 + <data_tablespace/>
  736 + <index_tablespace/>
  737 + <attributes>
  738 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  739 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  740 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  741 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  742 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  743 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  744 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  745 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  746 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  747 + </attributes>
  748 + </connection>
  749 + <connection>
  750 + <name>&#x516c;&#x53f8;ygjw</name>
  751 + <server>192.168.168.178</server>
  752 + <type>ORACLE</type>
  753 + <access>Native</access>
  754 + <database>orcl</database>
  755 + <port>1521</port>
  756 + <username>ygjw</username>
  757 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10c795a5cd</password>
  758 + <servername/>
  759 + <data_tablespace/>
  760 + <index_tablespace/>
  761 + <attributes>
  762 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  763 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  764 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  765 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  766 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  767 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  768 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  769 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  770 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  771 + </attributes>
  772 + </connection>
  773 + <connection>
  774 + <name>&#x516c;&#x53f8;&#x673a;&#x52a1;_pdgj</name>
  775 + <server>192.168.168.178</server>
  776 + <type>ORACLE</type>
  777 + <access>Native</access>
  778 + <database>orcl</database>
  779 + <port>1521</port>
  780 + <username>pdgj</username>
  781 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10ce96a8d0</password>
  782 + <servername/>
  783 + <data_tablespace/>
  784 + <index_tablespace/>
  785 + <attributes>
  786 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  787 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  788 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  789 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  790 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  791 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  792 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  793 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  794 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  795 + </attributes>
  796 + </connection>
  797 + <connection>
  798 + <name>&#x5916;&#x7f51;vpn&#x4e34;&#x6e2f;&#x673a;&#x52a1;oracle</name>
  799 + <server>10.10.150.114</server>
  800 + <type>ORACLE</type>
  801 + <access>Native</access>
  802 + <database>helowin</database>
  803 + <port>1521</port>
  804 + <username>lgjw</username>
  805 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d295a5cd</password>
  806 + <servername/>
  807 + <data_tablespace/>
  808 + <index_tablespace/>
  809 + <attributes>
  810 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  811 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  812 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  813 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  814 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  815 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  816 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  817 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  818 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  819 + </attributes>
  820 + </connection>
  821 + <connection>
  822 + <name>&#x5916;&#x7f51;&#x5357;&#x6c47;&#x673a;&#x52a1;oracle</name>
  823 + <server>58.247.254.118</server>
  824 + <type>ORACLE</type>
  825 + <access>Native</access>
  826 + <database>orcl</database>
  827 + <port>15211</port>
  828 + <username>nhjw</username>
  829 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d09aa5cd</password>
  830 + <servername/>
  831 + <data_tablespace/>
  832 + <index_tablespace/>
  833 + <attributes>
  834 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  835 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  836 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  837 + <attribute><code>PORT_NUMBER</code><attribute>15211</attribute></attribute>
  838 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  839 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  840 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  841 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  842 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  843 + </attributes>
  844 + </connection>
  845 + <connection>
  846 + <name>&#x5916;&#x7f51;&#x6768;&#x9ad8;&#x673a;&#x52a1;oracle</name>
  847 + <server>58.247.254.118</server>
  848 + <type>ORACLE</type>
  849 + <access>Native</access>
  850 + <database>orcl</database>
  851 + <port>15211</port>
  852 + <username>ygjw</username>
  853 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10c795a5cd</password>
  854 + <servername/>
  855 + <data_tablespace/>
  856 + <index_tablespace/>
  857 + <attributes>
  858 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  859 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  860 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  861 + <attribute><code>PORT_NUMBER</code><attribute>15211</attribute></attribute>
  862 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  863 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  864 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  865 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  866 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  867 + </attributes>
  868 + </connection>
  869 + <connection>
  870 + <name>&#x5916;&#x7f51;&#x91d1;&#x9ad8;&#x673a;&#x52a1;oracle</name>
  871 + <server>58.247.254.118</server>
  872 + <type>ORACLE</type>
  873 + <access>Native</access>
  874 + <database>orcl</database>
  875 + <port>15211</port>
  876 + <username>jwgl</username>
  877 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d485a8d6</password>
  878 + <servername/>
  879 + <data_tablespace/>
  880 + <index_tablespace/>
  881 + <attributes>
  882 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  883 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  884 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  885 + <attribute><code>PORT_NUMBER</code><attribute>15211</attribute></attribute>
  886 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  887 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  888 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  889 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  890 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  891 + </attributes>
  892 + </connection>
  893 + <order>
  894 + <hop> <from>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</from><to>&#x73ed;&#x6b21;&#x6570;&#x636e;&#x8303;&#x5f0f;&#x5316;</to><enabled>Y</enabled> </hop>
  895 + <hop> <from>&#x6dfb;&#x52a0;&#x5bf9;&#x5e94;&#x73ed;&#x6b21;&#x6570;</from><to>&#x5904;&#x7406;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
  896 + <hop> <from>&#x67e5;&#x627e;&#x65f6;&#x523b;&#x8868;&#x57fa;&#x7840;&#x4fe1;&#x606f;&#x5173;&#x8054;</from><to>&#x67e5;&#x627e;&#x8def;&#x724c;&#x5173;&#x8054;</to><enabled>Y</enabled> </hop>
  897 + <hop> <from>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x5173;&#x8054;</from><to>&#x67e5;&#x627e;&#x65f6;&#x523b;&#x8868;&#x57fa;&#x7840;&#x4fe1;&#x606f;&#x5173;&#x8054;</to><enabled>Y</enabled> </hop>
  898 + <hop> <from>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178;</from><to>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178;</to><enabled>Y</enabled> </hop>
  899 + <hop> <from>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 2</from><to>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 2</to><enabled>Y</enabled> </hop>
  900 + <hop> <from>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 3</from><to>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 3</to><enabled>Y</enabled> </hop>
  901 + <hop> <from>&#x5339;&#x914d;&#x4e0a;&#x4e0b;&#x884c;&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</from><to>&#x7c7b;&#x578b;&#x4fee;&#x6b63;</to><enabled>Y</enabled> </hop>
  902 + <hop> <from>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;1</from><to>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</to><enabled>Y</enabled> </hop>
  903 + <hop> <from>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;1</from><to>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
  904 + <hop> <from>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</from><to>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
  905 + <hop> <from>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</from><to>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
  906 + <hop> <from>&#x67e5;&#x627e;&#x6240;&#x6709;&#x7ebf;&#x8def;&#x4e0a;&#x4e0b;&#x884c;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</from><to>&#x5339;&#x914d;&#x4e0a;&#x4e0b;&#x884c;&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>
  907 + <hop> <from>&#x67e5;&#x627e;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;</from><to>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178;</to><enabled>Y</enabled> </hop>
  908 + <hop> <from>&#x67e5;&#x627e;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</from><to>&#x67e5;&#x627e;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;</to><enabled>Y</enabled> </hop>
  909 + <hop> <from>&#x6b63;&#x5e38;&#x73ed;&#x6b21;_&#x5904;&#x7406;&#x6570;&#x636e;</from><to>&#x67e5;&#x627e;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</to><enabled>Y</enabled> </hop>
  910 + <hop> <from>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</from><to>&#x6b63;&#x5e38;&#x73ed;&#x6b21;_&#x5904;&#x7406;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
  911 + <hop> <from>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178;</from><to>&#x67e5;&#x627e;&#x6240;&#x6709;&#x7ebf;&#x8def;&#x4e0a;&#x4e0b;&#x884c;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>
  912 + <hop> <from>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 2</from><to>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x51fa;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>
  913 + <hop> <from>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 3</from><to>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x8fdb;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>
  914 + <hop> <from>&#x8ba1;&#x7b97;&#x73ed;&#x6b21;&#x7c7b;&#x578b;</from><to>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;1</to><enabled>Y</enabled> </hop>
  915 + <hop> <from>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</from><to>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;1</to><enabled>Y</enabled> </hop>
  916 + <hop> <from>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;1</from><to>&#x51fa;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x7ec8;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</to><enabled>Y</enabled> </hop>
  917 + <hop> <from>&#x51fa;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x7ec8;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</from><to>&#x67e5;&#x627e;&#x51fa;&#x573a;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</to><enabled>Y</enabled> </hop>
  918 + <hop> <from>&#x67e5;&#x627e;&#x51fa;&#x573a;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</from><to>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 2</to><enabled>Y</enabled> </hop>
  919 + <hop> <from>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</from><to>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;2</to><enabled>Y</enabled> </hop>
  920 + <hop> <from>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;2</from><to>&#x8fdb;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x8d77;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</to><enabled>Y</enabled> </hop>
  921 + <hop> <from>&#x8fdb;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x8d77;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</from><to>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ebf;&#x8def;&#x65b9;&#x5411;</to><enabled>Y</enabled> </hop>
  922 + <hop> <from>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ebf;&#x8def;&#x65b9;&#x5411;</from><to>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ec8;&#x70b9;&#x7ad9;&#xff0c;&#x5e76;&#x4f5c;&#x4e3a;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x7684;&#x8d77;&#x70b9;&#x7ad9;</to><enabled>Y</enabled> </hop>
  923 + <hop> <from>&#x5206;&#x7ec4;&#x5404;&#x4e2a;&#x8def;&#x724c;&#x7684;&#x7ad9;</from><to>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x5173;&#x8054;</to><enabled>Y</enabled> </hop>
  924 + <hop> <from>&#x589e;&#x52a0;&#x65f6;&#x523b;&#x8868;&#x540d;&#x5b57;&#xff0c;&#x7ebf;&#x8def;&#x540d;&#x5b57;&#xff0c;&#x505c;&#x8f66;&#x573a;&#x540d;&#x5b57;</from><to>&#x8bb0;&#x5f55;&#x5173;&#x8054; &#x28;&#x7b1b;&#x5361;&#x5c14;&#x8f93;&#x51fa;&#x29;</to><enabled>Y</enabled> </hop>
  925 + <hop> <from>&#x73ed;&#x6b21;&#x6570;&#x636e;&#x8303;&#x5f0f;&#x5316;</from><to>&#x8bb0;&#x5f55;&#x5173;&#x8054; &#x28;&#x7b1b;&#x5361;&#x5c14;&#x8f93;&#x51fa;&#x29;</to><enabled>Y</enabled> </hop>
  926 + <hop> <from>&#x8bb0;&#x5f55;&#x5173;&#x8054; &#x28;&#x7b1b;&#x5361;&#x5c14;&#x8f93;&#x51fa;&#x29;</from><to>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</to><enabled>Y</enabled> </hop>
  927 + <hop> <from>&#x7c7b;&#x578b;&#x4fee;&#x6b63;</from><to>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail</to><enabled>Y</enabled> </hop>
  928 + <hop> <from>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ec8;&#x70b9;&#x7ad9;&#xff0c;&#x5e76;&#x4f5c;&#x4e3a;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x7684;&#x8d77;&#x70b9;&#x7ad9;</from><to>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</to><enabled>Y</enabled> </hop>
  929 + <hop> <from>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</from><to>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 3</to><enabled>Y</enabled> </hop>
  930 + <hop> <from>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x51fa;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</from><to>&#x5339;&#x914d;&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>
  931 + <hop> <from>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x8fdb;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</from><to>&#x5339;&#x914d;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>
  932 + <hop> <from>&#x5339;&#x914d;&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</from><to>&#x4e0a;&#x4e0b;&#x884c;NULL&#x5224;&#x5b9a;</to><enabled>Y</enabled> </hop>
  933 + <hop> <from>&#x4e0a;&#x4e0b;&#x884c;NULL&#x5224;&#x5b9a;</from><to>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 2</to><enabled>Y</enabled> </hop>
  934 + <hop> <from>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 2</from><to>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail 2</to><enabled>Y</enabled> </hop>
  935 + <hop> <from>&#x5339;&#x914d;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</from><to>&#x4e0a;&#x4e0b;&#x884c;&#x5224;&#x5b9a; 2</to><enabled>Y</enabled> </hop>
  936 + <hop> <from>&#x4e0a;&#x4e0b;&#x884c;&#x5224;&#x5b9a; 2</from><to>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 3</to><enabled>Y</enabled> </hop>
  937 + <hop> <from>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 3</from><to>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail 3</to><enabled>Y</enabled> </hop>
  938 + <hop> <from>&#x67e5;&#x627e;&#x8def;&#x724c;&#x5173;&#x8054;</from><to>&#x7ad9;&#x70b9;&#x8def;&#x7531;&#x7248;&#x672c;&#x7c7b;&#x578b;</to><enabled>Y</enabled> </hop>
  939 + <hop> <from>&#x7ad9;&#x70b9;&#x8def;&#x7531;&#x7248;&#x672c;&#x7c7b;&#x578b;</from><to>&#x8ba1;&#x7b97;&#x73ed;&#x6b21;&#x7c7b;&#x578b;</to><enabled>Y</enabled> </hop>
  940 + <hop> <from>&#x7ad9;&#x70b9;&#x8def;&#x7531;&#x7248;&#x672c;&#x7c7b;&#x578b;</from><to>&#x66f4;&#x65b0;&#x65f6;&#x523b;&#x8868;&#x4e3b;&#x8868;&#x7248;&#x672c;</to><enabled>Y</enabled> </hop>
  941 + <hop> <from>&#x6dfb;&#x52a0;&#x53d1;&#x8f66;&#x987a;&#x5e8f;&#x53f7;</from><to>&#x6dfb;&#x52a0;&#x5bf9;&#x5e94;&#x73ed;&#x6b21;&#x6570;</to><enabled>Y</enabled> </hop>
  942 + <hop> <from>&#x5904;&#x7406;&#x6570;&#x636e;</from><to>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;&#xff08;&#x53d1;&#x8f66;&#x65f6;&#x95f4;&#x4e3a;&#x7a7a;&#xff09;</to><enabled>Y</enabled> </hop>
  943 + <hop> <from>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;&#xff08;&#x53d1;&#x8f66;&#x65f6;&#x95f4;&#x4e3a;&#x7a7a;&#xff09;</from><to>&#x5206;&#x7ec4;&#x5404;&#x4e2a;&#x8def;&#x724c;&#x7684;&#x7ad9;</to><enabled>Y</enabled> </hop>
  944 + <hop> <from>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</from><to>&#x6dfb;&#x52a0;&#x53d1;&#x8f66;&#x987a;&#x5e8f;&#x53f7;</to><enabled>Y</enabled> </hop>
  945 + </order>
  946 + <step>
  947 + <name>&#x4e0a;&#x4e0b;&#x884c;NULL&#x5224;&#x5b9a;</name>
  948 + <type>IfNull</type>
  949 + <description/>
  950 + <distribute>Y</distribute>
  951 + <custom_distribution/>
  952 + <copies>1</copies>
  953 + <partitioning>
  954 + <method>none</method>
  955 + <schema_name/>
  956 + </partitioning>
  957 + <replaceAllByValue/>
  958 + <replaceAllMask/>
  959 + <selectFields>Y</selectFields>
  960 + <selectValuesType>N</selectValuesType>
  961 + <setEmptyStringAll>N</setEmptyStringAll>
  962 + <valuetypes>
  963 + </valuetypes>
  964 + <fields>
  965 + <field>
  966 + <name>sxx</name>
  967 + <value>0</value>
  968 + <mask/>
  969 + <set_empty_string>N</set_empty_string>
  970 + </field>
  971 + </fields>
  972 + <cluster_schema/>
  973 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  974 + <xloc>335</xloc>
  975 + <yloc>938</yloc>
  976 + <draw>Y</draw>
  977 + </GUI>
  978 + </step>
  979 +
  980 + <step>
  981 + <name>&#x4e0a;&#x4e0b;&#x884c;&#x5224;&#x5b9a; 2</name>
  982 + <type>IfNull</type>
  983 + <description/>
  984 + <distribute>Y</distribute>
  985 + <custom_distribution/>
  986 + <copies>1</copies>
  987 + <partitioning>
  988 + <method>none</method>
  989 + <schema_name/>
  990 + </partitioning>
  991 + <replaceAllByValue/>
  992 + <replaceAllMask/>
  993 + <selectFields>Y</selectFields>
  994 + <selectValuesType>N</selectValuesType>
  995 + <setEmptyStringAll>N</setEmptyStringAll>
  996 + <valuetypes>
  997 + </valuetypes>
  998 + <fields>
  999 + <field>
  1000 + <name>sxx2</name>
  1001 + <value>0</value>
  1002 + <mask/>
  1003 + <set_empty_string>N</set_empty_string>
  1004 + </field>
  1005 + </fields>
  1006 + <cluster_schema/>
  1007 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1008 + <xloc>804</xloc>
  1009 + <yloc>1081</yloc>
  1010 + <draw>Y</draw>
  1011 + </GUI>
  1012 + </step>
  1013 +
  1014 + <step>
  1015 + <name>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178;</name>
  1016 + <type>ValueMapper</type>
  1017 + <description/>
  1018 + <distribute>Y</distribute>
  1019 + <custom_distribution/>
  1020 + <copies>1</copies>
  1021 + <partitioning>
  1022 + <method>none</method>
  1023 + <schema_name/>
  1024 + </partitioning>
  1025 + <field_to_use>sxx</field_to_use>
  1026 + <target_field>sxx_desc</target_field>
  1027 + <non_match_default/>
  1028 + <fields>
  1029 + <field>
  1030 + <source_value>0</source_value>
  1031 + <target_value>&#x4e0a;&#x884c;</target_value>
  1032 + </field>
  1033 + <field>
  1034 + <source_value>1</source_value>
  1035 + <target_value>&#x4e0b;&#x884c;</target_value>
  1036 + </field>
  1037 + </fields>
  1038 + <cluster_schema/>
  1039 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1040 + <xloc>147</xloc>
  1041 + <yloc>403</yloc>
  1042 + <draw>Y</draw>
  1043 + </GUI>
  1044 + </step>
  1045 +
  1046 + <step>
  1047 + <name>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 2</name>
  1048 + <type>ValueMapper</type>
  1049 + <description/>
  1050 + <distribute>Y</distribute>
  1051 + <custom_distribution/>
  1052 + <copies>1</copies>
  1053 + <partitioning>
  1054 + <method>none</method>
  1055 + <schema_name/>
  1056 + </partitioning>
  1057 + <field_to_use>sxx</field_to_use>
  1058 + <target_field>sxx_desc</target_field>
  1059 + <non_match_default/>
  1060 + <fields>
  1061 + <field>
  1062 + <source_value>0</source_value>
  1063 + <target_value>&#x4e0a;&#x884c;</target_value>
  1064 + </field>
  1065 + <field>
  1066 + <source_value>1</source_value>
  1067 + <target_value>&#x4e0b;&#x884c;</target_value>
  1068 + </field>
  1069 + </fields>
  1070 + <cluster_schema/>
  1071 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1072 + <xloc>331</xloc>
  1073 + <yloc>598</yloc>
  1074 + <draw>Y</draw>
  1075 + </GUI>
  1076 + </step>
  1077 +
  1078 + <step>
  1079 + <name>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 3</name>
  1080 + <type>ValueMapper</type>
  1081 + <description/>
  1082 + <distribute>Y</distribute>
  1083 + <custom_distribution/>
  1084 + <copies>1</copies>
  1085 + <partitioning>
  1086 + <method>none</method>
  1087 + <schema_name/>
  1088 + </partitioning>
  1089 + <field_to_use>sxx</field_to_use>
  1090 + <target_field>sxx_desc</target_field>
  1091 + <non_match_default/>
  1092 + <fields>
  1093 + <field>
  1094 + <source_value>0</source_value>
  1095 + <target_value>&#x4e0a;&#x884c;</target_value>
  1096 + </field>
  1097 + <field>
  1098 + <source_value>1</source_value>
  1099 + <target_value>&#x4e0b;&#x884c;</target_value>
  1100 + </field>
  1101 + </fields>
  1102 + <cluster_schema/>
  1103 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1104 + <xloc>553</xloc>
  1105 + <yloc>859</yloc>
  1106 + <draw>Y</draw>
  1107 + </GUI>
  1108 + </step>
  1109 +
  1110 + <step>
  1111 + <name>&#x51fa;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x7ec8;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</name>
  1112 + <type>ScriptValueMod</type>
  1113 + <description/>
  1114 + <distribute>Y</distribute>
  1115 + <custom_distribution/>
  1116 + <copies>1</copies>
  1117 + <partitioning>
  1118 + <method>none</method>
  1119 + <schema_name/>
  1120 + </partitioning>
  1121 + <compatible>N</compatible>
  1122 + <optimizationLevel>9</optimizationLevel>
  1123 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  1124 + <jsScript_name>Script 1</jsScript_name>
  1125 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;&#x2f;&#x2f; &#x6dfb;&#x52a0;&#x7ad9;&#x70b9;&#x6807;&#x8bc6;&#xa;var cc_groups &#x3d; qdzgroups.split&#x28;&#x22;,&#x22;&#x29;&#x3b; &#x2f;&#x2f; &#x6240;&#x6709;&#x73ed;&#x6b21;&#x8d77;&#x70b9;&#x7ad9;&#x6570;&#x7ec4;&#xa;var zdzname &#x3d; cc_groups&#x5b;gno&#x5d;&#x3b; &#x2f;&#x2f; &#x51fa;&#x573a;&#x73ed;&#x6b21;&#x7684;&#x7ec8;&#x70b9;&#x7ad9;&#x662f;&#x4e0b;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x8d77;&#x59cb;&#x7ad9;&#xa;var endZdtype &#x3d; &#x27;B&#x27;&#x3b;&#xa;&#x2f;&#x2f; var endZdtype &#x3d; &#x27;E&#x27;&#x3b;&#xa;&#xa;var destory &#x3d; 0&#x3b; &#x2f;&#x2f; &#x672a;&#x64a4;&#x9500;flag</jsScript_script>
  1126 + </jsScript> </jsScripts> <fields> <field> <name>zdzname</name>
  1127 + <rename>zdzname</rename>
  1128 + <type>String</type>
  1129 + <length>-1</length>
  1130 + <precision>-1</precision>
  1131 + <replace>N</replace>
  1132 + </field> <field> <name>endZdtype</name>
  1133 + <rename>endZdtype</rename>
  1134 + <type>String</type>
  1135 + <length>-1</length>
  1136 + <precision>-1</precision>
  1137 + <replace>N</replace>
  1138 + </field> <field> <name>destory</name>
  1139 + <rename>destory</rename>
  1140 + <type>Integer</type>
  1141 + <length>-1</length>
  1142 + <precision>-1</precision>
  1143 + <replace>N</replace>
  1144 + </field> </fields> <cluster_schema/>
  1145 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1146 + <xloc>575</xloc>
  1147 + <yloc>502</yloc>
  1148 + <draw>Y</draw>
  1149 + </GUI>
  1150 + </step>
  1151 +
  1152 + <step>
  1153 + <name>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</name>
  1154 + <type>Dummy</type>
  1155 + <description/>
  1156 + <distribute>Y</distribute>
  1157 + <custom_distribution/>
  1158 + <copies>1</copies>
  1159 + <partitioning>
  1160 + <method>none</method>
  1161 + <schema_name/>
  1162 + </partitioning>
  1163 + <cluster_schema/>
  1164 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1165 + <xloc>869</xloc>
  1166 + <yloc>504</yloc>
  1167 + <draw>Y</draw>
  1168 + </GUI>
  1169 + </step>
  1170 +
  1171 + <step>
  1172 + <name>&#x5206;&#x7ec4;&#x5404;&#x4e2a;&#x8def;&#x724c;&#x7684;&#x7ad9;</name>
  1173 + <type>GroupBy</type>
  1174 + <description/>
  1175 + <distribute>Y</distribute>
  1176 + <custom_distribution/>
  1177 + <copies>1</copies>
  1178 + <partitioning>
  1179 + <method>none</method>
  1180 + <schema_name/>
  1181 + </partitioning>
  1182 + <all_rows>Y</all_rows>
  1183 + <ignore_aggregate>N</ignore_aggregate>
  1184 + <field_ignore/>
  1185 + <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
  1186 + <prefix>grp</prefix>
  1187 + <add_linenr>Y</add_linenr>
  1188 + <linenr_fieldname>gno</linenr_fieldname>
  1189 + <give_back_row>N</give_back_row>
  1190 + <group>
  1191 + <field>
  1192 + <name>lp</name>
  1193 + </field>
  1194 + </group>
  1195 + <fields>
  1196 + <field>
  1197 + <aggregate>qdzgroups</aggregate>
  1198 + <subject>qdzname</subject>
  1199 + <type>CONCAT_STRING</type>
  1200 + <valuefield>,</valuefield>
  1201 + </field>
  1202 + </fields>
  1203 + <cluster_schema/>
  1204 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1205 + <xloc>892</xloc>
  1206 + <yloc>44</yloc>
  1207 + <draw>Y</draw>
  1208 + </GUI>
  1209 + </step>
  1210 +
  1211 + <step>
  1212 + <name>&#x5339;&#x914d;&#x4e0a;&#x4e0b;&#x884c;&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
  1213 + <type>ScriptValueMod</type>
  1214 + <description/>
  1215 + <distribute>Y</distribute>
  1216 + <custom_distribution/>
  1217 + <copies>1</copies>
  1218 + <partitioning>
  1219 + <method>none</method>
  1220 + <schema_name/>
  1221 + </partitioning>
  1222 + <compatible>N</compatible>
  1223 + <optimizationLevel>9</optimizationLevel>
  1224 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  1225 + <jsScript_name>Script 1</jsScript_name>
  1226 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var jhlc&#x3b; &#x2f;&#x2f; &#x8ba1;&#x5212;&#x91cc;&#x7a0b;&#xa;var bcsj&#x3b; &#x2f;&#x2f; &#x73ed;&#x6b21;&#x65f6;&#x95f4;&#xa;&#xa;&#x2f;&#x2f; &#x65f6;&#x95f4;&#x8303;&#x56f4;&#x6b63;&#x5219;&#x8868;&#x8fbe;&#x5f0f;&#xa;var timeRex &#x3d; &#x2f;&#x5e;&#x28;&#x5b;01&#x5d;&#x3f;&#x5b;0-9&#x5d;&#x7c;2&#x5b;0-3&#x5d;&#x29;&#x3a;&#x5b;0-5&#x5d;&#x5b;0-9&#x5d;&#x24;&#x2f;&#x3b;&#xa;&#x2f;&#x2f; &#x53d1;&#x8f66;&#x65f6;&#x95f4;&#x8f6c;&#x6362;&#x6210;&#x65e5;&#x671f;&#xa;var fcsj_hour &#x3d; str2num&#x28;sendtime_calcu.substr&#x28;0, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa;var fcsj_min &#x3d; str2num&#x28;sendtime_calcu.substr&#x28;3, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa;var fcsj_date &#x3d; new Date&#x28;2000,1,1,fcsj_hour,fcsj_min,0&#x29;&#x3b;&#xa;&#xa;&#x2f;&#x2f; &#x5224;&#x5b9a;&#x662f;&#x5426;&#x65e9;&#x9ad8;&#x5cf0;&#xa;var isZgf &#x3d; false&#x3b;&#xa;if &#x28;timeRex.test&#x28;early_start_time&#x29; &#x26;&#x26; timeRex.test&#x28;early_end_time&#x29; &#x26;&#x26; early_up_time &#x21;&#x3d; null &#x26;&#x26; early_down_time &#x21;&#x3d; null&#x29; &#x7b;&#xa; var early_s_hour &#x3d; str2num&#x28;early_start_time.substr&#x28;0, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var early_s_min &#x3d; str2num&#x28;early_start_time.substr&#x28;3, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var early_s_date &#x3d; new Date&#x28;2000,1,1,early_s_hour,early_s_min,0&#x29;&#x3b;&#xa;&#xa; var early_e_hour &#x3d; str2num&#x28;early_end_time.substr&#x28;0, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var early_e_min &#x3d; str2num&#x28;early_end_time.substr&#x28;3, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var early_e_date &#x3d; new Date&#x28;2000,1,1,early_e_hour,early_e_min,0&#x29;&#x3b;&#xa;&#xa; if &#x28;fcsj_date &#x3e;&#x3d; early_s_date &#x26;&#x26; fcsj_date &#x3c;&#x3d; early_e_date&#x29; &#x7b;&#xa; isZgf &#x3d; true&#x3b;&#xa; &#x7d;&#xa;&#x7d;&#xa;&#xa;&#x2f;&#x2f; &#x5224;&#x5b9a;&#x662f;&#x5426;&#x665a;&#x9ad8;&#x5cf0;&#xa;var isWgf &#x3d; false&#x3b;&#xa;if &#x28;timeRex.test&#x28;late_start_time&#x29; &#x26;&#x26; timeRex.test&#x28;late_end_time&#x29; &#x26;&#x26; late_up_time &#x21;&#x3d; null &#x26;&#x26; late_down_time &#x21;&#x3d; null&#x29; &#x7b;&#xa; var late_s_hour &#x3d; str2num&#x28;late_start_time.substr&#x28;0, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var late_s_min &#x3d; str2num&#x28;late_start_time.substr&#x28;3, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var late_s_date &#x3d; new Date&#x28;2000,1,1,late_s_hour,late_s_min,0&#x29;&#x3b;&#xa;&#xa; var late_e_hour &#x3d; str2num&#x28;late_end_time.substr&#x28;0, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var late_e_min &#x3d; str2num&#x28;late_end_time.substr&#x28;3, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var late_e_date &#x3d; new Date&#x28;2000,1,1,late_e_hour,late_e_min,0&#x29;&#x3b;&#xa;&#xa; if &#x28;fcsj_date &#x3e;&#x3d; late_s_date &#x26;&#x26; fcsj_date &#x3c;&#x3d; late_e_date&#x29; &#x7b;&#xa; isWgf &#x3d; true&#x3b;&#xa; &#x7d;&#xa;&#x7d;&#xa;&#xa;&#x2f;&#x2f; &#x5224;&#x5b9a;&#x662f;&#x5426;&#x665a;&#x9ad8;&#x5cf0;&#xa;&#xa;if &#x28;sxx &#x3d;&#x3d; 0&#x29; &#x7b; &#x2f;&#x2f; &#x4e0a;&#x884c;&#xa; if &#x28;isZgf&#x29; &#x7b;&#xa; jhlc &#x3d; up_mileage&#x3b;&#xa; bcsj &#x3d; early_up_time &#x21;&#x3d; 0 &#x3f; early_up_time &#x3a; up_travel_time&#x3b;&#xa; &#x7d; else if &#x28;isWgf&#x29; &#x7b;&#xa; jhlc &#x3d; up_mileage&#x3b;&#xa; bcsj &#x3d; late_up_time &#x21;&#x3d; 0 &#x3f; late_up_time &#x3a; up_travel_time&#x3b;&#xa; &#x7d; else &#x7b;&#xa; jhlc &#x3d; up_mileage&#x3b;&#xa; bcsj &#x3d; up_travel_time&#x3b;&#xa; &#x7d;&#xa;&#x7d; else &#x7b; &#x2f;&#x2f; sxx &#x3d;&#x3d; 1 &#x4e0b;&#x884c;&#xa; if &#x28;isZgf&#x29; &#x7b;&#xa; jhlc &#x3d; down_mileage&#x3b;&#xa; bcsj &#x3d; early_down_time &#x21;&#x3d; 0 &#x3f; early_down_time &#x3a; down_travel_time&#x3b;&#xa; &#x7d; else if &#x28;isWgf&#x29; &#x7b;&#xa; jhlc &#x3d; down_mileage&#x3b;&#xa; bcsj &#x3d; late_down_time &#x21;&#x3d; 0 &#x3f; late_down_time &#x3a; down_travel_time&#x3b;&#xa; &#x7d; else &#x7b;&#xa; jhlc &#x3d; down_mileage&#x3b;&#xa; bcsj &#x3d; down_travel_time&#x3b;&#xa; &#x7d;&#xa;&#x7d;</jsScript_script>
  1227 + </jsScript> </jsScripts> <fields> <field> <name>jhlc</name>
  1228 + <rename>jhlc</rename>
  1229 + <type>String</type>
  1230 + <length>-1</length>
  1231 + <precision>-1</precision>
  1232 + <replace>N</replace>
  1233 + </field> <field> <name>bcsj</name>
  1234 + <rename>bcsj</rename>
  1235 + <type>String</type>
  1236 + <length>-1</length>
  1237 + <precision>-1</precision>
  1238 + <replace>N</replace>
  1239 + </field> </fields> <cluster_schema/>
  1240 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1241 + <xloc>148</xloc>
  1242 + <yloc>674</yloc>
  1243 + <draw>Y</draw>
  1244 + </GUI>
  1245 + </step>
  1246 +
  1247 + <step>
  1248 + <name>&#x5339;&#x914d;&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
  1249 + <type>ScriptValueMod</type>
  1250 + <description/>
  1251 + <distribute>Y</distribute>
  1252 + <custom_distribution/>
  1253 + <copies>1</copies>
  1254 + <partitioning>
  1255 + <method>none</method>
  1256 + <schema_name/>
  1257 + </partitioning>
  1258 + <compatible>N</compatible>
  1259 + <optimizationLevel>9</optimizationLevel>
  1260 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  1261 + <jsScript_name>Script 1</jsScript_name>
  1262 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var out_mileage&#x3b; &#x2f;&#x2f; &#x51fa;&#x573a;&#x8ba1;&#x5212;&#x91cc;&#x7a0b;&#xa;var out_time&#x3b; &#x2f;&#x2f; &#x51fa;&#x573a;&#x8ba1;&#x5212;&#x65f6;&#x95f4;&#xa;&#xa;if &#x28;sxx &#x3d;&#x3d; 0&#x29; &#x7b; &#x2f;&#x2f; &#x4e0a;&#x884c;&#xa; out_mileage &#x3d; up_out_mileage&#x3b;&#xa; out_time &#x3d; up_out_timer&#x3b;&#xa;&#x7d; else &#x7b; &#x2f;&#x2f; sxx &#x3d;&#x3d; 1 &#x4e0b;&#x884c;&#xa; out_mileage &#x3d; down_out_mileage&#x3b;&#xa; out_time &#x3d; down_out_timer&#x3b;&#xa;&#x7d;&#xa;&#xa;&#xa;&#xa;</jsScript_script>
  1263 + </jsScript> </jsScripts> <fields> <field> <name>out_mileage</name>
  1264 + <rename>out_mileage</rename>
  1265 + <type>String</type>
  1266 + <length>-1</length>
  1267 + <precision>-1</precision>
  1268 + <replace>N</replace>
  1269 + </field> <field> <name>out_time</name>
  1270 + <rename>out_time</rename>
  1271 + <type>String</type>
  1272 + <length>-1</length>
  1273 + <precision>-1</precision>
  1274 + <replace>N</replace>
  1275 + </field> </fields> <cluster_schema/>
  1276 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1277 + <xloc>336</xloc>
  1278 + <yloc>862</yloc>
  1279 + <draw>Y</draw>
  1280 + </GUI>
  1281 + </step>
  1282 +
  1283 + <step>
  1284 + <name>&#x5339;&#x914d;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
  1285 + <type>ScriptValueMod</type>
  1286 + <description/>
  1287 + <distribute>Y</distribute>
  1288 + <custom_distribution/>
  1289 + <copies>1</copies>
  1290 + <partitioning>
  1291 + <method>none</method>
  1292 + <schema_name/>
  1293 + </partitioning>
  1294 + <compatible>N</compatible>
  1295 + <optimizationLevel>9</optimizationLevel>
  1296 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  1297 + <jsScript_name>Script 1</jsScript_name>
  1298 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var parade_mileage&#x3b; &#x2f;&#x2f; &#x8fdb;&#x573a;&#x8ba1;&#x5212;&#x91cc;&#x7a0b;&#xa;var parade_time&#x3b; &#x2f;&#x2f; &#x8fdb;&#x573a;&#x8ba1;&#x5212;&#x65f6;&#x95f4;&#xa;&#xa;if &#x28;sxx2 &#x3d;&#x3d; 0&#x29; &#x7b; &#x2f;&#x2f; &#x4e0a;&#x884c;&#xa; parade_mileage &#x3d; up_in_mileage&#x3b;&#xa; parade_time &#x3d; up_in_timer&#x3b;&#xa;&#x7d; else &#x7b; &#x2f;&#x2f; sxx &#x3d;&#x3d; 1 &#x4e0b;&#x884c;&#xa; parade_mileage &#x3d; down_in_mileage&#x3b;&#xa; parade_time &#x3d; down_in_timer&#x3b;&#xa;&#x7d;&#xa;&#xa;&#xa;&#xa;</jsScript_script>
  1299 + </jsScript> </jsScripts> <fields> <field> <name>parade_mileage</name>
  1300 + <rename>parade_mileage</rename>
  1301 + <type>String</type>
  1302 + <length>-1</length>
  1303 + <precision>-1</precision>
  1304 + <replace>N</replace>
  1305 + </field> <field> <name>parade_time</name>
  1306 + <rename>parade_time</rename>
  1307 + <type>String</type>
  1308 + <length>-1</length>
  1309 + <precision>-1</precision>
  1310 + <replace>N</replace>
  1311 + </field> </fields> <cluster_schema/>
  1312 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1313 + <xloc>726</xloc>
  1314 + <yloc>1005</yloc>
  1315 + <draw>Y</draw>
  1316 + </GUI>
  1317 + </step>
  1318 +
  1319 + <step>
  1320 + <name>&#x589e;&#x52a0;&#x65f6;&#x523b;&#x8868;&#x540d;&#x5b57;&#xff0c;&#x7ebf;&#x8def;&#x540d;&#x5b57;&#xff0c;&#x505c;&#x8f66;&#x573a;&#x540d;&#x5b57;</name>
  1321 + <type>DataGrid</type>
  1322 + <description/>
  1323 + <distribute>Y</distribute>
  1324 + <custom_distribution/>
  1325 + <copies>1</copies>
  1326 + <partitioning>
  1327 + <method>none</method>
  1328 + <schema_name/>
  1329 + </partitioning>
  1330 + <fields>
  1331 + </fields>
  1332 + <data>
  1333 + <line> </line>
  1334 + </data>
  1335 + <cluster_schema/>
  1336 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1337 + <xloc>110</xloc>
  1338 + <yloc>133</yloc>
  1339 + <draw>Y</draw>
  1340 + </GUI>
  1341 + </step>
  1342 +
  1343 + <step>
  1344 + <name>&#x5904;&#x7406;&#x6570;&#x636e;</name>
  1345 + <type>ScriptValueMod</type>
  1346 + <description/>
  1347 + <distribute>Y</distribute>
  1348 + <custom_distribution/>
  1349 + <copies>1</copies>
  1350 + <partitioning>
  1351 + <method>none</method>
  1352 + <schema_name/>
  1353 + </partitioning>
  1354 + <compatible>N</compatible>
  1355 + <optimizationLevel>9</optimizationLevel>
  1356 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  1357 + <jsScript_name>Script 1</jsScript_name>
  1358 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;&#x2f;&#x2f; &#x751f;&#x6210;&#x65f6;&#x523b;&#x8868;&#x7684;&#x683c;&#x5f0f;&#x6570;&#x636e;&#x5904;&#x7406;&#xa;&#x2f;&#x2f; &#x5df2;&#x7ecf;&#x8fc7;&#x6ee4;&#x4e86; &#x62a5;&#x5230;&#xff0c;&#x5230;&#x573a;&#xff0c;&#x79bb;&#x573a;&#xff0c;&#x603b;&#x516c;&#x91cc;&#xff0c;&#x8425;&#x4e1a;&#x516c;&#x91cc;&#xff0c;&#x7a7a;&#x9a76;&#x516c;&#x91cc;&#xff0c;&#x603b;&#x5de5;&#x65f6;&#xff0c;&#x8425;&#x4e1a;&#x5de5;&#x65f6;&#xff0c;&#x8425;&#x8fd0;&#x73ed;&#x6b21; &#x6570;&#x636e;&#xa;&#x2f;&#x2f; sendtime&#x9700;&#x8981;&#x5904;&#x7406; &#x28;&#x62a5;&#x7c;&#x51fa;&#x29;hh&#x3a;mm&#x683c;&#x5f0f; hh&#x3a;mm&#x28;X&#x7c;&#x203b;&#x29;&#x683c;&#x5f0f;&#xa;&#xa;&#x2f;&#x2f; &#x5982;&#x679c;&#x7ad9;&#x540d;&#x4e2d;&#x6709;&#x7c7b;&#x4f3c;-&#x3e;&#x7b;&#x6570;&#x5b57;&#x7d;&#xff0c;&#x4f7f;&#x7528;&#x6b63;&#x5219;&#x8868;&#x8fbe;&#x5f0f;&#x8fc7;&#x6ee4;&#x6389;&#xa;qdzname &#x3d; qdzname.replace&#x28;&#x2f;-&#x3e;&#x5c;d&#x2b;&#x2f;g,&#x27;&#x27;&#x29;&#x3b;&#xa;&#xa;var sendtime_calcu&#x3b;&#xa;if &#x28;qdzname &#x3d;&#x3d; &#x22;&#x62a5;&#x5230;&#x22; &#x7c;&#x7c; &#xa; qdzname &#x3d;&#x3d; &#x22;&#x5230;&#x573a;&#x22; &#x7c;&#x7c; &#xa; qdzname &#x3d;&#x3d; &#x22;&#x79bb;&#x573a;&#x22; &#x7c;&#x7c; &#xa; qdzname &#x3d;&#x3d; &#x22;&#x603b;&#x516c;&#x91cc;&#x22; &#x7c;&#x7c; &#xa; qdzname &#x3d;&#x3d; &#x22;&#x8425;&#x4e1a;&#x516c;&#x91cc;&#x22; &#x7c;&#x7c; &#xa; qdzname &#x3d;&#x3d; &#x22;&#x7a7a;&#x9a76;&#x516c;&#x91cc;&#x22; &#x7c;&#x7c; &#xa; qdzname &#x3d;&#x3d; &#x22;&#x603b;&#x5de5;&#x65f6;&#x22; &#x7c;&#x7c; &#xa; qdzname &#x3d;&#x3d; &#x22;&#x8425;&#x4e1a;&#x5de5;&#x65f6;&#x22; &#x7c;&#x7c; &#xa; qdzname &#x3d;&#x3d; &#x22;&#x8425;&#x8fd0;&#x73ed;&#x6b21;&#x22;&#x29; &#x7b;&#xa; sendtime_calcu &#x3d; null&#x3b;&#xa;&#x7d; else &#x7b;&#xa; if &#x28;sendtime &#x3d;&#x3d; null&#x29; &#x7b;&#xa; sendtime_calcu &#x3d; null&#x3b;&#xa; &#x7d; else &#x7b;&#xa; sendtime_calcu &#x3d; sendtime.replace&#x28;&#x2f;&#x5c;s&#x2f;g, &#x22;&#x22;&#x29;&#x3b;&#xa; if &#x28;sendtime_calcu.indexOf&#x28;&#x22;&#x62a5;&#x22;&#x29; &#x3e;&#x3d; 0&#x29; &#x7b; &#x2f;&#x2f; &#x5206;&#x73ed;&#x62a5;&#x5230;&#x73ed;&#x6b21;&#x795b;&#x9664;&#xa; sendtime_calcu &#x3d; null&#x3b;&#xa; &#x7d; else &#x7b;&#xa; if &#x28;sendtime_calcu.indexOf&#x28;&#x22;X&#x22;&#x29; &#x3e;&#x3d; 0&#x29; &#x7b; &#x2f;&#x2f; &#x8fdb;&#x573a;&#x73ed;&#x6b21;&#xa; qdzname &#x3d; &#x22;&#x8fdb;&#x573a;&#x22;&#x3b;&#xa; sendtime_calcu &#x3d; sendtime_calcu.substr&#x28;0, sendtime_calcu.indexOf&#x28;&#x22;X&#x22;&#x29;&#x29;&#x3b;&#xa; &#x7d; else if &#x28;sendtime_calcu.indexOf&#x28;&#x22;&#x51fa;&#x22;&#x29; &#x3e;&#x3d; 0&#x29; &#x7b; &#x2f;&#x2f; &#x5206;&#x73ed;&#x51fa;&#x573a;&#x73ed;&#x6b21;&#xa; qdzname &#x3d; &#x22;&#x51fa;&#x573a;&#x22;&#x3b;&#xa; sendtime_calcu &#x3d; sendtime_calcu.substr&#x28;1&#x29;&#x3b;&#xa; &#x7d; else if &#x28;sendtime_calcu.indexOf&#x28;&#x22;&#x203b;&#x22;&#x29; &#x3e;&#x3d; 0&#x29; &#x7b; &#x2f;&#x2f; &#x505c;&#x9a76;&#x73ed;&#x6b21;&#xa; sendtime_calcu &#x3d; sendtime_calcu.substr&#x28;0, sendtime_calcu.indexOf&#x28;&#x22;X&#x22;&#x29;&#x29;&#x3b;&#xa; &#x7d; else &#x7b;&#xa; &#x2f;&#x2f; &#x6b63;&#x5e38;&#x73ed;&#x6b21;&#xa; &#x7d;&#xa;&#xa; &#x2f;&#x2f; &#x5904;&#x7406;&#x65f6;&#x95f4;&#x683c;&#x5f0f;&#xa; &#x2f;&#x2f; &#x56e0;&#x4e3a;&#x683c;&#x5f0f;&#x53ea;&#x652f;&#x6301; &#x3a; &#x5206;&#x9694;&#xff0c;&#x6240;&#x4ee5;&#x8865;0&#x5c31;&#x53ef;&#x4ee5;&#x4e86;&#xa; if &#x28;sendtime_calcu.length &#x3d;&#x3d; 4&#x29; &#x7b;&#xa; sendtime_calcu &#x3d; &#x22;0&#x22; &#x2b; sendtime_calcu&#x3b;&#xa; &#x7d; &#xa; &#x7d;&#xa;&#xa; &#x7d;&#xa;&#x7d;&#xa;&#xa;&#xa;&#x2f;&#x2f; &#x8bbe;&#x7f6e;&#x5206;&#x73ed;&#xa;var isfb &#x3d; 0&#x3b;&#xa;&#xa;&#x2f;&#x2f; &#x8bbe;&#x7f6e;&#x505c;&#x9a76;&#xa;var ists &#x3d; 0&#x3b;&#xa;&#xa;&#x2f;&#x2f; &#x8bbe;&#x7f6e;isCanceled&#xa;var iscanceled &#x3d; 0&#x3b;</jsScript_script>
  1359 + </jsScript> </jsScripts> <fields> <field> <name>qdzname</name>
  1360 + <rename>qdzname</rename>
  1361 + <type>String</type>
  1362 + <length>-1</length>
  1363 + <precision>-1</precision>
  1364 + <replace>Y</replace>
  1365 + </field> <field> <name>isfb</name>
  1366 + <rename>isfb</rename>
  1367 + <type>Integer</type>
  1368 + <length>-1</length>
  1369 + <precision>-1</precision>
  1370 + <replace>N</replace>
  1371 + </field> <field> <name>iscanceled</name>
  1372 + <rename>iscanceled</rename>
  1373 + <type>Integer</type>
  1374 + <length>-1</length>
  1375 + <precision>-1</precision>
  1376 + <replace>N</replace>
  1377 + </field> <field> <name>sendtime_calcu</name>
  1378 + <rename>sendtime_calcu</rename>
  1379 + <type>String</type>
  1380 + <length>-1</length>
  1381 + <precision>-1</precision>
  1382 + <replace>N</replace>
  1383 + </field> <field> <name>ists</name>
  1384 + <rename>ists</rename>
  1385 + <type>Integer</type>
  1386 + <length>-1</length>
  1387 + <precision>-1</precision>
  1388 + <replace>N</replace>
  1389 + </field> </fields> <cluster_schema/>
  1390 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1391 + <xloc>654</xloc>
  1392 + <yloc>45</yloc>
  1393 + <draw>Y</draw>
  1394 + </GUI>
  1395 + </step>
  1396 +
  1397 + <step>
  1398 + <name>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</name>
  1399 + <type>SelectValues</type>
  1400 + <description/>
  1401 + <distribute>Y</distribute>
  1402 + <custom_distribution/>
  1403 + <copies>1</copies>
  1404 + <partitioning>
  1405 + <method>none</method>
  1406 + <schema_name/>
  1407 + </partitioning>
  1408 + <fields> <field> <name>&#x8def;&#x724c;</name>
  1409 + <rename>lp</rename>
  1410 + <length>-2</length>
  1411 + <precision>-2</precision>
  1412 + </field> <field> <name>&#x7ad9;&#x70b9;&#x540d;&#x79f0;</name>
  1413 + <rename>qdzname</rename>
  1414 + <length>-2</length>
  1415 + <precision>-2</precision>
  1416 + </field> <field> <name>&#x53d1;&#x8f66;&#x65f6;&#x95f4;</name>
  1417 + <rename>sendtime</rename>
  1418 + <length>-2</length>
  1419 + <precision>-2</precision>
  1420 + </field> <select_unspecified>Y</select_unspecified>
  1421 + </fields> <cluster_schema/>
  1422 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1423 + <xloc>441</xloc>
  1424 + <yloc>133</yloc>
  1425 + <draw>Y</draw>
  1426 + </GUI>
  1427 + </step>
  1428 +
  1429 + <step>
  1430 + <name>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;1</name>
  1431 + <type>FilterRows</type>
  1432 + <description/>
  1433 + <distribute>Y</distribute>
  1434 + <custom_distribution/>
  1435 + <copies>1</copies>
  1436 + <partitioning>
  1437 + <method>none</method>
  1438 + <schema_name/>
  1439 + </partitioning>
  1440 +<send_true_to>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</send_true_to>
  1441 +<send_false_to>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</send_false_to>
  1442 + <compare>
  1443 +<condition>
  1444 + <negated>N</negated>
  1445 + <leftvalue>bctype</leftvalue>
  1446 + <function>&#x3d;</function>
  1447 + <rightvalue/>
  1448 + <value><name>constant</name><type>String</type><text>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</text><length>-1</length><precision>-1</precision><isnull>N</isnull><mask/></value> </condition>
  1449 + </compare>
  1450 + <cluster_schema/>
  1451 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1452 + <xloc>860</xloc>
  1453 + <yloc>401</yloc>
  1454 + <draw>Y</draw>
  1455 + </GUI>
  1456 + </step>
  1457 +
  1458 + <step>
  1459 + <name>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</name>
  1460 + <type>FilterRows</type>
  1461 + <description/>
  1462 + <distribute>Y</distribute>
  1463 + <custom_distribution/>
  1464 + <copies>1</copies>
  1465 + <partitioning>
  1466 + <method>none</method>
  1467 + <schema_name/>
  1468 + </partitioning>
  1469 +<send_true_to>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</send_true_to>
  1470 +<send_false_to>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</send_false_to>
  1471 + <compare>
  1472 +<condition>
  1473 + <negated>N</negated>
  1474 + <leftvalue>bctype</leftvalue>
  1475 + <function>&#x3d;</function>
  1476 + <rightvalue/>
  1477 + <value><name>constant</name><type>String</type><text>&#x51fa;&#x573a;</text><length>-1</length><precision>-1</precision><isnull>N</isnull><mask/></value> </condition>
  1478 + </compare>
  1479 + <cluster_schema/>
  1480 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1481 + <xloc>995</xloc>
  1482 + <yloc>503</yloc>
  1483 + <draw>Y</draw>
  1484 + </GUI>
  1485 + </step>
  1486 +
  1487 + <step>
  1488 + <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail</name>
  1489 + <type>InsertUpdate</type>
  1490 + <description/>
  1491 + <distribute>Y</distribute>
  1492 + <custom_distribution/>
  1493 + <copies>1</copies>
  1494 + <partitioning>
  1495 + <method>none</method>
  1496 + <schema_name/>
  1497 + </partitioning>
  1498 + <connection>control_jndi</connection>
  1499 + <commit>100</commit>
  1500 + <update_bypassed>N</update_bypassed>
  1501 + <lookup>
  1502 + <schema/>
  1503 + <table>bsth_c_s_ttinfo_detail</table>
  1504 + <key>
  1505 + <name>xlid</name>
  1506 + <field>xl</field>
  1507 + <condition>&#x3d;</condition>
  1508 + <name2/>
  1509 + </key>
  1510 + <key>
  1511 + <name>ttid</name>
  1512 + <field>ttinfo</field>
  1513 + <condition>&#x3d;</condition>
  1514 + <name2/>
  1515 + </key>
  1516 + <key>
  1517 + <name>lpid</name>
  1518 + <field>lp</field>
  1519 + <condition>&#x3d;</condition>
  1520 + <name2/>
  1521 + </key>
  1522 + <key>
  1523 + <name>fcno</name>
  1524 + <field>fcno</field>
  1525 + <condition>&#x3d;</condition>
  1526 + <name2/>
  1527 + </key>
  1528 + <key>
  1529 + <name>bcs</name>
  1530 + <field>bcs</field>
  1531 + <condition>&#x3d;</condition>
  1532 + <name2/>
  1533 + </key>
  1534 + <value>
  1535 + <name>lp</name>
  1536 + <rename>lpid</rename>
  1537 + <update>Y</update>
  1538 + </value>
  1539 + <value>
  1540 + <name>bc_type</name>
  1541 + <rename>bctype_code</rename>
  1542 + <update>Y</update>
  1543 + </value>
  1544 + <value>
  1545 + <name>bcs</name>
  1546 + <rename>bcs</rename>
  1547 + <update>Y</update>
  1548 + </value>
  1549 + <value>
  1550 + <name>bcsj</name>
  1551 + <rename>bcsj</rename>
  1552 + <update>Y</update>
  1553 + </value>
  1554 + <value>
  1555 + <name>fcno</name>
  1556 + <rename>fcno</rename>
  1557 + <update>Y</update>
  1558 + </value>
  1559 + <value>
  1560 + <name>jhlc</name>
  1561 + <rename>jhlc</rename>
  1562 + <update>Y</update>
  1563 + </value>
  1564 + <value>
  1565 + <name>fcsj</name>
  1566 + <rename>sendtime_calcu</rename>
  1567 + <update>Y</update>
  1568 + </value>
  1569 + <value>
  1570 + <name>ttinfo</name>
  1571 + <rename>ttid</rename>
  1572 + <update>Y</update>
  1573 + </value>
  1574 + <value>
  1575 + <name>xl</name>
  1576 + <rename>xlid</rename>
  1577 + <update>Y</update>
  1578 + </value>
  1579 + <value>
  1580 + <name>qdz</name>
  1581 + <rename>qdzid</rename>
  1582 + <update>Y</update>
  1583 + </value>
  1584 + <value>
  1585 + <name>zdz</name>
  1586 + <rename>zdzid</rename>
  1587 + <update>Y</update>
  1588 + </value>
  1589 + <value>
  1590 + <name>xl_dir</name>
  1591 + <rename>sxx</rename>
  1592 + <update>Y</update>
  1593 + </value>
  1594 + <value>
  1595 + <name>isfb</name>
  1596 + <rename>isfb</rename>
  1597 + <update>Y</update>
  1598 + </value>
  1599 + <value>
  1600 + <name>qdz_code</name>
  1601 + <rename>qdzcode</rename>
  1602 + <update>Y</update>
  1603 + </value>
  1604 + <value>
  1605 + <name>qdz_name</name>
  1606 + <rename>qdzname_</rename>
  1607 + <update>Y</update>
  1608 + </value>
  1609 + <value>
  1610 + <name>zdz_code</name>
  1611 + <rename>zdzcode</rename>
  1612 + <update>Y</update>
  1613 + </value>
  1614 + <value>
  1615 + <name>zdz_name</name>
  1616 + <rename>zdzname</rename>
  1617 + <update>Y</update>
  1618 + </value>
  1619 + <value>
  1620 + <name>ists</name>
  1621 + <rename>ists</rename>
  1622 + <update>Y</update>
  1623 + </value>
  1624 + <value>
  1625 + <name>line_version</name>
  1626 + <rename>version</rename>
  1627 + <update>Y</update>
  1628 + </value>
  1629 + </lookup>
  1630 + <cluster_schema/>
  1631 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1632 + <xloc>143</xloc>
  1633 + <yloc>860</yloc>
  1634 + <draw>Y</draw>
  1635 + </GUI>
  1636 + </step>
  1637 +
  1638 + <step>
  1639 + <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail 2</name>
  1640 + <type>InsertUpdate</type>
  1641 + <description/>
  1642 + <distribute>Y</distribute>
  1643 + <custom_distribution/>
  1644 + <copies>1</copies>
  1645 + <partitioning>
  1646 + <method>none</method>
  1647 + <schema_name/>
  1648 + </partitioning>
  1649 + <connection>control_jndi</connection>
  1650 + <commit>100</commit>
  1651 + <update_bypassed>N</update_bypassed>
  1652 + <lookup>
  1653 + <schema/>
  1654 + <table>bsth_c_s_ttinfo_detail</table>
  1655 + <key>
  1656 + <name>xlid</name>
  1657 + <field>xl</field>
  1658 + <condition>&#x3d;</condition>
  1659 + <name2/>
  1660 + </key>
  1661 + <key>
  1662 + <name>ttid</name>
  1663 + <field>ttinfo</field>
  1664 + <condition>&#x3d;</condition>
  1665 + <name2/>
  1666 + </key>
  1667 + <key>
  1668 + <name>lpid</name>
  1669 + <field>lp</field>
  1670 + <condition>&#x3d;</condition>
  1671 + <name2/>
  1672 + </key>
  1673 + <key>
  1674 + <name>fcno</name>
  1675 + <field>fcno</field>
  1676 + <condition>&#x3d;</condition>
  1677 + <name2/>
  1678 + </key>
  1679 + <key>
  1680 + <name>bcs</name>
  1681 + <field>bcs</field>
  1682 + <condition>&#x3d;</condition>
  1683 + <name2/>
  1684 + </key>
  1685 + <value>
  1686 + <name>tcc</name>
  1687 + <rename>qdzid</rename>
  1688 + <update>Y</update>
  1689 + </value>
  1690 + <value>
  1691 + <name>zdz</name>
  1692 + <rename>zdzid</rename>
  1693 + <update>Y</update>
  1694 + </value>
  1695 + <value>
  1696 + <name>xl</name>
  1697 + <rename>xlid</rename>
  1698 + <update>Y</update>
  1699 + </value>
  1700 + <value>
  1701 + <name>ttinfo</name>
  1702 + <rename>ttid</rename>
  1703 + <update>Y</update>
  1704 + </value>
  1705 + <value>
  1706 + <name>xl_dir</name>
  1707 + <rename>sxx</rename>
  1708 + <update>Y</update>
  1709 + </value>
  1710 + <value>
  1711 + <name>lp</name>
  1712 + <rename>lpid</rename>
  1713 + <update>Y</update>
  1714 + </value>
  1715 + <value>
  1716 + <name>jhlc</name>
  1717 + <rename>out_mileage</rename>
  1718 + <update>Y</update>
  1719 + </value>
  1720 + <value>
  1721 + <name>fcsj</name>
  1722 + <rename>sendtime_calcu</rename>
  1723 + <update>Y</update>
  1724 + </value>
  1725 + <value>
  1726 + <name>bcsj</name>
  1727 + <rename>out_time</rename>
  1728 + <update>Y</update>
  1729 + </value>
  1730 + <value>
  1731 + <name>bcs</name>
  1732 + <rename>bcs</rename>
  1733 + <update>Y</update>
  1734 + </value>
  1735 + <value>
  1736 + <name>fcno</name>
  1737 + <rename>fcno</rename>
  1738 + <update>Y</update>
  1739 + </value>
  1740 + <value>
  1741 + <name>bc_type</name>
  1742 + <rename>bctype_code</rename>
  1743 + <update>Y</update>
  1744 + </value>
  1745 + <value>
  1746 + <name>isfb</name>
  1747 + <rename>isfb</rename>
  1748 + <update>Y</update>
  1749 + </value>
  1750 + <value>
  1751 + <name>qdz_code</name>
  1752 + <rename>qdzcode</rename>
  1753 + <update>Y</update>
  1754 + </value>
  1755 + <value>
  1756 + <name>qdz_name</name>
  1757 + <rename>tn</rename>
  1758 + <update>Y</update>
  1759 + </value>
  1760 + <value>
  1761 + <name>zdz_code</name>
  1762 + <rename>zdzcode</rename>
  1763 + <update>Y</update>
  1764 + </value>
  1765 + <value>
  1766 + <name>zdz_name</name>
  1767 + <rename>zdzname_</rename>
  1768 + <update>Y</update>
  1769 + </value>
  1770 + <value>
  1771 + <name>ists</name>
  1772 + <rename>ists</rename>
  1773 + <update>Y</update>
  1774 + </value>
  1775 + <value>
  1776 + <name>line_version</name>
  1777 + <rename>version</rename>
  1778 + <update>Y</update>
  1779 + </value>
  1780 + </lookup>
  1781 + <cluster_schema/>
  1782 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1783 + <xloc>340</xloc>
  1784 + <yloc>1087</yloc>
  1785 + <draw>Y</draw>
  1786 + </GUI>
  1787 + </step>
  1788 +
  1789 + <step>
  1790 + <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail 3</name>
  1791 + <type>InsertUpdate</type>
  1792 + <description/>
  1793 + <distribute>Y</distribute>
  1794 + <custom_distribution/>
  1795 + <copies>1</copies>
  1796 + <partitioning>
  1797 + <method>none</method>
  1798 + <schema_name/>
  1799 + </partitioning>
  1800 + <connection>control_jndi</connection>
  1801 + <commit>100</commit>
  1802 + <update_bypassed>N</update_bypassed>
  1803 + <lookup>
  1804 + <schema/>
  1805 + <table>bsth_c_s_ttinfo_detail</table>
  1806 + <key>
  1807 + <name>xlid</name>
  1808 + <field>xl</field>
  1809 + <condition>&#x3d;</condition>
  1810 + <name2/>
  1811 + </key>
  1812 + <key>
  1813 + <name>ttid</name>
  1814 + <field>ttinfo</field>
  1815 + <condition>&#x3d;</condition>
  1816 + <name2/>
  1817 + </key>
  1818 + <key>
  1819 + <name>lpid</name>
  1820 + <field>lp</field>
  1821 + <condition>&#x3d;</condition>
  1822 + <name2/>
  1823 + </key>
  1824 + <key>
  1825 + <name>fcno</name>
  1826 + <field>fcno</field>
  1827 + <condition>&#x3d;</condition>
  1828 + <name2/>
  1829 + </key>
  1830 + <key>
  1831 + <name>bcs</name>
  1832 + <field>bcs</field>
  1833 + <condition>&#x3d;</condition>
  1834 + <name2/>
  1835 + </key>
  1836 + <value>
  1837 + <name>fcno</name>
  1838 + <rename>fcno</rename>
  1839 + <update>Y</update>
  1840 + </value>
  1841 + <value>
  1842 + <name>bcs</name>
  1843 + <rename>bcs</rename>
  1844 + <update>Y</update>
  1845 + </value>
  1846 + <value>
  1847 + <name>xl</name>
  1848 + <rename>xlid</rename>
  1849 + <update>Y</update>
  1850 + </value>
  1851 + <value>
  1852 + <name>ttinfo</name>
  1853 + <rename>ttid</rename>
  1854 + <update>Y</update>
  1855 + </value>
  1856 + <value>
  1857 + <name>lp</name>
  1858 + <rename>lpid</rename>
  1859 + <update>Y</update>
  1860 + </value>
  1861 + <value>
  1862 + <name>bc_type</name>
  1863 + <rename>bctype_code</rename>
  1864 + <update>Y</update>
  1865 + </value>
  1866 + <value>
  1867 + <name>bcsj</name>
  1868 + <rename>parade_time</rename>
  1869 + <update>Y</update>
  1870 + </value>
  1871 + <value>
  1872 + <name>jhlc</name>
  1873 + <rename>parade_mileage</rename>
  1874 + <update>Y</update>
  1875 + </value>
  1876 + <value>
  1877 + <name>fcsj</name>
  1878 + <rename>sendtime_calcu</rename>
  1879 + <update>Y</update>
  1880 + </value>
  1881 + <value>
  1882 + <name>xl_dir</name>
  1883 + <rename>sxx2</rename>
  1884 + <update>Y</update>
  1885 + </value>
  1886 + <value>
  1887 + <name>qdz</name>
  1888 + <rename>qdzid</rename>
  1889 + <update>Y</update>
  1890 + </value>
  1891 + <value>
  1892 + <name>tcc</name>
  1893 + <rename>zdzid</rename>
  1894 + <update>Y</update>
  1895 + </value>
  1896 + <value>
  1897 + <name>isfb</name>
  1898 + <rename>isfb</rename>
  1899 + <update>Y</update>
  1900 + </value>
  1901 + <value>
  1902 + <name>qdz_code</name>
  1903 + <rename>qdzcode</rename>
  1904 + <update>Y</update>
  1905 + </value>
  1906 + <value>
  1907 + <name>qdz_name</name>
  1908 + <rename>qname</rename>
  1909 + <update>Y</update>
  1910 + </value>
  1911 + <value>
  1912 + <name>zdz_code</name>
  1913 + <rename>zdzcode</rename>
  1914 + <update>Y</update>
  1915 + </value>
  1916 + <value>
  1917 + <name>zdz_name</name>
  1918 + <rename>tn</rename>
  1919 + <update>Y</update>
  1920 + </value>
  1921 + <value>
  1922 + <name>ists</name>
  1923 + <rename>ists</rename>
  1924 + <update>Y</update>
  1925 + </value>
  1926 + <value>
  1927 + <name>line_version</name>
  1928 + <rename>version</rename>
  1929 + <update>Y</update>
  1930 + </value>
  1931 + </lookup>
  1932 + <cluster_schema/>
  1933 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1934 + <xloc>845</xloc>
  1935 + <yloc>899</yloc>
  1936 + <draw>Y</draw>
  1937 + </GUI>
  1938 + </step>
  1939 +
  1940 + <step>
  1941 + <name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</name>
  1942 + <type>ExcelInput</type>
  1943 + <description/>
  1944 + <distribute>N</distribute>
  1945 + <custom_distribution/>
  1946 + <copies>1</copies>
  1947 + <partitioning>
  1948 + <method>none</method>
  1949 + <schema_name/>
  1950 + </partitioning>
  1951 + <header>Y</header>
  1952 + <noempty>Y</noempty>
  1953 + <stoponempty>N</stoponempty>
  1954 + <filefield/>
  1955 + <sheetfield/>
  1956 + <sheetrownumfield/>
  1957 + <rownumfield/>
  1958 + <sheetfield/>
  1959 + <filefield/>
  1960 + <limit>0</limit>
  1961 + <encoding/>
  1962 + <add_to_result_filenames>Y</add_to_result_filenames>
  1963 + <accept_filenames>N</accept_filenames>
  1964 + <accept_field/>
  1965 + <accept_stepname/>
  1966 + <file>
  1967 + <name/>
  1968 + <filemask/>
  1969 + <exclude_filemask/>
  1970 + <file_required>N</file_required>
  1971 + <include_subfolders>N</include_subfolders>
  1972 + </file>
  1973 + <fields>
  1974 + </fields>
  1975 + <sheets>
  1976 + <sheet>
  1977 + <name/>
  1978 + <startrow>0</startrow>
  1979 + <startcol>0</startcol>
  1980 + </sheet>
  1981 + </sheets>
  1982 + <strict_types>N</strict_types>
  1983 + <error_ignored>N</error_ignored>
  1984 + <error_line_skipped>N</error_line_skipped>
  1985 + <bad_line_files_destination_directory/>
  1986 + <bad_line_files_extension>warning</bad_line_files_extension>
  1987 + <error_line_files_destination_directory/>
  1988 + <error_line_files_extension>error</error_line_files_extension>
  1989 + <line_number_files_destination_directory/>
  1990 + <line_number_files_extension>line</line_number_files_extension>
  1991 + <shortFileFieldName/>
  1992 + <pathFieldName/>
  1993 + <hiddenFieldName/>
  1994 + <lastModificationTimeFieldName/>
  1995 + <uriNameFieldName/>
  1996 + <rootUriNameFieldName/>
  1997 + <extensionFieldName/>
  1998 + <sizeFieldName/>
  1999 + <spreadsheet_type>JXL</spreadsheet_type>
  2000 + <cluster_schema/>
  2001 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2002 + <xloc>112</xloc>
  2003 + <yloc>44</yloc>
  2004 + <draw>Y</draw>
  2005 + </GUI>
  2006 + </step>
  2007 +
  2008 + <step>
  2009 + <name>&#x66f4;&#x65b0;&#x65f6;&#x523b;&#x8868;&#x4e3b;&#x8868;&#x7248;&#x672c;</name>
  2010 + <type>Update</type>
  2011 + <description/>
  2012 + <distribute>Y</distribute>
  2013 + <custom_distribution/>
  2014 + <copies>1</copies>
  2015 + <partitioning>
  2016 + <method>none</method>
  2017 + <schema_name/>
  2018 + </partitioning>
  2019 + <connection>control_jndi</connection>
  2020 + <skip_lookup>N</skip_lookup>
  2021 + <commit>100</commit>
  2022 + <use_batch>N</use_batch>
  2023 + <error_ignored>N</error_ignored>
  2024 + <ignore_flag_field/>
  2025 + <lookup>
  2026 + <schema/>
  2027 + <table>bsth_c_s_ttinfo</table>
  2028 + <key>
  2029 + <name>ttid</name>
  2030 + <field>id</field>
  2031 + <condition>&#x3d;</condition>
  2032 + <name2/>
  2033 + </key>
  2034 + <value>
  2035 + <name>line_version</name>
  2036 + <rename>version</rename>
  2037 + </value>
  2038 + </lookup>
  2039 + <cluster_schema/>
  2040 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2041 + <xloc>863</xloc>
  2042 + <yloc>338</yloc>
  2043 + <draw>Y</draw>
  2044 + </GUI>
  2045 + </step>
  2046 +
  2047 + <step>
  2048 + <name>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;1</name>
  2049 + <type>DBLookup</type>
  2050 + <description/>
  2051 + <distribute>Y</distribute>
  2052 + <custom_distribution/>
  2053 + <copies>1</copies>
  2054 + <partitioning>
  2055 + <method>none</method>
  2056 + <schema_name/>
  2057 + </partitioning>
  2058 + <connection>control_jndi</connection>
  2059 + <cache>N</cache>
  2060 + <cache_load_all>N</cache_load_all>
  2061 + <cache_size>0</cache_size>
  2062 + <lookup>
  2063 + <schema/>
  2064 + <table>bsth_c_car_park</table>
  2065 + <orderby/>
  2066 + <fail_on_multiple>N</fail_on_multiple>
  2067 + <eat_row_on_failure>N</eat_row_on_failure>
  2068 + <key>
  2069 + <name>tccname_</name>
  2070 + <field>park_name</field>
  2071 + <condition>&#x3d;</condition>
  2072 + <name2/>
  2073 + </key>
  2074 + <value>
  2075 + <name>id</name>
  2076 + <rename>qdzid</rename>
  2077 + <default/>
  2078 + <type>Integer</type>
  2079 + </value>
  2080 + <value>
  2081 + <name>park_code</name>
  2082 + <rename>qdzcode</rename>
  2083 + <default/>
  2084 + <type>String</type>
  2085 + </value>
  2086 + <value>
  2087 + <name>park_name</name>
  2088 + <rename>tn</rename>
  2089 + <default/>
  2090 + <type>String</type>
  2091 + </value>
  2092 + </lookup>
  2093 + <cluster_schema/>
  2094 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2095 + <xloc>755</xloc>
  2096 + <yloc>504</yloc>
  2097 + <draw>Y</draw>
  2098 + </GUI>
  2099 + </step>
  2100 +
  2101 + <step>
  2102 + <name>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;2</name>
  2103 + <type>DBLookup</type>
  2104 + <description/>
  2105 + <distribute>Y</distribute>
  2106 + <custom_distribution/>
  2107 + <copies>1</copies>
  2108 + <partitioning>
  2109 + <method>none</method>
  2110 + <schema_name/>
  2111 + </partitioning>
  2112 + <connection>control_jndi</connection>
  2113 + <cache>N</cache>
  2114 + <cache_load_all>N</cache_load_all>
  2115 + <cache_size>0</cache_size>
  2116 + <lookup>
  2117 + <schema/>
  2118 + <table>bsth_c_car_park</table>
  2119 + <orderby/>
  2120 + <fail_on_multiple>N</fail_on_multiple>
  2121 + <eat_row_on_failure>N</eat_row_on_failure>
  2122 + <key>
  2123 + <name>tccname_</name>
  2124 + <field>park_name</field>
  2125 + <condition>&#x3d;</condition>
  2126 + <name2/>
  2127 + </key>
  2128 + <value>
  2129 + <name>id</name>
  2130 + <rename>zdzid</rename>
  2131 + <default/>
  2132 + <type>Integer</type>
  2133 + </value>
  2134 + <value>
  2135 + <name>park_code</name>
  2136 + <rename>zdzcode</rename>
  2137 + <default/>
  2138 + <type>String</type>
  2139 + </value>
  2140 + <value>
  2141 + <name>park_name</name>
  2142 + <rename>tn</rename>
  2143 + <default/>
  2144 + <type>String</type>
  2145 + </value>
  2146 + </lookup>
  2147 + <cluster_schema/>
  2148 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2149 + <xloc>887</xloc>
  2150 + <yloc>608</yloc>
  2151 + <draw>Y</draw>
  2152 + </GUI>
  2153 + </step>
  2154 +
  2155 + <step>
  2156 + <name>&#x67e5;&#x627e;&#x51fa;&#x573a;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</name>
  2157 + <type>DBLookup</type>
  2158 + <description/>
  2159 + <distribute>Y</distribute>
  2160 + <custom_distribution/>
  2161 + <copies>1</copies>
  2162 + <partitioning>
  2163 + <method>none</method>
  2164 + <schema_name/>
  2165 + </partitioning>
  2166 + <connection>control_jndi</connection>
  2167 + <cache>N</cache>
  2168 + <cache_load_all>N</cache_load_all>
  2169 + <cache_size>0</cache_size>
  2170 + <lookup>
  2171 + <schema/>
  2172 + <table>bsth_c_ls_stationroute</table>
  2173 + <orderby/>
  2174 + <fail_on_multiple>N</fail_on_multiple>
  2175 + <eat_row_on_failure>N</eat_row_on_failure>
  2176 + <key>
  2177 + <name>xlid</name>
  2178 + <field>line</field>
  2179 + <condition>&#x3d;</condition>
  2180 + <name2/>
  2181 + </key>
  2182 + <key>
  2183 + <name>version</name>
  2184 + <field>versions</field>
  2185 + <condition>&#x3d;</condition>
  2186 + <name2/>
  2187 + </key>
  2188 + <key>
  2189 + <name>zdzname</name>
  2190 + <field>station_name</field>
  2191 + <condition>LIKE</condition>
  2192 + <name2/>
  2193 + </key>
  2194 + <key>
  2195 + <name>endZdtype</name>
  2196 + <field>station_mark</field>
  2197 + <condition>&#x3d;</condition>
  2198 + <name2/>
  2199 + </key>
  2200 + <key>
  2201 + <name>destory</name>
  2202 + <field>destroy</field>
  2203 + <condition>&#x3d;</condition>
  2204 + <name2/>
  2205 + </key>
  2206 + <value>
  2207 + <name>station</name>
  2208 + <rename>zdzid</rename>
  2209 + <default/>
  2210 + <type>Integer</type>
  2211 + </value>
  2212 + <value>
  2213 + <name>directions</name>
  2214 + <rename>sxx</rename>
  2215 + <default/>
  2216 + <type>Integer</type>
  2217 + </value>
  2218 + <value>
  2219 + <name>station_code</name>
  2220 + <rename>zdzcode</rename>
  2221 + <default/>
  2222 + <type>String</type>
  2223 + </value>
  2224 + <value>
  2225 + <name>station_name</name>
  2226 + <rename>zdzname_</rename>
  2227 + <default/>
  2228 + <type>String</type>
  2229 + </value>
  2230 + </lookup>
  2231 + <cluster_schema/>
  2232 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2233 + <xloc>329</xloc>
  2234 + <yloc>505</yloc>
  2235 + <draw>Y</draw>
  2236 + </GUI>
  2237 + </step>
  2238 +
  2239 + <step>
  2240 + <name>&#x67e5;&#x627e;&#x6240;&#x6709;&#x7ebf;&#x8def;&#x4e0a;&#x4e0b;&#x884c;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
  2241 + <type>DBLookup</type>
  2242 + <description/>
  2243 + <distribute>Y</distribute>
  2244 + <custom_distribution/>
  2245 + <copies>1</copies>
  2246 + <partitioning>
  2247 + <method>none</method>
  2248 + <schema_name/>
  2249 + </partitioning>
  2250 + <connection>control_jndi</connection>
  2251 + <cache>N</cache>
  2252 + <cache_load_all>N</cache_load_all>
  2253 + <cache_size>0</cache_size>
  2254 + <lookup>
  2255 + <schema/>
  2256 + <table>bsth_c_line_information</table>
  2257 + <orderby/>
  2258 + <fail_on_multiple>N</fail_on_multiple>
  2259 + <eat_row_on_failure>N</eat_row_on_failure>
  2260 + <key>
  2261 + <name>xlid</name>
  2262 + <field>line</field>
  2263 + <condition>&#x3d;</condition>
  2264 + <name2/>
  2265 + </key>
  2266 + <value>
  2267 + <name>up_mileage</name>
  2268 + <rename>up_mileage</rename>
  2269 + <default/>
  2270 + <type>Number</type>
  2271 + </value>
  2272 + <value>
  2273 + <name>down_mileage</name>
  2274 + <rename>down_mileage</rename>
  2275 + <default/>
  2276 + <type>Number</type>
  2277 + </value>
  2278 + <value>
  2279 + <name>up_travel_time</name>
  2280 + <rename>up_travel_time</rename>
  2281 + <default/>
  2282 + <type>Number</type>
  2283 + </value>
  2284 + <value>
  2285 + <name>down_travel_time</name>
  2286 + <rename>down_travel_time</rename>
  2287 + <default/>
  2288 + <type>Number</type>
  2289 + </value>
  2290 + <value>
  2291 + <name>early_start_time</name>
  2292 + <rename>early_start_time</rename>
  2293 + <default/>
  2294 + <type>String</type>
  2295 + </value>
  2296 + <value>
  2297 + <name>early_end_time</name>
  2298 + <rename>early_end_time</rename>
  2299 + <default/>
  2300 + <type>String</type>
  2301 + </value>
  2302 + <value>
  2303 + <name>early_up_time</name>
  2304 + <rename>early_up_time</rename>
  2305 + <default/>
  2306 + <type>Number</type>
  2307 + </value>
  2308 + <value>
  2309 + <name>early_down_time</name>
  2310 + <rename>early_down_time</rename>
  2311 + <default/>
  2312 + <type>Number</type>
  2313 + </value>
  2314 + <value>
  2315 + <name>late_start_time</name>
  2316 + <rename>late_start_time</rename>
  2317 + <default/>
  2318 + <type>String</type>
  2319 + </value>
  2320 + <value>
  2321 + <name>late_end_time</name>
  2322 + <rename>late_end_time</rename>
  2323 + <default/>
  2324 + <type>String</type>
  2325 + </value>
  2326 + <value>
  2327 + <name>late_up_time</name>
  2328 + <rename>late_up_time</rename>
  2329 + <default/>
  2330 + <type>Number</type>
  2331 + </value>
  2332 + <value>
  2333 + <name>late_down_time</name>
  2334 + <rename>late_down_time</rename>
  2335 + <default/>
  2336 + <type>Number</type>
  2337 + </value>
  2338 + </lookup>
  2339 + <cluster_schema/>
  2340 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2341 + <xloc>149</xloc>
  2342 + <yloc>581</yloc>
  2343 + <draw>Y</draw>
  2344 + </GUI>
  2345 + </step>
  2346 +
  2347 + <step>
  2348 + <name>&#x67e5;&#x627e;&#x65f6;&#x523b;&#x8868;&#x57fa;&#x7840;&#x4fe1;&#x606f;&#x5173;&#x8054;</name>
  2349 + <type>DBLookup</type>
  2350 + <description/>
  2351 + <distribute>Y</distribute>
  2352 + <custom_distribution/>
  2353 + <copies>1</copies>
  2354 + <partitioning>
  2355 + <method>none</method>
  2356 + <schema_name/>
  2357 + </partitioning>
  2358 + <connection>control_jndi</connection>
  2359 + <cache>N</cache>
  2360 + <cache_load_all>N</cache_load_all>
  2361 + <cache_size>0</cache_size>
  2362 + <lookup>
  2363 + <schema/>
  2364 + <table>bsth_c_s_ttinfo</table>
  2365 + <orderby/>
  2366 + <fail_on_multiple>N</fail_on_multiple>
  2367 + <eat_row_on_failure>N</eat_row_on_failure>
  2368 + <key>
  2369 + <name>xlid</name>
  2370 + <field>xl</field>
  2371 + <condition>&#x3d;</condition>
  2372 + <name2/>
  2373 + </key>
  2374 + <key>
  2375 + <name>ttinfoname_</name>
  2376 + <field>name</field>
  2377 + <condition>&#x3d;</condition>
  2378 + <name2/>
  2379 + </key>
  2380 + <key>
  2381 + <name>iscanceled</name>
  2382 + <field>is_cancel</field>
  2383 + <condition>&#x3d;</condition>
  2384 + <name2/>
  2385 + </key>
  2386 + <value>
  2387 + <name>id</name>
  2388 + <rename>ttid</rename>
  2389 + <default/>
  2390 + <type>Integer</type>
  2391 + </value>
  2392 + </lookup>
  2393 + <cluster_schema/>
  2394 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2395 + <xloc>1011</xloc>
  2396 + <yloc>134</yloc>
  2397 + <draw>Y</draw>
  2398 + </GUI>
  2399 + </step>
  2400 +
  2401 + <step>
  2402 + <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x5173;&#x8054;</name>
  2403 + <type>DBLookup</type>
  2404 + <description/>
  2405 + <distribute>Y</distribute>
  2406 + <custom_distribution/>
  2407 + <copies>1</copies>
  2408 + <partitioning>
  2409 + <method>none</method>
  2410 + <schema_name/>
  2411 + </partitioning>
  2412 + <connection>control_jndi</connection>
  2413 + <cache>N</cache>
  2414 + <cache_load_all>N</cache_load_all>
  2415 + <cache_size>0</cache_size>
  2416 + <lookup>
  2417 + <schema/>
  2418 + <table>bsth_c_line</table>
  2419 + <orderby/>
  2420 + <fail_on_multiple>N</fail_on_multiple>
  2421 + <eat_row_on_failure>N</eat_row_on_failure>
  2422 + <key>
  2423 + <name>xlname_</name>
  2424 + <field>name</field>
  2425 + <condition>&#x3d;</condition>
  2426 + <name2/>
  2427 + </key>
  2428 + <key>
  2429 + <name>iscanceled</name>
  2430 + <field>destroy</field>
  2431 + <condition>&#x3d;</condition>
  2432 + <name2/>
  2433 + </key>
  2434 + <value>
  2435 + <name>id</name>
  2436 + <rename>xlid</rename>
  2437 + <default/>
  2438 + <type>Integer</type>
  2439 + </value>
  2440 + </lookup>
  2441 + <cluster_schema/>
  2442 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2443 + <xloc>1007</xloc>
  2444 + <yloc>43</yloc>
  2445 + <draw>Y</draw>
  2446 + </GUI>
  2447 + </step>
  2448 +
  2449 + <step>
  2450 + <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x51fa;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
  2451 + <type>DBLookup</type>
  2452 + <description/>
  2453 + <distribute>Y</distribute>
  2454 + <custom_distribution/>
  2455 + <copies>1</copies>
  2456 + <partitioning>
  2457 + <method>none</method>
  2458 + <schema_name/>
  2459 + </partitioning>
  2460 + <connection>control_jndi</connection>
  2461 + <cache>N</cache>
  2462 + <cache_load_all>N</cache_load_all>
  2463 + <cache_size>0</cache_size>
  2464 + <lookup>
  2465 + <schema/>
  2466 + <table>bsth_c_line_information</table>
  2467 + <orderby/>
  2468 + <fail_on_multiple>N</fail_on_multiple>
  2469 + <eat_row_on_failure>N</eat_row_on_failure>
  2470 + <key>
  2471 + <name>xlid</name>
  2472 + <field>line</field>
  2473 + <condition>&#x3d;</condition>
  2474 + <name2/>
  2475 + </key>
  2476 + <value>
  2477 + <name>up_out_timer</name>
  2478 + <rename>up_out_timer</rename>
  2479 + <default/>
  2480 + <type>Number</type>
  2481 + </value>
  2482 + <value>
  2483 + <name>up_out_mileage</name>
  2484 + <rename>up_out_mileage</rename>
  2485 + <default/>
  2486 + <type>Number</type>
  2487 + </value>
  2488 + <value>
  2489 + <name>down_out_timer</name>
  2490 + <rename>down_out_timer</rename>
  2491 + <default/>
  2492 + <type>Number</type>
  2493 + </value>
  2494 + <value>
  2495 + <name>down_out_mileage</name>
  2496 + <rename>down_out_mileage</rename>
  2497 + <default/>
  2498 + <type>Number</type>
  2499 + </value>
  2500 + </lookup>
  2501 + <cluster_schema/>
  2502 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2503 + <xloc>335</xloc>
  2504 + <yloc>763</yloc>
  2505 + <draw>Y</draw>
  2506 + </GUI>
  2507 + </step>
  2508 +
  2509 + <step>
  2510 + <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x8fdb;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
  2511 + <type>DBLookup</type>
  2512 + <description/>
  2513 + <distribute>Y</distribute>
  2514 + <custom_distribution/>
  2515 + <copies>1</copies>
  2516 + <partitioning>
  2517 + <method>none</method>
  2518 + <schema_name/>
  2519 + </partitioning>
  2520 + <connection>control_jndi</connection>
  2521 + <cache>N</cache>
  2522 + <cache_load_all>N</cache_load_all>
  2523 + <cache_size>0</cache_size>
  2524 + <lookup>
  2525 + <schema/>
  2526 + <table>bsth_c_line_information</table>
  2527 + <orderby/>
  2528 + <fail_on_multiple>N</fail_on_multiple>
  2529 + <eat_row_on_failure>N</eat_row_on_failure>
  2530 + <key>
  2531 + <name>xlid</name>
  2532 + <field>line</field>
  2533 + <condition>&#x3d;</condition>
  2534 + <name2/>
  2535 + </key>
  2536 + <value>
  2537 + <name>up_in_mileage</name>
  2538 + <rename>up_in_mileage</rename>
  2539 + <default/>
  2540 + <type>Number</type>
  2541 + </value>
  2542 + <value>
  2543 + <name>up_in_timer</name>
  2544 + <rename>up_in_timer</rename>
  2545 + <default/>
  2546 + <type>Number</type>
  2547 + </value>
  2548 + <value>
  2549 + <name>down_in_mileage</name>
  2550 + <rename>down_in_mileage</rename>
  2551 + <default/>
  2552 + <type>Number</type>
  2553 + </value>
  2554 + <value>
  2555 + <name>down_in_timer</name>
  2556 + <rename>down_in_timer</rename>
  2557 + <default/>
  2558 + <type>Number</type>
  2559 + </value>
  2560 + </lookup>
  2561 + <cluster_schema/>
  2562 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2563 + <xloc>553</xloc>
  2564 + <yloc>1004</yloc>
  2565 + <draw>Y</draw>
  2566 + </GUI>
  2567 + </step>
  2568 +
  2569 + <step>
  2570 + <name>&#x67e5;&#x627e;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;</name>
  2571 + <type>DBLookup</type>
  2572 + <description/>
  2573 + <distribute>Y</distribute>
  2574 + <custom_distribution/>
  2575 + <copies>1</copies>
  2576 + <partitioning>
  2577 + <method>none</method>
  2578 + <schema_name/>
  2579 + </partitioning>
  2580 + <connection>control_jndi</connection>
  2581 + <cache>N</cache>
  2582 + <cache_load_all>N</cache_load_all>
  2583 + <cache_size>0</cache_size>
  2584 + <lookup>
  2585 + <schema/>
  2586 + <table>bsth_c_ls_stationroute</table>
  2587 + <orderby/>
  2588 + <fail_on_multiple>N</fail_on_multiple>
  2589 + <eat_row_on_failure>N</eat_row_on_failure>
  2590 + <key>
  2591 + <name>xlid</name>
  2592 + <field>line</field>
  2593 + <condition>&#x3d;</condition>
  2594 + <name2/>
  2595 + </key>
  2596 + <key>
  2597 + <name>version</name>
  2598 + <field>versions</field>
  2599 + <condition>&#x3d;</condition>
  2600 + <name2/>
  2601 + </key>
  2602 + <key>
  2603 + <name>sxx</name>
  2604 + <field>directions</field>
  2605 + <condition>&#x3d;</condition>
  2606 + <name2/>
  2607 + </key>
  2608 + <key>
  2609 + <name>endZdtype</name>
  2610 + <field>station_mark</field>
  2611 + <condition>&#x3d;</condition>
  2612 + <name2/>
  2613 + </key>
  2614 + <key>
  2615 + <name>destory</name>
  2616 + <field>destroy</field>
  2617 + <condition>&#x3d;</condition>
  2618 + <name2/>
  2619 + </key>
  2620 + <value>
  2621 + <name>station_name</name>
  2622 + <rename>zdzname</rename>
  2623 + <default/>
  2624 + <type>String</type>
  2625 + </value>
  2626 + <value>
  2627 + <name>station</name>
  2628 + <rename>zdzid</rename>
  2629 + <default/>
  2630 + <type>Integer</type>
  2631 + </value>
  2632 + <value>
  2633 + <name>station_code</name>
  2634 + <rename>zdzcode</rename>
  2635 + <default/>
  2636 + <type>String</type>
  2637 + </value>
  2638 + </lookup>
  2639 + <cluster_schema/>
  2640 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2641 + <xloc>280</xloc>
  2642 + <yloc>404</yloc>
  2643 + <draw>Y</draw>
  2644 + </GUI>
  2645 + </step>
  2646 +
  2647 + <step>
  2648 + <name>&#x67e5;&#x627e;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</name>
  2649 + <type>DBLookup</type>
  2650 + <description/>
  2651 + <distribute>Y</distribute>
  2652 + <custom_distribution/>
  2653 + <copies>1</copies>
  2654 + <partitioning>
  2655 + <method>none</method>
  2656 + <schema_name/>
  2657 + </partitioning>
  2658 + <connection>control_jndi</connection>
  2659 + <cache>N</cache>
  2660 + <cache_load_all>N</cache_load_all>
  2661 + <cache_size>0</cache_size>
  2662 + <lookup>
  2663 + <schema/>
  2664 + <table>bsth_c_ls_stationroute</table>
  2665 + <orderby/>
  2666 + <fail_on_multiple>N</fail_on_multiple>
  2667 + <eat_row_on_failure>N</eat_row_on_failure>
  2668 + <key>
  2669 + <name>xlid</name>
  2670 + <field>line</field>
  2671 + <condition>&#x3d;</condition>
  2672 + <name2/>
  2673 + </key>
  2674 + <key>
  2675 + <name>version</name>
  2676 + <field>versions</field>
  2677 + <condition>&#x3d;</condition>
  2678 + <name2/>
  2679 + </key>
  2680 + <key>
  2681 + <name>qdzname</name>
  2682 + <field>station_name</field>
  2683 + <condition>LIKE</condition>
  2684 + <name2/>
  2685 + </key>
  2686 + <key>
  2687 + <name>sendZdtype</name>
  2688 + <field>station_mark</field>
  2689 + <condition>&#x3d;</condition>
  2690 + <name2/>
  2691 + </key>
  2692 + <key>
  2693 + <name>destory</name>
  2694 + <field>destroy</field>
  2695 + <condition>&#x3d;</condition>
  2696 + <name2/>
  2697 + </key>
  2698 + <value>
  2699 + <name>station</name>
  2700 + <rename>qdzid</rename>
  2701 + <default/>
  2702 + <type>Integer</type>
  2703 + </value>
  2704 + <value>
  2705 + <name>directions</name>
  2706 + <rename>sxx</rename>
  2707 + <default/>
  2708 + <type>Integer</type>
  2709 + </value>
  2710 + <value>
  2711 + <name>station_code</name>
  2712 + <rename>qdzcode</rename>
  2713 + <default/>
  2714 + <type>String</type>
  2715 + </value>
  2716 + <value>
  2717 + <name>station_name</name>
  2718 + <rename>qdzname_</rename>
  2719 + <default/>
  2720 + <type>String</type>
  2721 + </value>
  2722 + </lookup>
  2723 + <cluster_schema/>
  2724 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2725 + <xloc>430</xloc>
  2726 + <yloc>403</yloc>
  2727 + <draw>Y</draw>
  2728 + </GUI>
  2729 + </step>
  2730 +
  2731 + <step>
  2732 + <name>&#x67e5;&#x627e;&#x8def;&#x724c;&#x5173;&#x8054;</name>
  2733 + <type>DBLookup</type>
  2734 + <description/>
  2735 + <distribute>Y</distribute>
  2736 + <custom_distribution/>
  2737 + <copies>1</copies>
  2738 + <partitioning>
  2739 + <method>none</method>
  2740 + <schema_name/>
  2741 + </partitioning>
  2742 + <connection>control_jndi</connection>
  2743 + <cache>N</cache>
  2744 + <cache_load_all>N</cache_load_all>
  2745 + <cache_size>0</cache_size>
  2746 + <lookup>
  2747 + <schema/>
  2748 + <table>bsth_c_s_gbi</table>
  2749 + <orderby/>
  2750 + <fail_on_multiple>N</fail_on_multiple>
  2751 + <eat_row_on_failure>N</eat_row_on_failure>
  2752 + <key>
  2753 + <name>xlid</name>
  2754 + <field>xl</field>
  2755 + <condition>&#x3d;</condition>
  2756 + <name2/>
  2757 + </key>
  2758 + <key>
  2759 + <name>lp</name>
  2760 + <field>lp_name</field>
  2761 + <condition>&#x3d;</condition>
  2762 + <name2/>
  2763 + </key>
  2764 + <key>
  2765 + <name>iscanceled</name>
  2766 + <field>is_cancel</field>
  2767 + <condition>&#x3d;</condition>
  2768 + <name2/>
  2769 + </key>
  2770 + <value>
  2771 + <name>id</name>
  2772 + <rename>lpid</rename>
  2773 + <default/>
  2774 + <type>Integer</type>
  2775 + </value>
  2776 + </lookup>
  2777 + <cluster_schema/>
  2778 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2779 + <xloc>1013</xloc>
  2780 + <yloc>221</yloc>
  2781 + <draw>Y</draw>
  2782 + </GUI>
  2783 + </step>
  2784 +
  2785 + <step>
  2786 + <name>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ebf;&#x8def;&#x65b9;&#x5411;</name>
  2787 + <type>DBLookup</type>
  2788 + <description/>
  2789 + <distribute>Y</distribute>
  2790 + <custom_distribution/>
  2791 + <copies>1</copies>
  2792 + <partitioning>
  2793 + <method>none</method>
  2794 + <schema_name/>
  2795 + </partitioning>
  2796 + <connection>control_jndi</connection>
  2797 + <cache>N</cache>
  2798 + <cache_load_all>N</cache_load_all>
  2799 + <cache_size>0</cache_size>
  2800 + <lookup>
  2801 + <schema/>
  2802 + <table>bsth_c_ls_stationroute</table>
  2803 + <orderby/>
  2804 + <fail_on_multiple>N</fail_on_multiple>
  2805 + <eat_row_on_failure>N</eat_row_on_failure>
  2806 + <key>
  2807 + <name>xlid</name>
  2808 + <field>line</field>
  2809 + <condition>&#x3d;</condition>
  2810 + <name2/>
  2811 + </key>
  2812 + <key>
  2813 + <name>version</name>
  2814 + <field>versions</field>
  2815 + <condition>&#x3d;</condition>
  2816 + <name2/>
  2817 + </key>
  2818 + <key>
  2819 + <name>startZdtype_calcu</name>
  2820 + <field>station_mark</field>
  2821 + <condition>&#x3d;</condition>
  2822 + <name2/>
  2823 + </key>
  2824 + <key>
  2825 + <name>qdzname_calcu</name>
  2826 + <field>station_name</field>
  2827 + <condition>LIKE</condition>
  2828 + <name2/>
  2829 + </key>
  2830 + <key>
  2831 + <name>destory</name>
  2832 + <field>destroy</field>
  2833 + <condition>&#x3d;</condition>
  2834 + <name2/>
  2835 + </key>
  2836 + <value>
  2837 + <name>directions</name>
  2838 + <rename>sxx</rename>
  2839 + <default/>
  2840 + <type>String</type>
  2841 + </value>
  2842 + </lookup>
  2843 + <cluster_schema/>
  2844 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2845 + <xloc>548</xloc>
  2846 + <yloc>610</yloc>
  2847 + <draw>Y</draw>
  2848 + </GUI>
  2849 + </step>
  2850 +
  2851 + <step>
  2852 + <name>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ec8;&#x70b9;&#x7ad9;&#xff0c;&#x5e76;&#x4f5c;&#x4e3a;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x7684;&#x8d77;&#x70b9;&#x7ad9;</name>
  2853 + <type>DBLookup</type>
  2854 + <description/>
  2855 + <distribute>Y</distribute>
  2856 + <custom_distribution/>
  2857 + <copies>1</copies>
  2858 + <partitioning>
  2859 + <method>none</method>
  2860 + <schema_name/>
  2861 + </partitioning>
  2862 + <connection>control_jndi</connection>
  2863 + <cache>N</cache>
  2864 + <cache_load_all>Y</cache_load_all>
  2865 + <cache_size>0</cache_size>
  2866 + <lookup>
  2867 + <schema/>
  2868 + <table>bsth_c_ls_stationroute</table>
  2869 + <orderby/>
  2870 + <fail_on_multiple>N</fail_on_multiple>
  2871 + <eat_row_on_failure>N</eat_row_on_failure>
  2872 + <key>
  2873 + <name>xlid</name>
  2874 + <field>line</field>
  2875 + <condition>&#x3d;</condition>
  2876 + <name2/>
  2877 + </key>
  2878 + <key>
  2879 + <name>version</name>
  2880 + <field>versions</field>
  2881 + <condition>&#x3d;</condition>
  2882 + <name2/>
  2883 + </key>
  2884 + <key>
  2885 + <name>endZdtype_calcu</name>
  2886 + <field>station_mark</field>
  2887 + <condition>&#x3d;</condition>
  2888 + <name2/>
  2889 + </key>
  2890 + <key>
  2891 + <name>sxx</name>
  2892 + <field>directions</field>
  2893 + <condition>&#x3d;</condition>
  2894 + <name2/>
  2895 + </key>
  2896 + <key>
  2897 + <name>destory</name>
  2898 + <field>destroy</field>
  2899 + <condition>&#x3d;</condition>
  2900 + <name2/>
  2901 + </key>
  2902 + <value>
  2903 + <name>station_name</name>
  2904 + <rename>zdzname_calcu</rename>
  2905 + <default/>
  2906 + <type>Integer</type>
  2907 + </value>
  2908 + </lookup>
  2909 + <cluster_schema/>
  2910 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2911 + <xloc>550</xloc>
  2912 + <yloc>701</yloc>
  2913 + <draw>Y</draw>
  2914 + </GUI>
  2915 + </step>
  2916 +
  2917 + <step>
  2918 + <name>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</name>
  2919 + <type>DBLookup</type>
  2920 + <description/>
  2921 + <distribute>Y</distribute>
  2922 + <custom_distribution/>
  2923 + <copies>1</copies>
  2924 + <partitioning>
  2925 + <method>none</method>
  2926 + <schema_name/>
  2927 + </partitioning>
  2928 + <connection>control_jndi</connection>
  2929 + <cache>N</cache>
  2930 + <cache_load_all>N</cache_load_all>
  2931 + <cache_size>0</cache_size>
  2932 + <lookup>
  2933 + <schema/>
  2934 + <table>bsth_c_ls_stationroute</table>
  2935 + <orderby/>
  2936 + <fail_on_multiple>N</fail_on_multiple>
  2937 + <eat_row_on_failure>N</eat_row_on_failure>
  2938 + <key>
  2939 + <name>xlid</name>
  2940 + <field>line</field>
  2941 + <condition>&#x3d;</condition>
  2942 + <name2/>
  2943 + </key>
  2944 + <key>
  2945 + <name>version</name>
  2946 + <field>versions</field>
  2947 + <condition>&#x3d;</condition>
  2948 + <name2/>
  2949 + </key>
  2950 + <key>
  2951 + <name>zdzname_calcu</name>
  2952 + <field>station_name</field>
  2953 + <condition>&#x3d;</condition>
  2954 + <name2/>
  2955 + </key>
  2956 + <key>
  2957 + <name>startZdtype_calcu</name>
  2958 + <field>station_mark</field>
  2959 + <condition>&#x3d;</condition>
  2960 + <name2/>
  2961 + </key>
  2962 + <key>
  2963 + <name>destory</name>
  2964 + <field>destroy</field>
  2965 + <condition>&#x3d;</condition>
  2966 + <name2/>
  2967 + </key>
  2968 + <value>
  2969 + <name>directions</name>
  2970 + <rename>sxx2</rename>
  2971 + <default/>
  2972 + <type>Integer</type>
  2973 + </value>
  2974 + <value>
  2975 + <name>station</name>
  2976 + <rename>qdzid</rename>
  2977 + <default/>
  2978 + <type>Integer</type>
  2979 + </value>
  2980 + <value>
  2981 + <name>station_code</name>
  2982 + <rename>qdzcode</rename>
  2983 + <default/>
  2984 + <type>String</type>
  2985 + </value>
  2986 + <value>
  2987 + <name>station_name</name>
  2988 + <rename>qname</rename>
  2989 + <default/>
  2990 + <type>String</type>
  2991 + </value>
  2992 + </lookup>
  2993 + <cluster_schema/>
  2994 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2995 + <xloc>551</xloc>
  2996 + <yloc>782</yloc>
  2997 + <draw>Y</draw>
  2998 + </GUI>
  2999 + </step>
  3000 +
  3001 + <step>
  3002 + <name>&#x6b63;&#x5e38;&#x73ed;&#x6b21;_&#x5904;&#x7406;&#x6570;&#x636e;</name>
  3003 + <type>ScriptValueMod</type>
  3004 + <description/>
  3005 + <distribute>Y</distribute>
  3006 + <custom_distribution/>
  3007 + <copies>1</copies>
  3008 + <partitioning>
  3009 + <method>none</method>
  3010 + <schema_name/>
  3011 + </partitioning>
  3012 + <compatible>N</compatible>
  3013 + <optimizationLevel>9</optimizationLevel>
  3014 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  3015 + <jsScript_name>Script 1</jsScript_name>
  3016 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;&#x2f;&#x2f; &#x6dfb;&#x52a0;&#x7ad9;&#x70b9;&#x6807;&#x8bc6;&#xa;var sendZdtype &#x3d; &#x27;B&#x27;&#x3b;&#xa;var endZdtype &#x3d; &#x27;E&#x27;&#x3b;&#xa;&#xa;var destory &#x3d; 0&#x3b; &#x2f;&#x2f; &#x672a;&#x64a4;&#x9500;flag</jsScript_script>
  3017 + </jsScript> </jsScripts> <fields> <field> <name>sendZdtype</name>
  3018 + <rename>sendZdtype</rename>
  3019 + <type>String</type>
  3020 + <length>-1</length>
  3021 + <precision>-1</precision>
  3022 + <replace>N</replace>
  3023 + </field> <field> <name>endZdtype</name>
  3024 + <rename>endZdtype</rename>
  3025 + <type>String</type>
  3026 + <length>-1</length>
  3027 + <precision>-1</precision>
  3028 + <replace>N</replace>
  3029 + </field> <field> <name>destory</name>
  3030 + <rename>destory</rename>
  3031 + <type>Integer</type>
  3032 + <length>-1</length>
  3033 + <precision>-1</precision>
  3034 + <replace>N</replace>
  3035 + </field> </fields> <cluster_schema/>
  3036 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3037 + <xloc>588</xloc>
  3038 + <yloc>403</yloc>
  3039 + <draw>Y</draw>
  3040 + </GUI>
  3041 + </step>
  3042 +
  3043 + <step>
  3044 + <name>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</name>
  3045 + <type>Dummy</type>
  3046 + <description/>
  3047 + <distribute>Y</distribute>
  3048 + <custom_distribution/>
  3049 + <copies>1</copies>
  3050 + <partitioning>
  3051 + <method>none</method>
  3052 + <schema_name/>
  3053 + </partitioning>
  3054 + <cluster_schema/>
  3055 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3056 + <xloc>725</xloc>
  3057 + <yloc>404</yloc>
  3058 + <draw>Y</draw>
  3059 + </GUI>
  3060 + </step>
  3061 +
  3062 + <step>
  3063 + <name>&#x6dfb;&#x52a0;&#x53d1;&#x8f66;&#x987a;&#x5e8f;&#x53f7;</name>
  3064 + <type>GroupBy</type>
  3065 + <description/>
  3066 + <distribute>Y</distribute>
  3067 + <custom_distribution/>
  3068 + <copies>1</copies>
  3069 + <partitioning>
  3070 + <method>none</method>
  3071 + <schema_name/>
  3072 + </partitioning>
  3073 + <all_rows>Y</all_rows>
  3074 + <ignore_aggregate>N</ignore_aggregate>
  3075 + <field_ignore/>
  3076 + <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
  3077 + <prefix>grp</prefix>
  3078 + <add_linenr>Y</add_linenr>
  3079 + <linenr_fieldname>fcno</linenr_fieldname>
  3080 + <give_back_row>N</give_back_row>
  3081 + <group>
  3082 + <field>
  3083 + <name>lp</name>
  3084 + </field>
  3085 + </group>
  3086 + <fields>
  3087 + </fields>
  3088 + <cluster_schema/>
  3089 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3090 + <xloc>442</xloc>
  3091 + <yloc>44</yloc>
  3092 + <draw>Y</draw>
  3093 + </GUI>
  3094 + </step>
  3095 +
  3096 + <step>
  3097 + <name>&#x6dfb;&#x52a0;&#x5bf9;&#x5e94;&#x73ed;&#x6b21;&#x6570;</name>
  3098 + <type>GroupBy</type>
  3099 + <description/>
  3100 + <distribute>Y</distribute>
  3101 + <custom_distribution/>
  3102 + <copies>1</copies>
  3103 + <partitioning>
  3104 + <method>none</method>
  3105 + <schema_name/>
  3106 + </partitioning>
  3107 + <all_rows>Y</all_rows>
  3108 + <ignore_aggregate>N</ignore_aggregate>
  3109 + <field_ignore/>
  3110 + <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
  3111 + <prefix>grp</prefix>
  3112 + <add_linenr>Y</add_linenr>
  3113 + <linenr_fieldname>bcs</linenr_fieldname>
  3114 + <give_back_row>N</give_back_row>
  3115 + <group>
  3116 + </group>
  3117 + <fields>
  3118 + </fields>
  3119 + <cluster_schema/>
  3120 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3121 + <xloc>553</xloc>
  3122 + <yloc>44</yloc>
  3123 + <draw>Y</draw>
  3124 + </GUI>
  3125 + </step>
  3126 +
  3127 + <step>
  3128 + <name>&#x73ed;&#x6b21;&#x6570;&#x636e;&#x8303;&#x5f0f;&#x5316;</name>
  3129 + <type>Normaliser</type>
  3130 + <description/>
  3131 + <distribute>Y</distribute>
  3132 + <custom_distribution/>
  3133 + <copies>1</copies>
  3134 + <partitioning>
  3135 + <method>none</method>
  3136 + <schema_name/>
  3137 + </partitioning>
  3138 + <typefield>&#x7ad9;&#x70b9;&#x540d;&#x79f0;</typefield>
  3139 + <fields> </fields> <cluster_schema/>
  3140 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3141 + <xloc>248</xloc>
  3142 + <yloc>44</yloc>
  3143 + <draw>Y</draw>
  3144 + </GUI>
  3145 + </step>
  3146 +
  3147 + <step>
  3148 + <name>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178;</name>
  3149 + <type>ValueMapper</type>
  3150 + <description/>
  3151 + <distribute>Y</distribute>
  3152 + <custom_distribution/>
  3153 + <copies>1</copies>
  3154 + <partitioning>
  3155 + <method>none</method>
  3156 + <schema_name/>
  3157 + </partitioning>
  3158 + <field_to_use>bctype</field_to_use>
  3159 + <target_field>bctype_code</target_field>
  3160 + <non_match_default>&#x672a;&#x77e5;&#x7c7b;&#x578b;</non_match_default>
  3161 + <fields>
  3162 + <field>
  3163 + <source_value>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</source_value>
  3164 + <target_value>normal</target_value>
  3165 + </field>
  3166 + <field>
  3167 + <source_value>&#x51fa;&#x573a;</source_value>
  3168 + <target_value>out</target_value>
  3169 + </field>
  3170 + <field>
  3171 + <source_value>&#x8fdb;&#x573a;</source_value>
  3172 + <target_value>in</target_value>
  3173 + </field>
  3174 + <field>
  3175 + <source_value>&#x52a0;&#x6cb9;</source_value>
  3176 + <target_value>oil</target_value>
  3177 + </field>
  3178 + <field>
  3179 + <source_value>&#x4e34;&#x52a0;</source_value>
  3180 + <target_value>temp</target_value>
  3181 + </field>
  3182 + <field>
  3183 + <source_value>&#x533a;&#x95f4;</source_value>
  3184 + <target_value>region</target_value>
  3185 + </field>
  3186 + <field>
  3187 + <source_value>&#x653e;&#x7a7a;</source_value>
  3188 + <target_value>venting</target_value>
  3189 + </field>
  3190 + <field>
  3191 + <source_value>&#x653e;&#x5927;&#x7ad9;</source_value>
  3192 + <target_value>major</target_value>
  3193 + </field>
  3194 + </fields>
  3195 + <cluster_schema/>
  3196 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3197 + <xloc>149</xloc>
  3198 + <yloc>491</yloc>
  3199 + <draw>Y</draw>
  3200 + </GUI>
  3201 + </step>
  3202 +
  3203 + <step>
  3204 + <name>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 2</name>
  3205 + <type>ValueMapper</type>
  3206 + <description/>
  3207 + <distribute>Y</distribute>
  3208 + <custom_distribution/>
  3209 + <copies>1</copies>
  3210 + <partitioning>
  3211 + <method>none</method>
  3212 + <schema_name/>
  3213 + </partitioning>
  3214 + <field_to_use>bctype</field_to_use>
  3215 + <target_field>bctype_code</target_field>
  3216 + <non_match_default>&#x672a;&#x77e5;&#x7c7b;&#x578b;</non_match_default>
  3217 + <fields>
  3218 + <field>
  3219 + <source_value>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</source_value>
  3220 + <target_value>normal</target_value>
  3221 + </field>
  3222 + <field>
  3223 + <source_value>&#x51fa;&#x573a;</source_value>
  3224 + <target_value>out</target_value>
  3225 + </field>
  3226 + <field>
  3227 + <source_value>&#x8fdb;&#x573a;</source_value>
  3228 + <target_value>in</target_value>
  3229 + </field>
  3230 + <field>
  3231 + <source_value>&#x52a0;&#x6cb9;</source_value>
  3232 + <target_value>oil</target_value>
  3233 + </field>
  3234 + <field>
  3235 + <source_value>&#x4e34;&#x52a0;</source_value>
  3236 + <target_value>temp</target_value>
  3237 + </field>
  3238 + <field>
  3239 + <source_value>&#x533a;&#x95f4;</source_value>
  3240 + <target_value>region</target_value>
  3241 + </field>
  3242 + <field>
  3243 + <source_value>&#x653e;&#x7a7a;</source_value>
  3244 + <target_value>venting</target_value>
  3245 + </field>
  3246 + <field>
  3247 + <source_value>&#x653e;&#x5927;&#x7ad9;</source_value>
  3248 + <target_value>major</target_value>
  3249 + </field>
  3250 + </fields>
  3251 + <cluster_schema/>
  3252 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3253 + <xloc>333</xloc>
  3254 + <yloc>681</yloc>
  3255 + <draw>Y</draw>
  3256 + </GUI>
  3257 + </step>
  3258 +
  3259 + <step>
  3260 + <name>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 3</name>
  3261 + <type>ValueMapper</type>
  3262 + <description/>
  3263 + <distribute>Y</distribute>
  3264 + <custom_distribution/>
  3265 + <copies>1</copies>
  3266 + <partitioning>
  3267 + <method>none</method>
  3268 + <schema_name/>
  3269 + </partitioning>
  3270 + <field_to_use>bctype</field_to_use>
  3271 + <target_field>bctype_code</target_field>
  3272 + <non_match_default>&#x672a;&#x77e5;&#x7c7b;&#x578b;</non_match_default>
  3273 + <fields>
  3274 + <field>
  3275 + <source_value>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</source_value>
  3276 + <target_value>normal</target_value>
  3277 + </field>
  3278 + <field>
  3279 + <source_value>&#x51fa;&#x573a;</source_value>
  3280 + <target_value>out</target_value>
  3281 + </field>
  3282 + <field>
  3283 + <source_value>&#x8fdb;&#x573a;</source_value>
  3284 + <target_value>in</target_value>
  3285 + </field>
  3286 + <field>
  3287 + <source_value>&#x52a0;&#x6cb9;</source_value>
  3288 + <target_value>oil</target_value>
  3289 + </field>
  3290 + <field>
  3291 + <source_value>&#x4e34;&#x52a0;</source_value>
  3292 + <target_value>temp</target_value>
  3293 + </field>
  3294 + <field>
  3295 + <source_value>&#x533a;&#x95f4;</source_value>
  3296 + <target_value>region</target_value>
  3297 + </field>
  3298 + <field>
  3299 + <source_value>&#x653e;&#x7a7a;</source_value>
  3300 + <target_value>venting</target_value>
  3301 + </field>
  3302 + <field>
  3303 + <source_value>&#x653e;&#x5927;&#x7ad9;</source_value>
  3304 + <target_value>major</target_value>
  3305 + </field>
  3306 + </fields>
  3307 + <cluster_schema/>
  3308 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3309 + <xloc>551</xloc>
  3310 + <yloc>928</yloc>
  3311 + <draw>Y</draw>
  3312 + </GUI>
  3313 + </step>
  3314 +
  3315 + <step>
  3316 + <name>&#x7ad9;&#x70b9;&#x8def;&#x7531;&#x7248;&#x672c;&#x7c7b;&#x578b;</name>
  3317 + <type>SelectValues</type>
  3318 + <description/>
  3319 + <distribute>N</distribute>
  3320 + <custom_distribution/>
  3321 + <copies>1</copies>
  3322 + <partitioning>
  3323 + <method>none</method>
  3324 + <schema_name/>
  3325 + </partitioning>
  3326 + <fields> <select_unspecified>Y</select_unspecified>
  3327 + <meta> <name>zdlyversion_</name>
  3328 + <rename>version</rename>
  3329 + <type>Integer</type>
  3330 + <length>-2</length>
  3331 + <precision>-2</precision>
  3332 + <conversion_mask/>
  3333 + <date_format_lenient>false</date_format_lenient>
  3334 + <date_format_locale/>
  3335 + <date_format_timezone/>
  3336 + <lenient_string_to_number>false</lenient_string_to_number>
  3337 + <encoding/>
  3338 + <decimal_symbol/>
  3339 + <grouping_symbol/>
  3340 + <currency_symbol/>
  3341 + <storage_type/>
  3342 + </meta> </fields> <cluster_schema/>
  3343 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3344 + <xloc>1016</xloc>
  3345 + <yloc>305</yloc>
  3346 + <draw>Y</draw>
  3347 + </GUI>
  3348 + </step>
  3349 +
  3350 + <step>
  3351 + <name>&#x7c7b;&#x578b;&#x4fee;&#x6b63;</name>
  3352 + <type>SelectValues</type>
  3353 + <description/>
  3354 + <distribute>Y</distribute>
  3355 + <custom_distribution/>
  3356 + <copies>1</copies>
  3357 + <partitioning>
  3358 + <method>none</method>
  3359 + <schema_name/>
  3360 + </partitioning>
  3361 + <fields> <select_unspecified>N</select_unspecified>
  3362 + <meta> <name>jhlc</name>
  3363 + <rename>jhlc</rename>
  3364 + <type>Number</type>
  3365 + <length>-2</length>
  3366 + <precision>-2</precision>
  3367 + <conversion_mask/>
  3368 + <date_format_lenient>false</date_format_lenient>
  3369 + <date_format_locale/>
  3370 + <date_format_timezone/>
  3371 + <lenient_string_to_number>false</lenient_string_to_number>
  3372 + <encoding/>
  3373 + <decimal_symbol/>
  3374 + <grouping_symbol/>
  3375 + <currency_symbol/>
  3376 + <storage_type/>
  3377 + </meta> <meta> <name>bcsj</name>
  3378 + <rename>bcsj</rename>
  3379 + <type>Integer</type>
  3380 + <length>-2</length>
  3381 + <precision>-2</precision>
  3382 + <conversion_mask/>
  3383 + <date_format_lenient>false</date_format_lenient>
  3384 + <date_format_locale/>
  3385 + <date_format_timezone/>
  3386 + <lenient_string_to_number>false</lenient_string_to_number>
  3387 + <encoding/>
  3388 + <decimal_symbol/>
  3389 + <grouping_symbol/>
  3390 + <currency_symbol/>
  3391 + <storage_type/>
  3392 + </meta> </fields> <cluster_schema/>
  3393 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3394 + <xloc>146</xloc>
  3395 + <yloc>768</yloc>
  3396 + <draw>Y</draw>
  3397 + </GUI>
  3398 + </step>
  3399 +
  3400 + <step>
  3401 + <name>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 2</name>
  3402 + <type>SelectValues</type>
  3403 + <description/>
  3404 + <distribute>Y</distribute>
  3405 + <custom_distribution/>
  3406 + <copies>1</copies>
  3407 + <partitioning>
  3408 + <method>none</method>
  3409 + <schema_name/>
  3410 + </partitioning>
  3411 + <fields> <select_unspecified>N</select_unspecified>
  3412 + <meta> <name>out_mileage</name>
  3413 + <rename>out_mileage</rename>
  3414 + <type>Number</type>
  3415 + <length>-2</length>
  3416 + <precision>-2</precision>
  3417 + <conversion_mask/>
  3418 + <date_format_lenient>false</date_format_lenient>
  3419 + <date_format_locale/>
  3420 + <date_format_timezone/>
  3421 + <lenient_string_to_number>false</lenient_string_to_number>
  3422 + <encoding/>
  3423 + <decimal_symbol/>
  3424 + <grouping_symbol/>
  3425 + <currency_symbol/>
  3426 + <storage_type/>
  3427 + </meta> <meta> <name>out_time</name>
  3428 + <rename>out_time</rename>
  3429 + <type>Integer</type>
  3430 + <length>-2</length>
  3431 + <precision>-2</precision>
  3432 + <conversion_mask/>
  3433 + <date_format_lenient>false</date_format_lenient>
  3434 + <date_format_locale/>
  3435 + <date_format_timezone/>
  3436 + <lenient_string_to_number>false</lenient_string_to_number>
  3437 + <encoding/>
  3438 + <decimal_symbol/>
  3439 + <grouping_symbol/>
  3440 + <currency_symbol/>
  3441 + <storage_type/>
  3442 + </meta> <meta> <name>sxx</name>
  3443 + <rename>sxx</rename>
  3444 + <type>Integer</type>
  3445 + <length>-2</length>
  3446 + <precision>-2</precision>
  3447 + <conversion_mask/>
  3448 + <date_format_lenient>false</date_format_lenient>
  3449 + <date_format_locale/>
  3450 + <date_format_timezone/>
  3451 + <lenient_string_to_number>false</lenient_string_to_number>
  3452 + <encoding/>
  3453 + <decimal_symbol/>
  3454 + <grouping_symbol/>
  3455 + <currency_symbol/>
  3456 + <storage_type/>
  3457 + </meta> </fields> <cluster_schema/>
  3458 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3459 + <xloc>338</xloc>
  3460 + <yloc>1008</yloc>
  3461 + <draw>Y</draw>
  3462 + </GUI>
  3463 + </step>
  3464 +
  3465 + <step>
  3466 + <name>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 3</name>
  3467 + <type>SelectValues</type>
  3468 + <description/>
  3469 + <distribute>Y</distribute>
  3470 + <custom_distribution/>
  3471 + <copies>1</copies>
  3472 + <partitioning>
  3473 + <method>none</method>
  3474 + <schema_name/>
  3475 + </partitioning>
  3476 + <fields> <select_unspecified>N</select_unspecified>
  3477 + <meta> <name>parade_mileage</name>
  3478 + <rename>parade_mileage</rename>
  3479 + <type>Number</type>
  3480 + <length>-2</length>
  3481 + <precision>-2</precision>
  3482 + <conversion_mask/>
  3483 + <date_format_lenient>false</date_format_lenient>
  3484 + <date_format_locale/>
  3485 + <date_format_timezone/>
  3486 + <lenient_string_to_number>false</lenient_string_to_number>
  3487 + <encoding/>
  3488 + <decimal_symbol/>
  3489 + <grouping_symbol/>
  3490 + <currency_symbol/>
  3491 + <storage_type/>
  3492 + </meta> <meta> <name>parade_time</name>
  3493 + <rename>parade_time</rename>
  3494 + <type>Integer</type>
  3495 + <length>-2</length>
  3496 + <precision>-2</precision>
  3497 + <conversion_mask/>
  3498 + <date_format_lenient>false</date_format_lenient>
  3499 + <date_format_locale/>
  3500 + <date_format_timezone/>
  3501 + <lenient_string_to_number>false</lenient_string_to_number>
  3502 + <encoding/>
  3503 + <decimal_symbol/>
  3504 + <grouping_symbol/>
  3505 + <currency_symbol/>
  3506 + <storage_type/>
  3507 + </meta> <meta> <name>sxx2</name>
  3508 + <rename>sxx2</rename>
  3509 + <type>Integer</type>
  3510 + <length>-2</length>
  3511 + <precision>-2</precision>
  3512 + <conversion_mask/>
  3513 + <date_format_lenient>false</date_format_lenient>
  3514 + <date_format_locale/>
  3515 + <date_format_timezone/>
  3516 + <lenient_string_to_number>false</lenient_string_to_number>
  3517 + <encoding/>
  3518 + <decimal_symbol/>
  3519 + <grouping_symbol/>
  3520 + <currency_symbol/>
  3521 + <storage_type/>
  3522 + </meta> </fields> <cluster_schema/>
  3523 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3524 + <xloc>847</xloc>
  3525 + <yloc>1003</yloc>
  3526 + <draw>Y</draw>
  3527 + </GUI>
  3528 + </step>
  3529 +
  3530 + <step>
  3531 + <name>&#x8ba1;&#x7b97;&#x73ed;&#x6b21;&#x7c7b;&#x578b;</name>
  3532 + <type>ValueMapper</type>
  3533 + <description/>
  3534 + <distribute>Y</distribute>
  3535 + <custom_distribution/>
  3536 + <copies>1</copies>
  3537 + <partitioning>
  3538 + <method>none</method>
  3539 + <schema_name/>
  3540 + </partitioning>
  3541 + <field_to_use>qdzname</field_to_use>
  3542 + <target_field>bctype</target_field>
  3543 + <non_match_default>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</non_match_default>
  3544 + <fields>
  3545 + <field>
  3546 + <source_value>&#x51fa;&#x573a;</source_value>
  3547 + <target_value>&#x51fa;&#x573a;</target_value>
  3548 + </field>
  3549 + <field>
  3550 + <source_value>&#x8fdb;&#x573a;</source_value>
  3551 + <target_value>&#x8fdb;&#x573a;</target_value>
  3552 + </field>
  3553 + </fields>
  3554 + <cluster_schema/>
  3555 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3556 + <xloc>1014</xloc>
  3557 + <yloc>401</yloc>
  3558 + <draw>Y</draw>
  3559 + </GUI>
  3560 + </step>
  3561 +
  3562 + <step>
  3563 + <name>&#x8bb0;&#x5f55;&#x5173;&#x8054; &#x28;&#x7b1b;&#x5361;&#x5c14;&#x8f93;&#x51fa;&#x29;</name>
  3564 + <type>JoinRows</type>
  3565 + <description/>
  3566 + <distribute>Y</distribute>
  3567 + <custom_distribution/>
  3568 + <copies>1</copies>
  3569 + <partitioning>
  3570 + <method>none</method>
  3571 + <schema_name/>
  3572 + </partitioning>
  3573 + <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
  3574 + <prefix>out</prefix>
  3575 + <cache_size>500</cache_size>
  3576 + <main/>
  3577 + <compare>
  3578 +<condition>
  3579 + <negated>N</negated>
  3580 + <leftvalue/>
  3581 + <function>&#x3d;</function>
  3582 + <rightvalue/>
  3583 + </condition>
  3584 + </compare>
  3585 + <cluster_schema/>
  3586 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3587 + <xloc>310</xloc>
  3588 + <yloc>133</yloc>
  3589 + <draw>Y</draw>
  3590 + </GUI>
  3591 + </step>
  3592 +
  3593 + <step>
  3594 + <name>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;&#xff08;&#x53d1;&#x8f66;&#x65f6;&#x95f4;&#x4e3a;&#x7a7a;&#xff09;</name>
  3595 + <type>FilterRows</type>
  3596 + <description/>
  3597 + <distribute>Y</distribute>
  3598 + <custom_distribution/>
  3599 + <copies>1</copies>
  3600 + <partitioning>
  3601 + <method>none</method>
  3602 + <schema_name/>
  3603 + </partitioning>
  3604 +<send_true_to/>
  3605 +<send_false_to/>
  3606 + <compare>
  3607 +<condition>
  3608 + <negated>N</negated>
  3609 + <leftvalue>sendtime_calcu</leftvalue>
  3610 + <function>IS NOT NULL</function>
  3611 + <rightvalue/>
  3612 + </condition>
  3613 + </compare>
  3614 + <cluster_schema/>
  3615 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3616 + <xloc>768</xloc>
  3617 + <yloc>44</yloc>
  3618 + <draw>Y</draw>
  3619 + </GUI>
  3620 + </step>
  3621 +
  3622 + <step>
  3623 + <name>&#x8fdb;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x8d77;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</name>
  3624 + <type>ScriptValueMod</type>
  3625 + <description/>
  3626 + <distribute>Y</distribute>
  3627 + <custom_distribution/>
  3628 + <copies>1</copies>
  3629 + <partitioning>
  3630 + <method>none</method>
  3631 + <schema_name/>
  3632 + </partitioning>
  3633 + <compatible>N</compatible>
  3634 + <optimizationLevel>9</optimizationLevel>
  3635 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  3636 + <jsScript_name>Script 1</jsScript_name>
  3637 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;&#x2f;&#x2f; &#x6dfb;&#x52a0;&#x7ad9;&#x70b9;&#x6807;&#x8bc6;&#xa;var cc_groups &#x3d; qdzgroups.split&#x28;&#x22;,&#x22;&#x29;&#x3b; &#x2f;&#x2f; &#x6240;&#x6709;&#x73ed;&#x6b21;&#x8d77;&#x70b9;&#x7ad9;&#x6570;&#x7ec4;&#xa;var qdzname_calcu &#x3d; cc_groups&#x5b;gno - 2&#x5d;&#x3b; &#x2f;&#x2f; &#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x7684;&#x8d77;&#x70b9;&#x7ad9;&#x662f;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ec8;&#x70b9;&#x7ad9;&#xff0c;&#x8fd9;&#x91cc;&#x53ea;&#x6709;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x8d77;&#x70b9;&#x7ad9;&#xff0c;&#x8fd8;&#x9700;&#x8981;&#x8ba1;&#x7b97;&#xa;var startZdtype_calcu &#x3d; &#x27;B&#x27;&#x3b;&#xa;var endZdtype_calcu &#x3d; &#x27;E&#x27;&#x3b;&#xa;&#xa;var destory &#x3d; 0&#x3b; &#x2f;&#x2f; &#x672a;&#x64a4;&#x9500;flag</jsScript_script>
  3638 + </jsScript> </jsScripts> <fields> <field> <name>qdzname_calcu</name>
  3639 + <rename>qdzname_calcu</rename>
  3640 + <type>String</type>
  3641 + <length>-1</length>
  3642 + <precision>-1</precision>
  3643 + <replace>N</replace>
  3644 + </field> <field> <name>startZdtype_calcu</name>
  3645 + <rename>startZdtype_calcu</rename>
  3646 + <type>String</type>
  3647 + <length>-1</length>
  3648 + <precision>-1</precision>
  3649 + <replace>N</replace>
  3650 + </field> <field> <name>endZdtype_calcu</name>
  3651 + <rename>endZdtype_calcu</rename>
  3652 + <type>String</type>
  3653 + <length>-1</length>
  3654 + <precision>-1</precision>
  3655 + <replace>N</replace>
  3656 + </field> <field> <name>destory</name>
  3657 + <rename>destory</rename>
  3658 + <type>Integer</type>
  3659 + <length>-1</length>
  3660 + <precision>-1</precision>
  3661 + <replace>N</replace>
  3662 + </field> </fields> <cluster_schema/>
  3663 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3664 + <xloc>754</xloc>
  3665 + <yloc>610</yloc>
  3666 + <draw>Y</draw>
  3667 + </GUI>
  3668 + </step>
  3669 +
  3670 + <step>
  3671 + <name>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</name>
  3672 + <type>Dummy</type>
  3673 + <description/>
  3674 + <distribute>Y</distribute>
  3675 + <custom_distribution/>
  3676 + <copies>1</copies>
  3677 + <partitioning>
  3678 + <method>none</method>
  3679 + <schema_name/>
  3680 + </partitioning>
  3681 + <cluster_schema/>
  3682 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3683 + <xloc>997</xloc>
  3684 + <yloc>606</yloc>
  3685 + <draw>Y</draw>
  3686 + </GUI>
  3687 + </step>
  3688 +
  3689 + <step_error_handling>
  3690 + <error>
  3691 + <source_step>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail</source_step>
  3692 + <target_step/>
  3693 + <is_enabled>Y</is_enabled>
  3694 + <nr_valuename>c1</nr_valuename>
  3695 + <descriptions_valuename>c2</descriptions_valuename>
  3696 + <fields_valuename>c3</fields_valuename>
  3697 + <codes_valuename>c4</codes_valuename>
  3698 + <max_errors/>
  3699 + <max_pct_errors/>
  3700 + <min_pct_rows/>
  3701 + </error>
  3702 + <error>
  3703 + <source_step>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail 2</source_step>
  3704 + <target_step/>
  3705 + <is_enabled>Y</is_enabled>
  3706 + <nr_valuename/>
  3707 + <descriptions_valuename/>
  3708 + <fields_valuename/>
  3709 + <codes_valuename/>
  3710 + <max_errors/>
  3711 + <max_pct_errors/>
  3712 + <min_pct_rows/>
  3713 + </error>
  3714 + <error>
  3715 + <source_step>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail 3</source_step>
  3716 + <target_step/>
  3717 + <is_enabled>Y</is_enabled>
  3718 + <nr_valuename/>
  3719 + <descriptions_valuename/>
  3720 + <fields_valuename/>
  3721 + <codes_valuename/>
  3722 + <max_errors/>
  3723 + <max_pct_errors/>
  3724 + <min_pct_rows/>
  3725 + </error>
  3726 + </step_error_handling>
  3727 + <slave-step-copy-partition-distribution>
  3728 +</slave-step-copy-partition-distribution>
  3729 + <slave_transformation>N</slave_transformation>
  3730 +
  3731 +</transformation>
... ...
src/main/resources/datatools/ktrs/ttinfodetailDataInput2_version.ktr renamed to src/main/resources/datatools/ktrs/zh/ttinfo-detail-data_import_of_normal.ktr
1 1 <?xml version="1.0" encoding="UTF-8"?>
2 2 <transformation>
3 3 <info>
4   - <name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x5bfc;&#x5165;-&#x7ad9;&#x70b9;&#x8def;&#x7531;&#x7248;&#x672c;</name>
  4 + <name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x5bfc;&#x5165;-&#x7ad9;&#x70b9;&#x8def;&#x7531;&#x7248;&#x672c;_zh</name>
5 5 <description>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;&#x5bfc;&#x5165;</description>
6 6 <extended_description>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;</extended_description>
7 7 <trans_version/>
... ... @@ -486,6 +486,33 @@
486 486 </attributes>
487 487 </connection>
488 488 <connection>
  489 + <name>test_control_local</name>
  490 + <server>localhost</server>
  491 + <type>MYSQL</type>
  492 + <access>Native</access>
  493 + <database>test_control</database>
  494 + <port>3306</port>
  495 + <username>root</username>
  496 + <password>Encrypted </password>
  497 + <servername/>
  498 + <data_tablespace/>
  499 + <index_tablespace/>
  500 + <attributes>
  501 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  502 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  503 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  504 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  505 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  506 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  507 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  508 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  509 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  510 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  511 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  512 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  513 + </attributes>
  514 + </connection>
  515 + <connection>
489 516 <name>test_control&#xff08;&#x672c;&#x673a;&#xff09;</name>
490 517 <server>127.0.0.1</server>
491 518 <type>MYSQL</type>
... ... @@ -498,6 +525,62 @@
498 525 <data_tablespace/>
499 526 <index_tablespace/>
500 527 <attributes>
  528 + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
  529 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  530 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  531 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  532 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  533 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  534 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  535 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  536 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  537 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  538 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  539 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  540 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  541 + </attributes>
  542 + </connection>
  543 + <connection>
  544 + <name>wzk_mysql_jndi</name>
  545 + <server/>
  546 + <type>MYSQL</type>
  547 + <access>JNDI</access>
  548 + <database>wzk_mysql</database>
  549 + <port>1521</port>
  550 + <username/>
  551 + <password>Encrypted </password>
  552 + <servername/>
  553 + <data_tablespace/>
  554 + <index_tablespace/>
  555 + <attributes>
  556 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  557 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  558 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  559 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  560 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  561 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  562 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  563 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  564 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  565 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  566 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  567 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  568 + </attributes>
  569 + </connection>
  570 + <connection>
  571 + <name>wzk&#xff08;&#x672c;&#x673a;&#xff09;</name>
  572 + <server>localhost</server>
  573 + <type>MYSQL</type>
  574 + <access>Native</access>
  575 + <database>pdgj_wzk_sys</database>
  576 + <port>3306</port>
  577 + <username>root</username>
  578 + <password>Encrypted </password>
  579 + <servername/>
  580 + <data_tablespace/>
  581 + <index_tablespace/>
  582 + <attributes>
  583 + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
501 584 <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
502 585 <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
503 586 <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
... ... @@ -665,7 +748,7 @@
665 748 </connection>
666 749 <connection>
667 750 <name>&#x516c;&#x53f8;ygjw</name>
668   - <server>192.168.168.1</server>
  751 + <server>192.168.168.178</server>
669 752 <type>ORACLE</type>
670 753 <access>Native</access>
671 754 <database>orcl</database>
... ... @@ -687,6 +770,126 @@
687 770 <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
688 771 </attributes>
689 772 </connection>
  773 + <connection>
  774 + <name>&#x516c;&#x53f8;&#x673a;&#x52a1;_pdgj</name>
  775 + <server>192.168.168.178</server>
  776 + <type>ORACLE</type>
  777 + <access>Native</access>
  778 + <database>orcl</database>
  779 + <port>1521</port>
  780 + <username>pdgj</username>
  781 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10ce96a8d0</password>
  782 + <servername/>
  783 + <data_tablespace/>
  784 + <index_tablespace/>
  785 + <attributes>
  786 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  787 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  788 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  789 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  790 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  791 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  792 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  793 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  794 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  795 + </attributes>
  796 + </connection>
  797 + <connection>
  798 + <name>&#x5916;&#x7f51;vpn&#x4e34;&#x6e2f;&#x673a;&#x52a1;oracle</name>
  799 + <server>10.10.150.114</server>
  800 + <type>ORACLE</type>
  801 + <access>Native</access>
  802 + <database>helowin</database>
  803 + <port>1521</port>
  804 + <username>lgjw</username>
  805 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d295a5cd</password>
  806 + <servername/>
  807 + <data_tablespace/>
  808 + <index_tablespace/>
  809 + <attributes>
  810 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  811 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  812 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  813 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  814 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  815 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  816 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  817 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  818 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  819 + </attributes>
  820 + </connection>
  821 + <connection>
  822 + <name>&#x5916;&#x7f51;&#x5357;&#x6c47;&#x673a;&#x52a1;oracle</name>
  823 + <server>58.247.254.118</server>
  824 + <type>ORACLE</type>
  825 + <access>Native</access>
  826 + <database>orcl</database>
  827 + <port>15211</port>
  828 + <username>nhjw</username>
  829 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d09aa5cd</password>
  830 + <servername/>
  831 + <data_tablespace/>
  832 + <index_tablespace/>
  833 + <attributes>
  834 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  835 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  836 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  837 + <attribute><code>PORT_NUMBER</code><attribute>15211</attribute></attribute>
  838 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  839 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  840 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  841 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  842 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  843 + </attributes>
  844 + </connection>
  845 + <connection>
  846 + <name>&#x5916;&#x7f51;&#x6768;&#x9ad8;&#x673a;&#x52a1;oracle</name>
  847 + <server>58.247.254.118</server>
  848 + <type>ORACLE</type>
  849 + <access>Native</access>
  850 + <database>orcl</database>
  851 + <port>15211</port>
  852 + <username>ygjw</username>
  853 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10c795a5cd</password>
  854 + <servername/>
  855 + <data_tablespace/>
  856 + <index_tablespace/>
  857 + <attributes>
  858 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  859 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  860 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  861 + <attribute><code>PORT_NUMBER</code><attribute>15211</attribute></attribute>
  862 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  863 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  864 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  865 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  866 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  867 + </attributes>
  868 + </connection>
  869 + <connection>
  870 + <name>&#x5916;&#x7f51;&#x91d1;&#x9ad8;&#x673a;&#x52a1;oracle</name>
  871 + <server>58.247.254.118</server>
  872 + <type>ORACLE</type>
  873 + <access>Native</access>
  874 + <database>orcl</database>
  875 + <port>15211</port>
  876 + <username>jwgl</username>
  877 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d485a8d6</password>
  878 + <servername/>
  879 + <data_tablespace/>
  880 + <index_tablespace/>
  881 + <attributes>
  882 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  883 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  884 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  885 + <attribute><code>PORT_NUMBER</code><attribute>15211</attribute></attribute>
  886 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  887 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  888 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  889 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  890 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  891 + </attributes>
  892 + </connection>
690 893 <order>
691 894 <hop> <from>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</from><to>&#x73ed;&#x6b21;&#x6570;&#x636e;&#x8303;&#x5f0f;&#x5316;</to><enabled>Y</enabled> </hop>
692 895 <hop> <from>&#x6dfb;&#x52a0;&#x53d1;&#x8f66;&#x987a;&#x5e8f;&#x53f7;</from><to>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;&#xff08;&#x53d1;&#x8f66;&#x65f6;&#x95f4;&#x4e3a;&#x7a7a;&#xff09;</to><enabled>Y</enabled> </hop>
... ...
src/main/resources/datatools/ktrs/zh/ttinfo-detail-data_import_of_normalWithGs.ktr 0 → 100644
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<transformation>
  3 + <info>
  4 + <name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x5bfc;&#x5165;-normalWithGs_zh</name>
  5 + <description>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;&#x5bfc;&#x5165;</description>
  6 + <extended_description>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;&#xff0c;&#x5e26;&#x5de5;&#x65f6;&#x7248;&#x672c;&#x5bfc;&#x5165;</extended_description>
  7 + <trans_version/>
  8 + <trans_type>Normal</trans_type>
  9 + <trans_status>0</trans_status>
  10 + <directory>&#x2f;</directory>
  11 + <parameters>
  12 + </parameters>
  13 + <log>
  14 +<trans-log-table><connection/>
  15 +<schema/>
  16 +<table/>
  17 +<size_limit_lines/>
  18 +<interval/>
  19 +<timeout_days/>
  20 +<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>
  21 +<perf-log-table><connection/>
  22 +<schema/>
  23 +<table/>
  24 +<interval/>
  25 +<timeout_days/>
  26 +<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>
  27 +<channel-log-table><connection/>
  28 +<schema/>
  29 +<table/>
  30 +<timeout_days/>
  31 +<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>
  32 +<step-log-table><connection/>
  33 +<schema/>
  34 +<table/>
  35 +<timeout_days/>
  36 +<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>
  37 +<metrics-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>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>
  42 + </log>
  43 + <maxdate>
  44 + <connection/>
  45 + <table/>
  46 + <field/>
  47 + <offset>0.0</offset>
  48 + <maxdiff>0.0</maxdiff>
  49 + </maxdate>
  50 + <size_rowset>10000</size_rowset>
  51 + <sleep_time_empty>50</sleep_time_empty>
  52 + <sleep_time_full>50</sleep_time_full>
  53 + <unique_connections>N</unique_connections>
  54 + <feedback_shown>Y</feedback_shown>
  55 + <feedback_size>50000</feedback_size>
  56 + <using_thread_priorities>Y</using_thread_priorities>
  57 + <shared_objects_file/>
  58 + <capture_step_performance>N</capture_step_performance>
  59 + <step_performance_capturing_delay>1000</step_performance_capturing_delay>
  60 + <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit>
  61 + <dependencies>
  62 + </dependencies>
  63 + <partitionschemas>
  64 + </partitionschemas>
  65 + <slaveservers>
  66 + </slaveservers>
  67 + <clusterschemas>
  68 + </clusterschemas>
  69 + <created_user>-</created_user>
  70 + <created_date>2016&#x2f;06&#x2f;30 12&#x3a;21&#x3a;57.536</created_date>
  71 + <modified_user>-</modified_user>
  72 + <modified_date>2016&#x2f;06&#x2f;30 12&#x3a;21&#x3a;57.536</modified_date>
  73 + <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA&#x3d;</key_for_session_key>
  74 + <is_key_private>N</is_key_private>
  75 + </info>
  76 + <notepads>
  77 + <notepad>
  78 + <note>&#x5b57;&#x5178;&#x8868;&#x5bf9;&#x5e94;&#xff08;&#x4ee5;&#x540e;&#x76f4;&#x63a5;&#x67e5;&#x627e;&#x8868; bsth_c_sys_dictionary&#xff09;&#xa;&#x7c7b;&#x578b; &#x4ee3;&#x7801; &#x540d;&#x79f0;&#xa;LineTrend 0 &#x4e0a;&#x884c;&#xa;LineTrend 1 &#x4e0b;&#x884c;&#xa;ScheduleType normal &#x6b63;&#x5e38;&#x73ed;&#x6b21;&#xa;ScheduleType out &#x51fa;&#x573a;&#xa;ScheduleType in &#x8fdb;&#x573a;&#xa;ScheduleType temp &#x4e34;&#x52a0;&#xa;ScheduleType region &#x533a;&#x95f4;&#xa;ScheduleType venting &#x653e;&#x7a7a;&#xa;ScheduleType major &#x653e;&#x5927;&#x7ad9;</note>
  79 + <xloc>606</xloc>
  80 + <yloc>129</yloc>
  81 + <width>332</width>
  82 + <heigth>186</heigth>
  83 + <fontname>YaHei Consolas Hybrid</fontname>
  84 + <fontsize>12</fontsize>
  85 + <fontbold>N</fontbold>
  86 + <fontitalic>N</fontitalic>
  87 + <fontcolorred>0</fontcolorred>
  88 + <fontcolorgreen>0</fontcolorgreen>
  89 + <fontcolorblue>0</fontcolorblue>
  90 + <backgroundcolorred>255</backgroundcolorred>
  91 + <backgroundcolorgreen>205</backgroundcolorgreen>
  92 + <backgroundcolorblue>112</backgroundcolorblue>
  93 + <bordercolorred>100</bordercolorred>
  94 + <bordercolorgreen>100</bordercolorgreen>
  95 + <bordercolorblue>100</bordercolorblue>
  96 + <drawshadow>Y</drawshadow>
  97 + </notepad>
  98 + <notepad>
  99 + <note>&#x56e0;&#x4e3a;&#x65f6;&#x523b;&#x8868;&#x8f93;&#x5165;&#x683c;&#x5f0f;&#x4e0d;&#x786e;&#x5b9a;&#x6027;&#xff0c;&#x4e3b;&#x8981;&#x56e0;&#x4e3a;&#x8868;&#x7ed3;&#x6784;&#x662f;&#x53cd;&#x8303;&#x5f0f;&#x5316;&#x7684;&#xff0c;&#xa;&#x6240;&#x4ee5;&#x9700;&#x8981;&#x5916;&#x90e8;&#x52a8;&#x6001;&#x6307;&#x5b9a;&#x613f;&#x6570;&#x636e;&#xff0c;&#x5934;&#x4e09;&#x4e2a;step&#x52a8;&#x6001;&#x6307;&#x5b9a;&#x613f;&#x6570;&#x636e;&#xa;&#x6ce8;&#x610f;&#xff1a;&#x5bfc;&#x5165;&#x7684;&#x662f;normalWithGs&#x683c;&#x5f0f;&#xff0c;&#x5b57;&#x6bb5;&#x9009;&#x62e9;&#x662f;&#x8def;&#x724c;-&#x3e;&#x683c;&#x5f0f;&#xff0c;&#x9700;&#x8981;&#x62c6;&#x5206;&#x8def;&#x724c;&#x548c;&#x5de5;&#x65f6;&#xa;</note>
  100 + <xloc>71</xloc>
  101 + <yloc>202</yloc>
  102 + <width>456</width>
  103 + <heigth>74</heigth>
  104 + <fontname>YaHei Consolas Hybrid</fontname>
  105 + <fontsize>12</fontsize>
  106 + <fontbold>N</fontbold>
  107 + <fontitalic>N</fontitalic>
  108 + <fontcolorred>0</fontcolorred>
  109 + <fontcolorgreen>0</fontcolorgreen>
  110 + <fontcolorblue>0</fontcolorblue>
  111 + <backgroundcolorred>255</backgroundcolorred>
  112 + <backgroundcolorgreen>205</backgroundcolorgreen>
  113 + <backgroundcolorblue>112</backgroundcolorblue>
  114 + <bordercolorred>100</bordercolorred>
  115 + <bordercolorgreen>100</bordercolorgreen>
  116 + <bordercolorblue>100</bordercolorblue>
  117 + <drawshadow>Y</drawshadow>
  118 + </notepad>
  119 + <notepad>
  120 + <note>&#x8fd9;&#x91cc;&#x6709;&#x4e9b;&#x95ee;&#x9898;&#xa;&#x5728;window2012&#x7684;&#x73af;&#x5883;&#x4e0b;&#xff0c;&#xa;MySql&#x6570;&#x636e;&#x5e93;&#x67e5;&#x8be2;&#x4e2d;&#x5982;&#x679c;&#x8fd4;&#x56de;&#x4e2d;&#x6587;&#x5185;&#x5bb9;&#x7684;&#x5b57;&#x6bb5;&#xff0c;&#x8fd9;&#x4e2a;&#x5185;&#x5bb9;&#x4e71;&#x7801;&#xa;&#x89e3;&#x51b3;&#x529e;&#x6cd5;&#xff0c;&#x5c31;&#x662f;&#x6570;&#x636e;&#x5e93;&#x67e5;&#x8be2;&#x5168;&#x90e8;&#x7f13;&#x5b58;&#xff0c;&#x5c31;&#x4e0d;&#x4e71;&#x7801;&#xa;linux&#x73af;&#x5883;&#x4e0b;&#x6ca1;&#x95ee;&#x9898;</note>
  121 + <xloc>721</xloc>
  122 + <yloc>762</yloc>
  123 + <width>333</width>
  124 + <heigth>90</heigth>
  125 + <fontname>YaHei Consolas Hybrid</fontname>
  126 + <fontsize>12</fontsize>
  127 + <fontbold>N</fontbold>
  128 + <fontitalic>N</fontitalic>
  129 + <fontcolorred>0</fontcolorred>
  130 + <fontcolorgreen>0</fontcolorgreen>
  131 + <fontcolorblue>0</fontcolorblue>
  132 + <backgroundcolorred>255</backgroundcolorred>
  133 + <backgroundcolorgreen>205</backgroundcolorgreen>
  134 + <backgroundcolorblue>112</backgroundcolorblue>
  135 + <bordercolorred>100</bordercolorred>
  136 + <bordercolorgreen>100</bordercolorgreen>
  137 + <bordercolorblue>100</bordercolorblue>
  138 + <drawshadow>Y</drawshadow>
  139 + </notepad>
  140 + <notepad>
  141 + <note>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#xff0c;&#x65b9;&#x5411;&#x6709;&#x65f6;&#x786e;&#x5b9a;&#x4e0d;&#x51c6;&#xff0c;&#xa;&#x7a7a;&#x7684;&#x60c5;&#x51b5;&#x4e0b;&#x8bbe;&#x5b9a;&#x4e3a;0&#xff08;&#x4e0a;&#x884c;&#xff09;</note>
  142 + <xloc>104</xloc>
  143 + <yloc>939</yloc>
  144 + <width>178</width>
  145 + <heigth>42</heigth>
  146 + <fontname>YaHei Consolas Hybrid</fontname>
  147 + <fontsize>12</fontsize>
  148 + <fontbold>N</fontbold>
  149 + <fontitalic>N</fontitalic>
  150 + <fontcolorred>0</fontcolorred>
  151 + <fontcolorgreen>0</fontcolorgreen>
  152 + <fontcolorblue>0</fontcolorblue>
  153 + <backgroundcolorred>255</backgroundcolorred>
  154 + <backgroundcolorgreen>205</backgroundcolorgreen>
  155 + <backgroundcolorblue>112</backgroundcolorblue>
  156 + <bordercolorred>100</bordercolorred>
  157 + <bordercolorgreen>100</bordercolorgreen>
  158 + <bordercolorblue>100</bordercolorblue>
  159 + <drawshadow>Y</drawshadow>
  160 + </notepad>
  161 + <notepad>
  162 + <note>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#xff0c;&#x65b9;&#x5411;&#x6709;&#x65f6;&#x786e;&#x5b9a;&#x4e0d;&#x51c6;&#xff0c;&#xa;&#x7a7a;&#x7684;&#x60c5;&#x51b5;&#x4e0b;&#x8bbe;&#x5b9a;&#x4e3a;0&#xff08;&#x4e0a;&#x884c;&#xff09;</note>
  163 + <xloc>578</xloc>
  164 + <yloc>1084</yloc>
  165 + <width>178</width>
  166 + <heigth>42</heigth>
  167 + <fontname>YaHei Consolas Hybrid</fontname>
  168 + <fontsize>12</fontsize>
  169 + <fontbold>N</fontbold>
  170 + <fontitalic>N</fontitalic>
  171 + <fontcolorred>0</fontcolorred>
  172 + <fontcolorgreen>0</fontcolorgreen>
  173 + <fontcolorblue>0</fontcolorblue>
  174 + <backgroundcolorred>255</backgroundcolorred>
  175 + <backgroundcolorgreen>205</backgroundcolorgreen>
  176 + <backgroundcolorblue>112</backgroundcolorblue>
  177 + <bordercolorred>100</bordercolorred>
  178 + <bordercolorgreen>100</bordercolorgreen>
  179 + <bordercolorblue>100</bordercolorblue>
  180 + <drawshadow>Y</drawshadow>
  181 + </notepad>
  182 + </notepads>
  183 + <connection>
  184 + <name>192.168.168.1_jwgl_dw</name>
  185 + <server>192.168.168.1</server>
  186 + <type>ORACLE</type>
  187 + <access>Native</access>
  188 + <database>orcl</database>
  189 + <port>1521</port>
  190 + <username>jwgl_dw</username>
  191 + <password>Encrypted 2be98afc86aa7f2e4cb13b977d2adabcd</password>
  192 + <servername/>
  193 + <data_tablespace/>
  194 + <index_tablespace/>
  195 + <attributes>
  196 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  197 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  198 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  199 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  200 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  201 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  202 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  203 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  204 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  205 + </attributes>
  206 + </connection>
  207 + <connection>
  208 + <name>bus_control_variable</name>
  209 + <server>&#x24;&#x7b;v_db_ip&#x7d;</server>
  210 + <type>MYSQL</type>
  211 + <access>Native</access>
  212 + <database>&#x24;&#x7b;v_db_dname&#x7d;</database>
  213 + <port>3306</port>
  214 + <username>&#x24;&#x7b;v_db_uname&#x7d;</username>
  215 + <password>&#x24;&#x7b;v_db_pwd&#x7d;</password>
  216 + <servername/>
  217 + <data_tablespace/>
  218 + <index_tablespace/>
  219 + <attributes>
  220 + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
  221 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  222 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  223 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  224 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  225 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  226 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  227 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  228 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  229 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  230 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  231 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  232 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  233 + </attributes>
  234 + </connection>
  235 + <connection>
  236 + <name>bus_control_&#x516c;&#x53f8;_201</name>
  237 + <server>localhost</server>
  238 + <type>MYSQL</type>
  239 + <access>Native</access>
  240 + <database>control</database>
  241 + <port>3306</port>
  242 + <username>root</username>
  243 + <password>Encrypted </password>
  244 + <servername/>
  245 + <data_tablespace/>
  246 + <index_tablespace/>
  247 + <attributes>
  248 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  249 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  250 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  251 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  252 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  253 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  254 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  255 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  256 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  257 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  258 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  259 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  260 + </attributes>
  261 + </connection>
  262 + <connection>
  263 + <name>bus_control_&#x672c;&#x673a;</name>
  264 + <server>localhost</server>
  265 + <type>MYSQL</type>
  266 + <access>Native</access>
  267 + <database>control</database>
  268 + <port>3306</port>
  269 + <username>root</username>
  270 + <password>Encrypted </password>
  271 + <servername/>
  272 + <data_tablespace/>
  273 + <index_tablespace/>
  274 + <attributes>
  275 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  276 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  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>3306</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>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  284 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  285 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  286 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  287 + </attributes>
  288 + </connection>
  289 + <connection>
  290 + <name>control_jndi</name>
  291 + <server/>
  292 + <type>MYSQL</type>
  293 + <access>JNDI</access>
  294 + <database>control_jndi</database>
  295 + <port>1521</port>
  296 + <username/>
  297 + <password>Encrypted </password>
  298 + <servername/>
  299 + <data_tablespace/>
  300 + <index_tablespace/>
  301 + <attributes>
  302 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  303 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  304 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  305 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  306 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  307 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  308 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  309 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  310 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  311 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  312 + </attributes>
  313 + </connection>
  314 + <connection>
  315 + <name>JGJW_VM</name>
  316 + <server>192.168.198.240</server>
  317 + <type>ORACLE</type>
  318 + <access>Native</access>
  319 + <database>orcl</database>
  320 + <port>1521</port>
  321 + <username>jwgl</username>
  322 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d485a8d6</password>
  323 + <servername/>
  324 + <data_tablespace/>
  325 + <index_tablespace/>
  326 + <attributes>
  327 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  328 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  329 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  330 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  331 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  332 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  333 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  334 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  335 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  336 + </attributes>
  337 + </connection>
  338 + <connection>
  339 + <name>NHJW_VM</name>
  340 + <server>192.168.198.240</server>
  341 + <type>ORACLE</type>
  342 + <access>Native</access>
  343 + <database>orcl</database>
  344 + <port>1521</port>
  345 + <username>nhjw</username>
  346 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d09aa5cd</password>
  347 + <servername/>
  348 + <data_tablespace/>
  349 + <index_tablespace/>
  350 + <attributes>
  351 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  352 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  353 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  354 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  355 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  356 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  357 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  358 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  359 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  360 + </attributes>
  361 + </connection>
  362 + <connection>
  363 + <name>PDGJ_VM</name>
  364 + <server>192.168.198.240</server>
  365 + <type>ORACLE</type>
  366 + <access>Native</access>
  367 + <database>orcl</database>
  368 + <port>1521</port>
  369 + <username>pdgj</username>
  370 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10ce96a8d0</password>
  371 + <servername/>
  372 + <data_tablespace/>
  373 + <index_tablespace/>
  374 + <attributes>
  375 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  376 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  377 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  378 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  379 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  380 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  381 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  382 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  383 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  384 + </attributes>
  385 + </connection>
  386 + <connection>
  387 + <name>repair_dw_mysql_jndi</name>
  388 + <server/>
  389 + <type>MYSQL</type>
  390 + <access>JNDI</access>
  391 + <database>repair_dw_mysql</database>
  392 + <port>1521</port>
  393 + <username/>
  394 + <password>Encrypted </password>
  395 + <servername/>
  396 + <data_tablespace/>
  397 + <index_tablespace/>
  398 + <attributes>
  399 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  400 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  401 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  402 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  403 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  404 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  405 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  406 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  407 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  408 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  409 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  410 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  411 + </attributes>
  412 + </connection>
  413 + <connection>
  414 + <name>repair_dw&#xff08;&#x672c;&#x673a;&#xff09;</name>
  415 + <server>localhost</server>
  416 + <type>MYSQL</type>
  417 + <access>Native</access>
  418 + <database>ruoyi-vue-3.5</database>
  419 + <port>3306</port>
  420 + <username>root</username>
  421 + <password>Encrypted </password>
  422 + <servername/>
  423 + <data_tablespace/>
  424 + <index_tablespace/>
  425 + <attributes>
  426 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  427 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  428 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  429 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  430 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  431 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  432 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  433 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  434 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  435 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  436 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  437 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  438 + </attributes>
  439 + </connection>
  440 + <connection>
  441 + <name>repair_real_h2</name>
  442 + <server/>
  443 + <type>H2</type>
  444 + <access>JNDI</access>
  445 + <database>repair_real_h2</database>
  446 + <port>1521</port>
  447 + <username/>
  448 + <password>Encrypted </password>
  449 + <servername/>
  450 + <data_tablespace/>
  451 + <index_tablespace/>
  452 + <attributes>
  453 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  454 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  455 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  456 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  457 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  458 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  459 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  460 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  461 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  462 + </attributes>
  463 + </connection>
  464 + <connection>
  465 + <name>SNJW_VM</name>
  466 + <server>192.168.198.240</server>
  467 + <type>ORACLE</type>
  468 + <access>Native</access>
  469 + <database>orcl</database>
  470 + <port>1521</port>
  471 + <username>snjw</username>
  472 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10cd9ca5cd</password>
  473 + <servername/>
  474 + <data_tablespace/>
  475 + <index_tablespace/>
  476 + <attributes>
  477 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  478 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  479 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  480 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  481 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  482 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  483 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  484 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  485 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  486 + </attributes>
  487 + </connection>
  488 + <connection>
  489 + <name>test_control_local</name>
  490 + <server>localhost</server>
  491 + <type>MYSQL</type>
  492 + <access>Native</access>
  493 + <database>test_control</database>
  494 + <port>3306</port>
  495 + <username>root</username>
  496 + <password>Encrypted </password>
  497 + <servername/>
  498 + <data_tablespace/>
  499 + <index_tablespace/>
  500 + <attributes>
  501 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  502 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  503 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  504 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  505 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  506 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  507 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  508 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  509 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  510 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  511 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  512 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  513 + </attributes>
  514 + </connection>
  515 + <connection>
  516 + <name>test_control&#xff08;&#x672c;&#x673a;&#xff09;</name>
  517 + <server>127.0.0.1</server>
  518 + <type>MYSQL</type>
  519 + <access>Native</access>
  520 + <database>test_control</database>
  521 + <port>3306</port>
  522 + <username>root</username>
  523 + <password>Encrypted </password>
  524 + <servername/>
  525 + <data_tablespace/>
  526 + <index_tablespace/>
  527 + <attributes>
  528 + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
  529 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  530 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  531 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  532 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  533 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  534 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  535 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  536 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  537 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  538 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  539 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  540 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  541 + </attributes>
  542 + </connection>
  543 + <connection>
  544 + <name>wzk_mysql_jndi</name>
  545 + <server/>
  546 + <type>MYSQL</type>
  547 + <access>JNDI</access>
  548 + <database>wzk_mysql</database>
  549 + <port>1521</port>
  550 + <username/>
  551 + <password>Encrypted </password>
  552 + <servername/>
  553 + <data_tablespace/>
  554 + <index_tablespace/>
  555 + <attributes>
  556 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  557 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  558 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  559 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  560 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  561 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  562 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  563 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  564 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  565 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  566 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  567 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  568 + </attributes>
  569 + </connection>
  570 + <connection>
  571 + <name>wzk&#xff08;&#x672c;&#x673a;&#xff09;</name>
  572 + <server>localhost</server>
  573 + <type>MYSQL</type>
  574 + <access>Native</access>
  575 + <database>pdgj_wzk_sys</database>
  576 + <port>3306</port>
  577 + <username>root</username>
  578 + <password>Encrypted </password>
  579 + <servername/>
  580 + <data_tablespace/>
  581 + <index_tablespace/>
  582 + <attributes>
  583 + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
  584 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  585 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  586 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  587 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  588 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  589 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  590 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  591 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  592 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  593 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  594 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  595 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  596 + </attributes>
  597 + </connection>
  598 + <connection>
  599 + <name>xlab_mysql_youle</name>
  600 + <server>101.231.124.8</server>
  601 + <type>MYSQL</type>
  602 + <access>Native</access>
  603 + <database>xlab_youle</database>
  604 + <port>45687</port>
  605 + <username>xlab-youle</username>
  606 + <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password>
  607 + <servername/>
  608 + <data_tablespace/>
  609 + <index_tablespace/>
  610 + <attributes>
  611 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  612 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  613 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  614 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  615 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  616 + <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute>
  617 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  618 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  619 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  620 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  621 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  622 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  623 + </attributes>
  624 + </connection>
  625 + <connection>
  626 + <name>xlab_mysql_youle&#xff08;&#x672c;&#x673a;&#xff09;</name>
  627 + <server>localhost</server>
  628 + <type>MYSQL</type>
  629 + <access>Native</access>
  630 + <database>xlab_youle</database>
  631 + <port>3306</port>
  632 + <username>root</username>
  633 + <password>Encrypted </password>
  634 + <servername/>
  635 + <data_tablespace/>
  636 + <index_tablespace/>
  637 + <attributes>
  638 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  639 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  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>3306</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>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  647 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  648 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  649 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  650 + </attributes>
  651 + </connection>
  652 + <connection>
  653 + <name>xlab_youle</name>
  654 + <server/>
  655 + <type>MYSQL</type>
  656 + <access>JNDI</access>
  657 + <database>xlab_youle</database>
  658 + <port>1521</port>
  659 + <username/>
  660 + <password>Encrypted </password>
  661 + <servername/>
  662 + <data_tablespace/>
  663 + <index_tablespace/>
  664 + <attributes>
  665 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  666 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  667 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  668 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  669 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  670 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  671 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  672 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  673 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  674 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  675 + </attributes>
  676 + </connection>
  677 + <connection>
  678 + <name>YGJW_VM</name>
  679 + <server>192.168.198.240</server>
  680 + <type>ORACLE</type>
  681 + <access>Native</access>
  682 + <database>orcl</database>
  683 + <port>1521</port>
  684 + <username>ygjw</username>
  685 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10c795a5cd</password>
  686 + <servername/>
  687 + <data_tablespace/>
  688 + <index_tablespace/>
  689 + <attributes>
  690 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  691 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  692 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  693 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  694 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  695 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  696 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  697 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  698 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  699 + </attributes>
  700 + </connection>
  701 + <connection>
  702 + <name>&#x516c;&#x53f8;jgjw</name>
  703 + <server>192.168.168.1</server>
  704 + <type>ORACLE</type>
  705 + <access>Native</access>
  706 + <database>orcl</database>
  707 + <port>1521</port>
  708 + <username>jwgl</username>
  709 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d485a8d6</password>
  710 + <servername/>
  711 + <data_tablespace/>
  712 + <index_tablespace/>
  713 + <attributes>
  714 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  715 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  716 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  717 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  718 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  719 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  720 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  721 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  722 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  723 + </attributes>
  724 + </connection>
  725 + <connection>
  726 + <name>&#x516c;&#x53f8;snjw</name>
  727 + <server>192.168.168.1</server>
  728 + <type>ORACLE</type>
  729 + <access>Native</access>
  730 + <database>orcl</database>
  731 + <port>1521</port>
  732 + <username>snjw</username>
  733 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10cd9ca5cd</password>
  734 + <servername/>
  735 + <data_tablespace/>
  736 + <index_tablespace/>
  737 + <attributes>
  738 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  739 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  740 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  741 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  742 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  743 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  744 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  745 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  746 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  747 + </attributes>
  748 + </connection>
  749 + <connection>
  750 + <name>&#x516c;&#x53f8;ygjw</name>
  751 + <server>192.168.168.178</server>
  752 + <type>ORACLE</type>
  753 + <access>Native</access>
  754 + <database>orcl</database>
  755 + <port>1521</port>
  756 + <username>ygjw</username>
  757 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10c795a5cd</password>
  758 + <servername/>
  759 + <data_tablespace/>
  760 + <index_tablespace/>
  761 + <attributes>
  762 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  763 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  764 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  765 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  766 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  767 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  768 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  769 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  770 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  771 + </attributes>
  772 + </connection>
  773 + <connection>
  774 + <name>&#x516c;&#x53f8;&#x673a;&#x52a1;_pdgj</name>
  775 + <server>192.168.168.178</server>
  776 + <type>ORACLE</type>
  777 + <access>Native</access>
  778 + <database>orcl</database>
  779 + <port>1521</port>
  780 + <username>pdgj</username>
  781 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10ce96a8d0</password>
  782 + <servername/>
  783 + <data_tablespace/>
  784 + <index_tablespace/>
  785 + <attributes>
  786 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  787 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  788 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  789 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  790 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  791 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  792 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  793 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  794 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  795 + </attributes>
  796 + </connection>
  797 + <connection>
  798 + <name>&#x5916;&#x7f51;vpn&#x4e34;&#x6e2f;&#x673a;&#x52a1;oracle</name>
  799 + <server>10.10.150.114</server>
  800 + <type>ORACLE</type>
  801 + <access>Native</access>
  802 + <database>helowin</database>
  803 + <port>1521</port>
  804 + <username>lgjw</username>
  805 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d295a5cd</password>
  806 + <servername/>
  807 + <data_tablespace/>
  808 + <index_tablespace/>
  809 + <attributes>
  810 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  811 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  812 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  813 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  814 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  815 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  816 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  817 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  818 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  819 + </attributes>
  820 + </connection>
  821 + <connection>
  822 + <name>&#x5916;&#x7f51;&#x5357;&#x6c47;&#x673a;&#x52a1;oracle</name>
  823 + <server>58.247.254.118</server>
  824 + <type>ORACLE</type>
  825 + <access>Native</access>
  826 + <database>orcl</database>
  827 + <port>15211</port>
  828 + <username>nhjw</username>
  829 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d09aa5cd</password>
  830 + <servername/>
  831 + <data_tablespace/>
  832 + <index_tablespace/>
  833 + <attributes>
  834 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  835 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  836 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  837 + <attribute><code>PORT_NUMBER</code><attribute>15211</attribute></attribute>
  838 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  839 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  840 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  841 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  842 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  843 + </attributes>
  844 + </connection>
  845 + <connection>
  846 + <name>&#x5916;&#x7f51;&#x6768;&#x9ad8;&#x673a;&#x52a1;oracle</name>
  847 + <server>58.247.254.118</server>
  848 + <type>ORACLE</type>
  849 + <access>Native</access>
  850 + <database>orcl</database>
  851 + <port>15211</port>
  852 + <username>ygjw</username>
  853 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10c795a5cd</password>
  854 + <servername/>
  855 + <data_tablespace/>
  856 + <index_tablespace/>
  857 + <attributes>
  858 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  859 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  860 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  861 + <attribute><code>PORT_NUMBER</code><attribute>15211</attribute></attribute>
  862 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  863 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  864 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  865 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  866 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  867 + </attributes>
  868 + </connection>
  869 + <connection>
  870 + <name>&#x5916;&#x7f51;&#x91d1;&#x9ad8;&#x673a;&#x52a1;oracle</name>
  871 + <server>58.247.254.118</server>
  872 + <type>ORACLE</type>
  873 + <access>Native</access>
  874 + <database>orcl</database>
  875 + <port>15211</port>
  876 + <username>jwgl</username>
  877 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d485a8d6</password>
  878 + <servername/>
  879 + <data_tablespace/>
  880 + <index_tablespace/>
  881 + <attributes>
  882 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  883 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  884 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  885 + <attribute><code>PORT_NUMBER</code><attribute>15211</attribute></attribute>
  886 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  887 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  888 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  889 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  890 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  891 + </attributes>
  892 + </connection>
  893 + <order>
  894 + <hop> <from>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</from><to>&#x73ed;&#x6b21;&#x6570;&#x636e;&#x8303;&#x5f0f;&#x5316;</to><enabled>Y</enabled> </hop>
  895 + <hop> <from>&#x6dfb;&#x52a0;&#x53d1;&#x8f66;&#x987a;&#x5e8f;&#x53f7;</from><to>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;&#xff08;&#x53d1;&#x8f66;&#x65f6;&#x95f4;&#x4e3a;&#x7a7a;&#xff09;</to><enabled>Y</enabled> </hop>
  896 + <hop> <from>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;&#xff08;&#x53d1;&#x8f66;&#x65f6;&#x95f4;&#x4e3a;&#x7a7a;&#xff09;</from><to>&#x6dfb;&#x52a0;&#x5bf9;&#x5e94;&#x73ed;&#x6b21;&#x6570;</to><enabled>Y</enabled> </hop>
  897 + <hop> <from>&#x6dfb;&#x52a0;&#x5bf9;&#x5e94;&#x73ed;&#x6b21;&#x6570;</from><to>&#x5904;&#x7406;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
  898 + <hop> <from>&#x5904;&#x7406;&#x6570;&#x636e;</from><to>&#x5206;&#x7ec4;&#x5404;&#x4e2a;&#x8def;&#x724c;&#x7684;&#x7ad9;</to><enabled>Y</enabled> </hop>
  899 + <hop> <from>&#x67e5;&#x627e;&#x65f6;&#x523b;&#x8868;&#x57fa;&#x7840;&#x4fe1;&#x606f;&#x5173;&#x8054;</from><to>&#x67e5;&#x627e;&#x8def;&#x724c;&#x5173;&#x8054;</to><enabled>Y</enabled> </hop>
  900 + <hop> <from>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x5173;&#x8054;</from><to>&#x67e5;&#x627e;&#x65f6;&#x523b;&#x8868;&#x57fa;&#x7840;&#x4fe1;&#x606f;&#x5173;&#x8054;</to><enabled>Y</enabled> </hop>
  901 + <hop> <from>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178;</from><to>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178;</to><enabled>Y</enabled> </hop>
  902 + <hop> <from>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 2</from><to>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 2</to><enabled>Y</enabled> </hop>
  903 + <hop> <from>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 3</from><to>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 3</to><enabled>Y</enabled> </hop>
  904 + <hop> <from>&#x5339;&#x914d;&#x4e0a;&#x4e0b;&#x884c;&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</from><to>&#x7c7b;&#x578b;&#x4fee;&#x6b63;</to><enabled>Y</enabled> </hop>
  905 + <hop> <from>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;1</from><to>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</to><enabled>Y</enabled> </hop>
  906 + <hop> <from>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;1</from><to>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
  907 + <hop> <from>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</from><to>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
  908 + <hop> <from>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</from><to>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
  909 + <hop> <from>&#x67e5;&#x627e;&#x6240;&#x6709;&#x7ebf;&#x8def;&#x4e0a;&#x4e0b;&#x884c;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</from><to>&#x5339;&#x914d;&#x4e0a;&#x4e0b;&#x884c;&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>
  910 + <hop> <from>&#x67e5;&#x627e;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;</from><to>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178;</to><enabled>Y</enabled> </hop>
  911 + <hop> <from>&#x67e5;&#x627e;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</from><to>&#x67e5;&#x627e;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;</to><enabled>Y</enabled> </hop>
  912 + <hop> <from>&#x6b63;&#x5e38;&#x73ed;&#x6b21;_&#x5904;&#x7406;&#x6570;&#x636e;</from><to>&#x67e5;&#x627e;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</to><enabled>Y</enabled> </hop>
  913 + <hop> <from>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</from><to>&#x6b63;&#x5e38;&#x73ed;&#x6b21;_&#x5904;&#x7406;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
  914 + <hop> <from>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178;</from><to>&#x67e5;&#x627e;&#x6240;&#x6709;&#x7ebf;&#x8def;&#x4e0a;&#x4e0b;&#x884c;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>
  915 + <hop> <from>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 2</from><to>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x51fa;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>
  916 + <hop> <from>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 3</from><to>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x8fdb;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>
  917 + <hop> <from>&#x8ba1;&#x7b97;&#x73ed;&#x6b21;&#x7c7b;&#x578b;</from><to>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;1</to><enabled>Y</enabled> </hop>
  918 + <hop> <from>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</from><to>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;1</to><enabled>Y</enabled> </hop>
  919 + <hop> <from>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;1</from><to>&#x51fa;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x7ec8;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</to><enabled>Y</enabled> </hop>
  920 + <hop> <from>&#x51fa;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x7ec8;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</from><to>&#x67e5;&#x627e;&#x51fa;&#x573a;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</to><enabled>Y</enabled> </hop>
  921 + <hop> <from>&#x67e5;&#x627e;&#x51fa;&#x573a;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</from><to>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 2</to><enabled>Y</enabled> </hop>
  922 + <hop> <from>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</from><to>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;2</to><enabled>Y</enabled> </hop>
  923 + <hop> <from>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;2</from><to>&#x8fdb;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x8d77;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</to><enabled>Y</enabled> </hop>
  924 + <hop> <from>&#x8fdb;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x8d77;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</from><to>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ebf;&#x8def;&#x65b9;&#x5411;</to><enabled>Y</enabled> </hop>
  925 + <hop> <from>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ebf;&#x8def;&#x65b9;&#x5411;</from><to>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ec8;&#x70b9;&#x7ad9;&#xff0c;&#x5e76;&#x4f5c;&#x4e3a;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x7684;&#x8d77;&#x70b9;&#x7ad9;</to><enabled>Y</enabled> </hop>
  926 + <hop> <from>&#x5206;&#x7ec4;&#x5404;&#x4e2a;&#x8def;&#x724c;&#x7684;&#x7ad9;</from><to>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x5173;&#x8054;</to><enabled>Y</enabled> </hop>
  927 + <hop> <from>&#x589e;&#x52a0;&#x65f6;&#x523b;&#x8868;&#x540d;&#x5b57;&#xff0c;&#x7ebf;&#x8def;&#x540d;&#x5b57;&#xff0c;&#x505c;&#x8f66;&#x573a;&#x540d;&#x5b57;</from><to>&#x8bb0;&#x5f55;&#x5173;&#x8054; &#x28;&#x7b1b;&#x5361;&#x5c14;&#x8f93;&#x51fa;&#x29;</to><enabled>Y</enabled> </hop>
  928 + <hop> <from>&#x73ed;&#x6b21;&#x6570;&#x636e;&#x8303;&#x5f0f;&#x5316;</from><to>&#x8bb0;&#x5f55;&#x5173;&#x8054; &#x28;&#x7b1b;&#x5361;&#x5c14;&#x8f93;&#x51fa;&#x29;</to><enabled>Y</enabled> </hop>
  929 + <hop> <from>&#x8bb0;&#x5f55;&#x5173;&#x8054; &#x28;&#x7b1b;&#x5361;&#x5c14;&#x8f93;&#x51fa;&#x29;</from><to>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</to><enabled>Y</enabled> </hop>
  930 + <hop> <from>&#x7c7b;&#x578b;&#x4fee;&#x6b63;</from><to>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail</to><enabled>Y</enabled> </hop>
  931 + <hop> <from>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ec8;&#x70b9;&#x7ad9;&#xff0c;&#x5e76;&#x4f5c;&#x4e3a;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x7684;&#x8d77;&#x70b9;&#x7ad9;</from><to>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</to><enabled>Y</enabled> </hop>
  932 + <hop> <from>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</from><to>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 3</to><enabled>Y</enabled> </hop>
  933 + <hop> <from>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x51fa;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</from><to>&#x5339;&#x914d;&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>
  934 + <hop> <from>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x8fdb;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</from><to>&#x5339;&#x914d;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>
  935 + <hop> <from>&#x5339;&#x914d;&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</from><to>&#x4e0a;&#x4e0b;&#x884c;NULL&#x5224;&#x5b9a;</to><enabled>Y</enabled> </hop>
  936 + <hop> <from>&#x4e0a;&#x4e0b;&#x884c;NULL&#x5224;&#x5b9a;</from><to>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 2</to><enabled>Y</enabled> </hop>
  937 + <hop> <from>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 2</from><to>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail 2</to><enabled>Y</enabled> </hop>
  938 + <hop> <from>&#x5339;&#x914d;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</from><to>&#x4e0a;&#x4e0b;&#x884c;&#x5224;&#x5b9a; 2</to><enabled>Y</enabled> </hop>
  939 + <hop> <from>&#x4e0a;&#x4e0b;&#x884c;&#x5224;&#x5b9a; 2</from><to>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 3</to><enabled>Y</enabled> </hop>
  940 + <hop> <from>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 3</from><to>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail 3</to><enabled>Y</enabled> </hop>
  941 + <hop> <from>&#x67e5;&#x627e;&#x8def;&#x724c;&#x5173;&#x8054;</from><to>&#x7ad9;&#x70b9;&#x8def;&#x7531;&#x7248;&#x672c;&#x7c7b;&#x578b;</to><enabled>Y</enabled> </hop>
  942 + <hop> <from>&#x7ad9;&#x70b9;&#x8def;&#x7531;&#x7248;&#x672c;&#x7c7b;&#x578b;</from><to>&#x8ba1;&#x7b97;&#x73ed;&#x6b21;&#x7c7b;&#x578b;</to><enabled>Y</enabled> </hop>
  943 + <hop> <from>&#x7ad9;&#x70b9;&#x8def;&#x7531;&#x7248;&#x672c;&#x7c7b;&#x578b;</from><to>&#x66f4;&#x65b0;&#x65f6;&#x523b;&#x8868;&#x4e3b;&#x8868;&#x7248;&#x672c;</to><enabled>Y</enabled> </hop>
  944 + <hop> <from>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</from><to>&#x62c6;&#x5206;&#x8def;&#x724c;&#x548c;&#x5de5;&#x65f6;</to><enabled>Y</enabled> </hop>
  945 + <hop> <from>&#x62c6;&#x5206;&#x8def;&#x724c;&#x548c;&#x5de5;&#x65f6;</from><to>&#x6dfb;&#x52a0;&#x53d1;&#x8f66;&#x987a;&#x5e8f;&#x53f7;</to><enabled>Y</enabled> </hop>
  946 + <hop> <from>&#x7ad9;&#x70b9;&#x8def;&#x7531;&#x7248;&#x672c;&#x7c7b;&#x578b;</from><to>&#x73ed;&#x578b;&#x8868;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
  947 + <hop> <from>&#x73ed;&#x578b;&#x8868;&#x6570;&#x636e;</from><to>&#x63d2;&#x5165; &#x2f; &#x66f4;&#x65b0; &#x73ed;&#x578b;&#x8868;&#xff08;&#x5de5;&#x65f6;&#x6570;&#x636e;&#xff09;</to><enabled>Y</enabled> </hop>
  948 + </order>
  949 + <step>
  950 + <name>&#x4e0a;&#x4e0b;&#x884c;NULL&#x5224;&#x5b9a;</name>
  951 + <type>IfNull</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 + <replaceAllByValue/>
  961 + <replaceAllMask/>
  962 + <selectFields>Y</selectFields>
  963 + <selectValuesType>N</selectValuesType>
  964 + <setEmptyStringAll>N</setEmptyStringAll>
  965 + <valuetypes>
  966 + </valuetypes>
  967 + <fields>
  968 + <field>
  969 + <name>sxx</name>
  970 + <value>0</value>
  971 + <mask/>
  972 + <set_empty_string>N</set_empty_string>
  973 + </field>
  974 + </fields>
  975 + <cluster_schema/>
  976 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  977 + <xloc>335</xloc>
  978 + <yloc>938</yloc>
  979 + <draw>Y</draw>
  980 + </GUI>
  981 + </step>
  982 +
  983 + <step>
  984 + <name>&#x4e0a;&#x4e0b;&#x884c;&#x5224;&#x5b9a; 2</name>
  985 + <type>IfNull</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 + <replaceAllByValue/>
  995 + <replaceAllMask/>
  996 + <selectFields>Y</selectFields>
  997 + <selectValuesType>N</selectValuesType>
  998 + <setEmptyStringAll>N</setEmptyStringAll>
  999 + <valuetypes>
  1000 + </valuetypes>
  1001 + <fields>
  1002 + <field>
  1003 + <name>sxx2</name>
  1004 + <value>0</value>
  1005 + <mask/>
  1006 + <set_empty_string>N</set_empty_string>
  1007 + </field>
  1008 + </fields>
  1009 + <cluster_schema/>
  1010 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1011 + <xloc>804</xloc>
  1012 + <yloc>1081</yloc>
  1013 + <draw>Y</draw>
  1014 + </GUI>
  1015 + </step>
  1016 +
  1017 + <step>
  1018 + <name>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178;</name>
  1019 + <type>ValueMapper</type>
  1020 + <description/>
  1021 + <distribute>Y</distribute>
  1022 + <custom_distribution/>
  1023 + <copies>1</copies>
  1024 + <partitioning>
  1025 + <method>none</method>
  1026 + <schema_name/>
  1027 + </partitioning>
  1028 + <field_to_use>sxx</field_to_use>
  1029 + <target_field>sxx_desc</target_field>
  1030 + <non_match_default/>
  1031 + <fields>
  1032 + <field>
  1033 + <source_value>0</source_value>
  1034 + <target_value>&#x4e0a;&#x884c;</target_value>
  1035 + </field>
  1036 + <field>
  1037 + <source_value>1</source_value>
  1038 + <target_value>&#x4e0b;&#x884c;</target_value>
  1039 + </field>
  1040 + </fields>
  1041 + <cluster_schema/>
  1042 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1043 + <xloc>147</xloc>
  1044 + <yloc>403</yloc>
  1045 + <draw>Y</draw>
  1046 + </GUI>
  1047 + </step>
  1048 +
  1049 + <step>
  1050 + <name>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 2</name>
  1051 + <type>ValueMapper</type>
  1052 + <description/>
  1053 + <distribute>Y</distribute>
  1054 + <custom_distribution/>
  1055 + <copies>1</copies>
  1056 + <partitioning>
  1057 + <method>none</method>
  1058 + <schema_name/>
  1059 + </partitioning>
  1060 + <field_to_use>sxx</field_to_use>
  1061 + <target_field>sxx_desc</target_field>
  1062 + <non_match_default/>
  1063 + <fields>
  1064 + <field>
  1065 + <source_value>0</source_value>
  1066 + <target_value>&#x4e0a;&#x884c;</target_value>
  1067 + </field>
  1068 + <field>
  1069 + <source_value>1</source_value>
  1070 + <target_value>&#x4e0b;&#x884c;</target_value>
  1071 + </field>
  1072 + </fields>
  1073 + <cluster_schema/>
  1074 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1075 + <xloc>331</xloc>
  1076 + <yloc>598</yloc>
  1077 + <draw>Y</draw>
  1078 + </GUI>
  1079 + </step>
  1080 +
  1081 + <step>
  1082 + <name>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 3</name>
  1083 + <type>ValueMapper</type>
  1084 + <description/>
  1085 + <distribute>Y</distribute>
  1086 + <custom_distribution/>
  1087 + <copies>1</copies>
  1088 + <partitioning>
  1089 + <method>none</method>
  1090 + <schema_name/>
  1091 + </partitioning>
  1092 + <field_to_use>sxx</field_to_use>
  1093 + <target_field>sxx_desc</target_field>
  1094 + <non_match_default/>
  1095 + <fields>
  1096 + <field>
  1097 + <source_value>0</source_value>
  1098 + <target_value>&#x4e0a;&#x884c;</target_value>
  1099 + </field>
  1100 + <field>
  1101 + <source_value>1</source_value>
  1102 + <target_value>&#x4e0b;&#x884c;</target_value>
  1103 + </field>
  1104 + </fields>
  1105 + <cluster_schema/>
  1106 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1107 + <xloc>553</xloc>
  1108 + <yloc>859</yloc>
  1109 + <draw>Y</draw>
  1110 + </GUI>
  1111 + </step>
  1112 +
  1113 + <step>
  1114 + <name>&#x51fa;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x7ec8;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</name>
  1115 + <type>ScriptValueMod</type>
  1116 + <description/>
  1117 + <distribute>Y</distribute>
  1118 + <custom_distribution/>
  1119 + <copies>1</copies>
  1120 + <partitioning>
  1121 + <method>none</method>
  1122 + <schema_name/>
  1123 + </partitioning>
  1124 + <compatible>N</compatible>
  1125 + <optimizationLevel>9</optimizationLevel>
  1126 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  1127 + <jsScript_name>Script 1</jsScript_name>
  1128 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;&#x2f;&#x2f; &#x6dfb;&#x52a0;&#x7ad9;&#x70b9;&#x6807;&#x8bc6;&#xa;var cc_groups &#x3d; qdzgroups.split&#x28;&#x22;,&#x22;&#x29;&#x3b; &#x2f;&#x2f; &#x6240;&#x6709;&#x73ed;&#x6b21;&#x8d77;&#x70b9;&#x7ad9;&#x6570;&#x7ec4;&#xa;var zdzname &#x3d; cc_groups&#x5b;gno&#x5d;&#x3b; &#x2f;&#x2f; &#x51fa;&#x573a;&#x73ed;&#x6b21;&#x7684;&#x7ec8;&#x70b9;&#x7ad9;&#x662f;&#x4e0b;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x8d77;&#x59cb;&#x7ad9;&#xa;var endZdtype &#x3d; &#x27;B&#x27;&#x3b;&#xa;&#x2f;&#x2f; var endZdtype &#x3d; &#x27;E&#x27;&#x3b;&#xa;&#xa;var destory &#x3d; 0&#x3b; &#x2f;&#x2f; &#x672a;&#x64a4;&#x9500;flag</jsScript_script>
  1129 + </jsScript> </jsScripts> <fields> <field> <name>zdzname</name>
  1130 + <rename>zdzname</rename>
  1131 + <type>String</type>
  1132 + <length>-1</length>
  1133 + <precision>-1</precision>
  1134 + <replace>N</replace>
  1135 + </field> <field> <name>endZdtype</name>
  1136 + <rename>endZdtype</rename>
  1137 + <type>String</type>
  1138 + <length>-1</length>
  1139 + <precision>-1</precision>
  1140 + <replace>N</replace>
  1141 + </field> <field> <name>destory</name>
  1142 + <rename>destory</rename>
  1143 + <type>Integer</type>
  1144 + <length>-1</length>
  1145 + <precision>-1</precision>
  1146 + <replace>N</replace>
  1147 + </field> </fields> <cluster_schema/>
  1148 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1149 + <xloc>575</xloc>
  1150 + <yloc>502</yloc>
  1151 + <draw>Y</draw>
  1152 + </GUI>
  1153 + </step>
  1154 +
  1155 + <step>
  1156 + <name>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</name>
  1157 + <type>Dummy</type>
  1158 + <description/>
  1159 + <distribute>Y</distribute>
  1160 + <custom_distribution/>
  1161 + <copies>1</copies>
  1162 + <partitioning>
  1163 + <method>none</method>
  1164 + <schema_name/>
  1165 + </partitioning>
  1166 + <cluster_schema/>
  1167 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1168 + <xloc>869</xloc>
  1169 + <yloc>504</yloc>
  1170 + <draw>Y</draw>
  1171 + </GUI>
  1172 + </step>
  1173 +
  1174 + <step>
  1175 + <name>&#x5206;&#x7ec4;&#x5404;&#x4e2a;&#x8def;&#x724c;&#x7684;&#x7ad9;</name>
  1176 + <type>GroupBy</type>
  1177 + <description/>
  1178 + <distribute>Y</distribute>
  1179 + <custom_distribution/>
  1180 + <copies>1</copies>
  1181 + <partitioning>
  1182 + <method>none</method>
  1183 + <schema_name/>
  1184 + </partitioning>
  1185 + <all_rows>Y</all_rows>
  1186 + <ignore_aggregate>N</ignore_aggregate>
  1187 + <field_ignore/>
  1188 + <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
  1189 + <prefix>grp</prefix>
  1190 + <add_linenr>Y</add_linenr>
  1191 + <linenr_fieldname>gno</linenr_fieldname>
  1192 + <give_back_row>N</give_back_row>
  1193 + <group>
  1194 + <field>
  1195 + <name>lp</name>
  1196 + </field>
  1197 + </group>
  1198 + <fields>
  1199 + <field>
  1200 + <aggregate>qdzgroups</aggregate>
  1201 + <subject>qdzname</subject>
  1202 + <type>CONCAT_STRING</type>
  1203 + <valuefield>,</valuefield>
  1204 + </field>
  1205 + </fields>
  1206 + <cluster_schema/>
  1207 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1208 + <xloc>892</xloc>
  1209 + <yloc>44</yloc>
  1210 + <draw>Y</draw>
  1211 + </GUI>
  1212 + </step>
  1213 +
  1214 + <step>
  1215 + <name>&#x5339;&#x914d;&#x4e0a;&#x4e0b;&#x884c;&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
  1216 + <type>ScriptValueMod</type>
  1217 + <description/>
  1218 + <distribute>Y</distribute>
  1219 + <custom_distribution/>
  1220 + <copies>1</copies>
  1221 + <partitioning>
  1222 + <method>none</method>
  1223 + <schema_name/>
  1224 + </partitioning>
  1225 + <compatible>N</compatible>
  1226 + <optimizationLevel>9</optimizationLevel>
  1227 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  1228 + <jsScript_name>Script 1</jsScript_name>
  1229 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var jhlc&#x3b; &#x2f;&#x2f; &#x8ba1;&#x5212;&#x91cc;&#x7a0b;&#xa;var bcsj&#x3b; &#x2f;&#x2f; &#x73ed;&#x6b21;&#x65f6;&#x95f4;&#xa;&#xa;&#x2f;&#x2f; &#x65f6;&#x95f4;&#x8303;&#x56f4;&#x6b63;&#x5219;&#x8868;&#x8fbe;&#x5f0f;&#xa;var timeRex &#x3d; &#x2f;&#x5e;&#x28;&#x5b;01&#x5d;&#x3f;&#x5b;0-9&#x5d;&#x7c;2&#x5b;0-3&#x5d;&#x29;&#x3a;&#x5b;0-5&#x5d;&#x5b;0-9&#x5d;&#x24;&#x2f;&#x3b;&#xa;&#x2f;&#x2f; &#x53d1;&#x8f66;&#x65f6;&#x95f4;&#x8f6c;&#x6362;&#x6210;&#x65e5;&#x671f;&#xa;var fcsj_hour &#x3d; str2num&#x28;sendtime_calcu.substr&#x28;0, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa;var fcsj_min &#x3d; str2num&#x28;sendtime_calcu.substr&#x28;3, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa;var fcsj_date &#x3d; new Date&#x28;2000,1,1,fcsj_hour,fcsj_min,0&#x29;&#x3b;&#xa;&#xa;&#x2f;&#x2f; &#x5224;&#x5b9a;&#x662f;&#x5426;&#x65e9;&#x9ad8;&#x5cf0;&#xa;var isZgf &#x3d; false&#x3b;&#xa;if &#x28;timeRex.test&#x28;early_start_time&#x29; &#x26;&#x26; timeRex.test&#x28;early_end_time&#x29; &#x26;&#x26; early_up_time &#x21;&#x3d; null &#x26;&#x26; early_down_time &#x21;&#x3d; null&#x29; &#x7b;&#xa; var early_s_hour &#x3d; str2num&#x28;early_start_time.substr&#x28;0, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var early_s_min &#x3d; str2num&#x28;early_start_time.substr&#x28;3, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var early_s_date &#x3d; new Date&#x28;2000,1,1,early_s_hour,early_s_min,0&#x29;&#x3b;&#xa;&#xa; var early_e_hour &#x3d; str2num&#x28;early_end_time.substr&#x28;0, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var early_e_min &#x3d; str2num&#x28;early_end_time.substr&#x28;3, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var early_e_date &#x3d; new Date&#x28;2000,1,1,early_e_hour,early_e_min,0&#x29;&#x3b;&#xa;&#xa; if &#x28;fcsj_date &#x3e;&#x3d; early_s_date &#x26;&#x26; fcsj_date &#x3c;&#x3d; early_e_date&#x29; &#x7b;&#xa; isZgf &#x3d; true&#x3b;&#xa; &#x7d;&#xa;&#x7d;&#xa;&#xa;&#x2f;&#x2f; &#x5224;&#x5b9a;&#x662f;&#x5426;&#x665a;&#x9ad8;&#x5cf0;&#xa;var isWgf &#x3d; false&#x3b;&#xa;if &#x28;timeRex.test&#x28;late_start_time&#x29; &#x26;&#x26; timeRex.test&#x28;late_end_time&#x29; &#x26;&#x26; late_up_time &#x21;&#x3d; null &#x26;&#x26; late_down_time &#x21;&#x3d; null&#x29; &#x7b;&#xa; var late_s_hour &#x3d; str2num&#x28;late_start_time.substr&#x28;0, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var late_s_min &#x3d; str2num&#x28;late_start_time.substr&#x28;3, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var late_s_date &#x3d; new Date&#x28;2000,1,1,late_s_hour,late_s_min,0&#x29;&#x3b;&#xa;&#xa; var late_e_hour &#x3d; str2num&#x28;late_end_time.substr&#x28;0, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var late_e_min &#x3d; str2num&#x28;late_end_time.substr&#x28;3, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var late_e_date &#x3d; new Date&#x28;2000,1,1,late_e_hour,late_e_min,0&#x29;&#x3b;&#xa;&#xa; if &#x28;fcsj_date &#x3e;&#x3d; late_s_date &#x26;&#x26; fcsj_date &#x3c;&#x3d; late_e_date&#x29; &#x7b;&#xa; isWgf &#x3d; true&#x3b;&#xa; &#x7d;&#xa;&#x7d;&#xa;&#xa;&#x2f;&#x2f; &#x5224;&#x5b9a;&#x662f;&#x5426;&#x665a;&#x9ad8;&#x5cf0;&#xa;&#xa;if &#x28;sxx &#x3d;&#x3d; 0&#x29; &#x7b; &#x2f;&#x2f; &#x4e0a;&#x884c;&#xa; if &#x28;isZgf&#x29; &#x7b;&#xa; jhlc &#x3d; up_mileage&#x3b;&#xa; bcsj &#x3d; early_up_time &#x21;&#x3d; 0 &#x3f; early_up_time &#x3a; up_travel_time&#x3b;&#xa; &#x7d; else if &#x28;isWgf&#x29; &#x7b;&#xa; jhlc &#x3d; up_mileage&#x3b;&#xa; bcsj &#x3d; late_up_time &#x21;&#x3d; 0 &#x3f; late_up_time &#x3a; up_travel_time&#x3b;&#xa; &#x7d; else &#x7b;&#xa; jhlc &#x3d; up_mileage&#x3b;&#xa; bcsj &#x3d; up_travel_time&#x3b;&#xa; &#x7d;&#xa;&#x7d; else &#x7b; &#x2f;&#x2f; sxx &#x3d;&#x3d; 1 &#x4e0b;&#x884c;&#xa; if &#x28;isZgf&#x29; &#x7b;&#xa; jhlc &#x3d; down_mileage&#x3b;&#xa; bcsj &#x3d; early_down_time &#x21;&#x3d; 0 &#x3f; early_down_time &#x3a; down_travel_time&#x3b;&#xa; &#x7d; else if &#x28;isWgf&#x29; &#x7b;&#xa; jhlc &#x3d; down_mileage&#x3b;&#xa; bcsj &#x3d; late_down_time &#x21;&#x3d; 0 &#x3f; late_down_time &#x3a; down_travel_time&#x3b;&#xa; &#x7d; else &#x7b;&#xa; jhlc &#x3d; down_mileage&#x3b;&#xa; bcsj &#x3d; down_travel_time&#x3b;&#xa; &#x7d;&#xa;&#x7d;</jsScript_script>
  1230 + </jsScript> </jsScripts> <fields> <field> <name>jhlc</name>
  1231 + <rename>jhlc</rename>
  1232 + <type>String</type>
  1233 + <length>-1</length>
  1234 + <precision>-1</precision>
  1235 + <replace>N</replace>
  1236 + </field> <field> <name>bcsj</name>
  1237 + <rename>bcsj</rename>
  1238 + <type>String</type>
  1239 + <length>-1</length>
  1240 + <precision>-1</precision>
  1241 + <replace>N</replace>
  1242 + </field> </fields> <cluster_schema/>
  1243 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1244 + <xloc>148</xloc>
  1245 + <yloc>674</yloc>
  1246 + <draw>Y</draw>
  1247 + </GUI>
  1248 + </step>
  1249 +
  1250 + <step>
  1251 + <name>&#x5339;&#x914d;&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
  1252 + <type>ScriptValueMod</type>
  1253 + <description/>
  1254 + <distribute>Y</distribute>
  1255 + <custom_distribution/>
  1256 + <copies>1</copies>
  1257 + <partitioning>
  1258 + <method>none</method>
  1259 + <schema_name/>
  1260 + </partitioning>
  1261 + <compatible>N</compatible>
  1262 + <optimizationLevel>9</optimizationLevel>
  1263 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  1264 + <jsScript_name>Script 1</jsScript_name>
  1265 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var out_mileage&#x3b; &#x2f;&#x2f; &#x51fa;&#x573a;&#x8ba1;&#x5212;&#x91cc;&#x7a0b;&#xa;var out_time&#x3b; &#x2f;&#x2f; &#x51fa;&#x573a;&#x8ba1;&#x5212;&#x65f6;&#x95f4;&#xa;&#xa;if &#x28;sxx &#x3d;&#x3d; 0&#x29; &#x7b; &#x2f;&#x2f; &#x4e0a;&#x884c;&#xa; out_mileage &#x3d; up_out_mileage&#x3b;&#xa; out_time &#x3d; up_out_timer&#x3b;&#xa;&#x7d; else &#x7b; &#x2f;&#x2f; sxx &#x3d;&#x3d; 1 &#x4e0b;&#x884c;&#xa; out_mileage &#x3d; down_out_mileage&#x3b;&#xa; out_time &#x3d; down_out_timer&#x3b;&#xa;&#x7d;&#xa;&#xa;&#xa;&#xa;</jsScript_script>
  1266 + </jsScript> </jsScripts> <fields> <field> <name>out_mileage</name>
  1267 + <rename>out_mileage</rename>
  1268 + <type>String</type>
  1269 + <length>-1</length>
  1270 + <precision>-1</precision>
  1271 + <replace>N</replace>
  1272 + </field> <field> <name>out_time</name>
  1273 + <rename>out_time</rename>
  1274 + <type>String</type>
  1275 + <length>-1</length>
  1276 + <precision>-1</precision>
  1277 + <replace>N</replace>
  1278 + </field> </fields> <cluster_schema/>
  1279 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1280 + <xloc>336</xloc>
  1281 + <yloc>862</yloc>
  1282 + <draw>Y</draw>
  1283 + </GUI>
  1284 + </step>
  1285 +
  1286 + <step>
  1287 + <name>&#x5339;&#x914d;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
  1288 + <type>ScriptValueMod</type>
  1289 + <description/>
  1290 + <distribute>Y</distribute>
  1291 + <custom_distribution/>
  1292 + <copies>1</copies>
  1293 + <partitioning>
  1294 + <method>none</method>
  1295 + <schema_name/>
  1296 + </partitioning>
  1297 + <compatible>N</compatible>
  1298 + <optimizationLevel>9</optimizationLevel>
  1299 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  1300 + <jsScript_name>Script 1</jsScript_name>
  1301 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var parade_mileage&#x3b; &#x2f;&#x2f; &#x8fdb;&#x573a;&#x8ba1;&#x5212;&#x91cc;&#x7a0b;&#xa;var parade_time&#x3b; &#x2f;&#x2f; &#x8fdb;&#x573a;&#x8ba1;&#x5212;&#x65f6;&#x95f4;&#xa;&#xa;if &#x28;sxx2 &#x3d;&#x3d; 0&#x29; &#x7b; &#x2f;&#x2f; &#x4e0a;&#x884c;&#xa; parade_mileage &#x3d; up_in_mileage&#x3b;&#xa; parade_time &#x3d; up_in_timer&#x3b;&#xa;&#x7d; else &#x7b; &#x2f;&#x2f; sxx &#x3d;&#x3d; 1 &#x4e0b;&#x884c;&#xa; parade_mileage &#x3d; down_in_mileage&#x3b;&#xa; parade_time &#x3d; down_in_timer&#x3b;&#xa;&#x7d;&#xa;&#xa;&#xa;&#xa;</jsScript_script>
  1302 + </jsScript> </jsScripts> <fields> <field> <name>parade_mileage</name>
  1303 + <rename>parade_mileage</rename>
  1304 + <type>String</type>
  1305 + <length>-1</length>
  1306 + <precision>-1</precision>
  1307 + <replace>N</replace>
  1308 + </field> <field> <name>parade_time</name>
  1309 + <rename>parade_time</rename>
  1310 + <type>String</type>
  1311 + <length>-1</length>
  1312 + <precision>-1</precision>
  1313 + <replace>N</replace>
  1314 + </field> </fields> <cluster_schema/>
  1315 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1316 + <xloc>726</xloc>
  1317 + <yloc>1005</yloc>
  1318 + <draw>Y</draw>
  1319 + </GUI>
  1320 + </step>
  1321 +
  1322 + <step>
  1323 + <name>&#x589e;&#x52a0;&#x65f6;&#x523b;&#x8868;&#x540d;&#x5b57;&#xff0c;&#x7ebf;&#x8def;&#x540d;&#x5b57;&#xff0c;&#x505c;&#x8f66;&#x573a;&#x540d;&#x5b57;</name>
  1324 + <type>DataGrid</type>
  1325 + <description/>
  1326 + <distribute>Y</distribute>
  1327 + <custom_distribution/>
  1328 + <copies>1</copies>
  1329 + <partitioning>
  1330 + <method>none</method>
  1331 + <schema_name/>
  1332 + </partitioning>
  1333 + <fields>
  1334 + </fields>
  1335 + <data>
  1336 + <line> </line>
  1337 + </data>
  1338 + <cluster_schema/>
  1339 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1340 + <xloc>110</xloc>
  1341 + <yloc>133</yloc>
  1342 + <draw>Y</draw>
  1343 + </GUI>
  1344 + </step>
  1345 +
  1346 + <step>
  1347 + <name>&#x5904;&#x7406;&#x6570;&#x636e;</name>
  1348 + <type>ScriptValueMod</type>
  1349 + <description/>
  1350 + <distribute>Y</distribute>
  1351 + <custom_distribution/>
  1352 + <copies>1</copies>
  1353 + <partitioning>
  1354 + <method>none</method>
  1355 + <schema_name/>
  1356 + </partitioning>
  1357 + <compatible>N</compatible>
  1358 + <optimizationLevel>9</optimizationLevel>
  1359 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  1360 + <jsScript_name>Script 1</jsScript_name>
  1361 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;&#x2f;&#x2f; &#x5982;&#x679c;&#x7ad9;&#x540d;&#x4e2d;&#x6709;&#x7c7b;&#x4f3c;-&#x3e;&#x7b;&#x6570;&#x5b57;&#x7d;&#xff0c;&#x4f7f;&#x7528;&#x6b63;&#x5219;&#x8868;&#x8fbe;&#x5f0f;&#x8fc7;&#x6ee4;&#x6389;&#xa;qdzname &#x3d; qdzname.replace&#x28;&#x2f;-&#x3e;&#x5c;d&#x2b;&#x2f;g,&#x27;&#x27;&#x29;&#x3b;&#xa;if &#x28;qdzname &#x21;&#x3d; &#x22;&#x51fa;&#x573a;&#x22; &#x26;&#x26; qdzname &#x21;&#x3d; &#x22;&#x8fdb;&#x573a;&#x22;&#x29; &#x7b;&#xa; qdzname &#x3d; qdzname &#x2b; &#x22;&#x25;&#x22;&#x3b; &#x2f;&#x2f; &#x6a21;&#x7cca;&#x5339;&#x914d;&#x6807;&#x8bc6;&#x7b26;&#xa;&#x7d;&#xa;&#xa;&#x2f;&#x2f; sendtime&#x5904;&#x7406;&#xff0c;hhmm&#xff0c;hh&#x3a;mm&#xff0c;hh,mm&#xa;var sendtime_calcu &#x3d; sendtime.replace&#x28;&#x2f;&#x5c;s&#x2f;g, &#x22;&#x22;&#x29;&#x3b;&#xa;if &#x28;sendtime.length &#x3d;&#x3d; 5&#x29; &#x7b; &#x2f;&#x2f; &#x6700;&#x957f;&#x683c;&#x5f0f;&#xff0c;&#x5305;&#x62ec;&#x5206;&#x9694;&#x7b26;&#xff0c;&#x7edf;&#x4e00;&#x628a;&#x5206;&#x9694;&#x7b26;&#x66ff;&#x6362;&#x6210;&#x5192;&#x53f7;&#xa; sendtime_calcu &#x3d; sendtime.substr&#x28;0, 2&#x29; &#x2b; &#x22;&#x3a;&#x22; &#x2b; sendtime.substr&#x28;3, 2&#x29;&#x3b;&#xa;&#x7d; else if &#x28;sendtime.length &#x3d;&#x3d; 4&#x29; &#x7b;&#xa; if &#x28;sendtime.indexOf&#x28;&#x22;&#x3a;&#x22;&#x29; &#x3e; 0&#x29; &#x7b; &#x2f;&#x2f; &#x5192;&#x53f7;&#x5206;&#x9694;&#xff0c;&#x65e0;&#x9700;&#x4fee;&#x6539;&#xa; sendtime_calcu &#x3d; sendtime&#x3b;&#xa; &#x7d; else if &#x28;sendtime.indexOf&#x28;&#x22;,&#x22;&#x29; &#x3e; 0&#x29; &#x7b; &#x2f;&#x2f; &#x9017;&#x53f7;&#x5206;&#x9694;&#xff0c;&#x6539;&#x6210;&#x5192;&#x53f7;&#x5206;&#x9694;&#xa; sendtime_calcu &#x3d; sendtime.substr&#x28;0, 1&#x29; &#x2b; &#x22;&#x3a;&#x22; &#x2b; sendtime.substr&#x28;2, 2&#x29;&#x3b;&#xa; &#x7d; else &#x7b; &#x2f;&#x2f; &#x65e0;&#x5206;&#x9694;&#x7b26;&#xff0c;&#x6539;&#x6210;&#x5192;&#x53f7;&#x5206;&#x9694;&#xa; sendtime_calcu &#x3d; sendtime.substr&#x28;0, 2&#x29; &#x2b; &#x22;&#x3a;&#x22; &#x2b; sendtime.substr&#x28;2, 2&#x29;&#x3b;&#xa; &#x7d;&#xa;&#x7d; else if &#x28;sendtime.length &#x3d;&#x3d; 3&#x29; &#x7b; &#x2f;&#x2f; &#x65e0;&#x5206;&#x9694;&#x7b26;&#xff0c;&#x6539;&#x6210;&#x5192;&#x53f7;&#x5206;&#x9694;&#xa; sendtime_calcu &#x3d; sendtime.substr&#x28;0, 1&#x29; &#x2b; &#x22;&#x3a;&#x22; &#x2b; sendtime.substr&#x28;1, 2&#x29;&#x3b;&#xa;&#x7d;&#xa;&#xa;&#x2f;&#x2f; &#x5168;&#x90e8;&#x4fee;&#x6b63;&#x5b8c;&#x6bd5;&#x540e;&#xff0c;&#x5982;&#x679c;&#x957f;&#x5ea6;&#x4e0d;&#x662f;5&#xff0c;&#x524d;&#x9762;&#x8865;0&#xa;if &#x28;sendtime_calcu.length &#x21;&#x3d; 5&#x29; &#x7b;&#xa; sendtime_calcu &#x3d; &#x22;0&#x22; &#x2b; sendtime_calcu&#x3b;&#xa;&#x7d;&#xa;&#xa;&#x2f;&#x2f; &#x8bbe;&#x7f6e;&#x5206;&#x73ed;&#xa;var isfb &#x3d; 0&#x3b;&#xa;&#xa;&#x2f;&#x2f; &#x8bbe;&#x7f6e;&#x505c;&#x9a76;&#xa;var ists &#x3d; 0&#x3b;&#xa;&#xa;&#x2f;&#x2f; &#x8bbe;&#x7f6e;isCanceled&#xa;var iscanceled &#x3d; 0&#x3b;</jsScript_script>
  1362 + </jsScript> </jsScripts> <fields> <field> <name>qdzname</name>
  1363 + <rename>qdzname</rename>
  1364 + <type>String</type>
  1365 + <length>-1</length>
  1366 + <precision>-1</precision>
  1367 + <replace>Y</replace>
  1368 + </field> <field> <name>isfb</name>
  1369 + <rename>isfb</rename>
  1370 + <type>Integer</type>
  1371 + <length>-1</length>
  1372 + <precision>-1</precision>
  1373 + <replace>N</replace>
  1374 + </field> <field> <name>iscanceled</name>
  1375 + <rename>iscanceled</rename>
  1376 + <type>Integer</type>
  1377 + <length>-1</length>
  1378 + <precision>-1</precision>
  1379 + <replace>N</replace>
  1380 + </field> <field> <name>sendtime_calcu</name>
  1381 + <rename>sendtime_calcu</rename>
  1382 + <type>String</type>
  1383 + <length>-1</length>
  1384 + <precision>-1</precision>
  1385 + <replace>N</replace>
  1386 + </field> <field> <name>ists</name>
  1387 + <rename>ists</rename>
  1388 + <type>Integer</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>788</xloc>
  1395 + <yloc>44</yloc>
  1396 + <draw>Y</draw>
  1397 + </GUI>
  1398 + </step>
  1399 +
  1400 + <step>
  1401 + <name>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</name>
  1402 + <type>SelectValues</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 + <fields> <field> <name>&#x8def;&#x724c;-&#x3e;&#x5de5;&#x65f6;</name>
  1412 + <rename>lpWithGs</rename>
  1413 + <length>-2</length>
  1414 + <precision>-2</precision>
  1415 + </field> <field> <name>&#x7ad9;&#x70b9;&#x540d;&#x79f0;</name>
  1416 + <rename>qdzname</rename>
  1417 + <length>-2</length>
  1418 + <precision>-2</precision>
  1419 + </field> <field> <name>&#x53d1;&#x8f66;&#x65f6;&#x95f4;</name>
  1420 + <rename>sendtime</rename>
  1421 + <length>-2</length>
  1422 + <precision>-2</precision>
  1423 + </field> <select_unspecified>Y</select_unspecified>
  1424 + </fields> <cluster_schema/>
  1425 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1426 + <xloc>441</xloc>
  1427 + <yloc>137</yloc>
  1428 + <draw>Y</draw>
  1429 + </GUI>
  1430 + </step>
  1431 +
  1432 + <step>
  1433 + <name>&#x62c6;&#x5206;&#x8def;&#x724c;&#x548c;&#x5de5;&#x65f6;</name>
  1434 + <type>ScriptValueMod</type>
  1435 + <description/>
  1436 + <distribute>Y</distribute>
  1437 + <custom_distribution/>
  1438 + <copies>1</copies>
  1439 + <partitioning>
  1440 + <method>none</method>
  1441 + <schema_name/>
  1442 + </partitioning>
  1443 + <compatible>N</compatible>
  1444 + <optimizationLevel>9</optimizationLevel>
  1445 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  1446 + <jsScript_name>Script 1</jsScript_name>
  1447 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var lp &#x3d; lpWithGs.split&#x28;&#x22;-&#x3e;&#x22;&#x29;&#x5b;0&#x5d;&#x3b;&#xa;var gs &#x3d; lpWithGs.split&#x28;&#x22;-&#x3e;&#x22;&#x29;&#x5b;1&#x5d;&#x3b;</jsScript_script>
  1448 + </jsScript> </jsScripts> <fields> <field> <name>lp</name>
  1449 + <rename>lp</rename>
  1450 + <type>String</type>
  1451 + <length>-1</length>
  1452 + <precision>-1</precision>
  1453 + <replace>N</replace>
  1454 + </field> <field> <name>gs</name>
  1455 + <rename>gs</rename>
  1456 + <type>String</type>
  1457 + <length>-1</length>
  1458 + <precision>-1</precision>
  1459 + <replace>N</replace>
  1460 + </field> </fields> <cluster_schema/>
  1461 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1462 + <xloc>541</xloc>
  1463 + <yloc>137</yloc>
  1464 + <draw>Y</draw>
  1465 + </GUI>
  1466 + </step>
  1467 +
  1468 + <step>
  1469 + <name>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;1</name>
  1470 + <type>FilterRows</type>
  1471 + <description/>
  1472 + <distribute>Y</distribute>
  1473 + <custom_distribution/>
  1474 + <copies>1</copies>
  1475 + <partitioning>
  1476 + <method>none</method>
  1477 + <schema_name/>
  1478 + </partitioning>
  1479 +<send_true_to>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</send_true_to>
  1480 +<send_false_to>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</send_false_to>
  1481 + <compare>
  1482 +<condition>
  1483 + <negated>N</negated>
  1484 + <leftvalue>bctype</leftvalue>
  1485 + <function>&#x3d;</function>
  1486 + <rightvalue/>
  1487 + <value><name>constant</name><type>String</type><text>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</text><length>-1</length><precision>-1</precision><isnull>N</isnull><mask/></value> </condition>
  1488 + </compare>
  1489 + <cluster_schema/>
  1490 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1491 + <xloc>860</xloc>
  1492 + <yloc>401</yloc>
  1493 + <draw>Y</draw>
  1494 + </GUI>
  1495 + </step>
  1496 +
  1497 + <step>
  1498 + <name>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</name>
  1499 + <type>FilterRows</type>
  1500 + <description/>
  1501 + <distribute>Y</distribute>
  1502 + <custom_distribution/>
  1503 + <copies>1</copies>
  1504 + <partitioning>
  1505 + <method>none</method>
  1506 + <schema_name/>
  1507 + </partitioning>
  1508 +<send_true_to>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</send_true_to>
  1509 +<send_false_to>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</send_false_to>
  1510 + <compare>
  1511 +<condition>
  1512 + <negated>N</negated>
  1513 + <leftvalue>bctype</leftvalue>
  1514 + <function>&#x3d;</function>
  1515 + <rightvalue/>
  1516 + <value><name>constant</name><type>String</type><text>&#x51fa;&#x573a;</text><length>-1</length><precision>-1</precision><isnull>N</isnull><mask/></value> </condition>
  1517 + </compare>
  1518 + <cluster_schema/>
  1519 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1520 + <xloc>995</xloc>
  1521 + <yloc>503</yloc>
  1522 + <draw>Y</draw>
  1523 + </GUI>
  1524 + </step>
  1525 +
  1526 + <step>
  1527 + <name>&#x63d2;&#x5165; &#x2f; &#x66f4;&#x65b0; &#x73ed;&#x578b;&#x8868;&#xff08;&#x5de5;&#x65f6;&#x6570;&#x636e;&#xff09;</name>
  1528 + <type>InsertUpdate</type>
  1529 + <description/>
  1530 + <distribute>Y</distribute>
  1531 + <custom_distribution/>
  1532 + <copies>1</copies>
  1533 + <partitioning>
  1534 + <method>none</method>
  1535 + <schema_name/>
  1536 + </partitioning>
  1537 + <connection>control_jndi</connection>
  1538 + <commit>100</commit>
  1539 + <update_bypassed>Y</update_bypassed>
  1540 + <lookup>
  1541 + <schema/>
  1542 + <table>bsth_c_s_ttinfo_bx_detail</table>
  1543 + <key>
  1544 + <name>xlid</name>
  1545 + <field>xl</field>
  1546 + <condition>&#x3d;</condition>
  1547 + <name2/>
  1548 + </key>
  1549 + <key>
  1550 + <name>ttid</name>
  1551 + <field>ttinfo</field>
  1552 + <condition>&#x3d;</condition>
  1553 + <name2/>
  1554 + </key>
  1555 + <key>
  1556 + <name>lpid</name>
  1557 + <field>lp</field>
  1558 + <condition>&#x3d;</condition>
  1559 + <name2/>
  1560 + </key>
  1561 + <key>
  1562 + <name>version</name>
  1563 + <field>line_version</field>
  1564 + <condition>&#x3d;</condition>
  1565 + <name2/>
  1566 + </key>
  1567 + <value>
  1568 + <name>gs</name>
  1569 + <rename>gs</rename>
  1570 + <update>Y</update>
  1571 + </value>
  1572 + <value>
  1573 + <name>bx_type1</name>
  1574 + <rename>update_bx1</rename>
  1575 + <update>Y</update>
  1576 + </value>
  1577 + <value>
  1578 + <name>bx_type2</name>
  1579 + <rename>update_bx2</rename>
  1580 + <update>Y</update>
  1581 + </value>
  1582 + <value>
  1583 + <name>bx_pds</name>
  1584 + <rename>update_pds</rename>
  1585 + <update>Y</update>
  1586 + </value>
  1587 + <value>
  1588 + <name>version</name>
  1589 + <rename>update_version</rename>
  1590 + <update>Y</update>
  1591 + </value>
  1592 + <value>
  1593 + <name>xl</name>
  1594 + <rename>xlid</rename>
  1595 + <update>Y</update>
  1596 + </value>
  1597 + <value>
  1598 + <name>ttinfo</name>
  1599 + <rename>ttid</rename>
  1600 + <update>Y</update>
  1601 + </value>
  1602 + <value>
  1603 + <name>lp</name>
  1604 + <rename>lpid</rename>
  1605 + <update>Y</update>
  1606 + </value>
  1607 + <value>
  1608 + <name>line_version</name>
  1609 + <rename>version</rename>
  1610 + <update>Y</update>
  1611 + </value>
  1612 + </lookup>
  1613 + <cluster_schema/>
  1614 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1615 + <xloc>481</xloc>
  1616 + <yloc>331</yloc>
  1617 + <draw>Y</draw>
  1618 + </GUI>
  1619 + </step>
  1620 +
  1621 + <step>
  1622 + <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail</name>
  1623 + <type>InsertUpdate</type>
  1624 + <description/>
  1625 + <distribute>Y</distribute>
  1626 + <custom_distribution/>
  1627 + <copies>1</copies>
  1628 + <partitioning>
  1629 + <method>none</method>
  1630 + <schema_name/>
  1631 + </partitioning>
  1632 + <connection>control_jndi</connection>
  1633 + <commit>100</commit>
  1634 + <update_bypassed>N</update_bypassed>
  1635 + <lookup>
  1636 + <schema/>
  1637 + <table>bsth_c_s_ttinfo_detail</table>
  1638 + <key>
  1639 + <name>xlid</name>
  1640 + <field>xl</field>
  1641 + <condition>&#x3d;</condition>
  1642 + <name2/>
  1643 + </key>
  1644 + <key>
  1645 + <name>ttid</name>
  1646 + <field>ttinfo</field>
  1647 + <condition>&#x3d;</condition>
  1648 + <name2/>
  1649 + </key>
  1650 + <key>
  1651 + <name>lpid</name>
  1652 + <field>lp</field>
  1653 + <condition>&#x3d;</condition>
  1654 + <name2/>
  1655 + </key>
  1656 + <key>
  1657 + <name>fcno</name>
  1658 + <field>fcno</field>
  1659 + <condition>&#x3d;</condition>
  1660 + <name2/>
  1661 + </key>
  1662 + <key>
  1663 + <name>bcs</name>
  1664 + <field>bcs</field>
  1665 + <condition>&#x3d;</condition>
  1666 + <name2/>
  1667 + </key>
  1668 + <value>
  1669 + <name>lp</name>
  1670 + <rename>lpid</rename>
  1671 + <update>Y</update>
  1672 + </value>
  1673 + <value>
  1674 + <name>bc_type</name>
  1675 + <rename>bctype_code</rename>
  1676 + <update>Y</update>
  1677 + </value>
  1678 + <value>
  1679 + <name>bcs</name>
  1680 + <rename>bcs</rename>
  1681 + <update>Y</update>
  1682 + </value>
  1683 + <value>
  1684 + <name>bcsj</name>
  1685 + <rename>bcsj</rename>
  1686 + <update>Y</update>
  1687 + </value>
  1688 + <value>
  1689 + <name>fcno</name>
  1690 + <rename>fcno</rename>
  1691 + <update>Y</update>
  1692 + </value>
  1693 + <value>
  1694 + <name>jhlc</name>
  1695 + <rename>jhlc</rename>
  1696 + <update>Y</update>
  1697 + </value>
  1698 + <value>
  1699 + <name>fcsj</name>
  1700 + <rename>sendtime_calcu</rename>
  1701 + <update>Y</update>
  1702 + </value>
  1703 + <value>
  1704 + <name>ttinfo</name>
  1705 + <rename>ttid</rename>
  1706 + <update>Y</update>
  1707 + </value>
  1708 + <value>
  1709 + <name>xl</name>
  1710 + <rename>xlid</rename>
  1711 + <update>Y</update>
  1712 + </value>
  1713 + <value>
  1714 + <name>qdz</name>
  1715 + <rename>qdzid</rename>
  1716 + <update>Y</update>
  1717 + </value>
  1718 + <value>
  1719 + <name>zdz</name>
  1720 + <rename>zdzid</rename>
  1721 + <update>Y</update>
  1722 + </value>
  1723 + <value>
  1724 + <name>xl_dir</name>
  1725 + <rename>sxx</rename>
  1726 + <update>Y</update>
  1727 + </value>
  1728 + <value>
  1729 + <name>isfb</name>
  1730 + <rename>isfb</rename>
  1731 + <update>Y</update>
  1732 + </value>
  1733 + <value>
  1734 + <name>qdz_code</name>
  1735 + <rename>qdzcode</rename>
  1736 + <update>Y</update>
  1737 + </value>
  1738 + <value>
  1739 + <name>qdz_name</name>
  1740 + <rename>qdzname_</rename>
  1741 + <update>Y</update>
  1742 + </value>
  1743 + <value>
  1744 + <name>zdz_code</name>
  1745 + <rename>zdzcode</rename>
  1746 + <update>Y</update>
  1747 + </value>
  1748 + <value>
  1749 + <name>zdz_name</name>
  1750 + <rename>zdzname</rename>
  1751 + <update>Y</update>
  1752 + </value>
  1753 + <value>
  1754 + <name>ists</name>
  1755 + <rename>ists</rename>
  1756 + <update>Y</update>
  1757 + </value>
  1758 + <value>
  1759 + <name>line_version</name>
  1760 + <rename>version</rename>
  1761 + <update>Y</update>
  1762 + </value>
  1763 + </lookup>
  1764 + <cluster_schema/>
  1765 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1766 + <xloc>143</xloc>
  1767 + <yloc>860</yloc>
  1768 + <draw>Y</draw>
  1769 + </GUI>
  1770 + </step>
  1771 +
  1772 + <step>
  1773 + <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail 2</name>
  1774 + <type>InsertUpdate</type>
  1775 + <description/>
  1776 + <distribute>Y</distribute>
  1777 + <custom_distribution/>
  1778 + <copies>1</copies>
  1779 + <partitioning>
  1780 + <method>none</method>
  1781 + <schema_name/>
  1782 + </partitioning>
  1783 + <connection>control_jndi</connection>
  1784 + <commit>100</commit>
  1785 + <update_bypassed>N</update_bypassed>
  1786 + <lookup>
  1787 + <schema/>
  1788 + <table>bsth_c_s_ttinfo_detail</table>
  1789 + <key>
  1790 + <name>xlid</name>
  1791 + <field>xl</field>
  1792 + <condition>&#x3d;</condition>
  1793 + <name2/>
  1794 + </key>
  1795 + <key>
  1796 + <name>ttid</name>
  1797 + <field>ttinfo</field>
  1798 + <condition>&#x3d;</condition>
  1799 + <name2/>
  1800 + </key>
  1801 + <key>
  1802 + <name>lpid</name>
  1803 + <field>lp</field>
  1804 + <condition>&#x3d;</condition>
  1805 + <name2/>
  1806 + </key>
  1807 + <key>
  1808 + <name>fcno</name>
  1809 + <field>fcno</field>
  1810 + <condition>&#x3d;</condition>
  1811 + <name2/>
  1812 + </key>
  1813 + <key>
  1814 + <name>bcs</name>
  1815 + <field>bcs</field>
  1816 + <condition>&#x3d;</condition>
  1817 + <name2/>
  1818 + </key>
  1819 + <value>
  1820 + <name>tcc</name>
  1821 + <rename>qdzid</rename>
  1822 + <update>Y</update>
  1823 + </value>
  1824 + <value>
  1825 + <name>zdz</name>
  1826 + <rename>zdzid</rename>
  1827 + <update>Y</update>
  1828 + </value>
  1829 + <value>
  1830 + <name>xl</name>
  1831 + <rename>xlid</rename>
  1832 + <update>Y</update>
  1833 + </value>
  1834 + <value>
  1835 + <name>ttinfo</name>
  1836 + <rename>ttid</rename>
  1837 + <update>Y</update>
  1838 + </value>
  1839 + <value>
  1840 + <name>xl_dir</name>
  1841 + <rename>sxx</rename>
  1842 + <update>Y</update>
  1843 + </value>
  1844 + <value>
  1845 + <name>lp</name>
  1846 + <rename>lpid</rename>
  1847 + <update>Y</update>
  1848 + </value>
  1849 + <value>
  1850 + <name>jhlc</name>
  1851 + <rename>out_mileage</rename>
  1852 + <update>Y</update>
  1853 + </value>
  1854 + <value>
  1855 + <name>fcsj</name>
  1856 + <rename>sendtime_calcu</rename>
  1857 + <update>Y</update>
  1858 + </value>
  1859 + <value>
  1860 + <name>bcsj</name>
  1861 + <rename>out_time</rename>
  1862 + <update>Y</update>
  1863 + </value>
  1864 + <value>
  1865 + <name>bcs</name>
  1866 + <rename>bcs</rename>
  1867 + <update>Y</update>
  1868 + </value>
  1869 + <value>
  1870 + <name>fcno</name>
  1871 + <rename>fcno</rename>
  1872 + <update>Y</update>
  1873 + </value>
  1874 + <value>
  1875 + <name>bc_type</name>
  1876 + <rename>bctype_code</rename>
  1877 + <update>Y</update>
  1878 + </value>
  1879 + <value>
  1880 + <name>isfb</name>
  1881 + <rename>isfb</rename>
  1882 + <update>Y</update>
  1883 + </value>
  1884 + <value>
  1885 + <name>qdz_code</name>
  1886 + <rename>qdzcode</rename>
  1887 + <update>Y</update>
  1888 + </value>
  1889 + <value>
  1890 + <name>qdz_name</name>
  1891 + <rename>tn</rename>
  1892 + <update>Y</update>
  1893 + </value>
  1894 + <value>
  1895 + <name>zdz_code</name>
  1896 + <rename>zdzcode</rename>
  1897 + <update>Y</update>
  1898 + </value>
  1899 + <value>
  1900 + <name>zdz_name</name>
  1901 + <rename>zdzname_</rename>
  1902 + <update>Y</update>
  1903 + </value>
  1904 + <value>
  1905 + <name>ists</name>
  1906 + <rename>ists</rename>
  1907 + <update>Y</update>
  1908 + </value>
  1909 + <value>
  1910 + <name>line_version</name>
  1911 + <rename>version</rename>
  1912 + <update>Y</update>
  1913 + </value>
  1914 + </lookup>
  1915 + <cluster_schema/>
  1916 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1917 + <xloc>340</xloc>
  1918 + <yloc>1087</yloc>
  1919 + <draw>Y</draw>
  1920 + </GUI>
  1921 + </step>
  1922 +
  1923 + <step>
  1924 + <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail 3</name>
  1925 + <type>InsertUpdate</type>
  1926 + <description/>
  1927 + <distribute>Y</distribute>
  1928 + <custom_distribution/>
  1929 + <copies>1</copies>
  1930 + <partitioning>
  1931 + <method>none</method>
  1932 + <schema_name/>
  1933 + </partitioning>
  1934 + <connection>control_jndi</connection>
  1935 + <commit>100</commit>
  1936 + <update_bypassed>N</update_bypassed>
  1937 + <lookup>
  1938 + <schema/>
  1939 + <table>bsth_c_s_ttinfo_detail</table>
  1940 + <key>
  1941 + <name>xlid</name>
  1942 + <field>xl</field>
  1943 + <condition>&#x3d;</condition>
  1944 + <name2/>
  1945 + </key>
  1946 + <key>
  1947 + <name>ttid</name>
  1948 + <field>ttinfo</field>
  1949 + <condition>&#x3d;</condition>
  1950 + <name2/>
  1951 + </key>
  1952 + <key>
  1953 + <name>lpid</name>
  1954 + <field>lp</field>
  1955 + <condition>&#x3d;</condition>
  1956 + <name2/>
  1957 + </key>
  1958 + <key>
  1959 + <name>fcno</name>
  1960 + <field>fcno</field>
  1961 + <condition>&#x3d;</condition>
  1962 + <name2/>
  1963 + </key>
  1964 + <key>
  1965 + <name>bcs</name>
  1966 + <field>bcs</field>
  1967 + <condition>&#x3d;</condition>
  1968 + <name2/>
  1969 + </key>
  1970 + <value>
  1971 + <name>fcno</name>
  1972 + <rename>fcno</rename>
  1973 + <update>Y</update>
  1974 + </value>
  1975 + <value>
  1976 + <name>bcs</name>
  1977 + <rename>bcs</rename>
  1978 + <update>Y</update>
  1979 + </value>
  1980 + <value>
  1981 + <name>xl</name>
  1982 + <rename>xlid</rename>
  1983 + <update>Y</update>
  1984 + </value>
  1985 + <value>
  1986 + <name>ttinfo</name>
  1987 + <rename>ttid</rename>
  1988 + <update>Y</update>
  1989 + </value>
  1990 + <value>
  1991 + <name>lp</name>
  1992 + <rename>lpid</rename>
  1993 + <update>Y</update>
  1994 + </value>
  1995 + <value>
  1996 + <name>bc_type</name>
  1997 + <rename>bctype_code</rename>
  1998 + <update>Y</update>
  1999 + </value>
  2000 + <value>
  2001 + <name>bcsj</name>
  2002 + <rename>parade_time</rename>
  2003 + <update>Y</update>
  2004 + </value>
  2005 + <value>
  2006 + <name>jhlc</name>
  2007 + <rename>parade_mileage</rename>
  2008 + <update>Y</update>
  2009 + </value>
  2010 + <value>
  2011 + <name>fcsj</name>
  2012 + <rename>sendtime_calcu</rename>
  2013 + <update>Y</update>
  2014 + </value>
  2015 + <value>
  2016 + <name>xl_dir</name>
  2017 + <rename>sxx2</rename>
  2018 + <update>Y</update>
  2019 + </value>
  2020 + <value>
  2021 + <name>qdz</name>
  2022 + <rename>qdzid</rename>
  2023 + <update>Y</update>
  2024 + </value>
  2025 + <value>
  2026 + <name>tcc</name>
  2027 + <rename>zdzid</rename>
  2028 + <update>Y</update>
  2029 + </value>
  2030 + <value>
  2031 + <name>isfb</name>
  2032 + <rename>isfb</rename>
  2033 + <update>Y</update>
  2034 + </value>
  2035 + <value>
  2036 + <name>qdz_code</name>
  2037 + <rename>qdzcode</rename>
  2038 + <update>Y</update>
  2039 + </value>
  2040 + <value>
  2041 + <name>qdz_name</name>
  2042 + <rename>qname</rename>
  2043 + <update>Y</update>
  2044 + </value>
  2045 + <value>
  2046 + <name>zdz_code</name>
  2047 + <rename>zdzcode</rename>
  2048 + <update>Y</update>
  2049 + </value>
  2050 + <value>
  2051 + <name>zdz_name</name>
  2052 + <rename>tn</rename>
  2053 + <update>Y</update>
  2054 + </value>
  2055 + <value>
  2056 + <name>ists</name>
  2057 + <rename>ists</rename>
  2058 + <update>Y</update>
  2059 + </value>
  2060 + <value>
  2061 + <name>line_version</name>
  2062 + <rename>version</rename>
  2063 + <update>Y</update>
  2064 + </value>
  2065 + </lookup>
  2066 + <cluster_schema/>
  2067 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2068 + <xloc>845</xloc>
  2069 + <yloc>899</yloc>
  2070 + <draw>Y</draw>
  2071 + </GUI>
  2072 + </step>
  2073 +
  2074 + <step>
  2075 + <name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</name>
  2076 + <type>ExcelInput</type>
  2077 + <description/>
  2078 + <distribute>Y</distribute>
  2079 + <custom_distribution/>
  2080 + <copies>1</copies>
  2081 + <partitioning>
  2082 + <method>none</method>
  2083 + <schema_name/>
  2084 + </partitioning>
  2085 + <header>Y</header>
  2086 + <noempty>Y</noempty>
  2087 + <stoponempty>N</stoponempty>
  2088 + <filefield/>
  2089 + <sheetfield/>
  2090 + <sheetrownumfield/>
  2091 + <rownumfield/>
  2092 + <sheetfield/>
  2093 + <filefield/>
  2094 + <limit>0</limit>
  2095 + <encoding/>
  2096 + <add_to_result_filenames>Y</add_to_result_filenames>
  2097 + <accept_filenames>N</accept_filenames>
  2098 + <accept_field/>
  2099 + <accept_stepname/>
  2100 + <file>
  2101 + <name/>
  2102 + <filemask/>
  2103 + <exclude_filemask/>
  2104 + <file_required>N</file_required>
  2105 + <include_subfolders>N</include_subfolders>
  2106 + </file>
  2107 + <fields>
  2108 + </fields>
  2109 + <sheets>
  2110 + <sheet>
  2111 + <name/>
  2112 + <startrow>0</startrow>
  2113 + <startcol>0</startcol>
  2114 + </sheet>
  2115 + </sheets>
  2116 + <strict_types>N</strict_types>
  2117 + <error_ignored>N</error_ignored>
  2118 + <error_line_skipped>N</error_line_skipped>
  2119 + <bad_line_files_destination_directory/>
  2120 + <bad_line_files_extension>warning</bad_line_files_extension>
  2121 + <error_line_files_destination_directory/>
  2122 + <error_line_files_extension>error</error_line_files_extension>
  2123 + <line_number_files_destination_directory/>
  2124 + <line_number_files_extension>line</line_number_files_extension>
  2125 + <shortFileFieldName/>
  2126 + <pathFieldName/>
  2127 + <hiddenFieldName/>
  2128 + <lastModificationTimeFieldName/>
  2129 + <uriNameFieldName/>
  2130 + <rootUriNameFieldName/>
  2131 + <extensionFieldName/>
  2132 + <sizeFieldName/>
  2133 + <spreadsheet_type>JXL</spreadsheet_type>
  2134 + <cluster_schema/>
  2135 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2136 + <xloc>112</xloc>
  2137 + <yloc>44</yloc>
  2138 + <draw>Y</draw>
  2139 + </GUI>
  2140 + </step>
  2141 +
  2142 + <step>
  2143 + <name>&#x66f4;&#x65b0;&#x65f6;&#x523b;&#x8868;&#x4e3b;&#x8868;&#x7248;&#x672c;</name>
  2144 + <type>Update</type>
  2145 + <description/>
  2146 + <distribute>Y</distribute>
  2147 + <custom_distribution/>
  2148 + <copies>1</copies>
  2149 + <partitioning>
  2150 + <method>none</method>
  2151 + <schema_name/>
  2152 + </partitioning>
  2153 + <connection>control_jndi</connection>
  2154 + <skip_lookup>N</skip_lookup>
  2155 + <commit>100</commit>
  2156 + <use_batch>N</use_batch>
  2157 + <error_ignored>N</error_ignored>
  2158 + <ignore_flag_field/>
  2159 + <lookup>
  2160 + <schema/>
  2161 + <table>bsth_c_s_ttinfo</table>
  2162 + <key>
  2163 + <name>ttid</name>
  2164 + <field>id</field>
  2165 + <condition>&#x3d;</condition>
  2166 + <name2/>
  2167 + </key>
  2168 + <value>
  2169 + <name>line_version</name>
  2170 + <rename>version</rename>
  2171 + </value>
  2172 + </lookup>
  2173 + <cluster_schema/>
  2174 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2175 + <xloc>863</xloc>
  2176 + <yloc>338</yloc>
  2177 + <draw>Y</draw>
  2178 + </GUI>
  2179 + </step>
  2180 +
  2181 + <step>
  2182 + <name>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;1</name>
  2183 + <type>DBLookup</type>
  2184 + <description/>
  2185 + <distribute>Y</distribute>
  2186 + <custom_distribution/>
  2187 + <copies>1</copies>
  2188 + <partitioning>
  2189 + <method>none</method>
  2190 + <schema_name/>
  2191 + </partitioning>
  2192 + <connection>control_jndi</connection>
  2193 + <cache>N</cache>
  2194 + <cache_load_all>N</cache_load_all>
  2195 + <cache_size>0</cache_size>
  2196 + <lookup>
  2197 + <schema/>
  2198 + <table>bsth_c_car_park</table>
  2199 + <orderby/>
  2200 + <fail_on_multiple>N</fail_on_multiple>
  2201 + <eat_row_on_failure>N</eat_row_on_failure>
  2202 + <key>
  2203 + <name>tccname_</name>
  2204 + <field>park_name</field>
  2205 + <condition>&#x3d;</condition>
  2206 + <name2/>
  2207 + </key>
  2208 + <value>
  2209 + <name>id</name>
  2210 + <rename>qdzid</rename>
  2211 + <default/>
  2212 + <type>Integer</type>
  2213 + </value>
  2214 + <value>
  2215 + <name>park_code</name>
  2216 + <rename>qdzcode</rename>
  2217 + <default/>
  2218 + <type>String</type>
  2219 + </value>
  2220 + <value>
  2221 + <name>park_name</name>
  2222 + <rename>tn</rename>
  2223 + <default/>
  2224 + <type>String</type>
  2225 + </value>
  2226 + </lookup>
  2227 + <cluster_schema/>
  2228 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2229 + <xloc>755</xloc>
  2230 + <yloc>504</yloc>
  2231 + <draw>Y</draw>
  2232 + </GUI>
  2233 + </step>
  2234 +
  2235 + <step>
  2236 + <name>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;2</name>
  2237 + <type>DBLookup</type>
  2238 + <description/>
  2239 + <distribute>Y</distribute>
  2240 + <custom_distribution/>
  2241 + <copies>1</copies>
  2242 + <partitioning>
  2243 + <method>none</method>
  2244 + <schema_name/>
  2245 + </partitioning>
  2246 + <connection>control_jndi</connection>
  2247 + <cache>N</cache>
  2248 + <cache_load_all>N</cache_load_all>
  2249 + <cache_size>0</cache_size>
  2250 + <lookup>
  2251 + <schema/>
  2252 + <table>bsth_c_car_park</table>
  2253 + <orderby/>
  2254 + <fail_on_multiple>N</fail_on_multiple>
  2255 + <eat_row_on_failure>N</eat_row_on_failure>
  2256 + <key>
  2257 + <name>tccname_</name>
  2258 + <field>park_name</field>
  2259 + <condition>&#x3d;</condition>
  2260 + <name2/>
  2261 + </key>
  2262 + <value>
  2263 + <name>id</name>
  2264 + <rename>zdzid</rename>
  2265 + <default/>
  2266 + <type>Integer</type>
  2267 + </value>
  2268 + <value>
  2269 + <name>park_code</name>
  2270 + <rename>zdzcode</rename>
  2271 + <default/>
  2272 + <type>String</type>
  2273 + </value>
  2274 + <value>
  2275 + <name>park_name</name>
  2276 + <rename>tn</rename>
  2277 + <default/>
  2278 + <type>String</type>
  2279 + </value>
  2280 + </lookup>
  2281 + <cluster_schema/>
  2282 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2283 + <xloc>887</xloc>
  2284 + <yloc>608</yloc>
  2285 + <draw>Y</draw>
  2286 + </GUI>
  2287 + </step>
  2288 +
  2289 + <step>
  2290 + <name>&#x67e5;&#x627e;&#x51fa;&#x573a;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</name>
  2291 + <type>DBLookup</type>
  2292 + <description/>
  2293 + <distribute>Y</distribute>
  2294 + <custom_distribution/>
  2295 + <copies>1</copies>
  2296 + <partitioning>
  2297 + <method>none</method>
  2298 + <schema_name/>
  2299 + </partitioning>
  2300 + <connection>control_jndi</connection>
  2301 + <cache>N</cache>
  2302 + <cache_load_all>N</cache_load_all>
  2303 + <cache_size>0</cache_size>
  2304 + <lookup>
  2305 + <schema/>
  2306 + <table>bsth_c_ls_stationroute</table>
  2307 + <orderby/>
  2308 + <fail_on_multiple>N</fail_on_multiple>
  2309 + <eat_row_on_failure>N</eat_row_on_failure>
  2310 + <key>
  2311 + <name>xlid</name>
  2312 + <field>line</field>
  2313 + <condition>&#x3d;</condition>
  2314 + <name2/>
  2315 + </key>
  2316 + <key>
  2317 + <name>version</name>
  2318 + <field>versions</field>
  2319 + <condition>&#x3d;</condition>
  2320 + <name2/>
  2321 + </key>
  2322 + <key>
  2323 + <name>zdzname</name>
  2324 + <field>station_name</field>
  2325 + <condition>LIKE</condition>
  2326 + <name2/>
  2327 + </key>
  2328 + <key>
  2329 + <name>endZdtype</name>
  2330 + <field>station_mark</field>
  2331 + <condition>&#x3d;</condition>
  2332 + <name2/>
  2333 + </key>
  2334 + <key>
  2335 + <name>destory</name>
  2336 + <field>destroy</field>
  2337 + <condition>&#x3d;</condition>
  2338 + <name2/>
  2339 + </key>
  2340 + <value>
  2341 + <name>station</name>
  2342 + <rename>zdzid</rename>
  2343 + <default/>
  2344 + <type>Integer</type>
  2345 + </value>
  2346 + <value>
  2347 + <name>directions</name>
  2348 + <rename>sxx</rename>
  2349 + <default/>
  2350 + <type>Integer</type>
  2351 + </value>
  2352 + <value>
  2353 + <name>station_code</name>
  2354 + <rename>zdzcode</rename>
  2355 + <default/>
  2356 + <type>String</type>
  2357 + </value>
  2358 + <value>
  2359 + <name>station_name</name>
  2360 + <rename>zdzname_</rename>
  2361 + <default/>
  2362 + <type>String</type>
  2363 + </value>
  2364 + </lookup>
  2365 + <cluster_schema/>
  2366 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2367 + <xloc>329</xloc>
  2368 + <yloc>505</yloc>
  2369 + <draw>Y</draw>
  2370 + </GUI>
  2371 + </step>
  2372 +
  2373 + <step>
  2374 + <name>&#x67e5;&#x627e;&#x6240;&#x6709;&#x7ebf;&#x8def;&#x4e0a;&#x4e0b;&#x884c;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
  2375 + <type>DBLookup</type>
  2376 + <description/>
  2377 + <distribute>Y</distribute>
  2378 + <custom_distribution/>
  2379 + <copies>1</copies>
  2380 + <partitioning>
  2381 + <method>none</method>
  2382 + <schema_name/>
  2383 + </partitioning>
  2384 + <connection>control_jndi</connection>
  2385 + <cache>N</cache>
  2386 + <cache_load_all>N</cache_load_all>
  2387 + <cache_size>0</cache_size>
  2388 + <lookup>
  2389 + <schema/>
  2390 + <table>bsth_c_line_information</table>
  2391 + <orderby/>
  2392 + <fail_on_multiple>N</fail_on_multiple>
  2393 + <eat_row_on_failure>N</eat_row_on_failure>
  2394 + <key>
  2395 + <name>xlid</name>
  2396 + <field>line</field>
  2397 + <condition>&#x3d;</condition>
  2398 + <name2/>
  2399 + </key>
  2400 + <value>
  2401 + <name>up_mileage</name>
  2402 + <rename>up_mileage</rename>
  2403 + <default/>
  2404 + <type>Number</type>
  2405 + </value>
  2406 + <value>
  2407 + <name>down_mileage</name>
  2408 + <rename>down_mileage</rename>
  2409 + <default/>
  2410 + <type>Number</type>
  2411 + </value>
  2412 + <value>
  2413 + <name>up_travel_time</name>
  2414 + <rename>up_travel_time</rename>
  2415 + <default/>
  2416 + <type>Number</type>
  2417 + </value>
  2418 + <value>
  2419 + <name>down_travel_time</name>
  2420 + <rename>down_travel_time</rename>
  2421 + <default/>
  2422 + <type>Number</type>
  2423 + </value>
  2424 + <value>
  2425 + <name>early_start_time</name>
  2426 + <rename>early_start_time</rename>
  2427 + <default/>
  2428 + <type>String</type>
  2429 + </value>
  2430 + <value>
  2431 + <name>early_end_time</name>
  2432 + <rename>early_end_time</rename>
  2433 + <default/>
  2434 + <type>String</type>
  2435 + </value>
  2436 + <value>
  2437 + <name>early_up_time</name>
  2438 + <rename>early_up_time</rename>
  2439 + <default/>
  2440 + <type>Number</type>
  2441 + </value>
  2442 + <value>
  2443 + <name>early_down_time</name>
  2444 + <rename>early_down_time</rename>
  2445 + <default/>
  2446 + <type>Number</type>
  2447 + </value>
  2448 + <value>
  2449 + <name>late_start_time</name>
  2450 + <rename>late_start_time</rename>
  2451 + <default/>
  2452 + <type>String</type>
  2453 + </value>
  2454 + <value>
  2455 + <name>late_end_time</name>
  2456 + <rename>late_end_time</rename>
  2457 + <default/>
  2458 + <type>String</type>
  2459 + </value>
  2460 + <value>
  2461 + <name>late_up_time</name>
  2462 + <rename>late_up_time</rename>
  2463 + <default/>
  2464 + <type>Number</type>
  2465 + </value>
  2466 + <value>
  2467 + <name>late_down_time</name>
  2468 + <rename>late_down_time</rename>
  2469 + <default/>
  2470 + <type>Number</type>
  2471 + </value>
  2472 + </lookup>
  2473 + <cluster_schema/>
  2474 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2475 + <xloc>149</xloc>
  2476 + <yloc>581</yloc>
  2477 + <draw>Y</draw>
  2478 + </GUI>
  2479 + </step>
  2480 +
  2481 + <step>
  2482 + <name>&#x67e5;&#x627e;&#x65f6;&#x523b;&#x8868;&#x57fa;&#x7840;&#x4fe1;&#x606f;&#x5173;&#x8054;</name>
  2483 + <type>DBLookup</type>
  2484 + <description/>
  2485 + <distribute>Y</distribute>
  2486 + <custom_distribution/>
  2487 + <copies>1</copies>
  2488 + <partitioning>
  2489 + <method>none</method>
  2490 + <schema_name/>
  2491 + </partitioning>
  2492 + <connection>control_jndi</connection>
  2493 + <cache>N</cache>
  2494 + <cache_load_all>N</cache_load_all>
  2495 + <cache_size>0</cache_size>
  2496 + <lookup>
  2497 + <schema/>
  2498 + <table>bsth_c_s_ttinfo</table>
  2499 + <orderby/>
  2500 + <fail_on_multiple>N</fail_on_multiple>
  2501 + <eat_row_on_failure>N</eat_row_on_failure>
  2502 + <key>
  2503 + <name>xlid</name>
  2504 + <field>xl</field>
  2505 + <condition>&#x3d;</condition>
  2506 + <name2/>
  2507 + </key>
  2508 + <key>
  2509 + <name>ttinfoname_</name>
  2510 + <field>name</field>
  2511 + <condition>&#x3d;</condition>
  2512 + <name2/>
  2513 + </key>
  2514 + <key>
  2515 + <name>iscanceled</name>
  2516 + <field>is_cancel</field>
  2517 + <condition>&#x3d;</condition>
  2518 + <name2/>
  2519 + </key>
  2520 + <value>
  2521 + <name>id</name>
  2522 + <rename>ttid</rename>
  2523 + <default/>
  2524 + <type>Integer</type>
  2525 + </value>
  2526 + </lookup>
  2527 + <cluster_schema/>
  2528 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2529 + <xloc>1011</xloc>
  2530 + <yloc>134</yloc>
  2531 + <draw>Y</draw>
  2532 + </GUI>
  2533 + </step>
  2534 +
  2535 + <step>
  2536 + <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x5173;&#x8054;</name>
  2537 + <type>DBLookup</type>
  2538 + <description/>
  2539 + <distribute>Y</distribute>
  2540 + <custom_distribution/>
  2541 + <copies>1</copies>
  2542 + <partitioning>
  2543 + <method>none</method>
  2544 + <schema_name/>
  2545 + </partitioning>
  2546 + <connection>control_jndi</connection>
  2547 + <cache>N</cache>
  2548 + <cache_load_all>N</cache_load_all>
  2549 + <cache_size>0</cache_size>
  2550 + <lookup>
  2551 + <schema/>
  2552 + <table>bsth_c_line</table>
  2553 + <orderby/>
  2554 + <fail_on_multiple>N</fail_on_multiple>
  2555 + <eat_row_on_failure>N</eat_row_on_failure>
  2556 + <key>
  2557 + <name>xlname_</name>
  2558 + <field>name</field>
  2559 + <condition>&#x3d;</condition>
  2560 + <name2/>
  2561 + </key>
  2562 + <key>
  2563 + <name>iscanceled</name>
  2564 + <field>destroy</field>
  2565 + <condition>&#x3d;</condition>
  2566 + <name2/>
  2567 + </key>
  2568 + <value>
  2569 + <name>id</name>
  2570 + <rename>xlid</rename>
  2571 + <default/>
  2572 + <type>Integer</type>
  2573 + </value>
  2574 + </lookup>
  2575 + <cluster_schema/>
  2576 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2577 + <xloc>1007</xloc>
  2578 + <yloc>43</yloc>
  2579 + <draw>Y</draw>
  2580 + </GUI>
  2581 + </step>
  2582 +
  2583 + <step>
  2584 + <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x51fa;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
  2585 + <type>DBLookup</type>
  2586 + <description/>
  2587 + <distribute>Y</distribute>
  2588 + <custom_distribution/>
  2589 + <copies>1</copies>
  2590 + <partitioning>
  2591 + <method>none</method>
  2592 + <schema_name/>
  2593 + </partitioning>
  2594 + <connection>control_jndi</connection>
  2595 + <cache>N</cache>
  2596 + <cache_load_all>N</cache_load_all>
  2597 + <cache_size>0</cache_size>
  2598 + <lookup>
  2599 + <schema/>
  2600 + <table>bsth_c_line_information</table>
  2601 + <orderby/>
  2602 + <fail_on_multiple>N</fail_on_multiple>
  2603 + <eat_row_on_failure>N</eat_row_on_failure>
  2604 + <key>
  2605 + <name>xlid</name>
  2606 + <field>line</field>
  2607 + <condition>&#x3d;</condition>
  2608 + <name2/>
  2609 + </key>
  2610 + <value>
  2611 + <name>up_out_timer</name>
  2612 + <rename>up_out_timer</rename>
  2613 + <default/>
  2614 + <type>Number</type>
  2615 + </value>
  2616 + <value>
  2617 + <name>up_out_mileage</name>
  2618 + <rename>up_out_mileage</rename>
  2619 + <default/>
  2620 + <type>Number</type>
  2621 + </value>
  2622 + <value>
  2623 + <name>down_out_timer</name>
  2624 + <rename>down_out_timer</rename>
  2625 + <default/>
  2626 + <type>Number</type>
  2627 + </value>
  2628 + <value>
  2629 + <name>down_out_mileage</name>
  2630 + <rename>down_out_mileage</rename>
  2631 + <default/>
  2632 + <type>Number</type>
  2633 + </value>
  2634 + </lookup>
  2635 + <cluster_schema/>
  2636 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2637 + <xloc>335</xloc>
  2638 + <yloc>763</yloc>
  2639 + <draw>Y</draw>
  2640 + </GUI>
  2641 + </step>
  2642 +
  2643 + <step>
  2644 + <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x8fdb;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
  2645 + <type>DBLookup</type>
  2646 + <description/>
  2647 + <distribute>Y</distribute>
  2648 + <custom_distribution/>
  2649 + <copies>1</copies>
  2650 + <partitioning>
  2651 + <method>none</method>
  2652 + <schema_name/>
  2653 + </partitioning>
  2654 + <connection>control_jndi</connection>
  2655 + <cache>N</cache>
  2656 + <cache_load_all>N</cache_load_all>
  2657 + <cache_size>0</cache_size>
  2658 + <lookup>
  2659 + <schema/>
  2660 + <table>bsth_c_line_information</table>
  2661 + <orderby/>
  2662 + <fail_on_multiple>N</fail_on_multiple>
  2663 + <eat_row_on_failure>N</eat_row_on_failure>
  2664 + <key>
  2665 + <name>xlid</name>
  2666 + <field>line</field>
  2667 + <condition>&#x3d;</condition>
  2668 + <name2/>
  2669 + </key>
  2670 + <value>
  2671 + <name>up_in_mileage</name>
  2672 + <rename>up_in_mileage</rename>
  2673 + <default/>
  2674 + <type>Number</type>
  2675 + </value>
  2676 + <value>
  2677 + <name>up_in_timer</name>
  2678 + <rename>up_in_timer</rename>
  2679 + <default/>
  2680 + <type>Number</type>
  2681 + </value>
  2682 + <value>
  2683 + <name>down_in_mileage</name>
  2684 + <rename>down_in_mileage</rename>
  2685 + <default/>
  2686 + <type>Number</type>
  2687 + </value>
  2688 + <value>
  2689 + <name>down_in_timer</name>
  2690 + <rename>down_in_timer</rename>
  2691 + <default/>
  2692 + <type>Number</type>
  2693 + </value>
  2694 + </lookup>
  2695 + <cluster_schema/>
  2696 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2697 + <xloc>553</xloc>
  2698 + <yloc>1004</yloc>
  2699 + <draw>Y</draw>
  2700 + </GUI>
  2701 + </step>
  2702 +
  2703 + <step>
  2704 + <name>&#x67e5;&#x627e;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;</name>
  2705 + <type>DBLookup</type>
  2706 + <description/>
  2707 + <distribute>Y</distribute>
  2708 + <custom_distribution/>
  2709 + <copies>1</copies>
  2710 + <partitioning>
  2711 + <method>none</method>
  2712 + <schema_name/>
  2713 + </partitioning>
  2714 + <connection>control_jndi</connection>
  2715 + <cache>N</cache>
  2716 + <cache_load_all>N</cache_load_all>
  2717 + <cache_size>0</cache_size>
  2718 + <lookup>
  2719 + <schema/>
  2720 + <table>bsth_c_ls_stationroute</table>
  2721 + <orderby/>
  2722 + <fail_on_multiple>N</fail_on_multiple>
  2723 + <eat_row_on_failure>N</eat_row_on_failure>
  2724 + <key>
  2725 + <name>xlid</name>
  2726 + <field>line</field>
  2727 + <condition>&#x3d;</condition>
  2728 + <name2/>
  2729 + </key>
  2730 + <key>
  2731 + <name>version</name>
  2732 + <field>versions</field>
  2733 + <condition>&#x3d;</condition>
  2734 + <name2/>
  2735 + </key>
  2736 + <key>
  2737 + <name>sxx</name>
  2738 + <field>directions</field>
  2739 + <condition>&#x3d;</condition>
  2740 + <name2/>
  2741 + </key>
  2742 + <key>
  2743 + <name>endZdtype</name>
  2744 + <field>station_mark</field>
  2745 + <condition>&#x3d;</condition>
  2746 + <name2/>
  2747 + </key>
  2748 + <key>
  2749 + <name>destory</name>
  2750 + <field>destroy</field>
  2751 + <condition>&#x3d;</condition>
  2752 + <name2/>
  2753 + </key>
  2754 + <value>
  2755 + <name>station_name</name>
  2756 + <rename>zdzname</rename>
  2757 + <default/>
  2758 + <type>String</type>
  2759 + </value>
  2760 + <value>
  2761 + <name>station</name>
  2762 + <rename>zdzid</rename>
  2763 + <default/>
  2764 + <type>Integer</type>
  2765 + </value>
  2766 + <value>
  2767 + <name>station_code</name>
  2768 + <rename>zdzcode</rename>
  2769 + <default/>
  2770 + <type>String</type>
  2771 + </value>
  2772 + </lookup>
  2773 + <cluster_schema/>
  2774 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2775 + <xloc>280</xloc>
  2776 + <yloc>404</yloc>
  2777 + <draw>Y</draw>
  2778 + </GUI>
  2779 + </step>
  2780 +
  2781 + <step>
  2782 + <name>&#x67e5;&#x627e;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</name>
  2783 + <type>DBLookup</type>
  2784 + <description/>
  2785 + <distribute>Y</distribute>
  2786 + <custom_distribution/>
  2787 + <copies>1</copies>
  2788 + <partitioning>
  2789 + <method>none</method>
  2790 + <schema_name/>
  2791 + </partitioning>
  2792 + <connection>control_jndi</connection>
  2793 + <cache>N</cache>
  2794 + <cache_load_all>N</cache_load_all>
  2795 + <cache_size>0</cache_size>
  2796 + <lookup>
  2797 + <schema/>
  2798 + <table>bsth_c_ls_stationroute</table>
  2799 + <orderby/>
  2800 + <fail_on_multiple>N</fail_on_multiple>
  2801 + <eat_row_on_failure>N</eat_row_on_failure>
  2802 + <key>
  2803 + <name>xlid</name>
  2804 + <field>line</field>
  2805 + <condition>&#x3d;</condition>
  2806 + <name2/>
  2807 + </key>
  2808 + <key>
  2809 + <name>version</name>
  2810 + <field>versions</field>
  2811 + <condition>&#x3d;</condition>
  2812 + <name2/>
  2813 + </key>
  2814 + <key>
  2815 + <name>qdzname</name>
  2816 + <field>station_name</field>
  2817 + <condition>LIKE</condition>
  2818 + <name2/>
  2819 + </key>
  2820 + <key>
  2821 + <name>sendZdtype</name>
  2822 + <field>station_mark</field>
  2823 + <condition>&#x3d;</condition>
  2824 + <name2/>
  2825 + </key>
  2826 + <key>
  2827 + <name>destory</name>
  2828 + <field>destroy</field>
  2829 + <condition>&#x3d;</condition>
  2830 + <name2/>
  2831 + </key>
  2832 + <value>
  2833 + <name>station</name>
  2834 + <rename>qdzid</rename>
  2835 + <default/>
  2836 + <type>Integer</type>
  2837 + </value>
  2838 + <value>
  2839 + <name>directions</name>
  2840 + <rename>sxx</rename>
  2841 + <default/>
  2842 + <type>Integer</type>
  2843 + </value>
  2844 + <value>
  2845 + <name>station_code</name>
  2846 + <rename>qdzcode</rename>
  2847 + <default/>
  2848 + <type>String</type>
  2849 + </value>
  2850 + <value>
  2851 + <name>station_name</name>
  2852 + <rename>qdzname_</rename>
  2853 + <default/>
  2854 + <type>String</type>
  2855 + </value>
  2856 + </lookup>
  2857 + <cluster_schema/>
  2858 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2859 + <xloc>430</xloc>
  2860 + <yloc>403</yloc>
  2861 + <draw>Y</draw>
  2862 + </GUI>
  2863 + </step>
  2864 +
  2865 + <step>
  2866 + <name>&#x67e5;&#x627e;&#x8def;&#x724c;&#x5173;&#x8054;</name>
  2867 + <type>DBLookup</type>
  2868 + <description/>
  2869 + <distribute>Y</distribute>
  2870 + <custom_distribution/>
  2871 + <copies>1</copies>
  2872 + <partitioning>
  2873 + <method>none</method>
  2874 + <schema_name/>
  2875 + </partitioning>
  2876 + <connection>control_jndi</connection>
  2877 + <cache>N</cache>
  2878 + <cache_load_all>N</cache_load_all>
  2879 + <cache_size>0</cache_size>
  2880 + <lookup>
  2881 + <schema/>
  2882 + <table>bsth_c_s_gbi</table>
  2883 + <orderby/>
  2884 + <fail_on_multiple>N</fail_on_multiple>
  2885 + <eat_row_on_failure>N</eat_row_on_failure>
  2886 + <key>
  2887 + <name>xlid</name>
  2888 + <field>xl</field>
  2889 + <condition>&#x3d;</condition>
  2890 + <name2/>
  2891 + </key>
  2892 + <key>
  2893 + <name>lp</name>
  2894 + <field>lp_name</field>
  2895 + <condition>&#x3d;</condition>
  2896 + <name2/>
  2897 + </key>
  2898 + <key>
  2899 + <name>iscanceled</name>
  2900 + <field>is_cancel</field>
  2901 + <condition>&#x3d;</condition>
  2902 + <name2/>
  2903 + </key>
  2904 + <value>
  2905 + <name>id</name>
  2906 + <rename>lpid</rename>
  2907 + <default/>
  2908 + <type>Integer</type>
  2909 + </value>
  2910 + </lookup>
  2911 + <cluster_schema/>
  2912 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2913 + <xloc>1013</xloc>
  2914 + <yloc>221</yloc>
  2915 + <draw>Y</draw>
  2916 + </GUI>
  2917 + </step>
  2918 +
  2919 + <step>
  2920 + <name>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ebf;&#x8def;&#x65b9;&#x5411;</name>
  2921 + <type>DBLookup</type>
  2922 + <description/>
  2923 + <distribute>Y</distribute>
  2924 + <custom_distribution/>
  2925 + <copies>1</copies>
  2926 + <partitioning>
  2927 + <method>none</method>
  2928 + <schema_name/>
  2929 + </partitioning>
  2930 + <connection>control_jndi</connection>
  2931 + <cache>N</cache>
  2932 + <cache_load_all>N</cache_load_all>
  2933 + <cache_size>0</cache_size>
  2934 + <lookup>
  2935 + <schema/>
  2936 + <table>bsth_c_ls_stationroute</table>
  2937 + <orderby/>
  2938 + <fail_on_multiple>N</fail_on_multiple>
  2939 + <eat_row_on_failure>N</eat_row_on_failure>
  2940 + <key>
  2941 + <name>xlid</name>
  2942 + <field>line</field>
  2943 + <condition>&#x3d;</condition>
  2944 + <name2/>
  2945 + </key>
  2946 + <key>
  2947 + <name>version</name>
  2948 + <field>versions</field>
  2949 + <condition>&#x3d;</condition>
  2950 + <name2/>
  2951 + </key>
  2952 + <key>
  2953 + <name>startZdtype_calcu</name>
  2954 + <field>station_mark</field>
  2955 + <condition>&#x3d;</condition>
  2956 + <name2/>
  2957 + </key>
  2958 + <key>
  2959 + <name>qdzname_calcu</name>
  2960 + <field>station_name</field>
  2961 + <condition>LIKE</condition>
  2962 + <name2/>
  2963 + </key>
  2964 + <key>
  2965 + <name>destory</name>
  2966 + <field>destroy</field>
  2967 + <condition>&#x3d;</condition>
  2968 + <name2/>
  2969 + </key>
  2970 + <value>
  2971 + <name>directions</name>
  2972 + <rename>sxx</rename>
  2973 + <default/>
  2974 + <type>String</type>
  2975 + </value>
  2976 + </lookup>
  2977 + <cluster_schema/>
  2978 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2979 + <xloc>548</xloc>
  2980 + <yloc>610</yloc>
  2981 + <draw>Y</draw>
  2982 + </GUI>
  2983 + </step>
  2984 +
  2985 + <step>
  2986 + <name>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ec8;&#x70b9;&#x7ad9;&#xff0c;&#x5e76;&#x4f5c;&#x4e3a;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x7684;&#x8d77;&#x70b9;&#x7ad9;</name>
  2987 + <type>DBLookup</type>
  2988 + <description/>
  2989 + <distribute>Y</distribute>
  2990 + <custom_distribution/>
  2991 + <copies>1</copies>
  2992 + <partitioning>
  2993 + <method>none</method>
  2994 + <schema_name/>
  2995 + </partitioning>
  2996 + <connection>control_jndi</connection>
  2997 + <cache>N</cache>
  2998 + <cache_load_all>Y</cache_load_all>
  2999 + <cache_size>0</cache_size>
  3000 + <lookup>
  3001 + <schema/>
  3002 + <table>bsth_c_ls_stationroute</table>
  3003 + <orderby/>
  3004 + <fail_on_multiple>N</fail_on_multiple>
  3005 + <eat_row_on_failure>N</eat_row_on_failure>
  3006 + <key>
  3007 + <name>xlid</name>
  3008 + <field>line</field>
  3009 + <condition>&#x3d;</condition>
  3010 + <name2/>
  3011 + </key>
  3012 + <key>
  3013 + <name>version</name>
  3014 + <field>versions</field>
  3015 + <condition>&#x3d;</condition>
  3016 + <name2/>
  3017 + </key>
  3018 + <key>
  3019 + <name>endZdtype_calcu</name>
  3020 + <field>station_mark</field>
  3021 + <condition>&#x3d;</condition>
  3022 + <name2/>
  3023 + </key>
  3024 + <key>
  3025 + <name>sxx</name>
  3026 + <field>directions</field>
  3027 + <condition>&#x3d;</condition>
  3028 + <name2/>
  3029 + </key>
  3030 + <key>
  3031 + <name>destory</name>
  3032 + <field>destroy</field>
  3033 + <condition>&#x3d;</condition>
  3034 + <name2/>
  3035 + </key>
  3036 + <value>
  3037 + <name>station_name</name>
  3038 + <rename>zdzname_calcu</rename>
  3039 + <default/>
  3040 + <type>Integer</type>
  3041 + </value>
  3042 + </lookup>
  3043 + <cluster_schema/>
  3044 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3045 + <xloc>550</xloc>
  3046 + <yloc>701</yloc>
  3047 + <draw>Y</draw>
  3048 + </GUI>
  3049 + </step>
  3050 +
  3051 + <step>
  3052 + <name>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</name>
  3053 + <type>DBLookup</type>
  3054 + <description/>
  3055 + <distribute>Y</distribute>
  3056 + <custom_distribution/>
  3057 + <copies>1</copies>
  3058 + <partitioning>
  3059 + <method>none</method>
  3060 + <schema_name/>
  3061 + </partitioning>
  3062 + <connection>control_jndi</connection>
  3063 + <cache>N</cache>
  3064 + <cache_load_all>N</cache_load_all>
  3065 + <cache_size>0</cache_size>
  3066 + <lookup>
  3067 + <schema/>
  3068 + <table>bsth_c_ls_stationroute</table>
  3069 + <orderby/>
  3070 + <fail_on_multiple>N</fail_on_multiple>
  3071 + <eat_row_on_failure>N</eat_row_on_failure>
  3072 + <key>
  3073 + <name>xlid</name>
  3074 + <field>line</field>
  3075 + <condition>&#x3d;</condition>
  3076 + <name2/>
  3077 + </key>
  3078 + <key>
  3079 + <name>version</name>
  3080 + <field>versions</field>
  3081 + <condition>&#x3d;</condition>
  3082 + <name2/>
  3083 + </key>
  3084 + <key>
  3085 + <name>zdzname_calcu</name>
  3086 + <field>station_name</field>
  3087 + <condition>&#x3d;</condition>
  3088 + <name2/>
  3089 + </key>
  3090 + <key>
  3091 + <name>startZdtype_calcu</name>
  3092 + <field>station_mark</field>
  3093 + <condition>&#x3d;</condition>
  3094 + <name2/>
  3095 + </key>
  3096 + <key>
  3097 + <name>destory</name>
  3098 + <field>destroy</field>
  3099 + <condition>&#x3d;</condition>
  3100 + <name2/>
  3101 + </key>
  3102 + <value>
  3103 + <name>directions</name>
  3104 + <rename>sxx2</rename>
  3105 + <default/>
  3106 + <type>Integer</type>
  3107 + </value>
  3108 + <value>
  3109 + <name>station</name>
  3110 + <rename>qdzid</rename>
  3111 + <default/>
  3112 + <type>Integer</type>
  3113 + </value>
  3114 + <value>
  3115 + <name>station_code</name>
  3116 + <rename>qdzcode</rename>
  3117 + <default/>
  3118 + <type>String</type>
  3119 + </value>
  3120 + <value>
  3121 + <name>station_name</name>
  3122 + <rename>qname</rename>
  3123 + <default/>
  3124 + <type>String</type>
  3125 + </value>
  3126 + </lookup>
  3127 + <cluster_schema/>
  3128 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3129 + <xloc>551</xloc>
  3130 + <yloc>782</yloc>
  3131 + <draw>Y</draw>
  3132 + </GUI>
  3133 + </step>
  3134 +
  3135 + <step>
  3136 + <name>&#x6b63;&#x5e38;&#x73ed;&#x6b21;_&#x5904;&#x7406;&#x6570;&#x636e;</name>
  3137 + <type>ScriptValueMod</type>
  3138 + <description/>
  3139 + <distribute>Y</distribute>
  3140 + <custom_distribution/>
  3141 + <copies>1</copies>
  3142 + <partitioning>
  3143 + <method>none</method>
  3144 + <schema_name/>
  3145 + </partitioning>
  3146 + <compatible>N</compatible>
  3147 + <optimizationLevel>9</optimizationLevel>
  3148 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  3149 + <jsScript_name>Script 1</jsScript_name>
  3150 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;&#x2f;&#x2f; &#x6dfb;&#x52a0;&#x7ad9;&#x70b9;&#x6807;&#x8bc6;&#xa;var sendZdtype &#x3d; &#x27;B&#x27;&#x3b;&#xa;var endZdtype &#x3d; &#x27;E&#x27;&#x3b;&#xa;&#xa;var destory &#x3d; 0&#x3b; &#x2f;&#x2f; &#x672a;&#x64a4;&#x9500;flag</jsScript_script>
  3151 + </jsScript> </jsScripts> <fields> <field> <name>sendZdtype</name>
  3152 + <rename>sendZdtype</rename>
  3153 + <type>String</type>
  3154 + <length>-1</length>
  3155 + <precision>-1</precision>
  3156 + <replace>N</replace>
  3157 + </field> <field> <name>endZdtype</name>
  3158 + <rename>endZdtype</rename>
  3159 + <type>String</type>
  3160 + <length>-1</length>
  3161 + <precision>-1</precision>
  3162 + <replace>N</replace>
  3163 + </field> <field> <name>destory</name>
  3164 + <rename>destory</rename>
  3165 + <type>Integer</type>
  3166 + <length>-1</length>
  3167 + <precision>-1</precision>
  3168 + <replace>N</replace>
  3169 + </field> </fields> <cluster_schema/>
  3170 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3171 + <xloc>588</xloc>
  3172 + <yloc>403</yloc>
  3173 + <draw>Y</draw>
  3174 + </GUI>
  3175 + </step>
  3176 +
  3177 + <step>
  3178 + <name>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</name>
  3179 + <type>Dummy</type>
  3180 + <description/>
  3181 + <distribute>Y</distribute>
  3182 + <custom_distribution/>
  3183 + <copies>1</copies>
  3184 + <partitioning>
  3185 + <method>none</method>
  3186 + <schema_name/>
  3187 + </partitioning>
  3188 + <cluster_schema/>
  3189 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3190 + <xloc>725</xloc>
  3191 + <yloc>404</yloc>
  3192 + <draw>Y</draw>
  3193 + </GUI>
  3194 + </step>
  3195 +
  3196 + <step>
  3197 + <name>&#x6dfb;&#x52a0;&#x53d1;&#x8f66;&#x987a;&#x5e8f;&#x53f7;</name>
  3198 + <type>GroupBy</type>
  3199 + <description/>
  3200 + <distribute>Y</distribute>
  3201 + <custom_distribution/>
  3202 + <copies>1</copies>
  3203 + <partitioning>
  3204 + <method>none</method>
  3205 + <schema_name/>
  3206 + </partitioning>
  3207 + <all_rows>Y</all_rows>
  3208 + <ignore_aggregate>N</ignore_aggregate>
  3209 + <field_ignore/>
  3210 + <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
  3211 + <prefix>grp</prefix>
  3212 + <add_linenr>Y</add_linenr>
  3213 + <linenr_fieldname>fcno</linenr_fieldname>
  3214 + <give_back_row>N</give_back_row>
  3215 + <group>
  3216 + <field>
  3217 + <name>lp</name>
  3218 + </field>
  3219 + </group>
  3220 + <fields>
  3221 + </fields>
  3222 + <cluster_schema/>
  3223 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3224 + <xloc>442</xloc>
  3225 + <yloc>44</yloc>
  3226 + <draw>Y</draw>
  3227 + </GUI>
  3228 + </step>
  3229 +
  3230 + <step>
  3231 + <name>&#x6dfb;&#x52a0;&#x5bf9;&#x5e94;&#x73ed;&#x6b21;&#x6570;</name>
  3232 + <type>GroupBy</type>
  3233 + <description/>
  3234 + <distribute>Y</distribute>
  3235 + <custom_distribution/>
  3236 + <copies>1</copies>
  3237 + <partitioning>
  3238 + <method>none</method>
  3239 + <schema_name/>
  3240 + </partitioning>
  3241 + <all_rows>Y</all_rows>
  3242 + <ignore_aggregate>N</ignore_aggregate>
  3243 + <field_ignore/>
  3244 + <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
  3245 + <prefix>grp</prefix>
  3246 + <add_linenr>Y</add_linenr>
  3247 + <linenr_fieldname>bcs</linenr_fieldname>
  3248 + <give_back_row>N</give_back_row>
  3249 + <group>
  3250 + </group>
  3251 + <fields>
  3252 + </fields>
  3253 + <cluster_schema/>
  3254 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3255 + <xloc>692</xloc>
  3256 + <yloc>44</yloc>
  3257 + <draw>Y</draw>
  3258 + </GUI>
  3259 + </step>
  3260 +
  3261 + <step>
  3262 + <name>&#x73ed;&#x578b;&#x8868;&#x6570;&#x636e;</name>
  3263 + <type>ScriptValueMod</type>
  3264 + <description/>
  3265 + <distribute>Y</distribute>
  3266 + <custom_distribution/>
  3267 + <copies>1</copies>
  3268 + <partitioning>
  3269 + <method>none</method>
  3270 + <schema_name/>
  3271 + </partitioning>
  3272 + <compatible>N</compatible>
  3273 + <optimizationLevel>9</optimizationLevel>
  3274 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  3275 + <jsScript_name>Script 1</jsScript_name>
  3276 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var update_version &#x3d; 1&#x3b; &#x2f;&#x2f; &#x6570;&#x636e;version&#xa;var update_bx1 &#x3d; &#x22;_null_&#x22;&#x3b; &#x2f;&#x2f; &#x73ed;&#x578b;1&#xa;var update_bx2 &#x3d; &#x22;_null_&#x22;&#x3b; &#x2f;&#x2f; &#x73ed;&#x578b;2&#xa;var update_pds &#x3d; &#x22;0&#x22;&#x3b; &#x2f;&#x2f; &#x914d;&#x6863;&#x6570;</jsScript_script>
  3277 + </jsScript> </jsScripts> <fields> <field> <name>update_version</name>
  3278 + <rename>update_version</rename>
  3279 + <type>Integer</type>
  3280 + <length>-1</length>
  3281 + <precision>-1</precision>
  3282 + <replace>N</replace>
  3283 + </field> <field> <name>update_bx1</name>
  3284 + <rename>update_bx1</rename>
  3285 + <type>String</type>
  3286 + <length>-1</length>
  3287 + <precision>-1</precision>
  3288 + <replace>N</replace>
  3289 + </field> <field> <name>update_bx2</name>
  3290 + <rename>update_bx2</rename>
  3291 + <type>String</type>
  3292 + <length>-1</length>
  3293 + <precision>-1</precision>
  3294 + <replace>N</replace>
  3295 + </field> <field> <name>update_pds</name>
  3296 + <rename>update_pds</rename>
  3297 + <type>String</type>
  3298 + <length>-1</length>
  3299 + <precision>-1</precision>
  3300 + <replace>N</replace>
  3301 + </field> </fields> <cluster_schema/>
  3302 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3303 + <xloc>653</xloc>
  3304 + <yloc>332</yloc>
  3305 + <draw>Y</draw>
  3306 + </GUI>
  3307 + </step>
  3308 +
  3309 + <step>
  3310 + <name>&#x73ed;&#x6b21;&#x6570;&#x636e;&#x8303;&#x5f0f;&#x5316;</name>
  3311 + <type>Normaliser</type>
  3312 + <description/>
  3313 + <distribute>Y</distribute>
  3314 + <custom_distribution/>
  3315 + <copies>1</copies>
  3316 + <partitioning>
  3317 + <method>none</method>
  3318 + <schema_name/>
  3319 + </partitioning>
  3320 + <typefield>&#x7ad9;&#x70b9;&#x540d;&#x79f0;</typefield>
  3321 + <fields> </fields> <cluster_schema/>
  3322 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3323 + <xloc>248</xloc>
  3324 + <yloc>44</yloc>
  3325 + <draw>Y</draw>
  3326 + </GUI>
  3327 + </step>
  3328 +
  3329 + <step>
  3330 + <name>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178;</name>
  3331 + <type>ValueMapper</type>
  3332 + <description/>
  3333 + <distribute>Y</distribute>
  3334 + <custom_distribution/>
  3335 + <copies>1</copies>
  3336 + <partitioning>
  3337 + <method>none</method>
  3338 + <schema_name/>
  3339 + </partitioning>
  3340 + <field_to_use>bctype</field_to_use>
  3341 + <target_field>bctype_code</target_field>
  3342 + <non_match_default>&#x672a;&#x77e5;&#x7c7b;&#x578b;</non_match_default>
  3343 + <fields>
  3344 + <field>
  3345 + <source_value>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</source_value>
  3346 + <target_value>normal</target_value>
  3347 + </field>
  3348 + <field>
  3349 + <source_value>&#x51fa;&#x573a;</source_value>
  3350 + <target_value>out</target_value>
  3351 + </field>
  3352 + <field>
  3353 + <source_value>&#x8fdb;&#x573a;</source_value>
  3354 + <target_value>in</target_value>
  3355 + </field>
  3356 + <field>
  3357 + <source_value>&#x52a0;&#x6cb9;</source_value>
  3358 + <target_value>oil</target_value>
  3359 + </field>
  3360 + <field>
  3361 + <source_value>&#x4e34;&#x52a0;</source_value>
  3362 + <target_value>temp</target_value>
  3363 + </field>
  3364 + <field>
  3365 + <source_value>&#x533a;&#x95f4;</source_value>
  3366 + <target_value>region</target_value>
  3367 + </field>
  3368 + <field>
  3369 + <source_value>&#x653e;&#x7a7a;</source_value>
  3370 + <target_value>venting</target_value>
  3371 + </field>
  3372 + <field>
  3373 + <source_value>&#x653e;&#x5927;&#x7ad9;</source_value>
  3374 + <target_value>major</target_value>
  3375 + </field>
  3376 + </fields>
  3377 + <cluster_schema/>
  3378 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3379 + <xloc>149</xloc>
  3380 + <yloc>491</yloc>
  3381 + <draw>Y</draw>
  3382 + </GUI>
  3383 + </step>
  3384 +
  3385 + <step>
  3386 + <name>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 2</name>
  3387 + <type>ValueMapper</type>
  3388 + <description/>
  3389 + <distribute>Y</distribute>
  3390 + <custom_distribution/>
  3391 + <copies>1</copies>
  3392 + <partitioning>
  3393 + <method>none</method>
  3394 + <schema_name/>
  3395 + </partitioning>
  3396 + <field_to_use>bctype</field_to_use>
  3397 + <target_field>bctype_code</target_field>
  3398 + <non_match_default>&#x672a;&#x77e5;&#x7c7b;&#x578b;</non_match_default>
  3399 + <fields>
  3400 + <field>
  3401 + <source_value>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</source_value>
  3402 + <target_value>normal</target_value>
  3403 + </field>
  3404 + <field>
  3405 + <source_value>&#x51fa;&#x573a;</source_value>
  3406 + <target_value>out</target_value>
  3407 + </field>
  3408 + <field>
  3409 + <source_value>&#x8fdb;&#x573a;</source_value>
  3410 + <target_value>in</target_value>
  3411 + </field>
  3412 + <field>
  3413 + <source_value>&#x52a0;&#x6cb9;</source_value>
  3414 + <target_value>oil</target_value>
  3415 + </field>
  3416 + <field>
  3417 + <source_value>&#x4e34;&#x52a0;</source_value>
  3418 + <target_value>temp</target_value>
  3419 + </field>
  3420 + <field>
  3421 + <source_value>&#x533a;&#x95f4;</source_value>
  3422 + <target_value>region</target_value>
  3423 + </field>
  3424 + <field>
  3425 + <source_value>&#x653e;&#x7a7a;</source_value>
  3426 + <target_value>venting</target_value>
  3427 + </field>
  3428 + <field>
  3429 + <source_value>&#x653e;&#x5927;&#x7ad9;</source_value>
  3430 + <target_value>major</target_value>
  3431 + </field>
  3432 + </fields>
  3433 + <cluster_schema/>
  3434 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3435 + <xloc>333</xloc>
  3436 + <yloc>681</yloc>
  3437 + <draw>Y</draw>
  3438 + </GUI>
  3439 + </step>
  3440 +
  3441 + <step>
  3442 + <name>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 3</name>
  3443 + <type>ValueMapper</type>
  3444 + <description/>
  3445 + <distribute>Y</distribute>
  3446 + <custom_distribution/>
  3447 + <copies>1</copies>
  3448 + <partitioning>
  3449 + <method>none</method>
  3450 + <schema_name/>
  3451 + </partitioning>
  3452 + <field_to_use>bctype</field_to_use>
  3453 + <target_field>bctype_code</target_field>
  3454 + <non_match_default>&#x672a;&#x77e5;&#x7c7b;&#x578b;</non_match_default>
  3455 + <fields>
  3456 + <field>
  3457 + <source_value>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</source_value>
  3458 + <target_value>normal</target_value>
  3459 + </field>
  3460 + <field>
  3461 + <source_value>&#x51fa;&#x573a;</source_value>
  3462 + <target_value>out</target_value>
  3463 + </field>
  3464 + <field>
  3465 + <source_value>&#x8fdb;&#x573a;</source_value>
  3466 + <target_value>in</target_value>
  3467 + </field>
  3468 + <field>
  3469 + <source_value>&#x52a0;&#x6cb9;</source_value>
  3470 + <target_value>oil</target_value>
  3471 + </field>
  3472 + <field>
  3473 + <source_value>&#x4e34;&#x52a0;</source_value>
  3474 + <target_value>temp</target_value>
  3475 + </field>
  3476 + <field>
  3477 + <source_value>&#x533a;&#x95f4;</source_value>
  3478 + <target_value>region</target_value>
  3479 + </field>
  3480 + <field>
  3481 + <source_value>&#x653e;&#x7a7a;</source_value>
  3482 + <target_value>venting</target_value>
  3483 + </field>
  3484 + <field>
  3485 + <source_value>&#x653e;&#x5927;&#x7ad9;</source_value>
  3486 + <target_value>major</target_value>
  3487 + </field>
  3488 + </fields>
  3489 + <cluster_schema/>
  3490 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3491 + <xloc>551</xloc>
  3492 + <yloc>928</yloc>
  3493 + <draw>Y</draw>
  3494 + </GUI>
  3495 + </step>
  3496 +
  3497 + <step>
  3498 + <name>&#x7ad9;&#x70b9;&#x8def;&#x7531;&#x7248;&#x672c;&#x7c7b;&#x578b;</name>
  3499 + <type>SelectValues</type>
  3500 + <description/>
  3501 + <distribute>N</distribute>
  3502 + <custom_distribution/>
  3503 + <copies>1</copies>
  3504 + <partitioning>
  3505 + <method>none</method>
  3506 + <schema_name/>
  3507 + </partitioning>
  3508 + <fields> <select_unspecified>Y</select_unspecified>
  3509 + <meta> <name>zdlyversion_</name>
  3510 + <rename>version</rename>
  3511 + <type>Integer</type>
  3512 + <length>-2</length>
  3513 + <precision>-2</precision>
  3514 + <conversion_mask/>
  3515 + <date_format_lenient>false</date_format_lenient>
  3516 + <date_format_locale/>
  3517 + <date_format_timezone/>
  3518 + <lenient_string_to_number>false</lenient_string_to_number>
  3519 + <encoding/>
  3520 + <decimal_symbol/>
  3521 + <grouping_symbol/>
  3522 + <currency_symbol/>
  3523 + <storage_type/>
  3524 + </meta> </fields> <cluster_schema/>
  3525 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3526 + <xloc>1016</xloc>
  3527 + <yloc>305</yloc>
  3528 + <draw>Y</draw>
  3529 + </GUI>
  3530 + </step>
  3531 +
  3532 + <step>
  3533 + <name>&#x7c7b;&#x578b;&#x4fee;&#x6b63;</name>
  3534 + <type>SelectValues</type>
  3535 + <description/>
  3536 + <distribute>Y</distribute>
  3537 + <custom_distribution/>
  3538 + <copies>1</copies>
  3539 + <partitioning>
  3540 + <method>none</method>
  3541 + <schema_name/>
  3542 + </partitioning>
  3543 + <fields> <select_unspecified>N</select_unspecified>
  3544 + <meta> <name>jhlc</name>
  3545 + <rename>jhlc</rename>
  3546 + <type>Number</type>
  3547 + <length>-2</length>
  3548 + <precision>-2</precision>
  3549 + <conversion_mask/>
  3550 + <date_format_lenient>false</date_format_lenient>
  3551 + <date_format_locale/>
  3552 + <date_format_timezone/>
  3553 + <lenient_string_to_number>false</lenient_string_to_number>
  3554 + <encoding/>
  3555 + <decimal_symbol/>
  3556 + <grouping_symbol/>
  3557 + <currency_symbol/>
  3558 + <storage_type/>
  3559 + </meta> <meta> <name>bcsj</name>
  3560 + <rename>bcsj</rename>
  3561 + <type>Integer</type>
  3562 + <length>-2</length>
  3563 + <precision>-2</precision>
  3564 + <conversion_mask/>
  3565 + <date_format_lenient>false</date_format_lenient>
  3566 + <date_format_locale/>
  3567 + <date_format_timezone/>
  3568 + <lenient_string_to_number>false</lenient_string_to_number>
  3569 + <encoding/>
  3570 + <decimal_symbol/>
  3571 + <grouping_symbol/>
  3572 + <currency_symbol/>
  3573 + <storage_type/>
  3574 + </meta> </fields> <cluster_schema/>
  3575 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3576 + <xloc>146</xloc>
  3577 + <yloc>768</yloc>
  3578 + <draw>Y</draw>
  3579 + </GUI>
  3580 + </step>
  3581 +
  3582 + <step>
  3583 + <name>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 2</name>
  3584 + <type>SelectValues</type>
  3585 + <description/>
  3586 + <distribute>Y</distribute>
  3587 + <custom_distribution/>
  3588 + <copies>1</copies>
  3589 + <partitioning>
  3590 + <method>none</method>
  3591 + <schema_name/>
  3592 + </partitioning>
  3593 + <fields> <select_unspecified>N</select_unspecified>
  3594 + <meta> <name>out_mileage</name>
  3595 + <rename>out_mileage</rename>
  3596 + <type>Number</type>
  3597 + <length>-2</length>
  3598 + <precision>-2</precision>
  3599 + <conversion_mask/>
  3600 + <date_format_lenient>false</date_format_lenient>
  3601 + <date_format_locale/>
  3602 + <date_format_timezone/>
  3603 + <lenient_string_to_number>false</lenient_string_to_number>
  3604 + <encoding/>
  3605 + <decimal_symbol/>
  3606 + <grouping_symbol/>
  3607 + <currency_symbol/>
  3608 + <storage_type/>
  3609 + </meta> <meta> <name>out_time</name>
  3610 + <rename>out_time</rename>
  3611 + <type>Integer</type>
  3612 + <length>-2</length>
  3613 + <precision>-2</precision>
  3614 + <conversion_mask/>
  3615 + <date_format_lenient>false</date_format_lenient>
  3616 + <date_format_locale/>
  3617 + <date_format_timezone/>
  3618 + <lenient_string_to_number>false</lenient_string_to_number>
  3619 + <encoding/>
  3620 + <decimal_symbol/>
  3621 + <grouping_symbol/>
  3622 + <currency_symbol/>
  3623 + <storage_type/>
  3624 + </meta> <meta> <name>sxx</name>
  3625 + <rename>sxx</rename>
  3626 + <type>Integer</type>
  3627 + <length>-2</length>
  3628 + <precision>-2</precision>
  3629 + <conversion_mask/>
  3630 + <date_format_lenient>false</date_format_lenient>
  3631 + <date_format_locale/>
  3632 + <date_format_timezone/>
  3633 + <lenient_string_to_number>false</lenient_string_to_number>
  3634 + <encoding/>
  3635 + <decimal_symbol/>
  3636 + <grouping_symbol/>
  3637 + <currency_symbol/>
  3638 + <storage_type/>
  3639 + </meta> </fields> <cluster_schema/>
  3640 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3641 + <xloc>338</xloc>
  3642 + <yloc>1008</yloc>
  3643 + <draw>Y</draw>
  3644 + </GUI>
  3645 + </step>
  3646 +
  3647 + <step>
  3648 + <name>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 3</name>
  3649 + <type>SelectValues</type>
  3650 + <description/>
  3651 + <distribute>Y</distribute>
  3652 + <custom_distribution/>
  3653 + <copies>1</copies>
  3654 + <partitioning>
  3655 + <method>none</method>
  3656 + <schema_name/>
  3657 + </partitioning>
  3658 + <fields> <select_unspecified>N</select_unspecified>
  3659 + <meta> <name>parade_mileage</name>
  3660 + <rename>parade_mileage</rename>
  3661 + <type>Number</type>
  3662 + <length>-2</length>
  3663 + <precision>-2</precision>
  3664 + <conversion_mask/>
  3665 + <date_format_lenient>false</date_format_lenient>
  3666 + <date_format_locale/>
  3667 + <date_format_timezone/>
  3668 + <lenient_string_to_number>false</lenient_string_to_number>
  3669 + <encoding/>
  3670 + <decimal_symbol/>
  3671 + <grouping_symbol/>
  3672 + <currency_symbol/>
  3673 + <storage_type/>
  3674 + </meta> <meta> <name>parade_time</name>
  3675 + <rename>parade_time</rename>
  3676 + <type>Integer</type>
  3677 + <length>-2</length>
  3678 + <precision>-2</precision>
  3679 + <conversion_mask/>
  3680 + <date_format_lenient>false</date_format_lenient>
  3681 + <date_format_locale/>
  3682 + <date_format_timezone/>
  3683 + <lenient_string_to_number>false</lenient_string_to_number>
  3684 + <encoding/>
  3685 + <decimal_symbol/>
  3686 + <grouping_symbol/>
  3687 + <currency_symbol/>
  3688 + <storage_type/>
  3689 + </meta> <meta> <name>sxx2</name>
  3690 + <rename>sxx2</rename>
  3691 + <type>Integer</type>
  3692 + <length>-2</length>
  3693 + <precision>-2</precision>
  3694 + <conversion_mask/>
  3695 + <date_format_lenient>false</date_format_lenient>
  3696 + <date_format_locale/>
  3697 + <date_format_timezone/>
  3698 + <lenient_string_to_number>false</lenient_string_to_number>
  3699 + <encoding/>
  3700 + <decimal_symbol/>
  3701 + <grouping_symbol/>
  3702 + <currency_symbol/>
  3703 + <storage_type/>
  3704 + </meta> </fields> <cluster_schema/>
  3705 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3706 + <xloc>847</xloc>
  3707 + <yloc>1003</yloc>
  3708 + <draw>Y</draw>
  3709 + </GUI>
  3710 + </step>
  3711 +
  3712 + <step>
  3713 + <name>&#x8ba1;&#x7b97;&#x73ed;&#x6b21;&#x7c7b;&#x578b;</name>
  3714 + <type>ValueMapper</type>
  3715 + <description/>
  3716 + <distribute>Y</distribute>
  3717 + <custom_distribution/>
  3718 + <copies>1</copies>
  3719 + <partitioning>
  3720 + <method>none</method>
  3721 + <schema_name/>
  3722 + </partitioning>
  3723 + <field_to_use>qdzname</field_to_use>
  3724 + <target_field>bctype</target_field>
  3725 + <non_match_default>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</non_match_default>
  3726 + <fields>
  3727 + <field>
  3728 + <source_value>&#x51fa;&#x573a;</source_value>
  3729 + <target_value>&#x51fa;&#x573a;</target_value>
  3730 + </field>
  3731 + <field>
  3732 + <source_value>&#x8fdb;&#x573a;</source_value>
  3733 + <target_value>&#x8fdb;&#x573a;</target_value>
  3734 + </field>
  3735 + </fields>
  3736 + <cluster_schema/>
  3737 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3738 + <xloc>1014</xloc>
  3739 + <yloc>401</yloc>
  3740 + <draw>Y</draw>
  3741 + </GUI>
  3742 + </step>
  3743 +
  3744 + <step>
  3745 + <name>&#x8bb0;&#x5f55;&#x5173;&#x8054; &#x28;&#x7b1b;&#x5361;&#x5c14;&#x8f93;&#x51fa;&#x29;</name>
  3746 + <type>JoinRows</type>
  3747 + <description/>
  3748 + <distribute>Y</distribute>
  3749 + <custom_distribution/>
  3750 + <copies>1</copies>
  3751 + <partitioning>
  3752 + <method>none</method>
  3753 + <schema_name/>
  3754 + </partitioning>
  3755 + <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
  3756 + <prefix>out</prefix>
  3757 + <cache_size>500</cache_size>
  3758 + <main/>
  3759 + <compare>
  3760 +<condition>
  3761 + <negated>N</negated>
  3762 + <leftvalue/>
  3763 + <function>&#x3d;</function>
  3764 + <rightvalue/>
  3765 + </condition>
  3766 + </compare>
  3767 + <cluster_schema/>
  3768 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3769 + <xloc>310</xloc>
  3770 + <yloc>133</yloc>
  3771 + <draw>Y</draw>
  3772 + </GUI>
  3773 + </step>
  3774 +
  3775 + <step>
  3776 + <name>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;&#xff08;&#x53d1;&#x8f66;&#x65f6;&#x95f4;&#x4e3a;&#x7a7a;&#xff09;</name>
  3777 + <type>FilterRows</type>
  3778 + <description/>
  3779 + <distribute>Y</distribute>
  3780 + <custom_distribution/>
  3781 + <copies>1</copies>
  3782 + <partitioning>
  3783 + <method>none</method>
  3784 + <schema_name/>
  3785 + </partitioning>
  3786 +<send_true_to/>
  3787 +<send_false_to/>
  3788 + <compare>
  3789 +<condition>
  3790 + <negated>N</negated>
  3791 + <leftvalue>sendtime</leftvalue>
  3792 + <function>IS NOT NULL</function>
  3793 + <rightvalue/>
  3794 + </condition>
  3795 + </compare>
  3796 + <cluster_schema/>
  3797 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3798 + <xloc>571</xloc>
  3799 + <yloc>44</yloc>
  3800 + <draw>Y</draw>
  3801 + </GUI>
  3802 + </step>
  3803 +
  3804 + <step>
  3805 + <name>&#x8fdb;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x8d77;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</name>
  3806 + <type>ScriptValueMod</type>
  3807 + <description/>
  3808 + <distribute>Y</distribute>
  3809 + <custom_distribution/>
  3810 + <copies>1</copies>
  3811 + <partitioning>
  3812 + <method>none</method>
  3813 + <schema_name/>
  3814 + </partitioning>
  3815 + <compatible>N</compatible>
  3816 + <optimizationLevel>9</optimizationLevel>
  3817 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  3818 + <jsScript_name>Script 1</jsScript_name>
  3819 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;&#x2f;&#x2f; &#x6dfb;&#x52a0;&#x7ad9;&#x70b9;&#x6807;&#x8bc6;&#xa;var cc_groups &#x3d; qdzgroups.split&#x28;&#x22;,&#x22;&#x29;&#x3b; &#x2f;&#x2f; &#x6240;&#x6709;&#x73ed;&#x6b21;&#x8d77;&#x70b9;&#x7ad9;&#x6570;&#x7ec4;&#xa;var qdzname_calcu &#x3d; cc_groups&#x5b;gno - 2&#x5d;&#x3b; &#x2f;&#x2f; &#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x7684;&#x8d77;&#x70b9;&#x7ad9;&#x662f;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ec8;&#x70b9;&#x7ad9;&#xff0c;&#x8fd9;&#x91cc;&#x53ea;&#x6709;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x8d77;&#x70b9;&#x7ad9;&#xff0c;&#x8fd8;&#x9700;&#x8981;&#x8ba1;&#x7b97;&#xa;var startZdtype_calcu &#x3d; &#x27;B&#x27;&#x3b;&#xa;var endZdtype_calcu &#x3d; &#x27;E&#x27;&#x3b;&#xa;&#xa;var destory &#x3d; 0&#x3b; &#x2f;&#x2f; &#x672a;&#x64a4;&#x9500;flag</jsScript_script>
  3820 + </jsScript> </jsScripts> <fields> <field> <name>qdzname_calcu</name>
  3821 + <rename>qdzname_calcu</rename>
  3822 + <type>String</type>
  3823 + <length>-1</length>
  3824 + <precision>-1</precision>
  3825 + <replace>N</replace>
  3826 + </field> <field> <name>startZdtype_calcu</name>
  3827 + <rename>startZdtype_calcu</rename>
  3828 + <type>String</type>
  3829 + <length>-1</length>
  3830 + <precision>-1</precision>
  3831 + <replace>N</replace>
  3832 + </field> <field> <name>endZdtype_calcu</name>
  3833 + <rename>endZdtype_calcu</rename>
  3834 + <type>String</type>
  3835 + <length>-1</length>
  3836 + <precision>-1</precision>
  3837 + <replace>N</replace>
  3838 + </field> <field> <name>destory</name>
  3839 + <rename>destory</rename>
  3840 + <type>Integer</type>
  3841 + <length>-1</length>
  3842 + <precision>-1</precision>
  3843 + <replace>N</replace>
  3844 + </field> </fields> <cluster_schema/>
  3845 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3846 + <xloc>754</xloc>
  3847 + <yloc>610</yloc>
  3848 + <draw>Y</draw>
  3849 + </GUI>
  3850 + </step>
  3851 +
  3852 + <step>
  3853 + <name>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</name>
  3854 + <type>Dummy</type>
  3855 + <description/>
  3856 + <distribute>Y</distribute>
  3857 + <custom_distribution/>
  3858 + <copies>1</copies>
  3859 + <partitioning>
  3860 + <method>none</method>
  3861 + <schema_name/>
  3862 + </partitioning>
  3863 + <cluster_schema/>
  3864 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3865 + <xloc>997</xloc>
  3866 + <yloc>606</yloc>
  3867 + <draw>Y</draw>
  3868 + </GUI>
  3869 + </step>
  3870 +
  3871 + <step_error_handling>
  3872 + <error>
  3873 + <source_step>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail</source_step>
  3874 + <target_step/>
  3875 + <is_enabled>Y</is_enabled>
  3876 + <nr_valuename>c1</nr_valuename>
  3877 + <descriptions_valuename>c2</descriptions_valuename>
  3878 + <fields_valuename>c3</fields_valuename>
  3879 + <codes_valuename>c4</codes_valuename>
  3880 + <max_errors/>
  3881 + <max_pct_errors/>
  3882 + <min_pct_rows/>
  3883 + </error>
  3884 + </step_error_handling>
  3885 + <slave-step-copy-partition-distribution>
  3886 +</slave-step-copy-partition-distribution>
  3887 + <slave_transformation>N</slave_transformation>
  3888 +
  3889 +</transformation>
... ...
src/main/resources/datatools/ktrs/ttinfodetailDataOutputMetaData.ktr renamed to src/main/resources/datatools/ktrs/zh/ttinfo-detail-metadata_for_export.ktr
1 1 <?xml version="1.0" encoding="UTF-8"?>
2 2 <transformation>
3 3 <info>
4   - <name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x5bfc;&#x51fa;&#x5143;&#x6570;&#x636e;</name>
  4 + <name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x5bfc;&#x51fa;&#x5143;&#x6570;&#x636e;_zh</name>
5 5 <description/>
6 6 <extended_description/>
7 7 <trans_version/>
... ... @@ -417,6 +417,33 @@
417 417 </attributes>
418 418 </connection>
419 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>
420 447 <name>test_control&#xff08;&#x672c;&#x673a;&#xff09;</name>
421 448 <server>127.0.0.1</server>
422 449 <type>MYSQL</type>
... ... @@ -429,6 +456,62 @@
429 456 <data_tablespace/>
430 457 <index_tablespace/>
431 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>
432 515 <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
433 516 <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
434 517 <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
... ... @@ -596,7 +679,7 @@
596 679 </connection>
597 680 <connection>
598 681 <name>&#x516c;&#x53f8;ygjw</name>
599   - <server>192.168.168.1</server>
  682 + <server>192.168.168.178</server>
600 683 <type>ORACLE</type>
601 684 <access>Native</access>
602 685 <database>orcl</database>
... ... @@ -618,6 +701,126 @@
618 701 <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
619 702 </attributes>
620 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>
621 824 <order>
622 825 <hop> <from>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x5206;&#x7ec4;&#x6570;&#x636e;</from><to>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;</to><enabled>Y</enabled> </hop>
623 826 <hop> <from>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;</from><to>&#x8ba1;&#x7b97;&#x7ad9;&#x70b9;</to><enabled>Y</enabled> </hop>
... ...
src/main/resources/datatools/ktrs/zh/ttinfo-detail-metadata_for_import.ktr 0 → 100644
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<transformation>
  3 + <info>
  4 + <name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x5bfc;&#x5165;&#x5143;&#x6570;&#x636e;_zh</name>
  5 + <description/>
  6 + <extended_description/>
  7 + <trans_version/>
  8 + <trans_type>Normal</trans_type>
  9 + <trans_status>0</trans_status>
  10 + <directory>&#x2f;</directory>
  11 + <parameters>
  12 + <parameter>
  13 + <name>erroroutputdir</name>
  14 + <default_value>&#x2f;Users&#x2f;xu&#x2f;resource&#x2f;project_code&#x2f;runtime_temp&#x2f;bsth_control_u_d_files&#x2f;erroroutput</default_value>
  15 + <description>ktr step&#x914d;&#x7f6e;&#x7684;&#x9519;&#x8bef;&#x8f93;&#x51fa;&#x76ee;&#x5f55;</description>
  16 + </parameter>
  17 + <parameter>
  18 + <name>excelfieldnames</name>
  19 + <default_value>&#x8def;&#x724c;,&#x51fa;&#x573a;,&#x4e1c;&#x5ddd;&#x8def;&#x5730;&#x94c1;&#x7ad9;1,&#x5858;&#x6cfe;&#x8def;&#x5c1a;&#x4e49;&#x8def;1,&#x4e1c;&#x5ddd;&#x8def;&#x5730;&#x94c1;&#x7ad9;2,&#x5858;&#x6cfe;&#x8def;&#x5c1a;&#x4e49;&#x8def;2,&#x4e1c;&#x5ddd;&#x8def;&#x5730;&#x94c1;&#x7ad9;3,&#x5858;&#x6cfe;&#x8def;&#x5c1a;&#x4e49;&#x8def;3,&#x4e1c;&#x5ddd;&#x8def;&#x5730;&#x94c1;&#x7ad9;4,&#x5858;&#x6cfe;&#x8def;&#x5c1a;&#x4e49;&#x8def;4,&#x4e1c;&#x5ddd;&#x8def;&#x5730;&#x94c1;&#x7ad9;5,&#x5858;&#x6cfe;&#x8def;&#x5c1a;&#x4e49;&#x8def;5,&#x4e1c;&#x5ddd;&#x8def;&#x5730;&#x94c1;&#x7ad9;6,&#x5858;&#x6cfe;&#x8def;&#x5c1a;&#x4e49;&#x8def;6,&#x4e1c;&#x5ddd;&#x8def;&#x5730;&#x94c1;&#x7ad9;7,&#x5858;&#x6cfe;&#x8def;&#x5c1a;&#x4e49;&#x8def;7,&#x4e1c;&#x5ddd;&#x8def;&#x5730;&#x94c1;&#x7ad9;8,&#x5858;&#x6cfe;&#x8def;&#x5c1a;&#x4e49;&#x8def;8,&#x4e1c;&#x5ddd;&#x8def;&#x5730;&#x94c1;&#x7ad9;9,&#x5858;&#x6cfe;&#x8def;&#x5c1a;&#x4e49;&#x8def;9,&#x4e1c;&#x5ddd;&#x8def;&#x5730;&#x94c1;&#x7ad9;10,&#x5858;&#x6cfe;&#x8def;&#x5c1a;&#x4e49;&#x8def;10,&#x8fdb;&#x573a;</default_value>
  20 + <description>&#x65f6;&#x523b;&#x8868;excel&#x8f93;&#x5165;&#x5b57;&#x6bb5;&#x540d;&#xff0c;&#x4ee5;&#x9017;&#x53f7;&#x8fde;&#x63a5;</description>
  21 + </parameter>
  22 + <parameter>
  23 + <name>filepath</name>
  24 + <default_value>&#x2f;Users&#x2f;xu&#x2f;resource&#x2f;project_code&#x2f;bsth_project&#x2f;bsth_control_etl&#x2f;&#x95f5;&#x884c;&#x516c;&#x4ea4;&#x2f;&#x95f5;&#x884c;26&#x8def;&#x65f6;&#x523b;&#x8868;160630&#x65f6;&#x523b;&#x8868;.xls</default_value>
  25 + <description>&#x5f85;&#x5904;&#x7406;&#x5bfc;&#x5165;&#x7684;excel&#x6587;&#x4ef6;</description>
  26 + </parameter>
  27 + <parameter>
  28 + <name>injectktrfile</name>
  29 + <default_value>&#x2f;Users&#x2f;xu&#x2f;resource&#x2f;project_code&#x2f;bsth_project&#x2f;bsth_control_parent&#x2f;bsth_control&#x2f;src&#x2f;main&#x2f;resources&#x2f;datatools&#x2f;ktrs&#x2f;ttinfodetailDataInput.ktr</default_value>
  30 + <description>&#x6ce8;&#x5165;&#x5143;&#x6570;&#x636e;&#x7684;ktr&#x6587;&#x4ef6;</description>
  31 + </parameter>
  32 + <parameter>
  33 + <name>lineinfoid</name>
  34 + <default_value>1000</default_value>
  35 + <description>&#x7ebf;&#x8def;&#x6807;&#x51c6;id</description>
  36 + </parameter>
  37 + <parameter>
  38 + <name>lineversion</name>
  39 + <default_value>-1</default_value>
  40 + <description>&#x7ebf;&#x8def;&#x7248;&#x672c;</description>
  41 + </parameter>
  42 + <parameter>
  43 + <name>normalizefieldnames</name>
  44 + <default_value>&#x51fa;&#x573a;,&#x4e1c;&#x5ddd;&#x8def;&#x5730;&#x94c1;&#x7ad9;1,&#x5858;&#x6cfe;&#x8def;&#x5c1a;&#x4e49;&#x8def;1,&#x4e1c;&#x5ddd;&#x8def;&#x5730;&#x94c1;&#x7ad9;2,&#x5858;&#x6cfe;&#x8def;&#x5c1a;&#x4e49;&#x8def;2,&#x4e1c;&#x5ddd;&#x8def;&#x5730;&#x94c1;&#x7ad9;3,&#x5858;&#x6cfe;&#x8def;&#x5c1a;&#x4e49;&#x8def;3,&#x4e1c;&#x5ddd;&#x8def;&#x5730;&#x94c1;&#x7ad9;4,&#x5858;&#x6cfe;&#x8def;&#x5c1a;&#x4e49;&#x8def;4,&#x4e1c;&#x5ddd;&#x8def;&#x5730;&#x94c1;&#x7ad9;5,&#x5858;&#x6cfe;&#x8def;&#x5c1a;&#x4e49;&#x8def;5,&#x4e1c;&#x5ddd;&#x8def;&#x5730;&#x94c1;&#x7ad9;6,&#x5858;&#x6cfe;&#x8def;&#x5c1a;&#x4e49;&#x8def;6,&#x4e1c;&#x5ddd;&#x8def;&#x5730;&#x94c1;&#x7ad9;7,&#x5858;&#x6cfe;&#x8def;&#x5c1a;&#x4e49;&#x8def;7,&#x4e1c;&#x5ddd;&#x8def;&#x5730;&#x94c1;&#x7ad9;8,&#x5858;&#x6cfe;&#x8def;&#x5c1a;&#x4e49;&#x8def;8,&#x4e1c;&#x5ddd;&#x8def;&#x5730;&#x94c1;&#x7ad9;9,&#x5858;&#x6cfe;&#x8def;&#x5c1a;&#x4e49;&#x8def;9,&#x4e1c;&#x5ddd;&#x8def;&#x5730;&#x94c1;&#x7ad9;10,&#x5858;&#x6cfe;&#x8def;&#x5c1a;&#x4e49;&#x8def;10,&#x8fdb;&#x573a;</default_value>
  45 + <description>&#x6570;&#x636e;&#x8303;&#x5f0f;&#x5316;&#x5b57;&#x6bb5;&#x540d;&#xff0c;&#x4ee5;&#x9017;&#x53f7;&#x8fde;&#x63a5;</description>
  46 + </parameter>
  47 + <parameter>
  48 + <name>sheetname</name>
  49 + <default_value>&#x5de5;&#x4f5c;&#x8868;1</default_value>
  50 + <description>xls sheet&#x540d;&#x5b57;</description>
  51 + </parameter>
  52 + <parameter>
  53 + <name>tccname</name>
  54 + <default_value>&#x4e1c;&#x5ddd;&#x8def;&#x5730;&#x94c1;&#x7ad9;&#x505c;&#x8f66;&#x573a;</default_value>
  55 + <description>&#x505c;&#x8f66;&#x573a;&#x540d;&#x5b57;</description>
  56 + </parameter>
  57 + <parameter>
  58 + <name>ttid</name>
  59 + <default_value>1</default_value>
  60 + <description>&#x65f6;&#x523b;&#x8868;id</description>
  61 + </parameter>
  62 + <parameter>
  63 + <name>ttinfoname</name>
  64 + <default_value>&#x8868;2</default_value>
  65 + <description>&#x65f6;&#x523b;&#x8868;&#x540d;&#x79f0;</description>
  66 + </parameter>
  67 + <parameter>
  68 + <name>xlid</name>
  69 + <default_value>-999</default_value>
  70 + <description>&#x7ebf;&#x8def;id</description>
  71 + </parameter>
  72 + <parameter>
  73 + <name>xlname</name>
  74 + <default_value>&#x95f5;&#x884c;26&#x8def;</default_value>
  75 + <description>&#x7ebf;&#x8def;&#x540d;&#x79f0;</description>
  76 + </parameter>
  77 + </parameters>
  78 + <log>
  79 +<trans-log-table><connection/>
  80 +<schema/>
  81 +<table/>
  82 +<size_limit_lines/>
  83 +<interval/>
  84 +<timeout_days/>
  85 +<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>
  86 +<perf-log-table><connection/>
  87 +<schema/>
  88 +<table/>
  89 +<interval/>
  90 +<timeout_days/>
  91 +<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>
  92 +<channel-log-table><connection/>
  93 +<schema/>
  94 +<table/>
  95 +<timeout_days/>
  96 +<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>
  97 +<step-log-table><connection/>
  98 +<schema/>
  99 +<table/>
  100 +<timeout_days/>
  101 +<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>
  102 +<metrics-log-table><connection/>
  103 +<schema/>
  104 +<table/>
  105 +<timeout_days/>
  106 +<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>
  107 + </log>
  108 + <maxdate>
  109 + <connection/>
  110 + <table/>
  111 + <field/>
  112 + <offset>0.0</offset>
  113 + <maxdiff>0.0</maxdiff>
  114 + </maxdate>
  115 + <size_rowset>10000</size_rowset>
  116 + <sleep_time_empty>50</sleep_time_empty>
  117 + <sleep_time_full>50</sleep_time_full>
  118 + <unique_connections>N</unique_connections>
  119 + <feedback_shown>Y</feedback_shown>
  120 + <feedback_size>50000</feedback_size>
  121 + <using_thread_priorities>Y</using_thread_priorities>
  122 + <shared_objects_file/>
  123 + <capture_step_performance>N</capture_step_performance>
  124 + <step_performance_capturing_delay>1000</step_performance_capturing_delay>
  125 + <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit>
  126 + <dependencies>
  127 + </dependencies>
  128 + <partitionschemas>
  129 + </partitionschemas>
  130 + <slaveservers>
  131 + </slaveservers>
  132 + <clusterschemas>
  133 + </clusterschemas>
  134 + <created_user>-</created_user>
  135 + <created_date>2016&#x2f;07&#x2f;01 09&#x3a;55&#x3a;32.649</created_date>
  136 + <modified_user>-</modified_user>
  137 + <modified_date>2016&#x2f;07&#x2f;01 09&#x3a;55&#x3a;32.649</modified_date>
  138 + <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA&#x3d;</key_for_session_key>
  139 + <is_key_private>N</is_key_private>
  140 + </info>
  141 + <notepads>
  142 + </notepads>
  143 + <connection>
  144 + <name>192.168.168.1_jwgl_dw</name>
  145 + <server>192.168.168.1</server>
  146 + <type>ORACLE</type>
  147 + <access>Native</access>
  148 + <database>orcl</database>
  149 + <port>1521</port>
  150 + <username>jwgl_dw</username>
  151 + <password>Encrypted 2be98afc86aa7f2e4cb13b977d2adabcd</password>
  152 + <servername/>
  153 + <data_tablespace/>
  154 + <index_tablespace/>
  155 + <attributes>
  156 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  157 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  158 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  159 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  160 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  161 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  162 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  163 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  164 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  165 + </attributes>
  166 + </connection>
  167 + <connection>
  168 + <name>bus_control_variable</name>
  169 + <server>&#x24;&#x7b;v_db_ip&#x7d;</server>
  170 + <type>MYSQL</type>
  171 + <access>Native</access>
  172 + <database>&#x24;&#x7b;v_db_dname&#x7d;</database>
  173 + <port>3306</port>
  174 + <username>&#x24;&#x7b;v_db_uname&#x7d;</username>
  175 + <password>&#x24;&#x7b;v_db_pwd&#x7d;</password>
  176 + <servername/>
  177 + <data_tablespace/>
  178 + <index_tablespace/>
  179 + <attributes>
  180 + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
  181 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  182 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  183 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  184 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  185 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  186 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  187 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  188 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  189 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  190 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  191 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  192 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  193 + </attributes>
  194 + </connection>
  195 + <connection>
  196 + <name>bus_control_&#x516c;&#x53f8;_201</name>
  197 + <server>localhost</server>
  198 + <type>MYSQL</type>
  199 + <access>Native</access>
  200 + <database>control</database>
  201 + <port>3306</port>
  202 + <username>root</username>
  203 + <password>Encrypted </password>
  204 + <servername/>
  205 + <data_tablespace/>
  206 + <index_tablespace/>
  207 + <attributes>
  208 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  209 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  210 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  211 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  212 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  213 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  214 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  215 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  216 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  217 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  218 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  219 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  220 + </attributes>
  221 + </connection>
  222 + <connection>
  223 + <name>bus_control_&#x672c;&#x673a;</name>
  224 + <server>localhost</server>
  225 + <type>MYSQL</type>
  226 + <access>Native</access>
  227 + <database>control</database>
  228 + <port>3306</port>
  229 + <username>root</username>
  230 + <password>Encrypted </password>
  231 + <servername/>
  232 + <data_tablespace/>
  233 + <index_tablespace/>
  234 + <attributes>
  235 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  236 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  237 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  238 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  239 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  240 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  241 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  242 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  243 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  244 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  245 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  246 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  247 + </attributes>
  248 + </connection>
  249 + <connection>
  250 + <name>control_jndi</name>
  251 + <server/>
  252 + <type>MYSQL</type>
  253 + <access>JNDI</access>
  254 + <database>control_jndi</database>
  255 + <port>1521</port>
  256 + <username/>
  257 + <password>Encrypted </password>
  258 + <servername/>
  259 + <data_tablespace/>
  260 + <index_tablespace/>
  261 + <attributes>
  262 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  263 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  264 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  265 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  266 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  267 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  268 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  269 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  270 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  271 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  272 + </attributes>
  273 + </connection>
  274 + <connection>
  275 + <name>JGJW_VM</name>
  276 + <server>192.168.198.240</server>
  277 + <type>ORACLE</type>
  278 + <access>Native</access>
  279 + <database>orcl</database>
  280 + <port>1521</port>
  281 + <username>jwgl</username>
  282 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d485a8d6</password>
  283 + <servername/>
  284 + <data_tablespace/>
  285 + <index_tablespace/>
  286 + <attributes>
  287 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  288 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  289 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  290 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  291 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  292 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  293 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  294 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  295 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  296 + </attributes>
  297 + </connection>
  298 + <connection>
  299 + <name>NHJW_VM</name>
  300 + <server>192.168.198.240</server>
  301 + <type>ORACLE</type>
  302 + <access>Native</access>
  303 + <database>orcl</database>
  304 + <port>1521</port>
  305 + <username>nhjw</username>
  306 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d09aa5cd</password>
  307 + <servername/>
  308 + <data_tablespace/>
  309 + <index_tablespace/>
  310 + <attributes>
  311 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  312 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  313 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  314 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  315 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  316 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  317 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  318 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  319 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  320 + </attributes>
  321 + </connection>
  322 + <connection>
  323 + <name>PDGJ_VM</name>
  324 + <server>192.168.198.240</server>
  325 + <type>ORACLE</type>
  326 + <access>Native</access>
  327 + <database>orcl</database>
  328 + <port>1521</port>
  329 + <username>pdgj</username>
  330 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10ce96a8d0</password>
  331 + <servername/>
  332 + <data_tablespace/>
  333 + <index_tablespace/>
  334 + <attributes>
  335 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  336 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  337 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  338 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  339 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  340 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  341 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  342 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  343 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  344 + </attributes>
  345 + </connection>
  346 + <connection>
  347 + <name>repair_dw_mysql_jndi</name>
  348 + <server/>
  349 + <type>MYSQL</type>
  350 + <access>JNDI</access>
  351 + <database>repair_dw_mysql</database>
  352 + <port>1521</port>
  353 + <username/>
  354 + <password>Encrypted </password>
  355 + <servername/>
  356 + <data_tablespace/>
  357 + <index_tablespace/>
  358 + <attributes>
  359 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  360 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  361 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  362 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  363 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  364 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  365 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  366 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  367 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  368 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  369 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  370 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  371 + </attributes>
  372 + </connection>
  373 + <connection>
  374 + <name>repair_dw&#xff08;&#x672c;&#x673a;&#xff09;</name>
  375 + <server>localhost</server>
  376 + <type>MYSQL</type>
  377 + <access>Native</access>
  378 + <database>ruoyi-vue-3.5</database>
  379 + <port>3306</port>
  380 + <username>root</username>
  381 + <password>Encrypted </password>
  382 + <servername/>
  383 + <data_tablespace/>
  384 + <index_tablespace/>
  385 + <attributes>
  386 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  387 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  388 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  389 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  390 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  391 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  392 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  393 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  394 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  395 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  396 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  397 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  398 + </attributes>
  399 + </connection>
  400 + <connection>
  401 + <name>repair_real_h2</name>
  402 + <server/>
  403 + <type>H2</type>
  404 + <access>JNDI</access>
  405 + <database>repair_real_h2</database>
  406 + <port>1521</port>
  407 + <username/>
  408 + <password>Encrypted </password>
  409 + <servername/>
  410 + <data_tablespace/>
  411 + <index_tablespace/>
  412 + <attributes>
  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>1521</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>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  420 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  421 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  422 + </attributes>
  423 + </connection>
  424 + <connection>
  425 + <name>SNJW_VM</name>
  426 + <server>192.168.198.240</server>
  427 + <type>ORACLE</type>
  428 + <access>Native</access>
  429 + <database>orcl</database>
  430 + <port>1521</port>
  431 + <username>snjw</username>
  432 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10cd9ca5cd</password>
  433 + <servername/>
  434 + <data_tablespace/>
  435 + <index_tablespace/>
  436 + <attributes>
  437 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  438 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  439 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  440 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  441 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  442 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</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>test_control_local</name>
  450 + <server>localhost</server>
  451 + <type>MYSQL</type>
  452 + <access>Native</access>
  453 + <database>test_control</database>
  454 + <port>3306</port>
  455 + <username>root</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>3306</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>test_control&#xff08;&#x672c;&#x673a;&#xff09;</name>
  477 + <server>127.0.0.1</server>
  478 + <type>MYSQL</type>
  479 + <access>Native</access>
  480 + <database>test_control</database>
  481 + <port>3306</port>
  482 + <username>root</username>
  483 + <password>Encrypted </password>
  484 + <servername/>
  485 + <data_tablespace/>
  486 + <index_tablespace/>
  487 + <attributes>
  488 + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
  489 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  490 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  491 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  492 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  493 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  494 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  495 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  496 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  497 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  498 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  499 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  500 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  501 + </attributes>
  502 + </connection>
  503 + <connection>
  504 + <name>wzk_mysql_jndi</name>
  505 + <server/>
  506 + <type>MYSQL</type>
  507 + <access>JNDI</access>
  508 + <database>wzk_mysql</database>
  509 + <port>1521</port>
  510 + <username/>
  511 + <password>Encrypted </password>
  512 + <servername/>
  513 + <data_tablespace/>
  514 + <index_tablespace/>
  515 + <attributes>
  516 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  517 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  518 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  519 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  520 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  521 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  522 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  523 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  524 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  525 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  526 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  527 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  528 + </attributes>
  529 + </connection>
  530 + <connection>
  531 + <name>wzk&#xff08;&#x672c;&#x673a;&#xff09;</name>
  532 + <server>localhost</server>
  533 + <type>MYSQL</type>
  534 + <access>Native</access>
  535 + <database>pdgj_wzk_sys</database>
  536 + <port>3306</port>
  537 + <username>root</username>
  538 + <password>Encrypted </password>
  539 + <servername/>
  540 + <data_tablespace/>
  541 + <index_tablespace/>
  542 + <attributes>
  543 + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
  544 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  545 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  546 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  547 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  548 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  549 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  550 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  551 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  552 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  553 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  554 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  555 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  556 + </attributes>
  557 + </connection>
  558 + <connection>
  559 + <name>xlab_mysql_youle</name>
  560 + <server>101.231.124.8</server>
  561 + <type>MYSQL</type>
  562 + <access>Native</access>
  563 + <database>xlab_youle</database>
  564 + <port>45687</port>
  565 + <username>xlab-youle</username>
  566 + <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password>
  567 + <servername/>
  568 + <data_tablespace/>
  569 + <index_tablespace/>
  570 + <attributes>
  571 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  572 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  573 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  574 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  575 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  576 + <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute>
  577 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  578 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  579 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  580 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  581 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  582 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  583 + </attributes>
  584 + </connection>
  585 + <connection>
  586 + <name>xlab_mysql_youle&#xff08;&#x672c;&#x673a;&#xff09;</name>
  587 + <server>localhost</server>
  588 + <type>MYSQL</type>
  589 + <access>Native</access>
  590 + <database>xlab_youle</database>
  591 + <port>3306</port>
  592 + <username>root</username>
  593 + <password>Encrypted </password>
  594 + <servername/>
  595 + <data_tablespace/>
  596 + <index_tablespace/>
  597 + <attributes>
  598 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  599 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  600 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  601 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  602 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  603 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  604 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  605 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  606 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  607 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  608 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  609 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  610 + </attributes>
  611 + </connection>
  612 + <connection>
  613 + <name>xlab_youle</name>
  614 + <server/>
  615 + <type>MYSQL</type>
  616 + <access>JNDI</access>
  617 + <database>xlab_youle</database>
  618 + <port>1521</port>
  619 + <username/>
  620 + <password>Encrypted </password>
  621 + <servername/>
  622 + <data_tablespace/>
  623 + <index_tablespace/>
  624 + <attributes>
  625 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  626 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  627 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  628 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  629 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  630 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  631 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  632 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  633 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  634 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  635 + </attributes>
  636 + </connection>
  637 + <connection>
  638 + <name>YGJW_VM</name>
  639 + <server>192.168.198.240</server>
  640 + <type>ORACLE</type>
  641 + <access>Native</access>
  642 + <database>orcl</database>
  643 + <port>1521</port>
  644 + <username>ygjw</username>
  645 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10c795a5cd</password>
  646 + <servername/>
  647 + <data_tablespace/>
  648 + <index_tablespace/>
  649 + <attributes>
  650 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  651 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  652 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  653 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  654 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  655 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  656 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  657 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  658 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  659 + </attributes>
  660 + </connection>
  661 + <connection>
  662 + <name>&#x516c;&#x53f8;jgjw</name>
  663 + <server>192.168.168.1</server>
  664 + <type>ORACLE</type>
  665 + <access>Native</access>
  666 + <database>orcl</database>
  667 + <port>1521</port>
  668 + <username>jwgl</username>
  669 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d485a8d6</password>
  670 + <servername/>
  671 + <data_tablespace/>
  672 + <index_tablespace/>
  673 + <attributes>
  674 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  675 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  676 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  677 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  678 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  679 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  680 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  681 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  682 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  683 + </attributes>
  684 + </connection>
  685 + <connection>
  686 + <name>&#x516c;&#x53f8;snjw</name>
  687 + <server>192.168.168.1</server>
  688 + <type>ORACLE</type>
  689 + <access>Native</access>
  690 + <database>orcl</database>
  691 + <port>1521</port>
  692 + <username>snjw</username>
  693 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10cd9ca5cd</password>
  694 + <servername/>
  695 + <data_tablespace/>
  696 + <index_tablespace/>
  697 + <attributes>
  698 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  699 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  700 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  701 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  702 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  703 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  704 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  705 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  706 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  707 + </attributes>
  708 + </connection>
  709 + <connection>
  710 + <name>&#x516c;&#x53f8;ygjw</name>
  711 + <server>192.168.168.178</server>
  712 + <type>ORACLE</type>
  713 + <access>Native</access>
  714 + <database>orcl</database>
  715 + <port>1521</port>
  716 + <username>ygjw</username>
  717 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10c795a5cd</password>
  718 + <servername/>
  719 + <data_tablespace/>
  720 + <index_tablespace/>
  721 + <attributes>
  722 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  723 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  724 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  725 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  726 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  727 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  728 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  729 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  730 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  731 + </attributes>
  732 + </connection>
  733 + <connection>
  734 + <name>&#x516c;&#x53f8;&#x673a;&#x52a1;_pdgj</name>
  735 + <server>192.168.168.178</server>
  736 + <type>ORACLE</type>
  737 + <access>Native</access>
  738 + <database>orcl</database>
  739 + <port>1521</port>
  740 + <username>pdgj</username>
  741 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10ce96a8d0</password>
  742 + <servername/>
  743 + <data_tablespace/>
  744 + <index_tablespace/>
  745 + <attributes>
  746 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  747 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  748 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  749 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  750 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  751 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  752 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  753 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  754 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  755 + </attributes>
  756 + </connection>
  757 + <connection>
  758 + <name>&#x5916;&#x7f51;vpn&#x4e34;&#x6e2f;&#x673a;&#x52a1;oracle</name>
  759 + <server>10.10.150.114</server>
  760 + <type>ORACLE</type>
  761 + <access>Native</access>
  762 + <database>helowin</database>
  763 + <port>1521</port>
  764 + <username>lgjw</username>
  765 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d295a5cd</password>
  766 + <servername/>
  767 + <data_tablespace/>
  768 + <index_tablespace/>
  769 + <attributes>
  770 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  771 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  772 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  773 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  774 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  775 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  776 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  777 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  778 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  779 + </attributes>
  780 + </connection>
  781 + <connection>
  782 + <name>&#x5916;&#x7f51;&#x5357;&#x6c47;&#x673a;&#x52a1;oracle</name>
  783 + <server>58.247.254.118</server>
  784 + <type>ORACLE</type>
  785 + <access>Native</access>
  786 + <database>orcl</database>
  787 + <port>15211</port>
  788 + <username>nhjw</username>
  789 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d09aa5cd</password>
  790 + <servername/>
  791 + <data_tablespace/>
  792 + <index_tablespace/>
  793 + <attributes>
  794 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  795 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  796 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  797 + <attribute><code>PORT_NUMBER</code><attribute>15211</attribute></attribute>
  798 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  799 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  800 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  801 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  802 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  803 + </attributes>
  804 + </connection>
  805 + <connection>
  806 + <name>&#x5916;&#x7f51;&#x6768;&#x9ad8;&#x673a;&#x52a1;oracle</name>
  807 + <server>58.247.254.118</server>
  808 + <type>ORACLE</type>
  809 + <access>Native</access>
  810 + <database>orcl</database>
  811 + <port>15211</port>
  812 + <username>ygjw</username>
  813 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10c795a5cd</password>
  814 + <servername/>
  815 + <data_tablespace/>
  816 + <index_tablespace/>
  817 + <attributes>
  818 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  819 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  820 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  821 + <attribute><code>PORT_NUMBER</code><attribute>15211</attribute></attribute>
  822 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  823 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  824 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  825 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  826 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  827 + </attributes>
  828 + </connection>
  829 + <connection>
  830 + <name>&#x5916;&#x7f51;&#x91d1;&#x9ad8;&#x673a;&#x52a1;oracle</name>
  831 + <server>58.247.254.118</server>
  832 + <type>ORACLE</type>
  833 + <access>Native</access>
  834 + <database>orcl</database>
  835 + <port>15211</port>
  836 + <username>jwgl</username>
  837 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d485a8d6</password>
  838 + <servername/>
  839 + <data_tablespace/>
  840 + <index_tablespace/>
  841 + <attributes>
  842 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  843 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  844 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  845 + <attribute><code>PORT_NUMBER</code><attribute>15211</attribute></attribute>
  846 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  847 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  848 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  849 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  850 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  851 + </attributes>
  852 + </connection>
  853 + <order>
  854 + <hop> <from>&#x83b7;&#x53d6;excel&#x6587;&#x4ef6;&#x540d;</from><to>ETL&#x5143;&#x6570;&#x636e;&#x6ce8;&#x5165;</to><enabled>Y</enabled> </hop>
  855 + <hop> <from>&#x83b7;&#x53d6;excel&#x5b57;&#x6bb5;&#x540d;&#x5b57;&#x7b26;&#x4e32;</from><to>&#x9017;&#x53f7;&#x5207;&#x5206;&#x6210;&#x5b57;&#x6bb5;&#x540d;</to><enabled>Y</enabled> </hop>
  856 + <hop> <from>&#x9017;&#x53f7;&#x5207;&#x5206;&#x6210;&#x5b57;&#x6bb5;&#x540d;</from><to>&#x589e;&#x52a0;excel&#x5b57;&#x6bb5;&#x5176;&#x4ed6;&#x5143;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
  857 + <hop> <from>&#x589e;&#x52a0;excel&#x5b57;&#x6bb5;&#x5176;&#x4ed6;&#x5143;&#x6570;&#x636e;</from><to>ETL&#x5143;&#x6570;&#x636e;&#x6ce8;&#x5165;</to><enabled>Y</enabled> </hop>
  858 + <hop> <from>&#x83b7;&#x53d6;normalize&#x5b57;&#x6bb5;&#x540d;&#x5b57;&#x7b26;&#x4e32;</from><to>&#x9017;&#x53f7;&#x5207;&#x5206;&#x6210;&#x5b57;&#x6bb5;&#x540d; 2</to><enabled>Y</enabled> </hop>
  859 + <hop> <from>&#x9017;&#x53f7;&#x5207;&#x5206;&#x6210;&#x5b57;&#x6bb5;&#x540d; 2</from><to>&#x589e;&#x52a0;normalize&#x5143;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
  860 + <hop> <from>&#x589e;&#x52a0;normalize&#x5143;&#x6570;&#x636e;</from><to>ETL&#x5143;&#x6570;&#x636e;&#x6ce8;&#x5165;</to><enabled>Y</enabled> </hop>
  861 + <hop> <from>&#x83b7;&#x53d6;&#x7ebf;&#x8def;&#x540d;&#x79f0;</from><to>&#x589e;&#x52a0;&#x7ebf;&#x8def;&#x540d;&#x79f0;metadata</to><enabled>Y</enabled> </hop>
  862 + <hop> <from>&#x589e;&#x52a0;&#x7ebf;&#x8def;&#x540d;&#x79f0;metadata</from><to>&#x66ff;&#x6362;&#x7ebf;&#x8def;&#x540d;&#x79f0;</to><enabled>Y</enabled> </hop>
  863 + <hop> <from>&#x66ff;&#x6362;&#x7ebf;&#x8def;&#x540d;&#x79f0;</from><to>&#x7ebf;&#x8def;&#x540d;&#x79f0;metadata&#x5b57;&#x6bb5;</to><enabled>Y</enabled> </hop>
  864 + <hop> <from>&#x589e;&#x52a0;&#x505c;&#x8f66;&#x573a;&#x540d;&#x79f0;metadata</from><to>&#x66ff;&#x6362;&#x505c;&#x8f66;&#x5382;&#x540d;&#x5b57; </to><enabled>Y</enabled> </hop>
  865 + <hop> <from>&#x66ff;&#x6362;&#x505c;&#x8f66;&#x5382;&#x540d;&#x5b57; </from><to>&#x505c;&#x8f66;&#x573a;&#x540d;&#x79f0;metadata&#x5b57;&#x6bb5;</to><enabled>Y</enabled> </hop>
  866 + <hop> <from>&#x83b7;&#x53d6;&#x65f6;&#x523b;&#x8868;&#x540d;&#x79f0;</from><to>&#x589e;&#x52a0;&#x65f6;&#x523b;&#x8868;&#x540d;&#x79f0;metadata</to><enabled>Y</enabled> </hop>
  867 + <hop> <from>&#x589e;&#x52a0;&#x65f6;&#x523b;&#x8868;&#x540d;&#x79f0;metadata</from><to>&#x66ff;&#x6362;&#x65f6;&#x523b;&#x8868;&#x540d;&#x5b57;</to><enabled>Y</enabled> </hop>
  868 + <hop> <from>&#x66ff;&#x6362;&#x65f6;&#x523b;&#x8868;&#x540d;&#x5b57;</from><to>&#x65f6;&#x523b;&#x8868;&#x540d;&#x79f0;metadata&#x5b57;&#x6bb5;</to><enabled>Y</enabled> </hop>
  869 + <hop> <from>&#x7ebf;&#x8def;&#x540d;&#x79f0;metadata&#x5b57;&#x6bb5;</from><to>&#x5408;&#x5e76;&#x589e;&#x52a0;&#x5e38;&#x91cf;&#x6570;&#x636e;metadata</to><enabled>Y</enabled> </hop>
  870 + <hop> <from>&#x505c;&#x8f66;&#x573a;&#x540d;&#x79f0;metadata&#x5b57;&#x6bb5;</from><to>&#x5408;&#x5e76;&#x589e;&#x52a0;&#x5e38;&#x91cf;&#x6570;&#x636e;metadata</to><enabled>Y</enabled> </hop>
  871 + <hop> <from>&#x65f6;&#x523b;&#x8868;&#x540d;&#x79f0;metadata&#x5b57;&#x6bb5;</from><to>&#x5408;&#x5e76;&#x589e;&#x52a0;&#x5e38;&#x91cf;&#x6570;&#x636e;metadata</to><enabled>Y</enabled> </hop>
  872 + <hop> <from>&#x5408;&#x5e76;&#x589e;&#x52a0;&#x5e38;&#x91cf;&#x6570;&#x636e;metadata</from><to>ETL&#x5143;&#x6570;&#x636e;&#x6ce8;&#x5165;</to><enabled>Y</enabled> </hop>
  873 + <hop> <from>&#x83b7;&#x53d6;&#x65f6;&#x523b;&#x8868;id</from><to>&#x5220;&#x9664;&#x4e4b;&#x524d;&#x7684;&#x660e;&#x7ec6;&#x4fe1;&#x606f;</to><enabled>Y</enabled> </hop>
  874 + <hop> <from>&#x83b7;&#x53d6;&#x7ebf;&#x8def;&#x6807;&#x51c6;id</from><to>&#x505c;&#x8f66;&#x573a;&#x7f16;&#x7801;</to><enabled>Y</enabled> </hop>
  875 + <hop> <from>&#x505c;&#x8f66;&#x573a;&#x7f16;&#x7801;</from><to>&#x505c;&#x8f66;&#x573a;&#x540d;&#x79f0;</to><enabled>Y</enabled> </hop>
  876 + <hop> <from>&#x505c;&#x8f66;&#x573a;&#x540d;&#x79f0;</from><to>&#x589e;&#x52a0;&#x505c;&#x8f66;&#x573a;&#x540d;&#x79f0;metadata</to><enabled>Y</enabled> </hop>
  877 + <hop> <from>&#x589e;&#x52a0;&#x7ad9;&#x70b9;&#x8def;&#x7531;&#x7248;&#x672c; metadata</from><to>&#x66ff;&#x6362;&#x7ad9;&#x70b9;&#x8def;&#x7531;&#x7248;&#x672c;</to><enabled>Y</enabled> </hop>
  878 + <hop> <from>&#x66ff;&#x6362;&#x7ad9;&#x70b9;&#x8def;&#x7531;&#x7248;&#x672c;</from><to>&#x7ad9;&#x70b9;&#x8def;&#x7531;&#x7248;&#x672c;metadata&#x5b57;&#x6bb5;</to><enabled>Y</enabled> </hop>
  879 + <hop> <from>&#x83b7;&#x53d6;&#x7ad9;&#x70b9;&#x8def;&#x7531;version</from><to>&#x589e;&#x52a0;&#x7ad9;&#x70b9;&#x8def;&#x7531;&#x7248;&#x672c; metadata</to><enabled>Y</enabled> </hop>
  880 + <hop> <from>&#x7ad9;&#x70b9;&#x8def;&#x7531;&#x7248;&#x672c;metadata&#x5b57;&#x6bb5;</from><to>&#x5408;&#x5e76;&#x589e;&#x52a0;&#x5e38;&#x91cf;&#x6570;&#x636e;metadata</to><enabled>Y</enabled> </hop>
  881 + <hop> <from>&#x83b7;&#x53d6;&#x65f6;&#x523b;&#x8868;id</from><to>&#x5220;&#x9664;&#x4e4b;&#x524d;&#x7684;&#x73ed;&#x578b;&#x4fe1;&#x606f;</to><enabled>Y</enabled> </hop>
  882 + </order>
  883 + <step>
  884 + <name>ETL&#x5143;&#x6570;&#x636e;&#x6ce8;&#x5165;</name>
  885 + <type>MetaInject</type>
  886 + <description/>
  887 + <distribute>Y</distribute>
  888 + <custom_distribution/>
  889 + <copies>1</copies>
  890 + <partitioning>
  891 + <method>none</method>
  892 + <schema_name/>
  893 + </partitioning>
  894 + <specification_method>filename</specification_method>
  895 + <trans_object_id/>
  896 + <trans_name/>
  897 + <filename>&#x24;&#x7b;injectktrfile&#x7d;</filename>
  898 + <directory_path/>
  899 + <source_step/>
  900 + <source_output_fields> </source_output_fields> <target_file/>
  901 + <no_execution>N</no_execution>
  902 + <stream_source_step/>
  903 + <stream_target_step/>
  904 + <mappings> <mapping> <target_step_name>&#x73ed;&#x6b21;&#x6570;&#x636e;&#x8303;&#x5f0f;&#x5316;</target_step_name>
  905 + <target_attribute_key>NAME</target_attribute_key>
  906 + <target_detail>Y</target_detail>
  907 + <source_step>&#x589e;&#x52a0;normalize&#x5143;&#x6570;&#x636e;</source_step>
  908 + <source_field>nfieldname</source_field>
  909 + </mapping> <mapping> <target_step_name>Excel&#x8f93;&#x5165;</target_step_name>
  910 + <target_attribute_key>PRECISION</target_attribute_key>
  911 + <target_detail>Y</target_detail>
  912 + <source_step>&#x5217;&#x62c6;&#x5206;&#x4e3a;&#x591a;&#x884c;</source_step>
  913 + <source_field>precision</source_field>
  914 + </mapping> <mapping> <target_step_name>&#x73ed;&#x6b21;&#x6570;&#x636e;&#x8303;&#x5f0f;&#x5316;</target_step_name>
  915 + <target_attribute_key>NORMALISED</target_attribute_key>
  916 + <target_detail>Y</target_detail>
  917 + <source_step>&#x589e;&#x52a0;normalize&#x5143;&#x6570;&#x636e;</source_step>
  918 + <source_field>valuefield</source_field>
  919 + </mapping> <mapping> <target_step_name>Excel&#x8f93;&#x5165;</target_step_name>
  920 + <target_attribute_key>LENGTH</target_attribute_key>
  921 + <target_detail>Y</target_detail>
  922 + <source_step>&#x5217;&#x62c6;&#x5206;&#x4e3a;&#x591a;&#x884c;</source_step>
  923 + <source_field>length</source_field>
  924 + </mapping> <mapping> <target_step_name>&#x884c;&#x8f6c;&#x5217;</target_step_name>
  925 + <target_attribute_key>NAME</target_attribute_key>
  926 + <target_detail>Y</target_detail>
  927 + <source_step>&#x5217;&#x62c6;&#x5206;&#x4e3a;&#x591a;&#x884c; 2</source_step>
  928 + <source_field>fieldName</source_field>
  929 + </mapping> <mapping> <target_step_name>Excel&#x8f93;&#x5165;</target_step_name>
  930 + <target_attribute_key>REPEAT</target_attribute_key>
  931 + <target_detail>Y</target_detail>
  932 + <source_step>&#x5217;&#x62c6;&#x5206;&#x4e3a;&#x591a;&#x884c;</source_step>
  933 + <source_field>repeat</source_field>
  934 + </mapping> <mapping> <target_step_name>Excel&#x8f93;&#x5165;</target_step_name>
  935 + <target_attribute_key>FORMAT</target_attribute_key>
  936 + <target_detail>Y</target_detail>
  937 + <source_step>&#x5217;&#x62c6;&#x5206;&#x4e3a;&#x591a;&#x884c;</source_step>
  938 + <source_field>format</source_field>
  939 + </mapping> <mapping> <target_step_name>&#x884c;&#x8f6c;&#x5217;</target_step_name>
  940 + <target_attribute_key>NORMALISED</target_attribute_key>
  941 + <target_detail>Y</target_detail>
  942 + <source_step>&#x5217;&#x62c6;&#x5206;&#x4e3a;&#x591a;&#x884c; 2</source_step>
  943 + <source_field>value</source_field>
  944 + </mapping> <mapping> <target_step_name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</target_step_name>
  945 + <target_attribute_key>FILENAME</target_attribute_key>
  946 + <target_detail>Y</target_detail>
  947 + <source_step>&#x83b7;&#x53d6;excel&#x6587;&#x4ef6;&#x540d;</source_step>
  948 + <source_field>filepath_</source_field>
  949 + </mapping> <mapping> <target_step_name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</target_step_name>
  950 + <target_attribute_key>TYPE</target_attribute_key>
  951 + <target_detail>Y</target_detail>
  952 + <source_step>&#x589e;&#x52a0;excel&#x5b57;&#x6bb5;&#x5176;&#x4ed6;&#x5143;&#x6570;&#x636e;</source_step>
  953 + <source_field>fieldtype</source_field>
  954 + </mapping> <mapping> <target_step_name>&#x589e;&#x52a0;&#x65f6;&#x523b;&#x8868;&#x540d;&#x5b57;&#xff0c;&#x7ebf;&#x8def;&#x540d;&#x5b57;&#xff0c;&#x505c;&#x8f66;&#x573a;&#x540d;&#x5b57;</target_step_name>
  955 + <target_attribute_key>NAME</target_attribute_key>
  956 + <target_detail>Y</target_detail>
  957 + <source_step>&#x5408;&#x5e76;&#x589e;&#x52a0;&#x5e38;&#x91cf;&#x6570;&#x636e;metadata</source_step>
  958 + <source_field>col_name</source_field>
  959 + </mapping> <mapping> <target_step_name>Excel&#x8f93;&#x5165;</target_step_name>
  960 + <target_attribute_key>TYPE</target_attribute_key>
  961 + <target_detail>Y</target_detail>
  962 + <source_step>&#x5217;&#x62c6;&#x5206;&#x4e3a;&#x591a;&#x884c;</source_step>
  963 + <source_field>type</source_field>
  964 + </mapping> <mapping> <target_step_name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</target_step_name>
  965 + <target_attribute_key>LENGTH</target_attribute_key>
  966 + <target_detail>Y</target_detail>
  967 + <source_step>&#x589e;&#x52a0;excel&#x5b57;&#x6bb5;&#x5176;&#x4ed6;&#x5143;&#x6570;&#x636e;</source_step>
  968 + <source_field>length</source_field>
  969 + </mapping> <mapping> <target_step_name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</target_step_name>
  970 + <target_attribute_key>FORMAT</target_attribute_key>
  971 + <target_detail>Y</target_detail>
  972 + <source_step>&#x589e;&#x52a0;excel&#x5b57;&#x6bb5;&#x5176;&#x4ed6;&#x5143;&#x6570;&#x636e;</source_step>
  973 + <source_field>format</source_field>
  974 + </mapping> <mapping> <target_step_name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</target_step_name>
  975 + <target_attribute_key>REPEAT</target_attribute_key>
  976 + <target_detail>Y</target_detail>
  977 + <source_step>&#x589e;&#x52a0;excel&#x5b57;&#x6bb5;&#x5176;&#x4ed6;&#x5143;&#x6570;&#x636e;</source_step>
  978 + <source_field>repeat</source_field>
  979 + </mapping> <mapping> <target_step_name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</target_step_name>
  980 + <target_attribute_key>PRECISION</target_attribute_key>
  981 + <target_detail>Y</target_detail>
  982 + <source_step>&#x589e;&#x52a0;excel&#x5b57;&#x6bb5;&#x5176;&#x4ed6;&#x5143;&#x6570;&#x636e;</source_step>
  983 + <source_field>precision</source_field>
  984 + </mapping> <mapping> <target_step_name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</target_step_name>
  985 + <target_attribute_key>SHEET_NAME</target_attribute_key>
  986 + <target_detail>Y</target_detail>
  987 + <source_step>&#x83b7;&#x53d6;excel&#x6587;&#x4ef6;&#x540d;</source_step>
  988 + <source_field>sheetname_</source_field>
  989 + </mapping> <mapping> <target_step_name>Excel&#x8f93;&#x5165;</target_step_name>
  990 + <target_attribute_key>NAME</target_attribute_key>
  991 + <target_detail>Y</target_detail>
  992 + <source_step>&#x5217;&#x62c6;&#x5206;&#x4e3a;&#x591a;&#x884c;</source_step>
  993 + <source_field>fieldName</source_field>
  994 + </mapping> <mapping> <target_step_name>&#x73ed;&#x6b21;&#x6570;&#x636e;&#x8303;&#x5f0f;&#x5316;</target_step_name>
  995 + <target_attribute_key>VALUE</target_attribute_key>
  996 + <target_detail>Y</target_detail>
  997 + <source_step>&#x589e;&#x52a0;normalize&#x5143;&#x6570;&#x636e;</source_step>
  998 + <source_field>nfieldname</source_field>
  999 + </mapping> <mapping> <target_step_name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</target_step_name>
  1000 + <target_attribute_key>TRIM_TYPE</target_attribute_key>
  1001 + <target_detail>Y</target_detail>
  1002 + <source_step>&#x589e;&#x52a0;excel&#x5b57;&#x6bb5;&#x5176;&#x4ed6;&#x5143;&#x6570;&#x636e;</source_step>
  1003 + <source_field>trim_type</source_field>
  1004 + </mapping> <mapping> <target_step_name>&#x589e;&#x52a0;&#x65f6;&#x523b;&#x8868;&#x540d;&#x5b57;&#xff0c;&#x7ebf;&#x8def;&#x540d;&#x5b57;&#xff0c;&#x505c;&#x8f66;&#x573a;&#x540d;&#x5b57;</target_step_name>
  1005 + <target_attribute_key>DATA_VALUE</target_attribute_key>
  1006 + <target_detail>Y</target_detail>
  1007 + <source_step>&#x5408;&#x5e76;&#x589e;&#x52a0;&#x5e38;&#x91cf;&#x6570;&#x636e;metadata</source_step>
  1008 + <source_field>col_value</source_field>
  1009 + </mapping> <mapping> <target_step_name>&#x884c;&#x8f6c;&#x5217;</target_step_name>
  1010 + <target_attribute_key>VALUE</target_attribute_key>
  1011 + <target_detail>Y</target_detail>
  1012 + <source_step>&#x5217;&#x62c6;&#x5206;&#x4e3a;&#x591a;&#x884c; 2</source_step>
  1013 + <source_field>fieldName</source_field>
  1014 + </mapping> <mapping> <target_step_name>Excel&#x8f93;&#x5165;</target_step_name>
  1015 + <target_attribute_key>TRIM_TYPE</target_attribute_key>
  1016 + <target_detail>Y</target_detail>
  1017 + <source_step>&#x5217;&#x62c6;&#x5206;&#x4e3a;&#x591a;&#x884c;</source_step>
  1018 + <source_field>trim_type</source_field>
  1019 + </mapping> <mapping> <target_step_name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</target_step_name>
  1020 + <target_attribute_key>NAME</target_attribute_key>
  1021 + <target_detail>Y</target_detail>
  1022 + <source_step>&#x589e;&#x52a0;excel&#x5b57;&#x6bb5;&#x5176;&#x4ed6;&#x5143;&#x6570;&#x636e;</source_step>
  1023 + <source_field>fieldname</source_field>
  1024 + </mapping> <mapping> <target_step_name>&#x589e;&#x52a0;&#x65f6;&#x523b;&#x8868;&#x540d;&#x5b57;&#xff0c;&#x7ebf;&#x8def;&#x540d;&#x5b57;&#xff0c;&#x505c;&#x8f66;&#x573a;&#x540d;&#x5b57;</target_step_name>
  1025 + <target_attribute_key>TYPE</target_attribute_key>
  1026 + <target_detail>Y</target_detail>
  1027 + <source_step>&#x5408;&#x5e76;&#x589e;&#x52a0;&#x5e38;&#x91cf;&#x6570;&#x636e;metadata</source_step>
  1028 + <source_field>col_type</source_field>
  1029 + </mapping> </mappings> <cluster_schema/>
  1030 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1031 + <xloc>876</xloc>
  1032 + <yloc>167</yloc>
  1033 + <draw>Y</draw>
  1034 + </GUI>
  1035 + </step>
  1036 +
  1037 + <step>
  1038 + <name>&#x505c;&#x8f66;&#x573a;&#x540d;&#x79f0;</name>
  1039 + <type>DBLookup</type>
  1040 + <description/>
  1041 + <distribute>Y</distribute>
  1042 + <custom_distribution/>
  1043 + <copies>1</copies>
  1044 + <partitioning>
  1045 + <method>none</method>
  1046 + <schema_name/>
  1047 + </partitioning>
  1048 + <connection>control_jndi</connection>
  1049 + <cache>N</cache>
  1050 + <cache_load_all>N</cache_load_all>
  1051 + <cache_size>0</cache_size>
  1052 + <lookup>
  1053 + <schema/>
  1054 + <table>bsth_c_car_park</table>
  1055 + <orderby/>
  1056 + <fail_on_multiple>N</fail_on_multiple>
  1057 + <eat_row_on_failure>N</eat_row_on_failure>
  1058 + <key>
  1059 + <name>car_park</name>
  1060 + <field>park_code</field>
  1061 + <condition>&#x3d;</condition>
  1062 + <name2/>
  1063 + </key>
  1064 + <value>
  1065 + <name>park_name</name>
  1066 + <rename>tccname_</rename>
  1067 + <default/>
  1068 + <type>String</type>
  1069 + </value>
  1070 + </lookup>
  1071 + <cluster_schema/>
  1072 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1073 + <xloc>319</xloc>
  1074 + <yloc>468</yloc>
  1075 + <draw>Y</draw>
  1076 + </GUI>
  1077 + </step>
  1078 +
  1079 + <step>
  1080 + <name>&#x505c;&#x8f66;&#x573a;&#x540d;&#x79f0;metadata&#x5b57;&#x6bb5;</name>
  1081 + <type>SelectValues</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 + <fields> <field> <name>col_name</name>
  1091 + <rename/>
  1092 + <length>-2</length>
  1093 + <precision>-2</precision>
  1094 + </field> <field> <name>col_type</name>
  1095 + <rename/>
  1096 + <length>-2</length>
  1097 + <precision>-2</precision>
  1098 + </field> <field> <name>col_value</name>
  1099 + <rename/>
  1100 + <length>-2</length>
  1101 + <precision>-2</precision>
  1102 + </field> <select_unspecified>N</select_unspecified>
  1103 + </fields> <cluster_schema/>
  1104 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1105 + <xloc>743</xloc>
  1106 + <yloc>470</yloc>
  1107 + <draw>Y</draw>
  1108 + </GUI>
  1109 + </step>
  1110 +
  1111 + <step>
  1112 + <name>&#x505c;&#x8f66;&#x573a;&#x7f16;&#x7801;</name>
  1113 + <type>DBLookup</type>
  1114 + <description/>
  1115 + <distribute>Y</distribute>
  1116 + <custom_distribution/>
  1117 + <copies>1</copies>
  1118 + <partitioning>
  1119 + <method>none</method>
  1120 + <schema_name/>
  1121 + </partitioning>
  1122 + <connection>control_jndi</connection>
  1123 + <cache>N</cache>
  1124 + <cache_load_all>N</cache_load_all>
  1125 + <cache_size>0</cache_size>
  1126 + <lookup>
  1127 + <schema/>
  1128 + <table>bsth_c_line_information</table>
  1129 + <orderby/>
  1130 + <fail_on_multiple>N</fail_on_multiple>
  1131 + <eat_row_on_failure>N</eat_row_on_failure>
  1132 + <key>
  1133 + <name>lineinfoid_</name>
  1134 + <field>id</field>
  1135 + <condition>&#x3d;</condition>
  1136 + <name2/>
  1137 + </key>
  1138 + <value>
  1139 + <name>car_park</name>
  1140 + <rename>car_park</rename>
  1141 + <default/>
  1142 + <type>String</type>
  1143 + </value>
  1144 + </lookup>
  1145 + <cluster_schema/>
  1146 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1147 + <xloc>182</xloc>
  1148 + <yloc>467</yloc>
  1149 + <draw>Y</draw>
  1150 + </GUI>
  1151 + </step>
  1152 +
  1153 + <step>
  1154 + <name>&#x5220;&#x9664;&#x4e4b;&#x524d;&#x7684;&#x660e;&#x7ec6;&#x4fe1;&#x606f;</name>
  1155 + <type>ExecSQL</type>
  1156 + <description/>
  1157 + <distribute>Y</distribute>
  1158 + <custom_distribution/>
  1159 + <copies>1</copies>
  1160 + <partitioning>
  1161 + <method>none</method>
  1162 + <schema_name/>
  1163 + </partitioning>
  1164 + <connection>control_jndi</connection>
  1165 + <execute_each_row>Y</execute_each_row>
  1166 + <single_statement>N</single_statement>
  1167 + <replace_variables>N</replace_variables>
  1168 + <quoteString>N</quoteString>
  1169 + <sql>delete from bsth_c_s_ttinfo_detail where ttinfo &#x3d; &#x3f;</sql>
  1170 + <set_params>N</set_params>
  1171 + <insert_field/>
  1172 + <update_field/>
  1173 + <delete_field/>
  1174 + <read_field/>
  1175 + <arguments>
  1176 + <argument><name>ttid_</name></argument>
  1177 + </arguments>
  1178 + <cluster_schema/>
  1179 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1180 + <xloc>808</xloc>
  1181 + <yloc>16</yloc>
  1182 + <draw>Y</draw>
  1183 + </GUI>
  1184 + </step>
  1185 +
  1186 + <step>
  1187 + <name>&#x5220;&#x9664;&#x4e4b;&#x524d;&#x7684;&#x73ed;&#x578b;&#x4fe1;&#x606f;</name>
  1188 + <type>ExecSQL</type>
  1189 + <description/>
  1190 + <distribute>Y</distribute>
  1191 + <custom_distribution/>
  1192 + <copies>1</copies>
  1193 + <partitioning>
  1194 + <method>none</method>
  1195 + <schema_name/>
  1196 + </partitioning>
  1197 + <connection>control_jndi</connection>
  1198 + <execute_each_row>Y</execute_each_row>
  1199 + <single_statement>N</single_statement>
  1200 + <replace_variables>N</replace_variables>
  1201 + <quoteString>N</quoteString>
  1202 + <sql>delete from bsth_c_s_ttinfo_bx_detail where ttinfo &#x3d; &#x3f;</sql>
  1203 + <set_params>N</set_params>
  1204 + <insert_field/>
  1205 + <update_field/>
  1206 + <delete_field/>
  1207 + <read_field/>
  1208 + <arguments>
  1209 + <argument><name>ttid_</name></argument>
  1210 + </arguments>
  1211 + <cluster_schema/>
  1212 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1213 + <xloc>812</xloc>
  1214 + <yloc>86</yloc>
  1215 + <draw>Y</draw>
  1216 + </GUI>
  1217 + </step>
  1218 +
  1219 + <step>
  1220 + <name>&#x5408;&#x5e76;&#x589e;&#x52a0;&#x5e38;&#x91cf;&#x6570;&#x636e;metadata</name>
  1221 + <type>Dummy</type>
  1222 + <description/>
  1223 + <distribute>Y</distribute>
  1224 + <custom_distribution/>
  1225 + <copies>1</copies>
  1226 + <partitioning>
  1227 + <method>none</method>
  1228 + <schema_name/>
  1229 + </partitioning>
  1230 + <cluster_schema/>
  1231 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1232 + <xloc>883</xloc>
  1233 + <yloc>373</yloc>
  1234 + <draw>Y</draw>
  1235 + </GUI>
  1236 + </step>
  1237 +
  1238 + <step>
  1239 + <name>&#x589e;&#x52a0;excel&#x5b57;&#x6bb5;&#x5176;&#x4ed6;&#x5143;&#x6570;&#x636e;</name>
  1240 + <type>Constant</type>
  1241 + <description/>
  1242 + <distribute>Y</distribute>
  1243 + <custom_distribution/>
  1244 + <copies>1</copies>
  1245 + <partitioning>
  1246 + <method>none</method>
  1247 + <schema_name/>
  1248 + </partitioning>
  1249 + <fields>
  1250 + <field>
  1251 + <name>fieldtype</name>
  1252 + <type>String</type>
  1253 + <format/>
  1254 + <currency/>
  1255 + <decimal/>
  1256 + <group/>
  1257 + <nullif>String</nullif>
  1258 + <length>-1</length>
  1259 + <precision>-1</precision>
  1260 + <set_empty_string>N</set_empty_string>
  1261 + </field>
  1262 + <field>
  1263 + <name>length</name>
  1264 + <type>String</type>
  1265 + <format/>
  1266 + <currency/>
  1267 + <decimal/>
  1268 + <group/>
  1269 + <nullif>-1</nullif>
  1270 + <length>-1</length>
  1271 + <precision>-1</precision>
  1272 + <set_empty_string>N</set_empty_string>
  1273 + </field>
  1274 + <field>
  1275 + <name>precision</name>
  1276 + <type>String</type>
  1277 + <format/>
  1278 + <currency/>
  1279 + <decimal/>
  1280 + <group/>
  1281 + <nullif>-1</nullif>
  1282 + <length>-1</length>
  1283 + <precision>-1</precision>
  1284 + <set_empty_string>N</set_empty_string>
  1285 + </field>
  1286 + <field>
  1287 + <name>trim_type</name>
  1288 + <type>String</type>
  1289 + <format/>
  1290 + <currency/>
  1291 + <decimal/>
  1292 + <group/>
  1293 + <nullif>none</nullif>
  1294 + <length>-1</length>
  1295 + <precision>-1</precision>
  1296 + <set_empty_string>N</set_empty_string>
  1297 + </field>
  1298 + <field>
  1299 + <name>repeat</name>
  1300 + <type>String</type>
  1301 + <format/>
  1302 + <currency/>
  1303 + <decimal/>
  1304 + <group/>
  1305 + <nullif>N</nullif>
  1306 + <length>-1</length>
  1307 + <precision>-1</precision>
  1308 + <set_empty_string>N</set_empty_string>
  1309 + </field>
  1310 + <field>
  1311 + <name>format</name>
  1312 + <type>String</type>
  1313 + <format/>
  1314 + <currency/>
  1315 + <decimal/>
  1316 + <group/>
  1317 + <nullif>&#x23;</nullif>
  1318 + <length>-1</length>
  1319 + <precision>-1</precision>
  1320 + <set_empty_string>N</set_empty_string>
  1321 + </field>
  1322 + </fields>
  1323 + <cluster_schema/>
  1324 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1325 + <xloc>622</xloc>
  1326 + <yloc>162</yloc>
  1327 + <draw>Y</draw>
  1328 + </GUI>
  1329 + </step>
  1330 +
  1331 + <step>
  1332 + <name>&#x589e;&#x52a0;normalize&#x5143;&#x6570;&#x636e;</name>
  1333 + <type>Constant</type>
  1334 + <description/>
  1335 + <distribute>Y</distribute>
  1336 + <custom_distribution/>
  1337 + <copies>1</copies>
  1338 + <partitioning>
  1339 + <method>none</method>
  1340 + <schema_name/>
  1341 + </partitioning>
  1342 + <fields>
  1343 + <field>
  1344 + <name>valuefield</name>
  1345 + <type>String</type>
  1346 + <format/>
  1347 + <currency/>
  1348 + <decimal/>
  1349 + <group/>
  1350 + <nullif>&#x53d1;&#x8f66;&#x65f6;&#x95f4;</nullif>
  1351 + <length>-1</length>
  1352 + <precision>-1</precision>
  1353 + <set_empty_string>N</set_empty_string>
  1354 + </field>
  1355 + </fields>
  1356 + <cluster_schema/>
  1357 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1358 + <xloc>628</xloc>
  1359 + <yloc>247</yloc>
  1360 + <draw>Y</draw>
  1361 + </GUI>
  1362 + </step>
  1363 +
  1364 + <step>
  1365 + <name>&#x589e;&#x52a0;&#x505c;&#x8f66;&#x573a;&#x540d;&#x79f0;metadata</name>
  1366 + <type>Constant</type>
  1367 + <description/>
  1368 + <distribute>Y</distribute>
  1369 + <custom_distribution/>
  1370 + <copies>1</copies>
  1371 + <partitioning>
  1372 + <method>none</method>
  1373 + <schema_name/>
  1374 + </partitioning>
  1375 + <fields>
  1376 + <field>
  1377 + <name>col_name</name>
  1378 + <type>String</type>
  1379 + <format/>
  1380 + <currency/>
  1381 + <decimal/>
  1382 + <group/>
  1383 + <nullif>tccname_</nullif>
  1384 + <length>-1</length>
  1385 + <precision>-1</precision>
  1386 + <set_empty_string>N</set_empty_string>
  1387 + </field>
  1388 + <field>
  1389 + <name>col_type</name>
  1390 + <type>String</type>
  1391 + <format/>
  1392 + <currency/>
  1393 + <decimal/>
  1394 + <group/>
  1395 + <nullif>String</nullif>
  1396 + <length>-1</length>
  1397 + <precision>-1</precision>
  1398 + <set_empty_string>N</set_empty_string>
  1399 + </field>
  1400 + <field>
  1401 + <name>col_value</name>
  1402 + <type>String</type>
  1403 + <format/>
  1404 + <currency/>
  1405 + <decimal/>
  1406 + <group/>
  1407 + <nullif>replace</nullif>
  1408 + <length>-1</length>
  1409 + <precision>-1</precision>
  1410 + <set_empty_string>N</set_empty_string>
  1411 + </field>
  1412 + </fields>
  1413 + <cluster_schema/>
  1414 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1415 + <xloc>461</xloc>
  1416 + <yloc>469</yloc>
  1417 + <draw>Y</draw>
  1418 + </GUI>
  1419 + </step>
  1420 +
  1421 + <step>
  1422 + <name>&#x589e;&#x52a0;&#x65f6;&#x523b;&#x8868;&#x540d;&#x79f0;metadata</name>
  1423 + <type>Constant</type>
  1424 + <description/>
  1425 + <distribute>Y</distribute>
  1426 + <custom_distribution/>
  1427 + <copies>1</copies>
  1428 + <partitioning>
  1429 + <method>none</method>
  1430 + <schema_name/>
  1431 + </partitioning>
  1432 + <fields>
  1433 + <field>
  1434 + <name>col_name</name>
  1435 + <type>String</type>
  1436 + <format/>
  1437 + <currency/>
  1438 + <decimal/>
  1439 + <group/>
  1440 + <nullif>ttinfoname_</nullif>
  1441 + <length>-1</length>
  1442 + <precision>-1</precision>
  1443 + <set_empty_string>N</set_empty_string>
  1444 + </field>
  1445 + <field>
  1446 + <name>col_type</name>
  1447 + <type>String</type>
  1448 + <format/>
  1449 + <currency/>
  1450 + <decimal/>
  1451 + <group/>
  1452 + <nullif>String</nullif>
  1453 + <length>-1</length>
  1454 + <precision>-1</precision>
  1455 + <set_empty_string>N</set_empty_string>
  1456 + </field>
  1457 + <field>
  1458 + <name>col_value</name>
  1459 + <type>String</type>
  1460 + <format/>
  1461 + <currency/>
  1462 + <decimal/>
  1463 + <group/>
  1464 + <nullif>replace</nullif>
  1465 + <length>-1</length>
  1466 + <precision>-1</precision>
  1467 + <set_empty_string>N</set_empty_string>
  1468 + </field>
  1469 + </fields>
  1470 + <cluster_schema/>
  1471 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1472 + <xloc>608</xloc>
  1473 + <yloc>601</yloc>
  1474 + <draw>Y</draw>
  1475 + </GUI>
  1476 + </step>
  1477 +
  1478 + <step>
  1479 + <name>&#x589e;&#x52a0;&#x7ad9;&#x70b9;&#x8def;&#x7531;&#x7248;&#x672c; metadata</name>
  1480 + <type>Constant</type>
  1481 + <description/>
  1482 + <distribute>Y</distribute>
  1483 + <custom_distribution/>
  1484 + <copies>1</copies>
  1485 + <partitioning>
  1486 + <method>none</method>
  1487 + <schema_name/>
  1488 + </partitioning>
  1489 + <fields>
  1490 + <field>
  1491 + <name>col_name</name>
  1492 + <type>String</type>
  1493 + <format/>
  1494 + <currency/>
  1495 + <decimal/>
  1496 + <group/>
  1497 + <nullif>zdlyversion_</nullif>
  1498 + <length>-1</length>
  1499 + <precision>-1</precision>
  1500 + <set_empty_string>N</set_empty_string>
  1501 + </field>
  1502 + <field>
  1503 + <name>col_type</name>
  1504 + <type>String</type>
  1505 + <format/>
  1506 + <currency/>
  1507 + <decimal/>
  1508 + <group/>
  1509 + <nullif>String</nullif>
  1510 + <length>-1</length>
  1511 + <precision>-1</precision>
  1512 + <set_empty_string>N</set_empty_string>
  1513 + </field>
  1514 + <field>
  1515 + <name>col_value</name>
  1516 + <type>String</type>
  1517 + <format/>
  1518 + <currency/>
  1519 + <decimal/>
  1520 + <group/>
  1521 + <nullif>replace</nullif>
  1522 + <length>-1</length>
  1523 + <precision>-1</precision>
  1524 + <set_empty_string>N</set_empty_string>
  1525 + </field>
  1526 + </fields>
  1527 + <cluster_schema/>
  1528 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1529 + <xloc>390</xloc>
  1530 + <yloc>532</yloc>
  1531 + <draw>Y</draw>
  1532 + </GUI>
  1533 + </step>
  1534 +
  1535 + <step>
  1536 + <name>&#x589e;&#x52a0;&#x7ebf;&#x8def;&#x540d;&#x79f0;metadata</name>
  1537 + <type>Constant</type>
  1538 + <description/>
  1539 + <distribute>Y</distribute>
  1540 + <custom_distribution/>
  1541 + <copies>1</copies>
  1542 + <partitioning>
  1543 + <method>none</method>
  1544 + <schema_name/>
  1545 + </partitioning>
  1546 + <fields>
  1547 + <field>
  1548 + <name>col_name</name>
  1549 + <type>String</type>
  1550 + <format/>
  1551 + <currency/>
  1552 + <decimal/>
  1553 + <group/>
  1554 + <nullif>xlname_</nullif>
  1555 + <length>-1</length>
  1556 + <precision>-1</precision>
  1557 + <set_empty_string>N</set_empty_string>
  1558 + </field>
  1559 + <field>
  1560 + <name>col_type</name>
  1561 + <type>String</type>
  1562 + <format/>
  1563 + <currency/>
  1564 + <decimal/>
  1565 + <group/>
  1566 + <nullif>String</nullif>
  1567 + <length>-1</length>
  1568 + <precision>-1</precision>
  1569 + <set_empty_string>N</set_empty_string>
  1570 + </field>
  1571 + <field>
  1572 + <name>col_value</name>
  1573 + <type>String</type>
  1574 + <format/>
  1575 + <currency/>
  1576 + <decimal/>
  1577 + <group/>
  1578 + <nullif>replace</nullif>
  1579 + <length>-1</length>
  1580 + <precision>-1</precision>
  1581 + <set_empty_string>N</set_empty_string>
  1582 + </field>
  1583 + </fields>
  1584 + <cluster_schema/>
  1585 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1586 + <xloc>383</xloc>
  1587 + <yloc>341</yloc>
  1588 + <draw>Y</draw>
  1589 + </GUI>
  1590 + </step>
  1591 +
  1592 + <step>
  1593 + <name>&#x65f6;&#x523b;&#x8868;&#x540d;&#x79f0;metadata&#x5b57;&#x6bb5;</name>
  1594 + <type>SelectValues</type>
  1595 + <description/>
  1596 + <distribute>Y</distribute>
  1597 + <custom_distribution/>
  1598 + <copies>1</copies>
  1599 + <partitioning>
  1600 + <method>none</method>
  1601 + <schema_name/>
  1602 + </partitioning>
  1603 + <fields> <field> <name>col_name</name>
  1604 + <rename/>
  1605 + <length>-2</length>
  1606 + <precision>-2</precision>
  1607 + </field> <field> <name>col_type</name>
  1608 + <rename/>
  1609 + <length>-2</length>
  1610 + <precision>-2</precision>
  1611 + </field> <field> <name>col_value</name>
  1612 + <rename/>
  1613 + <length>-2</length>
  1614 + <precision>-2</precision>
  1615 + </field> <select_unspecified>N</select_unspecified>
  1616 + </fields> <cluster_schema/>
  1617 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1618 + <xloc>888</xloc>
  1619 + <yloc>601</yloc>
  1620 + <draw>Y</draw>
  1621 + </GUI>
  1622 + </step>
  1623 +
  1624 + <step>
  1625 + <name>&#x66ff;&#x6362;&#x505c;&#x8f66;&#x5382;&#x540d;&#x5b57; </name>
  1626 + <type>SetValueField</type>
  1627 + <description/>
  1628 + <distribute>Y</distribute>
  1629 + <custom_distribution/>
  1630 + <copies>1</copies>
  1631 + <partitioning>
  1632 + <method>none</method>
  1633 + <schema_name/>
  1634 + </partitioning>
  1635 + <fields>
  1636 + <field>
  1637 + <name>col_value</name>
  1638 + <replaceby>tccname_</replaceby>
  1639 + </field>
  1640 + </fields>
  1641 + <cluster_schema/>
  1642 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1643 + <xloc>598</xloc>
  1644 + <yloc>471</yloc>
  1645 + <draw>Y</draw>
  1646 + </GUI>
  1647 + </step>
  1648 +
  1649 + <step>
  1650 + <name>&#x66ff;&#x6362;&#x65f6;&#x523b;&#x8868;&#x540d;&#x5b57;</name>
  1651 + <type>SetValueField</type>
  1652 + <description/>
  1653 + <distribute>Y</distribute>
  1654 + <custom_distribution/>
  1655 + <copies>1</copies>
  1656 + <partitioning>
  1657 + <method>none</method>
  1658 + <schema_name/>
  1659 + </partitioning>
  1660 + <fields>
  1661 + <field>
  1662 + <name>col_value</name>
  1663 + <replaceby>ttinfoname_</replaceby>
  1664 + </field>
  1665 + </fields>
  1666 + <cluster_schema/>
  1667 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1668 + <xloc>746</xloc>
  1669 + <yloc>602</yloc>
  1670 + <draw>Y</draw>
  1671 + </GUI>
  1672 + </step>
  1673 +
  1674 + <step>
  1675 + <name>&#x66ff;&#x6362;&#x7ad9;&#x70b9;&#x8def;&#x7531;&#x7248;&#x672c;</name>
  1676 + <type>SetValueField</type>
  1677 + <description/>
  1678 + <distribute>Y</distribute>
  1679 + <custom_distribution/>
  1680 + <copies>1</copies>
  1681 + <partitioning>
  1682 + <method>none</method>
  1683 + <schema_name/>
  1684 + </partitioning>
  1685 + <fields>
  1686 + <field>
  1687 + <name>col_value</name>
  1688 + <replaceby>zdlyversion_</replaceby>
  1689 + </field>
  1690 + </fields>
  1691 + <cluster_schema/>
  1692 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1693 + <xloc>594</xloc>
  1694 + <yloc>532</yloc>
  1695 + <draw>Y</draw>
  1696 + </GUI>
  1697 + </step>
  1698 +
  1699 + <step>
  1700 + <name>&#x66ff;&#x6362;&#x7ebf;&#x8def;&#x540d;&#x79f0;</name>
  1701 + <type>SetValueField</type>
  1702 + <description/>
  1703 + <distribute>Y</distribute>
  1704 + <custom_distribution/>
  1705 + <copies>1</copies>
  1706 + <partitioning>
  1707 + <method>none</method>
  1708 + <schema_name/>
  1709 + </partitioning>
  1710 + <fields>
  1711 + <field>
  1712 + <name>col_value</name>
  1713 + <replaceby>xlname_</replaceby>
  1714 + </field>
  1715 + </fields>
  1716 + <cluster_schema/>
  1717 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1718 + <xloc>521</xloc>
  1719 + <yloc>342</yloc>
  1720 + <draw>Y</draw>
  1721 + </GUI>
  1722 + </step>
  1723 +
  1724 + <step>
  1725 + <name>&#x7ad9;&#x70b9;&#x8def;&#x7531;&#x7248;&#x672c;metadata&#x5b57;&#x6bb5;</name>
  1726 + <type>SelectValues</type>
  1727 + <description/>
  1728 + <distribute>Y</distribute>
  1729 + <custom_distribution/>
  1730 + <copies>1</copies>
  1731 + <partitioning>
  1732 + <method>none</method>
  1733 + <schema_name/>
  1734 + </partitioning>
  1735 + <fields> <field> <name>col_name</name>
  1736 + <rename/>
  1737 + <length>-2</length>
  1738 + <precision>-2</precision>
  1739 + </field> <field> <name>col_type</name>
  1740 + <rename/>
  1741 + <length>-2</length>
  1742 + <precision>-2</precision>
  1743 + </field> <field> <name>col_value</name>
  1744 + <rename/>
  1745 + <length>-2</length>
  1746 + <precision>-2</precision>
  1747 + </field> <select_unspecified>N</select_unspecified>
  1748 + </fields> <cluster_schema/>
  1749 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1750 + <xloc>741</xloc>
  1751 + <yloc>533</yloc>
  1752 + <draw>Y</draw>
  1753 + </GUI>
  1754 + </step>
  1755 +
  1756 + <step>
  1757 + <name>&#x7ebf;&#x8def;&#x540d;&#x79f0;metadata&#x5b57;&#x6bb5;</name>
  1758 + <type>SelectValues</type>
  1759 + <description/>
  1760 + <distribute>Y</distribute>
  1761 + <custom_distribution/>
  1762 + <copies>1</copies>
  1763 + <partitioning>
  1764 + <method>none</method>
  1765 + <schema_name/>
  1766 + </partitioning>
  1767 + <fields> <field> <name>col_name</name>
  1768 + <rename/>
  1769 + <length>-2</length>
  1770 + <precision>-2</precision>
  1771 + </field> <field> <name>col_type</name>
  1772 + <rename/>
  1773 + <length>-2</length>
  1774 + <precision>-2</precision>
  1775 + </field> <field> <name>col_value</name>
  1776 + <rename/>
  1777 + <length>-2</length>
  1778 + <precision>-2</precision>
  1779 + </field> <select_unspecified>N</select_unspecified>
  1780 + </fields> <cluster_schema/>
  1781 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1782 + <xloc>668</xloc>
  1783 + <yloc>343</yloc>
  1784 + <draw>Y</draw>
  1785 + </GUI>
  1786 + </step>
  1787 +
  1788 + <step>
  1789 + <name>&#x83b7;&#x53d6;excel&#x5b57;&#x6bb5;&#x540d;&#x5b57;&#x7b26;&#x4e32;</name>
  1790 + <type>GetVariable</type>
  1791 + <description/>
  1792 + <distribute>Y</distribute>
  1793 + <custom_distribution/>
  1794 + <copies>1</copies>
  1795 + <partitioning>
  1796 + <method>none</method>
  1797 + <schema_name/>
  1798 + </partitioning>
  1799 + <fields>
  1800 + <field>
  1801 + <name>fieldnames</name>
  1802 + <variable>&#x24;&#x7b;excelfieldnames&#x7d;</variable>
  1803 + <type>String</type>
  1804 + <format/>
  1805 + <currency/>
  1806 + <decimal/>
  1807 + <group/>
  1808 + <length>-1</length>
  1809 + <precision>-1</precision>
  1810 + <trim_type>none</trim_type>
  1811 + </field>
  1812 + </fields>
  1813 + <cluster_schema/>
  1814 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1815 + <xloc>252</xloc>
  1816 + <yloc>153</yloc>
  1817 + <draw>Y</draw>
  1818 + </GUI>
  1819 + </step>
  1820 +
  1821 + <step>
  1822 + <name>&#x83b7;&#x53d6;excel&#x6587;&#x4ef6;&#x540d;</name>
  1823 + <type>GetVariable</type>
  1824 + <description/>
  1825 + <distribute>Y</distribute>
  1826 + <custom_distribution/>
  1827 + <copies>1</copies>
  1828 + <partitioning>
  1829 + <method>none</method>
  1830 + <schema_name/>
  1831 + </partitioning>
  1832 + <fields>
  1833 + <field>
  1834 + <name>filepath_</name>
  1835 + <variable>&#x24;&#x7b;filepath&#x7d;</variable>
  1836 + <type>String</type>
  1837 + <format/>
  1838 + <currency/>
  1839 + <decimal/>
  1840 + <group/>
  1841 + <length>-1</length>
  1842 + <precision>-1</precision>
  1843 + <trim_type>none</trim_type>
  1844 + </field>
  1845 + <field>
  1846 + <name>erroroutputdir_</name>
  1847 + <variable>&#x24;&#x7b;erroroutputdir&#x7d;</variable>
  1848 + <type>String</type>
  1849 + <format/>
  1850 + <currency/>
  1851 + <decimal/>
  1852 + <group/>
  1853 + <length>-1</length>
  1854 + <precision>-1</precision>
  1855 + <trim_type>none</trim_type>
  1856 + </field>
  1857 + <field>
  1858 + <name>sheetname_</name>
  1859 + <variable>&#x24;&#x7b;sheetname&#x7d;</variable>
  1860 + <type>String</type>
  1861 + <format/>
  1862 + <currency/>
  1863 + <decimal/>
  1864 + <group/>
  1865 + <length>-1</length>
  1866 + <precision>-1</precision>
  1867 + <trim_type>none</trim_type>
  1868 + </field>
  1869 + </fields>
  1870 + <cluster_schema/>
  1871 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1872 + <xloc>301</xloc>
  1873 + <yloc>52</yloc>
  1874 + <draw>Y</draw>
  1875 + </GUI>
  1876 + </step>
  1877 +
  1878 + <step>
  1879 + <name>&#x83b7;&#x53d6;normalize&#x5b57;&#x6bb5;&#x540d;&#x5b57;&#x7b26;&#x4e32;</name>
  1880 + <type>GetVariable</type>
  1881 + <description/>
  1882 + <distribute>Y</distribute>
  1883 + <custom_distribution/>
  1884 + <copies>1</copies>
  1885 + <partitioning>
  1886 + <method>none</method>
  1887 + <schema_name/>
  1888 + </partitioning>
  1889 + <fields>
  1890 + <field>
  1891 + <name>normalizefieldnames_</name>
  1892 + <variable>&#x24;&#x7b;normalizefieldnames&#x7d;</variable>
  1893 + <type>String</type>
  1894 + <format/>
  1895 + <currency/>
  1896 + <decimal/>
  1897 + <group/>
  1898 + <length>-1</length>
  1899 + <precision>-1</precision>
  1900 + <trim_type>none</trim_type>
  1901 + </field>
  1902 + </fields>
  1903 + <cluster_schema/>
  1904 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1905 + <xloc>261</xloc>
  1906 + <yloc>251</yloc>
  1907 + <draw>Y</draw>
  1908 + </GUI>
  1909 + </step>
  1910 +
  1911 + <step>
  1912 + <name>&#x83b7;&#x53d6;&#x65f6;&#x523b;&#x8868;id</name>
  1913 + <type>GetVariable</type>
  1914 + <description/>
  1915 + <distribute>N</distribute>
  1916 + <custom_distribution/>
  1917 + <copies>1</copies>
  1918 + <partitioning>
  1919 + <method>none</method>
  1920 + <schema_name/>
  1921 + </partitioning>
  1922 + <fields>
  1923 + <field>
  1924 + <name>ttid_</name>
  1925 + <variable>&#x24;&#x7b;ttid&#x7d;</variable>
  1926 + <type>Integer</type>
  1927 + <format/>
  1928 + <currency/>
  1929 + <decimal/>
  1930 + <group/>
  1931 + <length>-1</length>
  1932 + <precision>-1</precision>
  1933 + <trim_type>none</trim_type>
  1934 + </field>
  1935 + </fields>
  1936 + <cluster_schema/>
  1937 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1938 + <xloc>608</xloc>
  1939 + <yloc>16</yloc>
  1940 + <draw>Y</draw>
  1941 + </GUI>
  1942 + </step>
  1943 +
  1944 + <step>
  1945 + <name>&#x83b7;&#x53d6;&#x65f6;&#x523b;&#x8868;&#x540d;&#x79f0;</name>
  1946 + <type>GetVariable</type>
  1947 + <description/>
  1948 + <distribute>Y</distribute>
  1949 + <custom_distribution/>
  1950 + <copies>1</copies>
  1951 + <partitioning>
  1952 + <method>none</method>
  1953 + <schema_name/>
  1954 + </partitioning>
  1955 + <fields>
  1956 + <field>
  1957 + <name>ttinfoname_</name>
  1958 + <variable>&#x24;&#x7b;ttinfoname&#x7d;</variable>
  1959 + <type>String</type>
  1960 + <format/>
  1961 + <currency/>
  1962 + <decimal/>
  1963 + <group/>
  1964 + <length>-1</length>
  1965 + <precision>-1</precision>
  1966 + <trim_type>none</trim_type>
  1967 + </field>
  1968 + </fields>
  1969 + <cluster_schema/>
  1970 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1971 + <xloc>474</xloc>
  1972 + <yloc>601</yloc>
  1973 + <draw>Y</draw>
  1974 + </GUI>
  1975 + </step>
  1976 +
  1977 + <step>
  1978 + <name>&#x83b7;&#x53d6;&#x7ad9;&#x70b9;&#x8def;&#x7531;version</name>
  1979 + <type>GetVariable</type>
  1980 + <description/>
  1981 + <distribute>Y</distribute>
  1982 + <custom_distribution/>
  1983 + <copies>1</copies>
  1984 + <partitioning>
  1985 + <method>none</method>
  1986 + <schema_name/>
  1987 + </partitioning>
  1988 + <fields>
  1989 + <field>
  1990 + <name>zdlyversion_</name>
  1991 + <variable>&#x24;&#x7b;lineversion&#x7d;</variable>
  1992 + <type>String</type>
  1993 + <format/>
  1994 + <currency/>
  1995 + <decimal/>
  1996 + <group/>
  1997 + <length>-1</length>
  1998 + <precision>-1</precision>
  1999 + <trim_type>none</trim_type>
  2000 + </field>
  2001 + </fields>
  2002 + <cluster_schema/>
  2003 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2004 + <xloc>187</xloc>
  2005 + <yloc>534</yloc>
  2006 + <draw>Y</draw>
  2007 + </GUI>
  2008 + </step>
  2009 +
  2010 + <step>
  2011 + <name>&#x83b7;&#x53d6;&#x7ebf;&#x8def;&#x540d;&#x79f0;</name>
  2012 + <type>GetVariable</type>
  2013 + <description/>
  2014 + <distribute>Y</distribute>
  2015 + <custom_distribution/>
  2016 + <copies>1</copies>
  2017 + <partitioning>
  2018 + <method>none</method>
  2019 + <schema_name/>
  2020 + </partitioning>
  2021 + <fields>
  2022 + <field>
  2023 + <name>xlname_</name>
  2024 + <variable>&#x24;&#x7b;xlname&#x7d;</variable>
  2025 + <type>String</type>
  2026 + <format/>
  2027 + <currency/>
  2028 + <decimal/>
  2029 + <group/>
  2030 + <length>-1</length>
  2031 + <precision>-1</precision>
  2032 + <trim_type>none</trim_type>
  2033 + </field>
  2034 + </fields>
  2035 + <cluster_schema/>
  2036 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2037 + <xloc>184</xloc>
  2038 + <yloc>342</yloc>
  2039 + <draw>Y</draw>
  2040 + </GUI>
  2041 + </step>
  2042 +
  2043 + <step>
  2044 + <name>&#x83b7;&#x53d6;&#x7ebf;&#x8def;&#x6807;&#x51c6;id</name>
  2045 + <type>GetVariable</type>
  2046 + <description/>
  2047 + <distribute>Y</distribute>
  2048 + <custom_distribution/>
  2049 + <copies>1</copies>
  2050 + <partitioning>
  2051 + <method>none</method>
  2052 + <schema_name/>
  2053 + </partitioning>
  2054 + <fields>
  2055 + <field>
  2056 + <name>lineinfoid_</name>
  2057 + <variable>&#x24;&#x7b;lineinfoid&#x7d;</variable>
  2058 + <type>Integer</type>
  2059 + <format/>
  2060 + <currency/>
  2061 + <decimal/>
  2062 + <group/>
  2063 + <length>-1</length>
  2064 + <precision>-1</precision>
  2065 + <trim_type>none</trim_type>
  2066 + </field>
  2067 + </fields>
  2068 + <cluster_schema/>
  2069 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2070 + <xloc>74</xloc>
  2071 + <yloc>468</yloc>
  2072 + <draw>Y</draw>
  2073 + </GUI>
  2074 + </step>
  2075 +
  2076 + <step>
  2077 + <name>&#x9017;&#x53f7;&#x5207;&#x5206;&#x6210;&#x5b57;&#x6bb5;&#x540d;</name>
  2078 + <type>SplitFieldToRows3</type>
  2079 + <description/>
  2080 + <distribute>Y</distribute>
  2081 + <custom_distribution/>
  2082 + <copies>1</copies>
  2083 + <partitioning>
  2084 + <method>none</method>
  2085 + <schema_name/>
  2086 + </partitioning>
  2087 + <splitfield>fieldnames</splitfield>
  2088 + <delimiter>,</delimiter>
  2089 + <newfield>fieldname</newfield>
  2090 + <rownum>N</rownum>
  2091 + <rownum_field/>
  2092 + <resetrownumber>Y</resetrownumber>
  2093 + <delimiter_is_regex>N</delimiter_is_regex>
  2094 + <cluster_schema/>
  2095 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2096 + <xloc>442</xloc>
  2097 + <yloc>153</yloc>
  2098 + <draw>Y</draw>
  2099 + </GUI>
  2100 + </step>
  2101 +
  2102 + <step>
  2103 + <name>&#x9017;&#x53f7;&#x5207;&#x5206;&#x6210;&#x5b57;&#x6bb5;&#x540d; 2</name>
  2104 + <type>SplitFieldToRows3</type>
  2105 + <description/>
  2106 + <distribute>Y</distribute>
  2107 + <custom_distribution/>
  2108 + <copies>1</copies>
  2109 + <partitioning>
  2110 + <method>none</method>
  2111 + <schema_name/>
  2112 + </partitioning>
  2113 + <splitfield>normalizefieldnames_</splitfield>
  2114 + <delimiter>,</delimiter>
  2115 + <newfield>nfieldname</newfield>
  2116 + <rownum>N</rownum>
  2117 + <rownum_field/>
  2118 + <resetrownumber>Y</resetrownumber>
  2119 + <delimiter_is_regex>N</delimiter_is_regex>
  2120 + <cluster_schema/>
  2121 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2122 + <xloc>444</xloc>
  2123 + <yloc>247</yloc>
  2124 + <draw>Y</draw>
  2125 + </GUI>
  2126 + </step>
  2127 +
  2128 + <step_error_handling>
  2129 + </step_error_handling>
  2130 + <slave-step-copy-partition-distribution>
  2131 +</slave-step-copy-partition-distribution>
  2132 + <slave_transformation>N</slave_transformation>
  2133 +
  2134 +</transformation>
... ...
src/main/resources/message_en_US.properties
... ... @@ -4583,6 +4583,123 @@ employeeConfigInfoServiceImpl-line309=conductor employee is not associated with
4583 4583 employeeConfigInfoServiceImpl-line363=there are some employees that disabled in the route[%s][%s]schedule plan.
4584 4584 employeeConfigInfoServiceImpl-line403=employee config is associated with the schedule rule, do not be voided.
4585 4585  
  4586 +tTInfoServiceImpl-line54=duplicate name
  4587 +tTInfoServiceImpl-line72=regular effective date is empty
  4588 +tTInfoServiceImpl-line82=current regular effective date is used
  4589 +tTInfoServiceImpl-line113=current special date is used
  4590 +tTInfoServiceImpl-line169=unknown activation date
  4591 +tTInfoServiceImpl-line170=historical
  4592 +tTInfoServiceImpl-line170-1=current
  4593 +tTInfoServiceImpl-line170-2=to be updated
  4594 +tTInfoServiceImpl-line193=unknown version
  4595 +tTInfoServiceImpl-line195=repeat version
  4596 +tTInfoServiceImpl-line205=unknown activation date
  4597 +tTInfoServiceImpl-line206=historical
  4598 +tTInfoServiceImpl-line206-1=current
  4599 +tTInfoServiceImpl-line206-2=to be updated
  4600 +
  4601 +tTInfoDetailController-line54=unknown line version name
  4602 +
  4603 +tTInfoDetailDataToolsImpl-line264=timetable
  4604 +tTInfoDetailDataToolsImpl-line283=not .xls .xlsx type file.
  4605 +tTInfoDetailDataToolsImpl-line383=Road sign
  4606 +tTInfoDetailDataToolsImpl-line384=Empty shift/Empty mileage
  4607 +tTInfoDetailDataToolsImpl-line385=Operation shift/Operation mileage
  4608 +tTInfoDetailDataToolsImpl-line460=Empty shift=%d,Operation shift=%d,Empty mileage=%.3f,Operation mileage=%.3f,Total mileage=%.3f
  4609 +
  4610 +timetableExcelData-line79=sheet[%s] content is empty
  4611 +timetableExcelData-line81=sheet[%s] row 1 content is empty
  4612 +timetableExcelData-line304=the imported excel type is null
  4613 +timetableExcelData-line309=the imported excel file path is null
  4614 +timetableExcelData-line312=the imported excel file[######{0}] is not exist
  4615 +timetableExcelData-line322=the imported excel file[######{0}] is not xls,xlsx type
  4616 +timetableExcelData-line327=the imported excel sheet name is null
  4617 +timetableExcelData-line330=the imported excel sheet name[######{0}] is not exist!
  4618 +timetableExcelData-line335=the lineService is null
  4619 +timetableExcelData-line336=the line Id is null
  4620 +timetableExcelData-line339=the line[id=######{0}] is not exist
  4621 +timetableExcelData-line342=the lsStationRouteService is null
  4622 +timetableExcelData-line343=the lineRoute version is nul
  4623 +timetableExcelData-line351=the line[######{0}],route[版本=######{1}] is null
  4624 +timetableExcelData-line355=the guideboardInfoService is null
  4625 +timetableExcelData-line361=the line[######{0}] road sign is null
  4626 +timetableExcelData-line365=the timetableExcelDataValidateStrategy is null
  4627 +timetableExcelData-line472=timetableExcelDataImportStrategy is null
  4628 +timetableExcelData-line552=timetable id is null
  4629 +timetableExcelData-line553=ttInfoRepository is null
  4630 +timetableExcelData-line554=ttInfoDetailRepository is null
  4631 +timetableExcelData-line555=timetableExcelPVDataExportStrategy is null
  4632 +timetableExcelData-line559=timetable[id=######{0}] is not found
  4633 +timetableExcelData-line565=dataToolsProperties is null
  4634 +
  4635 +timetableExcelDataValidateStrategyImpl-line51=the row 1, column %d data is null
  4636 +timetableExcelDataValidateStrategyImpl-line62=the row 1, column %d content[%s] is not the starting station in the %s station route
  4637 +timetableExcelDataValidateStrategyImpl-line65=the row 1, column %d content[%s] is the starting station in the %s station route of the up and down
  4638 +timetableExcelDataValidateStrategyImpl-line68=the row 1, column %d content[%s] is not have site code in the %s station route
  4639 +timetableExcelDataValidateStrategyImpl-line81=the row %d, column 1 content is empty
  4640 +timetableExcelDataValidateStrategyImpl-line92=the row %d, column 1 road sign content is not exist in the %s
  4641 +timetableExcelDataValidateStrategyImpl-line95=the row %d, column 1 road sign content is duplicate in the %s
  4642 +timetableExcelDataValidateStrategyImpl-line119=the row %d, column %d departure time string format is incorrect, correct format is hh:mm or hh,mm or hhmm
  4643 +timetableExcelDataValidateStrategyImpl-line128=the row %d, column %d departure time string format is incorrect, correct format is (报|出)hh:mm or hh:mm(X|※)
  4644 +timetableExcelDataValidateStrategyImpl-line132=unknown import type[%s]
  4645 +timetableExcelDataValidateStrategyImpl-line142=the row %d, column %d work hours content is incorrect,content must be integer or decimal
  4646 +timetableExcelDataValidateStrategyImpl-line147=the row %d, column %d work hours content must be greater than zero
  4647 +timetableExcelDataValidateStrategyImpl-line172=the excel sheet contains the data of two rows and two columns at least
  4648 +timetableExcelDataValidateStrategyImpl-line183=Road sign
  4649 +timetableExcelDataValidateStrategyImpl-line184=the row 1, column 1 content must be "Road sign"
  4650 +timetableExcelDataValidateStrategyImpl-line191=Working Hours
  4651 +timetableExcelDataValidateStrategyImpl-line192=the row 1, column 2 content must be "Working Hours"
  4652 +timetableExcelDataValidateStrategyImpl-line200=报到
  4653 +timetableExcelDataValidateStrategyImpl-line201=Entry parking lot
  4654 +timetableExcelDataValidateStrategyImpl-line202=Exit parking lot
  4655 +timetableExcelDataValidateStrategyImpl-line203=Total mileage
  4656 +timetableExcelDataValidateStrategyImpl-line204=Operation mileage
  4657 +timetableExcelDataValidateStrategyImpl-line205=Empty mileage
  4658 +timetableExcelDataValidateStrategyImpl-line206=Total work hours
  4659 +timetableExcelDataValidateStrategyImpl-line207=Operation hours
  4660 +timetableExcelDataValidateStrategyImpl-line208=Operation shift
  4661 +timetableExcelDataValidateStrategyImpl-line216=Exit
  4662 +timetableExcelDataValidateStrategyImpl-line221=Enter
  4663 +timetableExcelDataValidateStrategyImpl-line242=the row %d, column 1 content is empty
  4664 +timetableExcelDataValidateStrategyImpl-line244=the row %d, column 1 road sign content and the row %d, column 1 road sign content are duplicated
  4665 +timetableExcelDataValidateStrategyImpl-line271=the row %d, column %d content neither departure time nor work hours!
  4666 +
  4667 +tTInfoDetailServiceImpl-line118=Parking lot
  4668 +tTInfoDetailServiceImpl-line178=road sign is exist
  4669 +tTInfoDetailServiceImpl-line182=timetable content is empty(must be have one shift at least)
  4670 +tTInfoDetailServiceImpl-line266=Upward approach mileage is empty
  4671 +tTInfoDetailServiceImpl-line268=Upward approach time is empty
  4672 +tTInfoDetailServiceImpl-line270=Upward exit mileage is empty
  4673 +tTInfoDetailServiceImpl-line272=Upward exit time is empty
  4674 +tTInfoDetailServiceImpl-line274=Upward mileage is empty
  4675 +tTInfoDetailServiceImpl-line276=Upward driving time is empty
  4676 +tTInfoDetailServiceImpl-line278=Downward approach mileage is empty
  4677 +tTInfoDetailServiceImpl-line280=Downward approach time is empty
  4678 +tTInfoDetailServiceImpl-line282=Downward exit mileage is empty
  4679 +tTInfoDetailServiceImpl-line284=Downward exit time is empty
  4680 +tTInfoDetailServiceImpl-line286=Downward mileage is empty
  4681 +tTInfoDetailServiceImpl-line288=Downward driving time is empty
  4682 +tTInfoDetailServiceImpl-line290=Parking lot is empty
  4683 +tTInfoDetailServiceImpl-line299=The parking lot[code=%s] that in the route standard is not found in the parking lot information
  4684 +tTInfoDetailServiceImpl-line301=The parking lot[code=%s] that in the route standard is duplicated in the parking lot information
  4685 +tTInfoDetailServiceImpl-line305=The parking lot[code=%s] that in the route standard has no name in the parking lot information
  4686 +
  4687 +timetableExcelDataImportStrategyImpl_line62_txt-4502=Entry parking lot
  4688 +timetableExcelDataImportStrategyImpl_line63_txt-4501=Exit parking lot
  4689 +timetableExcelDataImportStrategyImpl_line64_txt-3536=Total mileage
  4690 +timetableExcelDataImportStrategyImpl_line65_txt-4405=Operation mileage
  4691 +timetableExcelDataImportStrategyImpl_line66_txt-2437=Empty mileage
  4692 +timetableExcelDataImportStrategyImpl_line67_txt-4496=Total work hours
  4693 +timetableExcelDataImportStrategyImpl_line68_txt-4406=Operation hours
  4694 +timetableExcelDataImportStrategyImpl_line69_txt-2783=Operation shift
  4695 +timetableExcelDataImportStrategyImpl_line145_txt-2115=import timetable failure.
  4696 +timetableExcelDataImportStrategyImpl_line203=unknown timetableExcelFormatType[######{0}]
  4697 +timetableExcelDataImportStrategyImpl_line208_txt-2115=import timetable failure.
  4698 +
  4699 +
  4700 +
  4701 +
  4702 +
4586 4703 bController-line192=import file not exist
4587 4704 bController-line197=import file successful
4588 4705 bController-line217=upload and import file successful
... ...
src/main/resources/message_zh_CN.properties
... ... @@ -4584,6 +4584,123 @@ employeeConfigInfoServiceImpl-line309=售票员没有配置在当前线路中,
4584 4584 employeeConfigInfoServiceImpl-line363=线路[%s][%s]排班中有人员已经停用,请及时处理!
4585 4585 employeeConfigInfoServiceImpl-line403=人员配置已被规则使用,不能作废,请先修改规则!
4586 4586  
  4587 +tTInfoServiceImpl-line54=名字重复
  4588 +tTInfoServiceImpl-line72=常规有效日为空
  4589 +tTInfoServiceImpl-line82=当前常规有效日期已经使用
  4590 +tTInfoServiceImpl-line113=当前特殊日期已经使用
  4591 +tTInfoServiceImpl-line169=未知启用日期
  4592 +tTInfoServiceImpl-line170=历史
  4593 +tTInfoServiceImpl-line170-1=当前
  4594 +tTInfoServiceImpl-line170-2=待更新
  4595 +tTInfoServiceImpl-line193=未知版本
  4596 +tTInfoServiceImpl-line195=重复版本
  4597 +tTInfoServiceImpl-line205=未知启用日期
  4598 +tTInfoServiceImpl-line206=历史
  4599 +tTInfoServiceImpl-line206-1=当前
  4600 +tTInfoServiceImpl-line206-2=待更新
  4601 +
  4602 +tTInfoDetailController-line54=线路版本未知
  4603 +
  4604 +tTInfoDetailDataToolsImpl-line264=时刻表
  4605 +tTInfoDetailDataToolsImpl-line283=非.xls .xlsx 格式文件!
  4606 +tTInfoDetailDataToolsImpl-line383=路牌
  4607 +tTInfoDetailDataToolsImpl-line384=空驶班次/空驶里程
  4608 +tTInfoDetailDataToolsImpl-line385=运营班次/运营里程
  4609 +tTInfoDetailDataToolsImpl-line460=空驶班次=%d,营运班次=%d,空驶里程=%.3f,营运里程=%.3f,总里程=%.3f
  4610 +
  4611 +timetableExcelData-line79=%s 工作区没有数据!
  4612 +timetableExcelData-line81=%s 工作区第一行没有数据!
  4613 +timetableExcelData-line304=导入的Excel类型为空!
  4614 +timetableExcelData-line309=导入的Excel文件路径为空!
  4615 +timetableExcelData-line312=导入的Excel文件[######{0}]不存在!
  4616 +timetableExcelData-line322=导入的Excel文件[######{0}]内部不是xls,xlsx文件!
  4617 +timetableExcelData-line327=导入的Excel sheet名字为空!
  4618 +timetableExcelData-line330=导入的Excel文件sheet[######{0}]不存在!
  4619 +timetableExcelData-line335=线路信息service为空!
  4620 +timetableExcelData-line336=线路Id为空!
  4621 +timetableExcelData-line339=线路[id=######{0}]不存在!
  4622 +timetableExcelData-line342=站点路由信息service为空!
  4623 +timetableExcelData-line343=线路站点路由版本为空!
  4624 +timetableExcelData-line351=线路[######{0}],站点路由[版本=######{1}]信息为空
  4625 +timetableExcelData-line355=路牌信息service为空!
  4626 +timetableExcelData-line361=线路[######{0}]路牌信息为空!
  4627 +timetableExcelData-line365=时刻表excel验证策略类为空!
  4628 +timetableExcelData-line472=时刻表excel导入策略类为空!
  4629 +timetableExcelData-line552=时刻表Id为空!
  4630 +timetableExcelData-line553=时刻表repo为空!
  4631 +timetableExcelData-line554=时刻表明细repo为空!
  4632 +timetableExcelData-line555=时刻表预览excel数据导出策略为空!
  4633 +timetableExcelData-line559=时刻表[id=######{0}]未找到!
  4634 +timetableExcelData-line565=dataTools配置文件类为空!
  4635 +
  4636 +timetableExcelDataValidateStrategyImpl-line51=第1行,第%d列数据不能为空
  4637 +timetableExcelDataValidateStrategyImpl-line62=第1行,第%d列数据%s在%s站点路由中不是起点站
  4638 +timetableExcelDataValidateStrategyImpl-line65=第1行,第%d列数据%s在%s站点路由中上下行都是起点站
  4639 +timetableExcelDataValidateStrategyImpl-line68=第1行,第%d列数据%s在%s站点路由中没有站点编码
  4640 +timetableExcelDataValidateStrategyImpl-line81=第%d行,第1列路牌无数据
  4641 +timetableExcelDataValidateStrategyImpl-line92=第%d行,第1列的路牌在%s中不存在
  4642 +timetableExcelDataValidateStrategyImpl-line95=第%d行,第1列的路牌在%s中重复
  4643 +timetableExcelDataValidateStrategyImpl-line119=第%d行,第%d列的发车时间格式不正确,格式应为hh:mm或hh,mm或hhmm
  4644 +timetableExcelDataValidateStrategyImpl-line128=第%d行,第%d列的发车时间格式不正确,格式应为(报|出)hh:mm或hh:mm(X|※)
  4645 +timetableExcelDataValidateStrategyImpl-line132=未知的导入格式[%s]
  4646 +timetableExcelDataValidateStrategyImpl-line142=第%d行,第%d列的工时格式不正确,格式应为整数或浮点数
  4647 +timetableExcelDataValidateStrategyImpl-line147=第%d行,第%d列的工时值必须大于0
  4648 +timetableExcelDataValidateStrategyImpl-line172=工作区至少包含2行2列的数据
  4649 +timetableExcelDataValidateStrategyImpl-line183=路牌
  4650 +timetableExcelDataValidateStrategyImpl-line184=第1行,第1列数据必须是路牌2个字
  4651 +timetableExcelDataValidateStrategyImpl-line191=工时
  4652 +timetableExcelDataValidateStrategyImpl-line192=第1行,第2列数据必须是工时2个字
  4653 +timetableExcelDataValidateStrategyImpl-line200=报到
  4654 +timetableExcelDataValidateStrategyImpl-line201=到场
  4655 +timetableExcelDataValidateStrategyImpl-line202=离场
  4656 +timetableExcelDataValidateStrategyImpl-line203=总公里
  4657 +timetableExcelDataValidateStrategyImpl-line204=营业公里
  4658 +timetableExcelDataValidateStrategyImpl-line205=空驶公里
  4659 +timetableExcelDataValidateStrategyImpl-line206=总工时
  4660 +timetableExcelDataValidateStrategyImpl-line207=营业工时
  4661 +timetableExcelDataValidateStrategyImpl-line208=营运班次
  4662 +timetableExcelDataValidateStrategyImpl-line216=出场
  4663 +timetableExcelDataValidateStrategyImpl-line221=进场
  4664 +timetableExcelDataValidateStrategyImpl-line242=第%d行,第1列路牌无数据
  4665 +timetableExcelDataValidateStrategyImpl-line244=第%d行,第1列的路牌数据与第%d行,第1列数据重复
  4666 +timetableExcelDataValidateStrategyImpl-line271=第%d行,第%d列的单元格内容既不是发车时间,也不是工时!
  4667 +
  4668 +tTInfoDetailServiceImpl-line118=停车场
  4669 +tTInfoDetailServiceImpl-line178=路牌已经存在!
  4670 +tTInfoDetailServiceImpl-line182=时刻表没有班次(添加路牌至少需要一个班次)!
  4671 +tTInfoDetailServiceImpl-line266=上行进场里程为空
  4672 +tTInfoDetailServiceImpl-line268=上行进场时间为空
  4673 +tTInfoDetailServiceImpl-line270=上行出场里程为空
  4674 +tTInfoDetailServiceImpl-line272=上行出场时间为空
  4675 +tTInfoDetailServiceImpl-line274=上行班次里程为空
  4676 +tTInfoDetailServiceImpl-line276=上行班次时间为空
  4677 +tTInfoDetailServiceImpl-line278=下行进场里程为空
  4678 +tTInfoDetailServiceImpl-line280=下行进场时间为空
  4679 +tTInfoDetailServiceImpl-line282=下行出场里程为空
  4680 +tTInfoDetailServiceImpl-line284=下行出场时间为空
  4681 +tTInfoDetailServiceImpl-line286=下行班次里程为空
  4682 +tTInfoDetailServiceImpl-line288=下行班次时间为空
  4683 +tTInfoDetailServiceImpl-line290=停车场为空
  4684 +tTInfoDetailServiceImpl-line299=线路标准里的停车场code=%s,在停车场信息中未找到
  4685 +tTInfoDetailServiceImpl-line301=线路标准里的停车场code=%s,在停车场信息中有重复数据
  4686 +tTInfoDetailServiceImpl-line305=线路标准里的停车场code=%s,在停车场信息中没有停车场名字
  4687 +
  4688 +timetableExcelDataImportStrategyImpl_line62_txt-4502=到场
  4689 +timetableExcelDataImportStrategyImpl_line63_txt-4501=离场
  4690 +timetableExcelDataImportStrategyImpl_line64_txt-3536=总公里
  4691 +timetableExcelDataImportStrategyImpl_line65_txt-4405=营业公里
  4692 +timetableExcelDataImportStrategyImpl_line66_txt-2437=空驶公里
  4693 +timetableExcelDataImportStrategyImpl_line67_txt-4496=总工时
  4694 +timetableExcelDataImportStrategyImpl_line68_txt-4406=营业工时
  4695 +timetableExcelDataImportStrategyImpl_line69_txt-2783=营运班次
  4696 +timetableExcelDataImportStrategyImpl_line145_txt-2115=导入时刻表异常!
  4697 +timetableExcelDataImportStrategyImpl_line203=未知的TimetableExcelFormatType格式[######{0}]
  4698 +timetableExcelDataImportStrategyImpl_line208_txt-2115=导入时刻表异常!
  4699 +
  4700 +
  4701 +
  4702 +
  4703 +
4587 4704 bController-line192=导入文件不存在!
4588 4705 bController-line197=导入文件成功
4589 4706 bController-line217=上传&导入文件成功
... ...
src/main/resources/static/pages/scheduleApp/module/common/dts2/ttinfotable/saTimeTableTemplate.html
... ... @@ -17,21 +17,22 @@
17 17 }
18 18 .ttInfo_detail .detail-wrap {
19 19 height: calc(100% - 1px);
20   - padding: 0;
  20 + padding: 0px;
21 21 }
22 22 .ttInfo_detail .detail-wrap .header-title {
23 23 cursor: pointer; /* 图例点击按钮 */
24 24 font-size: 14px;
25 25 color: #cccaca;
26 26 }
27   - .ttInfo_detail .detail-wrap h3 {
  27 + .ttInfo_detail .detail-wrap a {
28 28 margin: 7px 0 5px;
29 29 text-indent: 5px;
30   - margin: 0;
31 30 height: 31px;
32 31 line-height: 31px;
33 32 }
34   - .ttInfo_detail .detail-wrap.up h3 {
  33 + .ttInfo_detail .detail-wrap.up a {
  34 + font-weight: bold;
  35 + font-size: 18px;
35 36 color: #2765A7;
36 37 }
37 38  
... ... @@ -317,8 +318,7 @@
317 318 <!--<h3 class="header-title">-->
318 319 <!--{{$saTimeTableCtrl.ds.yydesc}}-->
319 320 <!--</h3>-->
320   -
321   - <h3>
  321 + <div>
322 322 <a href="#"
323 323 tooltip-animation="false"
324 324 tooltip-placement="right-top"
... ... @@ -326,7 +326,7 @@
326 326 tooltip-class="headClass">
327 327 {{$saTimeTableCtrl.ds.yydesc}}
328 328 </a>
329   - </h3>
  329 + </div>
330 330  
331 331 <div class="detail-body">
332 332 <div class="tt_table_wrap table_scrollbar" sa-tscrolly1>
... ...
src/main/resources/static/pages/scheduleApp/module/core/ttInfoManage/list.html
... ... @@ -190,7 +190,7 @@
190 190 <div>
191 191 <a ui-sref="ttInfoDetailManage_form({xlid: info.xl.id, ttid : info.id, xlname: info.xl.name, ttname : info.name})"
192 192 class="btn btn-info btn-sm" ng-if="info.isCancel == '0'"> {{"ttInfoManage_list_page_line192_txt-3886" | translate}} </a>
193   - <a href="javascript:" class="btn btn-info btn-sm" ng-click="ctrl.exportData(info.id)"> {{"ttInfoManage_list_page_line193_txt-4163" | translate}} </a>
  193 + <a href="javascript:" class="btn btn-info btn-sm" ng-click="ctrl.exportData(info.id, info.name)"> {{"ttInfoManage_list_page_line193_txt-4163" | translate}} </a>
194 194 </div>
195 195 <!--<a ng-click="ctrl.toTtInfoDetailAuto(info.id)"-->
196 196 <!--class="btn btn-info btn-sm" ng-if="info.isCancel == '0'"> 生成 </a>-->
... ...
src/main/resources/static/pages/scheduleApp/module/core/ttInfoManage/module.js
... ... @@ -186,10 +186,10 @@ angular.module(&#39;ScheduleApp&#39;).controller(
186 186 });
187 187 };
188 188 // 导出excel
189   - self.exportData = function(ttinfoid) {
  189 + self.exportData = function(ttinfoid, ttinfoname) {
190 190 service.dataExport(ttinfoid).then(
191 191 function(result) {
192   - fileDownload.downloadFile(result.data, "application/octet-stream", "时刻表.xls");
  192 + fileDownload.downloadFile(result.data, "application/octet-stream", ttinfoname + ".xls");
193 193 },
194 194 function(result) {
195 195 console.log("exportData failed:" + result);
... ...