Commit 1c34f2f7e1ea7f4cded09b81164995caa5a5b472

Authored by 徐烜
1 parent 878dd614

Update

src/main/java/com/bsth/controller/schedule/RerunController.java deleted 100644 → 0
1 -package com.bsth.controller.schedule;  
2 -  
3 -import com.bsth.controller.BaseController;  
4 -import com.bsth.entity.schedule.rule.RerunRule;  
5 -import com.bsth.repository.schedule.RerunRuleRepository;  
6 -import org.springframework.beans.factory.annotation.Autowired;  
7 -import org.springframework.web.bind.annotation.*;  
8 -  
9 -import java.util.Map;  
10 -  
11 -/**  
12 - * Created by xu on 16/10/20.  
13 - */  
14 -@RestController  
15 -@RequestMapping("rms")  
16 -public class RerunController extends BaseController<RerunRule, Long> {  
17 -  
18 - @Autowired  
19 - private RerunRuleRepository rerunRuleRepository;  
20 -  
21 - @Override  
22 - public RerunRule findById(@PathVariable("id") Long aLong) {  
23 - return rerunRuleRepository.findOneExtend(aLong);  
24 - }  
25 -  
26 - /**  
27 - * 覆写方法,因为form提交的方式参数不全,改用 json形式提交 @RequestBody  
28 - * @Title: save  
29 - * @Description: TODO(持久化对象)  
30 - * @param @param t  
31 - * @param @return 设定文件  
32 - * @return Map<String,Object> {status: 1(成功),-1(失败)}  
33 - * @throws  
34 - */  
35 - @RequestMapping(method = RequestMethod.POST)  
36 - public Map<String, Object> save(@RequestBody RerunRule t){  
37 - return baseService.save(t);  
38 - }  
39 -  
40 -  
41 -}  
src/main/java/com/bsth/controller/schedule/TTInfoDetailController.java
@@ -113,6 +113,9 @@ public class TTInfoDetailController extends BaseController2&lt;TTInfoDetail, Long&gt; @@ -113,6 +113,9 @@ public class TTInfoDetailController extends BaseController2&lt;TTInfoDetail, Long&gt;
113 p1.put("stationName_eq", cell_con.trim()); 113 p1.put("stationName_eq", cell_con.trim());
114 p1.put("stationMark_eq", "B"); 114 p1.put("stationMark_eq", "B");
115 115
  116 +
  117 + // TODO:这里要修改(起点站有启用撤销的标志的)
  118 +
