Commit 832c3a089f73f3a50a3ad58c3f37909e5fcc61ff

Authored by 娄高锋
2 parents 43543a5d 704582a6

Merge branch 'minhang' of 192.168.168.201:panzhaov5/bsth_control into minhang

src/main/java/com/bsth/service/schedule/impl/TTInfoDetailServiceImpl.java
@@ -429,20 +429,23 @@ public class TTInfoDetailServiceImpl extends BServiceImpl<TTInfoDetail, Long> im @@ -429,20 +429,23 @@ public class TTInfoDetailServiceImpl extends BServiceImpl<TTInfoDetail, Long> im
429 } 429 }
430 430
431 // 班次时间验证,正则表达式,格式hh:mm或者hhmm 431 // 班次时间验证,正则表达式,格式hh:mm或者hhmm
432 - String el = "^(([0-1]\\d)|(2[0-4])):[0-5]\\d$"; // hh:mm格式  
433 - String el2 = "^(([0-1]\\d)|(2[0-4]))[0-5]\\d$"; // hhmm格式  
434 - Pattern p = Pattern.compile(el);  
435 - Pattern p2 = Pattern.compile(el2); 432 + String rex1 = "^([01]?[0-9]|2[0-3]):[0-5][0-9]$"; // hh:mm格式
  433 + String rex2 = "^([01]?[0-9]|2[0-3]),[0-5][0-9]$"; // hh,mm格式
  434 + String rex3 = "^([01]?[0-9]|2[0-3])[0-5][0-9]$"; // hhmm格式
  435 + Pattern p1 = Pattern.compile(rex1);
  436 + Pattern p2 = Pattern.compile(rex2);
  437 + Pattern p3 = Pattern.compile(rex3);
436 438
437 for (int i = 1; i < sheet.getRows(); i++) { // 从第2行开始验证数据 439 for (int i = 1; i < sheet.getRows(); i++) { // 从第2行开始验证数据
438 Cell[] bcells = sheet.getRow(i); 440 Cell[] bcells = sheet.getRow(i);
439 for (int j = 1; j < bcells.length; j++) { // 从第2列开始 441 for (int j = 1; j < bcells.length; j++) { // 从第2列开始
440 String bcell_con = bcells[j].getContents(); 442 String bcell_con = bcells[j].getContents();
441 if (StringUtils.isNotEmpty(bcell_con)) { 443 if (StringUtils.isNotEmpty(bcell_con)) {
442 - Matcher m = p.matcher(bcell_con.trim()); 444 + Matcher m1 = p1.matcher(bcell_con.trim());
443 Matcher m2 = p2.matcher(bcell_con.trim()); 445 Matcher m2 = p2.matcher(bcell_con.trim());
444 - if ((!m.matches()) && (!m2.matches())) {  
445 - throw new Exception(String.format("第%d行,第%d列的发车时间格式不正确,格式应为hh:mm或hhmm", i + 1, j + 1)); 446 + Matcher m3 = p3.matcher(bcell_con.trim());
  447 + if ((!m1.matches()) && (!m2.matches()) && (!m3.matches())) {
  448 + throw new Exception(String.format("第%d行,第%d列的发车时间格式不正确,格式应为hh:mm或hh,mm或hhmm", i + 1, j + 1));
446 } 449 }
447 } 450 }
448 } 451 }
@@ -509,4 +512,5 @@ public class TTInfoDetailServiceImpl extends BServiceImpl&lt;TTInfoDetail, Long&gt; im @@ -509,4 +512,5 @@ public class TTInfoDetailServiceImpl extends BServiceImpl&lt;TTInfoDetail, Long&gt; im
509 public List<TTInfoDetail> findBcdetails(Integer xlId, Long ttinfoId, Long lpId) { 512 public List<TTInfoDetail> findBcdetails(Integer xlId, Long ttinfoId, Long lpId) {
510 return ttInfoDetailRepository.findBcdetails(xlId, ttinfoId, lpId); 513 return ttInfoDetailRepository.findBcdetails(xlId, ttinfoId, lpId);
511 } 514 }
  515 +
