Commit e17a218319a1da690673034345a4c5270a5a0c83

Authored by 徐烜
2 parents 0b3f7755 5942a230

PSM-1

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