116 List<StationRoute> stationRouteList = (List<StationRoute>) stationRouteService.list(p1); 119 List<StationRoute> stationRouteList = (List<StationRoute>) stationRouteService.list(p1);
117 if (CollectionUtils.isEmpty(stationRouteList)) { 120 if (CollectionUtils.isEmpty(stationRouteList)) {
118 rtn.put("status", ResponseCode.ERROR); 121 rtn.put("status", ResponseCode.ERROR);
src/main/java/com/bsth/controller/schedule/core/RerunController.java 0 → 100644
  1 +package com.bsth.controller.schedule.core;
  2 +
  3 +import com.bsth.controller.schedule.BController;
  4 +import com.bsth.entity.schedule.rule.RerunRule;
  5 +import org.springframework.web.bind.annotation.RequestMapping;
  6 +import org.springframework.web.bind.annotation.RestController;
  7 +
  8 +/**
  9 + * Created by xu on 16/10/20.
  10 + */
  11 +@RestController
  12 +@RequestMapping("rms")
  13 +public class RerunController extends BController<RerunRule, Long> {
  14 +
  15 +
  16 +}
src/main/java/com/bsth/entity/schedule/rule/RerunRule.java
1 package com.bsth.entity.schedule.rule; 1 package com.bsth.entity.schedule.rule;
2 2
3 import com.bsth.entity.Line; 3 import com.bsth.entity.Line;
4 -import com.bsth.entity.schedule.CarConfigInfo;  
5 -import com.bsth.entity.schedule.EmployeeConfigInfo;  
6 -import com.bsth.entity.schedule.GuideboardInfo;  
7 -import com.bsth.entity.schedule.TTInfo;  
8 -import com.bsth.entity.sys.SysUser; 4 +import com.bsth.entity.schedule.*;
9 5
10 import javax.persistence.*; 6 import javax.persistence.*;
11 -import java.util.Date;  
12 7
13 /** 8 /**
14 * 套跑规则。 9 * 套跑规则。
@@ -41,7 +36,7 @@ import java.util.Date; @@ -41,7 +36,7 @@ import java.util.Date;
41 }) 36 })
42 37
43 38
44 -public class RerunRule { 39 +public class RerunRule extends BEntity {
45 /** 主键Id */ 40 /** 主键Id */
46 @Id 41 @Id
47 @GeneratedValue 42 @GeneratedValue
@@ -84,19 +79,6 @@ public class RerunRule { @@ -84,19 +79,6 @@ public class RerunRule {
84 @Column(nullable = false) 79 @Column(nullable = false)
85 private Boolean isCancel = false; 80 private Boolean isCancel = false;
86 81
87 - /** 创建人 */  
88 - @ManyToOne(cascade = CascadeType.PERSIST, fetch = FetchType.LAZY)  
89 - private SysUser createBy;  
90 - /** 修改人 */  
91 - @ManyToOne(cascade = CascadeType.PERSIST, fetch = FetchType.LAZY)  
92 - private SysUser updateBy;  
93 - /** 创建日期 */  
94 - @Column(updatable = false, name = "create_date", columnDefinition = "TIMESTAMP DEFAULT CURRENT_TIMESTAMP")  
95 - private Date createDate;  
96 - /** 修改日期 */  
97 - @Column(name = "update_date", columnDefinition = "TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP")  
98 - private Date updateDate;  
99 -  
100 public Long getId() { 82 public Long getId() {
101 return id; 83 return id;
102 } 84 }
@@ -177,34 +159,6 @@ public class RerunRule { @@ -177,34 +159,6 @@ public class RerunRule {
177 this.useEmployeeConfig = useEmployeeConfig; 159 this.useEmployeeConfig = useEmployeeConfig;
178 } 160 }
179 161
180 - public SysUser getCreateBy() {  
181 - return createBy;  
182 - }  
183 -  
184 - public void setCreateBy(SysUser createBy) {  
185 - this.createBy = createBy;  
186 - }  
187 -  
188 - public SysUser getUpdateBy() {  
189 - return updateBy;  
190 - }  
191 -  
192 - public void setUpdateBy(SysUser updateBy) {  
193 - this.updateBy = updateBy;  
194 - }  
195 -  
196 - public Date getCreateDate() {  
197 - return createDate;  
198 - }  
199 -  
200 - public void setCreateDate(Date createDate) {  
201 - this.createDate = createDate;  
202 - }  
203 -  
204 - public Date getUpdateDate() {  
205 - return updateDate;  
206 - }  
207 -  
208 public Boolean getIsCancel() { 162 public Boolean getIsCancel() {
209 return isCancel; 163 return isCancel;
210 } 164 }
@@ -213,7 +167,4 @@ public class RerunRule { @@ -213,7 +167,4 @@ public class RerunRule {
213 this.isCancel = isCancel; 167 this.isCancel = isCancel;
214 } 168 }
215 169
216 - public void setUpdateDate(Date updateDate) {  
217 - this.updateDate = updateDate;  
218 - }  
219 } 170 }
src/main/java/com/bsth/service/schedule/RerunService.java
1 package com.bsth.service.schedule; 1 package com.bsth.service.schedule;
2 2
3 import com.bsth.entity.schedule.rule.RerunRule; 3 import com.bsth.entity.schedule.rule.RerunRule;
4 -import com.bsth.service.BaseService;  
5 4
6 /** 5 /**
7 * Created by xu on 16/10/20. 6 * Created by xu on 16/10/20.
8 */ 7 */
9 -public interface RerunService extends BaseService<RerunRule, Long> { 8 +public interface RerunService extends BService<RerunRule, Long> {
10 } 9 }
src/main/java/com/bsth/service/schedule/RerunServiceImpl.java deleted 100644 → 0
1 -package com.bsth.service.schedule;  
2 -  
3 -import com.bsth.common.ResponseCode;  
4 -import com.bsth.entity.schedule.rule.RerunRule;  
5 -import com.bsth.repository.schedule.RerunRuleRepository;  
6 -import com.bsth.service.impl.BaseServiceImpl;  
7 -import org.springframework.beans.factory.annotation.Autowired;  
8 -import org.springframework.stereotype.Service;  
9 -  
10 -import javax.transaction.Transactional;  
11 -import java.util.HashMap;  
12 -import java.util.Map;  
13 -  
14 -/**  
15 - * Created by xu on 16/10/20.  
16 - */  
17 -@Service  
18 -public class RerunServiceImpl extends BaseServiceImpl<RerunRule, Long> implements RerunService {  
19 -  
20 - @Autowired  
21 - private RerunRuleRepository rerunRuleRepository;  
22 -  
23 - @Override  
24 - @Transactional  
25 - public Map<String, Object> delete(Long aLong) {  
26 - // 获取带作废的数据  
27 - RerunRule rerunRule = rerunRuleRepository.findOne(aLong);  
28 -  
29 - toogleIsCancel(rerunRule);  
30 -  
31 - Map<String, Object> map = new HashMap<>();  
32 - map.put("status", ResponseCode.SUCCESS);  
33 -  
34 - return map;  
35 -  
36 - }  
37 -  
38 - /**  
39 - * 撤销/作废切换。  
40 - * @param rerunRule  
41 - */  
42 - private void toogleIsCancel(RerunRule rerunRule) {  
43 - boolean isCancel = rerunRule.getIsCancel();  
44 - if (isCancel) {  
45 - rerunRule.setIsCancel(false);  
46 - } else {  
47 - rerunRule.setIsCancel(true);  
48 - }  
49 - }  
50 -}  
src/main/java/com/bsth/service/schedule/impl/RerunServiceImpl.java 0 → 100644
  1 +package com.bsth.service.schedule.impl;
  2 +
  3 +import com.bsth.entity.schedule.rule.RerunRule;
  4 +import com.bsth.service.schedule.RerunService;
  5 +import com.bsth.service.schedule.ScheduleException;
  6 +import org.springframework.stereotype.Service;
  7 +import org.springframework.transaction.annotation.Transactional;
  8 +
  9 +/**
  10 + * Created by xu on 16/10/20.
  11 + */
  12 +@Service
  13 +public class RerunServiceImpl extends BServiceImpl<RerunRule, Long> implements RerunService {
  14 +
  15 + @Transactional
  16 + @Override
  17 + public void delete(Long aLong) throws ScheduleException {
  18 + toggleCancel(aLong);
  19 + }
  20 +
  21 + private void toggleCancel(Long id) throws ScheduleException {
  22 + RerunRule rerunRule = findById(id);
  23 + if (rerunRule.getIsCancel()) {
  24 + rerunRule.setIsCancel(false);
  25 + } else {
  26 + rerunRule.setIsCancel(true);
  27 + }
  28 + }
  29 +}
src/main/resources/application-dev.properties
@@ -8,9 +8,9 @@ spring.jpa.hibernate.naming_strategy= org.hibernate.cfg.ImprovedNamingStrategy @@ -8,9 +8,9 @@ spring.jpa.hibernate.naming_strategy= org.hibernate.cfg.ImprovedNamingStrategy
8 spring.jpa.database= MYSQL 8 spring.jpa.database= MYSQL
9 spring.jpa.show-sql= true 9 spring.jpa.show-sql= true
10 spring.datasource.driver-class-name= com.mysql.jdbc.Driver 10 spring.datasource.driver-class-name= com.mysql.jdbc.Driver
11 -spring.datasource.url= jdbc:mysql://192.168.168.201/mh_control?useUnicode=true&characterEncoding=utf-8&useSSL=false 11 +spring.datasource.url= jdbc:mysql://127.0.0.1/qp_control?useUnicode=true&characterEncoding=utf-8&useSSL=false
12 spring.datasource.username= root 12 spring.datasource.username= root
13 -spring.datasource.password= 123456 13 +spring.datasource.password=
14 #spring.datasource.url= jdbc:mysql://192.168.168.117/pd_control?useUnicode=true&characterEncoding=utf-8&useSSL=false 14 #spring.datasource.url= jdbc:mysql://192.168.168.117/pd_control?useUnicode=true&characterEncoding=utf-8&useSSL=false
15 #spring.datasource.username= root 15 #spring.datasource.username= root
16 #spring.datasource.password= root 16 #spring.datasource.password= root
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;&#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>&#x5339;&#x914d;&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>  
558 - <type>ScriptValueMod</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 - <compatible>N</compatible>  
568 - <optimizationLevel>9</optimizationLevel>  
569 - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>  
570 - <jsScript_name>Script 1</jsScript_name>  
571 - <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>  
572 - </jsScript> </jsScripts> <fields> <field> <name>out_mileage</name>  
573 - <rename>out_mileage</rename>  
574 - <type>String</type>  
575 - <length>-1</length>  
576 - <precision>-1</precision>  
577 - <replace>N</replace>  
578 - </field> <field> <name>out_time</name>  
579 - <rename>out_time</rename>  
580 - <type>String</type>  
581 - <length>-1</length>  
582 - <precision>-1</precision>  
583 - <replace>N</replace>  
584 - </field> </fields> <cluster_schema/>  
585 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
586 - <xloc>336</xloc>  
587 - <yloc>862</yloc>  
588 - <draw>Y</draw>  
589 - </GUI>  
590 - </step>  
591 -  
592 - <step>  
593 - <name>&#x5339;&#x914d;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>  
594 - <type>ScriptValueMod</type>  
595 - <description/>  
596 - <distribute>Y</distribute>  
597 - <custom_distribution/>  
598 - <copies>1</copies>  
599 - <partitioning>  
600 - <method>none</method>  
601 - <schema_name/>  
602 - </partitioning>  
603 - <compatible>N</compatible>  
604 - <optimizationLevel>9</optimizationLevel>  
605 - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>  
606 - <jsScript_name>Script 1</jsScript_name>  
607 - <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var 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>  
608 - </jsScript> </jsScripts> <fields> <field> <name>parade_mileage</name>  
609 - <rename>parade_mileage</rename>  
610 - <type>String</type>  
611 - <length>-1</length>  
612 - <precision>-1</precision>  
613 - <replace>N</replace>  
614 - </field> <field> <name>parade_time</name>  
615 - <rename>parade_time</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>726</xloc>  
623 - <yloc>1005</yloc>  
624 - <draw>Y</draw>  
625 - </GUI>  
626 - </step>  
627 -  
628 - <step>  
629 - <name>&#x589e;&#x52a0;&#x65f6;&#x523b;&#x8868;&#x540d;&#x5b57;&#xff0c;&#x7ebf;&#x8def;&#x540d;&#x5b57;&#xff0c;&#x505c;&#x8f66;&#x573a;&#x540d;&#x5b57;</name>  
630 - <type>DataGrid</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>  
640 - </fields>  
641 - <data>  
642 - <line> </line>  
643 - </data>  
644 - <cluster_schema/>  
645 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
646 - <xloc>110</xloc>  
647 - <yloc>133</yloc>  
648 - <draw>Y</draw>  
649 - </GUI>  
650 - </step>  
651 -  
652 - <step>  
653 - <name>&#x5904;&#x7406;&#x6570;&#x636e;</name>  
654 - <type>ScriptValueMod</type>  
655 - <description/>  
656 - <distribute>Y</distribute>  
657 - <custom_distribution/>  
658 - <copies>1</copies>  
659 - <partitioning>  
660 - <method>none</method>  
661 - <schema_name/>  
662 - </partitioning>  
663 - <compatible>N</compatible>  
664 - <optimizationLevel>9</optimizationLevel>  
665 - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>  
666 - <jsScript_name>Script 1</jsScript_name>  
667 - <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>  
668 - </jsScript> </jsScripts> <fields> <field> <name>qdzname</name>  
669 - <rename>qdzname</rename>  
670 - <type>String</type>  
671 - <length>-1</length>  
672 - <precision>-1</precision>  
673 - <replace>Y</replace>  
674 - </field> <field> <name>isfb</name>  
675 - <rename>isfb</rename>  
676 - <type>Integer</type>  
677 - <length>-1</length>  
678 - <precision>-1</precision>  
679 - <replace>N</replace>  
680 - </field> <field> <name>iscanceled</name>  
681 - <rename>iscanceled</rename>  
682 - <type>Integer</type>  
683 - <length>-1</length>  
684 - <precision>-1</precision>  
685 - <replace>N</replace>  
686 - </field> <field> <name>sendtime_calcu</name>  
687 - <rename>sendtime_calcu</rename>  
688 - <type>String</type>  
689 - <length>-1</length>  
690 - <precision>-1</precision>  
691 - <replace>N</replace>  
692 - </field> </fields> <cluster_schema/>  
693 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
694 - <xloc>788</xloc>  
695 - <yloc>44</yloc>  
696 - <draw>Y</draw>  
697 - </GUI>  
698 - </step>  
699 -  
700 - <step>  
701 - <name>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</name>  
702 - <type>SelectValues</type>  
703 - <description/>  
704 - <distribute>Y</distribute>  
705 - <custom_distribution/>  
706 - <copies>1</copies>  
707 - <partitioning>  
708 - <method>none</method>  
709 - <schema_name/>  
710 - </partitioning>  
711 - <fields> <field> <name>&#x8def;&#x724c;</name>  
712 - <rename>lp</rename>  
713 - <length>-2</length>  
714 - <precision>-2</precision>  
715 - </field> <field> <name>&#x7ad9;&#x70b9;&#x540d;&#x79f0;</name>  
716 - <rename>qdzname</rename>  
717 - <length>-2</length>  
718 - <precision>-2</precision>  
719 - </field> <field> <name>&#x53d1;&#x8f66;&#x65f6;&#x95f4;</name>  
720 - <rename>sendtime</rename>  
721 - <length>-2</length>  
722 - <precision>-2</precision>  
723 - </field> <select_unspecified>Y</select_unspecified>  
724 - </fields> <cluster_schema/>  
725 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
726 - <xloc>444</xloc>  
727 - <yloc>131</yloc>  
728 - <draw>Y</draw>  
729 - </GUI>  
730 - </step>  
731 -  
732 - <step>  
733 - <name>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;1</name>  
734 - <type>FilterRows</type>  
735 - <description/>  
736 - <distribute>Y</distribute>  
737 - <custom_distribution/>  
738 - <copies>1</copies>  
739 - <partitioning>  
740 - <method>none</method>  
741 - <schema_name/>  
742 - </partitioning>  
743 -<send_true_to>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</send_true_to>  
744 -<send_false_to>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</send_false_to>  
745 - <compare>  
746 -<condition>  
747 - <negated>N</negated>  
748 - <leftvalue>bctype</leftvalue>  
749 - <function>&#x3d;</function>  
750 - <rightvalue/>  
751 - <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>  
752 - </compare>  
753 - <cluster_schema/>  
754 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
755 - <xloc>860</xloc>  
756 - <yloc>401</yloc>  
757 - <draw>Y</draw>  
758 - </GUI>  
759 - </step>  
760 -  
761 - <step>  
762 - <name>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</name>  
763 - <type>FilterRows</type>  
764 - <description/>  
765 - <distribute>Y</distribute>  
766 - <custom_distribution/>  
767 - <copies>1</copies>  
768 - <partitioning>  
769 - <method>none</method>  
770 - <schema_name/>  
771 - </partitioning>  
772 -<send_true_to>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</send_true_to>  
773 -<send_false_to>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</send_false_to>  
774 - <compare>  
775 -<condition>  
776 - <negated>N</negated>  
777 - <leftvalue>bctype</leftvalue>  
778 - <function>&#x3d;</function>  
779 - <rightvalue/>  
780 - <value><name>constant</name><type>String</type><text>&#x51fa;&#x573a;</text><length>-1</length><precision>-1</precision><isnull>N</isnull><mask/></value> </condition>  
781 - </compare>  
782 - <cluster_schema/>  
783 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
784 - <xloc>995</xloc>  
785 - <yloc>503</yloc>  
786 - <draw>Y</draw>  
787 - </GUI>  
788 - </step>  
789 -  
790 - <step>  
791 - <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail</name>  
792 - <type>InsertUpdate</type>  
793 - <description/>  
794 - <distribute>Y</distribute>  
795 - <custom_distribution/>  
796 - <copies>1</copies>  
797 - <partitioning>  
798 - <method>none</method>  
799 - <schema_name/>  
800 - </partitioning>  
801 - <connection>bus_control_variable</connection>  
802 - <commit>100</commit>  
803 - <update_bypassed>N</update_bypassed>  
804 - <lookup>  
805 - <schema/>  
806 - <table>bsth_c_s_ttinfo_detail</table>  
807 - <key>  
808 - <name>xlid</name>  
809 - <field>xl</field>  
810 - <condition>&#x3d;</condition>  
811 - <name2/>  
812 - </key>  
813 - <key>  
814 - <name>ttid</name>  
815 - <field>ttinfo</field>  
816 - <condition>&#x3d;</condition>  
817 - <name2/>  
818 - </key>  
819 - <key>  
820 - <name>lpid</name>  
821 - <field>lp</field>  
822 - <condition>&#x3d;</condition>  
823 - <name2/>  
824 - </key>  
825 - <key>  
826 - <name>fcno</name>  
827 - <field>fcno</field>  
828 - <condition>&#x3d;</condition>  
829 - <name2/>  
830 - </key>  
831 - <key>  
832 - <name>bcs</name>  
833 - <field>bcs</field>  
834 - <condition>&#x3d;</condition>  
835 - <name2/>  
836 - </key>  
837 - <value>  
838 - <name>lp</name>  
839 - <rename>lpid</rename>  
840 - <update>Y</update>  
841 - </value>  
842 - <value>  
843 - <name>bc_type</name>  
844 - <rename>bctype_code</rename>  
845 - <update>Y</update>  
846 - </value>  
847 - <value>  
848 - <name>bcs</name>  
849 - <rename>bcs</rename>  
850 - <update>Y</update>  
851 - </value>  
852 - <value>  
853 - <name>bcsj</name>  
854 - <rename>bcsj</rename>  
855 - <update>Y</update>  
856 - </value>  
857 - <value>  
858 - <name>fcno</name>  
859 - <rename>fcno</rename>  
860 - <update>Y</update>  
861 - </value>  
862 - <value>  
863 - <name>jhlc</name>  
864 - <rename>jhlc</rename>  
865 - <update>Y</update>  
866 - </value>  
867 - <value>  
868 - <name>fcsj</name>  
869 - <rename>sendtime_calcu</rename>  
870 - <update>Y</update>  
871 - </value>  
872 - <value>  
873 - <name>ttinfo</name>  
874 - <rename>ttid</rename>  
875 - <update>Y</update>  
876 - </value>  
877 - <value>  
878 - <name>xl</name>  
879 - <rename>xlid</rename>  
880 - <update>Y</update>  
881 - </value>  
882 - <value>  
883 - <name>qdz</name>  
884 - <rename>qdzid</rename>  
885 - <update>Y</update>  
886 - </value>  
887 - <value>  
888 - <name>zdz</name>  
889 - <rename>zdzid</rename>  
890 - <update>Y</update>  
891 - </value>  
892 - <value>  
893 - <name>xl_dir</name>  
894 - <rename>sxx</rename>  
895 - <update>Y</update>  
896 - </value>  
897 - <value>  
898 - <name>isfb</name>  
899 - <rename>isfb</rename>  
900 - <update>Y</update>  
901 - </value>  
902 - </lookup>  
903 - <cluster_schema/>  
904 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
905 - <xloc>143</xloc>  
906 - <yloc>860</yloc>  
907 - <draw>Y</draw>  
908 - </GUI>  
909 - </step>  
910 -  
911 - <step>  
912 - <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail 2</name>  
913 - <type>InsertUpdate</type>  
914 - <description/>  
915 - <distribute>Y</distribute>  
916 - <custom_distribution/>  
917 - <copies>1</copies>  
918 - <partitioning>  
919 - <method>none</method>  
920 - <schema_name/>  
921 - </partitioning>  
922 - <connection>bus_control_variable</connection>  
923 - <commit>100</commit>  
924 - <update_bypassed>N</update_bypassed>  
925 - <lookup>  
926 - <schema/>  
927 - <table>bsth_c_s_ttinfo_detail</table>  
928 - <key>  
929 - <name>xlid</name>  
930 - <field>xl</field>  
931 - <condition>&#x3d;</condition>  
932 - <name2/>  
933 - </key>  
934 - <key>  
935 - <name>ttid</name>  
936 - <field>ttinfo</field>  
937 - <condition>&#x3d;</condition>  
938 - <name2/>  
939 - </key>  
940 - <key>  
941 - <name>lpid</name>  
942 - <field>lp</field>  
943 - <condition>&#x3d;</condition>  
944 - <name2/>  
945 - </key>  
946 - <key>  
947 - <name>fcno</name>  
948 - <field>fcno</field>  
949 - <condition>&#x3d;</condition>  
950 - <name2/>  
951 - </key>  
952 - <key>  
953 - <name>bcs</name>  
954 - <field>bcs</field>  
955 - <condition>&#x3d;</condition>  
956 - <name2/>  
957 - </key>  
958 - <value>  
959 - <name>tcc</name>  
960 - <rename>qdzid</rename>  
961 - <update>Y</update>  
962 - </value>  
963 - <value>  
964 - <name>zdz</name>  
965 - <rename>zdzid</rename>  
966 - <update>Y</update>  
967 - </value>  
968 - <value>  
969 - <name>xl</name>  
970 - <rename>xlid</rename>  
971 - <update>Y</update>  
972 - </value>  
973 - <value>  
974 - <name>ttinfo</name>  
975 - <rename>ttid</rename>  
976 - <update>Y</update>  
977 - </value>  
978 - <value>  
979 - <name>xl_dir</name>  
980 - <rename>sxx</rename>  
981 - <update>Y</update>  
982 - </value>  
983 - <value>  
984 - <name>lp</name>  
985 - <rename>lpid</rename>  
986 - <update>Y</update>  
987 - </value>  
988 - <value>  
989 - <name>jhlc</name>  
990 - <rename>out_mileage</rename>  
991 - <update>Y</update>  
992 - </value>  
993 - <value>  
994 - <name>fcsj</name>  
995 - <rename>sendtime_calcu</rename>  
996 - <update>Y</update>  
997 - </value>  
998 - <value>  
999 - <name>bcsj</name>  
1000 - <rename>out_time</rename>  
1001 - <update>Y</update>  
1002 - </value>  
1003 - <value>  
1004 - <name>bcs</name>  
1005 - <rename>bcs</rename>  
1006 - <update>Y</update>  
1007 - </value>  
1008 - <value>  
1009 - <name>fcno</name>  
1010 - <rename>fcno</rename>  
1011 - <update>Y</update>  
1012 - </value>  
1013 - <value>  
1014 - <name>bc_type</name>  
1015 - <rename>bctype_code</rename>  
1016 - <update>Y</update>  
1017 - </value>  
1018 - <value>  
1019 - <name>isfb</name>  
1020 - <rename>isfb</rename>  
1021 - <update>Y</update>  
1022 - </value>  
1023 - </lookup>  
1024 - <cluster_schema/>  
1025 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1026 - <xloc>342</xloc>  
1027 - <yloc>1031</yloc>  
1028 - <draw>Y</draw>  
1029 - </GUI>  
1030 - </step>  
1031 -  
1032 - <step>  
1033 - <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail 3</name>  
1034 - <type>InsertUpdate</type>  
1035 - <description/>  
1036 - <distribute>Y</distribute>  
1037 - <custom_distribution/>  
1038 - <copies>1</copies>  
1039 - <partitioning>  
1040 - <method>none</method>  
1041 - <schema_name/>  
1042 - </partitioning>  
1043 - <connection>bus_control_variable</connection>  
1044 - <commit>100</commit>  
1045 - <update_bypassed>N</update_bypassed>  
1046 - <lookup>  
1047 - <schema/>  
1048 - <table>bsth_c_s_ttinfo_detail</table>  
1049 - <key>  
1050 - <name>xlid</name>  
1051 - <field>xl</field>  
1052 - <condition>&#x3d;</condition>  
1053 - <name2/>  
1054 - </key>  
1055 - <key>  
1056 - <name>ttid</name>  
1057 - <field>ttinfo</field>  
1058 - <condition>&#x3d;</condition>  
1059 - <name2/>  
1060 - </key>  
1061 - <key>  
1062 - <name>lpid</name>  
1063 - <field>lp</field>  
1064 - <condition>&#x3d;</condition>  
1065 - <name2/>  
1066 - </key>  
1067 - <key>  
1068 - <name>fcno</name>  
1069 - <field>fcno</field>  
1070 - <condition>&#x3d;</condition>  
1071 - <name2/>  
1072 - </key>  
1073 - <key>  
1074 - <name>bcs</name>  
1075 - <field>bcs</field>  
1076 - <condition>&#x3d;</condition>  
1077 - <name2/>  
1078 - </key>  
1079 - <value>  
1080 - <name>fcno</name>  
1081 - <rename>fcno</rename>  
1082 - <update>Y</update>  
1083 - </value>  
1084 - <value>  
1085 - <name>bcs</name>  
1086 - <rename>bcs</rename>  
1087 - <update>Y</update>  
1088 - </value>  
1089 - <value>  
1090 - <name>xl</name>  
1091 - <rename>xlid</rename>  
1092 - <update>Y</update>  
1093 - </value>  
1094 - <value>  
1095 - <name>ttinfo</name>  
1096 - <rename>ttid</rename>  
1097 - <update>Y</update>  
1098 - </value>  
1099 - <value>  
1100 - <name>lp</name>  
1101 - <rename>lpid</rename>  
1102 - <update>Y</update>  
1103 - </value>  
1104 - <value>  
1105 - <name>bc_type</name>  
1106 - <rename>bctype_code</rename>  
1107 - <update>Y</update>  
1108 - </value>  
1109 - <value>  
1110 - <name>bcsj</name>  
1111 - <rename>parade_time</rename>  
1112 - <update>Y</update>  
1113 - </value>  
1114 - <value>  
1115 - <name>jhlc</name>  
1116 - <rename>parade_mileage</rename>  
1117 - <update>Y</update>  
1118 - </value>  
1119 - <value>  
1120 - <name>fcsj</name>  
1121 - <rename>sendtime_calcu</rename>  
1122 - <update>Y</update>  
1123 - </value>  
1124 - <value>  
1125 - <name>xl_dir</name>  
1126 - <rename>sxx2</rename>  
1127 - <update>Y</update>  
1128 - </value>  
1129 - <value>  
1130 - <name>qdz</name>  
1131 - <rename>qdzid</rename>  
1132 - <update>Y</update>  
1133 - </value>  
1134 - <value>  
1135 - <name>tcc</name>  
1136 - <rename>zdzid</rename>  
1137 - <update>Y</update>  
1138 - </value>  
1139 - <value>  
1140 - <name>isfb</name>  
1141 - <rename>isfb</rename>  
1142 - <update>Y</update>  
1143 - </value>  
1144 - </lookup>  
1145 - <cluster_schema/>  
1146 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1147 - <xloc>875</xloc>  
1148 - <yloc>887</yloc>  
1149 - <draw>Y</draw>  
1150 - </GUI>  
1151 - </step>  
1152 -  
1153 - <step>  
1154 - <name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</name>  
1155 - <type>ExcelInput</type>  
1156 - <description/>  
1157 - <distribute>Y</distribute>  
1158 - <custom_distribution/>  
1159 - <copies>1</copies>  
1160 - <partitioning>  
1161 - <method>none</method>  
1162 - <schema_name/>  
1163 - </partitioning>  
1164 - <header>Y</header>  
1165 - <noempty>Y</noempty>  
1166 - <stoponempty>N</stoponempty>  
1167 - <filefield/>  
1168 - <sheetfield/>  
1169 - <sheetrownumfield/>  
1170 - <rownumfield/>  
1171 - <sheetfield/>  
1172 - <filefield/>  
1173 - <limit>0</limit>  
1174 - <encoding/>  
1175 - <add_to_result_filenames>Y</add_to_result_filenames>  
1176 - <accept_filenames>N</accept_filenames>  
1177 - <accept_field/>  
1178 - <accept_stepname/>  
1179 - <file>  
1180 - <name/>  
1181 - <filemask/>  
1182 - <exclude_filemask/>  
1183 - <file_required>N</file_required>  
1184 - <include_subfolders>N</include_subfolders>  
1185 - </file>  
1186 - <fields>  
1187 - </fields>  
1188 - <sheets>  
1189 - <sheet>  
1190 - <name/>  
1191 - <startrow>0</startrow>  
1192 - <startcol>0</startcol>  
1193 - </sheet>  
1194 - </sheets>  
1195 - <strict_types>N</strict_types>  
1196 - <error_ignored>N</error_ignored>  
1197 - <error_line_skipped>N</error_line_skipped>  
1198 - <bad_line_files_destination_directory/>  
1199 - <bad_line_files_extension>warning</bad_line_files_extension>  
1200 - <error_line_files_destination_directory/>  
1201 - <error_line_files_extension>error</error_line_files_extension>  
1202 - <line_number_files_destination_directory/>  
1203 - <line_number_files_extension>line</line_number_files_extension>  
1204 - <shortFileFieldName/>  
1205 - <pathFieldName/>  
1206 - <hiddenFieldName/>  
1207 - <lastModificationTimeFieldName/>  
1208 - <uriNameFieldName/>  
1209 - <rootUriNameFieldName/>  
1210 - <extensionFieldName/>  
1211 - <sizeFieldName/>  
1212 - <spreadsheet_type>JXL</spreadsheet_type>  
1213 - <cluster_schema/>  
1214 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1215 - <xloc>112</xloc>  
1216 - <yloc>44</yloc>  
1217 - <draw>Y</draw>  
1218 - </GUI>  
1219 - </step>  
1220 -  
1221 - <step>  
1222 - <name>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;1</name>  
1223 - <type>DBLookup</type>  
1224 - <description/>  
1225 - <distribute>Y</distribute>  
1226 - <custom_distribution/>  
1227 - <copies>1</copies>  
1228 - <partitioning>  
1229 - <method>none</method>  
1230 - <schema_name/>  
1231 - </partitioning>  
1232 - <connection>bus_control_variable</connection>  
1233 - <cache>N</cache>  
1234 - <cache_load_all>N</cache_load_all>  
1235 - <cache_size>0</cache_size>  
1236 - <lookup>  
1237 - <schema/>  
1238 - <table>bsth_c_car_park</table>  
1239 - <orderby/>  
1240 - <fail_on_multiple>N</fail_on_multiple>  
1241 - <eat_row_on_failure>N</eat_row_on_failure>  
1242 - <key>  
1243 - <name>tccname_</name>  
1244 - <field>park_name</field>  
1245 - <condition>&#x3d;</condition>  
1246 - <name2/>  
1247 - </key>  
1248 - <value>  
1249 - <name>id</name>  
1250 - <rename>qdzid</rename>  
1251 - <default/>  
1252 - <type>Integer</type>  
1253 - </value>  
1254 - </lookup>  
1255 - <cluster_schema/>  
1256 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1257 - <xloc>755</xloc>  
1258 - <yloc>504</yloc>  
1259 - <draw>Y</draw>  
1260 - </GUI>  
1261 - </step>  
1262 -  
1263 - <step>  
1264 - <name>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;2</name>  
1265 - <type>DBLookup</type>  
1266 - <description/>  
1267 - <distribute>Y</distribute>  
1268 - <custom_distribution/>  
1269 - <copies>1</copies>  
1270 - <partitioning>  
1271 - <method>none</method>  
1272 - <schema_name/>  
1273 - </partitioning>  
1274 - <connection>bus_control_variable</connection>  
1275 - <cache>N</cache>  
1276 - <cache_load_all>N</cache_load_all>  
1277 - <cache_size>0</cache_size>  
1278 - <lookup>  
1279 - <schema/>  
1280 - <table>bsth_c_car_park</table>  
1281 - <orderby/>  
1282 - <fail_on_multiple>N</fail_on_multiple>  
1283 - <eat_row_on_failure>N</eat_row_on_failure>  
1284 - <key>  
1285 - <name>tccname_</name>  
1286 - <field>park_name</field>  
1287 - <condition>&#x3d;</condition>  
1288 - <name2/>  
1289 - </key>  
1290 - <value>  
1291 - <name>id</name>  
1292 - <rename>zdzid</rename>  
1293 - <default/>  
1294 - <type>Integer</type>  
1295 - </value>  
1296 - </lookup>  
1297 - <cluster_schema/>  
1298 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1299 - <xloc>887</xloc>  
1300 - <yloc>608</yloc>  
1301 - <draw>Y</draw>  
1302 - </GUI>  
1303 - </step>  
1304 -  
1305 - <step>  
1306 - <name>&#x67e5;&#x627e;&#x51fa;&#x573a;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</name>  
1307 - <type>DBLookup</type>  
1308 - <description/>  
1309 - <distribute>Y</distribute>  
1310 - <custom_distribution/>  
1311 - <copies>1</copies>  
1312 - <partitioning>  
1313 - <method>none</method>  
1314 - <schema_name/>  
1315 - </partitioning>  
1316 - <connection>bus_control_variable</connection>  
1317 - <cache>N</cache>  
1318 - <cache_load_all>N</cache_load_all>  
1319 - <cache_size>0</cache_size>  
1320 - <lookup>  
1321 - <schema/>  
1322 - <table>bsth_c_stationroute</table>  
1323 - <orderby/>  
1324 - <fail_on_multiple>N</fail_on_multiple>  
1325 - <eat_row_on_failure>N</eat_row_on_failure>  
1326 - <key>  
1327 - <name>xlid</name>  
1328 - <field>line</field>  
1329 - <condition>&#x3d;</condition>  
1330 - <name2/>  
1331 - </key>  
1332 - <key>  
1333 - <name>zdzname</name>  
1334 - <field>station_name</field>  
1335 - <condition>&#x3d;</condition>  
1336 - <name2/>  
1337 - </key>  
1338 - <key>  
1339 - <name>endZdtype</name>  
1340 - <field>station_mark</field>  
1341 - <condition>&#x3d;</condition>  
1342 - <name2/>  
1343 - </key>  
1344 - <value>  
1345 - <name>station</name>  
1346 - <rename>zdzid</rename>  
1347 - <default/>  
1348 - <type>Integer</type>  
1349 - </value>  
1350 - <value>  
1351 - <name>directions</name>  
1352 - <rename>sxx</rename>  
1353 - <default/>  
1354 - <type>Integer</type>  
1355 - </value>  
1356 - </lookup>  
1357 - <cluster_schema/>  
1358 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1359 - <xloc>329</xloc>  
1360 - <yloc>505</yloc>  
1361 - <draw>Y</draw>  
1362 - </GUI>  
1363 - </step>  
1364 -  
1365 - <step>  
1366 - <name>&#x67e5;&#x627e;&#x65f6;&#x523b;&#x8868;&#x57fa;&#x7840;&#x4fe1;&#x606f;&#x5173;&#x8054;</name>  
1367 - <type>DBLookup</type>  
1368 - <description/>  
1369 - <distribute>Y</distribute>  
1370 - <custom_distribution/>  
1371 - <copies>1</copies>  
1372 - <partitioning>  
1373 - <method>none</method>  
1374 - <schema_name/>  
1375 - </partitioning>  
1376 - <connection>bus_control_variable</connection>  
1377 - <cache>N</cache>  
1378 - <cache_load_all>N</cache_load_all>  
1379 - <cache_size>0</cache_size>  
1380 - <lookup>  
1381 - <schema/>  
1382 - <table>bsth_c_s_ttinfo</table>  
1383 - <orderby/>  
1384 - <fail_on_multiple>N</fail_on_multiple>  
1385 - <eat_row_on_failure>N</eat_row_on_failure>  
1386 - <key>  
1387 - <name>xlid</name>  
1388 - <field>xl</field>  
1389 - <condition>&#x3d;</condition>  
1390 - <name2/>  
1391 - </key>  
1392 - <key>  
1393 - <name>ttinfoname_</name>  
1394 - <field>name</field>  
1395 - <condition>&#x3d;</condition>  
1396 - <name2/>  
1397 - </key>  
1398 - <key>  
1399 - <name>iscanceled</name>  
1400 - <field>is_cancel</field>  
1401 - <condition>&#x3d;</condition>  
1402 - <name2/>  
1403 - </key>  
1404 - <value>  
1405 - <name>id</name>  
1406 - <rename>ttid</rename>  
1407 - <default/>  
1408 - <type>Integer</type>  
1409 - </value>  
1410 - </lookup>  
1411 - <cluster_schema/>  
1412 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1413 - <xloc>1011</xloc>  
1414 - <yloc>134</yloc>  
1415 - <draw>Y</draw>  
1416 - </GUI>  
1417 - </step>  
1418 -  
1419 - <step>  
1420 - <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x4e0a;&#x4e0b;&#x884c;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>  
1421 - <type>DBLookup</type>  
1422 - <description/>  
1423 - <distribute>Y</distribute>  
1424 - <custom_distribution/>  
1425 - <copies>1</copies>  
1426 - <partitioning>  
1427 - <method>none</method>  
1428 - <schema_name/>  
1429 - </partitioning>  
1430 - <connection>bus_control_variable</connection>  
1431 - <cache>N</cache>  
1432 - <cache_load_all>N</cache_load_all>  
1433 - <cache_size>0</cache_size>  
1434 - <lookup>  
1435 - <schema/>  
1436 - <table>bsth_c_line_information</table>  
1437 - <orderby/>  
1438 - <fail_on_multiple>N</fail_on_multiple>  
1439 - <eat_row_on_failure>N</eat_row_on_failure>  
1440 - <key>  
1441 - <name>xlid</name>  
1442 - <field>line</field>  
1443 - <condition>&#x3d;</condition>  
1444 - <name2/>  
1445 - </key>  
1446 - <value>  
1447 - <name>up_mileage</name>  
1448 - <rename>up_mileage</rename>  
1449 - <default/>  
1450 - <type>Number</type>  
1451 - </value>  
1452 - <value>  
1453 - <name>down_mileage</name>  
1454 - <rename>down_mileage</rename>  
1455 - <default/>  
1456 - <type>Number</type>  
1457 - </value>  
1458 - <value>  
1459 - <name>up_travel_time</name>  
1460 - <rename>up_travel_time</rename>  
1461 - <default/>  
1462 - <type>Number</type>  
1463 - </value>  
1464 - <value>  
1465 - <name>down_travel_time</name>  
1466 - <rename>down_travel_time</rename>  
1467 - <default/>  
1468 - <type>Number</type>  
1469 - </value>  
1470 - </lookup>  
1471 - <cluster_schema/>  
1472 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1473 - <xloc>149</xloc>  
1474 - <yloc>581</yloc>  
1475 - <draw>Y</draw>  
1476 - </GUI>  
1477 - </step>  
1478 -  
1479 - <step>  
1480 - <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x5173;&#x8054;</name>  
1481 - <type>DBLookup</type>  
1482 - <description/>  
1483 - <distribute>Y</distribute>  
1484 - <custom_distribution/>  
1485 - <copies>1</copies>  
1486 - <partitioning>  
1487 - <method>none</method>  
1488 - <schema_name/>  
1489 - </partitioning>  
1490 - <connection>bus_control_variable</connection>  
1491 - <cache>N</cache>  
1492 - <cache_load_all>N</cache_load_all>  
1493 - <cache_size>0</cache_size>  
1494 - <lookup>  
1495 - <schema/>  
1496 - <table>bsth_c_line</table>  
1497 - <orderby/>  
1498 - <fail_on_multiple>N</fail_on_multiple>  
1499 - <eat_row_on_failure>N</eat_row_on_failure>  
1500 - <key>  
1501 - <name>xlname_</name>  
1502 - <field>name</field>  
1503 - <condition>&#x3d;</condition>  
1504 - <name2/>  
1505 - </key>  
1506 - <value>  
1507 - <name>id</name>  
1508 - <rename>xlid</rename>  
1509 - <default/>  
1510 - <type>Integer</type>  
1511 - </value>  
1512 - </lookup>  
1513 - <cluster_schema/>  
1514 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1515 - <xloc>1007</xloc>  
1516 - <yloc>43</yloc>  
1517 - <draw>Y</draw>  
1518 - </GUI>  
1519 - </step>  
1520 -  
1521 - <step>  
1522 - <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x51fa;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>  
1523 - <type>DBLookup</type>  
1524 - <description/>  
1525 - <distribute>Y</distribute>  
1526 - <custom_distribution/>  
1527 - <copies>1</copies>  
1528 - <partitioning>  
1529 - <method>none</method>  
1530 - <schema_name/>  
1531 - </partitioning>  
1532 - <connection>bus_control_variable</connection>  
1533 - <cache>N</cache>  
1534 - <cache_load_all>N</cache_load_all>  
1535 - <cache_size>0</cache_size>  
1536 - <lookup>  
1537 - <schema/>  
1538 - <table>bsth_c_line_information</table>  
1539 - <orderby/>  
1540 - <fail_on_multiple>N</fail_on_multiple>  
1541 - <eat_row_on_failure>N</eat_row_on_failure>  
1542 - <key>  
1543 - <name>xlid</name>  
1544 - <field>line</field>  
1545 - <condition>&#x3d;</condition>  
1546 - <name2/>  
1547 - </key>  
1548 - <value>  
1549 - <name>up_out_timer</name>  
1550 - <rename>up_out_timer</rename>  
1551 - <default/>  
1552 - <type>Number</type>  
1553 - </value>  
1554 - <value>  
1555 - <name>up_out_mileage</name>  
1556 - <rename>up_out_mileage</rename>  
1557 - <default/>  
1558 - <type>Number</type>  
1559 - </value>  
1560 - <value>  
1561 - <name>down_out_timer</name>  
1562 - <rename>down_out_timer</rename>  
1563 - <default/>  
1564 - <type>Number</type>  
1565 - </value>  
1566 - <value>  
1567 - <name>down_out_mileage</name>  
1568 - <rename>down_out_mileage</rename>  
1569 - <default/>  
1570 - <type>Number</type>  
1571 - </value>  
1572 - </lookup>  
1573 - <cluster_schema/>  
1574 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1575 - <xloc>335</xloc>  
1576 - <yloc>763</yloc>  
1577 - <draw>Y</draw>  
1578 - </GUI>  
1579 - </step>  
1580 -  
1581 - <step>  
1582 - <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x8fdb;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>  
1583 - <type>DBLookup</type>  
1584 - <description/>  
1585 - <distribute>Y</distribute>  
1586 - <custom_distribution/>  
1587 - <copies>1</copies>  
1588 - <partitioning>  
1589 - <method>none</method>  
1590 - <schema_name/>  
1591 - </partitioning>  
1592 - <connection>bus_control_variable</connection>  
1593 - <cache>N</cache>  
1594 - <cache_load_all>N</cache_load_all>  
1595 - <cache_size>0</cache_size>  
1596 - <lookup>  
1597 - <schema/>  
1598 - <table>bsth_c_line_information</table>  
1599 - <orderby/>  
1600 - <fail_on_multiple>N</fail_on_multiple>  
1601 - <eat_row_on_failure>N</eat_row_on_failure>  
1602 - <key>  
1603 - <name>xlid</name>  
1604 - <field>line</field>  
1605 - <condition>&#x3d;</condition>  
1606 - <name2/>  
1607 - </key>  
1608 - <value>  
1609 - <name>up_in_mileage</name>  
1610 - <rename>up_in_mileage</rename>  
1611 - <default/>  
1612 - <type>Number</type>  
1613 - </value>  
1614 - <value>  
1615 - <name>up_in_timer</name>  
1616 - <rename>up_in_timer</rename>  
1617 - <default/>  
1618 - <type>Number</type>  
1619 - </value>  
1620 - <value>  
1621 - <name>down_in_mileage</name>  
1622 - <rename>down_in_mileage</rename>  
1623 - <default/>  
1624 - <type>Number</type>  
1625 - </value>  
1626 - <value>  
1627 - <name>down_in_timer</name>  
1628 - <rename>down_in_timer</rename>  
1629 - <default/>  
1630 - <type>Number</type>  
1631 - </value>  
1632 - </lookup>  
1633 - <cluster_schema/>  
1634 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1635 - <xloc>553</xloc>  
1636 - <yloc>1004</yloc>  
1637 - <draw>Y</draw>  
1638 - </GUI>  
1639 - </step>  
1640 -  
1641 - <step>  
1642 - <name>&#x67e5;&#x627e;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;</name>  
1643 - <type>DBLookup</type>  
1644 - <description/>  
1645 - <distribute>Y</distribute>  
1646 - <custom_distribution/>  
1647 - <copies>1</copies>  
1648 - <partitioning>  
1649 - <method>none</method>  
1650 - <schema_name/>  
1651 - </partitioning>  
1652 - <connection>bus_control_variable</connection>  
1653 - <cache>N</cache>  
1654 - <cache_load_all>N</cache_load_all>  
1655 - <cache_size>0</cache_size>  
1656 - <lookup>  
1657 - <schema/>  
1658 - <table>bsth_c_stationroute</table>  
1659 - <orderby/>  
1660 - <fail_on_multiple>N</fail_on_multiple>  
1661 - <eat_row_on_failure>N</eat_row_on_failure>  
1662 - <key>  
1663 - <name>xlid</name>  
1664 - <field>line</field>  
1665 - <condition>&#x3d;</condition>  
1666 - <name2/>  
1667 - </key>  
1668 - <key>  
1669 - <name>sxx</name>  
1670 - <field>directions</field>  
1671 - <condition>&#x3d;</condition>  
1672 - <name2/>  
1673 - </key>  
1674 - <key>  
1675 - <name>endZdtype</name>  
1676 - <field>station_mark</field>  
1677 - <condition>&#x3d;</condition>  
1678 - <name2/>  
1679 - </key>  
1680 - <value>  
1681 - <name>station_name</name>  
1682 - <rename>zdzname</rename>  
1683 - <default/>  
1684 - <type>String</type>  
1685 - </value>  
1686 - <value>  
1687 - <name>station</name>  
1688 - <rename>zdzid</rename>  
1689 - <default/>  
1690 - <type>Integer</type>  
1691 - </value>  
1692 - </lookup>  
1693 - <cluster_schema/>  
1694 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1695 - <xloc>280</xloc>  
1696 - <yloc>404</yloc>  
1697 - <draw>Y</draw>  
1698 - </GUI>  
1699 - </step>  
1700 -  
1701 - <step>  
1702 - <name>&#x67e5;&#x627e;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</name>  
1703 - <type>DBLookup</type>  
1704 - <description/>  
1705 - <distribute>Y</distribute>  
1706 - <custom_distribution/>  
1707 - <copies>1</copies>  
1708 - <partitioning>  
1709 - <method>none</method>  
1710 - <schema_name/>  
1711 - </partitioning>  
1712 - <connection>bus_control_variable</connection>  
1713 - <cache>N</cache>  
1714 - <cache_load_all>N</cache_load_all>  
1715 - <cache_size>0</cache_size>  
1716 - <lookup>  
1717 - <schema/>  
1718 - <table>bsth_c_stationroute</table>  
1719 - <orderby/>  
1720 - <fail_on_multiple>N</fail_on_multiple>  
1721 - <eat_row_on_failure>N</eat_row_on_failure>  
1722 - <key>  
1723 - <name>xlid</name>  
1724 - <field>line</field>  
1725 - <condition>&#x3d;</condition>  
1726 - <name2/>  
1727 - </key>  
1728 - <key>  
1729 - <name>qdzname</name>  
1730 - <field>station_name</field>  
1731 - <condition>&#x3d;</condition>  
1732 - <name2/>  
1733 - </key>  
1734 - <key>  
1735 - <name>sendZdtype</name>  
1736 - <field>station_mark</field>  
1737 - <condition>&#x3d;</condition>  
1738 - <name2/>  
1739 - </key>  
1740 - <value>  
1741 - <name>station</name>  
1742 - <rename>qdzid</rename>  
1743 - <default/>  
1744 - <type>Integer</type>  
1745 - </value>  
1746 - <value>  
1747 - <name>directions</name>  
1748 - <rename>sxx</rename>  
1749 - <default/>  
1750 - <type>Integer</type>  
1751 - </value>  
1752 - </lookup>  
1753 - <cluster_schema/>  
1754 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1755 - <xloc>430</xloc>  
1756 - <yloc>403</yloc>  
1757 - <draw>Y</draw>  
1758 - </GUI>  
1759 - </step>  
1760 -  
1761 - <step>  
1762 - <name>&#x67e5;&#x627e;&#x8def;&#x724c;&#x5173;&#x8054;</name>  
1763 - <type>DBLookup</type>  
1764 - <description/>  
1765 - <distribute>Y</distribute>  
1766 - <custom_distribution/>  
1767 - <copies>1</copies>  
1768 - <partitioning>  
1769 - <method>none</method>  
1770 - <schema_name/>  
1771 - </partitioning>  
1772 - <connection>bus_control_variable</connection>  
1773 - <cache>N</cache>  
1774 - <cache_load_all>N</cache_load_all>  
1775 - <cache_size>0</cache_size>  
1776 - <lookup>  
1777 - <schema/>  
1778 - <table>bsth_c_s_gbi</table>  
1779 - <orderby/>  
1780 - <fail_on_multiple>N</fail_on_multiple>  
1781 - <eat_row_on_failure>N</eat_row_on_failure>  
1782 - <key>  
1783 - <name>xlid</name>  
1784 - <field>xl</field>  
1785 - <condition>&#x3d;</condition>  
1786 - <name2/>  
1787 - </key>  
1788 - <key>  
1789 - <name>lp</name>  
1790 - <field>lp_name</field>  
1791 - <condition>&#x3d;</condition>  
1792 - <name2/>  
1793 - </key>  
1794 - <value>  
1795 - <name>id</name>  
1796 - <rename>lpid</rename>  
1797 - <default/>  
1798 - <type>Integer</type>  
1799 - </value>  
1800 - </lookup>  
1801 - <cluster_schema/>  
1802 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1803 - <xloc>1013</xloc>  
1804 - <yloc>265</yloc>  
1805 - <draw>Y</draw>  
1806 - </GUI>  
1807 - </step>  
1808 -  
1809 - <step>  
1810 - <name>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ebf;&#x8def;&#x65b9;&#x5411;</name>  
1811 - <type>DBLookup</type>  
1812 - <description/>  
1813 - <distribute>Y</distribute>  
1814 - <custom_distribution/>  
1815 - <copies>1</copies>  
1816 - <partitioning>  
1817 - <method>none</method>  
1818 - <schema_name/>  
1819 - </partitioning>  
1820 - <connection>bus_control_variable</connection>  
1821 - <cache>N</cache>  
1822 - <cache_load_all>N</cache_load_all>  
1823 - <cache_size>0</cache_size>  
1824 - <lookup>  
1825 - <schema/>  
1826 - <table>bsth_c_stationroute</table>  
1827 - <orderby/>  
1828 - <fail_on_multiple>N</fail_on_multiple>  
1829 - <eat_row_on_failure>N</eat_row_on_failure>  
1830 - <key>  
1831 - <name>xlid</name>  
1832 - <field>line</field>  
1833 - <condition>&#x3d;</condition>  
1834 - <name2/>  
1835 - </key>  
1836 - <key>  
1837 - <name>startZdtype_calcu</name>  
1838 - <field>station_mark</field>  
1839 - <condition>&#x3d;</condition>  
1840 - <name2/>  
1841 - </key>  
1842 - <key>  
1843 - <name>qdzname_calcu</name>  
1844 - <field>station_name</field>  
1845 - <condition>&#x3d;</condition>  
1846 - <name2/>  
1847 - </key>  
1848 - <value>  
1849 - <name>directions</name>  
1850 - <rename>sxx</rename>  
1851 - <default/>  
1852 - <type>String</type>  
1853 - </value>  
1854 - </lookup>  
1855 - <cluster_schema/>  
1856 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1857 - <xloc>548</xloc>  
1858 - <yloc>610</yloc>  
1859 - <draw>Y</draw>  
1860 - </GUI>  
1861 - </step>  
1862 -  
1863 - <step>  
1864 - <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>  
1865 - <type>DBLookup</type>  
1866 - <description/>  
1867 - <distribute>Y</distribute>  
1868 - <custom_distribution/>  
1869 - <copies>1</copies>  
1870 - <partitioning>  
1871 - <method>none</method>  
1872 - <schema_name/>  
1873 - </partitioning>  
1874 - <connection>bus_control_variable</connection>  
1875 - <cache>N</cache>  
1876 - <cache_load_all>N</cache_load_all>  
1877 - <cache_size>0</cache_size>  
1878 - <lookup>  
1879 - <schema/>  
1880 - <table>bsth_c_stationroute</table>  
1881 - <orderby/>  
1882 - <fail_on_multiple>N</fail_on_multiple>  
1883 - <eat_row_on_failure>N</eat_row_on_failure>  
1884 - <key>  
1885 - <name>xlid</name>  
1886 - <field>line</field>  
1887 - <condition>&#x3d;</condition>  
1888 - <name2/>  
1889 - </key>  
1890 - <key>  
1891 - <name>endZdtype_calcu</name>  
1892 - <field>station_mark</field>  
1893 - <condition>&#x3d;</condition>  
1894 - <name2/>  
1895 - </key>  
1896 - <key>  
1897 - <name>sxx</name>  
1898 - <field>directions</field>  
1899 - <condition>&#x3d;</condition>  
1900 - <name2/>  
1901 - </key>  
1902 - <value>  
1903 - <name>station_name</name>  
1904 - <rename>zdzname_calcu</rename>  
1905 - <default/>  
1906 - <type>Integer</type>  
1907 - </value>  
1908 - </lookup>  
1909 - <cluster_schema/>  
1910 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1911 - <xloc>550</xloc>  
1912 - <yloc>701</yloc>  
1913 - <draw>Y</draw>  
1914 - </GUI>  
1915 - </step>  
1916 -  
1917 - <step>  
1918 - <name>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</name>  
1919 - <type>DBLookup</type>  
1920 - <description/>  
1921 - <distribute>Y</distribute>  
1922 - <custom_distribution/>  
1923 - <copies>1</copies>  
1924 - <partitioning>  
1925 - <method>none</method>  
1926 - <schema_name/>  
1927 - </partitioning>  
1928 - <connection>bus_control_variable</connection>  
1929 - <cache>N</cache>  
1930 - <cache_load_all>N</cache_load_all>  
1931 - <cache_size>0</cache_size>  
1932 - <lookup>  
1933 - <schema/>  
1934 - <table>bsth_c_stationroute</table>  
1935 - <orderby/>  
1936 - <fail_on_multiple>N</fail_on_multiple>  
1937 - <eat_row_on_failure>N</eat_row_on_failure>  
1938 - <key>  
1939 - <name>xlid</name>  
1940 - <field>line</field>  
1941 - <condition>&#x3d;</condition>  
1942 - <name2/>  
1943 - </key>  
1944 - <key>  
1945 - <name>zdzname_calcu</name>  
1946 - <field>station_name</field>  
1947 - <condition>&#x3d;</condition>  
1948 - <name2/>  
1949 - </key>  
1950 - <key>  
1951 - <name>startZdtype_calcu</name>  
1952 - <field>station_mark</field>  
1953 - <condition>&#x3d;</condition>  
1954 - <name2/>  
1955 - </key>  
1956 - <value>  
1957 - <name>directions</name>  
1958 - <rename>sxx2</rename>  
1959 - <default/>  
1960 - <type>Integer</type>  
1961 - </value>  
1962 - <value>  
1963 - <name>station</name>  
1964 - <rename>qdzid</rename>  
1965 - <default/>  
1966 - <type>Integer</type>  
1967 - </value>  
1968 - </lookup>  
1969 - <cluster_schema/>  
1970 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1971 - <xloc>551</xloc>  
1972 - <yloc>782</yloc>  
1973 - <draw>Y</draw>  
1974 - </GUI>  
1975 - </step>  
1976 -  
1977 - <step>  
1978 - <name>&#x6b63;&#x5e38;&#x73ed;&#x6b21;_&#x5904;&#x7406;&#x6570;&#x636e;</name>  
1979 - <type>ScriptValueMod</type>  
1980 - <description/>  
1981 - <distribute>Y</distribute>  
1982 - <custom_distribution/>  
1983 - <copies>1</copies>  
1984 - <partitioning>  
1985 - <method>none</method>  
1986 - <schema_name/>  
1987 - </partitioning>  
1988 - <compatible>N</compatible>  
1989 - <optimizationLevel>9</optimizationLevel>  
1990 - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>  
1991 - <jsScript_name>Script 1</jsScript_name>  
1992 - <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>  
1993 - </jsScript> </jsScripts> <fields> <field> <name>sendZdtype</name>  
1994 - <rename>sendZdtype</rename>  
1995 - <type>String</type>  
1996 - <length>-1</length>  
1997 - <precision>-1</precision>  
1998 - <replace>N</replace>  
1999 - </field> <field> <name>endZdtype</name>  
2000 - <rename>endZdtype</rename>  
2001 - <type>String</type>  
2002 - <length>-1</length>  
2003 - <precision>-1</precision>  
2004 - <replace>N</replace>  
2005 - </field> </fields> <cluster_schema/>  
2006 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2007 - <xloc>588</xloc>  
2008 - <yloc>403</yloc>  
2009 - <draw>Y</draw>  
2010 - </GUI>  
2011 - </step>  
2012 -  
2013 - <step>  
2014 - <name>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</name>  
2015 - <type>Dummy</type>  
2016 - <description/>  
2017 - <distribute>Y</distribute>  
2018 - <custom_distribution/>  
2019 - <copies>1</copies>  
2020 - <partitioning>  
2021 - <method>none</method>  
2022 - <schema_name/>  
2023 - </partitioning>  
2024 - <cluster_schema/>  
2025 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2026 - <xloc>725</xloc>  
2027 - <yloc>404</yloc>  
2028 - <draw>Y</draw>  
2029 - </GUI>  
2030 - </step>  
2031 -  
2032 - <step>  
2033 - <name>&#x6dfb;&#x52a0;&#x53d1;&#x8f66;&#x987a;&#x5e8f;&#x53f7;</name>  
2034 - <type>GroupBy</type>  
2035 - <description/>  
2036 - <distribute>Y</distribute>  
2037 - <custom_distribution/>  
2038 - <copies>1</copies>  
2039 - <partitioning>  
2040 - <method>none</method>  
2041 - <schema_name/>  
2042 - </partitioning>  
2043 - <all_rows>Y</all_rows>  
2044 - <ignore_aggregate>N</ignore_aggregate>  
2045 - <field_ignore/>  
2046 - <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>  
2047 - <prefix>grp</prefix>  
2048 - <add_linenr>Y</add_linenr>  
2049 - <linenr_fieldname>fcno</linenr_fieldname>  
2050 - <give_back_row>N</give_back_row>  
2051 - <group>  
2052 - <field>  
2053 - <name>lp</name>  
2054 - </field>  
2055 - </group>  
2056 - <fields>  
2057 - </fields>  
2058 - <cluster_schema/>  
2059 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2060 - <xloc>442</xloc>  
2061 - <yloc>44</yloc>  
2062 - <draw>Y</draw>  
2063 - </GUI>  
2064 - </step>  
2065 -  
2066 - <step>  
2067 - <name>&#x6dfb;&#x52a0;&#x5bf9;&#x5e94;&#x73ed;&#x6b21;&#x6570;</name>  
2068 - <type>GroupBy</type>  
2069 - <description/>  
2070 - <distribute>Y</distribute>  
2071 - <custom_distribution/>  
2072 - <copies>1</copies>  
2073 - <partitioning>  
2074 - <method>none</method>  
2075 - <schema_name/>  
2076 - </partitioning>  
2077 - <all_rows>Y</all_rows>  
2078 - <ignore_aggregate>N</ignore_aggregate>  
2079 - <field_ignore/>  
2080 - <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>  
2081 - <prefix>grp</prefix>  
2082 - <add_linenr>Y</add_linenr>  
2083 - <linenr_fieldname>bcs</linenr_fieldname>  
2084 - <give_back_row>N</give_back_row>  
2085 - <group>  
2086 - </group>  
2087 - <fields>  
2088 - </fields>  
2089 - <cluster_schema/>  
2090 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2091 - <xloc>692</xloc>  
2092 - <yloc>44</yloc>  
2093 - <draw>Y</draw>  
2094 - </GUI>  
2095 - </step>  
2096 -  
2097 - <step>  
2098 - <name>&#x73ed;&#x6b21;&#x6570;&#x636e;&#x8303;&#x5f0f;&#x5316;</name>  
2099 - <type>Normaliser</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 - <typefield>&#x7ad9;&#x70b9;&#x540d;&#x79f0;</typefield>  
2109 - <fields> </fields> <cluster_schema/>  
2110 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2111 - <xloc>248</xloc>  
2112 - <yloc>44</yloc>  
2113 - <draw>Y</draw>  
2114 - </GUI>  
2115 - </step>  
2116 -  
2117 - <step>  
2118 - <name>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178;</name>  
2119 - <type>ValueMapper</type>  
2120 - <description/>  
2121 - <distribute>Y</distribute>  
2122 - <custom_distribution/>  
2123 - <copies>1</copies>  
2124 - <partitioning>  
2125 - <method>none</method>  
2126 - <schema_name/>  
2127 - </partitioning>  
2128 - <field_to_use>bctype</field_to_use>  
2129 - <target_field>bctype_code</target_field>  
2130 - <non_match_default>&#x672a;&#x77e5;&#x7c7b;&#x578b;</non_match_default>  
2131 - <fields>  
2132 - <field>  
2133 - <source_value>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</source_value>  
2134 - <target_value>normal</target_value>  
2135 - </field>  
2136 - <field>  
2137 - <source_value>&#x51fa;&#x573a;</source_value>  
2138 - <target_value>out</target_value>  
2139 - </field>  
2140 - <field>  
2141 - <source_value>&#x8fdb;&#x573a;</source_value>  
2142 - <target_value>in</target_value>  
2143 - </field>  
2144 - <field>  
2145 - <source_value>&#x52a0;&#x6cb9;</source_value>  
2146 - <target_value>oil</target_value>  
2147 - </field>  
2148 - <field>  
2149 - <source_value>&#x4e34;&#x52a0;</source_value>  
2150 - <target_value>temp</target_value>  
2151 - </field>  
2152 - <field>  
2153 - <source_value>&#x533a;&#x95f4;</source_value>  
2154 - <target_value>region</target_value>  
2155 - </field>  
2156 - <field>  
2157 - <source_value>&#x653e;&#x7a7a;</source_value>  
2158 - <target_value>venting</target_value>  
2159 - </field>  
2160 - <field>  
2161 - <source_value>&#x653e;&#x5927;&#x7ad9;</source_value>  
2162 - <target_value>major</target_value>  
2163 - </field>  
2164 - </fields>  
2165 - <cluster_schema/>  
2166 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2167 - <xloc>149</xloc>  
2168 - <yloc>491</yloc>  
2169 - <draw>Y</draw>  
2170 - </GUI>  
2171 - </step>  
2172 -  
2173 - <step>  
2174 - <name>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 2</name>  
2175 - <type>ValueMapper</type>  
2176 - <description/>  
2177 - <distribute>Y</distribute>  
2178 - <custom_distribution/>  
2179 - <copies>1</copies>  
2180 - <partitioning>  
2181 - <method>none</method>  
2182 - <schema_name/>  
2183 - </partitioning>  
2184 - <field_to_use>bctype</field_to_use>  
2185 - <target_field>bctype_code</target_field>  
2186 - <non_match_default>&#x672a;&#x77e5;&#x7c7b;&#x578b;</non_match_default>  
2187 - <fields>  
2188 - <field>  
2189 - <source_value>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</source_value>  
2190 - <target_value>normal</target_value>  
2191 - </field>  
2192 - <field>  
2193 - <source_value>&#x51fa;&#x573a;</source_value>  
2194 - <target_value>out</target_value>  
2195 - </field>  
2196 - <field>  
2197 - <source_value>&#x8fdb;&#x573a;</source_value>  
2198 - <target_value>in</target_value>  
2199 - </field>  
2200 - <field>  
2201 - <source_value>&#x52a0;&#x6cb9;</source_value>  
2202 - <target_value>oil</target_value>  
2203 - </field>  
2204 - <field>  
2205 - <source_value>&#x4e34;&#x52a0;</source_value>  
2206 - <target_value>temp</target_value>  
2207 - </field>  
2208 - <field>  
2209 - <source_value>&#x533a;&#x95f4;</source_value>  
2210 - <target_value>region</target_value>  
2211 - </field>  
2212 - <field>  
2213 - <source_value>&#x653e;&#x7a7a;</source_value>  
2214 - <target_value>venting</target_value>  
2215 - </field>  
2216 - <field>  
2217 - <source_value>&#x653e;&#x5927;&#x7ad9;</source_value>  
2218 - <target_value>major</target_value>  
2219 - </field>  
2220 - </fields>  
2221 - <cluster_schema/>  
2222 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2223 - <xloc>333</xloc>  
2224 - <yloc>681</yloc>  
2225 - <draw>Y</draw>  
2226 - </GUI>  
2227 - </step>  
2228 -  
2229 - <step>  
2230 - <name>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 3</name>  
2231 - <type>ValueMapper</type>  
2232 - <description/>  
2233 - <distribute>Y</distribute>  
2234 - <custom_distribution/>  
2235 - <copies>1</copies>  
2236 - <partitioning>  
2237 - <method>none</method>  
2238 - <schema_name/>  
2239 - </partitioning>  
2240 - <field_to_use>bctype</field_to_use>  
2241 - <target_field>bctype_code</target_field>  
2242 - <non_match_default>&#x672a;&#x77e5;&#x7c7b;&#x578b;</non_match_default>  
2243 - <fields>  
2244 - <field>  
2245 - <source_value>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</source_value>  
2246 - <target_value>normal</target_value>  
2247 - </field>  
2248 - <field>  
2249 - <source_value>&#x51fa;&#x573a;</source_value>  
2250 - <target_value>out</target_value>  
2251 - </field>  
2252 - <field>  
2253 - <source_value>&#x8fdb;&#x573a;</source_value>  
2254 - <target_value>in</target_value>  
2255 - </field>  
2256 - <field>  
2257 - <source_value>&#x52a0;&#x6cb9;</source_value>  
2258 - <target_value>oil</target_value>  
2259 - </field>  
2260 - <field>  
2261 - <source_value>&#x4e34;&#x52a0;</source_value>  
2262 - <target_value>temp</target_value>  
2263 - </field>  
2264 - <field>  
2265 - <source_value>&#x533a;&#x95f4;</source_value>  
2266 - <target_value>region</target_value>  
2267 - </field>  
2268 - <field>  
2269 - <source_value>&#x653e;&#x7a7a;</source_value>  
2270 - <target_value>venting</target_value>  
2271 - </field>  
2272 - <field>  
2273 - <source_value>&#x653e;&#x5927;&#x7ad9;</source_value>  
2274 - <target_value>major</target_value>  
2275 - </field>  
2276 - </fields>  
2277 - <cluster_schema/>  
2278 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2279 - <xloc>551</xloc>  
2280 - <yloc>928</yloc>  
2281 - <draw>Y</draw>  
2282 - </GUI>  
2283 - </step>  
2284 -  
2285 - <step>  
2286 - <name>&#x7c7b;&#x578b;&#x4fee;&#x6b63;</name>  
2287 - <type>SelectValues</type>  
2288 - <description/>  
2289 - <distribute>Y</distribute>  
2290 - <custom_distribution/>  
2291 - <copies>1</copies>  
2292 - <partitioning>  
2293 - <method>none</method>  
2294 - <schema_name/>  
2295 - </partitioning>  
2296 - <fields> <select_unspecified>N</select_unspecified>  
2297 - <meta> <name>jhlc</name>  
2298 - <rename>jhlc</rename>  
2299 - <type>Number</type>  
2300 - <length>-2</length>  
2301 - <precision>-2</precision>  
2302 - <conversion_mask/>  
2303 - <date_format_lenient>false</date_format_lenient>  
2304 - <date_format_locale/>  
2305 - <date_format_timezone/>  
2306 - <lenient_string_to_number>false</lenient_string_to_number>  
2307 - <encoding/>  
2308 - <decimal_symbol/>  
2309 - <grouping_symbol/>  
2310 - <currency_symbol/>  
2311 - <storage_type/>  
2312 - </meta> <meta> <name>bcsj</name>  
2313 - <rename>bcsj</rename>  
2314 - <type>Integer</type>  
2315 - <length>-2</length>  
2316 - <precision>-2</precision>  
2317 - <conversion_mask/>  
2318 - <date_format_lenient>false</date_format_lenient>  
2319 - <date_format_locale/>  
2320 - <date_format_timezone/>  
2321 - <lenient_string_to_number>false</lenient_string_to_number>  
2322 - <encoding/>  
2323 - <decimal_symbol/>  
2324 - <grouping_symbol/>  
2325 - <currency_symbol/>  
2326 - <storage_type/>  
2327 - </meta> </fields> <cluster_schema/>  
2328 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2329 - <xloc>146</xloc>  
2330 - <yloc>768</yloc>  
2331 - <draw>Y</draw>  
2332 - </GUI>  
2333 - </step>  
2334 -  
2335 - <step>  
2336 - <name>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 2</name>  
2337 - <type>SelectValues</type>  
2338 - <description/>  
2339 - <distribute>Y</distribute>  
2340 - <custom_distribution/>  
2341 - <copies>1</copies>  
2342 - <partitioning>  
2343 - <method>none</method>  
2344 - <schema_name/>  
2345 - </partitioning>  
2346 - <fields> <select_unspecified>N</select_unspecified>  
2347 - <meta> <name>out_mileage</name>  
2348 - <rename>out_mileage</rename>  
2349 - <type>Number</type>  
2350 - <length>-2</length>  
2351 - <precision>-2</precision>  
2352 - <conversion_mask/>  
2353 - <date_format_lenient>false</date_format_lenient>  
2354 - <date_format_locale/>  
2355 - <date_format_timezone/>  
2356 - <lenient_string_to_number>false</lenient_string_to_number>  
2357 - <encoding/>  
2358 - <decimal_symbol/>  
2359 - <grouping_symbol/>  
2360 - <currency_symbol/>  
2361 - <storage_type/>  
2362 - </meta> <meta> <name>out_time</name>  
2363 - <rename>out_time</rename>  
2364 - <type>Integer</type>  
2365 - <length>-2</length>  
2366 - <precision>-2</precision>  
2367 - <conversion_mask/>  
2368 - <date_format_lenient>false</date_format_lenient>  
2369 - <date_format_locale/>  
2370 - <date_format_timezone/>  
2371 - <lenient_string_to_number>false</lenient_string_to_number>  
2372 - <encoding/>  
2373 - <decimal_symbol/>  
2374 - <grouping_symbol/>  
2375 - <currency_symbol/>  
2376 - <storage_type/>  
2377 - </meta> </fields> <cluster_schema/>  
2378 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2379 - <xloc>338</xloc>  
2380 - <yloc>949</yloc>  
2381 - <draw>Y</draw>  
2382 - </GUI>  
2383 - </step>  
2384 -  
2385 - <step>  
2386 - <name>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 3</name>  
2387 - <type>SelectValues</type>  
2388 - <description/>  
2389 - <distribute>Y</distribute>  
2390 - <custom_distribution/>  
2391 - <copies>1</copies>  
2392 - <partitioning>  
2393 - <method>none</method>  
2394 - <schema_name/>  
2395 - </partitioning>  
2396 - <fields> <select_unspecified>N</select_unspecified>  
2397 - <meta> <name>parade_mileage</name>  
2398 - <rename>parade_mileage</rename>  
2399 - <type>Number</type>  
2400 - <length>-2</length>  
2401 - <precision>-2</precision>  
2402 - <conversion_mask/>  
2403 - <date_format_lenient>false</date_format_lenient>  
2404 - <date_format_locale/>  
2405 - <date_format_timezone/>  
2406 - <lenient_string_to_number>false</lenient_string_to_number>  
2407 - <encoding/>  
2408 - <decimal_symbol/>  
2409 - <grouping_symbol/>  
2410 - <currency_symbol/>  
2411 - <storage_type/>  
2412 - </meta> <meta> <name>parade_time</name>  
2413 - <rename>parade_time</rename>  
2414 - <type>Integer</type>  
2415 - <length>-2</length>  
2416 - <precision>-2</precision>  
2417 - <conversion_mask/>  
2418 - <date_format_lenient>false</date_format_lenient>  
2419 - <date_format_locale/>  
2420 - <date_format_timezone/>  
2421 - <lenient_string_to_number>false</lenient_string_to_number>  
2422 - <encoding/>  
2423 - <decimal_symbol/>  
2424 - <grouping_symbol/>  
2425 - <currency_symbol/>  
2426 - <storage_type/>  
2427 - </meta> </fields> <cluster_schema/>  
2428 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2429 - <xloc>875</xloc>  
2430 - <yloc>1001</yloc>  
2431 - <draw>Y</draw>  
2432 - </GUI>  
2433 - </step>  
2434 -  
2435 - <step>  
2436 - <name>&#x8ba1;&#x7b97;&#x73ed;&#x6b21;&#x7c7b;&#x578b;</name>  
2437 - <type>ValueMapper</type>  
2438 - <description/>  
2439 - <distribute>Y</distribute>  
2440 - <custom_distribution/>  
2441 - <copies>1</copies>  
2442 - <partitioning>  
2443 - <method>none</method>  
2444 - <schema_name/>  
2445 - </partitioning>  
2446 - <field_to_use>qdzname</field_to_use>  
2447 - <target_field>bctype</target_field>  
2448 - <non_match_default>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</non_match_default>  
2449 - <fields>  
2450 - <field>  
2451 - <source_value>&#x51fa;&#x573a;</source_value>  
2452 - <target_value>&#x51fa;&#x573a;</target_value>  
2453 - </field>  
2454 - <field>  
2455 - <source_value>&#x8fdb;&#x573a;</source_value>  
2456 - <target_value>&#x8fdb;&#x573a;</target_value>  
2457 - </field>  
2458 - </fields>  
2459 - <cluster_schema/>  
2460 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2461 - <xloc>1014</xloc>  
2462 - <yloc>401</yloc>  
2463 - <draw>Y</draw>  
2464 - </GUI>  
2465 - </step>  
2466 -  
2467 - <step>  
2468 - <name>&#x8bb0;&#x5f55;&#x5173;&#x8054; &#x28;&#x7b1b;&#x5361;&#x5c14;&#x8f93;&#x51fa;&#x29;</name>  
2469 - <type>JoinRows</type>  
2470 - <description/>  
2471 - <distribute>Y</distribute>  
2472 - <custom_distribution/>  
2473 - <copies>1</copies>  
2474 - <partitioning>  
2475 - <method>none</method>  
2476 - <schema_name/>  
2477 - </partitioning>  
2478 - <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>  
2479 - <prefix>out</prefix>  
2480 - <cache_size>500</cache_size>  
2481 - <main/>  
2482 - <compare>  
2483 -<condition>  
2484 - <negated>N</negated>  
2485 - <leftvalue/>  
2486 - <function>&#x3d;</function>  
2487 - <rightvalue/>  
2488 - </condition>  
2489 - </compare>  
2490 - <cluster_schema/>  
2491 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2492 - <xloc>310</xloc>  
2493 - <yloc>133</yloc>  
2494 - <draw>Y</draw>  
2495 - </GUI>  
2496 - </step>  
2497 -  
2498 - <step>  
2499 - <name>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;&#xff08;&#x53d1;&#x8f66;&#x65f6;&#x95f4;&#x4e3a;&#x7a7a;&#xff09;</name>  
2500 - <type>FilterRows</type>  
2501 - <description/>  
2502 - <distribute>Y</distribute>  
2503 - <custom_distribution/>  
2504 - <copies>1</copies>  
2505 - <partitioning>  
2506 - <method>none</method>  
2507 - <schema_name/>  
2508 - </partitioning>  
2509 -<send_true_to/>  
2510 -<send_false_to/>  
2511 - <compare>  
2512 -<condition>  
2513 - <negated>N</negated>  
2514 - <leftvalue>sendtime</leftvalue>  
2515 - <function>IS NOT NULL</function>  
2516 - <rightvalue/>  
2517 - </condition>  
2518 - </compare>  
2519 - <cluster_schema/>  
2520 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2521 - <xloc>571</xloc>  
2522 - <yloc>44</yloc>  
2523 - <draw>Y</draw>  
2524 - </GUI>  
2525 - </step>  
2526 -  
2527 - <step>  
2528 - <name>&#x8fdb;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x8d77;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</name>  
2529 - <type>ScriptValueMod</type>  
2530 - <description/>  
2531 - <distribute>Y</distribute>  
2532 - <custom_distribution/>  
2533 - <copies>1</copies>  
2534 - <partitioning>  
2535 - <method>none</method>  
2536 - <schema_name/>  
2537 - </partitioning>  
2538 - <compatible>N</compatible>  
2539 - <optimizationLevel>9</optimizationLevel>  
2540 - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>  
2541 - <jsScript_name>Script 1</jsScript_name>  
2542 - <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>  
2543 - </jsScript> </jsScripts> <fields> <field> <name>qdzname_calcu</name>  
2544 - <rename>qdzname_calcu</rename>  
2545 - <type>String</type>  
2546 - <length>-1</length>  
2547 - <precision>-1</precision>  
2548 - <replace>N</replace>  
2549 - </field> <field> <name>startZdtype_calcu</name>  
2550 - <rename>startZdtype_calcu</rename>  
2551 - <type>String</type>  
2552 - <length>-1</length>  
2553 - <precision>-1</precision>  
2554 - <replace>N</replace>  
2555 - </field> <field> <name>endZdtype_calcu</name>  
2556 - <rename>endZdtype_calcu</rename>  
2557 - <type>String</type>  
2558 - <length>-1</length>  
2559 - <precision>-1</precision>  
2560 - <replace>N</replace>  
2561 - </field> </fields> <cluster_schema/>  
2562 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2563 - <xloc>754</xloc>  
2564 - <yloc>610</yloc>  
2565 - <draw>Y</draw>  
2566 - </GUI>  
2567 - </step>  
2568 -  
2569 - <step>  
2570 - <name>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</name>  
2571 - <type>Dummy</type>  
2572 - <description/>  
2573 - <distribute>Y</distribute>  
2574 - <custom_distribution/>  
2575 - <copies>1</copies>  
2576 - <partitioning>  
2577 - <method>none</method>  
2578 - <schema_name/>  
2579 - </partitioning>  
2580 - <cluster_schema/>  
2581 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2582 - <xloc>997</xloc>  
2583 - <yloc>606</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> 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;&#xa;&#xa;var destory &#x3d; 0&#x3b; &#x2f;&#x2f; &#x672a;&#x64a4;&#x9500;flag</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> <field> <name>destory</name>
  454 + <rename>destory</rename>
  455 + <type>Integer</type>
  456 + <length>-1</length>
  457 + <precision>-1</precision>
  458 + <replace>N</replace>
  459 + </field> </fields> <cluster_schema/>
  460 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  461 + <xloc>575</xloc>
  462 + <yloc>502</yloc>
  463 + <draw>Y</draw>
  464 + </GUI>
  465 + </step>
  466 +
  467 + <step>
  468 + <name>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</name>
  469 + <type>Dummy</type>
  470 + <description/>
  471 + <distribute>Y</distribute>
  472 + <custom_distribution/>
  473 + <copies>1</copies>
  474 + <partitioning>
  475 + <method>none</method>
  476 + <schema_name/>
  477 + </partitioning>
  478 + <cluster_schema/>
  479 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  480 + <xloc>869</xloc>
  481 + <yloc>504</yloc>
  482 + <draw>Y</draw>
  483 + </GUI>
  484 + </step>
  485 +
  486 + <step>
  487 + <name>&#x5206;&#x7ec4;&#x5404;&#x4e2a;&#x8def;&#x724c;&#x7684;&#x7ad9;</name>
  488 + <type>GroupBy</type>
  489 + <description/>
  490 + <distribute>Y</distribute>
  491 + <custom_distribution/>
  492 + <copies>1</copies>
  493 + <partitioning>
  494 + <method>none</method>
  495 + <schema_name/>
  496 + </partitioning>
  497 + <all_rows>Y</all_rows>
  498 + <ignore_aggregate>N</ignore_aggregate>
  499 + <field_ignore/>
  500 + <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
  501 + <prefix>grp</prefix>
  502 + <add_linenr>Y</add_linenr>
  503 + <linenr_fieldname>gno</linenr_fieldname>
  504 + <give_back_row>N</give_back_row>
  505 + <group>
  506 + <field>
  507 + <name>lp</name>
  508 + </field>
  509 + </group>
  510 + <fields>
  511 + <field>
  512 + <aggregate>qdzgroups</aggregate>
  513 + <subject>qdzname</subject>
  514 + <type>CONCAT_STRING</type>
  515 + <valuefield>,</valuefield>
  516 + </field>
  517 + </fields>
  518 + <cluster_schema/>
  519 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  520 + <xloc>892</xloc>
  521 + <yloc>44</yloc>
  522 + <draw>Y</draw>
  523 + </GUI>
  524 + </step>
  525 +
  526 + <step>
  527 + <name>&#x5339;&#x914d;&#x4e0a;&#x4e0b;&#x884c;&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
  528 + <type>ScriptValueMod</type>
  529 + <description/>
  530 + <distribute>Y</distribute>
  531 + <custom_distribution/>
  532 + <copies>1</copies>
  533 + <partitioning>
  534 + <method>none</method>
  535 + <schema_name/>
  536 + </partitioning>
  537 + <compatible>N</compatible>
  538 + <optimizationLevel>9</optimizationLevel>
  539 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  540 + <jsScript_name>Script 1</jsScript_name>
  541 + <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>
  542 + </jsScript> </jsScripts> <fields> <field> <name>jhlc</name>
  543 + <rename>jhlc</rename>
  544 + <type>String</type>
  545 + <length>-1</length>
  546 + <precision>-1</precision>
  547 + <replace>N</replace>
  548 + </field> <field> <name>bcsj</name>
  549 + <rename>bcsj</rename>
  550 + <type>String</type>
  551 + <length>-1</length>
  552 + <precision>-1</precision>
  553 + <replace>N</replace>
  554 + </field> </fields> <cluster_schema/>
  555 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  556 + <xloc>148</xloc>
  557 + <yloc>674</yloc>
  558 + <draw>Y</draw>
  559 + </GUI>
  560 + </step>
  561 +
  562 + <step>
  563 + <name>&#x5339;&#x914d;&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
  564 + <type>ScriptValueMod</type>
  565 + <description/>
  566 + <distribute>Y</distribute>
  567 + <custom_distribution/>
  568 + <copies>1</copies>
  569 + <partitioning>
  570 + <method>none</method>
  571 + <schema_name/>
  572 + </partitioning>
  573 + <compatible>N</compatible>
  574 + <optimizationLevel>9</optimizationLevel>
  575 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  576 + <jsScript_name>Script 1</jsScript_name>
  577 + <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>
  578 + </jsScript> </jsScripts> <fields> <field> <name>out_mileage</name>
  579 + <rename>out_mileage</rename>
  580 + <type>String</type>
  581 + <length>-1</length>
  582 + <precision>-1</precision>
  583 + <replace>N</replace>
  584 + </field> <field> <name>out_time</name>
  585 + <rename>out_time</rename>
  586 + <type>String</type>
  587 + <length>-1</length>
  588 + <precision>-1</precision>
  589 + <replace>N</replace>
  590 + </field> </fields> <cluster_schema/>
  591 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  592 + <xloc>336</xloc>
  593 + <yloc>862</yloc>
  594 + <draw>Y</draw>
  595 + </GUI>
  596 + </step>
  597 +
  598 + <step>
  599 + <name>&#x5339;&#x914d;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
  600 + <type>ScriptValueMod</type>
  601 + <description/>
  602 + <distribute>Y</distribute>
  603 + <custom_distribution/>
  604 + <copies>1</copies>
  605 + <partitioning>
  606 + <method>none</method>
  607 + <schema_name/>
  608 + </partitioning>
  609 + <compatible>N</compatible>
  610 + <optimizationLevel>9</optimizationLevel>
  611 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  612 + <jsScript_name>Script 1</jsScript_name>
  613 + <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>
  614 + </jsScript> </jsScripts> <fields> <field> <name>parade_mileage</name>
  615 + <rename>parade_mileage</rename>
  616 + <type>String</type>
  617 + <length>-1</length>
  618 + <precision>-1</precision>
  619 + <replace>N</replace>
  620 + </field> <field> <name>parade_time</name>
  621 + <rename>parade_time</rename>
  622 + <type>String</type>
  623 + <length>-1</length>
  624 + <precision>-1</precision>
  625 + <replace>N</replace>
  626 + </field> </fields> <cluster_schema/>
  627 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  628 + <xloc>726</xloc>
  629 + <yloc>1005</yloc>
  630 + <draw>Y</draw>
  631 + </GUI>
  632 + </step>
  633 +
  634 + <step>
  635 + <name>&#x589e;&#x52a0;&#x65f6;&#x523b;&#x8868;&#x540d;&#x5b57;&#xff0c;&#x7ebf;&#x8def;&#x540d;&#x5b57;&#xff0c;&#x505c;&#x8f66;&#x573a;&#x540d;&#x5b57;</name>
  636 + <type>DataGrid</type>
  637 + <description/>
  638 + <distribute>Y</distribute>
  639 + <custom_distribution/>
  640 + <copies>1</copies>
  641 + <partitioning>
  642 + <method>none</method>
  643 + <schema_name/>
  644 + </partitioning>
  645 + <fields>
  646 + </fields>
  647 + <data>
  648 + <line> </line>
  649 + </data>
  650 + <cluster_schema/>
  651 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  652 + <xloc>110</xloc>
  653 + <yloc>133</yloc>
  654 + <draw>Y</draw>
  655 + </GUI>
  656 + </step>
  657 +
  658 + <step>
  659 + <name>&#x5904;&#x7406;&#x6570;&#x636e;</name>
  660 + <type>ScriptValueMod</type>
  661 + <description/>
  662 + <distribute>Y</distribute>
  663 + <custom_distribution/>
  664 + <copies>1</copies>
  665 + <partitioning>
  666 + <method>none</method>
  667 + <schema_name/>
  668 + </partitioning>
  669 + <compatible>N</compatible>
  670 + <optimizationLevel>9</optimizationLevel>
  671 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  672 + <jsScript_name>Script 1</jsScript_name>
  673 + <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>
  674 + </jsScript> </jsScripts> <fields> <field> <name>qdzname</name>
  675 + <rename>qdzname</rename>
  676 + <type>String</type>
  677 + <length>-1</length>
  678 + <precision>-1</precision>
  679 + <replace>Y</replace>
  680 + </field> <field> <name>isfb</name>
  681 + <rename>isfb</rename>
  682 + <type>Integer</type>
  683 + <length>-1</length>
  684 + <precision>-1</precision>
  685 + <replace>N</replace>
  686 + </field> <field> <name>iscanceled</name>
  687 + <rename>iscanceled</rename>
  688 + <type>Integer</type>
  689 + <length>-1</length>
  690 + <precision>-1</precision>
  691 + <replace>N</replace>
  692 + </field> <field> <name>sendtime_calcu</name>
  693 + <rename>sendtime_calcu</rename>
  694 + <type>String</type>
  695 + <length>-1</length>
  696 + <precision>-1</precision>
  697 + <replace>N</replace>
  698 + </field> </fields> <cluster_schema/>
  699 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  700 + <xloc>788</xloc>
  701 + <yloc>44</yloc>
  702 + <draw>Y</draw>
  703 + </GUI>
  704 + </step>
  705 +
  706 + <step>
  707 + <name>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</name>
  708 + <type>SelectValues</type>
  709 + <description/>
  710 + <distribute>Y</distribute>
  711 + <custom_distribution/>
  712 + <copies>1</copies>
  713 + <partitioning>
  714 + <method>none</method>
  715 + <schema_name/>
  716 + </partitioning>
  717 + <fields> <field> <name>&#x8def;&#x724c;</name>
  718 + <rename>lp</rename>
  719 + <length>-2</length>
  720 + <precision>-2</precision>
  721 + </field> <field> <name>&#x7ad9;&#x70b9;&#x540d;&#x79f0;</name>
  722 + <rename>qdzname</rename>
  723 + <length>-2</length>
  724 + <precision>-2</precision>
  725 + </field> <field> <name>&#x53d1;&#x8f66;&#x65f6;&#x95f4;</name>
  726 + <rename>sendtime</rename>
  727 + <length>-2</length>
  728 + <precision>-2</precision>
  729 + </field> <select_unspecified>Y</select_unspecified>
  730 + </fields> <cluster_schema/>
  731 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  732 + <xloc>444</xloc>
  733 + <yloc>131</yloc>
  734 + <draw>Y</draw>
  735 + </GUI>
  736 + </step>
  737 +
  738 + <step>
  739 + <name>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;1</name>
  740 + <type>FilterRows</type>
  741 + <description/>
  742 + <distribute>Y</distribute>
  743 + <custom_distribution/>
  744 + <copies>1</copies>
  745 + <partitioning>
  746 + <method>none</method>
  747 + <schema_name/>
  748 + </partitioning>
  749 +<send_true_to>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</send_true_to>
  750 +<send_false_to>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</send_false_to>
  751 + <compare>
  752 +<condition>
  753 + <negated>N</negated>
  754 + <leftvalue>bctype</leftvalue>
  755 + <function>&#x3d;</function>
  756 + <rightvalue/>
  757 + <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>
  758 + </compare>
  759 + <cluster_schema/>
  760 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  761 + <xloc>860</xloc>
  762 + <yloc>401</yloc>
  763 + <draw>Y</draw>
  764 + </GUI>
  765 + </step>
  766 +
  767 + <step>
  768 + <name>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</name>
  769 + <type>FilterRows</type>
  770 + <description/>
  771 + <distribute>Y</distribute>
  772 + <custom_distribution/>
  773 + <copies>1</copies>
  774 + <partitioning>
  775 + <method>none</method>
  776 + <schema_name/>
  777 + </partitioning>
  778 +<send_true_to>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</send_true_to>
  779 +<send_false_to>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</send_false_to>
  780 + <compare>
  781 +<condition>
  782 + <negated>N</negated>
  783 + <leftvalue>bctype</leftvalue>
  784 + <function>&#x3d;</function>
  785 + <rightvalue/>
  786 + <value><name>constant</name><type>String</type><text>&#x51fa;&#x573a;</text><length>-1</length><precision>-1</precision><isnull>N</isnull><mask/></value> </condition>
  787 + </compare>
  788 + <cluster_schema/>
  789 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  790 + <xloc>995</xloc>
  791 + <yloc>503</yloc>
  792 + <draw>Y</draw>
  793 + </GUI>
  794 + </step>
  795 +
  796 + <step>
  797 + <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail</name>
  798 + <type>InsertUpdate</type>
  799 + <description/>
  800 + <distribute>Y</distribute>
  801 + <custom_distribution/>
  802 + <copies>1</copies>
  803 + <partitioning>
  804 + <method>none</method>
  805 + <schema_name/>
  806 + </partitioning>
  807 + <connection>bus_control_variable</connection>
  808 + <commit>100</commit>
  809 + <update_bypassed>N</update_bypassed>
  810 + <lookup>
  811 + <schema/>
  812 + <table>bsth_c_s_ttinfo_detail</table>
  813 + <key>
  814 + <name>xlid</name>
  815 + <field>xl</field>
  816 + <condition>&#x3d;</condition>
  817 + <name2/>
  818 + </key>
  819 + <key>
  820 + <name>ttid</name>
  821 + <field>ttinfo</field>
  822 + <condition>&#x3d;</condition>
  823 + <name2/>
  824 + </key>
  825 + <key>
  826 + <name>lpid</name>
  827 + <field>lp</field>
  828 + <condition>&#x3d;</condition>
  829 + <name2/>
  830 + </key>
  831 + <key>
  832 + <name>fcno</name>
  833 + <field>fcno</field>
  834 + <condition>&#x3d;</condition>
  835 + <name2/>
  836 + </key>
  837 + <key>
  838 + <name>bcs</name>
  839 + <field>bcs</field>
  840 + <condition>&#x3d;</condition>
  841 + <name2/>
  842 + </key>
  843 + <value>
  844 + <name>lp</name>
  845 + <rename>lpid</rename>
  846 + <update>Y</update>
  847 + </value>
  848 + <value>
  849 + <name>bc_type</name>
  850 + <rename>bctype_code</rename>
  851 + <update>Y</update>
  852 + </value>
  853 + <value>
  854 + <name>bcs</name>
  855 + <rename>bcs</rename>
  856 + <update>Y</update>
  857 + </value>
  858 + <value>
  859 + <name>bcsj</name>
  860 + <rename>bcsj</rename>
  861 + <update>Y</update>
  862 + </value>
  863 + <value>
  864 + <name>fcno</name>
  865 + <rename>fcno</rename>
  866 + <update>Y</update>
  867 + </value>
  868 + <value>
  869 + <name>jhlc</name>
  870 + <rename>jhlc</rename>
  871 + <update>Y</update>
  872 + </value>
  873 + <value>
  874 + <name>fcsj</name>
  875 + <rename>sendtime_calcu</rename>
  876 + <update>Y</update>
  877 + </value>
  878 + <value>
  879 + <name>ttinfo</name>
  880 + <rename>ttid</rename>
  881 + <update>Y</update>
  882 + </value>
  883 + <value>
  884 + <name>xl</name>
  885 + <rename>xlid</rename>
  886 + <update>Y</update>
  887 + </value>
  888 + <value>
  889 + <name>qdz</name>
  890 + <rename>qdzid</rename>
  891 + <update>Y</update>
  892 + </value>
  893 + <value>
  894 + <name>zdz</name>
  895 + <rename>zdzid</rename>
  896 + <update>Y</update>
  897 + </value>
  898 + <value>
  899 + <name>xl_dir</name>
  900 + <rename>sxx</rename>
  901 + <update>Y</update>
  902 + </value>
  903 + <value>
  904 + <name>isfb</name>
  905 + <rename>isfb</rename>
  906 + <update>Y</update>
  907 + </value>
  908 + </lookup>
  909 + <cluster_schema/>
  910 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  911 + <xloc>143</xloc>
  912 + <yloc>860</yloc>
  913 + <draw>Y</draw>
  914 + </GUI>
  915 + </step>
  916 +
  917 + <step>
  918 + <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail 2</name>
  919 + <type>InsertUpdate</type>
  920 + <description/>
  921 + <distribute>Y</distribute>
  922 + <custom_distribution/>
  923 + <copies>1</copies>
  924 + <partitioning>
  925 + <method>none</method>
  926 + <schema_name/>
  927 + </partitioning>
  928 + <connection>bus_control_variable</connection>
  929 + <commit>100</commit>
  930 + <update_bypassed>N</update_bypassed>
  931 + <lookup>
  932 + <schema/>
  933 + <table>bsth_c_s_ttinfo_detail</table>
  934 + <key>
  935 + <name>xlid</name>
  936 + <field>xl</field>
  937 + <condition>&#x3d;</condition>
  938 + <name2/>
  939 + </key>
  940 + <key>
  941 + <name>ttid</name>
  942 + <field>ttinfo</field>
  943 + <condition>&#x3d;</condition>
  944 + <name2/>
  945 + </key>
  946 + <key>
  947 + <name>lpid</name>
  948 + <field>lp</field>
  949 + <condition>&#x3d;</condition>
  950 + <name2/>
  951 + </key>
  952 + <key>
  953 + <name>fcno</name>
  954 + <field>fcno</field>
  955 + <condition>&#x3d;</condition>
  956 + <name2/>
  957 + </key>
  958 + <key>
  959 + <name>bcs</name>
  960 + <field>bcs</field>
  961 + <condition>&#x3d;</condition>
  962 + <name2/>
  963 + </key>
  964 + <value>
  965 + <name>tcc</name>
  966 + <rename>qdzid</rename>
  967 + <update>Y</update>
  968 + </value>
  969 + <value>
  970 + <name>zdz</name>
  971 + <rename>zdzid</rename>
  972 + <update>Y</update>
  973 + </value>
  974 + <value>
  975 + <name>xl</name>
  976 + <rename>xlid</rename>
  977 + <update>Y</update>
  978 + </value>
  979 + <value>
  980 + <name>ttinfo</name>
  981 + <rename>ttid</rename>
  982 + <update>Y</update>
  983 + </value>
  984 + <value>
  985 + <name>xl_dir</name>
  986 + <rename>sxx</rename>
  987 + <update>Y</update>
  988 + </value>
  989 + <value>
  990 + <name>lp</name>
  991 + <rename>lpid</rename>
  992 + <update>Y</update>
  993 + </value>
  994 + <value>
  995 + <name>jhlc</name>
  996 + <rename>out_mileage</rename>
  997 + <update>Y</update>
  998 + </value>
  999 + <value>
  1000 + <name>fcsj</name>
  1001 + <rename>sendtime_calcu</rename>
  1002 + <update>Y</update>
  1003 + </value>
  1004 + <value>
  1005 + <name>bcsj</name>
  1006 + <rename>out_time</rename>
  1007 + <update>Y</update>
  1008 + </value>
  1009 + <value>
  1010 + <name>bcs</name>
  1011 + <rename>bcs</rename>
  1012 + <update>Y</update>
  1013 + </value>
  1014 + <value>
  1015 + <name>fcno</name>
  1016 + <rename>fcno</rename>
  1017 + <update>Y</update>
  1018 + </value>
  1019 + <value>
  1020 + <name>bc_type</name>
  1021 + <rename>bctype_code</rename>
  1022 + <update>Y</update>
  1023 + </value>
  1024 + <value>
  1025 + <name>isfb</name>
  1026 + <rename>isfb</rename>
  1027 + <update>Y</update>
  1028 + </value>
  1029 + </lookup>
  1030 + <cluster_schema/>
  1031 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1032 + <xloc>342</xloc>
  1033 + <yloc>1031</yloc>
  1034 + <draw>Y</draw>
  1035 + </GUI>
  1036 + </step>
  1037 +
  1038 + <step>
  1039 + <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail 3</name>
  1040 + <type>InsertUpdate</type>
  1041 + <description/>
  1042 + <distribute>Y</distribute>
  1043 + <custom_distribution/>
  1044 + <copies>1</copies>
  1045 + <partitioning>
  1046 + <method>none</method>
  1047 + <schema_name/>
  1048 + </partitioning>
  1049 + <connection>bus_control_variable</connection>
  1050 + <commit>100</commit>
  1051 + <update_bypassed>N</update_bypassed>
  1052 + <lookup>
  1053 + <schema/>
  1054 + <table>bsth_c_s_ttinfo_detail</table>
  1055 + <key>
  1056 + <name>xlid</name>
  1057 + <field>xl</field>
  1058 + <condition>&#x3d;</condition>
  1059 + <name2/>
  1060 + </key>
  1061 + <key>
  1062 + <name>ttid</name>
  1063 + <field>ttinfo</field>
  1064 + <condition>&#x3d;</condition>
  1065 + <name2/>
  1066 + </key>
  1067 + <key>
  1068 + <name>lpid</name>
  1069 + <field>lp</field>
  1070 + <condition>&#x3d;</condition>
  1071 + <name2/>
  1072 + </key>
  1073 + <key>
  1074 + <name>fcno</name>
  1075 + <field>fcno</field>
  1076 + <condition>&#x3d;</condition>
  1077 + <name2/>
  1078 + </key>
  1079 + <key>
  1080 + <name>bcs</name>
  1081 + <field>bcs</field>
  1082 + <condition>&#x3d;</condition>
  1083 + <name2/>
  1084 + </key>
  1085 + <value>
  1086 + <name>fcno</name>
  1087 + <rename>fcno</rename>
  1088 + <update>Y</update>
  1089 + </value>
  1090 + <value>
  1091 + <name>bcs</name>
  1092 + <rename>bcs</rename>
  1093 + <update>Y</update>
  1094 + </value>
  1095 + <value>
  1096 + <name>xl</name>
  1097 + <rename>xlid</rename>
  1098 + <update>Y</update>
  1099 + </value>
  1100 + <value>
  1101 + <name>ttinfo</name>
  1102 + <rename>ttid</rename>
  1103 + <update>Y</update>
  1104 + </value>
  1105 + <value>
  1106 + <name>lp</name>
  1107 + <rename>lpid</rename>
  1108 + <update>Y</update>
  1109 + </value>
  1110 + <value>
  1111 + <name>bc_type</name>
  1112 + <rename>bctype_code</rename>
  1113 + <update>Y</update>
  1114 + </value>
  1115 + <value>
  1116 + <name>bcsj</name>
  1117 + <rename>parade_time</rename>
  1118 + <update>Y</update>
  1119 + </value>
  1120 + <value>
  1121 + <name>jhlc</name>
  1122 + <rename>parade_mileage</rename>
  1123 + <update>Y</update>
  1124 + </value>
  1125 + <value>
  1126 + <name>fcsj</name>
  1127 + <rename>sendtime_calcu</rename>
  1128 + <update>Y</update>
  1129 + </value>
  1130 + <value>
  1131 + <name>xl_dir</name>
  1132 + <rename>sxx2</rename>
  1133 + <update>Y</update>
  1134 + </value>
  1135 + <value>
  1136 + <name>qdz</name>
  1137 + <rename>qdzid</rename>
  1138 + <update>Y</update>
  1139 + </value>
  1140 + <value>
  1141 + <name>tcc</name>
  1142 + <rename>zdzid</rename>
  1143 + <update>Y</update>
  1144 + </value>
  1145 + <value>
  1146 + <name>isfb</name>
  1147 + <rename>isfb</rename>
  1148 + <update>Y</update>
  1149 + </value>
  1150 + </lookup>
  1151 + <cluster_schema/>
  1152 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1153 + <xloc>875</xloc>
  1154 + <yloc>887</yloc>
  1155 + <draw>Y</draw>
  1156 + </GUI>
  1157 + </step>
  1158 +
  1159 + <step>
  1160 + <name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</name>
  1161 + <type>ExcelInput</type>
  1162 + <description/>
  1163 + <distribute>Y</distribute>
  1164 + <custom_distribution/>
  1165 + <copies>1</copies>
  1166 + <partitioning>
  1167 + <method>none</method>
  1168 + <schema_name/>
  1169 + </partitioning>
  1170 + <header>Y</header>
  1171 + <noempty>Y</noempty>
  1172 + <stoponempty>N</stoponempty>
  1173 + <filefield/>
  1174 + <sheetfield/>
  1175 + <sheetrownumfield/>
  1176 + <rownumfield/>
  1177 + <sheetfield/>
  1178 + <filefield/>
  1179 + <limit>0</limit>
  1180 + <encoding/>
  1181 + <add_to_result_filenames>Y</add_to_result_filenames>
  1182 + <accept_filenames>N</accept_filenames>
  1183 + <accept_field/>
  1184 + <accept_stepname/>
  1185 + <file>
  1186 + <name/>
  1187 + <filemask/>
  1188 + <exclude_filemask/>
  1189 + <file_required>N</file_required>
  1190 + <include_subfolders>N</include_subfolders>
  1191 + </file>
  1192 + <fields>
  1193 + </fields>
  1194 + <sheets>
  1195 + <sheet>
  1196 + <name/>
  1197 + <startrow>0</startrow>
  1198 + <startcol>0</startcol>
  1199 + </sheet>
  1200 + </sheets>
  1201 + <strict_types>N</strict_types>
  1202 + <error_ignored>N</error_ignored>
  1203 + <error_line_skipped>N</error_line_skipped>
  1204 + <bad_line_files_destination_directory/>
  1205 + <bad_line_files_extension>warning</bad_line_files_extension>
  1206 + <error_line_files_destination_directory/>
  1207 + <error_line_files_extension>error</error_line_files_extension>
  1208 + <line_number_files_destination_directory/>
  1209 + <line_number_files_extension>line</line_number_files_extension>
  1210 + <shortFileFieldName/>
  1211 + <pathFieldName/>
  1212 + <hiddenFieldName/>
  1213 + <lastModificationTimeFieldName/>
  1214 + <uriNameFieldName/>
  1215 + <rootUriNameFieldName/>
  1216 + <extensionFieldName/>
  1217 + <sizeFieldName/>
  1218 + <spreadsheet_type>JXL</spreadsheet_type>
  1219 + <cluster_schema/>
  1220 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1221 + <xloc>112</xloc>
  1222 + <yloc>44</yloc>
  1223 + <draw>Y</draw>
  1224 + </GUI>
  1225 + </step>
  1226 +
  1227 + <step>
  1228 + <name>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;1</name>
  1229 + <type>DBLookup</type>
  1230 + <description/>
  1231 + <distribute>Y</distribute>
  1232 + <custom_distribution/>
  1233 + <copies>1</copies>
  1234 + <partitioning>
  1235 + <method>none</method>
  1236 + <schema_name/>
  1237 + </partitioning>
  1238 + <connection>bus_control_variable</connection>
  1239 + <cache>N</cache>
  1240 + <cache_load_all>N</cache_load_all>
  1241 + <cache_size>0</cache_size>
  1242 + <lookup>
  1243 + <schema/>
  1244 + <table>bsth_c_car_park</table>
  1245 + <orderby/>
  1246 + <fail_on_multiple>N</fail_on_multiple>
  1247 + <eat_row_on_failure>N</eat_row_on_failure>
  1248 + <key>
  1249 + <name>tccname_</name>
  1250 + <field>park_name</field>
  1251 + <condition>&#x3d;</condition>
  1252 + <name2/>
  1253 + </key>
  1254 + <value>
  1255 + <name>id</name>
  1256 + <rename>qdzid</rename>
  1257 + <default/>
  1258 + <type>Integer</type>
  1259 + </value>
  1260 + </lookup>
  1261 + <cluster_schema/>
  1262 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1263 + <xloc>755</xloc>
  1264 + <yloc>504</yloc>
  1265 + <draw>Y</draw>
  1266 + </GUI>
  1267 + </step>
  1268 +
  1269 + <step>
  1270 + <name>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;2</name>
  1271 + <type>DBLookup</type>
  1272 + <description/>
  1273 + <distribute>Y</distribute>
  1274 + <custom_distribution/>
  1275 + <copies>1</copies>
  1276 + <partitioning>
  1277 + <method>none</method>
  1278 + <schema_name/>
  1279 + </partitioning>
  1280 + <connection>bus_control_variable</connection>
  1281 + <cache>N</cache>
  1282 + <cache_load_all>N</cache_load_all>
  1283 + <cache_size>0</cache_size>
  1284 + <lookup>
  1285 + <schema/>
  1286 + <table>bsth_c_car_park</table>
  1287 + <orderby/>
  1288 + <fail_on_multiple>N</fail_on_multiple>
  1289 + <eat_row_on_failure>N</eat_row_on_failure>
  1290 + <key>
  1291 + <name>tccname_</name>
  1292 + <field>park_name</field>
  1293 + <condition>&#x3d;</condition>
  1294 + <name2/>
  1295 + </key>
  1296 + <value>
  1297 + <name>id</name>
  1298 + <rename>zdzid</rename>
  1299 + <default/>
  1300 + <type>Integer</type>
  1301 + </value>
  1302 + </lookup>
  1303 + <cluster_schema/>
  1304 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1305 + <xloc>887</xloc>
  1306 + <yloc>608</yloc>
  1307 + <draw>Y</draw>
  1308 + </GUI>
  1309 + </step>
  1310 +
  1311 + <step>
  1312 + <name>&#x67e5;&#x627e;&#x51fa;&#x573a;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</name>
  1313 + <type>DBLookup</type>
  1314 + <description/>
  1315 + <distribute>Y</distribute>
  1316 + <custom_distribution/>
  1317 + <copies>1</copies>
  1318 + <partitioning>
  1319 + <method>none</method>
  1320 + <schema_name/>
  1321 + </partitioning>
  1322 + <connection>bus_control_variable</connection>
  1323 + <cache>N</cache>
  1324 + <cache_load_all>N</cache_load_all>
  1325 + <cache_size>0</cache_size>
  1326 + <lookup>
  1327 + <schema/>
  1328 + <table>bsth_c_stationroute</table>
  1329 + <orderby/>
  1330 + <fail_on_multiple>N</fail_on_multiple>
  1331 + <eat_row_on_failure>N</eat_row_on_failure>
  1332 + <key>
  1333 + <name>xlid</name>
  1334 + <field>line</field>
  1335 + <condition>&#x3d;</condition>
  1336 + <name2/>
  1337 + </key>
  1338 + <key>
  1339 + <name>zdzname</name>
  1340 + <field>station_name</field>
  1341 + <condition>&#x3d;</condition>
  1342 + <name2/>
  1343 + </key>
  1344 + <key>
  1345 + <name>endZdtype</name>
  1346 + <field>station_mark</field>
  1347 + <condition>&#x3d;</condition>
  1348 + <name2/>
  1349 + </key>
  1350 + <key>
  1351 + <name>destory</name>
  1352 + <field>destroy</field>
  1353 + <condition>&#x3d;</condition>
  1354 + <name2/>
  1355 + </key>
  1356 + <value>
  1357 + <name>station</name>
  1358 + <rename>zdzid</rename>
  1359 + <default/>
  1360 + <type>Integer</type>
  1361 + </value>
  1362 + <value>
  1363 + <name>directions</name>
  1364 + <rename>sxx</rename>
  1365 + <default/>
  1366 + <type>Integer</type>
  1367 + </value>
  1368 + </lookup>
  1369 + <cluster_schema/>
  1370 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1371 + <xloc>329</xloc>
  1372 + <yloc>505</yloc>
  1373 + <draw>Y</draw>
  1374 + </GUI>
  1375 + </step>
  1376 +
  1377 + <step>
  1378 + <name>&#x67e5;&#x627e;&#x65f6;&#x523b;&#x8868;&#x57fa;&#x7840;&#x4fe1;&#x606f;&#x5173;&#x8054;</name>
  1379 + <type>DBLookup</type>
  1380 + <description/>
  1381 + <distribute>Y</distribute>
  1382 + <custom_distribution/>
  1383 + <copies>1</copies>
  1384 + <partitioning>
  1385 + <method>none</method>
  1386 + <schema_name/>
  1387 + </partitioning>
  1388 + <connection>bus_control_variable</connection>
  1389 + <cache>N</cache>
  1390 + <cache_load_all>N</cache_load_all>
  1391 + <cache_size>0</cache_size>
  1392 + <lookup>
  1393 + <schema/>
  1394 + <table>bsth_c_s_ttinfo</table>
  1395 + <orderby/>
  1396 + <fail_on_multiple>N</fail_on_multiple>
  1397 + <eat_row_on_failure>N</eat_row_on_failure>
  1398 + <key>
  1399 + <name>xlid</name>
  1400 + <field>xl</field>
  1401 + <condition>&#x3d;</condition>
  1402 + <name2/>
  1403 + </key>
  1404 + <key>
  1405 + <name>ttinfoname_</name>
  1406 + <field>name</field>
  1407 + <condition>&#x3d;</condition>
  1408 + <name2/>
  1409 + </key>
  1410 + <key>
  1411 + <name>iscanceled</name>
  1412 + <field>is_cancel</field>
  1413 + <condition>&#x3d;</condition>
  1414 + <name2/>
  1415 + </key>
  1416 + <value>
  1417 + <name>id</name>
  1418 + <rename>ttid</rename>
  1419 + <default/>
  1420 + <type>Integer</type>
  1421 + </value>
  1422 + </lookup>
  1423 + <cluster_schema/>
  1424 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1425 + <xloc>1011</xloc>
  1426 + <yloc>134</yloc>
  1427 + <draw>Y</draw>
  1428 + </GUI>
  1429 + </step>
  1430 +
  1431 + <step>
  1432 + <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x4e0a;&#x4e0b;&#x884c;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
  1433 + <type>DBLookup</type>
  1434 + <description/>
  1435 + <distribute>Y</distribute>
  1436 + <custom_distribution/>
  1437 + <copies>1</copies>
  1438 + <partitioning>
  1439 + <method>none</method>
  1440 + <schema_name/>
  1441 + </partitioning>
  1442 + <connection>bus_control_variable</connection>
  1443 + <cache>N</cache>
  1444 + <cache_load_all>N</cache_load_all>
  1445 + <cache_size>0</cache_size>
  1446 + <lookup>
  1447 + <schema/>
  1448 + <table>bsth_c_line_information</table>
  1449 + <orderby/>
  1450 + <fail_on_multiple>N</fail_on_multiple>
  1451 + <eat_row_on_failure>N</eat_row_on_failure>
  1452 + <key>
  1453 + <name>xlid</name>
  1454 + <field>line</field>
  1455 + <condition>&#x3d;</condition>
  1456 + <name2/>
  1457 + </key>
  1458 + <value>
  1459 + <name>up_mileage</name>
  1460 + <rename>up_mileage</rename>
  1461 + <default/>
  1462 + <type>Number</type>
  1463 + </value>
  1464 + <value>
  1465 + <name>down_mileage</name>
  1466 + <rename>down_mileage</rename>
  1467 + <default/>
  1468 + <type>Number</type>
  1469 + </value>
  1470 + <value>
  1471 + <name>up_travel_time</name>
  1472 + <rename>up_travel_time</rename>
  1473 + <default/>
  1474 + <type>Number</type>
  1475 + </value>
  1476 + <value>
  1477 + <name>down_travel_time</name>
  1478 + <rename>down_travel_time</rename>
  1479 + <default/>
  1480 + <type>Number</type>
  1481 + </value>
  1482 + </lookup>
  1483 + <cluster_schema/>
  1484 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1485 + <xloc>149</xloc>
  1486 + <yloc>581</yloc>
  1487 + <draw>Y</draw>
  1488 + </GUI>
  1489 + </step>
  1490 +
  1491 + <step>
  1492 + <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x5173;&#x8054;</name>
  1493 + <type>DBLookup</type>
  1494 + <description/>
  1495 + <distribute>Y</distribute>
  1496 + <custom_distribution/>
  1497 + <copies>1</copies>
  1498 + <partitioning>
  1499 + <method>none</method>
  1500 + <schema_name/>
  1501 + </partitioning>
  1502 + <connection>bus_control_variable</connection>
  1503 + <cache>N</cache>
  1504 + <cache_load_all>N</cache_load_all>
  1505 + <cache_size>0</cache_size>
  1506 + <lookup>
  1507 + <schema/>
  1508 + <table>bsth_c_line</table>
  1509 + <orderby/>
  1510 + <fail_on_multiple>N</fail_on_multiple>
  1511 + <eat_row_on_failure>N</eat_row_on_failure>
  1512 + <key>
  1513 + <name>xlname_</name>
  1514 + <field>name</field>
  1515 + <condition>&#x3d;</condition>
  1516 + <name2/>
  1517 + </key>
  1518 + <value>
  1519 + <name>id</name>
  1520 + <rename>xlid</rename>
  1521 + <default/>
  1522 + <type>Integer</type>
  1523 + </value>
  1524 + </lookup>
  1525 + <cluster_schema/>
  1526 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1527 + <xloc>1007</xloc>
  1528 + <yloc>43</yloc>
  1529 + <draw>Y</draw>
  1530 + </GUI>
  1531 + </step>
  1532 +
  1533 + <step>
  1534 + <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x51fa;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
  1535 + <type>DBLookup</type>
  1536 + <description/>
  1537 + <distribute>Y</distribute>
  1538 + <custom_distribution/>
  1539 + <copies>1</copies>
  1540 + <partitioning>
  1541 + <method>none</method>
  1542 + <schema_name/>
  1543 + </partitioning>
  1544 + <connection>bus_control_variable</connection>
  1545 + <cache>N</cache>
  1546 + <cache_load_all>N</cache_load_all>
  1547 + <cache_size>0</cache_size>
  1548 + <lookup>
  1549 + <schema/>
  1550 + <table>bsth_c_line_information</table>
  1551 + <orderby/>
  1552 + <fail_on_multiple>N</fail_on_multiple>
  1553 + <eat_row_on_failure>N</eat_row_on_failure>
  1554 + <key>
  1555 + <name>xlid</name>
  1556 + <field>line</field>
  1557 + <condition>&#x3d;</condition>
  1558 + <name2/>
  1559 + </key>
  1560 + <value>
  1561 + <name>up_out_timer</name>
  1562 + <rename>up_out_timer</rename>
  1563 + <default/>
  1564 + <type>Number</type>
  1565 + </value>
  1566 + <value>
  1567 + <name>up_out_mileage</name>
  1568 + <rename>up_out_mileage</rename>
  1569 + <default/>
  1570 + <type>Number</type>
  1571 + </value>
  1572 + <value>
  1573 + <name>down_out_timer</name>
  1574 + <rename>down_out_timer</rename>
  1575 + <default/>
  1576 + <type>Number</type>
  1577 + </value>
  1578 + <value>
  1579 + <name>down_out_mileage</name>
  1580 + <rename>down_out_mileage</rename>
  1581 + <default/>
  1582 + <type>Number</type>
  1583 + </value>
  1584 + </lookup>
  1585 + <cluster_schema/>
  1586 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1587 + <xloc>335</xloc>
  1588 + <yloc>763</yloc>
  1589 + <draw>Y</draw>
  1590 + </GUI>
  1591 + </step>
  1592 +
  1593 + <step>
  1594 + <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x8fdb;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
  1595 + <type>DBLookup</type>
  1596 + <description/>
  1597 + <distribute>Y</distribute>
  1598 + <custom_distribution/>
  1599 + <copies>1</copies>
  1600 + <partitioning>
  1601 + <method>none</method>
  1602 + <schema_name/>
  1603 + </partitioning>
  1604 + <connection>bus_control_variable</connection>
  1605 + <cache>N</cache>
  1606 + <cache_load_all>N</cache_load_all>
  1607 + <cache_size>0</cache_size>
  1608 + <lookup>
  1609 + <schema/>
  1610 + <table>bsth_c_line_information</table>
  1611 + <orderby/>
  1612 + <fail_on_multiple>N</fail_on_multiple>
  1613 + <eat_row_on_failure>N</eat_row_on_failure>
  1614 + <key>
  1615 + <name>xlid</name>
  1616 + <field>line</field>
  1617 + <condition>&#x3d;</condition>
  1618 + <name2/>
  1619 + </key>
  1620 + <value>
  1621 + <name>up_in_mileage</name>
  1622 + <rename>up_in_mileage</rename>
  1623 + <default/>
  1624 + <type>Number</type>
  1625 + </value>
  1626 + <value>
  1627 + <name>up_in_timer</name>
  1628 + <rename>up_in_timer</rename>
  1629 + <default/>
  1630 + <type>Number</type>
  1631 + </value>
  1632 + <value>
  1633 + <name>down_in_mileage</name>
  1634 + <rename>down_in_mileage</rename>
  1635 + <default/>
  1636 + <type>Number</type>
  1637 + </value>
  1638 + <value>
  1639 + <name>down_in_timer</name>
  1640 + <rename>down_in_timer</rename>
  1641 + <default/>
  1642 + <type>Number</type>
  1643 + </value>
  1644 + </lookup>
  1645 + <cluster_schema/>
  1646 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1647 + <xloc>553</xloc>
  1648 + <yloc>1004</yloc>
  1649 + <draw>Y</draw>
  1650 + </GUI>
  1651 + </step>
  1652 +
  1653 + <step>
  1654 + <name>&#x67e5;&#x627e;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;</name>
  1655 + <type>DBLookup</type>
  1656 + <description/>
  1657 + <distribute>Y</distribute>
  1658 + <custom_distribution/>
  1659 + <copies>1</copies>
  1660 + <partitioning>
  1661 + <method>none</method>
  1662 + <schema_name/>
  1663 + </partitioning>
  1664 + <connection>bus_control_variable</connection>
  1665 + <cache>N</cache>
  1666 + <cache_load_all>N</cache_load_all>
  1667 + <cache_size>0</cache_size>
  1668 + <lookup>
  1669 + <schema/>
  1670 + <table>bsth_c_stationroute</table>
  1671 + <orderby/>
  1672 + <fail_on_multiple>N</fail_on_multiple>
  1673 + <eat_row_on_failure>N</eat_row_on_failure>
  1674 + <key>
  1675 + <name>xlid</name>
  1676 + <field>line</field>
  1677 + <condition>&#x3d;</condition>
  1678 + <name2/>
  1679 + </key>
  1680 + <key>
  1681 + <name>sxx</name>
  1682 + <field>directions</field>
  1683 + <condition>&#x3d;</condition>
  1684 + <name2/>
  1685 + </key>
  1686 + <key>
  1687 + <name>endZdtype</name>
  1688 + <field>station_mark</field>
  1689 + <condition>&#x3d;</condition>
  1690 + <name2/>
  1691 + </key>
  1692 + <key>
  1693 + <name>destory</name>
  1694 + <field>destroy</field>
  1695 + <condition>&#x3d;</condition>
  1696 + <name2/>
  1697 + </key>
  1698 + <value>
  1699 + <name>station_name</name>
  1700 + <rename>zdzname</rename>
  1701 + <default/>
  1702 + <type>String</type>
  1703 + </value>
  1704 + <value>
  1705 + <name>station</name>
  1706 + <rename>zdzid</rename>
  1707 + <default/>
  1708 + <type>Integer</type>
  1709 + </value>
  1710 + </lookup>
  1711 + <cluster_schema/>
  1712 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1713 + <xloc>280</xloc>
  1714 + <yloc>404</yloc>
  1715 + <draw>Y</draw>
  1716 + </GUI>
  1717 + </step>
  1718 +
  1719 + <step>
  1720 + <name>&#x67e5;&#x627e;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</name>
  1721 + <type>DBLookup</type>
  1722 + <description/>
  1723 + <distribute>Y</distribute>
  1724 + <custom_distribution/>
  1725 + <copies>1</copies>
  1726 + <partitioning>
  1727 + <method>none</method>
  1728 + <schema_name/>
  1729 + </partitioning>
  1730 + <connection>bus_control_variable</connection>
  1731 + <cache>N</cache>
  1732 + <cache_load_all>N</cache_load_all>
  1733 + <cache_size>0</cache_size>
  1734 + <lookup>
  1735 + <schema/>
  1736 + <table>bsth_c_stationroute</table>
  1737 + <orderby/>
  1738 + <fail_on_multiple>N</fail_on_multiple>
  1739 + <eat_row_on_failure>N</eat_row_on_failure>
  1740 + <key>
  1741 + <name>xlid</name>
  1742 + <field>line</field>
  1743 + <condition>&#x3d;</condition>
  1744 + <name2/>
  1745 + </key>
  1746 + <key>
  1747 + <name>qdzname</name>
  1748 + <field>station_name</field>
  1749 + <condition>&#x3d;</condition>
  1750 + <name2/>
  1751 + </key>
  1752 + <key>
  1753 + <name>sendZdtype</name>
  1754 + <field>station_mark</field>
  1755 + <condition>&#x3d;</condition>
  1756 + <name2/>
  1757 + </key>
  1758 + <key>
  1759 + <name>destory</name>
  1760 + <field>destroy</field>
  1761 + <condition>&#x3d;</condition>
  1762 + <name2/>
  1763 + </key>
  1764 + <value>
  1765 + <name>station</name>
  1766 + <rename>qdzid</rename>
  1767 + <default/>
  1768 + <type>Integer</type>
  1769 + </value>
  1770 + <value>
  1771 + <name>directions</name>
  1772 + <rename>sxx</rename>
  1773 + <default/>
  1774 + <type>Integer</type>
  1775 + </value>
  1776 + </lookup>
  1777 + <cluster_schema/>
  1778 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1779 + <xloc>430</xloc>
  1780 + <yloc>403</yloc>
  1781 + <draw>Y</draw>
  1782 + </GUI>
  1783 + </step>
  1784 +
  1785 + <step>
  1786 + <name>&#x67e5;&#x627e;&#x8def;&#x724c;&#x5173;&#x8054;</name>
  1787 + <type>DBLookup</type>
  1788 + <description/>
  1789 + <distribute>Y</distribute>
  1790 + <custom_distribution/>
  1791 + <copies>1</copies>
  1792 + <partitioning>
  1793 + <method>none</method>
  1794 + <schema_name/>
  1795 + </partitioning>
  1796 + <connection>bus_control_variable</connection>
  1797 + <cache>N</cache>
  1798 + <cache_load_all>N</cache_load_all>
  1799 + <cache_size>0</cache_size>
  1800 + <lookup>
  1801 + <schema/>
  1802 + <table>bsth_c_s_gbi</table>
  1803 + <orderby/>
  1804 + <fail_on_multiple>N</fail_on_multiple>
  1805 + <eat_row_on_failure>N</eat_row_on_failure>
  1806 + <key>
  1807 + <name>xlid</name>
  1808 + <field>xl</field>
  1809 + <condition>&#x3d;</condition>
  1810 + <name2/>
  1811 + </key>
  1812 + <key>
  1813 + <name>lp</name>
  1814 + <field>lp_name</field>
  1815 + <condition>&#x3d;</condition>
  1816 + <name2/>
  1817 + </key>
  1818 + <value>
  1819 + <name>id</name>
  1820 + <rename>lpid</rename>
  1821 + <default/>
  1822 + <type>Integer</type>
  1823 + </value>
  1824 + </lookup>
  1825 + <cluster_schema/>
  1826 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1827 + <xloc>1013</xloc>
  1828 + <yloc>265</yloc>
  1829 + <draw>Y</draw>
  1830 + </GUI>
  1831 + </step>
  1832 +
  1833 + <step>
  1834 + <name>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ebf;&#x8def;&#x65b9;&#x5411;</name>
  1835 + <type>DBLookup</type>
  1836 + <description/>
  1837 + <distribute>Y</distribute>
  1838 + <custom_distribution/>
  1839 + <copies>1</copies>
  1840 + <partitioning>
  1841 + <method>none</method>
  1842 + <schema_name/>
  1843 + </partitioning>
  1844 + <connection>bus_control_variable</connection>
  1845 + <cache>N</cache>
  1846 + <cache_load_all>N</cache_load_all>
  1847 + <cache_size>0</cache_size>
  1848 + <lookup>
  1849 + <schema/>
  1850 + <table>bsth_c_stationroute</table>
  1851 + <orderby/>
  1852 + <fail_on_multiple>N</fail_on_multiple>
  1853 + <eat_row_on_failure>N</eat_row_on_failure>
  1854 + <key>
  1855 + <name>xlid</name>
  1856 + <field>line</field>
  1857 + <condition>&#x3d;</condition>
  1858 + <name2/>
  1859 + </key>
  1860 + <key>
  1861 + <name>startZdtype_calcu</name>
  1862 + <field>station_mark</field>
  1863 + <condition>&#x3d;</condition>
  1864 + <name2/>
  1865 + </key>
  1866 + <key>
  1867 + <name>qdzname_calcu</name>
  1868 + <field>station_name</field>
  1869 + <condition>&#x3d;</condition>
  1870 + <name2/>
  1871 + </key>
  1872 + <key>
  1873 + <name>destory</name>
  1874 + <field>destroy</field>
  1875 + <condition>&#x3d;</condition>
  1876 + <name2/>
  1877 + </key>
  1878 + <value>
  1879 + <name>directions</name>
  1880 + <rename>sxx</rename>
  1881 + <default/>
  1882 + <type>String</type>
  1883 + </value>
  1884 + </lookup>
  1885 + <cluster_schema/>
  1886 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1887 + <xloc>548</xloc>
  1888 + <yloc>610</yloc>
  1889 + <draw>Y</draw>
  1890 + </GUI>
  1891 + </step>
  1892 +
  1893 + <step>
  1894 + <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>
  1895 + <type>DBLookup</type>
  1896 + <description/>
  1897 + <distribute>Y</distribute>
  1898 + <custom_distribution/>
  1899 + <copies>1</copies>
  1900 + <partitioning>
  1901 + <method>none</method>
  1902 + <schema_name/>
  1903 + </partitioning>
  1904 + <connection>bus_control_variable</connection>
  1905 + <cache>N</cache>
  1906 + <cache_load_all>N</cache_load_all>
  1907 + <cache_size>0</cache_size>
  1908 + <lookup>
  1909 + <schema/>
  1910 + <table>bsth_c_stationroute</table>
  1911 + <orderby/>
  1912 + <fail_on_multiple>N</fail_on_multiple>
  1913 + <eat_row_on_failure>N</eat_row_on_failure>
  1914 + <key>
  1915 + <name>xlid</name>
  1916 + <field>line</field>
  1917 + <condition>&#x3d;</condition>
  1918 + <name2/>
  1919 + </key>
  1920 + <key>
  1921 + <name>endZdtype_calcu</name>
  1922 + <field>station_mark</field>
  1923 + <condition>&#x3d;</condition>
  1924 + <name2/>
  1925 + </key>
  1926 + <key>
  1927 + <name>sxx</name>
  1928 + <field>directions</field>
  1929 + <condition>&#x3d;</condition>
  1930 + <name2/>
  1931 + </key>
  1932 + <key>
  1933 + <name>destory</name>
  1934 + <field>destroy</field>
  1935 + <condition>&#x3d;</condition>
  1936 + <name2/>
  1937 + </key>
  1938 + <value>
  1939 + <name>station_name</name>
  1940 + <rename>zdzname_calcu</rename>
  1941 + <default/>
  1942 + <type>Integer</type>
  1943 + </value>
  1944 + </lookup>
  1945 + <cluster_schema/>
  1946 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1947 + <xloc>550</xloc>
  1948 + <yloc>701</yloc>
  1949 + <draw>Y</draw>
  1950 + </GUI>
  1951 + </step>
  1952 +
  1953 + <step>
  1954 + <name>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</name>
  1955 + <type>DBLookup</type>
  1956 + <description/>
  1957 + <distribute>Y</distribute>
  1958 + <custom_distribution/>
  1959 + <copies>1</copies>
  1960 + <partitioning>
  1961 + <method>none</method>
  1962 + <schema_name/>
  1963 + </partitioning>
  1964 + <connection>bus_control_variable</connection>
  1965 + <cache>N</cache>
  1966 + <cache_load_all>N</cache_load_all>
  1967 + <cache_size>0</cache_size>
  1968 + <lookup>
  1969 + <schema/>
  1970 + <table>bsth_c_stationroute</table>
  1971 + <orderby/>
  1972 + <fail_on_multiple>N</fail_on_multiple>
  1973 + <eat_row_on_failure>N</eat_row_on_failure>
  1974 + <key>
  1975 + <name>xlid</name>
  1976 + <field>line</field>
  1977 + <condition>&#x3d;</condition>
  1978 + <name2/>
  1979 + </key>
  1980 + <key>
  1981 + <name>zdzname_calcu</name>
  1982 + <field>station_name</field>
  1983 + <condition>&#x3d;</condition>
  1984 + <name2/>
  1985 + </key>
  1986 + <key>
  1987 + <name>startZdtype_calcu</name>
  1988 + <field>station_mark</field>
  1989 + <condition>&#x3d;</condition>
  1990 + <name2/>
  1991 + </key>
  1992 + <key>
  1993 + <name>destory</name>
  1994 + <field>destroy</field>
  1995 + <condition>&#x3d;</condition>
  1996 + <name2/>
  1997 + </key>
  1998 + <value>
  1999 + <name>directions</name>
  2000 + <rename>sxx2</rename>
  2001 + <default/>
  2002 + <type>Integer</type>
  2003 + </value>
  2004 + <value>
  2005 + <name>station</name>
  2006 + <rename>qdzid</rename>
  2007 + <default/>
  2008 + <type>Integer</type>
  2009 + </value>
  2010 + </lookup>
  2011 + <cluster_schema/>
  2012 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2013 + <xloc>551</xloc>
  2014 + <yloc>782</yloc>
  2015 + <draw>Y</draw>
  2016 + </GUI>
  2017 + </step>
  2018 +
  2019 + <step>
  2020 + <name>&#x6b63;&#x5e38;&#x73ed;&#x6b21;_&#x5904;&#x7406;&#x6570;&#x636e;</name>
  2021 + <type>ScriptValueMod</type>
  2022 + <description/>
  2023 + <distribute>Y</distribute>
  2024 + <custom_distribution/>
  2025 + <copies>1</copies>
  2026 + <partitioning>
  2027 + <method>none</method>
  2028 + <schema_name/>
  2029 + </partitioning>
  2030 + <compatible>N</compatible>
  2031 + <optimizationLevel>9</optimizationLevel>
  2032 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  2033 + <jsScript_name>Script 1</jsScript_name>
  2034 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;&#x2f;&#x2f; &#x6dfb;&#x52a0;&#x7ad9;&#x70b9;&#x6807;&#x8bc6;&#xa;var sendZdtype &#x3d; &#x27;B&#x27;&#x3b;&#xa;var endZdtype &#x3d; &#x27;E&#x27;&#x3b;&#xa;&#xa;var destory &#x3d; 0&#x3b; &#x2f;&#x2f; &#x672a;&#x64a4;&#x9500;flag</jsScript_script>
  2035 + </jsScript> </jsScripts> <fields> <field> <name>sendZdtype</name>
  2036 + <rename>sendZdtype</rename>
  2037 + <type>String</type>
  2038 + <length>-1</length>
  2039 + <precision>-1</precision>
  2040 + <replace>N</replace>
  2041 + </field> <field> <name>endZdtype</name>
  2042 + <rename>endZdtype</rename>
  2043 + <type>String</type>
  2044 + <length>-1</length>
  2045 + <precision>-1</precision>
  2046 + <replace>N</replace>
  2047 + </field> <field> <name>destory</name>
  2048 + <rename>destory</rename>
  2049 + <type>Integer</type>
  2050 + <length>-1</length>
  2051 + <precision>-1</precision>
  2052 + <replace>N</replace>
  2053 + </field> </fields> <cluster_schema/>
  2054 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2055 + <xloc>588</xloc>
  2056 + <yloc>403</yloc>
  2057 + <draw>Y</draw>
  2058 + </GUI>
  2059 + </step>
  2060 +
  2061 + <step>
  2062 + <name>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</name>
  2063 + <type>Dummy</type>
  2064 + <description/>
  2065 + <distribute>Y</distribute>
  2066 + <custom_distribution/>
  2067 + <copies>1</copies>
  2068 + <partitioning>
  2069 + <method>none</method>
  2070 + <schema_name/>
  2071 + </partitioning>
  2072 + <cluster_schema/>
  2073 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2074 + <xloc>725</xloc>
  2075 + <yloc>404</yloc>
  2076 + <draw>Y</draw>
  2077 + </GUI>
  2078 + </step>
  2079 +
  2080 + <step>
  2081 + <name>&#x6dfb;&#x52a0;&#x53d1;&#x8f66;&#x987a;&#x5e8f;&#x53f7;</name>
  2082 + <type>GroupBy</type>
  2083 + <description/>
  2084 + <distribute>Y</distribute>
  2085 + <custom_distribution/>
  2086 + <copies>1</copies>
  2087 + <partitioning>
  2088 + <method>none</method>
  2089 + <schema_name/>
  2090 + </partitioning>
  2091 + <all_rows>Y</all_rows>
  2092 + <ignore_aggregate>N</ignore_aggregate>
  2093 + <field_ignore/>
  2094 + <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
  2095 + <prefix>grp</prefix>
  2096 + <add_linenr>Y</add_linenr>
  2097 + <linenr_fieldname>fcno</linenr_fieldname>
  2098 + <give_back_row>N</give_back_row>
  2099 + <group>
  2100 + <field>
  2101 + <name>lp</name>
  2102 + </field>
  2103 + </group>
  2104 + <fields>
  2105 + </fields>
  2106 + <cluster_schema/>
  2107 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2108 + <xloc>442</xloc>
  2109 + <yloc>44</yloc>
  2110 + <draw>Y</draw>
  2111 + </GUI>
  2112 + </step>
  2113 +
  2114 + <step>
  2115 + <name>&#x6dfb;&#x52a0;&#x5bf9;&#x5e94;&#x73ed;&#x6b21;&#x6570;</name>
  2116 + <type>GroupBy</type>
  2117 + <description/>
  2118 + <distribute>Y</distribute>
  2119 + <custom_distribution/>
  2120 + <copies>1</copies>
  2121 + <partitioning>
  2122 + <method>none</method>
  2123 + <schema_name/>
  2124 + </partitioning>
  2125 + <all_rows>Y</all_rows>
  2126 + <ignore_aggregate>N</ignore_aggregate>
  2127 + <field_ignore/>
  2128 + <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
  2129 + <prefix>grp</prefix>
  2130 + <add_linenr>Y</add_linenr>
  2131 + <linenr_fieldname>bcs</linenr_fieldname>
  2132 + <give_back_row>N</give_back_row>
  2133 + <group>
  2134 + </group>
  2135 + <fields>
  2136 + </fields>
  2137 + <cluster_schema/>
  2138 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2139 + <xloc>692</xloc>
  2140 + <yloc>44</yloc>
  2141 + <draw>Y</draw>
  2142 + </GUI>
  2143 + </step>
  2144 +
  2145 + <step>
  2146 + <name>&#x73ed;&#x6b21;&#x6570;&#x636e;&#x8303;&#x5f0f;&#x5316;</name>
  2147 + <type>Normaliser</type>
  2148 + <description/>
  2149 + <distribute>Y</distribute>
  2150 + <custom_distribution/>
  2151 + <copies>1</copies>
  2152 + <partitioning>
  2153 + <method>none</method>
  2154 + <schema_name/>
  2155 + </partitioning>
  2156 + <typefield>&#x7ad9;&#x70b9;&#x540d;&#x79f0;</typefield>
  2157 + <fields> </fields> <cluster_schema/>
  2158 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2159 + <xloc>248</xloc>
  2160 + <yloc>44</yloc>
  2161 + <draw>Y</draw>
  2162 + </GUI>
  2163 + </step>
  2164 +
  2165 + <step>
  2166 + <name>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178;</name>
  2167 + <type>ValueMapper</type>
  2168 + <description/>
  2169 + <distribute>Y</distribute>
  2170 + <custom_distribution/>
  2171 + <copies>1</copies>
  2172 + <partitioning>
  2173 + <method>none</method>
  2174 + <schema_name/>
  2175 + </partitioning>
  2176 + <field_to_use>bctype</field_to_use>
  2177 + <target_field>bctype_code</target_field>
  2178 + <non_match_default>&#x672a;&#x77e5;&#x7c7b;&#x578b;</non_match_default>
  2179 + <fields>
  2180 + <field>
  2181 + <source_value>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</source_value>
  2182 + <target_value>normal</target_value>
  2183 + </field>
  2184 + <field>
  2185 + <source_value>&#x51fa;&#x573a;</source_value>
  2186 + <target_value>out</target_value>
  2187 + </field>
  2188 + <field>
  2189 + <source_value>&#x8fdb;&#x573a;</source_value>
  2190 + <target_value>in</target_value>
  2191 + </field>
  2192 + <field>
  2193 + <source_value>&#x52a0;&#x6cb9;</source_value>
  2194 + <target_value>oil</target_value>
  2195 + </field>
  2196 + <field>
  2197 + <source_value>&#x4e34;&#x52a0;</source_value>
  2198 + <target_value>temp</target_value>
  2199 + </field>
  2200 + <field>
  2201 + <source_value>&#x533a;&#x95f4;</source_value>
  2202 + <target_value>region</target_value>
  2203 + </field>
  2204 + <field>
  2205 + <source_value>&#x653e;&#x7a7a;</source_value>
  2206 + <target_value>venting</target_value>
  2207 + </field>
  2208 + <field>
  2209 + <source_value>&#x653e;&#x5927;&#x7ad9;</source_value>
  2210 + <target_value>major</target_value>
  2211 + </field>
  2212 + </fields>
  2213 + <cluster_schema/>
  2214 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2215 + <xloc>149</xloc>
  2216 + <yloc>491</yloc>
  2217 + <draw>Y</draw>
  2218 + </GUI>
  2219 + </step>
  2220 +
  2221 + <step>
  2222 + <name>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 2</name>
  2223 + <type>ValueMapper</type>
  2224 + <description/>
  2225 + <distribute>Y</distribute>
  2226 + <custom_distribution/>
  2227 + <copies>1</copies>
  2228 + <partitioning>
  2229 + <method>none</method>
  2230 + <schema_name/>
  2231 + </partitioning>
  2232 + <field_to_use>bctype</field_to_use>
  2233 + <target_field>bctype_code</target_field>
  2234 + <non_match_default>&#x672a;&#x77e5;&#x7c7b;&#x578b;</non_match_default>
  2235 + <fields>
  2236 + <field>
  2237 + <source_value>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</source_value>
  2238 + <target_value>normal</target_value>
  2239 + </field>
  2240 + <field>
  2241 + <source_value>&#x51fa;&#x573a;</source_value>
  2242 + <target_value>out</target_value>
  2243 + </field>
  2244 + <field>
  2245 + <source_value>&#x8fdb;&#x573a;</source_value>
  2246 + <target_value>in</target_value>
  2247 + </field>
  2248 + <field>
  2249 + <source_value>&#x52a0;&#x6cb9;</source_value>
  2250 + <target_value>oil</target_value>
  2251 + </field>
  2252 + <field>
  2253 + <source_value>&#x4e34;&#x52a0;</source_value>
  2254 + <target_value>temp</target_value>
  2255 + </field>
  2256 + <field>
  2257 + <source_value>&#x533a;&#x95f4;</source_value>
  2258 + <target_value>region</target_value>
  2259 + </field>
  2260 + <field>
  2261 + <source_value>&#x653e;&#x7a7a;</source_value>
  2262 + <target_value>venting</target_value>
  2263 + </field>
  2264 + <field>
  2265 + <source_value>&#x653e;&#x5927;&#x7ad9;</source_value>
  2266 + <target_value>major</target_value>
  2267 + </field>
  2268 + </fields>
  2269 + <cluster_schema/>
  2270 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2271 + <xloc>333</xloc>
  2272 + <yloc>681</yloc>
  2273 + <draw>Y</draw>
  2274 + </GUI>
  2275 + </step>
  2276 +
  2277 + <step>
  2278 + <name>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 3</name>
  2279 + <type>ValueMapper</type>
  2280 + <description/>
  2281 + <distribute>Y</distribute>
  2282 + <custom_distribution/>
  2283 + <copies>1</copies>
  2284 + <partitioning>
  2285 + <method>none</method>
  2286 + <schema_name/>
  2287 + </partitioning>
  2288 + <field_to_use>bctype</field_to_use>
  2289 + <target_field>bctype_code</target_field>
  2290 + <non_match_default>&#x672a;&#x77e5;&#x7c7b;&#x578b;</non_match_default>
  2291 + <fields>
  2292 + <field>
  2293 + <source_value>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</source_value>
  2294 + <target_value>normal</target_value>
  2295 + </field>
  2296 + <field>
  2297 + <source_value>&#x51fa;&#x573a;</source_value>
  2298 + <target_value>out</target_value>
  2299 + </field>
  2300 + <field>
  2301 + <source_value>&#x8fdb;&#x573a;</source_value>
  2302 + <target_value>in</target_value>
  2303 + </field>
  2304 + <field>
  2305 + <source_value>&#x52a0;&#x6cb9;</source_value>
  2306 + <target_value>oil</target_value>
  2307 + </field>
  2308 + <field>
  2309 + <source_value>&#x4e34;&#x52a0;</source_value>
  2310 + <target_value>temp</target_value>
  2311 + </field>
  2312 + <field>
  2313 + <source_value>&#x533a;&#x95f4;</source_value>
  2314 + <target_value>region</target_value>
  2315 + </field>
  2316 + <field>
  2317 + <source_value>&#x653e;&#x7a7a;</source_value>
  2318 + <target_value>venting</target_value>
  2319 + </field>
  2320 + <field>
  2321 + <source_value>&#x653e;&#x5927;&#x7ad9;</source_value>
  2322 + <target_value>major</target_value>
  2323 + </field>
  2324 + </fields>
  2325 + <cluster_schema/>
  2326 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2327 + <xloc>551</xloc>
  2328 + <yloc>928</yloc>
  2329 + <draw>Y</draw>
  2330 + </GUI>
  2331 + </step>
  2332 +
  2333 + <step>
  2334 + <name>&#x7c7b;&#x578b;&#x4fee;&#x6b63;</name>
  2335 + <type>SelectValues</type>
  2336 + <description/>
  2337 + <distribute>Y</distribute>
  2338 + <custom_distribution/>
  2339 + <copies>1</copies>
  2340 + <partitioning>
  2341 + <method>none</method>
  2342 + <schema_name/>
  2343 + </partitioning>
  2344 + <fields> <select_unspecified>N</select_unspecified>
  2345 + <meta> <name>jhlc</name>
  2346 + <rename>jhlc</rename>
  2347 + <type>Number</type>
  2348 + <length>-2</length>
  2349 + <precision>-2</precision>
  2350 + <conversion_mask/>
  2351 + <date_format_lenient>false</date_format_lenient>
  2352 + <date_format_locale/>
  2353 + <date_format_timezone/>
  2354 + <lenient_string_to_number>false</lenient_string_to_number>
  2355 + <encoding/>
  2356 + <decimal_symbol/>
  2357 + <grouping_symbol/>
  2358 + <currency_symbol/>
  2359 + <storage_type/>
  2360 + </meta> <meta> <name>bcsj</name>
  2361 + <rename>bcsj</rename>
  2362 + <type>Integer</type>
  2363 + <length>-2</length>
  2364 + <precision>-2</precision>
  2365 + <conversion_mask/>
  2366 + <date_format_lenient>false</date_format_lenient>
  2367 + <date_format_locale/>
  2368 + <date_format_timezone/>
  2369 + <lenient_string_to_number>false</lenient_string_to_number>
  2370 + <encoding/>
  2371 + <decimal_symbol/>
  2372 + <grouping_symbol/>
  2373 + <currency_symbol/>
  2374 + <storage_type/>
  2375 + </meta> </fields> <cluster_schema/>
  2376 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2377 + <xloc>146</xloc>
  2378 + <yloc>768</yloc>
  2379 + <draw>Y</draw>
  2380 + </GUI>
  2381 + </step>
  2382 +
  2383 + <step>
  2384 + <name>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 2</name>
  2385 + <type>SelectValues</type>
  2386 + <description/>
  2387 + <distribute>Y</distribute>
  2388 + <custom_distribution/>
  2389 + <copies>1</copies>
  2390 + <partitioning>
  2391 + <method>none</method>
  2392 + <schema_name/>
  2393 + </partitioning>
  2394 + <fields> <select_unspecified>N</select_unspecified>
  2395 + <meta> <name>out_mileage</name>
  2396 + <rename>out_mileage</rename>
  2397 + <type>Number</type>
  2398 + <length>-2</length>
  2399 + <precision>-2</precision>
  2400 + <conversion_mask/>
  2401 + <date_format_lenient>false</date_format_lenient>
  2402 + <date_format_locale/>
  2403 + <date_format_timezone/>
  2404 + <lenient_string_to_number>false</lenient_string_to_number>
  2405 + <encoding/>
  2406 + <decimal_symbol/>
  2407 + <grouping_symbol/>
  2408 + <currency_symbol/>
  2409 + <storage_type/>
  2410 + </meta> <meta> <name>out_time</name>
  2411 + <rename>out_time</rename>
  2412 + <type>Integer</type>
  2413 + <length>-2</length>
  2414 + <precision>-2</precision>
  2415 + <conversion_mask/>
  2416 + <date_format_lenient>false</date_format_lenient>
  2417 + <date_format_locale/>
  2418 + <date_format_timezone/>
  2419 + <lenient_string_to_number>false</lenient_string_to_number>
  2420 + <encoding/>
  2421 + <decimal_symbol/>
  2422 + <grouping_symbol/>
  2423 + <currency_symbol/>
  2424 + <storage_type/>
  2425 + </meta> </fields> <cluster_schema/>
  2426 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2427 + <xloc>338</xloc>
  2428 + <yloc>949</yloc>
  2429 + <draw>Y</draw>
  2430 + </GUI>
  2431 + </step>
  2432 +
  2433 + <step>
  2434 + <name>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 3</name>
  2435 + <type>SelectValues</type>
  2436 + <description/>
  2437 + <distribute>Y</distribute>
  2438 + <custom_distribution/>
  2439 + <copies>1</copies>
  2440 + <partitioning>
  2441 + <method>none</method>
  2442 + <schema_name/>
  2443 + </partitioning>
  2444 + <fields> <select_unspecified>N</select_unspecified>
  2445 + <meta> <name>parade_mileage</name>
  2446 + <rename>parade_mileage</rename>
  2447 + <type>Number</type>
  2448 + <length>-2</length>
  2449 + <precision>-2</precision>
  2450 + <conversion_mask/>
  2451 + <date_format_lenient>false</date_format_lenient>
  2452 + <date_format_locale/>
  2453 + <date_format_timezone/>
  2454 + <lenient_string_to_number>false</lenient_string_to_number>
  2455 + <encoding/>
  2456 + <decimal_symbol/>
  2457 + <grouping_symbol/>
  2458 + <currency_symbol/>
  2459 + <storage_type/>
  2460 + </meta> <meta> <name>parade_time</name>
  2461 + <rename>parade_time</rename>
  2462 + <type>Integer</type>
  2463 + <length>-2</length>
  2464 + <precision>-2</precision>
  2465 + <conversion_mask/>
  2466 + <date_format_lenient>false</date_format_lenient>
  2467 + <date_format_locale/>
  2468 + <date_format_timezone/>
  2469 + <lenient_string_to_number>false</lenient_string_to_number>
  2470 + <encoding/>
  2471 + <decimal_symbol/>
  2472 + <grouping_symbol/>
  2473 + <currency_symbol/>
  2474 + <storage_type/>
  2475 + </meta> </fields> <cluster_schema/>
  2476 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2477 + <xloc>875</xloc>
  2478 + <yloc>1001</yloc>
  2479 + <draw>Y</draw>
  2480 + </GUI>
  2481 + </step>
  2482 +
  2483 + <step>
  2484 + <name>&#x8ba1;&#x7b97;&#x73ed;&#x6b21;&#x7c7b;&#x578b;</name>
  2485 + <type>ValueMapper</type>
  2486 + <description/>
  2487 + <distribute>Y</distribute>
  2488 + <custom_distribution/>
  2489 + <copies>1</copies>
  2490 + <partitioning>
  2491 + <method>none</method>
  2492 + <schema_name/>
  2493 + </partitioning>
  2494 + <field_to_use>qdzname</field_to_use>
  2495 + <target_field>bctype</target_field>
  2496 + <non_match_default>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</non_match_default>
  2497 + <fields>
  2498 + <field>
  2499 + <source_value>&#x51fa;&#x573a;</source_value>
  2500 + <target_value>&#x51fa;&#x573a;</target_value>
  2501 + </field>
  2502 + <field>
  2503 + <source_value>&#x8fdb;&#x573a;</source_value>
  2504 + <target_value>&#x8fdb;&#x573a;</target_value>
  2505 + </field>
  2506 + </fields>
  2507 + <cluster_schema/>
  2508 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2509 + <xloc>1014</xloc>
  2510 + <yloc>401</yloc>
  2511 + <draw>Y</draw>
  2512 + </GUI>
  2513 + </step>
  2514 +
  2515 + <step>
  2516 + <name>&#x8bb0;&#x5f55;&#x5173;&#x8054; &#x28;&#x7b1b;&#x5361;&#x5c14;&#x8f93;&#x51fa;&#x29;</name>
  2517 + <type>JoinRows</type>
  2518 + <description/>
  2519 + <distribute>Y</distribute>
  2520 + <custom_distribution/>
  2521 + <copies>1</copies>
  2522 + <partitioning>
  2523 + <method>none</method>
  2524 + <schema_name/>
  2525 + </partitioning>
  2526 + <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
  2527 + <prefix>out</prefix>
  2528 + <cache_size>500</cache_size>
  2529 + <main/>
  2530 + <compare>
  2531 +<condition>
  2532 + <negated>N</negated>
  2533 + <leftvalue/>
  2534 + <function>&#x3d;</function>
  2535 + <rightvalue/>
  2536 + </condition>
  2537 + </compare>
  2538 + <cluster_schema/>
  2539 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2540 + <xloc>310</xloc>
  2541 + <yloc>133</yloc>
  2542 + <draw>Y</draw>
  2543 + </GUI>
  2544 + </step>
  2545 +
  2546 + <step>
  2547 + <name>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;&#xff08;&#x53d1;&#x8f66;&#x65f6;&#x95f4;&#x4e3a;&#x7a7a;&#xff09;</name>
  2548 + <type>FilterRows</type>
  2549 + <description/>
  2550 + <distribute>Y</distribute>
  2551 + <custom_distribution/>
  2552 + <copies>1</copies>
  2553 + <partitioning>
  2554 + <method>none</method>
  2555 + <schema_name/>
  2556 + </partitioning>
  2557 +<send_true_to/>
  2558 +<send_false_to/>
  2559 + <compare>
  2560 +<condition>
  2561 + <negated>N</negated>
  2562 + <leftvalue>sendtime</leftvalue>
  2563 + <function>IS NOT NULL</function>
  2564 + <rightvalue/>
  2565 + </condition>
  2566 + </compare>
  2567 + <cluster_schema/>
  2568 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2569 + <xloc>571</xloc>
  2570 + <yloc>44</yloc>
  2571 + <draw>Y</draw>
  2572 + </GUI>
  2573 + </step>
  2574 +
  2575 + <step>
  2576 + <name>&#x8fdb;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x8d77;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</name>
  2577 + <type>ScriptValueMod</type>
  2578 + <description/>
  2579 + <distribute>Y</distribute>
  2580 + <custom_distribution/>
  2581 + <copies>1</copies>
  2582 + <partitioning>
  2583 + <method>none</method>
  2584 + <schema_name/>
  2585 + </partitioning>
  2586 + <compatible>N</compatible>
  2587 + <optimizationLevel>9</optimizationLevel>
  2588 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  2589 + <jsScript_name>Script 1</jsScript_name>
  2590 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;&#x2f;&#x2f; &#x6dfb;&#x52a0;&#x7ad9;&#x70b9;&#x6807;&#x8bc6;&#xa;var cc_groups &#x3d; qdzgroups.split&#x28;&#x22;,&#x22;&#x29;&#x3b; &#x2f;&#x2f; &#x6240;&#x6709;&#x73ed;&#x6b21;&#x8d77;&#x70b9;&#x7ad9;&#x6570;&#x7ec4;&#xa;var qdzname_calcu &#x3d; cc_groups&#x5b;gno - 2&#x5d;&#x3b; &#x2f;&#x2f; &#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x7684;&#x8d77;&#x70b9;&#x7ad9;&#x662f;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ec8;&#x70b9;&#x7ad9;&#xff0c;&#x8fd9;&#x91cc;&#x53ea;&#x6709;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x8d77;&#x70b9;&#x7ad9;&#xff0c;&#x8fd8;&#x9700;&#x8981;&#x8ba1;&#x7b97;&#xa;var startZdtype_calcu &#x3d; &#x27;B&#x27;&#x3b;&#xa;var endZdtype_calcu &#x3d; &#x27;E&#x27;&#x3b;&#xa;&#xa;var destory &#x3d; 0&#x3b; &#x2f;&#x2f; &#x672a;&#x64a4;&#x9500;flag</jsScript_script>
  2591 + </jsScript> </jsScripts> <fields> <field> <name>qdzname_calcu</name>
  2592 + <rename>qdzname_calcu</rename>
  2593 + <type>String</type>
  2594 + <length>-1</length>
  2595 + <precision>-1</precision>
  2596 + <replace>N</replace>
  2597 + </field> <field> <name>startZdtype_calcu</name>
  2598 + <rename>startZdtype_calcu</rename>
  2599 + <type>String</type>
  2600 + <length>-1</length>
  2601 + <precision>-1</precision>
  2602 + <replace>N</replace>
  2603 + </field> <field> <name>endZdtype_calcu</name>
  2604 + <rename>endZdtype_calcu</rename>
  2605 + <type>String</type>
  2606 + <length>-1</length>
  2607 + <precision>-1</precision>
  2608 + <replace>N</replace>
  2609 + </field> <field> <name>destory</name>
  2610 + <rename>destory</rename>
  2611 + <type>Integer</type>
  2612 + <length>-1</length>
  2613 + <precision>-1</precision>
  2614 + <replace>N</replace>
  2615 + </field> </fields> <cluster_schema/>
  2616 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2617 + <xloc>754</xloc>
  2618 + <yloc>610</yloc>
  2619 + <draw>Y</draw>
  2620 + </GUI>
  2621 + </step>
  2622 +
  2623 + <step>
  2624 + <name>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</name>
  2625 + <type>Dummy</type>
  2626 + <description/>
  2627 + <distribute>Y</distribute>
  2628 + <custom_distribution/>
  2629 + <copies>1</copies>
  2630 + <partitioning>
  2631 + <method>none</method>
  2632 + <schema_name/>
  2633 + </partitioning>
  2634 + <cluster_schema/>
  2635 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2636 + <xloc>997</xloc>
  2637 + <yloc>606</yloc>
  2638 + <draw>Y</draw>
  2639 + </GUI>
  2640 + </step>
  2641 +
  2642 + <step_error_handling>
  2643 + </step_error_handling>
  2644 + <slave-step-copy-partition-distribution>
  2645 +</slave-step-copy-partition-distribution>
  2646 + <slave_transformation>N</slave_transformation>
  2647 +
  2648 +</transformation>
src/main/resources/static/pages/scheduleApp/module/core/rerunManage/module.js
1 // 规则配置管理 service controller 等写在一起 1 // 规则配置管理 service controller 等写在一起
2 -angular.module('ScheduleApp').factory('RerunManageService', ['rerunManageService_g', function(service) {  
3 - /** 当前的查询条件信息 */  
4 - var currentSearchCondition = {'isCancel_eq': false};  
5 -  
6 - /** 当前第几页 */  
7 - var currentPageNo = 1;  
8 -  
9 - return {  
10 - /**  
11 - * 获取查询条件信息,  
12 - * 用于给controller用来和页面数据绑定。  
13 - */  
14 - getSearchCondition: function() {  
15 - return currentSearchCondition;  
16 - },  
17 - /**  
18 - * 重置查询条件信息。  
19 - */  
20 - resetSearchCondition: function() {  
21 - var key;  
22 - for (key in currentSearchCondition) {  
23 - currentSearchCondition[key] = undefined;  
24 - }  
25 - currentSearchCondition['isCancel_eq'] = false;  
26 - },  
27 - /**  
28 - * 设置当前页码。  
29 - * @param cpn 从1开始,后台是从0开始的  
30 - */  
31 - setCurrentPageNo: function(cpn) {  
32 - currentPageNo = cpn;  
33 - },  
34 - /**  
35 - * 组装查询参数,返回一个promise查询结果。  
36 - * @param params 查询参数  
37 - * @return 返回一个 promise  
38 - */  
39 - getPage: function() {  
40 - var params = currentSearchCondition; // 查询条件  
41 - params.page = currentPageNo - 1; // 服务端页码从0开始  
42 - return service.rest.list(params).$promise;  
43 - },  
44 - /**  
45 - * 获取明细信息。  
46 - * @param id 车辆id  
47 - * @return 返回一个 promise  
48 - */  
49 - getDetail: function(id) {  
50 - var params = {id: id};  
51 - return service.rest.get(params).$promise;  
52 - },  
53 - /**  
54 - * 保存信息。  
55 - * @param obj 车辆详细信息  
56 - * @return 返回一个 promise  
57 - */  
58 - saveDetail: function(obj) {  
59 - return service.rest.save(obj).$promise;  
60 - },  
61 - /**  
62 - * 删除信息。  
63 - * @param id 主键id  
64 - * @returns {*|Function|promise|n}  
65 - */  
66 - deleteDetail: function(id) {  
67 - return service.rest.delete({id: id}).$promise;  
68 - }  
69 - }; 2 +angular.module('ScheduleApp').factory(
  3 + 'RerunManageService',
  4 + [
  5 + 'rerunManageService_g',
  6 + function(service) {
  7 + /** 当前的查询条件信息 */
  8 + var currentSearchCondition = {'isCancel_eq': false};
  9 +
  10 + // 当前查询返回的信息
  11 + var currentPage = { // 后台spring data返回的格式
  12 + totalElements: 0,
  13 + number: 0, // 后台返回的页码,spring返回从0开始
  14 + content: [],
  15 +
  16 + uiNumber: 1 // 页面绑定的页码
  17 + };
  18 +
  19 + // 查询对象
  20 + var queryClass = service.rest;
  21 +
  22 + return {
  23 + getQueryClass: function() {
  24 + return queryClass;
  25 + },
  26 + getSearchCondition: function() {
  27 + currentSearchCondition.page = currentPage.uiNumber - 1;
  28 + return currentSearchCondition;
  29 + },
  30 + getPage: function(page) {
  31 + if (page) {
  32 + currentPage.totalElements = page.totalElements;
  33 + currentPage.number = page.number;
  34 + currentPage.content = page.content;
  35 + }
  36 + return currentPage;
  37 + },
  38 + resetStatus: function() {
  39 + currentSearchCondition = {page: 0, 'isCancel_eq': false};
  40 + currentPage = {
  41 + totalElements: 0,
  42 + number: 0,
  43 + content: [],
  44 + uiNumber: 1
  45 + };
  46 + }
  47 + };
70 48
71 -}]); 49 + }
  50 + ]
  51 +);
  52 +
  53 +// index.html控制器
  54 +angular.module('ScheduleApp').controller(
  55 + 'RerunManageCtrl',
  56 + [
  57 + 'RerunManageService',
  58 + '$state',
  59 + function(service, $state) {
  60 + var self = this;
  61 +
  62 + // 切换到form状态
  63 + self.goForm = function() {
  64 + //alert("切换");
  65 + $state.go("rerunManage_form");
  66 + };
72 67
73 -angular.module('ScheduleApp').controller('RerunManageCtrl', ['RerunManageService', '$state', function(rerunManageService, $state) {  
74 - var self = this; 68 + }
  69 + ]
  70 +);
  71 +
  72 +// list.html控制器
  73 +angular.module('ScheduleApp').controller(
  74 + 'RerunManageListCtrl',
  75 + [
  76 + 'RerunManageService',
  77 + function(service) {
  78 + var self = this;
  79 + var Rerun = servier.getQueryClass();
  80 +
  81 + self.page = function() {
  82 + return service.getPage();
  83 + };
  84 +
  85 + self.searchCondition = function() {
  86 + return service.getSearchCondition();
  87 + };
  88 +
  89 + self.doPage = function() {
  90 + var page = Rerun.list(self.searchCondition(), function() {
  91 + service.getPage(page);
  92 + });
  93 + };
  94 + self.reset = function() {
  95 + service.resetStatus();
  96 + var page = Rerun.list(self.searchCondition(), function() {
  97 + service.getPage(page);
  98 + });
  99 + };
  100 + self.toggleBusConfig = function(id) {
  101 + Rerun.delete({id: id}, function(result) {
  102 + if (result.msg) { // 暂时这样做,之后全局拦截
  103 + alert("失败:" + result.msg);
  104 + } else {
  105 + self.doPage();
  106 + }
  107 + });
  108 + };
75 109
76 - // 切换到form状态  
77 - self.goForm = function() {  
78 - //alert("切换");  
79 - $state.go("rerunManage_form");  
80 - }; 110 + self.doPage();
81 111
82 -}]);  
83 112
84 -angular.module('ScheduleApp').controller('RerunManageListCtrl', ['RerunManageService', function(rerunManageService) {  
85 - var self = this;  
86 - self.pageInfo = {  
87 - totalItems : 0,  
88 - currentPage : 1,  
89 - infos: []  
90 - };  
91 -  
92 - // 初始创建的时候,获取一次列表数据  
93 - rerunManageService.getPage().then(  
94 - function(result) {  
95 - self.pageInfo.totalItems = result.totalElements;  
96 - self.pageInfo.currentPage = result.number + 1;  
97 - self.pageInfo.infos = result.content;  
98 - rerunManageService.setCurrentPageNo(result.number + 1);  
99 - },  
100 - function(result) {  
101 - alert("出错啦!");  
102 } 113 }
103 - );  
104 -  
105 - //$scope.$watch("ctrl.pageInfo.currentPage", function() {  
106 - // alert("dfdfdf");  
107 - //});  
108 -  
109 - // 翻页的时候调用  
110 - self.pageChanaged = function() {  
111 - rerunManageService.setCurrentPageNo(self.pageInfo.currentPage);  
112 - rerunManageService.getPage().then(  
113 - function(result) {  
114 - self.pageInfo.totalItems = result.totalElements;  
115 - self.pageInfo.currentPage = result.number + 1;  
116 - self.pageInfo.infos = result.content;  
117 - rerunManageService.setCurrentPageNo(result.number + 1);  
118 - },  
119 - function(result) {  
120 - alert("出错啦!");  
121 - }  
122 - );  
123 - };  
124 - // 获取查询条件数据  
125 - self.searchCondition = function() {  
126 - return rerunManageService.getSearchCondition();  
127 - };  
128 - // 重置查询条件  
129 - self.resetSearchCondition = function() {  
130 - rerunManageService.resetSearchCondition();  
131 - self.pageInfo.currentPage = 1;  
132 - self.pageChanaged();  
133 - };  
134 -  
135 - // 作废/撤销  
136 - self.toggleRerun = function(id) {  
137 - // TODO:  
138 - rerunManageService.deleteDetail(id).then(  
139 - function(result) {  
140 - if (result.message) { // 暂时这样做,之后全局拦截  
141 - alert("失败:" + result.message);  
142 - } else {  
143 - alert("成功!");  
144 -  
145 - rerunManageService.getPage().then(  
146 - function(result) {  
147 - self.pageInfo.totalItems = result.totalElements;  
148 - self.pageInfo.currentPage = result.number + 1;  
149 - self.pageInfo.infos = result.content;  
150 - rerunManageService.setCurrentPageNo(result.number + 1);  
151 - },  
152 - function(result) {  
153 - alert("出错啦!");  
154 - }  
155 - );  
156 - } 114 + ]
  115 +);
  116 +
  117 +// form.html控制器
  118 +angular.module('ScheduleApp').controller(
  119 + 'RerunManageFormCtrl',
  120 + [
  121 + 'RerunManageService',
  122 + '$stateParams',
  123 + '$state',
  124 + '$scope',
  125 + function(service, $stateParams, $state, $scope) {
  126 + var self = this;
  127 + var Rerun = service.getQueryClass();
  128 +
  129 + // 启用日期 日期控件开关
  130 + self.qyrqOpen = false;
  131 + self.qyrq_open = function() {
  132 + self.qyrqOpen = true;
  133 + };
  134 +
  135 + // 欲保存的busInfo信息,绑定
  136 + self.rerunManageForSave = new Rerun;
  137 + self.rerunManageForSave.rerunXl = {};
  138 + self.rerunManageForSave.rerunTtinfo = {};
  139 + self.rerunManageForSave.rerunLp = {};
  140 + self.rerunManageForSave.rerunType = 'dylp';
  141 + self.rerunManageForSave.useXl = {};
  142 + self.rerunManageForSave.useLp = {};
  143 + self.rerunManageForSave.useCarConfig = {};
  144 + self.rerunManageForSave.useEmployeeConfig = {};
  145 +
  146 + // 获取传过来的id,有的话就是修改,获取一遍数据
  147 + var id = $stateParams.id;
  148 + if (id) {
  149 + Rerun.get({id: id}, function(value) {
  150 + self.rerunManageForSave = value;
  151 +
  152 + if (self.rerunManageForSave.rerunType == 'dylp') {
  153 + self.rerunManageForSave.useCarConfig = {};
  154 + self.rerunManageForSave.useEmployeeConfig = {};
  155 + } else if (self.rerunManageForSave.rerunType == 'dybc') {
  156 + self.rerunManageForSave.useXl = {};
  157 + self.rerunManageForSave.useLp = {};
  158 + } else {
157 159
158 - },  
159 - function(result) {  
160 - alert("出错啦!" + result);  
161 - }  
162 - );  
163 - };  
164 -  
165 -}]);  
166 -  
167 -angular.module('ScheduleApp').controller('RerunManageFormCtrl', ['RerunManageService', '$stateParams', '$state', '$scope', function(rerunManageService, $stateParams, $state, $scope) {  
168 - var self = this;  
169 -  
170 - // 启用日期 日期控件开关  
171 - self.qyrqOpen = false;  
172 - self.qyrq_open = function() {  
173 - self.qyrqOpen = true;  
174 - };  
175 -  
176 - // 欲保存的busInfo信息,绑定  
177 - self.rerunManageForSave = {rerunXl: {}, rerunTtinfo: {}, rerunLp: {}, rerunType: "dylp", useXl: {}, useLp: {}, useCarConfig: {}, useEmployeeConfig: {}};  
178 -  
179 - // 获取传过来的id,有的话就是修改,获取一遍数据  
180 - var id = $stateParams.id;  
181 - if (id) {  
182 - self.rerunManageForSave.id = id;  
183 - rerunManageService.getDetail(id).then(  
184 - function(result) {  
185 - var key;  
186 - for (key in result) {  
187 - if (result[key]) {  
188 - self.rerunManageForSave[key] = result[key];  
189 -  
190 - if (self.rerunManageForSave.rerunType == 'dylp') {  
191 - self.rerunManageForSave.useCarConfig = {};  
192 - self.rerunManageForSave.useEmployeeConfig = {};  
193 - } else if (self.rerunManageForSave.rerunType == 'dybc') {  
194 - self.rerunManageForSave.useXl = {};  
195 - self.rerunManageForSave.useLp = {};  
196 - } else {  
197 -  
198 - }  
199 } 160 }
200 - }  
201 - },  
202 - function(result) {  
203 - alert("出错啦!"); 161 + });
204 } 162 }
205 - );  
206 - }  
207 -  
208 - // 提交方法  
209 - self.submit = function() {  
210 - if (self.rerunManageForSave.rerunType == 'dylp') {  
211 - delete self.rerunManageForSave.useCarConfig;  
212 - delete self.rerunManageForSave.useEmployeeConfig;  
213 -  
214 - // 关联对象只取id  
215 - self.rerunManageForSave.useXl = {id: self.rerunManageForSave.useXl.id};  
216 - self.rerunManageForSave.useLp = {id: self.rerunManageForSave.useLp.id}  
217 - } else if (self.rerunManageForSave.rerunType == 'dybc') {  
218 - delete self.rerunManageForSave.useXl;  
219 - delete self.rerunManageForSave.useLp;  
220 -  
221 - // 关联对象只取id  
222 - self.rerunManageForSave.useCarConfig = {id: self.rerunManageForSave.useCarConfig.id};  
223 - self.rerunManageForSave.useEmployeeConfig = {id: self.rerunManageForSave.useEmployeeConfig.id};  
224 - } else {  
225 - return;  
226 - }  
227 163
228 - rerunManageService.saveDetail(self.rerunManageForSave).then(  
229 - function(result) {  
230 - // TODO:弹出框方式以后改  
231 - if (result.status == 'SUCCESS') {  
232 - alert("保存成功!");  
233 - $state.go("rerunManage"); 164 + // 提交方法
  165 + self.submit = function() {
  166 + if (self.rerunManageForSave.rerunType == 'dylp') {
  167 + delete self.rerunManageForSave.useCarConfig;
  168 + delete self.rerunManageForSave.useEmployeeConfig;
  169 +
  170 + // 关联对象只取id
  171 + self.rerunManageForSave.useXl = {id: self.rerunManageForSave.useXl.id};
  172 + self.rerunManageForSave.useLp = {id: self.rerunManageForSave.useLp.id}
  173 + } else if (self.rerunManageForSave.rerunType == 'dybc') {
  174 + delete self.rerunManageForSave.useXl;
  175 + delete self.rerunManageForSave.useLp;
  176 +
  177 + // 关联对象只取id
  178 + self.rerunManageForSave.useCarConfig = {id: self.rerunManageForSave.useCarConfig.id};
  179 + self.rerunManageForSave.useEmployeeConfig = {id: self.rerunManageForSave.useEmployeeConfig.id};
234 } else { 180 } else {
235 - alert("保存异常!"); 181 + return;
236 } 182 }
237 - },  
238 - function(result) {  
239 - // TODO:弹出框方式以后改  
240 - alert("出错啦!");  
241 - }  
242 - );  
243 - }; 183 +
  184 + // 保存或者更新
  185 + self.rerunManageForSave.$save(function() {
  186 + $state.go("rerunManage");
  187 + });
  188 + };
244 }]); 189 }]);
245 190
246 -angular.module('ScheduleApp').controller('RerunManageDetailCtrl', ['RerunManageService', '$stateParams', function(rerunManageService, $stateParams) {  
247 - var self = this;  
248 - self.title = "";  
249 - self.rerunManageForDetail = {};  
250 - self.rerunManageForDetail.id = $stateParams.id;  
251 -  
252 - // 当转向到此页面时,就获取明细信息并绑定  
253 - rerunManageService.getDetail($stateParams.id).then(  
254 - function(result) {  
255 - var key;  
256 - for (key in result) {  
257 - self.rerunManageForDetail[key] = result[key];  
258 - } 191 +// detail.html控制器
  192 +angular.module('ScheduleApp').controller(
  193 + 'RerunManageDetailCtrl',
  194 + [
  195 + 'RerunManageService',
  196 + '$stateParams',
  197 + function(service, $stateParams) {
  198 + var self = this;
  199 + var Rerun = service.getQueryClass();
  200 + var id = $stateParams.id;
  201 +
  202 + self.title = "";
  203 + self.rerunManageForDetail = {};
  204 +
  205 + // 当转向到此页面时,就获取明细信息并绑定
  206 + Rerun.get({id: id}, function(value) {
  207 + self.rerunManageForDetail = value;
  208 + self.title = "规则配置详细信息";
  209 + });
259 210
260 - self.title = "规则配置详细信息";  
261 - },  
262 - function(result) {  
263 - // TODO:弹出框方式以后改  
264 - alert("出错啦!");  
265 } 211 }
266 - );  
267 -}]); 212 + ]
  213 +);
268 214
269 215
270 216
src/main/resources/static/pages/scheduleApp/module/core/rerunManage/service.js
@@ -3,16 +3,32 @@ angular.module(&#39;ScheduleApp&#39;).factory(&#39;rerunManageService_g&#39;, [&#39;$resource&#39;, func @@ -3,16 +3,32 @@ angular.module(&#39;ScheduleApp&#39;).factory(&#39;rerunManageService_g&#39;, [&#39;$resource&#39;, func
3 return { 3 return {
4 rest: $resource( 4 rest: $resource(
5 'rms/:id', 5 'rms/:id',
6 - {order: 'rerunXl.id,isCancel', direction: 'ASC', id: '@id_route'}, 6 + {order: 'rerunXl.id,isCancel', direction: 'ASC', id: '@'},
7 { 7 {
8 list: { 8 list: {
9 method: 'GET', 9 method: 'GET',
10 params: { 10 params: {
11 page: 0 11 page: 0
  12 + },
  13 + transformResponse: function(rs) {
  14 + var dst = angular.fromJson(rs);
  15 + if (dst.status == 'SUCCESS') {
  16 + return dst.data;
  17 + } else {
  18 + return dst; // 业务错误留给控制器处理
  19 + }
12 } 20 }
13 }, 21 },
14 get: { 22 get: {
15 - method: 'GET' 23 + method: 'GET',
  24 + transformResponse: function(rs) {
  25 + var dst = angular.fromJson(rs);
  26 + if (dst.status == 'SUCCESS') {
  27 + return dst.data;
  28 + } else {
  29 + return dst;
  30 + }
  31 + }
16 }, 32 },
17 save: { 33 save: {
18 method: 'POST' 34 method: 'POST'