Commit 0fc4bdad984a306970fd3d979c64c92dd666f44a

Authored by 潘钊
2 parents f95dc66b 43e2f0b1

Merge branch 'minhang' of http://222.66.0.204:8090/panzhaov5/bsth_control into minhang

# Conflicts:
#	src/main/java/com/bsth/service/oil/impl/YlxxbServiceImpl.java
#	src/main/java/com/bsth/service/report/impl/ReportServiceImpl.java
src/main/java/com/bsth/repository/realcontrol/ScheduleRealInfoRepository.java
... ... @@ -139,19 +139,19 @@ public interface ScheduleRealInfoRepository extends BaseRepository<ScheduleRealI
139 139  
140 140 //去掉了 xlBm is not null
141 141 @EntityGraph(value = "scheduleRealInfo_cTasks", type = EntityGraph.EntityGraphType.FETCH)
142   - @Query(value="select DISTINCT s from ScheduleRealInfo s where s.xlBm like %?1% and DATE_FORMAT(s.scheduleDate,'%Y-%m-%d') = ?2 order by s.xlDir,s.realExecDate,s.dfsj, (s.lpName+1)")
  142 + @Query(value="select DISTINCT s from ScheduleRealInfo s where s.xlBm like %?1% and DATE_FORMAT(s.scheduleDate,'%Y-%m-%d') = ?2 order by s.xlDir,s.realExecDate,s.fcsj, lpName")
143 143 List<ScheduleRealInfo> scheduleByDateAndLine(String line,String date);
144 144  
145 145 @EntityGraph(value = "scheduleRealInfo_cTasks", type = EntityGraph.EntityGraphType.FETCH)
146   - @Query(value="select DISTINCT s from ScheduleRealInfo s where s.xlBm =?1 and DATE_FORMAT(s.scheduleDate,'%Y-%m-%d') = ?2 order by (s.lpName+1), s.realExecDate,s.dfsj")
  146 + @Query(value="select DISTINCT s from ScheduleRealInfo s where s.xlBm =?1 and DATE_FORMAT(s.scheduleDate,'%Y-%m-%d') = ?2 order by s.lpName, s.realExecDate,s.fcsj")
147 147 List<ScheduleRealInfo> scheduleByDateAndLineQp(String line,String date);
148 148  
149 149 @EntityGraph(value = "scheduleRealInfo_cTasks", type = EntityGraph.EntityGraphType.FETCH)
150   - @Query(value="select DISTINCT s from ScheduleRealInfo s where gsBm like %?1% and fgsBm like %?2% and DATE_FORMAT(s.scheduleDate,'%Y-%m-%d') = ?3 and s.bcType not in ('in','out','ldks') order by s.xlDir,s.realExecDate,s.dfsj, (s.lpName+1)")
  150 + @Query(value="select DISTINCT s from ScheduleRealInfo s where gsBm like %?1% and fgsBm like %?2% and DATE_FORMAT(s.scheduleDate,'%Y-%m-%d') = ?3 and s.bcType not in ('in','out','ldks') order by s.xlDir,s.realExecDate,s.fcsj, s.lpName")
151 151 List<ScheduleRealInfo> scheduleByDateAndLineByGs(String gsdm,String fgsdm,String date);
152 152  
153 153 @EntityGraph(value = "scheduleRealInfo_cTasks", type = EntityGraph.EntityGraphType.FETCH)
154   - @Query(value="select DISTINCT s from ScheduleRealInfo s where s.xlBm = ?1 and DATE_FORMAT(s.scheduleDate,'%Y-%m-%d') = ?2 order by s.xlDir,s.realExecDate,s.dfsj, (s.lpName+1)")
  154 + @Query(value="select DISTINCT s from ScheduleRealInfo s where s.xlBm = ?1 and DATE_FORMAT(s.scheduleDate,'%Y-%m-%d') = ?2 order by s.xlDir,s.realExecDate,s.fcsj, s.lpName")
155 155 List<ScheduleRealInfo> scheduleByDateAndLineQp2(String line,String date);
156 156  
157 157 @EntityGraph(value = "scheduleRealInfo_cTasks", type = EntityGraph.EntityGraphType.FETCH)
... ...
src/main/java/com/bsth/service/oil/impl/YlxxbServiceImpl.java
1 1 package com.bsth.service.oil.impl;
2 2  
  3 +import java.sql.ResultSet;
  4 +import java.sql.SQLException;
  5 +import java.text.ParseException;
  6 +import java.text.SimpleDateFormat;
  7 +import java.util.ArrayList;
  8 +import java.util.HashMap;
  9 +import java.util.List;
  10 +import java.util.Map;
  11 +
  12 +import javax.transaction.Transactional;
  13 +
  14 +import org.apache.commons.lang3.StringEscapeUtils;
  15 +import org.slf4j.Logger;
  16 +import org.slf4j.LoggerFactory;
  17 +import org.springframework.beans.factory.annotation.Autowired;
  18 +import org.springframework.jdbc.core.JdbcTemplate;
  19 +import org.springframework.jdbc.core.RowMapper;
  20 +import org.springframework.stereotype.Service;
  21 +
3 22 import com.alibaba.fastjson.JSONArray;
4 23 import com.alibaba.fastjson.JSONObject;
5 24 import com.bsth.common.ResponseCode;
  25 +import com.bsth.entity.excep.Offline;
6 26 import com.bsth.entity.oil.Ylb;
7 27 import com.bsth.entity.oil.Ylxxb;
  28 +import com.bsth.entity.search.CustomerSpecs;
8 29 import com.bsth.repository.oil.YlbRepository;
9 30 import com.bsth.repository.oil.YlxxbRepository;
10 31 import com.bsth.service.impl.BaseServiceImpl;
11 32 import com.bsth.service.oil.YlxxbService;
12 33 import com.bsth.util.PageHelper;
13 34 import com.bsth.util.PageObject;
14   -import org.apache.commons.lang3.StringEscapeUtils;
15   -import org.slf4j.Logger;
16   -import org.slf4j.LoggerFactory;
17   -import org.springframework.beans.factory.annotation.Autowired;
18   -import org.springframework.jdbc.core.JdbcTemplate;
19   -import org.springframework.jdbc.core.RowMapper;
20   -import org.springframework.stereotype.Service;
21   -
22   -import javax.transaction.Transactional;
23   -import java.sql.ResultSet;
24   -import java.sql.SQLException;
25   -import java.util.HashMap;
26   -import java.util.List;
27   -import java.util.Map;
28 35  
29 36 @Service
30 37 public class YlxxbServiceImpl extends BaseServiceImpl<Ylxxb,Integer> implements YlxxbService
... ... @@ -185,4 +192,4 @@ public class YlxxbServiceImpl extends BaseServiceImpl&lt;Ylxxb,Integer&gt; implements
185 192 return newMap;
186 193 }
187 194  
188   -}
  195 +}
189 196 \ No newline at end of file
... ...
src/main/java/com/bsth/service/realcontrol/impl/ScheduleRealInfoServiceImpl.java
... ... @@ -4077,7 +4077,8 @@ public class ScheduleRealInfoServiceImpl extends BaseServiceImpl&lt;ScheduleRealInf
4077 4077 Long zdsjActual_=Long.parseLong(zdsjActual_s[0])*60+Long.parseLong(zdsjActual_s[1]);
4078 4078 if((zdsj_-zdsjActual_)>0){
4079 4079 zdsjk =String.valueOf(zdsj_-zdsjActual_);
4080   - }else{
  4080 + }
  4081 + if(((zdsj_-zdsjActual_)<0)){
4081 4082 zdsjm =String.valueOf(zdsjActual_-zdsj_);
4082 4083 }
4083 4084 }
... ... @@ -4104,7 +4105,8 @@ public class ScheduleRealInfoServiceImpl extends BaseServiceImpl&lt;ScheduleRealInf
4104 4105 Long fcsjActural_=Long.parseLong(fcsjActural_s[0])*60+Long.parseLong(fcsjActural_s[1]);
4105 4106 if((zdsj_-fcsjActural_)>0){
4106 4107 fcsjk =String.valueOf(zdsj_-fcsjActural_);
4107   - }else{
  4108 + }
  4109 + if((zdsj_-fcsjActural_)<0){
4108 4110 fcsjm =String.valueOf(fcsjActural_-zdsj_);
4109 4111 }
4110 4112 }
... ...
src/main/java/com/bsth/service/report/impl/ReportServiceImpl.java
... ... @@ -4,6 +4,7 @@ import com.bsth.entity.Line;
4 4 import com.bsth.entity.Personnel;
5 5 import com.bsth.entity.StationRoute;
6 6 import com.bsth.entity.excep.ArrivalInfo;
  7 +import com.bsth.entity.mcy_forms.Daily;
7 8 import com.bsth.entity.oil.Dlb;
8 9 import com.bsth.entity.oil.Ylb;
9 10 import com.bsth.entity.realcontrol.ChildTaskPlan;
... ... @@ -19,6 +20,8 @@ import com.bsth.util.ComparableChild;
19 20 import com.bsth.util.ComparableJob;
20 21 import com.bsth.util.ReportUtils;
21 22 import com.bsth.util.db.DBUtils_MS;
  23 +import com.google.protobuf.StringValue;
  24 +
22 25 import org.apache.commons.lang.StringUtils;
23 26 import org.slf4j.Logger;
24 27 import org.slf4j.LoggerFactory;
... ... @@ -36,6 +39,8 @@ import java.text.ParseException;
36 39 import java.text.SimpleDateFormat;
37 40 import java.util.*;
38 41  
  42 +import javax.persistence.criteria.CriteriaBuilder.In;
  43 +
39 44 @Service
40 45 public class ReportServiceImpl implements ReportService{
41 46  
... ... @@ -66,16 +71,16 @@ public class ReportServiceImpl implements ReportService{
66 71 List<ScheduleRealInfo> list=scheduleRealInfoRepository.findByDate2(line,date,clzbh);
67 72  
68 73 // jdbcTemplate.query("select * from bsth_c_s_sp_info_real where line=?1 "
69   -// + "and DATE_FORMAT(schedule_date,'%Y-%m-%d')=?2 and cl_zbl=?3",
70   -// new Object[]{line,date,clzbh},
71   -// new RowMapper(){
72   -// @Override
73   -// public Object mapRow(ResultSet rs, int rowNum) throws SQLException {
74   -// ScheduleRealInfo s = new ScheduleRealInfo();
  74 +// + "and DATE_FORMAT(schedule_date,'%Y-%m-%d')=?2 and cl_zbl=?3",
  75 +// new Object[]{line,date,clzbh},
  76 +// new RowMapper(){
  77 +// @Override
  78 +// public Object mapRow(ResultSet rs, int rowNum) throws SQLException {
  79 +// ScheduleRealInfo s = new ScheduleRealInfo();
75 80 //// s.
76   -// return s;
77   -// }
78   -// });
  81 +// return s;
  82 +// }
  83 +// });
79 84  
80 85 return list;
81 86 }
... ... @@ -283,11 +288,11 @@ public class ReportServiceImpl implements ReportService{
283 288 + " group by equipment_code ) ";
284 289  
285 290 Map<String, Object> map=new HashMap<String,Object>();
286   -
  291 +
287 292 /*List<Map<String, Object>> listPc= jdbcTemplate.query(sqlPc,
288 293 new RowMapper<Map<String, Object>>(){
289 294 @Override
290   - public Map<String, Object> mapRow(ResultSet rs, int rowNum) throws SQLException {
  295 + public Map<String, Object> mapRow(ResultSet rs, int rowNum) throws SQLException {
291 296 Map<String, Object> m=new HashMap<String,Object>();
292 297 m.put("zbh", rs.getString("cl_zbh"));
293 298 return m;
... ... @@ -1453,7 +1458,7 @@ public class ReportServiceImpl implements ReportService{
1453 1458 keyMap.get("18:01——(末)").add(ttMap);
1454 1459 }
1455 1460 }
1456   -
  1461 +
1457 1462 for(String key : keyMap.keySet()){
1458 1463 Map<String, Object> tempMap = new HashMap<String, Object>();
1459 1464 List<Map<String, Object>> list2 = keyMap.get(key);
... ... @@ -1472,7 +1477,7 @@ public class ReportServiceImpl implements ReportService{
1472 1477 }else{
1473 1478 String[] split = m.get("fcsj").toString().split(":");
1474 1479 int fcsj = Integer.valueOf(split[0])*60 + Integer.valueOf(split[1]);
1475   -
  1480 +
1476 1481 int xlDir = Integer.valueOf(m.get("dir").toString());
1477 1482 int bcsj = Integer.valueOf(m.get("bcsj").toString());
1478 1483 if(temp >= fcsj){
... ... @@ -1493,17 +1498,17 @@ public class ReportServiceImpl implements ReportService{
1493 1498 }
1494 1499 }
1495 1500 lpname=m.get("lp").toString();
1496   -
  1501 +
1497 1502 }
1498 1503 sxtsbc++;
1499 1504 }
1500   -
  1505 +
1501 1506 } else {
1502   -
  1507 +
1503 1508 fcsj_x.add(fcsj);
1504 1509 xxsj += bcsj;
1505 1510 xxbc ++;
1506   -
  1511 +
1507 1512 if(!ists){
1508 1513 if(lpname.equals("")){
1509 1514 lpname=m.get("lp").toString();
... ... @@ -1517,7 +1522,7 @@ public class ReportServiceImpl implements ReportService{
1517 1522 }
1518 1523 xxtsbc++;
1519 1524 }
1520   -
  1525 +
1521 1526 }
1522 1527 if(temp < fcsj){
1523 1528 cjs.add(fcsj - temp);
... ... @@ -1539,7 +1544,7 @@ public class ReportServiceImpl implements ReportService{
1539 1544 cjs.add(fcsj_s.get(i)-fcsjs);
1540 1545 fcsjs=fcsj_s.get(i);
1541 1546 }
1542   -
  1547 +
1543 1548 }
1544 1549 Collections.sort(fcsj_x);
1545 1550 int fcsjx=0;
... ... @@ -1550,7 +1555,7 @@ public class ReportServiceImpl implements ReportService{
1550 1555 cjs.add(fcsj_x.get(i)-fcsjx);
1551 1556 fcsjx =fcsj_x.get(i);
1552 1557 }
1553   -
  1558 +
1554 1559 }
1555 1560 Collections.sort(cjs);
1556 1561 for(int i : cjs){
... ... @@ -1849,7 +1854,7 @@ public class ReportServiceImpl implements ReportService{
1849 1854 // while (it.hasNext()) {
1850 1855 // ChildTaskPlan childTaskPlan = it.next();
1851 1856 // if (childTaskPlan.isDestroy()) {
1852   -// }
  1857 +// }
1853 1858 // }
1854 1859 // }
1855 1860 }
... ... @@ -2218,7 +2223,7 @@ public class ReportServiceImpl implements ReportService{
2218 2223 , (i+1));
2219 2224 }
2220 2225 inoutList.add(map1);
2221   -
  2226 +
2222 2227 /*for (int j = 0; j < listStation.size(); j++) {
2223 2228 map2=new HashMap<String,Object>();
2224 2229 StationRoute s=listStation.get(j);
... ... @@ -2230,7 +2235,7 @@ public class ReportServiceImpl implements ReportService{
2230 2235 }
2231 2236 }
2232 2237 Map<String, String> m=this.strInOut(arrivalList,lzsj);
2233   -
  2238 +
2234 2239 map2.put(s.getStationCode()+"in", m.get("in"));
2235 2240 map2.put(s.getStationCode()+"out", m.get("out"));
2236 2241 map2.put(s.getStationCode(), m.get("type"));
... ... @@ -3233,4 +3238,4 @@ class ComparableAcuals implements Comparator&lt;ScheduleRealInfo&gt;{
3233 3238 return o1.getFcsjActualTime().compareTo(o2.getFcsjActualTime());
3234 3239 }
3235 3240  
3236   -}
  3241 +}
3237 3242 \ No newline at end of file
... ...
src/main/resources/datatools/ktrs/ttinfodetailDataInput.ktr
1   -<?xml version="1.0" encoding="UTF-8"?>
2   -<transformation>
3   - <info>
4   - <name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x5bfc;&#x5165;</name>
5   - <description>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;&#x5bfc;&#x5165;</description>
6   - <extended_description>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;</extended_description>
7   - <trans_version/>
8   - <trans_type>Normal</trans_type>
9   - <trans_status>0</trans_status>
10   - <directory>&#x2f;</directory>
11   - <parameters>
12   - </parameters>
13   - <log>
14   -<trans-log-table><connection/>
15   -<schema/>
16   -<table/>
17   -<size_limit_lines/>
18   -<interval/>
19   -<timeout_days/>
20   -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STATUS</id><enabled>Y</enabled><name>STATUS</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name><subject/></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name><subject/></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name><subject/></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name><subject/></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name><subject/></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name><subject/></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>STARTDATE</id><enabled>Y</enabled><name>STARTDATE</name></field><field><id>ENDDATE</id><enabled>Y</enabled><name>ENDDATE</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>DEPDATE</id><enabled>Y</enabled><name>DEPDATE</name></field><field><id>REPLAYDATE</id><enabled>Y</enabled><name>REPLAYDATE</name></field><field><id>LOG_FIELD</id><enabled>Y</enabled><name>LOG_FIELD</name></field><field><id>EXECUTING_SERVER</id><enabled>N</enabled><name>EXECUTING_SERVER</name></field><field><id>EXECUTING_USER</id><enabled>N</enabled><name>EXECUTING_USER</name></field><field><id>CLIENT</id><enabled>N</enabled><name>CLIENT</name></field></trans-log-table>
21   -<perf-log-table><connection/>
22   -<schema/>
23   -<table/>
24   -<interval/>
25   -<timeout_days/>
26   -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>SEQ_NR</id><enabled>Y</enabled><name>SEQ_NR</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>INPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>INPUT_BUFFER_ROWS</name></field><field><id>OUTPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>OUTPUT_BUFFER_ROWS</name></field></perf-log-table>
27   -<channel-log-table><connection/>
28   -<schema/>
29   -<table/>
30   -<timeout_days/>
31   -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>LOGGING_OBJECT_TYPE</id><enabled>Y</enabled><name>LOGGING_OBJECT_TYPE</name></field><field><id>OBJECT_NAME</id><enabled>Y</enabled><name>OBJECT_NAME</name></field><field><id>OBJECT_COPY</id><enabled>Y</enabled><name>OBJECT_COPY</name></field><field><id>REPOSITORY_DIRECTORY</id><enabled>Y</enabled><name>REPOSITORY_DIRECTORY</name></field><field><id>FILENAME</id><enabled>Y</enabled><name>FILENAME</name></field><field><id>OBJECT_ID</id><enabled>Y</enabled><name>OBJECT_ID</name></field><field><id>OBJECT_REVISION</id><enabled>Y</enabled><name>OBJECT_REVISION</name></field><field><id>PARENT_CHANNEL_ID</id><enabled>Y</enabled><name>PARENT_CHANNEL_ID</name></field><field><id>ROOT_CHANNEL_ID</id><enabled>Y</enabled><name>ROOT_CHANNEL_ID</name></field></channel-log-table>
32   -<step-log-table><connection/>
33   -<schema/>
34   -<table/>
35   -<timeout_days/>
36   -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>LOG_FIELD</id><enabled>N</enabled><name>LOG_FIELD</name></field></step-log-table>
37   -<metrics-log-table><connection/>
38   -<schema/>
39   -<table/>
40   -<timeout_days/>
41   -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>METRICS_DATE</id><enabled>Y</enabled><name>METRICS_DATE</name></field><field><id>METRICS_CODE</id><enabled>Y</enabled><name>METRICS_CODE</name></field><field><id>METRICS_DESCRIPTION</id><enabled>Y</enabled><name>METRICS_DESCRIPTION</name></field><field><id>METRICS_SUBJECT</id><enabled>Y</enabled><name>METRICS_SUBJECT</name></field><field><id>METRICS_TYPE</id><enabled>Y</enabled><name>METRICS_TYPE</name></field><field><id>METRICS_VALUE</id><enabled>Y</enabled><name>METRICS_VALUE</name></field></metrics-log-table>
42   - </log>
43   - <maxdate>
44   - <connection/>
45   - <table/>
46   - <field/>
47   - <offset>0.0</offset>
48   - <maxdiff>0.0</maxdiff>
49   - </maxdate>
50   - <size_rowset>10000</size_rowset>
51   - <sleep_time_empty>50</sleep_time_empty>
52   - <sleep_time_full>50</sleep_time_full>
53   - <unique_connections>N</unique_connections>
54   - <feedback_shown>Y</feedback_shown>
55   - <feedback_size>50000</feedback_size>
56   - <using_thread_priorities>Y</using_thread_priorities>
57   - <shared_objects_file/>
58   - <capture_step_performance>N</capture_step_performance>
59   - <step_performance_capturing_delay>1000</step_performance_capturing_delay>
60   - <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit>
61   - <dependencies>
62   - </dependencies>
63   - <partitionschemas>
64   - </partitionschemas>
65   - <slaveservers>
66   - </slaveservers>
67   - <clusterschemas>
68   - </clusterschemas>
69   - <created_user>-</created_user>
70   - <created_date>2016&#x2f;06&#x2f;30 12&#x3a;21&#x3a;57.536</created_date>
71   - <modified_user>-</modified_user>
72   - <modified_date>2016&#x2f;06&#x2f;30 12&#x3a;21&#x3a;57.536</modified_date>
73   - <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA&#x3d;</key_for_session_key>
74   - <is_key_private>N</is_key_private>
75   - </info>
76   - <notepads>
77   - <notepad>
78   - <note>&#x5b57;&#x5178;&#x8868;&#x5bf9;&#x5e94;&#xff08;&#x4ee5;&#x540e;&#x76f4;&#x63a5;&#x67e5;&#x627e;&#x8868; bsth_c_sys_dictionary&#xff09;&#xa;&#x7c7b;&#x578b; &#x4ee3;&#x7801; &#x540d;&#x79f0;&#xa;LineTrend 0 &#x4e0a;&#x884c;&#xa;LineTrend 1 &#x4e0b;&#x884c;&#xa;ScheduleType normal &#x6b63;&#x5e38;&#x73ed;&#x6b21;&#xa;ScheduleType out &#x51fa;&#x573a;&#xa;ScheduleType in &#x8fdb;&#x573a;&#xa;ScheduleType temp &#x4e34;&#x52a0;&#xa;ScheduleType region &#x533a;&#x95f4;&#xa;ScheduleType venting &#x653e;&#x7a7a;&#xa;ScheduleType major &#x653e;&#x5927;&#x7ad9;</note>
79   - <xloc>606</xloc>
80   - <yloc>129</yloc>
81   - <width>332</width>
82   - <heigth>186</heigth>
83   - <fontname>YaHei Consolas Hybrid</fontname>
84   - <fontsize>12</fontsize>
85   - <fontbold>N</fontbold>
86   - <fontitalic>N</fontitalic>
87   - <fontcolorred>0</fontcolorred>
88   - <fontcolorgreen>0</fontcolorgreen>
89   - <fontcolorblue>0</fontcolorblue>
90   - <backgroundcolorred>255</backgroundcolorred>
91   - <backgroundcolorgreen>205</backgroundcolorgreen>
92   - <backgroundcolorblue>112</backgroundcolorblue>
93   - <bordercolorred>100</bordercolorred>
94   - <bordercolorgreen>100</bordercolorgreen>
95   - <bordercolorblue>100</bordercolorblue>
96   - <drawshadow>Y</drawshadow>
97   - </notepad>
98   - <notepad>
99   - <note>&#x56e0;&#x4e3a;&#x65f6;&#x523b;&#x8868;&#x8f93;&#x5165;&#x683c;&#x5f0f;&#x4e0d;&#x786e;&#x5b9a;&#x6027;&#xff0c;&#x4e3b;&#x8981;&#x56e0;&#x4e3a;&#x8868;&#x7ed3;&#x6784;&#x662f;&#x53cd;&#x8303;&#x5f0f;&#x5316;&#x7684;&#xff0c;&#xa;&#x6240;&#x4ee5;&#x9700;&#x8981;&#x5916;&#x90e8;&#x52a8;&#x6001;&#x6307;&#x5b9a;&#x613f;&#x6570;&#x636e;&#xff0c;&#x5934;&#x4e09;&#x4e2a;step&#x52a8;&#x6001;&#x6307;&#x5b9a;&#x613f;&#x6570;&#x636e;&#xa;&#xa;</note>
100   - <xloc>79</xloc>
101   - <yloc>206</yloc>
102   - <width>346</width>
103   - <heigth>74</heigth>
104   - <fontname>YaHei Consolas Hybrid</fontname>
105   - <fontsize>12</fontsize>
106   - <fontbold>N</fontbold>
107   - <fontitalic>N</fontitalic>
108   - <fontcolorred>0</fontcolorred>
109   - <fontcolorgreen>0</fontcolorgreen>
110   - <fontcolorblue>0</fontcolorblue>
111   - <backgroundcolorred>255</backgroundcolorred>
112   - <backgroundcolorgreen>205</backgroundcolorgreen>
113   - <backgroundcolorblue>112</backgroundcolorblue>
114   - <bordercolorred>100</bordercolorred>
115   - <bordercolorgreen>100</bordercolorgreen>
116   - <bordercolorblue>100</bordercolorblue>
117   - <drawshadow>Y</drawshadow>
118   - </notepad>
119   - <notepad>
120   - <note>&#x8fd9;&#x91cc;&#x6709;&#x4e9b;&#x95ee;&#x9898;&#xa;&#x5728;window2012&#x7684;&#x73af;&#x5883;&#x4e0b;&#xff0c;&#xa;MySql&#x6570;&#x636e;&#x5e93;&#x67e5;&#x8be2;&#x4e2d;&#x5982;&#x679c;&#x8fd4;&#x56de;&#x4e2d;&#x6587;&#x5185;&#x5bb9;&#x7684;&#x5b57;&#x6bb5;&#xff0c;&#x8fd9;&#x4e2a;&#x5185;&#x5bb9;&#x4e71;&#x7801;&#xa;&#x89e3;&#x51b3;&#x529e;&#x6cd5;&#xff0c;&#x5c31;&#x662f;&#x6570;&#x636e;&#x5e93;&#x67e5;&#x8be2;&#x5168;&#x90e8;&#x7f13;&#x5b58;&#xff0c;&#x5c31;&#x4e0d;&#x4e71;&#x7801;&#xa;linux&#x73af;&#x5883;&#x4e0b;&#x6ca1;&#x95ee;&#x9898;</note>
121   - <xloc>721</xloc>
122   - <yloc>762</yloc>
123   - <width>333</width>
124   - <heigth>90</heigth>
125   - <fontname>YaHei Consolas Hybrid</fontname>
126   - <fontsize>12</fontsize>
127   - <fontbold>N</fontbold>
128   - <fontitalic>N</fontitalic>
129   - <fontcolorred>0</fontcolorred>
130   - <fontcolorgreen>0</fontcolorgreen>
131   - <fontcolorblue>0</fontcolorblue>
132   - <backgroundcolorred>255</backgroundcolorred>
133   - <backgroundcolorgreen>205</backgroundcolorgreen>
134   - <backgroundcolorblue>112</backgroundcolorblue>
135   - <bordercolorred>100</bordercolorred>
136   - <bordercolorgreen>100</bordercolorgreen>
137   - <bordercolorblue>100</bordercolorblue>
138   - <drawshadow>Y</drawshadow>
139   - </notepad>
140   - <notepad>
141   - <note>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#xff0c;&#x65b9;&#x5411;&#x6709;&#x65f6;&#x786e;&#x5b9a;&#x4e0d;&#x51c6;&#xff0c;&#xa;&#x7a7a;&#x7684;&#x60c5;&#x51b5;&#x4e0b;&#x8bbe;&#x5b9a;&#x4e3a;0&#xff08;&#x4e0a;&#x884c;&#xff09;</note>
142   - <xloc>120</xloc>
143   - <yloc>1016</yloc>
144   - <width>178</width>
145   - <heigth>42</heigth>
146   - <fontname>YaHei Consolas Hybrid</fontname>
147   - <fontsize>12</fontsize>
148   - <fontbold>N</fontbold>
149   - <fontitalic>N</fontitalic>
150   - <fontcolorred>0</fontcolorred>
151   - <fontcolorgreen>0</fontcolorgreen>
152   - <fontcolorblue>0</fontcolorblue>
153   - <backgroundcolorred>255</backgroundcolorred>
154   - <backgroundcolorgreen>205</backgroundcolorgreen>
155   - <backgroundcolorblue>112</backgroundcolorblue>
156   - <bordercolorred>100</bordercolorred>
157   - <bordercolorgreen>100</bordercolorgreen>
158   - <bordercolorblue>100</bordercolorblue>
159   - <drawshadow>Y</drawshadow>
160   - </notepad>
161   - <notepad>
162   - <note>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#xff0c;&#x65b9;&#x5411;&#x6709;&#x65f6;&#x786e;&#x5b9a;&#x4e0d;&#x51c6;&#xff0c;&#xa;&#x7a7a;&#x7684;&#x60c5;&#x51b5;&#x4e0b;&#x8bbe;&#x5b9a;&#x4e3a;0&#xff08;&#x4e0a;&#x884c;&#xff09;</note>
163   - <xloc>578</xloc>
164   - <yloc>1084</yloc>
165   - <width>178</width>
166   - <heigth>42</heigth>
167   - <fontname>YaHei Consolas Hybrid</fontname>
168   - <fontsize>12</fontsize>
169   - <fontbold>N</fontbold>
170   - <fontitalic>N</fontitalic>
171   - <fontcolorred>0</fontcolorred>
172   - <fontcolorgreen>0</fontcolorgreen>
173   - <fontcolorblue>0</fontcolorblue>
174   - <backgroundcolorred>255</backgroundcolorred>
175   - <backgroundcolorgreen>205</backgroundcolorgreen>
176   - <backgroundcolorblue>112</backgroundcolorblue>
177   - <bordercolorred>100</bordercolorred>
178   - <bordercolorgreen>100</bordercolorgreen>
179   - <bordercolorblue>100</bordercolorblue>
180   - <drawshadow>Y</drawshadow>
181   - </notepad>
182   - </notepads>
183   - <connection>
184   - <name>192.168.168.1_jwgl_dw</name>
185   - <server>192.168.168.1</server>
186   - <type>ORACLE</type>
187   - <access>Native</access>
188   - <database>orcl</database>
189   - <port>1521</port>
190   - <username>jwgl_dw</username>
191   - <password>Encrypted 2be98afc86aa7f2e4cb13b977d2adabcd</password>
192   - <servername/>
193   - <data_tablespace/>
194   - <index_tablespace/>
195   - <attributes>
196   - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
197   - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
198   - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
199   - <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
200   - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
201   - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
202   - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
203   - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
204   - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
205   - </attributes>
206   - </connection>
207   - <connection>
208   - <name>bus_control_variable</name>
209   - <server>&#x24;&#x7b;v_db_ip&#x7d;</server>
210   - <type>MYSQL</type>
211   - <access>Native</access>
212   - <database>&#x24;&#x7b;v_db_dname&#x7d;</database>
213   - <port>3306</port>
214   - <username>&#x24;&#x7b;v_db_uname&#x7d;</username>
215   - <password>&#x24;&#x7b;v_db_pwd&#x7d;</password>
216   - <servername/>
217   - <data_tablespace/>
218   - <index_tablespace/>
219   - <attributes>
220   - <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
221   - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
222   - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
223   - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
224   - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
225   - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
226   - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
227   - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
228   - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
229   - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
230   - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
231   - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
232   - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
233   - </attributes>
234   - </connection>
235   - <connection>
236   - <name>bus_control_&#x516c;&#x53f8;_201</name>
237   - <server>localhost</server>
238   - <type>MYSQL</type>
239   - <access>Native</access>
240   - <database>control</database>
241   - <port>3306</port>
242   - <username>root</username>
243   - <password>Encrypted </password>
244   - <servername/>
245   - <data_tablespace/>
246   - <index_tablespace/>
247   - <attributes>
248   - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
249   - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
250   - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
251   - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
252   - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
253   - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
254   - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
255   - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
256   - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
257   - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
258   - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
259   - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
260   - </attributes>
261   - </connection>
262   - <connection>
263   - <name>bus_control_&#x672c;&#x673a;</name>
264   - <server>localhost</server>
265   - <type>MYSQL</type>
266   - <access>Native</access>
267   - <database>control</database>
268   - <port>3306</port>
269   - <username>root</username>
270   - <password>Encrypted </password>
271   - <servername/>
272   - <data_tablespace/>
273   - <index_tablespace/>
274   - <attributes>
275   - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
276   - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
277   - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
278   - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
279   - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
280   - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
281   - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
282   - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
283   - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
284   - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
285   - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
286   - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
287   - </attributes>
288   - </connection>
289   - <connection>
290   - <name>xlab_mysql_youle</name>
291   - <server>101.231.124.8</server>
292   - <type>MYSQL</type>
293   - <access>Native</access>
294   - <database>xlab_youle</database>
295   - <port>45687</port>
296   - <username>xlab-youle</username>
297   - <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password>
298   - <servername/>
299   - <data_tablespace/>
300   - <index_tablespace/>
301   - <attributes>
302   - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
303   - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
304   - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
305   - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
306   - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
307   - <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute>
308   - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
309   - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
310   - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
311   - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
312   - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
313   - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
314   - </attributes>
315   - </connection>
316   - <connection>
317   - <name>xlab_mysql_youle&#xff08;&#x672c;&#x673a;&#xff09;</name>
318   - <server>localhost</server>
319   - <type>MYSQL</type>
320   - <access>Native</access>
321   - <database>xlab_youle</database>
322   - <port>3306</port>
323   - <username>root</username>
324   - <password>Encrypted </password>
325   - <servername/>
326   - <data_tablespace/>
327   - <index_tablespace/>
328   - <attributes>
329   - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
330   - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
331   - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
332   - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
333   - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
334   - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
335   - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
336   - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
337   - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
338   - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
339   - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
340   - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
341   - </attributes>
342   - </connection>
343   - <connection>
344   - <name>xlab_youle</name>
345   - <server/>
346   - <type>MYSQL</type>
347   - <access>JNDI</access>
348   - <database>xlab_youle</database>
349   - <port>1521</port>
350   - <username/>
351   - <password>Encrypted </password>
352   - <servername/>
353   - <data_tablespace/>
354   - <index_tablespace/>
355   - <attributes>
356   - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
357   - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
358   - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
359   - <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
360   - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
361   - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
362   - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
363   - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
364   - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
365   - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
366   - </attributes>
367   - </connection>
368   - <order>
369   - <hop> <from>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</from><to>&#x73ed;&#x6b21;&#x6570;&#x636e;&#x8303;&#x5f0f;&#x5316;</to><enabled>Y</enabled> </hop>
370   - <hop> <from>&#x6dfb;&#x52a0;&#x53d1;&#x8f66;&#x987a;&#x5e8f;&#x53f7;</from><to>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;&#xff08;&#x53d1;&#x8f66;&#x65f6;&#x95f4;&#x4e3a;&#x7a7a;&#xff09;</to><enabled>Y</enabled> </hop>
371   - <hop> <from>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;&#xff08;&#x53d1;&#x8f66;&#x65f6;&#x95f4;&#x4e3a;&#x7a7a;&#xff09;</from><to>&#x6dfb;&#x52a0;&#x5bf9;&#x5e94;&#x73ed;&#x6b21;&#x6570;</to><enabled>Y</enabled> </hop>
372   - <hop> <from>&#x6dfb;&#x52a0;&#x5bf9;&#x5e94;&#x73ed;&#x6b21;&#x6570;</from><to>&#x5904;&#x7406;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
373   - <hop> <from>&#x5904;&#x7406;&#x6570;&#x636e;</from><to>&#x5206;&#x7ec4;&#x5404;&#x4e2a;&#x8def;&#x724c;&#x7684;&#x7ad9;</to><enabled>Y</enabled> </hop>
374   - <hop> <from>&#x67e5;&#x627e;&#x65f6;&#x523b;&#x8868;&#x57fa;&#x7840;&#x4fe1;&#x606f;&#x5173;&#x8054;</from><to>&#x67e5;&#x627e;&#x8def;&#x724c;&#x5173;&#x8054;</to><enabled>Y</enabled> </hop>
375   - <hop> <from>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x5173;&#x8054;</from><to>&#x67e5;&#x627e;&#x65f6;&#x523b;&#x8868;&#x57fa;&#x7840;&#x4fe1;&#x606f;&#x5173;&#x8054;</to><enabled>Y</enabled> </hop>
376   - <hop> <from>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178;</from><to>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178;</to><enabled>Y</enabled> </hop>
377   - <hop> <from>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 2</from><to>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 2</to><enabled>Y</enabled> </hop>
378   - <hop> <from>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 3</from><to>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 3</to><enabled>Y</enabled> </hop>
379   - <hop> <from>&#x5339;&#x914d;&#x4e0a;&#x4e0b;&#x884c;&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</from><to>&#x7c7b;&#x578b;&#x4fee;&#x6b63;</to><enabled>Y</enabled> </hop>
380   - <hop> <from>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;1</from><to>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</to><enabled>Y</enabled> </hop>
381   - <hop> <from>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;1</from><to>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
382   - <hop> <from>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</from><to>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
383   - <hop> <from>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</from><to>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
384   - <hop> <from>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x6240;&#x6709;&#x4e0a;&#x4e0b;&#x884c;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</from><to>&#x5339;&#x914d;&#x4e0a;&#x4e0b;&#x884c;&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>
385   - <hop> <from>&#x67e5;&#x627e;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;</from><to>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178;</to><enabled>Y</enabled> </hop>
386   - <hop> <from>&#x67e5;&#x627e;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</from><to>&#x67e5;&#x627e;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;</to><enabled>Y</enabled> </hop>
387   - <hop> <from>&#x6b63;&#x5e38;&#x73ed;&#x6b21;_&#x5904;&#x7406;&#x6570;&#x636e;</from><to>&#x67e5;&#x627e;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</to><enabled>Y</enabled> </hop>
388   - <hop> <from>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</from><to>&#x6b63;&#x5e38;&#x73ed;&#x6b21;_&#x5904;&#x7406;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
389   - <hop> <from>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178;</from><to>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x6240;&#x6709;&#x4e0a;&#x4e0b;&#x884c;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>
390   - <hop> <from>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 2</from><to>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x51fa;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>
391   - <hop> <from>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 3</from><to>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x8fdb;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>
392   - <hop> <from>&#x67e5;&#x627e;&#x8def;&#x724c;&#x5173;&#x8054;</from><to>&#x8ba1;&#x7b97;&#x73ed;&#x6b21;&#x7c7b;&#x578b;</to><enabled>Y</enabled> </hop>
393   - <hop> <from>&#x8ba1;&#x7b97;&#x73ed;&#x6b21;&#x7c7b;&#x578b;</from><to>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;1</to><enabled>Y</enabled> </hop>
394   - <hop> <from>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</from><to>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;1</to><enabled>Y</enabled> </hop>
395   - <hop> <from>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;1</from><to>&#x51fa;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x7ec8;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</to><enabled>Y</enabled> </hop>
396   - <hop> <from>&#x51fa;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x7ec8;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</from><to>&#x67e5;&#x627e;&#x51fa;&#x573a;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</to><enabled>Y</enabled> </hop>
397   - <hop> <from>&#x67e5;&#x627e;&#x51fa;&#x573a;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</from><to>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 2</to><enabled>Y</enabled> </hop>
398   - <hop> <from>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</from><to>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;2</to><enabled>Y</enabled> </hop>
399   - <hop> <from>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;2</from><to>&#x8fdb;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x8d77;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</to><enabled>Y</enabled> </hop>
400   - <hop> <from>&#x8fdb;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x8d77;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</from><to>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ebf;&#x8def;&#x65b9;&#x5411;</to><enabled>Y</enabled> </hop>
401   - <hop> <from>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ebf;&#x8def;&#x65b9;&#x5411;</from><to>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ec8;&#x70b9;&#x7ad9;&#xff0c;&#x5e76;&#x4f5c;&#x4e3a;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x7684;&#x8d77;&#x70b9;&#x7ad9;</to><enabled>Y</enabled> </hop>
402   - <hop> <from>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</from><to>&#x6dfb;&#x52a0;&#x53d1;&#x8f66;&#x987a;&#x5e8f;&#x53f7;</to><enabled>Y</enabled> </hop>
403   - <hop> <from>&#x5206;&#x7ec4;&#x5404;&#x4e2a;&#x8def;&#x724c;&#x7684;&#x7ad9;</from><to>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x5173;&#x8054;</to><enabled>Y</enabled> </hop>
404   - <hop> <from>&#x589e;&#x52a0;&#x65f6;&#x523b;&#x8868;&#x540d;&#x5b57;&#xff0c;&#x7ebf;&#x8def;&#x540d;&#x5b57;&#xff0c;&#x505c;&#x8f66;&#x573a;&#x540d;&#x5b57;</from><to>&#x8bb0;&#x5f55;&#x5173;&#x8054; &#x28;&#x7b1b;&#x5361;&#x5c14;&#x8f93;&#x51fa;&#x29;</to><enabled>Y</enabled> </hop>
405   - <hop> <from>&#x73ed;&#x6b21;&#x6570;&#x636e;&#x8303;&#x5f0f;&#x5316;</from><to>&#x8bb0;&#x5f55;&#x5173;&#x8054; &#x28;&#x7b1b;&#x5361;&#x5c14;&#x8f93;&#x51fa;&#x29;</to><enabled>Y</enabled> </hop>
406   - <hop> <from>&#x8bb0;&#x5f55;&#x5173;&#x8054; &#x28;&#x7b1b;&#x5361;&#x5c14;&#x8f93;&#x51fa;&#x29;</from><to>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</to><enabled>Y</enabled> </hop>
407   - <hop> <from>&#x7c7b;&#x578b;&#x4fee;&#x6b63;</from><to>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail</to><enabled>Y</enabled> </hop>
408   - <hop> <from>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ec8;&#x70b9;&#x7ad9;&#xff0c;&#x5e76;&#x4f5c;&#x4e3a;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x7684;&#x8d77;&#x70b9;&#x7ad9;</from><to>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</to><enabled>Y</enabled> </hop>
409   - <hop> <from>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</from><to>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 3</to><enabled>Y</enabled> </hop>
410   - <hop> <from>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x51fa;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</from><to>&#x5339;&#x914d;&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>
411   - <hop> <from>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x8fdb;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</from><to>&#x5339;&#x914d;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>
412   - <hop> <from>&#x5339;&#x914d;&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</from><to>&#x4e0a;&#x4e0b;&#x884c;NULL&#x5224;&#x5b9a;</to><enabled>Y</enabled> </hop>
413   - <hop> <from>&#x4e0a;&#x4e0b;&#x884c;NULL&#x5224;&#x5b9a;</from><to>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 2</to><enabled>Y</enabled> </hop>
414   - <hop> <from>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 2</from><to>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail 2</to><enabled>Y</enabled> </hop>
415   - <hop> <from>&#x5339;&#x914d;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</from><to>&#x4e0a;&#x4e0b;&#x884c;&#x5224;&#x5b9a; 2</to><enabled>Y</enabled> </hop>
416   - <hop> <from>&#x4e0a;&#x4e0b;&#x884c;&#x5224;&#x5b9a; 2</from><to>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 3</to><enabled>Y</enabled> </hop>
417   - <hop> <from>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 3</from><to>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail 3</to><enabled>Y</enabled> </hop>
418   - </order>
419   - <step>
420   - <name>&#x4e0a;&#x4e0b;&#x884c;NULL&#x5224;&#x5b9a;</name>
421   - <type>IfNull</type>
422   - <description/>
423   - <distribute>Y</distribute>
424   - <custom_distribution/>
425   - <copies>1</copies>
426   - <partitioning>
427   - <method>none</method>
428   - <schema_name/>
429   - </partitioning>
430   - <replaceAllByValue/>
431   - <replaceAllMask/>
432   - <selectFields>Y</selectFields>
433   - <selectValuesType>N</selectValuesType>
434   - <setEmptyStringAll>N</setEmptyStringAll>
435   - <valuetypes>
436   - </valuetypes>
437   - <fields>
438   - <field>
439   - <name>sxx</name>
440   - <value>0</value>
441   - <mask/>
442   - <set_empty_string>N</set_empty_string>
443   - </field>
444   - </fields>
445   - <cluster_schema/>
446   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
447   - <xloc>230</xloc>
448   - <yloc>946</yloc>
449   - <draw>Y</draw>
450   - </GUI>
451   - </step>
452   -
453   - <step>
454   - <name>&#x4e0a;&#x4e0b;&#x884c;&#x5224;&#x5b9a; 2</name>
455   - <type>IfNull</type>
456   - <description/>
457   - <distribute>Y</distribute>
458   - <custom_distribution/>
459   - <copies>1</copies>
460   - <partitioning>
461   - <method>none</method>
462   - <schema_name/>
463   - </partitioning>
464   - <replaceAllByValue/>
465   - <replaceAllMask/>
466   - <selectFields>Y</selectFields>
467   - <selectValuesType>N</selectValuesType>
468   - <setEmptyStringAll>N</setEmptyStringAll>
469   - <valuetypes>
470   - </valuetypes>
471   - <fields>
472   - <field>
473   - <name>sxx2</name>
474   - <value>0</value>
475   - <mask/>
476   - <set_empty_string>N</set_empty_string>
477   - </field>
478   - </fields>
479   - <cluster_schema/>
480   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
481   - <xloc>804</xloc>
482   - <yloc>1081</yloc>
483   - <draw>Y</draw>
484   - </GUI>
485   - </step>
486   -
487   - <step>
488   - <name>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178;</name>
489   - <type>ValueMapper</type>
490   - <description/>
491   - <distribute>Y</distribute>
492   - <custom_distribution/>
493   - <copies>1</copies>
494   - <partitioning>
495   - <method>none</method>
496   - <schema_name/>
497   - </partitioning>
498   - <field_to_use>sxx</field_to_use>
499   - <target_field>sxx_desc</target_field>
500   - <non_match_default/>
501   - <fields>
502   - <field>
503   - <source_value>0</source_value>
504   - <target_value>&#x4e0a;&#x884c;</target_value>
505   - </field>
506   - <field>
507   - <source_value>1</source_value>
508   - <target_value>&#x4e0b;&#x884c;</target_value>
509   - </field>
510   - </fields>
511   - <cluster_schema/>
512   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
513   - <xloc>147</xloc>
514   - <yloc>403</yloc>
515   - <draw>Y</draw>
516   - </GUI>
517   - </step>
518   -
519   - <step>
520   - <name>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 2</name>
521   - <type>ValueMapper</type>
522   - <description/>
523   - <distribute>Y</distribute>
524   - <custom_distribution/>
525   - <copies>1</copies>
526   - <partitioning>
527   - <method>none</method>
528   - <schema_name/>
529   - </partitioning>
530   - <field_to_use>sxx</field_to_use>
531   - <target_field>sxx_desc</target_field>
532   - <non_match_default/>
533   - <fields>
534   - <field>
535   - <source_value>0</source_value>
536   - <target_value>&#x4e0a;&#x884c;</target_value>
537   - </field>
538   - <field>
539   - <source_value>1</source_value>
540   - <target_value>&#x4e0b;&#x884c;</target_value>
541   - </field>
542   - </fields>
543   - <cluster_schema/>
544   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
545   - <xloc>331</xloc>
546   - <yloc>598</yloc>
547   - <draw>Y</draw>
548   - </GUI>
549   - </step>
550   -
551   - <step>
552   - <name>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 3</name>
553   - <type>ValueMapper</type>
554   - <description/>
555   - <distribute>Y</distribute>
556   - <custom_distribution/>
557   - <copies>1</copies>
558   - <partitioning>
559   - <method>none</method>
560   - <schema_name/>
561   - </partitioning>
562   - <field_to_use>sxx</field_to_use>
563   - <target_field>sxx_desc</target_field>
564   - <non_match_default/>
565   - <fields>
566   - <field>
567   - <source_value>0</source_value>
568   - <target_value>&#x4e0a;&#x884c;</target_value>
569   - </field>
570   - <field>
571   - <source_value>1</source_value>
572   - <target_value>&#x4e0b;&#x884c;</target_value>
573   - </field>
574   - </fields>
575   - <cluster_schema/>
576   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
577   - <xloc>553</xloc>
578   - <yloc>859</yloc>
579   - <draw>Y</draw>
580   - </GUI>
581   - </step>
582   -
583   - <step>
584   - <name>&#x51fa;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x7ec8;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</name>
585   - <type>ScriptValueMod</type>
586   - <description/>
587   - <distribute>Y</distribute>
588   - <custom_distribution/>
589   - <copies>1</copies>
590   - <partitioning>
591   - <method>none</method>
592   - <schema_name/>
593   - </partitioning>
594   - <compatible>N</compatible>
595   - <optimizationLevel>9</optimizationLevel>
596   - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
597   - <jsScript_name>Script 1</jsScript_name>
598   - <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;&#x2f;&#x2f; &#x6dfb;&#x52a0;&#x7ad9;&#x70b9;&#x6807;&#x8bc6;&#xa;var cc_groups &#x3d; qdzgroups.split&#x28;&#x22;,&#x22;&#x29;&#x3b; &#x2f;&#x2f; &#x6240;&#x6709;&#x73ed;&#x6b21;&#x8d77;&#x70b9;&#x7ad9;&#x6570;&#x7ec4;&#xa;var zdzname &#x3d; cc_groups&#x5b;gno&#x5d;&#x3b; &#x2f;&#x2f; &#x51fa;&#x573a;&#x73ed;&#x6b21;&#x7684;&#x7ec8;&#x70b9;&#x7ad9;&#x662f;&#x4e0b;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x8d77;&#x59cb;&#x7ad9;&#xa;var endZdtype &#x3d; &#x27;E&#x27;&#x3b;&#xa;&#xa;var destory &#x3d; 0&#x3b; &#x2f;&#x2f; &#x672a;&#x64a4;&#x9500;flag</jsScript_script>
599   - </jsScript> </jsScripts> <fields> <field> <name>zdzname</name>
600   - <rename>zdzname</rename>
601   - <type>String</type>
602   - <length>-1</length>
603   - <precision>-1</precision>
604   - <replace>N</replace>
605   - </field> <field> <name>endZdtype</name>
606   - <rename>endZdtype</rename>
607   - <type>String</type>
608   - <length>-1</length>
609   - <precision>-1</precision>
610   - <replace>N</replace>
611   - </field> <field> <name>destory</name>
612   - <rename>destory</rename>
613   - <type>Integer</type>
614   - <length>-1</length>
615   - <precision>-1</precision>
616   - <replace>N</replace>
617   - </field> </fields> <cluster_schema/>
618   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
619   - <xloc>575</xloc>
620   - <yloc>502</yloc>
621   - <draw>Y</draw>
622   - </GUI>
623   - </step>
624   -
625   - <step>
626   - <name>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</name>
627   - <type>Dummy</type>
628   - <description/>
629   - <distribute>Y</distribute>
630   - <custom_distribution/>
631   - <copies>1</copies>
632   - <partitioning>
633   - <method>none</method>
634   - <schema_name/>
635   - </partitioning>
636   - <cluster_schema/>
637   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
638   - <xloc>869</xloc>
639   - <yloc>504</yloc>
640   - <draw>Y</draw>
641   - </GUI>
642   - </step>
643   -
644   - <step>
645   - <name>&#x5206;&#x7ec4;&#x5404;&#x4e2a;&#x8def;&#x724c;&#x7684;&#x7ad9;</name>
646   - <type>GroupBy</type>
647   - <description/>
648   - <distribute>Y</distribute>
649   - <custom_distribution/>
650   - <copies>1</copies>
651   - <partitioning>
652   - <method>none</method>
653   - <schema_name/>
654   - </partitioning>
655   - <all_rows>Y</all_rows>
656   - <ignore_aggregate>N</ignore_aggregate>
657   - <field_ignore/>
658   - <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
659   - <prefix>grp</prefix>
660   - <add_linenr>Y</add_linenr>
661   - <linenr_fieldname>gno</linenr_fieldname>
662   - <give_back_row>N</give_back_row>
663   - <group>
664   - <field>
665   - <name>lp</name>
666   - </field>
667   - </group>
668   - <fields>
669   - <field>
670   - <aggregate>qdzgroups</aggregate>
671   - <subject>qdzname</subject>
672   - <type>CONCAT_STRING</type>
673   - <valuefield>,</valuefield>
674   - </field>
675   - </fields>
676   - <cluster_schema/>
677   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
678   - <xloc>892</xloc>
679   - <yloc>44</yloc>
680   - <draw>Y</draw>
681   - </GUI>
682   - </step>
683   -
684   - <step>
685   - <name>&#x5339;&#x914d;&#x4e0a;&#x4e0b;&#x884c;&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
686   - <type>ScriptValueMod</type>
687   - <description/>
688   - <distribute>Y</distribute>
689   - <custom_distribution/>
690   - <copies>1</copies>
691   - <partitioning>
692   - <method>none</method>
693   - <schema_name/>
694   - </partitioning>
695   - <compatible>N</compatible>
696   - <optimizationLevel>9</optimizationLevel>
697   - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
698   - <jsScript_name>Script 1</jsScript_name>
699   - <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var jhlc&#x3b; &#x2f;&#x2f; &#x8ba1;&#x5212;&#x91cc;&#x7a0b;&#xa;var bcsj&#x3b; &#x2f;&#x2f; &#x73ed;&#x6b21;&#x65f6;&#x95f4;&#xa;&#xa;&#x2f;&#x2f; &#x65f6;&#x95f4;&#x8303;&#x56f4;&#x6b63;&#x5219;&#x8868;&#x8fbe;&#x5f0f;&#xa;var timeRex &#x3d; &#x2f;&#x5e;&#x28;&#x5b;01&#x5d;&#x3f;&#x5b;0-9&#x5d;&#x7c;2&#x5b;0-3&#x5d;&#x29;&#x3a;&#x5b;0-5&#x5d;&#x5b;0-9&#x5d;&#x24;&#x2f;&#x3b;&#xa;&#x2f;&#x2f; &#x53d1;&#x8f66;&#x65f6;&#x95f4;&#x8f6c;&#x6362;&#x6210;&#x65e5;&#x671f;&#xa;var fcsj_hour &#x3d; str2num&#x28;sendtime_calcu.substr&#x28;0, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa;var fcsj_min &#x3d; str2num&#x28;sendtime_calcu.substr&#x28;3, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa;var fcsj_date &#x3d; new Date&#x28;2000,1,1,fcsj_hour,fcsj_min,0&#x29;&#x3b;&#xa;&#xa;&#x2f;&#x2f; &#x5224;&#x5b9a;&#x662f;&#x5426;&#x65e9;&#x9ad8;&#x5cf0;&#xa;var isZgf &#x3d; false&#x3b;&#xa;if &#x28;timeRex.test&#x28;early_start_time&#x29; &#x26;&#x26; timeRex.test&#x28;early_end_time&#x29; &#x26;&#x26; early_up_time &#x21;&#x3d; null &#x26;&#x26; early_down_time &#x21;&#x3d; null&#x29; &#x7b;&#xa; var early_s_hour &#x3d; str2num&#x28;early_start_time.substr&#x28;0, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var early_s_min &#x3d; str2num&#x28;early_start_time.substr&#x28;3, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var early_s_date &#x3d; new Date&#x28;2000,1,1,early_s_hour,early_s_min,0&#x29;&#x3b;&#xa;&#xa; var early_e_hour &#x3d; str2num&#x28;early_end_time.substr&#x28;0, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var early_e_min &#x3d; str2num&#x28;early_end_time.substr&#x28;3, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var early_e_date &#x3d; new Date&#x28;2000,1,1,early_e_hour,early_e_min,0&#x29;&#x3b;&#xa;&#xa; if &#x28;fcsj_date &#x3e;&#x3d; early_s_date &#x26;&#x26; fcsj_date &#x3c;&#x3d; early_e_date&#x29; &#x7b;&#xa; isZgf &#x3d; true&#x3b;&#xa; &#x7d;&#xa;&#x7d;&#xa;&#xa;&#x2f;&#x2f; &#x5224;&#x5b9a;&#x662f;&#x5426;&#x665a;&#x9ad8;&#x5cf0;&#xa;var isWgf &#x3d; false&#x3b;&#xa;if &#x28;timeRex.test&#x28;late_start_time&#x29; &#x26;&#x26; timeRex.test&#x28;late_end_time&#x29; &#x26;&#x26; late_up_time &#x21;&#x3d; null &#x26;&#x26; late_down_time &#x21;&#x3d; null&#x29; &#x7b;&#xa; var late_s_hour &#x3d; str2num&#x28;late_start_time.substr&#x28;0, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var late_s_min &#x3d; str2num&#x28;late_start_time.substr&#x28;3, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var late_s_date &#x3d; new Date&#x28;2000,1,1,late_s_hour,late_s_min,0&#x29;&#x3b;&#xa;&#xa; var late_e_hour &#x3d; str2num&#x28;late_end_time.substr&#x28;0, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var late_e_min &#x3d; str2num&#x28;late_end_time.substr&#x28;3, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var late_e_date &#x3d; new Date&#x28;2000,1,1,late_e_hour,late_e_min,0&#x29;&#x3b;&#xa;&#xa; if &#x28;fcsj_date &#x3e;&#x3d; late_s_date &#x26;&#x26; fcsj_date &#x3c;&#x3d; late_e_date&#x29; &#x7b;&#xa; isWgf &#x3d; true&#x3b;&#xa; &#x7d;&#xa;&#x7d;&#xa;&#xa;&#x2f;&#x2f; &#x5224;&#x5b9a;&#x662f;&#x5426;&#x665a;&#x9ad8;&#x5cf0;&#xa;&#xa;if &#x28;sxx &#x3d;&#x3d; 0&#x29; &#x7b; &#x2f;&#x2f; &#x4e0a;&#x884c;&#xa; if &#x28;isZgf&#x29; &#x7b;&#xa; jhlc &#x3d; up_mileage&#x3b;&#xa; bcsj &#x3d; early_up_time &#x21;&#x3d; 0 &#x3f; early_up_time &#x3a; up_travel_time&#x3b;&#xa; &#x7d; else if &#x28;isWgf&#x29; &#x7b;&#xa; jhlc &#x3d; up_mileage&#x3b;&#xa; bcsj &#x3d; late_up_time &#x21;&#x3d; 0 &#x3f; late_up_time &#x3a; up_travel_time&#x3b;&#xa; &#x7d; else &#x7b;&#xa; jhlc &#x3d; up_mileage&#x3b;&#xa; bcsj &#x3d; up_travel_time&#x3b;&#xa; &#x7d;&#xa;&#x7d; else &#x7b; &#x2f;&#x2f; sxx &#x3d;&#x3d; 1 &#x4e0b;&#x884c;&#xa; if &#x28;isZgf&#x29; &#x7b;&#xa; jhlc &#x3d; down_mileage&#x3b;&#xa; bcsj &#x3d; early_down_time &#x21;&#x3d; 0 &#x3f; early_down_time &#x3a; down_travel_time&#x3b;&#xa; &#x7d; else if &#x28;isWgf&#x29; &#x7b;&#xa; jhlc &#x3d; down_mileage&#x3b;&#xa; bcsj &#x3d; late_down_time &#x21;&#x3d; 0 &#x3f; late_down_time &#x3a; down_travel_time&#x3b;&#xa; &#x7d; else &#x7b;&#xa; jhlc &#x3d; down_mileage&#x3b;&#xa; bcsj &#x3d; down_travel_time&#x3b;&#xa; &#x7d;&#xa;&#x7d;&#xa;&#xa;</jsScript_script>
700   - </jsScript> </jsScripts> <fields> <field> <name>jhlc</name>
701   - <rename>jhlc</rename>
702   - <type>String</type>
703   - <length>-1</length>
704   - <precision>-1</precision>
705   - <replace>N</replace>
706   - </field> <field> <name>bcsj</name>
707   - <rename>bcsj</rename>
708   - <type>String</type>
709   - <length>-1</length>
710   - <precision>-1</precision>
711   - <replace>N</replace>
712   - </field> </fields> <cluster_schema/>
713   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
714   - <xloc>148</xloc>
715   - <yloc>674</yloc>
716   - <draw>Y</draw>
717   - </GUI>
718   - </step>
719   -
720   - <step>
721   - <name>&#x5339;&#x914d;&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
722   - <type>ScriptValueMod</type>
723   - <description/>
724   - <distribute>Y</distribute>
725   - <custom_distribution/>
726   - <copies>1</copies>
727   - <partitioning>
728   - <method>none</method>
729   - <schema_name/>
730   - </partitioning>
731   - <compatible>N</compatible>
732   - <optimizationLevel>9</optimizationLevel>
733   - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
734   - <jsScript_name>Script 1</jsScript_name>
735   - <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var out_mileage&#x3b; &#x2f;&#x2f; &#x51fa;&#x573a;&#x8ba1;&#x5212;&#x91cc;&#x7a0b;&#xa;var out_time&#x3b; &#x2f;&#x2f; &#x51fa;&#x573a;&#x8ba1;&#x5212;&#x65f6;&#x95f4;&#xa;&#xa;if &#x28;sxx &#x3d;&#x3d; 0&#x29; &#x7b; &#x2f;&#x2f; &#x4e0a;&#x884c;&#xa; out_mileage &#x3d; up_out_mileage&#x3b;&#xa; out_time &#x3d; up_out_timer&#x3b;&#xa;&#x7d; else &#x7b; &#x2f;&#x2f; sxx &#x3d;&#x3d; 1 &#x4e0b;&#x884c;&#xa; out_mileage &#x3d; down_out_mileage&#x3b;&#xa; out_time &#x3d; down_out_timer&#x3b;&#xa;&#x7d;&#xa;&#xa;&#xa;&#xa;</jsScript_script>
736   - </jsScript> </jsScripts> <fields> <field> <name>out_mileage</name>
737   - <rename>out_mileage</rename>
738   - <type>String</type>
739   - <length>-1</length>
740   - <precision>-1</precision>
741   - <replace>N</replace>
742   - </field> <field> <name>out_time</name>
743   - <rename>out_time</rename>
744   - <type>String</type>
745   - <length>-1</length>
746   - <precision>-1</precision>
747   - <replace>N</replace>
748   - </field> </fields> <cluster_schema/>
749   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
750   - <xloc>336</xloc>
751   - <yloc>862</yloc>
752   - <draw>Y</draw>
753   - </GUI>
754   - </step>
755   -
756   - <step>
757   - <name>&#x5339;&#x914d;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
758   - <type>ScriptValueMod</type>
759   - <description/>
760   - <distribute>Y</distribute>
761   - <custom_distribution/>
762   - <copies>1</copies>
763   - <partitioning>
764   - <method>none</method>
765   - <schema_name/>
766   - </partitioning>
767   - <compatible>N</compatible>
768   - <optimizationLevel>9</optimizationLevel>
769   - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
770   - <jsScript_name>Script 1</jsScript_name>
771   - <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var parade_mileage&#x3b; &#x2f;&#x2f; &#x8fdb;&#x573a;&#x8ba1;&#x5212;&#x91cc;&#x7a0b;&#xa;var parade_time&#x3b; &#x2f;&#x2f; &#x8fdb;&#x573a;&#x8ba1;&#x5212;&#x65f6;&#x95f4;&#xa;&#xa;if &#x28;sxx2 &#x3d;&#x3d; 0&#x29; &#x7b; &#x2f;&#x2f; &#x4e0a;&#x884c;&#xa; parade_mileage &#x3d; up_in_mileage&#x3b;&#xa; parade_time &#x3d; up_in_timer&#x3b;&#xa;&#x7d; else &#x7b; &#x2f;&#x2f; sxx &#x3d;&#x3d; 1 &#x4e0b;&#x884c;&#xa; parade_mileage &#x3d; down_in_mileage&#x3b;&#xa; parade_time &#x3d; down_in_timer&#x3b;&#xa;&#x7d;&#xa;&#xa;&#xa;&#xa;</jsScript_script>
772   - </jsScript> </jsScripts> <fields> <field> <name>parade_mileage</name>
773   - <rename>parade_mileage</rename>
774   - <type>String</type>
775   - <length>-1</length>
776   - <precision>-1</precision>
777   - <replace>N</replace>
778   - </field> <field> <name>parade_time</name>
779   - <rename>parade_time</rename>
780   - <type>String</type>
781   - <length>-1</length>
782   - <precision>-1</precision>
783   - <replace>N</replace>
784   - </field> </fields> <cluster_schema/>
785   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
786   - <xloc>726</xloc>
787   - <yloc>1005</yloc>
788   - <draw>Y</draw>
789   - </GUI>
790   - </step>
791   -
792   - <step>
793   - <name>&#x589e;&#x52a0;&#x65f6;&#x523b;&#x8868;&#x540d;&#x5b57;&#xff0c;&#x7ebf;&#x8def;&#x540d;&#x5b57;&#xff0c;&#x505c;&#x8f66;&#x573a;&#x540d;&#x5b57;</name>
794   - <type>DataGrid</type>
795   - <description/>
796   - <distribute>Y</distribute>
797   - <custom_distribution/>
798   - <copies>1</copies>
799   - <partitioning>
800   - <method>none</method>
801   - <schema_name/>
802   - </partitioning>
803   - <fields>
804   - </fields>
805   - <data>
806   - <line> </line>
807   - </data>
808   - <cluster_schema/>
809   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
810   - <xloc>110</xloc>
811   - <yloc>133</yloc>
812   - <draw>Y</draw>
813   - </GUI>
814   - </step>
815   -
816   - <step>
817   - <name>&#x5904;&#x7406;&#x6570;&#x636e;</name>
818   - <type>ScriptValueMod</type>
819   - <description/>
820   - <distribute>Y</distribute>
821   - <custom_distribution/>
822   - <copies>1</copies>
823   - <partitioning>
824   - <method>none</method>
825   - <schema_name/>
826   - </partitioning>
827   - <compatible>N</compatible>
828   - <optimizationLevel>9</optimizationLevel>
829   - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
830   - <jsScript_name>Script 1</jsScript_name>
831   - <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;&#x2f;&#x2f; &#x4f7f;&#x7528;&#x6b63;&#x5219;&#x8868;&#x8fbe;&#x5f0f;&#x53bb;&#x9664;&#x7ad9;&#x70b9;&#x540d;&#x79f0;&#x53f3;&#x4fa7;&#x591a;&#x4f59;&#x7684;&#x6570;&#x5b57;&#xa;qdzname &#x3d; qdzname.replace&#x28;&#x2f;&#x28;&#x5c;d&#x2b;&#x24;&#x29;&#x2f;g,&#x27;&#x27;&#x29;&#x3b;&#xa;if &#x28;qdzname &#x21;&#x3d; &#x22;&#x51fa;&#x573a;&#x22; &#x26;&#x26; qdzname &#x21;&#x3d; &#x22;&#x8fdb;&#x573a;&#x22;&#x29; &#x7b;&#xa; qdzname &#x3d; qdzname &#x2b; &#x22;&#x25;&#x22;&#x3b; &#x2f;&#x2f; &#x6a21;&#x7cca;&#x5339;&#x914d;&#x6807;&#x8bc6;&#x7b26;&#xa;&#x7d;&#xa;&#xa;&#x2f;&#x2f; sendtime&#x5904;&#x7406;&#xff0c;hhmm&#xff0c;hh&#x3a;mm&#xff0c;hh,mm&#xa;var sendtime_calcu&#x3b;&#xa;if &#x28;sendtime.length &#x3d;&#x3d; 5&#x29; &#x7b; &#x2f;&#x2f; &#x6700;&#x957f;&#x683c;&#x5f0f;&#xff0c;&#x5305;&#x62ec;&#x5206;&#x9694;&#x7b26;&#xff0c;&#x7edf;&#x4e00;&#x628a;&#x5206;&#x9694;&#x7b26;&#x66ff;&#x6362;&#x6210;&#x5192;&#x53f7;&#xa; sendtime_calcu &#x3d; sendtime.substr&#x28;0, 2&#x29; &#x2b; &#x22;&#x3a;&#x22; &#x2b; sendtime.substr&#x28;3, 2&#x29;&#x3b;&#xa;&#x7d; else if &#x28;sendtime.length &#x3d;&#x3d; 4&#x29; &#x7b;&#xa; if &#x28;sendtime.indexOf&#x28;&#x22;&#x3a;&#x22;&#x29; &#x3e; 0&#x29; &#x7b; &#x2f;&#x2f; &#x5192;&#x53f7;&#x5206;&#x9694;&#xff0c;&#x65e0;&#x9700;&#x4fee;&#x6539;&#xa; sendtime_calcu &#x3d; sendtime&#x3b;&#xa; &#x7d; else if &#x28;sendtime.indexOf&#x28;&#x22;,&#x22;&#x29; &#x3e; 0&#x29; &#x7b; &#x2f;&#x2f; &#x9017;&#x53f7;&#x5206;&#x9694;&#xff0c;&#x6539;&#x6210;&#x5192;&#x53f7;&#x5206;&#x9694;&#xa; sendtime_calcu &#x3d; sendtime.substr&#x28;0, 1&#x29; &#x2b; &#x22;&#x3a;&#x22; &#x2b; sendtime.substr&#x28;2, 2&#x29;&#x3b;&#xa; &#x7d; else &#x7b; &#x2f;&#x2f; &#x65e0;&#x5206;&#x9694;&#x7b26;&#xff0c;&#x6539;&#x6210;&#x5192;&#x53f7;&#x5206;&#x9694;&#xa; sendtime_calcu &#x3d; sendtime.substr&#x28;0, 2&#x29; &#x2b; &#x22;&#x3a;&#x22; &#x2b; sendtime.substr&#x28;2, 2&#x29;&#x3b;&#xa; &#x7d;&#xa;&#x7d; else if &#x28;sendtime.length &#x3d;&#x3d; 3&#x29; &#x7b; &#x2f;&#x2f; &#x65e0;&#x5206;&#x9694;&#x7b26;&#xff0c;&#x6539;&#x6210;&#x5192;&#x53f7;&#x5206;&#x9694;&#xa; sendtime_calcu &#x3d; sendtime.substr&#x28;0, 1&#x29; &#x2b; &#x22;&#x3a;&#x22; &#x2b; sendtime.substr&#x28;1, 2&#x29;&#x3b;&#xa;&#x7d;&#xa;&#xa;&#x2f;&#x2f; &#x5168;&#x90e8;&#x4fee;&#x6b63;&#x5b8c;&#x6bd5;&#x540e;&#xff0c;&#x5982;&#x679c;&#x957f;&#x5ea6;&#x4e0d;&#x662f;5&#xff0c;&#x524d;&#x9762;&#x8865;0&#xa;if &#x28;sendtime_calcu.length &#x21;&#x3d; 5&#x29; &#x7b;&#xa; sendtime_calcu &#x3d; &#x22;0&#x22; &#x2b; sendtime_calcu&#x3b;&#xa;&#x7d;&#xa;&#xa;&#x2f;&#x2f; &#x8bbe;&#x7f6e;&#x5206;&#x73ed;&#xa;var isfb &#x3d; 0&#x3b;&#xa;&#xa;&#x2f;&#x2f; &#x8bbe;&#x7f6e;&#x505c;&#x9a76;&#xa;var ists &#x3d; 0&#x3b;&#xa;&#xa;&#x2f;&#x2f; &#x8bbe;&#x7f6e;isCanceled&#xa;var iscanceled &#x3d; 0&#x3b;</jsScript_script>
832   - </jsScript> </jsScripts> <fields> <field> <name>qdzname</name>
833   - <rename>qdzname</rename>
834   - <type>String</type>
835   - <length>-1</length>
836   - <precision>-1</precision>
837   - <replace>Y</replace>
838   - </field> <field> <name>isfb</name>
839   - <rename>isfb</rename>
840   - <type>Integer</type>
841   - <length>-1</length>
842   - <precision>-1</precision>
843   - <replace>N</replace>
844   - </field> <field> <name>iscanceled</name>
845   - <rename>iscanceled</rename>
846   - <type>Integer</type>
847   - <length>-1</length>
848   - <precision>-1</precision>
849   - <replace>N</replace>
850   - </field> <field> <name>sendtime_calcu</name>
851   - <rename>sendtime_calcu</rename>
852   - <type>String</type>
853   - <length>-1</length>
854   - <precision>-1</precision>
855   - <replace>N</replace>
856   - </field> <field> <name>ists</name>
857   - <rename>ists</rename>
858   - <type>Integer</type>
859   - <length>-1</length>
860   - <precision>-1</precision>
861   - <replace>N</replace>
862   - </field> </fields> <cluster_schema/>
863   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
864   - <xloc>788</xloc>
865   - <yloc>44</yloc>
866   - <draw>Y</draw>
867   - </GUI>
868   - </step>
869   -
870   - <step>
871   - <name>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</name>
872   - <type>SelectValues</type>
873   - <description/>
874   - <distribute>Y</distribute>
875   - <custom_distribution/>
876   - <copies>1</copies>
877   - <partitioning>
878   - <method>none</method>
879   - <schema_name/>
880   - </partitioning>
881   - <fields> <field> <name>&#x8def;&#x724c;</name>
882   - <rename>lp</rename>
883   - <length>-2</length>
884   - <precision>-2</precision>
885   - </field> <field> <name>&#x7ad9;&#x70b9;&#x540d;&#x79f0;</name>
886   - <rename>qdzname</rename>
887   - <length>-2</length>
888   - <precision>-2</precision>
889   - </field> <field> <name>&#x53d1;&#x8f66;&#x65f6;&#x95f4;</name>
890   - <rename>sendtime</rename>
891   - <length>-2</length>
892   - <precision>-2</precision>
893   - </field> <select_unspecified>Y</select_unspecified>
894   - </fields> <cluster_schema/>
895   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
896   - <xloc>444</xloc>
897   - <yloc>131</yloc>
898   - <draw>Y</draw>
899   - </GUI>
900   - </step>
901   -
902   - <step>
903   - <name>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;1</name>
904   - <type>FilterRows</type>
905   - <description/>
906   - <distribute>Y</distribute>
907   - <custom_distribution/>
908   - <copies>1</copies>
909   - <partitioning>
910   - <method>none</method>
911   - <schema_name/>
912   - </partitioning>
913   -<send_true_to>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</send_true_to>
914   -<send_false_to>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</send_false_to>
915   - <compare>
916   -<condition>
917   - <negated>N</negated>
918   - <leftvalue>bctype</leftvalue>
919   - <function>&#x3d;</function>
920   - <rightvalue/>
921   - <value><name>constant</name><type>String</type><text>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</text><length>-1</length><precision>-1</precision><isnull>N</isnull><mask/></value> </condition>
922   - </compare>
923   - <cluster_schema/>
924   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
925   - <xloc>860</xloc>
926   - <yloc>401</yloc>
927   - <draw>Y</draw>
928   - </GUI>
929   - </step>
930   -
931   - <step>
932   - <name>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</name>
933   - <type>FilterRows</type>
934   - <description/>
935   - <distribute>Y</distribute>
936   - <custom_distribution/>
937   - <copies>1</copies>
938   - <partitioning>
939   - <method>none</method>
940   - <schema_name/>
941   - </partitioning>
942   -<send_true_to>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</send_true_to>
943   -<send_false_to>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</send_false_to>
944   - <compare>
945   -<condition>
946   - <negated>N</negated>
947   - <leftvalue>bctype</leftvalue>
948   - <function>&#x3d;</function>
949   - <rightvalue/>
950   - <value><name>constant</name><type>String</type><text>&#x51fa;&#x573a;</text><length>-1</length><precision>-1</precision><isnull>N</isnull><mask/></value> </condition>
951   - </compare>
952   - <cluster_schema/>
953   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
954   - <xloc>995</xloc>
955   - <yloc>503</yloc>
956   - <draw>Y</draw>
957   - </GUI>
958   - </step>
959   -
960   - <step>
961   - <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail</name>
962   - <type>InsertUpdate</type>
963   - <description/>
964   - <distribute>Y</distribute>
965   - <custom_distribution/>
966   - <copies>1</copies>
967   - <partitioning>
968   - <method>none</method>
969   - <schema_name/>
970   - </partitioning>
971   - <connection>bus_control_variable</connection>
972   - <commit>100</commit>
973   - <update_bypassed>N</update_bypassed>
974   - <lookup>
975   - <schema/>
976   - <table>bsth_c_s_ttinfo_detail</table>
977   - <key>
978   - <name>xlid</name>
979   - <field>xl</field>
980   - <condition>&#x3d;</condition>
981   - <name2/>
982   - </key>
983   - <key>
984   - <name>ttid</name>
985   - <field>ttinfo</field>
986   - <condition>&#x3d;</condition>
987   - <name2/>
988   - </key>
989   - <key>
990   - <name>lpid</name>
991   - <field>lp</field>
992   - <condition>&#x3d;</condition>
993   - <name2/>
994   - </key>
995   - <key>
996   - <name>fcno</name>
997   - <field>fcno</field>
998   - <condition>&#x3d;</condition>
999   - <name2/>
1000   - </key>
1001   - <key>
1002   - <name>bcs</name>
1003   - <field>bcs</field>
1004   - <condition>&#x3d;</condition>
1005   - <name2/>
1006   - </key>
1007   - <value>
1008   - <name>lp</name>
1009   - <rename>lpid</rename>
1010   - <update>Y</update>
1011   - </value>
1012   - <value>
1013   - <name>bc_type</name>
1014   - <rename>bctype_code</rename>
1015   - <update>Y</update>
1016   - </value>
1017   - <value>
1018   - <name>bcs</name>
1019   - <rename>bcs</rename>
1020   - <update>Y</update>
1021   - </value>
1022   - <value>
1023   - <name>bcsj</name>
1024   - <rename>bcsj</rename>
1025   - <update>Y</update>
1026   - </value>
1027   - <value>
1028   - <name>fcno</name>
1029   - <rename>fcno</rename>
1030   - <update>Y</update>
1031   - </value>
1032   - <value>
1033   - <name>jhlc</name>
1034   - <rename>jhlc</rename>
1035   - <update>Y</update>
1036   - </value>
1037   - <value>
1038   - <name>fcsj</name>
1039   - <rename>sendtime_calcu</rename>
1040   - <update>Y</update>
1041   - </value>
1042   - <value>
1043   - <name>ttinfo</name>
1044   - <rename>ttid</rename>
1045   - <update>Y</update>
1046   - </value>
1047   - <value>
1048   - <name>xl</name>
1049   - <rename>xlid</rename>
1050   - <update>Y</update>
1051   - </value>
1052   - <value>
1053   - <name>qdz</name>
1054   - <rename>qdzid</rename>
1055   - <update>Y</update>
1056   - </value>
1057   - <value>
1058   - <name>zdz</name>
1059   - <rename>zdzid</rename>
1060   - <update>Y</update>
1061   - </value>
1062   - <value>
1063   - <name>xl_dir</name>
1064   - <rename>sxx</rename>
1065   - <update>Y</update>
1066   - </value>
1067   - <value>
1068   - <name>isfb</name>
1069   - <rename>isfb</rename>
1070   - <update>Y</update>
1071   - </value>
1072   - <value>
1073   - <name>qdz_code</name>
1074   - <rename>qdzcode</rename>
1075   - <update>Y</update>
1076   - </value>
1077   - <value>
1078   - <name>qdz_name</name>
1079   - <rename>qdzname_</rename>
1080   - <update>Y</update>
1081   - </value>
1082   - <value>
1083   - <name>zdz_code</name>
1084   - <rename>zdzcode</rename>
1085   - <update>Y</update>
1086   - </value>
1087   - <value>
1088   - <name>zdz_name</name>
1089   - <rename>zdzname</rename>
1090   - <update>Y</update>
1091   - </value>
1092   - <value>
1093   - <name>ists</name>
1094   - <rename>ists</rename>
1095   - <update>Y</update>
1096   - </value>
1097   - </lookup>
1098   - <cluster_schema/>
1099   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
1100   - <xloc>143</xloc>
1101   - <yloc>860</yloc>
1102   - <draw>Y</draw>
1103   - </GUI>
1104   - </step>
1105   -
1106   - <step>
1107   - <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail 2</name>
1108   - <type>InsertUpdate</type>
1109   - <description/>
1110   - <distribute>Y</distribute>
1111   - <custom_distribution/>
1112   - <copies>1</copies>
1113   - <partitioning>
1114   - <method>none</method>
1115   - <schema_name/>
1116   - </partitioning>
1117   - <connection>bus_control_variable</connection>
1118   - <commit>100</commit>
1119   - <update_bypassed>N</update_bypassed>
1120   - <lookup>
1121   - <schema/>
1122   - <table>bsth_c_s_ttinfo_detail</table>
1123   - <key>
1124   - <name>xlid</name>
1125   - <field>xl</field>
1126   - <condition>&#x3d;</condition>
1127   - <name2/>
1128   - </key>
1129   - <key>
1130   - <name>ttid</name>
1131   - <field>ttinfo</field>
1132   - <condition>&#x3d;</condition>
1133   - <name2/>
1134   - </key>
1135   - <key>
1136   - <name>lpid</name>
1137   - <field>lp</field>
1138   - <condition>&#x3d;</condition>
1139   - <name2/>
1140   - </key>
1141   - <key>
1142   - <name>fcno</name>
1143   - <field>fcno</field>
1144   - <condition>&#x3d;</condition>
1145   - <name2/>
1146   - </key>
1147   - <key>
1148   - <name>bcs</name>
1149   - <field>bcs</field>
1150   - <condition>&#x3d;</condition>
1151   - <name2/>
1152   - </key>
1153   - <value>
1154   - <name>tcc</name>
1155   - <rename>qdzid</rename>
1156   - <update>Y</update>
1157   - </value>
1158   - <value>
1159   - <name>zdz</name>
1160   - <rename>zdzid</rename>
1161   - <update>Y</update>
1162   - </value>
1163   - <value>
1164   - <name>xl</name>
1165   - <rename>xlid</rename>
1166   - <update>Y</update>
1167   - </value>
1168   - <value>
1169   - <name>ttinfo</name>
1170   - <rename>ttid</rename>
1171   - <update>Y</update>
1172   - </value>
1173   - <value>
1174   - <name>xl_dir</name>
1175   - <rename>sxx</rename>
1176   - <update>Y</update>
1177   - </value>
1178   - <value>
1179   - <name>lp</name>
1180   - <rename>lpid</rename>
1181   - <update>Y</update>
1182   - </value>
1183   - <value>
1184   - <name>jhlc</name>
1185   - <rename>out_mileage</rename>
1186   - <update>Y</update>
1187   - </value>
1188   - <value>
1189   - <name>fcsj</name>
1190   - <rename>sendtime_calcu</rename>
1191   - <update>Y</update>
1192   - </value>
1193   - <value>
1194   - <name>bcsj</name>
1195   - <rename>out_time</rename>
1196   - <update>Y</update>
1197   - </value>
1198   - <value>
1199   - <name>bcs</name>
1200   - <rename>bcs</rename>
1201   - <update>Y</update>
1202   - </value>
1203   - <value>
1204   - <name>fcno</name>
1205   - <rename>fcno</rename>
1206   - <update>Y</update>
1207   - </value>
1208   - <value>
1209   - <name>bc_type</name>
1210   - <rename>bctype_code</rename>
1211   - <update>Y</update>
1212   - </value>
1213   - <value>
1214   - <name>isfb</name>
1215   - <rename>isfb</rename>
1216   - <update>Y</update>
1217   - </value>
1218   - <value>
1219   - <name>qdz_code</name>
1220   - <rename>qdzcode</rename>
1221   - <update>Y</update>
1222   - </value>
1223   - <value>
1224   - <name>qdz_name</name>
1225   - <rename>tn</rename>
1226   - <update>Y</update>
1227   - </value>
1228   - <value>
1229   - <name>zdz_code</name>
1230   - <rename>zdzcode</rename>
1231   - <update>Y</update>
1232   - </value>
1233   - <value>
1234   - <name>zdz_name</name>
1235   - <rename>zdzname_</rename>
1236   - <update>Y</update>
1237   - </value>
1238   - <value>
1239   - <name>ists</name>
1240   - <rename>ists</rename>
1241   - <update>Y</update>
1242   - </value>
1243   - </lookup>
1244   - <cluster_schema/>
1245   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
1246   - <xloc>340</xloc>
1247   - <yloc>1087</yloc>
1248   - <draw>Y</draw>
1249   - </GUI>
1250   - </step>
1251   -
1252   - <step>
1253   - <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail 3</name>
1254   - <type>InsertUpdate</type>
1255   - <description/>
1256   - <distribute>Y</distribute>
1257   - <custom_distribution/>
1258   - <copies>1</copies>
1259   - <partitioning>
1260   - <method>none</method>
1261   - <schema_name/>
1262   - </partitioning>
1263   - <connection>bus_control_variable</connection>
1264   - <commit>100</commit>
1265   - <update_bypassed>N</update_bypassed>
1266   - <lookup>
1267   - <schema/>
1268   - <table>bsth_c_s_ttinfo_detail</table>
1269   - <key>
1270   - <name>xlid</name>
1271   - <field>xl</field>
1272   - <condition>&#x3d;</condition>
1273   - <name2/>
1274   - </key>
1275   - <key>
1276   - <name>ttid</name>
1277   - <field>ttinfo</field>
1278   - <condition>&#x3d;</condition>
1279   - <name2/>
1280   - </key>
1281   - <key>
1282   - <name>lpid</name>
1283   - <field>lp</field>
1284   - <condition>&#x3d;</condition>
1285   - <name2/>
1286   - </key>
1287   - <key>
1288   - <name>fcno</name>
1289   - <field>fcno</field>
1290   - <condition>&#x3d;</condition>
1291   - <name2/>
1292   - </key>
1293   - <key>
1294   - <name>bcs</name>
1295   - <field>bcs</field>
1296   - <condition>&#x3d;</condition>
1297   - <name2/>
1298   - </key>
1299   - <value>
1300   - <name>fcno</name>
1301   - <rename>fcno</rename>
1302   - <update>Y</update>
1303   - </value>
1304   - <value>
1305   - <name>bcs</name>
1306   - <rename>bcs</rename>
1307   - <update>Y</update>
1308   - </value>
1309   - <value>
1310   - <name>xl</name>
1311   - <rename>xlid</rename>
1312   - <update>Y</update>
1313   - </value>
1314   - <value>
1315   - <name>ttinfo</name>
1316   - <rename>ttid</rename>
1317   - <update>Y</update>
1318   - </value>
1319   - <value>
1320   - <name>lp</name>
1321   - <rename>lpid</rename>
1322   - <update>Y</update>
1323   - </value>
1324   - <value>
1325   - <name>bc_type</name>
1326   - <rename>bctype_code</rename>
1327   - <update>Y</update>
1328   - </value>
1329   - <value>
1330   - <name>bcsj</name>
1331   - <rename>parade_time</rename>
1332   - <update>Y</update>
1333   - </value>
1334   - <value>
1335   - <name>jhlc</name>
1336   - <rename>parade_mileage</rename>
1337   - <update>Y</update>
1338   - </value>
1339   - <value>
1340   - <name>fcsj</name>
1341   - <rename>sendtime_calcu</rename>
1342   - <update>Y</update>
1343   - </value>
1344   - <value>
1345   - <name>xl_dir</name>
1346   - <rename>sxx2</rename>
1347   - <update>Y</update>
1348   - </value>
1349   - <value>
1350   - <name>qdz</name>
1351   - <rename>qdzid</rename>
1352   - <update>Y</update>
1353   - </value>
1354   - <value>
1355   - <name>tcc</name>
1356   - <rename>zdzid</rename>
1357   - <update>Y</update>
1358   - </value>
1359   - <value>
1360   - <name>isfb</name>
1361   - <rename>isfb</rename>
1362   - <update>Y</update>
1363   - </value>
1364   - <value>
1365   - <name>qdz_code</name>
1366   - <rename>qdzcode</rename>
1367   - <update>Y</update>
1368   - </value>
1369   - <value>
1370   - <name>qdz_name</name>
1371   - <rename>qname</rename>
1372   - <update>Y</update>
1373   - </value>
1374   - <value>
1375   - <name>zdz_code</name>
1376   - <rename>zdzcode</rename>
1377   - <update>Y</update>
1378   - </value>
1379   - <value>
1380   - <name>zdz_name</name>
1381   - <rename>tn</rename>
1382   - <update>Y</update>
1383   - </value>
1384   - <value>
1385   - <name>ists</name>
1386   - <rename>ists</rename>
1387   - <update>Y</update>
1388   - </value>
1389   - </lookup>
1390   - <cluster_schema/>
1391   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
1392   - <xloc>845</xloc>
1393   - <yloc>899</yloc>
1394   - <draw>Y</draw>
1395   - </GUI>
1396   - </step>
1397   -
1398   - <step>
1399   - <name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</name>
1400   - <type>ExcelInput</type>
1401   - <description/>
1402   - <distribute>N</distribute>
1403   - <custom_distribution/>
1404   - <copies>1</copies>
1405   - <partitioning>
1406   - <method>none</method>
1407   - <schema_name/>
1408   - </partitioning>
1409   - <header>Y</header>
1410   - <noempty>Y</noempty>
1411   - <stoponempty>N</stoponempty>
1412   - <filefield/>
1413   - <sheetfield/>
1414   - <sheetrownumfield/>
1415   - <rownumfield/>
1416   - <sheetfield/>
1417   - <filefield/>
1418   - <limit>0</limit>
1419   - <encoding/>
1420   - <add_to_result_filenames>Y</add_to_result_filenames>
1421   - <accept_filenames>N</accept_filenames>
1422   - <accept_field/>
1423   - <accept_stepname/>
1424   - <file>
1425   - <name/>
1426   - <filemask/>
1427   - <exclude_filemask/>
1428   - <file_required>N</file_required>
1429   - <include_subfolders>N</include_subfolders>
1430   - </file>
1431   - <fields>
1432   - </fields>
1433   - <sheets>
1434   - <sheet>
1435   - <name/>
1436   - <startrow>0</startrow>
1437   - <startcol>0</startcol>
1438   - </sheet>
1439   - </sheets>
1440   - <strict_types>N</strict_types>
1441   - <error_ignored>N</error_ignored>
1442   - <error_line_skipped>N</error_line_skipped>
1443   - <bad_line_files_destination_directory/>
1444   - <bad_line_files_extension>warning</bad_line_files_extension>
1445   - <error_line_files_destination_directory/>
1446   - <error_line_files_extension>error</error_line_files_extension>
1447   - <line_number_files_destination_directory/>
1448   - <line_number_files_extension>line</line_number_files_extension>
1449   - <shortFileFieldName/>
1450   - <pathFieldName/>
1451   - <hiddenFieldName/>
1452   - <lastModificationTimeFieldName/>
1453   - <uriNameFieldName/>
1454   - <rootUriNameFieldName/>
1455   - <extensionFieldName/>
1456   - <sizeFieldName/>
1457   - <spreadsheet_type>JXL</spreadsheet_type>
1458   - <cluster_schema/>
1459   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
1460   - <xloc>112</xloc>
1461   - <yloc>44</yloc>
1462   - <draw>Y</draw>
1463   - </GUI>
1464   - </step>
1465   -
1466   - <step>
1467   - <name>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;1</name>
1468   - <type>DBLookup</type>
1469   - <description/>
1470   - <distribute>Y</distribute>
1471   - <custom_distribution/>
1472   - <copies>1</copies>
1473   - <partitioning>
1474   - <method>none</method>
1475   - <schema_name/>
1476   - </partitioning>
1477   - <connection>bus_control_variable</connection>
1478   - <cache>N</cache>
1479   - <cache_load_all>N</cache_load_all>
1480   - <cache_size>0</cache_size>
1481   - <lookup>
1482   - <schema/>
1483   - <table>bsth_c_car_park</table>
1484   - <orderby/>
1485   - <fail_on_multiple>N</fail_on_multiple>
1486   - <eat_row_on_failure>N</eat_row_on_failure>
1487   - <key>
1488   - <name>tccname_</name>
1489   - <field>park_name</field>
1490   - <condition>&#x3d;</condition>
1491   - <name2/>
1492   - </key>
1493   - <value>
1494   - <name>id</name>
1495   - <rename>qdzid</rename>
1496   - <default/>
1497   - <type>Integer</type>
1498   - </value>
1499   - <value>
1500   - <name>park_code</name>
1501   - <rename>qdzcode</rename>
1502   - <default/>
1503   - <type>String</type>
1504   - </value>
1505   - <value>
1506   - <name>park_name</name>
1507   - <rename>tn</rename>
1508   - <default/>
1509   - <type>String</type>
1510   - </value>
1511   - </lookup>
1512   - <cluster_schema/>
1513   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
1514   - <xloc>755</xloc>
1515   - <yloc>504</yloc>
1516   - <draw>Y</draw>
1517   - </GUI>
1518   - </step>
1519   -
1520   - <step>
1521   - <name>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;2</name>
1522   - <type>DBLookup</type>
1523   - <description/>
1524   - <distribute>Y</distribute>
1525   - <custom_distribution/>
1526   - <copies>1</copies>
1527   - <partitioning>
1528   - <method>none</method>
1529   - <schema_name/>
1530   - </partitioning>
1531   - <connection>bus_control_variable</connection>
1532   - <cache>N</cache>
1533   - <cache_load_all>N</cache_load_all>
1534   - <cache_size>0</cache_size>
1535   - <lookup>
1536   - <schema/>
1537   - <table>bsth_c_car_park</table>
1538   - <orderby/>
1539   - <fail_on_multiple>N</fail_on_multiple>
1540   - <eat_row_on_failure>N</eat_row_on_failure>
1541   - <key>
1542   - <name>tccname_</name>
1543   - <field>park_name</field>
1544   - <condition>&#x3d;</condition>
1545   - <name2/>
1546   - </key>
1547   - <value>
1548   - <name>id</name>
1549   - <rename>zdzid</rename>
1550   - <default/>
1551   - <type>Integer</type>
1552   - </value>
1553   - <value>
1554   - <name>park_code</name>
1555   - <rename>zdzcode</rename>
1556   - <default/>
1557   - <type>String</type>
1558   - </value>
1559   - <value>
1560   - <name>park_name</name>
1561   - <rename>tn</rename>
1562   - <default/>
1563   - <type>String</type>
1564   - </value>
1565   - </lookup>
1566   - <cluster_schema/>
1567   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
1568   - <xloc>887</xloc>
1569   - <yloc>608</yloc>
1570   - <draw>Y</draw>
1571   - </GUI>
1572   - </step>
1573   -
1574   - <step>
1575   - <name>&#x67e5;&#x627e;&#x51fa;&#x573a;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</name>
1576   - <type>DBLookup</type>
1577   - <description/>
1578   - <distribute>Y</distribute>
1579   - <custom_distribution/>
1580   - <copies>1</copies>
1581   - <partitioning>
1582   - <method>none</method>
1583   - <schema_name/>
1584   - </partitioning>
1585   - <connection>bus_control_variable</connection>
1586   - <cache>N</cache>
1587   - <cache_load_all>N</cache_load_all>
1588   - <cache_size>0</cache_size>
1589   - <lookup>
1590   - <schema/>
1591   - <table>bsth_c_stationroute</table>
1592   - <orderby/>
1593   - <fail_on_multiple>N</fail_on_multiple>
1594   - <eat_row_on_failure>N</eat_row_on_failure>
1595   - <key>
1596   - <name>xlid</name>
1597   - <field>line</field>
1598   - <condition>&#x3d;</condition>
1599   - <name2/>
1600   - </key>
1601   - <key>
1602   - <name>zdzname</name>
1603   - <field>station_name</field>
1604   - <condition>LIKE</condition>
1605   - <name2/>
1606   - </key>
1607   - <key>
1608   - <name>endZdtype</name>
1609   - <field>station_mark</field>
1610   - <condition>&#x3d;</condition>
1611   - <name2/>
1612   - </key>
1613   - <key>
1614   - <name>destory</name>
1615   - <field>destroy</field>
1616   - <condition>&#x3d;</condition>
1617   - <name2/>
1618   - </key>
1619   - <value>
1620   - <name>station</name>
1621   - <rename>zdzid</rename>
1622   - <default/>
1623   - <type>Integer</type>
1624   - </value>
1625   - <value>
1626   - <name>directions</name>
1627   - <rename>sxx</rename>
1628   - <default/>
1629   - <type>Integer</type>
1630   - </value>
1631   - <value>
1632   - <name>station_code</name>
1633   - <rename>zdzcode</rename>
1634   - <default/>
1635   - <type>String</type>
1636   - </value>
1637   - <value>
1638   - <name>station_name</name>
1639   - <rename>zdzname_</rename>
1640   - <default/>
1641   - <type>String</type>
1642   - </value>
1643   - </lookup>
1644   - <cluster_schema/>
1645   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
1646   - <xloc>329</xloc>
1647   - <yloc>505</yloc>
1648   - <draw>Y</draw>
1649   - </GUI>
1650   - </step>
1651   -
1652   - <step>
1653   - <name>&#x67e5;&#x627e;&#x65f6;&#x523b;&#x8868;&#x57fa;&#x7840;&#x4fe1;&#x606f;&#x5173;&#x8054;</name>
1654   - <type>DBLookup</type>
1655   - <description/>
1656   - <distribute>Y</distribute>
1657   - <custom_distribution/>
1658   - <copies>1</copies>
1659   - <partitioning>
1660   - <method>none</method>
1661   - <schema_name/>
1662   - </partitioning>
1663   - <connection>bus_control_variable</connection>
1664   - <cache>N</cache>
1665   - <cache_load_all>N</cache_load_all>
1666   - <cache_size>0</cache_size>
1667   - <lookup>
1668   - <schema/>
1669   - <table>bsth_c_s_ttinfo</table>
1670   - <orderby/>
1671   - <fail_on_multiple>N</fail_on_multiple>
1672   - <eat_row_on_failure>N</eat_row_on_failure>
1673   - <key>
1674   - <name>xlid</name>
1675   - <field>xl</field>
1676   - <condition>&#x3d;</condition>
1677   - <name2/>
1678   - </key>
1679   - <key>
1680   - <name>ttinfoname_</name>
1681   - <field>name</field>
1682   - <condition>&#x3d;</condition>
1683   - <name2/>
1684   - </key>
1685   - <key>
1686   - <name>iscanceled</name>
1687   - <field>is_cancel</field>
1688   - <condition>&#x3d;</condition>
1689   - <name2/>
1690   - </key>
1691   - <value>
1692   - <name>id</name>
1693   - <rename>ttid</rename>
1694   - <default/>
1695   - <type>Integer</type>
1696   - </value>
1697   - </lookup>
1698   - <cluster_schema/>
1699   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
1700   - <xloc>1011</xloc>
1701   - <yloc>134</yloc>
1702   - <draw>Y</draw>
1703   - </GUI>
1704   - </step>
1705   -
1706   - <step>
1707   - <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x5173;&#x8054;</name>
1708   - <type>DBLookup</type>
1709   - <description/>
1710   - <distribute>Y</distribute>
1711   - <custom_distribution/>
1712   - <copies>1</copies>
1713   - <partitioning>
1714   - <method>none</method>
1715   - <schema_name/>
1716   - </partitioning>
1717   - <connection>bus_control_variable</connection>
1718   - <cache>N</cache>
1719   - <cache_load_all>N</cache_load_all>
1720   - <cache_size>0</cache_size>
1721   - <lookup>
1722   - <schema/>
1723   - <table>bsth_c_line</table>
1724   - <orderby/>
1725   - <fail_on_multiple>N</fail_on_multiple>
1726   - <eat_row_on_failure>N</eat_row_on_failure>
1727   - <key>
1728   - <name>xlname_</name>
1729   - <field>name</field>
1730   - <condition>&#x3d;</condition>
1731   - <name2/>
1732   - </key>
1733   - <key>
1734   - <name>iscanceled</name>
1735   - <field>destroy</field>
1736   - <condition>&#x3d;</condition>
1737   - <name2/>
1738   - </key>
1739   - <value>
1740   - <name>id</name>
1741   - <rename>xlid</rename>
1742   - <default/>
1743   - <type>Integer</type>
1744   - </value>
1745   - </lookup>
1746   - <cluster_schema/>
1747   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
1748   - <xloc>1007</xloc>
1749   - <yloc>43</yloc>
1750   - <draw>Y</draw>
1751   - </GUI>
1752   - </step>
1753   -
1754   - <step>
1755   - <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x51fa;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
1756   - <type>DBLookup</type>
1757   - <description/>
1758   - <distribute>Y</distribute>
1759   - <custom_distribution/>
1760   - <copies>1</copies>
1761   - <partitioning>
1762   - <method>none</method>
1763   - <schema_name/>
1764   - </partitioning>
1765   - <connection>bus_control_variable</connection>
1766   - <cache>N</cache>
1767   - <cache_load_all>N</cache_load_all>
1768   - <cache_size>0</cache_size>
1769   - <lookup>
1770   - <schema/>
1771   - <table>bsth_c_line_information</table>
1772   - <orderby/>
1773   - <fail_on_multiple>N</fail_on_multiple>
1774   - <eat_row_on_failure>N</eat_row_on_failure>
1775   - <key>
1776   - <name>xlid</name>
1777   - <field>line</field>
1778   - <condition>&#x3d;</condition>
1779   - <name2/>
1780   - </key>
1781   - <value>
1782   - <name>up_out_timer</name>
1783   - <rename>up_out_timer</rename>
1784   - <default/>
1785   - <type>Number</type>
1786   - </value>
1787   - <value>
1788   - <name>up_out_mileage</name>
1789   - <rename>up_out_mileage</rename>
1790   - <default/>
1791   - <type>Number</type>
1792   - </value>
1793   - <value>
1794   - <name>down_out_timer</name>
1795   - <rename>down_out_timer</rename>
1796   - <default/>
1797   - <type>Number</type>
1798   - </value>
1799   - <value>
1800   - <name>down_out_mileage</name>
1801   - <rename>down_out_mileage</rename>
1802   - <default/>
1803   - <type>Number</type>
1804   - </value>
1805   - </lookup>
1806   - <cluster_schema/>
1807   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
1808   - <xloc>335</xloc>
1809   - <yloc>763</yloc>
1810   - <draw>Y</draw>
1811   - </GUI>
1812   - </step>
1813   -
1814   - <step>
1815   - <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x6240;&#x6709;&#x4e0a;&#x4e0b;&#x884c;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
1816   - <type>DBLookup</type>
1817   - <description/>
1818   - <distribute>Y</distribute>
1819   - <custom_distribution/>
1820   - <copies>1</copies>
1821   - <partitioning>
1822   - <method>none</method>
1823   - <schema_name/>
1824   - </partitioning>
1825   - <connection>bus_control_variable</connection>
1826   - <cache>N</cache>
1827   - <cache_load_all>N</cache_load_all>
1828   - <cache_size>0</cache_size>
1829   - <lookup>
1830   - <schema/>
1831   - <table>bsth_c_line_information</table>
1832   - <orderby/>
1833   - <fail_on_multiple>N</fail_on_multiple>
1834   - <eat_row_on_failure>N</eat_row_on_failure>
1835   - <key>
1836   - <name>xlid</name>
1837   - <field>line</field>
1838   - <condition>&#x3d;</condition>
1839   - <name2/>
1840   - </key>
1841   - <value>
1842   - <name>up_mileage</name>
1843   - <rename>up_mileage</rename>
1844   - <default/>
1845   - <type>Number</type>
1846   - </value>
1847   - <value>
1848   - <name>down_mileage</name>
1849   - <rename>down_mileage</rename>
1850   - <default/>
1851   - <type>Number</type>
1852   - </value>
1853   - <value>
1854   - <name>up_travel_time</name>
1855   - <rename>up_travel_time</rename>
1856   - <default/>
1857   - <type>Number</type>
1858   - </value>
1859   - <value>
1860   - <name>down_travel_time</name>
1861   - <rename>down_travel_time</rename>
1862   - <default/>
1863   - <type>Number</type>
1864   - </value>
1865   - <value>
1866   - <name>early_start_time</name>
1867   - <rename>early_start_time</rename>
1868   - <default/>
1869   - <type>String</type>
1870   - </value>
1871   - <value>
1872   - <name>early_end_time</name>
1873   - <rename>early_end_time</rename>
1874   - <default/>
1875   - <type>String</type>
1876   - </value>
1877   - <value>
1878   - <name>early_up_time</name>
1879   - <rename>early_up_time</rename>
1880   - <default/>
1881   - <type>Number</type>
1882   - </value>
1883   - <value>
1884   - <name>early_down_time</name>
1885   - <rename>early_down_time</rename>
1886   - <default/>
1887   - <type>Number</type>
1888   - </value>
1889   - <value>
1890   - <name>late_start_time</name>
1891   - <rename>late_start_time</rename>
1892   - <default/>
1893   - <type>String</type>
1894   - </value>
1895   - <value>
1896   - <name>late_end_time</name>
1897   - <rename>late_end_time</rename>
1898   - <default/>
1899   - <type>String</type>
1900   - </value>
1901   - <value>
1902   - <name>late_up_time</name>
1903   - <rename>late_up_time</rename>
1904   - <default/>
1905   - <type>Number</type>
1906   - </value>
1907   - <value>
1908   - <name>late_down_time</name>
1909   - <rename>late_down_time</rename>
1910   - <default/>
1911   - <type>Number</type>
1912   - </value>
1913   - </lookup>
1914   - <cluster_schema/>
1915   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
1916   - <xloc>149</xloc>
1917   - <yloc>581</yloc>
1918   - <draw>Y</draw>
1919   - </GUI>
1920   - </step>
1921   -
1922   - <step>
1923   - <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x8fdb;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
1924   - <type>DBLookup</type>
1925   - <description/>
1926   - <distribute>Y</distribute>
1927   - <custom_distribution/>
1928   - <copies>1</copies>
1929   - <partitioning>
1930   - <method>none</method>
1931   - <schema_name/>
1932   - </partitioning>
1933   - <connection>bus_control_variable</connection>
1934   - <cache>N</cache>
1935   - <cache_load_all>N</cache_load_all>
1936   - <cache_size>0</cache_size>
1937   - <lookup>
1938   - <schema/>
1939   - <table>bsth_c_line_information</table>
1940   - <orderby/>
1941   - <fail_on_multiple>N</fail_on_multiple>
1942   - <eat_row_on_failure>N</eat_row_on_failure>
1943   - <key>
1944   - <name>xlid</name>
1945   - <field>line</field>
1946   - <condition>&#x3d;</condition>
1947   - <name2/>
1948   - </key>
1949   - <value>
1950   - <name>up_in_mileage</name>
1951   - <rename>up_in_mileage</rename>
1952   - <default/>
1953   - <type>Number</type>
1954   - </value>
1955   - <value>
1956   - <name>up_in_timer</name>
1957   - <rename>up_in_timer</rename>
1958   - <default/>
1959   - <type>Number</type>
1960   - </value>
1961   - <value>
1962   - <name>down_in_mileage</name>
1963   - <rename>down_in_mileage</rename>
1964   - <default/>
1965   - <type>Number</type>
1966   - </value>
1967   - <value>
1968   - <name>down_in_timer</name>
1969   - <rename>down_in_timer</rename>
1970   - <default/>
1971   - <type>Number</type>
1972   - </value>
1973   - </lookup>
1974   - <cluster_schema/>
1975   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
1976   - <xloc>553</xloc>
1977   - <yloc>1004</yloc>
1978   - <draw>Y</draw>
1979   - </GUI>
1980   - </step>
1981   -
1982   - <step>
1983   - <name>&#x67e5;&#x627e;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;</name>
1984   - <type>DBLookup</type>
1985   - <description/>
1986   - <distribute>Y</distribute>
1987   - <custom_distribution/>
1988   - <copies>1</copies>
1989   - <partitioning>
1990   - <method>none</method>
1991   - <schema_name/>
1992   - </partitioning>
1993   - <connection>bus_control_variable</connection>
1994   - <cache>N</cache>
1995   - <cache_load_all>N</cache_load_all>
1996   - <cache_size>0</cache_size>
1997   - <lookup>
1998   - <schema/>
1999   - <table>bsth_c_stationroute</table>
2000   - <orderby/>
2001   - <fail_on_multiple>N</fail_on_multiple>
2002   - <eat_row_on_failure>N</eat_row_on_failure>
2003   - <key>
2004   - <name>xlid</name>
2005   - <field>line</field>
2006   - <condition>&#x3d;</condition>
2007   - <name2/>
2008   - </key>
2009   - <key>
2010   - <name>sxx</name>
2011   - <field>directions</field>
2012   - <condition>&#x3d;</condition>
2013   - <name2/>
2014   - </key>
2015   - <key>
2016   - <name>endZdtype</name>
2017   - <field>station_mark</field>
2018   - <condition>&#x3d;</condition>
2019   - <name2/>
2020   - </key>
2021   - <key>
2022   - <name>destory</name>
2023   - <field>destroy</field>
2024   - <condition>&#x3d;</condition>
2025   - <name2/>
2026   - </key>
2027   - <value>
2028   - <name>station_name</name>
2029   - <rename>zdzname</rename>
2030   - <default/>
2031   - <type>String</type>
2032   - </value>
2033   - <value>
2034   - <name>station</name>
2035   - <rename>zdzid</rename>
2036   - <default/>
2037   - <type>Integer</type>
2038   - </value>
2039   - <value>
2040   - <name>station_code</name>
2041   - <rename>zdzcode</rename>
2042   - <default/>
2043   - <type>String</type>
2044   - </value>
2045   - </lookup>
2046   - <cluster_schema/>
2047   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2048   - <xloc>280</xloc>
2049   - <yloc>404</yloc>
2050   - <draw>Y</draw>
2051   - </GUI>
2052   - </step>
2053   -
2054   - <step>
2055   - <name>&#x67e5;&#x627e;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</name>
2056   - <type>DBLookup</type>
2057   - <description/>
2058   - <distribute>Y</distribute>
2059   - <custom_distribution/>
2060   - <copies>1</copies>
2061   - <partitioning>
2062   - <method>none</method>
2063   - <schema_name/>
2064   - </partitioning>
2065   - <connection>bus_control_variable</connection>
2066   - <cache>N</cache>
2067   - <cache_load_all>N</cache_load_all>
2068   - <cache_size>0</cache_size>
2069   - <lookup>
2070   - <schema/>
2071   - <table>bsth_c_stationroute</table>
2072   - <orderby/>
2073   - <fail_on_multiple>N</fail_on_multiple>
2074   - <eat_row_on_failure>N</eat_row_on_failure>
2075   - <key>
2076   - <name>xlid</name>
2077   - <field>line</field>
2078   - <condition>&#x3d;</condition>
2079   - <name2/>
2080   - </key>
2081   - <key>
2082   - <name>qdzname</name>
2083   - <field>station_name</field>
2084   - <condition>LIKE</condition>
2085   - <name2/>
2086   - </key>
2087   - <key>
2088   - <name>sendZdtype</name>
2089   - <field>station_mark</field>
2090   - <condition>&#x3d;</condition>
2091   - <name2/>
2092   - </key>
2093   - <key>
2094   - <name>destory</name>
2095   - <field>destroy</field>
2096   - <condition>&#x3d;</condition>
2097   - <name2/>
2098   - </key>
2099   - <value>
2100   - <name>station</name>
2101   - <rename>qdzid</rename>
2102   - <default/>
2103   - <type>Integer</type>
2104   - </value>
2105   - <value>
2106   - <name>directions</name>
2107   - <rename>sxx</rename>
2108   - <default/>
2109   - <type>Integer</type>
2110   - </value>
2111   - <value>
2112   - <name>station_code</name>
2113   - <rename>qdzcode</rename>
2114   - <default/>
2115   - <type>String</type>
2116   - </value>
2117   - <value>
2118   - <name>station_name</name>
2119   - <rename>qdzname_</rename>
2120   - <default/>
2121   - <type>String</type>
2122   - </value>
2123   - </lookup>
2124   - <cluster_schema/>
2125   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2126   - <xloc>430</xloc>
2127   - <yloc>403</yloc>
2128   - <draw>Y</draw>
2129   - </GUI>
2130   - </step>
2131   -
2132   - <step>
2133   - <name>&#x67e5;&#x627e;&#x8def;&#x724c;&#x5173;&#x8054;</name>
2134   - <type>DBLookup</type>
2135   - <description/>
2136   - <distribute>Y</distribute>
2137   - <custom_distribution/>
2138   - <copies>1</copies>
2139   - <partitioning>
2140   - <method>none</method>
2141   - <schema_name/>
2142   - </partitioning>
2143   - <connection>bus_control_variable</connection>
2144   - <cache>N</cache>
2145   - <cache_load_all>N</cache_load_all>
2146   - <cache_size>0</cache_size>
2147   - <lookup>
2148   - <schema/>
2149   - <table>bsth_c_s_gbi</table>
2150   - <orderby/>
2151   - <fail_on_multiple>N</fail_on_multiple>
2152   - <eat_row_on_failure>N</eat_row_on_failure>
2153   - <key>
2154   - <name>xlid</name>
2155   - <field>xl</field>
2156   - <condition>&#x3d;</condition>
2157   - <name2/>
2158   - </key>
2159   - <key>
2160   - <name>lp</name>
2161   - <field>lp_name</field>
2162   - <condition>&#x3d;</condition>
2163   - <name2/>
2164   - </key>
2165   - <key>
2166   - <name>iscanceled</name>
2167   - <field>is_cancel</field>
2168   - <condition>&#x3d;</condition>
2169   - <name2/>
2170   - </key>
2171   - <value>
2172   - <name>id</name>
2173   - <rename>lpid</rename>
2174   - <default/>
2175   - <type>Integer</type>
2176   - </value>
2177   - </lookup>
2178   - <cluster_schema/>
2179   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2180   - <xloc>1013</xloc>
2181   - <yloc>265</yloc>
2182   - <draw>Y</draw>
2183   - </GUI>
2184   - </step>
2185   -
2186   - <step>
2187   - <name>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ebf;&#x8def;&#x65b9;&#x5411;</name>
2188   - <type>DBLookup</type>
2189   - <description/>
2190   - <distribute>Y</distribute>
2191   - <custom_distribution/>
2192   - <copies>1</copies>
2193   - <partitioning>
2194   - <method>none</method>
2195   - <schema_name/>
2196   - </partitioning>
2197   - <connection>bus_control_variable</connection>
2198   - <cache>N</cache>
2199   - <cache_load_all>N</cache_load_all>
2200   - <cache_size>0</cache_size>
2201   - <lookup>
2202   - <schema/>
2203   - <table>bsth_c_stationroute</table>
2204   - <orderby/>
2205   - <fail_on_multiple>N</fail_on_multiple>
2206   - <eat_row_on_failure>N</eat_row_on_failure>
2207   - <key>
2208   - <name>xlid</name>
2209   - <field>line</field>
2210   - <condition>&#x3d;</condition>
2211   - <name2/>
2212   - </key>
2213   - <key>
2214   - <name>startZdtype_calcu</name>
2215   - <field>station_mark</field>
2216   - <condition>&#x3d;</condition>
2217   - <name2/>
2218   - </key>
2219   - <key>
2220   - <name>qdzname_calcu</name>
2221   - <field>station_name</field>
2222   - <condition>LIKE</condition>
2223   - <name2/>
2224   - </key>
2225   - <key>
2226   - <name>destory</name>
2227   - <field>destroy</field>
2228   - <condition>&#x3d;</condition>
2229   - <name2/>
2230   - </key>
2231   - <value>
2232   - <name>directions</name>
2233   - <rename>sxx</rename>
2234   - <default/>
2235   - <type>String</type>
2236   - </value>
2237   - </lookup>
2238   - <cluster_schema/>
2239   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2240   - <xloc>548</xloc>
2241   - <yloc>610</yloc>
2242   - <draw>Y</draw>
2243   - </GUI>
2244   - </step>
2245   -
2246   - <step>
2247   - <name>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ec8;&#x70b9;&#x7ad9;&#xff0c;&#x5e76;&#x4f5c;&#x4e3a;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x7684;&#x8d77;&#x70b9;&#x7ad9;</name>
2248   - <type>DBLookup</type>
2249   - <description/>
2250   - <distribute>Y</distribute>
2251   - <custom_distribution/>
2252   - <copies>1</copies>
2253   - <partitioning>
2254   - <method>none</method>
2255   - <schema_name/>
2256   - </partitioning>
2257   - <connection>bus_control_variable</connection>
2258   - <cache>Y</cache>
2259   - <cache_load_all>Y</cache_load_all>
2260   - <cache_size>0</cache_size>
2261   - <lookup>
2262   - <schema/>
2263   - <table>bsth_c_stationroute</table>
2264   - <orderby/>
2265   - <fail_on_multiple>N</fail_on_multiple>
2266   - <eat_row_on_failure>N</eat_row_on_failure>
2267   - <key>
2268   - <name>xlid</name>
2269   - <field>line</field>
2270   - <condition>&#x3d;</condition>
2271   - <name2/>
2272   - </key>
2273   - <key>
2274   - <name>endZdtype_calcu</name>
2275   - <field>station_mark</field>
2276   - <condition>&#x3d;</condition>
2277   - <name2/>
2278   - </key>
2279   - <key>
2280   - <name>sxx</name>
2281   - <field>directions</field>
2282   - <condition>&#x3d;</condition>
2283   - <name2/>
2284   - </key>
2285   - <key>
2286   - <name>destory</name>
2287   - <field>destroy</field>
2288   - <condition>&#x3d;</condition>
2289   - <name2/>
2290   - </key>
2291   - <value>
2292   - <name>station_name</name>
2293   - <rename>zdzname_calcu</rename>
2294   - <default/>
2295   - <type>Integer</type>
2296   - </value>
2297   - </lookup>
2298   - <cluster_schema/>
2299   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2300   - <xloc>550</xloc>
2301   - <yloc>701</yloc>
2302   - <draw>Y</draw>
2303   - </GUI>
2304   - </step>
2305   -
2306   - <step>
2307   - <name>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</name>
2308   - <type>DBLookup</type>
2309   - <description/>
2310   - <distribute>Y</distribute>
2311   - <custom_distribution/>
2312   - <copies>1</copies>
2313   - <partitioning>
2314   - <method>none</method>
2315   - <schema_name/>
2316   - </partitioning>
2317   - <connection>bus_control_variable</connection>
2318   - <cache>N</cache>
2319   - <cache_load_all>N</cache_load_all>
2320   - <cache_size>0</cache_size>
2321   - <lookup>
2322   - <schema/>
2323   - <table>bsth_c_stationroute</table>
2324   - <orderby/>
2325   - <fail_on_multiple>N</fail_on_multiple>
2326   - <eat_row_on_failure>N</eat_row_on_failure>
2327   - <key>
2328   - <name>xlid</name>
2329   - <field>line</field>
2330   - <condition>&#x3d;</condition>
2331   - <name2/>
2332   - </key>
2333   - <key>
2334   - <name>zdzname_calcu</name>
2335   - <field>station_name</field>
2336   - <condition>&#x3d;</condition>
2337   - <name2/>
2338   - </key>
2339   - <key>
2340   - <name>startZdtype_calcu</name>
2341   - <field>station_mark</field>
2342   - <condition>&#x3d;</condition>
2343   - <name2/>
2344   - </key>
2345   - <key>
2346   - <name>destory</name>
2347   - <field>destroy</field>
2348   - <condition>&#x3d;</condition>
2349   - <name2/>
2350   - </key>
2351   - <value>
2352   - <name>directions</name>
2353   - <rename>sxx2</rename>
2354   - <default/>
2355   - <type>Integer</type>
2356   - </value>
2357   - <value>
2358   - <name>station</name>
2359   - <rename>qdzid</rename>
2360   - <default/>
2361   - <type>Integer</type>
2362   - </value>
2363   - <value>
2364   - <name>station_code</name>
2365   - <rename>qdzcode</rename>
2366   - <default/>
2367   - <type>String</type>
2368   - </value>
2369   - <value>
2370   - <name>station_name</name>
2371   - <rename>qname</rename>
2372   - <default/>
2373   - <type>String</type>
2374   - </value>
2375   - </lookup>
2376   - <cluster_schema/>
2377   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2378   - <xloc>551</xloc>
2379   - <yloc>782</yloc>
2380   - <draw>Y</draw>
2381   - </GUI>
2382   - </step>
2383   -
2384   - <step>
2385   - <name>&#x6b63;&#x5e38;&#x73ed;&#x6b21;_&#x5904;&#x7406;&#x6570;&#x636e;</name>
2386   - <type>ScriptValueMod</type>
2387   - <description/>
2388   - <distribute>Y</distribute>
2389   - <custom_distribution/>
2390   - <copies>1</copies>
2391   - <partitioning>
2392   - <method>none</method>
2393   - <schema_name/>
2394   - </partitioning>
2395   - <compatible>N</compatible>
2396   - <optimizationLevel>9</optimizationLevel>
2397   - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
2398   - <jsScript_name>Script 1</jsScript_name>
2399   - <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;&#x2f;&#x2f; &#x6dfb;&#x52a0;&#x7ad9;&#x70b9;&#x6807;&#x8bc6;&#xa;var sendZdtype &#x3d; &#x27;B&#x27;&#x3b;&#xa;var endZdtype &#x3d; &#x27;E&#x27;&#x3b;&#xa;&#xa;var destory &#x3d; 0&#x3b; &#x2f;&#x2f; &#x672a;&#x64a4;&#x9500;flag</jsScript_script>
2400   - </jsScript> </jsScripts> <fields> <field> <name>sendZdtype</name>
2401   - <rename>sendZdtype</rename>
2402   - <type>String</type>
2403   - <length>-1</length>
2404   - <precision>-1</precision>
2405   - <replace>N</replace>
2406   - </field> <field> <name>endZdtype</name>
2407   - <rename>endZdtype</rename>
2408   - <type>String</type>
2409   - <length>-1</length>
2410   - <precision>-1</precision>
2411   - <replace>N</replace>
2412   - </field> <field> <name>destory</name>
2413   - <rename>destory</rename>
2414   - <type>Integer</type>
2415   - <length>-1</length>
2416   - <precision>-1</precision>
2417   - <replace>N</replace>
2418   - </field> </fields> <cluster_schema/>
2419   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2420   - <xloc>588</xloc>
2421   - <yloc>403</yloc>
2422   - <draw>Y</draw>
2423   - </GUI>
2424   - </step>
2425   -
2426   - <step>
2427   - <name>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</name>
2428   - <type>Dummy</type>
2429   - <description/>
2430   - <distribute>Y</distribute>
2431   - <custom_distribution/>
2432   - <copies>1</copies>
2433   - <partitioning>
2434   - <method>none</method>
2435   - <schema_name/>
2436   - </partitioning>
2437   - <cluster_schema/>
2438   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2439   - <xloc>725</xloc>
2440   - <yloc>404</yloc>
2441   - <draw>Y</draw>
2442   - </GUI>
2443   - </step>
2444   -
2445   - <step>
2446   - <name>&#x6dfb;&#x52a0;&#x53d1;&#x8f66;&#x987a;&#x5e8f;&#x53f7;</name>
2447   - <type>GroupBy</type>
2448   - <description/>
2449   - <distribute>Y</distribute>
2450   - <custom_distribution/>
2451   - <copies>1</copies>
2452   - <partitioning>
2453   - <method>none</method>
2454   - <schema_name/>
2455   - </partitioning>
2456   - <all_rows>Y</all_rows>
2457   - <ignore_aggregate>N</ignore_aggregate>
2458   - <field_ignore/>
2459   - <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
2460   - <prefix>grp</prefix>
2461   - <add_linenr>Y</add_linenr>
2462   - <linenr_fieldname>fcno</linenr_fieldname>
2463   - <give_back_row>N</give_back_row>
2464   - <group>
2465   - <field>
2466   - <name>lp</name>
2467   - </field>
2468   - </group>
2469   - <fields>
2470   - </fields>
2471   - <cluster_schema/>
2472   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2473   - <xloc>442</xloc>
2474   - <yloc>44</yloc>
2475   - <draw>Y</draw>
2476   - </GUI>
2477   - </step>
2478   -
2479   - <step>
2480   - <name>&#x6dfb;&#x52a0;&#x5bf9;&#x5e94;&#x73ed;&#x6b21;&#x6570;</name>
2481   - <type>GroupBy</type>
2482   - <description/>
2483   - <distribute>Y</distribute>
2484   - <custom_distribution/>
2485   - <copies>1</copies>
2486   - <partitioning>
2487   - <method>none</method>
2488   - <schema_name/>
2489   - </partitioning>
2490   - <all_rows>Y</all_rows>
2491   - <ignore_aggregate>N</ignore_aggregate>
2492   - <field_ignore/>
2493   - <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
2494   - <prefix>grp</prefix>
2495   - <add_linenr>Y</add_linenr>
2496   - <linenr_fieldname>bcs</linenr_fieldname>
2497   - <give_back_row>N</give_back_row>
2498   - <group>
2499   - </group>
2500   - <fields>
2501   - </fields>
2502   - <cluster_schema/>
2503   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2504   - <xloc>692</xloc>
2505   - <yloc>44</yloc>
2506   - <draw>Y</draw>
2507   - </GUI>
2508   - </step>
2509   -
2510   - <step>
2511   - <name>&#x73ed;&#x6b21;&#x6570;&#x636e;&#x8303;&#x5f0f;&#x5316;</name>
2512   - <type>Normaliser</type>
2513   - <description/>
2514   - <distribute>Y</distribute>
2515   - <custom_distribution/>
2516   - <copies>1</copies>
2517   - <partitioning>
2518   - <method>none</method>
2519   - <schema_name/>
2520   - </partitioning>
2521   - <typefield>&#x7ad9;&#x70b9;&#x540d;&#x79f0;</typefield>
2522   - <fields> </fields> <cluster_schema/>
2523   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2524   - <xloc>248</xloc>
2525   - <yloc>44</yloc>
2526   - <draw>Y</draw>
2527   - </GUI>
2528   - </step>
2529   -
2530   - <step>
2531   - <name>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178;</name>
2532   - <type>ValueMapper</type>
2533   - <description/>
2534   - <distribute>Y</distribute>
2535   - <custom_distribution/>
2536   - <copies>1</copies>
2537   - <partitioning>
2538   - <method>none</method>
2539   - <schema_name/>
2540   - </partitioning>
2541   - <field_to_use>bctype</field_to_use>
2542   - <target_field>bctype_code</target_field>
2543   - <non_match_default>&#x672a;&#x77e5;&#x7c7b;&#x578b;</non_match_default>
2544   - <fields>
2545   - <field>
2546   - <source_value>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</source_value>
2547   - <target_value>normal</target_value>
2548   - </field>
2549   - <field>
2550   - <source_value>&#x51fa;&#x573a;</source_value>
2551   - <target_value>out</target_value>
2552   - </field>
2553   - <field>
2554   - <source_value>&#x8fdb;&#x573a;</source_value>
2555   - <target_value>in</target_value>
2556   - </field>
2557   - <field>
2558   - <source_value>&#x52a0;&#x6cb9;</source_value>
2559   - <target_value>oil</target_value>
2560   - </field>
2561   - <field>
2562   - <source_value>&#x4e34;&#x52a0;</source_value>
2563   - <target_value>temp</target_value>
2564   - </field>
2565   - <field>
2566   - <source_value>&#x533a;&#x95f4;</source_value>
2567   - <target_value>region</target_value>
2568   - </field>
2569   - <field>
2570   - <source_value>&#x653e;&#x7a7a;</source_value>
2571   - <target_value>venting</target_value>
2572   - </field>
2573   - <field>
2574   - <source_value>&#x653e;&#x5927;&#x7ad9;</source_value>
2575   - <target_value>major</target_value>
2576   - </field>
2577   - </fields>
2578   - <cluster_schema/>
2579   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2580   - <xloc>149</xloc>
2581   - <yloc>491</yloc>
2582   - <draw>Y</draw>
2583   - </GUI>
2584   - </step>
2585   -
2586   - <step>
2587   - <name>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 2</name>
2588   - <type>ValueMapper</type>
2589   - <description/>
2590   - <distribute>Y</distribute>
2591   - <custom_distribution/>
2592   - <copies>1</copies>
2593   - <partitioning>
2594   - <method>none</method>
2595   - <schema_name/>
2596   - </partitioning>
2597   - <field_to_use>bctype</field_to_use>
2598   - <target_field>bctype_code</target_field>
2599   - <non_match_default>&#x672a;&#x77e5;&#x7c7b;&#x578b;</non_match_default>
2600   - <fields>
2601   - <field>
2602   - <source_value>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</source_value>
2603   - <target_value>normal</target_value>
2604   - </field>
2605   - <field>
2606   - <source_value>&#x51fa;&#x573a;</source_value>
2607   - <target_value>out</target_value>
2608   - </field>
2609   - <field>
2610   - <source_value>&#x8fdb;&#x573a;</source_value>
2611   - <target_value>in</target_value>
2612   - </field>
2613   - <field>
2614   - <source_value>&#x52a0;&#x6cb9;</source_value>
2615   - <target_value>oil</target_value>
2616   - </field>
2617   - <field>
2618   - <source_value>&#x4e34;&#x52a0;</source_value>
2619   - <target_value>temp</target_value>
2620   - </field>
2621   - <field>
2622   - <source_value>&#x533a;&#x95f4;</source_value>
2623   - <target_value>region</target_value>
2624   - </field>
2625   - <field>
2626   - <source_value>&#x653e;&#x7a7a;</source_value>
2627   - <target_value>venting</target_value>
2628   - </field>
2629   - <field>
2630   - <source_value>&#x653e;&#x5927;&#x7ad9;</source_value>
2631   - <target_value>major</target_value>
2632   - </field>
2633   - </fields>
2634   - <cluster_schema/>
2635   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2636   - <xloc>333</xloc>
2637   - <yloc>681</yloc>
2638   - <draw>Y</draw>
2639   - </GUI>
2640   - </step>
2641   -
2642   - <step>
2643   - <name>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 3</name>
2644   - <type>ValueMapper</type>
2645   - <description/>
2646   - <distribute>Y</distribute>
2647   - <custom_distribution/>
2648   - <copies>1</copies>
2649   - <partitioning>
2650   - <method>none</method>
2651   - <schema_name/>
2652   - </partitioning>
2653   - <field_to_use>bctype</field_to_use>
2654   - <target_field>bctype_code</target_field>
2655   - <non_match_default>&#x672a;&#x77e5;&#x7c7b;&#x578b;</non_match_default>
2656   - <fields>
2657   - <field>
2658   - <source_value>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</source_value>
2659   - <target_value>normal</target_value>
2660   - </field>
2661   - <field>
2662   - <source_value>&#x51fa;&#x573a;</source_value>
2663   - <target_value>out</target_value>
2664   - </field>
2665   - <field>
2666   - <source_value>&#x8fdb;&#x573a;</source_value>
2667   - <target_value>in</target_value>
2668   - </field>
2669   - <field>
2670   - <source_value>&#x52a0;&#x6cb9;</source_value>
2671   - <target_value>oil</target_value>
2672   - </field>
2673   - <field>
2674   - <source_value>&#x4e34;&#x52a0;</source_value>
2675   - <target_value>temp</target_value>
2676   - </field>
2677   - <field>
2678   - <source_value>&#x533a;&#x95f4;</source_value>
2679   - <target_value>region</target_value>
2680   - </field>
2681   - <field>
2682   - <source_value>&#x653e;&#x7a7a;</source_value>
2683   - <target_value>venting</target_value>
2684   - </field>
2685   - <field>
2686   - <source_value>&#x653e;&#x5927;&#x7ad9;</source_value>
2687   - <target_value>major</target_value>
2688   - </field>
2689   - </fields>
2690   - <cluster_schema/>
2691   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2692   - <xloc>551</xloc>
2693   - <yloc>928</yloc>
2694   - <draw>Y</draw>
2695   - </GUI>
2696   - </step>
2697   -
2698   - <step>
2699   - <name>&#x7c7b;&#x578b;&#x4fee;&#x6b63;</name>
2700   - <type>SelectValues</type>
2701   - <description/>
2702   - <distribute>Y</distribute>
2703   - <custom_distribution/>
2704   - <copies>1</copies>
2705   - <partitioning>
2706   - <method>none</method>
2707   - <schema_name/>
2708   - </partitioning>
2709   - <fields> <select_unspecified>N</select_unspecified>
2710   - <meta> <name>jhlc</name>
2711   - <rename>jhlc</rename>
2712   - <type>Number</type>
2713   - <length>-2</length>
2714   - <precision>-2</precision>
2715   - <conversion_mask/>
2716   - <date_format_lenient>false</date_format_lenient>
2717   - <date_format_locale/>
2718   - <date_format_timezone/>
2719   - <lenient_string_to_number>false</lenient_string_to_number>
2720   - <encoding/>
2721   - <decimal_symbol/>
2722   - <grouping_symbol/>
2723   - <currency_symbol/>
2724   - <storage_type/>
2725   - </meta> <meta> <name>bcsj</name>
2726   - <rename>bcsj</rename>
2727   - <type>Integer</type>
2728   - <length>-2</length>
2729   - <precision>-2</precision>
2730   - <conversion_mask/>
2731   - <date_format_lenient>false</date_format_lenient>
2732   - <date_format_locale/>
2733   - <date_format_timezone/>
2734   - <lenient_string_to_number>false</lenient_string_to_number>
2735   - <encoding/>
2736   - <decimal_symbol/>
2737   - <grouping_symbol/>
2738   - <currency_symbol/>
2739   - <storage_type/>
2740   - </meta> </fields> <cluster_schema/>
2741   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2742   - <xloc>146</xloc>
2743   - <yloc>768</yloc>
2744   - <draw>Y</draw>
2745   - </GUI>
2746   - </step>
2747   -
2748   - <step>
2749   - <name>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 2</name>
2750   - <type>SelectValues</type>
2751   - <description/>
2752   - <distribute>Y</distribute>
2753   - <custom_distribution/>
2754   - <copies>1</copies>
2755   - <partitioning>
2756   - <method>none</method>
2757   - <schema_name/>
2758   - </partitioning>
2759   - <fields> <select_unspecified>N</select_unspecified>
2760   - <meta> <name>out_mileage</name>
2761   - <rename>out_mileage</rename>
2762   - <type>Number</type>
2763   - <length>-2</length>
2764   - <precision>-2</precision>
2765   - <conversion_mask/>
2766   - <date_format_lenient>false</date_format_lenient>
2767   - <date_format_locale/>
2768   - <date_format_timezone/>
2769   - <lenient_string_to_number>false</lenient_string_to_number>
2770   - <encoding/>
2771   - <decimal_symbol/>
2772   - <grouping_symbol/>
2773   - <currency_symbol/>
2774   - <storage_type/>
2775   - </meta> <meta> <name>out_time</name>
2776   - <rename>out_time</rename>
2777   - <type>Integer</type>
2778   - <length>-2</length>
2779   - <precision>-2</precision>
2780   - <conversion_mask/>
2781   - <date_format_lenient>false</date_format_lenient>
2782   - <date_format_locale/>
2783   - <date_format_timezone/>
2784   - <lenient_string_to_number>false</lenient_string_to_number>
2785   - <encoding/>
2786   - <decimal_symbol/>
2787   - <grouping_symbol/>
2788   - <currency_symbol/>
2789   - <storage_type/>
2790   - </meta> <meta> <name>sxx</name>
2791   - <rename>sxx</rename>
2792   - <type>Integer</type>
2793   - <length>-2</length>
2794   - <precision>-2</precision>
2795   - <conversion_mask/>
2796   - <date_format_lenient>false</date_format_lenient>
2797   - <date_format_locale/>
2798   - <date_format_timezone/>
2799   - <lenient_string_to_number>false</lenient_string_to_number>
2800   - <encoding/>
2801   - <decimal_symbol/>
2802   - <grouping_symbol/>
2803   - <currency_symbol/>
2804   - <storage_type/>
2805   - </meta> </fields> <cluster_schema/>
2806   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2807   - <xloc>338</xloc>
2808   - <yloc>1008</yloc>
2809   - <draw>Y</draw>
2810   - </GUI>
2811   - </step>
2812   -
2813   - <step>
2814   - <name>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 3</name>
2815   - <type>SelectValues</type>
2816   - <description/>
2817   - <distribute>Y</distribute>
2818   - <custom_distribution/>
2819   - <copies>1</copies>
2820   - <partitioning>
2821   - <method>none</method>
2822   - <schema_name/>
2823   - </partitioning>
2824   - <fields> <select_unspecified>N</select_unspecified>
2825   - <meta> <name>parade_mileage</name>
2826   - <rename>parade_mileage</rename>
2827   - <type>Number</type>
2828   - <length>-2</length>
2829   - <precision>-2</precision>
2830   - <conversion_mask/>
2831   - <date_format_lenient>false</date_format_lenient>
2832   - <date_format_locale/>
2833   - <date_format_timezone/>
2834   - <lenient_string_to_number>false</lenient_string_to_number>
2835   - <encoding/>
2836   - <decimal_symbol/>
2837   - <grouping_symbol/>
2838   - <currency_symbol/>
2839   - <storage_type/>
2840   - </meta> <meta> <name>parade_time</name>
2841   - <rename>parade_time</rename>
2842   - <type>Integer</type>
2843   - <length>-2</length>
2844   - <precision>-2</precision>
2845   - <conversion_mask/>
2846   - <date_format_lenient>false</date_format_lenient>
2847   - <date_format_locale/>
2848   - <date_format_timezone/>
2849   - <lenient_string_to_number>false</lenient_string_to_number>
2850   - <encoding/>
2851   - <decimal_symbol/>
2852   - <grouping_symbol/>
2853   - <currency_symbol/>
2854   - <storage_type/>
2855   - </meta> <meta> <name>sxx2</name>
2856   - <rename>sxx2</rename>
2857   - <type>Integer</type>
2858   - <length>-2</length>
2859   - <precision>-2</precision>
2860   - <conversion_mask/>
2861   - <date_format_lenient>false</date_format_lenient>
2862   - <date_format_locale/>
2863   - <date_format_timezone/>
2864   - <lenient_string_to_number>false</lenient_string_to_number>
2865   - <encoding/>
2866   - <decimal_symbol/>
2867   - <grouping_symbol/>
2868   - <currency_symbol/>
2869   - <storage_type/>
2870   - </meta> </fields> <cluster_schema/>
2871   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2872   - <xloc>847</xloc>
2873   - <yloc>1003</yloc>
2874   - <draw>Y</draw>
2875   - </GUI>
2876   - </step>
2877   -
2878   - <step>
2879   - <name>&#x8ba1;&#x7b97;&#x73ed;&#x6b21;&#x7c7b;&#x578b;</name>
2880   - <type>ValueMapper</type>
2881   - <description/>
2882   - <distribute>Y</distribute>
2883   - <custom_distribution/>
2884   - <copies>1</copies>
2885   - <partitioning>
2886   - <method>none</method>
2887   - <schema_name/>
2888   - </partitioning>
2889   - <field_to_use>qdzname</field_to_use>
2890   - <target_field>bctype</target_field>
2891   - <non_match_default>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</non_match_default>
2892   - <fields>
2893   - <field>
2894   - <source_value>&#x51fa;&#x573a;</source_value>
2895   - <target_value>&#x51fa;&#x573a;</target_value>
2896   - </field>
2897   - <field>
2898   - <source_value>&#x8fdb;&#x573a;</source_value>
2899   - <target_value>&#x8fdb;&#x573a;</target_value>
2900   - </field>
2901   - </fields>
2902   - <cluster_schema/>
2903   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2904   - <xloc>1014</xloc>
2905   - <yloc>401</yloc>
2906   - <draw>Y</draw>
2907   - </GUI>
2908   - </step>
2909   -
2910   - <step>
2911   - <name>&#x8bb0;&#x5f55;&#x5173;&#x8054; &#x28;&#x7b1b;&#x5361;&#x5c14;&#x8f93;&#x51fa;&#x29;</name>
2912   - <type>JoinRows</type>
2913   - <description/>
2914   - <distribute>Y</distribute>
2915   - <custom_distribution/>
2916   - <copies>1</copies>
2917   - <partitioning>
2918   - <method>none</method>
2919   - <schema_name/>
2920   - </partitioning>
2921   - <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
2922   - <prefix>out</prefix>
2923   - <cache_size>500</cache_size>
2924   - <main/>
2925   - <compare>
2926   -<condition>
2927   - <negated>N</negated>
2928   - <leftvalue/>
2929   - <function>&#x3d;</function>
2930   - <rightvalue/>
2931   - </condition>
2932   - </compare>
2933   - <cluster_schema/>
2934   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2935   - <xloc>310</xloc>
2936   - <yloc>133</yloc>
2937   - <draw>Y</draw>
2938   - </GUI>
2939   - </step>
2940   -
2941   - <step>
2942   - <name>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;&#xff08;&#x53d1;&#x8f66;&#x65f6;&#x95f4;&#x4e3a;&#x7a7a;&#xff09;</name>
2943   - <type>FilterRows</type>
2944   - <description/>
2945   - <distribute>Y</distribute>
2946   - <custom_distribution/>
2947   - <copies>1</copies>
2948   - <partitioning>
2949   - <method>none</method>
2950   - <schema_name/>
2951   - </partitioning>
2952   -<send_true_to/>
2953   -<send_false_to/>
2954   - <compare>
2955   -<condition>
2956   - <negated>N</negated>
2957   - <leftvalue>sendtime</leftvalue>
2958   - <function>IS NOT NULL</function>
2959   - <rightvalue/>
2960   - </condition>
2961   - </compare>
2962   - <cluster_schema/>
2963   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2964   - <xloc>571</xloc>
2965   - <yloc>44</yloc>
2966   - <draw>Y</draw>
2967   - </GUI>
2968   - </step>
2969   -
2970   - <step>
2971   - <name>&#x8fdb;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x8d77;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</name>
2972   - <type>ScriptValueMod</type>
2973   - <description/>
2974   - <distribute>Y</distribute>
2975   - <custom_distribution/>
2976   - <copies>1</copies>
2977   - <partitioning>
2978   - <method>none</method>
2979   - <schema_name/>
2980   - </partitioning>
2981   - <compatible>N</compatible>
2982   - <optimizationLevel>9</optimizationLevel>
2983   - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
2984   - <jsScript_name>Script 1</jsScript_name>
2985   - <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;&#x2f;&#x2f; &#x6dfb;&#x52a0;&#x7ad9;&#x70b9;&#x6807;&#x8bc6;&#xa;var cc_groups &#x3d; qdzgroups.split&#x28;&#x22;,&#x22;&#x29;&#x3b; &#x2f;&#x2f; &#x6240;&#x6709;&#x73ed;&#x6b21;&#x8d77;&#x70b9;&#x7ad9;&#x6570;&#x7ec4;&#xa;var qdzname_calcu &#x3d; cc_groups&#x5b;gno - 2&#x5d;&#x3b; &#x2f;&#x2f; &#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x7684;&#x8d77;&#x70b9;&#x7ad9;&#x662f;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ec8;&#x70b9;&#x7ad9;&#xff0c;&#x8fd9;&#x91cc;&#x53ea;&#x6709;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x8d77;&#x70b9;&#x7ad9;&#xff0c;&#x8fd8;&#x9700;&#x8981;&#x8ba1;&#x7b97;&#xa;var startZdtype_calcu &#x3d; &#x27;B&#x27;&#x3b;&#xa;var endZdtype_calcu &#x3d; &#x27;E&#x27;&#x3b;&#xa;&#xa;var destory &#x3d; 0&#x3b; &#x2f;&#x2f; &#x672a;&#x64a4;&#x9500;flag</jsScript_script>
2986   - </jsScript> </jsScripts> <fields> <field> <name>qdzname_calcu</name>
2987   - <rename>qdzname_calcu</rename>
2988   - <type>String</type>
2989   - <length>-1</length>
2990   - <precision>-1</precision>
2991   - <replace>N</replace>
2992   - </field> <field> <name>startZdtype_calcu</name>
2993   - <rename>startZdtype_calcu</rename>
2994   - <type>String</type>
2995   - <length>-1</length>
2996   - <precision>-1</precision>
2997   - <replace>N</replace>
2998   - </field> <field> <name>endZdtype_calcu</name>
2999   - <rename>endZdtype_calcu</rename>
3000   - <type>String</type>
3001   - <length>-1</length>
3002   - <precision>-1</precision>
3003   - <replace>N</replace>
3004   - </field> <field> <name>destory</name>
3005   - <rename>destory</rename>
3006   - <type>Integer</type>
3007   - <length>-1</length>
3008   - <precision>-1</precision>
3009   - <replace>N</replace>
3010   - </field> </fields> <cluster_schema/>
3011   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
3012   - <xloc>754</xloc>
3013   - <yloc>610</yloc>
3014   - <draw>Y</draw>
3015   - </GUI>
3016   - </step>
3017   -
3018   - <step>
3019   - <name>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</name>
3020   - <type>Dummy</type>
3021   - <description/>
3022   - <distribute>Y</distribute>
3023   - <custom_distribution/>
3024   - <copies>1</copies>
3025   - <partitioning>
3026   - <method>none</method>
3027   - <schema_name/>
3028   - </partitioning>
3029   - <cluster_schema/>
3030   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
3031   - <xloc>997</xloc>
3032   - <yloc>606</yloc>
3033   - <draw>Y</draw>
3034   - </GUI>
3035   - </step>
3036   -
3037   - <step_error_handling>
3038   - <error>
3039   - <source_step>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail</source_step>
3040   - <target_step/>
3041   - <is_enabled>Y</is_enabled>
3042   - <nr_valuename>c1</nr_valuename>
3043   - <descriptions_valuename>c2</descriptions_valuename>
3044   - <fields_valuename>c3</fields_valuename>
3045   - <codes_valuename>c4</codes_valuename>
3046   - <max_errors/>
3047   - <max_pct_errors/>
3048   - <min_pct_rows/>
3049   - </error>
3050   - </step_error_handling>
3051   - <slave-step-copy-partition-distribution>
3052   -</slave-step-copy-partition-distribution>
3053   - <slave_transformation>N</slave_transformation>
3054   -
3055   -</transformation>
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<transformation>
  3 + <info>
  4 + <name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x5bfc;&#x5165;</name>
  5 + <description>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;&#x5bfc;&#x5165;</description>
  6 + <extended_description>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;</extended_description>
  7 + <trans_version/>
  8 + <trans_type>Normal</trans_type>
  9 + <trans_status>0</trans_status>
  10 + <directory>&#x2f;</directory>
  11 + <parameters>
  12 + </parameters>
  13 + <log>
  14 +<trans-log-table><connection/>
  15 +<schema/>
  16 +<table/>
  17 +<size_limit_lines/>
  18 +<interval/>
  19 +<timeout_days/>
  20 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STATUS</id><enabled>Y</enabled><name>STATUS</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name><subject/></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name><subject/></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name><subject/></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name><subject/></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name><subject/></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name><subject/></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>STARTDATE</id><enabled>Y</enabled><name>STARTDATE</name></field><field><id>ENDDATE</id><enabled>Y</enabled><name>ENDDATE</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>DEPDATE</id><enabled>Y</enabled><name>DEPDATE</name></field><field><id>REPLAYDATE</id><enabled>Y</enabled><name>REPLAYDATE</name></field><field><id>LOG_FIELD</id><enabled>Y</enabled><name>LOG_FIELD</name></field><field><id>EXECUTING_SERVER</id><enabled>N</enabled><name>EXECUTING_SERVER</name></field><field><id>EXECUTING_USER</id><enabled>N</enabled><name>EXECUTING_USER</name></field><field><id>CLIENT</id><enabled>N</enabled><name>CLIENT</name></field></trans-log-table>
  21 +<perf-log-table><connection/>
  22 +<schema/>
  23 +<table/>
  24 +<interval/>
  25 +<timeout_days/>
  26 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>SEQ_NR</id><enabled>Y</enabled><name>SEQ_NR</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>INPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>INPUT_BUFFER_ROWS</name></field><field><id>OUTPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>OUTPUT_BUFFER_ROWS</name></field></perf-log-table>
  27 +<channel-log-table><connection/>
  28 +<schema/>
  29 +<table/>
  30 +<timeout_days/>
  31 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>LOGGING_OBJECT_TYPE</id><enabled>Y</enabled><name>LOGGING_OBJECT_TYPE</name></field><field><id>OBJECT_NAME</id><enabled>Y</enabled><name>OBJECT_NAME</name></field><field><id>OBJECT_COPY</id><enabled>Y</enabled><name>OBJECT_COPY</name></field><field><id>REPOSITORY_DIRECTORY</id><enabled>Y</enabled><name>REPOSITORY_DIRECTORY</name></field><field><id>FILENAME</id><enabled>Y</enabled><name>FILENAME</name></field><field><id>OBJECT_ID</id><enabled>Y</enabled><name>OBJECT_ID</name></field><field><id>OBJECT_REVISION</id><enabled>Y</enabled><name>OBJECT_REVISION</name></field><field><id>PARENT_CHANNEL_ID</id><enabled>Y</enabled><name>PARENT_CHANNEL_ID</name></field><field><id>ROOT_CHANNEL_ID</id><enabled>Y</enabled><name>ROOT_CHANNEL_ID</name></field></channel-log-table>
  32 +<step-log-table><connection/>
  33 +<schema/>
  34 +<table/>
  35 +<timeout_days/>
  36 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>LOG_FIELD</id><enabled>N</enabled><name>LOG_FIELD</name></field></step-log-table>
  37 +<metrics-log-table><connection/>
  38 +<schema/>
  39 +<table/>
  40 +<timeout_days/>
  41 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>METRICS_DATE</id><enabled>Y</enabled><name>METRICS_DATE</name></field><field><id>METRICS_CODE</id><enabled>Y</enabled><name>METRICS_CODE</name></field><field><id>METRICS_DESCRIPTION</id><enabled>Y</enabled><name>METRICS_DESCRIPTION</name></field><field><id>METRICS_SUBJECT</id><enabled>Y</enabled><name>METRICS_SUBJECT</name></field><field><id>METRICS_TYPE</id><enabled>Y</enabled><name>METRICS_TYPE</name></field><field><id>METRICS_VALUE</id><enabled>Y</enabled><name>METRICS_VALUE</name></field></metrics-log-table>
  42 + </log>
  43 + <maxdate>
  44 + <connection/>
  45 + <table/>
  46 + <field/>
  47 + <offset>0.0</offset>
  48 + <maxdiff>0.0</maxdiff>
  49 + </maxdate>
  50 + <size_rowset>10000</size_rowset>
  51 + <sleep_time_empty>50</sleep_time_empty>
  52 + <sleep_time_full>50</sleep_time_full>
  53 + <unique_connections>N</unique_connections>
  54 + <feedback_shown>Y</feedback_shown>
  55 + <feedback_size>50000</feedback_size>
  56 + <using_thread_priorities>Y</using_thread_priorities>
  57 + <shared_objects_file/>
  58 + <capture_step_performance>N</capture_step_performance>
  59 + <step_performance_capturing_delay>1000</step_performance_capturing_delay>
  60 + <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit>
  61 + <dependencies>
  62 + </dependencies>
  63 + <partitionschemas>
  64 + </partitionschemas>
  65 + <slaveservers>
  66 + </slaveservers>
  67 + <clusterschemas>
  68 + </clusterschemas>
  69 + <created_user>-</created_user>
  70 + <created_date>2016&#x2f;06&#x2f;30 12&#x3a;21&#x3a;57.536</created_date>
  71 + <modified_user>-</modified_user>
  72 + <modified_date>2016&#x2f;06&#x2f;30 12&#x3a;21&#x3a;57.536</modified_date>
  73 + <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA&#x3d;</key_for_session_key>
  74 + <is_key_private>N</is_key_private>
  75 + </info>
  76 + <notepads>
  77 + <notepad>
  78 + <note>&#x5b57;&#x5178;&#x8868;&#x5bf9;&#x5e94;&#xff08;&#x4ee5;&#x540e;&#x76f4;&#x63a5;&#x67e5;&#x627e;&#x8868; bsth_c_sys_dictionary&#xff09;&#xa;&#x7c7b;&#x578b; &#x4ee3;&#x7801; &#x540d;&#x79f0;&#xa;LineTrend 0 &#x4e0a;&#x884c;&#xa;LineTrend 1 &#x4e0b;&#x884c;&#xa;ScheduleType normal &#x6b63;&#x5e38;&#x73ed;&#x6b21;&#xa;ScheduleType out &#x51fa;&#x573a;&#xa;ScheduleType in &#x8fdb;&#x573a;&#xa;ScheduleType temp &#x4e34;&#x52a0;&#xa;ScheduleType region &#x533a;&#x95f4;&#xa;ScheduleType venting &#x653e;&#x7a7a;&#xa;ScheduleType major &#x653e;&#x5927;&#x7ad9;</note>
  79 + <xloc>606</xloc>
  80 + <yloc>129</yloc>
  81 + <width>332</width>
  82 + <heigth>186</heigth>
  83 + <fontname>YaHei Consolas Hybrid</fontname>
  84 + <fontsize>12</fontsize>
  85 + <fontbold>N</fontbold>
  86 + <fontitalic>N</fontitalic>
  87 + <fontcolorred>0</fontcolorred>
  88 + <fontcolorgreen>0</fontcolorgreen>
  89 + <fontcolorblue>0</fontcolorblue>
  90 + <backgroundcolorred>255</backgroundcolorred>
  91 + <backgroundcolorgreen>205</backgroundcolorgreen>
  92 + <backgroundcolorblue>112</backgroundcolorblue>
  93 + <bordercolorred>100</bordercolorred>
  94 + <bordercolorgreen>100</bordercolorgreen>
  95 + <bordercolorblue>100</bordercolorblue>
  96 + <drawshadow>Y</drawshadow>
  97 + </notepad>
  98 + <notepad>
  99 + <note>&#x56e0;&#x4e3a;&#x65f6;&#x523b;&#x8868;&#x8f93;&#x5165;&#x683c;&#x5f0f;&#x4e0d;&#x786e;&#x5b9a;&#x6027;&#xff0c;&#x4e3b;&#x8981;&#x56e0;&#x4e3a;&#x8868;&#x7ed3;&#x6784;&#x662f;&#x53cd;&#x8303;&#x5f0f;&#x5316;&#x7684;&#xff0c;&#xa;&#x6240;&#x4ee5;&#x9700;&#x8981;&#x5916;&#x90e8;&#x52a8;&#x6001;&#x6307;&#x5b9a;&#x613f;&#x6570;&#x636e;&#xff0c;&#x5934;&#x4e09;&#x4e2a;step&#x52a8;&#x6001;&#x6307;&#x5b9a;&#x613f;&#x6570;&#x636e;&#xa;&#xa;</note>
  100 + <xloc>79</xloc>
  101 + <yloc>206</yloc>
  102 + <width>346</width>
  103 + <heigth>74</heigth>
  104 + <fontname>YaHei Consolas Hybrid</fontname>
  105 + <fontsize>12</fontsize>
  106 + <fontbold>N</fontbold>
  107 + <fontitalic>N</fontitalic>
  108 + <fontcolorred>0</fontcolorred>
  109 + <fontcolorgreen>0</fontcolorgreen>
  110 + <fontcolorblue>0</fontcolorblue>
  111 + <backgroundcolorred>255</backgroundcolorred>
  112 + <backgroundcolorgreen>205</backgroundcolorgreen>
  113 + <backgroundcolorblue>112</backgroundcolorblue>
  114 + <bordercolorred>100</bordercolorred>
  115 + <bordercolorgreen>100</bordercolorgreen>
  116 + <bordercolorblue>100</bordercolorblue>
  117 + <drawshadow>Y</drawshadow>
  118 + </notepad>
  119 + <notepad>
  120 + <note>&#x8fd9;&#x91cc;&#x6709;&#x4e9b;&#x95ee;&#x9898;&#xa;&#x5728;window2012&#x7684;&#x73af;&#x5883;&#x4e0b;&#xff0c;&#xa;MySql&#x6570;&#x636e;&#x5e93;&#x67e5;&#x8be2;&#x4e2d;&#x5982;&#x679c;&#x8fd4;&#x56de;&#x4e2d;&#x6587;&#x5185;&#x5bb9;&#x7684;&#x5b57;&#x6bb5;&#xff0c;&#x8fd9;&#x4e2a;&#x5185;&#x5bb9;&#x4e71;&#x7801;&#xa;&#x89e3;&#x51b3;&#x529e;&#x6cd5;&#xff0c;&#x5c31;&#x662f;&#x6570;&#x636e;&#x5e93;&#x67e5;&#x8be2;&#x5168;&#x90e8;&#x7f13;&#x5b58;&#xff0c;&#x5c31;&#x4e0d;&#x4e71;&#x7801;&#xa;linux&#x73af;&#x5883;&#x4e0b;&#x6ca1;&#x95ee;&#x9898;</note>
  121 + <xloc>721</xloc>
  122 + <yloc>762</yloc>
  123 + <width>333</width>
  124 + <heigth>90</heigth>
  125 + <fontname>YaHei Consolas Hybrid</fontname>
  126 + <fontsize>12</fontsize>
  127 + <fontbold>N</fontbold>
  128 + <fontitalic>N</fontitalic>
  129 + <fontcolorred>0</fontcolorred>
  130 + <fontcolorgreen>0</fontcolorgreen>
  131 + <fontcolorblue>0</fontcolorblue>
  132 + <backgroundcolorred>255</backgroundcolorred>
  133 + <backgroundcolorgreen>205</backgroundcolorgreen>
  134 + <backgroundcolorblue>112</backgroundcolorblue>
  135 + <bordercolorred>100</bordercolorred>
  136 + <bordercolorgreen>100</bordercolorgreen>
  137 + <bordercolorblue>100</bordercolorblue>
  138 + <drawshadow>Y</drawshadow>
  139 + </notepad>
  140 + <notepad>
  141 + <note>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#xff0c;&#x65b9;&#x5411;&#x6709;&#x65f6;&#x786e;&#x5b9a;&#x4e0d;&#x51c6;&#xff0c;&#xa;&#x7a7a;&#x7684;&#x60c5;&#x51b5;&#x4e0b;&#x8bbe;&#x5b9a;&#x4e3a;0&#xff08;&#x4e0a;&#x884c;&#xff09;</note>
  142 + <xloc>120</xloc>
  143 + <yloc>1016</yloc>
  144 + <width>178</width>
  145 + <heigth>42</heigth>
  146 + <fontname>YaHei Consolas Hybrid</fontname>
  147 + <fontsize>12</fontsize>
  148 + <fontbold>N</fontbold>
  149 + <fontitalic>N</fontitalic>
  150 + <fontcolorred>0</fontcolorred>
  151 + <fontcolorgreen>0</fontcolorgreen>
  152 + <fontcolorblue>0</fontcolorblue>
  153 + <backgroundcolorred>255</backgroundcolorred>
  154 + <backgroundcolorgreen>205</backgroundcolorgreen>
  155 + <backgroundcolorblue>112</backgroundcolorblue>
  156 + <bordercolorred>100</bordercolorred>
  157 + <bordercolorgreen>100</bordercolorgreen>
  158 + <bordercolorblue>100</bordercolorblue>
  159 + <drawshadow>Y</drawshadow>
  160 + </notepad>
  161 + <notepad>
  162 + <note>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#xff0c;&#x65b9;&#x5411;&#x6709;&#x65f6;&#x786e;&#x5b9a;&#x4e0d;&#x51c6;&#xff0c;&#xa;&#x7a7a;&#x7684;&#x60c5;&#x51b5;&#x4e0b;&#x8bbe;&#x5b9a;&#x4e3a;0&#xff08;&#x4e0a;&#x884c;&#xff09;</note>
  163 + <xloc>578</xloc>
  164 + <yloc>1084</yloc>
  165 + <width>178</width>
  166 + <heigth>42</heigth>
  167 + <fontname>YaHei Consolas Hybrid</fontname>
  168 + <fontsize>12</fontsize>
  169 + <fontbold>N</fontbold>
  170 + <fontitalic>N</fontitalic>
  171 + <fontcolorred>0</fontcolorred>
  172 + <fontcolorgreen>0</fontcolorgreen>
  173 + <fontcolorblue>0</fontcolorblue>
  174 + <backgroundcolorred>255</backgroundcolorred>
  175 + <backgroundcolorgreen>205</backgroundcolorgreen>
  176 + <backgroundcolorblue>112</backgroundcolorblue>
  177 + <bordercolorred>100</bordercolorred>
  178 + <bordercolorgreen>100</bordercolorgreen>
  179 + <bordercolorblue>100</bordercolorblue>
  180 + <drawshadow>Y</drawshadow>
  181 + </notepad>
  182 + </notepads>
  183 + <connection>
  184 + <name>192.168.168.1_jwgl_dw</name>
  185 + <server>192.168.168.1</server>
  186 + <type>ORACLE</type>
  187 + <access>Native</access>
  188 + <database>orcl</database>
  189 + <port>1521</port>
  190 + <username>jwgl_dw</username>
  191 + <password>Encrypted 2be98afc86aa7f2e4cb13b977d2adabcd</password>
  192 + <servername/>
  193 + <data_tablespace/>
  194 + <index_tablespace/>
  195 + <attributes>
  196 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  197 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  198 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  199 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  200 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  201 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  202 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  203 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  204 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  205 + </attributes>
  206 + </connection>
  207 + <connection>
  208 + <name>bus_control_variable</name>
  209 + <server>&#x24;&#x7b;v_db_ip&#x7d;</server>
  210 + <type>MYSQL</type>
  211 + <access>Native</access>
  212 + <database>&#x24;&#x7b;v_db_dname&#x7d;</database>
  213 + <port>3306</port>
  214 + <username>&#x24;&#x7b;v_db_uname&#x7d;</username>
  215 + <password>&#x24;&#x7b;v_db_pwd&#x7d;</password>
  216 + <servername/>
  217 + <data_tablespace/>
  218 + <index_tablespace/>
  219 + <attributes>
  220 + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
  221 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  222 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  223 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  224 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  225 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  226 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  227 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  228 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  229 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  230 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  231 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  232 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  233 + </attributes>
  234 + </connection>
  235 + <connection>
  236 + <name>bus_control_&#x516c;&#x53f8;_201</name>
  237 + <server>localhost</server>
  238 + <type>MYSQL</type>
  239 + <access>Native</access>
  240 + <database>control</database>
  241 + <port>3306</port>
  242 + <username>root</username>
  243 + <password>Encrypted </password>
  244 + <servername/>
  245 + <data_tablespace/>
  246 + <index_tablespace/>
  247 + <attributes>
  248 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  249 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  250 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  251 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  252 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  253 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  254 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  255 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  256 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  257 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  258 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  259 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  260 + </attributes>
  261 + </connection>
  262 + <connection>
  263 + <name>bus_control_&#x672c;&#x673a;</name>
  264 + <server>localhost</server>
  265 + <type>MYSQL</type>
  266 + <access>Native</access>
  267 + <database>control</database>
  268 + <port>3306</port>
  269 + <username>root</username>
  270 + <password>Encrypted </password>
  271 + <servername/>
  272 + <data_tablespace/>
  273 + <index_tablespace/>
  274 + <attributes>
  275 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  276 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  277 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  278 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  279 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  280 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  281 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  282 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  283 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  284 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  285 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  286 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  287 + </attributes>
  288 + </connection>
  289 + <connection>
  290 + <name>xlab_mysql_youle</name>
  291 + <server>101.231.124.8</server>
  292 + <type>MYSQL</type>
  293 + <access>Native</access>
  294 + <database>xlab_youle</database>
  295 + <port>45687</port>
  296 + <username>xlab-youle</username>
  297 + <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password>
  298 + <servername/>
  299 + <data_tablespace/>
  300 + <index_tablespace/>
  301 + <attributes>
  302 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  303 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  304 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  305 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  306 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  307 + <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute>
  308 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  309 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  310 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  311 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  312 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  313 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  314 + </attributes>
  315 + </connection>
  316 + <connection>
  317 + <name>xlab_mysql_youle&#xff08;&#x672c;&#x673a;&#xff09;</name>
  318 + <server>localhost</server>
  319 + <type>MYSQL</type>
  320 + <access>Native</access>
  321 + <database>xlab_youle</database>
  322 + <port>3306</port>
  323 + <username>root</username>
  324 + <password>Encrypted </password>
  325 + <servername/>
  326 + <data_tablespace/>
  327 + <index_tablespace/>
  328 + <attributes>
  329 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  330 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  331 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  332 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  333 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  334 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  335 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  336 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  337 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  338 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  339 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  340 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  341 + </attributes>
  342 + </connection>
  343 + <connection>
  344 + <name>xlab_youle</name>
  345 + <server/>
  346 + <type>MYSQL</type>
  347 + <access>JNDI</access>
  348 + <database>xlab_youle</database>
  349 + <port>1521</port>
  350 + <username/>
  351 + <password>Encrypted </password>
  352 + <servername/>
  353 + <data_tablespace/>
  354 + <index_tablespace/>
  355 + <attributes>
  356 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  357 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  358 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  359 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  360 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  361 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  362 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  363 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  364 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  365 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  366 + </attributes>
  367 + </connection>
  368 + <order>
  369 + <hop> <from>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</from><to>&#x73ed;&#x6b21;&#x6570;&#x636e;&#x8303;&#x5f0f;&#x5316;</to><enabled>Y</enabled> </hop>
  370 + <hop> <from>&#x6dfb;&#x52a0;&#x53d1;&#x8f66;&#x987a;&#x5e8f;&#x53f7;</from><to>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;&#xff08;&#x53d1;&#x8f66;&#x65f6;&#x95f4;&#x4e3a;&#x7a7a;&#xff09;</to><enabled>Y</enabled> </hop>
  371 + <hop> <from>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;&#xff08;&#x53d1;&#x8f66;&#x65f6;&#x95f4;&#x4e3a;&#x7a7a;&#xff09;</from><to>&#x6dfb;&#x52a0;&#x5bf9;&#x5e94;&#x73ed;&#x6b21;&#x6570;</to><enabled>Y</enabled> </hop>
  372 + <hop> <from>&#x6dfb;&#x52a0;&#x5bf9;&#x5e94;&#x73ed;&#x6b21;&#x6570;</from><to>&#x5904;&#x7406;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
  373 + <hop> <from>&#x5904;&#x7406;&#x6570;&#x636e;</from><to>&#x5206;&#x7ec4;&#x5404;&#x4e2a;&#x8def;&#x724c;&#x7684;&#x7ad9;</to><enabled>Y</enabled> </hop>
  374 + <hop> <from>&#x67e5;&#x627e;&#x65f6;&#x523b;&#x8868;&#x57fa;&#x7840;&#x4fe1;&#x606f;&#x5173;&#x8054;</from><to>&#x67e5;&#x627e;&#x8def;&#x724c;&#x5173;&#x8054;</to><enabled>Y</enabled> </hop>
  375 + <hop> <from>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x5173;&#x8054;</from><to>&#x67e5;&#x627e;&#x65f6;&#x523b;&#x8868;&#x57fa;&#x7840;&#x4fe1;&#x606f;&#x5173;&#x8054;</to><enabled>Y</enabled> </hop>
  376 + <hop> <from>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178;</from><to>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178;</to><enabled>Y</enabled> </hop>
  377 + <hop> <from>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 2</from><to>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 2</to><enabled>Y</enabled> </hop>
  378 + <hop> <from>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 3</from><to>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 3</to><enabled>Y</enabled> </hop>
  379 + <hop> <from>&#x5339;&#x914d;&#x4e0a;&#x4e0b;&#x884c;&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</from><to>&#x7c7b;&#x578b;&#x4fee;&#x6b63;</to><enabled>Y</enabled> </hop>
  380 + <hop> <from>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;1</from><to>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</to><enabled>Y</enabled> </hop>
  381 + <hop> <from>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;1</from><to>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
  382 + <hop> <from>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</from><to>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
  383 + <hop> <from>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</from><to>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
  384 + <hop> <from>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x6240;&#x6709;&#x4e0a;&#x4e0b;&#x884c;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</from><to>&#x5339;&#x914d;&#x4e0a;&#x4e0b;&#x884c;&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>
  385 + <hop> <from>&#x67e5;&#x627e;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;</from><to>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178;</to><enabled>Y</enabled> </hop>
  386 + <hop> <from>&#x67e5;&#x627e;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</from><to>&#x67e5;&#x627e;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;</to><enabled>Y</enabled> </hop>
  387 + <hop> <from>&#x6b63;&#x5e38;&#x73ed;&#x6b21;_&#x5904;&#x7406;&#x6570;&#x636e;</from><to>&#x67e5;&#x627e;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</to><enabled>Y</enabled> </hop>
  388 + <hop> <from>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</from><to>&#x6b63;&#x5e38;&#x73ed;&#x6b21;_&#x5904;&#x7406;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
  389 + <hop> <from>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178;</from><to>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x6240;&#x6709;&#x4e0a;&#x4e0b;&#x884c;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>
  390 + <hop> <from>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 2</from><to>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x51fa;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>
  391 + <hop> <from>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 3</from><to>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x8fdb;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>
  392 + <hop> <from>&#x67e5;&#x627e;&#x8def;&#x724c;&#x5173;&#x8054;</from><to>&#x8ba1;&#x7b97;&#x73ed;&#x6b21;&#x7c7b;&#x578b;</to><enabled>Y</enabled> </hop>
  393 + <hop> <from>&#x8ba1;&#x7b97;&#x73ed;&#x6b21;&#x7c7b;&#x578b;</from><to>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;1</to><enabled>Y</enabled> </hop>
  394 + <hop> <from>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</from><to>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;1</to><enabled>Y</enabled> </hop>
  395 + <hop> <from>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;1</from><to>&#x51fa;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x7ec8;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</to><enabled>Y</enabled> </hop>
  396 + <hop> <from>&#x51fa;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x7ec8;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</from><to>&#x67e5;&#x627e;&#x51fa;&#x573a;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</to><enabled>Y</enabled> </hop>
  397 + <hop> <from>&#x67e5;&#x627e;&#x51fa;&#x573a;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</from><to>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 2</to><enabled>Y</enabled> </hop>
  398 + <hop> <from>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</from><to>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;2</to><enabled>Y</enabled> </hop>
  399 + <hop> <from>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;2</from><to>&#x8fdb;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x8d77;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</to><enabled>Y</enabled> </hop>
  400 + <hop> <from>&#x8fdb;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x8d77;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</from><to>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ebf;&#x8def;&#x65b9;&#x5411;</to><enabled>Y</enabled> </hop>
  401 + <hop> <from>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ebf;&#x8def;&#x65b9;&#x5411;</from><to>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ec8;&#x70b9;&#x7ad9;&#xff0c;&#x5e76;&#x4f5c;&#x4e3a;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x7684;&#x8d77;&#x70b9;&#x7ad9;</to><enabled>Y</enabled> </hop>
  402 + <hop> <from>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</from><to>&#x6dfb;&#x52a0;&#x53d1;&#x8f66;&#x987a;&#x5e8f;&#x53f7;</to><enabled>Y</enabled> </hop>
  403 + <hop> <from>&#x5206;&#x7ec4;&#x5404;&#x4e2a;&#x8def;&#x724c;&#x7684;&#x7ad9;</from><to>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x5173;&#x8054;</to><enabled>Y</enabled> </hop>
  404 + <hop> <from>&#x589e;&#x52a0;&#x65f6;&#x523b;&#x8868;&#x540d;&#x5b57;&#xff0c;&#x7ebf;&#x8def;&#x540d;&#x5b57;&#xff0c;&#x505c;&#x8f66;&#x573a;&#x540d;&#x5b57;</from><to>&#x8bb0;&#x5f55;&#x5173;&#x8054; &#x28;&#x7b1b;&#x5361;&#x5c14;&#x8f93;&#x51fa;&#x29;</to><enabled>Y</enabled> </hop>
  405 + <hop> <from>&#x73ed;&#x6b21;&#x6570;&#x636e;&#x8303;&#x5f0f;&#x5316;</from><to>&#x8bb0;&#x5f55;&#x5173;&#x8054; &#x28;&#x7b1b;&#x5361;&#x5c14;&#x8f93;&#x51fa;&#x29;</to><enabled>Y</enabled> </hop>
  406 + <hop> <from>&#x8bb0;&#x5f55;&#x5173;&#x8054; &#x28;&#x7b1b;&#x5361;&#x5c14;&#x8f93;&#x51fa;&#x29;</from><to>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</to><enabled>Y</enabled> </hop>
  407 + <hop> <from>&#x7c7b;&#x578b;&#x4fee;&#x6b63;</from><to>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail</to><enabled>Y</enabled> </hop>
  408 + <hop> <from>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ec8;&#x70b9;&#x7ad9;&#xff0c;&#x5e76;&#x4f5c;&#x4e3a;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x7684;&#x8d77;&#x70b9;&#x7ad9;</from><to>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</to><enabled>Y</enabled> </hop>
  409 + <hop> <from>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</from><to>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 3</to><enabled>Y</enabled> </hop>
  410 + <hop> <from>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x51fa;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</from><to>&#x5339;&#x914d;&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>
  411 + <hop> <from>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x8fdb;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</from><to>&#x5339;&#x914d;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>
  412 + <hop> <from>&#x5339;&#x914d;&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</from><to>&#x4e0a;&#x4e0b;&#x884c;NULL&#x5224;&#x5b9a;</to><enabled>Y</enabled> </hop>
  413 + <hop> <from>&#x4e0a;&#x4e0b;&#x884c;NULL&#x5224;&#x5b9a;</from><to>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 2</to><enabled>Y</enabled> </hop>
  414 + <hop> <from>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 2</from><to>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail 2</to><enabled>Y</enabled> </hop>
  415 + <hop> <from>&#x5339;&#x914d;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</from><to>&#x4e0a;&#x4e0b;&#x884c;&#x5224;&#x5b9a; 2</to><enabled>Y</enabled> </hop>
  416 + <hop> <from>&#x4e0a;&#x4e0b;&#x884c;&#x5224;&#x5b9a; 2</from><to>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 3</to><enabled>Y</enabled> </hop>
  417 + <hop> <from>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 3</from><to>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail 3</to><enabled>Y</enabled> </hop>
  418 + </order>
  419 + <step>
  420 + <name>&#x4e0a;&#x4e0b;&#x884c;NULL&#x5224;&#x5b9a;</name>
  421 + <type>IfNull</type>
  422 + <description/>
  423 + <distribute>Y</distribute>
  424 + <custom_distribution/>
  425 + <copies>1</copies>
  426 + <partitioning>
  427 + <method>none</method>
  428 + <schema_name/>
  429 + </partitioning>
  430 + <replaceAllByValue/>
  431 + <replaceAllMask/>
  432 + <selectFields>Y</selectFields>
  433 + <selectValuesType>N</selectValuesType>
  434 + <setEmptyStringAll>N</setEmptyStringAll>
  435 + <valuetypes>
  436 + </valuetypes>
  437 + <fields>
  438 + <field>
  439 + <name>sxx</name>
  440 + <value>0</value>
  441 + <mask/>
  442 + <set_empty_string>N</set_empty_string>
  443 + </field>
  444 + </fields>
  445 + <cluster_schema/>
  446 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  447 + <xloc>230</xloc>
  448 + <yloc>946</yloc>
  449 + <draw>Y</draw>
  450 + </GUI>
  451 + </step>
  452 +
  453 + <step>
  454 + <name>&#x4e0a;&#x4e0b;&#x884c;&#x5224;&#x5b9a; 2</name>
  455 + <type>IfNull</type>
  456 + <description/>
  457 + <distribute>Y</distribute>
  458 + <custom_distribution/>
  459 + <copies>1</copies>
  460 + <partitioning>
  461 + <method>none</method>
  462 + <schema_name/>
  463 + </partitioning>
  464 + <replaceAllByValue/>
  465 + <replaceAllMask/>
  466 + <selectFields>Y</selectFields>
  467 + <selectValuesType>N</selectValuesType>
  468 + <setEmptyStringAll>N</setEmptyStringAll>
  469 + <valuetypes>
  470 + </valuetypes>
  471 + <fields>
  472 + <field>
  473 + <name>sxx2</name>
  474 + <value>0</value>
  475 + <mask/>
  476 + <set_empty_string>N</set_empty_string>
  477 + </field>
  478 + </fields>
  479 + <cluster_schema/>
  480 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  481 + <xloc>804</xloc>
  482 + <yloc>1081</yloc>
  483 + <draw>Y</draw>
  484 + </GUI>
  485 + </step>
  486 +
  487 + <step>
  488 + <name>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178;</name>
  489 + <type>ValueMapper</type>
  490 + <description/>
  491 + <distribute>Y</distribute>
  492 + <custom_distribution/>
  493 + <copies>1</copies>
  494 + <partitioning>
  495 + <method>none</method>
  496 + <schema_name/>
  497 + </partitioning>
  498 + <field_to_use>sxx</field_to_use>
  499 + <target_field>sxx_desc</target_field>
  500 + <non_match_default/>
  501 + <fields>
  502 + <field>
  503 + <source_value>0</source_value>
  504 + <target_value>&#x4e0a;&#x884c;</target_value>
  505 + </field>
  506 + <field>
  507 + <source_value>1</source_value>
  508 + <target_value>&#x4e0b;&#x884c;</target_value>
  509 + </field>
  510 + </fields>
  511 + <cluster_schema/>
  512 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  513 + <xloc>147</xloc>
  514 + <yloc>403</yloc>
  515 + <draw>Y</draw>
  516 + </GUI>
  517 + </step>
  518 +
  519 + <step>
  520 + <name>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 2</name>
  521 + <type>ValueMapper</type>
  522 + <description/>
  523 + <distribute>Y</distribute>
  524 + <custom_distribution/>
  525 + <copies>1</copies>
  526 + <partitioning>
  527 + <method>none</method>
  528 + <schema_name/>
  529 + </partitioning>
  530 + <field_to_use>sxx</field_to_use>
  531 + <target_field>sxx_desc</target_field>
  532 + <non_match_default/>
  533 + <fields>
  534 + <field>
  535 + <source_value>0</source_value>
  536 + <target_value>&#x4e0a;&#x884c;</target_value>
  537 + </field>
  538 + <field>
  539 + <source_value>1</source_value>
  540 + <target_value>&#x4e0b;&#x884c;</target_value>
  541 + </field>
  542 + </fields>
  543 + <cluster_schema/>
  544 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  545 + <xloc>331</xloc>
  546 + <yloc>598</yloc>
  547 + <draw>Y</draw>
  548 + </GUI>
  549 + </step>
  550 +
  551 + <step>
  552 + <name>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 3</name>
  553 + <type>ValueMapper</type>
  554 + <description/>
  555 + <distribute>Y</distribute>
  556 + <custom_distribution/>
  557 + <copies>1</copies>
  558 + <partitioning>
  559 + <method>none</method>
  560 + <schema_name/>
  561 + </partitioning>
  562 + <field_to_use>sxx</field_to_use>
  563 + <target_field>sxx_desc</target_field>
  564 + <non_match_default/>
  565 + <fields>
  566 + <field>
  567 + <source_value>0</source_value>
  568 + <target_value>&#x4e0a;&#x884c;</target_value>
  569 + </field>
  570 + <field>
  571 + <source_value>1</source_value>
  572 + <target_value>&#x4e0b;&#x884c;</target_value>
  573 + </field>
  574 + </fields>
  575 + <cluster_schema/>
  576 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  577 + <xloc>553</xloc>
  578 + <yloc>859</yloc>
  579 + <draw>Y</draw>
  580 + </GUI>
  581 + </step>
  582 +
  583 + <step>
  584 + <name>&#x51fa;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x7ec8;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</name>
  585 + <type>ScriptValueMod</type>
  586 + <description/>
  587 + <distribute>Y</distribute>
  588 + <custom_distribution/>
  589 + <copies>1</copies>
  590 + <partitioning>
  591 + <method>none</method>
  592 + <schema_name/>
  593 + </partitioning>
  594 + <compatible>N</compatible>
  595 + <optimizationLevel>9</optimizationLevel>
  596 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  597 + <jsScript_name>Script 1</jsScript_name>
  598 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;&#x2f;&#x2f; &#x6dfb;&#x52a0;&#x7ad9;&#x70b9;&#x6807;&#x8bc6;&#xa;var cc_groups &#x3d; qdzgroups.split&#x28;&#x22;,&#x22;&#x29;&#x3b; &#x2f;&#x2f; &#x6240;&#x6709;&#x73ed;&#x6b21;&#x8d77;&#x70b9;&#x7ad9;&#x6570;&#x7ec4;&#xa;var zdzname &#x3d; cc_groups&#x5b;gno&#x5d;&#x3b; &#x2f;&#x2f; &#x51fa;&#x573a;&#x73ed;&#x6b21;&#x7684;&#x7ec8;&#x70b9;&#x7ad9;&#x662f;&#x4e0b;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x8d77;&#x59cb;&#x7ad9;&#xa;var endZdtype &#x3d; &#x27;E&#x27;&#x3b;&#xa;&#xa;var destory &#x3d; 0&#x3b; &#x2f;&#x2f; &#x672a;&#x64a4;&#x9500;flag</jsScript_script>
  599 + </jsScript> </jsScripts> <fields> <field> <name>zdzname</name>
  600 + <rename>zdzname</rename>
  601 + <type>String</type>
  602 + <length>-1</length>
  603 + <precision>-1</precision>
  604 + <replace>N</replace>
  605 + </field> <field> <name>endZdtype</name>
  606 + <rename>endZdtype</rename>
  607 + <type>String</type>
  608 + <length>-1</length>
  609 + <precision>-1</precision>
  610 + <replace>N</replace>
  611 + </field> <field> <name>destory</name>
  612 + <rename>destory</rename>
  613 + <type>Integer</type>
  614 + <length>-1</length>
  615 + <precision>-1</precision>
  616 + <replace>N</replace>
  617 + </field> </fields> <cluster_schema/>
  618 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  619 + <xloc>575</xloc>
  620 + <yloc>502</yloc>
  621 + <draw>Y</draw>
  622 + </GUI>
  623 + </step>
  624 +
  625 + <step>
  626 + <name>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</name>
  627 + <type>Dummy</type>
  628 + <description/>
  629 + <distribute>Y</distribute>
  630 + <custom_distribution/>
  631 + <copies>1</copies>
  632 + <partitioning>
  633 + <method>none</method>
  634 + <schema_name/>
  635 + </partitioning>
  636 + <cluster_schema/>
  637 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  638 + <xloc>869</xloc>
  639 + <yloc>504</yloc>
  640 + <draw>Y</draw>
  641 + </GUI>
  642 + </step>
  643 +
  644 + <step>
  645 + <name>&#x5206;&#x7ec4;&#x5404;&#x4e2a;&#x8def;&#x724c;&#x7684;&#x7ad9;</name>
  646 + <type>GroupBy</type>
  647 + <description/>
  648 + <distribute>Y</distribute>
  649 + <custom_distribution/>
  650 + <copies>1</copies>
  651 + <partitioning>
  652 + <method>none</method>
  653 + <schema_name/>
  654 + </partitioning>
  655 + <all_rows>Y</all_rows>
  656 + <ignore_aggregate>N</ignore_aggregate>
  657 + <field_ignore/>
  658 + <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
  659 + <prefix>grp</prefix>
  660 + <add_linenr>Y</add_linenr>
  661 + <linenr_fieldname>gno</linenr_fieldname>
  662 + <give_back_row>N</give_back_row>
  663 + <group>
  664 + <field>
  665 + <name>lp</name>
  666 + </field>
  667 + </group>
  668 + <fields>
  669 + <field>
  670 + <aggregate>qdzgroups</aggregate>
  671 + <subject>qdzname</subject>
  672 + <type>CONCAT_STRING</type>
  673 + <valuefield>,</valuefield>
  674 + </field>
  675 + </fields>
  676 + <cluster_schema/>
  677 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  678 + <xloc>892</xloc>
  679 + <yloc>44</yloc>
  680 + <draw>Y</draw>
  681 + </GUI>
  682 + </step>
  683 +
  684 + <step>
  685 + <name>&#x5339;&#x914d;&#x4e0a;&#x4e0b;&#x884c;&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
  686 + <type>ScriptValueMod</type>
  687 + <description/>
  688 + <distribute>Y</distribute>
  689 + <custom_distribution/>
  690 + <copies>1</copies>
  691 + <partitioning>
  692 + <method>none</method>
  693 + <schema_name/>
  694 + </partitioning>
  695 + <compatible>N</compatible>
  696 + <optimizationLevel>9</optimizationLevel>
  697 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  698 + <jsScript_name>Script 1</jsScript_name>
  699 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var jhlc&#x3b; &#x2f;&#x2f; &#x8ba1;&#x5212;&#x91cc;&#x7a0b;&#xa;var bcsj&#x3b; &#x2f;&#x2f; &#x73ed;&#x6b21;&#x65f6;&#x95f4;&#xa;&#xa;&#x2f;&#x2f; &#x65f6;&#x95f4;&#x8303;&#x56f4;&#x6b63;&#x5219;&#x8868;&#x8fbe;&#x5f0f;&#xa;var timeRex &#x3d; &#x2f;&#x5e;&#x28;&#x5b;01&#x5d;&#x3f;&#x5b;0-9&#x5d;&#x7c;2&#x5b;0-3&#x5d;&#x29;&#x3a;&#x5b;0-5&#x5d;&#x5b;0-9&#x5d;&#x24;&#x2f;&#x3b;&#xa;&#x2f;&#x2f; &#x53d1;&#x8f66;&#x65f6;&#x95f4;&#x8f6c;&#x6362;&#x6210;&#x65e5;&#x671f;&#xa;var fcsj_hour &#x3d; str2num&#x28;sendtime_calcu.substr&#x28;0, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa;var fcsj_min &#x3d; str2num&#x28;sendtime_calcu.substr&#x28;3, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa;var fcsj_date &#x3d; new Date&#x28;2000,1,1,fcsj_hour,fcsj_min,0&#x29;&#x3b;&#xa;&#xa;&#x2f;&#x2f; &#x5224;&#x5b9a;&#x662f;&#x5426;&#x65e9;&#x9ad8;&#x5cf0;&#xa;var isZgf &#x3d; false&#x3b;&#xa;if &#x28;timeRex.test&#x28;early_start_time&#x29; &#x26;&#x26; timeRex.test&#x28;early_end_time&#x29; &#x26;&#x26; early_up_time &#x21;&#x3d; null &#x26;&#x26; early_down_time &#x21;&#x3d; null&#x29; &#x7b;&#xa; var early_s_hour &#x3d; str2num&#x28;early_start_time.substr&#x28;0, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var early_s_min &#x3d; str2num&#x28;early_start_time.substr&#x28;3, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var early_s_date &#x3d; new Date&#x28;2000,1,1,early_s_hour,early_s_min,0&#x29;&#x3b;&#xa;&#xa; var early_e_hour &#x3d; str2num&#x28;early_end_time.substr&#x28;0, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var early_e_min &#x3d; str2num&#x28;early_end_time.substr&#x28;3, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var early_e_date &#x3d; new Date&#x28;2000,1,1,early_e_hour,early_e_min,0&#x29;&#x3b;&#xa;&#xa; if &#x28;fcsj_date &#x3e;&#x3d; early_s_date &#x26;&#x26; fcsj_date &#x3c;&#x3d; early_e_date&#x29; &#x7b;&#xa; isZgf &#x3d; true&#x3b;&#xa; &#x7d;&#xa;&#x7d;&#xa;&#xa;&#x2f;&#x2f; &#x5224;&#x5b9a;&#x662f;&#x5426;&#x665a;&#x9ad8;&#x5cf0;&#xa;var isWgf &#x3d; false&#x3b;&#xa;if &#x28;timeRex.test&#x28;late_start_time&#x29; &#x26;&#x26; timeRex.test&#x28;late_end_time&#x29; &#x26;&#x26; late_up_time &#x21;&#x3d; null &#x26;&#x26; late_down_time &#x21;&#x3d; null&#x29; &#x7b;&#xa; var late_s_hour &#x3d; str2num&#x28;late_start_time.substr&#x28;0, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var late_s_min &#x3d; str2num&#x28;late_start_time.substr&#x28;3, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var late_s_date &#x3d; new Date&#x28;2000,1,1,late_s_hour,late_s_min,0&#x29;&#x3b;&#xa;&#xa; var late_e_hour &#x3d; str2num&#x28;late_end_time.substr&#x28;0, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var late_e_min &#x3d; str2num&#x28;late_end_time.substr&#x28;3, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var late_e_date &#x3d; new Date&#x28;2000,1,1,late_e_hour,late_e_min,0&#x29;&#x3b;&#xa;&#xa; if &#x28;fcsj_date &#x3e;&#x3d; late_s_date &#x26;&#x26; fcsj_date &#x3c;&#x3d; late_e_date&#x29; &#x7b;&#xa; isWgf &#x3d; true&#x3b;&#xa; &#x7d;&#xa;&#x7d;&#xa;&#xa;&#x2f;&#x2f; &#x5224;&#x5b9a;&#x662f;&#x5426;&#x665a;&#x9ad8;&#x5cf0;&#xa;&#xa;if &#x28;sxx &#x3d;&#x3d; 0&#x29; &#x7b; &#x2f;&#x2f; &#x4e0a;&#x884c;&#xa; if &#x28;isZgf&#x29; &#x7b;&#xa; jhlc &#x3d; up_mileage&#x3b;&#xa; bcsj &#x3d; early_up_time &#x21;&#x3d; 0 &#x3f; early_up_time &#x3a; up_travel_time&#x3b;&#xa; &#x7d; else if &#x28;isWgf&#x29; &#x7b;&#xa; jhlc &#x3d; up_mileage&#x3b;&#xa; bcsj &#x3d; late_up_time &#x21;&#x3d; 0 &#x3f; late_up_time &#x3a; up_travel_time&#x3b;&#xa; &#x7d; else &#x7b;&#xa; jhlc &#x3d; up_mileage&#x3b;&#xa; bcsj &#x3d; up_travel_time&#x3b;&#xa; &#x7d;&#xa;&#x7d; else &#x7b; &#x2f;&#x2f; sxx &#x3d;&#x3d; 1 &#x4e0b;&#x884c;&#xa; if &#x28;isZgf&#x29; &#x7b;&#xa; jhlc &#x3d; down_mileage&#x3b;&#xa; bcsj &#x3d; early_down_time &#x21;&#x3d; 0 &#x3f; early_down_time &#x3a; down_travel_time&#x3b;&#xa; &#x7d; else if &#x28;isWgf&#x29; &#x7b;&#xa; jhlc &#x3d; down_mileage&#x3b;&#xa; bcsj &#x3d; late_down_time &#x21;&#x3d; 0 &#x3f; late_down_time &#x3a; down_travel_time&#x3b;&#xa; &#x7d; else &#x7b;&#xa; jhlc &#x3d; down_mileage&#x3b;&#xa; bcsj &#x3d; down_travel_time&#x3b;&#xa; &#x7d;&#xa;&#x7d;&#xa;&#xa;</jsScript_script>
  700 + </jsScript> </jsScripts> <fields> <field> <name>jhlc</name>
  701 + <rename>jhlc</rename>
  702 + <type>String</type>
  703 + <length>-1</length>
  704 + <precision>-1</precision>
  705 + <replace>N</replace>
  706 + </field> <field> <name>bcsj</name>
  707 + <rename>bcsj</rename>
  708 + <type>String</type>
  709 + <length>-1</length>
  710 + <precision>-1</precision>
  711 + <replace>N</replace>
  712 + </field> </fields> <cluster_schema/>
  713 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  714 + <xloc>148</xloc>
  715 + <yloc>674</yloc>
  716 + <draw>Y</draw>
  717 + </GUI>
  718 + </step>
  719 +
  720 + <step>
  721 + <name>&#x5339;&#x914d;&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
  722 + <type>ScriptValueMod</type>
  723 + <description/>
  724 + <distribute>Y</distribute>
  725 + <custom_distribution/>
  726 + <copies>1</copies>
  727 + <partitioning>
  728 + <method>none</method>
  729 + <schema_name/>
  730 + </partitioning>
  731 + <compatible>N</compatible>
  732 + <optimizationLevel>9</optimizationLevel>
  733 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  734 + <jsScript_name>Script 1</jsScript_name>
  735 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var out_mileage&#x3b; &#x2f;&#x2f; &#x51fa;&#x573a;&#x8ba1;&#x5212;&#x91cc;&#x7a0b;&#xa;var out_time&#x3b; &#x2f;&#x2f; &#x51fa;&#x573a;&#x8ba1;&#x5212;&#x65f6;&#x95f4;&#xa;&#xa;if &#x28;sxx &#x3d;&#x3d; 0&#x29; &#x7b; &#x2f;&#x2f; &#x4e0a;&#x884c;&#xa; out_mileage &#x3d; up_out_mileage&#x3b;&#xa; out_time &#x3d; up_out_timer&#x3b;&#xa;&#x7d; else &#x7b; &#x2f;&#x2f; sxx &#x3d;&#x3d; 1 &#x4e0b;&#x884c;&#xa; out_mileage &#x3d; down_out_mileage&#x3b;&#xa; out_time &#x3d; down_out_timer&#x3b;&#xa;&#x7d;&#xa;&#xa;&#xa;&#xa;</jsScript_script>
  736 + </jsScript> </jsScripts> <fields> <field> <name>out_mileage</name>
  737 + <rename>out_mileage</rename>
  738 + <type>String</type>
  739 + <length>-1</length>
  740 + <precision>-1</precision>
  741 + <replace>N</replace>
  742 + </field> <field> <name>out_time</name>
  743 + <rename>out_time</rename>
  744 + <type>String</type>
  745 + <length>-1</length>
  746 + <precision>-1</precision>
  747 + <replace>N</replace>
  748 + </field> </fields> <cluster_schema/>
  749 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  750 + <xloc>336</xloc>
  751 + <yloc>862</yloc>
  752 + <draw>Y</draw>
  753 + </GUI>
  754 + </step>
  755 +
  756 + <step>
  757 + <name>&#x5339;&#x914d;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
  758 + <type>ScriptValueMod</type>
  759 + <description/>
  760 + <distribute>Y</distribute>
  761 + <custom_distribution/>
  762 + <copies>1</copies>
  763 + <partitioning>
  764 + <method>none</method>
  765 + <schema_name/>
  766 + </partitioning>
  767 + <compatible>N</compatible>
  768 + <optimizationLevel>9</optimizationLevel>
  769 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  770 + <jsScript_name>Script 1</jsScript_name>
  771 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var parade_mileage&#x3b; &#x2f;&#x2f; &#x8fdb;&#x573a;&#x8ba1;&#x5212;&#x91cc;&#x7a0b;&#xa;var parade_time&#x3b; &#x2f;&#x2f; &#x8fdb;&#x573a;&#x8ba1;&#x5212;&#x65f6;&#x95f4;&#xa;&#xa;if &#x28;sxx2 &#x3d;&#x3d; 0&#x29; &#x7b; &#x2f;&#x2f; &#x4e0a;&#x884c;&#xa; parade_mileage &#x3d; up_in_mileage&#x3b;&#xa; parade_time &#x3d; up_in_timer&#x3b;&#xa;&#x7d; else &#x7b; &#x2f;&#x2f; sxx &#x3d;&#x3d; 1 &#x4e0b;&#x884c;&#xa; parade_mileage &#x3d; down_in_mileage&#x3b;&#xa; parade_time &#x3d; down_in_timer&#x3b;&#xa;&#x7d;&#xa;&#xa;&#xa;&#xa;</jsScript_script>
  772 + </jsScript> </jsScripts> <fields> <field> <name>parade_mileage</name>
  773 + <rename>parade_mileage</rename>
  774 + <type>String</type>
  775 + <length>-1</length>
  776 + <precision>-1</precision>
  777 + <replace>N</replace>
  778 + </field> <field> <name>parade_time</name>
  779 + <rename>parade_time</rename>
  780 + <type>String</type>
  781 + <length>-1</length>
  782 + <precision>-1</precision>
  783 + <replace>N</replace>
  784 + </field> </fields> <cluster_schema/>
  785 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  786 + <xloc>726</xloc>
  787 + <yloc>1005</yloc>
  788 + <draw>Y</draw>
  789 + </GUI>
  790 + </step>
  791 +
  792 + <step>
  793 + <name>&#x589e;&#x52a0;&#x65f6;&#x523b;&#x8868;&#x540d;&#x5b57;&#xff0c;&#x7ebf;&#x8def;&#x540d;&#x5b57;&#xff0c;&#x505c;&#x8f66;&#x573a;&#x540d;&#x5b57;</name>
  794 + <type>DataGrid</type>
  795 + <description/>
  796 + <distribute>Y</distribute>
  797 + <custom_distribution/>
  798 + <copies>1</copies>
  799 + <partitioning>
  800 + <method>none</method>
  801 + <schema_name/>
  802 + </partitioning>
  803 + <fields>
  804 + </fields>
  805 + <data>
  806 + <line> </line>
  807 + </data>
  808 + <cluster_schema/>
  809 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  810 + <xloc>110</xloc>
  811 + <yloc>133</yloc>
  812 + <draw>Y</draw>
  813 + </GUI>
  814 + </step>
  815 +
  816 + <step>
  817 + <name>&#x5904;&#x7406;&#x6570;&#x636e;</name>
  818 + <type>ScriptValueMod</type>
  819 + <description/>
  820 + <distribute>Y</distribute>
  821 + <custom_distribution/>
  822 + <copies>1</copies>
  823 + <partitioning>
  824 + <method>none</method>
  825 + <schema_name/>
  826 + </partitioning>
  827 + <compatible>N</compatible>
  828 + <optimizationLevel>9</optimizationLevel>
  829 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  830 + <jsScript_name>Script 1</jsScript_name>
  831 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;&#x2f;&#x2f; &#x4f7f;&#x7528;&#x6b63;&#x5219;&#x8868;&#x8fbe;&#x5f0f;&#x53bb;&#x9664;&#x7ad9;&#x70b9;&#x540d;&#x79f0;&#x53f3;&#x4fa7;&#x591a;&#x4f59;&#x7684;&#x6570;&#x5b57;&#xa;qdzname &#x3d; qdzname.replace&#x28;&#x2f;&#x28;&#x5c;d&#x2b;&#x24;&#x29;&#x2f;g,&#x27;&#x27;&#x29;&#x3b;&#xa;if &#x28;qdzname &#x21;&#x3d; &#x22;&#x51fa;&#x573a;&#x22; &#x26;&#x26; qdzname &#x21;&#x3d; &#x22;&#x8fdb;&#x573a;&#x22;&#x29; &#x7b;&#xa; qdzname &#x3d; qdzname &#x2b; &#x22;&#x25;&#x22;&#x3b; &#x2f;&#x2f; &#x6a21;&#x7cca;&#x5339;&#x914d;&#x6807;&#x8bc6;&#x7b26;&#xa;&#x7d;&#xa;&#xa;&#x2f;&#x2f; sendtime&#x5904;&#x7406;&#xff0c;hhmm&#xff0c;hh&#x3a;mm&#xff0c;hh,mm&#xa;var sendtime_calcu&#x3b;&#xa;if &#x28;sendtime.length &#x3d;&#x3d; 5&#x29; &#x7b; &#x2f;&#x2f; &#x6700;&#x957f;&#x683c;&#x5f0f;&#xff0c;&#x5305;&#x62ec;&#x5206;&#x9694;&#x7b26;&#xff0c;&#x7edf;&#x4e00;&#x628a;&#x5206;&#x9694;&#x7b26;&#x66ff;&#x6362;&#x6210;&#x5192;&#x53f7;&#xa; sendtime_calcu &#x3d; sendtime.substr&#x28;0, 2&#x29; &#x2b; &#x22;&#x3a;&#x22; &#x2b; sendtime.substr&#x28;3, 2&#x29;&#x3b;&#xa;&#x7d; else if &#x28;sendtime.length &#x3d;&#x3d; 4&#x29; &#x7b;&#xa; if &#x28;sendtime.indexOf&#x28;&#x22;&#x3a;&#x22;&#x29; &#x3e; 0&#x29; &#x7b; &#x2f;&#x2f; &#x5192;&#x53f7;&#x5206;&#x9694;&#xff0c;&#x65e0;&#x9700;&#x4fee;&#x6539;&#xa; sendtime_calcu &#x3d; sendtime&#x3b;&#xa; &#x7d; else if &#x28;sendtime.indexOf&#x28;&#x22;,&#x22;&#x29; &#x3e; 0&#x29; &#x7b; &#x2f;&#x2f; &#x9017;&#x53f7;&#x5206;&#x9694;&#xff0c;&#x6539;&#x6210;&#x5192;&#x53f7;&#x5206;&#x9694;&#xa; sendtime_calcu &#x3d; sendtime.substr&#x28;0, 1&#x29; &#x2b; &#x22;&#x3a;&#x22; &#x2b; sendtime.substr&#x28;2, 2&#x29;&#x3b;&#xa; &#x7d; else &#x7b; &#x2f;&#x2f; &#x65e0;&#x5206;&#x9694;&#x7b26;&#xff0c;&#x6539;&#x6210;&#x5192;&#x53f7;&#x5206;&#x9694;&#xa; sendtime_calcu &#x3d; sendtime.substr&#x28;0, 2&#x29; &#x2b; &#x22;&#x3a;&#x22; &#x2b; sendtime.substr&#x28;2, 2&#x29;&#x3b;&#xa; &#x7d;&#xa;&#x7d; else if &#x28;sendtime.length &#x3d;&#x3d; 3&#x29; &#x7b; &#x2f;&#x2f; &#x65e0;&#x5206;&#x9694;&#x7b26;&#xff0c;&#x6539;&#x6210;&#x5192;&#x53f7;&#x5206;&#x9694;&#xa; sendtime_calcu &#x3d; sendtime.substr&#x28;0, 1&#x29; &#x2b; &#x22;&#x3a;&#x22; &#x2b; sendtime.substr&#x28;1, 2&#x29;&#x3b;&#xa;&#x7d;&#xa;&#xa;&#x2f;&#x2f; &#x5168;&#x90e8;&#x4fee;&#x6b63;&#x5b8c;&#x6bd5;&#x540e;&#xff0c;&#x5982;&#x679c;&#x957f;&#x5ea6;&#x4e0d;&#x662f;5&#xff0c;&#x524d;&#x9762;&#x8865;0&#xa;if &#x28;sendtime_calcu.length &#x21;&#x3d; 5&#x29; &#x7b;&#xa; sendtime_calcu &#x3d; &#x22;0&#x22; &#x2b; sendtime_calcu&#x3b;&#xa;&#x7d;&#xa;&#xa;&#x2f;&#x2f; &#x8bbe;&#x7f6e;&#x5206;&#x73ed;&#xa;var isfb &#x3d; 0&#x3b;&#xa;&#xa;&#x2f;&#x2f; &#x8bbe;&#x7f6e;&#x505c;&#x9a76;&#xa;var ists &#x3d; 0&#x3b;&#xa;&#xa;&#x2f;&#x2f; &#x8bbe;&#x7f6e;isCanceled&#xa;var iscanceled &#x3d; 0&#x3b;</jsScript_script>
  832 + </jsScript> </jsScripts> <fields> <field> <name>qdzname</name>
  833 + <rename>qdzname</rename>
  834 + <type>String</type>
  835 + <length>-1</length>
  836 + <precision>-1</precision>
  837 + <replace>Y</replace>
  838 + </field> <field> <name>isfb</name>
  839 + <rename>isfb</rename>
  840 + <type>Integer</type>
  841 + <length>-1</length>
  842 + <precision>-1</precision>
  843 + <replace>N</replace>
  844 + </field> <field> <name>iscanceled</name>
  845 + <rename>iscanceled</rename>
  846 + <type>Integer</type>
  847 + <length>-1</length>
  848 + <precision>-1</precision>
  849 + <replace>N</replace>
  850 + </field> <field> <name>sendtime_calcu</name>
  851 + <rename>sendtime_calcu</rename>
  852 + <type>String</type>
  853 + <length>-1</length>
  854 + <precision>-1</precision>
  855 + <replace>N</replace>
  856 + </field> <field> <name>ists</name>
  857 + <rename>ists</rename>
  858 + <type>Integer</type>
  859 + <length>-1</length>
  860 + <precision>-1</precision>
  861 + <replace>N</replace>
  862 + </field> </fields> <cluster_schema/>
  863 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  864 + <xloc>788</xloc>
  865 + <yloc>44</yloc>
  866 + <draw>Y</draw>
  867 + </GUI>
  868 + </step>
  869 +
  870 + <step>
  871 + <name>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</name>
  872 + <type>SelectValues</type>
  873 + <description/>
  874 + <distribute>Y</distribute>
  875 + <custom_distribution/>
  876 + <copies>1</copies>
  877 + <partitioning>
  878 + <method>none</method>
  879 + <schema_name/>
  880 + </partitioning>
  881 + <fields> <field> <name>&#x8def;&#x724c;</name>
  882 + <rename>lp</rename>
  883 + <length>-2</length>
  884 + <precision>-2</precision>
  885 + </field> <field> <name>&#x7ad9;&#x70b9;&#x540d;&#x79f0;</name>
  886 + <rename>qdzname</rename>
  887 + <length>-2</length>
  888 + <precision>-2</precision>
  889 + </field> <field> <name>&#x53d1;&#x8f66;&#x65f6;&#x95f4;</name>
  890 + <rename>sendtime</rename>
  891 + <length>-2</length>
  892 + <precision>-2</precision>
  893 + </field> <select_unspecified>Y</select_unspecified>
  894 + </fields> <cluster_schema/>
  895 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  896 + <xloc>444</xloc>
  897 + <yloc>131</yloc>
  898 + <draw>Y</draw>
  899 + </GUI>
  900 + </step>
  901 +
  902 + <step>
  903 + <name>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;1</name>
  904 + <type>FilterRows</type>
  905 + <description/>
  906 + <distribute>Y</distribute>
  907 + <custom_distribution/>
  908 + <copies>1</copies>
  909 + <partitioning>
  910 + <method>none</method>
  911 + <schema_name/>
  912 + </partitioning>
  913 +<send_true_to>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</send_true_to>
  914 +<send_false_to>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</send_false_to>
  915 + <compare>
  916 +<condition>
  917 + <negated>N</negated>
  918 + <leftvalue>bctype</leftvalue>
  919 + <function>&#x3d;</function>
  920 + <rightvalue/>
  921 + <value><name>constant</name><type>String</type><text>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</text><length>-1</length><precision>-1</precision><isnull>N</isnull><mask/></value> </condition>
  922 + </compare>
  923 + <cluster_schema/>
  924 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  925 + <xloc>860</xloc>
  926 + <yloc>401</yloc>
  927 + <draw>Y</draw>
  928 + </GUI>
  929 + </step>
  930 +
  931 + <step>
  932 + <name>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</name>
  933 + <type>FilterRows</type>
  934 + <description/>
  935 + <distribute>Y</distribute>
  936 + <custom_distribution/>
  937 + <copies>1</copies>
  938 + <partitioning>
  939 + <method>none</method>
  940 + <schema_name/>
  941 + </partitioning>
  942 +<send_true_to>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</send_true_to>
  943 +<send_false_to>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</send_false_to>
  944 + <compare>
  945 +<condition>
  946 + <negated>N</negated>
  947 + <leftvalue>bctype</leftvalue>
  948 + <function>&#x3d;</function>
  949 + <rightvalue/>
  950 + <value><name>constant</name><type>String</type><text>&#x51fa;&#x573a;</text><length>-1</length><precision>-1</precision><isnull>N</isnull><mask/></value> </condition>
  951 + </compare>
  952 + <cluster_schema/>
  953 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  954 + <xloc>995</xloc>
  955 + <yloc>503</yloc>
  956 + <draw>Y</draw>
  957 + </GUI>
  958 + </step>
  959 +
  960 + <step>
  961 + <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail</name>
  962 + <type>InsertUpdate</type>
  963 + <description/>
  964 + <distribute>Y</distribute>
  965 + <custom_distribution/>
  966 + <copies>1</copies>
  967 + <partitioning>
  968 + <method>none</method>
  969 + <schema_name/>
  970 + </partitioning>
  971 + <connection>bus_control_variable</connection>
  972 + <commit>100</commit>
  973 + <update_bypassed>N</update_bypassed>
  974 + <lookup>
  975 + <schema/>
  976 + <table>bsth_c_s_ttinfo_detail</table>
  977 + <key>
  978 + <name>xlid</name>
  979 + <field>xl</field>
  980 + <condition>&#x3d;</condition>
  981 + <name2/>
  982 + </key>
  983 + <key>
  984 + <name>ttid</name>
  985 + <field>ttinfo</field>
  986 + <condition>&#x3d;</condition>
  987 + <name2/>
  988 + </key>
  989 + <key>
  990 + <name>lpid</name>
  991 + <field>lp</field>
  992 + <condition>&#x3d;</condition>
  993 + <name2/>
  994 + </key>
  995 + <key>
  996 + <name>fcno</name>
  997 + <field>fcno</field>
  998 + <condition>&#x3d;</condition>
  999 + <name2/>
  1000 + </key>
  1001 + <key>
  1002 + <name>bcs</name>
  1003 + <field>bcs</field>
  1004 + <condition>&#x3d;</condition>
  1005 + <name2/>
  1006 + </key>
  1007 + <value>
  1008 + <name>lp</name>
  1009 + <rename>lpid</rename>
  1010 + <update>Y</update>
  1011 + </value>
  1012 + <value>
  1013 + <name>bc_type</name>
  1014 + <rename>bctype_code</rename>
  1015 + <update>Y</update>
  1016 + </value>
  1017 + <value>
  1018 + <name>bcs</name>
  1019 + <rename>bcs</rename>
  1020 + <update>Y</update>
  1021 + </value>
  1022 + <value>
  1023 + <name>bcsj</name>
  1024 + <rename>bcsj</rename>
  1025 + <update>Y</update>
  1026 + </value>
  1027 + <value>
  1028 + <name>fcno</name>
  1029 + <rename>fcno</rename>
  1030 + <update>Y</update>
  1031 + </value>
  1032 + <value>
  1033 + <name>jhlc</name>
  1034 + <rename>jhlc</rename>
  1035 + <update>Y</update>
  1036 + </value>
  1037 + <value>
  1038 + <name>fcsj</name>
  1039 + <rename>sendtime_calcu</rename>
  1040 + <update>Y</update>
  1041 + </value>
  1042 + <value>
  1043 + <name>ttinfo</name>
  1044 + <rename>ttid</rename>
  1045 + <update>Y</update>
  1046 + </value>
  1047 + <value>
  1048 + <name>xl</name>
  1049 + <rename>xlid</rename>
  1050 + <update>Y</update>
  1051 + </value>
  1052 + <value>
  1053 + <name>qdz</name>
  1054 + <rename>qdzid</rename>
  1055 + <update>Y</update>
  1056 + </value>
  1057 + <value>
  1058 + <name>zdz</name>
  1059 + <rename>zdzid</rename>
  1060 + <update>Y</update>
  1061 + </value>
  1062 + <value>
  1063 + <name>xl_dir</name>
  1064 + <rename>sxx</rename>
  1065 + <update>Y</update>
  1066 + </value>
  1067 + <value>
  1068 + <name>isfb</name>
  1069 + <rename>isfb</rename>
  1070 + <update>Y</update>
  1071 + </value>
  1072 + <value>
  1073 + <name>qdz_code</name>
  1074 + <rename>qdzcode</rename>
  1075 + <update>Y</update>
  1076 + </value>
  1077 + <value>
  1078 + <name>qdz_name</name>
  1079 + <rename>qdzname_</rename>
  1080 + <update>Y</update>
  1081 + </value>
  1082 + <value>
  1083 + <name>zdz_code</name>
  1084 + <rename>zdzcode</rename>
  1085 + <update>Y</update>
  1086 + </value>
  1087 + <value>
  1088 + <name>zdz_name</name>
  1089 + <rename>zdzname</rename>
  1090 + <update>Y</update>
  1091 + </value>
  1092 + <value>
  1093 + <name>ists</name>
  1094 + <rename>ists</rename>
  1095 + <update>Y</update>
  1096 + </value>
  1097 + </lookup>
  1098 + <cluster_schema/>
  1099 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1100 + <xloc>143</xloc>
  1101 + <yloc>860</yloc>
  1102 + <draw>Y</draw>
  1103 + </GUI>
  1104 + </step>
  1105 +
  1106 + <step>
  1107 + <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail 2</name>
  1108 + <type>InsertUpdate</type>
  1109 + <description/>
  1110 + <distribute>Y</distribute>
  1111 + <custom_distribution/>
  1112 + <copies>1</copies>
  1113 + <partitioning>
  1114 + <method>none</method>
  1115 + <schema_name/>
  1116 + </partitioning>
  1117 + <connection>bus_control_variable</connection>
  1118 + <commit>100</commit>
  1119 + <update_bypassed>N</update_bypassed>
  1120 + <lookup>
  1121 + <schema/>
  1122 + <table>bsth_c_s_ttinfo_detail</table>
  1123 + <key>
  1124 + <name>xlid</name>
  1125 + <field>xl</field>
  1126 + <condition>&#x3d;</condition>
  1127 + <name2/>
  1128 + </key>
  1129 + <key>
  1130 + <name>ttid</name>
  1131 + <field>ttinfo</field>
  1132 + <condition>&#x3d;</condition>
  1133 + <name2/>
  1134 + </key>
  1135 + <key>
  1136 + <name>lpid</name>
  1137 + <field>lp</field>
  1138 + <condition>&#x3d;</condition>
  1139 + <name2/>
  1140 + </key>
  1141 + <key>
  1142 + <name>fcno</name>
  1143 + <field>fcno</field>
  1144 + <condition>&#x3d;</condition>
  1145 + <name2/>
  1146 + </key>
  1147 + <key>
  1148 + <name>bcs</name>
  1149 + <field>bcs</field>
  1150 + <condition>&#x3d;</condition>
  1151 + <name2/>
  1152 + </key>
  1153 + <value>
  1154 + <name>tcc</name>
  1155 + <rename>qdzid</rename>
  1156 + <update>Y</update>
  1157 + </value>
  1158 + <value>
  1159 + <name>zdz</name>
  1160 + <rename>zdzid</rename>
  1161 + <update>Y</update>
  1162 + </value>
  1163 + <value>
  1164 + <name>xl</name>
  1165 + <rename>xlid</rename>
  1166 + <update>Y</update>
  1167 + </value>
  1168 + <value>
  1169 + <name>ttinfo</name>
  1170 + <rename>ttid</rename>
  1171 + <update>Y</update>
  1172 + </value>
  1173 + <value>
  1174 + <name>xl_dir</name>
  1175 + <rename>sxx</rename>
  1176 + <update>Y</update>
  1177 + </value>
  1178 + <value>
  1179 + <name>lp</name>
  1180 + <rename>lpid</rename>
  1181 + <update>Y</update>
  1182 + </value>
  1183 + <value>
  1184 + <name>jhlc</name>
  1185 + <rename>out_mileage</rename>
  1186 + <update>Y</update>
  1187 + </value>
  1188 + <value>
  1189 + <name>fcsj</name>
  1190 + <rename>sendtime_calcu</rename>
  1191 + <update>Y</update>
  1192 + </value>
  1193 + <value>
  1194 + <name>bcsj</name>
  1195 + <rename>out_time</rename>
  1196 + <update>Y</update>
  1197 + </value>
  1198 + <value>
  1199 + <name>bcs</name>
  1200 + <rename>bcs</rename>
  1201 + <update>Y</update>
  1202 + </value>
  1203 + <value>
  1204 + <name>fcno</name>
  1205 + <rename>fcno</rename>
  1206 + <update>Y</update>
  1207 + </value>
  1208 + <value>
  1209 + <name>bc_type</name>
  1210 + <rename>bctype_code</rename>
  1211 + <update>Y</update>
  1212 + </value>
  1213 + <value>
  1214 + <name>isfb</name>
  1215 + <rename>isfb</rename>
  1216 + <update>Y</update>
  1217 + </value>
  1218 + <value>
  1219 + <name>qdz_code</name>
  1220 + <rename>qdzcode</rename>
  1221 + <update>Y</update>
  1222 + </value>
  1223 + <value>
  1224 + <name>qdz_name</name>
  1225 + <rename>tn</rename>
  1226 + <update>Y</update>
  1227 + </value>
  1228 + <value>
  1229 + <name>zdz_code</name>
  1230 + <rename>zdzcode</rename>
  1231 + <update>Y</update>
  1232 + </value>
  1233 + <value>
  1234 + <name>zdz_name</name>
  1235 + <rename>zdzname_</rename>
  1236 + <update>Y</update>
  1237 + </value>
  1238 + <value>
  1239 + <name>ists</name>
  1240 + <rename>ists</rename>
  1241 + <update>Y</update>
  1242 + </value>
  1243 + </lookup>
  1244 + <cluster_schema/>
  1245 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1246 + <xloc>340</xloc>
  1247 + <yloc>1087</yloc>
  1248 + <draw>Y</draw>
  1249 + </GUI>
  1250 + </step>
  1251 +
  1252 + <step>
  1253 + <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail 3</name>
  1254 + <type>InsertUpdate</type>
  1255 + <description/>
  1256 + <distribute>Y</distribute>
  1257 + <custom_distribution/>
  1258 + <copies>1</copies>
  1259 + <partitioning>
  1260 + <method>none</method>
  1261 + <schema_name/>
  1262 + </partitioning>
  1263 + <connection>bus_control_variable</connection>
  1264 + <commit>100</commit>
  1265 + <update_bypassed>N</update_bypassed>
  1266 + <lookup>
  1267 + <schema/>
  1268 + <table>bsth_c_s_ttinfo_detail</table>
  1269 + <key>
  1270 + <name>xlid</name>
  1271 + <field>xl</field>
  1272 + <condition>&#x3d;</condition>
  1273 + <name2/>
  1274 + </key>
  1275 + <key>
  1276 + <name>ttid</name>
  1277 + <field>ttinfo</field>
  1278 + <condition>&#x3d;</condition>
  1279 + <name2/>
  1280 + </key>
  1281 + <key>
  1282 + <name>lpid</name>
  1283 + <field>lp</field>
  1284 + <condition>&#x3d;</condition>
  1285 + <name2/>
  1286 + </key>
  1287 + <key>
  1288 + <name>fcno</name>
  1289 + <field>fcno</field>
  1290 + <condition>&#x3d;</condition>
  1291 + <name2/>
  1292 + </key>
  1293 + <key>
  1294 + <name>bcs</name>
  1295 + <field>bcs</field>
  1296 + <condition>&#x3d;</condition>
  1297 + <name2/>
  1298 + </key>
  1299 + <value>
  1300 + <name>fcno</name>
  1301 + <rename>fcno</rename>
  1302 + <update>Y</update>
  1303 + </value>
  1304 + <value>
  1305 + <name>bcs</name>
  1306 + <rename>bcs</rename>
  1307 + <update>Y</update>
  1308 + </value>
  1309 + <value>
  1310 + <name>xl</name>
  1311 + <rename>xlid</rename>
  1312 + <update>Y</update>
  1313 + </value>
  1314 + <value>
  1315 + <name>ttinfo</name>
  1316 + <rename>ttid</rename>
  1317 + <update>Y</update>
  1318 + </value>
  1319 + <value>
  1320 + <name>lp</name>
  1321 + <rename>lpid</rename>
  1322 + <update>Y</update>
  1323 + </value>
  1324 + <value>
  1325 + <name>bc_type</name>
  1326 + <rename>bctype_code</rename>
  1327 + <update>Y</update>
  1328 + </value>
  1329 + <value>
  1330 + <name>bcsj</name>
  1331 + <rename>parade_time</rename>
  1332 + <update>Y</update>
  1333 + </value>
  1334 + <value>
  1335 + <name>jhlc</name>
  1336 + <rename>parade_mileage</rename>
  1337 + <update>Y</update>
  1338 + </value>
  1339 + <value>
  1340 + <name>fcsj</name>
  1341 + <rename>sendtime_calcu</rename>
  1342 + <update>Y</update>
  1343 + </value>
  1344 + <value>
  1345 + <name>xl_dir</name>
  1346 + <rename>sxx2</rename>
  1347 + <update>Y</update>
  1348 + </value>
  1349 + <value>
  1350 + <name>qdz</name>
  1351 + <rename>qdzid</rename>
  1352 + <update>Y</update>
  1353 + </value>
  1354 + <value>
  1355 + <name>tcc</name>
  1356 + <rename>zdzid</rename>
  1357 + <update>Y</update>
  1358 + </value>
  1359 + <value>
  1360 + <name>isfb</name>
  1361 + <rename>isfb</rename>
  1362 + <update>Y</update>
  1363 + </value>
  1364 + <value>
  1365 + <name>qdz_code</name>
  1366 + <rename>qdzcode</rename>
  1367 + <update>Y</update>
  1368 + </value>
  1369 + <value>
  1370 + <name>qdz_name</name>
  1371 + <rename>qname</rename>
  1372 + <update>Y</update>
  1373 + </value>
  1374 + <value>
  1375 + <name>zdz_code</name>
  1376 + <rename>zdzcode</rename>
  1377 + <update>Y</update>
  1378 + </value>
  1379 + <value>
  1380 + <name>zdz_name</name>
  1381 + <rename>tn</rename>
  1382 + <update>Y</update>
  1383 + </value>
  1384 + <value>
  1385 + <name>ists</name>
  1386 + <rename>ists</rename>
  1387 + <update>Y</update>
  1388 + </value>
  1389 + </lookup>
  1390 + <cluster_schema/>
  1391 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1392 + <xloc>845</xloc>
  1393 + <yloc>899</yloc>
  1394 + <draw>Y</draw>
  1395 + </GUI>
  1396 + </step>
  1397 +
  1398 + <step>
  1399 + <name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</name>
  1400 + <type>ExcelInput</type>
  1401 + <description/>
  1402 + <distribute>N</distribute>
  1403 + <custom_distribution/>
  1404 + <copies>1</copies>
  1405 + <partitioning>
  1406 + <method>none</method>
  1407 + <schema_name/>
  1408 + </partitioning>
  1409 + <header>Y</header>
  1410 + <noempty>Y</noempty>
  1411 + <stoponempty>N</stoponempty>
  1412 + <filefield/>
  1413 + <sheetfield/>
  1414 + <sheetrownumfield/>
  1415 + <rownumfield/>
  1416 + <sheetfield/>
  1417 + <filefield/>
  1418 + <limit>0</limit>
  1419 + <encoding/>
  1420 + <add_to_result_filenames>Y</add_to_result_filenames>
  1421 + <accept_filenames>N</accept_filenames>
  1422 + <accept_field/>
  1423 + <accept_stepname/>
  1424 + <file>
  1425 + <name/>
  1426 + <filemask/>
  1427 + <exclude_filemask/>
  1428 + <file_required>N</file_required>
  1429 + <include_subfolders>N</include_subfolders>
  1430 + </file>
  1431 + <fields>
  1432 + </fields>
  1433 + <sheets>
  1434 + <sheet>
  1435 + <name/>
  1436 + <startrow>0</startrow>
  1437 + <startcol>0</startcol>
  1438 + </sheet>
  1439 + </sheets>
  1440 + <strict_types>N</strict_types>
  1441 + <error_ignored>N</error_ignored>
  1442 + <error_line_skipped>N</error_line_skipped>
  1443 + <bad_line_files_destination_directory/>
  1444 + <bad_line_files_extension>warning</bad_line_files_extension>
  1445 + <error_line_files_destination_directory/>
  1446 + <error_line_files_extension>error</error_line_files_extension>
  1447 + <line_number_files_destination_directory/>
  1448 + <line_number_files_extension>line</line_number_files_extension>
  1449 + <shortFileFieldName/>
  1450 + <pathFieldName/>
  1451 + <hiddenFieldName/>
  1452 + <lastModificationTimeFieldName/>
  1453 + <uriNameFieldName/>
  1454 + <rootUriNameFieldName/>
  1455 + <extensionFieldName/>
  1456 + <sizeFieldName/>
  1457 + <spreadsheet_type>JXL</spreadsheet_type>
  1458 + <cluster_schema/>
  1459 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1460 + <xloc>112</xloc>
  1461 + <yloc>44</yloc>
  1462 + <draw>Y</draw>
  1463 + </GUI>
  1464 + </step>
  1465 +
  1466 + <step>
  1467 + <name>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;1</name>
  1468 + <type>DBLookup</type>
  1469 + <description/>
  1470 + <distribute>Y</distribute>
  1471 + <custom_distribution/>
  1472 + <copies>1</copies>
  1473 + <partitioning>
  1474 + <method>none</method>
  1475 + <schema_name/>
  1476 + </partitioning>
  1477 + <connection>bus_control_variable</connection>
  1478 + <cache>N</cache>
  1479 + <cache_load_all>N</cache_load_all>
  1480 + <cache_size>0</cache_size>
  1481 + <lookup>
  1482 + <schema/>
  1483 + <table>bsth_c_car_park</table>
  1484 + <orderby/>
  1485 + <fail_on_multiple>N</fail_on_multiple>
  1486 + <eat_row_on_failure>N</eat_row_on_failure>
  1487 + <key>
  1488 + <name>tccname_</name>
  1489 + <field>park_name</field>
  1490 + <condition>&#x3d;</condition>
  1491 + <name2/>
  1492 + </key>
  1493 + <value>
  1494 + <name>id</name>
  1495 + <rename>qdzid</rename>
  1496 + <default/>
  1497 + <type>Integer</type>
  1498 + </value>
  1499 + <value>
  1500 + <name>park_code</name>
  1501 + <rename>qdzcode</rename>
  1502 + <default/>
  1503 + <type>String</type>
  1504 + </value>
  1505 + <value>
  1506 + <name>park_name</name>
  1507 + <rename>tn</rename>
  1508 + <default/>
  1509 + <type>String</type>
  1510 + </value>
  1511 + </lookup>
  1512 + <cluster_schema/>
  1513 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1514 + <xloc>755</xloc>
  1515 + <yloc>504</yloc>
  1516 + <draw>Y</draw>
  1517 + </GUI>
  1518 + </step>
  1519 +
  1520 + <step>
  1521 + <name>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;2</name>
  1522 + <type>DBLookup</type>
  1523 + <description/>
  1524 + <distribute>Y</distribute>
  1525 + <custom_distribution/>
  1526 + <copies>1</copies>
  1527 + <partitioning>
  1528 + <method>none</method>
  1529 + <schema_name/>
  1530 + </partitioning>
  1531 + <connection>bus_control_variable</connection>
  1532 + <cache>N</cache>
  1533 + <cache_load_all>N</cache_load_all>
  1534 + <cache_size>0</cache_size>
  1535 + <lookup>
  1536 + <schema/>
  1537 + <table>bsth_c_car_park</table>
  1538 + <orderby/>
  1539 + <fail_on_multiple>N</fail_on_multiple>
  1540 + <eat_row_on_failure>N</eat_row_on_failure>
  1541 + <key>
  1542 + <name>tccname_</name>
  1543 + <field>park_name</field>
  1544 + <condition>&#x3d;</condition>
  1545 + <name2/>
  1546 + </key>
  1547 + <value>
  1548 + <name>id</name>
  1549 + <rename>zdzid</rename>
  1550 + <default/>
  1551 + <type>Integer</type>
  1552 + </value>
  1553 + <value>
  1554 + <name>park_code</name>
  1555 + <rename>zdzcode</rename>
  1556 + <default/>
  1557 + <type>String</type>
  1558 + </value>
  1559 + <value>
  1560 + <name>park_name</name>
  1561 + <rename>tn</rename>
  1562 + <default/>
  1563 + <type>String</type>
  1564 + </value>
  1565 + </lookup>
  1566 + <cluster_schema/>
  1567 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1568 + <xloc>887</xloc>
  1569 + <yloc>608</yloc>
  1570 + <draw>Y</draw>
  1571 + </GUI>
  1572 + </step>
  1573 +
  1574 + <step>
  1575 + <name>&#x67e5;&#x627e;&#x51fa;&#x573a;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</name>
  1576 + <type>DBLookup</type>
  1577 + <description/>
  1578 + <distribute>Y</distribute>
  1579 + <custom_distribution/>
  1580 + <copies>1</copies>
  1581 + <partitioning>
  1582 + <method>none</method>
  1583 + <schema_name/>
  1584 + </partitioning>
  1585 + <connection>bus_control_variable</connection>
  1586 + <cache>N</cache>
  1587 + <cache_load_all>N</cache_load_all>
  1588 + <cache_size>0</cache_size>
  1589 + <lookup>
  1590 + <schema/>
  1591 + <table>bsth_c_stationroute</table>
  1592 + <orderby/>
  1593 + <fail_on_multiple>N</fail_on_multiple>
  1594 + <eat_row_on_failure>N</eat_row_on_failure>
  1595 + <key>
  1596 + <name>xlid</name>
  1597 + <field>line</field>
  1598 + <condition>&#x3d;</condition>
  1599 + <name2/>
  1600 + </key>
  1601 + <key>
  1602 + <name>zdzname</name>
  1603 + <field>station_name</field>
  1604 + <condition>LIKE</condition>
  1605 + <name2/>
  1606 + </key>
  1607 + <key>
  1608 + <name>endZdtype</name>
  1609 + <field>station_mark</field>
  1610 + <condition>&#x3d;</condition>
  1611 + <name2/>
  1612 + </key>
  1613 + <key>
  1614 + <name>destory</name>
  1615 + <field>destroy</field>
  1616 + <condition>&#x3d;</condition>
  1617 + <name2/>
  1618 + </key>
  1619 + <value>
  1620 + <name>station</name>
  1621 + <rename>zdzid</rename>
  1622 + <default/>
  1623 + <type>Integer</type>
  1624 + </value>
  1625 + <value>
  1626 + <name>directions</name>
  1627 + <rename>sxx</rename>
  1628 + <default/>
  1629 + <type>Integer</type>
  1630 + </value>
  1631 + <value>
  1632 + <name>station_code</name>
  1633 + <rename>zdzcode</rename>
  1634 + <default/>
  1635 + <type>String</type>
  1636 + </value>
  1637 + <value>
  1638 + <name>station_name</name>
  1639 + <rename>zdzname_</rename>
  1640 + <default/>
  1641 + <type>String</type>
  1642 + </value>
  1643 + </lookup>
  1644 + <cluster_schema/>
  1645 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1646 + <xloc>329</xloc>
  1647 + <yloc>505</yloc>
  1648 + <draw>Y</draw>
  1649 + </GUI>
  1650 + </step>
  1651 +
  1652 + <step>
  1653 + <name>&#x67e5;&#x627e;&#x65f6;&#x523b;&#x8868;&#x57fa;&#x7840;&#x4fe1;&#x606f;&#x5173;&#x8054;</name>
  1654 + <type>DBLookup</type>
  1655 + <description/>
  1656 + <distribute>Y</distribute>
  1657 + <custom_distribution/>
  1658 + <copies>1</copies>
  1659 + <partitioning>
  1660 + <method>none</method>
  1661 + <schema_name/>
  1662 + </partitioning>
  1663 + <connection>bus_control_variable</connection>
  1664 + <cache>N</cache>
  1665 + <cache_load_all>N</cache_load_all>
  1666 + <cache_size>0</cache_size>
  1667 + <lookup>
  1668 + <schema/>
  1669 + <table>bsth_c_s_ttinfo</table>
  1670 + <orderby/>
  1671 + <fail_on_multiple>N</fail_on_multiple>
  1672 + <eat_row_on_failure>N</eat_row_on_failure>
  1673 + <key>
  1674 + <name>xlid</name>
  1675 + <field>xl</field>
  1676 + <condition>&#x3d;</condition>
  1677 + <name2/>
  1678 + </key>
  1679 + <key>
  1680 + <name>ttinfoname_</name>
  1681 + <field>name</field>
  1682 + <condition>&#x3d;</condition>
  1683 + <name2/>
  1684 + </key>
  1685 + <key>
  1686 + <name>iscanceled</name>
  1687 + <field>is_cancel</field>
  1688 + <condition>&#x3d;</condition>
  1689 + <name2/>
  1690 + </key>
  1691 + <value>
  1692 + <name>id</name>
  1693 + <rename>ttid</rename>
  1694 + <default/>
  1695 + <type>Integer</type>
  1696 + </value>
  1697 + </lookup>
  1698 + <cluster_schema/>
  1699 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1700 + <xloc>1011</xloc>
  1701 + <yloc>134</yloc>
  1702 + <draw>Y</draw>
  1703 + </GUI>
  1704 + </step>
  1705 +
  1706 + <step>
  1707 + <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x5173;&#x8054;</name>
  1708 + <type>DBLookup</type>
  1709 + <description/>
  1710 + <distribute>Y</distribute>
  1711 + <custom_distribution/>
  1712 + <copies>1</copies>
  1713 + <partitioning>
  1714 + <method>none</method>
  1715 + <schema_name/>
  1716 + </partitioning>
  1717 + <connection>bus_control_variable</connection>
  1718 + <cache>N</cache>
  1719 + <cache_load_all>N</cache_load_all>
  1720 + <cache_size>0</cache_size>
  1721 + <lookup>
  1722 + <schema/>
  1723 + <table>bsth_c_line</table>
  1724 + <orderby/>
  1725 + <fail_on_multiple>N</fail_on_multiple>
  1726 + <eat_row_on_failure>N</eat_row_on_failure>
  1727 + <key>
  1728 + <name>xlname_</name>
  1729 + <field>name</field>
  1730 + <condition>&#x3d;</condition>
  1731 + <name2/>
  1732 + </key>
  1733 + <key>
  1734 + <name>iscanceled</name>
  1735 + <field>destroy</field>
  1736 + <condition>&#x3d;</condition>
  1737 + <name2/>
  1738 + </key>
  1739 + <value>
  1740 + <name>id</name>
  1741 + <rename>xlid</rename>
  1742 + <default/>
  1743 + <type>Integer</type>
  1744 + </value>
  1745 + </lookup>
  1746 + <cluster_schema/>
  1747 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1748 + <xloc>1007</xloc>
  1749 + <yloc>43</yloc>
  1750 + <draw>Y</draw>
  1751 + </GUI>
  1752 + </step>
  1753 +
  1754 + <step>
  1755 + <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x51fa;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
  1756 + <type>DBLookup</type>
  1757 + <description/>
  1758 + <distribute>Y</distribute>
  1759 + <custom_distribution/>
  1760 + <copies>1</copies>
  1761 + <partitioning>
  1762 + <method>none</method>
  1763 + <schema_name/>
  1764 + </partitioning>
  1765 + <connection>bus_control_variable</connection>
  1766 + <cache>N</cache>
  1767 + <cache_load_all>N</cache_load_all>
  1768 + <cache_size>0</cache_size>
  1769 + <lookup>
  1770 + <schema/>
  1771 + <table>bsth_c_line_information</table>
  1772 + <orderby/>
  1773 + <fail_on_multiple>N</fail_on_multiple>
  1774 + <eat_row_on_failure>N</eat_row_on_failure>
  1775 + <key>
  1776 + <name>xlid</name>
  1777 + <field>line</field>
  1778 + <condition>&#x3d;</condition>
  1779 + <name2/>
  1780 + </key>
  1781 + <value>
  1782 + <name>up_out_timer</name>
  1783 + <rename>up_out_timer</rename>
  1784 + <default/>
  1785 + <type>Number</type>
  1786 + </value>
  1787 + <value>
  1788 + <name>up_out_mileage</name>
  1789 + <rename>up_out_mileage</rename>
  1790 + <default/>
  1791 + <type>Number</type>
  1792 + </value>
  1793 + <value>
  1794 + <name>down_out_timer</name>
  1795 + <rename>down_out_timer</rename>
  1796 + <default/>
  1797 + <type>Number</type>
  1798 + </value>
  1799 + <value>
  1800 + <name>down_out_mileage</name>
  1801 + <rename>down_out_mileage</rename>
  1802 + <default/>
  1803 + <type>Number</type>
  1804 + </value>
  1805 + </lookup>
  1806 + <cluster_schema/>
  1807 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1808 + <xloc>335</xloc>
  1809 + <yloc>763</yloc>
  1810 + <draw>Y</draw>
  1811 + </GUI>
  1812 + </step>
  1813 +
  1814 + <step>
  1815 + <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x6240;&#x6709;&#x4e0a;&#x4e0b;&#x884c;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
  1816 + <type>DBLookup</type>
  1817 + <description/>
  1818 + <distribute>Y</distribute>
  1819 + <custom_distribution/>
  1820 + <copies>1</copies>
  1821 + <partitioning>
  1822 + <method>none</method>
  1823 + <schema_name/>
  1824 + </partitioning>
  1825 + <connection>bus_control_variable</connection>
  1826 + <cache>N</cache>
  1827 + <cache_load_all>N</cache_load_all>
  1828 + <cache_size>0</cache_size>
  1829 + <lookup>
  1830 + <schema/>
  1831 + <table>bsth_c_line_information</table>
  1832 + <orderby/>
  1833 + <fail_on_multiple>N</fail_on_multiple>
  1834 + <eat_row_on_failure>N</eat_row_on_failure>
  1835 + <key>
  1836 + <name>xlid</name>
  1837 + <field>line</field>
  1838 + <condition>&#x3d;</condition>
  1839 + <name2/>
  1840 + </key>
  1841 + <value>
  1842 + <name>up_mileage</name>
  1843 + <rename>up_mileage</rename>
  1844 + <default/>
  1845 + <type>Number</type>
  1846 + </value>
  1847 + <value>
  1848 + <name>down_mileage</name>
  1849 + <rename>down_mileage</rename>
  1850 + <default/>
  1851 + <type>Number</type>
  1852 + </value>
  1853 + <value>
  1854 + <name>up_travel_time</name>
  1855 + <rename>up_travel_time</rename>
  1856 + <default/>
  1857 + <type>Number</type>
  1858 + </value>
  1859 + <value>
  1860 + <name>down_travel_time</name>
  1861 + <rename>down_travel_time</rename>
  1862 + <default/>
  1863 + <type>Number</type>
  1864 + </value>
  1865 + <value>
  1866 + <name>early_start_time</name>
  1867 + <rename>early_start_time</rename>
  1868 + <default/>
  1869 + <type>String</type>
  1870 + </value>
  1871 + <value>
  1872 + <name>early_end_time</name>
  1873 + <rename>early_end_time</rename>
  1874 + <default/>
  1875 + <type>String</type>
  1876 + </value>
  1877 + <value>
  1878 + <name>early_up_time</name>
  1879 + <rename>early_up_time</rename>
  1880 + <default/>
  1881 + <type>Number</type>
  1882 + </value>
  1883 + <value>
  1884 + <name>early_down_time</name>
  1885 + <rename>early_down_time</rename>
  1886 + <default/>
  1887 + <type>Number</type>
  1888 + </value>
  1889 + <value>
  1890 + <name>late_start_time</name>
  1891 + <rename>late_start_time</rename>
  1892 + <default/>
  1893 + <type>String</type>
  1894 + </value>
  1895 + <value>
  1896 + <name>late_end_time</name>
  1897 + <rename>late_end_time</rename>
  1898 + <default/>
  1899 + <type>String</type>
  1900 + </value>
  1901 + <value>
  1902 + <name>late_up_time</name>
  1903 + <rename>late_up_time</rename>
  1904 + <default/>
  1905 + <type>Number</type>
  1906 + </value>
  1907 + <value>
  1908 + <name>late_down_time</name>
  1909 + <rename>late_down_time</rename>
  1910 + <default/>
  1911 + <type>Number</type>
  1912 + </value>
  1913 + </lookup>
  1914 + <cluster_schema/>
  1915 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1916 + <xloc>149</xloc>
  1917 + <yloc>581</yloc>
  1918 + <draw>Y</draw>
  1919 + </GUI>
  1920 + </step>
  1921 +
  1922 + <step>
  1923 + <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x8fdb;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
  1924 + <type>DBLookup</type>
  1925 + <description/>
  1926 + <distribute>Y</distribute>
  1927 + <custom_distribution/>
  1928 + <copies>1</copies>
  1929 + <partitioning>
  1930 + <method>none</method>
  1931 + <schema_name/>
  1932 + </partitioning>
  1933 + <connection>bus_control_variable</connection>
  1934 + <cache>N</cache>
  1935 + <cache_load_all>N</cache_load_all>
  1936 + <cache_size>0</cache_size>
  1937 + <lookup>
  1938 + <schema/>
  1939 + <table>bsth_c_line_information</table>
  1940 + <orderby/>
  1941 + <fail_on_multiple>N</fail_on_multiple>
  1942 + <eat_row_on_failure>N</eat_row_on_failure>
  1943 + <key>
  1944 + <name>xlid</name>
  1945 + <field>line</field>
  1946 + <condition>&#x3d;</condition>
  1947 + <name2/>
  1948 + </key>
  1949 + <value>
  1950 + <name>up_in_mileage</name>
  1951 + <rename>up_in_mileage</rename>
  1952 + <default/>
  1953 + <type>Number</type>
  1954 + </value>
  1955 + <value>
  1956 + <name>up_in_timer</name>
  1957 + <rename>up_in_timer</rename>
  1958 + <default/>
  1959 + <type>Number</type>
  1960 + </value>
  1961 + <value>
  1962 + <name>down_in_mileage</name>
  1963 + <rename>down_in_mileage</rename>
  1964 + <default/>
  1965 + <type>Number</type>
  1966 + </value>
  1967 + <value>
  1968 + <name>down_in_timer</name>
  1969 + <rename>down_in_timer</rename>
  1970 + <default/>
  1971 + <type>Number</type>
  1972 + </value>
  1973 + </lookup>
  1974 + <cluster_schema/>
  1975 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1976 + <xloc>553</xloc>
  1977 + <yloc>1004</yloc>
  1978 + <draw>Y</draw>
  1979 + </GUI>
  1980 + </step>
  1981 +
  1982 + <step>
  1983 + <name>&#x67e5;&#x627e;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;</name>
  1984 + <type>DBLookup</type>
  1985 + <description/>
  1986 + <distribute>Y</distribute>
  1987 + <custom_distribution/>
  1988 + <copies>1</copies>
  1989 + <partitioning>
  1990 + <method>none</method>
  1991 + <schema_name/>
  1992 + </partitioning>
  1993 + <connection>bus_control_variable</connection>
  1994 + <cache>N</cache>
  1995 + <cache_load_all>N</cache_load_all>
  1996 + <cache_size>0</cache_size>
  1997 + <lookup>
  1998 + <schema/>
  1999 + <table>bsth_c_stationroute</table>
  2000 + <orderby/>
  2001 + <fail_on_multiple>N</fail_on_multiple>
  2002 + <eat_row_on_failure>N</eat_row_on_failure>
  2003 + <key>
  2004 + <name>xlid</name>
  2005 + <field>line</field>
  2006 + <condition>&#x3d;</condition>
  2007 + <name2/>
  2008 + </key>
  2009 + <key>
  2010 + <name>sxx</name>
  2011 + <field>directions</field>
  2012 + <condition>&#x3d;</condition>
  2013 + <name2/>
  2014 + </key>
  2015 + <key>
  2016 + <name>endZdtype</name>
  2017 + <field>station_mark</field>
  2018 + <condition>&#x3d;</condition>
  2019 + <name2/>
  2020 + </key>
  2021 + <key>
  2022 + <name>destory</name>
  2023 + <field>destroy</field>
  2024 + <condition>&#x3d;</condition>
  2025 + <name2/>
  2026 + </key>
  2027 + <value>
  2028 + <name>station_name</name>
  2029 + <rename>zdzname</rename>
  2030 + <default/>
  2031 + <type>String</type>
  2032 + </value>
  2033 + <value>
  2034 + <name>station</name>
  2035 + <rename>zdzid</rename>
  2036 + <default/>
  2037 + <type>Integer</type>
  2038 + </value>
  2039 + <value>
  2040 + <name>station_code</name>
  2041 + <rename>zdzcode</rename>
  2042 + <default/>
  2043 + <type>String</type>
  2044 + </value>
  2045 + </lookup>
  2046 + <cluster_schema/>
  2047 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2048 + <xloc>280</xloc>
  2049 + <yloc>404</yloc>
  2050 + <draw>Y</draw>
  2051 + </GUI>
  2052 + </step>
  2053 +
  2054 + <step>
  2055 + <name>&#x67e5;&#x627e;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</name>
  2056 + <type>DBLookup</type>
  2057 + <description/>
  2058 + <distribute>Y</distribute>
  2059 + <custom_distribution/>
  2060 + <copies>1</copies>
  2061 + <partitioning>
  2062 + <method>none</method>
  2063 + <schema_name/>
  2064 + </partitioning>
  2065 + <connection>bus_control_variable</connection>
  2066 + <cache>N</cache>
  2067 + <cache_load_all>N</cache_load_all>
  2068 + <cache_size>0</cache_size>
  2069 + <lookup>
  2070 + <schema/>
  2071 + <table>bsth_c_stationroute</table>
  2072 + <orderby/>
  2073 + <fail_on_multiple>N</fail_on_multiple>
  2074 + <eat_row_on_failure>N</eat_row_on_failure>
  2075 + <key>
  2076 + <name>xlid</name>
  2077 + <field>line</field>
  2078 + <condition>&#x3d;</condition>
  2079 + <name2/>
  2080 + </key>
  2081 + <key>
  2082 + <name>qdzname</name>
  2083 + <field>station_name</field>
  2084 + <condition>LIKE</condition>
  2085 + <name2/>
  2086 + </key>
  2087 + <key>
  2088 + <name>sendZdtype</name>
  2089 + <field>station_mark</field>
  2090 + <condition>&#x3d;</condition>
  2091 + <name2/>
  2092 + </key>
  2093 + <key>
  2094 + <name>destory</name>
  2095 + <field>destroy</field>
  2096 + <condition>&#x3d;</condition>
  2097 + <name2/>
  2098 + </key>
  2099 + <value>
  2100 + <name>station</name>
  2101 + <rename>qdzid</rename>
  2102 + <default/>
  2103 + <type>Integer</type>
  2104 + </value>
  2105 + <value>
  2106 + <name>directions</name>
  2107 + <rename>sxx</rename>
  2108 + <default/>
  2109 + <type>Integer</type>
  2110 + </value>
  2111 + <value>
  2112 + <name>station_code</name>
  2113 + <rename>qdzcode</rename>
  2114 + <default/>
  2115 + <type>String</type>
  2116 + </value>
  2117 + <value>
  2118 + <name>station_name</name>
  2119 + <rename>qdzname_</rename>
  2120 + <default/>
  2121 + <type>String</type>
  2122 + </value>
  2123 + </lookup>
  2124 + <cluster_schema/>
  2125 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2126 + <xloc>430</xloc>
  2127 + <yloc>403</yloc>
  2128 + <draw>Y</draw>
  2129 + </GUI>
  2130 + </step>
  2131 +
  2132 + <step>
  2133 + <name>&#x67e5;&#x627e;&#x8def;&#x724c;&#x5173;&#x8054;</name>
  2134 + <type>DBLookup</type>
  2135 + <description/>
  2136 + <distribute>Y</distribute>
  2137 + <custom_distribution/>
  2138 + <copies>1</copies>
  2139 + <partitioning>
  2140 + <method>none</method>
  2141 + <schema_name/>
  2142 + </partitioning>
  2143 + <connection>bus_control_variable</connection>
  2144 + <cache>N</cache>
  2145 + <cache_load_all>N</cache_load_all>
  2146 + <cache_size>0</cache_size>
  2147 + <lookup>
  2148 + <schema/>
  2149 + <table>bsth_c_s_gbi</table>
  2150 + <orderby/>
  2151 + <fail_on_multiple>N</fail_on_multiple>
  2152 + <eat_row_on_failure>N</eat_row_on_failure>
  2153 + <key>
  2154 + <name>xlid</name>
  2155 + <field>xl</field>
  2156 + <condition>&#x3d;</condition>
  2157 + <name2/>
  2158 + </key>
  2159 + <key>
  2160 + <name>lp</name>
  2161 + <field>lp_name</field>
  2162 + <condition>&#x3d;</condition>
  2163 + <name2/>
  2164 + </key>
  2165 + <key>
  2166 + <name>iscanceled</name>
  2167 + <field>is_cancel</field>
  2168 + <condition>&#x3d;</condition>
  2169 + <name2/>
  2170 + </key>
  2171 + <value>
  2172 + <name>id</name>
  2173 + <rename>lpid</rename>
  2174 + <default/>
  2175 + <type>Integer</type>
  2176 + </value>
  2177 + </lookup>
  2178 + <cluster_schema/>
  2179 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2180 + <xloc>1013</xloc>
  2181 + <yloc>265</yloc>
  2182 + <draw>Y</draw>
  2183 + </GUI>
  2184 + </step>
  2185 +
  2186 + <step>
  2187 + <name>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ebf;&#x8def;&#x65b9;&#x5411;</name>
  2188 + <type>DBLookup</type>
  2189 + <description/>
  2190 + <distribute>Y</distribute>
  2191 + <custom_distribution/>
  2192 + <copies>1</copies>
  2193 + <partitioning>
  2194 + <method>none</method>
  2195 + <schema_name/>
  2196 + </partitioning>
  2197 + <connection>bus_control_variable</connection>
  2198 + <cache>N</cache>
  2199 + <cache_load_all>N</cache_load_all>
  2200 + <cache_size>0</cache_size>
  2201 + <lookup>
  2202 + <schema/>
  2203 + <table>bsth_c_stationroute</table>
  2204 + <orderby/>
  2205 + <fail_on_multiple>N</fail_on_multiple>
  2206 + <eat_row_on_failure>N</eat_row_on_failure>
  2207 + <key>
  2208 + <name>xlid</name>
  2209 + <field>line</field>
  2210 + <condition>&#x3d;</condition>
  2211 + <name2/>
  2212 + </key>
  2213 + <key>
  2214 + <name>startZdtype_calcu</name>
  2215 + <field>station_mark</field>
  2216 + <condition>&#x3d;</condition>
  2217 + <name2/>
  2218 + </key>
  2219 + <key>
  2220 + <name>qdzname_calcu</name>
  2221 + <field>station_name</field>
  2222 + <condition>LIKE</condition>
  2223 + <name2/>
  2224 + </key>
  2225 + <key>
  2226 + <name>destory</name>
  2227 + <field>destroy</field>
  2228 + <condition>&#x3d;</condition>
  2229 + <name2/>
  2230 + </key>
  2231 + <value>
  2232 + <name>directions</name>
  2233 + <rename>sxx</rename>
  2234 + <default/>
  2235 + <type>String</type>
  2236 + </value>
  2237 + </lookup>
  2238 + <cluster_schema/>
  2239 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2240 + <xloc>548</xloc>
  2241 + <yloc>610</yloc>
  2242 + <draw>Y</draw>
  2243 + </GUI>
  2244 + </step>
  2245 +
  2246 + <step>
  2247 + <name>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ec8;&#x70b9;&#x7ad9;&#xff0c;&#x5e76;&#x4f5c;&#x4e3a;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x7684;&#x8d77;&#x70b9;&#x7ad9;</name>
  2248 + <type>DBLookup</type>
  2249 + <description/>
  2250 + <distribute>Y</distribute>
  2251 + <custom_distribution/>
  2252 + <copies>1</copies>
  2253 + <partitioning>
  2254 + <method>none</method>
  2255 + <schema_name/>
  2256 + </partitioning>
  2257 + <connection>bus_control_variable</connection>
  2258 + <cache>Y</cache>
  2259 + <cache_load_all>Y</cache_load_all>
  2260 + <cache_size>0</cache_size>
  2261 + <lookup>
  2262 + <schema/>
  2263 + <table>bsth_c_stationroute</table>
  2264 + <orderby/>
  2265 + <fail_on_multiple>N</fail_on_multiple>
  2266 + <eat_row_on_failure>N</eat_row_on_failure>
  2267 + <key>
  2268 + <name>xlid</name>
  2269 + <field>line</field>
  2270 + <condition>&#x3d;</condition>
  2271 + <name2/>
  2272 + </key>
  2273 + <key>
  2274 + <name>endZdtype_calcu</name>
  2275 + <field>station_mark</field>
  2276 + <condition>&#x3d;</condition>
  2277 + <name2/>
  2278 + </key>
  2279 + <key>
  2280 + <name>sxx</name>
  2281 + <field>directions</field>
  2282 + <condition>&#x3d;</condition>
  2283 + <name2/>
  2284 + </key>
  2285 + <key>
  2286 + <name>destory</name>
  2287 + <field>destroy</field>
  2288 + <condition>&#x3d;</condition>
  2289 + <name2/>
  2290 + </key>
  2291 + <value>
  2292 + <name>station_name</name>
  2293 + <rename>zdzname_calcu</rename>
  2294 + <default/>
  2295 + <type>Integer</type>
  2296 + </value>
  2297 + </lookup>
  2298 + <cluster_schema/>
  2299 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2300 + <xloc>550</xloc>
  2301 + <yloc>701</yloc>
  2302 + <draw>Y</draw>
  2303 + </GUI>
  2304 + </step>
  2305 +
  2306 + <step>
  2307 + <name>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</name>
  2308 + <type>DBLookup</type>
  2309 + <description/>
  2310 + <distribute>Y</distribute>
  2311 + <custom_distribution/>
  2312 + <copies>1</copies>
  2313 + <partitioning>
  2314 + <method>none</method>
  2315 + <schema_name/>
  2316 + </partitioning>
  2317 + <connection>bus_control_variable</connection>
  2318 + <cache>N</cache>
  2319 + <cache_load_all>N</cache_load_all>
  2320 + <cache_size>0</cache_size>
  2321 + <lookup>
  2322 + <schema/>
  2323 + <table>bsth_c_stationroute</table>
  2324 + <orderby/>
  2325 + <fail_on_multiple>N</fail_on_multiple>
  2326 + <eat_row_on_failure>N</eat_row_on_failure>
  2327 + <key>
  2328 + <name>xlid</name>
  2329 + <field>line</field>
  2330 + <condition>&#x3d;</condition>
  2331 + <name2/>
  2332 + </key>
  2333 + <key>
  2334 + <name>zdzname_calcu</name>
  2335 + <field>station_name</field>
  2336 + <condition>&#x3d;</condition>
  2337 + <name2/>
  2338 + </key>
  2339 + <key>
  2340 + <name>startZdtype_calcu</name>
  2341 + <field>station_mark</field>
  2342 + <condition>&#x3d;</condition>
  2343 + <name2/>
  2344 + </key>
  2345 + <key>
  2346 + <name>destory</name>
  2347 + <field>destroy</field>
  2348 + <condition>&#x3d;</condition>
  2349 + <name2/>
  2350 + </key>
  2351 + <value>
  2352 + <name>directions</name>
  2353 + <rename>sxx2</rename>
  2354 + <default/>
  2355 + <type>Integer</type>
  2356 + </value>
  2357 + <value>
  2358 + <name>station</name>
  2359 + <rename>qdzid</rename>
  2360 + <default/>
  2361 + <type>Integer</type>
  2362 + </value>
  2363 + <value>
  2364 + <name>station_code</name>
  2365 + <rename>qdzcode</rename>
  2366 + <default/>
  2367 + <type>String</type>
  2368 + </value>
  2369 + <value>
  2370 + <name>station_name</name>
  2371 + <rename>qname</rename>
  2372 + <default/>
  2373 + <type>String</type>
  2374 + </value>
  2375 + </lookup>
  2376 + <cluster_schema/>
  2377 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2378 + <xloc>551</xloc>
  2379 + <yloc>782</yloc>
  2380 + <draw>Y</draw>
  2381 + </GUI>
  2382 + </step>
  2383 +
  2384 + <step>
  2385 + <name>&#x6b63;&#x5e38;&#x73ed;&#x6b21;_&#x5904;&#x7406;&#x6570;&#x636e;</name>
  2386 + <type>ScriptValueMod</type>
  2387 + <description/>
  2388 + <distribute>Y</distribute>
  2389 + <custom_distribution/>
  2390 + <copies>1</copies>
  2391 + <partitioning>
  2392 + <method>none</method>
  2393 + <schema_name/>
  2394 + </partitioning>
  2395 + <compatible>N</compatible>
  2396 + <optimizationLevel>9</optimizationLevel>
  2397 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  2398 + <jsScript_name>Script 1</jsScript_name>
  2399 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;&#x2f;&#x2f; &#x6dfb;&#x52a0;&#x7ad9;&#x70b9;&#x6807;&#x8bc6;&#xa;var sendZdtype &#x3d; &#x27;B&#x27;&#x3b;&#xa;var endZdtype &#x3d; &#x27;E&#x27;&#x3b;&#xa;&#xa;var destory &#x3d; 0&#x3b; &#x2f;&#x2f; &#x672a;&#x64a4;&#x9500;flag</jsScript_script>
  2400 + </jsScript> </jsScripts> <fields> <field> <name>sendZdtype</name>
  2401 + <rename>sendZdtype</rename>
  2402 + <type>String</type>
  2403 + <length>-1</length>
  2404 + <precision>-1</precision>
  2405 + <replace>N</replace>
  2406 + </field> <field> <name>endZdtype</name>
  2407 + <rename>endZdtype</rename>
  2408 + <type>String</type>
  2409 + <length>-1</length>
  2410 + <precision>-1</precision>
  2411 + <replace>N</replace>
  2412 + </field> <field> <name>destory</name>
  2413 + <rename>destory</rename>
  2414 + <type>Integer</type>
  2415 + <length>-1</length>
  2416 + <precision>-1</precision>
  2417 + <replace>N</replace>
  2418 + </field> </fields> <cluster_schema/>
  2419 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2420 + <xloc>588</xloc>
  2421 + <yloc>403</yloc>
  2422 + <draw>Y</draw>
  2423 + </GUI>
  2424 + </step>
  2425 +
  2426 + <step>
  2427 + <name>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</name>
  2428 + <type>Dummy</type>
  2429 + <description/>
  2430 + <distribute>Y</distribute>
  2431 + <custom_distribution/>
  2432 + <copies>1</copies>
  2433 + <partitioning>
  2434 + <method>none</method>
  2435 + <schema_name/>
  2436 + </partitioning>
  2437 + <cluster_schema/>
  2438 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2439 + <xloc>725</xloc>
  2440 + <yloc>404</yloc>
  2441 + <draw>Y</draw>
  2442 + </GUI>
  2443 + </step>
  2444 +
  2445 + <step>
  2446 + <name>&#x6dfb;&#x52a0;&#x53d1;&#x8f66;&#x987a;&#x5e8f;&#x53f7;</name>
  2447 + <type>GroupBy</type>
  2448 + <description/>
  2449 + <distribute>Y</distribute>
  2450 + <custom_distribution/>
  2451 + <copies>1</copies>
  2452 + <partitioning>
  2453 + <method>none</method>
  2454 + <schema_name/>
  2455 + </partitioning>
  2456 + <all_rows>Y</all_rows>
  2457 + <ignore_aggregate>N</ignore_aggregate>
  2458 + <field_ignore/>
  2459 + <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
  2460 + <prefix>grp</prefix>
  2461 + <add_linenr>Y</add_linenr>
  2462 + <linenr_fieldname>fcno</linenr_fieldname>
  2463 + <give_back_row>N</give_back_row>
  2464 + <group>
  2465 + <field>
  2466 + <name>lp</name>
  2467 + </field>
  2468 + </group>
  2469 + <fields>
  2470 + </fields>
  2471 + <cluster_schema/>
  2472 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2473 + <xloc>442</xloc>
  2474 + <yloc>44</yloc>
  2475 + <draw>Y</draw>
  2476 + </GUI>
  2477 + </step>
  2478 +
  2479 + <step>
  2480 + <name>&#x6dfb;&#x52a0;&#x5bf9;&#x5e94;&#x73ed;&#x6b21;&#x6570;</name>
  2481 + <type>GroupBy</type>
  2482 + <description/>
  2483 + <distribute>Y</distribute>
  2484 + <custom_distribution/>
  2485 + <copies>1</copies>
  2486 + <partitioning>
  2487 + <method>none</method>
  2488 + <schema_name/>
  2489 + </partitioning>
  2490 + <all_rows>Y</all_rows>
  2491 + <ignore_aggregate>N</ignore_aggregate>
  2492 + <field_ignore/>
  2493 + <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
  2494 + <prefix>grp</prefix>
  2495 + <add_linenr>Y</add_linenr>
  2496 + <linenr_fieldname>bcs</linenr_fieldname>
  2497 + <give_back_row>N</give_back_row>
  2498 + <group>
  2499 + </group>
  2500 + <fields>
  2501 + </fields>
  2502 + <cluster_schema/>
  2503 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2504 + <xloc>692</xloc>
  2505 + <yloc>44</yloc>
  2506 + <draw>Y</draw>
  2507 + </GUI>
  2508 + </step>
  2509 +
  2510 + <step>
  2511 + <name>&#x73ed;&#x6b21;&#x6570;&#x636e;&#x8303;&#x5f0f;&#x5316;</name>
  2512 + <type>Normaliser</type>
  2513 + <description/>
  2514 + <distribute>Y</distribute>
  2515 + <custom_distribution/>
  2516 + <copies>1</copies>
  2517 + <partitioning>
  2518 + <method>none</method>
  2519 + <schema_name/>
  2520 + </partitioning>
  2521 + <typefield>&#x7ad9;&#x70b9;&#x540d;&#x79f0;</typefield>
  2522 + <fields> </fields> <cluster_schema/>
  2523 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2524 + <xloc>248</xloc>
  2525 + <yloc>44</yloc>
  2526 + <draw>Y</draw>
  2527 + </GUI>
  2528 + </step>
  2529 +
  2530 + <step>
  2531 + <name>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178;</name>
  2532 + <type>ValueMapper</type>
  2533 + <description/>
  2534 + <distribute>Y</distribute>
  2535 + <custom_distribution/>
  2536 + <copies>1</copies>
  2537 + <partitioning>
  2538 + <method>none</method>
  2539 + <schema_name/>
  2540 + </partitioning>
  2541 + <field_to_use>bctype</field_to_use>
  2542 + <target_field>bctype_code</target_field>
  2543 + <non_match_default>&#x672a;&#x77e5;&#x7c7b;&#x578b;</non_match_default>
  2544 + <fields>
  2545 + <field>
  2546 + <source_value>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</source_value>
  2547 + <target_value>normal</target_value>
  2548 + </field>
  2549 + <field>
  2550 + <source_value>&#x51fa;&#x573a;</source_value>
  2551 + <target_value>out</target_value>
  2552 + </field>
  2553 + <field>
  2554 + <source_value>&#x8fdb;&#x573a;</source_value>
  2555 + <target_value>in</target_value>
  2556 + </field>
  2557 + <field>
  2558 + <source_value>&#x52a0;&#x6cb9;</source_value>
  2559 + <target_value>oil</target_value>
  2560 + </field>
  2561 + <field>
  2562 + <source_value>&#x4e34;&#x52a0;</source_value>
  2563 + <target_value>temp</target_value>
  2564 + </field>
  2565 + <field>
  2566 + <source_value>&#x533a;&#x95f4;</source_value>
  2567 + <target_value>region</target_value>
  2568 + </field>
  2569 + <field>
  2570 + <source_value>&#x653e;&#x7a7a;</source_value>
  2571 + <target_value>venting</target_value>
  2572 + </field>
  2573 + <field>
  2574 + <source_value>&#x653e;&#x5927;&#x7ad9;</source_value>
  2575 + <target_value>major</target_value>
  2576 + </field>
  2577 + </fields>
  2578 + <cluster_schema/>
  2579 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2580 + <xloc>149</xloc>
  2581 + <yloc>491</yloc>
  2582 + <draw>Y</draw>
  2583 + </GUI>
  2584 + </step>
  2585 +
  2586 + <step>
  2587 + <name>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 2</name>
  2588 + <type>ValueMapper</type>
  2589 + <description/>
  2590 + <distribute>Y</distribute>
  2591 + <custom_distribution/>
  2592 + <copies>1</copies>
  2593 + <partitioning>
  2594 + <method>none</method>
  2595 + <schema_name/>
  2596 + </partitioning>
  2597 + <field_to_use>bctype</field_to_use>
  2598 + <target_field>bctype_code</target_field>
  2599 + <non_match_default>&#x672a;&#x77e5;&#x7c7b;&#x578b;</non_match_default>
  2600 + <fields>
  2601 + <field>
  2602 + <source_value>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</source_value>
  2603 + <target_value>normal</target_value>
  2604 + </field>
  2605 + <field>
  2606 + <source_value>&#x51fa;&#x573a;</source_value>
  2607 + <target_value>out</target_value>
  2608 + </field>
  2609 + <field>
  2610 + <source_value>&#x8fdb;&#x573a;</source_value>
  2611 + <target_value>in</target_value>
  2612 + </field>
  2613 + <field>
  2614 + <source_value>&#x52a0;&#x6cb9;</source_value>
  2615 + <target_value>oil</target_value>
  2616 + </field>
  2617 + <field>
  2618 + <source_value>&#x4e34;&#x52a0;</source_value>
  2619 + <target_value>temp</target_value>
  2620 + </field>
  2621 + <field>
  2622 + <source_value>&#x533a;&#x95f4;</source_value>
  2623 + <target_value>region</target_value>
  2624 + </field>
  2625 + <field>
  2626 + <source_value>&#x653e;&#x7a7a;</source_value>
  2627 + <target_value>venting</target_value>
  2628 + </field>
  2629 + <field>
  2630 + <source_value>&#x653e;&#x5927;&#x7ad9;</source_value>
  2631 + <target_value>major</target_value>
  2632 + </field>
  2633 + </fields>
  2634 + <cluster_schema/>
  2635 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2636 + <xloc>333</xloc>
  2637 + <yloc>681</yloc>
  2638 + <draw>Y</draw>
  2639 + </GUI>
  2640 + </step>
  2641 +
  2642 + <step>
  2643 + <name>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 3</name>
  2644 + <type>ValueMapper</type>
  2645 + <description/>
  2646 + <distribute>Y</distribute>
  2647 + <custom_distribution/>
  2648 + <copies>1</copies>
  2649 + <partitioning>
  2650 + <method>none</method>
  2651 + <schema_name/>
  2652 + </partitioning>
  2653 + <field_to_use>bctype</field_to_use>
  2654 + <target_field>bctype_code</target_field>
  2655 + <non_match_default>&#x672a;&#x77e5;&#x7c7b;&#x578b;</non_match_default>
  2656 + <fields>
  2657 + <field>
  2658 + <source_value>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</source_value>
  2659 + <target_value>normal</target_value>
  2660 + </field>
  2661 + <field>
  2662 + <source_value>&#x51fa;&#x573a;</source_value>
  2663 + <target_value>out</target_value>
  2664 + </field>
  2665 + <field>
  2666 + <source_value>&#x8fdb;&#x573a;</source_value>
  2667 + <target_value>in</target_value>
  2668 + </field>
  2669 + <field>
  2670 + <source_value>&#x52a0;&#x6cb9;</source_value>
  2671 + <target_value>oil</target_value>
  2672 + </field>
  2673 + <field>
  2674 + <source_value>&#x4e34;&#x52a0;</source_value>
  2675 + <target_value>temp</target_value>
  2676 + </field>
  2677 + <field>
  2678 + <source_value>&#x533a;&#x95f4;</source_value>
  2679 + <target_value>region</target_value>
  2680 + </field>
  2681 + <field>
  2682 + <source_value>&#x653e;&#x7a7a;</source_value>
  2683 + <target_value>venting</target_value>
  2684 + </field>
  2685 + <field>
  2686 + <source_value>&#x653e;&#x5927;&#x7ad9;</source_value>
  2687 + <target_value>major</target_value>
  2688 + </field>
  2689 + </fields>
  2690 + <cluster_schema/>
  2691 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2692 + <xloc>551</xloc>
  2693 + <yloc>928</yloc>
  2694 + <draw>Y</draw>
  2695 + </GUI>
  2696 + </step>
  2697 +
  2698 + <step>
  2699 + <name>&#x7c7b;&#x578b;&#x4fee;&#x6b63;</name>
  2700 + <type>SelectValues</type>
  2701 + <description/>
  2702 + <distribute>Y</distribute>
  2703 + <custom_distribution/>
  2704 + <copies>1</copies>
  2705 + <partitioning>
  2706 + <method>none</method>
  2707 + <schema_name/>
  2708 + </partitioning>
  2709 + <fields> <select_unspecified>N</select_unspecified>
  2710 + <meta> <name>jhlc</name>
  2711 + <rename>jhlc</rename>
  2712 + <type>Number</type>
  2713 + <length>-2</length>
  2714 + <precision>-2</precision>
  2715 + <conversion_mask/>
  2716 + <date_format_lenient>false</date_format_lenient>
  2717 + <date_format_locale/>
  2718 + <date_format_timezone/>
  2719 + <lenient_string_to_number>false</lenient_string_to_number>
  2720 + <encoding/>
  2721 + <decimal_symbol/>
  2722 + <grouping_symbol/>
  2723 + <currency_symbol/>
  2724 + <storage_type/>
  2725 + </meta> <meta> <name>bcsj</name>
  2726 + <rename>bcsj</rename>
  2727 + <type>Integer</type>
  2728 + <length>-2</length>
  2729 + <precision>-2</precision>
  2730 + <conversion_mask/>
  2731 + <date_format_lenient>false</date_format_lenient>
  2732 + <date_format_locale/>
  2733 + <date_format_timezone/>
  2734 + <lenient_string_to_number>false</lenient_string_to_number>
  2735 + <encoding/>
  2736 + <decimal_symbol/>
  2737 + <grouping_symbol/>
  2738 + <currency_symbol/>
  2739 + <storage_type/>
  2740 + </meta> </fields> <cluster_schema/>
  2741 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2742 + <xloc>146</xloc>
  2743 + <yloc>768</yloc>
  2744 + <draw>Y</draw>
  2745 + </GUI>
  2746 + </step>
  2747 +
  2748 + <step>
  2749 + <name>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 2</name>
  2750 + <type>SelectValues</type>
  2751 + <description/>
  2752 + <distribute>Y</distribute>
  2753 + <custom_distribution/>
  2754 + <copies>1</copies>
  2755 + <partitioning>
  2756 + <method>none</method>
  2757 + <schema_name/>
  2758 + </partitioning>
  2759 + <fields> <select_unspecified>N</select_unspecified>
  2760 + <meta> <name>out_mileage</name>
  2761 + <rename>out_mileage</rename>
  2762 + <type>Number</type>
  2763 + <length>-2</length>
  2764 + <precision>-2</precision>
  2765 + <conversion_mask/>
  2766 + <date_format_lenient>false</date_format_lenient>
  2767 + <date_format_locale/>
  2768 + <date_format_timezone/>
  2769 + <lenient_string_to_number>false</lenient_string_to_number>
  2770 + <encoding/>
  2771 + <decimal_symbol/>
  2772 + <grouping_symbol/>
  2773 + <currency_symbol/>
  2774 + <storage_type/>
  2775 + </meta> <meta> <name>out_time</name>
  2776 + <rename>out_time</rename>
  2777 + <type>Integer</type>
  2778 + <length>-2</length>
  2779 + <precision>-2</precision>
  2780 + <conversion_mask/>
  2781 + <date_format_lenient>false</date_format_lenient>
  2782 + <date_format_locale/>
  2783 + <date_format_timezone/>
  2784 + <lenient_string_to_number>false</lenient_string_to_number>
  2785 + <encoding/>
  2786 + <decimal_symbol/>
  2787 + <grouping_symbol/>
  2788 + <currency_symbol/>
  2789 + <storage_type/>
  2790 + </meta> <meta> <name>sxx</name>
  2791 + <rename>sxx</rename>
  2792 + <type>Integer</type>
  2793 + <length>-2</length>
  2794 + <precision>-2</precision>
  2795 + <conversion_mask/>
  2796 + <date_format_lenient>false</date_format_lenient>
  2797 + <date_format_locale/>
  2798 + <date_format_timezone/>
  2799 + <lenient_string_to_number>false</lenient_string_to_number>
  2800 + <encoding/>
  2801 + <decimal_symbol/>
  2802 + <grouping_symbol/>
  2803 + <currency_symbol/>
  2804 + <storage_type/>
  2805 + </meta> </fields> <cluster_schema/>
  2806 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2807 + <xloc>338</xloc>
  2808 + <yloc>1008</yloc>
  2809 + <draw>Y</draw>
  2810 + </GUI>
  2811 + </step>
  2812 +
  2813 + <step>
  2814 + <name>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 3</name>
  2815 + <type>SelectValues</type>
  2816 + <description/>
  2817 + <distribute>Y</distribute>
  2818 + <custom_distribution/>
  2819 + <copies>1</copies>
  2820 + <partitioning>
  2821 + <method>none</method>
  2822 + <schema_name/>
  2823 + </partitioning>
  2824 + <fields> <select_unspecified>N</select_unspecified>
  2825 + <meta> <name>parade_mileage</name>
  2826 + <rename>parade_mileage</rename>
  2827 + <type>Number</type>
  2828 + <length>-2</length>
  2829 + <precision>-2</precision>
  2830 + <conversion_mask/>
  2831 + <date_format_lenient>false</date_format_lenient>
  2832 + <date_format_locale/>
  2833 + <date_format_timezone/>
  2834 + <lenient_string_to_number>false</lenient_string_to_number>
  2835 + <encoding/>
  2836 + <decimal_symbol/>
  2837 + <grouping_symbol/>
  2838 + <currency_symbol/>
  2839 + <storage_type/>
  2840 + </meta> <meta> <name>parade_time</name>
  2841 + <rename>parade_time</rename>
  2842 + <type>Integer</type>
  2843 + <length>-2</length>
  2844 + <precision>-2</precision>
  2845 + <conversion_mask/>
  2846 + <date_format_lenient>false</date_format_lenient>
  2847 + <date_format_locale/>
  2848 + <date_format_timezone/>
  2849 + <lenient_string_to_number>false</lenient_string_to_number>
  2850 + <encoding/>
  2851 + <decimal_symbol/>
  2852 + <grouping_symbol/>
  2853 + <currency_symbol/>
  2854 + <storage_type/>
  2855 + </meta> <meta> <name>sxx2</name>
  2856 + <rename>sxx2</rename>
  2857 + <type>Integer</type>
  2858 + <length>-2</length>
  2859 + <precision>-2</precision>
  2860 + <conversion_mask/>
  2861 + <date_format_lenient>false</date_format_lenient>
  2862 + <date_format_locale/>
  2863 + <date_format_timezone/>
  2864 + <lenient_string_to_number>false</lenient_string_to_number>
  2865 + <encoding/>
  2866 + <decimal_symbol/>
  2867 + <grouping_symbol/>
  2868 + <currency_symbol/>
  2869 + <storage_type/>
  2870 + </meta> </fields> <cluster_schema/>
  2871 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2872 + <xloc>847</xloc>
  2873 + <yloc>1003</yloc>
  2874 + <draw>Y</draw>
  2875 + </GUI>
  2876 + </step>
  2877 +
  2878 + <step>
  2879 + <name>&#x8ba1;&#x7b97;&#x73ed;&#x6b21;&#x7c7b;&#x578b;</name>
  2880 + <type>ValueMapper</type>
  2881 + <description/>
  2882 + <distribute>Y</distribute>
  2883 + <custom_distribution/>
  2884 + <copies>1</copies>
  2885 + <partitioning>
  2886 + <method>none</method>
  2887 + <schema_name/>
  2888 + </partitioning>
  2889 + <field_to_use>qdzname</field_to_use>
  2890 + <target_field>bctype</target_field>
  2891 + <non_match_default>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</non_match_default>
  2892 + <fields>
  2893 + <field>
  2894 + <source_value>&#x51fa;&#x573a;</source_value>
  2895 + <target_value>&#x51fa;&#x573a;</target_value>
  2896 + </field>
  2897 + <field>
  2898 + <source_value>&#x8fdb;&#x573a;</source_value>
  2899 + <target_value>&#x8fdb;&#x573a;</target_value>
  2900 + </field>
  2901 + </fields>
  2902 + <cluster_schema/>
  2903 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2904 + <xloc>1014</xloc>
  2905 + <yloc>401</yloc>
  2906 + <draw>Y</draw>
  2907 + </GUI>
  2908 + </step>
  2909 +
  2910 + <step>
  2911 + <name>&#x8bb0;&#x5f55;&#x5173;&#x8054; &#x28;&#x7b1b;&#x5361;&#x5c14;&#x8f93;&#x51fa;&#x29;</name>
  2912 + <type>JoinRows</type>
  2913 + <description/>
  2914 + <distribute>Y</distribute>
  2915 + <custom_distribution/>
  2916 + <copies>1</copies>
  2917 + <partitioning>
  2918 + <method>none</method>
  2919 + <schema_name/>
  2920 + </partitioning>
  2921 + <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
  2922 + <prefix>out</prefix>
  2923 + <cache_size>500</cache_size>
  2924 + <main/>
  2925 + <compare>
  2926 +<condition>
  2927 + <negated>N</negated>
  2928 + <leftvalue/>
  2929 + <function>&#x3d;</function>
  2930 + <rightvalue/>
  2931 + </condition>
  2932 + </compare>
  2933 + <cluster_schema/>
  2934 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2935 + <xloc>310</xloc>
  2936 + <yloc>133</yloc>
  2937 + <draw>Y</draw>
  2938 + </GUI>
  2939 + </step>
  2940 +
  2941 + <step>
  2942 + <name>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;&#xff08;&#x53d1;&#x8f66;&#x65f6;&#x95f4;&#x4e3a;&#x7a7a;&#xff09;</name>
  2943 + <type>FilterRows</type>
  2944 + <description/>
  2945 + <distribute>Y</distribute>
  2946 + <custom_distribution/>
  2947 + <copies>1</copies>
  2948 + <partitioning>
  2949 + <method>none</method>
  2950 + <schema_name/>
  2951 + </partitioning>
  2952 +<send_true_to/>
  2953 +<send_false_to/>
  2954 + <compare>
  2955 +<condition>
  2956 + <negated>N</negated>
  2957 + <leftvalue>sendtime</leftvalue>
  2958 + <function>IS NOT NULL</function>
  2959 + <rightvalue/>
  2960 + </condition>
  2961 + </compare>
  2962 + <cluster_schema/>
  2963 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2964 + <xloc>571</xloc>
  2965 + <yloc>44</yloc>
  2966 + <draw>Y</draw>
  2967 + </GUI>
  2968 + </step>
  2969 +
  2970 + <step>
  2971 + <name>&#x8fdb;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x8d77;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</name>
  2972 + <type>ScriptValueMod</type>
  2973 + <description/>
  2974 + <distribute>Y</distribute>
  2975 + <custom_distribution/>
  2976 + <copies>1</copies>
  2977 + <partitioning>
  2978 + <method>none</method>
  2979 + <schema_name/>
  2980 + </partitioning>
  2981 + <compatible>N</compatible>
  2982 + <optimizationLevel>9</optimizationLevel>
  2983 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  2984 + <jsScript_name>Script 1</jsScript_name>
  2985 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;&#x2f;&#x2f; &#x6dfb;&#x52a0;&#x7ad9;&#x70b9;&#x6807;&#x8bc6;&#xa;var cc_groups &#x3d; qdzgroups.split&#x28;&#x22;,&#x22;&#x29;&#x3b; &#x2f;&#x2f; &#x6240;&#x6709;&#x73ed;&#x6b21;&#x8d77;&#x70b9;&#x7ad9;&#x6570;&#x7ec4;&#xa;var qdzname_calcu &#x3d; cc_groups&#x5b;gno - 2&#x5d;&#x3b; &#x2f;&#x2f; &#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x7684;&#x8d77;&#x70b9;&#x7ad9;&#x662f;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ec8;&#x70b9;&#x7ad9;&#xff0c;&#x8fd9;&#x91cc;&#x53ea;&#x6709;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x8d77;&#x70b9;&#x7ad9;&#xff0c;&#x8fd8;&#x9700;&#x8981;&#x8ba1;&#x7b97;&#xa;var startZdtype_calcu &#x3d; &#x27;B&#x27;&#x3b;&#xa;var endZdtype_calcu &#x3d; &#x27;E&#x27;&#x3b;&#xa;&#xa;var destory &#x3d; 0&#x3b; &#x2f;&#x2f; &#x672a;&#x64a4;&#x9500;flag</jsScript_script>
  2986 + </jsScript> </jsScripts> <fields> <field> <name>qdzname_calcu</name>
  2987 + <rename>qdzname_calcu</rename>
  2988 + <type>String</type>
  2989 + <length>-1</length>
  2990 + <precision>-1</precision>
  2991 + <replace>N</replace>
  2992 + </field> <field> <name>startZdtype_calcu</name>
  2993 + <rename>startZdtype_calcu</rename>
  2994 + <type>String</type>
  2995 + <length>-1</length>
  2996 + <precision>-1</precision>
  2997 + <replace>N</replace>
  2998 + </field> <field> <name>endZdtype_calcu</name>
  2999 + <rename>endZdtype_calcu</rename>
  3000 + <type>String</type>
  3001 + <length>-1</length>
  3002 + <precision>-1</precision>
  3003 + <replace>N</replace>
  3004 + </field> <field> <name>destory</name>
  3005 + <rename>destory</rename>
  3006 + <type>Integer</type>
  3007 + <length>-1</length>
  3008 + <precision>-1</precision>
  3009 + <replace>N</replace>
  3010 + </field> </fields> <cluster_schema/>
  3011 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3012 + <xloc>754</xloc>
  3013 + <yloc>610</yloc>
  3014 + <draw>Y</draw>
  3015 + </GUI>
  3016 + </step>
  3017 +
  3018 + <step>
  3019 + <name>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</name>
  3020 + <type>Dummy</type>
  3021 + <description/>
  3022 + <distribute>Y</distribute>
  3023 + <custom_distribution/>
  3024 + <copies>1</copies>
  3025 + <partitioning>
  3026 + <method>none</method>
  3027 + <schema_name/>
  3028 + </partitioning>
  3029 + <cluster_schema/>
  3030 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3031 + <xloc>997</xloc>
  3032 + <yloc>606</yloc>
  3033 + <draw>Y</draw>
  3034 + </GUI>
  3035 + </step>
  3036 +
  3037 + <step_error_handling>
  3038 + <error>
  3039 + <source_step>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail</source_step>
  3040 + <target_step/>
  3041 + <is_enabled>Y</is_enabled>
  3042 + <nr_valuename>c1</nr_valuename>
  3043 + <descriptions_valuename>c2</descriptions_valuename>
  3044 + <fields_valuename>c3</fields_valuename>
  3045 + <codes_valuename>c4</codes_valuename>
  3046 + <max_errors/>
  3047 + <max_pct_errors/>
  3048 + <min_pct_rows/>
  3049 + </error>
  3050 + </step_error_handling>
  3051 + <slave-step-copy-partition-distribution>
  3052 +</slave-step-copy-partition-distribution>
  3053 + <slave_transformation>N</slave_transformation>
  3054 +
  3055 +</transformation>
... ...
src/main/resources/datatools/ktrs/ttinfodetailDataInput2.ktr
1   -<?xml version="1.0" encoding="UTF-8"?>
2   -<transformation>
3   - <info>
4   - <name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x5bfc;&#x5165;2</name>
5   - <description>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;&#x5bfc;&#x5165;</description>
6   - <extended_description>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;</extended_description>
7   - <trans_version/>
8   - <trans_type>Normal</trans_type>
9   - <trans_status>0</trans_status>
10   - <directory>&#x2f;</directory>
11   - <parameters>
12   - </parameters>
13   - <log>
14   -<trans-log-table><connection/>
15   -<schema/>
16   -<table/>
17   -<size_limit_lines/>
18   -<interval/>
19   -<timeout_days/>
20   -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STATUS</id><enabled>Y</enabled><name>STATUS</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name><subject/></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name><subject/></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name><subject/></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name><subject/></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name><subject/></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name><subject/></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>STARTDATE</id><enabled>Y</enabled><name>STARTDATE</name></field><field><id>ENDDATE</id><enabled>Y</enabled><name>ENDDATE</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>DEPDATE</id><enabled>Y</enabled><name>DEPDATE</name></field><field><id>REPLAYDATE</id><enabled>Y</enabled><name>REPLAYDATE</name></field><field><id>LOG_FIELD</id><enabled>Y</enabled><name>LOG_FIELD</name></field><field><id>EXECUTING_SERVER</id><enabled>N</enabled><name>EXECUTING_SERVER</name></field><field><id>EXECUTING_USER</id><enabled>N</enabled><name>EXECUTING_USER</name></field><field><id>CLIENT</id><enabled>N</enabled><name>CLIENT</name></field></trans-log-table>
21   -<perf-log-table><connection/>
22   -<schema/>
23   -<table/>
24   -<interval/>
25   -<timeout_days/>
26   -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>SEQ_NR</id><enabled>Y</enabled><name>SEQ_NR</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>INPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>INPUT_BUFFER_ROWS</name></field><field><id>OUTPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>OUTPUT_BUFFER_ROWS</name></field></perf-log-table>
27   -<channel-log-table><connection/>
28   -<schema/>
29   -<table/>
30   -<timeout_days/>
31   -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>LOGGING_OBJECT_TYPE</id><enabled>Y</enabled><name>LOGGING_OBJECT_TYPE</name></field><field><id>OBJECT_NAME</id><enabled>Y</enabled><name>OBJECT_NAME</name></field><field><id>OBJECT_COPY</id><enabled>Y</enabled><name>OBJECT_COPY</name></field><field><id>REPOSITORY_DIRECTORY</id><enabled>Y</enabled><name>REPOSITORY_DIRECTORY</name></field><field><id>FILENAME</id><enabled>Y</enabled><name>FILENAME</name></field><field><id>OBJECT_ID</id><enabled>Y</enabled><name>OBJECT_ID</name></field><field><id>OBJECT_REVISION</id><enabled>Y</enabled><name>OBJECT_REVISION</name></field><field><id>PARENT_CHANNEL_ID</id><enabled>Y</enabled><name>PARENT_CHANNEL_ID</name></field><field><id>ROOT_CHANNEL_ID</id><enabled>Y</enabled><name>ROOT_CHANNEL_ID</name></field></channel-log-table>
32   -<step-log-table><connection/>
33   -<schema/>
34   -<table/>
35   -<timeout_days/>
36   -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>LOG_FIELD</id><enabled>N</enabled><name>LOG_FIELD</name></field></step-log-table>
37   -<metrics-log-table><connection/>
38   -<schema/>
39   -<table/>
40   -<timeout_days/>
41   -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>METRICS_DATE</id><enabled>Y</enabled><name>METRICS_DATE</name></field><field><id>METRICS_CODE</id><enabled>Y</enabled><name>METRICS_CODE</name></field><field><id>METRICS_DESCRIPTION</id><enabled>Y</enabled><name>METRICS_DESCRIPTION</name></field><field><id>METRICS_SUBJECT</id><enabled>Y</enabled><name>METRICS_SUBJECT</name></field><field><id>METRICS_TYPE</id><enabled>Y</enabled><name>METRICS_TYPE</name></field><field><id>METRICS_VALUE</id><enabled>Y</enabled><name>METRICS_VALUE</name></field></metrics-log-table>
42   - </log>
43   - <maxdate>
44   - <connection/>
45   - <table/>
46   - <field/>
47   - <offset>0.0</offset>
48   - <maxdiff>0.0</maxdiff>
49   - </maxdate>
50   - <size_rowset>10000</size_rowset>
51   - <sleep_time_empty>50</sleep_time_empty>
52   - <sleep_time_full>50</sleep_time_full>
53   - <unique_connections>N</unique_connections>
54   - <feedback_shown>Y</feedback_shown>
55   - <feedback_size>50000</feedback_size>
56   - <using_thread_priorities>Y</using_thread_priorities>
57   - <shared_objects_file/>
58   - <capture_step_performance>N</capture_step_performance>
59   - <step_performance_capturing_delay>1000</step_performance_capturing_delay>
60   - <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit>
61   - <dependencies>
62   - </dependencies>
63   - <partitionschemas>
64   - </partitionschemas>
65   - <slaveservers>
66   - </slaveservers>
67   - <clusterschemas>
68   - </clusterschemas>
69   - <created_user>-</created_user>
70   - <created_date>2016&#x2f;06&#x2f;30 12&#x3a;21&#x3a;57.536</created_date>
71   - <modified_user>-</modified_user>
72   - <modified_date>2016&#x2f;06&#x2f;30 12&#x3a;21&#x3a;57.536</modified_date>
73   - <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA&#x3d;</key_for_session_key>
74   - <is_key_private>N</is_key_private>
75   - </info>
76   - <notepads>
77   - <notepad>
78   - <note>&#x5b57;&#x5178;&#x8868;&#x5bf9;&#x5e94;&#xff08;&#x4ee5;&#x540e;&#x76f4;&#x63a5;&#x67e5;&#x627e;&#x8868; bsth_c_sys_dictionary&#xff09;&#xa;&#x7c7b;&#x578b; &#x4ee3;&#x7801; &#x540d;&#x79f0;&#xa;LineTrend 0 &#x4e0a;&#x884c;&#xa;LineTrend 1 &#x4e0b;&#x884c;&#xa;ScheduleType normal &#x6b63;&#x5e38;&#x73ed;&#x6b21;&#xa;ScheduleType out &#x51fa;&#x573a;&#xa;ScheduleType in &#x8fdb;&#x573a;&#xa;ScheduleType temp &#x4e34;&#x52a0;&#xa;ScheduleType region &#x533a;&#x95f4;&#xa;ScheduleType venting &#x653e;&#x7a7a;&#xa;ScheduleType major &#x653e;&#x5927;&#x7ad9;</note>
79   - <xloc>606</xloc>
80   - <yloc>129</yloc>
81   - <width>332</width>
82   - <heigth>186</heigth>
83   - <fontname>YaHei Consolas Hybrid</fontname>
84   - <fontsize>12</fontsize>
85   - <fontbold>N</fontbold>
86   - <fontitalic>N</fontitalic>
87   - <fontcolorred>0</fontcolorred>
88   - <fontcolorgreen>0</fontcolorgreen>
89   - <fontcolorblue>0</fontcolorblue>
90   - <backgroundcolorred>255</backgroundcolorred>
91   - <backgroundcolorgreen>205</backgroundcolorgreen>
92   - <backgroundcolorblue>112</backgroundcolorblue>
93   - <bordercolorred>100</bordercolorred>
94   - <bordercolorgreen>100</bordercolorgreen>
95   - <bordercolorblue>100</bordercolorblue>
96   - <drawshadow>Y</drawshadow>
97   - </notepad>
98   - <notepad>
99   - <note>&#x56e0;&#x4e3a;&#x65f6;&#x523b;&#x8868;&#x8f93;&#x5165;&#x683c;&#x5f0f;&#x4e0d;&#x786e;&#x5b9a;&#x6027;&#xff0c;&#x4e3b;&#x8981;&#x56e0;&#x4e3a;&#x8868;&#x7ed3;&#x6784;&#x662f;&#x53cd;&#x8303;&#x5f0f;&#x5316;&#x7684;&#xff0c;&#xa;&#x6240;&#x4ee5;&#x9700;&#x8981;&#x5916;&#x90e8;&#x52a8;&#x6001;&#x6307;&#x5b9a;&#x613f;&#x6570;&#x636e;&#xff0c;&#x5934;&#x4e09;&#x4e2a;step&#x52a8;&#x6001;&#x6307;&#x5b9a;&#x613f;&#x6570;&#x636e;&#xa;&#xa;</note>
100   - <xloc>79</xloc>
101   - <yloc>206</yloc>
102   - <width>346</width>
103   - <heigth>74</heigth>
104   - <fontname>YaHei Consolas Hybrid</fontname>
105   - <fontsize>12</fontsize>
106   - <fontbold>N</fontbold>
107   - <fontitalic>N</fontitalic>
108   - <fontcolorred>0</fontcolorred>
109   - <fontcolorgreen>0</fontcolorgreen>
110   - <fontcolorblue>0</fontcolorblue>
111   - <backgroundcolorred>255</backgroundcolorred>
112   - <backgroundcolorgreen>205</backgroundcolorgreen>
113   - <backgroundcolorblue>112</backgroundcolorblue>
114   - <bordercolorred>100</bordercolorred>
115   - <bordercolorgreen>100</bordercolorgreen>
116   - <bordercolorblue>100</bordercolorblue>
117   - <drawshadow>Y</drawshadow>
118   - </notepad>
119   - <notepad>
120   - <note>&#x8fd9;&#x91cc;&#x6709;&#x4e9b;&#x95ee;&#x9898;&#xa;&#x5728;window2012&#x7684;&#x73af;&#x5883;&#x4e0b;&#xff0c;&#xa;MySql&#x6570;&#x636e;&#x5e93;&#x67e5;&#x8be2;&#x4e2d;&#x5982;&#x679c;&#x8fd4;&#x56de;&#x4e2d;&#x6587;&#x5185;&#x5bb9;&#x7684;&#x5b57;&#x6bb5;&#xff0c;&#x8fd9;&#x4e2a;&#x5185;&#x5bb9;&#x4e71;&#x7801;&#xa;&#x89e3;&#x51b3;&#x529e;&#x6cd5;&#xff0c;&#x5c31;&#x662f;&#x6570;&#x636e;&#x5e93;&#x67e5;&#x8be2;&#x5168;&#x90e8;&#x7f13;&#x5b58;&#xff0c;&#x5c31;&#x4e0d;&#x4e71;&#x7801;&#xa;linux&#x73af;&#x5883;&#x4e0b;&#x6ca1;&#x95ee;&#x9898;</note>
121   - <xloc>721</xloc>
122   - <yloc>762</yloc>
123   - <width>333</width>
124   - <heigth>90</heigth>
125   - <fontname>YaHei Consolas Hybrid</fontname>
126   - <fontsize>12</fontsize>
127   - <fontbold>N</fontbold>
128   - <fontitalic>N</fontitalic>
129   - <fontcolorred>0</fontcolorred>
130   - <fontcolorgreen>0</fontcolorgreen>
131   - <fontcolorblue>0</fontcolorblue>
132   - <backgroundcolorred>255</backgroundcolorred>
133   - <backgroundcolorgreen>205</backgroundcolorgreen>
134   - <backgroundcolorblue>112</backgroundcolorblue>
135   - <bordercolorred>100</bordercolorred>
136   - <bordercolorgreen>100</bordercolorgreen>
137   - <bordercolorblue>100</bordercolorblue>
138   - <drawshadow>Y</drawshadow>
139   - </notepad>
140   - <notepad>
141   - <note>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#xff0c;&#x65b9;&#x5411;&#x6709;&#x65f6;&#x786e;&#x5b9a;&#x4e0d;&#x51c6;&#xff0c;&#xa;&#x7a7a;&#x7684;&#x60c5;&#x51b5;&#x4e0b;&#x8bbe;&#x5b9a;&#x4e3a;0&#xff08;&#x4e0a;&#x884c;&#xff09;</note>
142   - <xloc>104</xloc>
143   - <yloc>939</yloc>
144   - <width>178</width>
145   - <heigth>42</heigth>
146   - <fontname>YaHei Consolas Hybrid</fontname>
147   - <fontsize>12</fontsize>
148   - <fontbold>N</fontbold>
149   - <fontitalic>N</fontitalic>
150   - <fontcolorred>0</fontcolorred>
151   - <fontcolorgreen>0</fontcolorgreen>
152   - <fontcolorblue>0</fontcolorblue>
153   - <backgroundcolorred>255</backgroundcolorred>
154   - <backgroundcolorgreen>205</backgroundcolorgreen>
155   - <backgroundcolorblue>112</backgroundcolorblue>
156   - <bordercolorred>100</bordercolorred>
157   - <bordercolorgreen>100</bordercolorgreen>
158   - <bordercolorblue>100</bordercolorblue>
159   - <drawshadow>Y</drawshadow>
160   - </notepad>
161   - <notepad>
162   - <note>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#xff0c;&#x65b9;&#x5411;&#x6709;&#x65f6;&#x786e;&#x5b9a;&#x4e0d;&#x51c6;&#xff0c;&#xa;&#x7a7a;&#x7684;&#x60c5;&#x51b5;&#x4e0b;&#x8bbe;&#x5b9a;&#x4e3a;0&#xff08;&#x4e0a;&#x884c;&#xff09;</note>
163   - <xloc>578</xloc>
164   - <yloc>1084</yloc>
165   - <width>178</width>
166   - <heigth>42</heigth>
167   - <fontname>YaHei Consolas Hybrid</fontname>
168   - <fontsize>12</fontsize>
169   - <fontbold>N</fontbold>
170   - <fontitalic>N</fontitalic>
171   - <fontcolorred>0</fontcolorred>
172   - <fontcolorgreen>0</fontcolorgreen>
173   - <fontcolorblue>0</fontcolorblue>
174   - <backgroundcolorred>255</backgroundcolorred>
175   - <backgroundcolorgreen>205</backgroundcolorgreen>
176   - <backgroundcolorblue>112</backgroundcolorblue>
177   - <bordercolorred>100</bordercolorred>
178   - <bordercolorgreen>100</bordercolorgreen>
179   - <bordercolorblue>100</bordercolorblue>
180   - <drawshadow>Y</drawshadow>
181   - </notepad>
182   - </notepads>
183   - <connection>
184   - <name>192.168.168.1_jwgl_dw</name>
185   - <server>192.168.168.1</server>
186   - <type>ORACLE</type>
187   - <access>Native</access>
188   - <database>orcl</database>
189   - <port>1521</port>
190   - <username>jwgl_dw</username>
191   - <password>Encrypted 2be98afc86aa7f2e4cb13b977d2adabcd</password>
192   - <servername/>
193   - <data_tablespace/>
194   - <index_tablespace/>
195   - <attributes>
196   - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
197   - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
198   - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
199   - <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
200   - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
201   - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
202   - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
203   - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
204   - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
205   - </attributes>
206   - </connection>
207   - <connection>
208   - <name>bus_control_variable</name>
209   - <server>&#x24;&#x7b;v_db_ip&#x7d;</server>
210   - <type>MYSQL</type>
211   - <access>Native</access>
212   - <database>&#x24;&#x7b;v_db_dname&#x7d;</database>
213   - <port>3306</port>
214   - <username>&#x24;&#x7b;v_db_uname&#x7d;</username>
215   - <password>&#x24;&#x7b;v_db_pwd&#x7d;</password>
216   - <servername/>
217   - <data_tablespace/>
218   - <index_tablespace/>
219   - <attributes>
220   - <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
221   - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
222   - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
223   - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
224   - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
225   - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
226   - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
227   - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
228   - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
229   - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
230   - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
231   - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
232   - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
233   - </attributes>
234   - </connection>
235   - <connection>
236   - <name>bus_control_&#x516c;&#x53f8;_201</name>
237   - <server>localhost</server>
238   - <type>MYSQL</type>
239   - <access>Native</access>
240   - <database>control</database>
241   - <port>3306</port>
242   - <username>root</username>
243   - <password>Encrypted </password>
244   - <servername/>
245   - <data_tablespace/>
246   - <index_tablespace/>
247   - <attributes>
248   - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
249   - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
250   - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
251   - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
252   - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
253   - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
254   - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
255   - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
256   - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
257   - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
258   - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
259   - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
260   - </attributes>
261   - </connection>
262   - <connection>
263   - <name>bus_control_&#x672c;&#x673a;</name>
264   - <server>localhost</server>
265   - <type>MYSQL</type>
266   - <access>Native</access>
267   - <database>control</database>
268   - <port>3306</port>
269   - <username>root</username>
270   - <password>Encrypted </password>
271   - <servername/>
272   - <data_tablespace/>
273   - <index_tablespace/>
274   - <attributes>
275   - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
276   - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
277   - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
278   - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
279   - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
280   - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
281   - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
282   - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
283   - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
284   - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
285   - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
286   - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
287   - </attributes>
288   - </connection>
289   - <connection>
290   - <name>xlab_mysql_youle</name>
291   - <server>101.231.124.8</server>
292   - <type>MYSQL</type>
293   - <access>Native</access>
294   - <database>xlab_youle</database>
295   - <port>45687</port>
296   - <username>xlab-youle</username>
297   - <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password>
298   - <servername/>
299   - <data_tablespace/>
300   - <index_tablespace/>
301   - <attributes>
302   - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
303   - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
304   - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
305   - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
306   - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
307   - <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute>
308   - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
309   - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
310   - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
311   - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
312   - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
313   - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
314   - </attributes>
315   - </connection>
316   - <connection>
317   - <name>xlab_mysql_youle&#xff08;&#x672c;&#x673a;&#xff09;</name>
318   - <server>localhost</server>
319   - <type>MYSQL</type>
320   - <access>Native</access>
321   - <database>xlab_youle</database>
322   - <port>3306</port>
323   - <username>root</username>
324   - <password>Encrypted </password>
325   - <servername/>
326   - <data_tablespace/>
327   - <index_tablespace/>
328   - <attributes>
329   - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
330   - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
331   - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
332   - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
333   - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
334   - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
335   - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
336   - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
337   - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
338   - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
339   - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
340   - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
341   - </attributes>
342   - </connection>
343   - <connection>
344   - <name>xlab_youle</name>
345   - <server/>
346   - <type>MYSQL</type>
347   - <access>JNDI</access>
348   - <database>xlab_youle</database>
349   - <port>1521</port>
350   - <username/>
351   - <password>Encrypted </password>
352   - <servername/>
353   - <data_tablespace/>
354   - <index_tablespace/>
355   - <attributes>
356   - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
357   - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
358   - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
359   - <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
360   - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
361   - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
362   - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
363   - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
364   - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
365   - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
366   - </attributes>
367   - </connection>
368   - <order>
369   - <hop> <from>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</from><to>&#x73ed;&#x6b21;&#x6570;&#x636e;&#x8303;&#x5f0f;&#x5316;</to><enabled>Y</enabled> </hop>
370   - <hop> <from>&#x6dfb;&#x52a0;&#x53d1;&#x8f66;&#x987a;&#x5e8f;&#x53f7;</from><to>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;&#xff08;&#x53d1;&#x8f66;&#x65f6;&#x95f4;&#x4e3a;&#x7a7a;&#xff09;</to><enabled>Y</enabled> </hop>
371   - <hop> <from>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;&#xff08;&#x53d1;&#x8f66;&#x65f6;&#x95f4;&#x4e3a;&#x7a7a;&#xff09;</from><to>&#x6dfb;&#x52a0;&#x5bf9;&#x5e94;&#x73ed;&#x6b21;&#x6570;</to><enabled>Y</enabled> </hop>
372   - <hop> <from>&#x6dfb;&#x52a0;&#x5bf9;&#x5e94;&#x73ed;&#x6b21;&#x6570;</from><to>&#x5904;&#x7406;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
373   - <hop> <from>&#x5904;&#x7406;&#x6570;&#x636e;</from><to>&#x5206;&#x7ec4;&#x5404;&#x4e2a;&#x8def;&#x724c;&#x7684;&#x7ad9;</to><enabled>Y</enabled> </hop>
374   - <hop> <from>&#x67e5;&#x627e;&#x65f6;&#x523b;&#x8868;&#x57fa;&#x7840;&#x4fe1;&#x606f;&#x5173;&#x8054;</from><to>&#x67e5;&#x627e;&#x8def;&#x724c;&#x5173;&#x8054;</to><enabled>Y</enabled> </hop>
375   - <hop> <from>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x5173;&#x8054;</from><to>&#x67e5;&#x627e;&#x65f6;&#x523b;&#x8868;&#x57fa;&#x7840;&#x4fe1;&#x606f;&#x5173;&#x8054;</to><enabled>Y</enabled> </hop>
376   - <hop> <from>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178;</from><to>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178;</to><enabled>Y</enabled> </hop>
377   - <hop> <from>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 2</from><to>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 2</to><enabled>Y</enabled> </hop>
378   - <hop> <from>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 3</from><to>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 3</to><enabled>Y</enabled> </hop>
379   - <hop> <from>&#x5339;&#x914d;&#x4e0a;&#x4e0b;&#x884c;&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</from><to>&#x7c7b;&#x578b;&#x4fee;&#x6b63;</to><enabled>Y</enabled> </hop>
380   - <hop> <from>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;1</from><to>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</to><enabled>Y</enabled> </hop>
381   - <hop> <from>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;1</from><to>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
382   - <hop> <from>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</from><to>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
383   - <hop> <from>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</from><to>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
384   - <hop> <from>&#x67e5;&#x627e;&#x6240;&#x6709;&#x7ebf;&#x8def;&#x4e0a;&#x4e0b;&#x884c;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</from><to>&#x5339;&#x914d;&#x4e0a;&#x4e0b;&#x884c;&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>
385   - <hop> <from>&#x67e5;&#x627e;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;</from><to>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178;</to><enabled>Y</enabled> </hop>
386   - <hop> <from>&#x67e5;&#x627e;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</from><to>&#x67e5;&#x627e;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;</to><enabled>Y</enabled> </hop>
387   - <hop> <from>&#x6b63;&#x5e38;&#x73ed;&#x6b21;_&#x5904;&#x7406;&#x6570;&#x636e;</from><to>&#x67e5;&#x627e;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</to><enabled>Y</enabled> </hop>
388   - <hop> <from>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</from><to>&#x6b63;&#x5e38;&#x73ed;&#x6b21;_&#x5904;&#x7406;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
389   - <hop> <from>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178;</from><to>&#x67e5;&#x627e;&#x6240;&#x6709;&#x7ebf;&#x8def;&#x4e0a;&#x4e0b;&#x884c;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>
390   - <hop> <from>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 2</from><to>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x51fa;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>
391   - <hop> <from>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 3</from><to>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x8fdb;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>
392   - <hop> <from>&#x67e5;&#x627e;&#x8def;&#x724c;&#x5173;&#x8054;</from><to>&#x8ba1;&#x7b97;&#x73ed;&#x6b21;&#x7c7b;&#x578b;</to><enabled>Y</enabled> </hop>
393   - <hop> <from>&#x8ba1;&#x7b97;&#x73ed;&#x6b21;&#x7c7b;&#x578b;</from><to>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;1</to><enabled>Y</enabled> </hop>
394   - <hop> <from>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</from><to>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;1</to><enabled>Y</enabled> </hop>
395   - <hop> <from>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;1</from><to>&#x51fa;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x7ec8;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</to><enabled>Y</enabled> </hop>
396   - <hop> <from>&#x51fa;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x7ec8;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</from><to>&#x67e5;&#x627e;&#x51fa;&#x573a;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</to><enabled>Y</enabled> </hop>
397   - <hop> <from>&#x67e5;&#x627e;&#x51fa;&#x573a;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</from><to>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 2</to><enabled>Y</enabled> </hop>
398   - <hop> <from>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</from><to>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;2</to><enabled>Y</enabled> </hop>
399   - <hop> <from>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;2</from><to>&#x8fdb;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x8d77;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</to><enabled>Y</enabled> </hop>
400   - <hop> <from>&#x8fdb;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x8d77;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</from><to>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ebf;&#x8def;&#x65b9;&#x5411;</to><enabled>Y</enabled> </hop>
401   - <hop> <from>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ebf;&#x8def;&#x65b9;&#x5411;</from><to>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ec8;&#x70b9;&#x7ad9;&#xff0c;&#x5e76;&#x4f5c;&#x4e3a;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x7684;&#x8d77;&#x70b9;&#x7ad9;</to><enabled>Y</enabled> </hop>
402   - <hop> <from>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</from><to>&#x6dfb;&#x52a0;&#x53d1;&#x8f66;&#x987a;&#x5e8f;&#x53f7;</to><enabled>Y</enabled> </hop>
403   - <hop> <from>&#x5206;&#x7ec4;&#x5404;&#x4e2a;&#x8def;&#x724c;&#x7684;&#x7ad9;</from><to>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x5173;&#x8054;</to><enabled>Y</enabled> </hop>
404   - <hop> <from>&#x589e;&#x52a0;&#x65f6;&#x523b;&#x8868;&#x540d;&#x5b57;&#xff0c;&#x7ebf;&#x8def;&#x540d;&#x5b57;&#xff0c;&#x505c;&#x8f66;&#x573a;&#x540d;&#x5b57;</from><to>&#x8bb0;&#x5f55;&#x5173;&#x8054; &#x28;&#x7b1b;&#x5361;&#x5c14;&#x8f93;&#x51fa;&#x29;</to><enabled>Y</enabled> </hop>
405   - <hop> <from>&#x73ed;&#x6b21;&#x6570;&#x636e;&#x8303;&#x5f0f;&#x5316;</from><to>&#x8bb0;&#x5f55;&#x5173;&#x8054; &#x28;&#x7b1b;&#x5361;&#x5c14;&#x8f93;&#x51fa;&#x29;</to><enabled>Y</enabled> </hop>
406   - <hop> <from>&#x8bb0;&#x5f55;&#x5173;&#x8054; &#x28;&#x7b1b;&#x5361;&#x5c14;&#x8f93;&#x51fa;&#x29;</from><to>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</to><enabled>Y</enabled> </hop>
407   - <hop> <from>&#x7c7b;&#x578b;&#x4fee;&#x6b63;</from><to>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail</to><enabled>Y</enabled> </hop>
408   - <hop> <from>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ec8;&#x70b9;&#x7ad9;&#xff0c;&#x5e76;&#x4f5c;&#x4e3a;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x7684;&#x8d77;&#x70b9;&#x7ad9;</from><to>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</to><enabled>Y</enabled> </hop>
409   - <hop> <from>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</from><to>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 3</to><enabled>Y</enabled> </hop>
410   - <hop> <from>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x51fa;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</from><to>&#x5339;&#x914d;&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>
411   - <hop> <from>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x8fdb;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</from><to>&#x5339;&#x914d;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>
412   - <hop> <from>&#x5339;&#x914d;&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</from><to>&#x4e0a;&#x4e0b;&#x884c;NULL&#x5224;&#x5b9a;</to><enabled>Y</enabled> </hop>
413   - <hop> <from>&#x4e0a;&#x4e0b;&#x884c;NULL&#x5224;&#x5b9a;</from><to>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 2</to><enabled>Y</enabled> </hop>
414   - <hop> <from>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 2</from><to>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail 2</to><enabled>Y</enabled> </hop>
415   - <hop> <from>&#x5339;&#x914d;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</from><to>&#x4e0a;&#x4e0b;&#x884c;&#x5224;&#x5b9a; 2</to><enabled>Y</enabled> </hop>
416   - <hop> <from>&#x4e0a;&#x4e0b;&#x884c;&#x5224;&#x5b9a; 2</from><to>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 3</to><enabled>Y</enabled> </hop>
417   - <hop> <from>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 3</from><to>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail 3</to><enabled>Y</enabled> </hop>
418   - </order>
419   - <step>
420   - <name>&#x4e0a;&#x4e0b;&#x884c;NULL&#x5224;&#x5b9a;</name>
421   - <type>IfNull</type>
422   - <description/>
423   - <distribute>Y</distribute>
424   - <custom_distribution/>
425   - <copies>1</copies>
426   - <partitioning>
427   - <method>none</method>
428   - <schema_name/>
429   - </partitioning>
430   - <replaceAllByValue/>
431   - <replaceAllMask/>
432   - <selectFields>Y</selectFields>
433   - <selectValuesType>N</selectValuesType>
434   - <setEmptyStringAll>N</setEmptyStringAll>
435   - <valuetypes>
436   - </valuetypes>
437   - <fields>
438   - <field>
439   - <name>sxx</name>
440   - <value>0</value>
441   - <mask/>
442   - <set_empty_string>N</set_empty_string>
443   - </field>
444   - </fields>
445   - <cluster_schema/>
446   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
447   - <xloc>335</xloc>
448   - <yloc>938</yloc>
449   - <draw>Y</draw>
450   - </GUI>
451   - </step>
452   -
453   - <step>
454   - <name>&#x4e0a;&#x4e0b;&#x884c;&#x5224;&#x5b9a; 2</name>
455   - <type>IfNull</type>
456   - <description/>
457   - <distribute>Y</distribute>
458   - <custom_distribution/>
459   - <copies>1</copies>
460   - <partitioning>
461   - <method>none</method>
462   - <schema_name/>
463   - </partitioning>
464   - <replaceAllByValue/>
465   - <replaceAllMask/>
466   - <selectFields>Y</selectFields>
467   - <selectValuesType>N</selectValuesType>
468   - <setEmptyStringAll>N</setEmptyStringAll>
469   - <valuetypes>
470   - </valuetypes>
471   - <fields>
472   - <field>
473   - <name>sxx2</name>
474   - <value>0</value>
475   - <mask/>
476   - <set_empty_string>N</set_empty_string>
477   - </field>
478   - </fields>
479   - <cluster_schema/>
480   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
481   - <xloc>804</xloc>
482   - <yloc>1081</yloc>
483   - <draw>Y</draw>
484   - </GUI>
485   - </step>
486   -
487   - <step>
488   - <name>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178;</name>
489   - <type>ValueMapper</type>
490   - <description/>
491   - <distribute>Y</distribute>
492   - <custom_distribution/>
493   - <copies>1</copies>
494   - <partitioning>
495   - <method>none</method>
496   - <schema_name/>
497   - </partitioning>
498   - <field_to_use>sxx</field_to_use>
499   - <target_field>sxx_desc</target_field>
500   - <non_match_default/>
501   - <fields>
502   - <field>
503   - <source_value>0</source_value>
504   - <target_value>&#x4e0a;&#x884c;</target_value>
505   - </field>
506   - <field>
507   - <source_value>1</source_value>
508   - <target_value>&#x4e0b;&#x884c;</target_value>
509   - </field>
510   - </fields>
511   - <cluster_schema/>
512   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
513   - <xloc>147</xloc>
514   - <yloc>403</yloc>
515   - <draw>Y</draw>
516   - </GUI>
517   - </step>
518   -
519   - <step>
520   - <name>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 2</name>
521   - <type>ValueMapper</type>
522   - <description/>
523   - <distribute>Y</distribute>
524   - <custom_distribution/>
525   - <copies>1</copies>
526   - <partitioning>
527   - <method>none</method>
528   - <schema_name/>
529   - </partitioning>
530   - <field_to_use>sxx</field_to_use>
531   - <target_field>sxx_desc</target_field>
532   - <non_match_default/>
533   - <fields>
534   - <field>
535   - <source_value>0</source_value>
536   - <target_value>&#x4e0a;&#x884c;</target_value>
537   - </field>
538   - <field>
539   - <source_value>1</source_value>
540   - <target_value>&#x4e0b;&#x884c;</target_value>
541   - </field>
542   - </fields>
543   - <cluster_schema/>
544   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
545   - <xloc>331</xloc>
546   - <yloc>598</yloc>
547   - <draw>Y</draw>
548   - </GUI>
549   - </step>
550   -
551   - <step>
552   - <name>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 3</name>
553   - <type>ValueMapper</type>
554   - <description/>
555   - <distribute>Y</distribute>
556   - <custom_distribution/>
557   - <copies>1</copies>
558   - <partitioning>
559   - <method>none</method>
560   - <schema_name/>
561   - </partitioning>
562   - <field_to_use>sxx</field_to_use>
563   - <target_field>sxx_desc</target_field>
564   - <non_match_default/>
565   - <fields>
566   - <field>
567   - <source_value>0</source_value>
568   - <target_value>&#x4e0a;&#x884c;</target_value>
569   - </field>
570   - <field>
571   - <source_value>1</source_value>
572   - <target_value>&#x4e0b;&#x884c;</target_value>
573   - </field>
574   - </fields>
575   - <cluster_schema/>
576   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
577   - <xloc>553</xloc>
578   - <yloc>859</yloc>
579   - <draw>Y</draw>
580   - </GUI>
581   - </step>
582   -
583   - <step>
584   - <name>&#x51fa;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x7ec8;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</name>
585   - <type>ScriptValueMod</type>
586   - <description/>
587   - <distribute>Y</distribute>
588   - <custom_distribution/>
589   - <copies>1</copies>
590   - <partitioning>
591   - <method>none</method>
592   - <schema_name/>
593   - </partitioning>
594   - <compatible>N</compatible>
595   - <optimizationLevel>9</optimizationLevel>
596   - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
597   - <jsScript_name>Script 1</jsScript_name>
598   - <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;&#x2f;&#x2f; &#x6dfb;&#x52a0;&#x7ad9;&#x70b9;&#x6807;&#x8bc6;&#xa;var cc_groups &#x3d; qdzgroups.split&#x28;&#x22;,&#x22;&#x29;&#x3b; &#x2f;&#x2f; &#x6240;&#x6709;&#x73ed;&#x6b21;&#x8d77;&#x70b9;&#x7ad9;&#x6570;&#x7ec4;&#xa;var zdzname &#x3d; cc_groups&#x5b;gno&#x5d;&#x3b; &#x2f;&#x2f; &#x51fa;&#x573a;&#x73ed;&#x6b21;&#x7684;&#x7ec8;&#x70b9;&#x7ad9;&#x662f;&#x4e0b;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x8d77;&#x59cb;&#x7ad9;&#xa;var endZdtype &#x3d; &#x27;B&#x27;&#x3b;&#xa;&#x2f;&#x2f; var endZdtype &#x3d; &#x27;E&#x27;&#x3b;&#xa;&#xa;var destory &#x3d; 0&#x3b; &#x2f;&#x2f; &#x672a;&#x64a4;&#x9500;flag</jsScript_script>
599   - </jsScript> </jsScripts> <fields> <field> <name>zdzname</name>
600   - <rename>zdzname</rename>
601   - <type>String</type>
602   - <length>-1</length>
603   - <precision>-1</precision>
604   - <replace>N</replace>
605   - </field> <field> <name>endZdtype</name>
606   - <rename>endZdtype</rename>
607   - <type>String</type>
608   - <length>-1</length>
609   - <precision>-1</precision>
610   - <replace>N</replace>
611   - </field> <field> <name>destory</name>
612   - <rename>destory</rename>
613   - <type>Integer</type>
614   - <length>-1</length>
615   - <precision>-1</precision>
616   - <replace>N</replace>
617   - </field> </fields> <cluster_schema/>
618   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
619   - <xloc>575</xloc>
620   - <yloc>502</yloc>
621   - <draw>Y</draw>
622   - </GUI>
623   - </step>
624   -
625   - <step>
626   - <name>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</name>
627   - <type>Dummy</type>
628   - <description/>
629   - <distribute>Y</distribute>
630   - <custom_distribution/>
631   - <copies>1</copies>
632   - <partitioning>
633   - <method>none</method>
634   - <schema_name/>
635   - </partitioning>
636   - <cluster_schema/>
637   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
638   - <xloc>869</xloc>
639   - <yloc>504</yloc>
640   - <draw>Y</draw>
641   - </GUI>
642   - </step>
643   -
644   - <step>
645   - <name>&#x5206;&#x7ec4;&#x5404;&#x4e2a;&#x8def;&#x724c;&#x7684;&#x7ad9;</name>
646   - <type>GroupBy</type>
647   - <description/>
648   - <distribute>Y</distribute>
649   - <custom_distribution/>
650   - <copies>1</copies>
651   - <partitioning>
652   - <method>none</method>
653   - <schema_name/>
654   - </partitioning>
655   - <all_rows>Y</all_rows>
656   - <ignore_aggregate>N</ignore_aggregate>
657   - <field_ignore/>
658   - <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
659   - <prefix>grp</prefix>
660   - <add_linenr>Y</add_linenr>
661   - <linenr_fieldname>gno</linenr_fieldname>
662   - <give_back_row>N</give_back_row>
663   - <group>
664   - <field>
665   - <name>lp</name>
666   - </field>
667   - </group>
668   - <fields>
669   - <field>
670   - <aggregate>qdzgroups</aggregate>
671   - <subject>qdzname</subject>
672   - <type>CONCAT_STRING</type>
673   - <valuefield>,</valuefield>
674   - </field>
675   - </fields>
676   - <cluster_schema/>
677   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
678   - <xloc>892</xloc>
679   - <yloc>44</yloc>
680   - <draw>Y</draw>
681   - </GUI>
682   - </step>
683   -
684   - <step>
685   - <name>&#x5339;&#x914d;&#x4e0a;&#x4e0b;&#x884c;&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
686   - <type>ScriptValueMod</type>
687   - <description/>
688   - <distribute>Y</distribute>
689   - <custom_distribution/>
690   - <copies>1</copies>
691   - <partitioning>
692   - <method>none</method>
693   - <schema_name/>
694   - </partitioning>
695   - <compatible>N</compatible>
696   - <optimizationLevel>9</optimizationLevel>
697   - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
698   - <jsScript_name>Script 1</jsScript_name>
699   - <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var jhlc&#x3b; &#x2f;&#x2f; &#x8ba1;&#x5212;&#x91cc;&#x7a0b;&#xa;var bcsj&#x3b; &#x2f;&#x2f; &#x73ed;&#x6b21;&#x65f6;&#x95f4;&#xa;&#xa;&#x2f;&#x2f; &#x65f6;&#x95f4;&#x8303;&#x56f4;&#x6b63;&#x5219;&#x8868;&#x8fbe;&#x5f0f;&#xa;var timeRex &#x3d; &#x2f;&#x5e;&#x28;&#x5b;01&#x5d;&#x3f;&#x5b;0-9&#x5d;&#x7c;2&#x5b;0-3&#x5d;&#x29;&#x3a;&#x5b;0-5&#x5d;&#x5b;0-9&#x5d;&#x24;&#x2f;&#x3b;&#xa;&#x2f;&#x2f; &#x53d1;&#x8f66;&#x65f6;&#x95f4;&#x8f6c;&#x6362;&#x6210;&#x65e5;&#x671f;&#xa;var fcsj_hour &#x3d; str2num&#x28;sendtime_calcu.substr&#x28;0, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa;var fcsj_min &#x3d; str2num&#x28;sendtime_calcu.substr&#x28;3, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa;var fcsj_date &#x3d; new Date&#x28;2000,1,1,fcsj_hour,fcsj_min,0&#x29;&#x3b;&#xa;&#xa;&#x2f;&#x2f; &#x5224;&#x5b9a;&#x662f;&#x5426;&#x65e9;&#x9ad8;&#x5cf0;&#xa;var isZgf &#x3d; false&#x3b;&#xa;if &#x28;timeRex.test&#x28;early_start_time&#x29; &#x26;&#x26; timeRex.test&#x28;early_end_time&#x29; &#x26;&#x26; early_up_time &#x21;&#x3d; null &#x26;&#x26; early_down_time &#x21;&#x3d; null&#x29; &#x7b;&#xa; var early_s_hour &#x3d; str2num&#x28;early_start_time.substr&#x28;0, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var early_s_min &#x3d; str2num&#x28;early_start_time.substr&#x28;3, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var early_s_date &#x3d; new Date&#x28;2000,1,1,early_s_hour,early_s_min,0&#x29;&#x3b;&#xa;&#xa; var early_e_hour &#x3d; str2num&#x28;early_end_time.substr&#x28;0, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var early_e_min &#x3d; str2num&#x28;early_end_time.substr&#x28;3, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var early_e_date &#x3d; new Date&#x28;2000,1,1,early_e_hour,early_e_min,0&#x29;&#x3b;&#xa;&#xa; if &#x28;fcsj_date &#x3e;&#x3d; early_s_date &#x26;&#x26; fcsj_date &#x3c;&#x3d; early_e_date&#x29; &#x7b;&#xa; isZgf &#x3d; true&#x3b;&#xa; &#x7d;&#xa;&#x7d;&#xa;&#xa;&#x2f;&#x2f; &#x5224;&#x5b9a;&#x662f;&#x5426;&#x665a;&#x9ad8;&#x5cf0;&#xa;var isWgf &#x3d; false&#x3b;&#xa;if &#x28;timeRex.test&#x28;late_start_time&#x29; &#x26;&#x26; timeRex.test&#x28;late_end_time&#x29; &#x26;&#x26; late_up_time &#x21;&#x3d; null &#x26;&#x26; late_down_time &#x21;&#x3d; null&#x29; &#x7b;&#xa; var late_s_hour &#x3d; str2num&#x28;late_start_time.substr&#x28;0, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var late_s_min &#x3d; str2num&#x28;late_start_time.substr&#x28;3, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var late_s_date &#x3d; new Date&#x28;2000,1,1,late_s_hour,late_s_min,0&#x29;&#x3b;&#xa;&#xa; var late_e_hour &#x3d; str2num&#x28;late_end_time.substr&#x28;0, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var late_e_min &#x3d; str2num&#x28;late_end_time.substr&#x28;3, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var late_e_date &#x3d; new Date&#x28;2000,1,1,late_e_hour,late_e_min,0&#x29;&#x3b;&#xa;&#xa; if &#x28;fcsj_date &#x3e;&#x3d; late_s_date &#x26;&#x26; fcsj_date &#x3c;&#x3d; late_e_date&#x29; &#x7b;&#xa; isWgf &#x3d; true&#x3b;&#xa; &#x7d;&#xa;&#x7d;&#xa;&#xa;&#x2f;&#x2f; &#x5224;&#x5b9a;&#x662f;&#x5426;&#x665a;&#x9ad8;&#x5cf0;&#xa;&#xa;if &#x28;sxx &#x3d;&#x3d; 0&#x29; &#x7b; &#x2f;&#x2f; &#x4e0a;&#x884c;&#xa; if &#x28;isZgf&#x29; &#x7b;&#xa; jhlc &#x3d; up_mileage&#x3b;&#xa; bcsj &#x3d; early_up_time &#x21;&#x3d; 0 &#x3f; early_up_time &#x3a; up_travel_time&#x3b;&#xa; &#x7d; else if &#x28;isWgf&#x29; &#x7b;&#xa; jhlc &#x3d; up_mileage&#x3b;&#xa; bcsj &#x3d; late_up_time &#x21;&#x3d; 0 &#x3f; late_up_time &#x3a; up_travel_time&#x3b;&#xa; &#x7d; else &#x7b;&#xa; jhlc &#x3d; up_mileage&#x3b;&#xa; bcsj &#x3d; up_travel_time&#x3b;&#xa; &#x7d;&#xa;&#x7d; else &#x7b; &#x2f;&#x2f; sxx &#x3d;&#x3d; 1 &#x4e0b;&#x884c;&#xa; if &#x28;isZgf&#x29; &#x7b;&#xa; jhlc &#x3d; down_mileage&#x3b;&#xa; bcsj &#x3d; early_down_time &#x21;&#x3d; 0 &#x3f; early_down_time &#x3a; down_travel_time&#x3b;&#xa; &#x7d; else if &#x28;isWgf&#x29; &#x7b;&#xa; jhlc &#x3d; down_mileage&#x3b;&#xa; bcsj &#x3d; late_down_time &#x21;&#x3d; 0 &#x3f; late_down_time &#x3a; down_travel_time&#x3b;&#xa; &#x7d; else &#x7b;&#xa; jhlc &#x3d; down_mileage&#x3b;&#xa; bcsj &#x3d; down_travel_time&#x3b;&#xa; &#x7d;&#xa;&#x7d;</jsScript_script>
700   - </jsScript> </jsScripts> <fields> <field> <name>jhlc</name>
701   - <rename>jhlc</rename>
702   - <type>String</type>
703   - <length>-1</length>
704   - <precision>-1</precision>
705   - <replace>N</replace>
706   - </field> <field> <name>bcsj</name>
707   - <rename>bcsj</rename>
708   - <type>String</type>
709   - <length>-1</length>
710   - <precision>-1</precision>
711   - <replace>N</replace>
712   - </field> </fields> <cluster_schema/>
713   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
714   - <xloc>148</xloc>
715   - <yloc>674</yloc>
716   - <draw>Y</draw>
717   - </GUI>
718   - </step>
719   -
720   - <step>
721   - <name>&#x5339;&#x914d;&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
722   - <type>ScriptValueMod</type>
723   - <description/>
724   - <distribute>Y</distribute>
725   - <custom_distribution/>
726   - <copies>1</copies>
727   - <partitioning>
728   - <method>none</method>
729   - <schema_name/>
730   - </partitioning>
731   - <compatible>N</compatible>
732   - <optimizationLevel>9</optimizationLevel>
733   - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
734   - <jsScript_name>Script 1</jsScript_name>
735   - <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var out_mileage&#x3b; &#x2f;&#x2f; &#x51fa;&#x573a;&#x8ba1;&#x5212;&#x91cc;&#x7a0b;&#xa;var out_time&#x3b; &#x2f;&#x2f; &#x51fa;&#x573a;&#x8ba1;&#x5212;&#x65f6;&#x95f4;&#xa;&#xa;if &#x28;sxx &#x3d;&#x3d; 0&#x29; &#x7b; &#x2f;&#x2f; &#x4e0a;&#x884c;&#xa; out_mileage &#x3d; up_out_mileage&#x3b;&#xa; out_time &#x3d; up_out_timer&#x3b;&#xa;&#x7d; else &#x7b; &#x2f;&#x2f; sxx &#x3d;&#x3d; 1 &#x4e0b;&#x884c;&#xa; out_mileage &#x3d; down_out_mileage&#x3b;&#xa; out_time &#x3d; down_out_timer&#x3b;&#xa;&#x7d;&#xa;&#xa;&#xa;&#xa;</jsScript_script>
736   - </jsScript> </jsScripts> <fields> <field> <name>out_mileage</name>
737   - <rename>out_mileage</rename>
738   - <type>String</type>
739   - <length>-1</length>
740   - <precision>-1</precision>
741   - <replace>N</replace>
742   - </field> <field> <name>out_time</name>
743   - <rename>out_time</rename>
744   - <type>String</type>
745   - <length>-1</length>
746   - <precision>-1</precision>
747   - <replace>N</replace>
748   - </field> </fields> <cluster_schema/>
749   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
750   - <xloc>336</xloc>
751   - <yloc>862</yloc>
752   - <draw>Y</draw>
753   - </GUI>
754   - </step>
755   -
756   - <step>
757   - <name>&#x5339;&#x914d;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
758   - <type>ScriptValueMod</type>
759   - <description/>
760   - <distribute>Y</distribute>
761   - <custom_distribution/>
762   - <copies>1</copies>
763   - <partitioning>
764   - <method>none</method>
765   - <schema_name/>
766   - </partitioning>
767   - <compatible>N</compatible>
768   - <optimizationLevel>9</optimizationLevel>
769   - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
770   - <jsScript_name>Script 1</jsScript_name>
771   - <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var parade_mileage&#x3b; &#x2f;&#x2f; &#x8fdb;&#x573a;&#x8ba1;&#x5212;&#x91cc;&#x7a0b;&#xa;var parade_time&#x3b; &#x2f;&#x2f; &#x8fdb;&#x573a;&#x8ba1;&#x5212;&#x65f6;&#x95f4;&#xa;&#xa;if &#x28;sxx2 &#x3d;&#x3d; 0&#x29; &#x7b; &#x2f;&#x2f; &#x4e0a;&#x884c;&#xa; parade_mileage &#x3d; up_in_mileage&#x3b;&#xa; parade_time &#x3d; up_in_timer&#x3b;&#xa;&#x7d; else &#x7b; &#x2f;&#x2f; sxx &#x3d;&#x3d; 1 &#x4e0b;&#x884c;&#xa; parade_mileage &#x3d; down_in_mileage&#x3b;&#xa; parade_time &#x3d; down_in_timer&#x3b;&#xa;&#x7d;&#xa;&#xa;&#xa;&#xa;</jsScript_script>
772   - </jsScript> </jsScripts> <fields> <field> <name>parade_mileage</name>
773   - <rename>parade_mileage</rename>
774   - <type>String</type>
775   - <length>-1</length>
776   - <precision>-1</precision>
777   - <replace>N</replace>
778   - </field> <field> <name>parade_time</name>
779   - <rename>parade_time</rename>
780   - <type>String</type>
781   - <length>-1</length>
782   - <precision>-1</precision>
783   - <replace>N</replace>
784   - </field> </fields> <cluster_schema/>
785   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
786   - <xloc>726</xloc>
787   - <yloc>1005</yloc>
788   - <draw>Y</draw>
789   - </GUI>
790   - </step>
791   -
792   - <step>
793   - <name>&#x589e;&#x52a0;&#x65f6;&#x523b;&#x8868;&#x540d;&#x5b57;&#xff0c;&#x7ebf;&#x8def;&#x540d;&#x5b57;&#xff0c;&#x505c;&#x8f66;&#x573a;&#x540d;&#x5b57;</name>
794   - <type>DataGrid</type>
795   - <description/>
796   - <distribute>Y</distribute>
797   - <custom_distribution/>
798   - <copies>1</copies>
799   - <partitioning>
800   - <method>none</method>
801   - <schema_name/>
802   - </partitioning>
803   - <fields>
804   - </fields>
805   - <data>
806   - <line> </line>
807   - </data>
808   - <cluster_schema/>
809   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
810   - <xloc>110</xloc>
811   - <yloc>133</yloc>
812   - <draw>Y</draw>
813   - </GUI>
814   - </step>
815   -
816   - <step>
817   - <name>&#x5904;&#x7406;&#x6570;&#x636e;</name>
818   - <type>ScriptValueMod</type>
819   - <description/>
820   - <distribute>Y</distribute>
821   - <custom_distribution/>
822   - <copies>1</copies>
823   - <partitioning>
824   - <method>none</method>
825   - <schema_name/>
826   - </partitioning>
827   - <compatible>N</compatible>
828   - <optimizationLevel>9</optimizationLevel>
829   - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
830   - <jsScript_name>Script 1</jsScript_name>
831   - <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;&#x2f;&#x2f; &#x4f7f;&#x7528;&#x6b63;&#x5219;&#x8868;&#x8fbe;&#x5f0f;&#x53bb;&#x9664;&#x7ad9;&#x70b9;&#x540d;&#x79f0;&#x53f3;&#x4fa7;&#x591a;&#x4f59;&#x7684;&#x6570;&#x5b57;&#xa;qdzname &#x3d; qdzname.replace&#x28;&#x2f;&#x28;&#x5c;d&#x2b;&#x24;&#x29;&#x2f;g,&#x27;&#x27;&#x29;&#x3b;&#xa;if &#x28;qdzname &#x21;&#x3d; &#x22;&#x51fa;&#x573a;&#x22; &#x26;&#x26; qdzname &#x21;&#x3d; &#x22;&#x8fdb;&#x573a;&#x22;&#x29; &#x7b;&#xa; qdzname &#x3d; qdzname &#x2b; &#x22;&#x25;&#x22;&#x3b; &#x2f;&#x2f; &#x6a21;&#x7cca;&#x5339;&#x914d;&#x6807;&#x8bc6;&#x7b26;&#xa;&#x7d;&#xa;&#xa;&#x2f;&#x2f; sendtime&#x5904;&#x7406;&#xff0c;hhmm&#xff0c;hh&#x3a;mm&#xff0c;hh,mm&#xa;var sendtime_calcu&#x3b;&#xa;if &#x28;sendtime.length &#x3d;&#x3d; 5&#x29; &#x7b; &#x2f;&#x2f; &#x6700;&#x957f;&#x683c;&#x5f0f;&#xff0c;&#x5305;&#x62ec;&#x5206;&#x9694;&#x7b26;&#xff0c;&#x7edf;&#x4e00;&#x628a;&#x5206;&#x9694;&#x7b26;&#x66ff;&#x6362;&#x6210;&#x5192;&#x53f7;&#xa; sendtime_calcu &#x3d; sendtime.substr&#x28;0, 2&#x29; &#x2b; &#x22;&#x3a;&#x22; &#x2b; sendtime.substr&#x28;3, 2&#x29;&#x3b;&#xa;&#x7d; else if &#x28;sendtime.length &#x3d;&#x3d; 4&#x29; &#x7b;&#xa; if &#x28;sendtime.indexOf&#x28;&#x22;&#x3a;&#x22;&#x29; &#x3e; 0&#x29; &#x7b; &#x2f;&#x2f; &#x5192;&#x53f7;&#x5206;&#x9694;&#xff0c;&#x65e0;&#x9700;&#x4fee;&#x6539;&#xa; sendtime_calcu &#x3d; sendtime&#x3b;&#xa; &#x7d; else if &#x28;sendtime.indexOf&#x28;&#x22;,&#x22;&#x29; &#x3e; 0&#x29; &#x7b; &#x2f;&#x2f; &#x9017;&#x53f7;&#x5206;&#x9694;&#xff0c;&#x6539;&#x6210;&#x5192;&#x53f7;&#x5206;&#x9694;&#xa; sendtime_calcu &#x3d; sendtime.substr&#x28;0, 1&#x29; &#x2b; &#x22;&#x3a;&#x22; &#x2b; sendtime.substr&#x28;2, 2&#x29;&#x3b;&#xa; &#x7d; else &#x7b; &#x2f;&#x2f; &#x65e0;&#x5206;&#x9694;&#x7b26;&#xff0c;&#x6539;&#x6210;&#x5192;&#x53f7;&#x5206;&#x9694;&#xa; sendtime_calcu &#x3d; sendtime.substr&#x28;0, 2&#x29; &#x2b; &#x22;&#x3a;&#x22; &#x2b; sendtime.substr&#x28;2, 2&#x29;&#x3b;&#xa; &#x7d;&#xa;&#x7d; else if &#x28;sendtime.length &#x3d;&#x3d; 3&#x29; &#x7b; &#x2f;&#x2f; &#x65e0;&#x5206;&#x9694;&#x7b26;&#xff0c;&#x6539;&#x6210;&#x5192;&#x53f7;&#x5206;&#x9694;&#xa; sendtime_calcu &#x3d; sendtime.substr&#x28;0, 1&#x29; &#x2b; &#x22;&#x3a;&#x22; &#x2b; sendtime.substr&#x28;1, 2&#x29;&#x3b;&#xa;&#x7d;&#xa;&#xa;&#x2f;&#x2f; &#x5168;&#x90e8;&#x4fee;&#x6b63;&#x5b8c;&#x6bd5;&#x540e;&#xff0c;&#x5982;&#x679c;&#x957f;&#x5ea6;&#x4e0d;&#x662f;5&#xff0c;&#x524d;&#x9762;&#x8865;0&#xa;if &#x28;sendtime_calcu.length &#x21;&#x3d; 5&#x29; &#x7b;&#xa; sendtime_calcu &#x3d; &#x22;0&#x22; &#x2b; sendtime_calcu&#x3b;&#xa;&#x7d;&#xa;&#xa;&#x2f;&#x2f; &#x8bbe;&#x7f6e;&#x5206;&#x73ed;&#xa;var isfb &#x3d; 0&#x3b;&#xa;&#xa;&#x2f;&#x2f; &#x8bbe;&#x7f6e;&#x505c;&#x9a76;&#xa;var ists &#x3d; 0&#x3b;&#xa;&#xa;&#x2f;&#x2f; &#x8bbe;&#x7f6e;isCanceled&#xa;var iscanceled &#x3d; 0&#x3b;</jsScript_script>
832   - </jsScript> </jsScripts> <fields> <field> <name>qdzname</name>
833   - <rename>qdzname</rename>
834   - <type>String</type>
835   - <length>-1</length>
836   - <precision>-1</precision>
837   - <replace>Y</replace>
838   - </field> <field> <name>isfb</name>
839   - <rename>isfb</rename>
840   - <type>Integer</type>
841   - <length>-1</length>
842   - <precision>-1</precision>
843   - <replace>N</replace>
844   - </field> <field> <name>iscanceled</name>
845   - <rename>iscanceled</rename>
846   - <type>Integer</type>
847   - <length>-1</length>
848   - <precision>-1</precision>
849   - <replace>N</replace>
850   - </field> <field> <name>sendtime_calcu</name>
851   - <rename>sendtime_calcu</rename>
852   - <type>String</type>
853   - <length>-1</length>
854   - <precision>-1</precision>
855   - <replace>N</replace>
856   - </field> <field> <name>ists</name>
857   - <rename>ists</rename>
858   - <type>Integer</type>
859   - <length>-1</length>
860   - <precision>-1</precision>
861   - <replace>N</replace>
862   - </field> </fields> <cluster_schema/>
863   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
864   - <xloc>788</xloc>
865   - <yloc>44</yloc>
866   - <draw>Y</draw>
867   - </GUI>
868   - </step>
869   -
870   - <step>
871   - <name>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</name>
872   - <type>SelectValues</type>
873   - <description/>
874   - <distribute>Y</distribute>
875   - <custom_distribution/>
876   - <copies>1</copies>
877   - <partitioning>
878   - <method>none</method>
879   - <schema_name/>
880   - </partitioning>
881   - <fields> <field> <name>&#x8def;&#x724c;</name>
882   - <rename>lp</rename>
883   - <length>-2</length>
884   - <precision>-2</precision>
885   - </field> <field> <name>&#x7ad9;&#x70b9;&#x540d;&#x79f0;</name>
886   - <rename>qdzname</rename>
887   - <length>-2</length>
888   - <precision>-2</precision>
889   - </field> <field> <name>&#x53d1;&#x8f66;&#x65f6;&#x95f4;</name>
890   - <rename>sendtime</rename>
891   - <length>-2</length>
892   - <precision>-2</precision>
893   - </field> <select_unspecified>Y</select_unspecified>
894   - </fields> <cluster_schema/>
895   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
896   - <xloc>444</xloc>
897   - <yloc>131</yloc>
898   - <draw>Y</draw>
899   - </GUI>
900   - </step>
901   -
902   - <step>
903   - <name>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;1</name>
904   - <type>FilterRows</type>
905   - <description/>
906   - <distribute>Y</distribute>
907   - <custom_distribution/>
908   - <copies>1</copies>
909   - <partitioning>
910   - <method>none</method>
911   - <schema_name/>
912   - </partitioning>
913   -<send_true_to>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</send_true_to>
914   -<send_false_to>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</send_false_to>
915   - <compare>
916   -<condition>
917   - <negated>N</negated>
918   - <leftvalue>bctype</leftvalue>
919   - <function>&#x3d;</function>
920   - <rightvalue/>
921   - <value><name>constant</name><type>String</type><text>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</text><length>-1</length><precision>-1</precision><isnull>N</isnull><mask/></value> </condition>
922   - </compare>
923   - <cluster_schema/>
924   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
925   - <xloc>860</xloc>
926   - <yloc>401</yloc>
927   - <draw>Y</draw>
928   - </GUI>
929   - </step>
930   -
931   - <step>
932   - <name>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</name>
933   - <type>FilterRows</type>
934   - <description/>
935   - <distribute>Y</distribute>
936   - <custom_distribution/>
937   - <copies>1</copies>
938   - <partitioning>
939   - <method>none</method>
940   - <schema_name/>
941   - </partitioning>
942   -<send_true_to>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</send_true_to>
943   -<send_false_to>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</send_false_to>
944   - <compare>
945   -<condition>
946   - <negated>N</negated>
947   - <leftvalue>bctype</leftvalue>
948   - <function>&#x3d;</function>
949   - <rightvalue/>
950   - <value><name>constant</name><type>String</type><text>&#x51fa;&#x573a;</text><length>-1</length><precision>-1</precision><isnull>N</isnull><mask/></value> </condition>
951   - </compare>
952   - <cluster_schema/>
953   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
954   - <xloc>995</xloc>
955   - <yloc>503</yloc>
956   - <draw>Y</draw>
957   - </GUI>
958   - </step>
959   -
960   - <step>
961   - <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail</name>
962   - <type>InsertUpdate</type>
963   - <description/>
964   - <distribute>Y</distribute>
965   - <custom_distribution/>
966   - <copies>1</copies>
967   - <partitioning>
968   - <method>none</method>
969   - <schema_name/>
970   - </partitioning>
971   - <connection>bus_control_variable</connection>
972   - <commit>100</commit>
973   - <update_bypassed>N</update_bypassed>
974   - <lookup>
975   - <schema/>
976   - <table>bsth_c_s_ttinfo_detail</table>
977   - <key>
978   - <name>xlid</name>
979   - <field>xl</field>
980   - <condition>&#x3d;</condition>
981   - <name2/>
982   - </key>
983   - <key>
984   - <name>ttid</name>
985   - <field>ttinfo</field>
986   - <condition>&#x3d;</condition>
987   - <name2/>
988   - </key>
989   - <key>
990   - <name>lpid</name>
991   - <field>lp</field>
992   - <condition>&#x3d;</condition>
993   - <name2/>
994   - </key>
995   - <key>
996   - <name>fcno</name>
997   - <field>fcno</field>
998   - <condition>&#x3d;</condition>
999   - <name2/>
1000   - </key>
1001   - <key>
1002   - <name>bcs</name>
1003   - <field>bcs</field>
1004   - <condition>&#x3d;</condition>
1005   - <name2/>
1006   - </key>
1007   - <value>
1008   - <name>lp</name>
1009   - <rename>lpid</rename>
1010   - <update>Y</update>
1011   - </value>
1012   - <value>
1013   - <name>bc_type</name>
1014   - <rename>bctype_code</rename>
1015   - <update>Y</update>
1016   - </value>
1017   - <value>
1018   - <name>bcs</name>
1019   - <rename>bcs</rename>
1020   - <update>Y</update>
1021   - </value>
1022   - <value>
1023   - <name>bcsj</name>
1024   - <rename>bcsj</rename>
1025   - <update>Y</update>
1026   - </value>
1027   - <value>
1028   - <name>fcno</name>
1029   - <rename>fcno</rename>
1030   - <update>Y</update>
1031   - </value>
1032   - <value>
1033   - <name>jhlc</name>
1034   - <rename>jhlc</rename>
1035   - <update>Y</update>
1036   - </value>
1037   - <value>
1038   - <name>fcsj</name>
1039   - <rename>sendtime_calcu</rename>
1040   - <update>Y</update>
1041   - </value>
1042   - <value>
1043   - <name>ttinfo</name>
1044   - <rename>ttid</rename>
1045   - <update>Y</update>
1046   - </value>
1047   - <value>
1048   - <name>xl</name>
1049   - <rename>xlid</rename>
1050   - <update>Y</update>
1051   - </value>
1052   - <value>
1053   - <name>qdz</name>
1054   - <rename>qdzid</rename>
1055   - <update>Y</update>
1056   - </value>
1057   - <value>
1058   - <name>zdz</name>
1059   - <rename>zdzid</rename>
1060   - <update>Y</update>
1061   - </value>
1062   - <value>
1063   - <name>xl_dir</name>
1064   - <rename>sxx</rename>
1065   - <update>Y</update>
1066   - </value>
1067   - <value>
1068   - <name>isfb</name>
1069   - <rename>isfb</rename>
1070   - <update>Y</update>
1071   - </value>
1072   - <value>
1073   - <name>qdz_code</name>
1074   - <rename>qdzcode</rename>
1075   - <update>Y</update>
1076   - </value>
1077   - <value>
1078   - <name>qdz_name</name>
1079   - <rename>qdzname_</rename>
1080   - <update>Y</update>
1081   - </value>
1082   - <value>
1083   - <name>zdz_code</name>
1084   - <rename>zdzcode</rename>
1085   - <update>Y</update>
1086   - </value>
1087   - <value>
1088   - <name>zdz_name</name>
1089   - <rename>zdzname</rename>
1090   - <update>Y</update>
1091   - </value>
1092   - <value>
1093   - <name>ists</name>
1094   - <rename>ists</rename>
1095   - <update>Y</update>
1096   - </value>
1097   - </lookup>
1098   - <cluster_schema/>
1099   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
1100   - <xloc>143</xloc>
1101   - <yloc>860</yloc>
1102   - <draw>Y</draw>
1103   - </GUI>
1104   - </step>
1105   -
1106   - <step>
1107   - <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail 2</name>
1108   - <type>InsertUpdate</type>
1109   - <description/>
1110   - <distribute>Y</distribute>
1111   - <custom_distribution/>
1112   - <copies>1</copies>
1113   - <partitioning>
1114   - <method>none</method>
1115   - <schema_name/>
1116   - </partitioning>
1117   - <connection>bus_control_variable</connection>
1118   - <commit>100</commit>
1119   - <update_bypassed>N</update_bypassed>
1120   - <lookup>
1121   - <schema/>
1122   - <table>bsth_c_s_ttinfo_detail</table>
1123   - <key>
1124   - <name>xlid</name>
1125   - <field>xl</field>
1126   - <condition>&#x3d;</condition>
1127   - <name2/>
1128   - </key>
1129   - <key>
1130   - <name>ttid</name>
1131   - <field>ttinfo</field>
1132   - <condition>&#x3d;</condition>
1133   - <name2/>
1134   - </key>
1135   - <key>
1136   - <name>lpid</name>
1137   - <field>lp</field>
1138   - <condition>&#x3d;</condition>
1139   - <name2/>
1140   - </key>
1141   - <key>
1142   - <name>fcno</name>
1143   - <field>fcno</field>
1144   - <condition>&#x3d;</condition>
1145   - <name2/>
1146   - </key>
1147   - <key>
1148   - <name>bcs</name>
1149   - <field>bcs</field>
1150   - <condition>&#x3d;</condition>
1151   - <name2/>
1152   - </key>
1153   - <value>
1154   - <name>tcc</name>
1155   - <rename>qdzid</rename>
1156   - <update>Y</update>
1157   - </value>
1158   - <value>
1159   - <name>zdz</name>
1160   - <rename>zdzid</rename>
1161   - <update>Y</update>
1162   - </value>
1163   - <value>
1164   - <name>xl</name>
1165   - <rename>xlid</rename>
1166   - <update>Y</update>
1167   - </value>
1168   - <value>
1169   - <name>ttinfo</name>
1170   - <rename>ttid</rename>
1171   - <update>Y</update>
1172   - </value>
1173   - <value>
1174   - <name>xl_dir</name>
1175   - <rename>sxx</rename>
1176   - <update>Y</update>
1177   - </value>
1178   - <value>
1179   - <name>lp</name>
1180   - <rename>lpid</rename>
1181   - <update>Y</update>
1182   - </value>
1183   - <value>
1184   - <name>jhlc</name>
1185   - <rename>out_mileage</rename>
1186   - <update>Y</update>
1187   - </value>
1188   - <value>
1189   - <name>fcsj</name>
1190   - <rename>sendtime_calcu</rename>
1191   - <update>Y</update>
1192   - </value>
1193   - <value>
1194   - <name>bcsj</name>
1195   - <rename>out_time</rename>
1196   - <update>Y</update>
1197   - </value>
1198   - <value>
1199   - <name>bcs</name>
1200   - <rename>bcs</rename>
1201   - <update>Y</update>
1202   - </value>
1203   - <value>
1204   - <name>fcno</name>
1205   - <rename>fcno</rename>
1206   - <update>Y</update>
1207   - </value>
1208   - <value>
1209   - <name>bc_type</name>
1210   - <rename>bctype_code</rename>
1211   - <update>Y</update>
1212   - </value>
1213   - <value>
1214   - <name>isfb</name>
1215   - <rename>isfb</rename>
1216   - <update>Y</update>
1217   - </value>
1218   - <value>
1219   - <name>qdz_code</name>
1220   - <rename>qdzcode</rename>
1221   - <update>Y</update>
1222   - </value>
1223   - <value>
1224   - <name>qdz_name</name>
1225   - <rename>tn</rename>
1226   - <update>Y</update>
1227   - </value>
1228   - <value>
1229   - <name>zdz_code</name>
1230   - <rename>zdzcode</rename>
1231   - <update>Y</update>
1232   - </value>
1233   - <value>
1234   - <name>zdz_name</name>
1235   - <rename>zdzname_</rename>
1236   - <update>Y</update>
1237   - </value>
1238   - <value>
1239   - <name>ists</name>
1240   - <rename>ists</rename>
1241   - <update>Y</update>
1242   - </value>
1243   - </lookup>
1244   - <cluster_schema/>
1245   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
1246   - <xloc>340</xloc>
1247   - <yloc>1087</yloc>
1248   - <draw>Y</draw>
1249   - </GUI>
1250   - </step>
1251   -
1252   - <step>
1253   - <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail 3</name>
1254   - <type>InsertUpdate</type>
1255   - <description/>
1256   - <distribute>Y</distribute>
1257   - <custom_distribution/>
1258   - <copies>1</copies>
1259   - <partitioning>
1260   - <method>none</method>
1261   - <schema_name/>
1262   - </partitioning>
1263   - <connection>bus_control_variable</connection>
1264   - <commit>100</commit>
1265   - <update_bypassed>N</update_bypassed>
1266   - <lookup>
1267   - <schema/>
1268   - <table>bsth_c_s_ttinfo_detail</table>
1269   - <key>
1270   - <name>xlid</name>
1271   - <field>xl</field>
1272   - <condition>&#x3d;</condition>
1273   - <name2/>
1274   - </key>
1275   - <key>
1276   - <name>ttid</name>
1277   - <field>ttinfo</field>
1278   - <condition>&#x3d;</condition>
1279   - <name2/>
1280   - </key>
1281   - <key>
1282   - <name>lpid</name>
1283   - <field>lp</field>
1284   - <condition>&#x3d;</condition>
1285   - <name2/>
1286   - </key>
1287   - <key>
1288   - <name>fcno</name>
1289   - <field>fcno</field>
1290   - <condition>&#x3d;</condition>
1291   - <name2/>
1292   - </key>
1293   - <key>
1294   - <name>bcs</name>
1295   - <field>bcs</field>
1296   - <condition>&#x3d;</condition>
1297   - <name2/>
1298   - </key>
1299   - <value>
1300   - <name>fcno</name>
1301   - <rename>fcno</rename>
1302   - <update>Y</update>
1303   - </value>
1304   - <value>
1305   - <name>bcs</name>
1306   - <rename>bcs</rename>
1307   - <update>Y</update>
1308   - </value>
1309   - <value>
1310   - <name>xl</name>
1311   - <rename>xlid</rename>
1312   - <update>Y</update>
1313   - </value>
1314   - <value>
1315   - <name>ttinfo</name>
1316   - <rename>ttid</rename>
1317   - <update>Y</update>
1318   - </value>
1319   - <value>
1320   - <name>lp</name>
1321   - <rename>lpid</rename>
1322   - <update>Y</update>
1323   - </value>
1324   - <value>
1325   - <name>bc_type</name>
1326   - <rename>bctype_code</rename>
1327   - <update>Y</update>
1328   - </value>
1329   - <value>
1330   - <name>bcsj</name>
1331   - <rename>parade_time</rename>
1332   - <update>Y</update>
1333   - </value>
1334   - <value>
1335   - <name>jhlc</name>
1336   - <rename>parade_mileage</rename>
1337   - <update>Y</update>
1338   - </value>
1339   - <value>
1340   - <name>fcsj</name>
1341   - <rename>sendtime_calcu</rename>
1342   - <update>Y</update>
1343   - </value>
1344   - <value>
1345   - <name>xl_dir</name>
1346   - <rename>sxx2</rename>
1347   - <update>Y</update>
1348   - </value>
1349   - <value>
1350   - <name>qdz</name>
1351   - <rename>qdzid</rename>
1352   - <update>Y</update>
1353   - </value>
1354   - <value>
1355   - <name>tcc</name>
1356   - <rename>zdzid</rename>
1357   - <update>Y</update>
1358   - </value>
1359   - <value>
1360   - <name>isfb</name>
1361   - <rename>isfb</rename>
1362   - <update>Y</update>
1363   - </value>
1364   - <value>
1365   - <name>qdz_code</name>
1366   - <rename>qdzcode</rename>
1367   - <update>Y</update>
1368   - </value>
1369   - <value>
1370   - <name>qdz_name</name>
1371   - <rename>qname</rename>
1372   - <update>Y</update>
1373   - </value>
1374   - <value>
1375   - <name>zdz_code</name>
1376   - <rename>zdzcode</rename>
1377   - <update>Y</update>
1378   - </value>
1379   - <value>
1380   - <name>zdz_name</name>
1381   - <rename>tn</rename>
1382   - <update>Y</update>
1383   - </value>
1384   - <value>
1385   - <name>ists</name>
1386   - <rename>ists</rename>
1387   - <update>Y</update>
1388   - </value>
1389   - </lookup>
1390   - <cluster_schema/>
1391   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
1392   - <xloc>845</xloc>
1393   - <yloc>899</yloc>
1394   - <draw>Y</draw>
1395   - </GUI>
1396   - </step>
1397   -
1398   - <step>
1399   - <name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</name>
1400   - <type>ExcelInput</type>
1401   - <description/>
1402   - <distribute>N</distribute>
1403   - <custom_distribution/>
1404   - <copies>1</copies>
1405   - <partitioning>
1406   - <method>none</method>
1407   - <schema_name/>
1408   - </partitioning>
1409   - <header>Y</header>
1410   - <noempty>Y</noempty>
1411   - <stoponempty>N</stoponempty>
1412   - <filefield/>
1413   - <sheetfield/>
1414   - <sheetrownumfield/>
1415   - <rownumfield/>
1416   - <sheetfield/>
1417   - <filefield/>
1418   - <limit>0</limit>
1419   - <encoding/>
1420   - <add_to_result_filenames>Y</add_to_result_filenames>
1421   - <accept_filenames>N</accept_filenames>
1422   - <accept_field/>
1423   - <accept_stepname/>
1424   - <file>
1425   - <name/>
1426   - <filemask/>
1427   - <exclude_filemask/>
1428   - <file_required>N</file_required>
1429   - <include_subfolders>N</include_subfolders>
1430   - </file>
1431   - <fields>
1432   - </fields>
1433   - <sheets>
1434   - <sheet>
1435   - <name/>
1436   - <startrow>0</startrow>
1437   - <startcol>0</startcol>
1438   - </sheet>
1439   - </sheets>
1440   - <strict_types>N</strict_types>
1441   - <error_ignored>N</error_ignored>
1442   - <error_line_skipped>N</error_line_skipped>
1443   - <bad_line_files_destination_directory/>
1444   - <bad_line_files_extension>warning</bad_line_files_extension>
1445   - <error_line_files_destination_directory/>
1446   - <error_line_files_extension>error</error_line_files_extension>
1447   - <line_number_files_destination_directory/>
1448   - <line_number_files_extension>line</line_number_files_extension>
1449   - <shortFileFieldName/>
1450   - <pathFieldName/>
1451   - <hiddenFieldName/>
1452   - <lastModificationTimeFieldName/>
1453   - <uriNameFieldName/>
1454   - <rootUriNameFieldName/>
1455   - <extensionFieldName/>
1456   - <sizeFieldName/>
1457   - <spreadsheet_type>JXL</spreadsheet_type>
1458   - <cluster_schema/>
1459   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
1460   - <xloc>112</xloc>
1461   - <yloc>44</yloc>
1462   - <draw>Y</draw>
1463   - </GUI>
1464   - </step>
1465   -
1466   - <step>
1467   - <name>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;1</name>
1468   - <type>DBLookup</type>
1469   - <description/>
1470   - <distribute>Y</distribute>
1471   - <custom_distribution/>
1472   - <copies>1</copies>
1473   - <partitioning>
1474   - <method>none</method>
1475   - <schema_name/>
1476   - </partitioning>
1477   - <connection>bus_control_variable</connection>
1478   - <cache>N</cache>
1479   - <cache_load_all>N</cache_load_all>
1480   - <cache_size>0</cache_size>
1481   - <lookup>
1482   - <schema/>
1483   - <table>bsth_c_car_park</table>
1484   - <orderby/>
1485   - <fail_on_multiple>N</fail_on_multiple>
1486   - <eat_row_on_failure>N</eat_row_on_failure>
1487   - <key>
1488   - <name>tccname_</name>
1489   - <field>park_name</field>
1490   - <condition>&#x3d;</condition>
1491   - <name2/>
1492   - </key>
1493   - <value>
1494   - <name>id</name>
1495   - <rename>qdzid</rename>
1496   - <default/>
1497   - <type>Integer</type>
1498   - </value>
1499   - <value>
1500   - <name>park_code</name>
1501   - <rename>qdzcode</rename>
1502   - <default/>
1503   - <type>String</type>
1504   - </value>
1505   - <value>
1506   - <name>park_name</name>
1507   - <rename>tn</rename>
1508   - <default/>
1509   - <type>String</type>
1510   - </value>
1511   - </lookup>
1512   - <cluster_schema/>
1513   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
1514   - <xloc>755</xloc>
1515   - <yloc>504</yloc>
1516   - <draw>Y</draw>
1517   - </GUI>
1518   - </step>
1519   -
1520   - <step>
1521   - <name>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;2</name>
1522   - <type>DBLookup</type>
1523   - <description/>
1524   - <distribute>Y</distribute>
1525   - <custom_distribution/>
1526   - <copies>1</copies>
1527   - <partitioning>
1528   - <method>none</method>
1529   - <schema_name/>
1530   - </partitioning>
1531   - <connection>bus_control_variable</connection>
1532   - <cache>N</cache>
1533   - <cache_load_all>N</cache_load_all>
1534   - <cache_size>0</cache_size>
1535   - <lookup>
1536   - <schema/>
1537   - <table>bsth_c_car_park</table>
1538   - <orderby/>
1539   - <fail_on_multiple>N</fail_on_multiple>
1540   - <eat_row_on_failure>N</eat_row_on_failure>
1541   - <key>
1542   - <name>tccname_</name>
1543   - <field>park_name</field>
1544   - <condition>&#x3d;</condition>
1545   - <name2/>
1546   - </key>
1547   - <value>
1548   - <name>id</name>
1549   - <rename>zdzid</rename>
1550   - <default/>
1551   - <type>Integer</type>
1552   - </value>
1553   - <value>
1554   - <name>park_code</name>
1555   - <rename>zdzcode</rename>
1556   - <default/>
1557   - <type>String</type>
1558   - </value>
1559   - <value>
1560   - <name>park_name</name>
1561   - <rename>tn</rename>
1562   - <default/>
1563   - <type>String</type>
1564   - </value>
1565   - </lookup>
1566   - <cluster_schema/>
1567   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
1568   - <xloc>887</xloc>
1569   - <yloc>608</yloc>
1570   - <draw>Y</draw>
1571   - </GUI>
1572   - </step>
1573   -
1574   - <step>
1575   - <name>&#x67e5;&#x627e;&#x51fa;&#x573a;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</name>
1576   - <type>DBLookup</type>
1577   - <description/>
1578   - <distribute>Y</distribute>
1579   - <custom_distribution/>
1580   - <copies>1</copies>
1581   - <partitioning>
1582   - <method>none</method>
1583   - <schema_name/>
1584   - </partitioning>
1585   - <connection>bus_control_variable</connection>
1586   - <cache>N</cache>
1587   - <cache_load_all>N</cache_load_all>
1588   - <cache_size>0</cache_size>
1589   - <lookup>
1590   - <schema/>
1591   - <table>bsth_c_stationroute</table>
1592   - <orderby/>
1593   - <fail_on_multiple>N</fail_on_multiple>
1594   - <eat_row_on_failure>N</eat_row_on_failure>
1595   - <key>
1596   - <name>xlid</name>
1597   - <field>line</field>
1598   - <condition>&#x3d;</condition>
1599   - <name2/>
1600   - </key>
1601   - <key>
1602   - <name>zdzname</name>
1603   - <field>station_name</field>
1604   - <condition>LIKE</condition>
1605   - <name2/>
1606   - </key>
1607   - <key>
1608   - <name>endZdtype</name>
1609   - <field>station_mark</field>
1610   - <condition>&#x3d;</condition>
1611   - <name2/>
1612   - </key>
1613   - <key>
1614   - <name>destory</name>
1615   - <field>destroy</field>
1616   - <condition>&#x3d;</condition>
1617   - <name2/>
1618   - </key>
1619   - <value>
1620   - <name>station</name>
1621   - <rename>zdzid</rename>
1622   - <default/>
1623   - <type>Integer</type>
1624   - </value>
1625   - <value>
1626   - <name>directions</name>
1627   - <rename>sxx</rename>
1628   - <default/>
1629   - <type>Integer</type>
1630   - </value>
1631   - <value>
1632   - <name>station_code</name>
1633   - <rename>zdzcode</rename>
1634   - <default/>
1635   - <type>String</type>
1636   - </value>
1637   - <value>
1638   - <name>station_name</name>
1639   - <rename>zdzname_</rename>
1640   - <default/>
1641   - <type>String</type>
1642   - </value>
1643   - </lookup>
1644   - <cluster_schema/>
1645   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
1646   - <xloc>329</xloc>
1647   - <yloc>505</yloc>
1648   - <draw>Y</draw>
1649   - </GUI>
1650   - </step>
1651   -
1652   - <step>
1653   - <name>&#x67e5;&#x627e;&#x6240;&#x6709;&#x7ebf;&#x8def;&#x4e0a;&#x4e0b;&#x884c;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
1654   - <type>DBLookup</type>
1655   - <description/>
1656   - <distribute>Y</distribute>
1657   - <custom_distribution/>
1658   - <copies>1</copies>
1659   - <partitioning>
1660   - <method>none</method>
1661   - <schema_name/>
1662   - </partitioning>
1663   - <connection>bus_control_variable</connection>
1664   - <cache>N</cache>
1665   - <cache_load_all>N</cache_load_all>
1666   - <cache_size>0</cache_size>
1667   - <lookup>
1668   - <schema/>
1669   - <table>bsth_c_line_information</table>
1670   - <orderby/>
1671   - <fail_on_multiple>N</fail_on_multiple>
1672   - <eat_row_on_failure>N</eat_row_on_failure>
1673   - <key>
1674   - <name>xlid</name>
1675   - <field>line</field>
1676   - <condition>&#x3d;</condition>
1677   - <name2/>
1678   - </key>
1679   - <value>
1680   - <name>up_mileage</name>
1681   - <rename>up_mileage</rename>
1682   - <default/>
1683   - <type>Number</type>
1684   - </value>
1685   - <value>
1686   - <name>down_mileage</name>
1687   - <rename>down_mileage</rename>
1688   - <default/>
1689   - <type>Number</type>
1690   - </value>
1691   - <value>
1692   - <name>up_travel_time</name>
1693   - <rename>up_travel_time</rename>
1694   - <default/>
1695   - <type>Number</type>
1696   - </value>
1697   - <value>
1698   - <name>down_travel_time</name>
1699   - <rename>down_travel_time</rename>
1700   - <default/>
1701   - <type>Number</type>
1702   - </value>
1703   - <value>
1704   - <name>early_start_time</name>
1705   - <rename>early_start_time</rename>
1706   - <default/>
1707   - <type>String</type>
1708   - </value>
1709   - <value>
1710   - <name>early_end_time</name>
1711   - <rename>early_end_time</rename>
1712   - <default/>
1713   - <type>String</type>
1714   - </value>
1715   - <value>
1716   - <name>early_up_time</name>
1717   - <rename>early_up_time</rename>
1718   - <default/>
1719   - <type>Number</type>
1720   - </value>
1721   - <value>
1722   - <name>early_down_time</name>
1723   - <rename>early_down_time</rename>
1724   - <default/>
1725   - <type>Number</type>
1726   - </value>
1727   - <value>
1728   - <name>late_start_time</name>
1729   - <rename>late_start_time</rename>
1730   - <default/>
1731   - <type>String</type>
1732   - </value>
1733   - <value>
1734   - <name>late_end_time</name>
1735   - <rename>late_end_time</rename>
1736   - <default/>
1737   - <type>String</type>
1738   - </value>
1739   - <value>
1740   - <name>late_up_time</name>
1741   - <rename>late_up_time</rename>
1742   - <default/>
1743   - <type>Number</type>
1744   - </value>
1745   - <value>
1746   - <name>late_down_time</name>
1747   - <rename>late_down_time</rename>
1748   - <default/>
1749   - <type>Number</type>
1750   - </value>
1751   - </lookup>
1752   - <cluster_schema/>
1753   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
1754   - <xloc>149</xloc>
1755   - <yloc>581</yloc>
1756   - <draw>Y</draw>
1757   - </GUI>
1758   - </step>
1759   -
1760   - <step>
1761   - <name>&#x67e5;&#x627e;&#x65f6;&#x523b;&#x8868;&#x57fa;&#x7840;&#x4fe1;&#x606f;&#x5173;&#x8054;</name>
1762   - <type>DBLookup</type>
1763   - <description/>
1764   - <distribute>Y</distribute>
1765   - <custom_distribution/>
1766   - <copies>1</copies>
1767   - <partitioning>
1768   - <method>none</method>
1769   - <schema_name/>
1770   - </partitioning>
1771   - <connection>bus_control_variable</connection>
1772   - <cache>N</cache>
1773   - <cache_load_all>N</cache_load_all>
1774   - <cache_size>0</cache_size>
1775   - <lookup>
1776   - <schema/>
1777   - <table>bsth_c_s_ttinfo</table>
1778   - <orderby/>
1779   - <fail_on_multiple>N</fail_on_multiple>
1780   - <eat_row_on_failure>N</eat_row_on_failure>
1781   - <key>
1782   - <name>xlid</name>
1783   - <field>xl</field>
1784   - <condition>&#x3d;</condition>
1785   - <name2/>
1786   - </key>
1787   - <key>
1788   - <name>ttinfoname_</name>
1789   - <field>name</field>
1790   - <condition>&#x3d;</condition>
1791   - <name2/>
1792   - </key>
1793   - <key>
1794   - <name>iscanceled</name>
1795   - <field>is_cancel</field>
1796   - <condition>&#x3d;</condition>
1797   - <name2/>
1798   - </key>
1799   - <value>
1800   - <name>id</name>
1801   - <rename>ttid</rename>
1802   - <default/>
1803   - <type>Integer</type>
1804   - </value>
1805   - </lookup>
1806   - <cluster_schema/>
1807   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
1808   - <xloc>1011</xloc>
1809   - <yloc>134</yloc>
1810   - <draw>Y</draw>
1811   - </GUI>
1812   - </step>
1813   -
1814   - <step>
1815   - <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x5173;&#x8054;</name>
1816   - <type>DBLookup</type>
1817   - <description/>
1818   - <distribute>Y</distribute>
1819   - <custom_distribution/>
1820   - <copies>1</copies>
1821   - <partitioning>
1822   - <method>none</method>
1823   - <schema_name/>
1824   - </partitioning>
1825   - <connection>bus_control_variable</connection>
1826   - <cache>N</cache>
1827   - <cache_load_all>N</cache_load_all>
1828   - <cache_size>0</cache_size>
1829   - <lookup>
1830   - <schema/>
1831   - <table>bsth_c_line</table>
1832   - <orderby/>
1833   - <fail_on_multiple>N</fail_on_multiple>
1834   - <eat_row_on_failure>N</eat_row_on_failure>
1835   - <key>
1836   - <name>xlname_</name>
1837   - <field>name</field>
1838   - <condition>&#x3d;</condition>
1839   - <name2/>
1840   - </key>
1841   - <key>
1842   - <name>iscanceled</name>
1843   - <field>destroy</field>
1844   - <condition>&#x3d;</condition>
1845   - <name2/>
1846   - </key>
1847   - <value>
1848   - <name>id</name>
1849   - <rename>xlid</rename>
1850   - <default/>
1851   - <type>Integer</type>
1852   - </value>
1853   - </lookup>
1854   - <cluster_schema/>
1855   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
1856   - <xloc>1007</xloc>
1857   - <yloc>43</yloc>
1858   - <draw>Y</draw>
1859   - </GUI>
1860   - </step>
1861   -
1862   - <step>
1863   - <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x51fa;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
1864   - <type>DBLookup</type>
1865   - <description/>
1866   - <distribute>Y</distribute>
1867   - <custom_distribution/>
1868   - <copies>1</copies>
1869   - <partitioning>
1870   - <method>none</method>
1871   - <schema_name/>
1872   - </partitioning>
1873   - <connection>bus_control_variable</connection>
1874   - <cache>N</cache>
1875   - <cache_load_all>N</cache_load_all>
1876   - <cache_size>0</cache_size>
1877   - <lookup>
1878   - <schema/>
1879   - <table>bsth_c_line_information</table>
1880   - <orderby/>
1881   - <fail_on_multiple>N</fail_on_multiple>
1882   - <eat_row_on_failure>N</eat_row_on_failure>
1883   - <key>
1884   - <name>xlid</name>
1885   - <field>line</field>
1886   - <condition>&#x3d;</condition>
1887   - <name2/>
1888   - </key>
1889   - <value>
1890   - <name>up_out_timer</name>
1891   - <rename>up_out_timer</rename>
1892   - <default/>
1893   - <type>Number</type>
1894   - </value>
1895   - <value>
1896   - <name>up_out_mileage</name>
1897   - <rename>up_out_mileage</rename>
1898   - <default/>
1899   - <type>Number</type>
1900   - </value>
1901   - <value>
1902   - <name>down_out_timer</name>
1903   - <rename>down_out_timer</rename>
1904   - <default/>
1905   - <type>Number</type>
1906   - </value>
1907   - <value>
1908   - <name>down_out_mileage</name>
1909   - <rename>down_out_mileage</rename>
1910   - <default/>
1911   - <type>Number</type>
1912   - </value>
1913   - </lookup>
1914   - <cluster_schema/>
1915   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
1916   - <xloc>335</xloc>
1917   - <yloc>763</yloc>
1918   - <draw>Y</draw>
1919   - </GUI>
1920   - </step>
1921   -
1922   - <step>
1923   - <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x8fdb;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
1924   - <type>DBLookup</type>
1925   - <description/>
1926   - <distribute>Y</distribute>
1927   - <custom_distribution/>
1928   - <copies>1</copies>
1929   - <partitioning>
1930   - <method>none</method>
1931   - <schema_name/>
1932   - </partitioning>
1933   - <connection>bus_control_variable</connection>
1934   - <cache>N</cache>
1935   - <cache_load_all>N</cache_load_all>
1936   - <cache_size>0</cache_size>
1937   - <lookup>
1938   - <schema/>
1939   - <table>bsth_c_line_information</table>
1940   - <orderby/>
1941   - <fail_on_multiple>N</fail_on_multiple>
1942   - <eat_row_on_failure>N</eat_row_on_failure>
1943   - <key>
1944   - <name>xlid</name>
1945   - <field>line</field>
1946   - <condition>&#x3d;</condition>
1947   - <name2/>
1948   - </key>
1949   - <value>
1950   - <name>up_in_mileage</name>
1951   - <rename>up_in_mileage</rename>
1952   - <default/>
1953   - <type>Number</type>
1954   - </value>
1955   - <value>
1956   - <name>up_in_timer</name>
1957   - <rename>up_in_timer</rename>
1958   - <default/>
1959   - <type>Number</type>
1960   - </value>
1961   - <value>
1962   - <name>down_in_mileage</name>
1963   - <rename>down_in_mileage</rename>
1964   - <default/>
1965   - <type>Number</type>
1966   - </value>
1967   - <value>
1968   - <name>down_in_timer</name>
1969   - <rename>down_in_timer</rename>
1970   - <default/>
1971   - <type>Number</type>
1972   - </value>
1973   - </lookup>
1974   - <cluster_schema/>
1975   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
1976   - <xloc>553</xloc>
1977   - <yloc>1004</yloc>
1978   - <draw>Y</draw>
1979   - </GUI>
1980   - </step>
1981   -
1982   - <step>
1983   - <name>&#x67e5;&#x627e;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;</name>
1984   - <type>DBLookup</type>
1985   - <description/>
1986   - <distribute>Y</distribute>
1987   - <custom_distribution/>
1988   - <copies>1</copies>
1989   - <partitioning>
1990   - <method>none</method>
1991   - <schema_name/>
1992   - </partitioning>
1993   - <connection>bus_control_variable</connection>
1994   - <cache>N</cache>
1995   - <cache_load_all>N</cache_load_all>
1996   - <cache_size>0</cache_size>
1997   - <lookup>
1998   - <schema/>
1999   - <table>bsth_c_stationroute</table>
2000   - <orderby/>
2001   - <fail_on_multiple>N</fail_on_multiple>
2002   - <eat_row_on_failure>N</eat_row_on_failure>
2003   - <key>
2004   - <name>xlid</name>
2005   - <field>line</field>
2006   - <condition>&#x3d;</condition>
2007   - <name2/>
2008   - </key>
2009   - <key>
2010   - <name>sxx</name>
2011   - <field>directions</field>
2012   - <condition>&#x3d;</condition>
2013   - <name2/>
2014   - </key>
2015   - <key>
2016   - <name>endZdtype</name>
2017   - <field>station_mark</field>
2018   - <condition>&#x3d;</condition>
2019   - <name2/>
2020   - </key>
2021   - <key>
2022   - <name>destory</name>
2023   - <field>destroy</field>
2024   - <condition>&#x3d;</condition>
2025   - <name2/>
2026   - </key>
2027   - <value>
2028   - <name>station_name</name>
2029   - <rename>zdzname</rename>
2030   - <default/>
2031   - <type>String</type>
2032   - </value>
2033   - <value>
2034   - <name>station</name>
2035   - <rename>zdzid</rename>
2036   - <default/>
2037   - <type>Integer</type>
2038   - </value>
2039   - <value>
2040   - <name>station_code</name>
2041   - <rename>zdzcode</rename>
2042   - <default/>
2043   - <type>String</type>
2044   - </value>
2045   - </lookup>
2046   - <cluster_schema/>
2047   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2048   - <xloc>280</xloc>
2049   - <yloc>404</yloc>
2050   - <draw>Y</draw>
2051   - </GUI>
2052   - </step>
2053   -
2054   - <step>
2055   - <name>&#x67e5;&#x627e;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</name>
2056   - <type>DBLookup</type>
2057   - <description/>
2058   - <distribute>Y</distribute>
2059   - <custom_distribution/>
2060   - <copies>1</copies>
2061   - <partitioning>
2062   - <method>none</method>
2063   - <schema_name/>
2064   - </partitioning>
2065   - <connection>bus_control_variable</connection>
2066   - <cache>N</cache>
2067   - <cache_load_all>N</cache_load_all>
2068   - <cache_size>0</cache_size>
2069   - <lookup>
2070   - <schema/>
2071   - <table>bsth_c_stationroute</table>
2072   - <orderby/>
2073   - <fail_on_multiple>N</fail_on_multiple>
2074   - <eat_row_on_failure>N</eat_row_on_failure>
2075   - <key>
2076   - <name>xlid</name>
2077   - <field>line</field>
2078   - <condition>&#x3d;</condition>
2079   - <name2/>
2080   - </key>
2081   - <key>
2082   - <name>qdzname</name>
2083   - <field>station_name</field>
2084   - <condition>LIKE</condition>
2085   - <name2/>
2086   - </key>
2087   - <key>
2088   - <name>sendZdtype</name>
2089   - <field>station_mark</field>
2090   - <condition>&#x3d;</condition>
2091   - <name2/>
2092   - </key>
2093   - <key>
2094   - <name>destory</name>
2095   - <field>destroy</field>
2096   - <condition>&#x3d;</condition>
2097   - <name2/>
2098   - </key>
2099   - <value>
2100   - <name>station</name>
2101   - <rename>qdzid</rename>
2102   - <default/>
2103   - <type>Integer</type>
2104   - </value>
2105   - <value>
2106   - <name>directions</name>
2107   - <rename>sxx</rename>
2108   - <default/>
2109   - <type>Integer</type>
2110   - </value>
2111   - <value>
2112   - <name>station_code</name>
2113   - <rename>qdzcode</rename>
2114   - <default/>
2115   - <type>String</type>
2116   - </value>
2117   - <value>
2118   - <name>station_name</name>
2119   - <rename>qdzname_</rename>
2120   - <default/>
2121   - <type>String</type>
2122   - </value>
2123   - </lookup>
2124   - <cluster_schema/>
2125   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2126   - <xloc>430</xloc>
2127   - <yloc>403</yloc>
2128   - <draw>Y</draw>
2129   - </GUI>
2130   - </step>
2131   -
2132   - <step>
2133   - <name>&#x67e5;&#x627e;&#x8def;&#x724c;&#x5173;&#x8054;</name>
2134   - <type>DBLookup</type>
2135   - <description/>
2136   - <distribute>Y</distribute>
2137   - <custom_distribution/>
2138   - <copies>1</copies>
2139   - <partitioning>
2140   - <method>none</method>
2141   - <schema_name/>
2142   - </partitioning>
2143   - <connection>bus_control_variable</connection>
2144   - <cache>N</cache>
2145   - <cache_load_all>N</cache_load_all>
2146   - <cache_size>0</cache_size>
2147   - <lookup>
2148   - <schema/>
2149   - <table>bsth_c_s_gbi</table>
2150   - <orderby/>
2151   - <fail_on_multiple>N</fail_on_multiple>
2152   - <eat_row_on_failure>N</eat_row_on_failure>
2153   - <key>
2154   - <name>xlid</name>
2155   - <field>xl</field>
2156   - <condition>&#x3d;</condition>
2157   - <name2/>
2158   - </key>
2159   - <key>
2160   - <name>lp</name>
2161   - <field>lp_name</field>
2162   - <condition>&#x3d;</condition>
2163   - <name2/>
2164   - </key>
2165   - <key>
2166   - <name>iscanceled</name>
2167   - <field>is_cancel</field>
2168   - <condition>&#x3d;</condition>
2169   - <name2/>
2170   - </key>
2171   - <value>
2172   - <name>id</name>
2173   - <rename>lpid</rename>
2174   - <default/>
2175   - <type>Integer</type>
2176   - </value>
2177   - </lookup>
2178   - <cluster_schema/>
2179   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2180   - <xloc>1013</xloc>
2181   - <yloc>265</yloc>
2182   - <draw>Y</draw>
2183   - </GUI>
2184   - </step>
2185   -
2186   - <step>
2187   - <name>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ebf;&#x8def;&#x65b9;&#x5411;</name>
2188   - <type>DBLookup</type>
2189   - <description/>
2190   - <distribute>Y</distribute>
2191   - <custom_distribution/>
2192   - <copies>1</copies>
2193   - <partitioning>
2194   - <method>none</method>
2195   - <schema_name/>
2196   - </partitioning>
2197   - <connection>bus_control_variable</connection>
2198   - <cache>N</cache>
2199   - <cache_load_all>N</cache_load_all>
2200   - <cache_size>0</cache_size>
2201   - <lookup>
2202   - <schema/>
2203   - <table>bsth_c_stationroute</table>
2204   - <orderby/>
2205   - <fail_on_multiple>N</fail_on_multiple>
2206   - <eat_row_on_failure>N</eat_row_on_failure>
2207   - <key>
2208   - <name>xlid</name>
2209   - <field>line</field>
2210   - <condition>&#x3d;</condition>
2211   - <name2/>
2212   - </key>
2213   - <key>
2214   - <name>startZdtype_calcu</name>
2215   - <field>station_mark</field>
2216   - <condition>&#x3d;</condition>
2217   - <name2/>
2218   - </key>
2219   - <key>
2220   - <name>qdzname_calcu</name>
2221   - <field>station_name</field>
2222   - <condition>LIKE</condition>
2223   - <name2/>
2224   - </key>
2225   - <key>
2226   - <name>destory</name>
2227   - <field>destroy</field>
2228   - <condition>&#x3d;</condition>
2229   - <name2/>
2230   - </key>
2231   - <value>
2232   - <name>directions</name>
2233   - <rename>sxx</rename>
2234   - <default/>
2235   - <type>String</type>
2236   - </value>
2237   - </lookup>
2238   - <cluster_schema/>
2239   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2240   - <xloc>548</xloc>
2241   - <yloc>610</yloc>
2242   - <draw>Y</draw>
2243   - </GUI>
2244   - </step>
2245   -
2246   - <step>
2247   - <name>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ec8;&#x70b9;&#x7ad9;&#xff0c;&#x5e76;&#x4f5c;&#x4e3a;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x7684;&#x8d77;&#x70b9;&#x7ad9;</name>
2248   - <type>DBLookup</type>
2249   - <description/>
2250   - <distribute>Y</distribute>
2251   - <custom_distribution/>
2252   - <copies>1</copies>
2253   - <partitioning>
2254   - <method>none</method>
2255   - <schema_name/>
2256   - </partitioning>
2257   - <connection>bus_control_variable</connection>
2258   - <cache>Y</cache>
2259   - <cache_load_all>Y</cache_load_all>
2260   - <cache_size>0</cache_size>
2261   - <lookup>
2262   - <schema/>
2263   - <table>bsth_c_stationroute</table>
2264   - <orderby/>
2265   - <fail_on_multiple>N</fail_on_multiple>
2266   - <eat_row_on_failure>N</eat_row_on_failure>
2267   - <key>
2268   - <name>xlid</name>
2269   - <field>line</field>
2270   - <condition>&#x3d;</condition>
2271   - <name2/>
2272   - </key>
2273   - <key>
2274   - <name>endZdtype_calcu</name>
2275   - <field>station_mark</field>
2276   - <condition>&#x3d;</condition>
2277   - <name2/>
2278   - </key>
2279   - <key>
2280   - <name>sxx</name>
2281   - <field>directions</field>
2282   - <condition>&#x3d;</condition>
2283   - <name2/>
2284   - </key>
2285   - <key>
2286   - <name>destory</name>
2287   - <field>destroy</field>
2288   - <condition>&#x3d;</condition>
2289   - <name2/>
2290   - </key>
2291   - <value>
2292   - <name>station_name</name>
2293   - <rename>zdzname_calcu</rename>
2294   - <default/>
2295   - <type>Integer</type>
2296   - </value>
2297   - </lookup>
2298   - <cluster_schema/>
2299   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2300   - <xloc>550</xloc>
2301   - <yloc>701</yloc>
2302   - <draw>Y</draw>
2303   - </GUI>
2304   - </step>
2305   -
2306   - <step>
2307   - <name>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</name>
2308   - <type>DBLookup</type>
2309   - <description/>
2310   - <distribute>Y</distribute>
2311   - <custom_distribution/>
2312   - <copies>1</copies>
2313   - <partitioning>
2314   - <method>none</method>
2315   - <schema_name/>
2316   - </partitioning>
2317   - <connection>bus_control_variable</connection>
2318   - <cache>N</cache>
2319   - <cache_load_all>N</cache_load_all>
2320   - <cache_size>0</cache_size>
2321   - <lookup>
2322   - <schema/>
2323   - <table>bsth_c_stationroute</table>
2324   - <orderby/>
2325   - <fail_on_multiple>N</fail_on_multiple>
2326   - <eat_row_on_failure>N</eat_row_on_failure>
2327   - <key>
2328   - <name>xlid</name>
2329   - <field>line</field>
2330   - <condition>&#x3d;</condition>
2331   - <name2/>
2332   - </key>
2333   - <key>
2334   - <name>zdzname_calcu</name>
2335   - <field>station_name</field>
2336   - <condition>&#x3d;</condition>
2337   - <name2/>
2338   - </key>
2339   - <key>
2340   - <name>startZdtype_calcu</name>
2341   - <field>station_mark</field>
2342   - <condition>&#x3d;</condition>
2343   - <name2/>
2344   - </key>
2345   - <key>
2346   - <name>destory</name>
2347   - <field>destroy</field>
2348   - <condition>&#x3d;</condition>
2349   - <name2/>
2350   - </key>
2351   - <value>
2352   - <name>directions</name>
2353   - <rename>sxx2</rename>
2354   - <default/>
2355   - <type>Integer</type>
2356   - </value>
2357   - <value>
2358   - <name>station</name>
2359   - <rename>qdzid</rename>
2360   - <default/>
2361   - <type>Integer</type>
2362   - </value>
2363   - <value>
2364   - <name>station_code</name>
2365   - <rename>qdzcode</rename>
2366   - <default/>
2367   - <type>String</type>
2368   - </value>
2369   - <value>
2370   - <name>station_name</name>
2371   - <rename>qname</rename>
2372   - <default/>
2373   - <type>String</type>
2374   - </value>
2375   - </lookup>
2376   - <cluster_schema/>
2377   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2378   - <xloc>551</xloc>
2379   - <yloc>782</yloc>
2380   - <draw>Y</draw>
2381   - </GUI>
2382   - </step>
2383   -
2384   - <step>
2385   - <name>&#x6b63;&#x5e38;&#x73ed;&#x6b21;_&#x5904;&#x7406;&#x6570;&#x636e;</name>
2386   - <type>ScriptValueMod</type>
2387   - <description/>
2388   - <distribute>Y</distribute>
2389   - <custom_distribution/>
2390   - <copies>1</copies>
2391   - <partitioning>
2392   - <method>none</method>
2393   - <schema_name/>
2394   - </partitioning>
2395   - <compatible>N</compatible>
2396   - <optimizationLevel>9</optimizationLevel>
2397   - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
2398   - <jsScript_name>Script 1</jsScript_name>
2399   - <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;&#x2f;&#x2f; &#x6dfb;&#x52a0;&#x7ad9;&#x70b9;&#x6807;&#x8bc6;&#xa;var sendZdtype &#x3d; &#x27;B&#x27;&#x3b;&#xa;var endZdtype &#x3d; &#x27;E&#x27;&#x3b;&#xa;&#xa;var destory &#x3d; 0&#x3b; &#x2f;&#x2f; &#x672a;&#x64a4;&#x9500;flag</jsScript_script>
2400   - </jsScript> </jsScripts> <fields> <field> <name>sendZdtype</name>
2401   - <rename>sendZdtype</rename>
2402   - <type>String</type>
2403   - <length>-1</length>
2404   - <precision>-1</precision>
2405   - <replace>N</replace>
2406   - </field> <field> <name>endZdtype</name>
2407   - <rename>endZdtype</rename>
2408   - <type>String</type>
2409   - <length>-1</length>
2410   - <precision>-1</precision>
2411   - <replace>N</replace>
2412   - </field> <field> <name>destory</name>
2413   - <rename>destory</rename>
2414   - <type>Integer</type>
2415   - <length>-1</length>
2416   - <precision>-1</precision>
2417   - <replace>N</replace>
2418   - </field> </fields> <cluster_schema/>
2419   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2420   - <xloc>588</xloc>
2421   - <yloc>403</yloc>
2422   - <draw>Y</draw>
2423   - </GUI>
2424   - </step>
2425   -
2426   - <step>
2427   - <name>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</name>
2428   - <type>Dummy</type>
2429   - <description/>
2430   - <distribute>Y</distribute>
2431   - <custom_distribution/>
2432   - <copies>1</copies>
2433   - <partitioning>
2434   - <method>none</method>
2435   - <schema_name/>
2436   - </partitioning>
2437   - <cluster_schema/>
2438   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2439   - <xloc>725</xloc>
2440   - <yloc>404</yloc>
2441   - <draw>Y</draw>
2442   - </GUI>
2443   - </step>
2444   -
2445   - <step>
2446   - <name>&#x6dfb;&#x52a0;&#x53d1;&#x8f66;&#x987a;&#x5e8f;&#x53f7;</name>
2447   - <type>GroupBy</type>
2448   - <description/>
2449   - <distribute>Y</distribute>
2450   - <custom_distribution/>
2451   - <copies>1</copies>
2452   - <partitioning>
2453   - <method>none</method>
2454   - <schema_name/>
2455   - </partitioning>
2456   - <all_rows>Y</all_rows>
2457   - <ignore_aggregate>N</ignore_aggregate>
2458   - <field_ignore/>
2459   - <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
2460   - <prefix>grp</prefix>
2461   - <add_linenr>Y</add_linenr>
2462   - <linenr_fieldname>fcno</linenr_fieldname>
2463   - <give_back_row>N</give_back_row>
2464   - <group>
2465   - <field>
2466   - <name>lp</name>
2467   - </field>
2468   - </group>
2469   - <fields>
2470   - </fields>
2471   - <cluster_schema/>
2472   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2473   - <xloc>442</xloc>
2474   - <yloc>44</yloc>
2475   - <draw>Y</draw>
2476   - </GUI>
2477   - </step>
2478   -
2479   - <step>
2480   - <name>&#x6dfb;&#x52a0;&#x5bf9;&#x5e94;&#x73ed;&#x6b21;&#x6570;</name>
2481   - <type>GroupBy</type>
2482   - <description/>
2483   - <distribute>Y</distribute>
2484   - <custom_distribution/>
2485   - <copies>1</copies>
2486   - <partitioning>
2487   - <method>none</method>
2488   - <schema_name/>
2489   - </partitioning>
2490   - <all_rows>Y</all_rows>
2491   - <ignore_aggregate>N</ignore_aggregate>
2492   - <field_ignore/>
2493   - <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
2494   - <prefix>grp</prefix>
2495   - <add_linenr>Y</add_linenr>
2496   - <linenr_fieldname>bcs</linenr_fieldname>
2497   - <give_back_row>N</give_back_row>
2498   - <group>
2499   - </group>
2500   - <fields>
2501   - </fields>
2502   - <cluster_schema/>
2503   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2504   - <xloc>692</xloc>
2505   - <yloc>44</yloc>
2506   - <draw>Y</draw>
2507   - </GUI>
2508   - </step>
2509   -
2510   - <step>
2511   - <name>&#x73ed;&#x6b21;&#x6570;&#x636e;&#x8303;&#x5f0f;&#x5316;</name>
2512   - <type>Normaliser</type>
2513   - <description/>
2514   - <distribute>Y</distribute>
2515   - <custom_distribution/>
2516   - <copies>1</copies>
2517   - <partitioning>
2518   - <method>none</method>
2519   - <schema_name/>
2520   - </partitioning>
2521   - <typefield>&#x7ad9;&#x70b9;&#x540d;&#x79f0;</typefield>
2522   - <fields> </fields> <cluster_schema/>
2523   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2524   - <xloc>248</xloc>
2525   - <yloc>44</yloc>
2526   - <draw>Y</draw>
2527   - </GUI>
2528   - </step>
2529   -
2530   - <step>
2531   - <name>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178;</name>
2532   - <type>ValueMapper</type>
2533   - <description/>
2534   - <distribute>Y</distribute>
2535   - <custom_distribution/>
2536   - <copies>1</copies>
2537   - <partitioning>
2538   - <method>none</method>
2539   - <schema_name/>
2540   - </partitioning>
2541   - <field_to_use>bctype</field_to_use>
2542   - <target_field>bctype_code</target_field>
2543   - <non_match_default>&#x672a;&#x77e5;&#x7c7b;&#x578b;</non_match_default>
2544   - <fields>
2545   - <field>
2546   - <source_value>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</source_value>
2547   - <target_value>normal</target_value>
2548   - </field>
2549   - <field>
2550   - <source_value>&#x51fa;&#x573a;</source_value>
2551   - <target_value>out</target_value>
2552   - </field>
2553   - <field>
2554   - <source_value>&#x8fdb;&#x573a;</source_value>
2555   - <target_value>in</target_value>
2556   - </field>
2557   - <field>
2558   - <source_value>&#x52a0;&#x6cb9;</source_value>
2559   - <target_value>oil</target_value>
2560   - </field>
2561   - <field>
2562   - <source_value>&#x4e34;&#x52a0;</source_value>
2563   - <target_value>temp</target_value>
2564   - </field>
2565   - <field>
2566   - <source_value>&#x533a;&#x95f4;</source_value>
2567   - <target_value>region</target_value>
2568   - </field>
2569   - <field>
2570   - <source_value>&#x653e;&#x7a7a;</source_value>
2571   - <target_value>venting</target_value>
2572   - </field>
2573   - <field>
2574   - <source_value>&#x653e;&#x5927;&#x7ad9;</source_value>
2575   - <target_value>major</target_value>
2576   - </field>
2577   - </fields>
2578   - <cluster_schema/>
2579   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2580   - <xloc>149</xloc>
2581   - <yloc>491</yloc>
2582   - <draw>Y</draw>
2583   - </GUI>
2584   - </step>
2585   -
2586   - <step>
2587   - <name>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 2</name>
2588   - <type>ValueMapper</type>
2589   - <description/>
2590   - <distribute>Y</distribute>
2591   - <custom_distribution/>
2592   - <copies>1</copies>
2593   - <partitioning>
2594   - <method>none</method>
2595   - <schema_name/>
2596   - </partitioning>
2597   - <field_to_use>bctype</field_to_use>
2598   - <target_field>bctype_code</target_field>
2599   - <non_match_default>&#x672a;&#x77e5;&#x7c7b;&#x578b;</non_match_default>
2600   - <fields>
2601   - <field>
2602   - <source_value>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</source_value>
2603   - <target_value>normal</target_value>
2604   - </field>
2605   - <field>
2606   - <source_value>&#x51fa;&#x573a;</source_value>
2607   - <target_value>out</target_value>
2608   - </field>
2609   - <field>
2610   - <source_value>&#x8fdb;&#x573a;</source_value>
2611   - <target_value>in</target_value>
2612   - </field>
2613   - <field>
2614   - <source_value>&#x52a0;&#x6cb9;</source_value>
2615   - <target_value>oil</target_value>
2616   - </field>
2617   - <field>
2618   - <source_value>&#x4e34;&#x52a0;</source_value>
2619   - <target_value>temp</target_value>
2620   - </field>
2621   - <field>
2622   - <source_value>&#x533a;&#x95f4;</source_value>
2623   - <target_value>region</target_value>
2624   - </field>
2625   - <field>
2626   - <source_value>&#x653e;&#x7a7a;</source_value>
2627   - <target_value>venting</target_value>
2628   - </field>
2629   - <field>
2630   - <source_value>&#x653e;&#x5927;&#x7ad9;</source_value>
2631   - <target_value>major</target_value>
2632   - </field>
2633   - </fields>
2634   - <cluster_schema/>
2635   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2636   - <xloc>333</xloc>
2637   - <yloc>681</yloc>
2638   - <draw>Y</draw>
2639   - </GUI>
2640   - </step>
2641   -
2642   - <step>
2643   - <name>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 3</name>
2644   - <type>ValueMapper</type>
2645   - <description/>
2646   - <distribute>Y</distribute>
2647   - <custom_distribution/>
2648   - <copies>1</copies>
2649   - <partitioning>
2650   - <method>none</method>
2651   - <schema_name/>
2652   - </partitioning>
2653   - <field_to_use>bctype</field_to_use>
2654   - <target_field>bctype_code</target_field>
2655   - <non_match_default>&#x672a;&#x77e5;&#x7c7b;&#x578b;</non_match_default>
2656   - <fields>
2657   - <field>
2658   - <source_value>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</source_value>
2659   - <target_value>normal</target_value>
2660   - </field>
2661   - <field>
2662   - <source_value>&#x51fa;&#x573a;</source_value>
2663   - <target_value>out</target_value>
2664   - </field>
2665   - <field>
2666   - <source_value>&#x8fdb;&#x573a;</source_value>
2667   - <target_value>in</target_value>
2668   - </field>
2669   - <field>
2670   - <source_value>&#x52a0;&#x6cb9;</source_value>
2671   - <target_value>oil</target_value>
2672   - </field>
2673   - <field>
2674   - <source_value>&#x4e34;&#x52a0;</source_value>
2675   - <target_value>temp</target_value>
2676   - </field>
2677   - <field>
2678   - <source_value>&#x533a;&#x95f4;</source_value>
2679   - <target_value>region</target_value>
2680   - </field>
2681   - <field>
2682   - <source_value>&#x653e;&#x7a7a;</source_value>
2683   - <target_value>venting</target_value>
2684   - </field>
2685   - <field>
2686   - <source_value>&#x653e;&#x5927;&#x7ad9;</source_value>
2687   - <target_value>major</target_value>
2688   - </field>
2689   - </fields>
2690   - <cluster_schema/>
2691   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2692   - <xloc>551</xloc>
2693   - <yloc>928</yloc>
2694   - <draw>Y</draw>
2695   - </GUI>
2696   - </step>
2697   -
2698   - <step>
2699   - <name>&#x7c7b;&#x578b;&#x4fee;&#x6b63;</name>
2700   - <type>SelectValues</type>
2701   - <description/>
2702   - <distribute>Y</distribute>
2703   - <custom_distribution/>
2704   - <copies>1</copies>
2705   - <partitioning>
2706   - <method>none</method>
2707   - <schema_name/>
2708   - </partitioning>
2709   - <fields> <select_unspecified>N</select_unspecified>
2710   - <meta> <name>jhlc</name>
2711   - <rename>jhlc</rename>
2712   - <type>Number</type>
2713   - <length>-2</length>
2714   - <precision>-2</precision>
2715   - <conversion_mask/>
2716   - <date_format_lenient>false</date_format_lenient>
2717   - <date_format_locale/>
2718   - <date_format_timezone/>
2719   - <lenient_string_to_number>false</lenient_string_to_number>
2720   - <encoding/>
2721   - <decimal_symbol/>
2722   - <grouping_symbol/>
2723   - <currency_symbol/>
2724   - <storage_type/>
2725   - </meta> <meta> <name>bcsj</name>
2726   - <rename>bcsj</rename>
2727   - <type>Integer</type>
2728   - <length>-2</length>
2729   - <precision>-2</precision>
2730   - <conversion_mask/>
2731   - <date_format_lenient>false</date_format_lenient>
2732   - <date_format_locale/>
2733   - <date_format_timezone/>
2734   - <lenient_string_to_number>false</lenient_string_to_number>
2735   - <encoding/>
2736   - <decimal_symbol/>
2737   - <grouping_symbol/>
2738   - <currency_symbol/>
2739   - <storage_type/>
2740   - </meta> </fields> <cluster_schema/>
2741   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2742   - <xloc>146</xloc>
2743   - <yloc>768</yloc>
2744   - <draw>Y</draw>
2745   - </GUI>
2746   - </step>
2747   -
2748   - <step>
2749   - <name>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 2</name>
2750   - <type>SelectValues</type>
2751   - <description/>
2752   - <distribute>Y</distribute>
2753   - <custom_distribution/>
2754   - <copies>1</copies>
2755   - <partitioning>
2756   - <method>none</method>
2757   - <schema_name/>
2758   - </partitioning>
2759   - <fields> <select_unspecified>N</select_unspecified>
2760   - <meta> <name>out_mileage</name>
2761   - <rename>out_mileage</rename>
2762   - <type>Number</type>
2763   - <length>-2</length>
2764   - <precision>-2</precision>
2765   - <conversion_mask/>
2766   - <date_format_lenient>false</date_format_lenient>
2767   - <date_format_locale/>
2768   - <date_format_timezone/>
2769   - <lenient_string_to_number>false</lenient_string_to_number>
2770   - <encoding/>
2771   - <decimal_symbol/>
2772   - <grouping_symbol/>
2773   - <currency_symbol/>
2774   - <storage_type/>
2775   - </meta> <meta> <name>out_time</name>
2776   - <rename>out_time</rename>
2777   - <type>Integer</type>
2778   - <length>-2</length>
2779   - <precision>-2</precision>
2780   - <conversion_mask/>
2781   - <date_format_lenient>false</date_format_lenient>
2782   - <date_format_locale/>
2783   - <date_format_timezone/>
2784   - <lenient_string_to_number>false</lenient_string_to_number>
2785   - <encoding/>
2786   - <decimal_symbol/>
2787   - <grouping_symbol/>
2788   - <currency_symbol/>
2789   - <storage_type/>
2790   - </meta> <meta> <name>sxx</name>
2791   - <rename>sxx</rename>
2792   - <type>Integer</type>
2793   - <length>-2</length>
2794   - <precision>-2</precision>
2795   - <conversion_mask/>
2796   - <date_format_lenient>false</date_format_lenient>
2797   - <date_format_locale/>
2798   - <date_format_timezone/>
2799   - <lenient_string_to_number>false</lenient_string_to_number>
2800   - <encoding/>
2801   - <decimal_symbol/>
2802   - <grouping_symbol/>
2803   - <currency_symbol/>
2804   - <storage_type/>
2805   - </meta> </fields> <cluster_schema/>
2806   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2807   - <xloc>338</xloc>
2808   - <yloc>1008</yloc>
2809   - <draw>Y</draw>
2810   - </GUI>
2811   - </step>
2812   -
2813   - <step>
2814   - <name>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 3</name>
2815   - <type>SelectValues</type>
2816   - <description/>
2817   - <distribute>Y</distribute>
2818   - <custom_distribution/>
2819   - <copies>1</copies>
2820   - <partitioning>
2821   - <method>none</method>
2822   - <schema_name/>
2823   - </partitioning>
2824   - <fields> <select_unspecified>N</select_unspecified>
2825   - <meta> <name>parade_mileage</name>
2826   - <rename>parade_mileage</rename>
2827   - <type>Number</type>
2828   - <length>-2</length>
2829   - <precision>-2</precision>
2830   - <conversion_mask/>
2831   - <date_format_lenient>false</date_format_lenient>
2832   - <date_format_locale/>
2833   - <date_format_timezone/>
2834   - <lenient_string_to_number>false</lenient_string_to_number>
2835   - <encoding/>
2836   - <decimal_symbol/>
2837   - <grouping_symbol/>
2838   - <currency_symbol/>
2839   - <storage_type/>
2840   - </meta> <meta> <name>parade_time</name>
2841   - <rename>parade_time</rename>
2842   - <type>Integer</type>
2843   - <length>-2</length>
2844   - <precision>-2</precision>
2845   - <conversion_mask/>
2846   - <date_format_lenient>false</date_format_lenient>
2847   - <date_format_locale/>
2848   - <date_format_timezone/>
2849   - <lenient_string_to_number>false</lenient_string_to_number>
2850   - <encoding/>
2851   - <decimal_symbol/>
2852   - <grouping_symbol/>
2853   - <currency_symbol/>
2854   - <storage_type/>
2855   - </meta> <meta> <name>sxx2</name>
2856   - <rename>sxx2</rename>
2857   - <type>Integer</type>
2858   - <length>-2</length>
2859   - <precision>-2</precision>
2860   - <conversion_mask/>
2861   - <date_format_lenient>false</date_format_lenient>
2862   - <date_format_locale/>
2863   - <date_format_timezone/>
2864   - <lenient_string_to_number>false</lenient_string_to_number>
2865   - <encoding/>
2866   - <decimal_symbol/>
2867   - <grouping_symbol/>
2868   - <currency_symbol/>
2869   - <storage_type/>
2870   - </meta> </fields> <cluster_schema/>
2871   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2872   - <xloc>847</xloc>
2873   - <yloc>1003</yloc>
2874   - <draw>Y</draw>
2875   - </GUI>
2876   - </step>
2877   -
2878   - <step>
2879   - <name>&#x8ba1;&#x7b97;&#x73ed;&#x6b21;&#x7c7b;&#x578b;</name>
2880   - <type>ValueMapper</type>
2881   - <description/>
2882   - <distribute>Y</distribute>
2883   - <custom_distribution/>
2884   - <copies>1</copies>
2885   - <partitioning>
2886   - <method>none</method>
2887   - <schema_name/>
2888   - </partitioning>
2889   - <field_to_use>qdzname</field_to_use>
2890   - <target_field>bctype</target_field>
2891   - <non_match_default>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</non_match_default>
2892   - <fields>
2893   - <field>
2894   - <source_value>&#x51fa;&#x573a;</source_value>
2895   - <target_value>&#x51fa;&#x573a;</target_value>
2896   - </field>
2897   - <field>
2898   - <source_value>&#x8fdb;&#x573a;</source_value>
2899   - <target_value>&#x8fdb;&#x573a;</target_value>
2900   - </field>
2901   - </fields>
2902   - <cluster_schema/>
2903   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2904   - <xloc>1014</xloc>
2905   - <yloc>401</yloc>
2906   - <draw>Y</draw>
2907   - </GUI>
2908   - </step>
2909   -
2910   - <step>
2911   - <name>&#x8bb0;&#x5f55;&#x5173;&#x8054; &#x28;&#x7b1b;&#x5361;&#x5c14;&#x8f93;&#x51fa;&#x29;</name>
2912   - <type>JoinRows</type>
2913   - <description/>
2914   - <distribute>Y</distribute>
2915   - <custom_distribution/>
2916   - <copies>1</copies>
2917   - <partitioning>
2918   - <method>none</method>
2919   - <schema_name/>
2920   - </partitioning>
2921   - <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
2922   - <prefix>out</prefix>
2923   - <cache_size>500</cache_size>
2924   - <main/>
2925   - <compare>
2926   -<condition>
2927   - <negated>N</negated>
2928   - <leftvalue/>
2929   - <function>&#x3d;</function>
2930   - <rightvalue/>
2931   - </condition>
2932   - </compare>
2933   - <cluster_schema/>
2934   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2935   - <xloc>310</xloc>
2936   - <yloc>133</yloc>
2937   - <draw>Y</draw>
2938   - </GUI>
2939   - </step>
2940   -
2941   - <step>
2942   - <name>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;&#xff08;&#x53d1;&#x8f66;&#x65f6;&#x95f4;&#x4e3a;&#x7a7a;&#xff09;</name>
2943   - <type>FilterRows</type>
2944   - <description/>
2945   - <distribute>Y</distribute>
2946   - <custom_distribution/>
2947   - <copies>1</copies>
2948   - <partitioning>
2949   - <method>none</method>
2950   - <schema_name/>
2951   - </partitioning>
2952   -<send_true_to/>
2953   -<send_false_to/>
2954   - <compare>
2955   -<condition>
2956   - <negated>N</negated>
2957   - <leftvalue>sendtime</leftvalue>
2958   - <function>IS NOT NULL</function>
2959   - <rightvalue/>
2960   - </condition>
2961   - </compare>
2962   - <cluster_schema/>
2963   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2964   - <xloc>571</xloc>
2965   - <yloc>44</yloc>
2966   - <draw>Y</draw>
2967   - </GUI>
2968   - </step>
2969   -
2970   - <step>
2971   - <name>&#x8fdb;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x8d77;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</name>
2972   - <type>ScriptValueMod</type>
2973   - <description/>
2974   - <distribute>Y</distribute>
2975   - <custom_distribution/>
2976   - <copies>1</copies>
2977   - <partitioning>
2978   - <method>none</method>
2979   - <schema_name/>
2980   - </partitioning>
2981   - <compatible>N</compatible>
2982   - <optimizationLevel>9</optimizationLevel>
2983   - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
2984   - <jsScript_name>Script 1</jsScript_name>
2985   - <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;&#x2f;&#x2f; &#x6dfb;&#x52a0;&#x7ad9;&#x70b9;&#x6807;&#x8bc6;&#xa;var cc_groups &#x3d; qdzgroups.split&#x28;&#x22;,&#x22;&#x29;&#x3b; &#x2f;&#x2f; &#x6240;&#x6709;&#x73ed;&#x6b21;&#x8d77;&#x70b9;&#x7ad9;&#x6570;&#x7ec4;&#xa;var qdzname_calcu &#x3d; cc_groups&#x5b;gno - 2&#x5d;&#x3b; &#x2f;&#x2f; &#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x7684;&#x8d77;&#x70b9;&#x7ad9;&#x662f;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ec8;&#x70b9;&#x7ad9;&#xff0c;&#x8fd9;&#x91cc;&#x53ea;&#x6709;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x8d77;&#x70b9;&#x7ad9;&#xff0c;&#x8fd8;&#x9700;&#x8981;&#x8ba1;&#x7b97;&#xa;var startZdtype_calcu &#x3d; &#x27;B&#x27;&#x3b;&#xa;var endZdtype_calcu &#x3d; &#x27;E&#x27;&#x3b;&#xa;&#xa;var destory &#x3d; 0&#x3b; &#x2f;&#x2f; &#x672a;&#x64a4;&#x9500;flag</jsScript_script>
2986   - </jsScript> </jsScripts> <fields> <field> <name>qdzname_calcu</name>
2987   - <rename>qdzname_calcu</rename>
2988   - <type>String</type>
2989   - <length>-1</length>
2990   - <precision>-1</precision>
2991   - <replace>N</replace>
2992   - </field> <field> <name>startZdtype_calcu</name>
2993   - <rename>startZdtype_calcu</rename>
2994   - <type>String</type>
2995   - <length>-1</length>
2996   - <precision>-1</precision>
2997   - <replace>N</replace>
2998   - </field> <field> <name>endZdtype_calcu</name>
2999   - <rename>endZdtype_calcu</rename>
3000   - <type>String</type>
3001   - <length>-1</length>
3002   - <precision>-1</precision>
3003   - <replace>N</replace>
3004   - </field> <field> <name>destory</name>
3005   - <rename>destory</rename>
3006   - <type>Integer</type>
3007   - <length>-1</length>
3008   - <precision>-1</precision>
3009   - <replace>N</replace>
3010   - </field> </fields> <cluster_schema/>
3011   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
3012   - <xloc>754</xloc>
3013   - <yloc>610</yloc>
3014   - <draw>Y</draw>
3015   - </GUI>
3016   - </step>
3017   -
3018   - <step>
3019   - <name>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</name>
3020   - <type>Dummy</type>
3021   - <description/>
3022   - <distribute>Y</distribute>
3023   - <custom_distribution/>
3024   - <copies>1</copies>
3025   - <partitioning>
3026   - <method>none</method>
3027   - <schema_name/>
3028   - </partitioning>
3029   - <cluster_schema/>
3030   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
3031   - <xloc>997</xloc>
3032   - <yloc>606</yloc>
3033   - <draw>Y</draw>
3034   - </GUI>
3035   - </step>
3036   -
3037   - <step_error_handling>
3038   - <error>
3039   - <source_step>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail</source_step>
3040   - <target_step/>
3041   - <is_enabled>Y</is_enabled>
3042   - <nr_valuename>c1</nr_valuename>
3043   - <descriptions_valuename>c2</descriptions_valuename>
3044   - <fields_valuename>c3</fields_valuename>
3045   - <codes_valuename>c4</codes_valuename>
3046   - <max_errors/>
3047   - <max_pct_errors/>
3048   - <min_pct_rows/>
3049   - </error>
3050   - </step_error_handling>
3051   - <slave-step-copy-partition-distribution>
3052   -</slave-step-copy-partition-distribution>
3053   - <slave_transformation>N</slave_transformation>
3054   -
3055   -</transformation>
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<transformation>
  3 + <info>
  4 + <name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x5bfc;&#x5165;2</name>
  5 + <description>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;&#x5bfc;&#x5165;</description>
  6 + <extended_description>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;</extended_description>
  7 + <trans_version/>
  8 + <trans_type>Normal</trans_type>
  9 + <trans_status>0</trans_status>
  10 + <directory>&#x2f;</directory>
  11 + <parameters>
  12 + </parameters>
  13 + <log>
  14 +<trans-log-table><connection/>
  15 +<schema/>
  16 +<table/>
  17 +<size_limit_lines/>
  18 +<interval/>
  19 +<timeout_days/>
  20 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STATUS</id><enabled>Y</enabled><name>STATUS</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name><subject/></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name><subject/></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name><subject/></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name><subject/></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name><subject/></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name><subject/></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>STARTDATE</id><enabled>Y</enabled><name>STARTDATE</name></field><field><id>ENDDATE</id><enabled>Y</enabled><name>ENDDATE</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>DEPDATE</id><enabled>Y</enabled><name>DEPDATE</name></field><field><id>REPLAYDATE</id><enabled>Y</enabled><name>REPLAYDATE</name></field><field><id>LOG_FIELD</id><enabled>Y</enabled><name>LOG_FIELD</name></field><field><id>EXECUTING_SERVER</id><enabled>N</enabled><name>EXECUTING_SERVER</name></field><field><id>EXECUTING_USER</id><enabled>N</enabled><name>EXECUTING_USER</name></field><field><id>CLIENT</id><enabled>N</enabled><name>CLIENT</name></field></trans-log-table>
  21 +<perf-log-table><connection/>
  22 +<schema/>
  23 +<table/>
  24 +<interval/>
  25 +<timeout_days/>
  26 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>SEQ_NR</id><enabled>Y</enabled><name>SEQ_NR</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>INPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>INPUT_BUFFER_ROWS</name></field><field><id>OUTPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>OUTPUT_BUFFER_ROWS</name></field></perf-log-table>
  27 +<channel-log-table><connection/>
  28 +<schema/>
  29 +<table/>
  30 +<timeout_days/>
  31 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>LOGGING_OBJECT_TYPE</id><enabled>Y</enabled><name>LOGGING_OBJECT_TYPE</name></field><field><id>OBJECT_NAME</id><enabled>Y</enabled><name>OBJECT_NAME</name></field><field><id>OBJECT_COPY</id><enabled>Y</enabled><name>OBJECT_COPY</name></field><field><id>REPOSITORY_DIRECTORY</id><enabled>Y</enabled><name>REPOSITORY_DIRECTORY</name></field><field><id>FILENAME</id><enabled>Y</enabled><name>FILENAME</name></field><field><id>OBJECT_ID</id><enabled>Y</enabled><name>OBJECT_ID</name></field><field><id>OBJECT_REVISION</id><enabled>Y</enabled><name>OBJECT_REVISION</name></field><field><id>PARENT_CHANNEL_ID</id><enabled>Y</enabled><name>PARENT_CHANNEL_ID</name></field><field><id>ROOT_CHANNEL_ID</id><enabled>Y</enabled><name>ROOT_CHANNEL_ID</name></field></channel-log-table>
  32 +<step-log-table><connection/>
  33 +<schema/>
  34 +<table/>
  35 +<timeout_days/>
  36 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>LOG_FIELD</id><enabled>N</enabled><name>LOG_FIELD</name></field></step-log-table>
  37 +<metrics-log-table><connection/>
  38 +<schema/>
  39 +<table/>
  40 +<timeout_days/>
  41 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>METRICS_DATE</id><enabled>Y</enabled><name>METRICS_DATE</name></field><field><id>METRICS_CODE</id><enabled>Y</enabled><name>METRICS_CODE</name></field><field><id>METRICS_DESCRIPTION</id><enabled>Y</enabled><name>METRICS_DESCRIPTION</name></field><field><id>METRICS_SUBJECT</id><enabled>Y</enabled><name>METRICS_SUBJECT</name></field><field><id>METRICS_TYPE</id><enabled>Y</enabled><name>METRICS_TYPE</name></field><field><id>METRICS_VALUE</id><enabled>Y</enabled><name>METRICS_VALUE</name></field></metrics-log-table>
  42 + </log>
  43 + <maxdate>
  44 + <connection/>
  45 + <table/>
  46 + <field/>
  47 + <offset>0.0</offset>
  48 + <maxdiff>0.0</maxdiff>
  49 + </maxdate>
  50 + <size_rowset>10000</size_rowset>
  51 + <sleep_time_empty>50</sleep_time_empty>
  52 + <sleep_time_full>50</sleep_time_full>
  53 + <unique_connections>N</unique_connections>
  54 + <feedback_shown>Y</feedback_shown>
  55 + <feedback_size>50000</feedback_size>
  56 + <using_thread_priorities>Y</using_thread_priorities>
  57 + <shared_objects_file/>
  58 + <capture_step_performance>N</capture_step_performance>
  59 + <step_performance_capturing_delay>1000</step_performance_capturing_delay>
  60 + <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit>
  61 + <dependencies>
  62 + </dependencies>
  63 + <partitionschemas>
  64 + </partitionschemas>
  65 + <slaveservers>
  66 + </slaveservers>
  67 + <clusterschemas>
  68 + </clusterschemas>
  69 + <created_user>-</created_user>
  70 + <created_date>2016&#x2f;06&#x2f;30 12&#x3a;21&#x3a;57.536</created_date>
  71 + <modified_user>-</modified_user>
  72 + <modified_date>2016&#x2f;06&#x2f;30 12&#x3a;21&#x3a;57.536</modified_date>
  73 + <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA&#x3d;</key_for_session_key>
  74 + <is_key_private>N</is_key_private>
  75 + </info>
  76 + <notepads>
  77 + <notepad>
  78 + <note>&#x5b57;&#x5178;&#x8868;&#x5bf9;&#x5e94;&#xff08;&#x4ee5;&#x540e;&#x76f4;&#x63a5;&#x67e5;&#x627e;&#x8868; bsth_c_sys_dictionary&#xff09;&#xa;&#x7c7b;&#x578b; &#x4ee3;&#x7801; &#x540d;&#x79f0;&#xa;LineTrend 0 &#x4e0a;&#x884c;&#xa;LineTrend 1 &#x4e0b;&#x884c;&#xa;ScheduleType normal &#x6b63;&#x5e38;&#x73ed;&#x6b21;&#xa;ScheduleType out &#x51fa;&#x573a;&#xa;ScheduleType in &#x8fdb;&#x573a;&#xa;ScheduleType temp &#x4e34;&#x52a0;&#xa;ScheduleType region &#x533a;&#x95f4;&#xa;ScheduleType venting &#x653e;&#x7a7a;&#xa;ScheduleType major &#x653e;&#x5927;&#x7ad9;</note>
  79 + <xloc>606</xloc>
  80 + <yloc>129</yloc>
  81 + <width>332</width>
  82 + <heigth>186</heigth>
  83 + <fontname>YaHei Consolas Hybrid</fontname>
  84 + <fontsize>12</fontsize>
  85 + <fontbold>N</fontbold>
  86 + <fontitalic>N</fontitalic>
  87 + <fontcolorred>0</fontcolorred>
  88 + <fontcolorgreen>0</fontcolorgreen>
  89 + <fontcolorblue>0</fontcolorblue>
  90 + <backgroundcolorred>255</backgroundcolorred>
  91 + <backgroundcolorgreen>205</backgroundcolorgreen>
  92 + <backgroundcolorblue>112</backgroundcolorblue>
  93 + <bordercolorred>100</bordercolorred>
  94 + <bordercolorgreen>100</bordercolorgreen>
  95 + <bordercolorblue>100</bordercolorblue>
  96 + <drawshadow>Y</drawshadow>
  97 + </notepad>
  98 + <notepad>
  99 + <note>&#x56e0;&#x4e3a;&#x65f6;&#x523b;&#x8868;&#x8f93;&#x5165;&#x683c;&#x5f0f;&#x4e0d;&#x786e;&#x5b9a;&#x6027;&#xff0c;&#x4e3b;&#x8981;&#x56e0;&#x4e3a;&#x8868;&#x7ed3;&#x6784;&#x662f;&#x53cd;&#x8303;&#x5f0f;&#x5316;&#x7684;&#xff0c;&#xa;&#x6240;&#x4ee5;&#x9700;&#x8981;&#x5916;&#x90e8;&#x52a8;&#x6001;&#x6307;&#x5b9a;&#x613f;&#x6570;&#x636e;&#xff0c;&#x5934;&#x4e09;&#x4e2a;step&#x52a8;&#x6001;&#x6307;&#x5b9a;&#x613f;&#x6570;&#x636e;&#xa;&#xa;</note>
  100 + <xloc>79</xloc>
  101 + <yloc>206</yloc>
  102 + <width>346</width>
  103 + <heigth>74</heigth>
  104 + <fontname>YaHei Consolas Hybrid</fontname>
  105 + <fontsize>12</fontsize>
  106 + <fontbold>N</fontbold>
  107 + <fontitalic>N</fontitalic>
  108 + <fontcolorred>0</fontcolorred>
  109 + <fontcolorgreen>0</fontcolorgreen>
  110 + <fontcolorblue>0</fontcolorblue>
  111 + <backgroundcolorred>255</backgroundcolorred>
  112 + <backgroundcolorgreen>205</backgroundcolorgreen>
  113 + <backgroundcolorblue>112</backgroundcolorblue>
  114 + <bordercolorred>100</bordercolorred>
  115 + <bordercolorgreen>100</bordercolorgreen>
  116 + <bordercolorblue>100</bordercolorblue>
  117 + <drawshadow>Y</drawshadow>
  118 + </notepad>
  119 + <notepad>
  120 + <note>&#x8fd9;&#x91cc;&#x6709;&#x4e9b;&#x95ee;&#x9898;&#xa;&#x5728;window2012&#x7684;&#x73af;&#x5883;&#x4e0b;&#xff0c;&#xa;MySql&#x6570;&#x636e;&#x5e93;&#x67e5;&#x8be2;&#x4e2d;&#x5982;&#x679c;&#x8fd4;&#x56de;&#x4e2d;&#x6587;&#x5185;&#x5bb9;&#x7684;&#x5b57;&#x6bb5;&#xff0c;&#x8fd9;&#x4e2a;&#x5185;&#x5bb9;&#x4e71;&#x7801;&#xa;&#x89e3;&#x51b3;&#x529e;&#x6cd5;&#xff0c;&#x5c31;&#x662f;&#x6570;&#x636e;&#x5e93;&#x67e5;&#x8be2;&#x5168;&#x90e8;&#x7f13;&#x5b58;&#xff0c;&#x5c31;&#x4e0d;&#x4e71;&#x7801;&#xa;linux&#x73af;&#x5883;&#x4e0b;&#x6ca1;&#x95ee;&#x9898;</note>
  121 + <xloc>721</xloc>
  122 + <yloc>762</yloc>
  123 + <width>333</width>
  124 + <heigth>90</heigth>
  125 + <fontname>YaHei Consolas Hybrid</fontname>
  126 + <fontsize>12</fontsize>
  127 + <fontbold>N</fontbold>
  128 + <fontitalic>N</fontitalic>
  129 + <fontcolorred>0</fontcolorred>
  130 + <fontcolorgreen>0</fontcolorgreen>
  131 + <fontcolorblue>0</fontcolorblue>
  132 + <backgroundcolorred>255</backgroundcolorred>
  133 + <backgroundcolorgreen>205</backgroundcolorgreen>
  134 + <backgroundcolorblue>112</backgroundcolorblue>
  135 + <bordercolorred>100</bordercolorred>
  136 + <bordercolorgreen>100</bordercolorgreen>
  137 + <bordercolorblue>100</bordercolorblue>
  138 + <drawshadow>Y</drawshadow>
  139 + </notepad>
  140 + <notepad>
  141 + <note>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#xff0c;&#x65b9;&#x5411;&#x6709;&#x65f6;&#x786e;&#x5b9a;&#x4e0d;&#x51c6;&#xff0c;&#xa;&#x7a7a;&#x7684;&#x60c5;&#x51b5;&#x4e0b;&#x8bbe;&#x5b9a;&#x4e3a;0&#xff08;&#x4e0a;&#x884c;&#xff09;</note>
  142 + <xloc>104</xloc>
  143 + <yloc>939</yloc>
  144 + <width>178</width>
  145 + <heigth>42</heigth>
  146 + <fontname>YaHei Consolas Hybrid</fontname>
  147 + <fontsize>12</fontsize>
  148 + <fontbold>N</fontbold>
  149 + <fontitalic>N</fontitalic>
  150 + <fontcolorred>0</fontcolorred>
  151 + <fontcolorgreen>0</fontcolorgreen>
  152 + <fontcolorblue>0</fontcolorblue>
  153 + <backgroundcolorred>255</backgroundcolorred>
  154 + <backgroundcolorgreen>205</backgroundcolorgreen>
  155 + <backgroundcolorblue>112</backgroundcolorblue>
  156 + <bordercolorred>100</bordercolorred>
  157 + <bordercolorgreen>100</bordercolorgreen>
  158 + <bordercolorblue>100</bordercolorblue>
  159 + <drawshadow>Y</drawshadow>
  160 + </notepad>
  161 + <notepad>
  162 + <note>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#xff0c;&#x65b9;&#x5411;&#x6709;&#x65f6;&#x786e;&#x5b9a;&#x4e0d;&#x51c6;&#xff0c;&#xa;&#x7a7a;&#x7684;&#x60c5;&#x51b5;&#x4e0b;&#x8bbe;&#x5b9a;&#x4e3a;0&#xff08;&#x4e0a;&#x884c;&#xff09;</note>
  163 + <xloc>578</xloc>
  164 + <yloc>1084</yloc>
  165 + <width>178</width>
  166 + <heigth>42</heigth>
  167 + <fontname>YaHei Consolas Hybrid</fontname>
  168 + <fontsize>12</fontsize>
  169 + <fontbold>N</fontbold>
  170 + <fontitalic>N</fontitalic>
  171 + <fontcolorred>0</fontcolorred>
  172 + <fontcolorgreen>0</fontcolorgreen>
  173 + <fontcolorblue>0</fontcolorblue>
  174 + <backgroundcolorred>255</backgroundcolorred>
  175 + <backgroundcolorgreen>205</backgroundcolorgreen>
  176 + <backgroundcolorblue>112</backgroundcolorblue>
  177 + <bordercolorred>100</bordercolorred>
  178 + <bordercolorgreen>100</bordercolorgreen>
  179 + <bordercolorblue>100</bordercolorblue>
  180 + <drawshadow>Y</drawshadow>
  181 + </notepad>
  182 + </notepads>
  183 + <connection>
  184 + <name>192.168.168.1_jwgl_dw</name>
  185 + <server>192.168.168.1</server>
  186 + <type>ORACLE</type>
  187 + <access>Native</access>
  188 + <database>orcl</database>
  189 + <port>1521</port>
  190 + <username>jwgl_dw</username>
  191 + <password>Encrypted 2be98afc86aa7f2e4cb13b977d2adabcd</password>
  192 + <servername/>
  193 + <data_tablespace/>
  194 + <index_tablespace/>
  195 + <attributes>
  196 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  197 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  198 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  199 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  200 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  201 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  202 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  203 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  204 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  205 + </attributes>
  206 + </connection>
  207 + <connection>
  208 + <name>bus_control_variable</name>
  209 + <server>&#x24;&#x7b;v_db_ip&#x7d;</server>
  210 + <type>MYSQL</type>
  211 + <access>Native</access>
  212 + <database>&#x24;&#x7b;v_db_dname&#x7d;</database>
  213 + <port>3306</port>
  214 + <username>&#x24;&#x7b;v_db_uname&#x7d;</username>
  215 + <password>&#x24;&#x7b;v_db_pwd&#x7d;</password>
  216 + <servername/>
  217 + <data_tablespace/>
  218 + <index_tablespace/>
  219 + <attributes>
  220 + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
  221 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  222 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  223 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  224 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  225 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  226 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  227 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  228 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  229 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  230 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  231 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  232 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  233 + </attributes>
  234 + </connection>
  235 + <connection>
  236 + <name>bus_control_&#x516c;&#x53f8;_201</name>
  237 + <server>localhost</server>
  238 + <type>MYSQL</type>
  239 + <access>Native</access>
  240 + <database>control</database>
  241 + <port>3306</port>
  242 + <username>root</username>
  243 + <password>Encrypted </password>
  244 + <servername/>
  245 + <data_tablespace/>
  246 + <index_tablespace/>
  247 + <attributes>
  248 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  249 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  250 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  251 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  252 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  253 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  254 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  255 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  256 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  257 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  258 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  259 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  260 + </attributes>
  261 + </connection>
  262 + <connection>
  263 + <name>bus_control_&#x672c;&#x673a;</name>
  264 + <server>localhost</server>
  265 + <type>MYSQL</type>
  266 + <access>Native</access>
  267 + <database>control</database>
  268 + <port>3306</port>
  269 + <username>root</username>
  270 + <password>Encrypted </password>
  271 + <servername/>
  272 + <data_tablespace/>
  273 + <index_tablespace/>
  274 + <attributes>
  275 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  276 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  277 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  278 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  279 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  280 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  281 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  282 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  283 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  284 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  285 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  286 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  287 + </attributes>
  288 + </connection>
  289 + <connection>
  290 + <name>xlab_mysql_youle</name>
  291 + <server>101.231.124.8</server>
  292 + <type>MYSQL</type>
  293 + <access>Native</access>
  294 + <database>xlab_youle</database>
  295 + <port>45687</port>
  296 + <username>xlab-youle</username>
  297 + <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password>
  298 + <servername/>
  299 + <data_tablespace/>
  300 + <index_tablespace/>
  301 + <attributes>
  302 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  303 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  304 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  305 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  306 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  307 + <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute>
  308 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  309 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  310 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  311 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  312 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  313 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  314 + </attributes>
  315 + </connection>
  316 + <connection>
  317 + <name>xlab_mysql_youle&#xff08;&#x672c;&#x673a;&#xff09;</name>
  318 + <server>localhost</server>
  319 + <type>MYSQL</type>
  320 + <access>Native</access>
  321 + <database>xlab_youle</database>
  322 + <port>3306</port>
  323 + <username>root</username>
  324 + <password>Encrypted </password>
  325 + <servername/>
  326 + <data_tablespace/>
  327 + <index_tablespace/>
  328 + <attributes>
  329 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  330 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  331 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  332 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  333 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  334 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  335 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  336 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  337 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  338 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  339 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  340 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  341 + </attributes>
  342 + </connection>
  343 + <connection>
  344 + <name>xlab_youle</name>
  345 + <server/>
  346 + <type>MYSQL</type>
  347 + <access>JNDI</access>
  348 + <database>xlab_youle</database>
  349 + <port>1521</port>
  350 + <username/>
  351 + <password>Encrypted </password>
  352 + <servername/>
  353 + <data_tablespace/>
  354 + <index_tablespace/>
  355 + <attributes>
  356 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  357 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  358 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  359 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  360 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  361 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  362 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  363 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  364 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  365 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  366 + </attributes>
  367 + </connection>
  368 + <order>
  369 + <hop> <from>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</from><to>&#x73ed;&#x6b21;&#x6570;&#x636e;&#x8303;&#x5f0f;&#x5316;</to><enabled>Y</enabled> </hop>
  370 + <hop> <from>&#x6dfb;&#x52a0;&#x53d1;&#x8f66;&#x987a;&#x5e8f;&#x53f7;</from><to>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;&#xff08;&#x53d1;&#x8f66;&#x65f6;&#x95f4;&#x4e3a;&#x7a7a;&#xff09;</to><enabled>Y</enabled> </hop>
  371 + <hop> <from>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;&#xff08;&#x53d1;&#x8f66;&#x65f6;&#x95f4;&#x4e3a;&#x7a7a;&#xff09;</from><to>&#x6dfb;&#x52a0;&#x5bf9;&#x5e94;&#x73ed;&#x6b21;&#x6570;</to><enabled>Y</enabled> </hop>
  372 + <hop> <from>&#x6dfb;&#x52a0;&#x5bf9;&#x5e94;&#x73ed;&#x6b21;&#x6570;</from><to>&#x5904;&#x7406;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
  373 + <hop> <from>&#x5904;&#x7406;&#x6570;&#x636e;</from><to>&#x5206;&#x7ec4;&#x5404;&#x4e2a;&#x8def;&#x724c;&#x7684;&#x7ad9;</to><enabled>Y</enabled> </hop>
  374 + <hop> <from>&#x67e5;&#x627e;&#x65f6;&#x523b;&#x8868;&#x57fa;&#x7840;&#x4fe1;&#x606f;&#x5173;&#x8054;</from><to>&#x67e5;&#x627e;&#x8def;&#x724c;&#x5173;&#x8054;</to><enabled>Y</enabled> </hop>
  375 + <hop> <from>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x5173;&#x8054;</from><to>&#x67e5;&#x627e;&#x65f6;&#x523b;&#x8868;&#x57fa;&#x7840;&#x4fe1;&#x606f;&#x5173;&#x8054;</to><enabled>Y</enabled> </hop>
  376 + <hop> <from>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178;</from><to>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178;</to><enabled>Y</enabled> </hop>
  377 + <hop> <from>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 2</from><to>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 2</to><enabled>Y</enabled> </hop>
  378 + <hop> <from>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 3</from><to>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 3</to><enabled>Y</enabled> </hop>
  379 + <hop> <from>&#x5339;&#x914d;&#x4e0a;&#x4e0b;&#x884c;&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</from><to>&#x7c7b;&#x578b;&#x4fee;&#x6b63;</to><enabled>Y</enabled> </hop>
  380 + <hop> <from>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;1</from><to>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</to><enabled>Y</enabled> </hop>
  381 + <hop> <from>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;1</from><to>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
  382 + <hop> <from>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</from><to>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
  383 + <hop> <from>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</from><to>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
  384 + <hop> <from>&#x67e5;&#x627e;&#x6240;&#x6709;&#x7ebf;&#x8def;&#x4e0a;&#x4e0b;&#x884c;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</from><to>&#x5339;&#x914d;&#x4e0a;&#x4e0b;&#x884c;&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>
  385 + <hop> <from>&#x67e5;&#x627e;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;</from><to>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178;</to><enabled>Y</enabled> </hop>
  386 + <hop> <from>&#x67e5;&#x627e;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</from><to>&#x67e5;&#x627e;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;</to><enabled>Y</enabled> </hop>
  387 + <hop> <from>&#x6b63;&#x5e38;&#x73ed;&#x6b21;_&#x5904;&#x7406;&#x6570;&#x636e;</from><to>&#x67e5;&#x627e;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</to><enabled>Y</enabled> </hop>
  388 + <hop> <from>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</from><to>&#x6b63;&#x5e38;&#x73ed;&#x6b21;_&#x5904;&#x7406;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
  389 + <hop> <from>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178;</from><to>&#x67e5;&#x627e;&#x6240;&#x6709;&#x7ebf;&#x8def;&#x4e0a;&#x4e0b;&#x884c;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>
  390 + <hop> <from>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 2</from><to>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x51fa;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>
  391 + <hop> <from>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 3</from><to>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x8fdb;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>
  392 + <hop> <from>&#x67e5;&#x627e;&#x8def;&#x724c;&#x5173;&#x8054;</from><to>&#x8ba1;&#x7b97;&#x73ed;&#x6b21;&#x7c7b;&#x578b;</to><enabled>Y</enabled> </hop>
  393 + <hop> <from>&#x8ba1;&#x7b97;&#x73ed;&#x6b21;&#x7c7b;&#x578b;</from><to>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;1</to><enabled>Y</enabled> </hop>
  394 + <hop> <from>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</from><to>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;1</to><enabled>Y</enabled> </hop>
  395 + <hop> <from>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;1</from><to>&#x51fa;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x7ec8;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</to><enabled>Y</enabled> </hop>
  396 + <hop> <from>&#x51fa;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x7ec8;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</from><to>&#x67e5;&#x627e;&#x51fa;&#x573a;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</to><enabled>Y</enabled> </hop>
  397 + <hop> <from>&#x67e5;&#x627e;&#x51fa;&#x573a;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</from><to>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 2</to><enabled>Y</enabled> </hop>
  398 + <hop> <from>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</from><to>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;2</to><enabled>Y</enabled> </hop>
  399 + <hop> <from>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;2</from><to>&#x8fdb;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x8d77;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</to><enabled>Y</enabled> </hop>
  400 + <hop> <from>&#x8fdb;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x8d77;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</from><to>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ebf;&#x8def;&#x65b9;&#x5411;</to><enabled>Y</enabled> </hop>
  401 + <hop> <from>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ebf;&#x8def;&#x65b9;&#x5411;</from><to>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ec8;&#x70b9;&#x7ad9;&#xff0c;&#x5e76;&#x4f5c;&#x4e3a;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x7684;&#x8d77;&#x70b9;&#x7ad9;</to><enabled>Y</enabled> </hop>
  402 + <hop> <from>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</from><to>&#x6dfb;&#x52a0;&#x53d1;&#x8f66;&#x987a;&#x5e8f;&#x53f7;</to><enabled>Y</enabled> </hop>
  403 + <hop> <from>&#x5206;&#x7ec4;&#x5404;&#x4e2a;&#x8def;&#x724c;&#x7684;&#x7ad9;</from><to>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x5173;&#x8054;</to><enabled>Y</enabled> </hop>
  404 + <hop> <from>&#x589e;&#x52a0;&#x65f6;&#x523b;&#x8868;&#x540d;&#x5b57;&#xff0c;&#x7ebf;&#x8def;&#x540d;&#x5b57;&#xff0c;&#x505c;&#x8f66;&#x573a;&#x540d;&#x5b57;</from><to>&#x8bb0;&#x5f55;&#x5173;&#x8054; &#x28;&#x7b1b;&#x5361;&#x5c14;&#x8f93;&#x51fa;&#x29;</to><enabled>Y</enabled> </hop>
  405 + <hop> <from>&#x73ed;&#x6b21;&#x6570;&#x636e;&#x8303;&#x5f0f;&#x5316;</from><to>&#x8bb0;&#x5f55;&#x5173;&#x8054; &#x28;&#x7b1b;&#x5361;&#x5c14;&#x8f93;&#x51fa;&#x29;</to><enabled>Y</enabled> </hop>
  406 + <hop> <from>&#x8bb0;&#x5f55;&#x5173;&#x8054; &#x28;&#x7b1b;&#x5361;&#x5c14;&#x8f93;&#x51fa;&#x29;</from><to>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</to><enabled>Y</enabled> </hop>
  407 + <hop> <from>&#x7c7b;&#x578b;&#x4fee;&#x6b63;</from><to>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail</to><enabled>Y</enabled> </hop>
  408 + <hop> <from>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ec8;&#x70b9;&#x7ad9;&#xff0c;&#x5e76;&#x4f5c;&#x4e3a;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x7684;&#x8d77;&#x70b9;&#x7ad9;</from><to>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</to><enabled>Y</enabled> </hop>
  409 + <hop> <from>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</from><to>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 3</to><enabled>Y</enabled> </hop>
  410 + <hop> <from>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x51fa;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</from><to>&#x5339;&#x914d;&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>
  411 + <hop> <from>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x8fdb;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</from><to>&#x5339;&#x914d;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>
  412 + <hop> <from>&#x5339;&#x914d;&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</from><to>&#x4e0a;&#x4e0b;&#x884c;NULL&#x5224;&#x5b9a;</to><enabled>Y</enabled> </hop>
  413 + <hop> <from>&#x4e0a;&#x4e0b;&#x884c;NULL&#x5224;&#x5b9a;</from><to>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 2</to><enabled>Y</enabled> </hop>
  414 + <hop> <from>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 2</from><to>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail 2</to><enabled>Y</enabled> </hop>
  415 + <hop> <from>&#x5339;&#x914d;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</from><to>&#x4e0a;&#x4e0b;&#x884c;&#x5224;&#x5b9a; 2</to><enabled>Y</enabled> </hop>
  416 + <hop> <from>&#x4e0a;&#x4e0b;&#x884c;&#x5224;&#x5b9a; 2</from><to>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 3</to><enabled>Y</enabled> </hop>
  417 + <hop> <from>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 3</from><to>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail 3</to><enabled>Y</enabled> </hop>
  418 + </order>
  419 + <step>
  420 + <name>&#x4e0a;&#x4e0b;&#x884c;NULL&#x5224;&#x5b9a;</name>
  421 + <type>IfNull</type>
  422 + <description/>
  423 + <distribute>Y</distribute>
  424 + <custom_distribution/>
  425 + <copies>1</copies>
  426 + <partitioning>
  427 + <method>none</method>
  428 + <schema_name/>
  429 + </partitioning>
  430 + <replaceAllByValue/>
  431 + <replaceAllMask/>
  432 + <selectFields>Y</selectFields>
  433 + <selectValuesType>N</selectValuesType>
  434 + <setEmptyStringAll>N</setEmptyStringAll>
  435 + <valuetypes>
  436 + </valuetypes>
  437 + <fields>
  438 + <field>
  439 + <name>sxx</name>
  440 + <value>0</value>
  441 + <mask/>
  442 + <set_empty_string>N</set_empty_string>
  443 + </field>
  444 + </fields>
  445 + <cluster_schema/>
  446 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  447 + <xloc>335</xloc>
  448 + <yloc>938</yloc>
  449 + <draw>Y</draw>
  450 + </GUI>
  451 + </step>
  452 +
  453 + <step>
  454 + <name>&#x4e0a;&#x4e0b;&#x884c;&#x5224;&#x5b9a; 2</name>
  455 + <type>IfNull</type>
  456 + <description/>
  457 + <distribute>Y</distribute>
  458 + <custom_distribution/>
  459 + <copies>1</copies>
  460 + <partitioning>
  461 + <method>none</method>
  462 + <schema_name/>
  463 + </partitioning>
  464 + <replaceAllByValue/>
  465 + <replaceAllMask/>
  466 + <selectFields>Y</selectFields>
  467 + <selectValuesType>N</selectValuesType>
  468 + <setEmptyStringAll>N</setEmptyStringAll>
  469 + <valuetypes>
  470 + </valuetypes>
  471 + <fields>
  472 + <field>
  473 + <name>sxx2</name>
  474 + <value>0</value>
  475 + <mask/>
  476 + <set_empty_string>N</set_empty_string>
  477 + </field>
  478 + </fields>
  479 + <cluster_schema/>
  480 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  481 + <xloc>804</xloc>
  482 + <yloc>1081</yloc>
  483 + <draw>Y</draw>
  484 + </GUI>
  485 + </step>
  486 +
  487 + <step>
  488 + <name>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178;</name>
  489 + <type>ValueMapper</type>
  490 + <description/>
  491 + <distribute>Y</distribute>
  492 + <custom_distribution/>
  493 + <copies>1</copies>
  494 + <partitioning>
  495 + <method>none</method>
  496 + <schema_name/>
  497 + </partitioning>
  498 + <field_to_use>sxx</field_to_use>
  499 + <target_field>sxx_desc</target_field>
  500 + <non_match_default/>
  501 + <fields>
  502 + <field>
  503 + <source_value>0</source_value>
  504 + <target_value>&#x4e0a;&#x884c;</target_value>
  505 + </field>
  506 + <field>
  507 + <source_value>1</source_value>
  508 + <target_value>&#x4e0b;&#x884c;</target_value>
  509 + </field>
  510 + </fields>
  511 + <cluster_schema/>
  512 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  513 + <xloc>147</xloc>
  514 + <yloc>403</yloc>
  515 + <draw>Y</draw>
  516 + </GUI>
  517 + </step>
  518 +
  519 + <step>
  520 + <name>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 2</name>
  521 + <type>ValueMapper</type>
  522 + <description/>
  523 + <distribute>Y</distribute>
  524 + <custom_distribution/>
  525 + <copies>1</copies>
  526 + <partitioning>
  527 + <method>none</method>
  528 + <schema_name/>
  529 + </partitioning>
  530 + <field_to_use>sxx</field_to_use>
  531 + <target_field>sxx_desc</target_field>
  532 + <non_match_default/>
  533 + <fields>
  534 + <field>
  535 + <source_value>0</source_value>
  536 + <target_value>&#x4e0a;&#x884c;</target_value>
  537 + </field>
  538 + <field>
  539 + <source_value>1</source_value>
  540 + <target_value>&#x4e0b;&#x884c;</target_value>
  541 + </field>
  542 + </fields>
  543 + <cluster_schema/>
  544 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  545 + <xloc>331</xloc>
  546 + <yloc>598</yloc>
  547 + <draw>Y</draw>
  548 + </GUI>
  549 + </step>
  550 +
  551 + <step>
  552 + <name>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 3</name>
  553 + <type>ValueMapper</type>
  554 + <description/>
  555 + <distribute>Y</distribute>
  556 + <custom_distribution/>
  557 + <copies>1</copies>
  558 + <partitioning>
  559 + <method>none</method>
  560 + <schema_name/>
  561 + </partitioning>
  562 + <field_to_use>sxx</field_to_use>
  563 + <target_field>sxx_desc</target_field>
  564 + <non_match_default/>
  565 + <fields>
  566 + <field>
  567 + <source_value>0</source_value>
  568 + <target_value>&#x4e0a;&#x884c;</target_value>
  569 + </field>
  570 + <field>
  571 + <source_value>1</source_value>
  572 + <target_value>&#x4e0b;&#x884c;</target_value>
  573 + </field>
  574 + </fields>
  575 + <cluster_schema/>
  576 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  577 + <xloc>553</xloc>
  578 + <yloc>859</yloc>
  579 + <draw>Y</draw>
  580 + </GUI>
  581 + </step>
  582 +
  583 + <step>
  584 + <name>&#x51fa;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x7ec8;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</name>
  585 + <type>ScriptValueMod</type>
  586 + <description/>
  587 + <distribute>Y</distribute>
  588 + <custom_distribution/>
  589 + <copies>1</copies>
  590 + <partitioning>
  591 + <method>none</method>
  592 + <schema_name/>
  593 + </partitioning>
  594 + <compatible>N</compatible>
  595 + <optimizationLevel>9</optimizationLevel>
  596 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  597 + <jsScript_name>Script 1</jsScript_name>
  598 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;&#x2f;&#x2f; &#x6dfb;&#x52a0;&#x7ad9;&#x70b9;&#x6807;&#x8bc6;&#xa;var cc_groups &#x3d; qdzgroups.split&#x28;&#x22;,&#x22;&#x29;&#x3b; &#x2f;&#x2f; &#x6240;&#x6709;&#x73ed;&#x6b21;&#x8d77;&#x70b9;&#x7ad9;&#x6570;&#x7ec4;&#xa;var zdzname &#x3d; cc_groups&#x5b;gno&#x5d;&#x3b; &#x2f;&#x2f; &#x51fa;&#x573a;&#x73ed;&#x6b21;&#x7684;&#x7ec8;&#x70b9;&#x7ad9;&#x662f;&#x4e0b;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x8d77;&#x59cb;&#x7ad9;&#xa;var endZdtype &#x3d; &#x27;B&#x27;&#x3b;&#xa;&#x2f;&#x2f; var endZdtype &#x3d; &#x27;E&#x27;&#x3b;&#xa;&#xa;var destory &#x3d; 0&#x3b; &#x2f;&#x2f; &#x672a;&#x64a4;&#x9500;flag</jsScript_script>
  599 + </jsScript> </jsScripts> <fields> <field> <name>zdzname</name>
  600 + <rename>zdzname</rename>
  601 + <type>String</type>
  602 + <length>-1</length>
  603 + <precision>-1</precision>
  604 + <replace>N</replace>
  605 + </field> <field> <name>endZdtype</name>
  606 + <rename>endZdtype</rename>
  607 + <type>String</type>
  608 + <length>-1</length>
  609 + <precision>-1</precision>
  610 + <replace>N</replace>
  611 + </field> <field> <name>destory</name>
  612 + <rename>destory</rename>
  613 + <type>Integer</type>
  614 + <length>-1</length>
  615 + <precision>-1</precision>
  616 + <replace>N</replace>
  617 + </field> </fields> <cluster_schema/>
  618 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  619 + <xloc>575</xloc>
  620 + <yloc>502</yloc>
  621 + <draw>Y</draw>
  622 + </GUI>
  623 + </step>
  624 +
  625 + <step>
  626 + <name>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</name>
  627 + <type>Dummy</type>
  628 + <description/>
  629 + <distribute>Y</distribute>
  630 + <custom_distribution/>
  631 + <copies>1</copies>
  632 + <partitioning>
  633 + <method>none</method>
  634 + <schema_name/>
  635 + </partitioning>
  636 + <cluster_schema/>
  637 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  638 + <xloc>869</xloc>
  639 + <yloc>504</yloc>
  640 + <draw>Y</draw>
  641 + </GUI>
  642 + </step>
  643 +
  644 + <step>
  645 + <name>&#x5206;&#x7ec4;&#x5404;&#x4e2a;&#x8def;&#x724c;&#x7684;&#x7ad9;</name>
  646 + <type>GroupBy</type>
  647 + <description/>
  648 + <distribute>Y</distribute>
  649 + <custom_distribution/>
  650 + <copies>1</copies>
  651 + <partitioning>
  652 + <method>none</method>
  653 + <schema_name/>
  654 + </partitioning>
  655 + <all_rows>Y</all_rows>
  656 + <ignore_aggregate>N</ignore_aggregate>
  657 + <field_ignore/>
  658 + <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
  659 + <prefix>grp</prefix>
  660 + <add_linenr>Y</add_linenr>
  661 + <linenr_fieldname>gno</linenr_fieldname>
  662 + <give_back_row>N</give_back_row>
  663 + <group>
  664 + <field>
  665 + <name>lp</name>
  666 + </field>
  667 + </group>
  668 + <fields>
  669 + <field>
  670 + <aggregate>qdzgroups</aggregate>
  671 + <subject>qdzname</subject>
  672 + <type>CONCAT_STRING</type>
  673 + <valuefield>,</valuefield>
  674 + </field>
  675 + </fields>
  676 + <cluster_schema/>
  677 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  678 + <xloc>892</xloc>
  679 + <yloc>44</yloc>
  680 + <draw>Y</draw>
  681 + </GUI>
  682 + </step>
  683 +
  684 + <step>
  685 + <name>&#x5339;&#x914d;&#x4e0a;&#x4e0b;&#x884c;&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
  686 + <type>ScriptValueMod</type>
  687 + <description/>
  688 + <distribute>Y</distribute>
  689 + <custom_distribution/>
  690 + <copies>1</copies>
  691 + <partitioning>
  692 + <method>none</method>
  693 + <schema_name/>
  694 + </partitioning>
  695 + <compatible>N</compatible>
  696 + <optimizationLevel>9</optimizationLevel>
  697 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  698 + <jsScript_name>Script 1</jsScript_name>
  699 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var jhlc&#x3b; &#x2f;&#x2f; &#x8ba1;&#x5212;&#x91cc;&#x7a0b;&#xa;var bcsj&#x3b; &#x2f;&#x2f; &#x73ed;&#x6b21;&#x65f6;&#x95f4;&#xa;&#xa;&#x2f;&#x2f; &#x65f6;&#x95f4;&#x8303;&#x56f4;&#x6b63;&#x5219;&#x8868;&#x8fbe;&#x5f0f;&#xa;var timeRex &#x3d; &#x2f;&#x5e;&#x28;&#x5b;01&#x5d;&#x3f;&#x5b;0-9&#x5d;&#x7c;2&#x5b;0-3&#x5d;&#x29;&#x3a;&#x5b;0-5&#x5d;&#x5b;0-9&#x5d;&#x24;&#x2f;&#x3b;&#xa;&#x2f;&#x2f; &#x53d1;&#x8f66;&#x65f6;&#x95f4;&#x8f6c;&#x6362;&#x6210;&#x65e5;&#x671f;&#xa;var fcsj_hour &#x3d; str2num&#x28;sendtime_calcu.substr&#x28;0, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa;var fcsj_min &#x3d; str2num&#x28;sendtime_calcu.substr&#x28;3, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa;var fcsj_date &#x3d; new Date&#x28;2000,1,1,fcsj_hour,fcsj_min,0&#x29;&#x3b;&#xa;&#xa;&#x2f;&#x2f; &#x5224;&#x5b9a;&#x662f;&#x5426;&#x65e9;&#x9ad8;&#x5cf0;&#xa;var isZgf &#x3d; false&#x3b;&#xa;if &#x28;timeRex.test&#x28;early_start_time&#x29; &#x26;&#x26; timeRex.test&#x28;early_end_time&#x29; &#x26;&#x26; early_up_time &#x21;&#x3d; null &#x26;&#x26; early_down_time &#x21;&#x3d; null&#x29; &#x7b;&#xa; var early_s_hour &#x3d; str2num&#x28;early_start_time.substr&#x28;0, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var early_s_min &#x3d; str2num&#x28;early_start_time.substr&#x28;3, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var early_s_date &#x3d; new Date&#x28;2000,1,1,early_s_hour,early_s_min,0&#x29;&#x3b;&#xa;&#xa; var early_e_hour &#x3d; str2num&#x28;early_end_time.substr&#x28;0, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var early_e_min &#x3d; str2num&#x28;early_end_time.substr&#x28;3, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var early_e_date &#x3d; new Date&#x28;2000,1,1,early_e_hour,early_e_min,0&#x29;&#x3b;&#xa;&#xa; if &#x28;fcsj_date &#x3e;&#x3d; early_s_date &#x26;&#x26; fcsj_date &#x3c;&#x3d; early_e_date&#x29; &#x7b;&#xa; isZgf &#x3d; true&#x3b;&#xa; &#x7d;&#xa;&#x7d;&#xa;&#xa;&#x2f;&#x2f; &#x5224;&#x5b9a;&#x662f;&#x5426;&#x665a;&#x9ad8;&#x5cf0;&#xa;var isWgf &#x3d; false&#x3b;&#xa;if &#x28;timeRex.test&#x28;late_start_time&#x29; &#x26;&#x26; timeRex.test&#x28;late_end_time&#x29; &#x26;&#x26; late_up_time &#x21;&#x3d; null &#x26;&#x26; late_down_time &#x21;&#x3d; null&#x29; &#x7b;&#xa; var late_s_hour &#x3d; str2num&#x28;late_start_time.substr&#x28;0, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var late_s_min &#x3d; str2num&#x28;late_start_time.substr&#x28;3, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var late_s_date &#x3d; new Date&#x28;2000,1,1,late_s_hour,late_s_min,0&#x29;&#x3b;&#xa;&#xa; var late_e_hour &#x3d; str2num&#x28;late_end_time.substr&#x28;0, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var late_e_min &#x3d; str2num&#x28;late_end_time.substr&#x28;3, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var late_e_date &#x3d; new Date&#x28;2000,1,1,late_e_hour,late_e_min,0&#x29;&#x3b;&#xa;&#xa; if &#x28;fcsj_date &#x3e;&#x3d; late_s_date &#x26;&#x26; fcsj_date &#x3c;&#x3d; late_e_date&#x29; &#x7b;&#xa; isWgf &#x3d; true&#x3b;&#xa; &#x7d;&#xa;&#x7d;&#xa;&#xa;&#x2f;&#x2f; &#x5224;&#x5b9a;&#x662f;&#x5426;&#x665a;&#x9ad8;&#x5cf0;&#xa;&#xa;if &#x28;sxx &#x3d;&#x3d; 0&#x29; &#x7b; &#x2f;&#x2f; &#x4e0a;&#x884c;&#xa; if &#x28;isZgf&#x29; &#x7b;&#xa; jhlc &#x3d; up_mileage&#x3b;&#xa; bcsj &#x3d; early_up_time &#x21;&#x3d; 0 &#x3f; early_up_time &#x3a; up_travel_time&#x3b;&#xa; &#x7d; else if &#x28;isWgf&#x29; &#x7b;&#xa; jhlc &#x3d; up_mileage&#x3b;&#xa; bcsj &#x3d; late_up_time &#x21;&#x3d; 0 &#x3f; late_up_time &#x3a; up_travel_time&#x3b;&#xa; &#x7d; else &#x7b;&#xa; jhlc &#x3d; up_mileage&#x3b;&#xa; bcsj &#x3d; up_travel_time&#x3b;&#xa; &#x7d;&#xa;&#x7d; else &#x7b; &#x2f;&#x2f; sxx &#x3d;&#x3d; 1 &#x4e0b;&#x884c;&#xa; if &#x28;isZgf&#x29; &#x7b;&#xa; jhlc &#x3d; down_mileage&#x3b;&#xa; bcsj &#x3d; early_down_time &#x21;&#x3d; 0 &#x3f; early_down_time &#x3a; down_travel_time&#x3b;&#xa; &#x7d; else if &#x28;isWgf&#x29; &#x7b;&#xa; jhlc &#x3d; down_mileage&#x3b;&#xa; bcsj &#x3d; late_down_time &#x21;&#x3d; 0 &#x3f; late_down_time &#x3a; down_travel_time&#x3b;&#xa; &#x7d; else &#x7b;&#xa; jhlc &#x3d; down_mileage&#x3b;&#xa; bcsj &#x3d; down_travel_time&#x3b;&#xa; &#x7d;&#xa;&#x7d;</jsScript_script>
  700 + </jsScript> </jsScripts> <fields> <field> <name>jhlc</name>
  701 + <rename>jhlc</rename>
  702 + <type>String</type>
  703 + <length>-1</length>
  704 + <precision>-1</precision>
  705 + <replace>N</replace>
  706 + </field> <field> <name>bcsj</name>
  707 + <rename>bcsj</rename>
  708 + <type>String</type>
  709 + <length>-1</length>
  710 + <precision>-1</precision>
  711 + <replace>N</replace>
  712 + </field> </fields> <cluster_schema/>
  713 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  714 + <xloc>148</xloc>
  715 + <yloc>674</yloc>
  716 + <draw>Y</draw>
  717 + </GUI>
  718 + </step>
  719 +
  720 + <step>
  721 + <name>&#x5339;&#x914d;&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
  722 + <type>ScriptValueMod</type>
  723 + <description/>
  724 + <distribute>Y</distribute>
  725 + <custom_distribution/>
  726 + <copies>1</copies>
  727 + <partitioning>
  728 + <method>none</method>
  729 + <schema_name/>
  730 + </partitioning>
  731 + <compatible>N</compatible>
  732 + <optimizationLevel>9</optimizationLevel>
  733 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  734 + <jsScript_name>Script 1</jsScript_name>
  735 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var out_mileage&#x3b; &#x2f;&#x2f; &#x51fa;&#x573a;&#x8ba1;&#x5212;&#x91cc;&#x7a0b;&#xa;var out_time&#x3b; &#x2f;&#x2f; &#x51fa;&#x573a;&#x8ba1;&#x5212;&#x65f6;&#x95f4;&#xa;&#xa;if &#x28;sxx &#x3d;&#x3d; 0&#x29; &#x7b; &#x2f;&#x2f; &#x4e0a;&#x884c;&#xa; out_mileage &#x3d; up_out_mileage&#x3b;&#xa; out_time &#x3d; up_out_timer&#x3b;&#xa;&#x7d; else &#x7b; &#x2f;&#x2f; sxx &#x3d;&#x3d; 1 &#x4e0b;&#x884c;&#xa; out_mileage &#x3d; down_out_mileage&#x3b;&#xa; out_time &#x3d; down_out_timer&#x3b;&#xa;&#x7d;&#xa;&#xa;&#xa;&#xa;</jsScript_script>
  736 + </jsScript> </jsScripts> <fields> <field> <name>out_mileage</name>
  737 + <rename>out_mileage</rename>
  738 + <type>String</type>
  739 + <length>-1</length>
  740 + <precision>-1</precision>
  741 + <replace>N</replace>
  742 + </field> <field> <name>out_time</name>
  743 + <rename>out_time</rename>
  744 + <type>String</type>
  745 + <length>-1</length>
  746 + <precision>-1</precision>
  747 + <replace>N</replace>
  748 + </field> </fields> <cluster_schema/>
  749 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  750 + <xloc>336</xloc>
  751 + <yloc>862</yloc>
  752 + <draw>Y</draw>
  753 + </GUI>
  754 + </step>
  755 +
  756 + <step>
  757 + <name>&#x5339;&#x914d;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
  758 + <type>ScriptValueMod</type>
  759 + <description/>
  760 + <distribute>Y</distribute>
  761 + <custom_distribution/>
  762 + <copies>1</copies>
  763 + <partitioning>
  764 + <method>none</method>
  765 + <schema_name/>
  766 + </partitioning>
  767 + <compatible>N</compatible>
  768 + <optimizationLevel>9</optimizationLevel>
  769 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  770 + <jsScript_name>Script 1</jsScript_name>
  771 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var parade_mileage&#x3b; &#x2f;&#x2f; &#x8fdb;&#x573a;&#x8ba1;&#x5212;&#x91cc;&#x7a0b;&#xa;var parade_time&#x3b; &#x2f;&#x2f; &#x8fdb;&#x573a;&#x8ba1;&#x5212;&#x65f6;&#x95f4;&#xa;&#xa;if &#x28;sxx2 &#x3d;&#x3d; 0&#x29; &#x7b; &#x2f;&#x2f; &#x4e0a;&#x884c;&#xa; parade_mileage &#x3d; up_in_mileage&#x3b;&#xa; parade_time &#x3d; up_in_timer&#x3b;&#xa;&#x7d; else &#x7b; &#x2f;&#x2f; sxx &#x3d;&#x3d; 1 &#x4e0b;&#x884c;&#xa; parade_mileage &#x3d; down_in_mileage&#x3b;&#xa; parade_time &#x3d; down_in_timer&#x3b;&#xa;&#x7d;&#xa;&#xa;&#xa;&#xa;</jsScript_script>
  772 + </jsScript> </jsScripts> <fields> <field> <name>parade_mileage</name>
  773 + <rename>parade_mileage</rename>
  774 + <type>String</type>
  775 + <length>-1</length>
  776 + <precision>-1</precision>
  777 + <replace>N</replace>
  778 + </field> <field> <name>parade_time</name>
  779 + <rename>parade_time</rename>
  780 + <type>String</type>
  781 + <length>-1</length>
  782 + <precision>-1</precision>
  783 + <replace>N</replace>
  784 + </field> </fields> <cluster_schema/>
  785 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  786 + <xloc>726</xloc>
  787 + <yloc>1005</yloc>
  788 + <draw>Y</draw>
  789 + </GUI>
  790 + </step>
  791 +
  792 + <step>
  793 + <name>&#x589e;&#x52a0;&#x65f6;&#x523b;&#x8868;&#x540d;&#x5b57;&#xff0c;&#x7ebf;&#x8def;&#x540d;&#x5b57;&#xff0c;&#x505c;&#x8f66;&#x573a;&#x540d;&#x5b57;</name>
  794 + <type>DataGrid</type>
  795 + <description/>
  796 + <distribute>Y</distribute>
  797 + <custom_distribution/>
  798 + <copies>1</copies>
  799 + <partitioning>
  800 + <method>none</method>
  801 + <schema_name/>
  802 + </partitioning>
  803 + <fields>
  804 + </fields>
  805 + <data>
  806 + <line> </line>
  807 + </data>
  808 + <cluster_schema/>
  809 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  810 + <xloc>110</xloc>
  811 + <yloc>133</yloc>
  812 + <draw>Y</draw>
  813 + </GUI>
  814 + </step>
  815 +
  816 + <step>
  817 + <name>&#x5904;&#x7406;&#x6570;&#x636e;</name>
  818 + <type>ScriptValueMod</type>
  819 + <description/>
  820 + <distribute>Y</distribute>
  821 + <custom_distribution/>
  822 + <copies>1</copies>
  823 + <partitioning>
  824 + <method>none</method>
  825 + <schema_name/>
  826 + </partitioning>
  827 + <compatible>N</compatible>
  828 + <optimizationLevel>9</optimizationLevel>
  829 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  830 + <jsScript_name>Script 1</jsScript_name>
  831 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;&#x2f;&#x2f; &#x4f7f;&#x7528;&#x6b63;&#x5219;&#x8868;&#x8fbe;&#x5f0f;&#x53bb;&#x9664;&#x7ad9;&#x70b9;&#x540d;&#x79f0;&#x53f3;&#x4fa7;&#x591a;&#x4f59;&#x7684;&#x6570;&#x5b57;&#xa;qdzname &#x3d; qdzname.replace&#x28;&#x2f;&#x28;&#x5c;d&#x2b;&#x24;&#x29;&#x2f;g,&#x27;&#x27;&#x29;&#x3b;&#xa;if &#x28;qdzname &#x21;&#x3d; &#x22;&#x51fa;&#x573a;&#x22; &#x26;&#x26; qdzname &#x21;&#x3d; &#x22;&#x8fdb;&#x573a;&#x22;&#x29; &#x7b;&#xa; qdzname &#x3d; qdzname &#x2b; &#x22;&#x25;&#x22;&#x3b; &#x2f;&#x2f; &#x6a21;&#x7cca;&#x5339;&#x914d;&#x6807;&#x8bc6;&#x7b26;&#xa;&#x7d;&#xa;&#xa;&#x2f;&#x2f; sendtime&#x5904;&#x7406;&#xff0c;hhmm&#xff0c;hh&#x3a;mm&#xff0c;hh,mm&#xa;var sendtime_calcu&#x3b;&#xa;if &#x28;sendtime.length &#x3d;&#x3d; 5&#x29; &#x7b; &#x2f;&#x2f; &#x6700;&#x957f;&#x683c;&#x5f0f;&#xff0c;&#x5305;&#x62ec;&#x5206;&#x9694;&#x7b26;&#xff0c;&#x7edf;&#x4e00;&#x628a;&#x5206;&#x9694;&#x7b26;&#x66ff;&#x6362;&#x6210;&#x5192;&#x53f7;&#xa; sendtime_calcu &#x3d; sendtime.substr&#x28;0, 2&#x29; &#x2b; &#x22;&#x3a;&#x22; &#x2b; sendtime.substr&#x28;3, 2&#x29;&#x3b;&#xa;&#x7d; else if &#x28;sendtime.length &#x3d;&#x3d; 4&#x29; &#x7b;&#xa; if &#x28;sendtime.indexOf&#x28;&#x22;&#x3a;&#x22;&#x29; &#x3e; 0&#x29; &#x7b; &#x2f;&#x2f; &#x5192;&#x53f7;&#x5206;&#x9694;&#xff0c;&#x65e0;&#x9700;&#x4fee;&#x6539;&#xa; sendtime_calcu &#x3d; sendtime&#x3b;&#xa; &#x7d; else if &#x28;sendtime.indexOf&#x28;&#x22;,&#x22;&#x29; &#x3e; 0&#x29; &#x7b; &#x2f;&#x2f; &#x9017;&#x53f7;&#x5206;&#x9694;&#xff0c;&#x6539;&#x6210;&#x5192;&#x53f7;&#x5206;&#x9694;&#xa; sendtime_calcu &#x3d; sendtime.substr&#x28;0, 1&#x29; &#x2b; &#x22;&#x3a;&#x22; &#x2b; sendtime.substr&#x28;2, 2&#x29;&#x3b;&#xa; &#x7d; else &#x7b; &#x2f;&#x2f; &#x65e0;&#x5206;&#x9694;&#x7b26;&#xff0c;&#x6539;&#x6210;&#x5192;&#x53f7;&#x5206;&#x9694;&#xa; sendtime_calcu &#x3d; sendtime.substr&#x28;0, 2&#x29; &#x2b; &#x22;&#x3a;&#x22; &#x2b; sendtime.substr&#x28;2, 2&#x29;&#x3b;&#xa; &#x7d;&#xa;&#x7d; else if &#x28;sendtime.length &#x3d;&#x3d; 3&#x29; &#x7b; &#x2f;&#x2f; &#x65e0;&#x5206;&#x9694;&#x7b26;&#xff0c;&#x6539;&#x6210;&#x5192;&#x53f7;&#x5206;&#x9694;&#xa; sendtime_calcu &#x3d; sendtime.substr&#x28;0, 1&#x29; &#x2b; &#x22;&#x3a;&#x22; &#x2b; sendtime.substr&#x28;1, 2&#x29;&#x3b;&#xa;&#x7d;&#xa;&#xa;&#x2f;&#x2f; &#x5168;&#x90e8;&#x4fee;&#x6b63;&#x5b8c;&#x6bd5;&#x540e;&#xff0c;&#x5982;&#x679c;&#x957f;&#x5ea6;&#x4e0d;&#x662f;5&#xff0c;&#x524d;&#x9762;&#x8865;0&#xa;if &#x28;sendtime_calcu.length &#x21;&#x3d; 5&#x29; &#x7b;&#xa; sendtime_calcu &#x3d; &#x22;0&#x22; &#x2b; sendtime_calcu&#x3b;&#xa;&#x7d;&#xa;&#xa;&#x2f;&#x2f; &#x8bbe;&#x7f6e;&#x5206;&#x73ed;&#xa;var isfb &#x3d; 0&#x3b;&#xa;&#xa;&#x2f;&#x2f; &#x8bbe;&#x7f6e;&#x505c;&#x9a76;&#xa;var ists &#x3d; 0&#x3b;&#xa;&#xa;&#x2f;&#x2f; &#x8bbe;&#x7f6e;isCanceled&#xa;var iscanceled &#x3d; 0&#x3b;</jsScript_script>
  832 + </jsScript> </jsScripts> <fields> <field> <name>qdzname</name>
  833 + <rename>qdzname</rename>
  834 + <type>String</type>
  835 + <length>-1</length>
  836 + <precision>-1</precision>
  837 + <replace>Y</replace>
  838 + </field> <field> <name>isfb</name>
  839 + <rename>isfb</rename>
  840 + <type>Integer</type>
  841 + <length>-1</length>
  842 + <precision>-1</precision>
  843 + <replace>N</replace>
  844 + </field> <field> <name>iscanceled</name>
  845 + <rename>iscanceled</rename>
  846 + <type>Integer</type>
  847 + <length>-1</length>
  848 + <precision>-1</precision>
  849 + <replace>N</replace>
  850 + </field> <field> <name>sendtime_calcu</name>
  851 + <rename>sendtime_calcu</rename>
  852 + <type>String</type>
  853 + <length>-1</length>
  854 + <precision>-1</precision>
  855 + <replace>N</replace>
  856 + </field> <field> <name>ists</name>
  857 + <rename>ists</rename>
  858 + <type>Integer</type>
  859 + <length>-1</length>
  860 + <precision>-1</precision>
  861 + <replace>N</replace>
  862 + </field> </fields> <cluster_schema/>
  863 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  864 + <xloc>788</xloc>
  865 + <yloc>44</yloc>
  866 + <draw>Y</draw>
  867 + </GUI>
  868 + </step>
  869 +
  870 + <step>
  871 + <name>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</name>
  872 + <type>SelectValues</type>
  873 + <description/>
  874 + <distribute>Y</distribute>
  875 + <custom_distribution/>
  876 + <copies>1</copies>
  877 + <partitioning>
  878 + <method>none</method>
  879 + <schema_name/>
  880 + </partitioning>
  881 + <fields> <field> <name>&#x8def;&#x724c;</name>
  882 + <rename>lp</rename>
  883 + <length>-2</length>
  884 + <precision>-2</precision>
  885 + </field> <field> <name>&#x7ad9;&#x70b9;&#x540d;&#x79f0;</name>
  886 + <rename>qdzname</rename>
  887 + <length>-2</length>
  888 + <precision>-2</precision>
  889 + </field> <field> <name>&#x53d1;&#x8f66;&#x65f6;&#x95f4;</name>
  890 + <rename>sendtime</rename>
  891 + <length>-2</length>
  892 + <precision>-2</precision>
  893 + </field> <select_unspecified>Y</select_unspecified>
  894 + </fields> <cluster_schema/>
  895 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  896 + <xloc>444</xloc>
  897 + <yloc>131</yloc>
  898 + <draw>Y</draw>
  899 + </GUI>
  900 + </step>
  901 +
  902 + <step>
  903 + <name>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;1</name>
  904 + <type>FilterRows</type>
  905 + <description/>
  906 + <distribute>Y</distribute>
  907 + <custom_distribution/>
  908 + <copies>1</copies>
  909 + <partitioning>
  910 + <method>none</method>
  911 + <schema_name/>
  912 + </partitioning>
  913 +<send_true_to>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</send_true_to>
  914 +<send_false_to>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</send_false_to>
  915 + <compare>
  916 +<condition>
  917 + <negated>N</negated>
  918 + <leftvalue>bctype</leftvalue>
  919 + <function>&#x3d;</function>
  920 + <rightvalue/>
  921 + <value><name>constant</name><type>String</type><text>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</text><length>-1</length><precision>-1</precision><isnull>N</isnull><mask/></value> </condition>
  922 + </compare>
  923 + <cluster_schema/>
  924 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  925 + <xloc>860</xloc>
  926 + <yloc>401</yloc>
  927 + <draw>Y</draw>
  928 + </GUI>
  929 + </step>
  930 +
  931 + <step>
  932 + <name>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</name>
  933 + <type>FilterRows</type>
  934 + <description/>
  935 + <distribute>Y</distribute>
  936 + <custom_distribution/>
  937 + <copies>1</copies>
  938 + <partitioning>
  939 + <method>none</method>
  940 + <schema_name/>
  941 + </partitioning>
  942 +<send_true_to>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</send_true_to>
  943 +<send_false_to>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</send_false_to>
  944 + <compare>
  945 +<condition>
  946 + <negated>N</negated>
  947 + <leftvalue>bctype</leftvalue>
  948 + <function>&#x3d;</function>
  949 + <rightvalue/>
  950 + <value><name>constant</name><type>String</type><text>&#x51fa;&#x573a;</text><length>-1</length><precision>-1</precision><isnull>N</isnull><mask/></value> </condition>
  951 + </compare>
  952 + <cluster_schema/>
  953 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  954 + <xloc>995</xloc>
  955 + <yloc>503</yloc>
  956 + <draw>Y</draw>
  957 + </GUI>
  958 + </step>
  959 +
  960 + <step>
  961 + <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail</name>
  962 + <type>InsertUpdate</type>
  963 + <description/>
  964 + <distribute>Y</distribute>
  965 + <custom_distribution/>
  966 + <copies>1</copies>
  967 + <partitioning>
  968 + <method>none</method>
  969 + <schema_name/>
  970 + </partitioning>
  971 + <connection>bus_control_variable</connection>
  972 + <commit>100</commit>
  973 + <update_bypassed>N</update_bypassed>
  974 + <lookup>
  975 + <schema/>
  976 + <table>bsth_c_s_ttinfo_detail</table>
  977 + <key>
  978 + <name>xlid</name>
  979 + <field>xl</field>
  980 + <condition>&#x3d;</condition>
  981 + <name2/>
  982 + </key>
  983 + <key>
  984 + <name>ttid</name>
  985 + <field>ttinfo</field>
  986 + <condition>&#x3d;</condition>
  987 + <name2/>
  988 + </key>
  989 + <key>
  990 + <name>lpid</name>
  991 + <field>lp</field>
  992 + <condition>&#x3d;</condition>
  993 + <name2/>
  994 + </key>
  995 + <key>
  996 + <name>fcno</name>
  997 + <field>fcno</field>
  998 + <condition>&#x3d;</condition>
  999 + <name2/>
  1000 + </key>
  1001 + <key>
  1002 + <name>bcs</name>
  1003 + <field>bcs</field>
  1004 + <condition>&#x3d;</condition>
  1005 + <name2/>
  1006 + </key>
  1007 + <value>
  1008 + <name>lp</name>
  1009 + <rename>lpid</rename>
  1010 + <update>Y</update>
  1011 + </value>
  1012 + <value>
  1013 + <name>bc_type</name>
  1014 + <rename>bctype_code</rename>
  1015 + <update>Y</update>
  1016 + </value>
  1017 + <value>
  1018 + <name>bcs</name>
  1019 + <rename>bcs</rename>
  1020 + <update>Y</update>
  1021 + </value>
  1022 + <value>
  1023 + <name>bcsj</name>
  1024 + <rename>bcsj</rename>
  1025 + <update>Y</update>
  1026 + </value>
  1027 + <value>
  1028 + <name>fcno</name>
  1029 + <rename>fcno</rename>
  1030 + <update>Y</update>
  1031 + </value>
  1032 + <value>
  1033 + <name>jhlc</name>
  1034 + <rename>jhlc</rename>
  1035 + <update>Y</update>
  1036 + </value>
  1037 + <value>
  1038 + <name>fcsj</name>
  1039 + <rename>sendtime_calcu</rename>
  1040 + <update>Y</update>
  1041 + </value>
  1042 + <value>
  1043 + <name>ttinfo</name>
  1044 + <rename>ttid</rename>
  1045 + <update>Y</update>
  1046 + </value>
  1047 + <value>
  1048 + <name>xl</name>
  1049 + <rename>xlid</rename>
  1050 + <update>Y</update>
  1051 + </value>
  1052 + <value>
  1053 + <name>qdz</name>
  1054 + <rename>qdzid</rename>
  1055 + <update>Y</update>
  1056 + </value>
  1057 + <value>
  1058 + <name>zdz</name>
  1059 + <rename>zdzid</rename>
  1060 + <update>Y</update>
  1061 + </value>
  1062 + <value>
  1063 + <name>xl_dir</name>
  1064 + <rename>sxx</rename>
  1065 + <update>Y</update>
  1066 + </value>
  1067 + <value>
  1068 + <name>isfb</name>
  1069 + <rename>isfb</rename>
  1070 + <update>Y</update>
  1071 + </value>
  1072 + <value>
  1073 + <name>qdz_code</name>
  1074 + <rename>qdzcode</rename>
  1075 + <update>Y</update>
  1076 + </value>
  1077 + <value>
  1078 + <name>qdz_name</name>
  1079 + <rename>qdzname_</rename>
  1080 + <update>Y</update>
  1081 + </value>
  1082 + <value>
  1083 + <name>zdz_code</name>
  1084 + <rename>zdzcode</rename>
  1085 + <update>Y</update>
  1086 + </value>
  1087 + <value>
  1088 + <name>zdz_name</name>
  1089 + <rename>zdzname</rename>
  1090 + <update>Y</update>
  1091 + </value>
  1092 + <value>
  1093 + <name>ists</name>
  1094 + <rename>ists</rename>
  1095 + <update>Y</update>
  1096 + </value>
  1097 + </lookup>
  1098 + <cluster_schema/>
  1099 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1100 + <xloc>143</xloc>
  1101 + <yloc>860</yloc>
  1102 + <draw>Y</draw>
  1103 + </GUI>
  1104 + </step>
  1105 +
  1106 + <step>
  1107 + <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail 2</name>
  1108 + <type>InsertUpdate</type>
  1109 + <description/>
  1110 + <distribute>Y</distribute>
  1111 + <custom_distribution/>
  1112 + <copies>1</copies>
  1113 + <partitioning>
  1114 + <method>none</method>
  1115 + <schema_name/>
  1116 + </partitioning>
  1117 + <connection>bus_control_variable</connection>
  1118 + <commit>100</commit>
  1119 + <update_bypassed>N</update_bypassed>
  1120 + <lookup>
  1121 + <schema/>
  1122 + <table>bsth_c_s_ttinfo_detail</table>
  1123 + <key>
  1124 + <name>xlid</name>
  1125 + <field>xl</field>
  1126 + <condition>&#x3d;</condition>
  1127 + <name2/>
  1128 + </key>
  1129 + <key>
  1130 + <name>ttid</name>
  1131 + <field>ttinfo</field>
  1132 + <condition>&#x3d;</condition>
  1133 + <name2/>
  1134 + </key>
  1135 + <key>
  1136 + <name>lpid</name>
  1137 + <field>lp</field>
  1138 + <condition>&#x3d;</condition>
  1139 + <name2/>
  1140 + </key>
  1141 + <key>
  1142 + <name>fcno</name>
  1143 + <field>fcno</field>
  1144 + <condition>&#x3d;</condition>
  1145 + <name2/>
  1146 + </key>
  1147 + <key>
  1148 + <name>bcs</name>
  1149 + <field>bcs</field>
  1150 + <condition>&#x3d;</condition>
  1151 + <name2/>
  1152 + </key>
  1153 + <value>
  1154 + <name>tcc</name>
  1155 + <rename>qdzid</rename>
  1156 + <update>Y</update>
  1157 + </value>
  1158 + <value>
  1159 + <name>zdz</name>
  1160 + <rename>zdzid</rename>
  1161 + <update>Y</update>
  1162 + </value>
  1163 + <value>
  1164 + <name>xl</name>
  1165 + <rename>xlid</rename>
  1166 + <update>Y</update>
  1167 + </value>
  1168 + <value>
  1169 + <name>ttinfo</name>
  1170 + <rename>ttid</rename>
  1171 + <update>Y</update>
  1172 + </value>
  1173 + <value>
  1174 + <name>xl_dir</name>
  1175 + <rename>sxx</rename>
  1176 + <update>Y</update>
  1177 + </value>
  1178 + <value>
  1179 + <name>lp</name>
  1180 + <rename>lpid</rename>
  1181 + <update>Y</update>
  1182 + </value>
  1183 + <value>
  1184 + <name>jhlc</name>
  1185 + <rename>out_mileage</rename>
  1186 + <update>Y</update>
  1187 + </value>
  1188 + <value>
  1189 + <name>fcsj</name>
  1190 + <rename>sendtime_calcu</rename>
  1191 + <update>Y</update>
  1192 + </value>
  1193 + <value>
  1194 + <name>bcsj</name>
  1195 + <rename>out_time</rename>
  1196 + <update>Y</update>
  1197 + </value>
  1198 + <value>
  1199 + <name>bcs</name>
  1200 + <rename>bcs</rename>
  1201 + <update>Y</update>
  1202 + </value>
  1203 + <value>
  1204 + <name>fcno</name>
  1205 + <rename>fcno</rename>
  1206 + <update>Y</update>
  1207 + </value>
  1208 + <value>
  1209 + <name>bc_type</name>
  1210 + <rename>bctype_code</rename>
  1211 + <update>Y</update>
  1212 + </value>
  1213 + <value>
  1214 + <name>isfb</name>
  1215 + <rename>isfb</rename>
  1216 + <update>Y</update>
  1217 + </value>
  1218 + <value>
  1219 + <name>qdz_code</name>
  1220 + <rename>qdzcode</rename>
  1221 + <update>Y</update>
  1222 + </value>
  1223 + <value>
  1224 + <name>qdz_name</name>
  1225 + <rename>tn</rename>
  1226 + <update>Y</update>
  1227 + </value>
  1228 + <value>
  1229 + <name>zdz_code</name>
  1230 + <rename>zdzcode</rename>
  1231 + <update>Y</update>
  1232 + </value>
  1233 + <value>
  1234 + <name>zdz_name</name>
  1235 + <rename>zdzname_</rename>
  1236 + <update>Y</update>
  1237 + </value>
  1238 + <value>
  1239 + <name>ists</name>
  1240 + <rename>ists</rename>
  1241 + <update>Y</update>
  1242 + </value>
  1243 + </lookup>
  1244 + <cluster_schema/>
  1245 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1246 + <xloc>340</xloc>
  1247 + <yloc>1087</yloc>
  1248 + <draw>Y</draw>
  1249 + </GUI>
  1250 + </step>
  1251 +
  1252 + <step>
  1253 + <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail 3</name>
  1254 + <type>InsertUpdate</type>
  1255 + <description/>
  1256 + <distribute>Y</distribute>
  1257 + <custom_distribution/>
  1258 + <copies>1</copies>
  1259 + <partitioning>
  1260 + <method>none</method>
  1261 + <schema_name/>
  1262 + </partitioning>
  1263 + <connection>bus_control_variable</connection>
  1264 + <commit>100</commit>
  1265 + <update_bypassed>N</update_bypassed>
  1266 + <lookup>
  1267 + <schema/>
  1268 + <table>bsth_c_s_ttinfo_detail</table>
  1269 + <key>
  1270 + <name>xlid</name>
  1271 + <field>xl</field>
  1272 + <condition>&#x3d;</condition>
  1273 + <name2/>
  1274 + </key>
  1275 + <key>
  1276 + <name>ttid</name>
  1277 + <field>ttinfo</field>
  1278 + <condition>&#x3d;</condition>
  1279 + <name2/>
  1280 + </key>
  1281 + <key>
  1282 + <name>lpid</name>
  1283 + <field>lp</field>
  1284 + <condition>&#x3d;</condition>
  1285 + <name2/>
  1286 + </key>
  1287 + <key>
  1288 + <name>fcno</name>
  1289 + <field>fcno</field>
  1290 + <condition>&#x3d;</condition>
  1291 + <name2/>
  1292 + </key>
  1293 + <key>
  1294 + <name>bcs</name>
  1295 + <field>bcs</field>
  1296 + <condition>&#x3d;</condition>
  1297 + <name2/>
  1298 + </key>
  1299 + <value>
  1300 + <name>fcno</name>
  1301 + <rename>fcno</rename>
  1302 + <update>Y</update>
  1303 + </value>
  1304 + <value>
  1305 + <name>bcs</name>
  1306 + <rename>bcs</rename>
  1307 + <update>Y</update>
  1308 + </value>
  1309 + <value>
  1310 + <name>xl</name>
  1311 + <rename>xlid</rename>
  1312 + <update>Y</update>
  1313 + </value>
  1314 + <value>
  1315 + <name>ttinfo</name>
  1316 + <rename>ttid</rename>
  1317 + <update>Y</update>
  1318 + </value>
  1319 + <value>
  1320 + <name>lp</name>
  1321 + <rename>lpid</rename>
  1322 + <update>Y</update>
  1323 + </value>
  1324 + <value>
  1325 + <name>bc_type</name>
  1326 + <rename>bctype_code</rename>
  1327 + <update>Y</update>
  1328 + </value>
  1329 + <value>
  1330 + <name>bcsj</name>
  1331 + <rename>parade_time</rename>
  1332 + <update>Y</update>
  1333 + </value>
  1334 + <value>
  1335 + <name>jhlc</name>
  1336 + <rename>parade_mileage</rename>
  1337 + <update>Y</update>
  1338 + </value>
  1339 + <value>
  1340 + <name>fcsj</name>
  1341 + <rename>sendtime_calcu</rename>
  1342 + <update>Y</update>
  1343 + </value>
  1344 + <value>
  1345 + <name>xl_dir</name>
  1346 + <rename>sxx2</rename>
  1347 + <update>Y</update>
  1348 + </value>
  1349 + <value>
  1350 + <name>qdz</name>
  1351 + <rename>qdzid</rename>
  1352 + <update>Y</update>
  1353 + </value>
  1354 + <value>
  1355 + <name>tcc</name>
  1356 + <rename>zdzid</rename>
  1357 + <update>Y</update>
  1358 + </value>
  1359 + <value>
  1360 + <name>isfb</name>
  1361 + <rename>isfb</rename>
  1362 + <update>Y</update>
  1363 + </value>
  1364 + <value>
  1365 + <name>qdz_code</name>
  1366 + <rename>qdzcode</rename>
  1367 + <update>Y</update>
  1368 + </value>
  1369 + <value>
  1370 + <name>qdz_name</name>
  1371 + <rename>qname</rename>
  1372 + <update>Y</update>
  1373 + </value>
  1374 + <value>
  1375 + <name>zdz_code</name>
  1376 + <rename>zdzcode</rename>
  1377 + <update>Y</update>
  1378 + </value>
  1379 + <value>
  1380 + <name>zdz_name</name>
  1381 + <rename>tn</rename>
  1382 + <update>Y</update>
  1383 + </value>
  1384 + <value>
  1385 + <name>ists</name>
  1386 + <rename>ists</rename>
  1387 + <update>Y</update>
  1388 + </value>
  1389 + </lookup>
  1390 + <cluster_schema/>
  1391 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1392 + <xloc>845</xloc>
  1393 + <yloc>899</yloc>
  1394 + <draw>Y</draw>
  1395 + </GUI>
  1396 + </step>
  1397 +
  1398 + <step>
  1399 + <name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</name>
  1400 + <type>ExcelInput</type>
  1401 + <description/>
  1402 + <distribute>N</distribute>
  1403 + <custom_distribution/>
  1404 + <copies>1</copies>
  1405 + <partitioning>
  1406 + <method>none</method>
  1407 + <schema_name/>
  1408 + </partitioning>
  1409 + <header>Y</header>
  1410 + <noempty>Y</noempty>
  1411 + <stoponempty>N</stoponempty>
  1412 + <filefield/>
  1413 + <sheetfield/>
  1414 + <sheetrownumfield/>
  1415 + <rownumfield/>
  1416 + <sheetfield/>
  1417 + <filefield/>
  1418 + <limit>0</limit>
  1419 + <encoding/>
  1420 + <add_to_result_filenames>Y</add_to_result_filenames>
  1421 + <accept_filenames>N</accept_filenames>
  1422 + <accept_field/>
  1423 + <accept_stepname/>
  1424 + <file>
  1425 + <name/>
  1426 + <filemask/>
  1427 + <exclude_filemask/>
  1428 + <file_required>N</file_required>
  1429 + <include_subfolders>N</include_subfolders>
  1430 + </file>
  1431 + <fields>
  1432 + </fields>
  1433 + <sheets>
  1434 + <sheet>
  1435 + <name/>
  1436 + <startrow>0</startrow>
  1437 + <startcol>0</startcol>
  1438 + </sheet>
  1439 + </sheets>
  1440 + <strict_types>N</strict_types>
  1441 + <error_ignored>N</error_ignored>
  1442 + <error_line_skipped>N</error_line_skipped>
  1443 + <bad_line_files_destination_directory/>
  1444 + <bad_line_files_extension>warning</bad_line_files_extension>
  1445 + <error_line_files_destination_directory/>
  1446 + <error_line_files_extension>error</error_line_files_extension>
  1447 + <line_number_files_destination_directory/>
  1448 + <line_number_files_extension>line</line_number_files_extension>
  1449 + <shortFileFieldName/>
  1450 + <pathFieldName/>
  1451 + <hiddenFieldName/>
  1452 + <lastModificationTimeFieldName/>
  1453 + <uriNameFieldName/>
  1454 + <rootUriNameFieldName/>
  1455 + <extensionFieldName/>
  1456 + <sizeFieldName/>
  1457 + <spreadsheet_type>JXL</spreadsheet_type>
  1458 + <cluster_schema/>
  1459 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1460 + <xloc>112</xloc>
  1461 + <yloc>44</yloc>
  1462 + <draw>Y</draw>
  1463 + </GUI>
  1464 + </step>
  1465 +
  1466 + <step>
  1467 + <name>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;1</name>
  1468 + <type>DBLookup</type>
  1469 + <description/>
  1470 + <distribute>Y</distribute>
  1471 + <custom_distribution/>
  1472 + <copies>1</copies>
  1473 + <partitioning>
  1474 + <method>none</method>
  1475 + <schema_name/>
  1476 + </partitioning>
  1477 + <connection>bus_control_variable</connection>
  1478 + <cache>N</cache>
  1479 + <cache_load_all>N</cache_load_all>
  1480 + <cache_size>0</cache_size>
  1481 + <lookup>
  1482 + <schema/>
  1483 + <table>bsth_c_car_park</table>
  1484 + <orderby/>
  1485 + <fail_on_multiple>N</fail_on_multiple>
  1486 + <eat_row_on_failure>N</eat_row_on_failure>
  1487 + <key>
  1488 + <name>tccname_</name>
  1489 + <field>park_name</field>
  1490 + <condition>&#x3d;</condition>
  1491 + <name2/>
  1492 + </key>
  1493 + <value>
  1494 + <name>id</name>
  1495 + <rename>qdzid</rename>
  1496 + <default/>
  1497 + <type>Integer</type>
  1498 + </value>
  1499 + <value>
  1500 + <name>park_code</name>
  1501 + <rename>qdzcode</rename>
  1502 + <default/>
  1503 + <type>String</type>
  1504 + </value>
  1505 + <value>
  1506 + <name>park_name</name>
  1507 + <rename>tn</rename>
  1508 + <default/>
  1509 + <type>String</type>
  1510 + </value>
  1511 + </lookup>
  1512 + <cluster_schema/>
  1513 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1514 + <xloc>755</xloc>
  1515 + <yloc>504</yloc>
  1516 + <draw>Y</draw>
  1517 + </GUI>
  1518 + </step>
  1519 +
  1520 + <step>
  1521 + <name>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;2</name>
  1522 + <type>DBLookup</type>
  1523 + <description/>
  1524 + <distribute>Y</distribute>
  1525 + <custom_distribution/>
  1526 + <copies>1</copies>
  1527 + <partitioning>
  1528 + <method>none</method>
  1529 + <schema_name/>
  1530 + </partitioning>
  1531 + <connection>bus_control_variable</connection>
  1532 + <cache>N</cache>
  1533 + <cache_load_all>N</cache_load_all>
  1534 + <cache_size>0</cache_size>
  1535 + <lookup>
  1536 + <schema/>
  1537 + <table>bsth_c_car_park</table>
  1538 + <orderby/>
  1539 + <fail_on_multiple>N</fail_on_multiple>
  1540 + <eat_row_on_failure>N</eat_row_on_failure>
  1541 + <key>
  1542 + <name>tccname_</name>
  1543 + <field>park_name</field>
  1544 + <condition>&#x3d;</condition>
  1545 + <name2/>
  1546 + </key>
  1547 + <value>
  1548 + <name>id</name>
  1549 + <rename>zdzid</rename>
  1550 + <default/>
  1551 + <type>Integer</type>
  1552 + </value>
  1553 + <value>
  1554 + <name>park_code</name>
  1555 + <rename>zdzcode</rename>
  1556 + <default/>
  1557 + <type>String</type>
  1558 + </value>
  1559 + <value>
  1560 + <name>park_name</name>
  1561 + <rename>tn</rename>
  1562 + <default/>
  1563 + <type>String</type>
  1564 + </value>
  1565 + </lookup>
  1566 + <cluster_schema/>
  1567 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1568 + <xloc>887</xloc>
  1569 + <yloc>608</yloc>
  1570 + <draw>Y</draw>
  1571 + </GUI>
  1572 + </step>
  1573 +
  1574 + <step>
  1575 + <name>&#x67e5;&#x627e;&#x51fa;&#x573a;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</name>
  1576 + <type>DBLookup</type>
  1577 + <description/>
  1578 + <distribute>Y</distribute>
  1579 + <custom_distribution/>
  1580 + <copies>1</copies>
  1581 + <partitioning>
  1582 + <method>none</method>
  1583 + <schema_name/>
  1584 + </partitioning>
  1585 + <connection>bus_control_variable</connection>
  1586 + <cache>N</cache>
  1587 + <cache_load_all>N</cache_load_all>
  1588 + <cache_size>0</cache_size>
  1589 + <lookup>
  1590 + <schema/>
  1591 + <table>bsth_c_stationroute</table>
  1592 + <orderby/>
  1593 + <fail_on_multiple>N</fail_on_multiple>
  1594 + <eat_row_on_failure>N</eat_row_on_failure>
  1595 + <key>
  1596 + <name>xlid</name>
  1597 + <field>line</field>
  1598 + <condition>&#x3d;</condition>
  1599 + <name2/>
  1600 + </key>
  1601 + <key>
  1602 + <name>zdzname</name>
  1603 + <field>station_name</field>
  1604 + <condition>LIKE</condition>
  1605 + <name2/>
  1606 + </key>
  1607 + <key>
  1608 + <name>endZdtype</name>
  1609 + <field>station_mark</field>
  1610 + <condition>&#x3d;</condition>
  1611 + <name2/>
  1612 + </key>
  1613 + <key>
  1614 + <name>destory</name>
  1615 + <field>destroy</field>
  1616 + <condition>&#x3d;</condition>
  1617 + <name2/>
  1618 + </key>
  1619 + <value>
  1620 + <name>station</name>
  1621 + <rename>zdzid</rename>
  1622 + <default/>
  1623 + <type>Integer</type>
  1624 + </value>
  1625 + <value>
  1626 + <name>directions</name>
  1627 + <rename>sxx</rename>
  1628 + <default/>
  1629 + <type>Integer</type>
  1630 + </value>
  1631 + <value>
  1632 + <name>station_code</name>
  1633 + <rename>zdzcode</rename>
  1634 + <default/>
  1635 + <type>String</type>
  1636 + </value>
  1637 + <value>
  1638 + <name>station_name</name>
  1639 + <rename>zdzname_</rename>
  1640 + <default/>
  1641 + <type>String</type>
  1642 + </value>
  1643 + </lookup>
  1644 + <cluster_schema/>
  1645 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1646 + <xloc>329</xloc>
  1647 + <yloc>505</yloc>
  1648 + <draw>Y</draw>
  1649 + </GUI>
  1650 + </step>
  1651 +
  1652 + <step>
  1653 + <name>&#x67e5;&#x627e;&#x6240;&#x6709;&#x7ebf;&#x8def;&#x4e0a;&#x4e0b;&#x884c;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
  1654 + <type>DBLookup</type>
  1655 + <description/>
  1656 + <distribute>Y</distribute>
  1657 + <custom_distribution/>
  1658 + <copies>1</copies>
  1659 + <partitioning>
  1660 + <method>none</method>
  1661 + <schema_name/>
  1662 + </partitioning>
  1663 + <connection>bus_control_variable</connection>
  1664 + <cache>N</cache>
  1665 + <cache_load_all>N</cache_load_all>
  1666 + <cache_size>0</cache_size>
  1667 + <lookup>
  1668 + <schema/>
  1669 + <table>bsth_c_line_information</table>
  1670 + <orderby/>
  1671 + <fail_on_multiple>N</fail_on_multiple>
  1672 + <eat_row_on_failure>N</eat_row_on_failure>
  1673 + <key>
  1674 + <name>xlid</name>
  1675 + <field>line</field>
  1676 + <condition>&#x3d;</condition>
  1677 + <name2/>
  1678 + </key>
  1679 + <value>
  1680 + <name>up_mileage</name>
  1681 + <rename>up_mileage</rename>
  1682 + <default/>
  1683 + <type>Number</type>
  1684 + </value>
  1685 + <value>
  1686 + <name>down_mileage</name>
  1687 + <rename>down_mileage</rename>
  1688 + <default/>
  1689 + <type>Number</type>
  1690 + </value>
  1691 + <value>
  1692 + <name>up_travel_time</name>
  1693 + <rename>up_travel_time</rename>
  1694 + <default/>
  1695 + <type>Number</type>
  1696 + </value>
  1697 + <value>
  1698 + <name>down_travel_time</name>
  1699 + <rename>down_travel_time</rename>
  1700 + <default/>
  1701 + <type>Number</type>
  1702 + </value>
  1703 + <value>
  1704 + <name>early_start_time</name>
  1705 + <rename>early_start_time</rename>
  1706 + <default/>
  1707 + <type>String</type>
  1708 + </value>
  1709 + <value>
  1710 + <name>early_end_time</name>
  1711 + <rename>early_end_time</rename>
  1712 + <default/>
  1713 + <type>String</type>
  1714 + </value>
  1715 + <value>
  1716 + <name>early_up_time</name>
  1717 + <rename>early_up_time</rename>
  1718 + <default/>
  1719 + <type>Number</type>
  1720 + </value>
  1721 + <value>
  1722 + <name>early_down_time</name>
  1723 + <rename>early_down_time</rename>
  1724 + <default/>
  1725 + <type>Number</type>
  1726 + </value>
  1727 + <value>
  1728 + <name>late_start_time</name>
  1729 + <rename>late_start_time</rename>
  1730 + <default/>
  1731 + <type>String</type>
  1732 + </value>
  1733 + <value>
  1734 + <name>late_end_time</name>
  1735 + <rename>late_end_time</rename>
  1736 + <default/>
  1737 + <type>String</type>
  1738 + </value>
  1739 + <value>
  1740 + <name>late_up_time</name>
  1741 + <rename>late_up_time</rename>
  1742 + <default/>
  1743 + <type>Number</type>
  1744 + </value>
  1745 + <value>
  1746 + <name>late_down_time</name>
  1747 + <rename>late_down_time</rename>
  1748 + <default/>
  1749 + <type>Number</type>
  1750 + </value>
  1751 + </lookup>
  1752 + <cluster_schema/>
  1753 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1754 + <xloc>149</xloc>
  1755 + <yloc>581</yloc>
  1756 + <draw>Y</draw>
  1757 + </GUI>
  1758 + </step>
  1759 +
  1760 + <step>
  1761 + <name>&#x67e5;&#x627e;&#x65f6;&#x523b;&#x8868;&#x57fa;&#x7840;&#x4fe1;&#x606f;&#x5173;&#x8054;</name>
  1762 + <type>DBLookup</type>
  1763 + <description/>
  1764 + <distribute>Y</distribute>
  1765 + <custom_distribution/>
  1766 + <copies>1</copies>
  1767 + <partitioning>
  1768 + <method>none</method>
  1769 + <schema_name/>
  1770 + </partitioning>
  1771 + <connection>bus_control_variable</connection>
  1772 + <cache>N</cache>
  1773 + <cache_load_all>N</cache_load_all>
  1774 + <cache_size>0</cache_size>
  1775 + <lookup>
  1776 + <schema/>
  1777 + <table>bsth_c_s_ttinfo</table>
  1778 + <orderby/>
  1779 + <fail_on_multiple>N</fail_on_multiple>
  1780 + <eat_row_on_failure>N</eat_row_on_failure>
  1781 + <key>
  1782 + <name>xlid</name>
  1783 + <field>xl</field>
  1784 + <condition>&#x3d;</condition>
  1785 + <name2/>
  1786 + </key>
  1787 + <key>
  1788 + <name>ttinfoname_</name>
  1789 + <field>name</field>
  1790 + <condition>&#x3d;</condition>
  1791 + <name2/>
  1792 + </key>
  1793 + <key>
  1794 + <name>iscanceled</name>
  1795 + <field>is_cancel</field>
  1796 + <condition>&#x3d;</condition>
  1797 + <name2/>
  1798 + </key>
  1799 + <value>
  1800 + <name>id</name>
  1801 + <rename>ttid</rename>
  1802 + <default/>
  1803 + <type>Integer</type>
  1804 + </value>
  1805 + </lookup>
  1806 + <cluster_schema/>
  1807 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1808 + <xloc>1011</xloc>
  1809 + <yloc>134</yloc>
  1810 + <draw>Y</draw>
  1811 + </GUI>
  1812 + </step>
  1813 +
  1814 + <step>
  1815 + <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x5173;&#x8054;</name>
  1816 + <type>DBLookup</type>
  1817 + <description/>
  1818 + <distribute>Y</distribute>
  1819 + <custom_distribution/>
  1820 + <copies>1</copies>
  1821 + <partitioning>
  1822 + <method>none</method>
  1823 + <schema_name/>
  1824 + </partitioning>
  1825 + <connection>bus_control_variable</connection>
  1826 + <cache>N</cache>
  1827 + <cache_load_all>N</cache_load_all>
  1828 + <cache_size>0</cache_size>
  1829 + <lookup>
  1830 + <schema/>
  1831 + <table>bsth_c_line</table>
  1832 + <orderby/>
  1833 + <fail_on_multiple>N</fail_on_multiple>
  1834 + <eat_row_on_failure>N</eat_row_on_failure>
  1835 + <key>
  1836 + <name>xlname_</name>
  1837 + <field>name</field>
  1838 + <condition>&#x3d;</condition>
  1839 + <name2/>
  1840 + </key>
  1841 + <key>
  1842 + <name>iscanceled</name>
  1843 + <field>destroy</field>
  1844 + <condition>&#x3d;</condition>
  1845 + <name2/>
  1846 + </key>
  1847 + <value>
  1848 + <name>id</name>
  1849 + <rename>xlid</rename>
  1850 + <default/>
  1851 + <type>Integer</type>
  1852 + </value>
  1853 + </lookup>
  1854 + <cluster_schema/>
  1855 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1856 + <xloc>1007</xloc>
  1857 + <yloc>43</yloc>
  1858 + <draw>Y</draw>
  1859 + </GUI>
  1860 + </step>
  1861 +
  1862 + <step>
  1863 + <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x51fa;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
  1864 + <type>DBLookup</type>
  1865 + <description/>
  1866 + <distribute>Y</distribute>
  1867 + <custom_distribution/>
  1868 + <copies>1</copies>
  1869 + <partitioning>
  1870 + <method>none</method>
  1871 + <schema_name/>
  1872 + </partitioning>
  1873 + <connection>bus_control_variable</connection>
  1874 + <cache>N</cache>
  1875 + <cache_load_all>N</cache_load_all>
  1876 + <cache_size>0</cache_size>
  1877 + <lookup>
  1878 + <schema/>
  1879 + <table>bsth_c_line_information</table>
  1880 + <orderby/>
  1881 + <fail_on_multiple>N</fail_on_multiple>
  1882 + <eat_row_on_failure>N</eat_row_on_failure>
  1883 + <key>
  1884 + <name>xlid</name>
  1885 + <field>line</field>
  1886 + <condition>&#x3d;</condition>
  1887 + <name2/>
  1888 + </key>
  1889 + <value>
  1890 + <name>up_out_timer</name>
  1891 + <rename>up_out_timer</rename>
  1892 + <default/>
  1893 + <type>Number</type>
  1894 + </value>
  1895 + <value>
  1896 + <name>up_out_mileage</name>
  1897 + <rename>up_out_mileage</rename>
  1898 + <default/>
  1899 + <type>Number</type>
  1900 + </value>
  1901 + <value>
  1902 + <name>down_out_timer</name>
  1903 + <rename>down_out_timer</rename>
  1904 + <default/>
  1905 + <type>Number</type>
  1906 + </value>
  1907 + <value>
  1908 + <name>down_out_mileage</name>
  1909 + <rename>down_out_mileage</rename>
  1910 + <default/>
  1911 + <type>Number</type>
  1912 + </value>
  1913 + </lookup>
  1914 + <cluster_schema/>
  1915 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1916 + <xloc>335</xloc>
  1917 + <yloc>763</yloc>
  1918 + <draw>Y</draw>
  1919 + </GUI>
  1920 + </step>
  1921 +
  1922 + <step>
  1923 + <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x8fdb;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
  1924 + <type>DBLookup</type>
  1925 + <description/>
  1926 + <distribute>Y</distribute>
  1927 + <custom_distribution/>
  1928 + <copies>1</copies>
  1929 + <partitioning>
  1930 + <method>none</method>
  1931 + <schema_name/>
  1932 + </partitioning>
  1933 + <connection>bus_control_variable</connection>
  1934 + <cache>N</cache>
  1935 + <cache_load_all>N</cache_load_all>
  1936 + <cache_size>0</cache_size>
  1937 + <lookup>
  1938 + <schema/>
  1939 + <table>bsth_c_line_information</table>
  1940 + <orderby/>
  1941 + <fail_on_multiple>N</fail_on_multiple>
  1942 + <eat_row_on_failure>N</eat_row_on_failure>
  1943 + <key>
  1944 + <name>xlid</name>
  1945 + <field>line</field>
  1946 + <condition>&#x3d;</condition>
  1947 + <name2/>
  1948 + </key>
  1949 + <value>
  1950 + <name>up_in_mileage</name>
  1951 + <rename>up_in_mileage</rename>
  1952 + <default/>
  1953 + <type>Number</type>
  1954 + </value>
  1955 + <value>
  1956 + <name>up_in_timer</name>
  1957 + <rename>up_in_timer</rename>
  1958 + <default/>
  1959 + <type>Number</type>
  1960 + </value>
  1961 + <value>
  1962 + <name>down_in_mileage</name>
  1963 + <rename>down_in_mileage</rename>
  1964 + <default/>
  1965 + <type>Number</type>
  1966 + </value>
  1967 + <value>
  1968 + <name>down_in_timer</name>
  1969 + <rename>down_in_timer</rename>
  1970 + <default/>
  1971 + <type>Number</type>
  1972 + </value>
  1973 + </lookup>
  1974 + <cluster_schema/>
  1975 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1976 + <xloc>553</xloc>
  1977 + <yloc>1004</yloc>
  1978 + <draw>Y</draw>
  1979 + </GUI>
  1980 + </step>
  1981 +
  1982 + <step>
  1983 + <name>&#x67e5;&#x627e;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;</name>
  1984 + <type>DBLookup</type>
  1985 + <description/>
  1986 + <distribute>Y</distribute>
  1987 + <custom_distribution/>
  1988 + <copies>1</copies>
  1989 + <partitioning>
  1990 + <method>none</method>
  1991 + <schema_name/>
  1992 + </partitioning>
  1993 + <connection>bus_control_variable</connection>
  1994 + <cache>N</cache>
  1995 + <cache_load_all>N</cache_load_all>
  1996 + <cache_size>0</cache_size>
  1997 + <lookup>
  1998 + <schema/>
  1999 + <table>bsth_c_stationroute</table>
  2000 + <orderby/>
  2001 + <fail_on_multiple>N</fail_on_multiple>
  2002 + <eat_row_on_failure>N</eat_row_on_failure>
  2003 + <key>
  2004 + <name>xlid</name>
  2005 + <field>line</field>
  2006 + <condition>&#x3d;</condition>
  2007 + <name2/>
  2008 + </key>
  2009 + <key>
  2010 + <name>sxx</name>
  2011 + <field>directions</field>
  2012 + <condition>&#x3d;</condition>
  2013 + <name2/>
  2014 + </key>
  2015 + <key>
  2016 + <name>endZdtype</name>
  2017 + <field>station_mark</field>
  2018 + <condition>&#x3d;</condition>
  2019 + <name2/>
  2020 + </key>
  2021 + <key>
  2022 + <name>destory</name>
  2023 + <field>destroy</field>
  2024 + <condition>&#x3d;</condition>
  2025 + <name2/>
  2026 + </key>
  2027 + <value>
  2028 + <name>station_name</name>
  2029 + <rename>zdzname</rename>
  2030 + <default/>
  2031 + <type>String</type>
  2032 + </value>
  2033 + <value>
  2034 + <name>station</name>
  2035 + <rename>zdzid</rename>
  2036 + <default/>
  2037 + <type>Integer</type>
  2038 + </value>
  2039 + <value>
  2040 + <name>station_code</name>
  2041 + <rename>zdzcode</rename>
  2042 + <default/>
  2043 + <type>String</type>
  2044 + </value>
  2045 + </lookup>
  2046 + <cluster_schema/>
  2047 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2048 + <xloc>280</xloc>
  2049 + <yloc>404</yloc>
  2050 + <draw>Y</draw>
  2051 + </GUI>
  2052 + </step>
  2053 +
  2054 + <step>
  2055 + <name>&#x67e5;&#x627e;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</name>
  2056 + <type>DBLookup</type>
  2057 + <description/>
  2058 + <distribute>Y</distribute>
  2059 + <custom_distribution/>
  2060 + <copies>1</copies>
  2061 + <partitioning>
  2062 + <method>none</method>
  2063 + <schema_name/>
  2064 + </partitioning>
  2065 + <connection>bus_control_variable</connection>
  2066 + <cache>N</cache>
  2067 + <cache_load_all>N</cache_load_all>
  2068 + <cache_size>0</cache_size>
  2069 + <lookup>
  2070 + <schema/>
  2071 + <table>bsth_c_stationroute</table>
  2072 + <orderby/>
  2073 + <fail_on_multiple>N</fail_on_multiple>
  2074 + <eat_row_on_failure>N</eat_row_on_failure>
  2075 + <key>
  2076 + <name>xlid</name>
  2077 + <field>line</field>
  2078 + <condition>&#x3d;</condition>
  2079 + <name2/>
  2080 + </key>
  2081 + <key>
  2082 + <name>qdzname</name>
  2083 + <field>station_name</field>
  2084 + <condition>LIKE</condition>
  2085 + <name2/>
  2086 + </key>
  2087 + <key>
  2088 + <name>sendZdtype</name>
  2089 + <field>station_mark</field>
  2090 + <condition>&#x3d;</condition>
  2091 + <name2/>
  2092 + </key>
  2093 + <key>
  2094 + <name>destory</name>
  2095 + <field>destroy</field>
  2096 + <condition>&#x3d;</condition>
  2097 + <name2/>
  2098 + </key>
  2099 + <value>
  2100 + <name>station</name>
  2101 + <rename>qdzid</rename>
  2102 + <default/>
  2103 + <type>Integer</type>
  2104 + </value>
  2105 + <value>
  2106 + <name>directions</name>
  2107 + <rename>sxx</rename>
  2108 + <default/>
  2109 + <type>Integer</type>
  2110 + </value>
  2111 + <value>
  2112 + <name>station_code</name>
  2113 + <rename>qdzcode</rename>
  2114 + <default/>
  2115 + <type>String</type>
  2116 + </value>
  2117 + <value>
  2118 + <name>station_name</name>
  2119 + <rename>qdzname_</rename>
  2120 + <default/>
  2121 + <type>String</type>
  2122 + </value>
  2123 + </lookup>
  2124 + <cluster_schema/>
  2125 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2126 + <xloc>430</xloc>
  2127 + <yloc>403</yloc>
  2128 + <draw>Y</draw>
  2129 + </GUI>
  2130 + </step>
  2131 +
  2132 + <step>
  2133 + <name>&#x67e5;&#x627e;&#x8def;&#x724c;&#x5173;&#x8054;</name>
  2134 + <type>DBLookup</type>
  2135 + <description/>
  2136 + <distribute>Y</distribute>
  2137 + <custom_distribution/>
  2138 + <copies>1</copies>
  2139 + <partitioning>
  2140 + <method>none</method>
  2141 + <schema_name/>
  2142 + </partitioning>
  2143 + <connection>bus_control_variable</connection>
  2144 + <cache>N</cache>
  2145 + <cache_load_all>N</cache_load_all>
  2146 + <cache_size>0</cache_size>
  2147 + <lookup>
  2148 + <schema/>
  2149 + <table>bsth_c_s_gbi</table>
  2150 + <orderby/>
  2151 + <fail_on_multiple>N</fail_on_multiple>
  2152 + <eat_row_on_failure>N</eat_row_on_failure>
  2153 + <key>
  2154 + <name>xlid</name>
  2155 + <field>xl</field>
  2156 + <condition>&#x3d;</condition>
  2157 + <name2/>
  2158 + </key>
  2159 + <key>
  2160 + <name>lp</name>
  2161 + <field>lp_name</field>
  2162 + <condition>&#x3d;</condition>
  2163 + <name2/>
  2164 + </key>
  2165 + <key>
  2166 + <name>iscanceled</name>
  2167 + <field>is_cancel</field>
  2168 + <condition>&#x3d;</condition>
  2169 + <name2/>
  2170 + </key>
  2171 + <value>
  2172 + <name>id</name>
  2173 + <rename>lpid</rename>
  2174 + <default/>
  2175 + <type>Integer</type>
  2176 + </value>
  2177 + </lookup>
  2178 + <cluster_schema/>
  2179 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2180 + <xloc>1013</xloc>
  2181 + <yloc>265</yloc>
  2182 + <draw>Y</draw>
  2183 + </GUI>
  2184 + </step>
  2185 +
  2186 + <step>
  2187 + <name>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ebf;&#x8def;&#x65b9;&#x5411;</name>
  2188 + <type>DBLookup</type>
  2189 + <description/>
  2190 + <distribute>Y</distribute>
  2191 + <custom_distribution/>
  2192 + <copies>1</copies>
  2193 + <partitioning>
  2194 + <method>none</method>
  2195 + <schema_name/>
  2196 + </partitioning>
  2197 + <connection>bus_control_variable</connection>
  2198 + <cache>N</cache>
  2199 + <cache_load_all>N</cache_load_all>
  2200 + <cache_size>0</cache_size>
  2201 + <lookup>
  2202 + <schema/>
  2203 + <table>bsth_c_stationroute</table>
  2204 + <orderby/>
  2205 + <fail_on_multiple>N</fail_on_multiple>
  2206 + <eat_row_on_failure>N</eat_row_on_failure>
  2207 + <key>
  2208 + <name>xlid</name>
  2209 + <field>line</field>
  2210 + <condition>&#x3d;</condition>
  2211 + <name2/>
  2212 + </key>
  2213 + <key>
  2214 + <name>startZdtype_calcu</name>
  2215 + <field>station_mark</field>
  2216 + <condition>&#x3d;</condition>
  2217 + <name2/>
  2218 + </key>
  2219 + <key>
  2220 + <name>qdzname_calcu</name>
  2221 + <field>station_name</field>
  2222 + <condition>LIKE</condition>
  2223 + <name2/>
  2224 + </key>
  2225 + <key>
  2226 + <name>destory</name>
  2227 + <field>destroy</field>
  2228 + <condition>&#x3d;</condition>
  2229 + <name2/>
  2230 + </key>
  2231 + <value>
  2232 + <name>directions</name>
  2233 + <rename>sxx</rename>
  2234 + <default/>
  2235 + <type>String</type>
  2236 + </value>
  2237 + </lookup>
  2238 + <cluster_schema/>
  2239 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2240 + <xloc>548</xloc>
  2241 + <yloc>610</yloc>
  2242 + <draw>Y</draw>
  2243 + </GUI>
  2244 + </step>
  2245 +
  2246 + <step>
  2247 + <name>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ec8;&#x70b9;&#x7ad9;&#xff0c;&#x5e76;&#x4f5c;&#x4e3a;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x7684;&#x8d77;&#x70b9;&#x7ad9;</name>
  2248 + <type>DBLookup</type>
  2249 + <description/>
  2250 + <distribute>Y</distribute>
  2251 + <custom_distribution/>
  2252 + <copies>1</copies>
  2253 + <partitioning>
  2254 + <method>none</method>
  2255 + <schema_name/>
  2256 + </partitioning>
  2257 + <connection>bus_control_variable</connection>
  2258 + <cache>Y</cache>
  2259 + <cache_load_all>Y</cache_load_all>
  2260 + <cache_size>0</cache_size>
  2261 + <lookup>
  2262 + <schema/>
  2263 + <table>bsth_c_stationroute</table>
  2264 + <orderby/>
  2265 + <fail_on_multiple>N</fail_on_multiple>
  2266 + <eat_row_on_failure>N</eat_row_on_failure>
  2267 + <key>
  2268 + <name>xlid</name>
  2269 + <field>line</field>
  2270 + <condition>&#x3d;</condition>
  2271 + <name2/>
  2272 + </key>
  2273 + <key>
  2274 + <name>endZdtype_calcu</name>
  2275 + <field>station_mark</field>
  2276 + <condition>&#x3d;</condition>
  2277 + <name2/>
  2278 + </key>
  2279 + <key>
  2280 + <name>sxx</name>
  2281 + <field>directions</field>
  2282 + <condition>&#x3d;</condition>
  2283 + <name2/>
  2284 + </key>
  2285 + <key>
  2286 + <name>destory</name>
  2287 + <field>destroy</field>
  2288 + <condition>&#x3d;</condition>
  2289 + <name2/>
  2290 + </key>
  2291 + <value>
  2292 + <name>station_name</name>
  2293 + <rename>zdzname_calcu</rename>
  2294 + <default/>
  2295 + <type>Integer</type>
  2296 + </value>
  2297 + </lookup>
  2298 + <cluster_schema/>
  2299 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2300 + <xloc>550</xloc>
  2301 + <yloc>701</yloc>
  2302 + <draw>Y</draw>
  2303 + </GUI>
  2304 + </step>
  2305 +
  2306 + <step>
  2307 + <name>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</name>
  2308 + <type>DBLookup</type>
  2309 + <description/>
  2310 + <distribute>Y</distribute>
  2311 + <custom_distribution/>
  2312 + <copies>1</copies>
  2313 + <partitioning>
  2314 + <method>none</method>
  2315 + <schema_name/>
  2316 + </partitioning>
  2317 + <connection>bus_control_variable</connection>
  2318 + <cache>N</cache>
  2319 + <cache_load_all>N</cache_load_all>
  2320 + <cache_size>0</cache_size>
  2321 + <lookup>
  2322 + <schema/>
  2323 + <table>bsth_c_stationroute</table>
  2324 + <orderby/>
  2325 + <fail_on_multiple>N</fail_on_multiple>
  2326 + <eat_row_on_failure>N</eat_row_on_failure>
  2327 + <key>
  2328 + <name>xlid</name>
  2329 + <field>line</field>
  2330 + <condition>&#x3d;</condition>
  2331 + <name2/>
  2332 + </key>
  2333 + <key>
  2334 + <name>zdzname_calcu</name>
  2335 + <field>station_name</field>
  2336 + <condition>&#x3d;</condition>
  2337 + <name2/>
  2338 + </key>
  2339 + <key>
  2340 + <name>startZdtype_calcu</name>
  2341 + <field>station_mark</field>
  2342 + <condition>&#x3d;</condition>
  2343 + <name2/>
  2344 + </key>
  2345 + <key>
  2346 + <name>destory</name>
  2347 + <field>destroy</field>
  2348 + <condition>&#x3d;</condition>
  2349 + <name2/>
  2350 + </key>
  2351 + <value>
  2352 + <name>directions</name>
  2353 + <rename>sxx2</rename>
  2354 + <default/>
  2355 + <type>Integer</type>
  2356 + </value>
  2357 + <value>
  2358 + <name>station</name>
  2359 + <rename>qdzid</rename>
  2360 + <default/>
  2361 + <type>Integer</type>
  2362 + </value>
  2363 + <value>
  2364 + <name>station_code</name>
  2365 + <rename>qdzcode</rename>
  2366 + <default/>
  2367 + <type>String</type>
  2368 + </value>
  2369 + <value>
  2370 + <name>station_name</name>
  2371 + <rename>qname</rename>
  2372 + <default/>
  2373 + <type>String</type>
  2374 + </value>
  2375 + </lookup>
  2376 + <cluster_schema/>
  2377 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2378 + <xloc>551</xloc>
  2379 + <yloc>782</yloc>
  2380 + <draw>Y</draw>
  2381 + </GUI>
  2382 + </step>
  2383 +
  2384 + <step>
  2385 + <name>&#x6b63;&#x5e38;&#x73ed;&#x6b21;_&#x5904;&#x7406;&#x6570;&#x636e;</name>
  2386 + <type>ScriptValueMod</type>
  2387 + <description/>
  2388 + <distribute>Y</distribute>
  2389 + <custom_distribution/>
  2390 + <copies>1</copies>
  2391 + <partitioning>
  2392 + <method>none</method>
  2393 + <schema_name/>
  2394 + </partitioning>
  2395 + <compatible>N</compatible>
  2396 + <optimizationLevel>9</optimizationLevel>
  2397 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  2398 + <jsScript_name>Script 1</jsScript_name>
  2399 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;&#x2f;&#x2f; &#x6dfb;&#x52a0;&#x7ad9;&#x70b9;&#x6807;&#x8bc6;&#xa;var sendZdtype &#x3d; &#x27;B&#x27;&#x3b;&#xa;var endZdtype &#x3d; &#x27;E&#x27;&#x3b;&#xa;&#xa;var destory &#x3d; 0&#x3b; &#x2f;&#x2f; &#x672a;&#x64a4;&#x9500;flag</jsScript_script>
  2400 + </jsScript> </jsScripts> <fields> <field> <name>sendZdtype</name>
  2401 + <rename>sendZdtype</rename>
  2402 + <type>String</type>
  2403 + <length>-1</length>
  2404 + <precision>-1</precision>
  2405 + <replace>N</replace>
  2406 + </field> <field> <name>endZdtype</name>
  2407 + <rename>endZdtype</rename>
  2408 + <type>String</type>
  2409 + <length>-1</length>
  2410 + <precision>-1</precision>
  2411 + <replace>N</replace>
  2412 + </field> <field> <name>destory</name>
  2413 + <rename>destory</rename>
  2414 + <type>Integer</type>
  2415 + <length>-1</length>
  2416 + <precision>-1</precision>
  2417 + <replace>N</replace>
  2418 + </field> </fields> <cluster_schema/>
  2419 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2420 + <xloc>588</xloc>
  2421 + <yloc>403</yloc>
  2422 + <draw>Y</draw>
  2423 + </GUI>
  2424 + </step>
  2425 +
  2426 + <step>
  2427 + <name>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</name>
  2428 + <type>Dummy</type>
  2429 + <description/>
  2430 + <distribute>Y</distribute>
  2431 + <custom_distribution/>
  2432 + <copies>1</copies>
  2433 + <partitioning>
  2434 + <method>none</method>
  2435 + <schema_name/>
  2436 + </partitioning>
  2437 + <cluster_schema/>
  2438 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2439 + <xloc>725</xloc>
  2440 + <yloc>404</yloc>
  2441 + <draw>Y</draw>
  2442 + </GUI>
  2443 + </step>
  2444 +
  2445 + <step>
  2446 + <name>&#x6dfb;&#x52a0;&#x53d1;&#x8f66;&#x987a;&#x5e8f;&#x53f7;</name>
  2447 + <type>GroupBy</type>
  2448 + <description/>
  2449 + <distribute>Y</distribute>
  2450 + <custom_distribution/>
  2451 + <copies>1</copies>
  2452 + <partitioning>
  2453 + <method>none</method>
  2454 + <schema_name/>
  2455 + </partitioning>
  2456 + <all_rows>Y</all_rows>
  2457 + <ignore_aggregate>N</ignore_aggregate>
  2458 + <field_ignore/>
  2459 + <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
  2460 + <prefix>grp</prefix>
  2461 + <add_linenr>Y</add_linenr>
  2462 + <linenr_fieldname>fcno</linenr_fieldname>
  2463 + <give_back_row>N</give_back_row>
  2464 + <group>
  2465 + <field>
  2466 + <name>lp</name>
  2467 + </field>
  2468 + </group>
  2469 + <fields>
  2470 + </fields>
  2471 + <cluster_schema/>
  2472 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2473 + <xloc>442</xloc>
  2474 + <yloc>44</yloc>
  2475 + <draw>Y</draw>
  2476 + </GUI>
  2477 + </step>
  2478 +
  2479 + <step>
  2480 + <name>&#x6dfb;&#x52a0;&#x5bf9;&#x5e94;&#x73ed;&#x6b21;&#x6570;</name>
  2481 + <type>GroupBy</type>
  2482 + <description/>
  2483 + <distribute>Y</distribute>
  2484 + <custom_distribution/>
  2485 + <copies>1</copies>
  2486 + <partitioning>
  2487 + <method>none</method>
  2488 + <schema_name/>
  2489 + </partitioning>
  2490 + <all_rows>Y</all_rows>
  2491 + <ignore_aggregate>N</ignore_aggregate>
  2492 + <field_ignore/>
  2493 + <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
  2494 + <prefix>grp</prefix>
  2495 + <add_linenr>Y</add_linenr>
  2496 + <linenr_fieldname>bcs</linenr_fieldname>
  2497 + <give_back_row>N</give_back_row>
  2498 + <group>
  2499 + </group>
  2500 + <fields>
  2501 + </fields>
  2502 + <cluster_schema/>
  2503 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2504 + <xloc>692</xloc>
  2505 + <yloc>44</yloc>
  2506 + <draw>Y</draw>
  2507 + </GUI>
  2508 + </step>
  2509 +
  2510 + <step>
  2511 + <name>&#x73ed;&#x6b21;&#x6570;&#x636e;&#x8303;&#x5f0f;&#x5316;</name>
  2512 + <type>Normaliser</type>
  2513 + <description/>
  2514 + <distribute>Y</distribute>
  2515 + <custom_distribution/>
  2516 + <copies>1</copies>
  2517 + <partitioning>
  2518 + <method>none</method>
  2519 + <schema_name/>
  2520 + </partitioning>
  2521 + <typefield>&#x7ad9;&#x70b9;&#x540d;&#x79f0;</typefield>
  2522 + <fields> </fields> <cluster_schema/>
  2523 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2524 + <xloc>248</xloc>
  2525 + <yloc>44</yloc>
  2526 + <draw>Y</draw>
  2527 + </GUI>
  2528 + </step>
  2529 +
  2530 + <step>
  2531 + <name>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178;</name>
  2532 + <type>ValueMapper</type>
  2533 + <description/>
  2534 + <distribute>Y</distribute>
  2535 + <custom_distribution/>
  2536 + <copies>1</copies>
  2537 + <partitioning>
  2538 + <method>none</method>
  2539 + <schema_name/>
  2540 + </partitioning>
  2541 + <field_to_use>bctype</field_to_use>
  2542 + <target_field>bctype_code</target_field>
  2543 + <non_match_default>&#x672a;&#x77e5;&#x7c7b;&#x578b;</non_match_default>
  2544 + <fields>
  2545 + <field>
  2546 + <source_value>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</source_value>
  2547 + <target_value>normal</target_value>
  2548 + </field>
  2549 + <field>
  2550 + <source_value>&#x51fa;&#x573a;</source_value>
  2551 + <target_value>out</target_value>
  2552 + </field>
  2553 + <field>
  2554 + <source_value>&#x8fdb;&#x573a;</source_value>
  2555 + <target_value>in</target_value>
  2556 + </field>
  2557 + <field>
  2558 + <source_value>&#x52a0;&#x6cb9;</source_value>
  2559 + <target_value>oil</target_value>
  2560 + </field>
  2561 + <field>
  2562 + <source_value>&#x4e34;&#x52a0;</source_value>
  2563 + <target_value>temp</target_value>
  2564 + </field>
  2565 + <field>
  2566 + <source_value>&#x533a;&#x95f4;</source_value>
  2567 + <target_value>region</target_value>
  2568 + </field>
  2569 + <field>
  2570 + <source_value>&#x653e;&#x7a7a;</source_value>
  2571 + <target_value>venting</target_value>
  2572 + </field>
  2573 + <field>
  2574 + <source_value>&#x653e;&#x5927;&#x7ad9;</source_value>
  2575 + <target_value>major</target_value>
  2576 + </field>
  2577 + </fields>
  2578 + <cluster_schema/>
  2579 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2580 + <xloc>149</xloc>
  2581 + <yloc>491</yloc>
  2582 + <draw>Y</draw>
  2583 + </GUI>
  2584 + </step>
  2585 +
  2586 + <step>
  2587 + <name>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 2</name>
  2588 + <type>ValueMapper</type>
  2589 + <description/>
  2590 + <distribute>Y</distribute>
  2591 + <custom_distribution/>
  2592 + <copies>1</copies>
  2593 + <partitioning>
  2594 + <method>none</method>
  2595 + <schema_name/>
  2596 + </partitioning>
  2597 + <field_to_use>bctype</field_to_use>
  2598 + <target_field>bctype_code</target_field>
  2599 + <non_match_default>&#x672a;&#x77e5;&#x7c7b;&#x578b;</non_match_default>
  2600 + <fields>
  2601 + <field>
  2602 + <source_value>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</source_value>
  2603 + <target_value>normal</target_value>
  2604 + </field>
  2605 + <field>
  2606 + <source_value>&#x51fa;&#x573a;</source_value>
  2607 + <target_value>out</target_value>
  2608 + </field>
  2609 + <field>
  2610 + <source_value>&#x8fdb;&#x573a;</source_value>
  2611 + <target_value>in</target_value>
  2612 + </field>
  2613 + <field>
  2614 + <source_value>&#x52a0;&#x6cb9;</source_value>
  2615 + <target_value>oil</target_value>
  2616 + </field>
  2617 + <field>
  2618 + <source_value>&#x4e34;&#x52a0;</source_value>
  2619 + <target_value>temp</target_value>
  2620 + </field>
  2621 + <field>
  2622 + <source_value>&#x533a;&#x95f4;</source_value>
  2623 + <target_value>region</target_value>
  2624 + </field>
  2625 + <field>
  2626 + <source_value>&#x653e;&#x7a7a;</source_value>
  2627 + <target_value>venting</target_value>
  2628 + </field>
  2629 + <field>
  2630 + <source_value>&#x653e;&#x5927;&#x7ad9;</source_value>
  2631 + <target_value>major</target_value>
  2632 + </field>
  2633 + </fields>
  2634 + <cluster_schema/>
  2635 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2636 + <xloc>333</xloc>
  2637 + <yloc>681</yloc>
  2638 + <draw>Y</draw>
  2639 + </GUI>
  2640 + </step>
  2641 +
  2642 + <step>
  2643 + <name>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 3</name>
  2644 + <type>ValueMapper</type>
  2645 + <description/>
  2646 + <distribute>Y</distribute>
  2647 + <custom_distribution/>
  2648 + <copies>1</copies>
  2649 + <partitioning>
  2650 + <method>none</method>
  2651 + <schema_name/>
  2652 + </partitioning>
  2653 + <field_to_use>bctype</field_to_use>
  2654 + <target_field>bctype_code</target_field>
  2655 + <non_match_default>&#x672a;&#x77e5;&#x7c7b;&#x578b;</non_match_default>
  2656 + <fields>
  2657 + <field>
  2658 + <source_value>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</source_value>
  2659 + <target_value>normal</target_value>
  2660 + </field>
  2661 + <field>
  2662 + <source_value>&#x51fa;&#x573a;</source_value>
  2663 + <target_value>out</target_value>
  2664 + </field>
  2665 + <field>
  2666 + <source_value>&#x8fdb;&#x573a;</source_value>
  2667 + <target_value>in</target_value>
  2668 + </field>
  2669 + <field>
  2670 + <source_value>&#x52a0;&#x6cb9;</source_value>
  2671 + <target_value>oil</target_value>
  2672 + </field>
  2673 + <field>
  2674 + <source_value>&#x4e34;&#x52a0;</source_value>
  2675 + <target_value>temp</target_value>
  2676 + </field>
  2677 + <field>
  2678 + <source_value>&#x533a;&#x95f4;</source_value>
  2679 + <target_value>region</target_value>
  2680 + </field>
  2681 + <field>
  2682 + <source_value>&#x653e;&#x7a7a;</source_value>
  2683 + <target_value>venting</target_value>
  2684 + </field>
  2685 + <field>
  2686 + <source_value>&#x653e;&#x5927;&#x7ad9;</source_value>
  2687 + <target_value>major</target_value>
  2688 + </field>
  2689 + </fields>
  2690 + <cluster_schema/>
  2691 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2692 + <xloc>551</xloc>
  2693 + <yloc>928</yloc>
  2694 + <draw>Y</draw>
  2695 + </GUI>
  2696 + </step>
  2697 +
  2698 + <step>
  2699 + <name>&#x7c7b;&#x578b;&#x4fee;&#x6b63;</name>
  2700 + <type>SelectValues</type>
  2701 + <description/>
  2702 + <distribute>Y</distribute>
  2703 + <custom_distribution/>
  2704 + <copies>1</copies>
  2705 + <partitioning>
  2706 + <method>none</method>
  2707 + <schema_name/>
  2708 + </partitioning>
  2709 + <fields> <select_unspecified>N</select_unspecified>
  2710 + <meta> <name>jhlc</name>
  2711 + <rename>jhlc</rename>
  2712 + <type>Number</type>
  2713 + <length>-2</length>
  2714 + <precision>-2</precision>
  2715 + <conversion_mask/>
  2716 + <date_format_lenient>false</date_format_lenient>
  2717 + <date_format_locale/>
  2718 + <date_format_timezone/>
  2719 + <lenient_string_to_number>false</lenient_string_to_number>
  2720 + <encoding/>
  2721 + <decimal_symbol/>
  2722 + <grouping_symbol/>
  2723 + <currency_symbol/>
  2724 + <storage_type/>
  2725 + </meta> <meta> <name>bcsj</name>
  2726 + <rename>bcsj</rename>
  2727 + <type>Integer</type>
  2728 + <length>-2</length>
  2729 + <precision>-2</precision>
  2730 + <conversion_mask/>
  2731 + <date_format_lenient>false</date_format_lenient>
  2732 + <date_format_locale/>
  2733 + <date_format_timezone/>
  2734 + <lenient_string_to_number>false</lenient_string_to_number>
  2735 + <encoding/>
  2736 + <decimal_symbol/>
  2737 + <grouping_symbol/>
  2738 + <currency_symbol/>
  2739 + <storage_type/>
  2740 + </meta> </fields> <cluster_schema/>
  2741 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2742 + <xloc>146</xloc>
  2743 + <yloc>768</yloc>
  2744 + <draw>Y</draw>
  2745 + </GUI>
  2746 + </step>
  2747 +
  2748 + <step>
  2749 + <name>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 2</name>
  2750 + <type>SelectValues</type>
  2751 + <description/>
  2752 + <distribute>Y</distribute>
  2753 + <custom_distribution/>
  2754 + <copies>1</copies>
  2755 + <partitioning>
  2756 + <method>none</method>
  2757 + <schema_name/>
  2758 + </partitioning>
  2759 + <fields> <select_unspecified>N</select_unspecified>
  2760 + <meta> <name>out_mileage</name>
  2761 + <rename>out_mileage</rename>
  2762 + <type>Number</type>
  2763 + <length>-2</length>
  2764 + <precision>-2</precision>
  2765 + <conversion_mask/>
  2766 + <date_format_lenient>false</date_format_lenient>
  2767 + <date_format_locale/>
  2768 + <date_format_timezone/>
  2769 + <lenient_string_to_number>false</lenient_string_to_number>
  2770 + <encoding/>
  2771 + <decimal_symbol/>
  2772 + <grouping_symbol/>
  2773 + <currency_symbol/>
  2774 + <storage_type/>
  2775 + </meta> <meta> <name>out_time</name>
  2776 + <rename>out_time</rename>
  2777 + <type>Integer</type>
  2778 + <length>-2</length>
  2779 + <precision>-2</precision>
  2780 + <conversion_mask/>
  2781 + <date_format_lenient>false</date_format_lenient>
  2782 + <date_format_locale/>
  2783 + <date_format_timezone/>
  2784 + <lenient_string_to_number>false</lenient_string_to_number>
  2785 + <encoding/>
  2786 + <decimal_symbol/>
  2787 + <grouping_symbol/>
  2788 + <currency_symbol/>
  2789 + <storage_type/>
  2790 + </meta> <meta> <name>sxx</name>
  2791 + <rename>sxx</rename>
  2792 + <type>Integer</type>
  2793 + <length>-2</length>
  2794 + <precision>-2</precision>
  2795 + <conversion_mask/>
  2796 + <date_format_lenient>false</date_format_lenient>
  2797 + <date_format_locale/>
  2798 + <date_format_timezone/>
  2799 + <lenient_string_to_number>false</lenient_string_to_number>
  2800 + <encoding/>
  2801 + <decimal_symbol/>
  2802 + <grouping_symbol/>
  2803 + <currency_symbol/>
  2804 + <storage_type/>
  2805 + </meta> </fields> <cluster_schema/>
  2806 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2807 + <xloc>338</xloc>
  2808 + <yloc>1008</yloc>
  2809 + <draw>Y</draw>
  2810 + </GUI>
  2811 + </step>
  2812 +
  2813 + <step>
  2814 + <name>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 3</name>
  2815 + <type>SelectValues</type>
  2816 + <description/>
  2817 + <distribute>Y</distribute>
  2818 + <custom_distribution/>
  2819 + <copies>1</copies>
  2820 + <partitioning>
  2821 + <method>none</method>
  2822 + <schema_name/>
  2823 + </partitioning>
  2824 + <fields> <select_unspecified>N</select_unspecified>
  2825 + <meta> <name>parade_mileage</name>
  2826 + <rename>parade_mileage</rename>
  2827 + <type>Number</type>
  2828 + <length>-2</length>
  2829 + <precision>-2</precision>
  2830 + <conversion_mask/>
  2831 + <date_format_lenient>false</date_format_lenient>
  2832 + <date_format_locale/>
  2833 + <date_format_timezone/>
  2834 + <lenient_string_to_number>false</lenient_string_to_number>
  2835 + <encoding/>
  2836 + <decimal_symbol/>
  2837 + <grouping_symbol/>
  2838 + <currency_symbol/>
  2839 + <storage_type/>
  2840 + </meta> <meta> <name>parade_time</name>
  2841 + <rename>parade_time</rename>
  2842 + <type>Integer</type>
  2843 + <length>-2</length>
  2844 + <precision>-2</precision>
  2845 + <conversion_mask/>
  2846 + <date_format_lenient>false</date_format_lenient>
  2847 + <date_format_locale/>
  2848 + <date_format_timezone/>
  2849 + <lenient_string_to_number>false</lenient_string_to_number>
  2850 + <encoding/>
  2851 + <decimal_symbol/>
  2852 + <grouping_symbol/>
  2853 + <currency_symbol/>
  2854 + <storage_type/>
  2855 + </meta> <meta> <name>sxx2</name>
  2856 + <rename>sxx2</rename>
  2857 + <type>Integer</type>
  2858 + <length>-2</length>
  2859 + <precision>-2</precision>
  2860 + <conversion_mask/>
  2861 + <date_format_lenient>false</date_format_lenient>
  2862 + <date_format_locale/>
  2863 + <date_format_timezone/>
  2864 + <lenient_string_to_number>false</lenient_string_to_number>
  2865 + <encoding/>
  2866 + <decimal_symbol/>
  2867 + <grouping_symbol/>
  2868 + <currency_symbol/>
  2869 + <storage_type/>
  2870 + </meta> </fields> <cluster_schema/>
  2871 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2872 + <xloc>847</xloc>
  2873 + <yloc>1003</yloc>
  2874 + <draw>Y</draw>
  2875 + </GUI>
  2876 + </step>
  2877 +
  2878 + <step>
  2879 + <name>&#x8ba1;&#x7b97;&#x73ed;&#x6b21;&#x7c7b;&#x578b;</name>
  2880 + <type>ValueMapper</type>
  2881 + <description/>
  2882 + <distribute>Y</distribute>
  2883 + <custom_distribution/>
  2884 + <copies>1</copies>
  2885 + <partitioning>
  2886 + <method>none</method>
  2887 + <schema_name/>
  2888 + </partitioning>
  2889 + <field_to_use>qdzname</field_to_use>
  2890 + <target_field>bctype</target_field>
  2891 + <non_match_default>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</non_match_default>
  2892 + <fields>
  2893 + <field>
  2894 + <source_value>&#x51fa;&#x573a;</source_value>
  2895 + <target_value>&#x51fa;&#x573a;</target_value>
  2896 + </field>
  2897 + <field>
  2898 + <source_value>&#x8fdb;&#x573a;</source_value>
  2899 + <target_value>&#x8fdb;&#x573a;</target_value>
  2900 + </field>
  2901 + </fields>
  2902 + <cluster_schema/>
  2903 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2904 + <xloc>1014</xloc>
  2905 + <yloc>401</yloc>
  2906 + <draw>Y</draw>
  2907 + </GUI>
  2908 + </step>
  2909 +
  2910 + <step>
  2911 + <name>&#x8bb0;&#x5f55;&#x5173;&#x8054; &#x28;&#x7b1b;&#x5361;&#x5c14;&#x8f93;&#x51fa;&#x29;</name>
  2912 + <type>JoinRows</type>
  2913 + <description/>
  2914 + <distribute>Y</distribute>
  2915 + <custom_distribution/>
  2916 + <copies>1</copies>
  2917 + <partitioning>
  2918 + <method>none</method>
  2919 + <schema_name/>
  2920 + </partitioning>
  2921 + <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
  2922 + <prefix>out</prefix>
  2923 + <cache_size>500</cache_size>
  2924 + <main/>
  2925 + <compare>
  2926 +<condition>
  2927 + <negated>N</negated>
  2928 + <leftvalue/>
  2929 + <function>&#x3d;</function>
  2930 + <rightvalue/>
  2931 + </condition>
  2932 + </compare>
  2933 + <cluster_schema/>
  2934 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2935 + <xloc>310</xloc>
  2936 + <yloc>133</yloc>
  2937 + <draw>Y</draw>
  2938 + </GUI>
  2939 + </step>
  2940 +
  2941 + <step>
  2942 + <name>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;&#xff08;&#x53d1;&#x8f66;&#x65f6;&#x95f4;&#x4e3a;&#x7a7a;&#xff09;</name>
  2943 + <type>FilterRows</type>
  2944 + <description/>
  2945 + <distribute>Y</distribute>
  2946 + <custom_distribution/>
  2947 + <copies>1</copies>
  2948 + <partitioning>
  2949 + <method>none</method>
  2950 + <schema_name/>
  2951 + </partitioning>
  2952 +<send_true_to/>
  2953 +<send_false_to/>
  2954 + <compare>
  2955 +<condition>
  2956 + <negated>N</negated>
  2957 + <leftvalue>sendtime</leftvalue>
  2958 + <function>IS NOT NULL</function>
  2959 + <rightvalue/>
  2960 + </condition>
  2961 + </compare>
  2962 + <cluster_schema/>
  2963 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2964 + <xloc>571</xloc>
  2965 + <yloc>44</yloc>
  2966 + <draw>Y</draw>
  2967 + </GUI>
  2968 + </step>
  2969 +
  2970 + <step>
  2971 + <name>&#x8fdb;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x8d77;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</name>
  2972 + <type>ScriptValueMod</type>
  2973 + <description/>
  2974 + <distribute>Y</distribute>
  2975 + <custom_distribution/>
  2976 + <copies>1</copies>
  2977 + <partitioning>
  2978 + <method>none</method>
  2979 + <schema_name/>
  2980 + </partitioning>
  2981 + <compatible>N</compatible>
  2982 + <optimizationLevel>9</optimizationLevel>
  2983 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  2984 + <jsScript_name>Script 1</jsScript_name>
  2985 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;&#x2f;&#x2f; &#x6dfb;&#x52a0;&#x7ad9;&#x70b9;&#x6807;&#x8bc6;&#xa;var cc_groups &#x3d; qdzgroups.split&#x28;&#x22;,&#x22;&#x29;&#x3b; &#x2f;&#x2f; &#x6240;&#x6709;&#x73ed;&#x6b21;&#x8d77;&#x70b9;&#x7ad9;&#x6570;&#x7ec4;&#xa;var qdzname_calcu &#x3d; cc_groups&#x5b;gno - 2&#x5d;&#x3b; &#x2f;&#x2f; &#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x7684;&#x8d77;&#x70b9;&#x7ad9;&#x662f;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ec8;&#x70b9;&#x7ad9;&#xff0c;&#x8fd9;&#x91cc;&#x53ea;&#x6709;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x8d77;&#x70b9;&#x7ad9;&#xff0c;&#x8fd8;&#x9700;&#x8981;&#x8ba1;&#x7b97;&#xa;var startZdtype_calcu &#x3d; &#x27;B&#x27;&#x3b;&#xa;var endZdtype_calcu &#x3d; &#x27;E&#x27;&#x3b;&#xa;&#xa;var destory &#x3d; 0&#x3b; &#x2f;&#x2f; &#x672a;&#x64a4;&#x9500;flag</jsScript_script>
  2986 + </jsScript> </jsScripts> <fields> <field> <name>qdzname_calcu</name>
  2987 + <rename>qdzname_calcu</rename>
  2988 + <type>String</type>
  2989 + <length>-1</length>
  2990 + <precision>-1</precision>
  2991 + <replace>N</replace>
  2992 + </field> <field> <name>startZdtype_calcu</name>
  2993 + <rename>startZdtype_calcu</rename>
  2994 + <type>String</type>
  2995 + <length>-1</length>
  2996 + <precision>-1</precision>
  2997 + <replace>N</replace>
  2998 + </field> <field> <name>endZdtype_calcu</name>
  2999 + <rename>endZdtype_calcu</rename>
  3000 + <type>String</type>
  3001 + <length>-1</length>
  3002 + <precision>-1</precision>
  3003 + <replace>N</replace>
  3004 + </field> <field> <name>destory</name>
  3005 + <rename>destory</rename>
  3006 + <type>Integer</type>
  3007 + <length>-1</length>
  3008 + <precision>-1</precision>
  3009 + <replace>N</replace>
  3010 + </field> </fields> <cluster_schema/>
  3011 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3012 + <xloc>754</xloc>
  3013 + <yloc>610</yloc>
  3014 + <draw>Y</draw>
  3015 + </GUI>
  3016 + </step>
  3017 +
  3018 + <step>
  3019 + <name>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</name>
  3020 + <type>Dummy</type>
  3021 + <description/>
  3022 + <distribute>Y</distribute>
  3023 + <custom_distribution/>
  3024 + <copies>1</copies>
  3025 + <partitioning>
  3026 + <method>none</method>
  3027 + <schema_name/>
  3028 + </partitioning>
  3029 + <cluster_schema/>
  3030 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3031 + <xloc>997</xloc>
  3032 + <yloc>606</yloc>
  3033 + <draw>Y</draw>
  3034 + </GUI>
  3035 + </step>
  3036 +
  3037 + <step_error_handling>
  3038 + <error>
  3039 + <source_step>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail</source_step>
  3040 + <target_step/>
  3041 + <is_enabled>Y</is_enabled>
  3042 + <nr_valuename>c1</nr_valuename>
  3043 + <descriptions_valuename>c2</descriptions_valuename>
  3044 + <fields_valuename>c3</fields_valuename>
  3045 + <codes_valuename>c4</codes_valuename>
  3046 + <max_errors/>
  3047 + <max_pct_errors/>
  3048 + <min_pct_rows/>
  3049 + </error>
  3050 + </step_error_handling>
  3051 + <slave-step-copy-partition-distribution>
  3052 +</slave-step-copy-partition-distribution>
  3053 + <slave_transformation>N</slave_transformation>
  3054 +
  3055 +</transformation>
... ...
src/main/resources/static/pages/base/timesmodel/add.html
1   -<style>
2   -.form-control:focus {
3   - border-color: #53ced9;
4   -}
5   -.tagsDiv {
6   - border: 1px solid #c2cad8;
7   - margin-left: 15px;
8   - padding: 4px 15px 4px 15px;
9   - width: 50%;
10   -}
  1 +<style>
  2 +.form-control:focus {
  3 + border-color: #53ced9;
  4 +}
  5 +.tagsDiv {
  6 + border: 1px solid #c2cad8;
  7 + margin-left: 15px;
  8 + padding: 4px 15px 4px 15px;
  9 + width: 50%;
  10 +}
11 11 </style>
12 12 <!-- 片段标题 START -->
13 13 <div class="page-head">
... ... @@ -20,6 +20,10 @@
20 20 <ul class="page-breadcrumb breadcrumb">
21 21 <li><a href="/pages/home.html" data-pjax>首页</a> <i class="fa fa-circle"></i></li>
22 22 <li><span class="active">运营计划管理</span> <i class="fa fa-circle"></i></li>
  23 + <li>
  24 + <a href="/#/ttInfoManage">时刻表管理</a>
  25 + <i class="fa fa-circle"></i>
  26 + </li>
23 27 <li><span class="active">时刻表明细制作建模</span></li>
24 28 </ul>
25 29 <!-- 线路信息导航栏组件 END -->
... ... @@ -32,9 +36,9 @@
32 36 </span>
33 37 </div>
34 38  
35   - <div class="actions">
36   - <div class="btn-group btn-group-devided" data-toggle="buttons">
37   - <a class="btn btn-circle blue openHaveSkb" href="javascript:;" data-pjax><i class="fa fa-check"></i> 打开现有时刻表明细</a>
  39 + <div class="actions">
  40 + <div class="btn-group btn-group-devided" data-toggle="buttons">
  41 + <a class="btn btn-circle blue openHaveSkb" href="javascript:;" data-pjax><i class="fa fa-check"></i> 打开现有时刻表明细</a>
38 42 </div>
39 43 <div class="btn-group btn-group-devided" data-toggle="buttons">
40 44 <a class="btn btn-circle default" href="/pages/base/timesmodel/index.html" style="float: right;padding: 4px 23px;" data-pjax=""><i class="fa fa-reply"></i> 退出</a>
... ... @@ -172,7 +176,7 @@
172 176 </form>
173 177 <!-- END FORM-->
174 178 </div>
175   -</div>
  179 +</div>
176 180 <script src="/pages/base/timesmodel/js/add-form-wizard.js"></script>
177   -<script src="/pages/base/timesmodel/js/add-form-reload.js"></script>
  181 +<script src="/pages/base/timesmodel/js/add-form-reload.js"></script>
178 182 <script src="/pages/base/timesmodel/js/tagsinput.js"></script>
179 183 \ No newline at end of file
... ...
src/main/resources/static/pages/base/timesmodel/gantt.html
... ... @@ -13,6 +13,10 @@
13 13 <ul class="page-breadcrumb breadcrumb">
14 14 <li><a href="/pages/home.html" data-pjax>首页</a> <i class="fa fa-circle"></i></li>
15 15 <li><span class="active">运营计划管理</span> <i class="fa fa-circle"></i></li>
  16 + <li>
  17 + <a href="/#/ttInfoManage">时刻表管理</a>
  18 + <i class="fa fa-circle"></i>
  19 + </li>
16 20 <li><span class="active">时刻表明细模型</span></li>
17 21 </ul>
18 22 <!-- 线路信息导航栏组件 END -->
... ...
src/main/resources/static/pages/base/timesmodel/js/base-fun.js
... ... @@ -824,10 +824,12 @@ var BaseFun = function() {
824 824 var tempA = baseF.abstractCar(list , markArray , cara , saa , dataMap , map);
825 825 // return {'json':tempA,'bxrcgs':null};
826 826 // 第七步 确定吃饭时间.
827   - baseF.markeEatTime(list , tempA , cara , saa , dataMap ,map);
  827 + if (map.cfdd) { // NEW,没有选择吃饭地点,不设定吃饭班次
  828 + baseF.markeEatTime(list , tempA , cara , saa , dataMap ,map);
  829 + }
828 830 baseF.resizeByPitStopTime(cara , tempA , dataMap);
829 831 baseF.updfcno01(tempA,0);
830   - // return {'json':tempA,'bxrcgs':null};
  832 + //return {'json':tempA,'bxrcgs':null};
831 833 // 确定进出场、早晚例保时间.并返回班次数组集合
832 834 return {'json':baseF.addInOutFieldBc(cara,tempA,dataMap,saa,map),'bxrcgs':null};
833 835 },
... ... @@ -862,22 +864,25 @@ var BaseFun = function() {
862 864 var canCf = new Array(), countTzsj = 0, isLast = new Array();
863 865 for(var b = 0 ; b<bcArray.length;b++) {
864 866 var bcddsj = baseF.getDateTime(bcArray[b].ARRIVALTIME);
865   - if(bcddsj<=jssj) {
  867 + //if(bcddsj<=jssj) {
  868 + // countTzsj += bcArray[b].STOPTIME;
  869 + // canCf.push(bcArray[b]);
  870 + //}
  871 + if(bcddsj>= kssj && bcddsj<=jssj) { // NEW,使用开始时间,结束时间限定可以吃饭的班次
866 872 countTzsj += bcArray[b].STOPTIME;
867 873 canCf.push(bcArray[b]);
868 874 }
869   - /*if(bcddsj>= kssj && bcddsj<=jssj) {
870   - countTzsj += bcArray[b].STOPTIME;
871   - canCf.push(bcArray[b]);
872   - }
873   - if(bcddsj < kssj)
874   - isLast.push(bcArray[b]);*/
  875 + //if(bcddsj < kssj)
  876 + // isLast.push(bcArray[b]);
875 877 }
876 878 if(canCf.length>0) {
877 879 console.log('countTzsj:' + countTzsj + 'length:' + canCf.length);
878 880 var fxDm = baseF.dirDmToIndex(canCf[canCf.length-1].xlDir);
  881 + if (map.cfdd == "allYes") { // NEW,如果选择的吃饭地点是所有,则使用班次的方向作为吃饭班次的方向
  882 + cfddDm = fxDm;
  883 + }
879 884 // console.log(countTzsj , canCf[canCf.length-1].fcsj);
880   - if(cfddDm == fxDm && canCf.length>2) {
  885 + if(canCf.length>2) {
881 886 var tzdx = canCf[canCf.length-2].STOPTIME - dataMap.zwcArr[cfIndex];
882 887 canCf[canCf.length-2].STOPTIME = tzdx >= 0 ? tzdx : 0;
883 888 var obj = baseF.getbcObj(
... ...
src/main/resources/static/pages/forms/statement/lineTimeAnaly.html
... ... @@ -87,14 +87,15 @@
87 87 <table class="table table-bordered table-hover table-checkable" id="forms">
88 88 <thead>
89 89 <tr class="hidden">
90   - <th >公司</th>
  90 +<!-- <th >公司</th> -->
91 91 <th width="30%">日期分段</th>
92   - <th >时段</th>
  92 + <th>时段</th>
93 93 <th width="20%">线路</th>
94   - <th >路牌</th>
  94 + <th>路牌</th>
95 95 <th width="20%">站点</th>
96   - <th >计划发车班次数</th>
97   - <th>实际完成班次数</th>
  96 + <th>班次数</th>
  97 +<!-- <th>计划发车班次数</th> -->
  98 +<!-- <th>实际完成班次数</th> -->
98 99 </tr>
99 100 </thead>
100 101 <tbody>
... ... @@ -120,10 +121,11 @@
120 121 <tr class="hidden">
121 122 <th rowspan="2">日期</th>
122 123 <th colspan="4">到达时间</th>
  124 + <th rowspan="2">误点分钟</th>
123 125 <th colspan="4">发车时间</th>
124 126 <th rowspan="2">误点分钟</th>
125   - <th colspan="5">运送时间</th>
126   - <th colspan="5">停站时间</th>
  127 + <th colspan="3">运送时间</th>
  128 + <th colspan="3">停站时间</th>
127 129 </tr>
128 130 <tr class="hidden">
129 131 <th>计划</th>
... ... @@ -136,13 +138,13 @@
136 138 <th>平均延误</th>
137 139 <th>计划</th>
138 140 <th>实际</th>
139   - <th>最快</th>
140   - <th>最慢</th>
  141 +<!-- <th>最快</th> -->
  142 +<!-- <th>最慢</th> -->
141 143 <th>平均</th>
142 144 <th>计划</th>
143 145 <th>实际</th>
144   - <th>最大</th>
145   - <th>最小</th>
  146 +<!-- <th>最大</th> -->
  147 +<!-- <th>最小</th> -->
146 148 <th>平均</th>
147 149 </tr>
148 150 </thead>
... ... @@ -406,7 +408,7 @@
406 408 }
407 409 });
408 410 $.each(list, function(i, g){
409   - if(g.line == params[3] && g.lp == params[4] &&g.station == params[5]){
  411 + if(g.line == params[2] && g.lp == params[3] &&g.station == params[4]){
410 412 var tbodyHtml = template('list_workList',{list:g});
411 413 $('#works tbody').html(tbodyHtml);
412 414 $("#works_hidden").removeClass("hidden");
... ... @@ -483,14 +485,12 @@
483 485 <script type="text/html" id="list_lineTimeAnaly">
484 486 {{each list as obj i}}
485 487 <tr>
486   - <td>{{obj.company}}</td>
487 488 <td>{{obj.dates}}</td>
488 489 <td>{{obj.times}}</td>
489 490 <td>{{obj.line}}</td>
490 491 <td>{{obj.lp}}</td>
491 492 <td>{{obj.station}}</td>
492   - <td>{{obj.jhbc}}</td>
493   - <td>{{obj.sjbc}}</td>
  493 + <td>{{obj.bcs}}</td>
494 494 </tr>
495 495 {{/each}}
496 496 {{if list.length == 0}}
... ... @@ -503,30 +503,27 @@
503 503 {{each list.workList as obj i}}
504 504 <tr>
505 505 <td>{{obj.date}}</td>
506   - <td>{{obj.jhdf}}</td>
507   - <td>{{obj.sjdf}}</td>
  506 + <td>{{obj.jhdd}}</td>
  507 + <td>{{obj.sjdd}}</td>
508 508 {{if i == 0}}
509   - <td rowspan="{{list.workList.length}}" class="merge">{{list.wddf1}}</td>
510   - <td rowspan="{{list.workList.length}}" class="merge">{{list.wddf2}}</td>
  509 + <td rowspan="{{list.workList.length}}" class="merge">{{list.ddwd1}}</td>
  510 + <td rowspan="{{list.workList.length}}" class="merge">{{list.ddwd2}}</td>
511 511 {{/if}}
  512 + <td class="merge">{{obj.ddwd}}</td>
512 513 <td>{{obj.jhfc}}</td>
513 514 <td>{{obj.sjfc}}</td>
514 515 {{if i == 0}}
515 516 <td rowspan="{{list.workList.length}}" class="merge">{{list.wdfc1}}</td>
516 517 <td rowspan="{{list.workList.length}}" class="merge">{{list.wdfc2}}</td>
517 518 {{/if}}
518   - <td class="merge">{{obj.wdfz}}</td>
  519 + <td class="merge">{{obj.fcwd}}</td>
519 520 <td>{{obj.jhys}}</td>
520 521 <td>{{obj.sjys}}</td>
521   - <td>{{obj.yssjMin}}</td>
522   - <td>{{obj.yssjMax}}</td>
523 522 {{if i == 0}}
524 523 <td rowspan="{{list.workList.length}}" class="merge">{{list.pjys}}</td>
525 524 {{/if}}
526 525 <td>{{obj.jhtz}}</td>
527 526 <td>{{obj.sjtz}}</td>
528   - <td>{{obj.tzsjMax}}</td>
529   - <td>{{obj.tzsjMin}}</td>
530 527 {{if i == 0}}
531 528 <td rowspan="{{list.workList.length}}" class="merge">{{list.pjtz}}</td>
532 529 {{/if}}
... ...