Commit 2dcdf45625ba6c01d75bbda1c83a5a98007bb5fe

Authored by 潘钊
2 parents 4fbb34d8 221d3f90

Merge branch 'minhang' into jiading

src/main/java/com/bsth/data/LineConfigData.java
@@ -77,7 +77,7 @@ public class LineConfigData implements CommandLineRunner { @@ -77,7 +77,7 @@ public class LineConfigData implements CommandLineRunner {
77 public long applyIn(ScheduleRealInfo sch, Long timestamp){ 77 public long applyIn(ScheduleRealInfo sch, Long timestamp){
78 LineConfig config = lineConfMap.get(sch.getXlBm()); 78 LineConfig config = lineConfMap.get(sch.getXlBm());
79 int diff = sch.getXlDir().equals("0")?config.getUpInDiff():config.getDownInDiff(); 79 int diff = sch.getXlDir().equals("0")?config.getUpInDiff():config.getDownInDiff();
80 - return timestamp - (diff * 1000); 80 + return timestamp + (diff * 1000);
81 } 81 }
82 82
83 @Component 83 @Component
src/main/java/com/bsth/data/gpsdata/arrival/handlers/InOutStationSignalHandle.java
@@ -239,9 +239,14 @@ public class InOutStationSignalHandle extends SignalHandle{ @@ -239,9 +239,14 @@ public class InOutStationSignalHandle extends SignalHandle{
239 long t2 = gps.getTimestamp(); 239 long t2 = gps.getTimestamp();
240 long c = sch.getDfsjT(); 240 long c = sch.getDfsjT();
241 241
242 - if(c - t1 > 1000 * 60 * 15 && Math.abs(t2 - c) < 1000 * 60 * 5){ 242 + /*if(c - t1 > 1000 * 60 * 15 && Math.abs(t2 - c) < 1000 * 60 * 5){
  243 + return true;
  244 + }*/
  245 + int threshold = 1000 * 60 * 5;
  246 + if(Math.abs(t2 - c) < threshold && c - t1 > threshold){
243 return true; 247 return true;
244 } 248 }
  249 + //if(Math.abs(t2 - c) < 1000 * 60 * 5 && c - t1 > 1000 * 60 * 5)
245 return false; 250 return false;
246 } 251 }
247 252
@@ -255,7 +260,7 @@ public class InOutStationSignalHandle extends SignalHandle{ @@ -255,7 +260,7 @@ public class InOutStationSignalHandle extends SignalHandle{
255 if (config != null && config.getOutConfig() == 2) { 260 if (config != null && config.getOutConfig() == 2) {
256 //出站既出场 261 //出站既出场
257 ScheduleRealInfo schPrev = dayOfSchedule.prev(sch); 262 ScheduleRealInfo schPrev = dayOfSchedule.prev(sch);
258 - if (schPrev != null && schPrev.getBcType().equals("out") 263 + if (schPrev != null && schPrev.getBcType().equals("out") && (schPrev.getBcsj()==0 || schPrev.getJhlcOrig().equals(0))
259 && (!limitPark || park.equals(schPrev.getQdzCode()))) { 264 && (!limitPark || park.equals(schPrev.getQdzCode()))) {
260 265
261 schPrev.setFcsjActualAll(sch.getFcsjActualTime()); 266 schPrev.setFcsjActualAll(sch.getFcsjActualTime());
@@ -447,7 +452,7 @@ public class InOutStationSignalHandle extends SignalHandle{ @@ -447,7 +452,7 @@ public class InOutStationSignalHandle extends SignalHandle{
447 boolean limitPark = StringUtils.isNotEmpty(park); 452 boolean limitPark = StringUtils.isNotEmpty(park);
448 453
449 454
450 - if (next.getBcType().equals("in") && config.getOutConfig() == 2 455 + if (next.getBcType().equals("in") && config.getOutConfig() == 2 && (next.getBcsj()==0 || next.getJhlcOrig().equals(0))
451 && (!limitPark || park.equals(next.getZdzCode()))) { 456 && (!limitPark || park.equals(next.getZdzCode()))) {
452 457
453 next.setFcsjActualAll(sch.getZdsjActualTime()); 458 next.setFcsjActualAll(sch.getZdsjActualTime());
src/main/java/com/bsth/data/gpsdata/recovery/GpsDataRecovery.java
@@ -60,7 +60,7 @@ public class GpsDataRecovery implements ApplicationContextAware { @@ -60,7 +60,7 @@ public class GpsDataRecovery implements ApplicationContextAware {
60 for (String nbbm : keys) { 60 for (String nbbm : keys) {
61 Collections.sort(listMap.get(nbbm), comp); 61 Collections.sort(listMap.get(nbbm), comp);
62 threadPool.execute(new RecoveryThread(listMap.get(nbbm), count)); 62 threadPool.execute(new RecoveryThread(listMap.get(nbbm), count));
63 - /*if(nbbm.equals("W9H-088")) 63 + /*if(nbbm.equals("W09-164"))
64 new RecoveryThread(listMap.get(nbbm), count).run();*/ 64 new RecoveryThread(listMap.get(nbbm), count).run();*/
65 /*if(lineId.equals("60028")) 65 /*if(lineId.equals("60028"))
66 new RecoveryThread(listMap.get(lineId), count).run();*/ 66 new RecoveryThread(listMap.get(lineId), count).run();*/
@@ -84,7 +84,7 @@ public class GpsDataRecovery implements ApplicationContextAware { @@ -84,7 +84,7 @@ public class GpsDataRecovery implements ApplicationContextAware {
84 Calendar calendar = Calendar.getInstance(); 84 Calendar calendar = Calendar.getInstance();
85 int dayOfYear = calendar.get(Calendar.DAY_OF_YEAR); 85 int dayOfYear = calendar.get(Calendar.DAY_OF_YEAR);
86 86
87 - String sql = "select DEVICE_ID,LAT,LON,TS,SPEED_GPS,LINE_ID,SERVICE_STATE from bsth_c_gps_info where days_year=207";// + dayOfYear; 87 + String sql = "select DEVICE_ID,LAT,LON,TS,SPEED_GPS,LINE_ID,SERVICE_STATE from bsth_c_gps_info where days_year=241";// + dayOfYear;
88 JdbcTemplate jdbcTemplate = new JdbcTemplate(DBUtils_MS.getDataSource()); 88 JdbcTemplate jdbcTemplate = new JdbcTemplate(DBUtils_MS.getDataSource());
89 89
90 List<GpsEntity> list = 90 List<GpsEntity> list =
@@ -153,7 +153,7 @@ public class GpsDataRecovery implements ApplicationContextAware { @@ -153,7 +153,7 @@ public class GpsDataRecovery implements ApplicationContextAware {
153 boolean task; 153 boolean task;
154 for (GpsEntity gps : list) { 154 for (GpsEntity gps : list) {
155 try { 155 try {
156 - /*if(gps.getTimestamp() >= 1500942270000L){ 156 + /*if(gps.getTimestamp() >= 1503960000000L){
157 System.out.println("debugger..."); 157 System.out.println("debugger...");
158 }*/ 158 }*/
159 //是否有任务 159 //是否有任务
src/main/java/com/bsth/data/schedule/DayOfSchedule.java
@@ -573,7 +573,7 @@ public class DayOfSchedule { @@ -573,7 +573,7 @@ public class DayOfSchedule {
573 continue; 573 continue;
574 574
575 //出站既出场,忽略出场班次 575 //出站既出场,忽略出场班次
576 - if (outConfig == 2 && temp.getBcType().equals("out") 576 + if (outConfig == 2 && temp.getBcType().equals("out") && (temp.getBcsj()==0 || temp.getJhlcOrig().equals(0))
577 && (!limitPark || park.equals(temp.getQdzCode()))) 577 && (!limitPark || park.equals(temp.getQdzCode())))
578 continue; 578 continue;
579 579
src/main/java/com/bsth/data/schedule/ScheduleComparator.java
@@ -3,6 +3,8 @@ package com.bsth.data.schedule; @@ -3,6 +3,8 @@ package com.bsth.data.schedule;
3 import com.bsth.entity.realcontrol.ScheduleRealInfo; 3 import com.bsth.entity.realcontrol.ScheduleRealInfo;
4 4
5 import java.util.Comparator; 5 import java.util.Comparator;
  6 +import java.util.HashMap;
  7 +import java.util.Map;
6 8
7 /** 9 /**
8 * 10 *
@@ -20,20 +22,38 @@ public class ScheduleComparator { @@ -20,20 +22,38 @@ public class ScheduleComparator {
20 return s1.getFcno() - s2.getFcno(); 22 return s1.getFcno() - s2.getFcno();
21 } 23 }
22 }*/ 24 }*/
  25 +
  26 + static Map<String, Integer> bcTypeOrderMap = new HashMap<>();
  27 +
  28 + static{
  29 + bcTypeOrderMap.put("out", 0);
  30 + bcTypeOrderMap.put("normal", 1);
  31 + bcTypeOrderMap.put("region", 2);
  32 + bcTypeOrderMap.put("major", 3);
  33 + bcTypeOrderMap.put("venting", 4);
  34 + bcTypeOrderMap.put("ldks", 5);
  35 + bcTypeOrderMap.put("in", 6);
  36 + }
23 37
24 public static class FCSJ implements Comparator<ScheduleRealInfo>{ 38 public static class FCSJ implements Comparator<ScheduleRealInfo>{
25 39
26 @Override 40 @Override
27 public int compare(ScheduleRealInfo s1, ScheduleRealInfo s2) { 41 public int compare(ScheduleRealInfo s1, ScheduleRealInfo s2) {
28 - return (int) (s1.getFcsjT() - s2.getFcsjT()); 42 + int diff = (int) (s1.getFcsjT() - s2.getFcsjT());
  43 + return diff!=0?diff:typeOrder(s1.getBcType()) - typeOrder(s2.getBcType());
29 } 44 }
30 } 45 }
31 46
  47 + private static int typeOrder(String bcType){
  48 + return bcTypeOrderMap.get(bcType)!=null?bcTypeOrderMap.get(bcType):0;
  49 + }
  50 +
32 public static class DFSJ implements Comparator<ScheduleRealInfo>{ 51 public static class DFSJ implements Comparator<ScheduleRealInfo>{
33 52
34 @Override 53 @Override
35 public int compare(ScheduleRealInfo s1, ScheduleRealInfo s2) { 54 public int compare(ScheduleRealInfo s1, ScheduleRealInfo s2) {
36 - return (int) (s1.getDfsjT() - s2.getDfsjT()); 55 + int diff = (int) (s1.getDfsjT() - s2.getDfsjT());
  56 + return diff!=0?diff:typeOrder(s1.getBcType()) - typeOrder(s2.getBcType());
37 } 57 }
38 } 58 }
39 } 59 }
src/main/java/com/bsth/service/schedule/datatools/TTInfoDetailDataToolsImpl.java
@@ -124,7 +124,7 @@ public class TTInfoDetailDataToolsImpl implements DataToolsService, TTInfoDetail @@ -124,7 +124,7 @@ public class TTInfoDetailDataToolsImpl implements DataToolsService, TTInfoDetail
124 // poi读 124 // poi读
125 String cellContent = PoiUtils.getStringValueFromCell( 125 String cellContent = PoiUtils.getStringValueFromCell(
126 poi_sheet.getRow(i).getCell(j) 126 poi_sheet.getRow(i).getCell(j)
127 - ); 127 + ).replaceAll("\\s*", "");
128 // jxl写 128 // jxl写
129 sheet1.addCell(new Label(j, i, cellContent)); 129 sheet1.addCell(new Label(j, i, cellContent));
130 } 130 }
src/main/java/com/bsth/service/schedule/impl/SchedulePlanServiceImpl.java
@@ -278,6 +278,9 @@ public class SchedulePlanServiceImpl extends BServiceImpl&lt;SchedulePlan, Long&gt; im @@ -278,6 +278,9 @@ public class SchedulePlanServiceImpl extends BServiceImpl&lt;SchedulePlan, Long&gt; im
278 Date start2 = new Date(); 278 Date start2 = new Date();
279 ScheduleResults_output scheduleResults_output = loopRuleOutput(schedulePlan, lpInfoResults_output); 279 ScheduleResults_output scheduleResults_output = loopRuleOutput(schedulePlan, lpInfoResults_output);
280 Date end2 = new Date(); 280 Date end2 = new Date();
  281 +
  282 + logger.info("规则计算结果={}", scheduleResults_output.showGuideboardDesc1());
  283 +
281 // 3、计划输出 284 // 3、计划输出
282 Date start3 = new Date(); 285 Date start3 = new Date();
283 PlanResult planResult = planResultOutput(schedulePlan, scheduleResults_output, ttInfoResults_output); 286 PlanResult planResult = planResultOutput(schedulePlan, scheduleResults_output, ttInfoResults_output);
src/main/java/com/bsth/service/schedule/impl/TTInfoDetailServiceImpl.java
@@ -251,7 +251,7 @@ public class TTInfoDetailServiceImpl extends BServiceImpl&lt;TTInfoDetail, Long&gt; im @@ -251,7 +251,7 @@ public class TTInfoDetailServiceImpl extends BServiceImpl&lt;TTInfoDetail, Long&gt; im
251 for (int i = 1; i < rowNums; i++) { // 从第2行开始验证数据 251 for (int i = 1; i < rowNums; i++) { // 从第2行开始验证数据
252 Row row = sheet.getRow(i); 252 Row row = sheet.getRow(i);
253 for (int j = 1; j < colNums; j++) { // 从第2列开始 253 for (int j = 1; j < colNums; j++) { // 从第2列开始
254 - String bcell_con = StringUtils.trimToEmpty(PoiUtils.getStringValueFromCell(row.getCell(j))); // trimToEmpty 254 + String bcell_con = StringUtils.trimToEmpty(PoiUtils.getStringValueFromCell(row.getCell(j))).replaceAll("\\s*", ""); // trimToEmpty
255 if (StringUtils.isNotEmpty(bcell_con)) { 255 if (StringUtils.isNotEmpty(bcell_con)) {
256 Matcher m1 = p1.matcher(bcell_con.trim()); 256 Matcher m1 = p1.matcher(bcell_con.trim());
257 Matcher m2 = p2.matcher(bcell_con.trim()); 257 Matcher m2 = p2.matcher(bcell_con.trim());
src/main/java/com/bsth/service/schedule/rules/ttinfo/TTInfo_input.java
@@ -44,7 +44,7 @@ public class TTInfo_input implements Comparable&lt;TTInfo_input&gt; { @@ -44,7 +44,7 @@ public class TTInfo_input implements Comparable&lt;TTInfo_input&gt; {
44 this.ttInfoId = String.valueOf(ttInfo.getId()); 44 this.ttInfoId = String.valueOf(ttInfo.getId());
45 this.xlId = String.valueOf(ttInfo.getXl().getId()); 45 this.xlId = String.valueOf(ttInfo.getXl().getId());
46 String[] days = ttInfo.getRule_days().split(","); 46 String[] days = ttInfo.getRule_days().split(",");
47 - System.out.println(days.length); 47 +// System.out.println(days.length);
48 for (int i = 0; i < 7; i++) { 48 for (int i = 0; i < 7; i++) {
49 if ("1".equals(days[i])) { 49 if ("1".equals(days[i])) {
50 weekdays.add(true); 50 weekdays.add(true);
src/main/java/com/bsth/service/schedule/rules/validate/ValidRepeatBcFunction.java
@@ -47,14 +47,14 @@ public class ValidRepeatBcFunction implements AccumulateFunction { @@ -47,14 +47,14 @@ public class ValidRepeatBcFunction implements AccumulateFunction {
47 47
48 @Override 48 @Override
49 public Serializable createContext() { 49 public Serializable createContext() {
50 - System.out.println("create"); 50 +// System.out.println("create");
51 return new RepeatBcInfo(); 51 return new RepeatBcInfo();
52 } 52 }
53 53
54 @Override 54 @Override
55 public void init(Serializable serializable) throws Exception { 55 public void init(Serializable serializable) throws Exception {
56 // TODO: 56 // TODO:
57 - System.out.println("init"); 57 +// System.out.println("init");
58 } 58 }
59 59
60 @Override 60 @Override
src/main/resources/datatools/ktrs/ttinfodetailDataInput.ktr
1 -<?xml version="1.0" encoding="UTF-8"?>  
2 -<transformation>  
3 - <info>  
4 - <name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x5bfc;&#x5165;</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>120</xloc>  
143 - <yloc>1016</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>xlab_mysql_youle</name>  
291 - <server>101.231.124.8</server>  
292 - <type>MYSQL</type>  
293 - <access>Native</access>  
294 - <database>xlab_youle</database>  
295 - <port>45687</port>  
296 - <username>xlab-youle</username>  
297 - <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password>  
298 - <servername/>  
299 - <data_tablespace/>  
300 - <index_tablespace/>  
301 - <attributes>  
302 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
303 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
304 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
305 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
306 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
307 - <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute>  
308 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
309 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
310 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
311 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>  
312 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>  
313 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
314 - </attributes>  
315 - </connection>  
316 - <connection>  
317 - <name>xlab_mysql_youle&#xff08;&#x672c;&#x673a;&#xff09;</name>  
318 - <server>localhost</server>  
319 - <type>MYSQL</type>  
320 - <access>Native</access>  
321 - <database>xlab_youle</database>  
322 - <port>3306</port>  
323 - <username>root</username>  
324 - <password>Encrypted </password>  
325 - <servername/>  
326 - <data_tablespace/>  
327 - <index_tablespace/>  
328 - <attributes>  
329 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
330 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
331 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
332 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
333 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
334 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
335 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
336 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
337 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
338 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>  
339 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>  
340 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
341 - </attributes>  
342 - </connection>  
343 - <connection>  
344 - <name>xlab_youle</name>  
345 - <server/>  
346 - <type>MYSQL</type>  
347 - <access>JNDI</access>  
348 - <database>xlab_youle</database>  
349 - <port>1521</port>  
350 - <username/>  
351 - <password>Encrypted </password>  
352 - <servername/>  
353 - <data_tablespace/>  
354 - <index_tablespace/>  
355 - <attributes>  
356 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
357 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
358 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
359 - <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>  
360 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
361 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
362 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
363 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
364 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
365 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
366 - </attributes>  
367 - </connection>  
368 - <order>  
369 - <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>  
370 - <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>  
371 - <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>  
372 - <hop> <from>&#x6dfb;&#x52a0;&#x5bf9;&#x5e94;&#x73ed;&#x6b21;&#x6570;</from><to>&#x5904;&#x7406;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>  
373 - <hop> <from>&#x5904;&#x7406;&#x6570;&#x636e;</from><to>&#x5206;&#x7ec4;&#x5404;&#x4e2a;&#x8def;&#x724c;&#x7684;&#x7ad9;</to><enabled>Y</enabled> </hop>  
374 - <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>  
375 - <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>  
376 - <hop> <from>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178;</from><to>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178;</to><enabled>Y</enabled> </hop>  
377 - <hop> <from>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 2</from><to>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 2</to><enabled>Y</enabled> </hop>  
378 - <hop> <from>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 3</from><to>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 3</to><enabled>Y</enabled> </hop>  
379 - <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>  
380 - <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>  
381 - <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>  
382 - <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>  
383 - <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>  
384 - <hop> <from>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x6240;&#x6709;&#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>  
385 - <hop> <from>&#x67e5;&#x627e;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;</from><to>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178;</to><enabled>Y</enabled> </hop>  
386 - <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>  
387 - <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>  
388 - <hop> <from>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</from><to>&#x6b63;&#x5e38;&#x73ed;&#x6b21;_&#x5904;&#x7406;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>  
389 - <hop> <from>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178;</from><to>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x6240;&#x6709;&#x4e0a;&#x4e0b;&#x884c;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>  
390 - <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>  
391 - <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>  
392 - <hop> <from>&#x67e5;&#x627e;&#x8def;&#x724c;&#x5173;&#x8054;</from><to>&#x8ba1;&#x7b97;&#x73ed;&#x6b21;&#x7c7b;&#x578b;</to><enabled>Y</enabled> </hop>  
393 - <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>  
394 - <hop> <from>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</from><to>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;1</to><enabled>Y</enabled> </hop>  
395 - <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>  
396 - <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>  
397 - <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>  
398 - <hop> <from>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</from><to>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;2</to><enabled>Y</enabled> </hop>  
399 - <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>  
400 - <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>  
401 - <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>  
402 - <hop> <from>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</from><to>&#x6dfb;&#x52a0;&#x53d1;&#x8f66;&#x987a;&#x5e8f;&#x53f7;</to><enabled>Y</enabled> </hop>  
403 - <hop> <from>&#x5206;&#x7ec4;&#x5404;&#x4e2a;&#x8def;&#x724c;&#x7684;&#x7ad9;</from><to>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x5173;&#x8054;</to><enabled>Y</enabled> </hop>  
404 - <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>  
405 - <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>  
406 - <hop> <from>&#x8bb0;&#x5f55;&#x5173;&#x8054; &#x28;&#x7b1b;&#x5361;&#x5c14;&#x8f93;&#x51fa;&#x29;</from><to>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</to><enabled>Y</enabled> </hop>  
407 - <hop> <from>&#x7c7b;&#x578b;&#x4fee;&#x6b63;</from><to>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail</to><enabled>Y</enabled> </hop>  
408 - <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>  
409 - <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>  
410 - <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>  
411 - <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>  
412 - <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>  
413 - <hop> <from>&#x4e0a;&#x4e0b;&#x884c;NULL&#x5224;&#x5b9a;</from><to>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 2</to><enabled>Y</enabled> </hop>  
414 - <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>  
415 - <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>  
416 - <hop> <from>&#x4e0a;&#x4e0b;&#x884c;&#x5224;&#x5b9a; 2</from><to>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 3</to><enabled>Y</enabled> </hop>  
417 - <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>  
418 - </order>  
419 - <step>  
420 - <name>&#x4e0a;&#x4e0b;&#x884c;NULL&#x5224;&#x5b9a;</name>  
421 - <type>IfNull</type>  
422 - <description/>  
423 - <distribute>Y</distribute>  
424 - <custom_distribution/>  
425 - <copies>1</copies>  
426 - <partitioning>  
427 - <method>none</method>  
428 - <schema_name/>  
429 - </partitioning>  
430 - <replaceAllByValue/>  
431 - <replaceAllMask/>  
432 - <selectFields>Y</selectFields>  
433 - <selectValuesType>N</selectValuesType>  
434 - <setEmptyStringAll>N</setEmptyStringAll>  
435 - <valuetypes>  
436 - </valuetypes>  
437 - <fields>  
438 - <field>  
439 - <name>sxx</name>  
440 - <value>0</value>  
441 - <mask/>  
442 - <set_empty_string>N</set_empty_string>  
443 - </field>  
444 - </fields>  
445 - <cluster_schema/>  
446 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
447 - <xloc>230</xloc>  
448 - <yloc>946</yloc>  
449 - <draw>Y</draw>  
450 - </GUI>  
451 - </step>  
452 -  
453 - <step>  
454 - <name>&#x4e0a;&#x4e0b;&#x884c;&#x5224;&#x5b9a; 2</name>  
455 - <type>IfNull</type>  
456 - <description/>  
457 - <distribute>Y</distribute>  
458 - <custom_distribution/>  
459 - <copies>1</copies>  
460 - <partitioning>  
461 - <method>none</method>  
462 - <schema_name/>  
463 - </partitioning>  
464 - <replaceAllByValue/>  
465 - <replaceAllMask/>  
466 - <selectFields>Y</selectFields>  
467 - <selectValuesType>N</selectValuesType>  
468 - <setEmptyStringAll>N</setEmptyStringAll>  
469 - <valuetypes>  
470 - </valuetypes>  
471 - <fields>  
472 - <field>  
473 - <name>sxx2</name>  
474 - <value>0</value>  
475 - <mask/>  
476 - <set_empty_string>N</set_empty_string>  
477 - </field>  
478 - </fields>  
479 - <cluster_schema/>  
480 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
481 - <xloc>804</xloc>  
482 - <yloc>1081</yloc>  
483 - <draw>Y</draw>  
484 - </GUI>  
485 - </step>  
486 -  
487 - <step>  
488 - <name>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178;</name>  
489 - <type>ValueMapper</type>  
490 - <description/>  
491 - <distribute>Y</distribute>  
492 - <custom_distribution/>  
493 - <copies>1</copies>  
494 - <partitioning>  
495 - <method>none</method>  
496 - <schema_name/>  
497 - </partitioning>  
498 - <field_to_use>sxx</field_to_use>  
499 - <target_field>sxx_desc</target_field>  
500 - <non_match_default/>  
501 - <fields>  
502 - <field>  
503 - <source_value>0</source_value>  
504 - <target_value>&#x4e0a;&#x884c;</target_value>  
505 - </field>  
506 - <field>  
507 - <source_value>1</source_value>  
508 - <target_value>&#x4e0b;&#x884c;</target_value>  
509 - </field>  
510 - </fields>  
511 - <cluster_schema/>  
512 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
513 - <xloc>147</xloc>  
514 - <yloc>403</yloc>  
515 - <draw>Y</draw>  
516 - </GUI>  
517 - </step>  
518 -  
519 - <step>  
520 - <name>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 2</name>  
521 - <type>ValueMapper</type>  
522 - <description/>  
523 - <distribute>Y</distribute>  
524 - <custom_distribution/>  
525 - <copies>1</copies>  
526 - <partitioning>  
527 - <method>none</method>  
528 - <schema_name/>  
529 - </partitioning>  
530 - <field_to_use>sxx</field_to_use>  
531 - <target_field>sxx_desc</target_field>  
532 - <non_match_default/>  
533 - <fields>  
534 - <field>  
535 - <source_value>0</source_value>  
536 - <target_value>&#x4e0a;&#x884c;</target_value>  
537 - </field>  
538 - <field>  
539 - <source_value>1</source_value>  
540 - <target_value>&#x4e0b;&#x884c;</target_value>  
541 - </field>  
542 - </fields>  
543 - <cluster_schema/>  
544 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
545 - <xloc>331</xloc>  
546 - <yloc>598</yloc>  
547 - <draw>Y</draw>  
548 - </GUI>  
549 - </step>  
550 -  
551 - <step>  
552 - <name>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 3</name>  
553 - <type>ValueMapper</type>  
554 - <description/>  
555 - <distribute>Y</distribute>  
556 - <custom_distribution/>  
557 - <copies>1</copies>  
558 - <partitioning>  
559 - <method>none</method>  
560 - <schema_name/>  
561 - </partitioning>  
562 - <field_to_use>sxx</field_to_use>  
563 - <target_field>sxx_desc</target_field>  
564 - <non_match_default/>  
565 - <fields>  
566 - <field>  
567 - <source_value>0</source_value>  
568 - <target_value>&#x4e0a;&#x884c;</target_value>  
569 - </field>  
570 - <field>  
571 - <source_value>1</source_value>  
572 - <target_value>&#x4e0b;&#x884c;</target_value>  
573 - </field>  
574 - </fields>  
575 - <cluster_schema/>  
576 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
577 - <xloc>553</xloc>  
578 - <yloc>859</yloc>  
579 - <draw>Y</draw>  
580 - </GUI>  
581 - </step>  
582 -  
583 - <step>  
584 - <name>&#x51fa;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x7ec8;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</name>  
585 - <type>ScriptValueMod</type>  
586 - <description/>  
587 - <distribute>Y</distribute>  
588 - <custom_distribution/>  
589 - <copies>1</copies>  
590 - <partitioning>  
591 - <method>none</method>  
592 - <schema_name/>  
593 - </partitioning>  
594 - <compatible>N</compatible>  
595 - <optimizationLevel>9</optimizationLevel>  
596 - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>  
597 - <jsScript_name>Script 1</jsScript_name>  
598 - <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;E&#x27;&#x3b;&#xa;&#xa;var destory &#x3d; 0&#x3b; &#x2f;&#x2f; &#x672a;&#x64a4;&#x9500;flag</jsScript_script>  
599 - </jsScript> </jsScripts> <fields> <field> <name>zdzname</name>  
600 - <rename>zdzname</rename>  
601 - <type>String</type>  
602 - <length>-1</length>  
603 - <precision>-1</precision>  
604 - <replace>N</replace>  
605 - </field> <field> <name>endZdtype</name>  
606 - <rename>endZdtype</rename>  
607 - <type>String</type>  
608 - <length>-1</length>  
609 - <precision>-1</precision>  
610 - <replace>N</replace>  
611 - </field> <field> <name>destory</name>  
612 - <rename>destory</rename>  
613 - <type>Integer</type>  
614 - <length>-1</length>  
615 - <precision>-1</precision>  
616 - <replace>N</replace>  
617 - </field> </fields> <cluster_schema/>  
618 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
619 - <xloc>575</xloc>  
620 - <yloc>502</yloc>  
621 - <draw>Y</draw>  
622 - </GUI>  
623 - </step>  
624 -  
625 - <step>  
626 - <name>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</name>  
627 - <type>Dummy</type>  
628 - <description/>  
629 - <distribute>Y</distribute>  
630 - <custom_distribution/>  
631 - <copies>1</copies>  
632 - <partitioning>  
633 - <method>none</method>  
634 - <schema_name/>  
635 - </partitioning>  
636 - <cluster_schema/>  
637 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
638 - <xloc>869</xloc>  
639 - <yloc>504</yloc>  
640 - <draw>Y</draw>  
641 - </GUI>  
642 - </step>  
643 -  
644 - <step>  
645 - <name>&#x5206;&#x7ec4;&#x5404;&#x4e2a;&#x8def;&#x724c;&#x7684;&#x7ad9;</name>  
646 - <type>GroupBy</type>  
647 - <description/>  
648 - <distribute>Y</distribute>  
649 - <custom_distribution/>  
650 - <copies>1</copies>  
651 - <partitioning>  
652 - <method>none</method>  
653 - <schema_name/>  
654 - </partitioning>  
655 - <all_rows>Y</all_rows>  
656 - <ignore_aggregate>N</ignore_aggregate>  
657 - <field_ignore/>  
658 - <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>  
659 - <prefix>grp</prefix>  
660 - <add_linenr>Y</add_linenr>  
661 - <linenr_fieldname>gno</linenr_fieldname>  
662 - <give_back_row>N</give_back_row>  
663 - <group>  
664 - <field>  
665 - <name>lp</name>  
666 - </field>  
667 - </group>  
668 - <fields>  
669 - <field>  
670 - <aggregate>qdzgroups</aggregate>  
671 - <subject>qdzname</subject>  
672 - <type>CONCAT_STRING</type>  
673 - <valuefield>,</valuefield>  
674 - </field>  
675 - </fields>  
676 - <cluster_schema/>  
677 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
678 - <xloc>892</xloc>  
679 - <yloc>44</yloc>  
680 - <draw>Y</draw>  
681 - </GUI>  
682 - </step>  
683 -  
684 - <step>  
685 - <name>&#x5339;&#x914d;&#x4e0a;&#x4e0b;&#x884c;&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>  
686 - <type>ScriptValueMod</type>  
687 - <description/>  
688 - <distribute>Y</distribute>  
689 - <custom_distribution/>  
690 - <copies>1</copies>  
691 - <partitioning>  
692 - <method>none</method>  
693 - <schema_name/>  
694 - </partitioning>  
695 - <compatible>N</compatible>  
696 - <optimizationLevel>9</optimizationLevel>  
697 - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>  
698 - <jsScript_name>Script 1</jsScript_name>  
699 - <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;&#xa;&#xa;</jsScript_script>  
700 - </jsScript> </jsScripts> <fields> <field> <name>jhlc</name>  
701 - <rename>jhlc</rename>  
702 - <type>String</type>  
703 - <length>-1</length>  
704 - <precision>-1</precision>  
705 - <replace>N</replace>  
706 - </field> <field> <name>bcsj</name>  
707 - <rename>bcsj</rename>  
708 - <type>String</type>  
709 - <length>-1</length>  
710 - <precision>-1</precision>  
711 - <replace>N</replace>  
712 - </field> </fields> <cluster_schema/>  
713 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
714 - <xloc>148</xloc>  
715 - <yloc>674</yloc>  
716 - <draw>Y</draw>  
717 - </GUI>  
718 - </step>  
719 -  
720 - <step>  
721 - <name>&#x5339;&#x914d;&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>  
722 - <type>ScriptValueMod</type>  
723 - <description/>  
724 - <distribute>Y</distribute>  
725 - <custom_distribution/>  
726 - <copies>1</copies>  
727 - <partitioning>  
728 - <method>none</method>  
729 - <schema_name/>  
730 - </partitioning>  
731 - <compatible>N</compatible>  
732 - <optimizationLevel>9</optimizationLevel>  
733 - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>  
734 - <jsScript_name>Script 1</jsScript_name>  
735 - <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>  
736 - </jsScript> </jsScripts> <fields> <field> <name>out_mileage</name>  
737 - <rename>out_mileage</rename>  
738 - <type>String</type>  
739 - <length>-1</length>  
740 - <precision>-1</precision>  
741 - <replace>N</replace>  
742 - </field> <field> <name>out_time</name>  
743 - <rename>out_time</rename>  
744 - <type>String</type>  
745 - <length>-1</length>  
746 - <precision>-1</precision>  
747 - <replace>N</replace>  
748 - </field> </fields> <cluster_schema/>  
749 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
750 - <xloc>336</xloc>  
751 - <yloc>862</yloc>  
752 - <draw>Y</draw>  
753 - </GUI>  
754 - </step>  
755 -  
756 - <step>  
757 - <name>&#x5339;&#x914d;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>  
758 - <type>ScriptValueMod</type>  
759 - <description/>  
760 - <distribute>Y</distribute>  
761 - <custom_distribution/>  
762 - <copies>1</copies>  
763 - <partitioning>  
764 - <method>none</method>  
765 - <schema_name/>  
766 - </partitioning>  
767 - <compatible>N</compatible>  
768 - <optimizationLevel>9</optimizationLevel>  
769 - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>  
770 - <jsScript_name>Script 1</jsScript_name>  
771 - <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>  
772 - </jsScript> </jsScripts> <fields> <field> <name>parade_mileage</name>  
773 - <rename>parade_mileage</rename>  
774 - <type>String</type>  
775 - <length>-1</length>  
776 - <precision>-1</precision>  
777 - <replace>N</replace>  
778 - </field> <field> <name>parade_time</name>  
779 - <rename>parade_time</rename>  
780 - <type>String</type>  
781 - <length>-1</length>  
782 - <precision>-1</precision>  
783 - <replace>N</replace>  
784 - </field> </fields> <cluster_schema/>  
785 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
786 - <xloc>726</xloc>  
787 - <yloc>1005</yloc>  
788 - <draw>Y</draw>  
789 - </GUI>  
790 - </step>  
791 -  
792 - <step>  
793 - <name>&#x589e;&#x52a0;&#x65f6;&#x523b;&#x8868;&#x540d;&#x5b57;&#xff0c;&#x7ebf;&#x8def;&#x540d;&#x5b57;&#xff0c;&#x505c;&#x8f66;&#x573a;&#x540d;&#x5b57;</name>  
794 - <type>DataGrid</type>  
795 - <description/>  
796 - <distribute>Y</distribute>  
797 - <custom_distribution/>  
798 - <copies>1</copies>  
799 - <partitioning>  
800 - <method>none</method>  
801 - <schema_name/>  
802 - </partitioning>  
803 - <fields>  
804 - </fields>  
805 - <data>  
806 - <line> </line>  
807 - </data>  
808 - <cluster_schema/>  
809 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
810 - <xloc>110</xloc>  
811 - <yloc>133</yloc>  
812 - <draw>Y</draw>  
813 - </GUI>  
814 - </step>  
815 -  
816 - <step>  
817 - <name>&#x5904;&#x7406;&#x6570;&#x636e;</name>  
818 - <type>ScriptValueMod</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 - <compatible>N</compatible>  
828 - <optimizationLevel>9</optimizationLevel>  
829 - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>  
830 - <jsScript_name>Script 1</jsScript_name>  
831 - <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;&#x2f;&#x2f; &#x4f7f;&#x7528;&#x6b63;&#x5219;&#x8868;&#x8fbe;&#x5f0f;&#x53bb;&#x9664;&#x7ad9;&#x70b9;&#x540d;&#x79f0;&#x53f3;&#x4fa7;&#x591a;&#x4f59;&#x7684;&#x6570;&#x5b57;&#xa;qdzname &#x3d; qdzname.replace&#x28;&#x2f;&#x28;&#x5c;d&#x2b;&#x24;&#x29;&#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&#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>  
832 - </jsScript> </jsScripts> <fields> <field> <name>qdzname</name>  
833 - <rename>qdzname</rename>  
834 - <type>String</type>  
835 - <length>-1</length>  
836 - <precision>-1</precision>  
837 - <replace>Y</replace>  
838 - </field> <field> <name>isfb</name>  
839 - <rename>isfb</rename>  
840 - <type>Integer</type>  
841 - <length>-1</length>  
842 - <precision>-1</precision>  
843 - <replace>N</replace>  
844 - </field> <field> <name>iscanceled</name>  
845 - <rename>iscanceled</rename>  
846 - <type>Integer</type>  
847 - <length>-1</length>  
848 - <precision>-1</precision>  
849 - <replace>N</replace>  
850 - </field> <field> <name>sendtime_calcu</name>  
851 - <rename>sendtime_calcu</rename>  
852 - <type>String</type>  
853 - <length>-1</length>  
854 - <precision>-1</precision>  
855 - <replace>N</replace>  
856 - </field> <field> <name>ists</name>  
857 - <rename>ists</rename>  
858 - <type>Integer</type>  
859 - <length>-1</length>  
860 - <precision>-1</precision>  
861 - <replace>N</replace>  
862 - </field> </fields> <cluster_schema/>  
863 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
864 - <xloc>788</xloc>  
865 - <yloc>44</yloc>  
866 - <draw>Y</draw>  
867 - </GUI>  
868 - </step>  
869 -  
870 - <step>  
871 - <name>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</name>  
872 - <type>SelectValues</type>  
873 - <description/>  
874 - <distribute>Y</distribute>  
875 - <custom_distribution/>  
876 - <copies>1</copies>  
877 - <partitioning>  
878 - <method>none</method>  
879 - <schema_name/>  
880 - </partitioning>  
881 - <fields> <field> <name>&#x8def;&#x724c;</name>  
882 - <rename>lp</rename>  
883 - <length>-2</length>  
884 - <precision>-2</precision>  
885 - </field> <field> <name>&#x7ad9;&#x70b9;&#x540d;&#x79f0;</name>  
886 - <rename>qdzname</rename>  
887 - <length>-2</length>  
888 - <precision>-2</precision>  
889 - </field> <field> <name>&#x53d1;&#x8f66;&#x65f6;&#x95f4;</name>  
890 - <rename>sendtime</rename>  
891 - <length>-2</length>  
892 - <precision>-2</precision>  
893 - </field> <select_unspecified>Y</select_unspecified>  
894 - </fields> <cluster_schema/>  
895 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
896 - <xloc>444</xloc>  
897 - <yloc>131</yloc>  
898 - <draw>Y</draw>  
899 - </GUI>  
900 - </step>  
901 -  
902 - <step>  
903 - <name>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;1</name>  
904 - <type>FilterRows</type>  
905 - <description/>  
906 - <distribute>Y</distribute>  
907 - <custom_distribution/>  
908 - <copies>1</copies>  
909 - <partitioning>  
910 - <method>none</method>  
911 - <schema_name/>  
912 - </partitioning>  
913 -<send_true_to>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</send_true_to>  
914 -<send_false_to>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</send_false_to>  
915 - <compare>  
916 -<condition>  
917 - <negated>N</negated>  
918 - <leftvalue>bctype</leftvalue>  
919 - <function>&#x3d;</function>  
920 - <rightvalue/>  
921 - <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>  
922 - </compare>  
923 - <cluster_schema/>  
924 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
925 - <xloc>860</xloc>  
926 - <yloc>401</yloc>  
927 - <draw>Y</draw>  
928 - </GUI>  
929 - </step>  
930 -  
931 - <step>  
932 - <name>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</name>  
933 - <type>FilterRows</type>  
934 - <description/>  
935 - <distribute>Y</distribute>  
936 - <custom_distribution/>  
937 - <copies>1</copies>  
938 - <partitioning>  
939 - <method>none</method>  
940 - <schema_name/>  
941 - </partitioning>  
942 -<send_true_to>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</send_true_to>  
943 -<send_false_to>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</send_false_to>  
944 - <compare>  
945 -<condition>  
946 - <negated>N</negated>  
947 - <leftvalue>bctype</leftvalue>  
948 - <function>&#x3d;</function>  
949 - <rightvalue/>  
950 - <value><name>constant</name><type>String</type><text>&#x51fa;&#x573a;</text><length>-1</length><precision>-1</precision><isnull>N</isnull><mask/></value> </condition>  
951 - </compare>  
952 - <cluster_schema/>  
953 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
954 - <xloc>995</xloc>  
955 - <yloc>503</yloc>  
956 - <draw>Y</draw>  
957 - </GUI>  
958 - </step>  
959 -  
960 - <step>  
961 - <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail</name>  
962 - <type>InsertUpdate</type>  
963 - <description/>  
964 - <distribute>Y</distribute>  
965 - <custom_distribution/>  
966 - <copies>1</copies>  
967 - <partitioning>  
968 - <method>none</method>  
969 - <schema_name/>  
970 - </partitioning>  
971 - <connection>bus_control_variable</connection>  
972 - <commit>100</commit>  
973 - <update_bypassed>N</update_bypassed>  
974 - <lookup>  
975 - <schema/>  
976 - <table>bsth_c_s_ttinfo_detail</table>  
977 - <key>  
978 - <name>xlid</name>  
979 - <field>xl</field>  
980 - <condition>&#x3d;</condition>  
981 - <name2/>  
982 - </key>  
983 - <key>  
984 - <name>ttid</name>  
985 - <field>ttinfo</field>  
986 - <condition>&#x3d;</condition>  
987 - <name2/>  
988 - </key>  
989 - <key>  
990 - <name>lpid</name>  
991 - <field>lp</field>  
992 - <condition>&#x3d;</condition>  
993 - <name2/>  
994 - </key>  
995 - <key>  
996 - <name>fcno</name>  
997 - <field>fcno</field>  
998 - <condition>&#x3d;</condition>  
999 - <name2/>  
1000 - </key>  
1001 - <key>  
1002 - <name>bcs</name>  
1003 - <field>bcs</field>  
1004 - <condition>&#x3d;</condition>  
1005 - <name2/>  
1006 - </key>  
1007 - <value>  
1008 - <name>lp</name>  
1009 - <rename>lpid</rename>  
1010 - <update>Y</update>  
1011 - </value>  
1012 - <value>  
1013 - <name>bc_type</name>  
1014 - <rename>bctype_code</rename>  
1015 - <update>Y</update>  
1016 - </value>  
1017 - <value>  
1018 - <name>bcs</name>  
1019 - <rename>bcs</rename>  
1020 - <update>Y</update>  
1021 - </value>  
1022 - <value>  
1023 - <name>bcsj</name>  
1024 - <rename>bcsj</rename>  
1025 - <update>Y</update>  
1026 - </value>  
1027 - <value>  
1028 - <name>fcno</name>  
1029 - <rename>fcno</rename>  
1030 - <update>Y</update>  
1031 - </value>  
1032 - <value>  
1033 - <name>jhlc</name>  
1034 - <rename>jhlc</rename>  
1035 - <update>Y</update>  
1036 - </value>  
1037 - <value>  
1038 - <name>fcsj</name>  
1039 - <rename>sendtime_calcu</rename>  
1040 - <update>Y</update>  
1041 - </value>  
1042 - <value>  
1043 - <name>ttinfo</name>  
1044 - <rename>ttid</rename>  
1045 - <update>Y</update>  
1046 - </value>  
1047 - <value>  
1048 - <name>xl</name>  
1049 - <rename>xlid</rename>  
1050 - <update>Y</update>  
1051 - </value>  
1052 - <value>  
1053 - <name>qdz</name>  
1054 - <rename>qdzid</rename>  
1055 - <update>Y</update>  
1056 - </value>  
1057 - <value>  
1058 - <name>zdz</name>  
1059 - <rename>zdzid</rename>  
1060 - <update>Y</update>  
1061 - </value>  
1062 - <value>  
1063 - <name>xl_dir</name>  
1064 - <rename>sxx</rename>  
1065 - <update>Y</update>  
1066 - </value>  
1067 - <value>  
1068 - <name>isfb</name>  
1069 - <rename>isfb</rename>  
1070 - <update>Y</update>  
1071 - </value>  
1072 - <value>  
1073 - <name>qdz_code</name>  
1074 - <rename>qdzcode</rename>  
1075 - <update>Y</update>  
1076 - </value>  
1077 - <value>  
1078 - <name>qdz_name</name>  
1079 - <rename>qdzname_</rename>  
1080 - <update>Y</update>  
1081 - </value>  
1082 - <value>  
1083 - <name>zdz_code</name>  
1084 - <rename>zdzcode</rename>  
1085 - <update>Y</update>  
1086 - </value>  
1087 - <value>  
1088 - <name>zdz_name</name>  
1089 - <rename>zdzname</rename>  
1090 - <update>Y</update>  
1091 - </value>  
1092 - <value>  
1093 - <name>ists</name>  
1094 - <rename>ists</rename>  
1095 - <update>Y</update>  
1096 - </value>  
1097 - </lookup>  
1098 - <cluster_schema/>  
1099 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1100 - <xloc>143</xloc>  
1101 - <yloc>860</yloc>  
1102 - <draw>Y</draw>  
1103 - </GUI>  
1104 - </step>  
1105 -  
1106 - <step>  
1107 - <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail 2</name>  
1108 - <type>InsertUpdate</type>  
1109 - <description/>  
1110 - <distribute>Y</distribute>  
1111 - <custom_distribution/>  
1112 - <copies>1</copies>  
1113 - <partitioning>  
1114 - <method>none</method>  
1115 - <schema_name/>  
1116 - </partitioning>  
1117 - <connection>bus_control_variable</connection>  
1118 - <commit>100</commit>  
1119 - <update_bypassed>N</update_bypassed>  
1120 - <lookup>  
1121 - <schema/>  
1122 - <table>bsth_c_s_ttinfo_detail</table>  
1123 - <key>  
1124 - <name>xlid</name>  
1125 - <field>xl</field>  
1126 - <condition>&#x3d;</condition>  
1127 - <name2/>  
1128 - </key>  
1129 - <key>  
1130 - <name>ttid</name>  
1131 - <field>ttinfo</field>  
1132 - <condition>&#x3d;</condition>  
1133 - <name2/>  
1134 - </key>  
1135 - <key>  
1136 - <name>lpid</name>  
1137 - <field>lp</field>  
1138 - <condition>&#x3d;</condition>  
1139 - <name2/>  
1140 - </key>  
1141 - <key>  
1142 - <name>fcno</name>  
1143 - <field>fcno</field>  
1144 - <condition>&#x3d;</condition>  
1145 - <name2/>  
1146 - </key>  
1147 - <key>  
1148 - <name>bcs</name>  
1149 - <field>bcs</field>  
1150 - <condition>&#x3d;</condition>  
1151 - <name2/>  
1152 - </key>  
1153 - <value>  
1154 - <name>tcc</name>  
1155 - <rename>qdzid</rename>  
1156 - <update>Y</update>  
1157 - </value>  
1158 - <value>  
1159 - <name>zdz</name>  
1160 - <rename>zdzid</rename>  
1161 - <update>Y</update>  
1162 - </value>  
1163 - <value>  
1164 - <name>xl</name>  
1165 - <rename>xlid</rename>  
1166 - <update>Y</update>  
1167 - </value>  
1168 - <value>  
1169 - <name>ttinfo</name>  
1170 - <rename>ttid</rename>  
1171 - <update>Y</update>  
1172 - </value>  
1173 - <value>  
1174 - <name>xl_dir</name>  
1175 - <rename>sxx</rename>  
1176 - <update>Y</update>  
1177 - </value>  
1178 - <value>  
1179 - <name>lp</name>  
1180 - <rename>lpid</rename>  
1181 - <update>Y</update>  
1182 - </value>  
1183 - <value>  
1184 - <name>jhlc</name>  
1185 - <rename>out_mileage</rename>  
1186 - <update>Y</update>  
1187 - </value>  
1188 - <value>  
1189 - <name>fcsj</name>  
1190 - <rename>sendtime_calcu</rename>  
1191 - <update>Y</update>  
1192 - </value>  
1193 - <value>  
1194 - <name>bcsj</name>  
1195 - <rename>out_time</rename>  
1196 - <update>Y</update>  
1197 - </value>  
1198 - <value>  
1199 - <name>bcs</name>  
1200 - <rename>bcs</rename>  
1201 - <update>Y</update>  
1202 - </value>  
1203 - <value>  
1204 - <name>fcno</name>  
1205 - <rename>fcno</rename>  
1206 - <update>Y</update>  
1207 - </value>  
1208 - <value>  
1209 - <name>bc_type</name>  
1210 - <rename>bctype_code</rename>  
1211 - <update>Y</update>  
1212 - </value>  
1213 - <value>  
1214 - <name>isfb</name>  
1215 - <rename>isfb</rename>  
1216 - <update>Y</update>  
1217 - </value>  
1218 - <value>  
1219 - <name>qdz_code</name>  
1220 - <rename>qdzcode</rename>  
1221 - <update>Y</update>  
1222 - </value>  
1223 - <value>  
1224 - <name>qdz_name</name>  
1225 - <rename>tn</rename>  
1226 - <update>Y</update>  
1227 - </value>  
1228 - <value>  
1229 - <name>zdz_code</name>  
1230 - <rename>zdzcode</rename>  
1231 - <update>Y</update>  
1232 - </value>  
1233 - <value>  
1234 - <name>zdz_name</name>  
1235 - <rename>zdzname_</rename>  
1236 - <update>Y</update>  
1237 - </value>  
1238 - <value>  
1239 - <name>ists</name>  
1240 - <rename>ists</rename>  
1241 - <update>Y</update>  
1242 - </value>  
1243 - </lookup>  
1244 - <cluster_schema/>  
1245 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1246 - <xloc>340</xloc>  
1247 - <yloc>1087</yloc>  
1248 - <draw>Y</draw>  
1249 - </GUI>  
1250 - </step>  
1251 -  
1252 - <step>  
1253 - <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail 3</name>  
1254 - <type>InsertUpdate</type>  
1255 - <description/>  
1256 - <distribute>Y</distribute>  
1257 - <custom_distribution/>  
1258 - <copies>1</copies>  
1259 - <partitioning>  
1260 - <method>none</method>  
1261 - <schema_name/>  
1262 - </partitioning>  
1263 - <connection>bus_control_variable</connection>  
1264 - <commit>100</commit>  
1265 - <update_bypassed>N</update_bypassed>  
1266 - <lookup>  
1267 - <schema/>  
1268 - <table>bsth_c_s_ttinfo_detail</table>  
1269 - <key>  
1270 - <name>xlid</name>  
1271 - <field>xl</field>  
1272 - <condition>&#x3d;</condition>  
1273 - <name2/>  
1274 - </key>  
1275 - <key>  
1276 - <name>ttid</name>  
1277 - <field>ttinfo</field>  
1278 - <condition>&#x3d;</condition>  
1279 - <name2/>  
1280 - </key>  
1281 - <key>  
1282 - <name>lpid</name>  
1283 - <field>lp</field>  
1284 - <condition>&#x3d;</condition>  
1285 - <name2/>  
1286 - </key>  
1287 - <key>  
1288 - <name>fcno</name>  
1289 - <field>fcno</field>  
1290 - <condition>&#x3d;</condition>  
1291 - <name2/>  
1292 - </key>  
1293 - <key>  
1294 - <name>bcs</name>  
1295 - <field>bcs</field>  
1296 - <condition>&#x3d;</condition>  
1297 - <name2/>  
1298 - </key>  
1299 - <value>  
1300 - <name>fcno</name>  
1301 - <rename>fcno</rename>  
1302 - <update>Y</update>  
1303 - </value>  
1304 - <value>  
1305 - <name>bcs</name>  
1306 - <rename>bcs</rename>  
1307 - <update>Y</update>  
1308 - </value>  
1309 - <value>  
1310 - <name>xl</name>  
1311 - <rename>xlid</rename>  
1312 - <update>Y</update>  
1313 - </value>  
1314 - <value>  
1315 - <name>ttinfo</name>  
1316 - <rename>ttid</rename>  
1317 - <update>Y</update>  
1318 - </value>  
1319 - <value>  
1320 - <name>lp</name>  
1321 - <rename>lpid</rename>  
1322 - <update>Y</update>  
1323 - </value>  
1324 - <value>  
1325 - <name>bc_type</name>  
1326 - <rename>bctype_code</rename>  
1327 - <update>Y</update>  
1328 - </value>  
1329 - <value>  
1330 - <name>bcsj</name>  
1331 - <rename>parade_time</rename>  
1332 - <update>Y</update>  
1333 - </value>  
1334 - <value>  
1335 - <name>jhlc</name>  
1336 - <rename>parade_mileage</rename>  
1337 - <update>Y</update>  
1338 - </value>  
1339 - <value>  
1340 - <name>fcsj</name>  
1341 - <rename>sendtime_calcu</rename>  
1342 - <update>Y</update>  
1343 - </value>  
1344 - <value>  
1345 - <name>xl_dir</name>  
1346 - <rename>sxx2</rename>  
1347 - <update>Y</update>  
1348 - </value>  
1349 - <value>  
1350 - <name>qdz</name>  
1351 - <rename>qdzid</rename>  
1352 - <update>Y</update>  
1353 - </value>  
1354 - <value>  
1355 - <name>tcc</name>  
1356 - <rename>zdzid</rename>  
1357 - <update>Y</update>  
1358 - </value>  
1359 - <value>  
1360 - <name>isfb</name>  
1361 - <rename>isfb</rename>  
1362 - <update>Y</update>  
1363 - </value>  
1364 - <value>  
1365 - <name>qdz_code</name>  
1366 - <rename>qdzcode</rename>  
1367 - <update>Y</update>  
1368 - </value>  
1369 - <value>  
1370 - <name>qdz_name</name>  
1371 - <rename>qname</rename>  
1372 - <update>Y</update>  
1373 - </value>  
1374 - <value>  
1375 - <name>zdz_code</name>  
1376 - <rename>zdzcode</rename>  
1377 - <update>Y</update>  
1378 - </value>  
1379 - <value>  
1380 - <name>zdz_name</name>  
1381 - <rename>tn</rename>  
1382 - <update>Y</update>  
1383 - </value>  
1384 - <value>  
1385 - <name>ists</name>  
1386 - <rename>ists</rename>  
1387 - <update>Y</update>  
1388 - </value>  
1389 - </lookup>  
1390 - <cluster_schema/>  
1391 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1392 - <xloc>845</xloc>  
1393 - <yloc>899</yloc>  
1394 - <draw>Y</draw>  
1395 - </GUI>  
1396 - </step>  
1397 -  
1398 - <step>  
1399 - <name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</name>  
1400 - <type>ExcelInput</type>  
1401 - <description/>  
1402 - <distribute>N</distribute>  
1403 - <custom_distribution/>  
1404 - <copies>1</copies>  
1405 - <partitioning>  
1406 - <method>none</method>  
1407 - <schema_name/>  
1408 - </partitioning>  
1409 - <header>Y</header>  
1410 - <noempty>Y</noempty>  
1411 - <stoponempty>N</stoponempty>  
1412 - <filefield/>  
1413 - <sheetfield/>  
1414 - <sheetrownumfield/>  
1415 - <rownumfield/>  
1416 - <sheetfield/>  
1417 - <filefield/>  
1418 - <limit>0</limit>  
1419 - <encoding/>  
1420 - <add_to_result_filenames>Y</add_to_result_filenames>  
1421 - <accept_filenames>N</accept_filenames>  
1422 - <accept_field/>  
1423 - <accept_stepname/>  
1424 - <file>  
1425 - <name/>  
1426 - <filemask/>  
1427 - <exclude_filemask/>  
1428 - <file_required>N</file_required>  
1429 - <include_subfolders>N</include_subfolders>  
1430 - </file>  
1431 - <fields>  
1432 - </fields>  
1433 - <sheets>  
1434 - <sheet>  
1435 - <name/>  
1436 - <startrow>0</startrow>  
1437 - <startcol>0</startcol>  
1438 - </sheet>  
1439 - </sheets>  
1440 - <strict_types>N</strict_types>  
1441 - <error_ignored>N</error_ignored>  
1442 - <error_line_skipped>N</error_line_skipped>  
1443 - <bad_line_files_destination_directory/>  
1444 - <bad_line_files_extension>warning</bad_line_files_extension>  
1445 - <error_line_files_destination_directory/>  
1446 - <error_line_files_extension>error</error_line_files_extension>  
1447 - <line_number_files_destination_directory/>  
1448 - <line_number_files_extension>line</line_number_files_extension>  
1449 - <shortFileFieldName/>  
1450 - <pathFieldName/>  
1451 - <hiddenFieldName/>  
1452 - <lastModificationTimeFieldName/>  
1453 - <uriNameFieldName/>  
1454 - <rootUriNameFieldName/>  
1455 - <extensionFieldName/>  
1456 - <sizeFieldName/>  
1457 - <spreadsheet_type>JXL</spreadsheet_type>  
1458 - <cluster_schema/>  
1459 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1460 - <xloc>112</xloc>  
1461 - <yloc>44</yloc>  
1462 - <draw>Y</draw>  
1463 - </GUI>  
1464 - </step>  
1465 -  
1466 - <step>  
1467 - <name>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;1</name>  
1468 - <type>DBLookup</type>  
1469 - <description/>  
1470 - <distribute>Y</distribute>  
1471 - <custom_distribution/>  
1472 - <copies>1</copies>  
1473 - <partitioning>  
1474 - <method>none</method>  
1475 - <schema_name/>  
1476 - </partitioning>  
1477 - <connection>bus_control_variable</connection>  
1478 - <cache>N</cache>  
1479 - <cache_load_all>N</cache_load_all>  
1480 - <cache_size>0</cache_size>  
1481 - <lookup>  
1482 - <schema/>  
1483 - <table>bsth_c_car_park</table>  
1484 - <orderby/>  
1485 - <fail_on_multiple>N</fail_on_multiple>  
1486 - <eat_row_on_failure>N</eat_row_on_failure>  
1487 - <key>  
1488 - <name>tccname_</name>  
1489 - <field>park_name</field>  
1490 - <condition>&#x3d;</condition>  
1491 - <name2/>  
1492 - </key>  
1493 - <value>  
1494 - <name>id</name>  
1495 - <rename>qdzid</rename>  
1496 - <default/>  
1497 - <type>Integer</type>  
1498 - </value>  
1499 - <value>  
1500 - <name>park_code</name>  
1501 - <rename>qdzcode</rename>  
1502 - <default/>  
1503 - <type>String</type>  
1504 - </value>  
1505 - <value>  
1506 - <name>park_name</name>  
1507 - <rename>tn</rename>  
1508 - <default/>  
1509 - <type>String</type>  
1510 - </value>  
1511 - </lookup>  
1512 - <cluster_schema/>  
1513 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1514 - <xloc>755</xloc>  
1515 - <yloc>504</yloc>  
1516 - <draw>Y</draw>  
1517 - </GUI>  
1518 - </step>  
1519 -  
1520 - <step>  
1521 - <name>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;2</name>  
1522 - <type>DBLookup</type>  
1523 - <description/>  
1524 - <distribute>Y</distribute>  
1525 - <custom_distribution/>  
1526 - <copies>1</copies>  
1527 - <partitioning>  
1528 - <method>none</method>  
1529 - <schema_name/>  
1530 - </partitioning>  
1531 - <connection>bus_control_variable</connection>  
1532 - <cache>N</cache>  
1533 - <cache_load_all>N</cache_load_all>  
1534 - <cache_size>0</cache_size>  
1535 - <lookup>  
1536 - <schema/>  
1537 - <table>bsth_c_car_park</table>  
1538 - <orderby/>  
1539 - <fail_on_multiple>N</fail_on_multiple>  
1540 - <eat_row_on_failure>N</eat_row_on_failure>  
1541 - <key>  
1542 - <name>tccname_</name>  
1543 - <field>park_name</field>  
1544 - <condition>&#x3d;</condition>  
1545 - <name2/>  
1546 - </key>  
1547 - <value>  
1548 - <name>id</name>  
1549 - <rename>zdzid</rename>  
1550 - <default/>  
1551 - <type>Integer</type>  
1552 - </value>  
1553 - <value>  
1554 - <name>park_code</name>  
1555 - <rename>zdzcode</rename>  
1556 - <default/>  
1557 - <type>String</type>  
1558 - </value>  
1559 - <value>  
1560 - <name>park_name</name>  
1561 - <rename>tn</rename>  
1562 - <default/>  
1563 - <type>String</type>  
1564 - </value>  
1565 - </lookup>  
1566 - <cluster_schema/>  
1567 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1568 - <xloc>887</xloc>  
1569 - <yloc>608</yloc>  
1570 - <draw>Y</draw>  
1571 - </GUI>  
1572 - </step>  
1573 -  
1574 - <step>  
1575 - <name>&#x67e5;&#x627e;&#x51fa;&#x573a;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</name>  
1576 - <type>DBLookup</type>  
1577 - <description/>  
1578 - <distribute>Y</distribute>  
1579 - <custom_distribution/>  
1580 - <copies>1</copies>  
1581 - <partitioning>  
1582 - <method>none</method>  
1583 - <schema_name/>  
1584 - </partitioning>  
1585 - <connection>bus_control_variable</connection>  
1586 - <cache>N</cache>  
1587 - <cache_load_all>N</cache_load_all>  
1588 - <cache_size>0</cache_size>  
1589 - <lookup>  
1590 - <schema/>  
1591 - <table>bsth_c_stationroute</table>  
1592 - <orderby/>  
1593 - <fail_on_multiple>N</fail_on_multiple>  
1594 - <eat_row_on_failure>N</eat_row_on_failure>  
1595 - <key>  
1596 - <name>xlid</name>  
1597 - <field>line</field>  
1598 - <condition>&#x3d;</condition>  
1599 - <name2/>  
1600 - </key>  
1601 - <key>  
1602 - <name>zdzname</name>  
1603 - <field>station_name</field>  
1604 - <condition>LIKE</condition>  
1605 - <name2/>  
1606 - </key>  
1607 - <key>  
1608 - <name>endZdtype</name>  
1609 - <field>station_mark</field>  
1610 - <condition>&#x3d;</condition>  
1611 - <name2/>  
1612 - </key>  
1613 - <key>  
1614 - <name>destory</name>  
1615 - <field>destroy</field>  
1616 - <condition>&#x3d;</condition>  
1617 - <name2/>  
1618 - </key>  
1619 - <value>  
1620 - <name>station</name>  
1621 - <rename>zdzid</rename>  
1622 - <default/>  
1623 - <type>Integer</type>  
1624 - </value>  
1625 - <value>  
1626 - <name>directions</name>  
1627 - <rename>sxx</rename>  
1628 - <default/>  
1629 - <type>Integer</type>  
1630 - </value>  
1631 - <value>  
1632 - <name>station_code</name>  
1633 - <rename>zdzcode</rename>  
1634 - <default/>  
1635 - <type>String</type>  
1636 - </value>  
1637 - <value>  
1638 - <name>station_name</name>  
1639 - <rename>zdzname_</rename>  
1640 - <default/>  
1641 - <type>String</type>  
1642 - </value>  
1643 - </lookup>  
1644 - <cluster_schema/>  
1645 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1646 - <xloc>329</xloc>  
1647 - <yloc>505</yloc>  
1648 - <draw>Y</draw>  
1649 - </GUI>  
1650 - </step>  
1651 -  
1652 - <step>  
1653 - <name>&#x67e5;&#x627e;&#x65f6;&#x523b;&#x8868;&#x57fa;&#x7840;&#x4fe1;&#x606f;&#x5173;&#x8054;</name>  
1654 - <type>DBLookup</type>  
1655 - <description/>  
1656 - <distribute>Y</distribute>  
1657 - <custom_distribution/>  
1658 - <copies>1</copies>  
1659 - <partitioning>  
1660 - <method>none</method>  
1661 - <schema_name/>  
1662 - </partitioning>  
1663 - <connection>bus_control_variable</connection>  
1664 - <cache>N</cache>  
1665 - <cache_load_all>N</cache_load_all>  
1666 - <cache_size>0</cache_size>  
1667 - <lookup>  
1668 - <schema/>  
1669 - <table>bsth_c_s_ttinfo</table>  
1670 - <orderby/>  
1671 - <fail_on_multiple>N</fail_on_multiple>  
1672 - <eat_row_on_failure>N</eat_row_on_failure>  
1673 - <key>  
1674 - <name>xlid</name>  
1675 - <field>xl</field>  
1676 - <condition>&#x3d;</condition>  
1677 - <name2/>  
1678 - </key>  
1679 - <key>  
1680 - <name>ttinfoname_</name>  
1681 - <field>name</field>  
1682 - <condition>&#x3d;</condition>  
1683 - <name2/>  
1684 - </key>  
1685 - <key>  
1686 - <name>iscanceled</name>  
1687 - <field>is_cancel</field>  
1688 - <condition>&#x3d;</condition>  
1689 - <name2/>  
1690 - </key>  
1691 - <value>  
1692 - <name>id</name>  
1693 - <rename>ttid</rename>  
1694 - <default/>  
1695 - <type>Integer</type>  
1696 - </value>  
1697 - </lookup>  
1698 - <cluster_schema/>  
1699 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1700 - <xloc>1011</xloc>  
1701 - <yloc>134</yloc>  
1702 - <draw>Y</draw>  
1703 - </GUI>  
1704 - </step>  
1705 -  
1706 - <step>  
1707 - <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x5173;&#x8054;</name>  
1708 - <type>DBLookup</type>  
1709 - <description/>  
1710 - <distribute>Y</distribute>  
1711 - <custom_distribution/>  
1712 - <copies>1</copies>  
1713 - <partitioning>  
1714 - <method>none</method>  
1715 - <schema_name/>  
1716 - </partitioning>  
1717 - <connection>bus_control_variable</connection>  
1718 - <cache>N</cache>  
1719 - <cache_load_all>N</cache_load_all>  
1720 - <cache_size>0</cache_size>  
1721 - <lookup>  
1722 - <schema/>  
1723 - <table>bsth_c_line</table>  
1724 - <orderby/>  
1725 - <fail_on_multiple>N</fail_on_multiple>  
1726 - <eat_row_on_failure>N</eat_row_on_failure>  
1727 - <key>  
1728 - <name>xlname_</name>  
1729 - <field>name</field>  
1730 - <condition>&#x3d;</condition>  
1731 - <name2/>  
1732 - </key>  
1733 - <key>  
1734 - <name>iscanceled</name>  
1735 - <field>destroy</field>  
1736 - <condition>&#x3d;</condition>  
1737 - <name2/>  
1738 - </key>  
1739 - <value>  
1740 - <name>id</name>  
1741 - <rename>xlid</rename>  
1742 - <default/>  
1743 - <type>Integer</type>  
1744 - </value>  
1745 - </lookup>  
1746 - <cluster_schema/>  
1747 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1748 - <xloc>1007</xloc>  
1749 - <yloc>43</yloc>  
1750 - <draw>Y</draw>  
1751 - </GUI>  
1752 - </step>  
1753 -  
1754 - <step>  
1755 - <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x51fa;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>  
1756 - <type>DBLookup</type>  
1757 - <description/>  
1758 - <distribute>Y</distribute>  
1759 - <custom_distribution/>  
1760 - <copies>1</copies>  
1761 - <partitioning>  
1762 - <method>none</method>  
1763 - <schema_name/>  
1764 - </partitioning>  
1765 - <connection>bus_control_variable</connection>  
1766 - <cache>N</cache>  
1767 - <cache_load_all>N</cache_load_all>  
1768 - <cache_size>0</cache_size>  
1769 - <lookup>  
1770 - <schema/>  
1771 - <table>bsth_c_line_information</table>  
1772 - <orderby/>  
1773 - <fail_on_multiple>N</fail_on_multiple>  
1774 - <eat_row_on_failure>N</eat_row_on_failure>  
1775 - <key>  
1776 - <name>xlid</name>  
1777 - <field>line</field>  
1778 - <condition>&#x3d;</condition>  
1779 - <name2/>  
1780 - </key>  
1781 - <value>  
1782 - <name>up_out_timer</name>  
1783 - <rename>up_out_timer</rename>  
1784 - <default/>  
1785 - <type>Number</type>  
1786 - </value>  
1787 - <value>  
1788 - <name>up_out_mileage</name>  
1789 - <rename>up_out_mileage</rename>  
1790 - <default/>  
1791 - <type>Number</type>  
1792 - </value>  
1793 - <value>  
1794 - <name>down_out_timer</name>  
1795 - <rename>down_out_timer</rename>  
1796 - <default/>  
1797 - <type>Number</type>  
1798 - </value>  
1799 - <value>  
1800 - <name>down_out_mileage</name>  
1801 - <rename>down_out_mileage</rename>  
1802 - <default/>  
1803 - <type>Number</type>  
1804 - </value>  
1805 - </lookup>  
1806 - <cluster_schema/>  
1807 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1808 - <xloc>335</xloc>  
1809 - <yloc>763</yloc>  
1810 - <draw>Y</draw>  
1811 - </GUI>  
1812 - </step>  
1813 -  
1814 - <step>  
1815 - <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x6240;&#x6709;&#x4e0a;&#x4e0b;&#x884c;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>  
1816 - <type>DBLookup</type>  
1817 - <description/>  
1818 - <distribute>Y</distribute>  
1819 - <custom_distribution/>  
1820 - <copies>1</copies>  
1821 - <partitioning>  
1822 - <method>none</method>  
1823 - <schema_name/>  
1824 - </partitioning>  
1825 - <connection>bus_control_variable</connection>  
1826 - <cache>N</cache>  
1827 - <cache_load_all>N</cache_load_all>  
1828 - <cache_size>0</cache_size>  
1829 - <lookup>  
1830 - <schema/>  
1831 - <table>bsth_c_line_information</table>  
1832 - <orderby/>  
1833 - <fail_on_multiple>N</fail_on_multiple>  
1834 - <eat_row_on_failure>N</eat_row_on_failure>  
1835 - <key>  
1836 - <name>xlid</name>  
1837 - <field>line</field>  
1838 - <condition>&#x3d;</condition>  
1839 - <name2/>  
1840 - </key>  
1841 - <value>  
1842 - <name>up_mileage</name>  
1843 - <rename>up_mileage</rename>  
1844 - <default/>  
1845 - <type>Number</type>  
1846 - </value>  
1847 - <value>  
1848 - <name>down_mileage</name>  
1849 - <rename>down_mileage</rename>  
1850 - <default/>  
1851 - <type>Number</type>  
1852 - </value>  
1853 - <value>  
1854 - <name>up_travel_time</name>  
1855 - <rename>up_travel_time</rename>  
1856 - <default/>  
1857 - <type>Number</type>  
1858 - </value>  
1859 - <value>  
1860 - <name>down_travel_time</name>  
1861 - <rename>down_travel_time</rename>  
1862 - <default/>  
1863 - <type>Number</type>  
1864 - </value>  
1865 - <value>  
1866 - <name>early_start_time</name>  
1867 - <rename>early_start_time</rename>  
1868 - <default/>  
1869 - <type>String</type>  
1870 - </value>  
1871 - <value>  
1872 - <name>early_end_time</name>  
1873 - <rename>early_end_time</rename>  
1874 - <default/>  
1875 - <type>String</type>  
1876 - </value>  
1877 - <value>  
1878 - <name>early_up_time</name>  
1879 - <rename>early_up_time</rename>  
1880 - <default/>  
1881 - <type>Number</type>  
1882 - </value>  
1883 - <value>  
1884 - <name>early_down_time</name>  
1885 - <rename>early_down_time</rename>  
1886 - <default/>  
1887 - <type>Number</type>  
1888 - </value>  
1889 - <value>  
1890 - <name>late_start_time</name>  
1891 - <rename>late_start_time</rename>  
1892 - <default/>  
1893 - <type>String</type>  
1894 - </value>  
1895 - <value>  
1896 - <name>late_end_time</name>  
1897 - <rename>late_end_time</rename>  
1898 - <default/>  
1899 - <type>String</type>  
1900 - </value>  
1901 - <value>  
1902 - <name>late_up_time</name>  
1903 - <rename>late_up_time</rename>  
1904 - <default/>  
1905 - <type>Number</type>  
1906 - </value>  
1907 - <value>  
1908 - <name>late_down_time</name>  
1909 - <rename>late_down_time</rename>  
1910 - <default/>  
1911 - <type>Number</type>  
1912 - </value>  
1913 - </lookup>  
1914 - <cluster_schema/>  
1915 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1916 - <xloc>149</xloc>  
1917 - <yloc>581</yloc>  
1918 - <draw>Y</draw>  
1919 - </GUI>  
1920 - </step>  
1921 -  
1922 - <step>  
1923 - <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x8fdb;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>  
1924 - <type>DBLookup</type>  
1925 - <description/>  
1926 - <distribute>Y</distribute>  
1927 - <custom_distribution/>  
1928 - <copies>1</copies>  
1929 - <partitioning>  
1930 - <method>none</method>  
1931 - <schema_name/>  
1932 - </partitioning>  
1933 - <connection>bus_control_variable</connection>  
1934 - <cache>N</cache>  
1935 - <cache_load_all>N</cache_load_all>  
1936 - <cache_size>0</cache_size>  
1937 - <lookup>  
1938 - <schema/>  
1939 - <table>bsth_c_line_information</table>  
1940 - <orderby/>  
1941 - <fail_on_multiple>N</fail_on_multiple>  
1942 - <eat_row_on_failure>N</eat_row_on_failure>  
1943 - <key>  
1944 - <name>xlid</name>  
1945 - <field>line</field>  
1946 - <condition>&#x3d;</condition>  
1947 - <name2/>  
1948 - </key>  
1949 - <value>  
1950 - <name>up_in_mileage</name>  
1951 - <rename>up_in_mileage</rename>  
1952 - <default/>  
1953 - <type>Number</type>  
1954 - </value>  
1955 - <value>  
1956 - <name>up_in_timer</name>  
1957 - <rename>up_in_timer</rename>  
1958 - <default/>  
1959 - <type>Number</type>  
1960 - </value>  
1961 - <value>  
1962 - <name>down_in_mileage</name>  
1963 - <rename>down_in_mileage</rename>  
1964 - <default/>  
1965 - <type>Number</type>  
1966 - </value>  
1967 - <value>  
1968 - <name>down_in_timer</name>  
1969 - <rename>down_in_timer</rename>  
1970 - <default/>  
1971 - <type>Number</type>  
1972 - </value>  
1973 - </lookup>  
1974 - <cluster_schema/>  
1975 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1976 - <xloc>553</xloc>  
1977 - <yloc>1004</yloc>  
1978 - <draw>Y</draw>  
1979 - </GUI>  
1980 - </step>  
1981 -  
1982 - <step>  
1983 - <name>&#x67e5;&#x627e;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;</name>  
1984 - <type>DBLookup</type>  
1985 - <description/>  
1986 - <distribute>Y</distribute>  
1987 - <custom_distribution/>  
1988 - <copies>1</copies>  
1989 - <partitioning>  
1990 - <method>none</method>  
1991 - <schema_name/>  
1992 - </partitioning>  
1993 - <connection>bus_control_variable</connection>  
1994 - <cache>N</cache>  
1995 - <cache_load_all>N</cache_load_all>  
1996 - <cache_size>0</cache_size>  
1997 - <lookup>  
1998 - <schema/>  
1999 - <table>bsth_c_stationroute</table>  
2000 - <orderby/>  
2001 - <fail_on_multiple>N</fail_on_multiple>  
2002 - <eat_row_on_failure>N</eat_row_on_failure>  
2003 - <key>  
2004 - <name>xlid</name>  
2005 - <field>line</field>  
2006 - <condition>&#x3d;</condition>  
2007 - <name2/>  
2008 - </key>  
2009 - <key>  
2010 - <name>sxx</name>  
2011 - <field>directions</field>  
2012 - <condition>&#x3d;</condition>  
2013 - <name2/>  
2014 - </key>  
2015 - <key>  
2016 - <name>endZdtype</name>  
2017 - <field>station_mark</field>  
2018 - <condition>&#x3d;</condition>  
2019 - <name2/>  
2020 - </key>  
2021 - <key>  
2022 - <name>destory</name>  
2023 - <field>destroy</field>  
2024 - <condition>&#x3d;</condition>  
2025 - <name2/>  
2026 - </key>  
2027 - <value>  
2028 - <name>station_name</name>  
2029 - <rename>zdzname</rename>  
2030 - <default/>  
2031 - <type>String</type>  
2032 - </value>  
2033 - <value>  
2034 - <name>station</name>  
2035 - <rename>zdzid</rename>  
2036 - <default/>  
2037 - <type>Integer</type>  
2038 - </value>  
2039 - <value>  
2040 - <name>station_code</name>  
2041 - <rename>zdzcode</rename>  
2042 - <default/>  
2043 - <type>String</type>  
2044 - </value>  
2045 - </lookup>  
2046 - <cluster_schema/>  
2047 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2048 - <xloc>280</xloc>  
2049 - <yloc>404</yloc>  
2050 - <draw>Y</draw>  
2051 - </GUI>  
2052 - </step>  
2053 -  
2054 - <step>  
2055 - <name>&#x67e5;&#x627e;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</name>  
2056 - <type>DBLookup</type>  
2057 - <description/>  
2058 - <distribute>Y</distribute>  
2059 - <custom_distribution/>  
2060 - <copies>1</copies>  
2061 - <partitioning>  
2062 - <method>none</method>  
2063 - <schema_name/>  
2064 - </partitioning>  
2065 - <connection>bus_control_variable</connection>  
2066 - <cache>N</cache>  
2067 - <cache_load_all>N</cache_load_all>  
2068 - <cache_size>0</cache_size>  
2069 - <lookup>  
2070 - <schema/>  
2071 - <table>bsth_c_stationroute</table>  
2072 - <orderby/>  
2073 - <fail_on_multiple>N</fail_on_multiple>  
2074 - <eat_row_on_failure>N</eat_row_on_failure>  
2075 - <key>  
2076 - <name>xlid</name>  
2077 - <field>line</field>  
2078 - <condition>&#x3d;</condition>  
2079 - <name2/>  
2080 - </key>  
2081 - <key>  
2082 - <name>qdzname</name>  
2083 - <field>station_name</field>  
2084 - <condition>LIKE</condition>  
2085 - <name2/>  
2086 - </key>  
2087 - <key>  
2088 - <name>sendZdtype</name>  
2089 - <field>station_mark</field>  
2090 - <condition>&#x3d;</condition>  
2091 - <name2/>  
2092 - </key>  
2093 - <key>  
2094 - <name>destory</name>  
2095 - <field>destroy</field>  
2096 - <condition>&#x3d;</condition>  
2097 - <name2/>  
2098 - </key>  
2099 - <value>  
2100 - <name>station</name>  
2101 - <rename>qdzid</rename>  
2102 - <default/>  
2103 - <type>Integer</type>  
2104 - </value>  
2105 - <value>  
2106 - <name>directions</name>  
2107 - <rename>sxx</rename>  
2108 - <default/>  
2109 - <type>Integer</type>  
2110 - </value>  
2111 - <value>  
2112 - <name>station_code</name>  
2113 - <rename>qdzcode</rename>  
2114 - <default/>  
2115 - <type>String</type>  
2116 - </value>  
2117 - <value>  
2118 - <name>station_name</name>  
2119 - <rename>qdzname_</rename>  
2120 - <default/>  
2121 - <type>String</type>  
2122 - </value>  
2123 - </lookup>  
2124 - <cluster_schema/>  
2125 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2126 - <xloc>430</xloc>  
2127 - <yloc>403</yloc>  
2128 - <draw>Y</draw>  
2129 - </GUI>  
2130 - </step>  
2131 -  
2132 - <step>  
2133 - <name>&#x67e5;&#x627e;&#x8def;&#x724c;&#x5173;&#x8054;</name>  
2134 - <type>DBLookup</type>  
2135 - <description/>  
2136 - <distribute>Y</distribute>  
2137 - <custom_distribution/>  
2138 - <copies>1</copies>  
2139 - <partitioning>  
2140 - <method>none</method>  
2141 - <schema_name/>  
2142 - </partitioning>  
2143 - <connection>bus_control_variable</connection>  
2144 - <cache>N</cache>  
2145 - <cache_load_all>N</cache_load_all>  
2146 - <cache_size>0</cache_size>  
2147 - <lookup>  
2148 - <schema/>  
2149 - <table>bsth_c_s_gbi</table>  
2150 - <orderby/>  
2151 - <fail_on_multiple>N</fail_on_multiple>  
2152 - <eat_row_on_failure>N</eat_row_on_failure>  
2153 - <key>  
2154 - <name>xlid</name>  
2155 - <field>xl</field>  
2156 - <condition>&#x3d;</condition>  
2157 - <name2/>  
2158 - </key>  
2159 - <key>  
2160 - <name>lp</name>  
2161 - <field>lp_name</field>  
2162 - <condition>&#x3d;</condition>  
2163 - <name2/>  
2164 - </key>  
2165 - <key>  
2166 - <name>iscanceled</name>  
2167 - <field>is_cancel</field>  
2168 - <condition>&#x3d;</condition>  
2169 - <name2/>  
2170 - </key>  
2171 - <value>  
2172 - <name>id</name>  
2173 - <rename>lpid</rename>  
2174 - <default/>  
2175 - <type>Integer</type>  
2176 - </value>  
2177 - </lookup>  
2178 - <cluster_schema/>  
2179 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2180 - <xloc>1013</xloc>  
2181 - <yloc>265</yloc>  
2182 - <draw>Y</draw>  
2183 - </GUI>  
2184 - </step>  
2185 -  
2186 - <step>  
2187 - <name>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ebf;&#x8def;&#x65b9;&#x5411;</name>  
2188 - <type>DBLookup</type>  
2189 - <description/>  
2190 - <distribute>Y</distribute>  
2191 - <custom_distribution/>  
2192 - <copies>1</copies>  
2193 - <partitioning>  
2194 - <method>none</method>  
2195 - <schema_name/>  
2196 - </partitioning>  
2197 - <connection>bus_control_variable</connection>  
2198 - <cache>N</cache>  
2199 - <cache_load_all>N</cache_load_all>  
2200 - <cache_size>0</cache_size>  
2201 - <lookup>  
2202 - <schema/>  
2203 - <table>bsth_c_stationroute</table>  
2204 - <orderby/>  
2205 - <fail_on_multiple>N</fail_on_multiple>  
2206 - <eat_row_on_failure>N</eat_row_on_failure>  
2207 - <key>  
2208 - <name>xlid</name>  
2209 - <field>line</field>  
2210 - <condition>&#x3d;</condition>  
2211 - <name2/>  
2212 - </key>  
2213 - <key>  
2214 - <name>startZdtype_calcu</name>  
2215 - <field>station_mark</field>  
2216 - <condition>&#x3d;</condition>  
2217 - <name2/>  
2218 - </key>  
2219 - <key>  
2220 - <name>qdzname_calcu</name>  
2221 - <field>station_name</field>  
2222 - <condition>LIKE</condition>  
2223 - <name2/>  
2224 - </key>  
2225 - <key>  
2226 - <name>destory</name>  
2227 - <field>destroy</field>  
2228 - <condition>&#x3d;</condition>  
2229 - <name2/>  
2230 - </key>  
2231 - <value>  
2232 - <name>directions</name>  
2233 - <rename>sxx</rename>  
2234 - <default/>  
2235 - <type>String</type>  
2236 - </value>  
2237 - </lookup>  
2238 - <cluster_schema/>  
2239 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2240 - <xloc>548</xloc>  
2241 - <yloc>610</yloc>  
2242 - <draw>Y</draw>  
2243 - </GUI>  
2244 - </step>  
2245 -  
2246 - <step>  
2247 - <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>  
2248 - <type>DBLookup</type>  
2249 - <description/>  
2250 - <distribute>Y</distribute>  
2251 - <custom_distribution/>  
2252 - <copies>1</copies>  
2253 - <partitioning>  
2254 - <method>none</method>  
2255 - <schema_name/>  
2256 - </partitioning>  
2257 - <connection>bus_control_variable</connection>  
2258 - <cache>Y</cache>  
2259 - <cache_load_all>Y</cache_load_all>  
2260 - <cache_size>0</cache_size>  
2261 - <lookup>  
2262 - <schema/>  
2263 - <table>bsth_c_stationroute</table>  
2264 - <orderby/>  
2265 - <fail_on_multiple>N</fail_on_multiple>  
2266 - <eat_row_on_failure>N</eat_row_on_failure>  
2267 - <key>  
2268 - <name>xlid</name>  
2269 - <field>line</field>  
2270 - <condition>&#x3d;</condition>  
2271 - <name2/>  
2272 - </key>  
2273 - <key>  
2274 - <name>endZdtype_calcu</name>  
2275 - <field>station_mark</field>  
2276 - <condition>&#x3d;</condition>  
2277 - <name2/>  
2278 - </key>  
2279 - <key>  
2280 - <name>sxx</name>  
2281 - <field>directions</field>  
2282 - <condition>&#x3d;</condition>  
2283 - <name2/>  
2284 - </key>  
2285 - <key>  
2286 - <name>destory</name>  
2287 - <field>destroy</field>  
2288 - <condition>&#x3d;</condition>  
2289 - <name2/>  
2290 - </key>  
2291 - <value>  
2292 - <name>station_name</name>  
2293 - <rename>zdzname_calcu</rename>  
2294 - <default/>  
2295 - <type>Integer</type>  
2296 - </value>  
2297 - </lookup>  
2298 - <cluster_schema/>  
2299 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2300 - <xloc>550</xloc>  
2301 - <yloc>701</yloc>  
2302 - <draw>Y</draw>  
2303 - </GUI>  
2304 - </step>  
2305 -  
2306 - <step>  
2307 - <name>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</name>  
2308 - <type>DBLookup</type>  
2309 - <description/>  
2310 - <distribute>Y</distribute>  
2311 - <custom_distribution/>  
2312 - <copies>1</copies>  
2313 - <partitioning>  
2314 - <method>none</method>  
2315 - <schema_name/>  
2316 - </partitioning>  
2317 - <connection>bus_control_variable</connection>  
2318 - <cache>N</cache>  
2319 - <cache_load_all>N</cache_load_all>  
2320 - <cache_size>0</cache_size>  
2321 - <lookup>  
2322 - <schema/>  
2323 - <table>bsth_c_stationroute</table>  
2324 - <orderby/>  
2325 - <fail_on_multiple>N</fail_on_multiple>  
2326 - <eat_row_on_failure>N</eat_row_on_failure>  
2327 - <key>  
2328 - <name>xlid</name>  
2329 - <field>line</field>  
2330 - <condition>&#x3d;</condition>  
2331 - <name2/>  
2332 - </key>  
2333 - <key>  
2334 - <name>zdzname_calcu</name>  
2335 - <field>station_name</field>  
2336 - <condition>&#x3d;</condition>  
2337 - <name2/>  
2338 - </key>  
2339 - <key>  
2340 - <name>startZdtype_calcu</name>  
2341 - <field>station_mark</field>  
2342 - <condition>&#x3d;</condition>  
2343 - <name2/>  
2344 - </key>  
2345 - <key>  
2346 - <name>destory</name>  
2347 - <field>destroy</field>  
2348 - <condition>&#x3d;</condition>  
2349 - <name2/>  
2350 - </key>  
2351 - <value>  
2352 - <name>directions</name>  
2353 - <rename>sxx2</rename>  
2354 - <default/>  
2355 - <type>Integer</type>  
2356 - </value>  
2357 - <value>  
2358 - <name>station</name>  
2359 - <rename>qdzid</rename>  
2360 - <default/>  
2361 - <type>Integer</type>  
2362 - </value>  
2363 - <value>  
2364 - <name>station_code</name>  
2365 - <rename>qdzcode</rename>  
2366 - <default/>  
2367 - <type>String</type>  
2368 - </value>  
2369 - <value>  
2370 - <name>station_name</name>  
2371 - <rename>qname</rename>  
2372 - <default/>  
2373 - <type>String</type>  
2374 - </value>  
2375 - </lookup>  
2376 - <cluster_schema/>  
2377 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2378 - <xloc>551</xloc>  
2379 - <yloc>782</yloc>  
2380 - <draw>Y</draw>  
2381 - </GUI>  
2382 - </step>  
2383 -  
2384 - <step>  
2385 - <name>&#x6b63;&#x5e38;&#x73ed;&#x6b21;_&#x5904;&#x7406;&#x6570;&#x636e;</name>  
2386 - <type>ScriptValueMod</type>  
2387 - <description/>  
2388 - <distribute>Y</distribute>  
2389 - <custom_distribution/>  
2390 - <copies>1</copies>  
2391 - <partitioning>  
2392 - <method>none</method>  
2393 - <schema_name/>  
2394 - </partitioning>  
2395 - <compatible>N</compatible>  
2396 - <optimizationLevel>9</optimizationLevel>  
2397 - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>  
2398 - <jsScript_name>Script 1</jsScript_name>  
2399 - <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>  
2400 - </jsScript> </jsScripts> <fields> <field> <name>sendZdtype</name>  
2401 - <rename>sendZdtype</rename>  
2402 - <type>String</type>  
2403 - <length>-1</length>  
2404 - <precision>-1</precision>  
2405 - <replace>N</replace>  
2406 - </field> <field> <name>endZdtype</name>  
2407 - <rename>endZdtype</rename>  
2408 - <type>String</type>  
2409 - <length>-1</length>  
2410 - <precision>-1</precision>  
2411 - <replace>N</replace>  
2412 - </field> <field> <name>destory</name>  
2413 - <rename>destory</rename>  
2414 - <type>Integer</type>  
2415 - <length>-1</length>  
2416 - <precision>-1</precision>  
2417 - <replace>N</replace>  
2418 - </field> </fields> <cluster_schema/>  
2419 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2420 - <xloc>588</xloc>  
2421 - <yloc>403</yloc>  
2422 - <draw>Y</draw>  
2423 - </GUI>  
2424 - </step>  
2425 -  
2426 - <step>  
2427 - <name>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</name>  
2428 - <type>Dummy</type>  
2429 - <description/>  
2430 - <distribute>Y</distribute>  
2431 - <custom_distribution/>  
2432 - <copies>1</copies>  
2433 - <partitioning>  
2434 - <method>none</method>  
2435 - <schema_name/>  
2436 - </partitioning>  
2437 - <cluster_schema/>  
2438 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2439 - <xloc>725</xloc>  
2440 - <yloc>404</yloc>  
2441 - <draw>Y</draw>  
2442 - </GUI>  
2443 - </step>  
2444 -  
2445 - <step>  
2446 - <name>&#x6dfb;&#x52a0;&#x53d1;&#x8f66;&#x987a;&#x5e8f;&#x53f7;</name>  
2447 - <type>GroupBy</type>  
2448 - <description/>  
2449 - <distribute>Y</distribute>  
2450 - <custom_distribution/>  
2451 - <copies>1</copies>  
2452 - <partitioning>  
2453 - <method>none</method>  
2454 - <schema_name/>  
2455 - </partitioning>  
2456 - <all_rows>Y</all_rows>  
2457 - <ignore_aggregate>N</ignore_aggregate>  
2458 - <field_ignore/>  
2459 - <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>  
2460 - <prefix>grp</prefix>  
2461 - <add_linenr>Y</add_linenr>  
2462 - <linenr_fieldname>fcno</linenr_fieldname>  
2463 - <give_back_row>N</give_back_row>  
2464 - <group>  
2465 - <field>  
2466 - <name>lp</name>  
2467 - </field>  
2468 - </group>  
2469 - <fields>  
2470 - </fields>  
2471 - <cluster_schema/>  
2472 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2473 - <xloc>442</xloc>  
2474 - <yloc>44</yloc>  
2475 - <draw>Y</draw>  
2476 - </GUI>  
2477 - </step>  
2478 -  
2479 - <step>  
2480 - <name>&#x6dfb;&#x52a0;&#x5bf9;&#x5e94;&#x73ed;&#x6b21;&#x6570;</name>  
2481 - <type>GroupBy</type>  
2482 - <description/>  
2483 - <distribute>Y</distribute>  
2484 - <custom_distribution/>  
2485 - <copies>1</copies>  
2486 - <partitioning>  
2487 - <method>none</method>  
2488 - <schema_name/>  
2489 - </partitioning>  
2490 - <all_rows>Y</all_rows>  
2491 - <ignore_aggregate>N</ignore_aggregate>  
2492 - <field_ignore/>  
2493 - <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>  
2494 - <prefix>grp</prefix>  
2495 - <add_linenr>Y</add_linenr>  
2496 - <linenr_fieldname>bcs</linenr_fieldname>  
2497 - <give_back_row>N</give_back_row>  
2498 - <group>  
2499 - </group>  
2500 - <fields>  
2501 - </fields>  
2502 - <cluster_schema/>  
2503 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2504 - <xloc>692</xloc>  
2505 - <yloc>44</yloc>  
2506 - <draw>Y</draw>  
2507 - </GUI>  
2508 - </step>  
2509 -  
2510 - <step>  
2511 - <name>&#x73ed;&#x6b21;&#x6570;&#x636e;&#x8303;&#x5f0f;&#x5316;</name>  
2512 - <type>Normaliser</type>  
2513 - <description/>  
2514 - <distribute>Y</distribute>  
2515 - <custom_distribution/>  
2516 - <copies>1</copies>  
2517 - <partitioning>  
2518 - <method>none</method>  
2519 - <schema_name/>  
2520 - </partitioning>  
2521 - <typefield>&#x7ad9;&#x70b9;&#x540d;&#x79f0;</typefield>  
2522 - <fields> </fields> <cluster_schema/>  
2523 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2524 - <xloc>248</xloc>  
2525 - <yloc>44</yloc>  
2526 - <draw>Y</draw>  
2527 - </GUI>  
2528 - </step>  
2529 -  
2530 - <step>  
2531 - <name>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178;</name>  
2532 - <type>ValueMapper</type>  
2533 - <description/>  
2534 - <distribute>Y</distribute>  
2535 - <custom_distribution/>  
2536 - <copies>1</copies>  
2537 - <partitioning>  
2538 - <method>none</method>  
2539 - <schema_name/>  
2540 - </partitioning>  
2541 - <field_to_use>bctype</field_to_use>  
2542 - <target_field>bctype_code</target_field>  
2543 - <non_match_default>&#x672a;&#x77e5;&#x7c7b;&#x578b;</non_match_default>  
2544 - <fields>  
2545 - <field>  
2546 - <source_value>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</source_value>  
2547 - <target_value>normal</target_value>  
2548 - </field>  
2549 - <field>  
2550 - <source_value>&#x51fa;&#x573a;</source_value>  
2551 - <target_value>out</target_value>  
2552 - </field>  
2553 - <field>  
2554 - <source_value>&#x8fdb;&#x573a;</source_value>  
2555 - <target_value>in</target_value>  
2556 - </field>  
2557 - <field>  
2558 - <source_value>&#x52a0;&#x6cb9;</source_value>  
2559 - <target_value>oil</target_value>  
2560 - </field>  
2561 - <field>  
2562 - <source_value>&#x4e34;&#x52a0;</source_value>  
2563 - <target_value>temp</target_value>  
2564 - </field>  
2565 - <field>  
2566 - <source_value>&#x533a;&#x95f4;</source_value>  
2567 - <target_value>region</target_value>  
2568 - </field>  
2569 - <field>  
2570 - <source_value>&#x653e;&#x7a7a;</source_value>  
2571 - <target_value>venting</target_value>  
2572 - </field>  
2573 - <field>  
2574 - <source_value>&#x653e;&#x5927;&#x7ad9;</source_value>  
2575 - <target_value>major</target_value>  
2576 - </field>  
2577 - </fields>  
2578 - <cluster_schema/>  
2579 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2580 - <xloc>149</xloc>  
2581 - <yloc>491</yloc>  
2582 - <draw>Y</draw>  
2583 - </GUI>  
2584 - </step>  
2585 -  
2586 - <step>  
2587 - <name>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 2</name>  
2588 - <type>ValueMapper</type>  
2589 - <description/>  
2590 - <distribute>Y</distribute>  
2591 - <custom_distribution/>  
2592 - <copies>1</copies>  
2593 - <partitioning>  
2594 - <method>none</method>  
2595 - <schema_name/>  
2596 - </partitioning>  
2597 - <field_to_use>bctype</field_to_use>  
2598 - <target_field>bctype_code</target_field>  
2599 - <non_match_default>&#x672a;&#x77e5;&#x7c7b;&#x578b;</non_match_default>  
2600 - <fields>  
2601 - <field>  
2602 - <source_value>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</source_value>  
2603 - <target_value>normal</target_value>  
2604 - </field>  
2605 - <field>  
2606 - <source_value>&#x51fa;&#x573a;</source_value>  
2607 - <target_value>out</target_value>  
2608 - </field>  
2609 - <field>  
2610 - <source_value>&#x8fdb;&#x573a;</source_value>  
2611 - <target_value>in</target_value>  
2612 - </field>  
2613 - <field>  
2614 - <source_value>&#x52a0;&#x6cb9;</source_value>  
2615 - <target_value>oil</target_value>  
2616 - </field>  
2617 - <field>  
2618 - <source_value>&#x4e34;&#x52a0;</source_value>  
2619 - <target_value>temp</target_value>  
2620 - </field>  
2621 - <field>  
2622 - <source_value>&#x533a;&#x95f4;</source_value>  
2623 - <target_value>region</target_value>  
2624 - </field>  
2625 - <field>  
2626 - <source_value>&#x653e;&#x7a7a;</source_value>  
2627 - <target_value>venting</target_value>  
2628 - </field>  
2629 - <field>  
2630 - <source_value>&#x653e;&#x5927;&#x7ad9;</source_value>  
2631 - <target_value>major</target_value>  
2632 - </field>  
2633 - </fields>  
2634 - <cluster_schema/>  
2635 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2636 - <xloc>333</xloc>  
2637 - <yloc>681</yloc>  
2638 - <draw>Y</draw>  
2639 - </GUI>  
2640 - </step>  
2641 -  
2642 - <step>  
2643 - <name>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 3</name>  
2644 - <type>ValueMapper</type>  
2645 - <description/>  
2646 - <distribute>Y</distribute>  
2647 - <custom_distribution/>  
2648 - <copies>1</copies>  
2649 - <partitioning>  
2650 - <method>none</method>  
2651 - <schema_name/>  
2652 - </partitioning>  
2653 - <field_to_use>bctype</field_to_use>  
2654 - <target_field>bctype_code</target_field>  
2655 - <non_match_default>&#x672a;&#x77e5;&#x7c7b;&#x578b;</non_match_default>  
2656 - <fields>  
2657 - <field>  
2658 - <source_value>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</source_value>  
2659 - <target_value>normal</target_value>  
2660 - </field>  
2661 - <field>  
2662 - <source_value>&#x51fa;&#x573a;</source_value>  
2663 - <target_value>out</target_value>  
2664 - </field>  
2665 - <field>  
2666 - <source_value>&#x8fdb;&#x573a;</source_value>  
2667 - <target_value>in</target_value>  
2668 - </field>  
2669 - <field>  
2670 - <source_value>&#x52a0;&#x6cb9;</source_value>  
2671 - <target_value>oil</target_value>  
2672 - </field>  
2673 - <field>  
2674 - <source_value>&#x4e34;&#x52a0;</source_value>  
2675 - <target_value>temp</target_value>  
2676 - </field>  
2677 - <field>  
2678 - <source_value>&#x533a;&#x95f4;</source_value>  
2679 - <target_value>region</target_value>  
2680 - </field>  
2681 - <field>  
2682 - <source_value>&#x653e;&#x7a7a;</source_value>  
2683 - <target_value>venting</target_value>  
2684 - </field>  
2685 - <field>  
2686 - <source_value>&#x653e;&#x5927;&#x7ad9;</source_value>  
2687 - <target_value>major</target_value>  
2688 - </field>  
2689 - </fields>  
2690 - <cluster_schema/>  
2691 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2692 - <xloc>551</xloc>  
2693 - <yloc>928</yloc>  
2694 - <draw>Y</draw>  
2695 - </GUI>  
2696 - </step>  
2697 -  
2698 - <step>  
2699 - <name>&#x7c7b;&#x578b;&#x4fee;&#x6b63;</name>  
2700 - <type>SelectValues</type>  
2701 - <description/>  
2702 - <distribute>Y</distribute>  
2703 - <custom_distribution/>  
2704 - <copies>1</copies>  
2705 - <partitioning>  
2706 - <method>none</method>  
2707 - <schema_name/>  
2708 - </partitioning>  
2709 - <fields> <select_unspecified>N</select_unspecified>  
2710 - <meta> <name>jhlc</name>  
2711 - <rename>jhlc</rename>  
2712 - <type>Number</type>  
2713 - <length>-2</length>  
2714 - <precision>-2</precision>  
2715 - <conversion_mask/>  
2716 - <date_format_lenient>false</date_format_lenient>  
2717 - <date_format_locale/>  
2718 - <date_format_timezone/>  
2719 - <lenient_string_to_number>false</lenient_string_to_number>  
2720 - <encoding/>  
2721 - <decimal_symbol/>  
2722 - <grouping_symbol/>  
2723 - <currency_symbol/>  
2724 - <storage_type/>  
2725 - </meta> <meta> <name>bcsj</name>  
2726 - <rename>bcsj</rename>  
2727 - <type>Integer</type>  
2728 - <length>-2</length>  
2729 - <precision>-2</precision>  
2730 - <conversion_mask/>  
2731 - <date_format_lenient>false</date_format_lenient>  
2732 - <date_format_locale/>  
2733 - <date_format_timezone/>  
2734 - <lenient_string_to_number>false</lenient_string_to_number>  
2735 - <encoding/>  
2736 - <decimal_symbol/>  
2737 - <grouping_symbol/>  
2738 - <currency_symbol/>  
2739 - <storage_type/>  
2740 - </meta> </fields> <cluster_schema/>  
2741 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2742 - <xloc>146</xloc>  
2743 - <yloc>768</yloc>  
2744 - <draw>Y</draw>  
2745 - </GUI>  
2746 - </step>  
2747 -  
2748 - <step>  
2749 - <name>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 2</name>  
2750 - <type>SelectValues</type>  
2751 - <description/>  
2752 - <distribute>Y</distribute>  
2753 - <custom_distribution/>  
2754 - <copies>1</copies>  
2755 - <partitioning>  
2756 - <method>none</method>  
2757 - <schema_name/>  
2758 - </partitioning>  
2759 - <fields> <select_unspecified>N</select_unspecified>  
2760 - <meta> <name>out_mileage</name>  
2761 - <rename>out_mileage</rename>  
2762 - <type>Number</type>  
2763 - <length>-2</length>  
2764 - <precision>-2</precision>  
2765 - <conversion_mask/>  
2766 - <date_format_lenient>false</date_format_lenient>  
2767 - <date_format_locale/>  
2768 - <date_format_timezone/>  
2769 - <lenient_string_to_number>false</lenient_string_to_number>  
2770 - <encoding/>  
2771 - <decimal_symbol/>  
2772 - <grouping_symbol/>  
2773 - <currency_symbol/>  
2774 - <storage_type/>  
2775 - </meta> <meta> <name>out_time</name>  
2776 - <rename>out_time</rename>  
2777 - <type>Integer</type>  
2778 - <length>-2</length>  
2779 - <precision>-2</precision>  
2780 - <conversion_mask/>  
2781 - <date_format_lenient>false</date_format_lenient>  
2782 - <date_format_locale/>  
2783 - <date_format_timezone/>  
2784 - <lenient_string_to_number>false</lenient_string_to_number>  
2785 - <encoding/>  
2786 - <decimal_symbol/>  
2787 - <grouping_symbol/>  
2788 - <currency_symbol/>  
2789 - <storage_type/>  
2790 - </meta> <meta> <name>sxx</name>  
2791 - <rename>sxx</rename>  
2792 - <type>Integer</type>  
2793 - <length>-2</length>  
2794 - <precision>-2</precision>  
2795 - <conversion_mask/>  
2796 - <date_format_lenient>false</date_format_lenient>  
2797 - <date_format_locale/>  
2798 - <date_format_timezone/>  
2799 - <lenient_string_to_number>false</lenient_string_to_number>  
2800 - <encoding/>  
2801 - <decimal_symbol/>  
2802 - <grouping_symbol/>  
2803 - <currency_symbol/>  
2804 - <storage_type/>  
2805 - </meta> </fields> <cluster_schema/>  
2806 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2807 - <xloc>338</xloc>  
2808 - <yloc>1008</yloc>  
2809 - <draw>Y</draw>  
2810 - </GUI>  
2811 - </step>  
2812 -  
2813 - <step>  
2814 - <name>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 3</name>  
2815 - <type>SelectValues</type>  
2816 - <description/>  
2817 - <distribute>Y</distribute>  
2818 - <custom_distribution/>  
2819 - <copies>1</copies>  
2820 - <partitioning>  
2821 - <method>none</method>  
2822 - <schema_name/>  
2823 - </partitioning>  
2824 - <fields> <select_unspecified>N</select_unspecified>  
2825 - <meta> <name>parade_mileage</name>  
2826 - <rename>parade_mileage</rename>  
2827 - <type>Number</type>  
2828 - <length>-2</length>  
2829 - <precision>-2</precision>  
2830 - <conversion_mask/>  
2831 - <date_format_lenient>false</date_format_lenient>  
2832 - <date_format_locale/>  
2833 - <date_format_timezone/>  
2834 - <lenient_string_to_number>false</lenient_string_to_number>  
2835 - <encoding/>  
2836 - <decimal_symbol/>  
2837 - <grouping_symbol/>  
2838 - <currency_symbol/>  
2839 - <storage_type/>  
2840 - </meta> <meta> <name>parade_time</name>  
2841 - <rename>parade_time</rename>  
2842 - <type>Integer</type>  
2843 - <length>-2</length>  
2844 - <precision>-2</precision>  
2845 - <conversion_mask/>  
2846 - <date_format_lenient>false</date_format_lenient>  
2847 - <date_format_locale/>  
2848 - <date_format_timezone/>  
2849 - <lenient_string_to_number>false</lenient_string_to_number>  
2850 - <encoding/>  
2851 - <decimal_symbol/>  
2852 - <grouping_symbol/>  
2853 - <currency_symbol/>  
2854 - <storage_type/>  
2855 - </meta> <meta> <name>sxx2</name>  
2856 - <rename>sxx2</rename>  
2857 - <type>Integer</type>  
2858 - <length>-2</length>  
2859 - <precision>-2</precision>  
2860 - <conversion_mask/>  
2861 - <date_format_lenient>false</date_format_lenient>  
2862 - <date_format_locale/>  
2863 - <date_format_timezone/>  
2864 - <lenient_string_to_number>false</lenient_string_to_number>  
2865 - <encoding/>  
2866 - <decimal_symbol/>  
2867 - <grouping_symbol/>  
2868 - <currency_symbol/>  
2869 - <storage_type/>  
2870 - </meta> </fields> <cluster_schema/>  
2871 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2872 - <xloc>847</xloc>  
2873 - <yloc>1003</yloc>  
2874 - <draw>Y</draw>  
2875 - </GUI>  
2876 - </step>  
2877 -  
2878 - <step>  
2879 - <name>&#x8ba1;&#x7b97;&#x73ed;&#x6b21;&#x7c7b;&#x578b;</name>  
2880 - <type>ValueMapper</type>  
2881 - <description/>  
2882 - <distribute>Y</distribute>  
2883 - <custom_distribution/>  
2884 - <copies>1</copies>  
2885 - <partitioning>  
2886 - <method>none</method>  
2887 - <schema_name/>  
2888 - </partitioning>  
2889 - <field_to_use>qdzname</field_to_use>  
2890 - <target_field>bctype</target_field>  
2891 - <non_match_default>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</non_match_default>  
2892 - <fields>  
2893 - <field>  
2894 - <source_value>&#x51fa;&#x573a;</source_value>  
2895 - <target_value>&#x51fa;&#x573a;</target_value>  
2896 - </field>  
2897 - <field>  
2898 - <source_value>&#x8fdb;&#x573a;</source_value>  
2899 - <target_value>&#x8fdb;&#x573a;</target_value>  
2900 - </field>  
2901 - </fields>  
2902 - <cluster_schema/>  
2903 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2904 - <xloc>1014</xloc>  
2905 - <yloc>401</yloc>  
2906 - <draw>Y</draw>  
2907 - </GUI>  
2908 - </step>  
2909 -  
2910 - <step>  
2911 - <name>&#x8bb0;&#x5f55;&#x5173;&#x8054; &#x28;&#x7b1b;&#x5361;&#x5c14;&#x8f93;&#x51fa;&#x29;</name>  
2912 - <type>JoinRows</type>  
2913 - <description/>  
2914 - <distribute>Y</distribute>  
2915 - <custom_distribution/>  
2916 - <copies>1</copies>  
2917 - <partitioning>  
2918 - <method>none</method>  
2919 - <schema_name/>  
2920 - </partitioning>  
2921 - <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>  
2922 - <prefix>out</prefix>  
2923 - <cache_size>500</cache_size>  
2924 - <main/>  
2925 - <compare>  
2926 -<condition>  
2927 - <negated>N</negated>  
2928 - <leftvalue/>  
2929 - <function>&#x3d;</function>  
2930 - <rightvalue/>  
2931 - </condition>  
2932 - </compare>  
2933 - <cluster_schema/>  
2934 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2935 - <xloc>310</xloc>  
2936 - <yloc>133</yloc>  
2937 - <draw>Y</draw>  
2938 - </GUI>  
2939 - </step>  
2940 -  
2941 - <step>  
2942 - <name>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;&#xff08;&#x53d1;&#x8f66;&#x65f6;&#x95f4;&#x4e3a;&#x7a7a;&#xff09;</name>  
2943 - <type>FilterRows</type>  
2944 - <description/>  
2945 - <distribute>Y</distribute>  
2946 - <custom_distribution/>  
2947 - <copies>1</copies>  
2948 - <partitioning>  
2949 - <method>none</method>  
2950 - <schema_name/>  
2951 - </partitioning>  
2952 -<send_true_to/>  
2953 -<send_false_to/>  
2954 - <compare>  
2955 -<condition>  
2956 - <negated>N</negated>  
2957 - <leftvalue>sendtime</leftvalue>  
2958 - <function>IS NOT NULL</function>  
2959 - <rightvalue/>  
2960 - </condition>  
2961 - </compare>  
2962 - <cluster_schema/>  
2963 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2964 - <xloc>571</xloc>  
2965 - <yloc>44</yloc>  
2966 - <draw>Y</draw>  
2967 - </GUI>  
2968 - </step>  
2969 -  
2970 - <step>  
2971 - <name>&#x8fdb;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x8d77;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</name>  
2972 - <type>ScriptValueMod</type>  
2973 - <description/>  
2974 - <distribute>Y</distribute>  
2975 - <custom_distribution/>  
2976 - <copies>1</copies>  
2977 - <partitioning>  
2978 - <method>none</method>  
2979 - <schema_name/>  
2980 - </partitioning>  
2981 - <compatible>N</compatible>  
2982 - <optimizationLevel>9</optimizationLevel>  
2983 - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>  
2984 - <jsScript_name>Script 1</jsScript_name>  
2985 - <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>  
2986 - </jsScript> </jsScripts> <fields> <field> <name>qdzname_calcu</name>  
2987 - <rename>qdzname_calcu</rename>  
2988 - <type>String</type>  
2989 - <length>-1</length>  
2990 - <precision>-1</precision>  
2991 - <replace>N</replace>  
2992 - </field> <field> <name>startZdtype_calcu</name>  
2993 - <rename>startZdtype_calcu</rename>  
2994 - <type>String</type>  
2995 - <length>-1</length>  
2996 - <precision>-1</precision>  
2997 - <replace>N</replace>  
2998 - </field> <field> <name>endZdtype_calcu</name>  
2999 - <rename>endZdtype_calcu</rename>  
3000 - <type>String</type>  
3001 - <length>-1</length>  
3002 - <precision>-1</precision>  
3003 - <replace>N</replace>  
3004 - </field> <field> <name>destory</name>  
3005 - <rename>destory</rename>  
3006 - <type>Integer</type>  
3007 - <length>-1</length>  
3008 - <precision>-1</precision>  
3009 - <replace>N</replace>  
3010 - </field> </fields> <cluster_schema/>  
3011 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
3012 - <xloc>754</xloc>  
3013 - <yloc>610</yloc>  
3014 - <draw>Y</draw>  
3015 - </GUI>  
3016 - </step>  
3017 -  
3018 - <step>  
3019 - <name>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</name>  
3020 - <type>Dummy</type>  
3021 - <description/>  
3022 - <distribute>Y</distribute>  
3023 - <custom_distribution/>  
3024 - <copies>1</copies>  
3025 - <partitioning>  
3026 - <method>none</method>  
3027 - <schema_name/>  
3028 - </partitioning>  
3029 - <cluster_schema/>  
3030 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
3031 - <xloc>997</xloc>  
3032 - <yloc>606</yloc>  
3033 - <draw>Y</draw>  
3034 - </GUI>  
3035 - </step>  
3036 -  
3037 - <step_error_handling>  
3038 - <error>  
3039 - <source_step>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail</source_step>  
3040 - <target_step/>  
3041 - <is_enabled>Y</is_enabled>  
3042 - <nr_valuename>c1</nr_valuename>  
3043 - <descriptions_valuename>c2</descriptions_valuename>  
3044 - <fields_valuename>c3</fields_valuename>  
3045 - <codes_valuename>c4</codes_valuename>  
3046 - <max_errors/>  
3047 - <max_pct_errors/>  
3048 - <min_pct_rows/>  
3049 - </error>  
3050 - </step_error_handling>  
3051 - <slave-step-copy-partition-distribution>  
3052 -</slave-step-copy-partition-distribution>  
3053 - <slave_transformation>N</slave_transformation>  
3054 -  
3055 -</transformation> 1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<transformation>
  3 + <info>
  4 + <name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x5bfc;&#x5165;</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>120</xloc>
  143 + <yloc>1016</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>xlab_mysql_youle</name>
  291 + <server>101.231.124.8</server>
  292 + <type>MYSQL</type>
  293 + <access>Native</access>
  294 + <database>xlab_youle</database>
  295 + <port>45687</port>
  296 + <username>xlab-youle</username>
  297 + <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password>
  298 + <servername/>
  299 + <data_tablespace/>
  300 + <index_tablespace/>
  301 + <attributes>
  302 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  303 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  304 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  305 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  306 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  307 + <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute>
  308 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  309 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  310 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  311 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  312 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  313 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  314 + </attributes>
  315 + </connection>
  316 + <connection>
  317 + <name>xlab_mysql_youle&#xff08;&#x672c;&#x673a;&#xff09;</name>
  318 + <server>localhost</server>
  319 + <type>MYSQL</type>
  320 + <access>Native</access>
  321 + <database>xlab_youle</database>
  322 + <port>3306</port>
  323 + <username>root</username>
  324 + <password>Encrypted </password>
  325 + <servername/>
  326 + <data_tablespace/>
  327 + <index_tablespace/>
  328 + <attributes>
  329 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  330 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  331 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  332 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  333 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  334 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  335 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  336 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  337 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  338 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  339 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  340 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  341 + </attributes>
  342 + </connection>
  343 + <connection>
  344 + <name>xlab_youle</name>
  345 + <server/>
  346 + <type>MYSQL</type>
  347 + <access>JNDI</access>
  348 + <database>xlab_youle</database>
  349 + <port>1521</port>
  350 + <username/>
  351 + <password>Encrypted </password>
  352 + <servername/>
  353 + <data_tablespace/>
  354 + <index_tablespace/>
  355 + <attributes>
  356 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  357 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  358 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  359 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  360 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  361 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  362 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  363 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  364 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  365 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  366 + </attributes>
  367 + </connection>
  368 + <order>
  369 + <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>
  370 + <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>
  371 + <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>
  372 + <hop> <from>&#x6dfb;&#x52a0;&#x5bf9;&#x5e94;&#x73ed;&#x6b21;&#x6570;</from><to>&#x5904;&#x7406;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
  373 + <hop> <from>&#x5904;&#x7406;&#x6570;&#x636e;</from><to>&#x5206;&#x7ec4;&#x5404;&#x4e2a;&#x8def;&#x724c;&#x7684;&#x7ad9;</to><enabled>Y</enabled> </hop>
  374 + <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>
  375 + <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>
  376 + <hop> <from>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178;</from><to>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178;</to><enabled>Y</enabled> </hop>
  377 + <hop> <from>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 2</from><to>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 2</to><enabled>Y</enabled> </hop>
  378 + <hop> <from>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 3</from><to>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 3</to><enabled>Y</enabled> </hop>
  379 + <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>
  380 + <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>
  381 + <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>
  382 + <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>
  383 + <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>
  384 + <hop> <from>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x6240;&#x6709;&#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>
  385 + <hop> <from>&#x67e5;&#x627e;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;</from><to>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178;</to><enabled>Y</enabled> </hop>
  386 + <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>
  387 + <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>
  388 + <hop> <from>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</from><to>&#x6b63;&#x5e38;&#x73ed;&#x6b21;_&#x5904;&#x7406;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
  389 + <hop> <from>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178;</from><to>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x6240;&#x6709;&#x4e0a;&#x4e0b;&#x884c;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>
  390 + <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>
  391 + <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>
  392 + <hop> <from>&#x67e5;&#x627e;&#x8def;&#x724c;&#x5173;&#x8054;</from><to>&#x8ba1;&#x7b97;&#x73ed;&#x6b21;&#x7c7b;&#x578b;</to><enabled>Y</enabled> </hop>
  393 + <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>
  394 + <hop> <from>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</from><to>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;1</to><enabled>Y</enabled> </hop>
  395 + <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>
  396 + <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>
  397 + <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>
  398 + <hop> <from>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</from><to>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;2</to><enabled>Y</enabled> </hop>
  399 + <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>
  400 + <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>
  401 + <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>
  402 + <hop> <from>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</from><to>&#x6dfb;&#x52a0;&#x53d1;&#x8f66;&#x987a;&#x5e8f;&#x53f7;</to><enabled>Y</enabled> </hop>
  403 + <hop> <from>&#x5206;&#x7ec4;&#x5404;&#x4e2a;&#x8def;&#x724c;&#x7684;&#x7ad9;</from><to>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x5173;&#x8054;</to><enabled>Y</enabled> </hop>
  404 + <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>
  405 + <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>
  406 + <hop> <from>&#x8bb0;&#x5f55;&#x5173;&#x8054; &#x28;&#x7b1b;&#x5361;&#x5c14;&#x8f93;&#x51fa;&#x29;</from><to>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</to><enabled>Y</enabled> </hop>
  407 + <hop> <from>&#x7c7b;&#x578b;&#x4fee;&#x6b63;</from><to>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail</to><enabled>Y</enabled> </hop>
  408 + <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>
  409 + <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>
  410 + <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>
  411 + <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>
  412 + <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>
  413 + <hop> <from>&#x4e0a;&#x4e0b;&#x884c;NULL&#x5224;&#x5b9a;</from><to>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 2</to><enabled>Y</enabled> </hop>
  414 + <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>
  415 + <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>
  416 + <hop> <from>&#x4e0a;&#x4e0b;&#x884c;&#x5224;&#x5b9a; 2</from><to>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 3</to><enabled>Y</enabled> </hop>
  417 + <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>
  418 + </order>
  419 + <step>
  420 + <name>&#x4e0a;&#x4e0b;&#x884c;NULL&#x5224;&#x5b9a;</name>
  421 + <type>IfNull</type>
  422 + <description/>
  423 + <distribute>Y</distribute>
  424 + <custom_distribution/>
  425 + <copies>1</copies>
  426 + <partitioning>
  427 + <method>none</method>
  428 + <schema_name/>
  429 + </partitioning>
  430 + <replaceAllByValue/>
  431 + <replaceAllMask/>
  432 + <selectFields>Y</selectFields>
  433 + <selectValuesType>N</selectValuesType>
  434 + <setEmptyStringAll>N</setEmptyStringAll>
  435 + <valuetypes>
  436 + </valuetypes>
  437 + <fields>
  438 + <field>
  439 + <name>sxx</name>
  440 + <value>0</value>
  441 + <mask/>
  442 + <set_empty_string>N</set_empty_string>
  443 + </field>
  444 + </fields>
  445 + <cluster_schema/>
  446 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  447 + <xloc>230</xloc>
  448 + <yloc>946</yloc>
  449 + <draw>Y</draw>
  450 + </GUI>
  451 + </step>
  452 +
  453 + <step>
  454 + <name>&#x4e0a;&#x4e0b;&#x884c;&#x5224;&#x5b9a; 2</name>
  455 + <type>IfNull</type>
  456 + <description/>
  457 + <distribute>Y</distribute>
  458 + <custom_distribution/>
  459 + <copies>1</copies>
  460 + <partitioning>
  461 + <method>none</method>
  462 + <schema_name/>
  463 + </partitioning>
  464 + <replaceAllByValue/>
  465 + <replaceAllMask/>
  466 + <selectFields>Y</selectFields>
  467 + <selectValuesType>N</selectValuesType>
  468 + <setEmptyStringAll>N</setEmptyStringAll>
  469 + <valuetypes>
  470 + </valuetypes>
  471 + <fields>
  472 + <field>
  473 + <name>sxx2</name>
  474 + <value>0</value>
  475 + <mask/>
  476 + <set_empty_string>N</set_empty_string>
  477 + </field>
  478 + </fields>
  479 + <cluster_schema/>
  480 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  481 + <xloc>804</xloc>
  482 + <yloc>1081</yloc>
  483 + <draw>Y</draw>
  484 + </GUI>
  485 + </step>
  486 +
  487 + <step>
  488 + <name>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178;</name>
  489 + <type>ValueMapper</type>
  490 + <description/>
  491 + <distribute>Y</distribute>
  492 + <custom_distribution/>
  493 + <copies>1</copies>
  494 + <partitioning>
  495 + <method>none</method>
  496 + <schema_name/>
  497 + </partitioning>
  498 + <field_to_use>sxx</field_to_use>
  499 + <target_field>sxx_desc</target_field>
  500 + <non_match_default/>
  501 + <fields>
  502 + <field>
  503 + <source_value>0</source_value>
  504 + <target_value>&#x4e0a;&#x884c;</target_value>
  505 + </field>
  506 + <field>
  507 + <source_value>1</source_value>
  508 + <target_value>&#x4e0b;&#x884c;</target_value>
  509 + </field>
  510 + </fields>
  511 + <cluster_schema/>
  512 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  513 + <xloc>147</xloc>
  514 + <yloc>403</yloc>
  515 + <draw>Y</draw>
  516 + </GUI>
  517 + </step>
  518 +
  519 + <step>
  520 + <name>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 2</name>
  521 + <type>ValueMapper</type>
  522 + <description/>
  523 + <distribute>Y</distribute>
  524 + <custom_distribution/>
  525 + <copies>1</copies>
  526 + <partitioning>
  527 + <method>none</method>
  528 + <schema_name/>
  529 + </partitioning>
  530 + <field_to_use>sxx</field_to_use>
  531 + <target_field>sxx_desc</target_field>
  532 + <non_match_default/>
  533 + <fields>
  534 + <field>
  535 + <source_value>0</source_value>
  536 + <target_value>&#x4e0a;&#x884c;</target_value>
  537 + </field>
  538 + <field>
  539 + <source_value>1</source_value>
  540 + <target_value>&#x4e0b;&#x884c;</target_value>
  541 + </field>
  542 + </fields>
  543 + <cluster_schema/>
  544 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  545 + <xloc>331</xloc>
  546 + <yloc>598</yloc>
  547 + <draw>Y</draw>
  548 + </GUI>
  549 + </step>
  550 +
  551 + <step>
  552 + <name>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 3</name>
  553 + <type>ValueMapper</type>
  554 + <description/>
  555 + <distribute>Y</distribute>
  556 + <custom_distribution/>
  557 + <copies>1</copies>
  558 + <partitioning>
  559 + <method>none</method>
  560 + <schema_name/>
  561 + </partitioning>
  562 + <field_to_use>sxx</field_to_use>
  563 + <target_field>sxx_desc</target_field>
  564 + <non_match_default/>
  565 + <fields>
  566 + <field>
  567 + <source_value>0</source_value>
  568 + <target_value>&#x4e0a;&#x884c;</target_value>
  569 + </field>
  570 + <field>
  571 + <source_value>1</source_value>
  572 + <target_value>&#x4e0b;&#x884c;</target_value>
  573 + </field>
  574 + </fields>
  575 + <cluster_schema/>
  576 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  577 + <xloc>553</xloc>
  578 + <yloc>859</yloc>
  579 + <draw>Y</draw>
  580 + </GUI>
  581 + </step>
  582 +
  583 + <step>
  584 + <name>&#x51fa;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x7ec8;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</name>
  585 + <type>ScriptValueMod</type>
  586 + <description/>
  587 + <distribute>Y</distribute>
  588 + <custom_distribution/>
  589 + <copies>1</copies>
  590 + <partitioning>
  591 + <method>none</method>
  592 + <schema_name/>
  593 + </partitioning>
  594 + <compatible>N</compatible>
  595 + <optimizationLevel>9</optimizationLevel>
  596 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  597 + <jsScript_name>Script 1</jsScript_name>
  598 + <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;E&#x27;&#x3b;&#xa;&#xa;var destory &#x3d; 0&#x3b; &#x2f;&#x2f; &#x672a;&#x64a4;&#x9500;flag</jsScript_script>
  599 + </jsScript> </jsScripts> <fields> <field> <name>zdzname</name>
  600 + <rename>zdzname</rename>
  601 + <type>String</type>
  602 + <length>-1</length>
  603 + <precision>-1</precision>
  604 + <replace>N</replace>
  605 + </field> <field> <name>endZdtype</name>
  606 + <rename>endZdtype</rename>
  607 + <type>String</type>
  608 + <length>-1</length>
  609 + <precision>-1</precision>
  610 + <replace>N</replace>
  611 + </field> <field> <name>destory</name>
  612 + <rename>destory</rename>
  613 + <type>Integer</type>
  614 + <length>-1</length>
  615 + <precision>-1</precision>
  616 + <replace>N</replace>
  617 + </field> </fields> <cluster_schema/>
  618 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  619 + <xloc>575</xloc>
  620 + <yloc>502</yloc>
  621 + <draw>Y</draw>
  622 + </GUI>
  623 + </step>
  624 +
  625 + <step>
  626 + <name>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</name>
  627 + <type>Dummy</type>
  628 + <description/>
  629 + <distribute>Y</distribute>
  630 + <custom_distribution/>
  631 + <copies>1</copies>
  632 + <partitioning>
  633 + <method>none</method>
  634 + <schema_name/>
  635 + </partitioning>
  636 + <cluster_schema/>
  637 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  638 + <xloc>869</xloc>
  639 + <yloc>504</yloc>
  640 + <draw>Y</draw>
  641 + </GUI>
  642 + </step>
  643 +
  644 + <step>
  645 + <name>&#x5206;&#x7ec4;&#x5404;&#x4e2a;&#x8def;&#x724c;&#x7684;&#x7ad9;</name>
  646 + <type>GroupBy</type>
  647 + <description/>
  648 + <distribute>Y</distribute>
  649 + <custom_distribution/>
  650 + <copies>1</copies>
  651 + <partitioning>
  652 + <method>none</method>
  653 + <schema_name/>
  654 + </partitioning>
  655 + <all_rows>Y</all_rows>
  656 + <ignore_aggregate>N</ignore_aggregate>
  657 + <field_ignore/>
  658 + <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
  659 + <prefix>grp</prefix>
  660 + <add_linenr>Y</add_linenr>
  661 + <linenr_fieldname>gno</linenr_fieldname>
  662 + <give_back_row>N</give_back_row>
  663 + <group>
  664 + <field>
  665 + <name>lp</name>
  666 + </field>
  667 + </group>
  668 + <fields>
  669 + <field>
  670 + <aggregate>qdzgroups</aggregate>
  671 + <subject>qdzname</subject>
  672 + <type>CONCAT_STRING</type>
  673 + <valuefield>,</valuefield>
  674 + </field>
  675 + </fields>
  676 + <cluster_schema/>
  677 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  678 + <xloc>892</xloc>
  679 + <yloc>44</yloc>
  680 + <draw>Y</draw>
  681 + </GUI>
  682 + </step>
  683 +
  684 + <step>
  685 + <name>&#x5339;&#x914d;&#x4e0a;&#x4e0b;&#x884c;&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
  686 + <type>ScriptValueMod</type>
  687 + <description/>
  688 + <distribute>Y</distribute>
  689 + <custom_distribution/>
  690 + <copies>1</copies>
  691 + <partitioning>
  692 + <method>none</method>
  693 + <schema_name/>
  694 + </partitioning>
  695 + <compatible>N</compatible>
  696 + <optimizationLevel>9</optimizationLevel>
  697 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  698 + <jsScript_name>Script 1</jsScript_name>
  699 + <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;&#xa;&#xa;</jsScript_script>
  700 + </jsScript> </jsScripts> <fields> <field> <name>jhlc</name>
  701 + <rename>jhlc</rename>
  702 + <type>String</type>
  703 + <length>-1</length>
  704 + <precision>-1</precision>
  705 + <replace>N</replace>
  706 + </field> <field> <name>bcsj</name>
  707 + <rename>bcsj</rename>
  708 + <type>String</type>
  709 + <length>-1</length>
  710 + <precision>-1</precision>
  711 + <replace>N</replace>
  712 + </field> </fields> <cluster_schema/>
  713 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  714 + <xloc>148</xloc>
  715 + <yloc>674</yloc>
  716 + <draw>Y</draw>
  717 + </GUI>
  718 + </step>
  719 +
  720 + <step>
  721 + <name>&#x5339;&#x914d;&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
  722 + <type>ScriptValueMod</type>
  723 + <description/>
  724 + <distribute>Y</distribute>
  725 + <custom_distribution/>
  726 + <copies>1</copies>
  727 + <partitioning>
  728 + <method>none</method>
  729 + <schema_name/>
  730 + </partitioning>
  731 + <compatible>N</compatible>
  732 + <optimizationLevel>9</optimizationLevel>
  733 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  734 + <jsScript_name>Script 1</jsScript_name>
  735 + <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>
  736 + </jsScript> </jsScripts> <fields> <field> <name>out_mileage</name>
  737 + <rename>out_mileage</rename>
  738 + <type>String</type>
  739 + <length>-1</length>
  740 + <precision>-1</precision>
  741 + <replace>N</replace>
  742 + </field> <field> <name>out_time</name>
  743 + <rename>out_time</rename>
  744 + <type>String</type>
  745 + <length>-1</length>
  746 + <precision>-1</precision>
  747 + <replace>N</replace>
  748 + </field> </fields> <cluster_schema/>
  749 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  750 + <xloc>336</xloc>
  751 + <yloc>862</yloc>
  752 + <draw>Y</draw>
  753 + </GUI>
  754 + </step>
  755 +
  756 + <step>
  757 + <name>&#x5339;&#x914d;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
  758 + <type>ScriptValueMod</type>
  759 + <description/>
  760 + <distribute>Y</distribute>
  761 + <custom_distribution/>
  762 + <copies>1</copies>
  763 + <partitioning>
  764 + <method>none</method>
  765 + <schema_name/>
  766 + </partitioning>
  767 + <compatible>N</compatible>
  768 + <optimizationLevel>9</optimizationLevel>
  769 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  770 + <jsScript_name>Script 1</jsScript_name>
  771 + <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>
  772 + </jsScript> </jsScripts> <fields> <field> <name>parade_mileage</name>
  773 + <rename>parade_mileage</rename>
  774 + <type>String</type>
  775 + <length>-1</length>
  776 + <precision>-1</precision>
  777 + <replace>N</replace>
  778 + </field> <field> <name>parade_time</name>
  779 + <rename>parade_time</rename>
  780 + <type>String</type>
  781 + <length>-1</length>
  782 + <precision>-1</precision>
  783 + <replace>N</replace>
  784 + </field> </fields> <cluster_schema/>
  785 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  786 + <xloc>726</xloc>
  787 + <yloc>1005</yloc>
  788 + <draw>Y</draw>
  789 + </GUI>
  790 + </step>
  791 +
  792 + <step>
  793 + <name>&#x589e;&#x52a0;&#x65f6;&#x523b;&#x8868;&#x540d;&#x5b57;&#xff0c;&#x7ebf;&#x8def;&#x540d;&#x5b57;&#xff0c;&#x505c;&#x8f66;&#x573a;&#x540d;&#x5b57;</name>
  794 + <type>DataGrid</type>
  795 + <description/>
  796 + <distribute>Y</distribute>
  797 + <custom_distribution/>
  798 + <copies>1</copies>
  799 + <partitioning>
  800 + <method>none</method>
  801 + <schema_name/>
  802 + </partitioning>
  803 + <fields>
  804 + </fields>
  805 + <data>
  806 + <line> </line>
  807 + </data>
  808 + <cluster_schema/>
  809 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  810 + <xloc>110</xloc>
  811 + <yloc>133</yloc>
  812 + <draw>Y</draw>
  813 + </GUI>
  814 + </step>
  815 +
  816 + <step>
  817 + <name>&#x5904;&#x7406;&#x6570;&#x636e;</name>
  818 + <type>ScriptValueMod</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 + <compatible>N</compatible>
  828 + <optimizationLevel>9</optimizationLevel>
  829 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  830 + <jsScript_name>Script 1</jsScript_name>
  831 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;&#x2f;&#x2f; &#x4f7f;&#x7528;&#x6b63;&#x5219;&#x8868;&#x8fbe;&#x5f0f;&#x53bb;&#x9664;&#x7ad9;&#x70b9;&#x540d;&#x79f0;&#x53f3;&#x4fa7;&#x591a;&#x4f59;&#x7684;&#x6570;&#x5b57;&#xa;qdzname &#x3d; qdzname.replace&#x28;&#x2f;&#x28;&#x5c;d&#x2b;&#x24;&#x29;&#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>
  832 + </jsScript> </jsScripts> <fields> <field> <name>qdzname</name>
  833 + <rename>qdzname</rename>
  834 + <type>String</type>
  835 + <length>-1</length>
  836 + <precision>-1</precision>
  837 + <replace>Y</replace>
  838 + </field> <field> <name>isfb</name>
  839 + <rename>isfb</rename>
  840 + <type>Integer</type>
  841 + <length>-1</length>
  842 + <precision>-1</precision>
  843 + <replace>N</replace>
  844 + </field> <field> <name>iscanceled</name>
  845 + <rename>iscanceled</rename>
  846 + <type>Integer</type>
  847 + <length>-1</length>
  848 + <precision>-1</precision>
  849 + <replace>N</replace>
  850 + </field> <field> <name>sendtime_calcu</name>
  851 + <rename>sendtime_calcu</rename>
  852 + <type>String</type>
  853 + <length>-1</length>
  854 + <precision>-1</precision>
  855 + <replace>N</replace>
  856 + </field> <field> <name>ists</name>
  857 + <rename>ists</rename>
  858 + <type>Integer</type>
  859 + <length>-1</length>
  860 + <precision>-1</precision>
  861 + <replace>N</replace>
  862 + </field> </fields> <cluster_schema/>
  863 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  864 + <xloc>788</xloc>
  865 + <yloc>44</yloc>
  866 + <draw>Y</draw>
  867 + </GUI>
  868 + </step>
  869 +
  870 + <step>
  871 + <name>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</name>
  872 + <type>SelectValues</type>
  873 + <description/>
  874 + <distribute>Y</distribute>
  875 + <custom_distribution/>
  876 + <copies>1</copies>
  877 + <partitioning>
  878 + <method>none</method>
  879 + <schema_name/>
  880 + </partitioning>
  881 + <fields> <field> <name>&#x8def;&#x724c;</name>
  882 + <rename>lp</rename>
  883 + <length>-2</length>
  884 + <precision>-2</precision>
  885 + </field> <field> <name>&#x7ad9;&#x70b9;&#x540d;&#x79f0;</name>
  886 + <rename>qdzname</rename>
  887 + <length>-2</length>
  888 + <precision>-2</precision>
  889 + </field> <field> <name>&#x53d1;&#x8f66;&#x65f6;&#x95f4;</name>
  890 + <rename>sendtime</rename>
  891 + <length>-2</length>
  892 + <precision>-2</precision>
  893 + </field> <select_unspecified>Y</select_unspecified>
  894 + </fields> <cluster_schema/>
  895 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  896 + <xloc>444</xloc>
  897 + <yloc>131</yloc>
  898 + <draw>Y</draw>
  899 + </GUI>
  900 + </step>
  901 +
  902 + <step>
  903 + <name>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;1</name>
  904 + <type>FilterRows</type>
  905 + <description/>
  906 + <distribute>Y</distribute>
  907 + <custom_distribution/>
  908 + <copies>1</copies>
  909 + <partitioning>
  910 + <method>none</method>
  911 + <schema_name/>
  912 + </partitioning>
  913 +<send_true_to>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</send_true_to>
  914 +<send_false_to>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</send_false_to>
  915 + <compare>
  916 +<condition>
  917 + <negated>N</negated>
  918 + <leftvalue>bctype</leftvalue>
  919 + <function>&#x3d;</function>
  920 + <rightvalue/>
  921 + <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>
  922 + </compare>
  923 + <cluster_schema/>
  924 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  925 + <xloc>860</xloc>
  926 + <yloc>401</yloc>
  927 + <draw>Y</draw>
  928 + </GUI>
  929 + </step>
  930 +
  931 + <step>
  932 + <name>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</name>
  933 + <type>FilterRows</type>
  934 + <description/>
  935 + <distribute>Y</distribute>
  936 + <custom_distribution/>
  937 + <copies>1</copies>
  938 + <partitioning>
  939 + <method>none</method>
  940 + <schema_name/>
  941 + </partitioning>
  942 +<send_true_to>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</send_true_to>
  943 +<send_false_to>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</send_false_to>
  944 + <compare>
  945 +<condition>
  946 + <negated>N</negated>
  947 + <leftvalue>bctype</leftvalue>
  948 + <function>&#x3d;</function>
  949 + <rightvalue/>
  950 + <value><name>constant</name><type>String</type><text>&#x51fa;&#x573a;</text><length>-1</length><precision>-1</precision><isnull>N</isnull><mask/></value> </condition>
  951 + </compare>
  952 + <cluster_schema/>
  953 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  954 + <xloc>995</xloc>
  955 + <yloc>503</yloc>
  956 + <draw>Y</draw>
  957 + </GUI>
  958 + </step>
  959 +
  960 + <step>
  961 + <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail</name>
  962 + <type>InsertUpdate</type>
  963 + <description/>
  964 + <distribute>Y</distribute>
  965 + <custom_distribution/>
  966 + <copies>1</copies>
  967 + <partitioning>
  968 + <method>none</method>
  969 + <schema_name/>
  970 + </partitioning>
  971 + <connection>bus_control_variable</connection>
  972 + <commit>100</commit>
  973 + <update_bypassed>N</update_bypassed>
  974 + <lookup>
  975 + <schema/>
  976 + <table>bsth_c_s_ttinfo_detail</table>
  977 + <key>
  978 + <name>xlid</name>
  979 + <field>xl</field>
  980 + <condition>&#x3d;</condition>
  981 + <name2/>
  982 + </key>
  983 + <key>
  984 + <name>ttid</name>
  985 + <field>ttinfo</field>
  986 + <condition>&#x3d;</condition>
  987 + <name2/>
  988 + </key>
  989 + <key>
  990 + <name>lpid</name>
  991 + <field>lp</field>
  992 + <condition>&#x3d;</condition>
  993 + <name2/>
  994 + </key>
  995 + <key>
  996 + <name>fcno</name>
  997 + <field>fcno</field>
  998 + <condition>&#x3d;</condition>
  999 + <name2/>
  1000 + </key>
  1001 + <key>
  1002 + <name>bcs</name>
  1003 + <field>bcs</field>
  1004 + <condition>&#x3d;</condition>
  1005 + <name2/>
  1006 + </key>
  1007 + <value>
  1008 + <name>lp</name>
  1009 + <rename>lpid</rename>
  1010 + <update>Y</update>
  1011 + </value>
  1012 + <value>
  1013 + <name>bc_type</name>
  1014 + <rename>bctype_code</rename>
  1015 + <update>Y</update>
  1016 + </value>
  1017 + <value>
  1018 + <name>bcs</name>
  1019 + <rename>bcs</rename>
  1020 + <update>Y</update>
  1021 + </value>
  1022 + <value>
  1023 + <name>bcsj</name>
  1024 + <rename>bcsj</rename>
  1025 + <update>Y</update>
  1026 + </value>
  1027 + <value>
  1028 + <name>fcno</name>
  1029 + <rename>fcno</rename>
  1030 + <update>Y</update>
  1031 + </value>
  1032 + <value>
  1033 + <name>jhlc</name>
  1034 + <rename>jhlc</rename>
  1035 + <update>Y</update>
  1036 + </value>
  1037 + <value>
  1038 + <name>fcsj</name>
  1039 + <rename>sendtime_calcu</rename>
  1040 + <update>Y</update>
  1041 + </value>
  1042 + <value>
  1043 + <name>ttinfo</name>
  1044 + <rename>ttid</rename>
  1045 + <update>Y</update>
  1046 + </value>
  1047 + <value>
  1048 + <name>xl</name>
  1049 + <rename>xlid</rename>
  1050 + <update>Y</update>
  1051 + </value>
  1052 + <value>
  1053 + <name>qdz</name>
  1054 + <rename>qdzid</rename>
  1055 + <update>Y</update>
  1056 + </value>
  1057 + <value>
  1058 + <name>zdz</name>
  1059 + <rename>zdzid</rename>
  1060 + <update>Y</update>
  1061 + </value>
  1062 + <value>
  1063 + <name>xl_dir</name>
  1064 + <rename>sxx</rename>
  1065 + <update>Y</update>
  1066 + </value>
  1067 + <value>
  1068 + <name>isfb</name>
  1069 + <rename>isfb</rename>
  1070 + <update>Y</update>
  1071 + </value>
  1072 + <value>
  1073 + <name>qdz_code</name>
  1074 + <rename>qdzcode</rename>
  1075 + <update>Y</update>
  1076 + </value>
  1077 + <value>
  1078 + <name>qdz_name</name>
  1079 + <rename>qdzname_</rename>
  1080 + <update>Y</update>
  1081 + </value>
  1082 + <value>
  1083 + <name>zdz_code</name>
  1084 + <rename>zdzcode</rename>
  1085 + <update>Y</update>
  1086 + </value>
  1087 + <value>
  1088 + <name>zdz_name</name>
  1089 + <rename>zdzname</rename>
  1090 + <update>Y</update>
  1091 + </value>
  1092 + <value>
  1093 + <name>ists</name>
  1094 + <rename>ists</rename>
  1095 + <update>Y</update>
  1096 + </value>
  1097 + </lookup>
  1098 + <cluster_schema/>
  1099 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1100 + <xloc>143</xloc>
  1101 + <yloc>860</yloc>
  1102 + <draw>Y</draw>
  1103 + </GUI>
  1104 + </step>
  1105 +
  1106 + <step>
  1107 + <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail 2</name>
  1108 + <type>InsertUpdate</type>
  1109 + <description/>
  1110 + <distribute>Y</distribute>
  1111 + <custom_distribution/>
  1112 + <copies>1</copies>
  1113 + <partitioning>
  1114 + <method>none</method>
  1115 + <schema_name/>
  1116 + </partitioning>
  1117 + <connection>bus_control_variable</connection>
  1118 + <commit>100</commit>
  1119 + <update_bypassed>N</update_bypassed>
  1120 + <lookup>
  1121 + <schema/>
  1122 + <table>bsth_c_s_ttinfo_detail</table>
  1123 + <key>
  1124 + <name>xlid</name>
  1125 + <field>xl</field>
  1126 + <condition>&#x3d;</condition>
  1127 + <name2/>
  1128 + </key>
  1129 + <key>
  1130 + <name>ttid</name>
  1131 + <field>ttinfo</field>
  1132 + <condition>&#x3d;</condition>
  1133 + <name2/>
  1134 + </key>
  1135 + <key>
  1136 + <name>lpid</name>
  1137 + <field>lp</field>
  1138 + <condition>&#x3d;</condition>
  1139 + <name2/>
  1140 + </key>
  1141 + <key>
  1142 + <name>fcno</name>
  1143 + <field>fcno</field>
  1144 + <condition>&#x3d;</condition>
  1145 + <name2/>
  1146 + </key>
  1147 + <key>
  1148 + <name>bcs</name>
  1149 + <field>bcs</field>
  1150 + <condition>&#x3d;</condition>
  1151 + <name2/>
  1152 + </key>
  1153 + <value>
  1154 + <name>tcc</name>
  1155 + <rename>qdzid</rename>
  1156 + <update>Y</update>
  1157 + </value>
  1158 + <value>
  1159 + <name>zdz</name>
  1160 + <rename>zdzid</rename>
  1161 + <update>Y</update>
  1162 + </value>
  1163 + <value>
  1164 + <name>xl</name>
  1165 + <rename>xlid</rename>
  1166 + <update>Y</update>
  1167 + </value>
  1168 + <value>
  1169 + <name>ttinfo</name>
  1170 + <rename>ttid</rename>
  1171 + <update>Y</update>
  1172 + </value>
  1173 + <value>
  1174 + <name>xl_dir</name>
  1175 + <rename>sxx</rename>
  1176 + <update>Y</update>
  1177 + </value>
  1178 + <value>
  1179 + <name>lp</name>
  1180 + <rename>lpid</rename>
  1181 + <update>Y</update>
  1182 + </value>
  1183 + <value>
  1184 + <name>jhlc</name>
  1185 + <rename>out_mileage</rename>
  1186 + <update>Y</update>
  1187 + </value>
  1188 + <value>
  1189 + <name>fcsj</name>
  1190 + <rename>sendtime_calcu</rename>
  1191 + <update>Y</update>
  1192 + </value>
  1193 + <value>
  1194 + <name>bcsj</name>
  1195 + <rename>out_time</rename>
  1196 + <update>Y</update>
  1197 + </value>
  1198 + <value>
  1199 + <name>bcs</name>
  1200 + <rename>bcs</rename>
  1201 + <update>Y</update>
  1202 + </value>
  1203 + <value>
  1204 + <name>fcno</name>
  1205 + <rename>fcno</rename>
  1206 + <update>Y</update>
  1207 + </value>
  1208 + <value>
  1209 + <name>bc_type</name>
  1210 + <rename>bctype_code</rename>
  1211 + <update>Y</update>
  1212 + </value>
  1213 + <value>
  1214 + <name>isfb</name>
  1215 + <rename>isfb</rename>
  1216 + <update>Y</update>
  1217 + </value>
  1218 + <value>
  1219 + <name>qdz_code</name>
  1220 + <rename>qdzcode</rename>
  1221 + <update>Y</update>
  1222 + </value>
  1223 + <value>
  1224 + <name>qdz_name</name>
  1225 + <rename>tn</rename>
  1226 + <update>Y</update>
  1227 + </value>
  1228 + <value>
  1229 + <name>zdz_code</name>
  1230 + <rename>zdzcode</rename>
  1231 + <update>Y</update>
  1232 + </value>
  1233 + <value>
  1234 + <name>zdz_name</name>
  1235 + <rename>zdzname_</rename>
  1236 + <update>Y</update>
  1237 + </value>
  1238 + <value>
  1239 + <name>ists</name>
  1240 + <rename>ists</rename>
  1241 + <update>Y</update>
  1242 + </value>
  1243 + </lookup>
  1244 + <cluster_schema/>
  1245 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1246 + <xloc>340</xloc>
  1247 + <yloc>1087</yloc>
  1248 + <draw>Y</draw>
  1249 + </GUI>
  1250 + </step>
  1251 +
  1252 + <step>
  1253 + <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail 3</name>
  1254 + <type>InsertUpdate</type>
  1255 + <description/>
  1256 + <distribute>Y</distribute>
  1257 + <custom_distribution/>
  1258 + <copies>1</copies>
  1259 + <partitioning>
  1260 + <method>none</method>
  1261 + <schema_name/>
  1262 + </partitioning>
  1263 + <connection>bus_control_variable</connection>
  1264 + <commit>100</commit>
  1265 + <update_bypassed>N</update_bypassed>
  1266 + <lookup>
  1267 + <schema/>
  1268 + <table>bsth_c_s_ttinfo_detail</table>
  1269 + <key>
  1270 + <name>xlid</name>
  1271 + <field>xl</field>
  1272 + <condition>&#x3d;</condition>
  1273 + <name2/>
  1274 + </key>
  1275 + <key>
  1276 + <name>ttid</name>
  1277 + <field>ttinfo</field>
  1278 + <condition>&#x3d;</condition>
  1279 + <name2/>
  1280 + </key>
  1281 + <key>
  1282 + <name>lpid</name>
  1283 + <field>lp</field>
  1284 + <condition>&#x3d;</condition>
  1285 + <name2/>
  1286 + </key>
  1287 + <key>
  1288 + <name>fcno</name>
  1289 + <field>fcno</field>
  1290 + <condition>&#x3d;</condition>
  1291 + <name2/>
  1292 + </key>
  1293 + <key>
  1294 + <name>bcs</name>
  1295 + <field>bcs</field>
  1296 + <condition>&#x3d;</condition>
  1297 + <name2/>
  1298 + </key>
  1299 + <value>
  1300 + <name>fcno</name>
  1301 + <rename>fcno</rename>
  1302 + <update>Y</update>
  1303 + </value>
  1304 + <value>
  1305 + <name>bcs</name>
  1306 + <rename>bcs</rename>
  1307 + <update>Y</update>
  1308 + </value>
  1309 + <value>
  1310 + <name>xl</name>
  1311 + <rename>xlid</rename>
  1312 + <update>Y</update>
  1313 + </value>
  1314 + <value>
  1315 + <name>ttinfo</name>
  1316 + <rename>ttid</rename>
  1317 + <update>Y</update>
  1318 + </value>
  1319 + <value>
  1320 + <name>lp</name>
  1321 + <rename>lpid</rename>
  1322 + <update>Y</update>
  1323 + </value>
  1324 + <value>
  1325 + <name>bc_type</name>
  1326 + <rename>bctype_code</rename>
  1327 + <update>Y</update>
  1328 + </value>
  1329 + <value>
  1330 + <name>bcsj</name>
  1331 + <rename>parade_time</rename>
  1332 + <update>Y</update>
  1333 + </value>
  1334 + <value>
  1335 + <name>jhlc</name>
  1336 + <rename>parade_mileage</rename>
  1337 + <update>Y</update>
  1338 + </value>
  1339 + <value>
  1340 + <name>fcsj</name>
  1341 + <rename>sendtime_calcu</rename>
  1342 + <update>Y</update>
  1343 + </value>
  1344 + <value>
  1345 + <name>xl_dir</name>
  1346 + <rename>sxx2</rename>
  1347 + <update>Y</update>
  1348 + </value>
  1349 + <value>
  1350 + <name>qdz</name>
  1351 + <rename>qdzid</rename>
  1352 + <update>Y</update>
  1353 + </value>
  1354 + <value>
  1355 + <name>tcc</name>
  1356 + <rename>zdzid</rename>
  1357 + <update>Y</update>
  1358 + </value>
  1359 + <value>
  1360 + <name>isfb</name>
  1361 + <rename>isfb</rename>
  1362 + <update>Y</update>
  1363 + </value>
  1364 + <value>
  1365 + <name>qdz_code</name>
  1366 + <rename>qdzcode</rename>
  1367 + <update>Y</update>
  1368 + </value>
  1369 + <value>
  1370 + <name>qdz_name</name>
  1371 + <rename>qname</rename>
  1372 + <update>Y</update>
  1373 + </value>
  1374 + <value>
  1375 + <name>zdz_code</name>
  1376 + <rename>zdzcode</rename>
  1377 + <update>Y</update>
  1378 + </value>
  1379 + <value>
  1380 + <name>zdz_name</name>
  1381 + <rename>tn</rename>
  1382 + <update>Y</update>
  1383 + </value>
  1384 + <value>
  1385 + <name>ists</name>
  1386 + <rename>ists</rename>
  1387 + <update>Y</update>
  1388 + </value>
  1389 + </lookup>
  1390 + <cluster_schema/>
  1391 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1392 + <xloc>845</xloc>
  1393 + <yloc>899</yloc>
  1394 + <draw>Y</draw>
  1395 + </GUI>
  1396 + </step>
  1397 +
  1398 + <step>
  1399 + <name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</name>
  1400 + <type>ExcelInput</type>
  1401 + <description/>
  1402 + <distribute>N</distribute>
  1403 + <custom_distribution/>
  1404 + <copies>1</copies>
  1405 + <partitioning>
  1406 + <method>none</method>
  1407 + <schema_name/>
  1408 + </partitioning>
  1409 + <header>Y</header>
  1410 + <noempty>Y</noempty>
  1411 + <stoponempty>N</stoponempty>
  1412 + <filefield/>
  1413 + <sheetfield/>
  1414 + <sheetrownumfield/>
  1415 + <rownumfield/>
  1416 + <sheetfield/>
  1417 + <filefield/>
  1418 + <limit>0</limit>
  1419 + <encoding/>
  1420 + <add_to_result_filenames>Y</add_to_result_filenames>
  1421 + <accept_filenames>N</accept_filenames>
  1422 + <accept_field/>
  1423 + <accept_stepname/>
  1424 + <file>
  1425 + <name/>
  1426 + <filemask/>
  1427 + <exclude_filemask/>
  1428 + <file_required>N</file_required>
  1429 + <include_subfolders>N</include_subfolders>
  1430 + </file>
  1431 + <fields>
  1432 + </fields>
  1433 + <sheets>
  1434 + <sheet>
  1435 + <name/>
  1436 + <startrow>0</startrow>
  1437 + <startcol>0</startcol>
  1438 + </sheet>
  1439 + </sheets>
  1440 + <strict_types>N</strict_types>
  1441 + <error_ignored>N</error_ignored>
  1442 + <error_line_skipped>N</error_line_skipped>
  1443 + <bad_line_files_destination_directory/>
  1444 + <bad_line_files_extension>warning</bad_line_files_extension>
  1445 + <error_line_files_destination_directory/>
  1446 + <error_line_files_extension>error</error_line_files_extension>
  1447 + <line_number_files_destination_directory/>
  1448 + <line_number_files_extension>line</line_number_files_extension>
  1449 + <shortFileFieldName/>
  1450 + <pathFieldName/>
  1451 + <hiddenFieldName/>
  1452 + <lastModificationTimeFieldName/>
  1453 + <uriNameFieldName/>
  1454 + <rootUriNameFieldName/>
  1455 + <extensionFieldName/>
  1456 + <sizeFieldName/>
  1457 + <spreadsheet_type>JXL</spreadsheet_type>
  1458 + <cluster_schema/>
  1459 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1460 + <xloc>112</xloc>
  1461 + <yloc>44</yloc>
  1462 + <draw>Y</draw>
  1463 + </GUI>
  1464 + </step>
  1465 +
  1466 + <step>
  1467 + <name>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;1</name>
  1468 + <type>DBLookup</type>
  1469 + <description/>
  1470 + <distribute>Y</distribute>
  1471 + <custom_distribution/>
  1472 + <copies>1</copies>
  1473 + <partitioning>
  1474 + <method>none</method>
  1475 + <schema_name/>
  1476 + </partitioning>
  1477 + <connection>bus_control_variable</connection>
  1478 + <cache>N</cache>
  1479 + <cache_load_all>N</cache_load_all>
  1480 + <cache_size>0</cache_size>
  1481 + <lookup>
  1482 + <schema/>
  1483 + <table>bsth_c_car_park</table>
  1484 + <orderby/>
  1485 + <fail_on_multiple>N</fail_on_multiple>
  1486 + <eat_row_on_failure>N</eat_row_on_failure>
  1487 + <key>
  1488 + <name>tccname_</name>
  1489 + <field>park_name</field>
  1490 + <condition>&#x3d;</condition>
  1491 + <name2/>
  1492 + </key>
  1493 + <value>
  1494 + <name>id</name>
  1495 + <rename>qdzid</rename>
  1496 + <default/>
  1497 + <type>Integer</type>
  1498 + </value>
  1499 + <value>
  1500 + <name>park_code</name>
  1501 + <rename>qdzcode</rename>
  1502 + <default/>
  1503 + <type>String</type>
  1504 + </value>
  1505 + <value>
  1506 + <name>park_name</name>
  1507 + <rename>tn</rename>
  1508 + <default/>
  1509 + <type>String</type>
  1510 + </value>
  1511 + </lookup>
  1512 + <cluster_schema/>
  1513 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1514 + <xloc>755</xloc>
  1515 + <yloc>504</yloc>
  1516 + <draw>Y</draw>
  1517 + </GUI>
  1518 + </step>
  1519 +
  1520 + <step>
  1521 + <name>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;2</name>
  1522 + <type>DBLookup</type>
  1523 + <description/>
  1524 + <distribute>Y</distribute>
  1525 + <custom_distribution/>
  1526 + <copies>1</copies>
  1527 + <partitioning>
  1528 + <method>none</method>
  1529 + <schema_name/>
  1530 + </partitioning>
  1531 + <connection>bus_control_variable</connection>
  1532 + <cache>N</cache>
  1533 + <cache_load_all>N</cache_load_all>
  1534 + <cache_size>0</cache_size>
  1535 + <lookup>
  1536 + <schema/>
  1537 + <table>bsth_c_car_park</table>
  1538 + <orderby/>
  1539 + <fail_on_multiple>N</fail_on_multiple>
  1540 + <eat_row_on_failure>N</eat_row_on_failure>
  1541 + <key>
  1542 + <name>tccname_</name>
  1543 + <field>park_name</field>
  1544 + <condition>&#x3d;</condition>
  1545 + <name2/>
  1546 + </key>
  1547 + <value>
  1548 + <name>id</name>
  1549 + <rename>zdzid</rename>
  1550 + <default/>
  1551 + <type>Integer</type>
  1552 + </value>
  1553 + <value>
  1554 + <name>park_code</name>
  1555 + <rename>zdzcode</rename>
  1556 + <default/>
  1557 + <type>String</type>
  1558 + </value>
  1559 + <value>
  1560 + <name>park_name</name>
  1561 + <rename>tn</rename>
  1562 + <default/>
  1563 + <type>String</type>
  1564 + </value>
  1565 + </lookup>
  1566 + <cluster_schema/>
  1567 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1568 + <xloc>887</xloc>
  1569 + <yloc>608</yloc>
  1570 + <draw>Y</draw>
  1571 + </GUI>
  1572 + </step>
  1573 +
  1574 + <step>
  1575 + <name>&#x67e5;&#x627e;&#x51fa;&#x573a;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</name>
  1576 + <type>DBLookup</type>
  1577 + <description/>
  1578 + <distribute>Y</distribute>
  1579 + <custom_distribution/>
  1580 + <copies>1</copies>
  1581 + <partitioning>
  1582 + <method>none</method>
  1583 + <schema_name/>
  1584 + </partitioning>
  1585 + <connection>bus_control_variable</connection>
  1586 + <cache>N</cache>
  1587 + <cache_load_all>N</cache_load_all>
  1588 + <cache_size>0</cache_size>
  1589 + <lookup>
  1590 + <schema/>
  1591 + <table>bsth_c_stationroute</table>
  1592 + <orderby/>
  1593 + <fail_on_multiple>N</fail_on_multiple>
  1594 + <eat_row_on_failure>N</eat_row_on_failure>
  1595 + <key>
  1596 + <name>xlid</name>
  1597 + <field>line</field>
  1598 + <condition>&#x3d;</condition>
  1599 + <name2/>
  1600 + </key>
  1601 + <key>
  1602 + <name>zdzname</name>
  1603 + <field>station_name</field>
  1604 + <condition>LIKE</condition>
  1605 + <name2/>
  1606 + </key>
  1607 + <key>
  1608 + <name>endZdtype</name>
  1609 + <field>station_mark</field>
  1610 + <condition>&#x3d;</condition>
  1611 + <name2/>
  1612 + </key>
  1613 + <key>
  1614 + <name>destory</name>
  1615 + <field>destroy</field>
  1616 + <condition>&#x3d;</condition>
  1617 + <name2/>
  1618 + </key>
  1619 + <value>
  1620 + <name>station</name>
  1621 + <rename>zdzid</rename>
  1622 + <default/>
  1623 + <type>Integer</type>
  1624 + </value>
  1625 + <value>
  1626 + <name>directions</name>
  1627 + <rename>sxx</rename>
  1628 + <default/>
  1629 + <type>Integer</type>
  1630 + </value>
  1631 + <value>
  1632 + <name>station_code</name>
  1633 + <rename>zdzcode</rename>
  1634 + <default/>
  1635 + <type>String</type>
  1636 + </value>
  1637 + <value>
  1638 + <name>station_name</name>
  1639 + <rename>zdzname_</rename>
  1640 + <default/>
  1641 + <type>String</type>
  1642 + </value>
  1643 + </lookup>
  1644 + <cluster_schema/>
  1645 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1646 + <xloc>329</xloc>
  1647 + <yloc>505</yloc>
  1648 + <draw>Y</draw>
  1649 + </GUI>
  1650 + </step>
  1651 +
  1652 + <step>
  1653 + <name>&#x67e5;&#x627e;&#x65f6;&#x523b;&#x8868;&#x57fa;&#x7840;&#x4fe1;&#x606f;&#x5173;&#x8054;</name>
  1654 + <type>DBLookup</type>
  1655 + <description/>
  1656 + <distribute>Y</distribute>
  1657 + <custom_distribution/>
  1658 + <copies>1</copies>
  1659 + <partitioning>
  1660 + <method>none</method>
  1661 + <schema_name/>
  1662 + </partitioning>
  1663 + <connection>bus_control_variable</connection>
  1664 + <cache>N</cache>
  1665 + <cache_load_all>N</cache_load_all>
  1666 + <cache_size>0</cache_size>
  1667 + <lookup>
  1668 + <schema/>
  1669 + <table>bsth_c_s_ttinfo</table>
  1670 + <orderby/>
  1671 + <fail_on_multiple>N</fail_on_multiple>
  1672 + <eat_row_on_failure>N</eat_row_on_failure>
  1673 + <key>
  1674 + <name>xlid</name>
  1675 + <field>xl</field>
  1676 + <condition>&#x3d;</condition>
  1677 + <name2/>
  1678 + </key>
  1679 + <key>
  1680 + <name>ttinfoname_</name>
  1681 + <field>name</field>
  1682 + <condition>&#x3d;</condition>
  1683 + <name2/>
  1684 + </key>
  1685 + <key>
  1686 + <name>iscanceled</name>
  1687 + <field>is_cancel</field>
  1688 + <condition>&#x3d;</condition>
  1689 + <name2/>
  1690 + </key>
  1691 + <value>
  1692 + <name>id</name>
  1693 + <rename>ttid</rename>
  1694 + <default/>
  1695 + <type>Integer</type>
  1696 + </value>
  1697 + </lookup>
  1698 + <cluster_schema/>
  1699 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1700 + <xloc>1011</xloc>
  1701 + <yloc>134</yloc>
  1702 + <draw>Y</draw>
  1703 + </GUI>
  1704 + </step>
  1705 +
  1706 + <step>
  1707 + <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x5173;&#x8054;</name>
  1708 + <type>DBLookup</type>
  1709 + <description/>
  1710 + <distribute>Y</distribute>
  1711 + <custom_distribution/>
  1712 + <copies>1</copies>
  1713 + <partitioning>
  1714 + <method>none</method>
  1715 + <schema_name/>
  1716 + </partitioning>
  1717 + <connection>bus_control_variable</connection>
  1718 + <cache>N</cache>
  1719 + <cache_load_all>N</cache_load_all>
  1720 + <cache_size>0</cache_size>
  1721 + <lookup>
  1722 + <schema/>
  1723 + <table>bsth_c_line</table>
  1724 + <orderby/>
  1725 + <fail_on_multiple>N</fail_on_multiple>
  1726 + <eat_row_on_failure>N</eat_row_on_failure>
  1727 + <key>
  1728 + <name>xlname_</name>
  1729 + <field>name</field>
  1730 + <condition>&#x3d;</condition>
  1731 + <name2/>
  1732 + </key>
  1733 + <key>
  1734 + <name>iscanceled</name>
  1735 + <field>destroy</field>
  1736 + <condition>&#x3d;</condition>
  1737 + <name2/>
  1738 + </key>
  1739 + <value>
  1740 + <name>id</name>
  1741 + <rename>xlid</rename>
  1742 + <default/>
  1743 + <type>Integer</type>
  1744 + </value>
  1745 + </lookup>
  1746 + <cluster_schema/>
  1747 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1748 + <xloc>1007</xloc>
  1749 + <yloc>43</yloc>
  1750 + <draw>Y</draw>
  1751 + </GUI>
  1752 + </step>
  1753 +
  1754 + <step>
  1755 + <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x51fa;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
  1756 + <type>DBLookup</type>
  1757 + <description/>
  1758 + <distribute>Y</distribute>
  1759 + <custom_distribution/>
  1760 + <copies>1</copies>
  1761 + <partitioning>
  1762 + <method>none</method>
  1763 + <schema_name/>
  1764 + </partitioning>
  1765 + <connection>bus_control_variable</connection>
  1766 + <cache>N</cache>
  1767 + <cache_load_all>N</cache_load_all>
  1768 + <cache_size>0</cache_size>
  1769 + <lookup>
  1770 + <schema/>
  1771 + <table>bsth_c_line_information</table>
  1772 + <orderby/>
  1773 + <fail_on_multiple>N</fail_on_multiple>
  1774 + <eat_row_on_failure>N</eat_row_on_failure>
  1775 + <key>
  1776 + <name>xlid</name>
  1777 + <field>line</field>
  1778 + <condition>&#x3d;</condition>
  1779 + <name2/>
  1780 + </key>
  1781 + <value>
  1782 + <name>up_out_timer</name>
  1783 + <rename>up_out_timer</rename>
  1784 + <default/>
  1785 + <type>Number</type>
  1786 + </value>
  1787 + <value>
  1788 + <name>up_out_mileage</name>
  1789 + <rename>up_out_mileage</rename>
  1790 + <default/>
  1791 + <type>Number</type>
  1792 + </value>
  1793 + <value>
  1794 + <name>down_out_timer</name>
  1795 + <rename>down_out_timer</rename>
  1796 + <default/>
  1797 + <type>Number</type>
  1798 + </value>
  1799 + <value>
  1800 + <name>down_out_mileage</name>
  1801 + <rename>down_out_mileage</rename>
  1802 + <default/>
  1803 + <type>Number</type>
  1804 + </value>
  1805 + </lookup>
  1806 + <cluster_schema/>
  1807 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1808 + <xloc>335</xloc>
  1809 + <yloc>763</yloc>
  1810 + <draw>Y</draw>
  1811 + </GUI>
  1812 + </step>
  1813 +
  1814 + <step>
  1815 + <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x6240;&#x6709;&#x4e0a;&#x4e0b;&#x884c;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
  1816 + <type>DBLookup</type>
  1817 + <description/>
  1818 + <distribute>Y</distribute>
  1819 + <custom_distribution/>
  1820 + <copies>1</copies>
  1821 + <partitioning>
  1822 + <method>none</method>
  1823 + <schema_name/>
  1824 + </partitioning>
  1825 + <connection>bus_control_variable</connection>
  1826 + <cache>N</cache>
  1827 + <cache_load_all>N</cache_load_all>
  1828 + <cache_size>0</cache_size>
  1829 + <lookup>
  1830 + <schema/>
  1831 + <table>bsth_c_line_information</table>
  1832 + <orderby/>
  1833 + <fail_on_multiple>N</fail_on_multiple>
  1834 + <eat_row_on_failure>N</eat_row_on_failure>
  1835 + <key>
  1836 + <name>xlid</name>
  1837 + <field>line</field>
  1838 + <condition>&#x3d;</condition>
  1839 + <name2/>
  1840 + </key>
  1841 + <value>
  1842 + <name>up_mileage</name>
  1843 + <rename>up_mileage</rename>
  1844 + <default/>
  1845 + <type>Number</type>
  1846 + </value>
  1847 + <value>
  1848 + <name>down_mileage</name>
  1849 + <rename>down_mileage</rename>
  1850 + <default/>
  1851 + <type>Number</type>
  1852 + </value>
  1853 + <value>
  1854 + <name>up_travel_time</name>
  1855 + <rename>up_travel_time</rename>
  1856 + <default/>
  1857 + <type>Number</type>
  1858 + </value>
  1859 + <value>
  1860 + <name>down_travel_time</name>
  1861 + <rename>down_travel_time</rename>
  1862 + <default/>
  1863 + <type>Number</type>
  1864 + </value>
  1865 + <value>
  1866 + <name>early_start_time</name>
  1867 + <rename>early_start_time</rename>
  1868 + <default/>
  1869 + <type>String</type>
  1870 + </value>
  1871 + <value>
  1872 + <name>early_end_time</name>
  1873 + <rename>early_end_time</rename>
  1874 + <default/>
  1875 + <type>String</type>
  1876 + </value>
  1877 + <value>
  1878 + <name>early_up_time</name>
  1879 + <rename>early_up_time</rename>
  1880 + <default/>
  1881 + <type>Number</type>
  1882 + </value>
  1883 + <value>
  1884 + <name>early_down_time</name>
  1885 + <rename>early_down_time</rename>
  1886 + <default/>
  1887 + <type>Number</type>
  1888 + </value>
  1889 + <value>
  1890 + <name>late_start_time</name>
  1891 + <rename>late_start_time</rename>
  1892 + <default/>
  1893 + <type>String</type>
  1894 + </value>
  1895 + <value>
  1896 + <name>late_end_time</name>
  1897 + <rename>late_end_time</rename>
  1898 + <default/>
  1899 + <type>String</type>
  1900 + </value>
  1901 + <value>
  1902 + <name>late_up_time</name>
  1903 + <rename>late_up_time</rename>
  1904 + <default/>
  1905 + <type>Number</type>
  1906 + </value>
  1907 + <value>
  1908 + <name>late_down_time</name>
  1909 + <rename>late_down_time</rename>
  1910 + <default/>
  1911 + <type>Number</type>
  1912 + </value>
  1913 + </lookup>
  1914 + <cluster_schema/>
  1915 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1916 + <xloc>149</xloc>
  1917 + <yloc>581</yloc>
  1918 + <draw>Y</draw>
  1919 + </GUI>
  1920 + </step>
  1921 +
  1922 + <step>
  1923 + <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x8fdb;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
  1924 + <type>DBLookup</type>
  1925 + <description/>
  1926 + <distribute>Y</distribute>
  1927 + <custom_distribution/>
  1928 + <copies>1</copies>
  1929 + <partitioning>
  1930 + <method>none</method>
  1931 + <schema_name/>
  1932 + </partitioning>
  1933 + <connection>bus_control_variable</connection>
  1934 + <cache>N</cache>
  1935 + <cache_load_all>N</cache_load_all>
  1936 + <cache_size>0</cache_size>
  1937 + <lookup>
  1938 + <schema/>
  1939 + <table>bsth_c_line_information</table>
  1940 + <orderby/>
  1941 + <fail_on_multiple>N</fail_on_multiple>
  1942 + <eat_row_on_failure>N</eat_row_on_failure>
  1943 + <key>
  1944 + <name>xlid</name>
  1945 + <field>line</field>
  1946 + <condition>&#x3d;</condition>
  1947 + <name2/>
  1948 + </key>
  1949 + <value>
  1950 + <name>up_in_mileage</name>
  1951 + <rename>up_in_mileage</rename>
  1952 + <default/>
  1953 + <type>Number</type>
  1954 + </value>
  1955 + <value>
  1956 + <name>up_in_timer</name>
  1957 + <rename>up_in_timer</rename>
  1958 + <default/>
  1959 + <type>Number</type>
  1960 + </value>
  1961 + <value>
  1962 + <name>down_in_mileage</name>
  1963 + <rename>down_in_mileage</rename>
  1964 + <default/>
  1965 + <type>Number</type>
  1966 + </value>
  1967 + <value>
  1968 + <name>down_in_timer</name>
  1969 + <rename>down_in_timer</rename>
  1970 + <default/>
  1971 + <type>Number</type>
  1972 + </value>
  1973 + </lookup>
  1974 + <cluster_schema/>
  1975 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1976 + <xloc>553</xloc>
  1977 + <yloc>1004</yloc>
  1978 + <draw>Y</draw>
  1979 + </GUI>
  1980 + </step>
  1981 +
  1982 + <step>
  1983 + <name>&#x67e5;&#x627e;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;</name>
  1984 + <type>DBLookup</type>
  1985 + <description/>
  1986 + <distribute>Y</distribute>
  1987 + <custom_distribution/>
  1988 + <copies>1</copies>
  1989 + <partitioning>
  1990 + <method>none</method>
  1991 + <schema_name/>
  1992 + </partitioning>
  1993 + <connection>bus_control_variable</connection>
  1994 + <cache>N</cache>
  1995 + <cache_load_all>N</cache_load_all>
  1996 + <cache_size>0</cache_size>
  1997 + <lookup>
  1998 + <schema/>
  1999 + <table>bsth_c_stationroute</table>
  2000 + <orderby/>
  2001 + <fail_on_multiple>N</fail_on_multiple>
  2002 + <eat_row_on_failure>N</eat_row_on_failure>
  2003 + <key>
  2004 + <name>xlid</name>
  2005 + <field>line</field>
  2006 + <condition>&#x3d;</condition>
  2007 + <name2/>
  2008 + </key>
  2009 + <key>
  2010 + <name>sxx</name>
  2011 + <field>directions</field>
  2012 + <condition>&#x3d;</condition>
  2013 + <name2/>
  2014 + </key>
  2015 + <key>
  2016 + <name>endZdtype</name>
  2017 + <field>station_mark</field>
  2018 + <condition>&#x3d;</condition>
  2019 + <name2/>
  2020 + </key>
  2021 + <key>
  2022 + <name>destory</name>
  2023 + <field>destroy</field>
  2024 + <condition>&#x3d;</condition>
  2025 + <name2/>
  2026 + </key>
  2027 + <value>
  2028 + <name>station_name</name>
  2029 + <rename>zdzname</rename>
  2030 + <default/>
  2031 + <type>String</type>
  2032 + </value>
  2033 + <value>
  2034 + <name>station</name>
  2035 + <rename>zdzid</rename>
  2036 + <default/>
  2037 + <type>Integer</type>
  2038 + </value>
  2039 + <value>
  2040 + <name>station_code</name>
  2041 + <rename>zdzcode</rename>
  2042 + <default/>
  2043 + <type>String</type>
  2044 + </value>
  2045 + </lookup>
  2046 + <cluster_schema/>
  2047 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2048 + <xloc>280</xloc>
  2049 + <yloc>404</yloc>
  2050 + <draw>Y</draw>
  2051 + </GUI>
  2052 + </step>
  2053 +
  2054 + <step>
  2055 + <name>&#x67e5;&#x627e;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</name>
  2056 + <type>DBLookup</type>
  2057 + <description/>
  2058 + <distribute>Y</distribute>
  2059 + <custom_distribution/>
  2060 + <copies>1</copies>
  2061 + <partitioning>
  2062 + <method>none</method>
  2063 + <schema_name/>
  2064 + </partitioning>
  2065 + <connection>bus_control_variable</connection>
  2066 + <cache>N</cache>
  2067 + <cache_load_all>N</cache_load_all>
  2068 + <cache_size>0</cache_size>
  2069 + <lookup>
  2070 + <schema/>
  2071 + <table>bsth_c_stationroute</table>
  2072 + <orderby/>
  2073 + <fail_on_multiple>N</fail_on_multiple>
  2074 + <eat_row_on_failure>N</eat_row_on_failure>
  2075 + <key>
  2076 + <name>xlid</name>
  2077 + <field>line</field>
  2078 + <condition>&#x3d;</condition>
  2079 + <name2/>
  2080 + </key>
  2081 + <key>
  2082 + <name>qdzname</name>
  2083 + <field>station_name</field>
  2084 + <condition>LIKE</condition>
  2085 + <name2/>
  2086 + </key>
  2087 + <key>
  2088 + <name>sendZdtype</name>
  2089 + <field>station_mark</field>
  2090 + <condition>&#x3d;</condition>
  2091 + <name2/>
  2092 + </key>
  2093 + <key>
  2094 + <name>destory</name>
  2095 + <field>destroy</field>
  2096 + <condition>&#x3d;</condition>
  2097 + <name2/>
  2098 + </key>
  2099 + <value>
  2100 + <name>station</name>
  2101 + <rename>qdzid</rename>
  2102 + <default/>
  2103 + <type>Integer</type>
  2104 + </value>
  2105 + <value>
  2106 + <name>directions</name>
  2107 + <rename>sxx</rename>
  2108 + <default/>
  2109 + <type>Integer</type>
  2110 + </value>
  2111 + <value>
  2112 + <name>station_code</name>
  2113 + <rename>qdzcode</rename>
  2114 + <default/>
  2115 + <type>String</type>
  2116 + </value>
  2117 + <value>
  2118 + <name>station_name</name>
  2119 + <rename>qdzname_</rename>
  2120 + <default/>
  2121 + <type>String</type>
  2122 + </value>
  2123 + </lookup>
  2124 + <cluster_schema/>
  2125 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2126 + <xloc>430</xloc>
  2127 + <yloc>403</yloc>
  2128 + <draw>Y</draw>
  2129 + </GUI>
  2130 + </step>
  2131 +
  2132 + <step>
  2133 + <name>&#x67e5;&#x627e;&#x8def;&#x724c;&#x5173;&#x8054;</name>
  2134 + <type>DBLookup</type>
  2135 + <description/>
  2136 + <distribute>Y</distribute>
  2137 + <custom_distribution/>
  2138 + <copies>1</copies>
  2139 + <partitioning>
  2140 + <method>none</method>
  2141 + <schema_name/>
  2142 + </partitioning>
  2143 + <connection>bus_control_variable</connection>
  2144 + <cache>N</cache>
  2145 + <cache_load_all>N</cache_load_all>
  2146 + <cache_size>0</cache_size>
  2147 + <lookup>
  2148 + <schema/>
  2149 + <table>bsth_c_s_gbi</table>
  2150 + <orderby/>
  2151 + <fail_on_multiple>N</fail_on_multiple>
  2152 + <eat_row_on_failure>N</eat_row_on_failure>
  2153 + <key>
  2154 + <name>xlid</name>
  2155 + <field>xl</field>
  2156 + <condition>&#x3d;</condition>
  2157 + <name2/>
  2158 + </key>
  2159 + <key>
  2160 + <name>lp</name>
  2161 + <field>lp_name</field>
  2162 + <condition>&#x3d;</condition>
  2163 + <name2/>
  2164 + </key>
  2165 + <key>
  2166 + <name>iscanceled</name>
  2167 + <field>is_cancel</field>
  2168 + <condition>&#x3d;</condition>
  2169 + <name2/>
  2170 + </key>
  2171 + <value>
  2172 + <name>id</name>
  2173 + <rename>lpid</rename>
  2174 + <default/>
  2175 + <type>Integer</type>
  2176 + </value>
  2177 + </lookup>
  2178 + <cluster_schema/>
  2179 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2180 + <xloc>1013</xloc>
  2181 + <yloc>265</yloc>
  2182 + <draw>Y</draw>
  2183 + </GUI>
  2184 + </step>
  2185 +
  2186 + <step>
  2187 + <name>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ebf;&#x8def;&#x65b9;&#x5411;</name>
  2188 + <type>DBLookup</type>
  2189 + <description/>
  2190 + <distribute>Y</distribute>
  2191 + <custom_distribution/>
  2192 + <copies>1</copies>
  2193 + <partitioning>
  2194 + <method>none</method>
  2195 + <schema_name/>
  2196 + </partitioning>
  2197 + <connection>bus_control_variable</connection>
  2198 + <cache>N</cache>
  2199 + <cache_load_all>N</cache_load_all>
  2200 + <cache_size>0</cache_size>
  2201 + <lookup>
  2202 + <schema/>
  2203 + <table>bsth_c_stationroute</table>
  2204 + <orderby/>
  2205 + <fail_on_multiple>N</fail_on_multiple>
  2206 + <eat_row_on_failure>N</eat_row_on_failure>
  2207 + <key>
  2208 + <name>xlid</name>
  2209 + <field>line</field>
  2210 + <condition>&#x3d;</condition>
  2211 + <name2/>
  2212 + </key>
  2213 + <key>
  2214 + <name>startZdtype_calcu</name>
  2215 + <field>station_mark</field>
  2216 + <condition>&#x3d;</condition>
  2217 + <name2/>
  2218 + </key>
  2219 + <key>
  2220 + <name>qdzname_calcu</name>
  2221 + <field>station_name</field>
  2222 + <condition>LIKE</condition>
  2223 + <name2/>
  2224 + </key>
  2225 + <key>
  2226 + <name>destory</name>
  2227 + <field>destroy</field>
  2228 + <condition>&#x3d;</condition>
  2229 + <name2/>
  2230 + </key>
  2231 + <value>
  2232 + <name>directions</name>
  2233 + <rename>sxx</rename>
  2234 + <default/>
  2235 + <type>String</type>
  2236 + </value>
  2237 + </lookup>
  2238 + <cluster_schema/>
  2239 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2240 + <xloc>548</xloc>
  2241 + <yloc>610</yloc>
  2242 + <draw>Y</draw>
  2243 + </GUI>
  2244 + </step>
  2245 +
  2246 + <step>
  2247 + <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>
  2248 + <type>DBLookup</type>
  2249 + <description/>
  2250 + <distribute>Y</distribute>
  2251 + <custom_distribution/>
  2252 + <copies>1</copies>
  2253 + <partitioning>
  2254 + <method>none</method>
  2255 + <schema_name/>
  2256 + </partitioning>
  2257 + <connection>bus_control_variable</connection>
  2258 + <cache>Y</cache>
  2259 + <cache_load_all>Y</cache_load_all>
  2260 + <cache_size>0</cache_size>
  2261 + <lookup>
  2262 + <schema/>
  2263 + <table>bsth_c_stationroute</table>
  2264 + <orderby/>
  2265 + <fail_on_multiple>N</fail_on_multiple>
  2266 + <eat_row_on_failure>N</eat_row_on_failure>
  2267 + <key>
  2268 + <name>xlid</name>
  2269 + <field>line</field>
  2270 + <condition>&#x3d;</condition>
  2271 + <name2/>
  2272 + </key>
  2273 + <key>
  2274 + <name>endZdtype_calcu</name>
  2275 + <field>station_mark</field>
  2276 + <condition>&#x3d;</condition>
  2277 + <name2/>
  2278 + </key>
  2279 + <key>
  2280 + <name>sxx</name>
  2281 + <field>directions</field>
  2282 + <condition>&#x3d;</condition>
  2283 + <name2/>
  2284 + </key>
  2285 + <key>
  2286 + <name>destory</name>
  2287 + <field>destroy</field>
  2288 + <condition>&#x3d;</condition>
  2289 + <name2/>
  2290 + </key>
  2291 + <value>
  2292 + <name>station_name</name>
  2293 + <rename>zdzname_calcu</rename>
  2294 + <default/>
  2295 + <type>Integer</type>
  2296 + </value>
  2297 + </lookup>
  2298 + <cluster_schema/>
  2299 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2300 + <xloc>550</xloc>
  2301 + <yloc>701</yloc>
  2302 + <draw>Y</draw>
  2303 + </GUI>
  2304 + </step>
  2305 +
  2306 + <step>
  2307 + <name>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</name>
  2308 + <type>DBLookup</type>
  2309 + <description/>
  2310 + <distribute>Y</distribute>
  2311 + <custom_distribution/>
  2312 + <copies>1</copies>
  2313 + <partitioning>
  2314 + <method>none</method>
  2315 + <schema_name/>
  2316 + </partitioning>
  2317 + <connection>bus_control_variable</connection>
  2318 + <cache>N</cache>
  2319 + <cache_load_all>N</cache_load_all>
  2320 + <cache_size>0</cache_size>
  2321 + <lookup>
  2322 + <schema/>
  2323 + <table>bsth_c_stationroute</table>
  2324 + <orderby/>
  2325 + <fail_on_multiple>N</fail_on_multiple>
  2326 + <eat_row_on_failure>N</eat_row_on_failure>
  2327 + <key>
  2328 + <name>xlid</name>
  2329 + <field>line</field>
  2330 + <condition>&#x3d;</condition>
  2331 + <name2/>
  2332 + </key>
  2333 + <key>
  2334 + <name>zdzname_calcu</name>
  2335 + <field>station_name</field>
  2336 + <condition>&#x3d;</condition>
  2337 + <name2/>
  2338 + </key>
  2339 + <key>
  2340 + <name>startZdtype_calcu</name>
  2341 + <field>station_mark</field>
  2342 + <condition>&#x3d;</condition>
  2343 + <name2/>
  2344 + </key>
  2345 + <key>
  2346 + <name>destory</name>
  2347 + <field>destroy</field>
  2348 + <condition>&#x3d;</condition>
  2349 + <name2/>
  2350 + </key>
  2351 + <value>
  2352 + <name>directions</name>
  2353 + <rename>sxx2</rename>
  2354 + <default/>
  2355 + <type>Integer</type>
  2356 + </value>
  2357 + <value>
  2358 + <name>station</name>
  2359 + <rename>qdzid</rename>
  2360 + <default/>
  2361 + <type>Integer</type>
  2362 + </value>
  2363 + <value>
  2364 + <name>station_code</name>
  2365 + <rename>qdzcode</rename>
  2366 + <default/>
  2367 + <type>String</type>
  2368 + </value>
  2369 + <value>
  2370 + <name>station_name</name>
  2371 + <rename>qname</rename>
  2372 + <default/>
  2373 + <type>String</type>
  2374 + </value>
  2375 + </lookup>
  2376 + <cluster_schema/>
  2377 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2378 + <xloc>551</xloc>
  2379 + <yloc>782</yloc>
  2380 + <draw>Y</draw>
  2381 + </GUI>
  2382 + </step>
  2383 +
  2384 + <step>
  2385 + <name>&#x6b63;&#x5e38;&#x73ed;&#x6b21;_&#x5904;&#x7406;&#x6570;&#x636e;</name>
  2386 + <type>ScriptValueMod</type>
  2387 + <description/>
  2388 + <distribute>Y</distribute>
  2389 + <custom_distribution/>
  2390 + <copies>1</copies>
  2391 + <partitioning>
  2392 + <method>none</method>
  2393 + <schema_name/>
  2394 + </partitioning>
  2395 + <compatible>N</compatible>
  2396 + <optimizationLevel>9</optimizationLevel>
  2397 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  2398 + <jsScript_name>Script 1</jsScript_name>
  2399 + <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>
  2400 + </jsScript> </jsScripts> <fields> <field> <name>sendZdtype</name>
  2401 + <rename>sendZdtype</rename>
  2402 + <type>String</type>
  2403 + <length>-1</length>
  2404 + <precision>-1</precision>
  2405 + <replace>N</replace>
  2406 + </field> <field> <name>endZdtype</name>
  2407 + <rename>endZdtype</rename>
  2408 + <type>String</type>
  2409 + <length>-1</length>
  2410 + <precision>-1</precision>
  2411 + <replace>N</replace>
  2412 + </field> <field> <name>destory</name>
  2413 + <rename>destory</rename>
  2414 + <type>Integer</type>
  2415 + <length>-1</length>
  2416 + <precision>-1</precision>
  2417 + <replace>N</replace>
  2418 + </field> </fields> <cluster_schema/>
  2419 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2420 + <xloc>588</xloc>
  2421 + <yloc>403</yloc>
  2422 + <draw>Y</draw>
  2423 + </GUI>
  2424 + </step>
  2425 +
  2426 + <step>
  2427 + <name>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</name>
  2428 + <type>Dummy</type>
  2429 + <description/>
  2430 + <distribute>Y</distribute>
  2431 + <custom_distribution/>
  2432 + <copies>1</copies>
  2433 + <partitioning>
  2434 + <method>none</method>
  2435 + <schema_name/>
  2436 + </partitioning>
  2437 + <cluster_schema/>
  2438 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2439 + <xloc>725</xloc>
  2440 + <yloc>404</yloc>
  2441 + <draw>Y</draw>
  2442 + </GUI>
  2443 + </step>
  2444 +
  2445 + <step>
  2446 + <name>&#x6dfb;&#x52a0;&#x53d1;&#x8f66;&#x987a;&#x5e8f;&#x53f7;</name>
  2447 + <type>GroupBy</type>
  2448 + <description/>
  2449 + <distribute>Y</distribute>
  2450 + <custom_distribution/>
  2451 + <copies>1</copies>
  2452 + <partitioning>
  2453 + <method>none</method>
  2454 + <schema_name/>
  2455 + </partitioning>
  2456 + <all_rows>Y</all_rows>
  2457 + <ignore_aggregate>N</ignore_aggregate>
  2458 + <field_ignore/>
  2459 + <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
  2460 + <prefix>grp</prefix>
  2461 + <add_linenr>Y</add_linenr>
  2462 + <linenr_fieldname>fcno</linenr_fieldname>
  2463 + <give_back_row>N</give_back_row>
  2464 + <group>
  2465 + <field>
  2466 + <name>lp</name>
  2467 + </field>
  2468 + </group>
  2469 + <fields>
  2470 + </fields>
  2471 + <cluster_schema/>
  2472 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2473 + <xloc>442</xloc>
  2474 + <yloc>44</yloc>
  2475 + <draw>Y</draw>
  2476 + </GUI>
  2477 + </step>
  2478 +
  2479 + <step>
  2480 + <name>&#x6dfb;&#x52a0;&#x5bf9;&#x5e94;&#x73ed;&#x6b21;&#x6570;</name>
  2481 + <type>GroupBy</type>
  2482 + <description/>
  2483 + <distribute>Y</distribute>
  2484 + <custom_distribution/>
  2485 + <copies>1</copies>
  2486 + <partitioning>
  2487 + <method>none</method>
  2488 + <schema_name/>
  2489 + </partitioning>
  2490 + <all_rows>Y</all_rows>
  2491 + <ignore_aggregate>N</ignore_aggregate>
  2492 + <field_ignore/>
  2493 + <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
  2494 + <prefix>grp</prefix>
  2495 + <add_linenr>Y</add_linenr>
  2496 + <linenr_fieldname>bcs</linenr_fieldname>
  2497 + <give_back_row>N</give_back_row>
  2498 + <group>
  2499 + </group>
  2500 + <fields>
  2501 + </fields>
  2502 + <cluster_schema/>
  2503 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2504 + <xloc>692</xloc>
  2505 + <yloc>44</yloc>
  2506 + <draw>Y</draw>
  2507 + </GUI>
  2508 + </step>
  2509 +
  2510 + <step>
  2511 + <name>&#x73ed;&#x6b21;&#x6570;&#x636e;&#x8303;&#x5f0f;&#x5316;</name>
  2512 + <type>Normaliser</type>
  2513 + <description/>
  2514 + <distribute>Y</distribute>
  2515 + <custom_distribution/>
  2516 + <copies>1</copies>
  2517 + <partitioning>
  2518 + <method>none</method>
  2519 + <schema_name/>
  2520 + </partitioning>
  2521 + <typefield>&#x7ad9;&#x70b9;&#x540d;&#x79f0;</typefield>
  2522 + <fields> </fields> <cluster_schema/>
  2523 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2524 + <xloc>248</xloc>
  2525 + <yloc>44</yloc>
  2526 + <draw>Y</draw>
  2527 + </GUI>
  2528 + </step>
  2529 +
  2530 + <step>
  2531 + <name>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178;</name>
  2532 + <type>ValueMapper</type>
  2533 + <description/>
  2534 + <distribute>Y</distribute>
  2535 + <custom_distribution/>
  2536 + <copies>1</copies>
  2537 + <partitioning>
  2538 + <method>none</method>
  2539 + <schema_name/>
  2540 + </partitioning>
  2541 + <field_to_use>bctype</field_to_use>
  2542 + <target_field>bctype_code</target_field>
  2543 + <non_match_default>&#x672a;&#x77e5;&#x7c7b;&#x578b;</non_match_default>
  2544 + <fields>
  2545 + <field>
  2546 + <source_value>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</source_value>
  2547 + <target_value>normal</target_value>
  2548 + </field>
  2549 + <field>
  2550 + <source_value>&#x51fa;&#x573a;</source_value>
  2551 + <target_value>out</target_value>
  2552 + </field>
  2553 + <field>
  2554 + <source_value>&#x8fdb;&#x573a;</source_value>
  2555 + <target_value>in</target_value>
  2556 + </field>
  2557 + <field>
  2558 + <source_value>&#x52a0;&#x6cb9;</source_value>
  2559 + <target_value>oil</target_value>
  2560 + </field>
  2561 + <field>
  2562 + <source_value>&#x4e34;&#x52a0;</source_value>
  2563 + <target_value>temp</target_value>
  2564 + </field>
  2565 + <field>
  2566 + <source_value>&#x533a;&#x95f4;</source_value>
  2567 + <target_value>region</target_value>
  2568 + </field>
  2569 + <field>
  2570 + <source_value>&#x653e;&#x7a7a;</source_value>
  2571 + <target_value>venting</target_value>
  2572 + </field>
  2573 + <field>
  2574 + <source_value>&#x653e;&#x5927;&#x7ad9;</source_value>
  2575 + <target_value>major</target_value>
  2576 + </field>
  2577 + </fields>
  2578 + <cluster_schema/>
  2579 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2580 + <xloc>149</xloc>
  2581 + <yloc>491</yloc>
  2582 + <draw>Y</draw>
  2583 + </GUI>
  2584 + </step>
  2585 +
  2586 + <step>
  2587 + <name>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 2</name>
  2588 + <type>ValueMapper</type>
  2589 + <description/>
  2590 + <distribute>Y</distribute>
  2591 + <custom_distribution/>
  2592 + <copies>1</copies>
  2593 + <partitioning>
  2594 + <method>none</method>
  2595 + <schema_name/>
  2596 + </partitioning>
  2597 + <field_to_use>bctype</field_to_use>
  2598 + <target_field>bctype_code</target_field>
  2599 + <non_match_default>&#x672a;&#x77e5;&#x7c7b;&#x578b;</non_match_default>
  2600 + <fields>
  2601 + <field>
  2602 + <source_value>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</source_value>
  2603 + <target_value>normal</target_value>
  2604 + </field>
  2605 + <field>
  2606 + <source_value>&#x51fa;&#x573a;</source_value>
  2607 + <target_value>out</target_value>
  2608 + </field>
  2609 + <field>
  2610 + <source_value>&#x8fdb;&#x573a;</source_value>
  2611 + <target_value>in</target_value>
  2612 + </field>
  2613 + <field>
  2614 + <source_value>&#x52a0;&#x6cb9;</source_value>
  2615 + <target_value>oil</target_value>
  2616 + </field>
  2617 + <field>
  2618 + <source_value>&#x4e34;&#x52a0;</source_value>
  2619 + <target_value>temp</target_value>
  2620 + </field>
  2621 + <field>
  2622 + <source_value>&#x533a;&#x95f4;</source_value>
  2623 + <target_value>region</target_value>
  2624 + </field>
  2625 + <field>
  2626 + <source_value>&#x653e;&#x7a7a;</source_value>
  2627 + <target_value>venting</target_value>
  2628 + </field>
  2629 + <field>
  2630 + <source_value>&#x653e;&#x5927;&#x7ad9;</source_value>
  2631 + <target_value>major</target_value>
  2632 + </field>
  2633 + </fields>
  2634 + <cluster_schema/>
  2635 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2636 + <xloc>333</xloc>
  2637 + <yloc>681</yloc>
  2638 + <draw>Y</draw>
  2639 + </GUI>
  2640 + </step>
  2641 +
  2642 + <step>
  2643 + <name>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 3</name>
  2644 + <type>ValueMapper</type>
  2645 + <description/>
  2646 + <distribute>Y</distribute>
  2647 + <custom_distribution/>
  2648 + <copies>1</copies>
  2649 + <partitioning>
  2650 + <method>none</method>
  2651 + <schema_name/>
  2652 + </partitioning>
  2653 + <field_to_use>bctype</field_to_use>
  2654 + <target_field>bctype_code</target_field>
  2655 + <non_match_default>&#x672a;&#x77e5;&#x7c7b;&#x578b;</non_match_default>
  2656 + <fields>
  2657 + <field>
  2658 + <source_value>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</source_value>
  2659 + <target_value>normal</target_value>
  2660 + </field>
  2661 + <field>
  2662 + <source_value>&#x51fa;&#x573a;</source_value>
  2663 + <target_value>out</target_value>
  2664 + </field>
  2665 + <field>
  2666 + <source_value>&#x8fdb;&#x573a;</source_value>
  2667 + <target_value>in</target_value>
  2668 + </field>
  2669 + <field>
  2670 + <source_value>&#x52a0;&#x6cb9;</source_value>
  2671 + <target_value>oil</target_value>
  2672 + </field>
  2673 + <field>
  2674 + <source_value>&#x4e34;&#x52a0;</source_value>
  2675 + <target_value>temp</target_value>
  2676 + </field>
  2677 + <field>
  2678 + <source_value>&#x533a;&#x95f4;</source_value>
  2679 + <target_value>region</target_value>
  2680 + </field>
  2681 + <field>
  2682 + <source_value>&#x653e;&#x7a7a;</source_value>
  2683 + <target_value>venting</target_value>
  2684 + </field>
  2685 + <field>
  2686 + <source_value>&#x653e;&#x5927;&#x7ad9;</source_value>
  2687 + <target_value>major</target_value>
  2688 + </field>
  2689 + </fields>
  2690 + <cluster_schema/>
  2691 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2692 + <xloc>551</xloc>
  2693 + <yloc>928</yloc>
  2694 + <draw>Y</draw>
  2695 + </GUI>
  2696 + </step>
  2697 +
  2698 + <step>
  2699 + <name>&#x7c7b;&#x578b;&#x4fee;&#x6b63;</name>
  2700 + <type>SelectValues</type>
  2701 + <description/>
  2702 + <distribute>Y</distribute>
  2703 + <custom_distribution/>
  2704 + <copies>1</copies>
  2705 + <partitioning>
  2706 + <method>none</method>
  2707 + <schema_name/>
  2708 + </partitioning>
  2709 + <fields> <select_unspecified>N</select_unspecified>
  2710 + <meta> <name>jhlc</name>
  2711 + <rename>jhlc</rename>
  2712 + <type>Number</type>
  2713 + <length>-2</length>
  2714 + <precision>-2</precision>
  2715 + <conversion_mask/>
  2716 + <date_format_lenient>false</date_format_lenient>
  2717 + <date_format_locale/>
  2718 + <date_format_timezone/>
  2719 + <lenient_string_to_number>false</lenient_string_to_number>
  2720 + <encoding/>
  2721 + <decimal_symbol/>
  2722 + <grouping_symbol/>
  2723 + <currency_symbol/>
  2724 + <storage_type/>
  2725 + </meta> <meta> <name>bcsj</name>
  2726 + <rename>bcsj</rename>
  2727 + <type>Integer</type>
  2728 + <length>-2</length>
  2729 + <precision>-2</precision>
  2730 + <conversion_mask/>
  2731 + <date_format_lenient>false</date_format_lenient>
  2732 + <date_format_locale/>
  2733 + <date_format_timezone/>
  2734 + <lenient_string_to_number>false</lenient_string_to_number>
  2735 + <encoding/>
  2736 + <decimal_symbol/>
  2737 + <grouping_symbol/>
  2738 + <currency_symbol/>
  2739 + <storage_type/>
  2740 + </meta> </fields> <cluster_schema/>
  2741 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2742 + <xloc>146</xloc>
  2743 + <yloc>768</yloc>
  2744 + <draw>Y</draw>
  2745 + </GUI>
  2746 + </step>
  2747 +
  2748 + <step>
  2749 + <name>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 2</name>
  2750 + <type>SelectValues</type>
  2751 + <description/>
  2752 + <distribute>Y</distribute>
  2753 + <custom_distribution/>
  2754 + <copies>1</copies>
  2755 + <partitioning>
  2756 + <method>none</method>
  2757 + <schema_name/>
  2758 + </partitioning>
  2759 + <fields> <select_unspecified>N</select_unspecified>
  2760 + <meta> <name>out_mileage</name>
  2761 + <rename>out_mileage</rename>
  2762 + <type>Number</type>
  2763 + <length>-2</length>
  2764 + <precision>-2</precision>
  2765 + <conversion_mask/>
  2766 + <date_format_lenient>false</date_format_lenient>
  2767 + <date_format_locale/>
  2768 + <date_format_timezone/>
  2769 + <lenient_string_to_number>false</lenient_string_to_number>
  2770 + <encoding/>
  2771 + <decimal_symbol/>
  2772 + <grouping_symbol/>
  2773 + <currency_symbol/>
  2774 + <storage_type/>
  2775 + </meta> <meta> <name>out_time</name>
  2776 + <rename>out_time</rename>
  2777 + <type>Integer</type>
  2778 + <length>-2</length>
  2779 + <precision>-2</precision>
  2780 + <conversion_mask/>
  2781 + <date_format_lenient>false</date_format_lenient>
  2782 + <date_format_locale/>
  2783 + <date_format_timezone/>
  2784 + <lenient_string_to_number>false</lenient_string_to_number>
  2785 + <encoding/>
  2786 + <decimal_symbol/>
  2787 + <grouping_symbol/>
  2788 + <currency_symbol/>
  2789 + <storage_type/>
  2790 + </meta> <meta> <name>sxx</name>
  2791 + <rename>sxx</rename>
  2792 + <type>Integer</type>
  2793 + <length>-2</length>
  2794 + <precision>-2</precision>
  2795 + <conversion_mask/>
  2796 + <date_format_lenient>false</date_format_lenient>
  2797 + <date_format_locale/>
  2798 + <date_format_timezone/>
  2799 + <lenient_string_to_number>false</lenient_string_to_number>
  2800 + <encoding/>
  2801 + <decimal_symbol/>
  2802 + <grouping_symbol/>
  2803 + <currency_symbol/>
  2804 + <storage_type/>
  2805 + </meta> </fields> <cluster_schema/>
  2806 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2807 + <xloc>338</xloc>
  2808 + <yloc>1008</yloc>
  2809 + <draw>Y</draw>
  2810 + </GUI>
  2811 + </step>
  2812 +
  2813 + <step>
  2814 + <name>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 3</name>
  2815 + <type>SelectValues</type>
  2816 + <description/>
  2817 + <distribute>Y</distribute>
  2818 + <custom_distribution/>
  2819 + <copies>1</copies>
  2820 + <partitioning>
  2821 + <method>none</method>
  2822 + <schema_name/>
  2823 + </partitioning>
  2824 + <fields> <select_unspecified>N</select_unspecified>
  2825 + <meta> <name>parade_mileage</name>
  2826 + <rename>parade_mileage</rename>
  2827 + <type>Number</type>
  2828 + <length>-2</length>
  2829 + <precision>-2</precision>
  2830 + <conversion_mask/>
  2831 + <date_format_lenient>false</date_format_lenient>
  2832 + <date_format_locale/>
  2833 + <date_format_timezone/>
  2834 + <lenient_string_to_number>false</lenient_string_to_number>
  2835 + <encoding/>
  2836 + <decimal_symbol/>
  2837 + <grouping_symbol/>
  2838 + <currency_symbol/>
  2839 + <storage_type/>
  2840 + </meta> <meta> <name>parade_time</name>
  2841 + <rename>parade_time</rename>
  2842 + <type>Integer</type>
  2843 + <length>-2</length>
  2844 + <precision>-2</precision>
  2845 + <conversion_mask/>
  2846 + <date_format_lenient>false</date_format_lenient>
  2847 + <date_format_locale/>
  2848 + <date_format_timezone/>
  2849 + <lenient_string_to_number>false</lenient_string_to_number>
  2850 + <encoding/>
  2851 + <decimal_symbol/>
  2852 + <grouping_symbol/>
  2853 + <currency_symbol/>
  2854 + <storage_type/>
  2855 + </meta> <meta> <name>sxx2</name>
  2856 + <rename>sxx2</rename>
  2857 + <type>Integer</type>
  2858 + <length>-2</length>
  2859 + <precision>-2</precision>
  2860 + <conversion_mask/>
  2861 + <date_format_lenient>false</date_format_lenient>
  2862 + <date_format_locale/>
  2863 + <date_format_timezone/>
  2864 + <lenient_string_to_number>false</lenient_string_to_number>
  2865 + <encoding/>
  2866 + <decimal_symbol/>
  2867 + <grouping_symbol/>
  2868 + <currency_symbol/>
  2869 + <storage_type/>
  2870 + </meta> </fields> <cluster_schema/>
  2871 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2872 + <xloc>847</xloc>
  2873 + <yloc>1003</yloc>
  2874 + <draw>Y</draw>
  2875 + </GUI>
  2876 + </step>
  2877 +
  2878 + <step>
  2879 + <name>&#x8ba1;&#x7b97;&#x73ed;&#x6b21;&#x7c7b;&#x578b;</name>
  2880 + <type>ValueMapper</type>
  2881 + <description/>
  2882 + <distribute>Y</distribute>
  2883 + <custom_distribution/>
  2884 + <copies>1</copies>
  2885 + <partitioning>
  2886 + <method>none</method>
  2887 + <schema_name/>
  2888 + </partitioning>
  2889 + <field_to_use>qdzname</field_to_use>
  2890 + <target_field>bctype</target_field>
  2891 + <non_match_default>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</non_match_default>
  2892 + <fields>
  2893 + <field>
  2894 + <source_value>&#x51fa;&#x573a;</source_value>
  2895 + <target_value>&#x51fa;&#x573a;</target_value>
  2896 + </field>
  2897 + <field>
  2898 + <source_value>&#x8fdb;&#x573a;</source_value>
  2899 + <target_value>&#x8fdb;&#x573a;</target_value>
  2900 + </field>
  2901 + </fields>
  2902 + <cluster_schema/>
  2903 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2904 + <xloc>1014</xloc>
  2905 + <yloc>401</yloc>
  2906 + <draw>Y</draw>
  2907 + </GUI>
  2908 + </step>
  2909 +
  2910 + <step>
  2911 + <name>&#x8bb0;&#x5f55;&#x5173;&#x8054; &#x28;&#x7b1b;&#x5361;&#x5c14;&#x8f93;&#x51fa;&#x29;</name>
  2912 + <type>JoinRows</type>
  2913 + <description/>
  2914 + <distribute>Y</distribute>
  2915 + <custom_distribution/>
  2916 + <copies>1</copies>
  2917 + <partitioning>
  2918 + <method>none</method>
  2919 + <schema_name/>
  2920 + </partitioning>
  2921 + <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
  2922 + <prefix>out</prefix>
  2923 + <cache_size>500</cache_size>
  2924 + <main/>
  2925 + <compare>
  2926 +<condition>
  2927 + <negated>N</negated>
  2928 + <leftvalue/>
  2929 + <function>&#x3d;</function>
  2930 + <rightvalue/>
  2931 + </condition>
  2932 + </compare>
  2933 + <cluster_schema/>
  2934 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2935 + <xloc>310</xloc>
  2936 + <yloc>133</yloc>
  2937 + <draw>Y</draw>
  2938 + </GUI>
  2939 + </step>
  2940 +
  2941 + <step>
  2942 + <name>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;&#xff08;&#x53d1;&#x8f66;&#x65f6;&#x95f4;&#x4e3a;&#x7a7a;&#xff09;</name>
  2943 + <type>FilterRows</type>
  2944 + <description/>
  2945 + <distribute>Y</distribute>
  2946 + <custom_distribution/>
  2947 + <copies>1</copies>
  2948 + <partitioning>
  2949 + <method>none</method>
  2950 + <schema_name/>
  2951 + </partitioning>
  2952 +<send_true_to/>
  2953 +<send_false_to/>
  2954 + <compare>
  2955 +<condition>
  2956 + <negated>N</negated>
  2957 + <leftvalue>sendtime</leftvalue>
  2958 + <function>IS NOT NULL</function>
  2959 + <rightvalue/>
  2960 + </condition>
  2961 + </compare>
  2962 + <cluster_schema/>
  2963 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2964 + <xloc>571</xloc>
  2965 + <yloc>44</yloc>
  2966 + <draw>Y</draw>
  2967 + </GUI>
  2968 + </step>
  2969 +
  2970 + <step>
  2971 + <name>&#x8fdb;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x8d77;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</name>
  2972 + <type>ScriptValueMod</type>
  2973 + <description/>
  2974 + <distribute>Y</distribute>
  2975 + <custom_distribution/>
  2976 + <copies>1</copies>
  2977 + <partitioning>
  2978 + <method>none</method>
  2979 + <schema_name/>
  2980 + </partitioning>
  2981 + <compatible>N</compatible>
  2982 + <optimizationLevel>9</optimizationLevel>
  2983 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  2984 + <jsScript_name>Script 1</jsScript_name>
  2985 + <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>
  2986 + </jsScript> </jsScripts> <fields> <field> <name>qdzname_calcu</name>
  2987 + <rename>qdzname_calcu</rename>
  2988 + <type>String</type>
  2989 + <length>-1</length>
  2990 + <precision>-1</precision>
  2991 + <replace>N</replace>
  2992 + </field> <field> <name>startZdtype_calcu</name>
  2993 + <rename>startZdtype_calcu</rename>
  2994 + <type>String</type>
  2995 + <length>-1</length>
  2996 + <precision>-1</precision>
  2997 + <replace>N</replace>
  2998 + </field> <field> <name>endZdtype_calcu</name>
  2999 + <rename>endZdtype_calcu</rename>
  3000 + <type>String</type>
  3001 + <length>-1</length>
  3002 + <precision>-1</precision>
  3003 + <replace>N</replace>
  3004 + </field> <field> <name>destory</name>
  3005 + <rename>destory</rename>
  3006 + <type>Integer</type>
  3007 + <length>-1</length>
  3008 + <precision>-1</precision>
  3009 + <replace>N</replace>
  3010 + </field> </fields> <cluster_schema/>
  3011 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3012 + <xloc>754</xloc>
  3013 + <yloc>610</yloc>
  3014 + <draw>Y</draw>
  3015 + </GUI>
  3016 + </step>
  3017 +
  3018 + <step>
  3019 + <name>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</name>
  3020 + <type>Dummy</type>
  3021 + <description/>
  3022 + <distribute>Y</distribute>
  3023 + <custom_distribution/>
  3024 + <copies>1</copies>
  3025 + <partitioning>
  3026 + <method>none</method>
  3027 + <schema_name/>
  3028 + </partitioning>
  3029 + <cluster_schema/>
  3030 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3031 + <xloc>997</xloc>
  3032 + <yloc>606</yloc>
  3033 + <draw>Y</draw>
  3034 + </GUI>
  3035 + </step>
  3036 +
  3037 + <step_error_handling>
  3038 + <error>
  3039 + <source_step>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail</source_step>
  3040 + <target_step/>
  3041 + <is_enabled>Y</is_enabled>
  3042 + <nr_valuename>c1</nr_valuename>
  3043 + <descriptions_valuename>c2</descriptions_valuename>
  3044 + <fields_valuename>c3</fields_valuename>
  3045 + <codes_valuename>c4</codes_valuename>
  3046 + <max_errors/>
  3047 + <max_pct_errors/>
  3048 + <min_pct_rows/>
  3049 + </error>
  3050 + </step_error_handling>
  3051 + <slave-step-copy-partition-distribution>
  3052 +</slave-step-copy-partition-distribution>
  3053 + <slave_transformation>N</slave_transformation>
  3054 +
  3055 +</transformation>
3056 \ No newline at end of file 3056 \ No newline at end of file
src/main/resources/datatools/ktrs/ttinfodetailDataInput2.ktr
1 -<?xml version="1.0" encoding="UTF-8"?>  
2 -<transformation>  
3 - <info>  
4 - <name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x5bfc;&#x5165;2</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>xlab_mysql_youle</name>  
291 - <server>101.231.124.8</server>  
292 - <type>MYSQL</type>  
293 - <access>Native</access>  
294 - <database>xlab_youle</database>  
295 - <port>45687</port>  
296 - <username>xlab-youle</username>  
297 - <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password>  
298 - <servername/>  
299 - <data_tablespace/>  
300 - <index_tablespace/>  
301 - <attributes>  
302 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
303 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
304 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
305 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
306 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
307 - <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute>  
308 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
309 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
310 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
311 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>  
312 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>  
313 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
314 - </attributes>  
315 - </connection>  
316 - <connection>  
317 - <name>xlab_mysql_youle&#xff08;&#x672c;&#x673a;&#xff09;</name>  
318 - <server>localhost</server>  
319 - <type>MYSQL</type>  
320 - <access>Native</access>  
321 - <database>xlab_youle</database>  
322 - <port>3306</port>  
323 - <username>root</username>  
324 - <password>Encrypted </password>  
325 - <servername/>  
326 - <data_tablespace/>  
327 - <index_tablespace/>  
328 - <attributes>  
329 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
330 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
331 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
332 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
333 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
334 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
335 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
336 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
337 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
338 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>  
339 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>  
340 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
341 - </attributes>  
342 - </connection>  
343 - <connection>  
344 - <name>xlab_youle</name>  
345 - <server/>  
346 - <type>MYSQL</type>  
347 - <access>JNDI</access>  
348 - <database>xlab_youle</database>  
349 - <port>1521</port>  
350 - <username/>  
351 - <password>Encrypted </password>  
352 - <servername/>  
353 - <data_tablespace/>  
354 - <index_tablespace/>  
355 - <attributes>  
356 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
357 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
358 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
359 - <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>  
360 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
361 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
362 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
363 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
364 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
365 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
366 - </attributes>  
367 - </connection>  
368 - <order>  
369 - <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>  
370 - <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>  
371 - <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>  
372 - <hop> <from>&#x6dfb;&#x52a0;&#x5bf9;&#x5e94;&#x73ed;&#x6b21;&#x6570;</from><to>&#x5904;&#x7406;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>  
373 - <hop> <from>&#x5904;&#x7406;&#x6570;&#x636e;</from><to>&#x5206;&#x7ec4;&#x5404;&#x4e2a;&#x8def;&#x724c;&#x7684;&#x7ad9;</to><enabled>Y</enabled> </hop>  
374 - <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>  
375 - <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>  
376 - <hop> <from>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178;</from><to>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178;</to><enabled>Y</enabled> </hop>  
377 - <hop> <from>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 2</from><to>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 2</to><enabled>Y</enabled> </hop>  
378 - <hop> <from>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 3</from><to>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 3</to><enabled>Y</enabled> </hop>  
379 - <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>  
380 - <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>  
381 - <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>  
382 - <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>  
383 - <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>  
384 - <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>  
385 - <hop> <from>&#x67e5;&#x627e;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;</from><to>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178;</to><enabled>Y</enabled> </hop>  
386 - <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>  
387 - <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>  
388 - <hop> <from>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</from><to>&#x6b63;&#x5e38;&#x73ed;&#x6b21;_&#x5904;&#x7406;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>  
389 - <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>  
390 - <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>  
391 - <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>  
392 - <hop> <from>&#x67e5;&#x627e;&#x8def;&#x724c;&#x5173;&#x8054;</from><to>&#x8ba1;&#x7b97;&#x73ed;&#x6b21;&#x7c7b;&#x578b;</to><enabled>Y</enabled> </hop>  
393 - <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>  
394 - <hop> <from>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</from><to>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;1</to><enabled>Y</enabled> </hop>  
395 - <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>  
396 - <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>  
397 - <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>  
398 - <hop> <from>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</from><to>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;2</to><enabled>Y</enabled> </hop>  
399 - <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>  
400 - <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>  
401 - <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>  
402 - <hop> <from>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</from><to>&#x6dfb;&#x52a0;&#x53d1;&#x8f66;&#x987a;&#x5e8f;&#x53f7;</to><enabled>Y</enabled> </hop>  
403 - <hop> <from>&#x5206;&#x7ec4;&#x5404;&#x4e2a;&#x8def;&#x724c;&#x7684;&#x7ad9;</from><to>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x5173;&#x8054;</to><enabled>Y</enabled> </hop>  
404 - <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>  
405 - <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>  
406 - <hop> <from>&#x8bb0;&#x5f55;&#x5173;&#x8054; &#x28;&#x7b1b;&#x5361;&#x5c14;&#x8f93;&#x51fa;&#x29;</from><to>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</to><enabled>Y</enabled> </hop>  
407 - <hop> <from>&#x7c7b;&#x578b;&#x4fee;&#x6b63;</from><to>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail</to><enabled>Y</enabled> </hop>  
408 - <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>  
409 - <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>  
410 - <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>  
411 - <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>  
412 - <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>  
413 - <hop> <from>&#x4e0a;&#x4e0b;&#x884c;NULL&#x5224;&#x5b9a;</from><to>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 2</to><enabled>Y</enabled> </hop>  
414 - <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>  
415 - <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>  
416 - <hop> <from>&#x4e0a;&#x4e0b;&#x884c;&#x5224;&#x5b9a; 2</from><to>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 3</to><enabled>Y</enabled> </hop>  
417 - <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>  
418 - </order>  
419 - <step>  
420 - <name>&#x4e0a;&#x4e0b;&#x884c;NULL&#x5224;&#x5b9a;</name>  
421 - <type>IfNull</type>  
422 - <description/>  
423 - <distribute>Y</distribute>  
424 - <custom_distribution/>  
425 - <copies>1</copies>  
426 - <partitioning>  
427 - <method>none</method>  
428 - <schema_name/>  
429 - </partitioning>  
430 - <replaceAllByValue/>  
431 - <replaceAllMask/>  
432 - <selectFields>Y</selectFields>  
433 - <selectValuesType>N</selectValuesType>  
434 - <setEmptyStringAll>N</setEmptyStringAll>  
435 - <valuetypes>  
436 - </valuetypes>  
437 - <fields>  
438 - <field>  
439 - <name>sxx</name>  
440 - <value>0</value>  
441 - <mask/>  
442 - <set_empty_string>N</set_empty_string>  
443 - </field>  
444 - </fields>  
445 - <cluster_schema/>  
446 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
447 - <xloc>335</xloc>  
448 - <yloc>938</yloc>  
449 - <draw>Y</draw>  
450 - </GUI>  
451 - </step>  
452 -  
453 - <step>  
454 - <name>&#x4e0a;&#x4e0b;&#x884c;&#x5224;&#x5b9a; 2</name>  
455 - <type>IfNull</type>  
456 - <description/>  
457 - <distribute>Y</distribute>  
458 - <custom_distribution/>  
459 - <copies>1</copies>  
460 - <partitioning>  
461 - <method>none</method>  
462 - <schema_name/>  
463 - </partitioning>  
464 - <replaceAllByValue/>  
465 - <replaceAllMask/>  
466 - <selectFields>Y</selectFields>  
467 - <selectValuesType>N</selectValuesType>  
468 - <setEmptyStringAll>N</setEmptyStringAll>  
469 - <valuetypes>  
470 - </valuetypes>  
471 - <fields>  
472 - <field>  
473 - <name>sxx2</name>  
474 - <value>0</value>  
475 - <mask/>  
476 - <set_empty_string>N</set_empty_string>  
477 - </field>  
478 - </fields>  
479 - <cluster_schema/>  
480 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
481 - <xloc>804</xloc>  
482 - <yloc>1081</yloc>  
483 - <draw>Y</draw>  
484 - </GUI>  
485 - </step>  
486 -  
487 - <step>  
488 - <name>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178;</name>  
489 - <type>ValueMapper</type>  
490 - <description/>  
491 - <distribute>Y</distribute>  
492 - <custom_distribution/>  
493 - <copies>1</copies>  
494 - <partitioning>  
495 - <method>none</method>  
496 - <schema_name/>  
497 - </partitioning>  
498 - <field_to_use>sxx</field_to_use>  
499 - <target_field>sxx_desc</target_field>  
500 - <non_match_default/>  
501 - <fields>  
502 - <field>  
503 - <source_value>0</source_value>  
504 - <target_value>&#x4e0a;&#x884c;</target_value>  
505 - </field>  
506 - <field>  
507 - <source_value>1</source_value>  
508 - <target_value>&#x4e0b;&#x884c;</target_value>  
509 - </field>  
510 - </fields>  
511 - <cluster_schema/>  
512 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
513 - <xloc>147</xloc>  
514 - <yloc>403</yloc>  
515 - <draw>Y</draw>  
516 - </GUI>  
517 - </step>  
518 -  
519 - <step>  
520 - <name>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 2</name>  
521 - <type>ValueMapper</type>  
522 - <description/>  
523 - <distribute>Y</distribute>  
524 - <custom_distribution/>  
525 - <copies>1</copies>  
526 - <partitioning>  
527 - <method>none</method>  
528 - <schema_name/>  
529 - </partitioning>  
530 - <field_to_use>sxx</field_to_use>  
531 - <target_field>sxx_desc</target_field>  
532 - <non_match_default/>  
533 - <fields>  
534 - <field>  
535 - <source_value>0</source_value>  
536 - <target_value>&#x4e0a;&#x884c;</target_value>  
537 - </field>  
538 - <field>  
539 - <source_value>1</source_value>  
540 - <target_value>&#x4e0b;&#x884c;</target_value>  
541 - </field>  
542 - </fields>  
543 - <cluster_schema/>  
544 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
545 - <xloc>331</xloc>  
546 - <yloc>598</yloc>  
547 - <draw>Y</draw>  
548 - </GUI>  
549 - </step>  
550 -  
551 - <step>  
552 - <name>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 3</name>  
553 - <type>ValueMapper</type>  
554 - <description/>  
555 - <distribute>Y</distribute>  
556 - <custom_distribution/>  
557 - <copies>1</copies>  
558 - <partitioning>  
559 - <method>none</method>  
560 - <schema_name/>  
561 - </partitioning>  
562 - <field_to_use>sxx</field_to_use>  
563 - <target_field>sxx_desc</target_field>  
564 - <non_match_default/>  
565 - <fields>  
566 - <field>  
567 - <source_value>0</source_value>  
568 - <target_value>&#x4e0a;&#x884c;</target_value>  
569 - </field>  
570 - <field>  
571 - <source_value>1</source_value>  
572 - <target_value>&#x4e0b;&#x884c;</target_value>  
573 - </field>  
574 - </fields>  
575 - <cluster_schema/>  
576 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
577 - <xloc>553</xloc>  
578 - <yloc>859</yloc>  
579 - <draw>Y</draw>  
580 - </GUI>  
581 - </step>  
582 -  
583 - <step>  
584 - <name>&#x51fa;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x7ec8;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</name>  
585 - <type>ScriptValueMod</type>  
586 - <description/>  
587 - <distribute>Y</distribute>  
588 - <custom_distribution/>  
589 - <copies>1</copies>  
590 - <partitioning>  
591 - <method>none</method>  
592 - <schema_name/>  
593 - </partitioning>  
594 - <compatible>N</compatible>  
595 - <optimizationLevel>9</optimizationLevel>  
596 - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>  
597 - <jsScript_name>Script 1</jsScript_name>  
598 - <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>  
599 - </jsScript> </jsScripts> <fields> <field> <name>zdzname</name>  
600 - <rename>zdzname</rename>  
601 - <type>String</type>  
602 - <length>-1</length>  
603 - <precision>-1</precision>  
604 - <replace>N</replace>  
605 - </field> <field> <name>endZdtype</name>  
606 - <rename>endZdtype</rename>  
607 - <type>String</type>  
608 - <length>-1</length>  
609 - <precision>-1</precision>  
610 - <replace>N</replace>  
611 - </field> <field> <name>destory</name>  
612 - <rename>destory</rename>  
613 - <type>Integer</type>  
614 - <length>-1</length>  
615 - <precision>-1</precision>  
616 - <replace>N</replace>  
617 - </field> </fields> <cluster_schema/>  
618 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
619 - <xloc>575</xloc>  
620 - <yloc>502</yloc>  
621 - <draw>Y</draw>  
622 - </GUI>  
623 - </step>  
624 -  
625 - <step>  
626 - <name>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</name>  
627 - <type>Dummy</type>  
628 - <description/>  
629 - <distribute>Y</distribute>  
630 - <custom_distribution/>  
631 - <copies>1</copies>  
632 - <partitioning>  
633 - <method>none</method>  
634 - <schema_name/>  
635 - </partitioning>  
636 - <cluster_schema/>  
637 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
638 - <xloc>869</xloc>  
639 - <yloc>504</yloc>  
640 - <draw>Y</draw>  
641 - </GUI>  
642 - </step>  
643 -  
644 - <step>  
645 - <name>&#x5206;&#x7ec4;&#x5404;&#x4e2a;&#x8def;&#x724c;&#x7684;&#x7ad9;</name>  
646 - <type>GroupBy</type>  
647 - <description/>  
648 - <distribute>Y</distribute>  
649 - <custom_distribution/>  
650 - <copies>1</copies>  
651 - <partitioning>  
652 - <method>none</method>  
653 - <schema_name/>  
654 - </partitioning>  
655 - <all_rows>Y</all_rows>  
656 - <ignore_aggregate>N</ignore_aggregate>  
657 - <field_ignore/>  
658 - <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>  
659 - <prefix>grp</prefix>  
660 - <add_linenr>Y</add_linenr>  
661 - <linenr_fieldname>gno</linenr_fieldname>  
662 - <give_back_row>N</give_back_row>  
663 - <group>  
664 - <field>  
665 - <name>lp</name>  
666 - </field>  
667 - </group>  
668 - <fields>  
669 - <field>  
670 - <aggregate>qdzgroups</aggregate>  
671 - <subject>qdzname</subject>  
672 - <type>CONCAT_STRING</type>  
673 - <valuefield>,</valuefield>  
674 - </field>  
675 - </fields>  
676 - <cluster_schema/>  
677 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
678 - <xloc>892</xloc>  
679 - <yloc>44</yloc>  
680 - <draw>Y</draw>  
681 - </GUI>  
682 - </step>  
683 -  
684 - <step>  
685 - <name>&#x5339;&#x914d;&#x4e0a;&#x4e0b;&#x884c;&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>  
686 - <type>ScriptValueMod</type>  
687 - <description/>  
688 - <distribute>Y</distribute>  
689 - <custom_distribution/>  
690 - <copies>1</copies>  
691 - <partitioning>  
692 - <method>none</method>  
693 - <schema_name/>  
694 - </partitioning>  
695 - <compatible>N</compatible>  
696 - <optimizationLevel>9</optimizationLevel>  
697 - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>  
698 - <jsScript_name>Script 1</jsScript_name>  
699 - <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>  
700 - </jsScript> </jsScripts> <fields> <field> <name>jhlc</name>  
701 - <rename>jhlc</rename>  
702 - <type>String</type>  
703 - <length>-1</length>  
704 - <precision>-1</precision>  
705 - <replace>N</replace>  
706 - </field> <field> <name>bcsj</name>  
707 - <rename>bcsj</rename>  
708 - <type>String</type>  
709 - <length>-1</length>  
710 - <precision>-1</precision>  
711 - <replace>N</replace>  
712 - </field> </fields> <cluster_schema/>  
713 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
714 - <xloc>148</xloc>  
715 - <yloc>674</yloc>  
716 - <draw>Y</draw>  
717 - </GUI>  
718 - </step>  
719 -  
720 - <step>  
721 - <name>&#x5339;&#x914d;&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>  
722 - <type>ScriptValueMod</type>  
723 - <description/>  
724 - <distribute>Y</distribute>  
725 - <custom_distribution/>  
726 - <copies>1</copies>  
727 - <partitioning>  
728 - <method>none</method>  
729 - <schema_name/>  
730 - </partitioning>  
731 - <compatible>N</compatible>  
732 - <optimizationLevel>9</optimizationLevel>  
733 - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>  
734 - <jsScript_name>Script 1</jsScript_name>  
735 - <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>  
736 - </jsScript> </jsScripts> <fields> <field> <name>out_mileage</name>  
737 - <rename>out_mileage</rename>  
738 - <type>String</type>  
739 - <length>-1</length>  
740 - <precision>-1</precision>  
741 - <replace>N</replace>  
742 - </field> <field> <name>out_time</name>  
743 - <rename>out_time</rename>  
744 - <type>String</type>  
745 - <length>-1</length>  
746 - <precision>-1</precision>  
747 - <replace>N</replace>  
748 - </field> </fields> <cluster_schema/>  
749 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
750 - <xloc>336</xloc>  
751 - <yloc>862</yloc>  
752 - <draw>Y</draw>  
753 - </GUI>  
754 - </step>  
755 -  
756 - <step>  
757 - <name>&#x5339;&#x914d;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>  
758 - <type>ScriptValueMod</type>  
759 - <description/>  
760 - <distribute>Y</distribute>  
761 - <custom_distribution/>  
762 - <copies>1</copies>  
763 - <partitioning>  
764 - <method>none</method>  
765 - <schema_name/>  
766 - </partitioning>  
767 - <compatible>N</compatible>  
768 - <optimizationLevel>9</optimizationLevel>  
769 - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>  
770 - <jsScript_name>Script 1</jsScript_name>  
771 - <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>  
772 - </jsScript> </jsScripts> <fields> <field> <name>parade_mileage</name>  
773 - <rename>parade_mileage</rename>  
774 - <type>String</type>  
775 - <length>-1</length>  
776 - <precision>-1</precision>  
777 - <replace>N</replace>  
778 - </field> <field> <name>parade_time</name>  
779 - <rename>parade_time</rename>  
780 - <type>String</type>  
781 - <length>-1</length>  
782 - <precision>-1</precision>  
783 - <replace>N</replace>  
784 - </field> </fields> <cluster_schema/>  
785 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
786 - <xloc>726</xloc>  
787 - <yloc>1005</yloc>  
788 - <draw>Y</draw>  
789 - </GUI>  
790 - </step>  
791 -  
792 - <step>  
793 - <name>&#x589e;&#x52a0;&#x65f6;&#x523b;&#x8868;&#x540d;&#x5b57;&#xff0c;&#x7ebf;&#x8def;&#x540d;&#x5b57;&#xff0c;&#x505c;&#x8f66;&#x573a;&#x540d;&#x5b57;</name>  
794 - <type>DataGrid</type>  
795 - <description/>  
796 - <distribute>Y</distribute>  
797 - <custom_distribution/>  
798 - <copies>1</copies>  
799 - <partitioning>  
800 - <method>none</method>  
801 - <schema_name/>  
802 - </partitioning>  
803 - <fields>  
804 - </fields>  
805 - <data>  
806 - <line> </line>  
807 - </data>  
808 - <cluster_schema/>  
809 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
810 - <xloc>110</xloc>  
811 - <yloc>133</yloc>  
812 - <draw>Y</draw>  
813 - </GUI>  
814 - </step>  
815 -  
816 - <step>  
817 - <name>&#x5904;&#x7406;&#x6570;&#x636e;</name>  
818 - <type>ScriptValueMod</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 - <compatible>N</compatible>  
828 - <optimizationLevel>9</optimizationLevel>  
829 - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>  
830 - <jsScript_name>Script 1</jsScript_name>  
831 - <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;&#x2f;&#x2f; &#x4f7f;&#x7528;&#x6b63;&#x5219;&#x8868;&#x8fbe;&#x5f0f;&#x53bb;&#x9664;&#x7ad9;&#x70b9;&#x540d;&#x79f0;&#x53f3;&#x4fa7;&#x591a;&#x4f59;&#x7684;&#x6570;&#x5b57;&#xa;qdzname &#x3d; qdzname.replace&#x28;&#x2f;&#x28;&#x5c;d&#x2b;&#x24;&#x29;&#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&#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>  
832 - </jsScript> </jsScripts> <fields> <field> <name>qdzname</name>  
833 - <rename>qdzname</rename>  
834 - <type>String</type>  
835 - <length>-1</length>  
836 - <precision>-1</precision>  
837 - <replace>Y</replace>  
838 - </field> <field> <name>isfb</name>  
839 - <rename>isfb</rename>  
840 - <type>Integer</type>  
841 - <length>-1</length>  
842 - <precision>-1</precision>  
843 - <replace>N</replace>  
844 - </field> <field> <name>iscanceled</name>  
845 - <rename>iscanceled</rename>  
846 - <type>Integer</type>  
847 - <length>-1</length>  
848 - <precision>-1</precision>  
849 - <replace>N</replace>  
850 - </field> <field> <name>sendtime_calcu</name>  
851 - <rename>sendtime_calcu</rename>  
852 - <type>String</type>  
853 - <length>-1</length>  
854 - <precision>-1</precision>  
855 - <replace>N</replace>  
856 - </field> <field> <name>ists</name>  
857 - <rename>ists</rename>  
858 - <type>Integer</type>  
859 - <length>-1</length>  
860 - <precision>-1</precision>  
861 - <replace>N</replace>  
862 - </field> </fields> <cluster_schema/>  
863 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
864 - <xloc>788</xloc>  
865 - <yloc>44</yloc>  
866 - <draw>Y</draw>  
867 - </GUI>  
868 - </step>  
869 -  
870 - <step>  
871 - <name>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</name>  
872 - <type>SelectValues</type>  
873 - <description/>  
874 - <distribute>Y</distribute>  
875 - <custom_distribution/>  
876 - <copies>1</copies>  
877 - <partitioning>  
878 - <method>none</method>  
879 - <schema_name/>  
880 - </partitioning>  
881 - <fields> <field> <name>&#x8def;&#x724c;</name>  
882 - <rename>lp</rename>  
883 - <length>-2</length>  
884 - <precision>-2</precision>  
885 - </field> <field> <name>&#x7ad9;&#x70b9;&#x540d;&#x79f0;</name>  
886 - <rename>qdzname</rename>  
887 - <length>-2</length>  
888 - <precision>-2</precision>  
889 - </field> <field> <name>&#x53d1;&#x8f66;&#x65f6;&#x95f4;</name>  
890 - <rename>sendtime</rename>  
891 - <length>-2</length>  
892 - <precision>-2</precision>  
893 - </field> <select_unspecified>Y</select_unspecified>  
894 - </fields> <cluster_schema/>  
895 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
896 - <xloc>444</xloc>  
897 - <yloc>131</yloc>  
898 - <draw>Y</draw>  
899 - </GUI>  
900 - </step>  
901 -  
902 - <step>  
903 - <name>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;1</name>  
904 - <type>FilterRows</type>  
905 - <description/>  
906 - <distribute>Y</distribute>  
907 - <custom_distribution/>  
908 - <copies>1</copies>  
909 - <partitioning>  
910 - <method>none</method>  
911 - <schema_name/>  
912 - </partitioning>  
913 -<send_true_to>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</send_true_to>  
914 -<send_false_to>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</send_false_to>  
915 - <compare>  
916 -<condition>  
917 - <negated>N</negated>  
918 - <leftvalue>bctype</leftvalue>  
919 - <function>&#x3d;</function>  
920 - <rightvalue/>  
921 - <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>  
922 - </compare>  
923 - <cluster_schema/>  
924 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
925 - <xloc>860</xloc>  
926 - <yloc>401</yloc>  
927 - <draw>Y</draw>  
928 - </GUI>  
929 - </step>  
930 -  
931 - <step>  
932 - <name>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</name>  
933 - <type>FilterRows</type>  
934 - <description/>  
935 - <distribute>Y</distribute>  
936 - <custom_distribution/>  
937 - <copies>1</copies>  
938 - <partitioning>  
939 - <method>none</method>  
940 - <schema_name/>  
941 - </partitioning>  
942 -<send_true_to>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</send_true_to>  
943 -<send_false_to>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</send_false_to>  
944 - <compare>  
945 -<condition>  
946 - <negated>N</negated>  
947 - <leftvalue>bctype</leftvalue>  
948 - <function>&#x3d;</function>  
949 - <rightvalue/>  
950 - <value><name>constant</name><type>String</type><text>&#x51fa;&#x573a;</text><length>-1</length><precision>-1</precision><isnull>N</isnull><mask/></value> </condition>  
951 - </compare>  
952 - <cluster_schema/>  
953 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
954 - <xloc>995</xloc>  
955 - <yloc>503</yloc>  
956 - <draw>Y</draw>  
957 - </GUI>  
958 - </step>  
959 -  
960 - <step>  
961 - <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail</name>  
962 - <type>InsertUpdate</type>  
963 - <description/>  
964 - <distribute>Y</distribute>  
965 - <custom_distribution/>  
966 - <copies>1</copies>  
967 - <partitioning>  
968 - <method>none</method>  
969 - <schema_name/>  
970 - </partitioning>  
971 - <connection>bus_control_variable</connection>  
972 - <commit>100</commit>  
973 - <update_bypassed>N</update_bypassed>  
974 - <lookup>  
975 - <schema/>  
976 - <table>bsth_c_s_ttinfo_detail</table>  
977 - <key>  
978 - <name>xlid</name>  
979 - <field>xl</field>  
980 - <condition>&#x3d;</condition>  
981 - <name2/>  
982 - </key>  
983 - <key>  
984 - <name>ttid</name>  
985 - <field>ttinfo</field>  
986 - <condition>&#x3d;</condition>  
987 - <name2/>  
988 - </key>  
989 - <key>  
990 - <name>lpid</name>  
991 - <field>lp</field>  
992 - <condition>&#x3d;</condition>  
993 - <name2/>  
994 - </key>  
995 - <key>  
996 - <name>fcno</name>  
997 - <field>fcno</field>  
998 - <condition>&#x3d;</condition>  
999 - <name2/>  
1000 - </key>  
1001 - <key>  
1002 - <name>bcs</name>  
1003 - <field>bcs</field>  
1004 - <condition>&#x3d;</condition>  
1005 - <name2/>  
1006 - </key>  
1007 - <value>  
1008 - <name>lp</name>  
1009 - <rename>lpid</rename>  
1010 - <update>Y</update>  
1011 - </value>  
1012 - <value>  
1013 - <name>bc_type</name>  
1014 - <rename>bctype_code</rename>  
1015 - <update>Y</update>  
1016 - </value>  
1017 - <value>  
1018 - <name>bcs</name>  
1019 - <rename>bcs</rename>  
1020 - <update>Y</update>  
1021 - </value>  
1022 - <value>  
1023 - <name>bcsj</name>  
1024 - <rename>bcsj</rename>  
1025 - <update>Y</update>  
1026 - </value>  
1027 - <value>  
1028 - <name>fcno</name>  
1029 - <rename>fcno</rename>  
1030 - <update>Y</update>  
1031 - </value>  
1032 - <value>  
1033 - <name>jhlc</name>  
1034 - <rename>jhlc</rename>  
1035 - <update>Y</update>  
1036 - </value>  
1037 - <value>  
1038 - <name>fcsj</name>  
1039 - <rename>sendtime_calcu</rename>  
1040 - <update>Y</update>  
1041 - </value>  
1042 - <value>  
1043 - <name>ttinfo</name>  
1044 - <rename>ttid</rename>  
1045 - <update>Y</update>  
1046 - </value>  
1047 - <value>  
1048 - <name>xl</name>  
1049 - <rename>xlid</rename>  
1050 - <update>Y</update>  
1051 - </value>  
1052 - <value>  
1053 - <name>qdz</name>  
1054 - <rename>qdzid</rename>  
1055 - <update>Y</update>  
1056 - </value>  
1057 - <value>  
1058 - <name>zdz</name>  
1059 - <rename>zdzid</rename>  
1060 - <update>Y</update>  
1061 - </value>  
1062 - <value>  
1063 - <name>xl_dir</name>  
1064 - <rename>sxx</rename>  
1065 - <update>Y</update>  
1066 - </value>  
1067 - <value>  
1068 - <name>isfb</name>  
1069 - <rename>isfb</rename>  
1070 - <update>Y</update>  
1071 - </value>  
1072 - <value>  
1073 - <name>qdz_code</name>  
1074 - <rename>qdzcode</rename>  
1075 - <update>Y</update>  
1076 - </value>  
1077 - <value>  
1078 - <name>qdz_name</name>  
1079 - <rename>qdzname_</rename>  
1080 - <update>Y</update>  
1081 - </value>  
1082 - <value>  
1083 - <name>zdz_code</name>  
1084 - <rename>zdzcode</rename>  
1085 - <update>Y</update>  
1086 - </value>  
1087 - <value>  
1088 - <name>zdz_name</name>  
1089 - <rename>zdzname</rename>  
1090 - <update>Y</update>  
1091 - </value>  
1092 - <value>  
1093 - <name>ists</name>  
1094 - <rename>ists</rename>  
1095 - <update>Y</update>  
1096 - </value>  
1097 - </lookup>  
1098 - <cluster_schema/>  
1099 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1100 - <xloc>143</xloc>  
1101 - <yloc>860</yloc>  
1102 - <draw>Y</draw>  
1103 - </GUI>  
1104 - </step>  
1105 -  
1106 - <step>  
1107 - <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail 2</name>  
1108 - <type>InsertUpdate</type>  
1109 - <description/>  
1110 - <distribute>Y</distribute>  
1111 - <custom_distribution/>  
1112 - <copies>1</copies>  
1113 - <partitioning>  
1114 - <method>none</method>  
1115 - <schema_name/>  
1116 - </partitioning>  
1117 - <connection>bus_control_variable</connection>  
1118 - <commit>100</commit>  
1119 - <update_bypassed>N</update_bypassed>  
1120 - <lookup>  
1121 - <schema/>  
1122 - <table>bsth_c_s_ttinfo_detail</table>  
1123 - <key>  
1124 - <name>xlid</name>  
1125 - <field>xl</field>  
1126 - <condition>&#x3d;</condition>  
1127 - <name2/>  
1128 - </key>  
1129 - <key>  
1130 - <name>ttid</name>  
1131 - <field>ttinfo</field>  
1132 - <condition>&#x3d;</condition>  
1133 - <name2/>  
1134 - </key>  
1135 - <key>  
1136 - <name>lpid</name>  
1137 - <field>lp</field>  
1138 - <condition>&#x3d;</condition>  
1139 - <name2/>  
1140 - </key>  
1141 - <key>  
1142 - <name>fcno</name>  
1143 - <field>fcno</field>  
1144 - <condition>&#x3d;</condition>  
1145 - <name2/>  
1146 - </key>  
1147 - <key>  
1148 - <name>bcs</name>  
1149 - <field>bcs</field>  
1150 - <condition>&#x3d;</condition>  
1151 - <name2/>  
1152 - </key>  
1153 - <value>  
1154 - <name>tcc</name>  
1155 - <rename>qdzid</rename>  
1156 - <update>Y</update>  
1157 - </value>  
1158 - <value>  
1159 - <name>zdz</name>  
1160 - <rename>zdzid</rename>  
1161 - <update>Y</update>  
1162 - </value>  
1163 - <value>  
1164 - <name>xl</name>  
1165 - <rename>xlid</rename>  
1166 - <update>Y</update>  
1167 - </value>  
1168 - <value>  
1169 - <name>ttinfo</name>  
1170 - <rename>ttid</rename>  
1171 - <update>Y</update>  
1172 - </value>  
1173 - <value>  
1174 - <name>xl_dir</name>  
1175 - <rename>sxx</rename>  
1176 - <update>Y</update>  
1177 - </value>  
1178 - <value>  
1179 - <name>lp</name>  
1180 - <rename>lpid</rename>  
1181 - <update>Y</update>  
1182 - </value>  
1183 - <value>  
1184 - <name>jhlc</name>  
1185 - <rename>out_mileage</rename>  
1186 - <update>Y</update>  
1187 - </value>  
1188 - <value>  
1189 - <name>fcsj</name>  
1190 - <rename>sendtime_calcu</rename>  
1191 - <update>Y</update>  
1192 - </value>  
1193 - <value>  
1194 - <name>bcsj</name>  
1195 - <rename>out_time</rename>  
1196 - <update>Y</update>  
1197 - </value>  
1198 - <value>  
1199 - <name>bcs</name>  
1200 - <rename>bcs</rename>  
1201 - <update>Y</update>  
1202 - </value>  
1203 - <value>  
1204 - <name>fcno</name>  
1205 - <rename>fcno</rename>  
1206 - <update>Y</update>  
1207 - </value>  
1208 - <value>  
1209 - <name>bc_type</name>  
1210 - <rename>bctype_code</rename>  
1211 - <update>Y</update>  
1212 - </value>  
1213 - <value>  
1214 - <name>isfb</name>  
1215 - <rename>isfb</rename>  
1216 - <update>Y</update>  
1217 - </value>  
1218 - <value>  
1219 - <name>qdz_code</name>  
1220 - <rename>qdzcode</rename>  
1221 - <update>Y</update>  
1222 - </value>  
1223 - <value>  
1224 - <name>qdz_name</name>  
1225 - <rename>tn</rename>  
1226 - <update>Y</update>  
1227 - </value>  
1228 - <value>  
1229 - <name>zdz_code</name>  
1230 - <rename>zdzcode</rename>  
1231 - <update>Y</update>  
1232 - </value>  
1233 - <value>  
1234 - <name>zdz_name</name>  
1235 - <rename>zdzname_</rename>  
1236 - <update>Y</update>  
1237 - </value>  
1238 - <value>  
1239 - <name>ists</name>  
1240 - <rename>ists</rename>  
1241 - <update>Y</update>  
1242 - </value>  
1243 - </lookup>  
1244 - <cluster_schema/>  
1245 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1246 - <xloc>340</xloc>  
1247 - <yloc>1087</yloc>  
1248 - <draw>Y</draw>  
1249 - </GUI>  
1250 - </step>  
1251 -  
1252 - <step>  
1253 - <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail 3</name>  
1254 - <type>InsertUpdate</type>  
1255 - <description/>  
1256 - <distribute>Y</distribute>  
1257 - <custom_distribution/>  
1258 - <copies>1</copies>  
1259 - <partitioning>  
1260 - <method>none</method>  
1261 - <schema_name/>  
1262 - </partitioning>  
1263 - <connection>bus_control_variable</connection>  
1264 - <commit>100</commit>  
1265 - <update_bypassed>N</update_bypassed>  
1266 - <lookup>  
1267 - <schema/>  
1268 - <table>bsth_c_s_ttinfo_detail</table>  
1269 - <key>  
1270 - <name>xlid</name>  
1271 - <field>xl</field>  
1272 - <condition>&#x3d;</condition>  
1273 - <name2/>  
1274 - </key>  
1275 - <key>  
1276 - <name>ttid</name>  
1277 - <field>ttinfo</field>  
1278 - <condition>&#x3d;</condition>  
1279 - <name2/>  
1280 - </key>  
1281 - <key>  
1282 - <name>lpid</name>  
1283 - <field>lp</field>  
1284 - <condition>&#x3d;</condition>  
1285 - <name2/>  
1286 - </key>  
1287 - <key>  
1288 - <name>fcno</name>  
1289 - <field>fcno</field>  
1290 - <condition>&#x3d;</condition>  
1291 - <name2/>  
1292 - </key>  
1293 - <key>  
1294 - <name>bcs</name>  
1295 - <field>bcs</field>  
1296 - <condition>&#x3d;</condition>  
1297 - <name2/>  
1298 - </key>  
1299 - <value>  
1300 - <name>fcno</name>  
1301 - <rename>fcno</rename>  
1302 - <update>Y</update>  
1303 - </value>  
1304 - <value>  
1305 - <name>bcs</name>  
1306 - <rename>bcs</rename>  
1307 - <update>Y</update>  
1308 - </value>  
1309 - <value>  
1310 - <name>xl</name>  
1311 - <rename>xlid</rename>  
1312 - <update>Y</update>  
1313 - </value>  
1314 - <value>  
1315 - <name>ttinfo</name>  
1316 - <rename>ttid</rename>  
1317 - <update>Y</update>  
1318 - </value>  
1319 - <value>  
1320 - <name>lp</name>  
1321 - <rename>lpid</rename>  
1322 - <update>Y</update>  
1323 - </value>  
1324 - <value>  
1325 - <name>bc_type</name>  
1326 - <rename>bctype_code</rename>  
1327 - <update>Y</update>  
1328 - </value>  
1329 - <value>  
1330 - <name>bcsj</name>  
1331 - <rename>parade_time</rename>  
1332 - <update>Y</update>  
1333 - </value>  
1334 - <value>  
1335 - <name>jhlc</name>  
1336 - <rename>parade_mileage</rename>  
1337 - <update>Y</update>  
1338 - </value>  
1339 - <value>  
1340 - <name>fcsj</name>  
1341 - <rename>sendtime_calcu</rename>  
1342 - <update>Y</update>  
1343 - </value>  
1344 - <value>  
1345 - <name>xl_dir</name>  
1346 - <rename>sxx2</rename>  
1347 - <update>Y</update>  
1348 - </value>  
1349 - <value>  
1350 - <name>qdz</name>  
1351 - <rename>qdzid</rename>  
1352 - <update>Y</update>  
1353 - </value>  
1354 - <value>  
1355 - <name>tcc</name>  
1356 - <rename>zdzid</rename>  
1357 - <update>Y</update>  
1358 - </value>  
1359 - <value>  
1360 - <name>isfb</name>  
1361 - <rename>isfb</rename>  
1362 - <update>Y</update>  
1363 - </value>  
1364 - <value>  
1365 - <name>qdz_code</name>  
1366 - <rename>qdzcode</rename>  
1367 - <update>Y</update>  
1368 - </value>  
1369 - <value>  
1370 - <name>qdz_name</name>  
1371 - <rename>qname</rename>  
1372 - <update>Y</update>  
1373 - </value>  
1374 - <value>  
1375 - <name>zdz_code</name>  
1376 - <rename>zdzcode</rename>  
1377 - <update>Y</update>  
1378 - </value>  
1379 - <value>  
1380 - <name>zdz_name</name>  
1381 - <rename>tn</rename>  
1382 - <update>Y</update>  
1383 - </value>  
1384 - <value>  
1385 - <name>ists</name>  
1386 - <rename>ists</rename>  
1387 - <update>Y</update>  
1388 - </value>  
1389 - </lookup>  
1390 - <cluster_schema/>  
1391 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1392 - <xloc>845</xloc>  
1393 - <yloc>899</yloc>  
1394 - <draw>Y</draw>  
1395 - </GUI>  
1396 - </step>  
1397 -  
1398 - <step>  
1399 - <name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</name>  
1400 - <type>ExcelInput</type>  
1401 - <description/>  
1402 - <distribute>N</distribute>  
1403 - <custom_distribution/>  
1404 - <copies>1</copies>  
1405 - <partitioning>  
1406 - <method>none</method>  
1407 - <schema_name/>  
1408 - </partitioning>  
1409 - <header>Y</header>  
1410 - <noempty>Y</noempty>  
1411 - <stoponempty>N</stoponempty>  
1412 - <filefield/>  
1413 - <sheetfield/>  
1414 - <sheetrownumfield/>  
1415 - <rownumfield/>  
1416 - <sheetfield/>  
1417 - <filefield/>  
1418 - <limit>0</limit>  
1419 - <encoding/>  
1420 - <add_to_result_filenames>Y</add_to_result_filenames>  
1421 - <accept_filenames>N</accept_filenames>  
1422 - <accept_field/>  
1423 - <accept_stepname/>  
1424 - <file>  
1425 - <name/>  
1426 - <filemask/>  
1427 - <exclude_filemask/>  
1428 - <file_required>N</file_required>  
1429 - <include_subfolders>N</include_subfolders>  
1430 - </file>  
1431 - <fields>  
1432 - </fields>  
1433 - <sheets>  
1434 - <sheet>  
1435 - <name/>  
1436 - <startrow>0</startrow>  
1437 - <startcol>0</startcol>  
1438 - </sheet>  
1439 - </sheets>  
1440 - <strict_types>N</strict_types>  
1441 - <error_ignored>N</error_ignored>  
1442 - <error_line_skipped>N</error_line_skipped>  
1443 - <bad_line_files_destination_directory/>  
1444 - <bad_line_files_extension>warning</bad_line_files_extension>  
1445 - <error_line_files_destination_directory/>  
1446 - <error_line_files_extension>error</error_line_files_extension>  
1447 - <line_number_files_destination_directory/>  
1448 - <line_number_files_extension>line</line_number_files_extension>  
1449 - <shortFileFieldName/>  
1450 - <pathFieldName/>  
1451 - <hiddenFieldName/>  
1452 - <lastModificationTimeFieldName/>  
1453 - <uriNameFieldName/>  
1454 - <rootUriNameFieldName/>  
1455 - <extensionFieldName/>  
1456 - <sizeFieldName/>  
1457 - <spreadsheet_type>JXL</spreadsheet_type>  
1458 - <cluster_schema/>  
1459 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1460 - <xloc>112</xloc>  
1461 - <yloc>44</yloc>  
1462 - <draw>Y</draw>  
1463 - </GUI>  
1464 - </step>  
1465 -  
1466 - <step>  
1467 - <name>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;1</name>  
1468 - <type>DBLookup</type>  
1469 - <description/>  
1470 - <distribute>Y</distribute>  
1471 - <custom_distribution/>  
1472 - <copies>1</copies>  
1473 - <partitioning>  
1474 - <method>none</method>  
1475 - <schema_name/>  
1476 - </partitioning>  
1477 - <connection>bus_control_variable</connection>  
1478 - <cache>N</cache>  
1479 - <cache_load_all>N</cache_load_all>  
1480 - <cache_size>0</cache_size>  
1481 - <lookup>  
1482 - <schema/>  
1483 - <table>bsth_c_car_park</table>  
1484 - <orderby/>  
1485 - <fail_on_multiple>N</fail_on_multiple>  
1486 - <eat_row_on_failure>N</eat_row_on_failure>  
1487 - <key>  
1488 - <name>tccname_</name>  
1489 - <field>park_name</field>  
1490 - <condition>&#x3d;</condition>  
1491 - <name2/>  
1492 - </key>  
1493 - <value>  
1494 - <name>id</name>  
1495 - <rename>qdzid</rename>  
1496 - <default/>  
1497 - <type>Integer</type>  
1498 - </value>  
1499 - <value>  
1500 - <name>park_code</name>  
1501 - <rename>qdzcode</rename>  
1502 - <default/>  
1503 - <type>String</type>  
1504 - </value>  
1505 - <value>  
1506 - <name>park_name</name>  
1507 - <rename>tn</rename>  
1508 - <default/>  
1509 - <type>String</type>  
1510 - </value>  
1511 - </lookup>  
1512 - <cluster_schema/>  
1513 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1514 - <xloc>755</xloc>  
1515 - <yloc>504</yloc>  
1516 - <draw>Y</draw>  
1517 - </GUI>  
1518 - </step>  
1519 -  
1520 - <step>  
1521 - <name>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;2</name>  
1522 - <type>DBLookup</type>  
1523 - <description/>  
1524 - <distribute>Y</distribute>  
1525 - <custom_distribution/>  
1526 - <copies>1</copies>  
1527 - <partitioning>  
1528 - <method>none</method>  
1529 - <schema_name/>  
1530 - </partitioning>  
1531 - <connection>bus_control_variable</connection>  
1532 - <cache>N</cache>  
1533 - <cache_load_all>N</cache_load_all>  
1534 - <cache_size>0</cache_size>  
1535 - <lookup>  
1536 - <schema/>  
1537 - <table>bsth_c_car_park</table>  
1538 - <orderby/>  
1539 - <fail_on_multiple>N</fail_on_multiple>  
1540 - <eat_row_on_failure>N</eat_row_on_failure>  
1541 - <key>  
1542 - <name>tccname_</name>  
1543 - <field>park_name</field>  
1544 - <condition>&#x3d;</condition>  
1545 - <name2/>  
1546 - </key>  
1547 - <value>  
1548 - <name>id</name>  
1549 - <rename>zdzid</rename>  
1550 - <default/>  
1551 - <type>Integer</type>  
1552 - </value>  
1553 - <value>  
1554 - <name>park_code</name>  
1555 - <rename>zdzcode</rename>  
1556 - <default/>  
1557 - <type>String</type>  
1558 - </value>  
1559 - <value>  
1560 - <name>park_name</name>  
1561 - <rename>tn</rename>  
1562 - <default/>  
1563 - <type>String</type>  
1564 - </value>  
1565 - </lookup>  
1566 - <cluster_schema/>  
1567 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1568 - <xloc>887</xloc>  
1569 - <yloc>608</yloc>  
1570 - <draw>Y</draw>  
1571 - </GUI>  
1572 - </step>  
1573 -  
1574 - <step>  
1575 - <name>&#x67e5;&#x627e;&#x51fa;&#x573a;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</name>  
1576 - <type>DBLookup</type>  
1577 - <description/>  
1578 - <distribute>Y</distribute>  
1579 - <custom_distribution/>  
1580 - <copies>1</copies>  
1581 - <partitioning>  
1582 - <method>none</method>  
1583 - <schema_name/>  
1584 - </partitioning>  
1585 - <connection>bus_control_variable</connection>  
1586 - <cache>N</cache>  
1587 - <cache_load_all>N</cache_load_all>  
1588 - <cache_size>0</cache_size>  
1589 - <lookup>  
1590 - <schema/>  
1591 - <table>bsth_c_stationroute</table>  
1592 - <orderby/>  
1593 - <fail_on_multiple>N</fail_on_multiple>  
1594 - <eat_row_on_failure>N</eat_row_on_failure>  
1595 - <key>  
1596 - <name>xlid</name>  
1597 - <field>line</field>  
1598 - <condition>&#x3d;</condition>  
1599 - <name2/>  
1600 - </key>  
1601 - <key>  
1602 - <name>zdzname</name>  
1603 - <field>station_name</field>  
1604 - <condition>LIKE</condition>  
1605 - <name2/>  
1606 - </key>  
1607 - <key>  
1608 - <name>endZdtype</name>  
1609 - <field>station_mark</field>  
1610 - <condition>&#x3d;</condition>  
1611 - <name2/>  
1612 - </key>  
1613 - <key>  
1614 - <name>destory</name>  
1615 - <field>destroy</field>  
1616 - <condition>&#x3d;</condition>  
1617 - <name2/>  
1618 - </key>  
1619 - <value>  
1620 - <name>station</name>  
1621 - <rename>zdzid</rename>  
1622 - <default/>  
1623 - <type>Integer</type>  
1624 - </value>  
1625 - <value>  
1626 - <name>directions</name>  
1627 - <rename>sxx</rename>  
1628 - <default/>  
1629 - <type>Integer</type>  
1630 - </value>  
1631 - <value>  
1632 - <name>station_code</name>  
1633 - <rename>zdzcode</rename>  
1634 - <default/>  
1635 - <type>String</type>  
1636 - </value>  
1637 - <value>  
1638 - <name>station_name</name>  
1639 - <rename>zdzname_</rename>  
1640 - <default/>  
1641 - <type>String</type>  
1642 - </value>  
1643 - </lookup>  
1644 - <cluster_schema/>  
1645 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1646 - <xloc>329</xloc>  
1647 - <yloc>505</yloc>  
1648 - <draw>Y</draw>  
1649 - </GUI>  
1650 - </step>  
1651 -  
1652 - <step>  
1653 - <name>&#x67e5;&#x627e;&#x6240;&#x6709;&#x7ebf;&#x8def;&#x4e0a;&#x4e0b;&#x884c;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>  
1654 - <type>DBLookup</type>  
1655 - <description/>  
1656 - <distribute>Y</distribute>  
1657 - <custom_distribution/>  
1658 - <copies>1</copies>  
1659 - <partitioning>  
1660 - <method>none</method>  
1661 - <schema_name/>  
1662 - </partitioning>  
1663 - <connection>bus_control_variable</connection>  
1664 - <cache>N</cache>  
1665 - <cache_load_all>N</cache_load_all>  
1666 - <cache_size>0</cache_size>  
1667 - <lookup>  
1668 - <schema/>  
1669 - <table>bsth_c_line_information</table>  
1670 - <orderby/>  
1671 - <fail_on_multiple>N</fail_on_multiple>  
1672 - <eat_row_on_failure>N</eat_row_on_failure>  
1673 - <key>  
1674 - <name>xlid</name>  
1675 - <field>line</field>  
1676 - <condition>&#x3d;</condition>  
1677 - <name2/>  
1678 - </key>  
1679 - <value>  
1680 - <name>up_mileage</name>  
1681 - <rename>up_mileage</rename>  
1682 - <default/>  
1683 - <type>Number</type>  
1684 - </value>  
1685 - <value>  
1686 - <name>down_mileage</name>  
1687 - <rename>down_mileage</rename>  
1688 - <default/>  
1689 - <type>Number</type>  
1690 - </value>  
1691 - <value>  
1692 - <name>up_travel_time</name>  
1693 - <rename>up_travel_time</rename>  
1694 - <default/>  
1695 - <type>Number</type>  
1696 - </value>  
1697 - <value>  
1698 - <name>down_travel_time</name>  
1699 - <rename>down_travel_time</rename>  
1700 - <default/>  
1701 - <type>Number</type>  
1702 - </value>  
1703 - <value>  
1704 - <name>early_start_time</name>  
1705 - <rename>early_start_time</rename>  
1706 - <default/>  
1707 - <type>String</type>  
1708 - </value>  
1709 - <value>  
1710 - <name>early_end_time</name>  
1711 - <rename>early_end_time</rename>  
1712 - <default/>  
1713 - <type>String</type>  
1714 - </value>  
1715 - <value>  
1716 - <name>early_up_time</name>  
1717 - <rename>early_up_time</rename>  
1718 - <default/>  
1719 - <type>Number</type>  
1720 - </value>  
1721 - <value>  
1722 - <name>early_down_time</name>  
1723 - <rename>early_down_time</rename>  
1724 - <default/>  
1725 - <type>Number</type>  
1726 - </value>  
1727 - <value>  
1728 - <name>late_start_time</name>  
1729 - <rename>late_start_time</rename>  
1730 - <default/>  
1731 - <type>String</type>  
1732 - </value>  
1733 - <value>  
1734 - <name>late_end_time</name>  
1735 - <rename>late_end_time</rename>  
1736 - <default/>  
1737 - <type>String</type>  
1738 - </value>  
1739 - <value>  
1740 - <name>late_up_time</name>  
1741 - <rename>late_up_time</rename>  
1742 - <default/>  
1743 - <type>Number</type>  
1744 - </value>  
1745 - <value>  
1746 - <name>late_down_time</name>  
1747 - <rename>late_down_time</rename>  
1748 - <default/>  
1749 - <type>Number</type>  
1750 - </value>  
1751 - </lookup>  
1752 - <cluster_schema/>  
1753 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1754 - <xloc>149</xloc>  
1755 - <yloc>581</yloc>  
1756 - <draw>Y</draw>  
1757 - </GUI>  
1758 - </step>  
1759 -  
1760 - <step>  
1761 - <name>&#x67e5;&#x627e;&#x65f6;&#x523b;&#x8868;&#x57fa;&#x7840;&#x4fe1;&#x606f;&#x5173;&#x8054;</name>  
1762 - <type>DBLookup</type>  
1763 - <description/>  
1764 - <distribute>Y</distribute>  
1765 - <custom_distribution/>  
1766 - <copies>1</copies>  
1767 - <partitioning>  
1768 - <method>none</method>  
1769 - <schema_name/>  
1770 - </partitioning>  
1771 - <connection>bus_control_variable</connection>  
1772 - <cache>N</cache>  
1773 - <cache_load_all>N</cache_load_all>  
1774 - <cache_size>0</cache_size>  
1775 - <lookup>  
1776 - <schema/>  
1777 - <table>bsth_c_s_ttinfo</table>  
1778 - <orderby/>  
1779 - <fail_on_multiple>N</fail_on_multiple>  
1780 - <eat_row_on_failure>N</eat_row_on_failure>  
1781 - <key>  
1782 - <name>xlid</name>  
1783 - <field>xl</field>  
1784 - <condition>&#x3d;</condition>  
1785 - <name2/>  
1786 - </key>  
1787 - <key>  
1788 - <name>ttinfoname_</name>  
1789 - <field>name</field>  
1790 - <condition>&#x3d;</condition>  
1791 - <name2/>  
1792 - </key>  
1793 - <key>  
1794 - <name>iscanceled</name>  
1795 - <field>is_cancel</field>  
1796 - <condition>&#x3d;</condition>  
1797 - <name2/>  
1798 - </key>  
1799 - <value>  
1800 - <name>id</name>  
1801 - <rename>ttid</rename>  
1802 - <default/>  
1803 - <type>Integer</type>  
1804 - </value>  
1805 - </lookup>  
1806 - <cluster_schema/>  
1807 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1808 - <xloc>1011</xloc>  
1809 - <yloc>134</yloc>  
1810 - <draw>Y</draw>  
1811 - </GUI>  
1812 - </step>  
1813 -  
1814 - <step>  
1815 - <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x5173;&#x8054;</name>  
1816 - <type>DBLookup</type>  
1817 - <description/>  
1818 - <distribute>Y</distribute>  
1819 - <custom_distribution/>  
1820 - <copies>1</copies>  
1821 - <partitioning>  
1822 - <method>none</method>  
1823 - <schema_name/>  
1824 - </partitioning>  
1825 - <connection>bus_control_variable</connection>  
1826 - <cache>N</cache>  
1827 - <cache_load_all>N</cache_load_all>  
1828 - <cache_size>0</cache_size>  
1829 - <lookup>  
1830 - <schema/>  
1831 - <table>bsth_c_line</table>  
1832 - <orderby/>  
1833 - <fail_on_multiple>N</fail_on_multiple>  
1834 - <eat_row_on_failure>N</eat_row_on_failure>  
1835 - <key>  
1836 - <name>xlname_</name>  
1837 - <field>name</field>  
1838 - <condition>&#x3d;</condition>  
1839 - <name2/>  
1840 - </key>  
1841 - <key>  
1842 - <name>iscanceled</name>  
1843 - <field>destroy</field>  
1844 - <condition>&#x3d;</condition>  
1845 - <name2/>  
1846 - </key>  
1847 - <value>  
1848 - <name>id</name>  
1849 - <rename>xlid</rename>  
1850 - <default/>  
1851 - <type>Integer</type>  
1852 - </value>  
1853 - </lookup>  
1854 - <cluster_schema/>  
1855 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1856 - <xloc>1007</xloc>  
1857 - <yloc>43</yloc>  
1858 - <draw>Y</draw>  
1859 - </GUI>  
1860 - </step>  
1861 -  
1862 - <step>  
1863 - <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x51fa;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>  
1864 - <type>DBLookup</type>  
1865 - <description/>  
1866 - <distribute>Y</distribute>  
1867 - <custom_distribution/>  
1868 - <copies>1</copies>  
1869 - <partitioning>  
1870 - <method>none</method>  
1871 - <schema_name/>  
1872 - </partitioning>  
1873 - <connection>bus_control_variable</connection>  
1874 - <cache>N</cache>  
1875 - <cache_load_all>N</cache_load_all>  
1876 - <cache_size>0</cache_size>  
1877 - <lookup>  
1878 - <schema/>  
1879 - <table>bsth_c_line_information</table>  
1880 - <orderby/>  
1881 - <fail_on_multiple>N</fail_on_multiple>  
1882 - <eat_row_on_failure>N</eat_row_on_failure>  
1883 - <key>  
1884 - <name>xlid</name>  
1885 - <field>line</field>  
1886 - <condition>&#x3d;</condition>  
1887 - <name2/>  
1888 - </key>  
1889 - <value>  
1890 - <name>up_out_timer</name>  
1891 - <rename>up_out_timer</rename>  
1892 - <default/>  
1893 - <type>Number</type>  
1894 - </value>  
1895 - <value>  
1896 - <name>up_out_mileage</name>  
1897 - <rename>up_out_mileage</rename>  
1898 - <default/>  
1899 - <type>Number</type>  
1900 - </value>  
1901 - <value>  
1902 - <name>down_out_timer</name>  
1903 - <rename>down_out_timer</rename>  
1904 - <default/>  
1905 - <type>Number</type>  
1906 - </value>  
1907 - <value>  
1908 - <name>down_out_mileage</name>  
1909 - <rename>down_out_mileage</rename>  
1910 - <default/>  
1911 - <type>Number</type>  
1912 - </value>  
1913 - </lookup>  
1914 - <cluster_schema/>  
1915 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1916 - <xloc>335</xloc>  
1917 - <yloc>763</yloc>  
1918 - <draw>Y</draw>  
1919 - </GUI>  
1920 - </step>  
1921 -  
1922 - <step>  
1923 - <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x8fdb;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>  
1924 - <type>DBLookup</type>  
1925 - <description/>  
1926 - <distribute>Y</distribute>  
1927 - <custom_distribution/>  
1928 - <copies>1</copies>  
1929 - <partitioning>  
1930 - <method>none</method>  
1931 - <schema_name/>  
1932 - </partitioning>  
1933 - <connection>bus_control_variable</connection>  
1934 - <cache>N</cache>  
1935 - <cache_load_all>N</cache_load_all>  
1936 - <cache_size>0</cache_size>  
1937 - <lookup>  
1938 - <schema/>  
1939 - <table>bsth_c_line_information</table>  
1940 - <orderby/>  
1941 - <fail_on_multiple>N</fail_on_multiple>  
1942 - <eat_row_on_failure>N</eat_row_on_failure>  
1943 - <key>  
1944 - <name>xlid</name>  
1945 - <field>line</field>  
1946 - <condition>&#x3d;</condition>  
1947 - <name2/>  
1948 - </key>  
1949 - <value>  
1950 - <name>up_in_mileage</name>  
1951 - <rename>up_in_mileage</rename>  
1952 - <default/>  
1953 - <type>Number</type>  
1954 - </value>  
1955 - <value>  
1956 - <name>up_in_timer</name>  
1957 - <rename>up_in_timer</rename>  
1958 - <default/>  
1959 - <type>Number</type>  
1960 - </value>  
1961 - <value>  
1962 - <name>down_in_mileage</name>  
1963 - <rename>down_in_mileage</rename>  
1964 - <default/>  
1965 - <type>Number</type>  
1966 - </value>  
1967 - <value>  
1968 - <name>down_in_timer</name>  
1969 - <rename>down_in_timer</rename>  
1970 - <default/>  
1971 - <type>Number</type>  
1972 - </value>  
1973 - </lookup>  
1974 - <cluster_schema/>  
1975 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1976 - <xloc>553</xloc>  
1977 - <yloc>1004</yloc>  
1978 - <draw>Y</draw>  
1979 - </GUI>  
1980 - </step>  
1981 -  
1982 - <step>  
1983 - <name>&#x67e5;&#x627e;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;</name>  
1984 - <type>DBLookup</type>  
1985 - <description/>  
1986 - <distribute>Y</distribute>  
1987 - <custom_distribution/>  
1988 - <copies>1</copies>  
1989 - <partitioning>  
1990 - <method>none</method>  
1991 - <schema_name/>  
1992 - </partitioning>  
1993 - <connection>bus_control_variable</connection>  
1994 - <cache>N</cache>  
1995 - <cache_load_all>N</cache_load_all>  
1996 - <cache_size>0</cache_size>  
1997 - <lookup>  
1998 - <schema/>  
1999 - <table>bsth_c_stationroute</table>  
2000 - <orderby/>  
2001 - <fail_on_multiple>N</fail_on_multiple>  
2002 - <eat_row_on_failure>N</eat_row_on_failure>  
2003 - <key>  
2004 - <name>xlid</name>  
2005 - <field>line</field>  
2006 - <condition>&#x3d;</condition>  
2007 - <name2/>  
2008 - </key>  
2009 - <key>  
2010 - <name>sxx</name>  
2011 - <field>directions</field>  
2012 - <condition>&#x3d;</condition>  
2013 - <name2/>  
2014 - </key>  
2015 - <key>  
2016 - <name>endZdtype</name>  
2017 - <field>station_mark</field>  
2018 - <condition>&#x3d;</condition>  
2019 - <name2/>  
2020 - </key>  
2021 - <key>  
2022 - <name>destory</name>  
2023 - <field>destroy</field>  
2024 - <condition>&#x3d;</condition>  
2025 - <name2/>  
2026 - </key>  
2027 - <value>  
2028 - <name>station_name</name>  
2029 - <rename>zdzname</rename>  
2030 - <default/>  
2031 - <type>String</type>  
2032 - </value>  
2033 - <value>  
2034 - <name>station</name>  
2035 - <rename>zdzid</rename>  
2036 - <default/>  
2037 - <type>Integer</type>  
2038 - </value>  
2039 - <value>  
2040 - <name>station_code</name>  
2041 - <rename>zdzcode</rename>  
2042 - <default/>  
2043 - <type>String</type>  
2044 - </value>  
2045 - </lookup>  
2046 - <cluster_schema/>  
2047 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2048 - <xloc>280</xloc>  
2049 - <yloc>404</yloc>  
2050 - <draw>Y</draw>  
2051 - </GUI>  
2052 - </step>  
2053 -  
2054 - <step>  
2055 - <name>&#x67e5;&#x627e;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</name>  
2056 - <type>DBLookup</type>  
2057 - <description/>  
2058 - <distribute>Y</distribute>  
2059 - <custom_distribution/>  
2060 - <copies>1</copies>  
2061 - <partitioning>  
2062 - <method>none</method>  
2063 - <schema_name/>  
2064 - </partitioning>  
2065 - <connection>bus_control_variable</connection>  
2066 - <cache>N</cache>  
2067 - <cache_load_all>N</cache_load_all>  
2068 - <cache_size>0</cache_size>  
2069 - <lookup>  
2070 - <schema/>  
2071 - <table>bsth_c_stationroute</table>  
2072 - <orderby/>  
2073 - <fail_on_multiple>N</fail_on_multiple>  
2074 - <eat_row_on_failure>N</eat_row_on_failure>  
2075 - <key>  
2076 - <name>xlid</name>  
2077 - <field>line</field>  
2078 - <condition>&#x3d;</condition>  
2079 - <name2/>  
2080 - </key>  
2081 - <key>  
2082 - <name>qdzname</name>  
2083 - <field>station_name</field>  
2084 - <condition>LIKE</condition>  
2085 - <name2/>  
2086 - </key>  
2087 - <key>  
2088 - <name>sendZdtype</name>  
2089 - <field>station_mark</field>  
2090 - <condition>&#x3d;</condition>  
2091 - <name2/>  
2092 - </key>  
2093 - <key>  
2094 - <name>destory</name>  
2095 - <field>destroy</field>  
2096 - <condition>&#x3d;</condition>  
2097 - <name2/>  
2098 - </key>  
2099 - <value>  
2100 - <name>station</name>  
2101 - <rename>qdzid</rename>  
2102 - <default/>  
2103 - <type>Integer</type>  
2104 - </value>  
2105 - <value>  
2106 - <name>directions</name>  
2107 - <rename>sxx</rename>  
2108 - <default/>  
2109 - <type>Integer</type>  
2110 - </value>  
2111 - <value>  
2112 - <name>station_code</name>  
2113 - <rename>qdzcode</rename>  
2114 - <default/>  
2115 - <type>String</type>  
2116 - </value>  
2117 - <value>  
2118 - <name>station_name</name>  
2119 - <rename>qdzname_</rename>  
2120 - <default/>  
2121 - <type>String</type>  
2122 - </value>  
2123 - </lookup>  
2124 - <cluster_schema/>  
2125 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2126 - <xloc>430</xloc>  
2127 - <yloc>403</yloc>  
2128 - <draw>Y</draw>  
2129 - </GUI>  
2130 - </step>  
2131 -  
2132 - <step>  
2133 - <name>&#x67e5;&#x627e;&#x8def;&#x724c;&#x5173;&#x8054;</name>  
2134 - <type>DBLookup</type>  
2135 - <description/>  
2136 - <distribute>Y</distribute>  
2137 - <custom_distribution/>  
2138 - <copies>1</copies>  
2139 - <partitioning>  
2140 - <method>none</method>  
2141 - <schema_name/>  
2142 - </partitioning>  
2143 - <connection>bus_control_variable</connection>  
2144 - <cache>N</cache>  
2145 - <cache_load_all>N</cache_load_all>  
2146 - <cache_size>0</cache_size>  
2147 - <lookup>  
2148 - <schema/>  
2149 - <table>bsth_c_s_gbi</table>  
2150 - <orderby/>  
2151 - <fail_on_multiple>N</fail_on_multiple>  
2152 - <eat_row_on_failure>N</eat_row_on_failure>  
2153 - <key>  
2154 - <name>xlid</name>  
2155 - <field>xl</field>  
2156 - <condition>&#x3d;</condition>  
2157 - <name2/>  
2158 - </key>  
2159 - <key>  
2160 - <name>lp</name>  
2161 - <field>lp_name</field>  
2162 - <condition>&#x3d;</condition>  
2163 - <name2/>  
2164 - </key>  
2165 - <key>  
2166 - <name>iscanceled</name>  
2167 - <field>is_cancel</field>  
2168 - <condition>&#x3d;</condition>  
2169 - <name2/>  
2170 - </key>  
2171 - <value>  
2172 - <name>id</name>  
2173 - <rename>lpid</rename>  
2174 - <default/>  
2175 - <type>Integer</type>  
2176 - </value>  
2177 - </lookup>  
2178 - <cluster_schema/>  
2179 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2180 - <xloc>1013</xloc>  
2181 - <yloc>265</yloc>  
2182 - <draw>Y</draw>  
2183 - </GUI>  
2184 - </step>  
2185 -  
2186 - <step>  
2187 - <name>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ebf;&#x8def;&#x65b9;&#x5411;</name>  
2188 - <type>DBLookup</type>  
2189 - <description/>  
2190 - <distribute>Y</distribute>  
2191 - <custom_distribution/>  
2192 - <copies>1</copies>  
2193 - <partitioning>  
2194 - <method>none</method>  
2195 - <schema_name/>  
2196 - </partitioning>  
2197 - <connection>bus_control_variable</connection>  
2198 - <cache>N</cache>  
2199 - <cache_load_all>N</cache_load_all>  
2200 - <cache_size>0</cache_size>  
2201 - <lookup>  
2202 - <schema/>  
2203 - <table>bsth_c_stationroute</table>  
2204 - <orderby/>  
2205 - <fail_on_multiple>N</fail_on_multiple>  
2206 - <eat_row_on_failure>N</eat_row_on_failure>  
2207 - <key>  
2208 - <name>xlid</name>  
2209 - <field>line</field>  
2210 - <condition>&#x3d;</condition>  
2211 - <name2/>  
2212 - </key>  
2213 - <key>  
2214 - <name>startZdtype_calcu</name>  
2215 - <field>station_mark</field>  
2216 - <condition>&#x3d;</condition>  
2217 - <name2/>  
2218 - </key>  
2219 - <key>  
2220 - <name>qdzname_calcu</name>  
2221 - <field>station_name</field>  
2222 - <condition>LIKE</condition>  
2223 - <name2/>  
2224 - </key>  
2225 - <key>  
2226 - <name>destory</name>  
2227 - <field>destroy</field>  
2228 - <condition>&#x3d;</condition>  
2229 - <name2/>  
2230 - </key>  
2231 - <value>  
2232 - <name>directions</name>  
2233 - <rename>sxx</rename>  
2234 - <default/>  
2235 - <type>String</type>  
2236 - </value>  
2237 - </lookup>  
2238 - <cluster_schema/>  
2239 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2240 - <xloc>548</xloc>  
2241 - <yloc>610</yloc>  
2242 - <draw>Y</draw>  
2243 - </GUI>  
2244 - </step>  
2245 -  
2246 - <step>  
2247 - <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>  
2248 - <type>DBLookup</type>  
2249 - <description/>  
2250 - <distribute>Y</distribute>  
2251 - <custom_distribution/>  
2252 - <copies>1</copies>  
2253 - <partitioning>  
2254 - <method>none</method>  
2255 - <schema_name/>  
2256 - </partitioning>  
2257 - <connection>bus_control_variable</connection>  
2258 - <cache>Y</cache>  
2259 - <cache_load_all>Y</cache_load_all>  
2260 - <cache_size>0</cache_size>  
2261 - <lookup>  
2262 - <schema/>  
2263 - <table>bsth_c_stationroute</table>  
2264 - <orderby/>  
2265 - <fail_on_multiple>N</fail_on_multiple>  
2266 - <eat_row_on_failure>N</eat_row_on_failure>  
2267 - <key>  
2268 - <name>xlid</name>  
2269 - <field>line</field>  
2270 - <condition>&#x3d;</condition>  
2271 - <name2/>  
2272 - </key>  
2273 - <key>  
2274 - <name>endZdtype_calcu</name>  
2275 - <field>station_mark</field>  
2276 - <condition>&#x3d;</condition>  
2277 - <name2/>  
2278 - </key>  
2279 - <key>  
2280 - <name>sxx</name>  
2281 - <field>directions</field>  
2282 - <condition>&#x3d;</condition>  
2283 - <name2/>  
2284 - </key>  
2285 - <key>  
2286 - <name>destory</name>  
2287 - <field>destroy</field>  
2288 - <condition>&#x3d;</condition>  
2289 - <name2/>  
2290 - </key>  
2291 - <value>  
2292 - <name>station_name</name>  
2293 - <rename>zdzname_calcu</rename>  
2294 - <default/>  
2295 - <type>Integer</type>  
2296 - </value>  
2297 - </lookup>  
2298 - <cluster_schema/>  
2299 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2300 - <xloc>550</xloc>  
2301 - <yloc>701</yloc>  
2302 - <draw>Y</draw>  
2303 - </GUI>  
2304 - </step>  
2305 -  
2306 - <step>  
2307 - <name>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</name>  
2308 - <type>DBLookup</type>  
2309 - <description/>  
2310 - <distribute>Y</distribute>  
2311 - <custom_distribution/>  
2312 - <copies>1</copies>  
2313 - <partitioning>  
2314 - <method>none</method>  
2315 - <schema_name/>  
2316 - </partitioning>  
2317 - <connection>bus_control_variable</connection>  
2318 - <cache>N</cache>  
2319 - <cache_load_all>N</cache_load_all>  
2320 - <cache_size>0</cache_size>  
2321 - <lookup>  
2322 - <schema/>  
2323 - <table>bsth_c_stationroute</table>  
2324 - <orderby/>  
2325 - <fail_on_multiple>N</fail_on_multiple>  
2326 - <eat_row_on_failure>N</eat_row_on_failure>  
2327 - <key>  
2328 - <name>xlid</name>  
2329 - <field>line</field>  
2330 - <condition>&#x3d;</condition>  
2331 - <name2/>  
2332 - </key>  
2333 - <key>  
2334 - <name>zdzname_calcu</name>  
2335 - <field>station_name</field>  
2336 - <condition>&#x3d;</condition>  
2337 - <name2/>  
2338 - </key>  
2339 - <key>  
2340 - <name>startZdtype_calcu</name>  
2341 - <field>station_mark</field>  
2342 - <condition>&#x3d;</condition>  
2343 - <name2/>  
2344 - </key>  
2345 - <key>  
2346 - <name>destory</name>  
2347 - <field>destroy</field>  
2348 - <condition>&#x3d;</condition>  
2349 - <name2/>  
2350 - </key>  
2351 - <value>  
2352 - <name>directions</name>  
2353 - <rename>sxx2</rename>  
2354 - <default/>  
2355 - <type>Integer</type>  
2356 - </value>  
2357 - <value>  
2358 - <name>station</name>  
2359 - <rename>qdzid</rename>  
2360 - <default/>  
2361 - <type>Integer</type>  
2362 - </value>  
2363 - <value>  
2364 - <name>station_code</name>  
2365 - <rename>qdzcode</rename>  
2366 - <default/>  
2367 - <type>String</type>  
2368 - </value>  
2369 - <value>  
2370 - <name>station_name</name>  
2371 - <rename>qname</rename>  
2372 - <default/>  
2373 - <type>String</type>  
2374 - </value>  
2375 - </lookup>  
2376 - <cluster_schema/>  
2377 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2378 - <xloc>551</xloc>  
2379 - <yloc>782</yloc>  
2380 - <draw>Y</draw>  
2381 - </GUI>  
2382 - </step>  
2383 -  
2384 - <step>  
2385 - <name>&#x6b63;&#x5e38;&#x73ed;&#x6b21;_&#x5904;&#x7406;&#x6570;&#x636e;</name>  
2386 - <type>ScriptValueMod</type>  
2387 - <description/>  
2388 - <distribute>Y</distribute>  
2389 - <custom_distribution/>  
2390 - <copies>1</copies>  
2391 - <partitioning>  
2392 - <method>none</method>  
2393 - <schema_name/>  
2394 - </partitioning>  
2395 - <compatible>N</compatible>  
2396 - <optimizationLevel>9</optimizationLevel>  
2397 - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>  
2398 - <jsScript_name>Script 1</jsScript_name>  
2399 - <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>  
2400 - </jsScript> </jsScripts> <fields> <field> <name>sendZdtype</name>  
2401 - <rename>sendZdtype</rename>  
2402 - <type>String</type>  
2403 - <length>-1</length>  
2404 - <precision>-1</precision>  
2405 - <replace>N</replace>  
2406 - </field> <field> <name>endZdtype</name>  
2407 - <rename>endZdtype</rename>  
2408 - <type>String</type>  
2409 - <length>-1</length>  
2410 - <precision>-1</precision>  
2411 - <replace>N</replace>  
2412 - </field> <field> <name>destory</name>  
2413 - <rename>destory</rename>  
2414 - <type>Integer</type>  
2415 - <length>-1</length>  
2416 - <precision>-1</precision>  
2417 - <replace>N</replace>  
2418 - </field> </fields> <cluster_schema/>  
2419 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2420 - <xloc>588</xloc>  
2421 - <yloc>403</yloc>  
2422 - <draw>Y</draw>  
2423 - </GUI>  
2424 - </step>  
2425 -  
2426 - <step>  
2427 - <name>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</name>  
2428 - <type>Dummy</type>  
2429 - <description/>  
2430 - <distribute>Y</distribute>  
2431 - <custom_distribution/>  
2432 - <copies>1</copies>  
2433 - <partitioning>  
2434 - <method>none</method>  
2435 - <schema_name/>  
2436 - </partitioning>  
2437 - <cluster_schema/>  
2438 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2439 - <xloc>725</xloc>  
2440 - <yloc>404</yloc>  
2441 - <draw>Y</draw>  
2442 - </GUI>  
2443 - </step>  
2444 -  
2445 - <step>  
2446 - <name>&#x6dfb;&#x52a0;&#x53d1;&#x8f66;&#x987a;&#x5e8f;&#x53f7;</name>  
2447 - <type>GroupBy</type>  
2448 - <description/>  
2449 - <distribute>Y</distribute>  
2450 - <custom_distribution/>  
2451 - <copies>1</copies>  
2452 - <partitioning>  
2453 - <method>none</method>  
2454 - <schema_name/>  
2455 - </partitioning>  
2456 - <all_rows>Y</all_rows>  
2457 - <ignore_aggregate>N</ignore_aggregate>  
2458 - <field_ignore/>  
2459 - <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>  
2460 - <prefix>grp</prefix>  
2461 - <add_linenr>Y</add_linenr>  
2462 - <linenr_fieldname>fcno</linenr_fieldname>  
2463 - <give_back_row>N</give_back_row>  
2464 - <group>  
2465 - <field>  
2466 - <name>lp</name>  
2467 - </field>  
2468 - </group>  
2469 - <fields>  
2470 - </fields>  
2471 - <cluster_schema/>  
2472 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2473 - <xloc>442</xloc>  
2474 - <yloc>44</yloc>  
2475 - <draw>Y</draw>  
2476 - </GUI>  
2477 - </step>  
2478 -  
2479 - <step>  
2480 - <name>&#x6dfb;&#x52a0;&#x5bf9;&#x5e94;&#x73ed;&#x6b21;&#x6570;</name>  
2481 - <type>GroupBy</type>  
2482 - <description/>  
2483 - <distribute>Y</distribute>  
2484 - <custom_distribution/>  
2485 - <copies>1</copies>  
2486 - <partitioning>  
2487 - <method>none</method>  
2488 - <schema_name/>  
2489 - </partitioning>  
2490 - <all_rows>Y</all_rows>  
2491 - <ignore_aggregate>N</ignore_aggregate>  
2492 - <field_ignore/>  
2493 - <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>  
2494 - <prefix>grp</prefix>  
2495 - <add_linenr>Y</add_linenr>  
2496 - <linenr_fieldname>bcs</linenr_fieldname>  
2497 - <give_back_row>N</give_back_row>  
2498 - <group>  
2499 - </group>  
2500 - <fields>  
2501 - </fields>  
2502 - <cluster_schema/>  
2503 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2504 - <xloc>692</xloc>  
2505 - <yloc>44</yloc>  
2506 - <draw>Y</draw>  
2507 - </GUI>  
2508 - </step>  
2509 -  
2510 - <step>  
2511 - <name>&#x73ed;&#x6b21;&#x6570;&#x636e;&#x8303;&#x5f0f;&#x5316;</name>  
2512 - <type>Normaliser</type>  
2513 - <description/>  
2514 - <distribute>Y</distribute>  
2515 - <custom_distribution/>  
2516 - <copies>1</copies>  
2517 - <partitioning>  
2518 - <method>none</method>  
2519 - <schema_name/>  
2520 - </partitioning>  
2521 - <typefield>&#x7ad9;&#x70b9;&#x540d;&#x79f0;</typefield>  
2522 - <fields> </fields> <cluster_schema/>  
2523 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2524 - <xloc>248</xloc>  
2525 - <yloc>44</yloc>  
2526 - <draw>Y</draw>  
2527 - </GUI>  
2528 - </step>  
2529 -  
2530 - <step>  
2531 - <name>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178;</name>  
2532 - <type>ValueMapper</type>  
2533 - <description/>  
2534 - <distribute>Y</distribute>  
2535 - <custom_distribution/>  
2536 - <copies>1</copies>  
2537 - <partitioning>  
2538 - <method>none</method>  
2539 - <schema_name/>  
2540 - </partitioning>  
2541 - <field_to_use>bctype</field_to_use>  
2542 - <target_field>bctype_code</target_field>  
2543 - <non_match_default>&#x672a;&#x77e5;&#x7c7b;&#x578b;</non_match_default>  
2544 - <fields>  
2545 - <field>  
2546 - <source_value>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</source_value>  
2547 - <target_value>normal</target_value>  
2548 - </field>  
2549 - <field>  
2550 - <source_value>&#x51fa;&#x573a;</source_value>  
2551 - <target_value>out</target_value>  
2552 - </field>  
2553 - <field>  
2554 - <source_value>&#x8fdb;&#x573a;</source_value>  
2555 - <target_value>in</target_value>  
2556 - </field>  
2557 - <field>  
2558 - <source_value>&#x52a0;&#x6cb9;</source_value>  
2559 - <target_value>oil</target_value>  
2560 - </field>  
2561 - <field>  
2562 - <source_value>&#x4e34;&#x52a0;</source_value>  
2563 - <target_value>temp</target_value>  
2564 - </field>  
2565 - <field>  
2566 - <source_value>&#x533a;&#x95f4;</source_value>  
2567 - <target_value>region</target_value>  
2568 - </field>  
2569 - <field>  
2570 - <source_value>&#x653e;&#x7a7a;</source_value>  
2571 - <target_value>venting</target_value>  
2572 - </field>  
2573 - <field>  
2574 - <source_value>&#x653e;&#x5927;&#x7ad9;</source_value>  
2575 - <target_value>major</target_value>  
2576 - </field>  
2577 - </fields>  
2578 - <cluster_schema/>  
2579 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2580 - <xloc>149</xloc>  
2581 - <yloc>491</yloc>  
2582 - <draw>Y</draw>  
2583 - </GUI>  
2584 - </step>  
2585 -  
2586 - <step>  
2587 - <name>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 2</name>  
2588 - <type>ValueMapper</type>  
2589 - <description/>  
2590 - <distribute>Y</distribute>  
2591 - <custom_distribution/>  
2592 - <copies>1</copies>  
2593 - <partitioning>  
2594 - <method>none</method>  
2595 - <schema_name/>  
2596 - </partitioning>  
2597 - <field_to_use>bctype</field_to_use>  
2598 - <target_field>bctype_code</target_field>  
2599 - <non_match_default>&#x672a;&#x77e5;&#x7c7b;&#x578b;</non_match_default>  
2600 - <fields>  
2601 - <field>  
2602 - <source_value>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</source_value>  
2603 - <target_value>normal</target_value>  
2604 - </field>  
2605 - <field>  
2606 - <source_value>&#x51fa;&#x573a;</source_value>  
2607 - <target_value>out</target_value>  
2608 - </field>  
2609 - <field>  
2610 - <source_value>&#x8fdb;&#x573a;</source_value>  
2611 - <target_value>in</target_value>  
2612 - </field>  
2613 - <field>  
2614 - <source_value>&#x52a0;&#x6cb9;</source_value>  
2615 - <target_value>oil</target_value>  
2616 - </field>  
2617 - <field>  
2618 - <source_value>&#x4e34;&#x52a0;</source_value>  
2619 - <target_value>temp</target_value>  
2620 - </field>  
2621 - <field>  
2622 - <source_value>&#x533a;&#x95f4;</source_value>  
2623 - <target_value>region</target_value>  
2624 - </field>  
2625 - <field>  
2626 - <source_value>&#x653e;&#x7a7a;</source_value>  
2627 - <target_value>venting</target_value>  
2628 - </field>  
2629 - <field>  
2630 - <source_value>&#x653e;&#x5927;&#x7ad9;</source_value>  
2631 - <target_value>major</target_value>  
2632 - </field>  
2633 - </fields>  
2634 - <cluster_schema/>  
2635 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2636 - <xloc>333</xloc>  
2637 - <yloc>681</yloc>  
2638 - <draw>Y</draw>  
2639 - </GUI>  
2640 - </step>  
2641 -  
2642 - <step>  
2643 - <name>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 3</name>  
2644 - <type>ValueMapper</type>  
2645 - <description/>  
2646 - <distribute>Y</distribute>  
2647 - <custom_distribution/>  
2648 - <copies>1</copies>  
2649 - <partitioning>  
2650 - <method>none</method>  
2651 - <schema_name/>  
2652 - </partitioning>  
2653 - <field_to_use>bctype</field_to_use>  
2654 - <target_field>bctype_code</target_field>  
2655 - <non_match_default>&#x672a;&#x77e5;&#x7c7b;&#x578b;</non_match_default>  
2656 - <fields>  
2657 - <field>  
2658 - <source_value>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</source_value>  
2659 - <target_value>normal</target_value>  
2660 - </field>  
2661 - <field>  
2662 - <source_value>&#x51fa;&#x573a;</source_value>  
2663 - <target_value>out</target_value>  
2664 - </field>  
2665 - <field>  
2666 - <source_value>&#x8fdb;&#x573a;</source_value>  
2667 - <target_value>in</target_value>  
2668 - </field>  
2669 - <field>  
2670 - <source_value>&#x52a0;&#x6cb9;</source_value>  
2671 - <target_value>oil</target_value>  
2672 - </field>  
2673 - <field>  
2674 - <source_value>&#x4e34;&#x52a0;</source_value>  
2675 - <target_value>temp</target_value>  
2676 - </field>  
2677 - <field>  
2678 - <source_value>&#x533a;&#x95f4;</source_value>  
2679 - <target_value>region</target_value>  
2680 - </field>  
2681 - <field>  
2682 - <source_value>&#x653e;&#x7a7a;</source_value>  
2683 - <target_value>venting</target_value>  
2684 - </field>  
2685 - <field>  
2686 - <source_value>&#x653e;&#x5927;&#x7ad9;</source_value>  
2687 - <target_value>major</target_value>  
2688 - </field>  
2689 - </fields>  
2690 - <cluster_schema/>  
2691 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2692 - <xloc>551</xloc>  
2693 - <yloc>928</yloc>  
2694 - <draw>Y</draw>  
2695 - </GUI>  
2696 - </step>  
2697 -  
2698 - <step>  
2699 - <name>&#x7c7b;&#x578b;&#x4fee;&#x6b63;</name>  
2700 - <type>SelectValues</type>  
2701 - <description/>  
2702 - <distribute>Y</distribute>  
2703 - <custom_distribution/>  
2704 - <copies>1</copies>  
2705 - <partitioning>  
2706 - <method>none</method>  
2707 - <schema_name/>  
2708 - </partitioning>  
2709 - <fields> <select_unspecified>N</select_unspecified>  
2710 - <meta> <name>jhlc</name>  
2711 - <rename>jhlc</rename>  
2712 - <type>Number</type>  
2713 - <length>-2</length>  
2714 - <precision>-2</precision>  
2715 - <conversion_mask/>  
2716 - <date_format_lenient>false</date_format_lenient>  
2717 - <date_format_locale/>  
2718 - <date_format_timezone/>  
2719 - <lenient_string_to_number>false</lenient_string_to_number>  
2720 - <encoding/>  
2721 - <decimal_symbol/>  
2722 - <grouping_symbol/>  
2723 - <currency_symbol/>  
2724 - <storage_type/>  
2725 - </meta> <meta> <name>bcsj</name>  
2726 - <rename>bcsj</rename>  
2727 - <type>Integer</type>  
2728 - <length>-2</length>  
2729 - <precision>-2</precision>  
2730 - <conversion_mask/>  
2731 - <date_format_lenient>false</date_format_lenient>  
2732 - <date_format_locale/>  
2733 - <date_format_timezone/>  
2734 - <lenient_string_to_number>false</lenient_string_to_number>  
2735 - <encoding/>  
2736 - <decimal_symbol/>  
2737 - <grouping_symbol/>  
2738 - <currency_symbol/>  
2739 - <storage_type/>  
2740 - </meta> </fields> <cluster_schema/>  
2741 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2742 - <xloc>146</xloc>  
2743 - <yloc>768</yloc>  
2744 - <draw>Y</draw>  
2745 - </GUI>  
2746 - </step>  
2747 -  
2748 - <step>  
2749 - <name>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 2</name>  
2750 - <type>SelectValues</type>  
2751 - <description/>  
2752 - <distribute>Y</distribute>  
2753 - <custom_distribution/>  
2754 - <copies>1</copies>  
2755 - <partitioning>  
2756 - <method>none</method>  
2757 - <schema_name/>  
2758 - </partitioning>  
2759 - <fields> <select_unspecified>N</select_unspecified>  
2760 - <meta> <name>out_mileage</name>  
2761 - <rename>out_mileage</rename>  
2762 - <type>Number</type>  
2763 - <length>-2</length>  
2764 - <precision>-2</precision>  
2765 - <conversion_mask/>  
2766 - <date_format_lenient>false</date_format_lenient>  
2767 - <date_format_locale/>  
2768 - <date_format_timezone/>  
2769 - <lenient_string_to_number>false</lenient_string_to_number>  
2770 - <encoding/>  
2771 - <decimal_symbol/>  
2772 - <grouping_symbol/>  
2773 - <currency_symbol/>  
2774 - <storage_type/>  
2775 - </meta> <meta> <name>out_time</name>  
2776 - <rename>out_time</rename>  
2777 - <type>Integer</type>  
2778 - <length>-2</length>  
2779 - <precision>-2</precision>  
2780 - <conversion_mask/>  
2781 - <date_format_lenient>false</date_format_lenient>  
2782 - <date_format_locale/>  
2783 - <date_format_timezone/>  
2784 - <lenient_string_to_number>false</lenient_string_to_number>  
2785 - <encoding/>  
2786 - <decimal_symbol/>  
2787 - <grouping_symbol/>  
2788 - <currency_symbol/>  
2789 - <storage_type/>  
2790 - </meta> <meta> <name>sxx</name>  
2791 - <rename>sxx</rename>  
2792 - <type>Integer</type>  
2793 - <length>-2</length>  
2794 - <precision>-2</precision>  
2795 - <conversion_mask/>  
2796 - <date_format_lenient>false</date_format_lenient>  
2797 - <date_format_locale/>  
2798 - <date_format_timezone/>  
2799 - <lenient_string_to_number>false</lenient_string_to_number>  
2800 - <encoding/>  
2801 - <decimal_symbol/>  
2802 - <grouping_symbol/>  
2803 - <currency_symbol/>  
2804 - <storage_type/>  
2805 - </meta> </fields> <cluster_schema/>  
2806 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2807 - <xloc>338</xloc>  
2808 - <yloc>1008</yloc>  
2809 - <draw>Y</draw>  
2810 - </GUI>  
2811 - </step>  
2812 -  
2813 - <step>  
2814 - <name>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 3</name>  
2815 - <type>SelectValues</type>  
2816 - <description/>  
2817 - <distribute>Y</distribute>  
2818 - <custom_distribution/>  
2819 - <copies>1</copies>  
2820 - <partitioning>  
2821 - <method>none</method>  
2822 - <schema_name/>  
2823 - </partitioning>  
2824 - <fields> <select_unspecified>N</select_unspecified>  
2825 - <meta> <name>parade_mileage</name>  
2826 - <rename>parade_mileage</rename>  
2827 - <type>Number</type>  
2828 - <length>-2</length>  
2829 - <precision>-2</precision>  
2830 - <conversion_mask/>  
2831 - <date_format_lenient>false</date_format_lenient>  
2832 - <date_format_locale/>  
2833 - <date_format_timezone/>  
2834 - <lenient_string_to_number>false</lenient_string_to_number>  
2835 - <encoding/>  
2836 - <decimal_symbol/>  
2837 - <grouping_symbol/>  
2838 - <currency_symbol/>  
2839 - <storage_type/>  
2840 - </meta> <meta> <name>parade_time</name>  
2841 - <rename>parade_time</rename>  
2842 - <type>Integer</type>  
2843 - <length>-2</length>  
2844 - <precision>-2</precision>  
2845 - <conversion_mask/>  
2846 - <date_format_lenient>false</date_format_lenient>  
2847 - <date_format_locale/>  
2848 - <date_format_timezone/>  
2849 - <lenient_string_to_number>false</lenient_string_to_number>  
2850 - <encoding/>  
2851 - <decimal_symbol/>  
2852 - <grouping_symbol/>  
2853 - <currency_symbol/>  
2854 - <storage_type/>  
2855 - </meta> <meta> <name>sxx2</name>  
2856 - <rename>sxx2</rename>  
2857 - <type>Integer</type>  
2858 - <length>-2</length>  
2859 - <precision>-2</precision>  
2860 - <conversion_mask/>  
2861 - <date_format_lenient>false</date_format_lenient>  
2862 - <date_format_locale/>  
2863 - <date_format_timezone/>  
2864 - <lenient_string_to_number>false</lenient_string_to_number>  
2865 - <encoding/>  
2866 - <decimal_symbol/>  
2867 - <grouping_symbol/>  
2868 - <currency_symbol/>  
2869 - <storage_type/>  
2870 - </meta> </fields> <cluster_schema/>  
2871 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2872 - <xloc>847</xloc>  
2873 - <yloc>1003</yloc>  
2874 - <draw>Y</draw>  
2875 - </GUI>  
2876 - </step>  
2877 -  
2878 - <step>  
2879 - <name>&#x8ba1;&#x7b97;&#x73ed;&#x6b21;&#x7c7b;&#x578b;</name>  
2880 - <type>ValueMapper</type>  
2881 - <description/>  
2882 - <distribute>Y</distribute>  
2883 - <custom_distribution/>  
2884 - <copies>1</copies>  
2885 - <partitioning>  
2886 - <method>none</method>  
2887 - <schema_name/>  
2888 - </partitioning>  
2889 - <field_to_use>qdzname</field_to_use>  
2890 - <target_field>bctype</target_field>  
2891 - <non_match_default>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</non_match_default>  
2892 - <fields>  
2893 - <field>  
2894 - <source_value>&#x51fa;&#x573a;</source_value>  
2895 - <target_value>&#x51fa;&#x573a;</target_value>  
2896 - </field>  
2897 - <field>  
2898 - <source_value>&#x8fdb;&#x573a;</source_value>  
2899 - <target_value>&#x8fdb;&#x573a;</target_value>  
2900 - </field>  
2901 - </fields>  
2902 - <cluster_schema/>  
2903 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2904 - <xloc>1014</xloc>  
2905 - <yloc>401</yloc>  
2906 - <draw>Y</draw>  
2907 - </GUI>  
2908 - </step>  
2909 -  
2910 - <step>  
2911 - <name>&#x8bb0;&#x5f55;&#x5173;&#x8054; &#x28;&#x7b1b;&#x5361;&#x5c14;&#x8f93;&#x51fa;&#x29;</name>  
2912 - <type>JoinRows</type>  
2913 - <description/>  
2914 - <distribute>Y</distribute>  
2915 - <custom_distribution/>  
2916 - <copies>1</copies>  
2917 - <partitioning>  
2918 - <method>none</method>  
2919 - <schema_name/>  
2920 - </partitioning>  
2921 - <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>  
2922 - <prefix>out</prefix>  
2923 - <cache_size>500</cache_size>  
2924 - <main/>  
2925 - <compare>  
2926 -<condition>  
2927 - <negated>N</negated>  
2928 - <leftvalue/>  
2929 - <function>&#x3d;</function>  
2930 - <rightvalue/>  
2931 - </condition>  
2932 - </compare>  
2933 - <cluster_schema/>  
2934 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2935 - <xloc>310</xloc>  
2936 - <yloc>133</yloc>  
2937 - <draw>Y</draw>  
2938 - </GUI>  
2939 - </step>  
2940 -  
2941 - <step>  
2942 - <name>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;&#xff08;&#x53d1;&#x8f66;&#x65f6;&#x95f4;&#x4e3a;&#x7a7a;&#xff09;</name>  
2943 - <type>FilterRows</type>  
2944 - <description/>  
2945 - <distribute>Y</distribute>  
2946 - <custom_distribution/>  
2947 - <copies>1</copies>  
2948 - <partitioning>  
2949 - <method>none</method>  
2950 - <schema_name/>  
2951 - </partitioning>  
2952 -<send_true_to/>  
2953 -<send_false_to/>  
2954 - <compare>  
2955 -<condition>  
2956 - <negated>N</negated>  
2957 - <leftvalue>sendtime</leftvalue>  
2958 - <function>IS NOT NULL</function>  
2959 - <rightvalue/>  
2960 - </condition>  
2961 - </compare>  
2962 - <cluster_schema/>  
2963 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2964 - <xloc>571</xloc>  
2965 - <yloc>44</yloc>  
2966 - <draw>Y</draw>  
2967 - </GUI>  
2968 - </step>  
2969 -  
2970 - <step>  
2971 - <name>&#x8fdb;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x8d77;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</name>  
2972 - <type>ScriptValueMod</type>  
2973 - <description/>  
2974 - <distribute>Y</distribute>  
2975 - <custom_distribution/>  
2976 - <copies>1</copies>  
2977 - <partitioning>  
2978 - <method>none</method>  
2979 - <schema_name/>  
2980 - </partitioning>  
2981 - <compatible>N</compatible>  
2982 - <optimizationLevel>9</optimizationLevel>  
2983 - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>  
2984 - <jsScript_name>Script 1</jsScript_name>  
2985 - <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>  
2986 - </jsScript> </jsScripts> <fields> <field> <name>qdzname_calcu</name>  
2987 - <rename>qdzname_calcu</rename>  
2988 - <type>String</type>  
2989 - <length>-1</length>  
2990 - <precision>-1</precision>  
2991 - <replace>N</replace>  
2992 - </field> <field> <name>startZdtype_calcu</name>  
2993 - <rename>startZdtype_calcu</rename>  
2994 - <type>String</type>  
2995 - <length>-1</length>  
2996 - <precision>-1</precision>  
2997 - <replace>N</replace>  
2998 - </field> <field> <name>endZdtype_calcu</name>  
2999 - <rename>endZdtype_calcu</rename>  
3000 - <type>String</type>  
3001 - <length>-1</length>  
3002 - <precision>-1</precision>  
3003 - <replace>N</replace>  
3004 - </field> <field> <name>destory</name>  
3005 - <rename>destory</rename>  
3006 - <type>Integer</type>  
3007 - <length>-1</length>  
3008 - <precision>-1</precision>  
3009 - <replace>N</replace>  
3010 - </field> </fields> <cluster_schema/>  
3011 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
3012 - <xloc>754</xloc>  
3013 - <yloc>610</yloc>  
3014 - <draw>Y</draw>  
3015 - </GUI>  
3016 - </step>  
3017 -  
3018 - <step>  
3019 - <name>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</name>  
3020 - <type>Dummy</type>  
3021 - <description/>  
3022 - <distribute>Y</distribute>  
3023 - <custom_distribution/>  
3024 - <copies>1</copies>  
3025 - <partitioning>  
3026 - <method>none</method>  
3027 - <schema_name/>  
3028 - </partitioning>  
3029 - <cluster_schema/>  
3030 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
3031 - <xloc>997</xloc>  
3032 - <yloc>606</yloc>  
3033 - <draw>Y</draw>  
3034 - </GUI>  
3035 - </step>  
3036 -  
3037 - <step_error_handling>  
3038 - <error>  
3039 - <source_step>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail</source_step>  
3040 - <target_step/>  
3041 - <is_enabled>Y</is_enabled>  
3042 - <nr_valuename>c1</nr_valuename>  
3043 - <descriptions_valuename>c2</descriptions_valuename>  
3044 - <fields_valuename>c3</fields_valuename>  
3045 - <codes_valuename>c4</codes_valuename>  
3046 - <max_errors/>  
3047 - <max_pct_errors/>  
3048 - <min_pct_rows/>  
3049 - </error>  
3050 - </step_error_handling>  
3051 - <slave-step-copy-partition-distribution>  
3052 -</slave-step-copy-partition-distribution>  
3053 - <slave_transformation>N</slave_transformation>  
3054 -  
3055 -</transformation> 1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<transformation>
  3 + <info>
  4 + <name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x5bfc;&#x5165;2</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>xlab_mysql_youle</name>
  291 + <server>101.231.124.8</server>
  292 + <type>MYSQL</type>
  293 + <access>Native</access>
  294 + <database>xlab_youle</database>
  295 + <port>45687</port>
  296 + <username>xlab-youle</username>
  297 + <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password>
  298 + <servername/>
  299 + <data_tablespace/>
  300 + <index_tablespace/>
  301 + <attributes>
  302 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  303 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  304 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  305 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  306 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  307 + <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute>
  308 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  309 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  310 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  311 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  312 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  313 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  314 + </attributes>
  315 + </connection>
  316 + <connection>
  317 + <name>xlab_mysql_youle&#xff08;&#x672c;&#x673a;&#xff09;</name>
  318 + <server>localhost</server>
  319 + <type>MYSQL</type>
  320 + <access>Native</access>
  321 + <database>xlab_youle</database>
  322 + <port>3306</port>
  323 + <username>root</username>
  324 + <password>Encrypted </password>
  325 + <servername/>
  326 + <data_tablespace/>
  327 + <index_tablespace/>
  328 + <attributes>
  329 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  330 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  331 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  332 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  333 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  334 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  335 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  336 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  337 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  338 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  339 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  340 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  341 + </attributes>
  342 + </connection>
  343 + <connection>
  344 + <name>xlab_youle</name>
  345 + <server/>
  346 + <type>MYSQL</type>
  347 + <access>JNDI</access>
  348 + <database>xlab_youle</database>
  349 + <port>1521</port>
  350 + <username/>
  351 + <password>Encrypted </password>
  352 + <servername/>
  353 + <data_tablespace/>
  354 + <index_tablespace/>
  355 + <attributes>
  356 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  357 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  358 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  359 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  360 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  361 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  362 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  363 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  364 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  365 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  366 + </attributes>
  367 + </connection>
  368 + <order>
  369 + <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>
  370 + <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>
  371 + <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>
  372 + <hop> <from>&#x6dfb;&#x52a0;&#x5bf9;&#x5e94;&#x73ed;&#x6b21;&#x6570;</from><to>&#x5904;&#x7406;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
  373 + <hop> <from>&#x5904;&#x7406;&#x6570;&#x636e;</from><to>&#x5206;&#x7ec4;&#x5404;&#x4e2a;&#x8def;&#x724c;&#x7684;&#x7ad9;</to><enabled>Y</enabled> </hop>
  374 + <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>
  375 + <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>
  376 + <hop> <from>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178;</from><to>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178;</to><enabled>Y</enabled> </hop>
  377 + <hop> <from>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 2</from><to>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 2</to><enabled>Y</enabled> </hop>
  378 + <hop> <from>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 3</from><to>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 3</to><enabled>Y</enabled> </hop>
  379 + <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>
  380 + <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>
  381 + <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>
  382 + <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>
  383 + <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>
  384 + <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>
  385 + <hop> <from>&#x67e5;&#x627e;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;</from><to>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178;</to><enabled>Y</enabled> </hop>
  386 + <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>
  387 + <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>
  388 + <hop> <from>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</from><to>&#x6b63;&#x5e38;&#x73ed;&#x6b21;_&#x5904;&#x7406;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
  389 + <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>
  390 + <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>
  391 + <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>
  392 + <hop> <from>&#x67e5;&#x627e;&#x8def;&#x724c;&#x5173;&#x8054;</from><to>&#x8ba1;&#x7b97;&#x73ed;&#x6b21;&#x7c7b;&#x578b;</to><enabled>Y</enabled> </hop>
  393 + <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>
  394 + <hop> <from>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</from><to>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;1</to><enabled>Y</enabled> </hop>
  395 + <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>
  396 + <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>
  397 + <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>
  398 + <hop> <from>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</from><to>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;2</to><enabled>Y</enabled> </hop>
  399 + <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>
  400 + <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>
  401 + <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>
  402 + <hop> <from>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</from><to>&#x6dfb;&#x52a0;&#x53d1;&#x8f66;&#x987a;&#x5e8f;&#x53f7;</to><enabled>Y</enabled> </hop>
  403 + <hop> <from>&#x5206;&#x7ec4;&#x5404;&#x4e2a;&#x8def;&#x724c;&#x7684;&#x7ad9;</from><to>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x5173;&#x8054;</to><enabled>Y</enabled> </hop>
  404 + <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>
  405 + <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>
  406 + <hop> <from>&#x8bb0;&#x5f55;&#x5173;&#x8054; &#x28;&#x7b1b;&#x5361;&#x5c14;&#x8f93;&#x51fa;&#x29;</from><to>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</to><enabled>Y</enabled> </hop>
  407 + <hop> <from>&#x7c7b;&#x578b;&#x4fee;&#x6b63;</from><to>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail</to><enabled>Y</enabled> </hop>
  408 + <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>
  409 + <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>
  410 + <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>
  411 + <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>
  412 + <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>
  413 + <hop> <from>&#x4e0a;&#x4e0b;&#x884c;NULL&#x5224;&#x5b9a;</from><to>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 2</to><enabled>Y</enabled> </hop>
  414 + <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>
  415 + <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>
  416 + <hop> <from>&#x4e0a;&#x4e0b;&#x884c;&#x5224;&#x5b9a; 2</from><to>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 3</to><enabled>Y</enabled> </hop>
  417 + <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>
  418 + </order>
  419 + <step>
  420 + <name>&#x4e0a;&#x4e0b;&#x884c;NULL&#x5224;&#x5b9a;</name>
  421 + <type>IfNull</type>
  422 + <description/>
  423 + <distribute>Y</distribute>
  424 + <custom_distribution/>
  425 + <copies>1</copies>
  426 + <partitioning>
  427 + <method>none</method>
  428 + <schema_name/>
  429 + </partitioning>
  430 + <replaceAllByValue/>
  431 + <replaceAllMask/>
  432 + <selectFields>Y</selectFields>
  433 + <selectValuesType>N</selectValuesType>
  434 + <setEmptyStringAll>N</setEmptyStringAll>
  435 + <valuetypes>
  436 + </valuetypes>
  437 + <fields>
  438 + <field>
  439 + <name>sxx</name>
  440 + <value>0</value>
  441 + <mask/>
  442 + <set_empty_string>N</set_empty_string>
  443 + </field>
  444 + </fields>
  445 + <cluster_schema/>
  446 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  447 + <xloc>335</xloc>
  448 + <yloc>938</yloc>
  449 + <draw>Y</draw>
  450 + </GUI>
  451 + </step>
  452 +
  453 + <step>
  454 + <name>&#x4e0a;&#x4e0b;&#x884c;&#x5224;&#x5b9a; 2</name>
  455 + <type>IfNull</type>
  456 + <description/>
  457 + <distribute>Y</distribute>
  458 + <custom_distribution/>
  459 + <copies>1</copies>
  460 + <partitioning>
  461 + <method>none</method>
  462 + <schema_name/>
  463 + </partitioning>
  464 + <replaceAllByValue/>
  465 + <replaceAllMask/>
  466 + <selectFields>Y</selectFields>
  467 + <selectValuesType>N</selectValuesType>
  468 + <setEmptyStringAll>N</setEmptyStringAll>
  469 + <valuetypes>
  470 + </valuetypes>
  471 + <fields>
  472 + <field>
  473 + <name>sxx2</name>
  474 + <value>0</value>
  475 + <mask/>
  476 + <set_empty_string>N</set_empty_string>
  477 + </field>
  478 + </fields>
  479 + <cluster_schema/>
  480 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  481 + <xloc>804</xloc>
  482 + <yloc>1081</yloc>
  483 + <draw>Y</draw>
  484 + </GUI>
  485 + </step>
  486 +
  487 + <step>
  488 + <name>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178;</name>
  489 + <type>ValueMapper</type>
  490 + <description/>
  491 + <distribute>Y</distribute>
  492 + <custom_distribution/>
  493 + <copies>1</copies>
  494 + <partitioning>
  495 + <method>none</method>
  496 + <schema_name/>
  497 + </partitioning>
  498 + <field_to_use>sxx</field_to_use>
  499 + <target_field>sxx_desc</target_field>
  500 + <non_match_default/>
  501 + <fields>
  502 + <field>
  503 + <source_value>0</source_value>
  504 + <target_value>&#x4e0a;&#x884c;</target_value>
  505 + </field>
  506 + <field>
  507 + <source_value>1</source_value>
  508 + <target_value>&#x4e0b;&#x884c;</target_value>
  509 + </field>
  510 + </fields>
  511 + <cluster_schema/>
  512 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  513 + <xloc>147</xloc>
  514 + <yloc>403</yloc>
  515 + <draw>Y</draw>
  516 + </GUI>
  517 + </step>
  518 +
  519 + <step>
  520 + <name>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 2</name>
  521 + <type>ValueMapper</type>
  522 + <description/>
  523 + <distribute>Y</distribute>
  524 + <custom_distribution/>
  525 + <copies>1</copies>
  526 + <partitioning>
  527 + <method>none</method>
  528 + <schema_name/>
  529 + </partitioning>
  530 + <field_to_use>sxx</field_to_use>
  531 + <target_field>sxx_desc</target_field>
  532 + <non_match_default/>
  533 + <fields>
  534 + <field>
  535 + <source_value>0</source_value>
  536 + <target_value>&#x4e0a;&#x884c;</target_value>
  537 + </field>
  538 + <field>
  539 + <source_value>1</source_value>
  540 + <target_value>&#x4e0b;&#x884c;</target_value>
  541 + </field>
  542 + </fields>
  543 + <cluster_schema/>
  544 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  545 + <xloc>331</xloc>
  546 + <yloc>598</yloc>
  547 + <draw>Y</draw>
  548 + </GUI>
  549 + </step>
  550 +
  551 + <step>
  552 + <name>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 3</name>
  553 + <type>ValueMapper</type>
  554 + <description/>
  555 + <distribute>Y</distribute>
  556 + <custom_distribution/>
  557 + <copies>1</copies>
  558 + <partitioning>
  559 + <method>none</method>
  560 + <schema_name/>
  561 + </partitioning>
  562 + <field_to_use>sxx</field_to_use>
  563 + <target_field>sxx_desc</target_field>
  564 + <non_match_default/>
  565 + <fields>
  566 + <field>
  567 + <source_value>0</source_value>
  568 + <target_value>&#x4e0a;&#x884c;</target_value>
  569 + </field>
  570 + <field>
  571 + <source_value>1</source_value>
  572 + <target_value>&#x4e0b;&#x884c;</target_value>
  573 + </field>
  574 + </fields>
  575 + <cluster_schema/>
  576 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  577 + <xloc>553</xloc>
  578 + <yloc>859</yloc>
  579 + <draw>Y</draw>
  580 + </GUI>
  581 + </step>
  582 +
  583 + <step>
  584 + <name>&#x51fa;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x7ec8;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</name>
  585 + <type>ScriptValueMod</type>
  586 + <description/>
  587 + <distribute>Y</distribute>
  588 + <custom_distribution/>
  589 + <copies>1</copies>
  590 + <partitioning>
  591 + <method>none</method>
  592 + <schema_name/>
  593 + </partitioning>
  594 + <compatible>N</compatible>
  595 + <optimizationLevel>9</optimizationLevel>
  596 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  597 + <jsScript_name>Script 1</jsScript_name>
  598 + <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>
  599 + </jsScript> </jsScripts> <fields> <field> <name>zdzname</name>
  600 + <rename>zdzname</rename>
  601 + <type>String</type>
  602 + <length>-1</length>
  603 + <precision>-1</precision>
  604 + <replace>N</replace>
  605 + </field> <field> <name>endZdtype</name>
  606 + <rename>endZdtype</rename>
  607 + <type>String</type>
  608 + <length>-1</length>
  609 + <precision>-1</precision>
  610 + <replace>N</replace>
  611 + </field> <field> <name>destory</name>
  612 + <rename>destory</rename>
  613 + <type>Integer</type>
  614 + <length>-1</length>
  615 + <precision>-1</precision>
  616 + <replace>N</replace>
  617 + </field> </fields> <cluster_schema/>
  618 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  619 + <xloc>575</xloc>
  620 + <yloc>502</yloc>
  621 + <draw>Y</draw>
  622 + </GUI>
  623 + </step>
  624 +
  625 + <step>
  626 + <name>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</name>
  627 + <type>Dummy</type>
  628 + <description/>
  629 + <distribute>Y</distribute>
  630 + <custom_distribution/>
  631 + <copies>1</copies>
  632 + <partitioning>
  633 + <method>none</method>
  634 + <schema_name/>
  635 + </partitioning>
  636 + <cluster_schema/>
  637 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  638 + <xloc>869</xloc>
  639 + <yloc>504</yloc>
  640 + <draw>Y</draw>
  641 + </GUI>
  642 + </step>
  643 +
  644 + <step>
  645 + <name>&#x5206;&#x7ec4;&#x5404;&#x4e2a;&#x8def;&#x724c;&#x7684;&#x7ad9;</name>
  646 + <type>GroupBy</type>
  647 + <description/>
  648 + <distribute>Y</distribute>
  649 + <custom_distribution/>
  650 + <copies>1</copies>
  651 + <partitioning>
  652 + <method>none</method>
  653 + <schema_name/>
  654 + </partitioning>
  655 + <all_rows>Y</all_rows>
  656 + <ignore_aggregate>N</ignore_aggregate>
  657 + <field_ignore/>
  658 + <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
  659 + <prefix>grp</prefix>
  660 + <add_linenr>Y</add_linenr>
  661 + <linenr_fieldname>gno</linenr_fieldname>
  662 + <give_back_row>N</give_back_row>
  663 + <group>
  664 + <field>
  665 + <name>lp</name>
  666 + </field>
  667 + </group>
  668 + <fields>
  669 + <field>
  670 + <aggregate>qdzgroups</aggregate>
  671 + <subject>qdzname</subject>
  672 + <type>CONCAT_STRING</type>
  673 + <valuefield>,</valuefield>
  674 + </field>
  675 + </fields>
  676 + <cluster_schema/>
  677 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  678 + <xloc>892</xloc>
  679 + <yloc>44</yloc>
  680 + <draw>Y</draw>
  681 + </GUI>
  682 + </step>
  683 +
  684 + <step>
  685 + <name>&#x5339;&#x914d;&#x4e0a;&#x4e0b;&#x884c;&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
  686 + <type>ScriptValueMod</type>
  687 + <description/>
  688 + <distribute>Y</distribute>
  689 + <custom_distribution/>
  690 + <copies>1</copies>
  691 + <partitioning>
  692 + <method>none</method>
  693 + <schema_name/>
  694 + </partitioning>
  695 + <compatible>N</compatible>
  696 + <optimizationLevel>9</optimizationLevel>
  697 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  698 + <jsScript_name>Script 1</jsScript_name>
  699 + <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>
  700 + </jsScript> </jsScripts> <fields> <field> <name>jhlc</name>
  701 + <rename>jhlc</rename>
  702 + <type>String</type>
  703 + <length>-1</length>
  704 + <precision>-1</precision>
  705 + <replace>N</replace>
  706 + </field> <field> <name>bcsj</name>
  707 + <rename>bcsj</rename>
  708 + <type>String</type>
  709 + <length>-1</length>
  710 + <precision>-1</precision>
  711 + <replace>N</replace>
  712 + </field> </fields> <cluster_schema/>
  713 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  714 + <xloc>148</xloc>
  715 + <yloc>674</yloc>
  716 + <draw>Y</draw>
  717 + </GUI>
  718 + </step>
  719 +
  720 + <step>
  721 + <name>&#x5339;&#x914d;&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
  722 + <type>ScriptValueMod</type>
  723 + <description/>
  724 + <distribute>Y</distribute>
  725 + <custom_distribution/>
  726 + <copies>1</copies>
  727 + <partitioning>
  728 + <method>none</method>
  729 + <schema_name/>
  730 + </partitioning>
  731 + <compatible>N</compatible>
  732 + <optimizationLevel>9</optimizationLevel>
  733 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  734 + <jsScript_name>Script 1</jsScript_name>
  735 + <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>
  736 + </jsScript> </jsScripts> <fields> <field> <name>out_mileage</name>
  737 + <rename>out_mileage</rename>
  738 + <type>String</type>
  739 + <length>-1</length>
  740 + <precision>-1</precision>
  741 + <replace>N</replace>
  742 + </field> <field> <name>out_time</name>
  743 + <rename>out_time</rename>
  744 + <type>String</type>
  745 + <length>-1</length>
  746 + <precision>-1</precision>
  747 + <replace>N</replace>
  748 + </field> </fields> <cluster_schema/>
  749 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  750 + <xloc>336</xloc>
  751 + <yloc>862</yloc>
  752 + <draw>Y</draw>
  753 + </GUI>
  754 + </step>
  755 +
  756 + <step>
  757 + <name>&#x5339;&#x914d;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
  758 + <type>ScriptValueMod</type>
  759 + <description/>
  760 + <distribute>Y</distribute>
  761 + <custom_distribution/>
  762 + <copies>1</copies>
  763 + <partitioning>
  764 + <method>none</method>
  765 + <schema_name/>
  766 + </partitioning>
  767 + <compatible>N</compatible>
  768 + <optimizationLevel>9</optimizationLevel>
  769 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  770 + <jsScript_name>Script 1</jsScript_name>
  771 + <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>
  772 + </jsScript> </jsScripts> <fields> <field> <name>parade_mileage</name>
  773 + <rename>parade_mileage</rename>
  774 + <type>String</type>
  775 + <length>-1</length>
  776 + <precision>-1</precision>
  777 + <replace>N</replace>
  778 + </field> <field> <name>parade_time</name>
  779 + <rename>parade_time</rename>
  780 + <type>String</type>
  781 + <length>-1</length>
  782 + <precision>-1</precision>
  783 + <replace>N</replace>
  784 + </field> </fields> <cluster_schema/>
  785 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  786 + <xloc>726</xloc>
  787 + <yloc>1005</yloc>
  788 + <draw>Y</draw>
  789 + </GUI>
  790 + </step>
  791 +
  792 + <step>
  793 + <name>&#x589e;&#x52a0;&#x65f6;&#x523b;&#x8868;&#x540d;&#x5b57;&#xff0c;&#x7ebf;&#x8def;&#x540d;&#x5b57;&#xff0c;&#x505c;&#x8f66;&#x573a;&#x540d;&#x5b57;</name>
  794 + <type>DataGrid</type>
  795 + <description/>
  796 + <distribute>Y</distribute>
  797 + <custom_distribution/>
  798 + <copies>1</copies>
  799 + <partitioning>
  800 + <method>none</method>
  801 + <schema_name/>
  802 + </partitioning>
  803 + <fields>
  804 + </fields>
  805 + <data>
  806 + <line> </line>
  807 + </data>
  808 + <cluster_schema/>
  809 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  810 + <xloc>110</xloc>
  811 + <yloc>133</yloc>
  812 + <draw>Y</draw>
  813 + </GUI>
  814 + </step>
  815 +
  816 + <step>
  817 + <name>&#x5904;&#x7406;&#x6570;&#x636e;</name>
  818 + <type>ScriptValueMod</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 + <compatible>N</compatible>
  828 + <optimizationLevel>9</optimizationLevel>
  829 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  830 + <jsScript_name>Script 1</jsScript_name>
  831 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;&#x2f;&#x2f; &#x4f7f;&#x7528;&#x6b63;&#x5219;&#x8868;&#x8fbe;&#x5f0f;&#x53bb;&#x9664;&#x7ad9;&#x70b9;&#x540d;&#x79f0;&#x53f3;&#x4fa7;&#x591a;&#x4f59;&#x7684;&#x6570;&#x5b57;&#xa;qdzname &#x3d; qdzname.replace&#x28;&#x2f;&#x28;&#x5c;d&#x2b;&#x24;&#x29;&#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>
  832 + </jsScript> </jsScripts> <fields> <field> <name>qdzname</name>
  833 + <rename>qdzname</rename>
  834 + <type>String</type>
  835 + <length>-1</length>
  836 + <precision>-1</precision>
  837 + <replace>Y</replace>
  838 + </field> <field> <name>isfb</name>
  839 + <rename>isfb</rename>
  840 + <type>Integer</type>
  841 + <length>-1</length>
  842 + <precision>-1</precision>
  843 + <replace>N</replace>
  844 + </field> <field> <name>iscanceled</name>
  845 + <rename>iscanceled</rename>
  846 + <type>Integer</type>
  847 + <length>-1</length>
  848 + <precision>-1</precision>
  849 + <replace>N</replace>
  850 + </field> <field> <name>sendtime_calcu</name>
  851 + <rename>sendtime_calcu</rename>
  852 + <type>String</type>
  853 + <length>-1</length>
  854 + <precision>-1</precision>
  855 + <replace>N</replace>
  856 + </field> <field> <name>ists</name>
  857 + <rename>ists</rename>
  858 + <type>Integer</type>
  859 + <length>-1</length>
  860 + <precision>-1</precision>
  861 + <replace>N</replace>
  862 + </field> </fields> <cluster_schema/>
  863 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  864 + <xloc>788</xloc>
  865 + <yloc>44</yloc>
  866 + <draw>Y</draw>
  867 + </GUI>
  868 + </step>
  869 +
  870 + <step>
  871 + <name>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</name>
  872 + <type>SelectValues</type>
  873 + <description/>
  874 + <distribute>Y</distribute>
  875 + <custom_distribution/>
  876 + <copies>1</copies>
  877 + <partitioning>
  878 + <method>none</method>
  879 + <schema_name/>
  880 + </partitioning>
  881 + <fields> <field> <name>&#x8def;&#x724c;</name>
  882 + <rename>lp</rename>
  883 + <length>-2</length>
  884 + <precision>-2</precision>
  885 + </field> <field> <name>&#x7ad9;&#x70b9;&#x540d;&#x79f0;</name>
  886 + <rename>qdzname</rename>
  887 + <length>-2</length>
  888 + <precision>-2</precision>
  889 + </field> <field> <name>&#x53d1;&#x8f66;&#x65f6;&#x95f4;</name>
  890 + <rename>sendtime</rename>
  891 + <length>-2</length>
  892 + <precision>-2</precision>
  893 + </field> <select_unspecified>Y</select_unspecified>
  894 + </fields> <cluster_schema/>
  895 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  896 + <xloc>444</xloc>
  897 + <yloc>131</yloc>
  898 + <draw>Y</draw>
  899 + </GUI>
  900 + </step>
  901 +
  902 + <step>
  903 + <name>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;1</name>
  904 + <type>FilterRows</type>
  905 + <description/>
  906 + <distribute>Y</distribute>
  907 + <custom_distribution/>
  908 + <copies>1</copies>
  909 + <partitioning>
  910 + <method>none</method>
  911 + <schema_name/>
  912 + </partitioning>
  913 +<send_true_to>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</send_true_to>
  914 +<send_false_to>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</send_false_to>
  915 + <compare>
  916 +<condition>
  917 + <negated>N</negated>
  918 + <leftvalue>bctype</leftvalue>
  919 + <function>&#x3d;</function>
  920 + <rightvalue/>
  921 + <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>
  922 + </compare>
  923 + <cluster_schema/>
  924 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  925 + <xloc>860</xloc>
  926 + <yloc>401</yloc>
  927 + <draw>Y</draw>
  928 + </GUI>
  929 + </step>
  930 +
  931 + <step>
  932 + <name>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</name>
  933 + <type>FilterRows</type>
  934 + <description/>
  935 + <distribute>Y</distribute>
  936 + <custom_distribution/>
  937 + <copies>1</copies>
  938 + <partitioning>
  939 + <method>none</method>
  940 + <schema_name/>
  941 + </partitioning>
  942 +<send_true_to>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</send_true_to>
  943 +<send_false_to>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</send_false_to>
  944 + <compare>
  945 +<condition>
  946 + <negated>N</negated>
  947 + <leftvalue>bctype</leftvalue>
  948 + <function>&#x3d;</function>
  949 + <rightvalue/>
  950 + <value><name>constant</name><type>String</type><text>&#x51fa;&#x573a;</text><length>-1</length><precision>-1</precision><isnull>N</isnull><mask/></value> </condition>
  951 + </compare>
  952 + <cluster_schema/>
  953 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  954 + <xloc>995</xloc>
  955 + <yloc>503</yloc>
  956 + <draw>Y</draw>
  957 + </GUI>
  958 + </step>
  959 +
  960 + <step>
  961 + <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail</name>
  962 + <type>InsertUpdate</type>
  963 + <description/>
  964 + <distribute>Y</distribute>
  965 + <custom_distribution/>
  966 + <copies>1</copies>
  967 + <partitioning>
  968 + <method>none</method>
  969 + <schema_name/>
  970 + </partitioning>
  971 + <connection>bus_control_variable</connection>
  972 + <commit>100</commit>
  973 + <update_bypassed>N</update_bypassed>
  974 + <lookup>
  975 + <schema/>
  976 + <table>bsth_c_s_ttinfo_detail</table>
  977 + <key>
  978 + <name>xlid</name>
  979 + <field>xl</field>
  980 + <condition>&#x3d;</condition>
  981 + <name2/>
  982 + </key>
  983 + <key>
  984 + <name>ttid</name>
  985 + <field>ttinfo</field>
  986 + <condition>&#x3d;</condition>
  987 + <name2/>
  988 + </key>
  989 + <key>
  990 + <name>lpid</name>
  991 + <field>lp</field>
  992 + <condition>&#x3d;</condition>
  993 + <name2/>
  994 + </key>
  995 + <key>
  996 + <name>fcno</name>
  997 + <field>fcno</field>
  998 + <condition>&#x3d;</condition>
  999 + <name2/>
  1000 + </key>
  1001 + <key>
  1002 + <name>bcs</name>
  1003 + <field>bcs</field>
  1004 + <condition>&#x3d;</condition>
  1005 + <name2/>
  1006 + </key>
  1007 + <value>
  1008 + <name>lp</name>
  1009 + <rename>lpid</rename>
  1010 + <update>Y</update>
  1011 + </value>
  1012 + <value>
  1013 + <name>bc_type</name>
  1014 + <rename>bctype_code</rename>
  1015 + <update>Y</update>
  1016 + </value>
  1017 + <value>
  1018 + <name>bcs</name>
  1019 + <rename>bcs</rename>
  1020 + <update>Y</update>
  1021 + </value>
  1022 + <value>
  1023 + <name>bcsj</name>
  1024 + <rename>bcsj</rename>
  1025 + <update>Y</update>
  1026 + </value>
  1027 + <value>
  1028 + <name>fcno</name>
  1029 + <rename>fcno</rename>
  1030 + <update>Y</update>
  1031 + </value>
  1032 + <value>
  1033 + <name>jhlc</name>
  1034 + <rename>jhlc</rename>
  1035 + <update>Y</update>
  1036 + </value>
  1037 + <value>
  1038 + <name>fcsj</name>
  1039 + <rename>sendtime_calcu</rename>
  1040 + <update>Y</update>
  1041 + </value>
  1042 + <value>
  1043 + <name>ttinfo</name>
  1044 + <rename>ttid</rename>
  1045 + <update>Y</update>
  1046 + </value>
  1047 + <value>
  1048 + <name>xl</name>
  1049 + <rename>xlid</rename>
  1050 + <update>Y</update>
  1051 + </value>
  1052 + <value>
  1053 + <name>qdz</name>
  1054 + <rename>qdzid</rename>
  1055 + <update>Y</update>
  1056 + </value>
  1057 + <value>
  1058 + <name>zdz</name>
  1059 + <rename>zdzid</rename>
  1060 + <update>Y</update>
  1061 + </value>
  1062 + <value>
  1063 + <name>xl_dir</name>
  1064 + <rename>sxx</rename>
  1065 + <update>Y</update>
  1066 + </value>
  1067 + <value>
  1068 + <name>isfb</name>
  1069 + <rename>isfb</rename>
  1070 + <update>Y</update>
  1071 + </value>
  1072 + <value>
  1073 + <name>qdz_code</name>
  1074 + <rename>qdzcode</rename>
  1075 + <update>Y</update>
  1076 + </value>
  1077 + <value>
  1078 + <name>qdz_name</name>
  1079 + <rename>qdzname_</rename>
  1080 + <update>Y</update>
  1081 + </value>
  1082 + <value>
  1083 + <name>zdz_code</name>
  1084 + <rename>zdzcode</rename>
  1085 + <update>Y</update>
  1086 + </value>
  1087 + <value>
  1088 + <name>zdz_name</name>
  1089 + <rename>zdzname</rename>
  1090 + <update>Y</update>
  1091 + </value>
  1092 + <value>
  1093 + <name>ists</name>
  1094 + <rename>ists</rename>
  1095 + <update>Y</update>
  1096 + </value>
  1097 + </lookup>
  1098 + <cluster_schema/>
  1099 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1100 + <xloc>143</xloc>
  1101 + <yloc>860</yloc>
  1102 + <draw>Y</draw>
  1103 + </GUI>
  1104 + </step>
  1105 +
  1106 + <step>
  1107 + <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail 2</name>
  1108 + <type>InsertUpdate</type>
  1109 + <description/>
  1110 + <distribute>Y</distribute>
  1111 + <custom_distribution/>
  1112 + <copies>1</copies>
  1113 + <partitioning>
  1114 + <method>none</method>
  1115 + <schema_name/>
  1116 + </partitioning>
  1117 + <connection>bus_control_variable</connection>
  1118 + <commit>100</commit>
  1119 + <update_bypassed>N</update_bypassed>
  1120 + <lookup>
  1121 + <schema/>
  1122 + <table>bsth_c_s_ttinfo_detail</table>
  1123 + <key>
  1124 + <name>xlid</name>
  1125 + <field>xl</field>
  1126 + <condition>&#x3d;</condition>
  1127 + <name2/>
  1128 + </key>
  1129 + <key>
  1130 + <name>ttid</name>
  1131 + <field>ttinfo</field>
  1132 + <condition>&#x3d;</condition>
  1133 + <name2/>
  1134 + </key>
  1135 + <key>
  1136 + <name>lpid</name>
  1137 + <field>lp</field>
  1138 + <condition>&#x3d;</condition>
  1139 + <name2/>
  1140 + </key>
  1141 + <key>
  1142 + <name>fcno</name>
  1143 + <field>fcno</field>
  1144 + <condition>&#x3d;</condition>
  1145 + <name2/>
  1146 + </key>
  1147 + <key>
  1148 + <name>bcs</name>
  1149 + <field>bcs</field>
  1150 + <condition>&#x3d;</condition>
  1151 + <name2/>
  1152 + </key>
  1153 + <value>
  1154 + <name>tcc</name>
  1155 + <rename>qdzid</rename>
  1156 + <update>Y</update>
  1157 + </value>
  1158 + <value>
  1159 + <name>zdz</name>
  1160 + <rename>zdzid</rename>
  1161 + <update>Y</update>
  1162 + </value>
  1163 + <value>
  1164 + <name>xl</name>
  1165 + <rename>xlid</rename>
  1166 + <update>Y</update>
  1167 + </value>
  1168 + <value>
  1169 + <name>ttinfo</name>
  1170 + <rename>ttid</rename>
  1171 + <update>Y</update>
  1172 + </value>
  1173 + <value>
  1174 + <name>xl_dir</name>
  1175 + <rename>sxx</rename>
  1176 + <update>Y</update>
  1177 + </value>
  1178 + <value>
  1179 + <name>lp</name>
  1180 + <rename>lpid</rename>
  1181 + <update>Y</update>
  1182 + </value>
  1183 + <value>
  1184 + <name>jhlc</name>
  1185 + <rename>out_mileage</rename>
  1186 + <update>Y</update>
  1187 + </value>
  1188 + <value>
  1189 + <name>fcsj</name>
  1190 + <rename>sendtime_calcu</rename>
  1191 + <update>Y</update>
  1192 + </value>
  1193 + <value>
  1194 + <name>bcsj</name>
  1195 + <rename>out_time</rename>
  1196 + <update>Y</update>
  1197 + </value>
  1198 + <value>
  1199 + <name>bcs</name>
  1200 + <rename>bcs</rename>
  1201 + <update>Y</update>
  1202 + </value>
  1203 + <value>
  1204 + <name>fcno</name>
  1205 + <rename>fcno</rename>
  1206 + <update>Y</update>
  1207 + </value>
  1208 + <value>
  1209 + <name>bc_type</name>
  1210 + <rename>bctype_code</rename>
  1211 + <update>Y</update>
  1212 + </value>
  1213 + <value>
  1214 + <name>isfb</name>
  1215 + <rename>isfb</rename>
  1216 + <update>Y</update>
  1217 + </value>
  1218 + <value>
  1219 + <name>qdz_code</name>
  1220 + <rename>qdzcode</rename>
  1221 + <update>Y</update>
  1222 + </value>
  1223 + <value>
  1224 + <name>qdz_name</name>
  1225 + <rename>tn</rename>
  1226 + <update>Y</update>
  1227 + </value>
  1228 + <value>
  1229 + <name>zdz_code</name>
  1230 + <rename>zdzcode</rename>
  1231 + <update>Y</update>
  1232 + </value>
  1233 + <value>
  1234 + <name>zdz_name</name>
  1235 + <rename>zdzname_</rename>
  1236 + <update>Y</update>
  1237 + </value>
  1238 + <value>
  1239 + <name>ists</name>
  1240 + <rename>ists</rename>
  1241 + <update>Y</update>
  1242 + </value>
  1243 + </lookup>
  1244 + <cluster_schema/>
  1245 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1246 + <xloc>340</xloc>
  1247 + <yloc>1087</yloc>
  1248 + <draw>Y</draw>
  1249 + </GUI>
  1250 + </step>
  1251 +
  1252 + <step>
  1253 + <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail 3</name>
  1254 + <type>InsertUpdate</type>
  1255 + <description/>
  1256 + <distribute>Y</distribute>
  1257 + <custom_distribution/>
  1258 + <copies>1</copies>
  1259 + <partitioning>
  1260 + <method>none</method>
  1261 + <schema_name/>
  1262 + </partitioning>
  1263 + <connection>bus_control_variable</connection>
  1264 + <commit>100</commit>
  1265 + <update_bypassed>N</update_bypassed>
  1266 + <lookup>
  1267 + <schema/>
  1268 + <table>bsth_c_s_ttinfo_detail</table>
  1269 + <key>
  1270 + <name>xlid</name>
  1271 + <field>xl</field>
  1272 + <condition>&#x3d;</condition>
  1273 + <name2/>
  1274 + </key>
  1275 + <key>
  1276 + <name>ttid</name>
  1277 + <field>ttinfo</field>
  1278 + <condition>&#x3d;</condition>
  1279 + <name2/>
  1280 + </key>
  1281 + <key>
  1282 + <name>lpid</name>
  1283 + <field>lp</field>
  1284 + <condition>&#x3d;</condition>
  1285 + <name2/>
  1286 + </key>
  1287 + <key>
  1288 + <name>fcno</name>
  1289 + <field>fcno</field>
  1290 + <condition>&#x3d;</condition>
  1291 + <name2/>
  1292 + </key>
  1293 + <key>
  1294 + <name>bcs</name>
  1295 + <field>bcs</field>
  1296 + <condition>&#x3d;</condition>
  1297 + <name2/>
  1298 + </key>
  1299 + <value>
  1300 + <name>fcno</name>
  1301 + <rename>fcno</rename>
  1302 + <update>Y</update>
  1303 + </value>
  1304 + <value>
  1305 + <name>bcs</name>
  1306 + <rename>bcs</rename>
  1307 + <update>Y</update>
  1308 + </value>
  1309 + <value>
  1310 + <name>xl</name>
  1311 + <rename>xlid</rename>
  1312 + <update>Y</update>
  1313 + </value>
  1314 + <value>
  1315 + <name>ttinfo</name>
  1316 + <rename>ttid</rename>
  1317 + <update>Y</update>
  1318 + </value>
  1319 + <value>
  1320 + <name>lp</name>
  1321 + <rename>lpid</rename>
  1322 + <update>Y</update>
  1323 + </value>
  1324 + <value>
  1325 + <name>bc_type</name>
  1326 + <rename>bctype_code</rename>
  1327 + <update>Y</update>
  1328 + </value>
  1329 + <value>
  1330 + <name>bcsj</name>
  1331 + <rename>parade_time</rename>
  1332 + <update>Y</update>
  1333 + </value>
  1334 + <value>
  1335 + <name>jhlc</name>
  1336 + <rename>parade_mileage</rename>
  1337 + <update>Y</update>
  1338 + </value>
  1339 + <value>
  1340 + <name>fcsj</name>
  1341 + <rename>sendtime_calcu</rename>
  1342 + <update>Y</update>
  1343 + </value>
  1344 + <value>
  1345 + <name>xl_dir</name>
  1346 + <rename>sxx2</rename>
  1347 + <update>Y</update>
  1348 + </value>
  1349 + <value>
  1350 + <name>qdz</name>
  1351 + <rename>qdzid</rename>
  1352 + <update>Y</update>
  1353 + </value>
  1354 + <value>
  1355 + <name>tcc</name>
  1356 + <rename>zdzid</rename>
  1357 + <update>Y</update>
  1358 + </value>
  1359 + <value>
  1360 + <name>isfb</name>
  1361 + <rename>isfb</rename>
  1362 + <update>Y</update>
  1363 + </value>
  1364 + <value>
  1365 + <name>qdz_code</name>
  1366 + <rename>qdzcode</rename>
  1367 + <update>Y</update>
  1368 + </value>
  1369 + <value>
  1370 + <name>qdz_name</name>
  1371 + <rename>qname</rename>
  1372 + <update>Y</update>
  1373 + </value>
  1374 + <value>
  1375 + <name>zdz_code</name>
  1376 + <rename>zdzcode</rename>
  1377 + <update>Y</update>
  1378 + </value>
  1379 + <value>
  1380 + <name>zdz_name</name>
  1381 + <rename>tn</rename>
  1382 + <update>Y</update>
  1383 + </value>
  1384 + <value>
  1385 + <name>ists</name>
  1386 + <rename>ists</rename>
  1387 + <update>Y</update>
  1388 + </value>
  1389 + </lookup>
  1390 + <cluster_schema/>
  1391 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1392 + <xloc>845</xloc>
  1393 + <yloc>899</yloc>
  1394 + <draw>Y</draw>
  1395 + </GUI>
  1396 + </step>
  1397 +
  1398 + <step>
  1399 + <name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</name>
  1400 + <type>ExcelInput</type>
  1401 + <description/>
  1402 + <distribute>N</distribute>
  1403 + <custom_distribution/>
  1404 + <copies>1</copies>
  1405 + <partitioning>
  1406 + <method>none</method>
  1407 + <schema_name/>
  1408 + </partitioning>
  1409 + <header>Y</header>
  1410 + <noempty>Y</noempty>
  1411 + <stoponempty>N</stoponempty>
  1412 + <filefield/>
  1413 + <sheetfield/>
  1414 + <sheetrownumfield/>
  1415 + <rownumfield/>
  1416 + <sheetfield/>
  1417 + <filefield/>
  1418 + <limit>0</limit>
  1419 + <encoding/>
  1420 + <add_to_result_filenames>Y</add_to_result_filenames>
  1421 + <accept_filenames>N</accept_filenames>
  1422 + <accept_field/>
  1423 + <accept_stepname/>
  1424 + <file>
  1425 + <name/>
  1426 + <filemask/>
  1427 + <exclude_filemask/>
  1428 + <file_required>N</file_required>
  1429 + <include_subfolders>N</include_subfolders>
  1430 + </file>
  1431 + <fields>
  1432 + </fields>
  1433 + <sheets>
  1434 + <sheet>
  1435 + <name/>
  1436 + <startrow>0</startrow>
  1437 + <startcol>0</startcol>
  1438 + </sheet>
  1439 + </sheets>
  1440 + <strict_types>N</strict_types>
  1441 + <error_ignored>N</error_ignored>
  1442 + <error_line_skipped>N</error_line_skipped>
  1443 + <bad_line_files_destination_directory/>
  1444 + <bad_line_files_extension>warning</bad_line_files_extension>
  1445 + <error_line_files_destination_directory/>
  1446 + <error_line_files_extension>error</error_line_files_extension>
  1447 + <line_number_files_destination_directory/>
  1448 + <line_number_files_extension>line</line_number_files_extension>
  1449 + <shortFileFieldName/>
  1450 + <pathFieldName/>
  1451 + <hiddenFieldName/>
  1452 + <lastModificationTimeFieldName/>
  1453 + <uriNameFieldName/>
  1454 + <rootUriNameFieldName/>
  1455 + <extensionFieldName/>
  1456 + <sizeFieldName/>
  1457 + <spreadsheet_type>JXL</spreadsheet_type>
  1458 + <cluster_schema/>
  1459 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1460 + <xloc>112</xloc>
  1461 + <yloc>44</yloc>
  1462 + <draw>Y</draw>
  1463 + </GUI>
  1464 + </step>
  1465 +
  1466 + <step>
  1467 + <name>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;1</name>
  1468 + <type>DBLookup</type>
  1469 + <description/>
  1470 + <distribute>Y</distribute>
  1471 + <custom_distribution/>
  1472 + <copies>1</copies>
  1473 + <partitioning>
  1474 + <method>none</method>
  1475 + <schema_name/>
  1476 + </partitioning>
  1477 + <connection>bus_control_variable</connection>
  1478 + <cache>N</cache>
  1479 + <cache_load_all>N</cache_load_all>
  1480 + <cache_size>0</cache_size>
  1481 + <lookup>
  1482 + <schema/>
  1483 + <table>bsth_c_car_park</table>
  1484 + <orderby/>
  1485 + <fail_on_multiple>N</fail_on_multiple>
  1486 + <eat_row_on_failure>N</eat_row_on_failure>
  1487 + <key>
  1488 + <name>tccname_</name>
  1489 + <field>park_name</field>
  1490 + <condition>&#x3d;</condition>
  1491 + <name2/>
  1492 + </key>
  1493 + <value>
  1494 + <name>id</name>
  1495 + <rename>qdzid</rename>
  1496 + <default/>
  1497 + <type>Integer</type>
  1498 + </value>
  1499 + <value>
  1500 + <name>park_code</name>
  1501 + <rename>qdzcode</rename>
  1502 + <default/>
  1503 + <type>String</type>
  1504 + </value>
  1505 + <value>
  1506 + <name>park_name</name>
  1507 + <rename>tn</rename>
  1508 + <default/>
  1509 + <type>String</type>
  1510 + </value>
  1511 + </lookup>
  1512 + <cluster_schema/>
  1513 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1514 + <xloc>755</xloc>
  1515 + <yloc>504</yloc>
  1516 + <draw>Y</draw>
  1517 + </GUI>
  1518 + </step>
  1519 +
  1520 + <step>
  1521 + <name>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;2</name>
  1522 + <type>DBLookup</type>
  1523 + <description/>
  1524 + <distribute>Y</distribute>
  1525 + <custom_distribution/>
  1526 + <copies>1</copies>
  1527 + <partitioning>
  1528 + <method>none</method>
  1529 + <schema_name/>
  1530 + </partitioning>
  1531 + <connection>bus_control_variable</connection>
  1532 + <cache>N</cache>
  1533 + <cache_load_all>N</cache_load_all>
  1534 + <cache_size>0</cache_size>
  1535 + <lookup>
  1536 + <schema/>
  1537 + <table>bsth_c_car_park</table>
  1538 + <orderby/>
  1539 + <fail_on_multiple>N</fail_on_multiple>
  1540 + <eat_row_on_failure>N</eat_row_on_failure>
  1541 + <key>
  1542 + <name>tccname_</name>
  1543 + <field>park_name</field>
  1544 + <condition>&#x3d;</condition>
  1545 + <name2/>
  1546 + </key>
  1547 + <value>
  1548 + <name>id</name>
  1549 + <rename>zdzid</rename>
  1550 + <default/>
  1551 + <type>Integer</type>
  1552 + </value>
  1553 + <value>
  1554 + <name>park_code</name>
  1555 + <rename>zdzcode</rename>
  1556 + <default/>
  1557 + <type>String</type>
  1558 + </value>
  1559 + <value>
  1560 + <name>park_name</name>
  1561 + <rename>tn</rename>
  1562 + <default/>
  1563 + <type>String</type>
  1564 + </value>
  1565 + </lookup>
  1566 + <cluster_schema/>
  1567 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1568 + <xloc>887</xloc>
  1569 + <yloc>608</yloc>
  1570 + <draw>Y</draw>
  1571 + </GUI>
  1572 + </step>
  1573 +
  1574 + <step>
  1575 + <name>&#x67e5;&#x627e;&#x51fa;&#x573a;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</name>
  1576 + <type>DBLookup</type>
  1577 + <description/>
  1578 + <distribute>Y</distribute>
  1579 + <custom_distribution/>
  1580 + <copies>1</copies>
  1581 + <partitioning>
  1582 + <method>none</method>
  1583 + <schema_name/>
  1584 + </partitioning>
  1585 + <connection>bus_control_variable</connection>
  1586 + <cache>N</cache>
  1587 + <cache_load_all>N</cache_load_all>
  1588 + <cache_size>0</cache_size>
  1589 + <lookup>
  1590 + <schema/>
  1591 + <table>bsth_c_stationroute</table>
  1592 + <orderby/>
  1593 + <fail_on_multiple>N</fail_on_multiple>
  1594 + <eat_row_on_failure>N</eat_row_on_failure>
  1595 + <key>
  1596 + <name>xlid</name>
  1597 + <field>line</field>
  1598 + <condition>&#x3d;</condition>
  1599 + <name2/>
  1600 + </key>
  1601 + <key>
  1602 + <name>zdzname</name>
  1603 + <field>station_name</field>
  1604 + <condition>LIKE</condition>
  1605 + <name2/>
  1606 + </key>
  1607 + <key>
  1608 + <name>endZdtype</name>
  1609 + <field>station_mark</field>
  1610 + <condition>&#x3d;</condition>
  1611 + <name2/>
  1612 + </key>
  1613 + <key>
  1614 + <name>destory</name>
  1615 + <field>destroy</field>
  1616 + <condition>&#x3d;</condition>
  1617 + <name2/>
  1618 + </key>
  1619 + <value>
  1620 + <name>station</name>
  1621 + <rename>zdzid</rename>
  1622 + <default/>
  1623 + <type>Integer</type>
  1624 + </value>
  1625 + <value>
  1626 + <name>directions</name>
  1627 + <rename>sxx</rename>
  1628 + <default/>
  1629 + <type>Integer</type>
  1630 + </value>
  1631 + <value>
  1632 + <name>station_code</name>
  1633 + <rename>zdzcode</rename>
  1634 + <default/>
  1635 + <type>String</type>
  1636 + </value>
  1637 + <value>
  1638 + <name>station_name</name>
  1639 + <rename>zdzname_</rename>
  1640 + <default/>
  1641 + <type>String</type>
  1642 + </value>
  1643 + </lookup>
  1644 + <cluster_schema/>
  1645 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1646 + <xloc>329</xloc>
  1647 + <yloc>505</yloc>
  1648 + <draw>Y</draw>
  1649 + </GUI>
  1650 + </step>
  1651 +
  1652 + <step>
  1653 + <name>&#x67e5;&#x627e;&#x6240;&#x6709;&#x7ebf;&#x8def;&#x4e0a;&#x4e0b;&#x884c;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
  1654 + <type>DBLookup</type>
  1655 + <description/>
  1656 + <distribute>Y</distribute>
  1657 + <custom_distribution/>
  1658 + <copies>1</copies>
  1659 + <partitioning>
  1660 + <method>none</method>
  1661 + <schema_name/>
  1662 + </partitioning>
  1663 + <connection>bus_control_variable</connection>
  1664 + <cache>N</cache>
  1665 + <cache_load_all>N</cache_load_all>
  1666 + <cache_size>0</cache_size>
  1667 + <lookup>
  1668 + <schema/>
  1669 + <table>bsth_c_line_information</table>
  1670 + <orderby/>
  1671 + <fail_on_multiple>N</fail_on_multiple>
  1672 + <eat_row_on_failure>N</eat_row_on_failure>
  1673 + <key>
  1674 + <name>xlid</name>
  1675 + <field>line</field>
  1676 + <condition>&#x3d;</condition>
  1677 + <name2/>
  1678 + </key>
  1679 + <value>
  1680 + <name>up_mileage</name>
  1681 + <rename>up_mileage</rename>
  1682 + <default/>
  1683 + <type>Number</type>
  1684 + </value>
  1685 + <value>
  1686 + <name>down_mileage</name>
  1687 + <rename>down_mileage</rename>
  1688 + <default/>
  1689 + <type>Number</type>
  1690 + </value>
  1691 + <value>
  1692 + <name>up_travel_time</name>
  1693 + <rename>up_travel_time</rename>
  1694 + <default/>
  1695 + <type>Number</type>
  1696 + </value>
  1697 + <value>
  1698 + <name>down_travel_time</name>
  1699 + <rename>down_travel_time</rename>
  1700 + <default/>
  1701 + <type>Number</type>
  1702 + </value>
  1703 + <value>
  1704 + <name>early_start_time</name>
  1705 + <rename>early_start_time</rename>
  1706 + <default/>
  1707 + <type>String</type>
  1708 + </value>
  1709 + <value>
  1710 + <name>early_end_time</name>
  1711 + <rename>early_end_time</rename>
  1712 + <default/>
  1713 + <type>String</type>
  1714 + </value>
  1715 + <value>
  1716 + <name>early_up_time</name>
  1717 + <rename>early_up_time</rename>
  1718 + <default/>
  1719 + <type>Number</type>
  1720 + </value>
  1721 + <value>
  1722 + <name>early_down_time</name>
  1723 + <rename>early_down_time</rename>
  1724 + <default/>
  1725 + <type>Number</type>
  1726 + </value>
  1727 + <value>
  1728 + <name>late_start_time</name>
  1729 + <rename>late_start_time</rename>
  1730 + <default/>
  1731 + <type>String</type>
  1732 + </value>
  1733 + <value>
  1734 + <name>late_end_time</name>
  1735 + <rename>late_end_time</rename>
  1736 + <default/>
  1737 + <type>String</type>
  1738 + </value>
  1739 + <value>
  1740 + <name>late_up_time</name>
  1741 + <rename>late_up_time</rename>
  1742 + <default/>
  1743 + <type>Number</type>
  1744 + </value>
  1745 + <value>
  1746 + <name>late_down_time</name>
  1747 + <rename>late_down_time</rename>
  1748 + <default/>
  1749 + <type>Number</type>
  1750 + </value>
  1751 + </lookup>
  1752 + <cluster_schema/>
  1753 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1754 + <xloc>149</xloc>
  1755 + <yloc>581</yloc>
  1756 + <draw>Y</draw>
  1757 + </GUI>
  1758 + </step>
  1759 +
  1760 + <step>
  1761 + <name>&#x67e5;&#x627e;&#x65f6;&#x523b;&#x8868;&#x57fa;&#x7840;&#x4fe1;&#x606f;&#x5173;&#x8054;</name>
  1762 + <type>DBLookup</type>
  1763 + <description/>
  1764 + <distribute>Y</distribute>
  1765 + <custom_distribution/>
  1766 + <copies>1</copies>
  1767 + <partitioning>
  1768 + <method>none</method>
  1769 + <schema_name/>
  1770 + </partitioning>
  1771 + <connection>bus_control_variable</connection>
  1772 + <cache>N</cache>
  1773 + <cache_load_all>N</cache_load_all>
  1774 + <cache_size>0</cache_size>
  1775 + <lookup>
  1776 + <schema/>
  1777 + <table>bsth_c_s_ttinfo</table>
  1778 + <orderby/>
  1779 + <fail_on_multiple>N</fail_on_multiple>
  1780 + <eat_row_on_failure>N</eat_row_on_failure>
  1781 + <key>
  1782 + <name>xlid</name>
  1783 + <field>xl</field>
  1784 + <condition>&#x3d;</condition>
  1785 + <name2/>
  1786 + </key>
  1787 + <key>
  1788 + <name>ttinfoname_</name>
  1789 + <field>name</field>
  1790 + <condition>&#x3d;</condition>
  1791 + <name2/>
  1792 + </key>
  1793 + <key>
  1794 + <name>iscanceled</name>
  1795 + <field>is_cancel</field>
  1796 + <condition>&#x3d;</condition>
  1797 + <name2/>
  1798 + </key>
  1799 + <value>
  1800 + <name>id</name>
  1801 + <rename>ttid</rename>
  1802 + <default/>
  1803 + <type>Integer</type>
  1804 + </value>
  1805 + </lookup>
  1806 + <cluster_schema/>
  1807 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1808 + <xloc>1011</xloc>
  1809 + <yloc>134</yloc>
  1810 + <draw>Y</draw>
  1811 + </GUI>
  1812 + </step>
  1813 +
  1814 + <step>
  1815 + <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x5173;&#x8054;</name>
  1816 + <type>DBLookup</type>
  1817 + <description/>
  1818 + <distribute>Y</distribute>
  1819 + <custom_distribution/>
  1820 + <copies>1</copies>
  1821 + <partitioning>
  1822 + <method>none</method>
  1823 + <schema_name/>
  1824 + </partitioning>
  1825 + <connection>bus_control_variable</connection>
  1826 + <cache>N</cache>
  1827 + <cache_load_all>N</cache_load_all>
  1828 + <cache_size>0</cache_size>
  1829 + <lookup>
  1830 + <schema/>
  1831 + <table>bsth_c_line</table>
  1832 + <orderby/>
  1833 + <fail_on_multiple>N</fail_on_multiple>
  1834 + <eat_row_on_failure>N</eat_row_on_failure>
  1835 + <key>
  1836 + <name>xlname_</name>
  1837 + <field>name</field>
  1838 + <condition>&#x3d;</condition>
  1839 + <name2/>
  1840 + </key>
  1841 + <key>
  1842 + <name>iscanceled</name>
  1843 + <field>destroy</field>
  1844 + <condition>&#x3d;</condition>
  1845 + <name2/>
  1846 + </key>
  1847 + <value>
  1848 + <name>id</name>
  1849 + <rename>xlid</rename>
  1850 + <default/>
  1851 + <type>Integer</type>
  1852 + </value>
  1853 + </lookup>
  1854 + <cluster_schema/>
  1855 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1856 + <xloc>1007</xloc>
  1857 + <yloc>43</yloc>
  1858 + <draw>Y</draw>
  1859 + </GUI>
  1860 + </step>
  1861 +
  1862 + <step>
  1863 + <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x51fa;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
  1864 + <type>DBLookup</type>
  1865 + <description/>
  1866 + <distribute>Y</distribute>
  1867 + <custom_distribution/>
  1868 + <copies>1</copies>
  1869 + <partitioning>
  1870 + <method>none</method>
  1871 + <schema_name/>
  1872 + </partitioning>
  1873 + <connection>bus_control_variable</connection>
  1874 + <cache>N</cache>
  1875 + <cache_load_all>N</cache_load_all>
  1876 + <cache_size>0</cache_size>
  1877 + <lookup>
  1878 + <schema/>
  1879 + <table>bsth_c_line_information</table>
  1880 + <orderby/>
  1881 + <fail_on_multiple>N</fail_on_multiple>
  1882 + <eat_row_on_failure>N</eat_row_on_failure>
  1883 + <key>
  1884 + <name>xlid</name>
  1885 + <field>line</field>
  1886 + <condition>&#x3d;</condition>
  1887 + <name2/>
  1888 + </key>
  1889 + <value>
  1890 + <name>up_out_timer</name>
  1891 + <rename>up_out_timer</rename>
  1892 + <default/>
  1893 + <type>Number</type>
  1894 + </value>
  1895 + <value>
  1896 + <name>up_out_mileage</name>
  1897 + <rename>up_out_mileage</rename>
  1898 + <default/>
  1899 + <type>Number</type>
  1900 + </value>
  1901 + <value>
  1902 + <name>down_out_timer</name>
  1903 + <rename>down_out_timer</rename>
  1904 + <default/>
  1905 + <type>Number</type>
  1906 + </value>
  1907 + <value>
  1908 + <name>down_out_mileage</name>
  1909 + <rename>down_out_mileage</rename>
  1910 + <default/>
  1911 + <type>Number</type>
  1912 + </value>
  1913 + </lookup>
  1914 + <cluster_schema/>
  1915 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1916 + <xloc>335</xloc>
  1917 + <yloc>763</yloc>
  1918 + <draw>Y</draw>
  1919 + </GUI>
  1920 + </step>
  1921 +
  1922 + <step>
  1923 + <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x8fdb;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
  1924 + <type>DBLookup</type>
  1925 + <description/>
  1926 + <distribute>Y</distribute>
  1927 + <custom_distribution/>
  1928 + <copies>1</copies>
  1929 + <partitioning>
  1930 + <method>none</method>
  1931 + <schema_name/>
  1932 + </partitioning>
  1933 + <connection>bus_control_variable</connection>
  1934 + <cache>N</cache>
  1935 + <cache_load_all>N</cache_load_all>
  1936 + <cache_size>0</cache_size>
  1937 + <lookup>
  1938 + <schema/>
  1939 + <table>bsth_c_line_information</table>
  1940 + <orderby/>
  1941 + <fail_on_multiple>N</fail_on_multiple>
  1942 + <eat_row_on_failure>N</eat_row_on_failure>
  1943 + <key>
  1944 + <name>xlid</name>
  1945 + <field>line</field>
  1946 + <condition>&#x3d;</condition>
  1947 + <name2/>
  1948 + </key>
  1949 + <value>
  1950 + <name>up_in_mileage</name>
  1951 + <rename>up_in_mileage</rename>
  1952 + <default/>
  1953 + <type>Number</type>
  1954 + </value>
  1955 + <value>
  1956 + <name>up_in_timer</name>
  1957 + <rename>up_in_timer</rename>
  1958 + <default/>
  1959 + <type>Number</type>
  1960 + </value>
  1961 + <value>
  1962 + <name>down_in_mileage</name>
  1963 + <rename>down_in_mileage</rename>
  1964 + <default/>
  1965 + <type>Number</type>
  1966 + </value>
  1967 + <value>
  1968 + <name>down_in_timer</name>
  1969 + <rename>down_in_timer</rename>
  1970 + <default/>
  1971 + <type>Number</type>
  1972 + </value>
  1973 + </lookup>
  1974 + <cluster_schema/>
  1975 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1976 + <xloc>553</xloc>
  1977 + <yloc>1004</yloc>
  1978 + <draw>Y</draw>
  1979 + </GUI>
  1980 + </step>
  1981 +
  1982 + <step>
  1983 + <name>&#x67e5;&#x627e;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;</name>
  1984 + <type>DBLookup</type>
  1985 + <description/>
  1986 + <distribute>Y</distribute>
  1987 + <custom_distribution/>
  1988 + <copies>1</copies>
  1989 + <partitioning>
  1990 + <method>none</method>
  1991 + <schema_name/>
  1992 + </partitioning>
  1993 + <connection>bus_control_variable</connection>
  1994 + <cache>N</cache>
  1995 + <cache_load_all>N</cache_load_all>
  1996 + <cache_size>0</cache_size>
  1997 + <lookup>
  1998 + <schema/>
  1999 + <table>bsth_c_stationroute</table>
  2000 + <orderby/>
  2001 + <fail_on_multiple>N</fail_on_multiple>
  2002 + <eat_row_on_failure>N</eat_row_on_failure>
  2003 + <key>
  2004 + <name>xlid</name>
  2005 + <field>line</field>
  2006 + <condition>&#x3d;</condition>
  2007 + <name2/>
  2008 + </key>
  2009 + <key>
  2010 + <name>sxx</name>
  2011 + <field>directions</field>
  2012 + <condition>&#x3d;</condition>
  2013 + <name2/>
  2014 + </key>
  2015 + <key>
  2016 + <name>endZdtype</name>
  2017 + <field>station_mark</field>
  2018 + <condition>&#x3d;</condition>
  2019 + <name2/>
  2020 + </key>
  2021 + <key>
  2022 + <name>destory</name>
  2023 + <field>destroy</field>
  2024 + <condition>&#x3d;</condition>
  2025 + <name2/>
  2026 + </key>
  2027 + <value>
  2028 + <name>station_name</name>
  2029 + <rename>zdzname</rename>
  2030 + <default/>
  2031 + <type>String</type>
  2032 + </value>
  2033 + <value>
  2034 + <name>station</name>
  2035 + <rename>zdzid</rename>
  2036 + <default/>
  2037 + <type>Integer</type>
  2038 + </value>
  2039 + <value>
  2040 + <name>station_code</name>
  2041 + <rename>zdzcode</rename>
  2042 + <default/>
  2043 + <type>String</type>
  2044 + </value>
  2045 + </lookup>
  2046 + <cluster_schema/>
  2047 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2048 + <xloc>280</xloc>
  2049 + <yloc>404</yloc>
  2050 + <draw>Y</draw>
  2051 + </GUI>
  2052 + </step>
  2053 +
  2054 + <step>
  2055 + <name>&#x67e5;&#x627e;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</name>
  2056 + <type>DBLookup</type>
  2057 + <description/>
  2058 + <distribute>Y</distribute>
  2059 + <custom_distribution/>
  2060 + <copies>1</copies>
  2061 + <partitioning>
  2062 + <method>none</method>
  2063 + <schema_name/>
  2064 + </partitioning>
  2065 + <connection>bus_control_variable</connection>
  2066 + <cache>N</cache>
  2067 + <cache_load_all>N</cache_load_all>
  2068 + <cache_size>0</cache_size>
  2069 + <lookup>
  2070 + <schema/>
  2071 + <table>bsth_c_stationroute</table>
  2072 + <orderby/>
  2073 + <fail_on_multiple>N</fail_on_multiple>
  2074 + <eat_row_on_failure>N</eat_row_on_failure>
  2075 + <key>
  2076 + <name>xlid</name>
  2077 + <field>line</field>
  2078 + <condition>&#x3d;</condition>
  2079 + <name2/>
  2080 + </key>
  2081 + <key>
  2082 + <name>qdzname</name>
  2083 + <field>station_name</field>
  2084 + <condition>LIKE</condition>
  2085 + <name2/>
  2086 + </key>
  2087 + <key>
  2088 + <name>sendZdtype</name>
  2089 + <field>station_mark</field>
  2090 + <condition>&#x3d;</condition>
  2091 + <name2/>
  2092 + </key>
  2093 + <key>
  2094 + <name>destory</name>
  2095 + <field>destroy</field>
  2096 + <condition>&#x3d;</condition>
  2097 + <name2/>
  2098 + </key>
  2099 + <value>
  2100 + <name>station</name>
  2101 + <rename>qdzid</rename>
  2102 + <default/>
  2103 + <type>Integer</type>
  2104 + </value>
  2105 + <value>
  2106 + <name>directions</name>
  2107 + <rename>sxx</rename>
  2108 + <default/>
  2109 + <type>Integer</type>
  2110 + </value>
  2111 + <value>
  2112 + <name>station_code</name>
  2113 + <rename>qdzcode</rename>
  2114 + <default/>
  2115 + <type>String</type>
  2116 + </value>
  2117 + <value>
  2118 + <name>station_name</name>
  2119 + <rename>qdzname_</rename>
  2120 + <default/>
  2121 + <type>String</type>
  2122 + </value>
  2123 + </lookup>
  2124 + <cluster_schema/>
  2125 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2126 + <xloc>430</xloc>
  2127 + <yloc>403</yloc>
  2128 + <draw>Y</draw>
  2129 + </GUI>
  2130 + </step>
  2131 +
  2132 + <step>
  2133 + <name>&#x67e5;&#x627e;&#x8def;&#x724c;&#x5173;&#x8054;</name>
  2134 + <type>DBLookup</type>
  2135 + <description/>
  2136 + <distribute>Y</distribute>
  2137 + <custom_distribution/>
  2138 + <copies>1</copies>
  2139 + <partitioning>
  2140 + <method>none</method>
  2141 + <schema_name/>
  2142 + </partitioning>
  2143 + <connection>bus_control_variable</connection>
  2144 + <cache>N</cache>
  2145 + <cache_load_all>N</cache_load_all>
  2146 + <cache_size>0</cache_size>
  2147 + <lookup>
  2148 + <schema/>
  2149 + <table>bsth_c_s_gbi</table>
  2150 + <orderby/>
  2151 + <fail_on_multiple>N</fail_on_multiple>
  2152 + <eat_row_on_failure>N</eat_row_on_failure>
  2153 + <key>
  2154 + <name>xlid</name>
  2155 + <field>xl</field>
  2156 + <condition>&#x3d;</condition>
  2157 + <name2/>
  2158 + </key>
  2159 + <key>
  2160 + <name>lp</name>
  2161 + <field>lp_name</field>
  2162 + <condition>&#x3d;</condition>
  2163 + <name2/>
  2164 + </key>
  2165 + <key>
  2166 + <name>iscanceled</name>
  2167 + <field>is_cancel</field>
  2168 + <condition>&#x3d;</condition>
  2169 + <name2/>
  2170 + </key>
  2171 + <value>
  2172 + <name>id</name>
  2173 + <rename>lpid</rename>
  2174 + <default/>
  2175 + <type>Integer</type>
  2176 + </value>
  2177 + </lookup>
  2178 + <cluster_schema/>
  2179 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2180 + <xloc>1013</xloc>
  2181 + <yloc>265</yloc>
  2182 + <draw>Y</draw>
  2183 + </GUI>
  2184 + </step>
  2185 +
  2186 + <step>
  2187 + <name>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ebf;&#x8def;&#x65b9;&#x5411;</name>
  2188 + <type>DBLookup</type>
  2189 + <description/>
  2190 + <distribute>Y</distribute>
  2191 + <custom_distribution/>
  2192 + <copies>1</copies>
  2193 + <partitioning>
  2194 + <method>none</method>
  2195 + <schema_name/>
  2196 + </partitioning>
  2197 + <connection>bus_control_variable</connection>
  2198 + <cache>N</cache>
  2199 + <cache_load_all>N</cache_load_all>
  2200 + <cache_size>0</cache_size>
  2201 + <lookup>
  2202 + <schema/>
  2203 + <table>bsth_c_stationroute</table>
  2204 + <orderby/>
  2205 + <fail_on_multiple>N</fail_on_multiple>
  2206 + <eat_row_on_failure>N</eat_row_on_failure>
  2207 + <key>
  2208 + <name>xlid</name>
  2209 + <field>line</field>
  2210 + <condition>&#x3d;</condition>
  2211 + <name2/>
  2212 + </key>
  2213 + <key>
  2214 + <name>startZdtype_calcu</name>
  2215 + <field>station_mark</field>
  2216 + <condition>&#x3d;</condition>
  2217 + <name2/>
  2218 + </key>
  2219 + <key>
  2220 + <name>qdzname_calcu</name>
  2221 + <field>station_name</field>
  2222 + <condition>LIKE</condition>
  2223 + <name2/>
  2224 + </key>
  2225 + <key>
  2226 + <name>destory</name>
  2227 + <field>destroy</field>
  2228 + <condition>&#x3d;</condition>
  2229 + <name2/>
  2230 + </key>
  2231 + <value>
  2232 + <name>directions</name>
  2233 + <rename>sxx</rename>
  2234 + <default/>
  2235 + <type>String</type>
  2236 + </value>
  2237 + </lookup>
  2238 + <cluster_schema/>
  2239 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2240 + <xloc>548</xloc>
  2241 + <yloc>610</yloc>
  2242 + <draw>Y</draw>
  2243 + </GUI>
  2244 + </step>
  2245 +
  2246 + <step>
  2247 + <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>
  2248 + <type>DBLookup</type>
  2249 + <description/>
  2250 + <distribute>Y</distribute>
  2251 + <custom_distribution/>
  2252 + <copies>1</copies>
  2253 + <partitioning>
  2254 + <method>none</method>
  2255 + <schema_name/>
  2256 + </partitioning>
  2257 + <connection>bus_control_variable</connection>
  2258 + <cache>Y</cache>
  2259 + <cache_load_all>Y</cache_load_all>
  2260 + <cache_size>0</cache_size>
  2261 + <lookup>
  2262 + <schema/>
  2263 + <table>bsth_c_stationroute</table>
  2264 + <orderby/>
  2265 + <fail_on_multiple>N</fail_on_multiple>
  2266 + <eat_row_on_failure>N</eat_row_on_failure>
  2267 + <key>
  2268 + <name>xlid</name>
  2269 + <field>line</field>
  2270 + <condition>&#x3d;</condition>
  2271 + <name2/>
  2272 + </key>
  2273 + <key>
  2274 + <name>endZdtype_calcu</name>
  2275 + <field>station_mark</field>
  2276 + <condition>&#x3d;</condition>
  2277 + <name2/>
  2278 + </key>
  2279 + <key>
  2280 + <name>sxx</name>
  2281 + <field>directions</field>
  2282 + <condition>&#x3d;</condition>
  2283 + <name2/>
  2284 + </key>
  2285 + <key>
  2286 + <name>destory</name>
  2287 + <field>destroy</field>
  2288 + <condition>&#x3d;</condition>
  2289 + <name2/>
  2290 + </key>
  2291 + <value>
  2292 + <name>station_name</name>
  2293 + <rename>zdzname_calcu</rename>
  2294 + <default/>
  2295 + <type>Integer</type>
  2296 + </value>
  2297 + </lookup>
  2298 + <cluster_schema/>
  2299 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2300 + <xloc>550</xloc>
  2301 + <yloc>701</yloc>
  2302 + <draw>Y</draw>
  2303 + </GUI>
  2304 + </step>
  2305 +
  2306 + <step>
  2307 + <name>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</name>
  2308 + <type>DBLookup</type>
  2309 + <description/>
  2310 + <distribute>Y</distribute>
  2311 + <custom_distribution/>
  2312 + <copies>1</copies>
  2313 + <partitioning>
  2314 + <method>none</method>
  2315 + <schema_name/>
  2316 + </partitioning>
  2317 + <connection>bus_control_variable</connection>
  2318 + <cache>N</cache>
  2319 + <cache_load_all>N</cache_load_all>
  2320 + <cache_size>0</cache_size>
  2321 + <lookup>
  2322 + <schema/>
  2323 + <table>bsth_c_stationroute</table>
  2324 + <orderby/>
  2325 + <fail_on_multiple>N</fail_on_multiple>
  2326 + <eat_row_on_failure>N</eat_row_on_failure>
  2327 + <key>
  2328 + <name>xlid</name>
  2329 + <field>line</field>
  2330 + <condition>&#x3d;</condition>
  2331 + <name2/>
  2332 + </key>
  2333 + <key>
  2334 + <name>zdzname_calcu</name>
  2335 + <field>station_name</field>
  2336 + <condition>&#x3d;</condition>
  2337 + <name2/>
  2338 + </key>
  2339 + <key>
  2340 + <name>startZdtype_calcu</name>
  2341 + <field>station_mark</field>
  2342 + <condition>&#x3d;</condition>
  2343 + <name2/>
  2344 + </key>
  2345 + <key>
  2346 + <name>destory</name>
  2347 + <field>destroy</field>
  2348 + <condition>&#x3d;</condition>
  2349 + <name2/>
  2350 + </key>
  2351 + <value>
  2352 + <name>directions</name>
  2353 + <rename>sxx2</rename>
  2354 + <default/>
  2355 + <type>Integer</type>
  2356 + </value>
  2357 + <value>
  2358 + <name>station</name>
  2359 + <rename>qdzid</rename>
  2360 + <default/>
  2361 + <type>Integer</type>
  2362 + </value>
  2363 + <value>
  2364 + <name>station_code</name>
  2365 + <rename>qdzcode</rename>
  2366 + <default/>
  2367 + <type>String</type>
  2368 + </value>
  2369 + <value>
  2370 + <name>station_name</name>
  2371 + <rename>qname</rename>
  2372 + <default/>
  2373 + <type>String</type>
  2374 + </value>
  2375 + </lookup>
  2376 + <cluster_schema/>
  2377 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2378 + <xloc>551</xloc>
  2379 + <yloc>782</yloc>
  2380 + <draw>Y</draw>
  2381 + </GUI>
  2382 + </step>
  2383 +
  2384 + <step>
  2385 + <name>&#x6b63;&#x5e38;&#x73ed;&#x6b21;_&#x5904;&#x7406;&#x6570;&#x636e;</name>
  2386 + <type>ScriptValueMod</type>
  2387 + <description/>
  2388 + <distribute>Y</distribute>
  2389 + <custom_distribution/>
  2390 + <copies>1</copies>
  2391 + <partitioning>
  2392 + <method>none</method>
  2393 + <schema_name/>
  2394 + </partitioning>
  2395 + <compatible>N</compatible>
  2396 + <optimizationLevel>9</optimizationLevel>
  2397 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  2398 + <jsScript_name>Script 1</jsScript_name>
  2399 + <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>
  2400 + </jsScript> </jsScripts> <fields> <field> <name>sendZdtype</name>
  2401 + <rename>sendZdtype</rename>
  2402 + <type>String</type>
  2403 + <length>-1</length>
  2404 + <precision>-1</precision>
  2405 + <replace>N</replace>
  2406 + </field> <field> <name>endZdtype</name>
  2407 + <rename>endZdtype</rename>
  2408 + <type>String</type>
  2409 + <length>-1</length>
  2410 + <precision>-1</precision>
  2411 + <replace>N</replace>
  2412 + </field> <field> <name>destory</name>
  2413 + <rename>destory</rename>
  2414 + <type>Integer</type>
  2415 + <length>-1</length>
  2416 + <precision>-1</precision>
  2417 + <replace>N</replace>
  2418 + </field> </fields> <cluster_schema/>
  2419 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2420 + <xloc>588</xloc>
  2421 + <yloc>403</yloc>
  2422 + <draw>Y</draw>
  2423 + </GUI>
  2424 + </step>
  2425 +
  2426 + <step>
  2427 + <name>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</name>
  2428 + <type>Dummy</type>
  2429 + <description/>
  2430 + <distribute>Y</distribute>
  2431 + <custom_distribution/>
  2432 + <copies>1</copies>
  2433 + <partitioning>
  2434 + <method>none</method>
  2435 + <schema_name/>
  2436 + </partitioning>
  2437 + <cluster_schema/>
  2438 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2439 + <xloc>725</xloc>
  2440 + <yloc>404</yloc>
  2441 + <draw>Y</draw>
  2442 + </GUI>
  2443 + </step>
  2444 +
  2445 + <step>
  2446 + <name>&#x6dfb;&#x52a0;&#x53d1;&#x8f66;&#x987a;&#x5e8f;&#x53f7;</name>
  2447 + <type>GroupBy</type>
  2448 + <description/>
  2449 + <distribute>Y</distribute>
  2450 + <custom_distribution/>
  2451 + <copies>1</copies>
  2452 + <partitioning>
  2453 + <method>none</method>
  2454 + <schema_name/>
  2455 + </partitioning>
  2456 + <all_rows>Y</all_rows>
  2457 + <ignore_aggregate>N</ignore_aggregate>
  2458 + <field_ignore/>
  2459 + <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
  2460 + <prefix>grp</prefix>
  2461 + <add_linenr>Y</add_linenr>
  2462 + <linenr_fieldname>fcno</linenr_fieldname>
  2463 + <give_back_row>N</give_back_row>
  2464 + <group>
  2465 + <field>
  2466 + <name>lp</name>
  2467 + </field>
  2468 + </group>
  2469 + <fields>
  2470 + </fields>
  2471 + <cluster_schema/>
  2472 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2473 + <xloc>442</xloc>
  2474 + <yloc>44</yloc>
  2475 + <draw>Y</draw>
  2476 + </GUI>
  2477 + </step>
  2478 +
  2479 + <step>
  2480 + <name>&#x6dfb;&#x52a0;&#x5bf9;&#x5e94;&#x73ed;&#x6b21;&#x6570;</name>
  2481 + <type>GroupBy</type>
  2482 + <description/>
  2483 + <distribute>Y</distribute>
  2484 + <custom_distribution/>
  2485 + <copies>1</copies>
  2486 + <partitioning>
  2487 + <method>none</method>
  2488 + <schema_name/>
  2489 + </partitioning>
  2490 + <all_rows>Y</all_rows>
  2491 + <ignore_aggregate>N</ignore_aggregate>
  2492 + <field_ignore/>
  2493 + <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
  2494 + <prefix>grp</prefix>
  2495 + <add_linenr>Y</add_linenr>
  2496 + <linenr_fieldname>bcs</linenr_fieldname>
  2497 + <give_back_row>N</give_back_row>
  2498 + <group>
  2499 + </group>
  2500 + <fields>
  2501 + </fields>
  2502 + <cluster_schema/>
  2503 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2504 + <xloc>692</xloc>
  2505 + <yloc>44</yloc>
  2506 + <draw>Y</draw>
  2507 + </GUI>
  2508 + </step>
  2509 +
  2510 + <step>
  2511 + <name>&#x73ed;&#x6b21;&#x6570;&#x636e;&#x8303;&#x5f0f;&#x5316;</name>
  2512 + <type>Normaliser</type>
  2513 + <description/>
  2514 + <distribute>Y</distribute>
  2515 + <custom_distribution/>
  2516 + <copies>1</copies>
  2517 + <partitioning>
  2518 + <method>none</method>
  2519 + <schema_name/>
  2520 + </partitioning>
  2521 + <typefield>&#x7ad9;&#x70b9;&#x540d;&#x79f0;</typefield>
  2522 + <fields> </fields> <cluster_schema/>
  2523 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2524 + <xloc>248</xloc>
  2525 + <yloc>44</yloc>
  2526 + <draw>Y</draw>
  2527 + </GUI>
  2528 + </step>
  2529 +
  2530 + <step>
  2531 + <name>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178;</name>
  2532 + <type>ValueMapper</type>
  2533 + <description/>
  2534 + <distribute>Y</distribute>
  2535 + <custom_distribution/>
  2536 + <copies>1</copies>
  2537 + <partitioning>
  2538 + <method>none</method>
  2539 + <schema_name/>
  2540 + </partitioning>
  2541 + <field_to_use>bctype</field_to_use>
  2542 + <target_field>bctype_code</target_field>
  2543 + <non_match_default>&#x672a;&#x77e5;&#x7c7b;&#x578b;</non_match_default>
  2544 + <fields>
  2545 + <field>
  2546 + <source_value>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</source_value>
  2547 + <target_value>normal</target_value>
  2548 + </field>
  2549 + <field>
  2550 + <source_value>&#x51fa;&#x573a;</source_value>
  2551 + <target_value>out</target_value>
  2552 + </field>
  2553 + <field>
  2554 + <source_value>&#x8fdb;&#x573a;</source_value>
  2555 + <target_value>in</target_value>
  2556 + </field>
  2557 + <field>
  2558 + <source_value>&#x52a0;&#x6cb9;</source_value>
  2559 + <target_value>oil</target_value>
  2560 + </field>
  2561 + <field>
  2562 + <source_value>&#x4e34;&#x52a0;</source_value>
  2563 + <target_value>temp</target_value>
  2564 + </field>
  2565 + <field>
  2566 + <source_value>&#x533a;&#x95f4;</source_value>
  2567 + <target_value>region</target_value>
  2568 + </field>
  2569 + <field>
  2570 + <source_value>&#x653e;&#x7a7a;</source_value>
  2571 + <target_value>venting</target_value>
  2572 + </field>
  2573 + <field>
  2574 + <source_value>&#x653e;&#x5927;&#x7ad9;</source_value>
  2575 + <target_value>major</target_value>
  2576 + </field>
  2577 + </fields>
  2578 + <cluster_schema/>
  2579 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2580 + <xloc>149</xloc>
  2581 + <yloc>491</yloc>
  2582 + <draw>Y</draw>
  2583 + </GUI>
  2584 + </step>
  2585 +
  2586 + <step>
  2587 + <name>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 2</name>
  2588 + <type>ValueMapper</type>
  2589 + <description/>
  2590 + <distribute>Y</distribute>
  2591 + <custom_distribution/>
  2592 + <copies>1</copies>
  2593 + <partitioning>
  2594 + <method>none</method>
  2595 + <schema_name/>
  2596 + </partitioning>
  2597 + <field_to_use>bctype</field_to_use>
  2598 + <target_field>bctype_code</target_field>
  2599 + <non_match_default>&#x672a;&#x77e5;&#x7c7b;&#x578b;</non_match_default>
  2600 + <fields>
  2601 + <field>
  2602 + <source_value>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</source_value>
  2603 + <target_value>normal</target_value>
  2604 + </field>
  2605 + <field>
  2606 + <source_value>&#x51fa;&#x573a;</source_value>
  2607 + <target_value>out</target_value>
  2608 + </field>
  2609 + <field>
  2610 + <source_value>&#x8fdb;&#x573a;</source_value>
  2611 + <target_value>in</target_value>
  2612 + </field>
  2613 + <field>
  2614 + <source_value>&#x52a0;&#x6cb9;</source_value>
  2615 + <target_value>oil</target_value>
  2616 + </field>
  2617 + <field>
  2618 + <source_value>&#x4e34;&#x52a0;</source_value>
  2619 + <target_value>temp</target_value>
  2620 + </field>
  2621 + <field>
  2622 + <source_value>&#x533a;&#x95f4;</source_value>
  2623 + <target_value>region</target_value>
  2624 + </field>
  2625 + <field>
  2626 + <source_value>&#x653e;&#x7a7a;</source_value>
  2627 + <target_value>venting</target_value>
  2628 + </field>
  2629 + <field>
  2630 + <source_value>&#x653e;&#x5927;&#x7ad9;</source_value>
  2631 + <target_value>major</target_value>
  2632 + </field>
  2633 + </fields>
  2634 + <cluster_schema/>
  2635 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2636 + <xloc>333</xloc>
  2637 + <yloc>681</yloc>
  2638 + <draw>Y</draw>
  2639 + </GUI>
  2640 + </step>
  2641 +
  2642 + <step>
  2643 + <name>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 3</name>
  2644 + <type>ValueMapper</type>
  2645 + <description/>
  2646 + <distribute>Y</distribute>
  2647 + <custom_distribution/>
  2648 + <copies>1</copies>
  2649 + <partitioning>
  2650 + <method>none</method>
  2651 + <schema_name/>
  2652 + </partitioning>
  2653 + <field_to_use>bctype</field_to_use>
  2654 + <target_field>bctype_code</target_field>
  2655 + <non_match_default>&#x672a;&#x77e5;&#x7c7b;&#x578b;</non_match_default>
  2656 + <fields>
  2657 + <field>
  2658 + <source_value>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</source_value>
  2659 + <target_value>normal</target_value>
  2660 + </field>
  2661 + <field>
  2662 + <source_value>&#x51fa;&#x573a;</source_value>
  2663 + <target_value>out</target_value>
  2664 + </field>
  2665 + <field>
  2666 + <source_value>&#x8fdb;&#x573a;</source_value>
  2667 + <target_value>in</target_value>
  2668 + </field>
  2669 + <field>
  2670 + <source_value>&#x52a0;&#x6cb9;</source_value>
  2671 + <target_value>oil</target_value>
  2672 + </field>
  2673 + <field>
  2674 + <source_value>&#x4e34;&#x52a0;</source_value>
  2675 + <target_value>temp</target_value>
  2676 + </field>
  2677 + <field>
  2678 + <source_value>&#x533a;&#x95f4;</source_value>
  2679 + <target_value>region</target_value>
  2680 + </field>
  2681 + <field>
  2682 + <source_value>&#x653e;&#x7a7a;</source_value>
  2683 + <target_value>venting</target_value>
  2684 + </field>
  2685 + <field>
  2686 + <source_value>&#x653e;&#x5927;&#x7ad9;</source_value>
  2687 + <target_value>major</target_value>
  2688 + </field>
  2689 + </fields>
  2690 + <cluster_schema/>
  2691 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2692 + <xloc>551</xloc>
  2693 + <yloc>928</yloc>
  2694 + <draw>Y</draw>
  2695 + </GUI>
  2696 + </step>
  2697 +
  2698 + <step>
  2699 + <name>&#x7c7b;&#x578b;&#x4fee;&#x6b63;</name>
  2700 + <type>SelectValues</type>
  2701 + <description/>
  2702 + <distribute>Y</distribute>
  2703 + <custom_distribution/>
  2704 + <copies>1</copies>
  2705 + <partitioning>
  2706 + <method>none</method>
  2707 + <schema_name/>
  2708 + </partitioning>
  2709 + <fields> <select_unspecified>N</select_unspecified>
  2710 + <meta> <name>jhlc</name>
  2711 + <rename>jhlc</rename>
  2712 + <type>Number</type>
  2713 + <length>-2</length>
  2714 + <precision>-2</precision>
  2715 + <conversion_mask/>
  2716 + <date_format_lenient>false</date_format_lenient>
  2717 + <date_format_locale/>
  2718 + <date_format_timezone/>
  2719 + <lenient_string_to_number>false</lenient_string_to_number>
  2720 + <encoding/>
  2721 + <decimal_symbol/>
  2722 + <grouping_symbol/>
  2723 + <currency_symbol/>
  2724 + <storage_type/>
  2725 + </meta> <meta> <name>bcsj</name>
  2726 + <rename>bcsj</rename>
  2727 + <type>Integer</type>
  2728 + <length>-2</length>
  2729 + <precision>-2</precision>
  2730 + <conversion_mask/>
  2731 + <date_format_lenient>false</date_format_lenient>
  2732 + <date_format_locale/>
  2733 + <date_format_timezone/>
  2734 + <lenient_string_to_number>false</lenient_string_to_number>
  2735 + <encoding/>
  2736 + <decimal_symbol/>
  2737 + <grouping_symbol/>
  2738 + <currency_symbol/>
  2739 + <storage_type/>
  2740 + </meta> </fields> <cluster_schema/>
  2741 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2742 + <xloc>146</xloc>
  2743 + <yloc>768</yloc>
  2744 + <draw>Y</draw>
  2745 + </GUI>
  2746 + </step>
  2747 +
  2748 + <step>
  2749 + <name>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 2</name>
  2750 + <type>SelectValues</type>
  2751 + <description/>
  2752 + <distribute>Y</distribute>
  2753 + <custom_distribution/>
  2754 + <copies>1</copies>
  2755 + <partitioning>
  2756 + <method>none</method>
  2757 + <schema_name/>
  2758 + </partitioning>
  2759 + <fields> <select_unspecified>N</select_unspecified>
  2760 + <meta> <name>out_mileage</name>
  2761 + <rename>out_mileage</rename>
  2762 + <type>Number</type>
  2763 + <length>-2</length>
  2764 + <precision>-2</precision>
  2765 + <conversion_mask/>
  2766 + <date_format_lenient>false</date_format_lenient>
  2767 + <date_format_locale/>
  2768 + <date_format_timezone/>
  2769 + <lenient_string_to_number>false</lenient_string_to_number>
  2770 + <encoding/>
  2771 + <decimal_symbol/>
  2772 + <grouping_symbol/>
  2773 + <currency_symbol/>
  2774 + <storage_type/>
  2775 + </meta> <meta> <name>out_time</name>
  2776 + <rename>out_time</rename>
  2777 + <type>Integer</type>
  2778 + <length>-2</length>
  2779 + <precision>-2</precision>
  2780 + <conversion_mask/>
  2781 + <date_format_lenient>false</date_format_lenient>
  2782 + <date_format_locale/>
  2783 + <date_format_timezone/>
  2784 + <lenient_string_to_number>false</lenient_string_to_number>
  2785 + <encoding/>
  2786 + <decimal_symbol/>
  2787 + <grouping_symbol/>
  2788 + <currency_symbol/>
  2789 + <storage_type/>
  2790 + </meta> <meta> <name>sxx</name>
  2791 + <rename>sxx</rename>
  2792 + <type>Integer</type>
  2793 + <length>-2</length>
  2794 + <precision>-2</precision>
  2795 + <conversion_mask/>
  2796 + <date_format_lenient>false</date_format_lenient>
  2797 + <date_format_locale/>
  2798 + <date_format_timezone/>
  2799 + <lenient_string_to_number>false</lenient_string_to_number>
  2800 + <encoding/>
  2801 + <decimal_symbol/>
  2802 + <grouping_symbol/>
  2803 + <currency_symbol/>
  2804 + <storage_type/>
  2805 + </meta> </fields> <cluster_schema/>
  2806 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2807 + <xloc>338</xloc>
  2808 + <yloc>1008</yloc>
  2809 + <draw>Y</draw>
  2810 + </GUI>
  2811 + </step>
  2812 +
  2813 + <step>
  2814 + <name>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 3</name>
  2815 + <type>SelectValues</type>
  2816 + <description/>
  2817 + <distribute>Y</distribute>
  2818 + <custom_distribution/>
  2819 + <copies>1</copies>
  2820 + <partitioning>
  2821 + <method>none</method>
  2822 + <schema_name/>
  2823 + </partitioning>
  2824 + <fields> <select_unspecified>N</select_unspecified>
  2825 + <meta> <name>parade_mileage</name>
  2826 + <rename>parade_mileage</rename>
  2827 + <type>Number</type>
  2828 + <length>-2</length>
  2829 + <precision>-2</precision>
  2830 + <conversion_mask/>
  2831 + <date_format_lenient>false</date_format_lenient>
  2832 + <date_format_locale/>
  2833 + <date_format_timezone/>
  2834 + <lenient_string_to_number>false</lenient_string_to_number>
  2835 + <encoding/>
  2836 + <decimal_symbol/>
  2837 + <grouping_symbol/>
  2838 + <currency_symbol/>
  2839 + <storage_type/>
  2840 + </meta> <meta> <name>parade_time</name>
  2841 + <rename>parade_time</rename>
  2842 + <type>Integer</type>
  2843 + <length>-2</length>
  2844 + <precision>-2</precision>
  2845 + <conversion_mask/>
  2846 + <date_format_lenient>false</date_format_lenient>
  2847 + <date_format_locale/>
  2848 + <date_format_timezone/>
  2849 + <lenient_string_to_number>false</lenient_string_to_number>
  2850 + <encoding/>
  2851 + <decimal_symbol/>
  2852 + <grouping_symbol/>
  2853 + <currency_symbol/>
  2854 + <storage_type/>
  2855 + </meta> <meta> <name>sxx2</name>
  2856 + <rename>sxx2</rename>
  2857 + <type>Integer</type>
  2858 + <length>-2</length>
  2859 + <precision>-2</precision>
  2860 + <conversion_mask/>
  2861 + <date_format_lenient>false</date_format_lenient>
  2862 + <date_format_locale/>
  2863 + <date_format_timezone/>
  2864 + <lenient_string_to_number>false</lenient_string_to_number>
  2865 + <encoding/>
  2866 + <decimal_symbol/>
  2867 + <grouping_symbol/>
  2868 + <currency_symbol/>
  2869 + <storage_type/>
  2870 + </meta> </fields> <cluster_schema/>
  2871 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2872 + <xloc>847</xloc>
  2873 + <yloc>1003</yloc>
  2874 + <draw>Y</draw>
  2875 + </GUI>
  2876 + </step>
  2877 +
  2878 + <step>
  2879 + <name>&#x8ba1;&#x7b97;&#x73ed;&#x6b21;&#x7c7b;&#x578b;</name>
  2880 + <type>ValueMapper</type>
  2881 + <description/>
  2882 + <distribute>Y</distribute>
  2883 + <custom_distribution/>
  2884 + <copies>1</copies>
  2885 + <partitioning>
  2886 + <method>none</method>
  2887 + <schema_name/>
  2888 + </partitioning>
  2889 + <field_to_use>qdzname</field_to_use>
  2890 + <target_field>bctype</target_field>
  2891 + <non_match_default>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</non_match_default>
  2892 + <fields>
  2893 + <field>
  2894 + <source_value>&#x51fa;&#x573a;</source_value>
  2895 + <target_value>&#x51fa;&#x573a;</target_value>
  2896 + </field>
  2897 + <field>
  2898 + <source_value>&#x8fdb;&#x573a;</source_value>
  2899 + <target_value>&#x8fdb;&#x573a;</target_value>
  2900 + </field>
  2901 + </fields>
  2902 + <cluster_schema/>
  2903 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2904 + <xloc>1014</xloc>
  2905 + <yloc>401</yloc>
  2906 + <draw>Y</draw>
  2907 + </GUI>
  2908 + </step>
  2909 +
  2910 + <step>
  2911 + <name>&#x8bb0;&#x5f55;&#x5173;&#x8054; &#x28;&#x7b1b;&#x5361;&#x5c14;&#x8f93;&#x51fa;&#x29;</name>
  2912 + <type>JoinRows</type>
  2913 + <description/>
  2914 + <distribute>Y</distribute>
  2915 + <custom_distribution/>
  2916 + <copies>1</copies>
  2917 + <partitioning>
  2918 + <method>none</method>
  2919 + <schema_name/>
  2920 + </partitioning>
  2921 + <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
  2922 + <prefix>out</prefix>
  2923 + <cache_size>500</cache_size>
  2924 + <main/>
  2925 + <compare>
  2926 +<condition>
  2927 + <negated>N</negated>
  2928 + <leftvalue/>
  2929 + <function>&#x3d;</function>
  2930 + <rightvalue/>
  2931 + </condition>
  2932 + </compare>
  2933 + <cluster_schema/>
  2934 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2935 + <xloc>310</xloc>
  2936 + <yloc>133</yloc>
  2937 + <draw>Y</draw>
  2938 + </GUI>
  2939 + </step>
  2940 +
  2941 + <step>
  2942 + <name>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;&#xff08;&#x53d1;&#x8f66;&#x65f6;&#x95f4;&#x4e3a;&#x7a7a;&#xff09;</name>
  2943 + <type>FilterRows</type>
  2944 + <description/>
  2945 + <distribute>Y</distribute>
  2946 + <custom_distribution/>
  2947 + <copies>1</copies>
  2948 + <partitioning>
  2949 + <method>none</method>
  2950 + <schema_name/>
  2951 + </partitioning>
  2952 +<send_true_to/>
  2953 +<send_false_to/>
  2954 + <compare>
  2955 +<condition>
  2956 + <negated>N</negated>
  2957 + <leftvalue>sendtime</leftvalue>
  2958 + <function>IS NOT NULL</function>
  2959 + <rightvalue/>
  2960 + </condition>
  2961 + </compare>
  2962 + <cluster_schema/>
  2963 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2964 + <xloc>571</xloc>
  2965 + <yloc>44</yloc>
  2966 + <draw>Y</draw>
  2967 + </GUI>
  2968 + </step>
  2969 +
  2970 + <step>
  2971 + <name>&#x8fdb;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x8d77;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</name>
  2972 + <type>ScriptValueMod</type>
  2973 + <description/>
  2974 + <distribute>Y</distribute>
  2975 + <custom_distribution/>
  2976 + <copies>1</copies>
  2977 + <partitioning>
  2978 + <method>none</method>
  2979 + <schema_name/>
  2980 + </partitioning>
  2981 + <compatible>N</compatible>
  2982 + <optimizationLevel>9</optimizationLevel>
  2983 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  2984 + <jsScript_name>Script 1</jsScript_name>
  2985 + <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>
  2986 + </jsScript> </jsScripts> <fields> <field> <name>qdzname_calcu</name>
  2987 + <rename>qdzname_calcu</rename>
  2988 + <type>String</type>
  2989 + <length>-1</length>
  2990 + <precision>-1</precision>
  2991 + <replace>N</replace>
  2992 + </field> <field> <name>startZdtype_calcu</name>
  2993 + <rename>startZdtype_calcu</rename>
  2994 + <type>String</type>
  2995 + <length>-1</length>
  2996 + <precision>-1</precision>
  2997 + <replace>N</replace>
  2998 + </field> <field> <name>endZdtype_calcu</name>
  2999 + <rename>endZdtype_calcu</rename>
  3000 + <type>String</type>
  3001 + <length>-1</length>
  3002 + <precision>-1</precision>
  3003 + <replace>N</replace>
  3004 + </field> <field> <name>destory</name>
  3005 + <rename>destory</rename>
  3006 + <type>Integer</type>
  3007 + <length>-1</length>
  3008 + <precision>-1</precision>
  3009 + <replace>N</replace>
  3010 + </field> </fields> <cluster_schema/>
  3011 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3012 + <xloc>754</xloc>
  3013 + <yloc>610</yloc>
  3014 + <draw>Y</draw>
  3015 + </GUI>
  3016 + </step>
  3017 +
  3018 + <step>
  3019 + <name>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</name>
  3020 + <type>Dummy</type>
  3021 + <description/>
  3022 + <distribute>Y</distribute>
  3023 + <custom_distribution/>
  3024 + <copies>1</copies>
  3025 + <partitioning>
  3026 + <method>none</method>
  3027 + <schema_name/>
  3028 + </partitioning>
  3029 + <cluster_schema/>
  3030 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3031 + <xloc>997</xloc>
  3032 + <yloc>606</yloc>
  3033 + <draw>Y</draw>
  3034 + </GUI>
  3035 + </step>
  3036 +
  3037 + <step_error_handling>
  3038 + <error>
  3039 + <source_step>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail</source_step>
  3040 + <target_step/>
  3041 + <is_enabled>Y</is_enabled>
  3042 + <nr_valuename>c1</nr_valuename>
  3043 + <descriptions_valuename>c2</descriptions_valuename>
  3044 + <fields_valuename>c3</fields_valuename>
  3045 + <codes_valuename>c4</codes_valuename>
  3046 + <max_errors/>
  3047 + <max_pct_errors/>
  3048 + <min_pct_rows/>
  3049 + </error>
  3050 + </step_error_handling>
  3051 + <slave-step-copy-partition-distribution>
  3052 +</slave-step-copy-partition-distribution>
  3053 + <slave_transformation>N</slave_transformation>
  3054 +
  3055 +</transformation>
3056 \ No newline at end of file 3056 \ No newline at end of file
src/main/resources/datatools/ktrs/ttinfodetailDataInputMetaData.ktr
1 -<?xml version="1.0" encoding="UTF-8"?>  
2 -<transformation>  
3 - <info>  
4 - <name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x5bfc;&#x5165;&#x5143;&#x6570;&#x636e;</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&#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>normalizefieldnames</name>  
39 - <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>  
40 - <description>&#x6570;&#x636e;&#x8303;&#x5f0f;&#x5316;&#x5b57;&#x6bb5;&#x540d;&#xff0c;&#x4ee5;&#x9017;&#x53f7;&#x8fde;&#x63a5;</description>  
41 - </parameter>  
42 - <parameter>  
43 - <name>sheetname</name>  
44 - <default_value>&#x5de5;&#x4f5c;&#x8868;1</default_value>  
45 - <description>xls sheet&#x540d;&#x5b57;</description>  
46 - </parameter>  
47 - <parameter>  
48 - <name>tccname</name>  
49 - <default_value>&#x4e1c;&#x5ddd;&#x8def;&#x5730;&#x94c1;&#x7ad9;&#x505c;&#x8f66;&#x573a;</default_value>  
50 - <description>&#x505c;&#x8f66;&#x573a;&#x540d;&#x5b57;</description>  
51 - </parameter>  
52 - <parameter>  
53 - <name>ttid</name>  
54 - <default_value>1</default_value>  
55 - <description>&#x65f6;&#x523b;&#x8868;id</description>  
56 - </parameter>  
57 - <parameter>  
58 - <name>ttinfoname</name>  
59 - <default_value>&#x8868;2</default_value>  
60 - <description>&#x65f6;&#x523b;&#x8868;&#x540d;&#x79f0;</description>  
61 - </parameter>  
62 - <parameter>  
63 - <name>xlname</name>  
64 - <default_value>&#x95f5;&#x884c;26&#x8def;</default_value>  
65 - <description>&#x7ebf;&#x8def;&#x540d;&#x79f0;</description>  
66 - </parameter>  
67 - </parameters>  
68 - <log>  
69 -<trans-log-table><connection/>  
70 -<schema/>  
71 -<table/>  
72 -<size_limit_lines/>  
73 -<interval/>  
74 -<timeout_days/>  
75 -<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>  
76 -<perf-log-table><connection/>  
77 -<schema/>  
78 -<table/>  
79 -<interval/>  
80 -<timeout_days/>  
81 -<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>  
82 -<channel-log-table><connection/>  
83 -<schema/>  
84 -<table/>  
85 -<timeout_days/>  
86 -<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>  
87 -<step-log-table><connection/>  
88 -<schema/>  
89 -<table/>  
90 -<timeout_days/>  
91 -<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>  
92 -<metrics-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>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>  
97 - </log>  
98 - <maxdate>  
99 - <connection/>  
100 - <table/>  
101 - <field/>  
102 - <offset>0.0</offset>  
103 - <maxdiff>0.0</maxdiff>  
104 - </maxdate>  
105 - <size_rowset>10000</size_rowset>  
106 - <sleep_time_empty>50</sleep_time_empty>  
107 - <sleep_time_full>50</sleep_time_full>  
108 - <unique_connections>N</unique_connections>  
109 - <feedback_shown>Y</feedback_shown>  
110 - <feedback_size>50000</feedback_size>  
111 - <using_thread_priorities>Y</using_thread_priorities>  
112 - <shared_objects_file/>  
113 - <capture_step_performance>N</capture_step_performance>  
114 - <step_performance_capturing_delay>1000</step_performance_capturing_delay>  
115 - <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit>  
116 - <dependencies>  
117 - </dependencies>  
118 - <partitionschemas>  
119 - </partitionschemas>  
120 - <slaveservers>  
121 - </slaveservers>  
122 - <clusterschemas>  
123 - </clusterschemas>  
124 - <created_user>-</created_user>  
125 - <created_date>2016&#x2f;07&#x2f;01 09&#x3a;55&#x3a;32.649</created_date>  
126 - <modified_user>-</modified_user>  
127 - <modified_date>2016&#x2f;07&#x2f;01 09&#x3a;55&#x3a;32.649</modified_date>  
128 - <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA&#x3d;</key_for_session_key>  
129 - <is_key_private>N</is_key_private>  
130 - </info>  
131 - <notepads>  
132 - </notepads>  
133 - <connection>  
134 - <name>192.168.168.1_jwgl_dw</name>  
135 - <server>192.168.168.1</server>  
136 - <type>ORACLE</type>  
137 - <access>Native</access>  
138 - <database>orcl</database>  
139 - <port>1521</port>  
140 - <username>jwgl_dw</username>  
141 - <password>Encrypted 2be98afc86aa7f2e4cb13b977d2adabcd</password>  
142 - <servername/>  
143 - <data_tablespace/>  
144 - <index_tablespace/>  
145 - <attributes>  
146 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
147 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
148 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
149 - <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>  
150 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
151 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
152 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
153 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
154 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
155 - </attributes>  
156 - </connection>  
157 - <connection>  
158 - <name>bus_control_variable</name>  
159 - <server>&#x24;&#x7b;v_db_ip&#x7d;</server>  
160 - <type>MYSQL</type>  
161 - <access>Native</access>  
162 - <database>&#x24;&#x7b;v_db_dname&#x7d;</database>  
163 - <port>3306</port>  
164 - <username>&#x24;&#x7b;v_db_uname&#x7d;</username>  
165 - <password>&#x24;&#x7b;v_db_pwd&#x7d;</password>  
166 - <servername/>  
167 - <data_tablespace/>  
168 - <index_tablespace/>  
169 - <attributes>  
170 - <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>  
171 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
172 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
173 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
174 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
175 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
176 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
177 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
178 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
179 - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>  
180 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
181 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
182 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
183 - </attributes>  
184 - </connection>  
185 - <connection>  
186 - <name>bus_control_&#x516c;&#x53f8;_201</name>  
187 - <server>localhost</server>  
188 - <type>MYSQL</type>  
189 - <access>Native</access>  
190 - <database>control</database>  
191 - <port>3306</port>  
192 - <username>root</username>  
193 - <password>Encrypted </password>  
194 - <servername/>  
195 - <data_tablespace/>  
196 - <index_tablespace/>  
197 - <attributes>  
198 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
199 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
200 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
201 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
202 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
203 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
204 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
205 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
206 - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>  
207 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
208 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
209 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
210 - </attributes>  
211 - </connection>  
212 - <connection>  
213 - <name>bus_control_&#x672c;&#x673a;</name>  
214 - <server>localhost</server>  
215 - <type>MYSQL</type>  
216 - <access>Native</access>  
217 - <database>control</database>  
218 - <port>3306</port>  
219 - <username>root</username>  
220 - <password>Encrypted </password>  
221 - <servername/>  
222 - <data_tablespace/>  
223 - <index_tablespace/>  
224 - <attributes>  
225 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
226 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
227 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
228 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
229 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
230 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
231 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
232 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
233 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
234 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
235 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
236 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
237 - </attributes>  
238 - </connection>  
239 - <connection>  
240 - <name>xlab_mysql_youle</name>  
241 - <server>101.231.124.8</server>  
242 - <type>MYSQL</type>  
243 - <access>Native</access>  
244 - <database>xlab_youle</database>  
245 - <port>45687</port>  
246 - <username>xlab-youle</username>  
247 - <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password>  
248 - <servername/>  
249 - <data_tablespace/>  
250 - <index_tablespace/>  
251 - <attributes>  
252 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
253 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
254 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
255 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
256 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
257 - <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute>  
258 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
259 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
260 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
261 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>  
262 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>  
263 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
264 - </attributes>  
265 - </connection>  
266 - <connection>  
267 - <name>xlab_mysql_youle&#xff08;&#x672c;&#x673a;&#xff09;</name>  
268 - <server>localhost</server>  
269 - <type>MYSQL</type>  
270 - <access>Native</access>  
271 - <database>xlab_youle</database>  
272 - <port>3306</port>  
273 - <username>root</username>  
274 - <password>Encrypted </password>  
275 - <servername/>  
276 - <data_tablespace/>  
277 - <index_tablespace/>  
278 - <attributes>  
279 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
280 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
281 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
282 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
283 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
284 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
285 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
286 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
287 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
288 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>  
289 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>  
290 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
291 - </attributes>  
292 - </connection>  
293 - <connection>  
294 - <name>xlab_youle</name>  
295 - <server/>  
296 - <type>MYSQL</type>  
297 - <access>JNDI</access>  
298 - <database>xlab_youle</database>  
299 - <port>1521</port>  
300 - <username/>  
301 - <password>Encrypted </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>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
313 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
314 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
315 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
316 - </attributes>  
317 - </connection>  
318 - <order>  
319 - <hop> <from>&#x83b7;&#x53d6;excel&#x6587;&#x4ef6;&#x540d;</from><to>ETL&#x5143;&#x6570;&#x636e;&#x6ce8;&#x5165;</to><enabled>Y</enabled> </hop>  
320 - <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>  
321 - <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>  
322 - <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>  
323 - <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>  
324 - <hop> <from>&#x9017;&#x53f7;&#x5207;&#x5206;&#x6210;&#x5b57;&#x6bb5;&#x540d; 2</from><to>&#x589e;&#x52a0;normalize&#x5143;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>  
325 - <hop> <from>&#x589e;&#x52a0;normalize&#x5143;&#x6570;&#x636e;</from><to>ETL&#x5143;&#x6570;&#x636e;&#x6ce8;&#x5165;</to><enabled>Y</enabled> </hop>  
326 - <hop> <from>&#x83b7;&#x53d6;&#x7ebf;&#x8def;&#x540d;&#x79f0;</from><to>&#x589e;&#x52a0;&#x7ebf;&#x8def;&#x540d;&#x79f0;metadata</to><enabled>Y</enabled> </hop>  
327 - <hop> <from>&#x589e;&#x52a0;&#x7ebf;&#x8def;&#x540d;&#x79f0;metadata</from><to>&#x66ff;&#x6362;&#x7ebf;&#x8def;&#x540d;&#x79f0;</to><enabled>Y</enabled> </hop>  
328 - <hop> <from>&#x66ff;&#x6362;&#x7ebf;&#x8def;&#x540d;&#x79f0;</from><to>&#x7ebf;&#x8def;&#x540d;&#x79f0;metadata&#x5b57;&#x6bb5;</to><enabled>Y</enabled> </hop>  
329 - <hop> <from>&#x589e;&#x52a0;&#x505c;&#x8f66;&#x573a;&#x540d;&#x79f0;metadata</from><to>&#x66ff;&#x6362;&#x505c;&#x8f66;&#x5382;&#x540d;&#x5b57; </to><enabled>Y</enabled> </hop>  
330 - <hop> <from>&#x66ff;&#x6362;&#x505c;&#x8f66;&#x5382;&#x540d;&#x5b57; </from><to>&#x505c;&#x8f66;&#x573a;&#x540d;&#x79f0;metadata&#x5b57;&#x6bb5;</to><enabled>Y</enabled> </hop>  
331 - <hop> <from>&#x83b7;&#x53d6;&#x65f6;&#x523b;&#x8868;&#x540d;&#x79f0;</from><to>&#x589e;&#x52a0;&#x65f6;&#x523b;&#x8868;&#x540d;&#x79f0;metadata</to><enabled>Y</enabled> </hop>  
332 - <hop> <from>&#x589e;&#x52a0;&#x65f6;&#x523b;&#x8868;&#x540d;&#x79f0;metadata</from><to>&#x66ff;&#x6362;&#x65f6;&#x523b;&#x8868;&#x540d;&#x5b57;</to><enabled>Y</enabled> </hop>  
333 - <hop> <from>&#x66ff;&#x6362;&#x65f6;&#x523b;&#x8868;&#x540d;&#x5b57;</from><to>&#x65f6;&#x523b;&#x8868;&#x540d;&#x79f0;metadata&#x5b57;&#x6bb5;</to><enabled>Y</enabled> </hop>  
334 - <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>  
335 - <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>  
336 - <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>  
337 - <hop> <from>&#x5408;&#x5e76;&#x589e;&#x52a0;&#x5e38;&#x91cf;&#x6570;&#x636e;metadata</from><to>ETL&#x5143;&#x6570;&#x636e;&#x6ce8;&#x5165;</to><enabled>Y</enabled> </hop>  
338 - <hop> <from>&#x83b7;&#x53d6;&#x65f6;&#x523b;&#x8868;id</from><to>&#x5220;&#x9664;&#x4e4b;&#x524d;&#x7684;&#x660e;&#x7ec6;&#x4fe1;&#x606f;</to><enabled>Y</enabled> </hop>  
339 - <hop> <from>&#x83b7;&#x53d6;&#x7ebf;&#x8def;&#x6807;&#x51c6;id</from><to>&#x505c;&#x8f66;&#x573a;&#x7f16;&#x7801;</to><enabled>Y</enabled> </hop>  
340 - <hop> <from>&#x505c;&#x8f66;&#x573a;&#x7f16;&#x7801;</from><to>&#x505c;&#x8f66;&#x573a;&#x540d;&#x79f0;</to><enabled>Y</enabled> </hop>  
341 - <hop> <from>&#x505c;&#x8f66;&#x573a;&#x540d;&#x79f0;</from><to>&#x589e;&#x52a0;&#x505c;&#x8f66;&#x573a;&#x540d;&#x79f0;metadata</to><enabled>Y</enabled> </hop>  
342 - </order>  
343 - <step>  
344 - <name>ETL&#x5143;&#x6570;&#x636e;&#x6ce8;&#x5165;</name>  
345 - <type>MetaInject</type>  
346 - <description/>  
347 - <distribute>Y</distribute>  
348 - <custom_distribution/>  
349 - <copies>1</copies>  
350 - <partitioning>  
351 - <method>none</method>  
352 - <schema_name/>  
353 - </partitioning>  
354 - <specification_method>filename</specification_method>  
355 - <trans_object_id/>  
356 - <trans_name/>  
357 - <filename>&#x24;&#x7b;injectktrfile&#x7d;</filename>  
358 - <directory_path/>  
359 - <source_step/>  
360 - <source_output_fields> </source_output_fields> <target_file/>  
361 - <no_execution>N</no_execution>  
362 - <stream_source_step/>  
363 - <stream_target_step/>  
364 - <mappings> <mapping> <target_step_name>Excel&#x8f93;&#x5165;</target_step_name>  
365 - <target_attribute_key>FORMAT</target_attribute_key>  
366 - <target_detail>Y</target_detail>  
367 - <source_step>&#x5217;&#x62c6;&#x5206;&#x4e3a;&#x591a;&#x884c;</source_step>  
368 - <source_field>format</source_field>  
369 - </mapping> <mapping> <target_step_name>Excel&#x8f93;&#x5165;</target_step_name>  
370 - <target_attribute_key>REPEAT</target_attribute_key>  
371 - <target_detail>Y</target_detail>  
372 - <source_step>&#x5217;&#x62c6;&#x5206;&#x4e3a;&#x591a;&#x884c;</source_step>  
373 - <source_field>repeat</source_field>  
374 - </mapping> <mapping> <target_step_name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</target_step_name>  
375 - <target_attribute_key>TRIM_TYPE</target_attribute_key>  
376 - <target_detail>Y</target_detail>  
377 - <source_step>&#x589e;&#x52a0;excel&#x5b57;&#x6bb5;&#x5176;&#x4ed6;&#x5143;&#x6570;&#x636e;</source_step>  
378 - <source_field>trim_type</source_field>  
379 - </mapping> <mapping> <target_step_name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</target_step_name>  
380 - <target_attribute_key>FILENAME</target_attribute_key>  
381 - <target_detail>Y</target_detail>  
382 - <source_step>&#x83b7;&#x53d6;excel&#x6587;&#x4ef6;&#x540d;</source_step>  
383 - <source_field>filepath_</source_field>  
384 - </mapping> <mapping> <target_step_name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</target_step_name>  
385 - <target_attribute_key>PRECISION</target_attribute_key>  
386 - <target_detail>Y</target_detail>  
387 - <source_step>&#x589e;&#x52a0;excel&#x5b57;&#x6bb5;&#x5176;&#x4ed6;&#x5143;&#x6570;&#x636e;</source_step>  
388 - <source_field>precision</source_field>  
389 - </mapping> <mapping> <target_step_name>Excel&#x8f93;&#x5165;</target_step_name>  
390 - <target_attribute_key>TYPE</target_attribute_key>  
391 - <target_detail>Y</target_detail>  
392 - <source_step>&#x5217;&#x62c6;&#x5206;&#x4e3a;&#x591a;&#x884c;</source_step>  
393 - <source_field>type</source_field>  
394 - </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>  
395 - <target_attribute_key>DATA_VALUE</target_attribute_key>  
396 - <target_detail>Y</target_detail>  
397 - <source_step>&#x5408;&#x5e76;&#x589e;&#x52a0;&#x5e38;&#x91cf;&#x6570;&#x636e;metadata</source_step>  
398 - <source_field>col_value</source_field>  
399 - </mapping> <mapping> <target_step_name>Excel&#x8f93;&#x5165;</target_step_name>  
400 - <target_attribute_key>LENGTH</target_attribute_key>  
401 - <target_detail>Y</target_detail>  
402 - <source_step>&#x5217;&#x62c6;&#x5206;&#x4e3a;&#x591a;&#x884c;</source_step>  
403 - <source_field>length</source_field>  
404 - </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>  
405 - <target_attribute_key>TYPE</target_attribute_key>  
406 - <target_detail>Y</target_detail>  
407 - <source_step>&#x5408;&#x5e76;&#x589e;&#x52a0;&#x5e38;&#x91cf;&#x6570;&#x636e;metadata</source_step>  
408 - <source_field>col_type</source_field>  
409 - </mapping> <mapping> <target_step_name>&#x884c;&#x8f6c;&#x5217;</target_step_name>  
410 - <target_attribute_key>NAME</target_attribute_key>  
411 - <target_detail>Y</target_detail>  
412 - <source_step>&#x5217;&#x62c6;&#x5206;&#x4e3a;&#x591a;&#x884c; 2</source_step>  
413 - <source_field>fieldName</source_field>  
414 - </mapping> <mapping> <target_step_name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</target_step_name>  
415 - <target_attribute_key>NAME</target_attribute_key>  
416 - <target_detail>Y</target_detail>  
417 - <source_step>&#x589e;&#x52a0;excel&#x5b57;&#x6bb5;&#x5176;&#x4ed6;&#x5143;&#x6570;&#x636e;</source_step>  
418 - <source_field>fieldname</source_field>  
419 - </mapping> <mapping> <target_step_name>&#x73ed;&#x6b21;&#x6570;&#x636e;&#x8303;&#x5f0f;&#x5316;</target_step_name>  
420 - <target_attribute_key>NAME</target_attribute_key>  
421 - <target_detail>Y</target_detail>  
422 - <source_step>&#x589e;&#x52a0;normalize&#x5143;&#x6570;&#x636e;</source_step>  
423 - <source_field>nfieldname</source_field>  
424 - </mapping> <mapping> <target_step_name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</target_step_name>  
425 - <target_attribute_key>LENGTH</target_attribute_key>  
426 - <target_detail>Y</target_detail>  
427 - <source_step>&#x589e;&#x52a0;excel&#x5b57;&#x6bb5;&#x5176;&#x4ed6;&#x5143;&#x6570;&#x636e;</source_step>  
428 - <source_field>length</source_field>  
429 - </mapping> <mapping> <target_step_name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</target_step_name>  
430 - <target_attribute_key>SHEET_NAME</target_attribute_key>  
431 - <target_detail>Y</target_detail>  
432 - <source_step>&#x83b7;&#x53d6;excel&#x6587;&#x4ef6;&#x540d;</source_step>  
433 - <source_field>sheetname_</source_field>  
434 - </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>  
435 - <target_attribute_key>NAME</target_attribute_key>  
436 - <target_detail>Y</target_detail>  
437 - <source_step>&#x5408;&#x5e76;&#x589e;&#x52a0;&#x5e38;&#x91cf;&#x6570;&#x636e;metadata</source_step>  
438 - <source_field>col_name</source_field>  
439 - </mapping> <mapping> <target_step_name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</target_step_name>  
440 - <target_attribute_key>TYPE</target_attribute_key>  
441 - <target_detail>Y</target_detail>  
442 - <source_step>&#x589e;&#x52a0;excel&#x5b57;&#x6bb5;&#x5176;&#x4ed6;&#x5143;&#x6570;&#x636e;</source_step>  
443 - <source_field>fieldtype</source_field>  
444 - </mapping> <mapping> <target_step_name>Excel&#x8f93;&#x5165;</target_step_name>  
445 - <target_attribute_key>NAME</target_attribute_key>  
446 - <target_detail>Y</target_detail>  
447 - <source_step>&#x5217;&#x62c6;&#x5206;&#x4e3a;&#x591a;&#x884c;</source_step>  
448 - <source_field>fieldName</source_field>  
449 - </mapping> <mapping> <target_step_name>&#x884c;&#x8f6c;&#x5217;</target_step_name>  
450 - <target_attribute_key>VALUE</target_attribute_key>  
451 - <target_detail>Y</target_detail>  
452 - <source_step>&#x5217;&#x62c6;&#x5206;&#x4e3a;&#x591a;&#x884c; 2</source_step>  
453 - <source_field>fieldName</source_field>  
454 - </mapping> <mapping> <target_step_name>Excel&#x8f93;&#x5165;</target_step_name>  
455 - <target_attribute_key>TRIM_TYPE</target_attribute_key>  
456 - <target_detail>Y</target_detail>  
457 - <source_step>&#x5217;&#x62c6;&#x5206;&#x4e3a;&#x591a;&#x884c;</source_step>  
458 - <source_field>trim_type</source_field>  
459 - </mapping> <mapping> <target_step_name>&#x884c;&#x8f6c;&#x5217;</target_step_name>  
460 - <target_attribute_key>NORMALISED</target_attribute_key>  
461 - <target_detail>Y</target_detail>  
462 - <source_step>&#x5217;&#x62c6;&#x5206;&#x4e3a;&#x591a;&#x884c; 2</source_step>  
463 - <source_field>value</source_field>  
464 - </mapping> <mapping> <target_step_name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</target_step_name>  
465 - <target_attribute_key>REPEAT</target_attribute_key>  
466 - <target_detail>Y</target_detail>  
467 - <source_step>&#x589e;&#x52a0;excel&#x5b57;&#x6bb5;&#x5176;&#x4ed6;&#x5143;&#x6570;&#x636e;</source_step>  
468 - <source_field>repeat</source_field>  
469 - </mapping> <mapping> <target_step_name>&#x73ed;&#x6b21;&#x6570;&#x636e;&#x8303;&#x5f0f;&#x5316;</target_step_name>  
470 - <target_attribute_key>NORMALISED</target_attribute_key>  
471 - <target_detail>Y</target_detail>  
472 - <source_step>&#x589e;&#x52a0;normalize&#x5143;&#x6570;&#x636e;</source_step>  
473 - <source_field>valuefield</source_field>  
474 - </mapping> <mapping> <target_step_name>&#x73ed;&#x6b21;&#x6570;&#x636e;&#x8303;&#x5f0f;&#x5316;</target_step_name>  
475 - <target_attribute_key>VALUE</target_attribute_key>  
476 - <target_detail>Y</target_detail>  
477 - <source_step>&#x589e;&#x52a0;normalize&#x5143;&#x6570;&#x636e;</source_step>  
478 - <source_field>nfieldname</source_field>  
479 - </mapping> <mapping> <target_step_name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</target_step_name>  
480 - <target_attribute_key>FORMAT</target_attribute_key>  
481 - <target_detail>Y</target_detail>  
482 - <source_step>&#x589e;&#x52a0;excel&#x5b57;&#x6bb5;&#x5176;&#x4ed6;&#x5143;&#x6570;&#x636e;</source_step>  
483 - <source_field>format</source_field>  
484 - </mapping> <mapping> <target_step_name>Excel&#x8f93;&#x5165;</target_step_name>  
485 - <target_attribute_key>PRECISION</target_attribute_key>  
486 - <target_detail>Y</target_detail>  
487 - <source_step>&#x5217;&#x62c6;&#x5206;&#x4e3a;&#x591a;&#x884c;</source_step>  
488 - <source_field>precision</source_field>  
489 - </mapping> </mappings> <cluster_schema/>  
490 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
491 - <xloc>876</xloc>  
492 - <yloc>167</yloc>  
493 - <draw>Y</draw>  
494 - </GUI>  
495 - </step>  
496 -  
497 - <step>  
498 - <name>&#x505c;&#x8f66;&#x573a;&#x540d;&#x79f0;metadata&#x5b57;&#x6bb5;</name>  
499 - <type>SelectValues</type>  
500 - <description/>  
501 - <distribute>Y</distribute>  
502 - <custom_distribution/>  
503 - <copies>1</copies>  
504 - <partitioning>  
505 - <method>none</method>  
506 - <schema_name/>  
507 - </partitioning>  
508 - <fields> <field> <name>col_name</name>  
509 - <rename/>  
510 - <length>-2</length>  
511 - <precision>-2</precision>  
512 - </field> <field> <name>col_type</name>  
513 - <rename/>  
514 - <length>-2</length>  
515 - <precision>-2</precision>  
516 - </field> <field> <name>col_value</name>  
517 - <rename/>  
518 - <length>-2</length>  
519 - <precision>-2</precision>  
520 - </field> <select_unspecified>N</select_unspecified>  
521 - </fields> <cluster_schema/>  
522 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
523 - <xloc>743</xloc>  
524 - <yloc>470</yloc>  
525 - <draw>Y</draw>  
526 - </GUI>  
527 - </step>  
528 -  
529 - <step>  
530 - <name>&#x5220;&#x9664;&#x4e4b;&#x524d;&#x7684;&#x660e;&#x7ec6;&#x4fe1;&#x606f;</name>  
531 - <type>ExecSQL</type>  
532 - <description/>  
533 - <distribute>Y</distribute>  
534 - <custom_distribution/>  
535 - <copies>1</copies>  
536 - <partitioning>  
537 - <method>none</method>  
538 - <schema_name/>  
539 - </partitioning>  
540 - <connection>bus_control_variable</connection>  
541 - <execute_each_row>Y</execute_each_row>  
542 - <single_statement>N</single_statement>  
543 - <replace_variables>N</replace_variables>  
544 - <quoteString>N</quoteString>  
545 - <sql>delete from bsth_c_s_ttinfo_detail where ttinfo &#x3d; &#x3f;</sql>  
546 - <set_params>N</set_params>  
547 - <insert_field/>  
548 - <update_field/>  
549 - <delete_field/>  
550 - <read_field/>  
551 - <arguments>  
552 - <argument><name>ttid_</name></argument>  
553 - </arguments>  
554 - <cluster_schema/>  
555 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
556 - <xloc>808</xloc>  
557 - <yloc>16</yloc>  
558 - <draw>Y</draw>  
559 - </GUI>  
560 - </step>  
561 -  
562 - <step>  
563 - <name>&#x5408;&#x5e76;&#x589e;&#x52a0;&#x5e38;&#x91cf;&#x6570;&#x636e;metadata</name>  
564 - <type>Dummy</type>  
565 - <description/>  
566 - <distribute>Y</distribute>  
567 - <custom_distribution/>  
568 - <copies>1</copies>  
569 - <partitioning>  
570 - <method>none</method>  
571 - <schema_name/>  
572 - </partitioning>  
573 - <cluster_schema/>  
574 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
575 - <xloc>883</xloc>  
576 - <yloc>373</yloc>  
577 - <draw>Y</draw>  
578 - </GUI>  
579 - </step>  
580 -  
581 - <step>  
582 - <name>&#x589e;&#x52a0;excel&#x5b57;&#x6bb5;&#x5176;&#x4ed6;&#x5143;&#x6570;&#x636e;</name>  
583 - <type>Constant</type>  
584 - <description/>  
585 - <distribute>Y</distribute>  
586 - <custom_distribution/>  
587 - <copies>1</copies>  
588 - <partitioning>  
589 - <method>none</method>  
590 - <schema_name/>  
591 - </partitioning>  
592 - <fields>  
593 - <field>  
594 - <name>fieldtype</name>  
595 - <type>String</type>  
596 - <format/>  
597 - <currency/>  
598 - <decimal/>  
599 - <group/>  
600 - <nullif>String</nullif>  
601 - <length>-1</length>  
602 - <precision>-1</precision>  
603 - <set_empty_string>N</set_empty_string>  
604 - </field>  
605 - <field>  
606 - <name>length</name>  
607 - <type>String</type>  
608 - <format/>  
609 - <currency/>  
610 - <decimal/>  
611 - <group/>  
612 - <nullif>-1</nullif>  
613 - <length>-1</length>  
614 - <precision>-1</precision>  
615 - <set_empty_string>N</set_empty_string>  
616 - </field>  
617 - <field>  
618 - <name>precision</name>  
619 - <type>String</type>  
620 - <format/>  
621 - <currency/>  
622 - <decimal/>  
623 - <group/>  
624 - <nullif>-1</nullif>  
625 - <length>-1</length>  
626 - <precision>-1</precision>  
627 - <set_empty_string>N</set_empty_string>  
628 - </field>  
629 - <field>  
630 - <name>trim_type</name>  
631 - <type>String</type>  
632 - <format/>  
633 - <currency/>  
634 - <decimal/>  
635 - <group/>  
636 - <nullif>none</nullif>  
637 - <length>-1</length>  
638 - <precision>-1</precision>  
639 - <set_empty_string>N</set_empty_string>  
640 - </field>  
641 - <field>  
642 - <name>repeat</name>  
643 - <type>String</type>  
644 - <format/>  
645 - <currency/>  
646 - <decimal/>  
647 - <group/>  
648 - <nullif>N</nullif>  
649 - <length>-1</length>  
650 - <precision>-1</precision>  
651 - <set_empty_string>N</set_empty_string>  
652 - </field>  
653 - <field>  
654 - <name>format</name>  
655 - <type>String</type>  
656 - <format/>  
657 - <currency/>  
658 - <decimal/>  
659 - <group/>  
660 - <nullif>&#x23;</nullif>  
661 - <length>-1</length>  
662 - <precision>-1</precision>  
663 - <set_empty_string>N</set_empty_string>  
664 - </field>  
665 - </fields>  
666 - <cluster_schema/>  
667 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
668 - <xloc>622</xloc>  
669 - <yloc>162</yloc>  
670 - <draw>Y</draw>  
671 - </GUI>  
672 - </step>  
673 -  
674 - <step>  
675 - <name>&#x589e;&#x52a0;normalize&#x5143;&#x6570;&#x636e;</name>  
676 - <type>Constant</type>  
677 - <description/>  
678 - <distribute>Y</distribute>  
679 - <custom_distribution/>  
680 - <copies>1</copies>  
681 - <partitioning>  
682 - <method>none</method>  
683 - <schema_name/>  
684 - </partitioning>  
685 - <fields>  
686 - <field>  
687 - <name>valuefield</name>  
688 - <type>String</type>  
689 - <format/>  
690 - <currency/>  
691 - <decimal/>  
692 - <group/>  
693 - <nullif>&#x53d1;&#x8f66;&#x65f6;&#x95f4;</nullif>  
694 - <length>-1</length>  
695 - <precision>-1</precision>  
696 - <set_empty_string>N</set_empty_string>  
697 - </field>  
698 - </fields>  
699 - <cluster_schema/>  
700 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
701 - <xloc>628</xloc>  
702 - <yloc>247</yloc>  
703 - <draw>Y</draw>  
704 - </GUI>  
705 - </step>  
706 -  
707 - <step>  
708 - <name>&#x589e;&#x52a0;&#x505c;&#x8f66;&#x573a;&#x540d;&#x79f0;metadata</name>  
709 - <type>Constant</type>  
710 - <description/>  
711 - <distribute>Y</distribute>  
712 - <custom_distribution/>  
713 - <copies>1</copies>  
714 - <partitioning>  
715 - <method>none</method>  
716 - <schema_name/>  
717 - </partitioning>  
718 - <fields>  
719 - <field>  
720 - <name>col_name</name>  
721 - <type>String</type>  
722 - <format/>  
723 - <currency/>  
724 - <decimal/>  
725 - <group/>  
726 - <nullif>tccname_</nullif>  
727 - <length>-1</length>  
728 - <precision>-1</precision>  
729 - <set_empty_string>N</set_empty_string>  
730 - </field>  
731 - <field>  
732 - <name>col_type</name>  
733 - <type>String</type>  
734 - <format/>  
735 - <currency/>  
736 - <decimal/>  
737 - <group/>  
738 - <nullif>String</nullif>  
739 - <length>-1</length>  
740 - <precision>-1</precision>  
741 - <set_empty_string>N</set_empty_string>  
742 - </field>  
743 - <field>  
744 - <name>col_value</name>  
745 - <type>String</type>  
746 - <format/>  
747 - <currency/>  
748 - <decimal/>  
749 - <group/>  
750 - <nullif>replace</nullif>  
751 - <length>-1</length>  
752 - <precision>-1</precision>  
753 - <set_empty_string>N</set_empty_string>  
754 - </field>  
755 - </fields>  
756 - <cluster_schema/>  
757 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
758 - <xloc>461</xloc>  
759 - <yloc>469</yloc>  
760 - <draw>Y</draw>  
761 - </GUI>  
762 - </step>  
763 -  
764 - <step>  
765 - <name>&#x589e;&#x52a0;&#x65f6;&#x523b;&#x8868;&#x540d;&#x79f0;metadata</name>  
766 - <type>Constant</type>  
767 - <description/>  
768 - <distribute>Y</distribute>  
769 - <custom_distribution/>  
770 - <copies>1</copies>  
771 - <partitioning>  
772 - <method>none</method>  
773 - <schema_name/>  
774 - </partitioning>  
775 - <fields>  
776 - <field>  
777 - <name>col_name</name>  
778 - <type>String</type>  
779 - <format/>  
780 - <currency/>  
781 - <decimal/>  
782 - <group/>  
783 - <nullif>ttinfoname_</nullif>  
784 - <length>-1</length>  
785 - <precision>-1</precision>  
786 - <set_empty_string>N</set_empty_string>  
787 - </field>  
788 - <field>  
789 - <name>col_type</name>  
790 - <type>String</type>  
791 - <format/>  
792 - <currency/>  
793 - <decimal/>  
794 - <group/>  
795 - <nullif>String</nullif>  
796 - <length>-1</length>  
797 - <precision>-1</precision>  
798 - <set_empty_string>N</set_empty_string>  
799 - </field>  
800 - <field>  
801 - <name>col_value</name>  
802 - <type>String</type>  
803 - <format/>  
804 - <currency/>  
805 - <decimal/>  
806 - <group/>  
807 - <nullif>replace</nullif>  
808 - <length>-1</length>  
809 - <precision>-1</precision>  
810 - <set_empty_string>N</set_empty_string>  
811 - </field>  
812 - </fields>  
813 - <cluster_schema/>  
814 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
815 - <xloc>608</xloc>  
816 - <yloc>601</yloc>  
817 - <draw>Y</draw>  
818 - </GUI>  
819 - </step>  
820 -  
821 - <step>  
822 - <name>&#x589e;&#x52a0;&#x7ebf;&#x8def;&#x540d;&#x79f0;metadata</name>  
823 - <type>Constant</type>  
824 - <description/>  
825 - <distribute>Y</distribute>  
826 - <custom_distribution/>  
827 - <copies>1</copies>  
828 - <partitioning>  
829 - <method>none</method>  
830 - <schema_name/>  
831 - </partitioning>  
832 - <fields>  
833 - <field>  
834 - <name>col_name</name>  
835 - <type>String</type>  
836 - <format/>  
837 - <currency/>  
838 - <decimal/>  
839 - <group/>  
840 - <nullif>xlname_</nullif>  
841 - <length>-1</length>  
842 - <precision>-1</precision>  
843 - <set_empty_string>N</set_empty_string>  
844 - </field>  
845 - <field>  
846 - <name>col_type</name>  
847 - <type>String</type>  
848 - <format/>  
849 - <currency/>  
850 - <decimal/>  
851 - <group/>  
852 - <nullif>String</nullif>  
853 - <length>-1</length>  
854 - <precision>-1</precision>  
855 - <set_empty_string>N</set_empty_string>  
856 - </field>  
857 - <field>  
858 - <name>col_value</name>  
859 - <type>String</type>  
860 - <format/>  
861 - <currency/>  
862 - <decimal/>  
863 - <group/>  
864 - <nullif>replace</nullif>  
865 - <length>-1</length>  
866 - <precision>-1</precision>  
867 - <set_empty_string>N</set_empty_string>  
868 - </field>  
869 - </fields>  
870 - <cluster_schema/>  
871 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
872 - <xloc>383</xloc>  
873 - <yloc>341</yloc>  
874 - <draw>Y</draw>  
875 - </GUI>  
876 - </step>  
877 -  
878 - <step>  
879 - <name>&#x65f6;&#x523b;&#x8868;&#x540d;&#x79f0;metadata&#x5b57;&#x6bb5;</name>  
880 - <type>SelectValues</type>  
881 - <description/>  
882 - <distribute>Y</distribute>  
883 - <custom_distribution/>  
884 - <copies>1</copies>  
885 - <partitioning>  
886 - <method>none</method>  
887 - <schema_name/>  
888 - </partitioning>  
889 - <fields> <field> <name>col_name</name>  
890 - <rename/>  
891 - <length>-2</length>  
892 - <precision>-2</precision>  
893 - </field> <field> <name>col_type</name>  
894 - <rename/>  
895 - <length>-2</length>  
896 - <precision>-2</precision>  
897 - </field> <field> <name>col_value</name>  
898 - <rename/>  
899 - <length>-2</length>  
900 - <precision>-2</precision>  
901 - </field> <select_unspecified>N</select_unspecified>  
902 - </fields> <cluster_schema/>  
903 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
904 - <xloc>888</xloc>  
905 - <yloc>601</yloc>  
906 - <draw>Y</draw>  
907 - </GUI>  
908 - </step>  
909 -  
910 - <step>  
911 - <name>&#x66ff;&#x6362;&#x505c;&#x8f66;&#x5382;&#x540d;&#x5b57; </name>  
912 - <type>SetValueField</type>  
913 - <description/>  
914 - <distribute>Y</distribute>  
915 - <custom_distribution/>  
916 - <copies>1</copies>  
917 - <partitioning>  
918 - <method>none</method>  
919 - <schema_name/>  
920 - </partitioning>  
921 - <fields>  
922 - <field>  
923 - <name>col_value</name>  
924 - <replaceby>tccname_</replaceby>  
925 - </field>  
926 - </fields>  
927 - <cluster_schema/>  
928 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
929 - <xloc>598</xloc>  
930 - <yloc>471</yloc>  
931 - <draw>Y</draw>  
932 - </GUI>  
933 - </step>  
934 -  
935 - <step>  
936 - <name>&#x66ff;&#x6362;&#x65f6;&#x523b;&#x8868;&#x540d;&#x5b57;</name>  
937 - <type>SetValueField</type>  
938 - <description/>  
939 - <distribute>Y</distribute>  
940 - <custom_distribution/>  
941 - <copies>1</copies>  
942 - <partitioning>  
943 - <method>none</method>  
944 - <schema_name/>  
945 - </partitioning>  
946 - <fields>  
947 - <field>  
948 - <name>col_value</name>  
949 - <replaceby>ttinfoname_</replaceby>  
950 - </field>  
951 - </fields>  
952 - <cluster_schema/>  
953 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
954 - <xloc>746</xloc>  
955 - <yloc>602</yloc>  
956 - <draw>Y</draw>  
957 - </GUI>  
958 - </step>  
959 -  
960 - <step>  
961 - <name>&#x66ff;&#x6362;&#x7ebf;&#x8def;&#x540d;&#x79f0;</name>  
962 - <type>SetValueField</type>  
963 - <description/>  
964 - <distribute>Y</distribute>  
965 - <custom_distribution/>  
966 - <copies>1</copies>  
967 - <partitioning>  
968 - <method>none</method>  
969 - <schema_name/>  
970 - </partitioning>  
971 - <fields>  
972 - <field>  
973 - <name>col_value</name>  
974 - <replaceby>xlname_</replaceby>  
975 - </field>  
976 - </fields>  
977 - <cluster_schema/>  
978 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
979 - <xloc>521</xloc>  
980 - <yloc>342</yloc>  
981 - <draw>Y</draw>  
982 - </GUI>  
983 - </step>  
984 -  
985 - <step>  
986 - <name>&#x7ebf;&#x8def;&#x540d;&#x79f0;metadata&#x5b57;&#x6bb5;</name>  
987 - <type>SelectValues</type>  
988 - <description/>  
989 - <distribute>Y</distribute>  
990 - <custom_distribution/>  
991 - <copies>1</copies>  
992 - <partitioning>  
993 - <method>none</method>  
994 - <schema_name/>  
995 - </partitioning>  
996 - <fields> <field> <name>col_name</name>  
997 - <rename/>  
998 - <length>-2</length>  
999 - <precision>-2</precision>  
1000 - </field> <field> <name>col_type</name>  
1001 - <rename/>  
1002 - <length>-2</length>  
1003 - <precision>-2</precision>  
1004 - </field> <field> <name>col_value</name>  
1005 - <rename/>  
1006 - <length>-2</length>  
1007 - <precision>-2</precision>  
1008 - </field> <select_unspecified>N</select_unspecified>  
1009 - </fields> <cluster_schema/>  
1010 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1011 - <xloc>668</xloc>  
1012 - <yloc>343</yloc>  
1013 - <draw>Y</draw>  
1014 - </GUI>  
1015 - </step>  
1016 -  
1017 - <step>  
1018 - <name>&#x83b7;&#x53d6;excel&#x5b57;&#x6bb5;&#x540d;&#x5b57;&#x7b26;&#x4e32;</name>  
1019 - <type>GetVariable</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 - <fields>  
1029 - <field>  
1030 - <name>fieldnames</name>  
1031 - <variable>&#x24;&#x7b;excelfieldnames&#x7d;</variable>  
1032 - <type>String</type>  
1033 - <format/>  
1034 - <currency/>  
1035 - <decimal/>  
1036 - <group/>  
1037 - <length>-1</length>  
1038 - <precision>-1</precision>  
1039 - <trim_type>none</trim_type>  
1040 - </field>  
1041 - </fields>  
1042 - <cluster_schema/>  
1043 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1044 - <xloc>252</xloc>  
1045 - <yloc>153</yloc>  
1046 - <draw>Y</draw>  
1047 - </GUI>  
1048 - </step>  
1049 -  
1050 - <step>  
1051 - <name>&#x83b7;&#x53d6;excel&#x6587;&#x4ef6;&#x540d;</name>  
1052 - <type>GetVariable</type>  
1053 - <description/>  
1054 - <distribute>Y</distribute>  
1055 - <custom_distribution/>  
1056 - <copies>1</copies>  
1057 - <partitioning>  
1058 - <method>none</method>  
1059 - <schema_name/>  
1060 - </partitioning>  
1061 - <fields>  
1062 - <field>  
1063 - <name>filepath_</name>  
1064 - <variable>&#x24;&#x7b;filepath&#x7d;</variable>  
1065 - <type>String</type>  
1066 - <format/>  
1067 - <currency/>  
1068 - <decimal/>  
1069 - <group/>  
1070 - <length>-1</length>  
1071 - <precision>-1</precision>  
1072 - <trim_type>none</trim_type>  
1073 - </field>  
1074 - <field>  
1075 - <name>erroroutputdir_</name>  
1076 - <variable>&#x24;&#x7b;erroroutputdir&#x7d;</variable>  
1077 - <type>String</type>  
1078 - <format/>  
1079 - <currency/>  
1080 - <decimal/>  
1081 - <group/>  
1082 - <length>-1</length>  
1083 - <precision>-1</precision>  
1084 - <trim_type>none</trim_type>  
1085 - </field>  
1086 - <field>  
1087 - <name>sheetname_</name>  
1088 - <variable>&#x24;&#x7b;sheetname&#x7d;</variable>  
1089 - <type>String</type>  
1090 - <format/>  
1091 - <currency/>  
1092 - <decimal/>  
1093 - <group/>  
1094 - <length>-1</length>  
1095 - <precision>-1</precision>  
1096 - <trim_type>none</trim_type>  
1097 - </field>  
1098 - </fields>  
1099 - <cluster_schema/>  
1100 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1101 - <xloc>301</xloc>  
1102 - <yloc>52</yloc>  
1103 - <draw>Y</draw>  
1104 - </GUI>  
1105 - </step>  
1106 -  
1107 - <step>  
1108 - <name>&#x83b7;&#x53d6;normalize&#x5b57;&#x6bb5;&#x540d;&#x5b57;&#x7b26;&#x4e32;</name>  
1109 - <type>GetVariable</type>  
1110 - <description/>  
1111 - <distribute>Y</distribute>  
1112 - <custom_distribution/>  
1113 - <copies>1</copies>  
1114 - <partitioning>  
1115 - <method>none</method>  
1116 - <schema_name/>  
1117 - </partitioning>  
1118 - <fields>  
1119 - <field>  
1120 - <name>normalizefieldnames_</name>  
1121 - <variable>&#x24;&#x7b;normalizefieldnames&#x7d;</variable>  
1122 - <type>String</type>  
1123 - <format/>  
1124 - <currency/>  
1125 - <decimal/>  
1126 - <group/>  
1127 - <length>-1</length>  
1128 - <precision>-1</precision>  
1129 - <trim_type>none</trim_type>  
1130 - </field>  
1131 - </fields>  
1132 - <cluster_schema/>  
1133 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1134 - <xloc>261</xloc>  
1135 - <yloc>251</yloc>  
1136 - <draw>Y</draw>  
1137 - </GUI>  
1138 - </step>  
1139 -  
1140 - <step>  
1141 - <name>&#x83b7;&#x53d6;&#x65f6;&#x523b;&#x8868;id</name>  
1142 - <type>GetVariable</type>  
1143 - <description/>  
1144 - <distribute>Y</distribute>  
1145 - <custom_distribution/>  
1146 - <copies>1</copies>  
1147 - <partitioning>  
1148 - <method>none</method>  
1149 - <schema_name/>  
1150 - </partitioning>  
1151 - <fields>  
1152 - <field>  
1153 - <name>ttid_</name>  
1154 - <variable>&#x24;&#x7b;ttid&#x7d;</variable>  
1155 - <type>Integer</type>  
1156 - <format/>  
1157 - <currency/>  
1158 - <decimal/>  
1159 - <group/>  
1160 - <length>-1</length>  
1161 - <precision>-1</precision>  
1162 - <trim_type>none</trim_type>  
1163 - </field>  
1164 - </fields>  
1165 - <cluster_schema/>  
1166 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1167 - <xloc>608</xloc>  
1168 - <yloc>16</yloc>  
1169 - <draw>Y</draw>  
1170 - </GUI>  
1171 - </step>  
1172 -  
1173 - <step>  
1174 - <name>&#x83b7;&#x53d6;&#x65f6;&#x523b;&#x8868;&#x540d;&#x79f0;</name>  
1175 - <type>GetVariable</type>  
1176 - <description/>  
1177 - <distribute>Y</distribute>  
1178 - <custom_distribution/>  
1179 - <copies>1</copies>  
1180 - <partitioning>  
1181 - <method>none</method>  
1182 - <schema_name/>  
1183 - </partitioning>  
1184 - <fields>  
1185 - <field>  
1186 - <name>ttinfoname_</name>  
1187 - <variable>&#x24;&#x7b;ttinfoname&#x7d;</variable>  
1188 - <type>String</type>  
1189 - <format/>  
1190 - <currency/>  
1191 - <decimal/>  
1192 - <group/>  
1193 - <length>-1</length>  
1194 - <precision>-1</precision>  
1195 - <trim_type>none</trim_type>  
1196 - </field>  
1197 - </fields>  
1198 - <cluster_schema/>  
1199 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1200 - <xloc>474</xloc>  
1201 - <yloc>601</yloc>  
1202 - <draw>Y</draw>  
1203 - </GUI>  
1204 - </step>  
1205 -  
1206 - <step>  
1207 - <name>&#x83b7;&#x53d6;&#x7ebf;&#x8def;&#x540d;&#x79f0;</name>  
1208 - <type>GetVariable</type>  
1209 - <description/>  
1210 - <distribute>Y</distribute>  
1211 - <custom_distribution/>  
1212 - <copies>1</copies>  
1213 - <partitioning>  
1214 - <method>none</method>  
1215 - <schema_name/>  
1216 - </partitioning>  
1217 - <fields>  
1218 - <field>  
1219 - <name>xlname_</name>  
1220 - <variable>&#x24;&#x7b;xlname&#x7d;</variable>  
1221 - <type>String</type>  
1222 - <format/>  
1223 - <currency/>  
1224 - <decimal/>  
1225 - <group/>  
1226 - <length>-1</length>  
1227 - <precision>-1</precision>  
1228 - <trim_type>none</trim_type>  
1229 - </field>  
1230 - </fields>  
1231 - <cluster_schema/>  
1232 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1233 - <xloc>184</xloc>  
1234 - <yloc>342</yloc>  
1235 - <draw>Y</draw>  
1236 - </GUI>  
1237 - </step>  
1238 -  
1239 - <step>  
1240 - <name>&#x9017;&#x53f7;&#x5207;&#x5206;&#x6210;&#x5b57;&#x6bb5;&#x540d;</name>  
1241 - <type>SplitFieldToRows3</type>  
1242 - <description/>  
1243 - <distribute>Y</distribute>  
1244 - <custom_distribution/>  
1245 - <copies>1</copies>  
1246 - <partitioning>  
1247 - <method>none</method>  
1248 - <schema_name/>  
1249 - </partitioning>  
1250 - <splitfield>fieldnames</splitfield>  
1251 - <delimiter>,</delimiter>  
1252 - <newfield>fieldname</newfield>  
1253 - <rownum>N</rownum>  
1254 - <rownum_field/>  
1255 - <resetrownumber>Y</resetrownumber>  
1256 - <delimiter_is_regex>N</delimiter_is_regex>  
1257 - <cluster_schema/>  
1258 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1259 - <xloc>442</xloc>  
1260 - <yloc>153</yloc>  
1261 - <draw>Y</draw>  
1262 - </GUI>  
1263 - </step>  
1264 -  
1265 - <step>  
1266 - <name>&#x9017;&#x53f7;&#x5207;&#x5206;&#x6210;&#x5b57;&#x6bb5;&#x540d; 2</name>  
1267 - <type>SplitFieldToRows3</type>  
1268 - <description/>  
1269 - <distribute>Y</distribute>  
1270 - <custom_distribution/>  
1271 - <copies>1</copies>  
1272 - <partitioning>  
1273 - <method>none</method>  
1274 - <schema_name/>  
1275 - </partitioning>  
1276 - <splitfield>normalizefieldnames_</splitfield>  
1277 - <delimiter>,</delimiter>  
1278 - <newfield>nfieldname</newfield>  
1279 - <rownum>N</rownum>  
1280 - <rownum_field/>  
1281 - <resetrownumber>Y</resetrownumber>  
1282 - <delimiter_is_regex>N</delimiter_is_regex>  
1283 - <cluster_schema/>  
1284 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1285 - <xloc>444</xloc>  
1286 - <yloc>247</yloc>  
1287 - <draw>Y</draw>  
1288 - </GUI>  
1289 - </step>  
1290 -  
1291 - <step>  
1292 - <name>&#x83b7;&#x53d6;&#x7ebf;&#x8def;&#x6807;&#x51c6;id</name>  
1293 - <type>GetVariable</type>  
1294 - <description/>  
1295 - <distribute>Y</distribute>  
1296 - <custom_distribution/>  
1297 - <copies>1</copies>  
1298 - <partitioning>  
1299 - <method>none</method>  
1300 - <schema_name/>  
1301 - </partitioning>  
1302 - <fields>  
1303 - <field>  
1304 - <name>lineinfoid_</name>  
1305 - <variable>&#x24;&#x7b;lineinfoid&#x7d;</variable>  
1306 - <type>Integer</type>  
1307 - <format/>  
1308 - <currency/>  
1309 - <decimal/>  
1310 - <group/>  
1311 - <length>-1</length>  
1312 - <precision>-1</precision>  
1313 - <trim_type>none</trim_type>  
1314 - </field>  
1315 - </fields>  
1316 - <cluster_schema/>  
1317 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1318 - <xloc>74</xloc>  
1319 - <yloc>468</yloc>  
1320 - <draw>Y</draw>  
1321 - </GUI>  
1322 - </step>  
1323 -  
1324 - <step>  
1325 - <name>&#x505c;&#x8f66;&#x573a;&#x7f16;&#x7801;</name>  
1326 - <type>DBLookup</type>  
1327 - <description/>  
1328 - <distribute>Y</distribute>  
1329 - <custom_distribution/>  
1330 - <copies>1</copies>  
1331 - <partitioning>  
1332 - <method>none</method>  
1333 - <schema_name/>  
1334 - </partitioning>  
1335 - <connection>bus_control_variable</connection>  
1336 - <cache>N</cache>  
1337 - <cache_load_all>N</cache_load_all>  
1338 - <cache_size>0</cache_size>  
1339 - <lookup>  
1340 - <schema/>  
1341 - <table>bsth_c_line_information</table>  
1342 - <orderby/>  
1343 - <fail_on_multiple>N</fail_on_multiple>  
1344 - <eat_row_on_failure>N</eat_row_on_failure>  
1345 - <key>  
1346 - <name>lineinfoid_</name>  
1347 - <field>id</field>  
1348 - <condition>&#x3d;</condition>  
1349 - <name2/>  
1350 - </key>  
1351 - <value>  
1352 - <name>car_park</name>  
1353 - <rename>car_park</rename>  
1354 - <default/>  
1355 - <type>String</type>  
1356 - </value>  
1357 - </lookup>  
1358 - <cluster_schema/>  
1359 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1360 - <xloc>182</xloc>  
1361 - <yloc>467</yloc>  
1362 - <draw>Y</draw>  
1363 - </GUI>  
1364 - </step>  
1365 -  
1366 - <step>  
1367 - <name>&#x505c;&#x8f66;&#x573a;&#x540d;&#x79f0;</name>  
1368 - <type>DBLookup</type>  
1369 - <description/>  
1370 - <distribute>Y</distribute>  
1371 - <custom_distribution/>  
1372 - <copies>1</copies>  
1373 - <partitioning>  
1374 - <method>none</method>  
1375 - <schema_name/>  
1376 - </partitioning>  
1377 - <connection>bus_control_variable</connection>  
1378 - <cache>N</cache>  
1379 - <cache_load_all>N</cache_load_all>  
1380 - <cache_size>0</cache_size>  
1381 - <lookup>  
1382 - <schema/>  
1383 - <table>bsth_c_car_park</table>  
1384 - <orderby/>  
1385 - <fail_on_multiple>N</fail_on_multiple>  
1386 - <eat_row_on_failure>N</eat_row_on_failure>  
1387 - <key>  
1388 - <name>car_park</name>  
1389 - <field>park_code</field>  
1390 - <condition>&#x3d;</condition>  
1391 - <name2/>  
1392 - </key>  
1393 - <value>  
1394 - <name>park_name</name>  
1395 - <rename>tccname_</rename>  
1396 - <default/>  
1397 - <type>String</type>  
1398 - </value>  
1399 - </lookup>  
1400 - <cluster_schema/>  
1401 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1402 - <xloc>319</xloc>  
1403 - <yloc>468</yloc>  
1404 - <draw>Y</draw>  
1405 - </GUI>  
1406 - </step>  
1407 -  
1408 - <step_error_handling>  
1409 - </step_error_handling>  
1410 - <slave-step-copy-partition-distribution>  
1411 -</slave-step-copy-partition-distribution>  
1412 - <slave_transformation>N</slave_transformation>  
1413 -  
1414 -</transformation> 1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<transformation>
  3 + <info>
  4 + <name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x5bfc;&#x5165;&#x5143;&#x6570;&#x636e;</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>normalizefieldnames</name>
  39 + <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>
  40 + <description>&#x6570;&#x636e;&#x8303;&#x5f0f;&#x5316;&#x5b57;&#x6bb5;&#x540d;&#xff0c;&#x4ee5;&#x9017;&#x53f7;&#x8fde;&#x63a5;</description>
  41 + </parameter>
  42 + <parameter>
  43 + <name>sheetname</name>
  44 + <default_value>&#x5de5;&#x4f5c;&#x8868;1</default_value>
  45 + <description>xls sheet&#x540d;&#x5b57;</description>
  46 + </parameter>
  47 + <parameter>
  48 + <name>tccname</name>
  49 + <default_value>&#x4e1c;&#x5ddd;&#x8def;&#x5730;&#x94c1;&#x7ad9;&#x505c;&#x8f66;&#x573a;</default_value>
  50 + <description>&#x505c;&#x8f66;&#x573a;&#x540d;&#x5b57;</description>
  51 + </parameter>
  52 + <parameter>
  53 + <name>ttid</name>
  54 + <default_value>1</default_value>
  55 + <description>&#x65f6;&#x523b;&#x8868;id</description>
  56 + </parameter>
  57 + <parameter>
  58 + <name>ttinfoname</name>
  59 + <default_value>&#x8868;2</default_value>
  60 + <description>&#x65f6;&#x523b;&#x8868;&#x540d;&#x79f0;</description>
  61 + </parameter>
  62 + <parameter>
  63 + <name>xlname</name>
  64 + <default_value>&#x95f5;&#x884c;26&#x8def;</default_value>
  65 + <description>&#x7ebf;&#x8def;&#x540d;&#x79f0;</description>
  66 + </parameter>
  67 + </parameters>
  68 + <log>
  69 +<trans-log-table><connection/>
  70 +<schema/>
  71 +<table/>
  72 +<size_limit_lines/>
  73 +<interval/>
  74 +<timeout_days/>
  75 +<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>
  76 +<perf-log-table><connection/>
  77 +<schema/>
  78 +<table/>
  79 +<interval/>
  80 +<timeout_days/>
  81 +<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>
  82 +<channel-log-table><connection/>
  83 +<schema/>
  84 +<table/>
  85 +<timeout_days/>
  86 +<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>
  87 +<step-log-table><connection/>
  88 +<schema/>
  89 +<table/>
  90 +<timeout_days/>
  91 +<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>
  92 +<metrics-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>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>
  97 + </log>
  98 + <maxdate>
  99 + <connection/>
  100 + <table/>
  101 + <field/>
  102 + <offset>0.0</offset>
  103 + <maxdiff>0.0</maxdiff>
  104 + </maxdate>
  105 + <size_rowset>10000</size_rowset>
  106 + <sleep_time_empty>50</sleep_time_empty>
  107 + <sleep_time_full>50</sleep_time_full>
  108 + <unique_connections>N</unique_connections>
  109 + <feedback_shown>Y</feedback_shown>
  110 + <feedback_size>50000</feedback_size>
  111 + <using_thread_priorities>Y</using_thread_priorities>
  112 + <shared_objects_file/>
  113 + <capture_step_performance>N</capture_step_performance>
  114 + <step_performance_capturing_delay>1000</step_performance_capturing_delay>
  115 + <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit>
  116 + <dependencies>
  117 + </dependencies>
  118 + <partitionschemas>
  119 + </partitionschemas>
  120 + <slaveservers>
  121 + </slaveservers>
  122 + <clusterschemas>
  123 + </clusterschemas>
  124 + <created_user>-</created_user>
  125 + <created_date>2016&#x2f;07&#x2f;01 09&#x3a;55&#x3a;32.649</created_date>
  126 + <modified_user>-</modified_user>
  127 + <modified_date>2016&#x2f;07&#x2f;01 09&#x3a;55&#x3a;32.649</modified_date>
  128 + <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA&#x3d;</key_for_session_key>
  129 + <is_key_private>N</is_key_private>
  130 + </info>
  131 + <notepads>
  132 + </notepads>
  133 + <connection>
  134 + <name>192.168.168.1_jwgl_dw</name>
  135 + <server>192.168.168.1</server>
  136 + <type>ORACLE</type>
  137 + <access>Native</access>
  138 + <database>orcl</database>
  139 + <port>1521</port>
  140 + <username>jwgl_dw</username>
  141 + <password>Encrypted 2be98afc86aa7f2e4cb13b977d2adabcd</password>
  142 + <servername/>
  143 + <data_tablespace/>
  144 + <index_tablespace/>
  145 + <attributes>
  146 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  147 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  148 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  149 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  150 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  151 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  152 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  153 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  154 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  155 + </attributes>
  156 + </connection>
  157 + <connection>
  158 + <name>bus_control_variable</name>
  159 + <server>&#x24;&#x7b;v_db_ip&#x7d;</server>
  160 + <type>MYSQL</type>
  161 + <access>Native</access>
  162 + <database>&#x24;&#x7b;v_db_dname&#x7d;</database>
  163 + <port>3306</port>
  164 + <username>&#x24;&#x7b;v_db_uname&#x7d;</username>
  165 + <password>&#x24;&#x7b;v_db_pwd&#x7d;</password>
  166 + <servername/>
  167 + <data_tablespace/>
  168 + <index_tablespace/>
  169 + <attributes>
  170 + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
  171 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  172 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  173 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  174 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  175 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  176 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  177 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  178 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  179 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  180 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  181 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  182 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  183 + </attributes>
  184 + </connection>
  185 + <connection>
  186 + <name>bus_control_&#x516c;&#x53f8;_201</name>
  187 + <server>localhost</server>
  188 + <type>MYSQL</type>
  189 + <access>Native</access>
  190 + <database>control</database>
  191 + <port>3306</port>
  192 + <username>root</username>
  193 + <password>Encrypted </password>
  194 + <servername/>
  195 + <data_tablespace/>
  196 + <index_tablespace/>
  197 + <attributes>
  198 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  199 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  200 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  201 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  202 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  203 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  204 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  205 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  206 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  207 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  208 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  209 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  210 + </attributes>
  211 + </connection>
  212 + <connection>
  213 + <name>bus_control_&#x672c;&#x673a;</name>
  214 + <server>localhost</server>
  215 + <type>MYSQL</type>
  216 + <access>Native</access>
  217 + <database>control</database>
  218 + <port>3306</port>
  219 + <username>root</username>
  220 + <password>Encrypted </password>
  221 + <servername/>
  222 + <data_tablespace/>
  223 + <index_tablespace/>
  224 + <attributes>
  225 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  226 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  227 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  228 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  229 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  230 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  231 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  232 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  233 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  234 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  235 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  236 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  237 + </attributes>
  238 + </connection>
  239 + <connection>
  240 + <name>xlab_mysql_youle</name>
  241 + <server>101.231.124.8</server>
  242 + <type>MYSQL</type>
  243 + <access>Native</access>
  244 + <database>xlab_youle</database>
  245 + <port>45687</port>
  246 + <username>xlab-youle</username>
  247 + <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password>
  248 + <servername/>
  249 + <data_tablespace/>
  250 + <index_tablespace/>
  251 + <attributes>
  252 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  253 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  254 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  255 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  256 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  257 + <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute>
  258 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  259 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  260 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  261 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  262 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  263 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  264 + </attributes>
  265 + </connection>
  266 + <connection>
  267 + <name>xlab_mysql_youle&#xff08;&#x672c;&#x673a;&#xff09;</name>
  268 + <server>localhost</server>
  269 + <type>MYSQL</type>
  270 + <access>Native</access>
  271 + <database>xlab_youle</database>
  272 + <port>3306</port>
  273 + <username>root</username>
  274 + <password>Encrypted </password>
  275 + <servername/>
  276 + <data_tablespace/>
  277 + <index_tablespace/>
  278 + <attributes>
  279 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  280 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  281 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  282 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  283 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  284 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  285 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  286 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  287 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  288 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  289 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  290 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  291 + </attributes>
  292 + </connection>
  293 + <connection>
  294 + <name>xlab_youle</name>
  295 + <server/>
  296 + <type>MYSQL</type>
  297 + <access>JNDI</access>
  298 + <database>xlab_youle</database>
  299 + <port>1521</port>
  300 + <username/>
  301 + <password>Encrypted </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>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  313 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  314 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  315 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  316 + </attributes>
  317 + </connection>
  318 + <order>
  319 + <hop> <from>&#x83b7;&#x53d6;excel&#x6587;&#x4ef6;&#x540d;</from><to>ETL&#x5143;&#x6570;&#x636e;&#x6ce8;&#x5165;</to><enabled>Y</enabled> </hop>
  320 + <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>
  321 + <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>
  322 + <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>
  323 + <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>
  324 + <hop> <from>&#x9017;&#x53f7;&#x5207;&#x5206;&#x6210;&#x5b57;&#x6bb5;&#x540d; 2</from><to>&#x589e;&#x52a0;normalize&#x5143;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
  325 + <hop> <from>&#x589e;&#x52a0;normalize&#x5143;&#x6570;&#x636e;</from><to>ETL&#x5143;&#x6570;&#x636e;&#x6ce8;&#x5165;</to><enabled>Y</enabled> </hop>
  326 + <hop> <from>&#x83b7;&#x53d6;&#x7ebf;&#x8def;&#x540d;&#x79f0;</from><to>&#x589e;&#x52a0;&#x7ebf;&#x8def;&#x540d;&#x79f0;metadata</to><enabled>Y</enabled> </hop>
  327 + <hop> <from>&#x589e;&#x52a0;&#x7ebf;&#x8def;&#x540d;&#x79f0;metadata</from><to>&#x66ff;&#x6362;&#x7ebf;&#x8def;&#x540d;&#x79f0;</to><enabled>Y</enabled> </hop>
  328 + <hop> <from>&#x66ff;&#x6362;&#x7ebf;&#x8def;&#x540d;&#x79f0;</from><to>&#x7ebf;&#x8def;&#x540d;&#x79f0;metadata&#x5b57;&#x6bb5;</to><enabled>Y</enabled> </hop>
  329 + <hop> <from>&#x589e;&#x52a0;&#x505c;&#x8f66;&#x573a;&#x540d;&#x79f0;metadata</from><to>&#x66ff;&#x6362;&#x505c;&#x8f66;&#x5382;&#x540d;&#x5b57; </to><enabled>Y</enabled> </hop>
  330 + <hop> <from>&#x66ff;&#x6362;&#x505c;&#x8f66;&#x5382;&#x540d;&#x5b57; </from><to>&#x505c;&#x8f66;&#x573a;&#x540d;&#x79f0;metadata&#x5b57;&#x6bb5;</to><enabled>Y</enabled> </hop>
  331 + <hop> <from>&#x83b7;&#x53d6;&#x65f6;&#x523b;&#x8868;&#x540d;&#x79f0;</from><to>&#x589e;&#x52a0;&#x65f6;&#x523b;&#x8868;&#x540d;&#x79f0;metadata</to><enabled>Y</enabled> </hop>
  332 + <hop> <from>&#x589e;&#x52a0;&#x65f6;&#x523b;&#x8868;&#x540d;&#x79f0;metadata</from><to>&#x66ff;&#x6362;&#x65f6;&#x523b;&#x8868;&#x540d;&#x5b57;</to><enabled>Y</enabled> </hop>
  333 + <hop> <from>&#x66ff;&#x6362;&#x65f6;&#x523b;&#x8868;&#x540d;&#x5b57;</from><to>&#x65f6;&#x523b;&#x8868;&#x540d;&#x79f0;metadata&#x5b57;&#x6bb5;</to><enabled>Y</enabled> </hop>
  334 + <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>
  335 + <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>
  336 + <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>
  337 + <hop> <from>&#x5408;&#x5e76;&#x589e;&#x52a0;&#x5e38;&#x91cf;&#x6570;&#x636e;metadata</from><to>ETL&#x5143;&#x6570;&#x636e;&#x6ce8;&#x5165;</to><enabled>Y</enabled> </hop>
  338 + <hop> <from>&#x83b7;&#x53d6;&#x65f6;&#x523b;&#x8868;id</from><to>&#x5220;&#x9664;&#x4e4b;&#x524d;&#x7684;&#x660e;&#x7ec6;&#x4fe1;&#x606f;</to><enabled>Y</enabled> </hop>
  339 + <hop> <from>&#x83b7;&#x53d6;&#x7ebf;&#x8def;&#x6807;&#x51c6;id</from><to>&#x505c;&#x8f66;&#x573a;&#x7f16;&#x7801;</to><enabled>Y</enabled> </hop>
  340 + <hop> <from>&#x505c;&#x8f66;&#x573a;&#x7f16;&#x7801;</from><to>&#x505c;&#x8f66;&#x573a;&#x540d;&#x79f0;</to><enabled>Y</enabled> </hop>
  341 + <hop> <from>&#x505c;&#x8f66;&#x573a;&#x540d;&#x79f0;</from><to>&#x589e;&#x52a0;&#x505c;&#x8f66;&#x573a;&#x540d;&#x79f0;metadata</to><enabled>Y</enabled> </hop>
  342 + </order>
  343 + <step>
  344 + <name>ETL&#x5143;&#x6570;&#x636e;&#x6ce8;&#x5165;</name>
  345 + <type>MetaInject</type>
  346 + <description/>
  347 + <distribute>Y</distribute>
  348 + <custom_distribution/>
  349 + <copies>1</copies>
  350 + <partitioning>
  351 + <method>none</method>
  352 + <schema_name/>
  353 + </partitioning>
  354 + <specification_method>filename</specification_method>
  355 + <trans_object_id/>
  356 + <trans_name/>
  357 + <filename>&#x24;&#x7b;injectktrfile&#x7d;</filename>
  358 + <directory_path/>
  359 + <source_step/>
  360 + <source_output_fields> </source_output_fields> <target_file/>
  361 + <no_execution>N</no_execution>
  362 + <stream_source_step/>
  363 + <stream_target_step/>
  364 + <mappings> <mapping> <target_step_name>Excel&#x8f93;&#x5165;</target_step_name>
  365 + <target_attribute_key>FORMAT</target_attribute_key>
  366 + <target_detail>Y</target_detail>
  367 + <source_step>&#x5217;&#x62c6;&#x5206;&#x4e3a;&#x591a;&#x884c;</source_step>
  368 + <source_field>format</source_field>
  369 + </mapping> <mapping> <target_step_name>Excel&#x8f93;&#x5165;</target_step_name>
  370 + <target_attribute_key>REPEAT</target_attribute_key>
  371 + <target_detail>Y</target_detail>
  372 + <source_step>&#x5217;&#x62c6;&#x5206;&#x4e3a;&#x591a;&#x884c;</source_step>
  373 + <source_field>repeat</source_field>
  374 + </mapping> <mapping> <target_step_name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</target_step_name>
  375 + <target_attribute_key>TRIM_TYPE</target_attribute_key>
  376 + <target_detail>Y</target_detail>
  377 + <source_step>&#x589e;&#x52a0;excel&#x5b57;&#x6bb5;&#x5176;&#x4ed6;&#x5143;&#x6570;&#x636e;</source_step>
  378 + <source_field>trim_type</source_field>
  379 + </mapping> <mapping> <target_step_name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</target_step_name>
  380 + <target_attribute_key>FILENAME</target_attribute_key>
  381 + <target_detail>Y</target_detail>
  382 + <source_step>&#x83b7;&#x53d6;excel&#x6587;&#x4ef6;&#x540d;</source_step>
  383 + <source_field>filepath_</source_field>
  384 + </mapping> <mapping> <target_step_name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</target_step_name>
  385 + <target_attribute_key>PRECISION</target_attribute_key>
  386 + <target_detail>Y</target_detail>
  387 + <source_step>&#x589e;&#x52a0;excel&#x5b57;&#x6bb5;&#x5176;&#x4ed6;&#x5143;&#x6570;&#x636e;</source_step>
  388 + <source_field>precision</source_field>
  389 + </mapping> <mapping> <target_step_name>Excel&#x8f93;&#x5165;</target_step_name>
  390 + <target_attribute_key>TYPE</target_attribute_key>
  391 + <target_detail>Y</target_detail>
  392 + <source_step>&#x5217;&#x62c6;&#x5206;&#x4e3a;&#x591a;&#x884c;</source_step>
  393 + <source_field>type</source_field>
  394 + </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>
  395 + <target_attribute_key>DATA_VALUE</target_attribute_key>
  396 + <target_detail>Y</target_detail>
  397 + <source_step>&#x5408;&#x5e76;&#x589e;&#x52a0;&#x5e38;&#x91cf;&#x6570;&#x636e;metadata</source_step>
  398 + <source_field>col_value</source_field>
  399 + </mapping> <mapping> <target_step_name>Excel&#x8f93;&#x5165;</target_step_name>
  400 + <target_attribute_key>LENGTH</target_attribute_key>
  401 + <target_detail>Y</target_detail>
  402 + <source_step>&#x5217;&#x62c6;&#x5206;&#x4e3a;&#x591a;&#x884c;</source_step>
  403 + <source_field>length</source_field>
  404 + </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>
  405 + <target_attribute_key>TYPE</target_attribute_key>
  406 + <target_detail>Y</target_detail>
  407 + <source_step>&#x5408;&#x5e76;&#x589e;&#x52a0;&#x5e38;&#x91cf;&#x6570;&#x636e;metadata</source_step>
  408 + <source_field>col_type</source_field>
  409 + </mapping> <mapping> <target_step_name>&#x884c;&#x8f6c;&#x5217;</target_step_name>
  410 + <target_attribute_key>NAME</target_attribute_key>
  411 + <target_detail>Y</target_detail>
  412 + <source_step>&#x5217;&#x62c6;&#x5206;&#x4e3a;&#x591a;&#x884c; 2</source_step>
  413 + <source_field>fieldName</source_field>
  414 + </mapping> <mapping> <target_step_name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</target_step_name>
  415 + <target_attribute_key>NAME</target_attribute_key>
  416 + <target_detail>Y</target_detail>
  417 + <source_step>&#x589e;&#x52a0;excel&#x5b57;&#x6bb5;&#x5176;&#x4ed6;&#x5143;&#x6570;&#x636e;</source_step>
  418 + <source_field>fieldname</source_field>
  419 + </mapping> <mapping> <target_step_name>&#x73ed;&#x6b21;&#x6570;&#x636e;&#x8303;&#x5f0f;&#x5316;</target_step_name>
  420 + <target_attribute_key>NAME</target_attribute_key>
  421 + <target_detail>Y</target_detail>
  422 + <source_step>&#x589e;&#x52a0;normalize&#x5143;&#x6570;&#x636e;</source_step>
  423 + <source_field>nfieldname</source_field>
  424 + </mapping> <mapping> <target_step_name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</target_step_name>
  425 + <target_attribute_key>SHEET_NAME</target_attribute_key>
  426 + <target_detail>Y</target_detail>
  427 + <source_step>&#x83b7;&#x53d6;excel&#x6587;&#x4ef6;&#x540d;</source_step>
  428 + <source_field>sheetname_</source_field>
  429 + </mapping> <mapping> <target_step_name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</target_step_name>
  430 + <target_attribute_key>LENGTH</target_attribute_key>
  431 + <target_detail>Y</target_detail>
  432 + <source_step>&#x589e;&#x52a0;excel&#x5b57;&#x6bb5;&#x5176;&#x4ed6;&#x5143;&#x6570;&#x636e;</source_step>
  433 + <source_field>length</source_field>
  434 + </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>
  435 + <target_attribute_key>NAME</target_attribute_key>
  436 + <target_detail>Y</target_detail>
  437 + <source_step>&#x5408;&#x5e76;&#x589e;&#x52a0;&#x5e38;&#x91cf;&#x6570;&#x636e;metadata</source_step>
  438 + <source_field>col_name</source_field>
  439 + </mapping> <mapping> <target_step_name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</target_step_name>
  440 + <target_attribute_key>TYPE</target_attribute_key>
  441 + <target_detail>Y</target_detail>
  442 + <source_step>&#x589e;&#x52a0;excel&#x5b57;&#x6bb5;&#x5176;&#x4ed6;&#x5143;&#x6570;&#x636e;</source_step>
  443 + <source_field>fieldtype</source_field>
  444 + </mapping> <mapping> <target_step_name>Excel&#x8f93;&#x5165;</target_step_name>
  445 + <target_attribute_key>NAME</target_attribute_key>
  446 + <target_detail>Y</target_detail>
  447 + <source_step>&#x5217;&#x62c6;&#x5206;&#x4e3a;&#x591a;&#x884c;</source_step>
  448 + <source_field>fieldName</source_field>
  449 + </mapping> <mapping> <target_step_name>Excel&#x8f93;&#x5165;</target_step_name>
  450 + <target_attribute_key>TRIM_TYPE</target_attribute_key>
  451 + <target_detail>Y</target_detail>
  452 + <source_step>&#x5217;&#x62c6;&#x5206;&#x4e3a;&#x591a;&#x884c;</source_step>
  453 + <source_field>trim_type</source_field>
  454 + </mapping> <mapping> <target_step_name>&#x884c;&#x8f6c;&#x5217;</target_step_name>
  455 + <target_attribute_key>VALUE</target_attribute_key>
  456 + <target_detail>Y</target_detail>
  457 + <source_step>&#x5217;&#x62c6;&#x5206;&#x4e3a;&#x591a;&#x884c; 2</source_step>
  458 + <source_field>fieldName</source_field>
  459 + </mapping> <mapping> <target_step_name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</target_step_name>
  460 + <target_attribute_key>REPEAT</target_attribute_key>
  461 + <target_detail>Y</target_detail>
  462 + <source_step>&#x589e;&#x52a0;excel&#x5b57;&#x6bb5;&#x5176;&#x4ed6;&#x5143;&#x6570;&#x636e;</source_step>
  463 + <source_field>repeat</source_field>
  464 + </mapping> <mapping> <target_step_name>&#x884c;&#x8f6c;&#x5217;</target_step_name>
  465 + <target_attribute_key>NORMALISED</target_attribute_key>
  466 + <target_detail>Y</target_detail>
  467 + <source_step>&#x5217;&#x62c6;&#x5206;&#x4e3a;&#x591a;&#x884c; 2</source_step>
  468 + <source_field>value</source_field>
  469 + </mapping> <mapping> <target_step_name>&#x73ed;&#x6b21;&#x6570;&#x636e;&#x8303;&#x5f0f;&#x5316;</target_step_name>
  470 + <target_attribute_key>NORMALISED</target_attribute_key>
  471 + <target_detail>Y</target_detail>
  472 + <source_step>&#x589e;&#x52a0;normalize&#x5143;&#x6570;&#x636e;</source_step>
  473 + <source_field>valuefield</source_field>
  474 + </mapping> <mapping> <target_step_name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</target_step_name>
  475 + <target_attribute_key>FORMAT</target_attribute_key>
  476 + <target_detail>Y</target_detail>
  477 + <source_step>&#x589e;&#x52a0;excel&#x5b57;&#x6bb5;&#x5176;&#x4ed6;&#x5143;&#x6570;&#x636e;</source_step>
  478 + <source_field>format</source_field>
  479 + </mapping> <mapping> <target_step_name>&#x73ed;&#x6b21;&#x6570;&#x636e;&#x8303;&#x5f0f;&#x5316;</target_step_name>
  480 + <target_attribute_key>VALUE</target_attribute_key>
  481 + <target_detail>Y</target_detail>
  482 + <source_step>&#x589e;&#x52a0;normalize&#x5143;&#x6570;&#x636e;</source_step>
  483 + <source_field>nfieldname</source_field>
  484 + </mapping> <mapping> <target_step_name>Excel&#x8f93;&#x5165;</target_step_name>
  485 + <target_attribute_key>PRECISION</target_attribute_key>
  486 + <target_detail>Y</target_detail>
  487 + <source_step>&#x5217;&#x62c6;&#x5206;&#x4e3a;&#x591a;&#x884c;</source_step>
  488 + <source_field>precision</source_field>
  489 + </mapping> </mappings> <cluster_schema/>
  490 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  491 + <xloc>876</xloc>
  492 + <yloc>167</yloc>
  493 + <draw>Y</draw>
  494 + </GUI>
  495 + </step>
  496 +
  497 + <step>
  498 + <name>&#x505c;&#x8f66;&#x573a;&#x540d;&#x79f0;</name>
  499 + <type>DBLookup</type>
  500 + <description/>
  501 + <distribute>Y</distribute>
  502 + <custom_distribution/>
  503 + <copies>1</copies>
  504 + <partitioning>
  505 + <method>none</method>
  506 + <schema_name/>
  507 + </partitioning>
  508 + <connection>bus_control_variable</connection>
  509 + <cache>N</cache>
  510 + <cache_load_all>N</cache_load_all>
  511 + <cache_size>0</cache_size>
  512 + <lookup>
  513 + <schema/>
  514 + <table>bsth_c_car_park</table>
  515 + <orderby/>
  516 + <fail_on_multiple>N</fail_on_multiple>
  517 + <eat_row_on_failure>N</eat_row_on_failure>
  518 + <key>
  519 + <name>car_park</name>
  520 + <field>park_code</field>
  521 + <condition>&#x3d;</condition>
  522 + <name2/>
  523 + </key>
  524 + <value>
  525 + <name>park_name</name>
  526 + <rename>tccname_</rename>
  527 + <default/>
  528 + <type>String</type>
  529 + </value>
  530 + </lookup>
  531 + <cluster_schema/>
  532 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  533 + <xloc>319</xloc>
  534 + <yloc>468</yloc>
  535 + <draw>Y</draw>
  536 + </GUI>
  537 + </step>
  538 +
  539 + <step>
  540 + <name>&#x505c;&#x8f66;&#x573a;&#x540d;&#x79f0;metadata&#x5b57;&#x6bb5;</name>
  541 + <type>SelectValues</type>
  542 + <description/>
  543 + <distribute>Y</distribute>
  544 + <custom_distribution/>
  545 + <copies>1</copies>
  546 + <partitioning>
  547 + <method>none</method>
  548 + <schema_name/>
  549 + </partitioning>
  550 + <fields> <field> <name>col_name</name>
  551 + <rename/>
  552 + <length>-2</length>
  553 + <precision>-2</precision>
  554 + </field> <field> <name>col_type</name>
  555 + <rename/>
  556 + <length>-2</length>
  557 + <precision>-2</precision>
  558 + </field> <field> <name>col_value</name>
  559 + <rename/>
  560 + <length>-2</length>
  561 + <precision>-2</precision>
  562 + </field> <select_unspecified>N</select_unspecified>
  563 + </fields> <cluster_schema/>
  564 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  565 + <xloc>743</xloc>
  566 + <yloc>470</yloc>
  567 + <draw>Y</draw>
  568 + </GUI>
  569 + </step>
  570 +
  571 + <step>
  572 + <name>&#x505c;&#x8f66;&#x573a;&#x7f16;&#x7801;</name>
  573 + <type>DBLookup</type>
  574 + <description/>
  575 + <distribute>Y</distribute>
  576 + <custom_distribution/>
  577 + <copies>1</copies>
  578 + <partitioning>
  579 + <method>none</method>
  580 + <schema_name/>
  581 + </partitioning>
  582 + <connection>bus_control_variable</connection>
  583 + <cache>N</cache>
  584 + <cache_load_all>N</cache_load_all>
  585 + <cache_size>0</cache_size>
  586 + <lookup>
  587 + <schema/>
  588 + <table>bsth_c_line_information</table>
  589 + <orderby/>
  590 + <fail_on_multiple>N</fail_on_multiple>
  591 + <eat_row_on_failure>N</eat_row_on_failure>
  592 + <key>
  593 + <name>lineinfoid_</name>
  594 + <field>id</field>
  595 + <condition>&#x3d;</condition>
  596 + <name2/>
  597 + </key>
  598 + <value>
  599 + <name>car_park</name>
  600 + <rename>car_park</rename>
  601 + <default/>
  602 + <type>String</type>
  603 + </value>
  604 + </lookup>
  605 + <cluster_schema/>
  606 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  607 + <xloc>182</xloc>
  608 + <yloc>467</yloc>
  609 + <draw>Y</draw>
  610 + </GUI>
  611 + </step>
  612 +
  613 + <step>
  614 + <name>&#x5220;&#x9664;&#x4e4b;&#x524d;&#x7684;&#x660e;&#x7ec6;&#x4fe1;&#x606f;</name>
  615 + <type>ExecSQL</type>
  616 + <description/>
  617 + <distribute>Y</distribute>
  618 + <custom_distribution/>
  619 + <copies>1</copies>
  620 + <partitioning>
  621 + <method>none</method>
  622 + <schema_name/>
  623 + </partitioning>
  624 + <connection>bus_control_variable</connection>
  625 + <execute_each_row>Y</execute_each_row>
  626 + <single_statement>N</single_statement>
  627 + <replace_variables>N</replace_variables>
  628 + <quoteString>N</quoteString>
  629 + <sql>delete from bsth_c_s_ttinfo_detail where ttinfo &#x3d; &#x3f;</sql>
  630 + <set_params>N</set_params>
  631 + <insert_field/>
  632 + <update_field/>
  633 + <delete_field/>
  634 + <read_field/>
  635 + <arguments>
  636 + <argument><name>ttid_</name></argument>
  637 + </arguments>
  638 + <cluster_schema/>
  639 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  640 + <xloc>808</xloc>
  641 + <yloc>16</yloc>
  642 + <draw>Y</draw>
  643 + </GUI>
  644 + </step>
  645 +
  646 + <step>
  647 + <name>&#x5408;&#x5e76;&#x589e;&#x52a0;&#x5e38;&#x91cf;&#x6570;&#x636e;metadata</name>
  648 + <type>Dummy</type>
  649 + <description/>
  650 + <distribute>Y</distribute>
  651 + <custom_distribution/>
  652 + <copies>1</copies>
  653 + <partitioning>
  654 + <method>none</method>
  655 + <schema_name/>
  656 + </partitioning>
  657 + <cluster_schema/>
  658 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  659 + <xloc>883</xloc>
  660 + <yloc>373</yloc>
  661 + <draw>Y</draw>
  662 + </GUI>
  663 + </step>
  664 +
  665 + <step>
  666 + <name>&#x589e;&#x52a0;excel&#x5b57;&#x6bb5;&#x5176;&#x4ed6;&#x5143;&#x6570;&#x636e;</name>
  667 + <type>Constant</type>
  668 + <description/>
  669 + <distribute>Y</distribute>
  670 + <custom_distribution/>
  671 + <copies>1</copies>
  672 + <partitioning>
  673 + <method>none</method>
  674 + <schema_name/>
  675 + </partitioning>
  676 + <fields>
  677 + <field>
  678 + <name>fieldtype</name>
  679 + <type>String</type>
  680 + <format/>
  681 + <currency/>
  682 + <decimal/>
  683 + <group/>
  684 + <nullif>String</nullif>
  685 + <length>-1</length>
  686 + <precision>-1</precision>
  687 + <set_empty_string>N</set_empty_string>
  688 + </field>
  689 + <field>
  690 + <name>length</name>
  691 + <type>String</type>
  692 + <format/>
  693 + <currency/>
  694 + <decimal/>
  695 + <group/>
  696 + <nullif>-1</nullif>
  697 + <length>-1</length>
  698 + <precision>-1</precision>
  699 + <set_empty_string>N</set_empty_string>
  700 + </field>
  701 + <field>
  702 + <name>precision</name>
  703 + <type>String</type>
  704 + <format/>
  705 + <currency/>
  706 + <decimal/>
  707 + <group/>
  708 + <nullif>-1</nullif>
  709 + <length>-1</length>
  710 + <precision>-1</precision>
  711 + <set_empty_string>N</set_empty_string>
  712 + </field>
  713 + <field>
  714 + <name>trim_type</name>
  715 + <type>String</type>
  716 + <format/>
  717 + <currency/>
  718 + <decimal/>
  719 + <group/>
  720 + <nullif>none</nullif>
  721 + <length>-1</length>
  722 + <precision>-1</precision>
  723 + <set_empty_string>N</set_empty_string>
  724 + </field>
  725 + <field>
  726 + <name>repeat</name>
  727 + <type>String</type>
  728 + <format/>
  729 + <currency/>
  730 + <decimal/>
  731 + <group/>
  732 + <nullif>N</nullif>
  733 + <length>-1</length>
  734 + <precision>-1</precision>
  735 + <set_empty_string>N</set_empty_string>
  736 + </field>
  737 + <field>
  738 + <name>format</name>
  739 + <type>String</type>
  740 + <format/>
  741 + <currency/>
  742 + <decimal/>
  743 + <group/>
  744 + <nullif>&#x23;</nullif>
  745 + <length>-1</length>
  746 + <precision>-1</precision>
  747 + <set_empty_string>N</set_empty_string>
  748 + </field>
  749 + </fields>
  750 + <cluster_schema/>
  751 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  752 + <xloc>622</xloc>
  753 + <yloc>162</yloc>
  754 + <draw>Y</draw>
  755 + </GUI>
  756 + </step>
  757 +
  758 + <step>
  759 + <name>&#x589e;&#x52a0;normalize&#x5143;&#x6570;&#x636e;</name>
  760 + <type>Constant</type>
  761 + <description/>
  762 + <distribute>Y</distribute>
  763 + <custom_distribution/>
  764 + <copies>1</copies>
  765 + <partitioning>
  766 + <method>none</method>
  767 + <schema_name/>
  768 + </partitioning>
  769 + <fields>
  770 + <field>
  771 + <name>valuefield</name>
  772 + <type>String</type>
  773 + <format/>
  774 + <currency/>
  775 + <decimal/>
  776 + <group/>
  777 + <nullif>&#x53d1;&#x8f66;&#x65f6;&#x95f4;</nullif>
  778 + <length>-1</length>
  779 + <precision>-1</precision>
  780 + <set_empty_string>N</set_empty_string>
  781 + </field>
  782 + </fields>
  783 + <cluster_schema/>
  784 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  785 + <xloc>628</xloc>
  786 + <yloc>247</yloc>
  787 + <draw>Y</draw>
  788 + </GUI>
  789 + </step>
  790 +
  791 + <step>
  792 + <name>&#x589e;&#x52a0;&#x505c;&#x8f66;&#x573a;&#x540d;&#x79f0;metadata</name>
  793 + <type>Constant</type>
  794 + <description/>
  795 + <distribute>Y</distribute>
  796 + <custom_distribution/>
  797 + <copies>1</copies>
  798 + <partitioning>
  799 + <method>none</method>
  800 + <schema_name/>
  801 + </partitioning>
  802 + <fields>
  803 + <field>
  804 + <name>col_name</name>
  805 + <type>String</type>
  806 + <format/>
  807 + <currency/>
  808 + <decimal/>
  809 + <group/>
  810 + <nullif>tccname_</nullif>
  811 + <length>-1</length>
  812 + <precision>-1</precision>
  813 + <set_empty_string>N</set_empty_string>
  814 + </field>
  815 + <field>
  816 + <name>col_type</name>
  817 + <type>String</type>
  818 + <format/>
  819 + <currency/>
  820 + <decimal/>
  821 + <group/>
  822 + <nullif>String</nullif>
  823 + <length>-1</length>
  824 + <precision>-1</precision>
  825 + <set_empty_string>N</set_empty_string>
  826 + </field>
  827 + <field>
  828 + <name>col_value</name>
  829 + <type>String</type>
  830 + <format/>
  831 + <currency/>
  832 + <decimal/>
  833 + <group/>
  834 + <nullif>replace</nullif>
  835 + <length>-1</length>
  836 + <precision>-1</precision>
  837 + <set_empty_string>N</set_empty_string>
  838 + </field>
  839 + </fields>
  840 + <cluster_schema/>
  841 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  842 + <xloc>461</xloc>
  843 + <yloc>469</yloc>
  844 + <draw>Y</draw>
  845 + </GUI>
  846 + </step>
  847 +
  848 + <step>
  849 + <name>&#x589e;&#x52a0;&#x65f6;&#x523b;&#x8868;&#x540d;&#x79f0;metadata</name>
  850 + <type>Constant</type>
  851 + <description/>
  852 + <distribute>Y</distribute>
  853 + <custom_distribution/>
  854 + <copies>1</copies>
  855 + <partitioning>
  856 + <method>none</method>
  857 + <schema_name/>
  858 + </partitioning>
  859 + <fields>
  860 + <field>
  861 + <name>col_name</name>
  862 + <type>String</type>
  863 + <format/>
  864 + <currency/>
  865 + <decimal/>
  866 + <group/>
  867 + <nullif>ttinfoname_</nullif>
  868 + <length>-1</length>
  869 + <precision>-1</precision>
  870 + <set_empty_string>N</set_empty_string>
  871 + </field>
  872 + <field>
  873 + <name>col_type</name>
  874 + <type>String</type>
  875 + <format/>
  876 + <currency/>
  877 + <decimal/>
  878 + <group/>
  879 + <nullif>String</nullif>
  880 + <length>-1</length>
  881 + <precision>-1</precision>
  882 + <set_empty_string>N</set_empty_string>
  883 + </field>
  884 + <field>
  885 + <name>col_value</name>
  886 + <type>String</type>
  887 + <format/>
  888 + <currency/>
  889 + <decimal/>
  890 + <group/>
  891 + <nullif>replace</nullif>
  892 + <length>-1</length>
  893 + <precision>-1</precision>
  894 + <set_empty_string>N</set_empty_string>
  895 + </field>
  896 + </fields>
  897 + <cluster_schema/>
  898 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  899 + <xloc>608</xloc>
  900 + <yloc>601</yloc>
  901 + <draw>Y</draw>
  902 + </GUI>
  903 + </step>
  904 +
  905 + <step>
  906 + <name>&#x589e;&#x52a0;&#x7ebf;&#x8def;&#x540d;&#x79f0;metadata</name>
  907 + <type>Constant</type>
  908 + <description/>
  909 + <distribute>Y</distribute>
  910 + <custom_distribution/>
  911 + <copies>1</copies>
  912 + <partitioning>
  913 + <method>none</method>
  914 + <schema_name/>
  915 + </partitioning>
  916 + <fields>
  917 + <field>
  918 + <name>col_name</name>
  919 + <type>String</type>
  920 + <format/>
  921 + <currency/>
  922 + <decimal/>
  923 + <group/>
  924 + <nullif>xlname_</nullif>
  925 + <length>-1</length>
  926 + <precision>-1</precision>
  927 + <set_empty_string>N</set_empty_string>
  928 + </field>
  929 + <field>
  930 + <name>col_type</name>
  931 + <type>String</type>
  932 + <format/>
  933 + <currency/>
  934 + <decimal/>
  935 + <group/>
  936 + <nullif>String</nullif>
  937 + <length>-1</length>
  938 + <precision>-1</precision>
  939 + <set_empty_string>N</set_empty_string>
  940 + </field>
  941 + <field>
  942 + <name>col_value</name>
  943 + <type>String</type>
  944 + <format/>
  945 + <currency/>
  946 + <decimal/>
  947 + <group/>
  948 + <nullif>replace</nullif>
  949 + <length>-1</length>
  950 + <precision>-1</precision>
  951 + <set_empty_string>N</set_empty_string>
  952 + </field>
  953 + </fields>
  954 + <cluster_schema/>
  955 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  956 + <xloc>383</xloc>
  957 + <yloc>341</yloc>
  958 + <draw>Y</draw>
  959 + </GUI>
  960 + </step>
  961 +
  962 + <step>
  963 + <name>&#x65f6;&#x523b;&#x8868;&#x540d;&#x79f0;metadata&#x5b57;&#x6bb5;</name>
  964 + <type>SelectValues</type>
  965 + <description/>
  966 + <distribute>Y</distribute>
  967 + <custom_distribution/>
  968 + <copies>1</copies>
  969 + <partitioning>
  970 + <method>none</method>
  971 + <schema_name/>
  972 + </partitioning>
  973 + <fields> <field> <name>col_name</name>
  974 + <rename/>
  975 + <length>-2</length>
  976 + <precision>-2</precision>
  977 + </field> <field> <name>col_type</name>
  978 + <rename/>
  979 + <length>-2</length>
  980 + <precision>-2</precision>
  981 + </field> <field> <name>col_value</name>
  982 + <rename/>
  983 + <length>-2</length>
  984 + <precision>-2</precision>
  985 + </field> <select_unspecified>N</select_unspecified>
  986 + </fields> <cluster_schema/>
  987 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  988 + <xloc>888</xloc>
  989 + <yloc>601</yloc>
  990 + <draw>Y</draw>
  991 + </GUI>
  992 + </step>
  993 +
  994 + <step>
  995 + <name>&#x66ff;&#x6362;&#x505c;&#x8f66;&#x5382;&#x540d;&#x5b57; </name>
  996 + <type>SetValueField</type>
  997 + <description/>
  998 + <distribute>Y</distribute>
  999 + <custom_distribution/>
  1000 + <copies>1</copies>
  1001 + <partitioning>
  1002 + <method>none</method>
  1003 + <schema_name/>
  1004 + </partitioning>
  1005 + <fields>
  1006 + <field>
  1007 + <name>col_value</name>
  1008 + <replaceby>tccname_</replaceby>
  1009 + </field>
  1010 + </fields>
  1011 + <cluster_schema/>
  1012 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1013 + <xloc>598</xloc>
  1014 + <yloc>471</yloc>
  1015 + <draw>Y</draw>
  1016 + </GUI>
  1017 + </step>
  1018 +
  1019 + <step>
  1020 + <name>&#x66ff;&#x6362;&#x65f6;&#x523b;&#x8868;&#x540d;&#x5b57;</name>
  1021 + <type>SetValueField</type>
  1022 + <description/>
  1023 + <distribute>Y</distribute>
  1024 + <custom_distribution/>
  1025 + <copies>1</copies>
  1026 + <partitioning>
  1027 + <method>none</method>
  1028 + <schema_name/>
  1029 + </partitioning>
  1030 + <fields>
  1031 + <field>
  1032 + <name>col_value</name>
  1033 + <replaceby>ttinfoname_</replaceby>
  1034 + </field>
  1035 + </fields>
  1036 + <cluster_schema/>
  1037 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1038 + <xloc>746</xloc>
  1039 + <yloc>602</yloc>
  1040 + <draw>Y</draw>
  1041 + </GUI>
  1042 + </step>
  1043 +
  1044 + <step>
  1045 + <name>&#x66ff;&#x6362;&#x7ebf;&#x8def;&#x540d;&#x79f0;</name>
  1046 + <type>SetValueField</type>
  1047 + <description/>
  1048 + <distribute>Y</distribute>
  1049 + <custom_distribution/>
  1050 + <copies>1</copies>
  1051 + <partitioning>
  1052 + <method>none</method>
  1053 + <schema_name/>
  1054 + </partitioning>
  1055 + <fields>
  1056 + <field>
  1057 + <name>col_value</name>
  1058 + <replaceby>xlname_</replaceby>
  1059 + </field>
  1060 + </fields>
  1061 + <cluster_schema/>
  1062 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1063 + <xloc>521</xloc>
  1064 + <yloc>342</yloc>
  1065 + <draw>Y</draw>
  1066 + </GUI>
  1067 + </step>
  1068 +
  1069 + <step>
  1070 + <name>&#x7ebf;&#x8def;&#x540d;&#x79f0;metadata&#x5b57;&#x6bb5;</name>
  1071 + <type>SelectValues</type>
  1072 + <description/>
  1073 + <distribute>Y</distribute>
  1074 + <custom_distribution/>
  1075 + <copies>1</copies>
  1076 + <partitioning>
  1077 + <method>none</method>
  1078 + <schema_name/>
  1079 + </partitioning>
  1080 + <fields> <field> <name>col_name</name>
  1081 + <rename/>
  1082 + <length>-2</length>
  1083 + <precision>-2</precision>
  1084 + </field> <field> <name>col_type</name>
  1085 + <rename/>
  1086 + <length>-2</length>
  1087 + <precision>-2</precision>
  1088 + </field> <field> <name>col_value</name>
  1089 + <rename/>
  1090 + <length>-2</length>
  1091 + <precision>-2</precision>
  1092 + </field> <select_unspecified>N</select_unspecified>
  1093 + </fields> <cluster_schema/>
  1094 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1095 + <xloc>668</xloc>
  1096 + <yloc>343</yloc>
  1097 + <draw>Y</draw>
  1098 + </GUI>
  1099 + </step>
  1100 +
  1101 + <step>
  1102 + <name>&#x83b7;&#x53d6;excel&#x5b57;&#x6bb5;&#x540d;&#x5b57;&#x7b26;&#x4e32;</name>
  1103 + <type>GetVariable</type>
  1104 + <description/>
  1105 + <distribute>Y</distribute>
  1106 + <custom_distribution/>
  1107 + <copies>1</copies>
  1108 + <partitioning>
  1109 + <method>none</method>
  1110 + <schema_name/>
  1111 + </partitioning>
  1112 + <fields>
  1113 + <field>
  1114 + <name>fieldnames</name>
  1115 + <variable>&#x24;&#x7b;excelfieldnames&#x7d;</variable>
  1116 + <type>String</type>
  1117 + <format/>
  1118 + <currency/>
  1119 + <decimal/>
  1120 + <group/>
  1121 + <length>-1</length>
  1122 + <precision>-1</precision>
  1123 + <trim_type>none</trim_type>
  1124 + </field>
  1125 + </fields>
  1126 + <cluster_schema/>
  1127 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1128 + <xloc>252</xloc>
  1129 + <yloc>153</yloc>
  1130 + <draw>Y</draw>
  1131 + </GUI>
  1132 + </step>
  1133 +
  1134 + <step>
  1135 + <name>&#x83b7;&#x53d6;excel&#x6587;&#x4ef6;&#x540d;</name>
  1136 + <type>GetVariable</type>
  1137 + <description/>
  1138 + <distribute>Y</distribute>
  1139 + <custom_distribution/>
  1140 + <copies>1</copies>
  1141 + <partitioning>
  1142 + <method>none</method>
  1143 + <schema_name/>
  1144 + </partitioning>
  1145 + <fields>
  1146 + <field>
  1147 + <name>filepath_</name>
  1148 + <variable>&#x24;&#x7b;filepath&#x7d;</variable>
  1149 + <type>String</type>
  1150 + <format/>
  1151 + <currency/>
  1152 + <decimal/>
  1153 + <group/>
  1154 + <length>-1</length>
  1155 + <precision>-1</precision>
  1156 + <trim_type>none</trim_type>
  1157 + </field>
  1158 + <field>
  1159 + <name>erroroutputdir_</name>
  1160 + <variable>&#x24;&#x7b;erroroutputdir&#x7d;</variable>
  1161 + <type>String</type>
  1162 + <format/>
  1163 + <currency/>
  1164 + <decimal/>
  1165 + <group/>
  1166 + <length>-1</length>
  1167 + <precision>-1</precision>
  1168 + <trim_type>none</trim_type>
  1169 + </field>
  1170 + <field>
  1171 + <name>sheetname_</name>
  1172 + <variable>&#x24;&#x7b;sheetname&#x7d;</variable>
  1173 + <type>String</type>
  1174 + <format/>
  1175 + <currency/>
  1176 + <decimal/>
  1177 + <group/>
  1178 + <length>-1</length>
  1179 + <precision>-1</precision>
  1180 + <trim_type>none</trim_type>
  1181 + </field>
  1182 + </fields>
  1183 + <cluster_schema/>
  1184 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1185 + <xloc>301</xloc>
  1186 + <yloc>52</yloc>
  1187 + <draw>Y</draw>
  1188 + </GUI>
  1189 + </step>
  1190 +
  1191 + <step>
  1192 + <name>&#x83b7;&#x53d6;normalize&#x5b57;&#x6bb5;&#x540d;&#x5b57;&#x7b26;&#x4e32;</name>
  1193 + <type>GetVariable</type>
  1194 + <description/>
  1195 + <distribute>Y</distribute>
  1196 + <custom_distribution/>
  1197 + <copies>1</copies>
  1198 + <partitioning>
  1199 + <method>none</method>
  1200 + <schema_name/>
  1201 + </partitioning>
  1202 + <fields>
  1203 + <field>
  1204 + <name>normalizefieldnames_</name>
  1205 + <variable>&#x24;&#x7b;normalizefieldnames&#x7d;</variable>
  1206 + <type>String</type>
  1207 + <format/>
  1208 + <currency/>
  1209 + <decimal/>
  1210 + <group/>
  1211 + <length>-1</length>
  1212 + <precision>-1</precision>
  1213 + <trim_type>none</trim_type>
  1214 + </field>
  1215 + </fields>
  1216 + <cluster_schema/>
  1217 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1218 + <xloc>261</xloc>
  1219 + <yloc>251</yloc>
  1220 + <draw>Y</draw>
  1221 + </GUI>
  1222 + </step>
  1223 +
  1224 + <step>
  1225 + <name>&#x83b7;&#x53d6;&#x65f6;&#x523b;&#x8868;id</name>
  1226 + <type>GetVariable</type>
  1227 + <description/>
  1228 + <distribute>Y</distribute>
  1229 + <custom_distribution/>
  1230 + <copies>1</copies>
  1231 + <partitioning>
  1232 + <method>none</method>
  1233 + <schema_name/>
  1234 + </partitioning>
  1235 + <fields>
  1236 + <field>
  1237 + <name>ttid_</name>
  1238 + <variable>&#x24;&#x7b;ttid&#x7d;</variable>
  1239 + <type>Integer</type>
  1240 + <format/>
  1241 + <currency/>
  1242 + <decimal/>
  1243 + <group/>
  1244 + <length>-1</length>
  1245 + <precision>-1</precision>
  1246 + <trim_type>none</trim_type>
  1247 + </field>
  1248 + </fields>
  1249 + <cluster_schema/>
  1250 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1251 + <xloc>608</xloc>
  1252 + <yloc>16</yloc>
  1253 + <draw>Y</draw>
  1254 + </GUI>
  1255 + </step>
  1256 +
  1257 + <step>
  1258 + <name>&#x83b7;&#x53d6;&#x65f6;&#x523b;&#x8868;&#x540d;&#x79f0;</name>
  1259 + <type>GetVariable</type>
  1260 + <description/>
  1261 + <distribute>Y</distribute>
  1262 + <custom_distribution/>
  1263 + <copies>1</copies>
  1264 + <partitioning>
  1265 + <method>none</method>
  1266 + <schema_name/>
  1267 + </partitioning>
  1268 + <fields>
  1269 + <field>
  1270 + <name>ttinfoname_</name>
  1271 + <variable>&#x24;&#x7b;ttinfoname&#x7d;</variable>
  1272 + <type>String</type>
  1273 + <format/>
  1274 + <currency/>
  1275 + <decimal/>
  1276 + <group/>
  1277 + <length>-1</length>
  1278 + <precision>-1</precision>
  1279 + <trim_type>none</trim_type>
  1280 + </field>
  1281 + </fields>
  1282 + <cluster_schema/>
  1283 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1284 + <xloc>474</xloc>
  1285 + <yloc>601</yloc>
  1286 + <draw>Y</draw>
  1287 + </GUI>
  1288 + </step>
  1289 +
  1290 + <step>
  1291 + <name>&#x83b7;&#x53d6;&#x7ebf;&#x8def;&#x540d;&#x79f0;</name>
  1292 + <type>GetVariable</type>
  1293 + <description/>
  1294 + <distribute>Y</distribute>
  1295 + <custom_distribution/>
  1296 + <copies>1</copies>
  1297 + <partitioning>
  1298 + <method>none</method>
  1299 + <schema_name/>
  1300 + </partitioning>
  1301 + <fields>
  1302 + <field>
  1303 + <name>xlname_</name>
  1304 + <variable>&#x24;&#x7b;xlname&#x7d;</variable>
  1305 + <type>String</type>
  1306 + <format/>
  1307 + <currency/>
  1308 + <decimal/>
  1309 + <group/>
  1310 + <length>-1</length>
  1311 + <precision>-1</precision>
  1312 + <trim_type>none</trim_type>
  1313 + </field>
  1314 + </fields>
  1315 + <cluster_schema/>
  1316 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1317 + <xloc>184</xloc>
  1318 + <yloc>342</yloc>
  1319 + <draw>Y</draw>
  1320 + </GUI>
  1321 + </step>
  1322 +
  1323 + <step>
  1324 + <name>&#x83b7;&#x53d6;&#x7ebf;&#x8def;&#x6807;&#x51c6;id</name>
  1325 + <type>GetVariable</type>
  1326 + <description/>
  1327 + <distribute>Y</distribute>
  1328 + <custom_distribution/>
  1329 + <copies>1</copies>
  1330 + <partitioning>
  1331 + <method>none</method>
  1332 + <schema_name/>
  1333 + </partitioning>
  1334 + <fields>
  1335 + <field>
  1336 + <name>lineinfoid_</name>
  1337 + <variable>&#x24;&#x7b;lineinfoid&#x7d;</variable>
  1338 + <type>Integer</type>
  1339 + <format/>
  1340 + <currency/>
  1341 + <decimal/>
  1342 + <group/>
  1343 + <length>-1</length>
  1344 + <precision>-1</precision>
  1345 + <trim_type>none</trim_type>
  1346 + </field>
  1347 + </fields>
  1348 + <cluster_schema/>
  1349 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1350 + <xloc>74</xloc>
  1351 + <yloc>468</yloc>
  1352 + <draw>Y</draw>
  1353 + </GUI>
  1354 + </step>
  1355 +
  1356 + <step>
  1357 + <name>&#x9017;&#x53f7;&#x5207;&#x5206;&#x6210;&#x5b57;&#x6bb5;&#x540d;</name>
  1358 + <type>SplitFieldToRows3</type>
  1359 + <description/>
  1360 + <distribute>Y</distribute>
  1361 + <custom_distribution/>
  1362 + <copies>1</copies>
  1363 + <partitioning>
  1364 + <method>none</method>
  1365 + <schema_name/>
  1366 + </partitioning>
  1367 + <splitfield>fieldnames</splitfield>
  1368 + <delimiter>,</delimiter>
  1369 + <newfield>fieldname</newfield>
  1370 + <rownum>N</rownum>
  1371 + <rownum_field/>
  1372 + <resetrownumber>Y</resetrownumber>
  1373 + <delimiter_is_regex>N</delimiter_is_regex>
  1374 + <cluster_schema/>
  1375 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1376 + <xloc>442</xloc>
  1377 + <yloc>153</yloc>
  1378 + <draw>Y</draw>
  1379 + </GUI>
  1380 + </step>
  1381 +
  1382 + <step>
  1383 + <name>&#x9017;&#x53f7;&#x5207;&#x5206;&#x6210;&#x5b57;&#x6bb5;&#x540d; 2</name>
  1384 + <type>SplitFieldToRows3</type>
  1385 + <description/>
  1386 + <distribute>Y</distribute>
  1387 + <custom_distribution/>
  1388 + <copies>1</copies>
  1389 + <partitioning>
  1390 + <method>none</method>
  1391 + <schema_name/>
  1392 + </partitioning>
  1393 + <splitfield>normalizefieldnames_</splitfield>
  1394 + <delimiter>,</delimiter>
  1395 + <newfield>nfieldname</newfield>
  1396 + <rownum>N</rownum>
  1397 + <rownum_field/>
  1398 + <resetrownumber>Y</resetrownumber>
  1399 + <delimiter_is_regex>N</delimiter_is_regex>
  1400 + <cluster_schema/>
  1401 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1402 + <xloc>444</xloc>
  1403 + <yloc>247</yloc>
  1404 + <draw>Y</draw>
  1405 + </GUI>
  1406 + </step>
  1407 +
  1408 + <step_error_handling>
  1409 + </step_error_handling>
  1410 + <slave-step-copy-partition-distribution>
  1411 +</slave-step-copy-partition-distribution>
  1412 + <slave_transformation>N</slave_transformation>
  1413 +
  1414 +</transformation>
src/main/resources/rules/ruleWrap.drl
@@ -76,7 +76,8 @@ rule &quot;rw2&quot; @@ -76,7 +76,8 @@ rule &quot;rw2&quot;
76 xl.setId(Integer.valueOf($xlId)); 76 xl.setId(Integer.valueOf($xlId));
77 ((com.bsth.entity.schedule.rule.ScheduleRule1Flat) sw.getSrf()).setXl(xl); 77 ((com.bsth.entity.schedule.rule.ScheduleRule1Flat) sw.getSrf()).setXl(xl);
78 // id 78 // id
79 - ((com.bsth.entity.schedule.rule.ScheduleRule1Flat) sw.getSrf()).setId((new Date()).getTime()); 79 + long id = ((new Date()).getTime() + Long.parseLong($lpId));
  80 + ((com.bsth.entity.schedule.rule.ScheduleRule1Flat) sw.getSrf()).setId(id);
80 // 启用日期 81 // 启用日期
81 ((com.bsth.entity.schedule.rule.ScheduleRule1Flat) sw.getSrf()).setQyrq($fromDate.toDate()); 82 ((com.bsth.entity.schedule.rule.ScheduleRule1Flat) sw.getSrf()).setQyrq($fromDate.toDate());
82 // 车辆配置 83 // 车辆配置
@@ -112,6 +113,6 @@ rule &quot;rw3&quot; @@ -112,6 +113,6 @@ rule &quot;rw3&quot;
112 when 113 when
113 $sri_wrap : Sri_Wrap($sri : sri, $xlId: xlId, $lpIds : lpIds) 114 $sri_wrap : Sri_Wrap($sri : sri, $xlId: xlId, $lpIds : lpIds)
114 then 115 then
115 - log.info("线路id={},lpids={}", $xlId, $lpIds); 116 +// log.info("线路id={},type={},ruleId={},lpids={}", $xlId, $sri.getsType(), $sri.getRuleId(), $lpIds);
116 sriList.add($sri); 117 sriList.add($sri);
117 end 118 end
118 \ No newline at end of file 119 \ No newline at end of file
src/main/resources/static/pages/base/timesmodel/js/base-fun.js
@@ -875,7 +875,7 @@ var BaseFun = function() { @@ -875,7 +875,7 @@ var BaseFun = function() {
875 //if(bcddsj < kssj) 875 //if(bcddsj < kssj)
876 // isLast.push(bcArray[b]); 876 // isLast.push(bcArray[b]);
877 } 877 }
878 - if(canCf.length>0) { 878 + if(canCf.length>0 && canCf[canCf.length-1].isfb == 0) { // NEW,如果班次是分班班次,就不吃饭
879 console.log('countTzsj:' + countTzsj + 'length:' + canCf.length); 879 console.log('countTzsj:' + countTzsj + 'length:' + canCf.length);
880 var fxDm = baseF.dirDmToIndex(canCf[canCf.length-1].xlDir); 880 var fxDm = baseF.dirDmToIndex(canCf[canCf.length-1].xlDir);
881 if (map.cfdd == "allYes") { // NEW,如果选择的吃饭地点是所有,则使用班次的方向作为吃饭班次的方向 881 if (map.cfdd == "allYes") { // NEW,如果选择的吃饭地点是所有,则使用班次的方向作为吃饭班次的方向
src/main/resources/static/real_control_v2/js/line_schedule/sch_table.js
@@ -7,10 +7,26 @@ var gb_schedule_table = (function () { @@ -7,10 +7,26 @@ var gb_schedule_table = (function () {
7 var line2Schedule = {}; 7 var line2Schedule = {};
8 //车辆应发未发车辆数 8 //车辆应发未发车辆数
9 var car_yfwf_map = {}; 9 var car_yfwf_map = {};
  10 +
  11 + var bcTypeOrderMap = {
  12 + 'out':0,
  13 + 'normal':1,
  14 + 'region':2,
  15 + 'major':3,
  16 + 'venting':4,
  17 + 'ldks':5,
  18 + 'in':6
  19 + };
  20 + var typeOrder = function (type) {
  21 + return bcTypeOrderMap[type]?bcTypeOrderMap[type]:0;
  22 + };
10 var schedule_sort = function (s1, s2) { 23 var schedule_sort = function (s1, s2) {
11 - return s1.fcsjT - s2.fcsjT; 24 + var diff = s1['fcsjT'] - s2['fcsjT'];
  25 + return diff!=0?diff:typeOrder(s1['bcType'])-typeOrder(s2['bcType']);
12 }; 26 };
13 27
  28 +
  29 +
14 /** 30 /**
15 * 检查是否存在重复班次 31 * 检查是否存在重复班次
16 * @param list 32 * @param list
@@ -118,17 +134,27 @@ var gb_schedule_table = (function () { @@ -118,17 +134,27 @@ var gb_schedule_table = (function () {
118 134
119 //计算实发时间差值 135 //计算实发时间差值
120 var calc_sch_real_shift = function (sch) { 136 var calc_sch_real_shift = function (sch) {
121 - if (sch.fcsjActualTime) {  
122 - var diff = parseInt((sch.fcsjActualTime - sch.dfsjT) / 1000 / 60);  
123 - if (diff > 0)  
124 - sch.fcsj_diff = '( +' + diff + ' )';  
125 - else if (diff < 0)  
126 - sch.fcsj_diff = '( ' + diff + ' )'; 137 + if (sch['fcsjActualTime']){
  138 + var diff = sch['fcsjActualTime'] - sch['dfsjT'], fcsj_diff;
  139 + fcsj_diff = parseInt(diff / 60000);
  140 + if(diff % 60000 != 0){
  141 + /*if(fcsj_diff > 0)
  142 + fcsj_diff ++;
  143 + else */if(fcsj_diff < 0)
  144 + fcsj_diff --;
  145 + }
  146 +
  147 + if(fcsj_diff > 0)
  148 + sch.fcsj_diff = '( +' + fcsj_diff + ' )';
  149 + else if (fcsj_diff < 0)
  150 + sch.fcsj_diff = '( ' + fcsj_diff + ' )';
127 else 151 else
128 sch.fcsj_diff = ''; 152 sch.fcsj_diff = '';
129 } 153 }
130 }; 154 };
131 155
  156 +
  157 +
132 function arrayIsNull(array) { 158 function arrayIsNull(array) {
133 return !array || array.length == 0; 159 return !array || array.length == 0;
134 } 160 }