512 } 516 }
src/main/resources/datatools/ktrs/ttinfodetailDataInput.ktr
1 -<?xml version="1.0" encoding="UTF-8"?>  
2 -<transformation>  
3 - <info>  
4 - <name>ttinfodetailDataInput</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>bus_control_variable</name>  
185 - <server>&#x24;&#x7b;v_db_ip&#x7d;</server>  
186 - <type>MYSQL</type>  
187 - <access>Native</access>  
188 - <database>&#x24;&#x7b;v_db_dname&#x7d;</database>  
189 - <port>3306</port>  
190 - <username>&#x24;&#x7b;v_db_uname&#x7d;</username>  
191 - <password>&#x24;&#x7b;v_db_pwd&#x7d;</password>  
192 - <servername/>  
193 - <data_tablespace/>  
194 - <index_tablespace/>  
195 - <attributes>  
196 - <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>  
197 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
198 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
199 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
200 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
201 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
202 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
203 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
204 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
205 - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>  
206 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
207 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
208 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
209 - </attributes>  
210 - </connection>  
211 - <connection>  
212 - <name>bus_control_&#x516c;&#x53f8;_201</name>  
213 - <server>localhost</server>  
214 - <type>MYSQL</type>  
215 - <access>Native</access>  
216 - <database>control</database>  
217 - <port>3306</port>  
218 - <username>root</username>  
219 - <password>Encrypted </password>  
220 - <servername/>  
221 - <data_tablespace/>  
222 - <index_tablespace/>  
223 - <attributes>  
224 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
225 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
226 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
227 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
228 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
229 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
230 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
231 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
232 - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>  
233 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
234 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
235 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
236 - </attributes>  
237 - </connection>  
238 - <connection>  
239 - <name>bus_control_&#x672c;&#x673a;</name>  
240 - <server>localhost</server>  
241 - <type>MYSQL</type>  
242 - <access>Native</access>  
243 - <database>control</database>  
244 - <port>3306</port>  
245 - <username>root</username>  
246 - <password>Encrypted </password>  
247 - <servername/>  
248 - <data_tablespace/>  
249 - <index_tablespace/>  
250 - <attributes>  
251 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
252 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
253 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
254 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
255 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
256 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
257 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
258 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
259 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
260 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
261 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
262 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
263 - </attributes>  
264 - </connection>  
265 - <connection>  
266 - <name>xlab_mysql_youle</name>  
267 - <server>101.231.124.8</server>  
268 - <type>MYSQL</type>  
269 - <access>Native</access>  
270 - <database>xlab_youle</database>  
271 - <port>45687</port>  
272 - <username>xlab-youle</username>  
273 - <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password>  
274 - <servername/>  
275 - <data_tablespace/>  
276 - <index_tablespace/>  
277 - <attributes>  
278 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
279 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
280 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
281 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
282 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
283 - <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute>  
284 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
285 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
286 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
287 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>  
288 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>  
289 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
290 - </attributes>  
291 - </connection>  
292 - <connection>  
293 - <name>xlab_mysql_youle&#xff08;&#x672c;&#x673a;&#xff09;</name>  
294 - <server>localhost</server>  
295 - <type>MYSQL</type>  
296 - <access>Native</access>  
297 - <database>xlab_youle</database>  
298 - <port>3306</port>  
299 - <username>root</username>  
300 - <password>Encrypted </password>  
301 - <servername/>  
302 - <data_tablespace/>  
303 - <index_tablespace/>  
304 - <attributes>  
305 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
306 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
307 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
308 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
309 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
310 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
311 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
312 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
313 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
314 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>  
315 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>  
316 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
317 - </attributes>  
318 - </connection>  
319 - <connection>  
320 - <name>xlab_youle</name>  
321 - <server/>  
322 - <type>MYSQL</type>  
323 - <access>JNDI</access>  
324 - <database>xlab_youle</database>  
325 - <port>1521</port>  
326 - <username/>  
327 - <password>Encrypted </password>  
328 - <servername/>  
329 - <data_tablespace/>  
330 - <index_tablespace/>  
331 - <attributes>  
332 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
333 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
334 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
335 - <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>  
336 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
337 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
338 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
339 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
340 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
341 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
342 - </attributes>  
343 - </connection>  
344 - <order>  
345 - <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>  
346 - <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>  
347 - <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>  
348 - <hop> <from>&#x6dfb;&#x52a0;&#x5bf9;&#x5e94;&#x73ed;&#x6b21;&#x6570;</from><to>&#x5904;&#x7406;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>  
349 - <hop> <from>&#x5904;&#x7406;&#x6570;&#x636e;</from><to>&#x5206;&#x7ec4;&#x5404;&#x4e2a;&#x8def;&#x724c;&#x7684;&#x7ad9;</to><enabled>Y</enabled> </hop>  
350 - <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>  
351 - <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>  
352 - <hop> <from>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178;</from><to>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178;</to><enabled>Y</enabled> </hop>  
353 - <hop> <from>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 2</from><to>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 2</to><enabled>Y</enabled> </hop>  
354 - <hop> <from>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 3</from><to>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 3</to><enabled>Y</enabled> </hop>  
355 - <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>  
356 - <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>  
357 - <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>  
358 - <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>  
359 - <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>  
360 - <hop> <from>&#x67e5;&#x627e;&#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>  
361 - <hop> <from>&#x67e5;&#x627e;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;</from><to>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178;</to><enabled>Y</enabled> </hop>  
362 - <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>  
363 - <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>  
364 - <hop> <from>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</from><to>&#x6b63;&#x5e38;&#x73ed;&#x6b21;_&#x5904;&#x7406;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>  
365 - <hop> <from>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178;</from><to>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x4e0a;&#x4e0b;&#x884c;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>  
366 - <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>  
367 - <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>  
368 - <hop> <from>&#x67e5;&#x627e;&#x8def;&#x724c;&#x5173;&#x8054;</from><to>&#x8ba1;&#x7b97;&#x73ed;&#x6b21;&#x7c7b;&#x578b;</to><enabled>Y</enabled> </hop>  
369 - <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>  
370 - <hop> <from>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</from><to>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;1</to><enabled>Y</enabled> </hop>  
371 - <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>  
372 - <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>  
373 - <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>  
374 - <hop> <from>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</from><to>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;2</to><enabled>Y</enabled> </hop>  
375 - <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>  
376 - <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>  
377 - <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>  
378 - <hop> <from>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</from><to>&#x6dfb;&#x52a0;&#x53d1;&#x8f66;&#x987a;&#x5e8f;&#x53f7;</to><enabled>Y</enabled> </hop>  
379 - <hop> <from>&#x5206;&#x7ec4;&#x5404;&#x4e2a;&#x8def;&#x724c;&#x7684;&#x7ad9;</from><to>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x5173;&#x8054;</to><enabled>Y</enabled> </hop>  
380 - <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>  
381 - <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>  
382 - <hop> <from>&#x8bb0;&#x5f55;&#x5173;&#x8054; &#x28;&#x7b1b;&#x5361;&#x5c14;&#x8f93;&#x51fa;&#x29;</from><to>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</to><enabled>Y</enabled> </hop>  
383 - <hop> <from>&#x7c7b;&#x578b;&#x4fee;&#x6b63;</from><to>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail</to><enabled>Y</enabled> </hop>  
384 - <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>  
385 - <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>  
386 - <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>  
387 - <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>  
388 - <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>  
389 - <hop> <from>&#x4e0a;&#x4e0b;&#x884c;NULL&#x5224;&#x5b9a;</from><to>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 2</to><enabled>Y</enabled> </hop>  
390 - <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>  
391 - <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>  
392 - <hop> <from>&#x4e0a;&#x4e0b;&#x884c;&#x5224;&#x5b9a; 2</from><to>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 3</to><enabled>Y</enabled> </hop>  
393 - <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>  
394 - </order>  
395 - <step>  
396 - <name>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178;</name>  
397 - <type>ValueMapper</type>  
398 - <description/>  
399 - <distribute>Y</distribute>  
400 - <custom_distribution/>  
401 - <copies>1</copies>  
402 - <partitioning>  
403 - <method>none</method>  
404 - <schema_name/>  
405 - </partitioning>  
406 - <field_to_use>sxx</field_to_use>  
407 - <target_field>sxx_desc</target_field>  
408 - <non_match_default/>  
409 - <fields>  
410 - <field>  
411 - <source_value>0</source_value>  
412 - <target_value>&#x4e0a;&#x884c;</target_value>  
413 - </field>  
414 - <field>  
415 - <source_value>1</source_value>  
416 - <target_value>&#x4e0b;&#x884c;</target_value>  
417 - </field>  
418 - </fields>  
419 - <cluster_schema/>  
420 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
421 - <xloc>147</xloc>  
422 - <yloc>403</yloc>  
423 - <draw>Y</draw>  
424 - </GUI>  
425 - </step>  
426 -  
427 - <step>  
428 - <name>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 2</name>  
429 - <type>ValueMapper</type>  
430 - <description/>  
431 - <distribute>Y</distribute>  
432 - <custom_distribution/>  
433 - <copies>1</copies>  
434 - <partitioning>  
435 - <method>none</method>  
436 - <schema_name/>  
437 - </partitioning>  
438 - <field_to_use>sxx</field_to_use>  
439 - <target_field>sxx_desc</target_field>  
440 - <non_match_default/>  
441 - <fields>  
442 - <field>  
443 - <source_value>0</source_value>  
444 - <target_value>&#x4e0a;&#x884c;</target_value>  
445 - </field>  
446 - <field>  
447 - <source_value>1</source_value>  
448 - <target_value>&#x4e0b;&#x884c;</target_value>  
449 - </field>  
450 - </fields>  
451 - <cluster_schema/>  
452 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
453 - <xloc>331</xloc>  
454 - <yloc>598</yloc>  
455 - <draw>Y</draw>  
456 - </GUI>  
457 - </step>  
458 -  
459 - <step>  
460 - <name>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 3</name>  
461 - <type>ValueMapper</type>  
462 - <description/>  
463 - <distribute>Y</distribute>  
464 - <custom_distribution/>  
465 - <copies>1</copies>  
466 - <partitioning>  
467 - <method>none</method>  
468 - <schema_name/>  
469 - </partitioning>  
470 - <field_to_use>sxx</field_to_use>  
471 - <target_field>sxx_desc</target_field>  
472 - <non_match_default/>  
473 - <fields>  
474 - <field>  
475 - <source_value>0</source_value>  
476 - <target_value>&#x4e0a;&#x884c;</target_value>  
477 - </field>  
478 - <field>  
479 - <source_value>1</source_value>  
480 - <target_value>&#x4e0b;&#x884c;</target_value>  
481 - </field>  
482 - </fields>  
483 - <cluster_schema/>  
484 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
485 - <xloc>553</xloc>  
486 - <yloc>859</yloc>  
487 - <draw>Y</draw>  
488 - </GUI>  
489 - </step>  
490 -  
491 - <step>  
492 - <name>&#x51fa;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x7ec8;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</name>  
493 - <type>ScriptValueMod</type>  
494 - <description/>  
495 - <distribute>Y</distribute>  
496 - <custom_distribution/>  
497 - <copies>1</copies>  
498 - <partitioning>  
499 - <method>none</method>  
500 - <schema_name/>  
501 - </partitioning>  
502 - <compatible>N</compatible>  
503 - <optimizationLevel>9</optimizationLevel>  
504 - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>  
505 - <jsScript_name>Script 1</jsScript_name>  
506 - <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>  
507 - </jsScript> </jsScripts> <fields> <field> <name>zdzname</name>  
508 - <rename>zdzname</rename>  
509 - <type>String</type>  
510 - <length>-1</length>  
511 - <precision>-1</precision>  
512 - <replace>N</replace>  
513 - </field> <field> <name>endZdtype</name>  
514 - <rename>endZdtype</rename>  
515 - <type>String</type>  
516 - <length>-1</length>  
517 - <precision>-1</precision>  
518 - <replace>N</replace>  
519 - </field> <field> <name>destory</name>  
520 - <rename>destory</rename>  
521 - <type>Integer</type>  
522 - <length>-1</length>  
523 - <precision>-1</precision>  
524 - <replace>N</replace>  
525 - </field> </fields> <cluster_schema/>  
526 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
527 - <xloc>575</xloc>  
528 - <yloc>502</yloc>  
529 - <draw>Y</draw>  
530 - </GUI>  
531 - </step>  
532 -  
533 - <step>  
534 - <name>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</name>  
535 - <type>Dummy</type>  
536 - <description/>  
537 - <distribute>Y</distribute>  
538 - <custom_distribution/>  
539 - <copies>1</copies>  
540 - <partitioning>  
541 - <method>none</method>  
542 - <schema_name/>  
543 - </partitioning>  
544 - <cluster_schema/>  
545 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
546 - <xloc>869</xloc>  
547 - <yloc>504</yloc>  
548 - <draw>Y</draw>  
549 - </GUI>  
550 - </step>  
551 -  
552 - <step>  
553 - <name>&#x5206;&#x7ec4;&#x5404;&#x4e2a;&#x8def;&#x724c;&#x7684;&#x7ad9;</name>  
554 - <type>GroupBy</type>  
555 - <description/>  
556 - <distribute>Y</distribute>  
557 - <custom_distribution/>  
558 - <copies>1</copies>  
559 - <partitioning>  
560 - <method>none</method>  
561 - <schema_name/>  
562 - </partitioning>  
563 - <all_rows>Y</all_rows>  
564 - <ignore_aggregate>N</ignore_aggregate>  
565 - <field_ignore/>  
566 - <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>  
567 - <prefix>grp</prefix>  
568 - <add_linenr>Y</add_linenr>  
569 - <linenr_fieldname>gno</linenr_fieldname>  
570 - <give_back_row>N</give_back_row>  
571 - <group>  
572 - <field>  
573 - <name>lp</name>  
574 - </field>  
575 - </group>  
576 - <fields>  
577 - <field>  
578 - <aggregate>qdzgroups</aggregate>  
579 - <subject>qdzname</subject>  
580 - <type>CONCAT_STRING</type>  
581 - <valuefield>,</valuefield>  
582 - </field>  
583 - </fields>  
584 - <cluster_schema/>  
585 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
586 - <xloc>892</xloc>  
587 - <yloc>44</yloc>  
588 - <draw>Y</draw>  
589 - </GUI>  
590 - </step>  
591 -  
592 - <step>  
593 - <name>&#x5339;&#x914d;&#x4e0a;&#x4e0b;&#x884c;&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>  
594 - <type>ScriptValueMod</type>  
595 - <description/>  
596 - <distribute>Y</distribute>  
597 - <custom_distribution/>  
598 - <copies>1</copies>  
599 - <partitioning>  
600 - <method>none</method>  
601 - <schema_name/>  
602 - </partitioning>  
603 - <compatible>N</compatible>  
604 - <optimizationLevel>9</optimizationLevel>  
605 - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>  
606 - <jsScript_name>Script 1</jsScript_name>  
607 - <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;if &#x28;sxx &#x3d;&#x3d; 0&#x29; &#x7b; &#x2f;&#x2f; &#x4e0a;&#x884c;&#xa; jhlc &#x3d; up_mileage&#x3b;&#xa; bcsj &#x3d; up_travel_time&#x3b;&#xa;&#x7d; else &#x7b; &#x2f;&#x2f; sxx &#x3d;&#x3d; 1 &#x4e0b;&#x884c;&#xa; jhlc &#x3d; down_mileage&#x3b;&#xa; bcsj &#x3d; down_travel_time&#x3b;&#xa;&#x7d;</jsScript_script>  
608 - </jsScript> </jsScripts> <fields> <field> <name>jhlc</name>  
609 - <rename>jhlc</rename>  
610 - <type>String</type>  
611 - <length>-1</length>  
612 - <precision>-1</precision>  
613 - <replace>N</replace>  
614 - </field> <field> <name>bcsj</name>  
615 - <rename>bcsj</rename>  
616 - <type>String</type>  
617 - <length>-1</length>  
618 - <precision>-1</precision>  
619 - <replace>N</replace>  
620 - </field> </fields> <cluster_schema/>  
621 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
622 - <xloc>148</xloc>  
623 - <yloc>674</yloc>  
624 - <draw>Y</draw>  
625 - </GUI>  
626 - </step>  
627 -  
628 - <step>  
629 - <name>&#x5339;&#x914d;&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>  
630 - <type>ScriptValueMod</type>  
631 - <description/>  
632 - <distribute>Y</distribute>  
633 - <custom_distribution/>  
634 - <copies>1</copies>  
635 - <partitioning>  
636 - <method>none</method>  
637 - <schema_name/>  
638 - </partitioning>  
639 - <compatible>N</compatible>  
640 - <optimizationLevel>9</optimizationLevel>  
641 - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>  
642 - <jsScript_name>Script 1</jsScript_name>  
643 - <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>  
644 - </jsScript> </jsScripts> <fields> <field> <name>out_mileage</name>  
645 - <rename>out_mileage</rename>  
646 - <type>String</type>  
647 - <length>-1</length>  
648 - <precision>-1</precision>  
649 - <replace>N</replace>  
650 - </field> <field> <name>out_time</name>  
651 - <rename>out_time</rename>  
652 - <type>String</type>  
653 - <length>-1</length>  
654 - <precision>-1</precision>  
655 - <replace>N</replace>  
656 - </field> </fields> <cluster_schema/>  
657 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
658 - <xloc>336</xloc>  
659 - <yloc>862</yloc>  
660 - <draw>Y</draw>  
661 - </GUI>  
662 - </step>  
663 -  
664 - <step>  
665 - <name>&#x5339;&#x914d;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>  
666 - <type>ScriptValueMod</type>  
667 - <description/>  
668 - <distribute>Y</distribute>  
669 - <custom_distribution/>  
670 - <copies>1</copies>  
671 - <partitioning>  
672 - <method>none</method>  
673 - <schema_name/>  
674 - </partitioning>  
675 - <compatible>N</compatible>  
676 - <optimizationLevel>9</optimizationLevel>  
677 - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>  
678 - <jsScript_name>Script 1</jsScript_name>  
679 - <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>  
680 - </jsScript> </jsScripts> <fields> <field> <name>parade_mileage</name>  
681 - <rename>parade_mileage</rename>  
682 - <type>String</type>  
683 - <length>-1</length>  
684 - <precision>-1</precision>  
685 - <replace>N</replace>  
686 - </field> <field> <name>parade_time</name>  
687 - <rename>parade_time</rename>  
688 - <type>String</type>  
689 - <length>-1</length>  
690 - <precision>-1</precision>  
691 - <replace>N</replace>  
692 - </field> </fields> <cluster_schema/>  
693 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
694 - <xloc>726</xloc>  
695 - <yloc>1005</yloc>  
696 - <draw>Y</draw>  
697 - </GUI>  
698 - </step>  
699 -  
700 - <step>  
701 - <name>&#x589e;&#x52a0;&#x65f6;&#x523b;&#x8868;&#x540d;&#x5b57;&#xff0c;&#x7ebf;&#x8def;&#x540d;&#x5b57;&#xff0c;&#x505c;&#x8f66;&#x573a;&#x540d;&#x5b57;</name>  
702 - <type>DataGrid</type>  
703 - <description/>  
704 - <distribute>Y</distribute>  
705 - <custom_distribution/>  
706 - <copies>1</copies>  
707 - <partitioning>  
708 - <method>none</method>  
709 - <schema_name/>  
710 - </partitioning>  
711 - <fields>  
712 - </fields>  
713 - <data>  
714 - <line> </line>  
715 - </data>  
716 - <cluster_schema/>  
717 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
718 - <xloc>110</xloc>  
719 - <yloc>133</yloc>  
720 - <draw>Y</draw>  
721 - </GUI>  
722 - </step>  
723 -  
724 - <step>  
725 - <name>&#x5904;&#x7406;&#x6570;&#x636e;</name>  
726 - <type>ScriptValueMod</type>  
727 - <description/>  
728 - <distribute>Y</distribute>  
729 - <custom_distribution/>  
730 - <copies>1</copies>  
731 - <partitioning>  
732 - <method>none</method>  
733 - <schema_name/>  
734 - </partitioning>  
735 - <compatible>N</compatible>  
736 - <optimizationLevel>9</optimizationLevel>  
737 - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>  
738 - <jsScript_name>Script 1</jsScript_name>  
739 - <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;&#x2f;&#x2f; &#x4f7f;&#x7528;&#x6b63;&#x5219;&#x8868;&#x8fbe;&#x5f0f;&#x53bb;&#x9664;&#x7ad9;&#x70b9;&#x540d;&#x79f0;&#x4e2d;&#x7684;&#x6570;&#x5b57;&#xa;qdzname &#x3d; qdzname.replace&#x28;&#x2f;&#x5c;d&#x2b;&#x2f;g,&#x27;&#x27;&#x29;&#x3b;&#xa;&#xa;&#x2f;&#x2f; sendtime&#x5904;&#x7406;&#xa;var sendtime_calcu&#x3b;&#xa;if &#x28;sendtime.length &#x21;&#x3d; 5&#x29; &#xa; sendtime_calcu &#x3d; sendtime.substr&#x28;0, 2&#x29; &#x2b; &#x22;&#x3a;&#x22; &#x2b; sendtime.substr&#x28;2, 2&#x29;&#x3b;&#xa;else &#xa; sendtime_calcu &#x3d; sendtime&#x3b;&#xa;&#xa;&#x2f;&#x2f; &#x8bbe;&#x7f6e;&#x5206;&#x73ed;&#xa;var isfb &#x3d; 0&#x3b;&#xa;&#xa;&#x2f;&#x2f; &#x8bbe;&#x7f6e;isCanceled&#xa;var iscanceled &#x3d; 0&#x3b;</jsScript_script>  
740 - </jsScript> </jsScripts> <fields> <field> <name>qdzname</name>  
741 - <rename>qdzname</rename>  
742 - <type>String</type>  
743 - <length>-1</length>  
744 - <precision>-1</precision>  
745 - <replace>Y</replace>  
746 - </field> <field> <name>isfb</name>  
747 - <rename>isfb</rename>  
748 - <type>Integer</type>  
749 - <length>-1</length>  
750 - <precision>-1</precision>  
751 - <replace>N</replace>  
752 - </field> <field> <name>iscanceled</name>  
753 - <rename>iscanceled</rename>  
754 - <type>Integer</type>  
755 - <length>-1</length>  
756 - <precision>-1</precision>  
757 - <replace>N</replace>  
758 - </field> <field> <name>sendtime_calcu</name>  
759 - <rename>sendtime_calcu</rename>  
760 - <type>String</type>  
761 - <length>-1</length>  
762 - <precision>-1</precision>  
763 - <replace>N</replace>  
764 - </field> </fields> <cluster_schema/>  
765 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
766 - <xloc>788</xloc>  
767 - <yloc>44</yloc>  
768 - <draw>Y</draw>  
769 - </GUI>  
770 - </step>  
771 -  
772 - <step>  
773 - <name>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</name>  
774 - <type>SelectValues</type>  
775 - <description/>  
776 - <distribute>Y</distribute>  
777 - <custom_distribution/>  
778 - <copies>1</copies>  
779 - <partitioning>  
780 - <method>none</method>  
781 - <schema_name/>  
782 - </partitioning>  
783 - <fields> <field> <name>&#x8def;&#x724c;</name>  
784 - <rename>lp</rename>  
785 - <length>-2</length>  
786 - <precision>-2</precision>  
787 - </field> <field> <name>&#x7ad9;&#x70b9;&#x540d;&#x79f0;</name>  
788 - <rename>qdzname</rename>  
789 - <length>-2</length>  
790 - <precision>-2</precision>  
791 - </field> <field> <name>&#x53d1;&#x8f66;&#x65f6;&#x95f4;</name>  
792 - <rename>sendtime</rename>  
793 - <length>-2</length>  
794 - <precision>-2</precision>  
795 - </field> <select_unspecified>Y</select_unspecified>  
796 - </fields> <cluster_schema/>  
797 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
798 - <xloc>444</xloc>  
799 - <yloc>131</yloc>  
800 - <draw>Y</draw>  
801 - </GUI>  
802 - </step>  
803 -  
804 - <step>  
805 - <name>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;1</name>  
806 - <type>FilterRows</type>  
807 - <description/>  
808 - <distribute>Y</distribute>  
809 - <custom_distribution/>  
810 - <copies>1</copies>  
811 - <partitioning>  
812 - <method>none</method>  
813 - <schema_name/>  
814 - </partitioning>  
815 -<send_true_to>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</send_true_to>  
816 -<send_false_to>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</send_false_to>  
817 - <compare>  
818 -<condition>  
819 - <negated>N</negated>  
820 - <leftvalue>bctype</leftvalue>  
821 - <function>&#x3d;</function>  
822 - <rightvalue/>  
823 - <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>  
824 - </compare>  
825 - <cluster_schema/>  
826 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
827 - <xloc>860</xloc>  
828 - <yloc>401</yloc>  
829 - <draw>Y</draw>  
830 - </GUI>  
831 - </step>  
832 -  
833 - <step>  
834 - <name>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</name>  
835 - <type>FilterRows</type>  
836 - <description/>  
837 - <distribute>Y</distribute>  
838 - <custom_distribution/>  
839 - <copies>1</copies>  
840 - <partitioning>  
841 - <method>none</method>  
842 - <schema_name/>  
843 - </partitioning>  
844 -<send_true_to>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</send_true_to>  
845 -<send_false_to>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</send_false_to>  
846 - <compare>  
847 -<condition>  
848 - <negated>N</negated>  
849 - <leftvalue>bctype</leftvalue>  
850 - <function>&#x3d;</function>  
851 - <rightvalue/>  
852 - <value><name>constant</name><type>String</type><text>&#x51fa;&#x573a;</text><length>-1</length><precision>-1</precision><isnull>N</isnull><mask/></value> </condition>  
853 - </compare>  
854 - <cluster_schema/>  
855 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
856 - <xloc>995</xloc>  
857 - <yloc>503</yloc>  
858 - <draw>Y</draw>  
859 - </GUI>  
860 - </step>  
861 -  
862 - <step>  
863 - <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail</name>  
864 - <type>InsertUpdate</type>  
865 - <description/>  
866 - <distribute>Y</distribute>  
867 - <custom_distribution/>  
868 - <copies>1</copies>  
869 - <partitioning>  
870 - <method>none</method>  
871 - <schema_name/>  
872 - </partitioning>  
873 - <connection>bus_control_variable</connection>  
874 - <commit>100</commit>  
875 - <update_bypassed>N</update_bypassed>  
876 - <lookup>  
877 - <schema/>  
878 - <table>bsth_c_s_ttinfo_detail</table>  
879 - <key>  
880 - <name>xlid</name>  
881 - <field>xl</field>  
882 - <condition>&#x3d;</condition>  
883 - <name2/>  
884 - </key>  
885 - <key>  
886 - <name>ttid</name>  
887 - <field>ttinfo</field>  
888 - <condition>&#x3d;</condition>  
889 - <name2/>  
890 - </key>  
891 - <key>  
892 - <name>lpid</name>  
893 - <field>lp</field>  
894 - <condition>&#x3d;</condition>  
895 - <name2/>  
896 - </key>  
897 - <key>  
898 - <name>fcno</name>  
899 - <field>fcno</field>  
900 - <condition>&#x3d;</condition>  
901 - <name2/>  
902 - </key>  
903 - <key>  
904 - <name>bcs</name>  
905 - <field>bcs</field>  
906 - <condition>&#x3d;</condition>  
907 - <name2/>  
908 - </key>  
909 - <value>  
910 - <name>lp</name>  
911 - <rename>lpid</rename>  
912 - <update>Y</update>  
913 - </value>  
914 - <value>  
915 - <name>bc_type</name>  
916 - <rename>bctype_code</rename>  
917 - <update>Y</update>  
918 - </value>  
919 - <value>  
920 - <name>bcs</name>  
921 - <rename>bcs</rename>  
922 - <update>Y</update>  
923 - </value>  
924 - <value>  
925 - <name>bcsj</name>  
926 - <rename>bcsj</rename>  
927 - <update>Y</update>  
928 - </value>  
929 - <value>  
930 - <name>fcno</name>  
931 - <rename>fcno</rename>  
932 - <update>Y</update>  
933 - </value>  
934 - <value>  
935 - <name>jhlc</name>  
936 - <rename>jhlc</rename>  
937 - <update>Y</update>  
938 - </value>  
939 - <value>  
940 - <name>fcsj</name>  
941 - <rename>sendtime_calcu</rename>  
942 - <update>Y</update>  
943 - </value>  
944 - <value>  
945 - <name>ttinfo</name>  
946 - <rename>ttid</rename>  
947 - <update>Y</update>  
948 - </value>  
949 - <value>  
950 - <name>xl</name>  
951 - <rename>xlid</rename>  
952 - <update>Y</update>  
953 - </value>  
954 - <value>  
955 - <name>qdz</name>  
956 - <rename>qdzid</rename>  
957 - <update>Y</update>  
958 - </value>  
959 - <value>  
960 - <name>zdz</name>  
961 - <rename>zdzid</rename>  
962 - <update>Y</update>  
963 - </value>  
964 - <value>  
965 - <name>xl_dir</name>  
966 - <rename>sxx</rename>  
967 - <update>Y</update>  
968 - </value>  
969 - <value>  
970 - <name>isfb</name>  
971 - <rename>isfb</rename>  
972 - <update>Y</update>  
973 - </value>  
974 - </lookup>  
975 - <cluster_schema/>  
976 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
977 - <xloc>143</xloc>  
978 - <yloc>860</yloc>  
979 - <draw>Y</draw>  
980 - </GUI>  
981 - </step>  
982 -  
983 - <step>  
984 - <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail 2</name>  
985 - <type>InsertUpdate</type>  
986 - <description/>  
987 - <distribute>Y</distribute>  
988 - <custom_distribution/>  
989 - <copies>1</copies>  
990 - <partitioning>  
991 - <method>none</method>  
992 - <schema_name/>  
993 - </partitioning>  
994 - <connection>bus_control_variable</connection>  
995 - <commit>100</commit>  
996 - <update_bypassed>N</update_bypassed>  
997 - <lookup>  
998 - <schema/>  
999 - <table>bsth_c_s_ttinfo_detail</table>  
1000 - <key>  
1001 - <name>xlid</name>  
1002 - <field>xl</field>  
1003 - <condition>&#x3d;</condition>  
1004 - <name2/>  
1005 - </key>  
1006 - <key>  
1007 - <name>ttid</name>  
1008 - <field>ttinfo</field>  
1009 - <condition>&#x3d;</condition>  
1010 - <name2/>  
1011 - </key>  
1012 - <key>  
1013 - <name>lpid</name>  
1014 - <field>lp</field>  
1015 - <condition>&#x3d;</condition>  
1016 - <name2/>  
1017 - </key>  
1018 - <key>  
1019 - <name>fcno</name>  
1020 - <field>fcno</field>  
1021 - <condition>&#x3d;</condition>  
1022 - <name2/>  
1023 - </key>  
1024 - <key>  
1025 - <name>bcs</name>  
1026 - <field>bcs</field>  
1027 - <condition>&#x3d;</condition>  
1028 - <name2/>  
1029 - </key>  
1030 - <value>  
1031 - <name>tcc</name>  
1032 - <rename>qdzid</rename>  
1033 - <update>Y</update>  
1034 - </value>  
1035 - <value>  
1036 - <name>zdz</name>  
1037 - <rename>zdzid</rename>  
1038 - <update>Y</update>  
1039 - </value>  
1040 - <value>  
1041 - <name>xl</name>  
1042 - <rename>xlid</rename>  
1043 - <update>Y</update>  
1044 - </value>  
1045 - <value>  
1046 - <name>ttinfo</name>  
1047 - <rename>ttid</rename>  
1048 - <update>Y</update>  
1049 - </value>  
1050 - <value>  
1051 - <name>xl_dir</name>  
1052 - <rename>sxx</rename>  
1053 - <update>Y</update>  
1054 - </value>  
1055 - <value>  
1056 - <name>lp</name>  
1057 - <rename>lpid</rename>  
1058 - <update>Y</update>  
1059 - </value>  
1060 - <value>  
1061 - <name>jhlc</name>  
1062 - <rename>out_mileage</rename>  
1063 - <update>Y</update>  
1064 - </value>  
1065 - <value>  
1066 - <name>fcsj</name>  
1067 - <rename>sendtime_calcu</rename>  
1068 - <update>Y</update>  
1069 - </value>  
1070 - <value>  
1071 - <name>bcsj</name>  
1072 - <rename>out_time</rename>  
1073 - <update>Y</update>  
1074 - </value>  
1075 - <value>  
1076 - <name>bcs</name>  
1077 - <rename>bcs</rename>  
1078 - <update>Y</update>  
1079 - </value>  
1080 - <value>  
1081 - <name>fcno</name>  
1082 - <rename>fcno</rename>  
1083 - <update>Y</update>  
1084 - </value>  
1085 - <value>  
1086 - <name>bc_type</name>  
1087 - <rename>bctype_code</rename>  
1088 - <update>Y</update>  
1089 - </value>  
1090 - <value>  
1091 - <name>isfb</name>  
1092 - <rename>isfb</rename>  
1093 - <update>Y</update>  
1094 - </value>  
1095 - </lookup>  
1096 - <cluster_schema/>  
1097 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1098 - <xloc>340</xloc>  
1099 - <yloc>1087</yloc>  
1100 - <draw>Y</draw>  
1101 - </GUI>  
1102 - </step>  
1103 -  
1104 - <step>  
1105 - <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail 3</name>  
1106 - <type>InsertUpdate</type>  
1107 - <description/>  
1108 - <distribute>Y</distribute>  
1109 - <custom_distribution/>  
1110 - <copies>1</copies>  
1111 - <partitioning>  
1112 - <method>none</method>  
1113 - <schema_name/>  
1114 - </partitioning>  
1115 - <connection>bus_control_variable</connection>  
1116 - <commit>100</commit>  
1117 - <update_bypassed>N</update_bypassed>  
1118 - <lookup>  
1119 - <schema/>  
1120 - <table>bsth_c_s_ttinfo_detail</table>  
1121 - <key>  
1122 - <name>xlid</name>  
1123 - <field>xl</field>  
1124 - <condition>&#x3d;</condition>  
1125 - <name2/>  
1126 - </key>  
1127 - <key>  
1128 - <name>ttid</name>  
1129 - <field>ttinfo</field>  
1130 - <condition>&#x3d;</condition>  
1131 - <name2/>  
1132 - </key>  
1133 - <key>  
1134 - <name>lpid</name>  
1135 - <field>lp</field>  
1136 - <condition>&#x3d;</condition>  
1137 - <name2/>  
1138 - </key>  
1139 - <key>  
1140 - <name>fcno</name>  
1141 - <field>fcno</field>  
1142 - <condition>&#x3d;</condition>  
1143 - <name2/>  
1144 - </key>  
1145 - <key>  
1146 - <name>bcs</name>  
1147 - <field>bcs</field>  
1148 - <condition>&#x3d;</condition>  
1149 - <name2/>  
1150 - </key>  
1151 - <value>  
1152 - <name>fcno</name>  
1153 - <rename>fcno</rename>  
1154 - <update>Y</update>  
1155 - </value>  
1156 - <value>  
1157 - <name>bcs</name>  
1158 - <rename>bcs</rename>  
1159 - <update>Y</update>  
1160 - </value>  
1161 - <value>  
1162 - <name>xl</name>  
1163 - <rename>xlid</rename>  
1164 - <update>Y</update>  
1165 - </value>  
1166 - <value>  
1167 - <name>ttinfo</name>  
1168 - <rename>ttid</rename>  
1169 - <update>Y</update>  
1170 - </value>  
1171 - <value>  
1172 - <name>lp</name>  
1173 - <rename>lpid</rename>  
1174 - <update>Y</update>  
1175 - </value>  
1176 - <value>  
1177 - <name>bc_type</name>  
1178 - <rename>bctype_code</rename>  
1179 - <update>Y</update>  
1180 - </value>  
1181 - <value>  
1182 - <name>bcsj</name>  
1183 - <rename>parade_time</rename>  
1184 - <update>Y</update>  
1185 - </value>  
1186 - <value>  
1187 - <name>jhlc</name>  
1188 - <rename>parade_mileage</rename>  
1189 - <update>Y</update>  
1190 - </value>  
1191 - <value>  
1192 - <name>fcsj</name>  
1193 - <rename>sendtime_calcu</rename>  
1194 - <update>Y</update>  
1195 - </value>  
1196 - <value>  
1197 - <name>xl_dir</name>  
1198 - <rename>sxx2</rename>  
1199 - <update>Y</update>  
1200 - </value>  
1201 - <value>  
1202 - <name>qdz</name>  
1203 - <rename>qdzid</rename>  
1204 - <update>Y</update>  
1205 - </value>  
1206 - <value>  
1207 - <name>tcc</name>  
1208 - <rename>zdzid</rename>  
1209 - <update>Y</update>  
1210 - </value>  
1211 - <value>  
1212 - <name>isfb</name>  
1213 - <rename>isfb</rename>  
1214 - <update>Y</update>  
1215 - </value>  
1216 - </lookup>  
1217 - <cluster_schema/>  
1218 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1219 - <xloc>845</xloc>  
1220 - <yloc>899</yloc>  
1221 - <draw>Y</draw>  
1222 - </GUI>  
1223 - </step>  
1224 -  
1225 - <step>  
1226 - <name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</name>  
1227 - <type>ExcelInput</type>  
1228 - <description/>  
1229 - <distribute>N</distribute>  
1230 - <custom_distribution/>  
1231 - <copies>1</copies>  
1232 - <partitioning>  
1233 - <method>none</method>  
1234 - <schema_name/>  
1235 - </partitioning>  
1236 - <header>Y</header>  
1237 - <noempty>Y</noempty>  
1238 - <stoponempty>N</stoponempty>  
1239 - <filefield/>  
1240 - <sheetfield/>  
1241 - <sheetrownumfield/>  
1242 - <rownumfield/>  
1243 - <sheetfield/>  
1244 - <filefield/>  
1245 - <limit>0</limit>  
1246 - <encoding/>  
1247 - <add_to_result_filenames>Y</add_to_result_filenames>  
1248 - <accept_filenames>N</accept_filenames>  
1249 - <accept_field/>  
1250 - <accept_stepname/>  
1251 - <file>  
1252 - <name/>  
1253 - <filemask/>  
1254 - <exclude_filemask/>  
1255 - <file_required>N</file_required>  
1256 - <include_subfolders>N</include_subfolders>  
1257 - </file>  
1258 - <fields>  
1259 - </fields>  
1260 - <sheets>  
1261 - <sheet>  
1262 - <name/>  
1263 - <startrow>0</startrow>  
1264 - <startcol>0</startcol>  
1265 - </sheet>  
1266 - </sheets>  
1267 - <strict_types>N</strict_types>  
1268 - <error_ignored>N</error_ignored>  
1269 - <error_line_skipped>N</error_line_skipped>  
1270 - <bad_line_files_destination_directory/>  
1271 - <bad_line_files_extension>warning</bad_line_files_extension>  
1272 - <error_line_files_destination_directory/>  
1273 - <error_line_files_extension>error</error_line_files_extension>  
1274 - <line_number_files_destination_directory/>  
1275 - <line_number_files_extension>line</line_number_files_extension>  
1276 - <shortFileFieldName/>  
1277 - <pathFieldName/>  
1278 - <hiddenFieldName/>  
1279 - <lastModificationTimeFieldName/>  
1280 - <uriNameFieldName/>  
1281 - <rootUriNameFieldName/>  
1282 - <extensionFieldName/>  
1283 - <sizeFieldName/>  
1284 - <spreadsheet_type>JXL</spreadsheet_type>  
1285 - <cluster_schema/>  
1286 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1287 - <xloc>112</xloc>  
1288 - <yloc>44</yloc>  
1289 - <draw>Y</draw>  
1290 - </GUI>  
1291 - </step>  
1292 -  
1293 - <step>  
1294 - <name>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;1</name>  
1295 - <type>DBLookup</type>  
1296 - <description/>  
1297 - <distribute>Y</distribute>  
1298 - <custom_distribution/>  
1299 - <copies>1</copies>  
1300 - <partitioning>  
1301 - <method>none</method>  
1302 - <schema_name/>  
1303 - </partitioning>  
1304 - <connection>bus_control_variable</connection>  
1305 - <cache>N</cache>  
1306 - <cache_load_all>N</cache_load_all>  
1307 - <cache_size>0</cache_size>  
1308 - <lookup>  
1309 - <schema/>  
1310 - <table>bsth_c_car_park</table>  
1311 - <orderby/>  
1312 - <fail_on_multiple>N</fail_on_multiple>  
1313 - <eat_row_on_failure>N</eat_row_on_failure>  
1314 - <key>  
1315 - <name>tccname_</name>  
1316 - <field>park_name</field>  
1317 - <condition>&#x3d;</condition>  
1318 - <name2/>  
1319 - </key>  
1320 - <value>  
1321 - <name>id</name>  
1322 - <rename>qdzid</rename>  
1323 - <default/>  
1324 - <type>Integer</type>  
1325 - </value>  
1326 - </lookup>  
1327 - <cluster_schema/>  
1328 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1329 - <xloc>755</xloc>  
1330 - <yloc>504</yloc>  
1331 - <draw>Y</draw>  
1332 - </GUI>  
1333 - </step>  
1334 -  
1335 - <step>  
1336 - <name>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;2</name>  
1337 - <type>DBLookup</type>  
1338 - <description/>  
1339 - <distribute>Y</distribute>  
1340 - <custom_distribution/>  
1341 - <copies>1</copies>  
1342 - <partitioning>  
1343 - <method>none</method>  
1344 - <schema_name/>  
1345 - </partitioning>  
1346 - <connection>bus_control_variable</connection>  
1347 - <cache>N</cache>  
1348 - <cache_load_all>N</cache_load_all>  
1349 - <cache_size>0</cache_size>  
1350 - <lookup>  
1351 - <schema/>  
1352 - <table>bsth_c_car_park</table>  
1353 - <orderby/>  
1354 - <fail_on_multiple>N</fail_on_multiple>  
1355 - <eat_row_on_failure>N</eat_row_on_failure>  
1356 - <key>  
1357 - <name>tccname_</name>  
1358 - <field>park_name</field>  
1359 - <condition>&#x3d;</condition>  
1360 - <name2/>  
1361 - </key>  
1362 - <value>  
1363 - <name>id</name>  
1364 - <rename>zdzid</rename>  
1365 - <default/>  
1366 - <type>Integer</type>  
1367 - </value>  
1368 - </lookup>  
1369 - <cluster_schema/>  
1370 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1371 - <xloc>887</xloc>  
1372 - <yloc>608</yloc>  
1373 - <draw>Y</draw>  
1374 - </GUI>  
1375 - </step>  
1376 -  
1377 - <step>  
1378 - <name>&#x67e5;&#x627e;&#x51fa;&#x573a;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</name>  
1379 - <type>DBLookup</type>  
1380 - <description/>  
1381 - <distribute>Y</distribute>  
1382 - <custom_distribution/>  
1383 - <copies>1</copies>  
1384 - <partitioning>  
1385 - <method>none</method>  
1386 - <schema_name/>  
1387 - </partitioning>  
1388 - <connection>bus_control_variable</connection>  
1389 - <cache>N</cache>  
1390 - <cache_load_all>N</cache_load_all>  
1391 - <cache_size>0</cache_size>  
1392 - <lookup>  
1393 - <schema/>  
1394 - <table>bsth_c_stationroute</table>  
1395 - <orderby/>  
1396 - <fail_on_multiple>N</fail_on_multiple>  
1397 - <eat_row_on_failure>N</eat_row_on_failure>  
1398 - <key>  
1399 - <name>xlid</name>  
1400 - <field>line</field>  
1401 - <condition>&#x3d;</condition>  
1402 - <name2/>  
1403 - </key>  
1404 - <key>  
1405 - <name>zdzname</name>  
1406 - <field>station_name</field>  
1407 - <condition>&#x3d;</condition>  
1408 - <name2/>  
1409 - </key>  
1410 - <key>  
1411 - <name>endZdtype</name>  
1412 - <field>station_mark</field>  
1413 - <condition>&#x3d;</condition>  
1414 - <name2/>  
1415 - </key>  
1416 - <key>  
1417 - <name>destory</name>  
1418 - <field>destroy</field>  
1419 - <condition>&#x3d;</condition>  
1420 - <name2/>  
1421 - </key>  
1422 - <value>  
1423 - <name>station</name>  
1424 - <rename>zdzid</rename>  
1425 - <default/>  
1426 - <type>Integer</type>  
1427 - </value>  
1428 - <value>  
1429 - <name>directions</name>  
1430 - <rename>sxx</rename>  
1431 - <default/>  
1432 - <type>Integer</type>  
1433 - </value>  
1434 - </lookup>  
1435 - <cluster_schema/>  
1436 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1437 - <xloc>329</xloc>  
1438 - <yloc>505</yloc>  
1439 - <draw>Y</draw>  
1440 - </GUI>  
1441 - </step>  
1442 -  
1443 - <step>  
1444 - <name>&#x67e5;&#x627e;&#x65f6;&#x523b;&#x8868;&#x57fa;&#x7840;&#x4fe1;&#x606f;&#x5173;&#x8054;</name>  
1445 - <type>DBLookup</type>  
1446 - <description/>  
1447 - <distribute>Y</distribute>  
1448 - <custom_distribution/>  
1449 - <copies>1</copies>  
1450 - <partitioning>  
1451 - <method>none</method>  
1452 - <schema_name/>  
1453 - </partitioning>  
1454 - <connection>bus_control_variable</connection>  
1455 - <cache>N</cache>  
1456 - <cache_load_all>N</cache_load_all>  
1457 - <cache_size>0</cache_size>  
1458 - <lookup>  
1459 - <schema/>  
1460 - <table>bsth_c_s_ttinfo</table>  
1461 - <orderby/>  
1462 - <fail_on_multiple>N</fail_on_multiple>  
1463 - <eat_row_on_failure>N</eat_row_on_failure>  
1464 - <key>  
1465 - <name>xlid</name>  
1466 - <field>xl</field>  
1467 - <condition>&#x3d;</condition>  
1468 - <name2/>  
1469 - </key>  
1470 - <key>  
1471 - <name>ttinfoname_</name>  
1472 - <field>name</field>  
1473 - <condition>&#x3d;</condition>  
1474 - <name2/>  
1475 - </key>  
1476 - <key>  
1477 - <name>iscanceled</name>  
1478 - <field>is_cancel</field>  
1479 - <condition>&#x3d;</condition>  
1480 - <name2/>  
1481 - </key>  
1482 - <value>  
1483 - <name>id</name>  
1484 - <rename>ttid</rename>  
1485 - <default/>  
1486 - <type>Integer</type>  
1487 - </value>  
1488 - </lookup>  
1489 - <cluster_schema/>  
1490 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1491 - <xloc>1011</xloc>  
1492 - <yloc>134</yloc>  
1493 - <draw>Y</draw>  
1494 - </GUI>  
1495 - </step>  
1496 -  
1497 - <step>  
1498 - <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x4e0a;&#x4e0b;&#x884c;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>  
1499 - <type>DBLookup</type>  
1500 - <description/>  
1501 - <distribute>Y</distribute>  
1502 - <custom_distribution/>  
1503 - <copies>1</copies>  
1504 - <partitioning>  
1505 - <method>none</method>  
1506 - <schema_name/>  
1507 - </partitioning>  
1508 - <connection>bus_control_variable</connection>  
1509 - <cache>N</cache>  
1510 - <cache_load_all>N</cache_load_all>  
1511 - <cache_size>0</cache_size>  
1512 - <lookup>  
1513 - <schema/>  
1514 - <table>bsth_c_line_information</table>  
1515 - <orderby/>  
1516 - <fail_on_multiple>N</fail_on_multiple>  
1517 - <eat_row_on_failure>N</eat_row_on_failure>  
1518 - <key>  
1519 - <name>xlid</name>  
1520 - <field>line</field>  
1521 - <condition>&#x3d;</condition>  
1522 - <name2/>  
1523 - </key>  
1524 - <value>  
1525 - <name>up_mileage</name>  
1526 - <rename>up_mileage</rename>  
1527 - <default/>  
1528 - <type>Number</type>  
1529 - </value>  
1530 - <value>  
1531 - <name>down_mileage</name>  
1532 - <rename>down_mileage</rename>  
1533 - <default/>  
1534 - <type>Number</type>  
1535 - </value>  
1536 - <value>  
1537 - <name>up_travel_time</name>  
1538 - <rename>up_travel_time</rename>  
1539 - <default/>  
1540 - <type>Number</type>  
1541 - </value>  
1542 - <value>  
1543 - <name>down_travel_time</name>  
1544 - <rename>down_travel_time</rename>  
1545 - <default/>  
1546 - <type>Number</type>  
1547 - </value>  
1548 - </lookup>  
1549 - <cluster_schema/>  
1550 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1551 - <xloc>149</xloc>  
1552 - <yloc>581</yloc>  
1553 - <draw>Y</draw>  
1554 - </GUI>  
1555 - </step>  
1556 -  
1557 - <step>  
1558 - <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x5173;&#x8054;</name>  
1559 - <type>DBLookup</type>  
1560 - <description/>  
1561 - <distribute>Y</distribute>  
1562 - <custom_distribution/>  
1563 - <copies>1</copies>  
1564 - <partitioning>  
1565 - <method>none</method>  
1566 - <schema_name/>  
1567 - </partitioning>  
1568 - <connection>bus_control_variable</connection>  
1569 - <cache>N</cache>  
1570 - <cache_load_all>N</cache_load_all>  
1571 - <cache_size>0</cache_size>  
1572 - <lookup>  
1573 - <schema/>  
1574 - <table>bsth_c_line</table>  
1575 - <orderby/>  
1576 - <fail_on_multiple>N</fail_on_multiple>  
1577 - <eat_row_on_failure>N</eat_row_on_failure>  
1578 - <key>  
1579 - <name>xlname_</name>  
1580 - <field>name</field>  
1581 - <condition>&#x3d;</condition>  
1582 - <name2/>  
1583 - </key>  
1584 - <value>  
1585 - <name>id</name>  
1586 - <rename>xlid</rename>  
1587 - <default/>  
1588 - <type>Integer</type>  
1589 - </value>  
1590 - </lookup>  
1591 - <cluster_schema/>  
1592 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1593 - <xloc>1007</xloc>  
1594 - <yloc>43</yloc>  
1595 - <draw>Y</draw>  
1596 - </GUI>  
1597 - </step>  
1598 -  
1599 - <step>  
1600 - <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x51fa;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>  
1601 - <type>DBLookup</type>  
1602 - <description/>  
1603 - <distribute>Y</distribute>  
1604 - <custom_distribution/>  
1605 - <copies>1</copies>  
1606 - <partitioning>  
1607 - <method>none</method>  
1608 - <schema_name/>  
1609 - </partitioning>  
1610 - <connection>bus_control_variable</connection>  
1611 - <cache>N</cache>  
1612 - <cache_load_all>N</cache_load_all>  
1613 - <cache_size>0</cache_size>  
1614 - <lookup>  
1615 - <schema/>  
1616 - <table>bsth_c_line_information</table>  
1617 - <orderby/>  
1618 - <fail_on_multiple>N</fail_on_multiple>  
1619 - <eat_row_on_failure>N</eat_row_on_failure>  
1620 - <key>  
1621 - <name>xlid</name>  
1622 - <field>line</field>  
1623 - <condition>&#x3d;</condition>  
1624 - <name2/>  
1625 - </key>  
1626 - <value>  
1627 - <name>up_out_timer</name>  
1628 - <rename>up_out_timer</rename>  
1629 - <default/>  
1630 - <type>Number</type>  
1631 - </value>  
1632 - <value>  
1633 - <name>up_out_mileage</name>  
1634 - <rename>up_out_mileage</rename>  
1635 - <default/>  
1636 - <type>Number</type>  
1637 - </value>  
1638 - <value>  
1639 - <name>down_out_timer</name>  
1640 - <rename>down_out_timer</rename>  
1641 - <default/>  
1642 - <type>Number</type>  
1643 - </value>  
1644 - <value>  
1645 - <name>down_out_mileage</name>  
1646 - <rename>down_out_mileage</rename>  
1647 - <default/>  
1648 - <type>Number</type>  
1649 - </value>  
1650 - </lookup>  
1651 - <cluster_schema/>  
1652 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1653 - <xloc>335</xloc>  
1654 - <yloc>763</yloc>  
1655 - <draw>Y</draw>  
1656 - </GUI>  
1657 - </step>  
1658 -  
1659 - <step>  
1660 - <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x8fdb;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>  
1661 - <type>DBLookup</type>  
1662 - <description/>  
1663 - <distribute>Y</distribute>  
1664 - <custom_distribution/>  
1665 - <copies>1</copies>  
1666 - <partitioning>  
1667 - <method>none</method>  
1668 - <schema_name/>  
1669 - </partitioning>  
1670 - <connection>bus_control_variable</connection>  
1671 - <cache>N</cache>  
1672 - <cache_load_all>N</cache_load_all>  
1673 - <cache_size>0</cache_size>  
1674 - <lookup>  
1675 - <schema/>  
1676 - <table>bsth_c_line_information</table>  
1677 - <orderby/>  
1678 - <fail_on_multiple>N</fail_on_multiple>  
1679 - <eat_row_on_failure>N</eat_row_on_failure>  
1680 - <key>  
1681 - <name>xlid</name>  
1682 - <field>line</field>  
1683 - <condition>&#x3d;</condition>  
1684 - <name2/>  
1685 - </key>  
1686 - <value>  
1687 - <name>up_in_mileage</name>  
1688 - <rename>up_in_mileage</rename>  
1689 - <default/>  
1690 - <type>Number</type>  
1691 - </value>  
1692 - <value>  
1693 - <name>up_in_timer</name>  
1694 - <rename>up_in_timer</rename>  
1695 - <default/>  
1696 - <type>Number</type>  
1697 - </value>  
1698 - <value>  
1699 - <name>down_in_mileage</name>  
1700 - <rename>down_in_mileage</rename>  
1701 - <default/>  
1702 - <type>Number</type>  
1703 - </value>  
1704 - <value>  
1705 - <name>down_in_timer</name>  
1706 - <rename>down_in_timer</rename>  
1707 - <default/>  
1708 - <type>Number</type>  
1709 - </value>  
1710 - </lookup>  
1711 - <cluster_schema/>  
1712 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1713 - <xloc>553</xloc>  
1714 - <yloc>1004</yloc>  
1715 - <draw>Y</draw>  
1716 - </GUI>  
1717 - </step>  
1718 -  
1719 - <step>  
1720 - <name>&#x67e5;&#x627e;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;</name>  
1721 - <type>DBLookup</type>  
1722 - <description/>  
1723 - <distribute>Y</distribute>  
1724 - <custom_distribution/>  
1725 - <copies>1</copies>  
1726 - <partitioning>  
1727 - <method>none</method>  
1728 - <schema_name/>  
1729 - </partitioning>  
1730 - <connection>bus_control_variable</connection>  
1731 - <cache>N</cache>  
1732 - <cache_load_all>N</cache_load_all>  
1733 - <cache_size>0</cache_size>  
1734 - <lookup>  
1735 - <schema/>  
1736 - <table>bsth_c_stationroute</table>  
1737 - <orderby/>  
1738 - <fail_on_multiple>N</fail_on_multiple>  
1739 - <eat_row_on_failure>N</eat_row_on_failure>  
1740 - <key>  
1741 - <name>xlid</name>  
1742 - <field>line</field>  
1743 - <condition>&#x3d;</condition>  
1744 - <name2/>  
1745 - </key>  
1746 - <key>  
1747 - <name>sxx</name>  
1748 - <field>directions</field>  
1749 - <condition>&#x3d;</condition>  
1750 - <name2/>  
1751 - </key>  
1752 - <key>  
1753 - <name>endZdtype</name>  
1754 - <field>station_mark</field>  
1755 - <condition>&#x3d;</condition>  
1756 - <name2/>  
1757 - </key>  
1758 - <key>  
1759 - <name>destory</name>  
1760 - <field>destroy</field>  
1761 - <condition>&#x3d;</condition>  
1762 - <name2/>  
1763 - </key>  
1764 - <value>  
1765 - <name>station_name</name>  
1766 - <rename>zdzname</rename>  
1767 - <default/>  
1768 - <type>String</type>  
1769 - </value>  
1770 - <value>  
1771 - <name>station</name>  
1772 - <rename>zdzid</rename>  
1773 - <default/>  
1774 - <type>Integer</type>  
1775 - </value>  
1776 - </lookup>  
1777 - <cluster_schema/>  
1778 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1779 - <xloc>280</xloc>  
1780 - <yloc>404</yloc>  
1781 - <draw>Y</draw>  
1782 - </GUI>  
1783 - </step>  
1784 -  
1785 - <step>  
1786 - <name>&#x67e5;&#x627e;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</name>  
1787 - <type>DBLookup</type>  
1788 - <description/>  
1789 - <distribute>Y</distribute>  
1790 - <custom_distribution/>  
1791 - <copies>1</copies>  
1792 - <partitioning>  
1793 - <method>none</method>  
1794 - <schema_name/>  
1795 - </partitioning>  
1796 - <connection>bus_control_variable</connection>  
1797 - <cache>N</cache>  
1798 - <cache_load_all>N</cache_load_all>  
1799 - <cache_size>0</cache_size>  
1800 - <lookup>  
1801 - <schema/>  
1802 - <table>bsth_c_stationroute</table>  
1803 - <orderby/>  
1804 - <fail_on_multiple>N</fail_on_multiple>  
1805 - <eat_row_on_failure>N</eat_row_on_failure>  
1806 - <key>  
1807 - <name>xlid</name>  
1808 - <field>line</field>  
1809 - <condition>&#x3d;</condition>  
1810 - <name2/>  
1811 - </key>  
1812 - <key>  
1813 - <name>qdzname</name>  
1814 - <field>station_name</field>  
1815 - <condition>&#x3d;</condition>  
1816 - <name2/>  
1817 - </key>  
1818 - <key>  
1819 - <name>sendZdtype</name>  
1820 - <field>station_mark</field>  
1821 - <condition>&#x3d;</condition>  
1822 - <name2/>  
1823 - </key>  
1824 - <key>  
1825 - <name>destory</name>  
1826 - <field>destroy</field>  
1827 - <condition>&#x3d;</condition>  
1828 - <name2/>  
1829 - </key>  
1830 - <value>  
1831 - <name>station</name>  
1832 - <rename>qdzid</rename>  
1833 - <default/>  
1834 - <type>Integer</type>  
1835 - </value>  
1836 - <value>  
1837 - <name>directions</name>  
1838 - <rename>sxx</rename>  
1839 - <default/>  
1840 - <type>Integer</type>  
1841 - </value>  
1842 - </lookup>  
1843 - <cluster_schema/>  
1844 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1845 - <xloc>430</xloc>  
1846 - <yloc>403</yloc>  
1847 - <draw>Y</draw>  
1848 - </GUI>  
1849 - </step>  
1850 -  
1851 - <step>  
1852 - <name>&#x67e5;&#x627e;&#x8def;&#x724c;&#x5173;&#x8054;</name>  
1853 - <type>DBLookup</type>  
1854 - <description/>  
1855 - <distribute>Y</distribute>  
1856 - <custom_distribution/>  
1857 - <copies>1</copies>  
1858 - <partitioning>  
1859 - <method>none</method>  
1860 - <schema_name/>  
1861 - </partitioning>  
1862 - <connection>bus_control_variable</connection>  
1863 - <cache>N</cache>  
1864 - <cache_load_all>N</cache_load_all>  
1865 - <cache_size>0</cache_size>  
1866 - <lookup>  
1867 - <schema/>  
1868 - <table>bsth_c_s_gbi</table>  
1869 - <orderby/>  
1870 - <fail_on_multiple>N</fail_on_multiple>  
1871 - <eat_row_on_failure>N</eat_row_on_failure>  
1872 - <key>  
1873 - <name>xlid</name>  
1874 - <field>xl</field>  
1875 - <condition>&#x3d;</condition>  
1876 - <name2/>  
1877 - </key>  
1878 - <key>  
1879 - <name>lp</name>  
1880 - <field>lp_name</field>  
1881 - <condition>&#x3d;</condition>  
1882 - <name2/>  
1883 - </key>  
1884 - <key>  
1885 - <name>iscanceled</name>  
1886 - <field>is_cancel</field>  
1887 - <condition>&#x3d;</condition>  
1888 - <name2/>  
1889 - </key>  
1890 - <value>  
1891 - <name>id</name>  
1892 - <rename>lpid</rename>  
1893 - <default/>  
1894 - <type>Integer</type>  
1895 - </value>  
1896 - </lookup>  
1897 - <cluster_schema/>  
1898 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1899 - <xloc>1013</xloc>  
1900 - <yloc>265</yloc>  
1901 - <draw>Y</draw>  
1902 - </GUI>  
1903 - </step>  
1904 -  
1905 - <step>  
1906 - <name>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ebf;&#x8def;&#x65b9;&#x5411;</name>  
1907 - <type>DBLookup</type>  
1908 - <description/>  
1909 - <distribute>Y</distribute>  
1910 - <custom_distribution/>  
1911 - <copies>1</copies>  
1912 - <partitioning>  
1913 - <method>none</method>  
1914 - <schema_name/>  
1915 - </partitioning>  
1916 - <connection>bus_control_variable</connection>  
1917 - <cache>N</cache>  
1918 - <cache_load_all>N</cache_load_all>  
1919 - <cache_size>0</cache_size>  
1920 - <lookup>  
1921 - <schema/>  
1922 - <table>bsth_c_stationroute</table>  
1923 - <orderby/>  
1924 - <fail_on_multiple>N</fail_on_multiple>  
1925 - <eat_row_on_failure>N</eat_row_on_failure>  
1926 - <key>  
1927 - <name>xlid</name>  
1928 - <field>line</field>  
1929 - <condition>&#x3d;</condition>  
1930 - <name2/>  
1931 - </key>  
1932 - <key>  
1933 - <name>startZdtype_calcu</name>  
1934 - <field>station_mark</field>  
1935 - <condition>&#x3d;</condition>  
1936 - <name2/>  
1937 - </key>  
1938 - <key>  
1939 - <name>qdzname_calcu</name>  
1940 - <field>station_name</field>  
1941 - <condition>&#x3d;</condition>  
1942 - <name2/>  
1943 - </key>  
1944 - <key>  
1945 - <name>destory</name>  
1946 - <field>destroy</field>  
1947 - <condition>&#x3d;</condition>  
1948 - <name2/>  
1949 - </key>  
1950 - <value>  
1951 - <name>directions</name>  
1952 - <rename>sxx</rename>  
1953 - <default/>  
1954 - <type>String</type>  
1955 - </value>  
1956 - </lookup>  
1957 - <cluster_schema/>  
1958 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1959 - <xloc>548</xloc>  
1960 - <yloc>610</yloc>  
1961 - <draw>Y</draw>  
1962 - </GUI>  
1963 - </step>  
1964 -  
1965 - <step>  
1966 - <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>  
1967 - <type>DBLookup</type>  
1968 - <description/>  
1969 - <distribute>Y</distribute>  
1970 - <custom_distribution/>  
1971 - <copies>1</copies>  
1972 - <partitioning>  
1973 - <method>none</method>  
1974 - <schema_name/>  
1975 - </partitioning>  
1976 - <connection>bus_control_variable</connection>  
1977 - <cache>Y</cache>  
1978 - <cache_load_all>Y</cache_load_all>  
1979 - <cache_size>0</cache_size>  
1980 - <lookup>  
1981 - <schema/>  
1982 - <table>bsth_c_stationroute</table>  
1983 - <orderby/>  
1984 - <fail_on_multiple>N</fail_on_multiple>  
1985 - <eat_row_on_failure>N</eat_row_on_failure>  
1986 - <key>  
1987 - <name>xlid</name>  
1988 - <field>line</field>  
1989 - <condition>&#x3d;</condition>  
1990 - <name2/>  
1991 - </key>  
1992 - <key>  
1993 - <name>endZdtype_calcu</name>  
1994 - <field>station_mark</field>  
1995 - <condition>&#x3d;</condition>  
1996 - <name2/>  
1997 - </key>  
1998 - <key>  
1999 - <name>sxx</name>  
2000 - <field>directions</field>  
2001 - <condition>&#x3d;</condition>  
2002 - <name2/>  
2003 - </key>  
2004 - <key>  
2005 - <name>destory</name>  
2006 - <field>destroy</field>  
2007 - <condition>&#x3d;</condition>  
2008 - <name2/>  
2009 - </key>  
2010 - <value>  
2011 - <name>station_name</name>  
2012 - <rename>zdzname_calcu</rename>  
2013 - <default/>  
2014 - <type>Integer</type>  
2015 - </value>  
2016 - </lookup>  
2017 - <cluster_schema/>  
2018 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2019 - <xloc>550</xloc>  
2020 - <yloc>701</yloc>  
2021 - <draw>Y</draw>  
2022 - </GUI>  
2023 - </step>  
2024 -  
2025 - <step>  
2026 - <name>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</name>  
2027 - <type>DBLookup</type>  
2028 - <description/>  
2029 - <distribute>Y</distribute>  
2030 - <custom_distribution/>  
2031 - <copies>1</copies>  
2032 - <partitioning>  
2033 - <method>none</method>  
2034 - <schema_name/>  
2035 - </partitioning>  
2036 - <connection>bus_control_variable</connection>  
2037 - <cache>N</cache>  
2038 - <cache_load_all>N</cache_load_all>  
2039 - <cache_size>0</cache_size>  
2040 - <lookup>  
2041 - <schema/>  
2042 - <table>bsth_c_stationroute</table>  
2043 - <orderby/>  
2044 - <fail_on_multiple>N</fail_on_multiple>  
2045 - <eat_row_on_failure>N</eat_row_on_failure>  
2046 - <key>  
2047 - <name>xlid</name>  
2048 - <field>line</field>  
2049 - <condition>&#x3d;</condition>  
2050 - <name2/>  
2051 - </key>  
2052 - <key>  
2053 - <name>zdzname_calcu</name>  
2054 - <field>station_name</field>  
2055 - <condition>&#x3d;</condition>  
2056 - <name2/>  
2057 - </key>  
2058 - <key>  
2059 - <name>startZdtype_calcu</name>  
2060 - <field>station_mark</field>  
2061 - <condition>&#x3d;</condition>  
2062 - <name2/>  
2063 - </key>  
2064 - <key>  
2065 - <name>destory</name>  
2066 - <field>destroy</field>  
2067 - <condition>&#x3d;</condition>  
2068 - <name2/>  
2069 - </key>  
2070 - <value>  
2071 - <name>directions</name>  
2072 - <rename>sxx2</rename>  
2073 - <default/>  
2074 - <type>Integer</type>  
2075 - </value>  
2076 - <value>  
2077 - <name>station</name>  
2078 - <rename>qdzid</rename>  
2079 - <default/>  
2080 - <type>Integer</type>  
2081 - </value>  
2082 - </lookup>  
2083 - <cluster_schema/>  
2084 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2085 - <xloc>551</xloc>  
2086 - <yloc>782</yloc>  
2087 - <draw>Y</draw>  
2088 - </GUI>  
2089 - </step>  
2090 -  
2091 - <step>  
2092 - <name>&#x6b63;&#x5e38;&#x73ed;&#x6b21;_&#x5904;&#x7406;&#x6570;&#x636e;</name>  
2093 - <type>ScriptValueMod</type>  
2094 - <description/>  
2095 - <distribute>Y</distribute>  
2096 - <custom_distribution/>  
2097 - <copies>1</copies>  
2098 - <partitioning>  
2099 - <method>none</method>  
2100 - <schema_name/>  
2101 - </partitioning>  
2102 - <compatible>N</compatible>  
2103 - <optimizationLevel>9</optimizationLevel>  
2104 - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>  
2105 - <jsScript_name>Script 1</jsScript_name>  
2106 - <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>  
2107 - </jsScript> </jsScripts> <fields> <field> <name>sendZdtype</name>  
2108 - <rename>sendZdtype</rename>  
2109 - <type>String</type>  
2110 - <length>-1</length>  
2111 - <precision>-1</precision>  
2112 - <replace>N</replace>  
2113 - </field> <field> <name>endZdtype</name>  
2114 - <rename>endZdtype</rename>  
2115 - <type>String</type>  
2116 - <length>-1</length>  
2117 - <precision>-1</precision>  
2118 - <replace>N</replace>  
2119 - </field> <field> <name>destory</name>  
2120 - <rename>destory</rename>  
2121 - <type>Integer</type>  
2122 - <length>-1</length>  
2123 - <precision>-1</precision>  
2124 - <replace>N</replace>  
2125 - </field> </fields> <cluster_schema/>  
2126 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2127 - <xloc>588</xloc>  
2128 - <yloc>403</yloc>  
2129 - <draw>Y</draw>  
2130 - </GUI>  
2131 - </step>  
2132 -  
2133 - <step>  
2134 - <name>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</name>  
2135 - <type>Dummy</type>  
2136 - <description/>  
2137 - <distribute>Y</distribute>  
2138 - <custom_distribution/>  
2139 - <copies>1</copies>  
2140 - <partitioning>  
2141 - <method>none</method>  
2142 - <schema_name/>  
2143 - </partitioning>  
2144 - <cluster_schema/>  
2145 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2146 - <xloc>725</xloc>  
2147 - <yloc>404</yloc>  
2148 - <draw>Y</draw>  
2149 - </GUI>  
2150 - </step>  
2151 -  
2152 - <step>  
2153 - <name>&#x6dfb;&#x52a0;&#x53d1;&#x8f66;&#x987a;&#x5e8f;&#x53f7;</name>  
2154 - <type>GroupBy</type>  
2155 - <description/>  
2156 - <distribute>Y</distribute>  
2157 - <custom_distribution/>  
2158 - <copies>1</copies>  
2159 - <partitioning>  
2160 - <method>none</method>  
2161 - <schema_name/>  
2162 - </partitioning>  
2163 - <all_rows>Y</all_rows>  
2164 - <ignore_aggregate>N</ignore_aggregate>  
2165 - <field_ignore/>  
2166 - <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>  
2167 - <prefix>grp</prefix>  
2168 - <add_linenr>Y</add_linenr>  
2169 - <linenr_fieldname>fcno</linenr_fieldname>  
2170 - <give_back_row>N</give_back_row>  
2171 - <group>  
2172 - <field>  
2173 - <name>lp</name>  
2174 - </field>  
2175 - </group>  
2176 - <fields>  
2177 - </fields>  
2178 - <cluster_schema/>  
2179 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2180 - <xloc>442</xloc>  
2181 - <yloc>44</yloc>  
2182 - <draw>Y</draw>  
2183 - </GUI>  
2184 - </step>  
2185 -  
2186 - <step>  
2187 - <name>&#x6dfb;&#x52a0;&#x5bf9;&#x5e94;&#x73ed;&#x6b21;&#x6570;</name>  
2188 - <type>GroupBy</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 - <all_rows>Y</all_rows>  
2198 - <ignore_aggregate>N</ignore_aggregate>  
2199 - <field_ignore/>  
2200 - <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>  
2201 - <prefix>grp</prefix>  
2202 - <add_linenr>Y</add_linenr>  
2203 - <linenr_fieldname>bcs</linenr_fieldname>  
2204 - <give_back_row>N</give_back_row>  
2205 - <group>  
2206 - </group>  
2207 - <fields>  
2208 - </fields>  
2209 - <cluster_schema/>  
2210 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2211 - <xloc>692</xloc>  
2212 - <yloc>44</yloc>  
2213 - <draw>Y</draw>  
2214 - </GUI>  
2215 - </step>  
2216 -  
2217 - <step>  
2218 - <name>&#x73ed;&#x6b21;&#x6570;&#x636e;&#x8303;&#x5f0f;&#x5316;</name>  
2219 - <type>Normaliser</type>  
2220 - <description/>  
2221 - <distribute>Y</distribute>  
2222 - <custom_distribution/>  
2223 - <copies>1</copies>  
2224 - <partitioning>  
2225 - <method>none</method>  
2226 - <schema_name/>  
2227 - </partitioning>  
2228 - <typefield>&#x7ad9;&#x70b9;&#x540d;&#x79f0;</typefield>  
2229 - <fields> </fields> <cluster_schema/>  
2230 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2231 - <xloc>248</xloc>  
2232 - <yloc>44</yloc>  
2233 - <draw>Y</draw>  
2234 - </GUI>  
2235 - </step>  
2236 -  
2237 - <step>  
2238 - <name>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178;</name>  
2239 - <type>ValueMapper</type>  
2240 - <description/>  
2241 - <distribute>Y</distribute>  
2242 - <custom_distribution/>  
2243 - <copies>1</copies>  
2244 - <partitioning>  
2245 - <method>none</method>  
2246 - <schema_name/>  
2247 - </partitioning>  
2248 - <field_to_use>bctype</field_to_use>  
2249 - <target_field>bctype_code</target_field>  
2250 - <non_match_default>&#x672a;&#x77e5;&#x7c7b;&#x578b;</non_match_default>  
2251 - <fields>  
2252 - <field>  
2253 - <source_value>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</source_value>  
2254 - <target_value>normal</target_value>  
2255 - </field>  
2256 - <field>  
2257 - <source_value>&#x51fa;&#x573a;</source_value>  
2258 - <target_value>out</target_value>  
2259 - </field>  
2260 - <field>  
2261 - <source_value>&#x8fdb;&#x573a;</source_value>  
2262 - <target_value>in</target_value>  
2263 - </field>  
2264 - <field>  
2265 - <source_value>&#x52a0;&#x6cb9;</source_value>  
2266 - <target_value>oil</target_value>  
2267 - </field>  
2268 - <field>  
2269 - <source_value>&#x4e34;&#x52a0;</source_value>  
2270 - <target_value>temp</target_value>  
2271 - </field>  
2272 - <field>  
2273 - <source_value>&#x533a;&#x95f4;</source_value>  
2274 - <target_value>region</target_value>  
2275 - </field>  
2276 - <field>  
2277 - <source_value>&#x653e;&#x7a7a;</source_value>  
2278 - <target_value>venting</target_value>  
2279 - </field>  
2280 - <field>  
2281 - <source_value>&#x653e;&#x5927;&#x7ad9;</source_value>  
2282 - <target_value>major</target_value>  
2283 - </field>  
2284 - </fields>  
2285 - <cluster_schema/>  
2286 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2287 - <xloc>149</xloc>  
2288 - <yloc>491</yloc>  
2289 - <draw>Y</draw>  
2290 - </GUI>  
2291 - </step>  
2292 -  
2293 - <step>  
2294 - <name>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 2</name>  
2295 - <type>ValueMapper</type>  
2296 - <description/>  
2297 - <distribute>Y</distribute>  
2298 - <custom_distribution/>  
2299 - <copies>1</copies>  
2300 - <partitioning>  
2301 - <method>none</method>  
2302 - <schema_name/>  
2303 - </partitioning>  
2304 - <field_to_use>bctype</field_to_use>  
2305 - <target_field>bctype_code</target_field>  
2306 - <non_match_default>&#x672a;&#x77e5;&#x7c7b;&#x578b;</non_match_default>  
2307 - <fields>  
2308 - <field>  
2309 - <source_value>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</source_value>  
2310 - <target_value>normal</target_value>  
2311 - </field>  
2312 - <field>  
2313 - <source_value>&#x51fa;&#x573a;</source_value>  
2314 - <target_value>out</target_value>  
2315 - </field>  
2316 - <field>  
2317 - <source_value>&#x8fdb;&#x573a;</source_value>  
2318 - <target_value>in</target_value>  
2319 - </field>  
2320 - <field>  
2321 - <source_value>&#x52a0;&#x6cb9;</source_value>  
2322 - <target_value>oil</target_value>  
2323 - </field>  
2324 - <field>  
2325 - <source_value>&#x4e34;&#x52a0;</source_value>  
2326 - <target_value>temp</target_value>  
2327 - </field>  
2328 - <field>  
2329 - <source_value>&#x533a;&#x95f4;</source_value>  
2330 - <target_value>region</target_value>  
2331 - </field>  
2332 - <field>  
2333 - <source_value>&#x653e;&#x7a7a;</source_value>  
2334 - <target_value>venting</target_value>  
2335 - </field>  
2336 - <field>  
2337 - <source_value>&#x653e;&#x5927;&#x7ad9;</source_value>  
2338 - <target_value>major</target_value>  
2339 - </field>  
2340 - </fields>  
2341 - <cluster_schema/>  
2342 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2343 - <xloc>333</xloc>  
2344 - <yloc>681</yloc>  
2345 - <draw>Y</draw>  
2346 - </GUI>  
2347 - </step>  
2348 -  
2349 - <step>  
2350 - <name>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 3</name>  
2351 - <type>ValueMapper</type>  
2352 - <description/>  
2353 - <distribute>Y</distribute>  
2354 - <custom_distribution/>  
2355 - <copies>1</copies>  
2356 - <partitioning>  
2357 - <method>none</method>  
2358 - <schema_name/>  
2359 - </partitioning>  
2360 - <field_to_use>bctype</field_to_use>  
2361 - <target_field>bctype_code</target_field>  
2362 - <non_match_default>&#x672a;&#x77e5;&#x7c7b;&#x578b;</non_match_default>  
2363 - <fields>  
2364 - <field>  
2365 - <source_value>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</source_value>  
2366 - <target_value>normal</target_value>  
2367 - </field>  
2368 - <field>  
2369 - <source_value>&#x51fa;&#x573a;</source_value>  
2370 - <target_value>out</target_value>  
2371 - </field>  
2372 - <field>  
2373 - <source_value>&#x8fdb;&#x573a;</source_value>  
2374 - <target_value>in</target_value>  
2375 - </field>  
2376 - <field>  
2377 - <source_value>&#x52a0;&#x6cb9;</source_value>  
2378 - <target_value>oil</target_value>  
2379 - </field>  
2380 - <field>  
2381 - <source_value>&#x4e34;&#x52a0;</source_value>  
2382 - <target_value>temp</target_value>  
2383 - </field>  
2384 - <field>  
2385 - <source_value>&#x533a;&#x95f4;</source_value>  
2386 - <target_value>region</target_value>  
2387 - </field>  
2388 - <field>  
2389 - <source_value>&#x653e;&#x7a7a;</source_value>  
2390 - <target_value>venting</target_value>  
2391 - </field>  
2392 - <field>  
2393 - <source_value>&#x653e;&#x5927;&#x7ad9;</source_value>  
2394 - <target_value>major</target_value>  
2395 - </field>  
2396 - </fields>  
2397 - <cluster_schema/>  
2398 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2399 - <xloc>551</xloc>  
2400 - <yloc>928</yloc>  
2401 - <draw>Y</draw>  
2402 - </GUI>  
2403 - </step>  
2404 -  
2405 - <step>  
2406 - <name>&#x7c7b;&#x578b;&#x4fee;&#x6b63;</name>  
2407 - <type>SelectValues</type>  
2408 - <description/>  
2409 - <distribute>Y</distribute>  
2410 - <custom_distribution/>  
2411 - <copies>1</copies>  
2412 - <partitioning>  
2413 - <method>none</method>  
2414 - <schema_name/>  
2415 - </partitioning>  
2416 - <fields> <select_unspecified>N</select_unspecified>  
2417 - <meta> <name>jhlc</name>  
2418 - <rename>jhlc</rename>  
2419 - <type>Number</type>  
2420 - <length>-2</length>  
2421 - <precision>-2</precision>  
2422 - <conversion_mask/>  
2423 - <date_format_lenient>false</date_format_lenient>  
2424 - <date_format_locale/>  
2425 - <date_format_timezone/>  
2426 - <lenient_string_to_number>false</lenient_string_to_number>  
2427 - <encoding/>  
2428 - <decimal_symbol/>  
2429 - <grouping_symbol/>  
2430 - <currency_symbol/>  
2431 - <storage_type/>  
2432 - </meta> <meta> <name>bcsj</name>  
2433 - <rename>bcsj</rename>  
2434 - <type>Integer</type>  
2435 - <length>-2</length>  
2436 - <precision>-2</precision>  
2437 - <conversion_mask/>  
2438 - <date_format_lenient>false</date_format_lenient>  
2439 - <date_format_locale/>  
2440 - <date_format_timezone/>  
2441 - <lenient_string_to_number>false</lenient_string_to_number>  
2442 - <encoding/>  
2443 - <decimal_symbol/>  
2444 - <grouping_symbol/>  
2445 - <currency_symbol/>  
2446 - <storage_type/>  
2447 - </meta> </fields> <cluster_schema/>  
2448 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2449 - <xloc>146</xloc>  
2450 - <yloc>768</yloc>  
2451 - <draw>Y</draw>  
2452 - </GUI>  
2453 - </step>  
2454 -  
2455 - <step>  
2456 - <name>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 2</name>  
2457 - <type>SelectValues</type>  
2458 - <description/>  
2459 - <distribute>Y</distribute>  
2460 - <custom_distribution/>  
2461 - <copies>1</copies>  
2462 - <partitioning>  
2463 - <method>none</method>  
2464 - <schema_name/>  
2465 - </partitioning>  
2466 - <fields> <select_unspecified>N</select_unspecified>  
2467 - <meta> <name>out_mileage</name>  
2468 - <rename>out_mileage</rename>  
2469 - <type>Number</type>  
2470 - <length>-2</length>  
2471 - <precision>-2</precision>  
2472 - <conversion_mask/>  
2473 - <date_format_lenient>false</date_format_lenient>  
2474 - <date_format_locale/>  
2475 - <date_format_timezone/>  
2476 - <lenient_string_to_number>false</lenient_string_to_number>  
2477 - <encoding/>  
2478 - <decimal_symbol/>  
2479 - <grouping_symbol/>  
2480 - <currency_symbol/>  
2481 - <storage_type/>  
2482 - </meta> <meta> <name>out_time</name>  
2483 - <rename>out_time</rename>  
2484 - <type>Integer</type>  
2485 - <length>-2</length>  
2486 - <precision>-2</precision>  
2487 - <conversion_mask/>  
2488 - <date_format_lenient>false</date_format_lenient>  
2489 - <date_format_locale/>  
2490 - <date_format_timezone/>  
2491 - <lenient_string_to_number>false</lenient_string_to_number>  
2492 - <encoding/>  
2493 - <decimal_symbol/>  
2494 - <grouping_symbol/>  
2495 - <currency_symbol/>  
2496 - <storage_type/>  
2497 - </meta> <meta> <name>sxx</name>  
2498 - <rename>sxx</rename>  
2499 - <type>Integer</type>  
2500 - <length>-2</length>  
2501 - <precision>-2</precision>  
2502 - <conversion_mask/>  
2503 - <date_format_lenient>false</date_format_lenient>  
2504 - <date_format_locale/>  
2505 - <date_format_timezone/>  
2506 - <lenient_string_to_number>false</lenient_string_to_number>  
2507 - <encoding/>  
2508 - <decimal_symbol/>  
2509 - <grouping_symbol/>  
2510 - <currency_symbol/>  
2511 - <storage_type/>  
2512 - </meta> </fields> <cluster_schema/>  
2513 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2514 - <xloc>338</xloc>  
2515 - <yloc>1008</yloc>  
2516 - <draw>Y</draw>  
2517 - </GUI>  
2518 - </step>  
2519 -  
2520 - <step>  
2521 - <name>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 3</name>  
2522 - <type>SelectValues</type>  
2523 - <description/>  
2524 - <distribute>Y</distribute>  
2525 - <custom_distribution/>  
2526 - <copies>1</copies>  
2527 - <partitioning>  
2528 - <method>none</method>  
2529 - <schema_name/>  
2530 - </partitioning>  
2531 - <fields> <select_unspecified>N</select_unspecified>  
2532 - <meta> <name>parade_mileage</name>  
2533 - <rename>parade_mileage</rename>  
2534 - <type>Number</type>  
2535 - <length>-2</length>  
2536 - <precision>-2</precision>  
2537 - <conversion_mask/>  
2538 - <date_format_lenient>false</date_format_lenient>  
2539 - <date_format_locale/>  
2540 - <date_format_timezone/>  
2541 - <lenient_string_to_number>false</lenient_string_to_number>  
2542 - <encoding/>  
2543 - <decimal_symbol/>  
2544 - <grouping_symbol/>  
2545 - <currency_symbol/>  
2546 - <storage_type/>  
2547 - </meta> <meta> <name>parade_time</name>  
2548 - <rename>parade_time</rename>  
2549 - <type>Integer</type>  
2550 - <length>-2</length>  
2551 - <precision>-2</precision>  
2552 - <conversion_mask/>  
2553 - <date_format_lenient>false</date_format_lenient>  
2554 - <date_format_locale/>  
2555 - <date_format_timezone/>  
2556 - <lenient_string_to_number>false</lenient_string_to_number>  
2557 - <encoding/>  
2558 - <decimal_symbol/>  
2559 - <grouping_symbol/>  
2560 - <currency_symbol/>  
2561 - <storage_type/>  
2562 - </meta> <meta> <name>sxx2</name>  
2563 - <rename>sxx2</rename>  
2564 - <type>Integer</type>  
2565 - <length>-2</length>  
2566 - <precision>-2</precision>  
2567 - <conversion_mask/>  
2568 - <date_format_lenient>false</date_format_lenient>  
2569 - <date_format_locale/>  
2570 - <date_format_timezone/>  
2571 - <lenient_string_to_number>false</lenient_string_to_number>  
2572 - <encoding/>  
2573 - <decimal_symbol/>  
2574 - <grouping_symbol/>  
2575 - <currency_symbol/>  
2576 - <storage_type/>  
2577 - </meta> </fields> <cluster_schema/>  
2578 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2579 - <xloc>847</xloc>  
2580 - <yloc>1003</yloc>  
2581 - <draw>Y</draw>  
2582 - </GUI>  
2583 - </step>  
2584 -  
2585 - <step>  
2586 - <name>&#x8ba1;&#x7b97;&#x73ed;&#x6b21;&#x7c7b;&#x578b;</name>  
2587 - <type>ValueMapper</type>  
2588 - <description/>  
2589 - <distribute>Y</distribute>  
2590 - <custom_distribution/>  
2591 - <copies>1</copies>  
2592 - <partitioning>  
2593 - <method>none</method>  
2594 - <schema_name/>  
2595 - </partitioning>  
2596 - <field_to_use>qdzname</field_to_use>  
2597 - <target_field>bctype</target_field>  
2598 - <non_match_default>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</non_match_default>  
2599 - <fields>  
2600 - <field>  
2601 - <source_value>&#x51fa;&#x573a;</source_value>  
2602 - <target_value>&#x51fa;&#x573a;</target_value>  
2603 - </field>  
2604 - <field>  
2605 - <source_value>&#x8fdb;&#x573a;</source_value>  
2606 - <target_value>&#x8fdb;&#x573a;</target_value>  
2607 - </field>  
2608 - </fields>  
2609 - <cluster_schema/>  
2610 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2611 - <xloc>1014</xloc>  
2612 - <yloc>401</yloc>  
2613 - <draw>Y</draw>  
2614 - </GUI>  
2615 - </step>  
2616 -  
2617 - <step>  
2618 - <name>&#x8bb0;&#x5f55;&#x5173;&#x8054; &#x28;&#x7b1b;&#x5361;&#x5c14;&#x8f93;&#x51fa;&#x29;</name>  
2619 - <type>JoinRows</type>  
2620 - <description/>  
2621 - <distribute>Y</distribute>  
2622 - <custom_distribution/>  
2623 - <copies>1</copies>  
2624 - <partitioning>  
2625 - <method>none</method>  
2626 - <schema_name/>  
2627 - </partitioning>  
2628 - <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>  
2629 - <prefix>out</prefix>  
2630 - <cache_size>500</cache_size>  
2631 - <main/>  
2632 - <compare>  
2633 -<condition>  
2634 - <negated>N</negated>  
2635 - <leftvalue/>  
2636 - <function>&#x3d;</function>  
2637 - <rightvalue/>  
2638 - </condition>  
2639 - </compare>  
2640 - <cluster_schema/>  
2641 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2642 - <xloc>310</xloc>  
2643 - <yloc>133</yloc>  
2644 - <draw>Y</draw>  
2645 - </GUI>  
2646 - </step>  
2647 -  
2648 - <step>  
2649 - <name>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;&#xff08;&#x53d1;&#x8f66;&#x65f6;&#x95f4;&#x4e3a;&#x7a7a;&#xff09;</name>  
2650 - <type>FilterRows</type>  
2651 - <description/>  
2652 - <distribute>Y</distribute>  
2653 - <custom_distribution/>  
2654 - <copies>1</copies>  
2655 - <partitioning>  
2656 - <method>none</method>  
2657 - <schema_name/>  
2658 - </partitioning>  
2659 -<send_true_to/>  
2660 -<send_false_to/>  
2661 - <compare>  
2662 -<condition>  
2663 - <negated>N</negated>  
2664 - <leftvalue>sendtime</leftvalue>  
2665 - <function>IS NOT NULL</function>  
2666 - <rightvalue/>  
2667 - </condition>  
2668 - </compare>  
2669 - <cluster_schema/>  
2670 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2671 - <xloc>571</xloc>  
2672 - <yloc>44</yloc>  
2673 - <draw>Y</draw>  
2674 - </GUI>  
2675 - </step>  
2676 -  
2677 - <step>  
2678 - <name>&#x8fdb;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x8d77;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</name>  
2679 - <type>ScriptValueMod</type>  
2680 - <description/>  
2681 - <distribute>Y</distribute>  
2682 - <custom_distribution/>  
2683 - <copies>1</copies>  
2684 - <partitioning>  
2685 - <method>none</method>  
2686 - <schema_name/>  
2687 - </partitioning>  
2688 - <compatible>N</compatible>  
2689 - <optimizationLevel>9</optimizationLevel>  
2690 - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>  
2691 - <jsScript_name>Script 1</jsScript_name>  
2692 - <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>  
2693 - </jsScript> </jsScripts> <fields> <field> <name>qdzname_calcu</name>  
2694 - <rename>qdzname_calcu</rename>  
2695 - <type>String</type>  
2696 - <length>-1</length>  
2697 - <precision>-1</precision>  
2698 - <replace>N</replace>  
2699 - </field> <field> <name>startZdtype_calcu</name>  
2700 - <rename>startZdtype_calcu</rename>  
2701 - <type>String</type>  
2702 - <length>-1</length>  
2703 - <precision>-1</precision>  
2704 - <replace>N</replace>  
2705 - </field> <field> <name>endZdtype_calcu</name>  
2706 - <rename>endZdtype_calcu</rename>  
2707 - <type>String</type>  
2708 - <length>-1</length>  
2709 - <precision>-1</precision>  
2710 - <replace>N</replace>  
2711 - </field> <field> <name>destory</name>  
2712 - <rename>destory</rename>  
2713 - <type>Integer</type>  
2714 - <length>-1</length>  
2715 - <precision>-1</precision>  
2716 - <replace>N</replace>  
2717 - </field> </fields> <cluster_schema/>  
2718 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2719 - <xloc>754</xloc>  
2720 - <yloc>610</yloc>  
2721 - <draw>Y</draw>  
2722 - </GUI>  
2723 - </step>  
2724 -  
2725 - <step>  
2726 - <name>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</name>  
2727 - <type>Dummy</type>  
2728 - <description/>  
2729 - <distribute>Y</distribute>  
2730 - <custom_distribution/>  
2731 - <copies>1</copies>  
2732 - <partitioning>  
2733 - <method>none</method>  
2734 - <schema_name/>  
2735 - </partitioning>  
2736 - <cluster_schema/>  
2737 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2738 - <xloc>997</xloc>  
2739 - <yloc>606</yloc>  
2740 - <draw>Y</draw>  
2741 - </GUI>  
2742 - </step>  
2743 -  
2744 - <step>  
2745 - <name>&#x4e0a;&#x4e0b;&#x884c;NULL&#x5224;&#x5b9a;</name>  
2746 - <type>IfNull</type>  
2747 - <description/>  
2748 - <distribute>Y</distribute>  
2749 - <custom_distribution/>  
2750 - <copies>1</copies>  
2751 - <partitioning>  
2752 - <method>none</method>  
2753 - <schema_name/>  
2754 - </partitioning>  
2755 - <replaceAllByValue/>  
2756 - <replaceAllMask/>  
2757 - <selectFields>Y</selectFields>  
2758 - <selectValuesType>N</selectValuesType>  
2759 - <setEmptyStringAll>N</setEmptyStringAll>  
2760 - <valuetypes>  
2761 - </valuetypes>  
2762 - <fields>  
2763 - <field>  
2764 - <name>sxx</name>  
2765 - <value>0</value>  
2766 - <mask/>  
2767 - <set_empty_string>N</set_empty_string>  
2768 - </field>  
2769 - </fields>  
2770 - <cluster_schema/>  
2771 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2772 - <xloc>230</xloc>  
2773 - <yloc>946</yloc>  
2774 - <draw>Y</draw>  
2775 - </GUI>  
2776 - </step>  
2777 -  
2778 - <step>  
2779 - <name>&#x4e0a;&#x4e0b;&#x884c;&#x5224;&#x5b9a; 2</name>  
2780 - <type>IfNull</type>  
2781 - <description/>  
2782 - <distribute>Y</distribute>  
2783 - <custom_distribution/>  
2784 - <copies>1</copies>  
2785 - <partitioning>  
2786 - <method>none</method>  
2787 - <schema_name/>  
2788 - </partitioning>  
2789 - <replaceAllByValue/>  
2790 - <replaceAllMask/>  
2791 - <selectFields>Y</selectFields>  
2792 - <selectValuesType>N</selectValuesType>  
2793 - <setEmptyStringAll>N</setEmptyStringAll>  
2794 - <valuetypes>  
2795 - </valuetypes>  
2796 - <fields>  
2797 - <field>  
2798 - <name>sxx2</name>  
2799 - <value>0</value>  
2800 - <mask/>  
2801 - <set_empty_string>N</set_empty_string>  
2802 - </field>  
2803 - </fields>  
2804 - <cluster_schema/>  
2805 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2806 - <xloc>804</xloc>  
2807 - <yloc>1081</yloc>  
2808 - <draw>Y</draw>  
2809 - </GUI>  
2810 - </step>  
2811 -  
2812 - <step_error_handling>  
2813 - <error>  
2814 - <source_step>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail</source_step>  
2815 - <target_step/>  
2816 - <is_enabled>Y</is_enabled>  
2817 - <nr_valuename>c1</nr_valuename>  
2818 - <descriptions_valuename>c2</descriptions_valuename>  
2819 - <fields_valuename>c3</fields_valuename>  
2820 - <codes_valuename>c4</codes_valuename>  
2821 - <max_errors/>  
2822 - <max_pct_errors/>  
2823 - <min_pct_rows/>  
2824 - </error>  
2825 - </step_error_handling>  
2826 - <slave-step-copy-partition-distribution>  
2827 -</slave-step-copy-partition-distribution>  
2828 - <slave_transformation>N</slave_transformation>  
2829 -  
2830 -</transformation> 1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<transformation>
  3 + <info>
  4 + <name>ttinfodetailDataInput</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>bus_control_variable</name>
  185 + <server>&#x24;&#x7b;v_db_ip&#x7d;</server>
  186 + <type>MYSQL</type>
  187 + <access>Native</access>
  188 + <database>&#x24;&#x7b;v_db_dname&#x7d;</database>
  189 + <port>3306</port>
  190 + <username>&#x24;&#x7b;v_db_uname&#x7d;</username>
  191 + <password>&#x24;&#x7b;v_db_pwd&#x7d;</password>
  192 + <servername/>
  193 + <data_tablespace/>
  194 + <index_tablespace/>
  195 + <attributes>
  196 + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
  197 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  198 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  199 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  200 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  201 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  202 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  203 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  204 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  205 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  206 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  207 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  208 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  209 + </attributes>
  210 + </connection>
  211 + <connection>
  212 + <name>bus_control_&#x516c;&#x53f8;_201</name>
  213 + <server>localhost</server>
  214 + <type>MYSQL</type>
  215 + <access>Native</access>
  216 + <database>control</database>
  217 + <port>3306</port>
  218 + <username>root</username>
  219 + <password>Encrypted </password>
  220 + <servername/>
  221 + <data_tablespace/>
  222 + <index_tablespace/>
  223 + <attributes>
  224 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  225 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  226 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  227 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  228 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  229 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  230 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  231 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  232 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  233 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  234 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  235 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  236 + </attributes>
  237 + </connection>
  238 + <connection>
  239 + <name>bus_control_&#x672c;&#x673a;</name>
  240 + <server>localhost</server>
  241 + <type>MYSQL</type>
  242 + <access>Native</access>
  243 + <database>control</database>
  244 + <port>3306</port>
  245 + <username>root</username>
  246 + <password>Encrypted </password>
  247 + <servername/>
  248 + <data_tablespace/>
  249 + <index_tablespace/>
  250 + <attributes>
  251 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  252 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  253 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  254 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  255 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  256 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  257 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  258 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  259 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  260 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  261 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  262 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  263 + </attributes>
  264 + </connection>
  265 + <connection>
  266 + <name>xlab_mysql_youle</name>
  267 + <server>101.231.124.8</server>
  268 + <type>MYSQL</type>
  269 + <access>Native</access>
  270 + <database>xlab_youle</database>
  271 + <port>45687</port>
  272 + <username>xlab-youle</username>
  273 + <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password>
  274 + <servername/>
  275 + <data_tablespace/>
  276 + <index_tablespace/>
  277 + <attributes>
  278 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  279 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  280 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  281 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  282 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  283 + <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute>
  284 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  285 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  286 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  287 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  288 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  289 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  290 + </attributes>
  291 + </connection>
  292 + <connection>
  293 + <name>xlab_mysql_youle&#xff08;&#x672c;&#x673a;&#xff09;</name>
  294 + <server>localhost</server>
  295 + <type>MYSQL</type>
  296 + <access>Native</access>
  297 + <database>xlab_youle</database>
  298 + <port>3306</port>
  299 + <username>root</username>
  300 + <password>Encrypted </password>
  301 + <servername/>
  302 + <data_tablespace/>
  303 + <index_tablespace/>
  304 + <attributes>
  305 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  306 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  307 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  308 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  309 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  310 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  311 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  312 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  313 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  314 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  315 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  316 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  317 + </attributes>
  318 + </connection>
  319 + <connection>
  320 + <name>xlab_youle</name>
  321 + <server/>
  322 + <type>MYSQL</type>
  323 + <access>JNDI</access>
  324 + <database>xlab_youle</database>
  325 + <port>1521</port>
  326 + <username/>
  327 + <password>Encrypted </password>
  328 + <servername/>
  329 + <data_tablespace/>
  330 + <index_tablespace/>
  331 + <attributes>
  332 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  333 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  334 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  335 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  336 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  337 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  338 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  339 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  340 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  341 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  342 + </attributes>
  343 + </connection>
  344 + <order>
  345 + <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>
  346 + <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>
  347 + <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>
  348 + <hop> <from>&#x6dfb;&#x52a0;&#x5bf9;&#x5e94;&#x73ed;&#x6b21;&#x6570;</from><to>&#x5904;&#x7406;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
  349 + <hop> <from>&#x5904;&#x7406;&#x6570;&#x636e;</from><to>&#x5206;&#x7ec4;&#x5404;&#x4e2a;&#x8def;&#x724c;&#x7684;&#x7ad9;</to><enabled>Y</enabled> </hop>
  350 + <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>
  351 + <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>
  352 + <hop> <from>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178;</from><to>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178;</to><enabled>Y</enabled> </hop>
  353 + <hop> <from>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 2</from><to>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 2</to><enabled>Y</enabled> </hop>
  354 + <hop> <from>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 3</from><to>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 3</to><enabled>Y</enabled> </hop>
  355 + <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>
  356 + <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>
  357 + <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>
  358 + <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>
  359 + <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>
  360 + <hop> <from>&#x67e5;&#x627e;&#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>
  361 + <hop> <from>&#x67e5;&#x627e;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;</from><to>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178;</to><enabled>Y</enabled> </hop>
  362 + <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>
  363 + <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>
  364 + <hop> <from>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</from><to>&#x6b63;&#x5e38;&#x73ed;&#x6b21;_&#x5904;&#x7406;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
  365 + <hop> <from>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178;</from><to>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x4e0a;&#x4e0b;&#x884c;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>
  366 + <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>
  367 + <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>
  368 + <hop> <from>&#x67e5;&#x627e;&#x8def;&#x724c;&#x5173;&#x8054;</from><to>&#x8ba1;&#x7b97;&#x73ed;&#x6b21;&#x7c7b;&#x578b;</to><enabled>Y</enabled> </hop>
  369 + <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>
  370 + <hop> <from>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</from><to>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;1</to><enabled>Y</enabled> </hop>
  371 + <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>
  372 + <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>
  373 + <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>
  374 + <hop> <from>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</from><to>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;2</to><enabled>Y</enabled> </hop>
  375 + <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>
  376 + <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>
  377 + <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>
  378 + <hop> <from>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</from><to>&#x6dfb;&#x52a0;&#x53d1;&#x8f66;&#x987a;&#x5e8f;&#x53f7;</to><enabled>Y</enabled> </hop>
  379 + <hop> <from>&#x5206;&#x7ec4;&#x5404;&#x4e2a;&#x8def;&#x724c;&#x7684;&#x7ad9;</from><to>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x5173;&#x8054;</to><enabled>Y</enabled> </hop>
  380 + <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>
  381 + <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>
  382 + <hop> <from>&#x8bb0;&#x5f55;&#x5173;&#x8054; &#x28;&#x7b1b;&#x5361;&#x5c14;&#x8f93;&#x51fa;&#x29;</from><to>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</to><enabled>Y</enabled> </hop>
  383 + <hop> <from>&#x7c7b;&#x578b;&#x4fee;&#x6b63;</from><to>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail</to><enabled>Y</enabled> </hop>
  384 + <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>
  385 + <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>
  386 + <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>
  387 + <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>
  388 + <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>
  389 + <hop> <from>&#x4e0a;&#x4e0b;&#x884c;NULL&#x5224;&#x5b9a;</from><to>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 2</to><enabled>Y</enabled> </hop>
  390 + <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>
  391 + <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>
  392 + <hop> <from>&#x4e0a;&#x4e0b;&#x884c;&#x5224;&#x5b9a; 2</from><to>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 3</to><enabled>Y</enabled> </hop>
  393 + <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>
  394 + </order>
  395 + <step>
  396 + <name>&#x4e0a;&#x4e0b;&#x884c;NULL&#x5224;&#x5b9a;</name>
  397 + <type>IfNull</type>
  398 + <description/>
  399 + <distribute>Y</distribute>
  400 + <custom_distribution/>
  401 + <copies>1</copies>
  402 + <partitioning>
  403 + <method>none</method>
  404 + <schema_name/>
  405 + </partitioning>
  406 + <replaceAllByValue/>
  407 + <replaceAllMask/>
  408 + <selectFields>Y</selectFields>
  409 + <selectValuesType>N</selectValuesType>
  410 + <setEmptyStringAll>N</setEmptyStringAll>
  411 + <valuetypes>
  412 + </valuetypes>
  413 + <fields>
  414 + <field>
  415 + <name>sxx</name>
  416 + <value>0</value>
  417 + <mask/>
  418 + <set_empty_string>N</set_empty_string>
  419 + </field>
  420 + </fields>
  421 + <cluster_schema/>
  422 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  423 + <xloc>230</xloc>
  424 + <yloc>946</yloc>
  425 + <draw>Y</draw>
  426 + </GUI>
  427 + </step>
  428 +
  429 + <step>
  430 + <name>&#x4e0a;&#x4e0b;&#x884c;&#x5224;&#x5b9a; 2</name>
  431 + <type>IfNull</type>
  432 + <description/>
  433 + <distribute>Y</distribute>
  434 + <custom_distribution/>
  435 + <copies>1</copies>
  436 + <partitioning>
  437 + <method>none</method>
  438 + <schema_name/>
  439 + </partitioning>
  440 + <replaceAllByValue/>
  441 + <replaceAllMask/>
  442 + <selectFields>Y</selectFields>
  443 + <selectValuesType>N</selectValuesType>
  444 + <setEmptyStringAll>N</setEmptyStringAll>
  445 + <valuetypes>
  446 + </valuetypes>
  447 + <fields>
  448 + <field>
  449 + <name>sxx2</name>
  450 + <value>0</value>
  451 + <mask/>
  452 + <set_empty_string>N</set_empty_string>
  453 + </field>
  454 + </fields>
  455 + <cluster_schema/>
  456 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  457 + <xloc>804</xloc>
  458 + <yloc>1081</yloc>
  459 + <draw>Y</draw>
  460 + </GUI>
  461 + </step>
  462 +
  463 + <step>
  464 + <name>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178;</name>
  465 + <type>ValueMapper</type>
  466 + <description/>
  467 + <distribute>Y</distribute>
  468 + <custom_distribution/>
  469 + <copies>1</copies>
  470 + <partitioning>
  471 + <method>none</method>
  472 + <schema_name/>
  473 + </partitioning>
  474 + <field_to_use>sxx</field_to_use>
  475 + <target_field>sxx_desc</target_field>
  476 + <non_match_default/>
  477 + <fields>
  478 + <field>
  479 + <source_value>0</source_value>
  480 + <target_value>&#x4e0a;&#x884c;</target_value>
  481 + </field>
  482 + <field>
  483 + <source_value>1</source_value>
  484 + <target_value>&#x4e0b;&#x884c;</target_value>
  485 + </field>
  486 + </fields>
  487 + <cluster_schema/>
  488 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  489 + <xloc>147</xloc>
  490 + <yloc>403</yloc>
  491 + <draw>Y</draw>
  492 + </GUI>
  493 + </step>
  494 +
  495 + <step>
  496 + <name>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 2</name>
  497 + <type>ValueMapper</type>
  498 + <description/>
  499 + <distribute>Y</distribute>
  500 + <custom_distribution/>
  501 + <copies>1</copies>
  502 + <partitioning>
  503 + <method>none</method>
  504 + <schema_name/>
  505 + </partitioning>
  506 + <field_to_use>sxx</field_to_use>
  507 + <target_field>sxx_desc</target_field>
  508 + <non_match_default/>
  509 + <fields>
  510 + <field>
  511 + <source_value>0</source_value>
  512 + <target_value>&#x4e0a;&#x884c;</target_value>
  513 + </field>
  514 + <field>
  515 + <source_value>1</source_value>
  516 + <target_value>&#x4e0b;&#x884c;</target_value>
  517 + </field>
  518 + </fields>
  519 + <cluster_schema/>
  520 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  521 + <xloc>331</xloc>
  522 + <yloc>598</yloc>
  523 + <draw>Y</draw>
  524 + </GUI>
  525 + </step>
  526 +
  527 + <step>
  528 + <name>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 3</name>
  529 + <type>ValueMapper</type>
  530 + <description/>
  531 + <distribute>Y</distribute>
  532 + <custom_distribution/>
  533 + <copies>1</copies>
  534 + <partitioning>
  535 + <method>none</method>
  536 + <schema_name/>
  537 + </partitioning>
  538 + <field_to_use>sxx</field_to_use>
  539 + <target_field>sxx_desc</target_field>
  540 + <non_match_default/>
  541 + <fields>
  542 + <field>
  543 + <source_value>0</source_value>
  544 + <target_value>&#x4e0a;&#x884c;</target_value>
  545 + </field>
  546 + <field>
  547 + <source_value>1</source_value>
  548 + <target_value>&#x4e0b;&#x884c;</target_value>
  549 + </field>
  550 + </fields>
  551 + <cluster_schema/>
  552 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  553 + <xloc>553</xloc>
  554 + <yloc>859</yloc>
  555 + <draw>Y</draw>
  556 + </GUI>
  557 + </step>
  558 +
  559 + <step>
  560 + <name>&#x51fa;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x7ec8;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</name>
  561 + <type>ScriptValueMod</type>
  562 + <description/>
  563 + <distribute>Y</distribute>
  564 + <custom_distribution/>
  565 + <copies>1</copies>
  566 + <partitioning>
  567 + <method>none</method>
  568 + <schema_name/>
  569 + </partitioning>
  570 + <compatible>N</compatible>
  571 + <optimizationLevel>9</optimizationLevel>
  572 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  573 + <jsScript_name>Script 1</jsScript_name>
  574 + <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>
  575 + </jsScript> </jsScripts> <fields> <field> <name>zdzname</name>
  576 + <rename>zdzname</rename>
  577 + <type>String</type>
  578 + <length>-1</length>
  579 + <precision>-1</precision>
  580 + <replace>N</replace>
  581 + </field> <field> <name>endZdtype</name>
  582 + <rename>endZdtype</rename>
  583 + <type>String</type>
  584 + <length>-1</length>
  585 + <precision>-1</precision>
  586 + <replace>N</replace>
  587 + </field> <field> <name>destory</name>
  588 + <rename>destory</rename>
  589 + <type>Integer</type>
  590 + <length>-1</length>
  591 + <precision>-1</precision>
  592 + <replace>N</replace>
  593 + </field> </fields> <cluster_schema/>
  594 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  595 + <xloc>575</xloc>
  596 + <yloc>502</yloc>
  597 + <draw>Y</draw>
  598 + </GUI>
  599 + </step>
  600 +
  601 + <step>
  602 + <name>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</name>
  603 + <type>Dummy</type>
  604 + <description/>
  605 + <distribute>Y</distribute>
  606 + <custom_distribution/>
  607 + <copies>1</copies>
  608 + <partitioning>
  609 + <method>none</method>
  610 + <schema_name/>
  611 + </partitioning>
  612 + <cluster_schema/>
  613 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  614 + <xloc>869</xloc>
  615 + <yloc>504</yloc>
  616 + <draw>Y</draw>
  617 + </GUI>
  618 + </step>
  619 +
  620 + <step>
  621 + <name>&#x5206;&#x7ec4;&#x5404;&#x4e2a;&#x8def;&#x724c;&#x7684;&#x7ad9;</name>
  622 + <type>GroupBy</type>
  623 + <description/>
  624 + <distribute>Y</distribute>
  625 + <custom_distribution/>
  626 + <copies>1</copies>
  627 + <partitioning>
  628 + <method>none</method>
  629 + <schema_name/>
  630 + </partitioning>
  631 + <all_rows>Y</all_rows>
  632 + <ignore_aggregate>N</ignore_aggregate>
  633 + <field_ignore/>
  634 + <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
  635 + <prefix>grp</prefix>
  636 + <add_linenr>Y</add_linenr>
  637 + <linenr_fieldname>gno</linenr_fieldname>
  638 + <give_back_row>N</give_back_row>
  639 + <group>
  640 + <field>
  641 + <name>lp</name>
  642 + </field>
  643 + </group>
  644 + <fields>
  645 + <field>
  646 + <aggregate>qdzgroups</aggregate>
  647 + <subject>qdzname</subject>
  648 + <type>CONCAT_STRING</type>
  649 + <valuefield>,</valuefield>
  650 + </field>
  651 + </fields>
  652 + <cluster_schema/>
  653 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  654 + <xloc>892</xloc>
  655 + <yloc>44</yloc>
  656 + <draw>Y</draw>
  657 + </GUI>
  658 + </step>
  659 +
  660 + <step>
  661 + <name>&#x5339;&#x914d;&#x4e0a;&#x4e0b;&#x884c;&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
  662 + <type>ScriptValueMod</type>
  663 + <description/>
  664 + <distribute>Y</distribute>
  665 + <custom_distribution/>
  666 + <copies>1</copies>
  667 + <partitioning>
  668 + <method>none</method>
  669 + <schema_name/>
  670 + </partitioning>
  671 + <compatible>N</compatible>
  672 + <optimizationLevel>9</optimizationLevel>
  673 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  674 + <jsScript_name>Script 1</jsScript_name>
  675 + <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;if &#x28;sxx &#x3d;&#x3d; 0&#x29; &#x7b; &#x2f;&#x2f; &#x4e0a;&#x884c;&#xa; jhlc &#x3d; up_mileage&#x3b;&#xa; bcsj &#x3d; up_travel_time&#x3b;&#xa;&#x7d; else &#x7b; &#x2f;&#x2f; sxx &#x3d;&#x3d; 1 &#x4e0b;&#x884c;&#xa; jhlc &#x3d; down_mileage&#x3b;&#xa; bcsj &#x3d; down_travel_time&#x3b;&#xa;&#x7d;</jsScript_script>
  676 + </jsScript> </jsScripts> <fields> <field> <name>jhlc</name>
  677 + <rename>jhlc</rename>
  678 + <type>String</type>
  679 + <length>-1</length>
  680 + <precision>-1</precision>
  681 + <replace>N</replace>
  682 + </field> <field> <name>bcsj</name>
  683 + <rename>bcsj</rename>
  684 + <type>String</type>
  685 + <length>-1</length>
  686 + <precision>-1</precision>
  687 + <replace>N</replace>
  688 + </field> </fields> <cluster_schema/>
  689 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  690 + <xloc>148</xloc>
  691 + <yloc>674</yloc>
  692 + <draw>Y</draw>
  693 + </GUI>
  694 + </step>
  695 +
  696 + <step>
  697 + <name>&#x5339;&#x914d;&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
  698 + <type>ScriptValueMod</type>
  699 + <description/>
  700 + <distribute>Y</distribute>
  701 + <custom_distribution/>
  702 + <copies>1</copies>
  703 + <partitioning>
  704 + <method>none</method>
  705 + <schema_name/>
  706 + </partitioning>
  707 + <compatible>N</compatible>
  708 + <optimizationLevel>9</optimizationLevel>
  709 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  710 + <jsScript_name>Script 1</jsScript_name>
  711 + <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>
  712 + </jsScript> </jsScripts> <fields> <field> <name>out_mileage</name>
  713 + <rename>out_mileage</rename>
  714 + <type>String</type>
  715 + <length>-1</length>
  716 + <precision>-1</precision>
  717 + <replace>N</replace>
  718 + </field> <field> <name>out_time</name>
  719 + <rename>out_time</rename>
  720 + <type>String</type>
  721 + <length>-1</length>
  722 + <precision>-1</precision>
  723 + <replace>N</replace>
  724 + </field> </fields> <cluster_schema/>
  725 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  726 + <xloc>336</xloc>
  727 + <yloc>862</yloc>
  728 + <draw>Y</draw>
  729 + </GUI>
  730 + </step>
  731 +
  732 + <step>
  733 + <name>&#x5339;&#x914d;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
  734 + <type>ScriptValueMod</type>
  735 + <description/>
  736 + <distribute>Y</distribute>
  737 + <custom_distribution/>
  738 + <copies>1</copies>
  739 + <partitioning>
  740 + <method>none</method>
  741 + <schema_name/>
  742 + </partitioning>
  743 + <compatible>N</compatible>
  744 + <optimizationLevel>9</optimizationLevel>
  745 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  746 + <jsScript_name>Script 1</jsScript_name>
  747 + <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>
  748 + </jsScript> </jsScripts> <fields> <field> <name>parade_mileage</name>
  749 + <rename>parade_mileage</rename>
  750 + <type>String</type>
  751 + <length>-1</length>
  752 + <precision>-1</precision>
  753 + <replace>N</replace>
  754 + </field> <field> <name>parade_time</name>
  755 + <rename>parade_time</rename>
  756 + <type>String</type>
  757 + <length>-1</length>
  758 + <precision>-1</precision>
  759 + <replace>N</replace>
  760 + </field> </fields> <cluster_schema/>
  761 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  762 + <xloc>726</xloc>
  763 + <yloc>1005</yloc>
  764 + <draw>Y</draw>
  765 + </GUI>
  766 + </step>
  767 +
  768 + <step>
  769 + <name>&#x589e;&#x52a0;&#x65f6;&#x523b;&#x8868;&#x540d;&#x5b57;&#xff0c;&#x7ebf;&#x8def;&#x540d;&#x5b57;&#xff0c;&#x505c;&#x8f66;&#x573a;&#x540d;&#x5b57;</name>
  770 + <type>DataGrid</type>
  771 + <description/>
  772 + <distribute>Y</distribute>
  773 + <custom_distribution/>
  774 + <copies>1</copies>
  775 + <partitioning>
  776 + <method>none</method>
  777 + <schema_name/>
  778 + </partitioning>
  779 + <fields>
  780 + </fields>
  781 + <data>
  782 + <line> </line>
  783 + </data>
  784 + <cluster_schema/>
  785 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  786 + <xloc>110</xloc>
  787 + <yloc>133</yloc>
  788 + <draw>Y</draw>
  789 + </GUI>
  790 + </step>
  791 +
  792 + <step>
  793 + <name>&#x5904;&#x7406;&#x6570;&#x636e;</name>
  794 + <type>ScriptValueMod</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 + <compatible>N</compatible>
  804 + <optimizationLevel>9</optimizationLevel>
  805 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  806 + <jsScript_name>Script 1</jsScript_name>
  807 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;&#x2f;&#x2f; &#x4f7f;&#x7528;&#x6b63;&#x5219;&#x8868;&#x8fbe;&#x5f0f;&#x53bb;&#x9664;&#x7ad9;&#x70b9;&#x540d;&#x79f0;&#x4e2d;&#x7684;&#x6570;&#x5b57;&#xa;qdzname &#x3d; qdzname.replace&#x28;&#x2f;&#x5c;d&#x2b;&#x2f;g,&#x27;&#x27;&#x29;&#x3b;&#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; &#x8bbe;&#x7f6e;&#x5206;&#x73ed;&#xa;var isfb &#x3d; 0&#x3b;&#xa;&#xa;&#x2f;&#x2f; &#x8bbe;&#x7f6e;isCanceled&#xa;var iscanceled &#x3d; 0&#x3b;</jsScript_script>
  808 + </jsScript> </jsScripts> <fields> <field> <name>qdzname</name>
  809 + <rename>qdzname</rename>
  810 + <type>String</type>
  811 + <length>-1</length>
  812 + <precision>-1</precision>
  813 + <replace>Y</replace>
  814 + </field> <field> <name>isfb</name>
  815 + <rename>isfb</rename>
  816 + <type>Integer</type>
  817 + <length>-1</length>
  818 + <precision>-1</precision>
  819 + <replace>N</replace>
  820 + </field> <field> <name>iscanceled</name>
  821 + <rename>iscanceled</rename>
  822 + <type>Integer</type>
  823 + <length>-1</length>
  824 + <precision>-1</precision>
  825 + <replace>N</replace>
  826 + </field> <field> <name>sendtime_calcu</name>
  827 + <rename>sendtime_calcu</rename>
  828 + <type>String</type>
  829 + <length>-1</length>
  830 + <precision>-1</precision>
  831 + <replace>N</replace>
  832 + </field> </fields> <cluster_schema/>
  833 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  834 + <xloc>788</xloc>
  835 + <yloc>44</yloc>
  836 + <draw>Y</draw>
  837 + </GUI>
  838 + </step>
  839 +
  840 + <step>
  841 + <name>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</name>
  842 + <type>SelectValues</type>
  843 + <description/>
  844 + <distribute>Y</distribute>
  845 + <custom_distribution/>
  846 + <copies>1</copies>
  847 + <partitioning>
  848 + <method>none</method>
  849 + <schema_name/>
  850 + </partitioning>
  851 + <fields> <field> <name>&#x8def;&#x724c;</name>
  852 + <rename>lp</rename>
  853 + <length>-2</length>
  854 + <precision>-2</precision>
  855 + </field> <field> <name>&#x7ad9;&#x70b9;&#x540d;&#x79f0;</name>
  856 + <rename>qdzname</rename>
  857 + <length>-2</length>
  858 + <precision>-2</precision>
  859 + </field> <field> <name>&#x53d1;&#x8f66;&#x65f6;&#x95f4;</name>
  860 + <rename>sendtime</rename>
  861 + <length>-2</length>
  862 + <precision>-2</precision>
  863 + </field> <select_unspecified>Y</select_unspecified>
  864 + </fields> <cluster_schema/>
  865 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  866 + <xloc>444</xloc>
  867 + <yloc>131</yloc>
  868 + <draw>Y</draw>
  869 + </GUI>
  870 + </step>
  871 +
  872 + <step>
  873 + <name>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;1</name>
  874 + <type>FilterRows</type>
  875 + <description/>
  876 + <distribute>Y</distribute>
  877 + <custom_distribution/>
  878 + <copies>1</copies>
  879 + <partitioning>
  880 + <method>none</method>
  881 + <schema_name/>
  882 + </partitioning>
  883 +<send_true_to>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</send_true_to>
  884 +<send_false_to>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</send_false_to>
  885 + <compare>
  886 +<condition>
  887 + <negated>N</negated>
  888 + <leftvalue>bctype</leftvalue>
  889 + <function>&#x3d;</function>
  890 + <rightvalue/>
  891 + <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>
  892 + </compare>
  893 + <cluster_schema/>
  894 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  895 + <xloc>860</xloc>
  896 + <yloc>401</yloc>
  897 + <draw>Y</draw>
  898 + </GUI>
  899 + </step>
  900 +
  901 + <step>
  902 + <name>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</name>
  903 + <type>FilterRows</type>
  904 + <description/>
  905 + <distribute>Y</distribute>
  906 + <custom_distribution/>
  907 + <copies>1</copies>
  908 + <partitioning>
  909 + <method>none</method>
  910 + <schema_name/>
  911 + </partitioning>
  912 +<send_true_to>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</send_true_to>
  913 +<send_false_to>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</send_false_to>
  914 + <compare>
  915 +<condition>
  916 + <negated>N</negated>
  917 + <leftvalue>bctype</leftvalue>
  918 + <function>&#x3d;</function>
  919 + <rightvalue/>
  920 + <value><name>constant</name><type>String</type><text>&#x51fa;&#x573a;</text><length>-1</length><precision>-1</precision><isnull>N</isnull><mask/></value> </condition>
  921 + </compare>
  922 + <cluster_schema/>
  923 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  924 + <xloc>995</xloc>
  925 + <yloc>503</yloc>
  926 + <draw>Y</draw>
  927 + </GUI>
  928 + </step>
  929 +
  930 + <step>
  931 + <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail</name>
  932 + <type>InsertUpdate</type>
  933 + <description/>
  934 + <distribute>Y</distribute>
  935 + <custom_distribution/>
  936 + <copies>1</copies>
  937 + <partitioning>
  938 + <method>none</method>
  939 + <schema_name/>
  940 + </partitioning>
  941 + <connection>bus_control_variable</connection>
  942 + <commit>100</commit>
  943 + <update_bypassed>N</update_bypassed>
  944 + <lookup>
  945 + <schema/>
  946 + <table>bsth_c_s_ttinfo_detail</table>
  947 + <key>
  948 + <name>xlid</name>
  949 + <field>xl</field>
  950 + <condition>&#x3d;</condition>
  951 + <name2/>
  952 + </key>
  953 + <key>
  954 + <name>ttid</name>
  955 + <field>ttinfo</field>
  956 + <condition>&#x3d;</condition>
  957 + <name2/>
  958 + </key>
  959 + <key>
  960 + <name>lpid</name>
  961 + <field>lp</field>
  962 + <condition>&#x3d;</condition>
  963 + <name2/>
  964 + </key>
  965 + <key>
  966 + <name>fcno</name>
  967 + <field>fcno</field>
  968 + <condition>&#x3d;</condition>
  969 + <name2/>
  970 + </key>
  971 + <key>
  972 + <name>bcs</name>
  973 + <field>bcs</field>
  974 + <condition>&#x3d;</condition>
  975 + <name2/>
  976 + </key>
  977 + <value>
  978 + <name>lp</name>
  979 + <rename>lpid</rename>
  980 + <update>Y</update>
  981 + </value>
  982 + <value>
  983 + <name>bc_type</name>
  984 + <rename>bctype_code</rename>
  985 + <update>Y</update>
  986 + </value>
  987 + <value>
  988 + <name>bcs</name>
  989 + <rename>bcs</rename>
  990 + <update>Y</update>
  991 + </value>
  992 + <value>
  993 + <name>bcsj</name>
  994 + <rename>bcsj</rename>
  995 + <update>Y</update>
  996 + </value>
  997 + <value>
  998 + <name>fcno</name>
  999 + <rename>fcno</rename>
  1000 + <update>Y</update>
  1001 + </value>
  1002 + <value>
  1003 + <name>jhlc</name>
  1004 + <rename>jhlc</rename>
  1005 + <update>Y</update>
  1006 + </value>
  1007 + <value>
  1008 + <name>fcsj</name>
  1009 + <rename>sendtime_calcu</rename>
  1010 + <update>Y</update>
  1011 + </value>
  1012 + <value>
  1013 + <name>ttinfo</name>
  1014 + <rename>ttid</rename>
  1015 + <update>Y</update>
  1016 + </value>
  1017 + <value>
  1018 + <name>xl</name>
  1019 + <rename>xlid</rename>
  1020 + <update>Y</update>
  1021 + </value>
  1022 + <value>
  1023 + <name>qdz</name>
  1024 + <rename>qdzid</rename>
  1025 + <update>Y</update>
  1026 + </value>
  1027 + <value>
  1028 + <name>zdz</name>
  1029 + <rename>zdzid</rename>
  1030 + <update>Y</update>
  1031 + </value>
  1032 + <value>
  1033 + <name>xl_dir</name>
  1034 + <rename>sxx</rename>
  1035 + <update>Y</update>
  1036 + </value>
  1037 + <value>
  1038 + <name>isfb</name>
  1039 + <rename>isfb</rename>
  1040 + <update>Y</update>
  1041 + </value>
  1042 + </lookup>
  1043 + <cluster_schema/>
  1044 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1045 + <xloc>143</xloc>
  1046 + <yloc>860</yloc>
  1047 + <draw>Y</draw>
  1048 + </GUI>
  1049 + </step>
  1050 +
  1051 + <step>
  1052 + <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail 2</name>
  1053 + <type>InsertUpdate</type>
  1054 + <description/>
  1055 + <distribute>Y</distribute>
  1056 + <custom_distribution/>
  1057 + <copies>1</copies>
  1058 + <partitioning>
  1059 + <method>none</method>
  1060 + <schema_name/>
  1061 + </partitioning>
  1062 + <connection>bus_control_variable</connection>
  1063 + <commit>100</commit>
  1064 + <update_bypassed>N</update_bypassed>
  1065 + <lookup>
  1066 + <schema/>
  1067 + <table>bsth_c_s_ttinfo_detail</table>
  1068 + <key>
  1069 + <name>xlid</name>
  1070 + <field>xl</field>
  1071 + <condition>&#x3d;</condition>
  1072 + <name2/>
  1073 + </key>
  1074 + <key>
  1075 + <name>ttid</name>
  1076 + <field>ttinfo</field>
  1077 + <condition>&#x3d;</condition>
  1078 + <name2/>
  1079 + </key>
  1080 + <key>
  1081 + <name>lpid</name>
  1082 + <field>lp</field>
  1083 + <condition>&#x3d;</condition>
  1084 + <name2/>
  1085 + </key>
  1086 + <key>
  1087 + <name>fcno</name>
  1088 + <field>fcno</field>
  1089 + <condition>&#x3d;</condition>
  1090 + <name2/>
  1091 + </key>
  1092 + <key>
  1093 + <name>bcs</name>
  1094 + <field>bcs</field>
  1095 + <condition>&#x3d;</condition>
  1096 + <name2/>
  1097 + </key>
  1098 + <value>
  1099 + <name>tcc</name>
  1100 + <rename>qdzid</rename>
  1101 + <update>Y</update>
  1102 + </value>
  1103 + <value>
  1104 + <name>zdz</name>
  1105 + <rename>zdzid</rename>
  1106 + <update>Y</update>
  1107 + </value>
  1108 + <value>
  1109 + <name>xl</name>
  1110 + <rename>xlid</rename>
  1111 + <update>Y</update>
  1112 + </value>
  1113 + <value>
  1114 + <name>ttinfo</name>
  1115 + <rename>ttid</rename>
  1116 + <update>Y</update>
  1117 + </value>
  1118 + <value>
  1119 + <name>xl_dir</name>
  1120 + <rename>sxx</rename>
  1121 + <update>Y</update>
  1122 + </value>
  1123 + <value>
  1124 + <name>lp</name>
  1125 + <rename>lpid</rename>
  1126 + <update>Y</update>
  1127 + </value>
  1128 + <value>
  1129 + <name>jhlc</name>
  1130 + <rename>out_mileage</rename>
  1131 + <update>Y</update>
  1132 + </value>
  1133 + <value>
  1134 + <name>fcsj</name>
  1135 + <rename>sendtime_calcu</rename>
  1136 + <update>Y</update>
  1137 + </value>
  1138 + <value>
  1139 + <name>bcsj</name>
  1140 + <rename>out_time</rename>
  1141 + <update>Y</update>
  1142 + </value>
  1143 + <value>
  1144 + <name>bcs</name>
  1145 + <rename>bcs</rename>
  1146 + <update>Y</update>
  1147 + </value>
  1148 + <value>
  1149 + <name>fcno</name>
  1150 + <rename>fcno</rename>
  1151 + <update>Y</update>
  1152 + </value>
  1153 + <value>
  1154 + <name>bc_type</name>
  1155 + <rename>bctype_code</rename>
  1156 + <update>Y</update>
  1157 + </value>
  1158 + <value>
  1159 + <name>isfb</name>
  1160 + <rename>isfb</rename>
  1161 + <update>Y</update>
  1162 + </value>
  1163 + </lookup>
  1164 + <cluster_schema/>
  1165 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1166 + <xloc>340</xloc>
  1167 + <yloc>1087</yloc>
  1168 + <draw>Y</draw>
  1169 + </GUI>
  1170 + </step>
  1171 +
  1172 + <step>
  1173 + <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail 3</name>
  1174 + <type>InsertUpdate</type>
  1175 + <description/>
  1176 + <distribute>Y</distribute>
  1177 + <custom_distribution/>
  1178 + <copies>1</copies>
  1179 + <partitioning>
  1180 + <method>none</method>
  1181 + <schema_name/>
  1182 + </partitioning>
  1183 + <connection>bus_control_variable</connection>
  1184 + <commit>100</commit>
  1185 + <update_bypassed>N</update_bypassed>
  1186 + <lookup>
  1187 + <schema/>
  1188 + <table>bsth_c_s_ttinfo_detail</table>
  1189 + <key>
  1190 + <name>xlid</name>
  1191 + <field>xl</field>
  1192 + <condition>&#x3d;</condition>
  1193 + <name2/>
  1194 + </key>
  1195 + <key>
  1196 + <name>ttid</name>
  1197 + <field>ttinfo</field>
  1198 + <condition>&#x3d;</condition>
  1199 + <name2/>
  1200 + </key>
  1201 + <key>
  1202 + <name>lpid</name>
  1203 + <field>lp</field>
  1204 + <condition>&#x3d;</condition>
  1205 + <name2/>
  1206 + </key>
  1207 + <key>
  1208 + <name>fcno</name>
  1209 + <field>fcno</field>
  1210 + <condition>&#x3d;</condition>
  1211 + <name2/>
  1212 + </key>
  1213 + <key>
  1214 + <name>bcs</name>
  1215 + <field>bcs</field>
  1216 + <condition>&#x3d;</condition>
  1217 + <name2/>
  1218 + </key>
  1219 + <value>
  1220 + <name>fcno</name>
  1221 + <rename>fcno</rename>
  1222 + <update>Y</update>
  1223 + </value>
  1224 + <value>
  1225 + <name>bcs</name>
  1226 + <rename>bcs</rename>
  1227 + <update>Y</update>
  1228 + </value>
  1229 + <value>
  1230 + <name>xl</name>
  1231 + <rename>xlid</rename>
  1232 + <update>Y</update>
  1233 + </value>
  1234 + <value>
  1235 + <name>ttinfo</name>
  1236 + <rename>ttid</rename>
  1237 + <update>Y</update>
  1238 + </value>
  1239 + <value>
  1240 + <name>lp</name>
  1241 + <rename>lpid</rename>
  1242 + <update>Y</update>
  1243 + </value>
  1244 + <value>
  1245 + <name>bc_type</name>
  1246 + <rename>bctype_code</rename>
  1247 + <update>Y</update>
  1248 + </value>
  1249 + <value>
  1250 + <name>bcsj</name>
  1251 + <rename>parade_time</rename>
  1252 + <update>Y</update>
  1253 + </value>
  1254 + <value>
  1255 + <name>jhlc</name>
  1256 + <rename>parade_mileage</rename>
  1257 + <update>Y</update>
  1258 + </value>
  1259 + <value>
  1260 + <name>fcsj</name>
  1261 + <rename>sendtime_calcu</rename>
  1262 + <update>Y</update>
  1263 + </value>
  1264 + <value>
  1265 + <name>xl_dir</name>
  1266 + <rename>sxx2</rename>
  1267 + <update>Y</update>
  1268 + </value>
  1269 + <value>
  1270 + <name>qdz</name>
  1271 + <rename>qdzid</rename>
  1272 + <update>Y</update>
  1273 + </value>
  1274 + <value>
  1275 + <name>tcc</name>
  1276 + <rename>zdzid</rename>
  1277 + <update>Y</update>
  1278 + </value>
  1279 + <value>
  1280 + <name>isfb</name>
  1281 + <rename>isfb</rename>
  1282 + <update>Y</update>
  1283 + </value>
  1284 + </lookup>
  1285 + <cluster_schema/>
  1286 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1287 + <xloc>845</xloc>
  1288 + <yloc>899</yloc>
  1289 + <draw>Y</draw>
  1290 + </GUI>
  1291 + </step>
  1292 +
  1293 + <step>
  1294 + <name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</name>
  1295 + <type>ExcelInput</type>
  1296 + <description/>
  1297 + <distribute>N</distribute>
  1298 + <custom_distribution/>
  1299 + <copies>1</copies>
  1300 + <partitioning>
  1301 + <method>none</method>
  1302 + <schema_name/>
  1303 + </partitioning>
  1304 + <header>Y</header>
  1305 + <noempty>Y</noempty>
  1306 + <stoponempty>N</stoponempty>
  1307 + <filefield/>
  1308 + <sheetfield/>
  1309 + <sheetrownumfield/>
  1310 + <rownumfield/>
  1311 + <sheetfield/>
  1312 + <filefield/>
  1313 + <limit>0</limit>
  1314 + <encoding/>
  1315 + <add_to_result_filenames>Y</add_to_result_filenames>
  1316 + <accept_filenames>N</accept_filenames>
  1317 + <accept_field/>
  1318 + <accept_stepname/>
  1319 + <file>
  1320 + <name/>
  1321 + <filemask/>
  1322 + <exclude_filemask/>
  1323 + <file_required>N</file_required>
  1324 + <include_subfolders>N</include_subfolders>
  1325 + </file>
  1326 + <fields>
  1327 + </fields>
  1328 + <sheets>
  1329 + <sheet>
  1330 + <name/>
  1331 + <startrow>0</startrow>
  1332 + <startcol>0</startcol>
  1333 + </sheet>
  1334 + </sheets>
  1335 + <strict_types>N</strict_types>
  1336 + <error_ignored>N</error_ignored>
  1337 + <error_line_skipped>N</error_line_skipped>
  1338 + <bad_line_files_destination_directory/>
  1339 + <bad_line_files_extension>warning</bad_line_files_extension>
  1340 + <error_line_files_destination_directory/>
  1341 + <error_line_files_extension>error</error_line_files_extension>
  1342 + <line_number_files_destination_directory/>
  1343 + <line_number_files_extension>line</line_number_files_extension>
  1344 + <shortFileFieldName/>
  1345 + <pathFieldName/>
  1346 + <hiddenFieldName/>
  1347 + <lastModificationTimeFieldName/>
  1348 + <uriNameFieldName/>
  1349 + <rootUriNameFieldName/>
  1350 + <extensionFieldName/>
  1351 + <sizeFieldName/>
  1352 + <spreadsheet_type>JXL</spreadsheet_type>
  1353 + <cluster_schema/>
  1354 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1355 + <xloc>112</xloc>
  1356 + <yloc>44</yloc>
  1357 + <draw>Y</draw>
  1358 + </GUI>
  1359 + </step>
  1360 +
  1361 + <step>
  1362 + <name>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;1</name>
  1363 + <type>DBLookup</type>
  1364 + <description/>
  1365 + <distribute>Y</distribute>
  1366 + <custom_distribution/>
  1367 + <copies>1</copies>
  1368 + <partitioning>
  1369 + <method>none</method>
  1370 + <schema_name/>
  1371 + </partitioning>
  1372 + <connection>bus_control_variable</connection>
  1373 + <cache>N</cache>
  1374 + <cache_load_all>N</cache_load_all>
  1375 + <cache_size>0</cache_size>
  1376 + <lookup>
  1377 + <schema/>
  1378 + <table>bsth_c_car_park</table>
  1379 + <orderby/>
  1380 + <fail_on_multiple>N</fail_on_multiple>
  1381 + <eat_row_on_failure>N</eat_row_on_failure>
  1382 + <key>
  1383 + <name>tccname_</name>
  1384 + <field>park_name</field>
  1385 + <condition>&#x3d;</condition>
  1386 + <name2/>
  1387 + </key>
  1388 + <value>
  1389 + <name>id</name>
  1390 + <rename>qdzid</rename>
  1391 + <default/>
  1392 + <type>Integer</type>
  1393 + </value>
  1394 + </lookup>
  1395 + <cluster_schema/>
  1396 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1397 + <xloc>755</xloc>
  1398 + <yloc>504</yloc>
  1399 + <draw>Y</draw>
  1400 + </GUI>
  1401 + </step>
  1402 +
  1403 + <step>
  1404 + <name>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;2</name>
  1405 + <type>DBLookup</type>
  1406 + <description/>
  1407 + <distribute>Y</distribute>
  1408 + <custom_distribution/>
  1409 + <copies>1</copies>
  1410 + <partitioning>
  1411 + <method>none</method>
  1412 + <schema_name/>
  1413 + </partitioning>
  1414 + <connection>bus_control_variable</connection>
  1415 + <cache>N</cache>
  1416 + <cache_load_all>N</cache_load_all>
  1417 + <cache_size>0</cache_size>
  1418 + <lookup>
  1419 + <schema/>
  1420 + <table>bsth_c_car_park</table>
  1421 + <orderby/>
  1422 + <fail_on_multiple>N</fail_on_multiple>
  1423 + <eat_row_on_failure>N</eat_row_on_failure>
  1424 + <key>
  1425 + <name>tccname_</name>
  1426 + <field>park_name</field>
  1427 + <condition>&#x3d;</condition>
  1428 + <name2/>
  1429 + </key>
  1430 + <value>
  1431 + <name>id</name>
  1432 + <rename>zdzid</rename>
  1433 + <default/>
  1434 + <type>Integer</type>
  1435 + </value>
  1436 + </lookup>
  1437 + <cluster_schema/>
  1438 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1439 + <xloc>887</xloc>
  1440 + <yloc>608</yloc>
  1441 + <draw>Y</draw>
  1442 + </GUI>
  1443 + </step>
  1444 +
  1445 + <step>
  1446 + <name>&#x67e5;&#x627e;&#x51fa;&#x573a;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</name>
  1447 + <type>DBLookup</type>
  1448 + <description/>
  1449 + <distribute>Y</distribute>
  1450 + <custom_distribution/>
  1451 + <copies>1</copies>
  1452 + <partitioning>
  1453 + <method>none</method>
  1454 + <schema_name/>
  1455 + </partitioning>
  1456 + <connection>bus_control_variable</connection>
  1457 + <cache>N</cache>
  1458 + <cache_load_all>N</cache_load_all>
  1459 + <cache_size>0</cache_size>
  1460 + <lookup>
  1461 + <schema/>
  1462 + <table>bsth_c_stationroute</table>
  1463 + <orderby/>
  1464 + <fail_on_multiple>N</fail_on_multiple>
  1465 + <eat_row_on_failure>N</eat_row_on_failure>
  1466 + <key>
  1467 + <name>xlid</name>
  1468 + <field>line</field>
  1469 + <condition>&#x3d;</condition>
  1470 + <name2/>
  1471 + </key>
  1472 + <key>
  1473 + <name>zdzname</name>
  1474 + <field>station_name</field>
  1475 + <condition>&#x3d;</condition>
  1476 + <name2/>
  1477 + </key>
  1478 + <key>
  1479 + <name>endZdtype</name>
  1480 + <field>station_mark</field>
  1481 + <condition>&#x3d;</condition>
  1482 + <name2/>
  1483 + </key>
  1484 + <key>
  1485 + <name>destory</name>
  1486 + <field>destroy</field>
  1487 + <condition>&#x3d;</condition>
  1488 + <name2/>
  1489 + </key>
  1490 + <value>
  1491 + <name>station</name>
  1492 + <rename>zdzid</rename>
  1493 + <default/>
  1494 + <type>Integer</type>
  1495 + </value>
  1496 + <value>
  1497 + <name>directions</name>
  1498 + <rename>sxx</rename>
  1499 + <default/>
  1500 + <type>Integer</type>
  1501 + </value>
  1502 + </lookup>
  1503 + <cluster_schema/>
  1504 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1505 + <xloc>329</xloc>
  1506 + <yloc>505</yloc>
  1507 + <draw>Y</draw>
  1508 + </GUI>
  1509 + </step>
  1510 +
  1511 + <step>
  1512 + <name>&#x67e5;&#x627e;&#x65f6;&#x523b;&#x8868;&#x57fa;&#x7840;&#x4fe1;&#x606f;&#x5173;&#x8054;</name>
  1513 + <type>DBLookup</type>
  1514 + <description/>
  1515 + <distribute>Y</distribute>
  1516 + <custom_distribution/>
  1517 + <copies>1</copies>
  1518 + <partitioning>
  1519 + <method>none</method>
  1520 + <schema_name/>
  1521 + </partitioning>
  1522 + <connection>bus_control_variable</connection>
  1523 + <cache>N</cache>
  1524 + <cache_load_all>N</cache_load_all>
  1525 + <cache_size>0</cache_size>
  1526 + <lookup>
  1527 + <schema/>
  1528 + <table>bsth_c_s_ttinfo</table>
  1529 + <orderby/>
  1530 + <fail_on_multiple>N</fail_on_multiple>
  1531 + <eat_row_on_failure>N</eat_row_on_failure>
  1532 + <key>
  1533 + <name>xlid</name>
  1534 + <field>xl</field>
  1535 + <condition>&#x3d;</condition>
  1536 + <name2/>
  1537 + </key>
  1538 + <key>
  1539 + <name>ttinfoname_</name>
  1540 + <field>name</field>
  1541 + <condition>&#x3d;</condition>
  1542 + <name2/>
  1543 + </key>
  1544 + <key>
  1545 + <name>iscanceled</name>
  1546 + <field>is_cancel</field>
  1547 + <condition>&#x3d;</condition>
  1548 + <name2/>
  1549 + </key>
  1550 + <value>
  1551 + <name>id</name>
  1552 + <rename>ttid</rename>
  1553 + <default/>
  1554 + <type>Integer</type>
  1555 + </value>
  1556 + </lookup>
  1557 + <cluster_schema/>
  1558 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1559 + <xloc>1011</xloc>
  1560 + <yloc>134</yloc>
  1561 + <draw>Y</draw>
  1562 + </GUI>
  1563 + </step>
  1564 +
  1565 + <step>
  1566 + <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x4e0a;&#x4e0b;&#x884c;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
  1567 + <type>DBLookup</type>
  1568 + <description/>
  1569 + <distribute>Y</distribute>
  1570 + <custom_distribution/>
  1571 + <copies>1</copies>
  1572 + <partitioning>
  1573 + <method>none</method>
  1574 + <schema_name/>
  1575 + </partitioning>
  1576 + <connection>bus_control_variable</connection>
  1577 + <cache>N</cache>
  1578 + <cache_load_all>N</cache_load_all>
  1579 + <cache_size>0</cache_size>
  1580 + <lookup>
  1581 + <schema/>
  1582 + <table>bsth_c_line_information</table>
  1583 + <orderby/>
  1584 + <fail_on_multiple>N</fail_on_multiple>
  1585 + <eat_row_on_failure>N</eat_row_on_failure>
  1586 + <key>
  1587 + <name>xlid</name>
  1588 + <field>line</field>
  1589 + <condition>&#x3d;</condition>
  1590 + <name2/>
  1591 + </key>
  1592 + <value>
  1593 + <name>up_mileage</name>
  1594 + <rename>up_mileage</rename>
  1595 + <default/>
  1596 + <type>Number</type>
  1597 + </value>
  1598 + <value>
  1599 + <name>down_mileage</name>
  1600 + <rename>down_mileage</rename>
  1601 + <default/>
  1602 + <type>Number</type>
  1603 + </value>
  1604 + <value>
  1605 + <name>up_travel_time</name>
  1606 + <rename>up_travel_time</rename>
  1607 + <default/>
  1608 + <type>Number</type>
  1609 + </value>
  1610 + <value>
  1611 + <name>down_travel_time</name>
  1612 + <rename>down_travel_time</rename>
  1613 + <default/>
  1614 + <type>Number</type>
  1615 + </value>
  1616 + </lookup>
  1617 + <cluster_schema/>
  1618 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1619 + <xloc>149</xloc>
  1620 + <yloc>581</yloc>
  1621 + <draw>Y</draw>
  1622 + </GUI>
  1623 + </step>
  1624 +
  1625 + <step>
  1626 + <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x5173;&#x8054;</name>
  1627 + <type>DBLookup</type>
  1628 + <description/>
  1629 + <distribute>Y</distribute>
  1630 + <custom_distribution/>
  1631 + <copies>1</copies>
  1632 + <partitioning>
  1633 + <method>none</method>
  1634 + <schema_name/>
  1635 + </partitioning>
  1636 + <connection>bus_control_variable</connection>
  1637 + <cache>N</cache>
  1638 + <cache_load_all>N</cache_load_all>
  1639 + <cache_size>0</cache_size>
  1640 + <lookup>
  1641 + <schema/>
  1642 + <table>bsth_c_line</table>
  1643 + <orderby/>
  1644 + <fail_on_multiple>N</fail_on_multiple>
  1645 + <eat_row_on_failure>N</eat_row_on_failure>
  1646 + <key>
  1647 + <name>xlname_</name>
  1648 + <field>name</field>
  1649 + <condition>&#x3d;</condition>
  1650 + <name2/>
  1651 + </key>
  1652 + <value>
  1653 + <name>id</name>
  1654 + <rename>xlid</rename>
  1655 + <default/>
  1656 + <type>Integer</type>
  1657 + </value>
  1658 + </lookup>
  1659 + <cluster_schema/>
  1660 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1661 + <xloc>1007</xloc>
  1662 + <yloc>43</yloc>
  1663 + <draw>Y</draw>
  1664 + </GUI>
  1665 + </step>
  1666 +
  1667 + <step>
  1668 + <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x51fa;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
  1669 + <type>DBLookup</type>
  1670 + <description/>
  1671 + <distribute>Y</distribute>
  1672 + <custom_distribution/>
  1673 + <copies>1</copies>
  1674 + <partitioning>
  1675 + <method>none</method>
  1676 + <schema_name/>
  1677 + </partitioning>
  1678 + <connection>bus_control_variable</connection>
  1679 + <cache>N</cache>
  1680 + <cache_load_all>N</cache_load_all>
  1681 + <cache_size>0</cache_size>
  1682 + <lookup>
  1683 + <schema/>
  1684 + <table>bsth_c_line_information</table>
  1685 + <orderby/>
  1686 + <fail_on_multiple>N</fail_on_multiple>
  1687 + <eat_row_on_failure>N</eat_row_on_failure>
  1688 + <key>
  1689 + <name>xlid</name>
  1690 + <field>line</field>
  1691 + <condition>&#x3d;</condition>
  1692 + <name2/>
  1693 + </key>
  1694 + <value>
  1695 + <name>up_out_timer</name>
  1696 + <rename>up_out_timer</rename>
  1697 + <default/>
  1698 + <type>Number</type>
  1699 + </value>
  1700 + <value>
  1701 + <name>up_out_mileage</name>
  1702 + <rename>up_out_mileage</rename>
  1703 + <default/>
  1704 + <type>Number</type>
  1705 + </value>
  1706 + <value>
  1707 + <name>down_out_timer</name>
  1708 + <rename>down_out_timer</rename>
  1709 + <default/>
  1710 + <type>Number</type>
  1711 + </value>
  1712 + <value>
  1713 + <name>down_out_mileage</name>
  1714 + <rename>down_out_mileage</rename>
  1715 + <default/>
  1716 + <type>Number</type>
  1717 + </value>
  1718 + </lookup>
  1719 + <cluster_schema/>
  1720 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1721 + <xloc>335</xloc>
  1722 + <yloc>763</yloc>
  1723 + <draw>Y</draw>
  1724 + </GUI>
  1725 + </step>
  1726 +
  1727 + <step>
  1728 + <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x8fdb;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
  1729 + <type>DBLookup</type>
  1730 + <description/>
  1731 + <distribute>Y</distribute>
  1732 + <custom_distribution/>
  1733 + <copies>1</copies>
  1734 + <partitioning>
  1735 + <method>none</method>
  1736 + <schema_name/>
  1737 + </partitioning>
  1738 + <connection>bus_control_variable</connection>
  1739 + <cache>N</cache>
  1740 + <cache_load_all>N</cache_load_all>
  1741 + <cache_size>0</cache_size>
  1742 + <lookup>
  1743 + <schema/>
  1744 + <table>bsth_c_line_information</table>
  1745 + <orderby/>
  1746 + <fail_on_multiple>N</fail_on_multiple>
  1747 + <eat_row_on_failure>N</eat_row_on_failure>
  1748 + <key>
  1749 + <name>xlid</name>
  1750 + <field>line</field>
  1751 + <condition>&#x3d;</condition>
  1752 + <name2/>
  1753 + </key>
  1754 + <value>
  1755 + <name>up_in_mileage</name>
  1756 + <rename>up_in_mileage</rename>
  1757 + <default/>
  1758 + <type>Number</type>
  1759 + </value>
  1760 + <value>
  1761 + <name>up_in_timer</name>
  1762 + <rename>up_in_timer</rename>
  1763 + <default/>
  1764 + <type>Number</type>
  1765 + </value>
  1766 + <value>
  1767 + <name>down_in_mileage</name>
  1768 + <rename>down_in_mileage</rename>
  1769 + <default/>
  1770 + <type>Number</type>
  1771 + </value>
  1772 + <value>
  1773 + <name>down_in_timer</name>
  1774 + <rename>down_in_timer</rename>
  1775 + <default/>
  1776 + <type>Number</type>
  1777 + </value>
  1778 + </lookup>
  1779 + <cluster_schema/>
  1780 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1781 + <xloc>553</xloc>
  1782 + <yloc>1004</yloc>
  1783 + <draw>Y</draw>
  1784 + </GUI>
  1785 + </step>
  1786 +
  1787 + <step>
  1788 + <name>&#x67e5;&#x627e;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;</name>
  1789 + <type>DBLookup</type>
  1790 + <description/>
  1791 + <distribute>Y</distribute>
  1792 + <custom_distribution/>
  1793 + <copies>1</copies>
  1794 + <partitioning>
  1795 + <method>none</method>
  1796 + <schema_name/>
  1797 + </partitioning>
  1798 + <connection>bus_control_variable</connection>
  1799 + <cache>N</cache>
  1800 + <cache_load_all>N</cache_load_all>
  1801 + <cache_size>0</cache_size>
  1802 + <lookup>
  1803 + <schema/>
  1804 + <table>bsth_c_stationroute</table>
  1805 + <orderby/>
  1806 + <fail_on_multiple>N</fail_on_multiple>
  1807 + <eat_row_on_failure>N</eat_row_on_failure>
  1808 + <key>
  1809 + <name>xlid</name>
  1810 + <field>line</field>
  1811 + <condition>&#x3d;</condition>
  1812 + <name2/>
  1813 + </key>
  1814 + <key>
  1815 + <name>sxx</name>
  1816 + <field>directions</field>
  1817 + <condition>&#x3d;</condition>
  1818 + <name2/>
  1819 + </key>
  1820 + <key>
  1821 + <name>endZdtype</name>
  1822 + <field>station_mark</field>
  1823 + <condition>&#x3d;</condition>
  1824 + <name2/>
  1825 + </key>
  1826 + <key>
  1827 + <name>destory</name>
  1828 + <field>destroy</field>
  1829 + <condition>&#x3d;</condition>
  1830 + <name2/>
  1831 + </key>
  1832 + <value>
  1833 + <name>station_name</name>
  1834 + <rename>zdzname</rename>
  1835 + <default/>
  1836 + <type>String</type>
  1837 + </value>
  1838 + <value>
  1839 + <name>station</name>
  1840 + <rename>zdzid</rename>
  1841 + <default/>
  1842 + <type>Integer</type>
  1843 + </value>
  1844 + </lookup>
  1845 + <cluster_schema/>
  1846 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1847 + <xloc>280</xloc>
  1848 + <yloc>404</yloc>
  1849 + <draw>Y</draw>
  1850 + </GUI>
  1851 + </step>
  1852 +
  1853 + <step>
  1854 + <name>&#x67e5;&#x627e;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</name>
  1855 + <type>DBLookup</type>
  1856 + <description/>
  1857 + <distribute>Y</distribute>
  1858 + <custom_distribution/>
  1859 + <copies>1</copies>
  1860 + <partitioning>
  1861 + <method>none</method>
  1862 + <schema_name/>
  1863 + </partitioning>
  1864 + <connection>bus_control_variable</connection>
  1865 + <cache>N</cache>
  1866 + <cache_load_all>N</cache_load_all>
  1867 + <cache_size>0</cache_size>
  1868 + <lookup>
  1869 + <schema/>
  1870 + <table>bsth_c_stationroute</table>
  1871 + <orderby/>
  1872 + <fail_on_multiple>N</fail_on_multiple>
  1873 + <eat_row_on_failure>N</eat_row_on_failure>
  1874 + <key>
  1875 + <name>xlid</name>
  1876 + <field>line</field>
  1877 + <condition>&#x3d;</condition>
  1878 + <name2/>
  1879 + </key>
  1880 + <key>
  1881 + <name>qdzname</name>
  1882 + <field>station_name</field>
  1883 + <condition>&#x3d;</condition>
  1884 + <name2/>
  1885 + </key>
  1886 + <key>
  1887 + <name>sendZdtype</name>
  1888 + <field>station_mark</field>
  1889 + <condition>&#x3d;</condition>
  1890 + <name2/>
  1891 + </key>
  1892 + <key>
  1893 + <name>destory</name>
  1894 + <field>destroy</field>
  1895 + <condition>&#x3d;</condition>
  1896 + <name2/>
  1897 + </key>
  1898 + <value>
  1899 + <name>station</name>
  1900 + <rename>qdzid</rename>
  1901 + <default/>
  1902 + <type>Integer</type>
  1903 + </value>
  1904 + <value>
  1905 + <name>directions</name>
  1906 + <rename>sxx</rename>
  1907 + <default/>
  1908 + <type>Integer</type>
  1909 + </value>
  1910 + </lookup>
  1911 + <cluster_schema/>
  1912 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1913 + <xloc>430</xloc>
  1914 + <yloc>403</yloc>
  1915 + <draw>Y</draw>
  1916 + </GUI>
  1917 + </step>
  1918 +
  1919 + <step>
  1920 + <name>&#x67e5;&#x627e;&#x8def;&#x724c;&#x5173;&#x8054;</name>
  1921 + <type>DBLookup</type>
  1922 + <description/>
  1923 + <distribute>Y</distribute>
  1924 + <custom_distribution/>
  1925 + <copies>1</copies>
  1926 + <partitioning>
  1927 + <method>none</method>
  1928 + <schema_name/>
  1929 + </partitioning>
  1930 + <connection>bus_control_variable</connection>
  1931 + <cache>N</cache>
  1932 + <cache_load_all>N</cache_load_all>
  1933 + <cache_size>0</cache_size>
  1934 + <lookup>
  1935 + <schema/>
  1936 + <table>bsth_c_s_gbi</table>
  1937 + <orderby/>
  1938 + <fail_on_multiple>N</fail_on_multiple>
  1939 + <eat_row_on_failure>N</eat_row_on_failure>
  1940 + <key>
  1941 + <name>xlid</name>
  1942 + <field>xl</field>
  1943 + <condition>&#x3d;</condition>
  1944 + <name2/>
  1945 + </key>
  1946 + <key>
  1947 + <name>lp</name>
  1948 + <field>lp_name</field>
  1949 + <condition>&#x3d;</condition>
  1950 + <name2/>
  1951 + </key>
  1952 + <key>
  1953 + <name>iscanceled</name>
  1954 + <field>is_cancel</field>
  1955 + <condition>&#x3d;</condition>
  1956 + <name2/>
  1957 + </key>
  1958 + <value>
  1959 + <name>id</name>
  1960 + <rename>lpid</rename>
  1961 + <default/>
  1962 + <type>Integer</type>
  1963 + </value>
  1964 + </lookup>
  1965 + <cluster_schema/>
  1966 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1967 + <xloc>1013</xloc>
  1968 + <yloc>265</yloc>
  1969 + <draw>Y</draw>
  1970 + </GUI>
  1971 + </step>
  1972 +
  1973 + <step>
  1974 + <name>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ebf;&#x8def;&#x65b9;&#x5411;</name>
  1975 + <type>DBLookup</type>
  1976 + <description/>
  1977 + <distribute>Y</distribute>
  1978 + <custom_distribution/>
  1979 + <copies>1</copies>
  1980 + <partitioning>
  1981 + <method>none</method>
  1982 + <schema_name/>
  1983 + </partitioning>
  1984 + <connection>bus_control_variable</connection>
  1985 + <cache>N</cache>
  1986 + <cache_load_all>N</cache_load_all>
  1987 + <cache_size>0</cache_size>
  1988 + <lookup>
  1989 + <schema/>
  1990 + <table>bsth_c_stationroute</table>
  1991 + <orderby/>
  1992 + <fail_on_multiple>N</fail_on_multiple>
  1993 + <eat_row_on_failure>N</eat_row_on_failure>
  1994 + <key>
  1995 + <name>xlid</name>
  1996 + <field>line</field>
  1997 + <condition>&#x3d;</condition>
  1998 + <name2/>
  1999 + </key>
  2000 + <key>
  2001 + <name>startZdtype_calcu</name>
  2002 + <field>station_mark</field>
  2003 + <condition>&#x3d;</condition>
  2004 + <name2/>
  2005 + </key>
  2006 + <key>
  2007 + <name>qdzname_calcu</name>
  2008 + <field>station_name</field>
  2009 + <condition>&#x3d;</condition>
  2010 + <name2/>
  2011 + </key>
  2012 + <key>
  2013 + <name>destory</name>
  2014 + <field>destroy</field>
  2015 + <condition>&#x3d;</condition>
  2016 + <name2/>
  2017 + </key>
  2018 + <value>
  2019 + <name>directions</name>
  2020 + <rename>sxx</rename>
  2021 + <default/>
  2022 + <type>String</type>
  2023 + </value>
  2024 + </lookup>
  2025 + <cluster_schema/>
  2026 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2027 + <xloc>548</xloc>
  2028 + <yloc>610</yloc>
  2029 + <draw>Y</draw>
  2030 + </GUI>
  2031 + </step>
  2032 +
  2033 + <step>
  2034 + <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>
  2035 + <type>DBLookup</type>
  2036 + <description/>
  2037 + <distribute>Y</distribute>
  2038 + <custom_distribution/>
  2039 + <copies>1</copies>
  2040 + <partitioning>
  2041 + <method>none</method>
  2042 + <schema_name/>
  2043 + </partitioning>
  2044 + <connection>bus_control_variable</connection>
  2045 + <cache>Y</cache>
  2046 + <cache_load_all>Y</cache_load_all>
  2047 + <cache_size>0</cache_size>
  2048 + <lookup>
  2049 + <schema/>
  2050 + <table>bsth_c_stationroute</table>
  2051 + <orderby/>
  2052 + <fail_on_multiple>N</fail_on_multiple>
  2053 + <eat_row_on_failure>N</eat_row_on_failure>
  2054 + <key>
  2055 + <name>xlid</name>
  2056 + <field>line</field>
  2057 + <condition>&#x3d;</condition>
  2058 + <name2/>
  2059 + </key>
  2060 + <key>
  2061 + <name>endZdtype_calcu</name>
  2062 + <field>station_mark</field>
  2063 + <condition>&#x3d;</condition>
  2064 + <name2/>
  2065 + </key>
  2066 + <key>
  2067 + <name>sxx</name>
  2068 + <field>directions</field>
  2069 + <condition>&#x3d;</condition>
  2070 + <name2/>
  2071 + </key>
  2072 + <key>
  2073 + <name>destory</name>
  2074 + <field>destroy</field>
  2075 + <condition>&#x3d;</condition>
  2076 + <name2/>
  2077 + </key>
  2078 + <value>
  2079 + <name>station_name</name>
  2080 + <rename>zdzname_calcu</rename>
  2081 + <default/>
  2082 + <type>Integer</type>
  2083 + </value>
  2084 + </lookup>
  2085 + <cluster_schema/>
  2086 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2087 + <xloc>550</xloc>
  2088 + <yloc>701</yloc>
  2089 + <draw>Y</draw>
  2090 + </GUI>
  2091 + </step>
  2092 +
  2093 + <step>
  2094 + <name>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</name>
  2095 + <type>DBLookup</type>
  2096 + <description/>
  2097 + <distribute>Y</distribute>
  2098 + <custom_distribution/>
  2099 + <copies>1</copies>
  2100 + <partitioning>
  2101 + <method>none</method>
  2102 + <schema_name/>
  2103 + </partitioning>
  2104 + <connection>bus_control_variable</connection>
  2105 + <cache>N</cache>
  2106 + <cache_load_all>N</cache_load_all>
  2107 + <cache_size>0</cache_size>
  2108 + <lookup>
  2109 + <schema/>
  2110 + <table>bsth_c_stationroute</table>
  2111 + <orderby/>
  2112 + <fail_on_multiple>N</fail_on_multiple>
  2113 + <eat_row_on_failure>N</eat_row_on_failure>
  2114 + <key>
  2115 + <name>xlid</name>
  2116 + <field>line</field>
  2117 + <condition>&#x3d;</condition>
  2118 + <name2/>
  2119 + </key>
  2120 + <key>
  2121 + <name>zdzname_calcu</name>
  2122 + <field>station_name</field>
  2123 + <condition>&#x3d;</condition>
  2124 + <name2/>
  2125 + </key>
  2126 + <key>
  2127 + <name>startZdtype_calcu</name>
  2128 + <field>station_mark</field>
  2129 + <condition>&#x3d;</condition>
  2130 + <name2/>
  2131 + </key>
  2132 + <key>
  2133 + <name>destory</name>
  2134 + <field>destroy</field>
  2135 + <condition>&#x3d;</condition>
  2136 + <name2/>
  2137 + </key>
  2138 + <value>
  2139 + <name>directions</name>
  2140 + <rename>sxx2</rename>
  2141 + <default/>
  2142 + <type>Integer</type>
  2143 + </value>
  2144 + <value>
  2145 + <name>station</name>
  2146 + <rename>qdzid</rename>
  2147 + <default/>
  2148 + <type>Integer</type>
  2149 + </value>
  2150 + </lookup>
  2151 + <cluster_schema/>
  2152 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2153 + <xloc>551</xloc>
  2154 + <yloc>782</yloc>
  2155 + <draw>Y</draw>
  2156 + </GUI>
  2157 + </step>
  2158 +
  2159 + <step>
  2160 + <name>&#x6b63;&#x5e38;&#x73ed;&#x6b21;_&#x5904;&#x7406;&#x6570;&#x636e;</name>
  2161 + <type>ScriptValueMod</type>
  2162 + <description/>
  2163 + <distribute>Y</distribute>
  2164 + <custom_distribution/>
  2165 + <copies>1</copies>
  2166 + <partitioning>
  2167 + <method>none</method>
  2168 + <schema_name/>
  2169 + </partitioning>
  2170 + <compatible>N</compatible>
  2171 + <optimizationLevel>9</optimizationLevel>
  2172 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  2173 + <jsScript_name>Script 1</jsScript_name>
  2174 + <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>
  2175 + </jsScript> </jsScripts> <fields> <field> <name>sendZdtype</name>
  2176 + <rename>sendZdtype</rename>
  2177 + <type>String</type>
  2178 + <length>-1</length>
  2179 + <precision>-1</precision>
  2180 + <replace>N</replace>
  2181 + </field> <field> <name>endZdtype</name>
  2182 + <rename>endZdtype</rename>
  2183 + <type>String</type>
  2184 + <length>-1</length>
  2185 + <precision>-1</precision>
  2186 + <replace>N</replace>
  2187 + </field> <field> <name>destory</name>
  2188 + <rename>destory</rename>
  2189 + <type>Integer</type>
  2190 + <length>-1</length>
  2191 + <precision>-1</precision>
  2192 + <replace>N</replace>
  2193 + </field> </fields> <cluster_schema/>
  2194 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2195 + <xloc>588</xloc>
  2196 + <yloc>403</yloc>
  2197 + <draw>Y</draw>
  2198 + </GUI>
  2199 + </step>
  2200 +
  2201 + <step>
  2202 + <name>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</name>
  2203 + <type>Dummy</type>
  2204 + <description/>
  2205 + <distribute>Y</distribute>
  2206 + <custom_distribution/>
  2207 + <copies>1</copies>
  2208 + <partitioning>
  2209 + <method>none</method>
  2210 + <schema_name/>
  2211 + </partitioning>
  2212 + <cluster_schema/>
  2213 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2214 + <xloc>725</xloc>
  2215 + <yloc>404</yloc>
  2216 + <draw>Y</draw>
  2217 + </GUI>
  2218 + </step>
  2219 +
  2220 + <step>
  2221 + <name>&#x6dfb;&#x52a0;&#x53d1;&#x8f66;&#x987a;&#x5e8f;&#x53f7;</name>
  2222 + <type>GroupBy</type>
  2223 + <description/>
  2224 + <distribute>Y</distribute>
  2225 + <custom_distribution/>
  2226 + <copies>1</copies>
  2227 + <partitioning>
  2228 + <method>none</method>
  2229 + <schema_name/>
  2230 + </partitioning>
  2231 + <all_rows>Y</all_rows>
  2232 + <ignore_aggregate>N</ignore_aggregate>
  2233 + <field_ignore/>
  2234 + <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
  2235 + <prefix>grp</prefix>
  2236 + <add_linenr>Y</add_linenr>
  2237 + <linenr_fieldname>fcno</linenr_fieldname>
  2238 + <give_back_row>N</give_back_row>
  2239 + <group>
  2240 + <field>
  2241 + <name>lp</name>
  2242 + </field>
  2243 + </group>
  2244 + <fields>
  2245 + </fields>
  2246 + <cluster_schema/>
  2247 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2248 + <xloc>442</xloc>
  2249 + <yloc>44</yloc>
  2250 + <draw>Y</draw>
  2251 + </GUI>
  2252 + </step>
  2253 +
  2254 + <step>
  2255 + <name>&#x6dfb;&#x52a0;&#x5bf9;&#x5e94;&#x73ed;&#x6b21;&#x6570;</name>
  2256 + <type>GroupBy</type>
  2257 + <description/>
  2258 + <distribute>Y</distribute>
  2259 + <custom_distribution/>
  2260 + <copies>1</copies>
  2261 + <partitioning>
  2262 + <method>none</method>
  2263 + <schema_name/>
  2264 + </partitioning>
  2265 + <all_rows>Y</all_rows>
  2266 + <ignore_aggregate>N</ignore_aggregate>
  2267 + <field_ignore/>
  2268 + <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
  2269 + <prefix>grp</prefix>
  2270 + <add_linenr>Y</add_linenr>
  2271 + <linenr_fieldname>bcs</linenr_fieldname>
  2272 + <give_back_row>N</give_back_row>
  2273 + <group>
  2274 + </group>
  2275 + <fields>
  2276 + </fields>
  2277 + <cluster_schema/>
  2278 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2279 + <xloc>692</xloc>
  2280 + <yloc>44</yloc>
  2281 + <draw>Y</draw>
  2282 + </GUI>
  2283 + </step>
  2284 +
  2285 + <step>
  2286 + <name>&#x73ed;&#x6b21;&#x6570;&#x636e;&#x8303;&#x5f0f;&#x5316;</name>
  2287 + <type>Normaliser</type>
  2288 + <description/>
  2289 + <distribute>Y</distribute>
  2290 + <custom_distribution/>
  2291 + <copies>1</copies>
  2292 + <partitioning>
  2293 + <method>none</method>
  2294 + <schema_name/>
  2295 + </partitioning>
  2296 + <typefield>&#x7ad9;&#x70b9;&#x540d;&#x79f0;</typefield>
  2297 + <fields> </fields> <cluster_schema/>
  2298 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2299 + <xloc>248</xloc>
  2300 + <yloc>44</yloc>
  2301 + <draw>Y</draw>
  2302 + </GUI>
  2303 + </step>
  2304 +
  2305 + <step>
  2306 + <name>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178;</name>
  2307 + <type>ValueMapper</type>
  2308 + <description/>
  2309 + <distribute>Y</distribute>
  2310 + <custom_distribution/>
  2311 + <copies>1</copies>
  2312 + <partitioning>
  2313 + <method>none</method>
  2314 + <schema_name/>
  2315 + </partitioning>
  2316 + <field_to_use>bctype</field_to_use>
  2317 + <target_field>bctype_code</target_field>
  2318 + <non_match_default>&#x672a;&#x77e5;&#x7c7b;&#x578b;</non_match_default>
  2319 + <fields>
  2320 + <field>
  2321 + <source_value>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</source_value>
  2322 + <target_value>normal</target_value>
  2323 + </field>
  2324 + <field>
  2325 + <source_value>&#x51fa;&#x573a;</source_value>
  2326 + <target_value>out</target_value>
  2327 + </field>
  2328 + <field>
  2329 + <source_value>&#x8fdb;&#x573a;</source_value>
  2330 + <target_value>in</target_value>
  2331 + </field>
  2332 + <field>
  2333 + <source_value>&#x52a0;&#x6cb9;</source_value>
  2334 + <target_value>oil</target_value>
  2335 + </field>
  2336 + <field>
  2337 + <source_value>&#x4e34;&#x52a0;</source_value>
  2338 + <target_value>temp</target_value>
  2339 + </field>
  2340 + <field>
  2341 + <source_value>&#x533a;&#x95f4;</source_value>
  2342 + <target_value>region</target_value>
  2343 + </field>
  2344 + <field>
  2345 + <source_value>&#x653e;&#x7a7a;</source_value>
  2346 + <target_value>venting</target_value>
  2347 + </field>
  2348 + <field>
  2349 + <source_value>&#x653e;&#x5927;&#x7ad9;</source_value>
  2350 + <target_value>major</target_value>
  2351 + </field>
  2352 + </fields>
  2353 + <cluster_schema/>
  2354 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2355 + <xloc>149</xloc>
  2356 + <yloc>491</yloc>
  2357 + <draw>Y</draw>
  2358 + </GUI>
  2359 + </step>
  2360 +
  2361 + <step>
  2362 + <name>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 2</name>
  2363 + <type>ValueMapper</type>
  2364 + <description/>
  2365 + <distribute>Y</distribute>
  2366 + <custom_distribution/>
  2367 + <copies>1</copies>
  2368 + <partitioning>
  2369 + <method>none</method>
  2370 + <schema_name/>
  2371 + </partitioning>
  2372 + <field_to_use>bctype</field_to_use>
  2373 + <target_field>bctype_code</target_field>
  2374 + <non_match_default>&#x672a;&#x77e5;&#x7c7b;&#x578b;</non_match_default>
  2375 + <fields>
  2376 + <field>
  2377 + <source_value>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</source_value>
  2378 + <target_value>normal</target_value>
  2379 + </field>
  2380 + <field>
  2381 + <source_value>&#x51fa;&#x573a;</source_value>
  2382 + <target_value>out</target_value>
  2383 + </field>
  2384 + <field>
  2385 + <source_value>&#x8fdb;&#x573a;</source_value>
  2386 + <target_value>in</target_value>
  2387 + </field>
  2388 + <field>
  2389 + <source_value>&#x52a0;&#x6cb9;</source_value>
  2390 + <target_value>oil</target_value>
  2391 + </field>
  2392 + <field>
  2393 + <source_value>&#x4e34;&#x52a0;</source_value>
  2394 + <target_value>temp</target_value>
  2395 + </field>
  2396 + <field>
  2397 + <source_value>&#x533a;&#x95f4;</source_value>
  2398 + <target_value>region</target_value>
  2399 + </field>
  2400 + <field>
  2401 + <source_value>&#x653e;&#x7a7a;</source_value>
  2402 + <target_value>venting</target_value>
  2403 + </field>
  2404 + <field>
  2405 + <source_value>&#x653e;&#x5927;&#x7ad9;</source_value>
  2406 + <target_value>major</target_value>
  2407 + </field>
  2408 + </fields>
  2409 + <cluster_schema/>
  2410 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2411 + <xloc>333</xloc>
  2412 + <yloc>681</yloc>
  2413 + <draw>Y</draw>
  2414 + </GUI>
  2415 + </step>
  2416 +
  2417 + <step>
  2418 + <name>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 3</name>
  2419 + <type>ValueMapper</type>
  2420 + <description/>
  2421 + <distribute>Y</distribute>
  2422 + <custom_distribution/>
  2423 + <copies>1</copies>
  2424 + <partitioning>
  2425 + <method>none</method>
  2426 + <schema_name/>
  2427 + </partitioning>
  2428 + <field_to_use>bctype</field_to_use>
  2429 + <target_field>bctype_code</target_field>
  2430 + <non_match_default>&#x672a;&#x77e5;&#x7c7b;&#x578b;</non_match_default>
  2431 + <fields>
  2432 + <field>
  2433 + <source_value>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</source_value>
  2434 + <target_value>normal</target_value>
  2435 + </field>
  2436 + <field>
  2437 + <source_value>&#x51fa;&#x573a;</source_value>
  2438 + <target_value>out</target_value>
  2439 + </field>
  2440 + <field>
  2441 + <source_value>&#x8fdb;&#x573a;</source_value>
  2442 + <target_value>in</target_value>
  2443 + </field>
  2444 + <field>
  2445 + <source_value>&#x52a0;&#x6cb9;</source_value>
  2446 + <target_value>oil</target_value>
  2447 + </field>
  2448 + <field>
  2449 + <source_value>&#x4e34;&#x52a0;</source_value>
  2450 + <target_value>temp</target_value>
  2451 + </field>
  2452 + <field>
  2453 + <source_value>&#x533a;&#x95f4;</source_value>
  2454 + <target_value>region</target_value>
  2455 + </field>
  2456 + <field>
  2457 + <source_value>&#x653e;&#x7a7a;</source_value>
  2458 + <target_value>venting</target_value>
  2459 + </field>
  2460 + <field>
  2461 + <source_value>&#x653e;&#x5927;&#x7ad9;</source_value>
  2462 + <target_value>major</target_value>
  2463 + </field>
  2464 + </fields>
  2465 + <cluster_schema/>
  2466 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2467 + <xloc>551</xloc>
  2468 + <yloc>928</yloc>
  2469 + <draw>Y</draw>
  2470 + </GUI>
  2471 + </step>
  2472 +
  2473 + <step>
  2474 + <name>&#x7c7b;&#x578b;&#x4fee;&#x6b63;</name>
  2475 + <type>SelectValues</type>
  2476 + <description/>
  2477 + <distribute>Y</distribute>
  2478 + <custom_distribution/>
  2479 + <copies>1</copies>
  2480 + <partitioning>
  2481 + <method>none</method>
  2482 + <schema_name/>
  2483 + </partitioning>
  2484 + <fields> <select_unspecified>N</select_unspecified>
  2485 + <meta> <name>jhlc</name>
  2486 + <rename>jhlc</rename>
  2487 + <type>Number</type>
  2488 + <length>-2</length>
  2489 + <precision>-2</precision>
  2490 + <conversion_mask/>
  2491 + <date_format_lenient>false</date_format_lenient>
  2492 + <date_format_locale/>
  2493 + <date_format_timezone/>
  2494 + <lenient_string_to_number>false</lenient_string_to_number>
  2495 + <encoding/>
  2496 + <decimal_symbol/>
  2497 + <grouping_symbol/>
  2498 + <currency_symbol/>
  2499 + <storage_type/>
  2500 + </meta> <meta> <name>bcsj</name>
  2501 + <rename>bcsj</rename>
  2502 + <type>Integer</type>
  2503 + <length>-2</length>
  2504 + <precision>-2</precision>
  2505 + <conversion_mask/>
  2506 + <date_format_lenient>false</date_format_lenient>
  2507 + <date_format_locale/>
  2508 + <date_format_timezone/>
  2509 + <lenient_string_to_number>false</lenient_string_to_number>
  2510 + <encoding/>
  2511 + <decimal_symbol/>
  2512 + <grouping_symbol/>
  2513 + <currency_symbol/>
  2514 + <storage_type/>
  2515 + </meta> </fields> <cluster_schema/>
  2516 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2517 + <xloc>146</xloc>
  2518 + <yloc>768</yloc>
  2519 + <draw>Y</draw>
  2520 + </GUI>
  2521 + </step>
  2522 +
  2523 + <step>
  2524 + <name>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 2</name>
  2525 + <type>SelectValues</type>
  2526 + <description/>
  2527 + <distribute>Y</distribute>
  2528 + <custom_distribution/>
  2529 + <copies>1</copies>
  2530 + <partitioning>
  2531 + <method>none</method>
  2532 + <schema_name/>
  2533 + </partitioning>
  2534 + <fields> <select_unspecified>N</select_unspecified>
  2535 + <meta> <name>out_mileage</name>
  2536 + <rename>out_mileage</rename>
  2537 + <type>Number</type>
  2538 + <length>-2</length>
  2539 + <precision>-2</precision>
  2540 + <conversion_mask/>
  2541 + <date_format_lenient>false</date_format_lenient>
  2542 + <date_format_locale/>
  2543 + <date_format_timezone/>
  2544 + <lenient_string_to_number>false</lenient_string_to_number>
  2545 + <encoding/>
  2546 + <decimal_symbol/>
  2547 + <grouping_symbol/>
  2548 + <currency_symbol/>
  2549 + <storage_type/>
  2550 + </meta> <meta> <name>out_time</name>
  2551 + <rename>out_time</rename>
  2552 + <type>Integer</type>
  2553 + <length>-2</length>
  2554 + <precision>-2</precision>
  2555 + <conversion_mask/>
  2556 + <date_format_lenient>false</date_format_lenient>
  2557 + <date_format_locale/>
  2558 + <date_format_timezone/>
  2559 + <lenient_string_to_number>false</lenient_string_to_number>
  2560 + <encoding/>
  2561 + <decimal_symbol/>
  2562 + <grouping_symbol/>
  2563 + <currency_symbol/>
  2564 + <storage_type/>
  2565 + </meta> <meta> <name>sxx</name>
  2566 + <rename>sxx</rename>
  2567 + <type>Integer</type>
  2568 + <length>-2</length>
  2569 + <precision>-2</precision>
  2570 + <conversion_mask/>
  2571 + <date_format_lenient>false</date_format_lenient>
  2572 + <date_format_locale/>
  2573 + <date_format_timezone/>
  2574 + <lenient_string_to_number>false</lenient_string_to_number>
  2575 + <encoding/>
  2576 + <decimal_symbol/>
  2577 + <grouping_symbol/>
  2578 + <currency_symbol/>
  2579 + <storage_type/>
  2580 + </meta> </fields> <cluster_schema/>
  2581 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2582 + <xloc>338</xloc>
  2583 + <yloc>1008</yloc>
  2584 + <draw>Y</draw>
  2585 + </GUI>
  2586 + </step>
  2587 +
  2588 + <step>
  2589 + <name>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 3</name>
  2590 + <type>SelectValues</type>
  2591 + <description/>
  2592 + <distribute>Y</distribute>
  2593 + <custom_distribution/>
  2594 + <copies>1</copies>
  2595 + <partitioning>
  2596 + <method>none</method>
  2597 + <schema_name/>
  2598 + </partitioning>
  2599 + <fields> <select_unspecified>N</select_unspecified>
  2600 + <meta> <name>parade_mileage</name>
  2601 + <rename>parade_mileage</rename>
  2602 + <type>Number</type>
  2603 + <length>-2</length>
  2604 + <precision>-2</precision>
  2605 + <conversion_mask/>
  2606 + <date_format_lenient>false</date_format_lenient>
  2607 + <date_format_locale/>
  2608 + <date_format_timezone/>
  2609 + <lenient_string_to_number>false</lenient_string_to_number>
  2610 + <encoding/>
  2611 + <decimal_symbol/>
  2612 + <grouping_symbol/>
  2613 + <currency_symbol/>
  2614 + <storage_type/>
  2615 + </meta> <meta> <name>parade_time</name>
  2616 + <rename>parade_time</rename>
  2617 + <type>Integer</type>
  2618 + <length>-2</length>
  2619 + <precision>-2</precision>
  2620 + <conversion_mask/>
  2621 + <date_format_lenient>false</date_format_lenient>
  2622 + <date_format_locale/>
  2623 + <date_format_timezone/>
  2624 + <lenient_string_to_number>false</lenient_string_to_number>
  2625 + <encoding/>
  2626 + <decimal_symbol/>
  2627 + <grouping_symbol/>
  2628 + <currency_symbol/>
  2629 + <storage_type/>
  2630 + </meta> <meta> <name>sxx2</name>
  2631 + <rename>sxx2</rename>
  2632 + <type>Integer</type>
  2633 + <length>-2</length>
  2634 + <precision>-2</precision>
  2635 + <conversion_mask/>
  2636 + <date_format_lenient>false</date_format_lenient>
  2637 + <date_format_locale/>
  2638 + <date_format_timezone/>
  2639 + <lenient_string_to_number>false</lenient_string_to_number>
  2640 + <encoding/>
  2641 + <decimal_symbol/>
  2642 + <grouping_symbol/>
  2643 + <currency_symbol/>
  2644 + <storage_type/>
  2645 + </meta> </fields> <cluster_schema/>
  2646 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2647 + <xloc>847</xloc>
  2648 + <yloc>1003</yloc>
  2649 + <draw>Y</draw>
  2650 + </GUI>
  2651 + </step>
  2652 +
  2653 + <step>
  2654 + <name>&#x8ba1;&#x7b97;&#x73ed;&#x6b21;&#x7c7b;&#x578b;</name>
  2655 + <type>ValueMapper</type>
  2656 + <description/>
  2657 + <distribute>Y</distribute>
  2658 + <custom_distribution/>
  2659 + <copies>1</copies>
  2660 + <partitioning>
  2661 + <method>none</method>
  2662 + <schema_name/>
  2663 + </partitioning>
  2664 + <field_to_use>qdzname</field_to_use>
  2665 + <target_field>bctype</target_field>
  2666 + <non_match_default>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</non_match_default>
  2667 + <fields>
  2668 + <field>
  2669 + <source_value>&#x51fa;&#x573a;</source_value>
  2670 + <target_value>&#x51fa;&#x573a;</target_value>
  2671 + </field>
  2672 + <field>
  2673 + <source_value>&#x8fdb;&#x573a;</source_value>
  2674 + <target_value>&#x8fdb;&#x573a;</target_value>
  2675 + </field>
  2676 + </fields>
  2677 + <cluster_schema/>
  2678 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2679 + <xloc>1014</xloc>
  2680 + <yloc>401</yloc>
  2681 + <draw>Y</draw>
  2682 + </GUI>
  2683 + </step>
  2684 +
  2685 + <step>
  2686 + <name>&#x8bb0;&#x5f55;&#x5173;&#x8054; &#x28;&#x7b1b;&#x5361;&#x5c14;&#x8f93;&#x51fa;&#x29;</name>
  2687 + <type>JoinRows</type>
  2688 + <description/>
  2689 + <distribute>Y</distribute>
  2690 + <custom_distribution/>
  2691 + <copies>1</copies>
  2692 + <partitioning>
  2693 + <method>none</method>
  2694 + <schema_name/>
  2695 + </partitioning>
  2696 + <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
  2697 + <prefix>out</prefix>
  2698 + <cache_size>500</cache_size>
  2699 + <main/>
  2700 + <compare>
  2701 +<condition>
  2702 + <negated>N</negated>
  2703 + <leftvalue/>
  2704 + <function>&#x3d;</function>
  2705 + <rightvalue/>
  2706 + </condition>
  2707 + </compare>
  2708 + <cluster_schema/>
  2709 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2710 + <xloc>310</xloc>
  2711 + <yloc>133</yloc>
  2712 + <draw>Y</draw>
  2713 + </GUI>
  2714 + </step>
  2715 +
  2716 + <step>
  2717 + <name>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;&#xff08;&#x53d1;&#x8f66;&#x65f6;&#x95f4;&#x4e3a;&#x7a7a;&#xff09;</name>
  2718 + <type>FilterRows</type>
  2719 + <description/>
  2720 + <distribute>Y</distribute>
  2721 + <custom_distribution/>
  2722 + <copies>1</copies>
  2723 + <partitioning>
  2724 + <method>none</method>
  2725 + <schema_name/>
  2726 + </partitioning>
  2727 +<send_true_to/>
  2728 +<send_false_to/>
  2729 + <compare>
  2730 +<condition>
  2731 + <negated>N</negated>
  2732 + <leftvalue>sendtime</leftvalue>
  2733 + <function>IS NOT NULL</function>
  2734 + <rightvalue/>
  2735 + </condition>
  2736 + </compare>
  2737 + <cluster_schema/>
  2738 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2739 + <xloc>571</xloc>
  2740 + <yloc>44</yloc>
  2741 + <draw>Y</draw>
  2742 + </GUI>
  2743 + </step>
  2744 +
  2745 + <step>
  2746 + <name>&#x8fdb;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x8d77;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</name>
  2747 + <type>ScriptValueMod</type>
  2748 + <description/>
  2749 + <distribute>Y</distribute>
  2750 + <custom_distribution/>
  2751 + <copies>1</copies>
  2752 + <partitioning>
  2753 + <method>none</method>
  2754 + <schema_name/>
  2755 + </partitioning>
  2756 + <compatible>N</compatible>
  2757 + <optimizationLevel>9</optimizationLevel>
  2758 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  2759 + <jsScript_name>Script 1</jsScript_name>
  2760 + <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>
  2761 + </jsScript> </jsScripts> <fields> <field> <name>qdzname_calcu</name>
  2762 + <rename>qdzname_calcu</rename>
  2763 + <type>String</type>
  2764 + <length>-1</length>
  2765 + <precision>-1</precision>
  2766 + <replace>N</replace>
  2767 + </field> <field> <name>startZdtype_calcu</name>
  2768 + <rename>startZdtype_calcu</rename>
  2769 + <type>String</type>
  2770 + <length>-1</length>
  2771 + <precision>-1</precision>
  2772 + <replace>N</replace>
  2773 + </field> <field> <name>endZdtype_calcu</name>
  2774 + <rename>endZdtype_calcu</rename>
  2775 + <type>String</type>
  2776 + <length>-1</length>
  2777 + <precision>-1</precision>
  2778 + <replace>N</replace>
  2779 + </field> <field> <name>destory</name>
  2780 + <rename>destory</rename>
  2781 + <type>Integer</type>
  2782 + <length>-1</length>
  2783 + <precision>-1</precision>
  2784 + <replace>N</replace>
  2785 + </field> </fields> <cluster_schema/>
  2786 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2787 + <xloc>754</xloc>
  2788 + <yloc>610</yloc>
  2789 + <draw>Y</draw>
  2790 + </GUI>
  2791 + </step>
  2792 +
  2793 + <step>
  2794 + <name>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</name>
  2795 + <type>Dummy</type>
  2796 + <description/>
  2797 + <distribute>Y</distribute>
  2798 + <custom_distribution/>
  2799 + <copies>1</copies>
  2800 + <partitioning>
  2801 + <method>none</method>
  2802 + <schema_name/>
  2803 + </partitioning>
  2804 + <cluster_schema/>
  2805 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2806 + <xloc>997</xloc>
  2807 + <yloc>606</yloc>
  2808 + <draw>Y</draw>
  2809 + </GUI>
  2810 + </step>
  2811 +
  2812 + <step_error_handling>
  2813 + <error>
  2814 + <source_step>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail</source_step>
  2815 + <target_step/>
  2816 + <is_enabled>Y</is_enabled>
  2817 + <nr_valuename>c1</nr_valuename>
  2818 + <descriptions_valuename>c2</descriptions_valuename>
  2819 + <fields_valuename>c3</fields_valuename>
  2820 + <codes_valuename>c4</codes_valuename>
  2821 + <max_errors/>
  2822 + <max_pct_errors/>
  2823 + <min_pct_rows/>
  2824 + </error>
  2825 + </step_error_handling>
  2826 + <slave-step-copy-partition-distribution>
  2827 +</slave-step-copy-partition-distribution>
  2828 + <slave_transformation>N</slave_transformation>
  2829 +
  2830 +</transformation>
src/main/resources/static/pages/scheduleApp/module/core/ttInfoManage/detailedit/timeTableDetailManage_old.js
@@ -294,7 +294,7 @@ angular.module(&#39;ScheduleApp&#39;).controller( @@ -294,7 +294,7 @@ angular.module(&#39;ScheduleApp&#39;).controller(
294 var TTInfoDetail = service.getQueryClass(); 294 var TTInfoDetail = service.getQueryClass();
295 295
296 // 时间正则表达式(格式hh:mm,如:06:39) 296 // 时间正则表达式(格式hh:mm,如:06:39)
297 - self.time_regex = /^(([0-1]\d)|(2[0-4])):[0-5]\d$/; 297 + self.time_regex = /^([01]?[0-9]|2[0-3]):[0-5][0-9]$/;
298 // 整数 298 // 整数
299 self.number_regex = /^-?\d+$/; 299 self.number_regex = /^-?\d+$/;
300 // 小数 300 // 小数