Commit 703d20dbe2d17186717fdb646eed0943f3c3a869

Authored by 徐烜
2 parents ca7c84ae addbcf56

Update

Showing 32 changed files with 9668 additions and 9363 deletions
src/main/java/com/bsth/controller/report/ReportController.java
... ... @@ -51,6 +51,7 @@ public class ReportController {
51 51 m.put("jzsj", a.getJzsj());
52 52 m.put("czsj", a.getCzsj());
53 53 m.put("upDown", a.getUpDown()==0?"上行":"下行");
  54 + resList.add(m);
54 55 i++;
55 56 }
56 57  
... ... @@ -66,41 +67,61 @@ public class ReportController {
66 67 return resList;
67 68 }
68 69  
  70 +
69 71 @RequestMapping(value="/queryListClzd" ,method = RequestMethod.GET)
70 72 public List<ArrivalInfo> queryListClzd(@RequestParam String zd,@RequestParam String line,
71 73 @RequestParam String zdlx,@RequestParam String fcsj,@RequestParam String ddsj){
72 74 return service.queryListClzd(line,zd,zdlx,fcsj,ddsj);
73 75 }
74 76  
75   - @RequestMapping(value="/exportQueryListClzd" ,method = RequestMethod.GET)
76   - public List<Map<String, Object>> exportQueryListClzd(@RequestParam String zd,@RequestParam String line,
77   - @RequestParam String zdlx,@RequestParam String fcsj,@RequestParam String ddsj){
  77 +
  78 +
  79 +
  80 + @RequestMapping(value="/jobSummaryExport" ,method = RequestMethod.GET)
  81 + public List<Map<String, Object>> jobSummaryExport(@RequestParam Map<String, Object> map){
78 82 List<Iterator<?>> listI = new ArrayList<Iterator<?>>();
  83 + String lineName=map.get("lineName").toString();
  84 + String date=map.get("date").toString();
79 85 ReportUtils ee = new ReportUtils();
80   - List<ArrivalInfo> list=service.queryListClzd(line, zd, zdlx, fcsj, ddsj);
81   - List<Map<String, Object>> resList = new ArrayList<Map<String, Object>>();
82   - int i=1;
83   - for (ArrivalInfo a:list ) {
84   - Map<String, Object> m = new HashMap<String, Object>();
85   - m.put("i", i);
86   - m.put("nbbm", a.getNbbm());
87   - m.put("stopName", a.getStopName());
88   - m.put("jzsj", a.getJzsj());
89   - m.put("czsj", a.getCzsj());
90   - m.put("upDown", a.getUpDown()==0?"上行":"下行");
91   - i++;
  86 + List<Map<String,Object>> fwqlList= service.jobFwqk(map);
  87 + List<Map<String, Object>> lgqlList=service.jobLjqk(map);
  88 + map=service.jobHzxx(map);
  89 + map.put("lineName", lineName);
  90 + map.put("date",date);
  91 + if(fwqlList.size()<=0){
  92 + Map<String, Object> newMap=new HashMap<String,Object>();
  93 + newMap.put("nr", " ");
  94 + newMap.put("lp", " ");
  95 + newMap.put("nbbm", " ");
  96 + newMap.put("jgh", " ");
  97 + newMap.put("dz", " ");
  98 + newMap.put("sj", " ");
  99 + newMap.put("lbbc", " ");
  100 + newMap.put("lblc", " ");
  101 + newMap.put("jyqp", " ");
  102 + fwqlList.add(newMap);
  103 + }
  104 + if(lgqlList.size()<=0){
  105 + Map<String, Object> newMap=new HashMap<String,Object>();
  106 + newMap.put("lp", " ");
  107 + newMap.put("nbbm", " ");
  108 + newMap.put("jgh", " ");
  109 + newMap.put("dz", " ");
  110 + newMap.put("sj", " ");
  111 + newMap.put("ljlc"," ");
  112 + newMap.put("jyqp", " ");
  113 + lgqlList.add(newMap);
92 114 }
93   -
94 115 try {
95   - Map<String, Object> map=new HashMap<String, Object>();
96   - listI.add(resList.iterator());
  116 + listI.add(fwqlList.iterator());
  117 + listI.add(lgqlList.iterator());
97 118 String path = this.getClass().getResource("/").getPath() + "static/pages/forms/";
98   - ee.excelReplace(listI, new Object[] { map }, path + "mould/inoutstation.xls",
99   - path + "export/班次到离站.xls");
  119 + ee.excelReplace(listI, new Object[] { map }, path + "mould/jobSummary.xls",
  120 + path + "export/调度员工作汇总日报.xls");
100 121 } catch (Exception e) {
101 122 e.printStackTrace();
102 123 }
103   - return resList;
  124 + return new ArrayList<Map<String, Object>>();
104 125 }
105 126 @RequestMapping(value = "/sreachZd", method = RequestMethod.GET)
106 127 public List<Map<String, String>> sreachPersonnel(@RequestParam String line,@RequestParam int zdlx,@RequestParam String zd) {
... ...
src/main/java/com/bsth/data/gpsdata/arrival/handlers/InOutStationSignalHandle.java
... ... @@ -253,20 +253,22 @@ public class InOutStationSignalHandle extends SignalHandle{
253 253 //已完成班次数
254 254 int doneSum = dayOfSchedule.doneSum(sch.getClZbh());
255 255 ScheduleRealInfo next = dayOfSchedule.next(sch);
256   - //通知客户端
257   - sendUtils.sendZdsj(sch, next, doneSum);
258 256 //持久化
259 257 dayOfSchedule.save(sch);
260 258  
261   - //准备执行下一个班次
262   - if (next != null) {
  259 + if(next != null){
263 260 next.setQdzArrDatesj(sch.getZdsjActual());
264 261 dayOfSchedule.addExecPlan(next);
265 262 //进站既进场
266 263 inStationAndInPark(sch, next);
  264 + }
  265 + //通知客户端
  266 + sendUtils.sendZdsj(sch, next, doneSum);
  267 +
  268 + //准备执行下一个班次
  269 + if (next != null) {
267 270 //将gps转换为下一个班次走向的站内信号
268 271 transformUpdown(gps, next);
269   -
270 272 //下发调度指令
271 273 directiveService.send60Dispatch(next, doneSum, "到站@系统");
272 274  
... ...
src/main/java/com/bsth/data/schedule/DayOfSchedule.java
... ... @@ -11,7 +11,10 @@ import com.bsth.data.directive.DirectivesPstThread;
11 11 import com.bsth.data.gpsdata.GpsRealData;
12 12 import com.bsth.data.gpsdata.recovery.GpsDataRecovery;
13 13 import com.bsth.data.schedule.late_adjust.ScheduleLateThread;
14   -import com.bsth.data.schedule.thread.*;
  14 +import com.bsth.data.schedule.thread.CalcOilThread;
  15 +import com.bsth.data.schedule.thread.SchedulePstThread;
  16 +import com.bsth.data.schedule.thread.ScheduleRefreshThread;
  17 +import com.bsth.data.schedule.thread.SubmitToTrafficManage;
15 18 import com.bsth.entity.realcontrol.LineConfig;
16 19 import com.bsth.entity.realcontrol.ScheduleRealInfo;
17 20 import com.bsth.entity.schedule.SchedulePlanInfo;
... ... @@ -146,7 +149,7 @@ public class DayOfSchedule implements CommandLineRunner {
146 149 //入库
147 150 // Application.mainServices.scheduleWithFixedDelay(schedulePstThread, 60, 30, TimeUnit.SECONDS);
148 151 //班次误点扫描
149   -// Application.mainServices.scheduleWithFixedDelay(scheduleLateThread, 60, 60, TimeUnit.SECONDS);
  152 +// Application.mainServices.scheduleWithFixedDelay(scheduleLateThread, 60, 30, TimeUnit.SECONDS);
150 153  
151 154 //每天凌晨2点20提交数据到运管处
152 155 long diff = (DateUtils.getTimestamp() + 1000 * 60 * 140) - System.currentTimeMillis();
... ...
src/main/java/com/bsth/data/schedule/late_adjust/LateAdjustHandle.java
1 1  
2 2 package com.bsth.data.schedule.late_adjust;
3 3  
  4 +import com.bsth.data.BasicData;
4 5 import com.bsth.data.LineConfigData;
5 6 import com.bsth.data.gpsdata.GpsEntity;
6 7 import com.bsth.entity.realcontrol.LineConfig;
7 8 import com.bsth.entity.realcontrol.ScheduleRealInfo;
  9 +import com.bsth.util.Arith;
8 10 import com.bsth.websocket.handler.SendUtils;
9 11 import org.slf4j.Logger;
10 12 import org.slf4j.LoggerFactory;
... ... @@ -47,6 +49,9 @@ public class LateAdjustHandle implements ApplicationContextAware{
47 49 */
48 50 public static void putLate(ScheduleRealInfo sch){
49 51 try {
  52 + //进出场班次不需要
  53 + if(sch.getBcType().equals("in") || sch.getBcType().equals("out"))
  54 + return;
50 55 //线路配置
51 56 LineConfig config = lineConfigData.get(sch.getXlBm());
52 57 if(sch.getLateMinute() == 0){
... ... @@ -115,18 +120,22 @@ public class LateAdjustHandle implements ApplicationContextAware{
115 120 if(sch == null)
116 121 return;
117 122  
118   - //进的是班次起点
119   - if(gps.getStopNo().equals(sch.getQdzCode())
  123 + //进的是班次起点(名称一样即可)
  124 + gps.setStationName(BasicData.stationCode2NameMap.get(gps.getLineId() + "_" + gps.getUpDown() + "_" + gps.getStopNo()));
  125 + if(gps.getStationName().equals(sch.getQdzName())
120 126 && sch.getLateMinute() > 0){
121 127 //自动调整待发 到达时间 + 停靠时间
122   - long dt = gps.getTimestamp() + (Long.parseLong(String.valueOf(sch.getLateMinute() * 60 * 1000)));
  128 + long dt = Arith.addLong(gps.getTimestamp(), (sch.getLateMinute() * 60 * 1000));
123 129 sch.setDfsjAll(dt);
124 130 sch.setDfAuto(true);
  131 + //取消应发未到标记
  132 + sch.setLate2(false);
125 133  
126 134 lateSchMap.remove(sch.getClZbh());
127 135 logger.info("【应发未到】车辆到站 " + sch.getClZbh() + " -" + sch.getDfsj() + " -到站时间:" + gps.getTimestamp() + " -停靠时间:" + sch.getLateMinute() + " -自动设置的待发时间:" + dt);
128 136 }
129 137 }catch (Exception e){
  138 + e.printStackTrace();
130 139 logger.error("", e);
131 140 }
132 141 }
... ...
src/main/java/com/bsth/data/schedule/late_adjust/ScheduleLateThread.java
... ... @@ -19,7 +19,7 @@ import java.util.List;
19 19 * @ClassName: ScheduleLateThread
20 20 * @Description: TODO(班次误点扫描线程)
21 21 * @author PanZhao
22   - * @date 2016年8月31日 下午3:09:02
  22 + * @date 2016年8月31日 下午3:09:02
23 23 *
24 24 */
25 25 @Component
... ... @@ -44,11 +44,14 @@ public class ScheduleLateThread extends Thread{
44 44 ScheduleRealInfo sch;
45 45 for(int i = 0; i < size; i ++){
46 46 sch = all.get(i);
47   - if(sch.getDfsjT() > t || sch.isLate())
  47 + if(sch.getDfsjT() > t)
48 48 break;
49 49  
  50 + if(sch.isLate())
  51 + continue;
  52 +
50 53 if(sch.getStatus() == 0
51   - && sch.getFcsjActual() == null){
  54 + && StringUtils.isEmpty(sch.getFcsjActual())){
52 55  
53 56 //检查应发未到 当前班次无起点到达时间
54 57 if(StringUtils.isEmpty(sch.getQdzArrDateSJ())){
... ...
src/main/java/com/bsth/entity/mcy_forms/Waybillday.java
... ... @@ -20,6 +20,8 @@ public class Waybillday {
20 20  
21 21 private String zlc;//里程
22 22  
  23 + private String sh;//损耗
  24 +
23 25 public String getJgh() {
24 26 return jgh;
25 27 }
... ... @@ -110,6 +112,15 @@ public class Waybillday {
110 112 public void setYl(String yl) {
111 113 this.yl = yl;
112 114 }
  115 +
  116 + public String getSh() {
  117 + return sh;
  118 + }
  119 +
  120 + public void setSh(String sh) {
  121 + this.sh = sh;
  122 + }
  123 +
113 124  
114 125  
115 126 }
... ...
src/main/java/com/bsth/repository/realcontrol/ScheduleRealInfoRepository.java
... ... @@ -22,7 +22,7 @@ public interface ScheduleRealInfoRepository extends BaseRepository&lt;ScheduleRealI
22 22 List<ScheduleRealInfo> findByLines(List<String> lines);
23 23  
24 24  
25   - @Query(value="select s from ScheduleRealInfo s where s.xlBm = ?1 and DATE_FORMAT(s.scheduleDate,'%Y-%m-%d') = ?2 and bc_type not in ('in','out') order by (lpName+1),clZbh,realExecDate,fcsj")
  25 + @Query(value="select s from ScheduleRealInfo s where s.xlBm = ?1 and DATE_FORMAT(s.scheduleDate,'%Y-%m-%d') = ?2 and bc_type not in ('in','out') order by (lpName+1),clZbh,realExecDate,dfsj")
26 26 List<ScheduleRealInfo> scheduleDailyQp(String line,String date);
27 27  
28 28 @Query(value="select s from ScheduleRealInfo s where s.xlBm = ?1 and DATE_FORMAT(s.scheduleDate,'%Y-%m-%d') = ?2 GROUP BY s.id,s.jGh,s.clZbh,s.lpName order by (lpName+1)")
... ... @@ -87,11 +87,11 @@ public interface ScheduleRealInfoRepository extends BaseRepository&lt;ScheduleRealI
87 87 List<ScheduleRealInfo> correctForm(String line,String startDate,String endDate,String lpName,String code);
88 88  
89 89 @EntityGraph(value = "scheduleRealInfo_cTasks", type = EntityGraph.EntityGraphType.FETCH)
90   - @Query(value="select DISTINCT s from ScheduleRealInfo s where s.jName = ?1 and s.clZbh = ?2 and s.lpName = ?3 and s.scheduleDate = str_to_date(?4,'%Y-%m-%d') and s.xlBm=?5 order by realExecDate,fcsj")
  90 + @Query(value="select DISTINCT s from ScheduleRealInfo s where s.jName = ?1 and s.clZbh = ?2 and s.lpName = ?3 and s.scheduleDate = str_to_date(?4,'%Y-%m-%d') and s.xlBm=?5 order by realExecDate,dfsj")
91 91 List<ScheduleRealInfo> queryListWaybill(String jName,String clZbh,String lpName,String date,String line);
92 92  
93 93 @EntityGraph(value = "scheduleRealInfo_cTasks", type = EntityGraph.EntityGraphType.FETCH)
94   - @Query(value="select DISTINCT s from ScheduleRealInfo s where s.jGh = ?1 and s.clZbh = ?2 and s.lpName = ?3 and s.scheduleDate = str_to_date(?4,'%Y-%m-%d') and s.xlBm=?5 order by realExecDate,fcsj")
  94 + @Query(value="select DISTINCT s from ScheduleRealInfo s where s.jGh = ?1 and s.clZbh = ?2 and s.lpName = ?3 and s.scheduleDate = str_to_date(?4,'%Y-%m-%d') and s.xlBm=?5 order by realExecDate,dfsj")
95 95 List<ScheduleRealInfo> queryListWaybillXcld(String jGh,String clZbh,String lpName,String date,String line);
96 96  
97 97 // @EntityGraph(value = "scheduleRealInfo_cTasks", type = EntityGraph.EntityGraphType.FETCH)
... ... @@ -104,11 +104,11 @@ public interface ScheduleRealInfoRepository extends BaseRepository&lt;ScheduleRealI
104 104  
105 105  
106 106 @EntityGraph(value = "scheduleRealInfo_cTasks", type = EntityGraph.EntityGraphType.FETCH)
107   - @Query(value="select DISTINCT s from ScheduleRealInfo s where s.clZbh = ?1 and s.scheduleDate = str_to_date(?2,'%Y-%m-%d') and xlBm =?3 order by realExecDate,fcsj")
  107 + @Query(value="select DISTINCT s from ScheduleRealInfo s where s.clZbh = ?1 and s.scheduleDate = str_to_date(?2,'%Y-%m-%d') and xlBm =?3 order by realExecDate,dfsj")
108 108 List<ScheduleRealInfo> queryListWaybill2(String clZbh,String date,String line);
109 109  
110 110 @EntityGraph(value = "scheduleRealInfo_cTasks", type = EntityGraph.EntityGraphType.FETCH)
111   - @Query(value="select DISTINCT s from ScheduleRealInfo s where s.jGh like %?1% and s.clZbh like %?2% and s.scheduleDate = str_to_date(?3,'%Y-%m-%d') and s.gsBm like %?4% and s.fgsBm like %?5% order by realExecDate,fcsj")
  111 + @Query(value="select DISTINCT s from ScheduleRealInfo s where s.jGh like %?1% and s.clZbh like %?2% and s.scheduleDate = str_to_date(?3,'%Y-%m-%d') and s.gsBm like %?4% and s.fgsBm like %?5% order by realExecDate,dfsj")
112 112 List<ScheduleRealInfo> queryListWaybill3(String jName,String clZbh,String date,String gsbm,String fgsbm);
113 113  
114 114 @EntityGraph(value = "scheduleRealInfo_cTasks", type = EntityGraph.EntityGraphType.FETCH)
... ... @@ -133,11 +133,11 @@ public interface ScheduleRealInfoRepository extends BaseRepository&lt;ScheduleRealI
133 133  
134 134 //去掉了 xlBm is not null
135 135 @EntityGraph(value = "scheduleRealInfo_cTasks", type = EntityGraph.EntityGraphType.FETCH)
136   - @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.realExecDate,s.fcsj, (s.lpName+1)")
  136 + @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.realExecDate,s.dfsj, (s.lpName+1)")
137 137 List<ScheduleRealInfo> scheduleByDateAndLine(String line,String date);
138 138  
139 139 @EntityGraph(value = "scheduleRealInfo_cTasks", type = EntityGraph.EntityGraphType.FETCH)
140   - @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.fcsj")
  140 + @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")
141 141 List<ScheduleRealInfo> scheduleByDateAndLineQp(String line,String date);
142 142  
143 143 @EntityGraph(value = "scheduleRealInfo_cTasks", type = EntityGraph.EntityGraphType.FETCH)
... ...
src/main/java/com/bsth/service/forms/impl/ExportServiceImpl.java
... ... @@ -35,12 +35,14 @@ public class ExportServiceImpl implements ExportService{
35 35  
36 36 for(Waybillday w : list){
37 37 Map<String, Object> m = new HashMap<String, Object>();
38   - m.put("carPlate", w.getCarPlate());
  38 + m.put("carPlate", w.getNbbm());
39 39 m.put("jzl1", w.getJzl1());
40 40 m.put("jzl", w.getJzl());
41 41 m.put("yh", w.getYh());
  42 + m.put("sh", w.getSh());
42 43 m.put("jName", w.getjName());
43 44 m.put("zlc", w.getZlc());
  45 + m.put("jy", "");
44 46 resList.add(m);
45 47 }
46 48  
... ... @@ -48,7 +50,7 @@ public class ExportServiceImpl implements ExportService{
48 50 listI.add(resList.iterator());
49 51 String path = this.getClass().getResource("/").getPath()+"static/pages/forms/";
50 52 ee.excelReplace(listI, new Object[] { map }, path+"mould/waybillday.xls",
51   - path+"export/行车路单日报表" + sdfSimple.format(sdfMonth.parse(date)) + ".xls");
  53 + path+"export/行车路单日报表.xls");
52 54 } catch (Exception e) {
53 55 e.printStackTrace();
54 56 }
... ...
src/main/java/com/bsth/service/forms/impl/FormsServiceImpl.java
... ... @@ -64,48 +64,69 @@ public class FormsServiceImpl implements FormsService {
64 64 // 行车路单日报表
65 65 @Override
66 66 public List<Waybillday> waybillday(Map<String, Object> map) {
67   -
68   -
69   -
70   - String sql=" select t.*,z.jzl,z.yh from ("
71   - + " select x.j_gh,x.cl_zbh,x.j_name,x.schedule_date,"
72   - + " x.gs_bm,x.gs_name,x.fgs_bm,x.fgs_name from bsth_c_s_sp_info_real x "
73   - + " where to_days( x.schedule_date)=to_days('"+map.get("date").toString() + "') "
74   - + " and x.gs_bm='"+map.get("gsdmWaybillday").toString()+"' "
75   - + " and x.fgs_bm='"+map.get("fgsdmWaybillday").toString()+"' "
76   - + " and xl_bm like '%"+ map.get("line").toString().trim()+"%'"
77   - + " GROUP BY x.j_gh,x.cl_zbh,x.j_name,"
78   - + " x.schedule_date,x.gs_bm,x.gs_name,x.fgs_bm,x.fgs_name ) t"
79   - + " LEFT join (select y.rq,y.xlbm,y.nbbm,y.jsy,y.jzl,y.yh from"
80   - + " bsth_c_ylb y where 1=1 "
81   - + " and to_days(y.RQ)=to_days('"+map.get("date").toString() + "') "
82   - + " and y.XLBM like '%"+ map.get("line").toString().trim()+"%'"
83   - + " and y.ssgsdm='"+map.get("gsdmWaybillday").toString()+"'"
84   - + " and y.fgsdm='"+map.get("gsdmWaybillday").toString()+"') z "
85   - + " on t.cl_zbh=z.nbbm ";
  67 + String line=map.get("line").toString();
  68 + String date=map.get("date").toString();
  69 +
  70 + String sql="select "
  71 + + " r.cl_zbh,r.j_gh,r.j_name"
  72 + + " from bsth_c_s_sp_info_real r where "
  73 + + " r.schedule_date_str = '"+date+"'"
  74 + + " and r.xl_bm = '"+line+"' "
  75 + + " group by "
  76 + + " r.cl_zbh,r.j_gh,r.j_name";
86 77  
87 78 List<Waybillday> list = jdbcTemplate.query(sql, new RowMapper<Waybillday>() {
  79 +
88 80 @Override
89 81 public Waybillday mapRow(ResultSet arg0, int arg1) throws SQLException {
90   - Waybillday wbd = new Waybillday();
91   - wbd.setCarPlate(arg0.getString("cl_zbh"));
92   - wbd.setJzl(arg0.getString("jzl"));
93   - wbd.setYh(arg0.getString("yh"));
94   - wbd.setjName(arg0.getString("j_name"));
95   - wbd.setRq(arg0.getString("schedule_date"));
96   - wbd.setJgh(arg0.getString("j_gh"));
97   - return wbd;
98   - }
  82 + Waybillday w=new Waybillday();
  83 + w.setJgh(arg0.getString("j_gh"));
  84 + w.setjName(arg0.getString("j_name"));
  85 + w.setNbbm(arg0.getString("cl_zbh"));
  86 + return w;
  87 +
  88 + };
99 89 });
100   -
101   - for(int i=0;i<list.size();i++){
  90 + List<ScheduleRealInfo> realList= scheduleRealInfoRepository.scheduleByDateAndLineTjrb(line, date);
  91 + List<Ylb> listYlb= ylbRepository.obtainYl(date, "", "", line, "", "xlbm");
  92 + double jzl=0.0,sh=0.0,yh=0.0;
  93 + for (int i = 0; i < list.size(); i++) {
102 94 Waybillday w=list.get(i);
103   - Map<String, Object> maps = new HashMap<>();
104   - maps = commonService.findKMBC2(w.getJgh(), w.getCarPlate(),
105   - w.getRq());
106   - w.setJzl1(maps.get("ksgl").toString());
107   - w.setZlc(maps.get("realMileage").toString());
108   -
  95 + List<ScheduleRealInfo> listInfo=new ArrayList<ScheduleRealInfo>();
  96 + for (int j = 0; j < realList.size(); j++) {
  97 + ScheduleRealInfo s=realList.get(j);
  98 + if(w.getNbbm().equals(s.getClZbh()) && w.getJgh().equals(w.getJgh())){
  99 + listInfo.add(s);
  100 + }
  101 + }
  102 +
  103 + double sjgl=culateMileageService.culateSjgl(listInfo);
  104 + double ljgl=culateMileageService.culateLjgl(listInfo);
  105 + double zyygl=Arith.add(sjgl, ljgl);
  106 + double jccg=culateMileageService.culateJccgl(listInfo);
  107 + double ksgl=culateMileageService.culateKsgl(listInfo);
  108 + double zksgl=Arith.add(jccg, ksgl);
  109 +
  110 + w.setJzl1(String.valueOf(zksgl));
  111 + w.setZlc(String.valueOf(Arith.add(zyygl, zksgl)));
  112 +
  113 +
  114 + jzl=0.0;
  115 + sh=0.0;
  116 + yh=0.0;
  117 + for (int j = 0; j < listYlb.size(); j++) {
  118 + Ylb y=listYlb.get(j);
  119 + if(w.getNbbm().equals(y.getNbbm()) && w.getJgh().equals(y.getJsy())){
  120 + jzl=Arith.add(jzl, y.getJzl());
  121 + sh=Arith.add(sh, y.getSh());
  122 + yh=Arith.add(yh, y.getYh());
  123 + }
  124 + }
  125 +
  126 + w.setJzl(String.valueOf(jzl));
  127 + w.setYh(String.valueOf(yh));
  128 + w.setSh(String.valueOf(sh));
  129 +
109 130 }
110 131 return list;
111 132 }
... ...
src/main/java/com/bsth/service/realcontrol/impl/ScheduleRealInfoServiceImpl.java
... ... @@ -1050,6 +1050,7 @@ public class ScheduleRealInfoServiceImpl extends BaseServiceImpl&lt;ScheduleRealInf
1050 1050 ScheduleRealInfo next = dayOfSchedule.next(sch);
1051 1051 if (null != next) {
1052 1052 next.setQdzArrDateSJ(zdsjActual);
  1053 + next.setLate2(false);
1053 1054 ts.add(next);
1054 1055 }
1055 1056  
... ... @@ -1667,35 +1668,42 @@ public class ScheduleRealInfoServiceImpl extends BaseServiceImpl&lt;ScheduleRealInf
1667 1668 public List<Map<String, Object>> statisticsDaily(String line, String date,
1668 1669 String xlName, String type) {
1669 1670 List<Map<String, Object>> lMap= new ArrayList<Map<String, Object>>();
1670   - List<ScheduleRealInfo> lists = scheduleRealInfoRepository.scheduleByDateAndLine2(line, date);
  1671 + List<ScheduleRealInfo>list_s=scheduleRealInfoRepository.scheduleByDateAndLine2(line, date);
  1672 + List<ScheduleRealInfo> lists =new ArrayList<ScheduleRealInfo>();
  1673 + for (int i = 0; i < list_s.size(); i++) {
  1674 + ScheduleRealInfo s=list_s.get(i);
  1675 + if(s.getZdsjActual()!=null){
  1676 + lists.add(s);
  1677 + }
  1678 + }
1671 1679 Map<String, Object> map = new HashMap<String, Object>();
1672 1680 map.put("xlName", xlName);
1673   - double jhlc=culateService.culateJhgl(lists);
  1681 + double jhlc=culateService.culateJhgl(list_s);
1674 1682 map.put("jhlc",jhlc);
1675 1683 map.put("sjgl", Arith.add(culateService.culateSjgl(lists),culateService.culateLjgl(lists)));
1676   - double lbgl=culateService.culateLbgl(lists);
  1684 + double lbgl=culateService.culateLbgl(list_s);
1677 1685 map.put("ssgl", lbgl);
1678   - map.put("ssgl_lz", culateService.culateCJLC(lists, "路阻"));
1679   - map.put("ssgl_dm", culateService.culateCJLC(lists, "吊慢"));
1680   - map.put("ssgl_gz", culateService.culateCJLC(lists, "故障"));
1681   - map.put("ssgl_jf", culateService.culateCJLC(lists, "纠纷"));
1682   - map.put("ssgl_zs", culateService.culateCJLC(lists, "肇事"));
1683   - map.put("ssgl_qr", culateService.culateCJLC(lists, "缺人"));
1684   - map.put("ssgl_qc", culateService.culateCJLC(lists, "缺车"));
1685   - map.put("ssgl_kx", culateService.culateCJLC(lists, "客稀"));
1686   - map.put("ssgl_qh", culateService.culateCJLC(lists, "气候"));
1687   - map.put("ssgl_yw", culateService.culateCJLC(lists, "援外"));
1688   - double ssgl_pc=culateService.culateCJLC(lists, "配车");
1689   - double ssgl_by=culateService.culateCJLC(lists, "保养");
1690   - double ssgl_cj=culateService.culateCJLC(lists, "抽减");
1691   - double ssgl_qt=culateService.culateCJLC(lists, "其他");
  1686 + map.put("ssgl_lz", culateService.culateCJLC(list_s, "路阻"));
  1687 + map.put("ssgl_dm", culateService.culateCJLC(list_s, "吊慢"));
  1688 + map.put("ssgl_gz", culateService.culateCJLC(list_s, "故障"));
  1689 + map.put("ssgl_jf", culateService.culateCJLC(list_s, "纠纷"));
  1690 + map.put("ssgl_zs", culateService.culateCJLC(list_s, "肇事"));
  1691 + map.put("ssgl_qr", culateService.culateCJLC(list_s, "缺人"));
  1692 + map.put("ssgl_qc", culateService.culateCJLC(list_s, "缺车"));
  1693 + map.put("ssgl_kx", culateService.culateCJLC(list_s, "客稀"));
  1694 + map.put("ssgl_qh", culateService.culateCJLC(list_s, "气候"));
  1695 + map.put("ssgl_yw", culateService.culateCJLC(list_s, "援外"));
  1696 + double ssgl_pc=culateService.culateCJLC(list_s, "配车");
  1697 + double ssgl_by=culateService.culateCJLC(list_s, "保养");
  1698 + double ssgl_cj=culateService.culateCJLC(list_s, "抽减");
  1699 + double ssgl_qt=culateService.culateCJLC(list_s, "其他");
1692 1700 map.put("ssgl_other", Arith.add(Arith.add(ssgl_pc, ssgl_by),Arith.add(ssgl_cj, ssgl_qt)));
1693   - map.put("ssbc", culateService.culateLbbc(lists));
  1701 + map.put("ssbc", culateService.culateLbbc(list_s));
1694 1702 double ljgl=culateService.culateLjgl(lists);
1695 1703 map.put("ljgl", ljgl);
1696   - map.put("jhbc", culateService.culateJhbc(lists,""));
1697   - map.put("jhbc_m", culateService.culateJhbc(lists, "zgf"));
1698   - map.put("jhbc_a", culateService.culateJhbc(lists, "wgf"));
  1704 + map.put("jhbc", culateService.culateJhbc(list_s,""));
  1705 + map.put("jhbc_m", culateService.culateJhbc(list_s, "zgf"));
  1706 + map.put("jhbc_a", culateService.culateJhbc(list_s, "wgf"));
1699 1707 map.put("sjbc", culateService.culateSjbc(lists,""));
1700 1708 map.put("sjbc_m", culateService.culateSjbc(lists,"zgf"));
1701 1709 map.put("sjbc_a", culateService.culateSjbc(lists,"wgf"));
... ... @@ -2263,11 +2271,18 @@ public class ScheduleRealInfoServiceImpl extends BaseServiceImpl&lt;ScheduleRealInf
2263 2271 return lMap;
2264 2272 }*/
2265 2273  
2266   - public final Map<String, Object> staticTj(List<ScheduleRealInfo> lists){
  2274 + public final Map<String, Object> staticTj(List<ScheduleRealInfo> list){
  2275 + List<ScheduleRealInfo> lists=new ArrayList<ScheduleRealInfo>();
  2276 + for(int i=0;i<list.size();i++){
  2277 + ScheduleRealInfo s=list.get(i);
  2278 + if(s.getZdsjActual()!=null){
  2279 + lists.add(s);
  2280 + }
  2281 + }
2267 2282 Map<String, Object> map = new HashMap<String, Object>();
2268 2283 map.put("xlName", lists.get(0).getXlName());
2269   - double jhyygl=culateService.culateJhgl(lists);//计划营运公里
2270   - double jhjcclc= culateService.culateJhJccgl(lists);//计划进出场公里(计划空驶公里)
  2284 + double jhyygl=culateService.culateJhgl(list);//计划营运公里
  2285 + double jhjcclc= culateService.culateJhJccgl(list);//计划进出场公里(计划空驶公里)
2271 2286 map.put("jhlc", jhyygl);
2272 2287 map.put("jcclc", jhjcclc);
2273 2288 map.put("jhzlc", Arith.add(jhyygl, jhjcclc));
... ... @@ -2283,23 +2298,23 @@ public class ScheduleRealInfoServiceImpl extends BaseServiceImpl&lt;ScheduleRealInf
2283 2298 map.put("sjgl",zyygl);
2284 2299 map.put("sjksgl", zksgl);
2285 2300  
2286   - map.put("ssgl", culateService.culateLbgl(lists));
2287   - map.put("ssgl_lz", culateService.culateCJLC(lists, "路阻"));
2288   - map.put("ssgl_dm", culateService.culateCJLC(lists, "吊慢"));
2289   - map.put("ssgl_gz", culateService.culateCJLC(lists, "故障"));
2290   - map.put("ssgl_jf", culateService.culateCJLC(lists, "纠纷"));
2291   - map.put("ssgl_zs", culateService.culateCJLC(lists, "肇事"));
2292   - map.put("ssgl_qr", culateService.culateCJLC(lists, "缺人"));
2293   - map.put("ssgl_qc", culateService.culateCJLC(lists, "缺车"));
2294   - map.put("ssgl_kx", culateService.culateCJLC(lists, "客稀"));
2295   - map.put("ssgl_qh", culateService.culateCJLC(lists, "气候"));
2296   - map.put("ssgl_yw", culateService.culateCJLC(lists, "援外"));
2297   - map.put("ssgl_other", culateService.culateCJLC(lists, "其他"));
2298   - map.put("ssbc", culateService.culateLbbc(lists));
  2301 + map.put("ssgl", culateService.culateLbgl(list));
  2302 + map.put("ssgl_lz", culateService.culateCJLC(list, "路阻"));
  2303 + map.put("ssgl_dm", culateService.culateCJLC(list, "吊慢"));
  2304 + map.put("ssgl_gz", culateService.culateCJLC(list, "故障"));
  2305 + map.put("ssgl_jf", culateService.culateCJLC(list, "纠纷"));
  2306 + map.put("ssgl_zs", culateService.culateCJLC(list, "肇事"));
  2307 + map.put("ssgl_qr", culateService.culateCJLC(list, "缺人"));
  2308 + map.put("ssgl_qc", culateService.culateCJLC(list, "缺车"));
  2309 + map.put("ssgl_kx", culateService.culateCJLC(list, "客稀"));
  2310 + map.put("ssgl_qh", culateService.culateCJLC(list, "气候"));
  2311 + map.put("ssgl_yw", culateService.culateCJLC(list, "援外"));
  2312 + map.put("ssgl_other", culateService.culateCJLC(list, "其他"));
  2313 + map.put("ssbc", culateService.culateLbbc(list));
2299 2314 map.put("ljgl", ljgl);
2300   - map.put("jhbc", culateService.culateJhbc(lists,""));
2301   - map.put("jhbc_m", culateService.culateJhbc(lists, "zgf"));
2302   - map.put("jhbc_a", culateService.culateJhbc(lists, "wgf"));
  2315 + map.put("jhbc", culateService.culateJhbc(list,""));
  2316 + map.put("jhbc_m", culateService.culateJhbc(list, "zgf"));
  2317 + map.put("jhbc_a", culateService.culateJhbc(list, "wgf"));
2303 2318 map.put("sjbc", culateService.culateSjbc(lists,""));
2304 2319 map.put("sjbc_m", culateService.culateSjbc(lists,"zgf"));
2305 2320 map.put("sjbc_a", culateService.culateSjbc(lists,"wgf"));
... ... @@ -2323,6 +2338,7 @@ public class ScheduleRealInfoServiceImpl extends BaseServiceImpl&lt;ScheduleRealInf
2323 2338 public List<Map<String, Object>> statisticsDailyTj(String gsdm,String fgsdm,String line, String date,String date2,
2324 2339 String xlName, String type) {
2325 2340 List<ScheduleRealInfo> list = new ArrayList<ScheduleRealInfo>();
  2341 + List<ScheduleRealInfo> list_s = new ArrayList<ScheduleRealInfo>();
2326 2342 List<ScheduleRealInfo> lists = new ArrayList<ScheduleRealInfo>();
2327 2343 line =line.trim();
2328 2344 if(line.equals("")){
... ... @@ -2332,6 +2348,12 @@ public class ScheduleRealInfoServiceImpl extends BaseServiceImpl&lt;ScheduleRealInf
2332 2348 //查询单条线路
2333 2349 list = scheduleRealInfoRepository.scheduleByDateAndLineTj2(line, date,date2);
2334 2350 }
  2351 + for (int i = 0; i < list.size(); i++) {
  2352 + ScheduleRealInfo s=list.get(i);
  2353 + if(s.getZdsjActual()!=null){
  2354 + list_s.add(s);
  2355 + }
  2356 + }
2335 2357 List<Map<String, Object>> lMap = new ArrayList<Map<String, Object>>();
2336 2358 for (int i = 0; i < list.size(); i++) {
2337 2359 if(i<list.size()-1){
... ... @@ -2365,12 +2387,12 @@ public class ScheduleRealInfoServiceImpl extends BaseServiceImpl&lt;ScheduleRealInf
2365 2387 map.put("jcclc", jhjcclc);
2366 2388 map.put("jhzlc", Arith.add(jhyygl, jhjcclc));
2367 2389  
2368   - double ljgl= culateService.culateLjgl(list);
2369   - double sjyygl= culateService.culateSjgl(list);
  2390 + double ljgl= culateService.culateLjgl(list_s);
  2391 + double sjyygl= culateService.culateSjgl(list_s);
2370 2392 double zyygl= Arith.add(sjyygl,ljgl);
2371 2393  
2372   - double sjjccgl=culateService.culateJccgl(list);
2373   - double sjksgl=culateService.culateKsgl(list);
  2394 + double sjjccgl=culateService.culateJccgl(list_s);
  2395 + double sjksgl=culateService.culateKsgl(list_s);
2374 2396 double zksgl=Arith.add(sjjccgl, sjksgl);
2375 2397 map.put("sjzgl", Arith.add(zyygl, zksgl));
2376 2398 map.put("sjgl",zyygl);
... ... @@ -2392,15 +2414,15 @@ public class ScheduleRealInfoServiceImpl extends BaseServiceImpl&lt;ScheduleRealInf
2392 2414 map.put("jhbc", culateService.culateJhbc(list,""));
2393 2415 map.put("jhbc_m", culateService.culateJhbc(list, "zgf"));
2394 2416 map.put("jhbc_a", culateService.culateJhbc(list, "wgf"));
2395   - map.put("sjbc", culateService.culateSjbc(list,""));
2396   - map.put("sjbc_m", culateService.culateSjbc(list,"zgf"));
2397   - map.put("sjbc_a", culateService.culateSjbc(list,"wgf"));
2398   - map.put("ljbc", culateService.culateLjbc(list,""));
2399   - map.put("ljbc_m", culateService.culateLjbc(list,"zgf"));
2400   - map.put("ljbc_a", culateService.culateLjbc(list,"wgf"));
2401   - map.put("fzbc", culateService.culateFzbc(list, ""));
2402   - map.put("fzbc_m", culateService.culateFzbc(list, "zgf"));
2403   - map.put("fzbc_a", culateService.culateFzbc(list, "wgf"));
  2417 + map.put("sjbc", culateService.culateSjbc(list_s,""));
  2418 + map.put("sjbc_m", culateService.culateSjbc(list_s,"zgf"));
  2419 + map.put("sjbc_a", culateService.culateSjbc(list_s,"wgf"));
  2420 + map.put("ljbc", culateService.culateLjbc(list_s,""));
  2421 + map.put("ljbc_m", culateService.culateLjbc(list_s,"zgf"));
  2422 + map.put("ljbc_a", culateService.culateLjbc(list_s,"wgf"));
  2423 + map.put("fzbc", culateService.culateFzbc(list_s, ""));
  2424 + map.put("fzbc_m", culateService.culateFzbc(list_s, "zgf"));
  2425 + map.put("fzbc_a", culateService.culateFzbc(list_s, "wgf"));
2404 2426 map.put("dtbc", 0);
2405 2427 map.put("dtbc_m", 0);
2406 2428 map.put("dtbc_a", 0);
... ...
src/main/java/com/bsth/service/report/impl/ReportServiceImpl.java
... ... @@ -1181,6 +1181,7 @@ public class ReportServiceImpl implements ReportService{
1181 1181 newMap.put("dz", scheduleRealInfo.getQdzName());
1182 1182 newMap.put("sj", scheduleRealInfo.getFcsj());
1183 1183 newMap.put("lbbc", 1);
  1184 + newMap.put("gzf", " ");
1184 1185 newMap.put("lblc", scheduleRealInfo.getJhlcOrig());
1185 1186 newMap.put("jyqp", scheduleRealInfo.getRemarks());
1186 1187 list.add(newMap);
... ... @@ -1206,6 +1207,7 @@ public class ReportServiceImpl implements ReportService{
1206 1207 newMap.put("jgh", scheduleRealInfo.getjGh());
1207 1208 newMap.put("dz", childTaskPlan.getStartStationName());
1208 1209 newMap.put("sj", childTaskPlan.getStartDate());
  1210 + newMap.put("gzf", " ");
1209 1211 newMap.put("lbbc", 0);
1210 1212 newMap.put("lblc", childTaskPlan.getMileage());
1211 1213 newMap.put("jyqp", childTaskPlan.getRemarks());
... ... @@ -1237,8 +1239,12 @@ public class ReportServiceImpl implements ReportService{
1237 1239 newMap.put("lp", "小计");
1238 1240 newMap.put("nbbm", "少驶班次");
1239 1241 newMap.put("jgh", lbbc);
1240   - newMap.put("sj", "少驶公里");
  1242 + newMap.put("lbbc", "少驶公里");
1241 1243 newMap.put("lblc", lblc);
  1244 + newMap.put("dz", " ");
  1245 + newMap.put("sj", " ");
  1246 + newMap.put("gzf", " ");
  1247 + newMap.put("jyqp"," ");
1242 1248 listNew.add(newMap);
1243 1249 }
1244 1250  
... ... @@ -1271,7 +1277,7 @@ public class ReportServiceImpl implements ReportService{
1271 1277 newMap.put("dz", scheduleRealInfo.getQdzName());
1272 1278 newMap.put("sj", scheduleRealInfo.getFcsj());
1273 1279 newMap.put("ljlc", scheduleRealInfo.getJhlc()==null?0:scheduleRealInfo.getJhlc());
1274   - newMap.put("jyqp", scheduleRealInfo.getRealMileage());
  1280 + newMap.put("jyqp", scheduleRealInfo.getRealMileage()==null?"":scheduleRealInfo.getRealMileage());
1275 1281 list.add(newMap);
1276 1282 }
1277 1283 // }else{
... ...
src/main/java/com/bsth/service/schedule/rules/ScheduleRuleService.java
... ... @@ -43,3 +43,4 @@ public interface ScheduleRuleService {
43 43 */
44 44 void deelteSchedulePlanInfo(Integer xlid, Date datefrom, Date dateto);
45 45 }
  46 +
... ...
src/main/java/com/bsth/service/schedule/rules/ScheduleRuleServiceImpl.java
... ... @@ -125,3 +125,4 @@ public class ScheduleRuleServiceImpl implements ScheduleRuleService {
125 125  
126 126 }
127 127 }
  128 +
... ...
src/main/java/com/bsth/util/Arith.java
... ... @@ -24,8 +24,20 @@ public class Arith {
24 24 BigDecimal b1 = new BigDecimal(v1.toString());
25 25 BigDecimal b2 = new BigDecimal(v2.toString());
26 26 return b1.add(b2).doubleValue();
27   - }
28   -
  27 + }
  28 +
  29 + /**
  30 + * 提供精确的加法运算。
  31 + * @param v1 被加数
  32 + * @param v2 加数
  33 + * @return 两个参数的和
  34 + */
  35 + public static long addLong(Object v1,Object v2){
  36 + BigDecimal b1 = new BigDecimal(v1.toString());
  37 + BigDecimal b2 = new BigDecimal(v2.toString());
  38 + return b1.add(b2).longValue();
  39 + }
  40 +
29 41 /**
30 42 * 提供精确的减法运算。
31 43 * @param v1 被减数
... ...
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;&#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;&#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;if &#x28;sxx &#x3d;&#x3d; 0&#x29; &#x7b; &#x2f;&#x2f; &#x4e0a;&#x884c;&#xa; jhlc &#x3d; up_mileage&#x3b;&#xa; bcsj &#x3d; up_travel_time&#x3b;&#xa;&#x7d; else &#x7b; &#x2f;&#x2f; sxx &#x3d;&#x3d; 1 &#x4e0b;&#x884c;&#xa; jhlc &#x3d; down_mileage&#x3b;&#xa; bcsj &#x3d; down_travel_time&#x3b;&#xa;&#x7d;</jsScript_script>
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;&#x4e2d;&#x7684;&#x6570;&#x5b57;&#xa;qdzname &#x3d; qdzname.replace&#x28;&#x2f;&#x5c;d&#x2b;&#x2f;g,&#x27;&#x27;&#x29;&#x3b;&#xa;&#xa;&#x2f;&#x2f; sendtime&#x5904;&#x7406;&#xff0c;hhmm&#xff0c;hh&#x3a;mm&#xff0c;hh,mm&#xa;var sendtime_calcu&#x3b;&#xa;if &#x28;sendtime.length &#x3d;&#x3d; 5&#x29; &#x7b; &#x2f;&#x2f; &#x6700;&#x957f;&#x683c;&#x5f0f;&#xff0c;&#x5305;&#x62ec;&#x5206;&#x9694;&#x7b26;&#xff0c;&#x7edf;&#x4e00;&#x628a;&#x5206;&#x9694;&#x7b26;&#x66ff;&#x6362;&#x6210;&#x5192;&#x53f7;&#xa; sendtime_calcu &#x3d; sendtime.substr&#x28;0, 2&#x29; &#x2b; &#x22;&#x3a;&#x22; &#x2b; sendtime.substr&#x28;3, 2&#x29;&#x3b;&#xa;&#x7d; else if &#x28;sendtime.length &#x3d;&#x3d; 4&#x29; &#x7b;&#xa; if &#x28;sendtime.indexOf&#x28;&#x22;&#x3a;&#x22;&#x29; &#x3e; 0&#x29; &#x7b; &#x2f;&#x2f; &#x5192;&#x53f7;&#x5206;&#x9694;&#xff0c;&#x65e0;&#x9700;&#x4fee;&#x6539;&#xa; sendtime_calcu &#x3d; sendtime&#x3b;&#xa; &#x7d; else if &#x28;sendtime.indexOf&#x28;&#x22;,&#x22;&#x29; &#x3e; 0&#x29; &#x7b; &#x2f;&#x2f; &#x9017;&#x53f7;&#x5206;&#x9694;&#xff0c;&#x6539;&#x6210;&#x5192;&#x53f7;&#x5206;&#x9694;&#xa; sendtime_calcu &#x3d; sendtime.substr&#x28;0, 1&#x29; &#x2b; &#x22;&#x3a;&#x22; &#x2b; sendtime.substr&#x28;2, 2&#x29;&#x3b;&#xa; &#x7d; else &#x7b; &#x2f;&#x2f; &#x65e0;&#x5206;&#x9694;&#x7b26;&#xff0c;&#x6539;&#x6210;&#x5192;&#x53f7;&#x5206;&#x9694;&#xa; sendtime_calcu &#x3d; sendtime.substr&#x28;0, 2&#x29; &#x2b; &#x22;&#x3a;&#x22; &#x2b; sendtime.substr&#x28;2, 2&#x29;&#x3b;&#xa; &#x7d;&#xa;&#x7d; else if &#x28;sendtime.length &#x3d;&#x3d; 3&#x29; &#x7b; &#x2f;&#x2f; &#x65e0;&#x5206;&#x9694;&#x7b26;&#xff0c;&#x6539;&#x6210;&#x5192;&#x53f7;&#x5206;&#x9694;&#xa; sendtime_calcu &#x3d; sendtime.substr&#x28;0, 1&#x29; &#x2b; &#x22;&#x3a;&#x22; &#x2b; sendtime.substr&#x28;1, 2&#x29;&#x3b;&#xa;&#x7d;&#xa;&#xa;&#x2f;&#x2f; &#x8bbe;&#x7f6e;&#x5206;&#x73ed;&#xa;var isfb &#x3d; 0&#x3b;&#xa;&#xa;&#x2f;&#x2f; &#x8bbe;&#x7f6e;isCanceled&#xa;var iscanceled &#x3d; 0&#x3b;</jsScript_script>
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> </fields> <cluster_schema/>
857   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
858   - <xloc>788</xloc>
859   - <yloc>44</yloc>
860   - <draw>Y</draw>
861   - </GUI>
862   - </step>
863   -
864   - <step>
865   - <name>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</name>
866   - <type>SelectValues</type>
867   - <description/>
868   - <distribute>Y</distribute>
869   - <custom_distribution/>
870   - <copies>1</copies>
871   - <partitioning>
872   - <method>none</method>
873   - <schema_name/>
874   - </partitioning>
875   - <fields> <field> <name>&#x8def;&#x724c;</name>
876   - <rename>lp</rename>
877   - <length>-2</length>
878   - <precision>-2</precision>
879   - </field> <field> <name>&#x7ad9;&#x70b9;&#x540d;&#x79f0;</name>
880   - <rename>qdzname</rename>
881   - <length>-2</length>
882   - <precision>-2</precision>
883   - </field> <field> <name>&#x53d1;&#x8f66;&#x65f6;&#x95f4;</name>
884   - <rename>sendtime</rename>
885   - <length>-2</length>
886   - <precision>-2</precision>
887   - </field> <select_unspecified>Y</select_unspecified>
888   - </fields> <cluster_schema/>
889   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
890   - <xloc>444</xloc>
891   - <yloc>131</yloc>
892   - <draw>Y</draw>
893   - </GUI>
894   - </step>
895   -
896   - <step>
897   - <name>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;1</name>
898   - <type>FilterRows</type>
899   - <description/>
900   - <distribute>Y</distribute>
901   - <custom_distribution/>
902   - <copies>1</copies>
903   - <partitioning>
904   - <method>none</method>
905   - <schema_name/>
906   - </partitioning>
907   -<send_true_to>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</send_true_to>
908   -<send_false_to>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</send_false_to>
909   - <compare>
910   -<condition>
911   - <negated>N</negated>
912   - <leftvalue>bctype</leftvalue>
913   - <function>&#x3d;</function>
914   - <rightvalue/>
915   - <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>
916   - </compare>
917   - <cluster_schema/>
918   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
919   - <xloc>860</xloc>
920   - <yloc>401</yloc>
921   - <draw>Y</draw>
922   - </GUI>
923   - </step>
924   -
925   - <step>
926   - <name>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</name>
927   - <type>FilterRows</type>
928   - <description/>
929   - <distribute>Y</distribute>
930   - <custom_distribution/>
931   - <copies>1</copies>
932   - <partitioning>
933   - <method>none</method>
934   - <schema_name/>
935   - </partitioning>
936   -<send_true_to>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</send_true_to>
937   -<send_false_to>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</send_false_to>
938   - <compare>
939   -<condition>
940   - <negated>N</negated>
941   - <leftvalue>bctype</leftvalue>
942   - <function>&#x3d;</function>
943   - <rightvalue/>
944   - <value><name>constant</name><type>String</type><text>&#x51fa;&#x573a;</text><length>-1</length><precision>-1</precision><isnull>N</isnull><mask/></value> </condition>
945   - </compare>
946   - <cluster_schema/>
947   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
948   - <xloc>995</xloc>
949   - <yloc>503</yloc>
950   - <draw>Y</draw>
951   - </GUI>
952   - </step>
953   -
954   - <step>
955   - <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail</name>
956   - <type>InsertUpdate</type>
957   - <description/>
958   - <distribute>Y</distribute>
959   - <custom_distribution/>
960   - <copies>1</copies>
961   - <partitioning>
962   - <method>none</method>
963   - <schema_name/>
964   - </partitioning>
965   - <connection>bus_control_variable</connection>
966   - <commit>100</commit>
967   - <update_bypassed>N</update_bypassed>
968   - <lookup>
969   - <schema/>
970   - <table>bsth_c_s_ttinfo_detail</table>
971   - <key>
972   - <name>xlid</name>
973   - <field>xl</field>
974   - <condition>&#x3d;</condition>
975   - <name2/>
976   - </key>
977   - <key>
978   - <name>ttid</name>
979   - <field>ttinfo</field>
980   - <condition>&#x3d;</condition>
981   - <name2/>
982   - </key>
983   - <key>
984   - <name>lpid</name>
985   - <field>lp</field>
986   - <condition>&#x3d;</condition>
987   - <name2/>
988   - </key>
989   - <key>
990   - <name>fcno</name>
991   - <field>fcno</field>
992   - <condition>&#x3d;</condition>
993   - <name2/>
994   - </key>
995   - <key>
996   - <name>bcs</name>
997   - <field>bcs</field>
998   - <condition>&#x3d;</condition>
999   - <name2/>
1000   - </key>
1001   - <value>
1002   - <name>lp</name>
1003   - <rename>lpid</rename>
1004   - <update>Y</update>
1005   - </value>
1006   - <value>
1007   - <name>bc_type</name>
1008   - <rename>bctype_code</rename>
1009   - <update>Y</update>
1010   - </value>
1011   - <value>
1012   - <name>bcs</name>
1013   - <rename>bcs</rename>
1014   - <update>Y</update>
1015   - </value>
1016   - <value>
1017   - <name>bcsj</name>
1018   - <rename>bcsj</rename>
1019   - <update>Y</update>
1020   - </value>
1021   - <value>
1022   - <name>fcno</name>
1023   - <rename>fcno</rename>
1024   - <update>Y</update>
1025   - </value>
1026   - <value>
1027   - <name>jhlc</name>
1028   - <rename>jhlc</rename>
1029   - <update>Y</update>
1030   - </value>
1031   - <value>
1032   - <name>fcsj</name>
1033   - <rename>sendtime_calcu</rename>
1034   - <update>Y</update>
1035   - </value>
1036   - <value>
1037   - <name>ttinfo</name>
1038   - <rename>ttid</rename>
1039   - <update>Y</update>
1040   - </value>
1041   - <value>
1042   - <name>xl</name>
1043   - <rename>xlid</rename>
1044   - <update>Y</update>
1045   - </value>
1046   - <value>
1047   - <name>qdz</name>
1048   - <rename>qdzid</rename>
1049   - <update>Y</update>
1050   - </value>
1051   - <value>
1052   - <name>zdz</name>
1053   - <rename>zdzid</rename>
1054   - <update>Y</update>
1055   - </value>
1056   - <value>
1057   - <name>xl_dir</name>
1058   - <rename>sxx</rename>
1059   - <update>Y</update>
1060   - </value>
1061   - <value>
1062   - <name>isfb</name>
1063   - <rename>isfb</rename>
1064   - <update>Y</update>
1065   - </value>
1066   - <value>
1067   - <name>qdz_code</name>
1068   - <rename>qdzcode</rename>
1069   - <update>Y</update>
1070   - </value>
1071   - <value>
1072   - <name>qdz_name</name>
1073   - <rename>qdzname</rename>
1074   - <update>Y</update>
1075   - </value>
1076   - <value>
1077   - <name>zdz_code</name>
1078   - <rename>zdzcode</rename>
1079   - <update>Y</update>
1080   - </value>
1081   - <value>
1082   - <name>zdz_name</name>
1083   - <rename>zdzname</rename>
1084   - <update>Y</update>
1085   - </value>
1086   - </lookup>
1087   - <cluster_schema/>
1088   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
1089   - <xloc>143</xloc>
1090   - <yloc>860</yloc>
1091   - <draw>Y</draw>
1092   - </GUI>
1093   - </step>
1094   -
1095   - <step>
1096   - <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail 2</name>
1097   - <type>InsertUpdate</type>
1098   - <description/>
1099   - <distribute>Y</distribute>
1100   - <custom_distribution/>
1101   - <copies>1</copies>
1102   - <partitioning>
1103   - <method>none</method>
1104   - <schema_name/>
1105   - </partitioning>
1106   - <connection>bus_control_variable</connection>
1107   - <commit>100</commit>
1108   - <update_bypassed>N</update_bypassed>
1109   - <lookup>
1110   - <schema/>
1111   - <table>bsth_c_s_ttinfo_detail</table>
1112   - <key>
1113   - <name>xlid</name>
1114   - <field>xl</field>
1115   - <condition>&#x3d;</condition>
1116   - <name2/>
1117   - </key>
1118   - <key>
1119   - <name>ttid</name>
1120   - <field>ttinfo</field>
1121   - <condition>&#x3d;</condition>
1122   - <name2/>
1123   - </key>
1124   - <key>
1125   - <name>lpid</name>
1126   - <field>lp</field>
1127   - <condition>&#x3d;</condition>
1128   - <name2/>
1129   - </key>
1130   - <key>
1131   - <name>fcno</name>
1132   - <field>fcno</field>
1133   - <condition>&#x3d;</condition>
1134   - <name2/>
1135   - </key>
1136   - <key>
1137   - <name>bcs</name>
1138   - <field>bcs</field>
1139   - <condition>&#x3d;</condition>
1140   - <name2/>
1141   - </key>
1142   - <value>
1143   - <name>tcc</name>
1144   - <rename>qdzid</rename>
1145   - <update>Y</update>
1146   - </value>
1147   - <value>
1148   - <name>zdz</name>
1149   - <rename>zdzid</rename>
1150   - <update>Y</update>
1151   - </value>
1152   - <value>
1153   - <name>xl</name>
1154   - <rename>xlid</rename>
1155   - <update>Y</update>
1156   - </value>
1157   - <value>
1158   - <name>ttinfo</name>
1159   - <rename>ttid</rename>
1160   - <update>Y</update>
1161   - </value>
1162   - <value>
1163   - <name>xl_dir</name>
1164   - <rename>sxx</rename>
1165   - <update>Y</update>
1166   - </value>
1167   - <value>
1168   - <name>lp</name>
1169   - <rename>lpid</rename>
1170   - <update>Y</update>
1171   - </value>
1172   - <value>
1173   - <name>jhlc</name>
1174   - <rename>out_mileage</rename>
1175   - <update>Y</update>
1176   - </value>
1177   - <value>
1178   - <name>fcsj</name>
1179   - <rename>sendtime_calcu</rename>
1180   - <update>Y</update>
1181   - </value>
1182   - <value>
1183   - <name>bcsj</name>
1184   - <rename>out_time</rename>
1185   - <update>Y</update>
1186   - </value>
1187   - <value>
1188   - <name>bcs</name>
1189   - <rename>bcs</rename>
1190   - <update>Y</update>
1191   - </value>
1192   - <value>
1193   - <name>fcno</name>
1194   - <rename>fcno</rename>
1195   - <update>Y</update>
1196   - </value>
1197   - <value>
1198   - <name>bc_type</name>
1199   - <rename>bctype_code</rename>
1200   - <update>Y</update>
1201   - </value>
1202   - <value>
1203   - <name>isfb</name>
1204   - <rename>isfb</rename>
1205   - <update>Y</update>
1206   - </value>
1207   - <value>
1208   - <name>qdz_code</name>
1209   - <rename>qdzcode</rename>
1210   - <update>Y</update>
1211   - </value>
1212   - <value>
1213   - <name>qdz_name</name>
1214   - <rename>tn</rename>
1215   - <update>Y</update>
1216   - </value>
1217   - <value>
1218   - <name>zdz_code</name>
1219   - <rename>zdzcode</rename>
1220   - <update>Y</update>
1221   - </value>
1222   - <value>
1223   - <name>zdz_name</name>
1224   - <rename>zdzname</rename>
1225   - <update>Y</update>
1226   - </value>
1227   - </lookup>
1228   - <cluster_schema/>
1229   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
1230   - <xloc>340</xloc>
1231   - <yloc>1087</yloc>
1232   - <draw>Y</draw>
1233   - </GUI>
1234   - </step>
1235   -
1236   - <step>
1237   - <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail 3</name>
1238   - <type>InsertUpdate</type>
1239   - <description/>
1240   - <distribute>Y</distribute>
1241   - <custom_distribution/>
1242   - <copies>1</copies>
1243   - <partitioning>
1244   - <method>none</method>
1245   - <schema_name/>
1246   - </partitioning>
1247   - <connection>bus_control_variable</connection>
1248   - <commit>100</commit>
1249   - <update_bypassed>N</update_bypassed>
1250   - <lookup>
1251   - <schema/>
1252   - <table>bsth_c_s_ttinfo_detail</table>
1253   - <key>
1254   - <name>xlid</name>
1255   - <field>xl</field>
1256   - <condition>&#x3d;</condition>
1257   - <name2/>
1258   - </key>
1259   - <key>
1260   - <name>ttid</name>
1261   - <field>ttinfo</field>
1262   - <condition>&#x3d;</condition>
1263   - <name2/>
1264   - </key>
1265   - <key>
1266   - <name>lpid</name>
1267   - <field>lp</field>
1268   - <condition>&#x3d;</condition>
1269   - <name2/>
1270   - </key>
1271   - <key>
1272   - <name>fcno</name>
1273   - <field>fcno</field>
1274   - <condition>&#x3d;</condition>
1275   - <name2/>
1276   - </key>
1277   - <key>
1278   - <name>bcs</name>
1279   - <field>bcs</field>
1280   - <condition>&#x3d;</condition>
1281   - <name2/>
1282   - </key>
1283   - <value>
1284   - <name>fcno</name>
1285   - <rename>fcno</rename>
1286   - <update>Y</update>
1287   - </value>
1288   - <value>
1289   - <name>bcs</name>
1290   - <rename>bcs</rename>
1291   - <update>Y</update>
1292   - </value>
1293   - <value>
1294   - <name>xl</name>
1295   - <rename>xlid</rename>
1296   - <update>Y</update>
1297   - </value>
1298   - <value>
1299   - <name>ttinfo</name>
1300   - <rename>ttid</rename>
1301   - <update>Y</update>
1302   - </value>
1303   - <value>
1304   - <name>lp</name>
1305   - <rename>lpid</rename>
1306   - <update>Y</update>
1307   - </value>
1308   - <value>
1309   - <name>bc_type</name>
1310   - <rename>bctype_code</rename>
1311   - <update>Y</update>
1312   - </value>
1313   - <value>
1314   - <name>bcsj</name>
1315   - <rename>parade_time</rename>
1316   - <update>Y</update>
1317   - </value>
1318   - <value>
1319   - <name>jhlc</name>
1320   - <rename>parade_mileage</rename>
1321   - <update>Y</update>
1322   - </value>
1323   - <value>
1324   - <name>fcsj</name>
1325   - <rename>sendtime_calcu</rename>
1326   - <update>Y</update>
1327   - </value>
1328   - <value>
1329   - <name>xl_dir</name>
1330   - <rename>sxx2</rename>
1331   - <update>Y</update>
1332   - </value>
1333   - <value>
1334   - <name>qdz</name>
1335   - <rename>qdzid</rename>
1336   - <update>Y</update>
1337   - </value>
1338   - <value>
1339   - <name>tcc</name>
1340   - <rename>zdzid</rename>
1341   - <update>Y</update>
1342   - </value>
1343   - <value>
1344   - <name>isfb</name>
1345   - <rename>isfb</rename>
1346   - <update>Y</update>
1347   - </value>
1348   - <value>
1349   - <name>qdz_code</name>
1350   - <rename>qdzcode</rename>
1351   - <update>Y</update>
1352   - </value>
1353   - <value>
1354   - <name>qdz_name</name>
1355   - <rename>qname</rename>
1356   - <update>Y</update>
1357   - </value>
1358   - <value>
1359   - <name>zdz_code</name>
1360   - <rename>zdzcode</rename>
1361   - <update>Y</update>
1362   - </value>
1363   - <value>
1364   - <name>zdz_name</name>
1365   - <rename>tn</rename>
1366   - <update>Y</update>
1367   - </value>
1368   - </lookup>
1369   - <cluster_schema/>
1370   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
1371   - <xloc>845</xloc>
1372   - <yloc>899</yloc>
1373   - <draw>Y</draw>
1374   - </GUI>
1375   - </step>
1376   -
1377   - <step>
1378   - <name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</name>
1379   - <type>ExcelInput</type>
1380   - <description/>
1381   - <distribute>N</distribute>
1382   - <custom_distribution/>
1383   - <copies>1</copies>
1384   - <partitioning>
1385   - <method>none</method>
1386   - <schema_name/>
1387   - </partitioning>
1388   - <header>Y</header>
1389   - <noempty>Y</noempty>
1390   - <stoponempty>N</stoponempty>
1391   - <filefield/>
1392   - <sheetfield/>
1393   - <sheetrownumfield/>
1394   - <rownumfield/>
1395   - <sheetfield/>
1396   - <filefield/>
1397   - <limit>0</limit>
1398   - <encoding/>
1399   - <add_to_result_filenames>Y</add_to_result_filenames>
1400   - <accept_filenames>N</accept_filenames>
1401   - <accept_field/>
1402   - <accept_stepname/>
1403   - <file>
1404   - <name/>
1405   - <filemask/>
1406   - <exclude_filemask/>
1407   - <file_required>N</file_required>
1408   - <include_subfolders>N</include_subfolders>
1409   - </file>
1410   - <fields>
1411   - </fields>
1412   - <sheets>
1413   - <sheet>
1414   - <name/>
1415   - <startrow>0</startrow>
1416   - <startcol>0</startcol>
1417   - </sheet>
1418   - </sheets>
1419   - <strict_types>N</strict_types>
1420   - <error_ignored>N</error_ignored>
1421   - <error_line_skipped>N</error_line_skipped>
1422   - <bad_line_files_destination_directory/>
1423   - <bad_line_files_extension>warning</bad_line_files_extension>
1424   - <error_line_files_destination_directory/>
1425   - <error_line_files_extension>error</error_line_files_extension>
1426   - <line_number_files_destination_directory/>
1427   - <line_number_files_extension>line</line_number_files_extension>
1428   - <shortFileFieldName/>
1429   - <pathFieldName/>
1430   - <hiddenFieldName/>
1431   - <lastModificationTimeFieldName/>
1432   - <uriNameFieldName/>
1433   - <rootUriNameFieldName/>
1434   - <extensionFieldName/>
1435   - <sizeFieldName/>
1436   - <spreadsheet_type>JXL</spreadsheet_type>
1437   - <cluster_schema/>
1438   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
1439   - <xloc>112</xloc>
1440   - <yloc>44</yloc>
1441   - <draw>Y</draw>
1442   - </GUI>
1443   - </step>
1444   -
1445   - <step>
1446   - <name>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;1</name>
1447   - <type>DBLookup</type>
1448   - <description/>
1449   - <distribute>Y</distribute>
1450   - <custom_distribution/>
1451   - <copies>1</copies>
1452   - <partitioning>
1453   - <method>none</method>
1454   - <schema_name/>
1455   - </partitioning>
1456   - <connection>bus_control_variable</connection>
1457   - <cache>N</cache>
1458   - <cache_load_all>N</cache_load_all>
1459   - <cache_size>0</cache_size>
1460   - <lookup>
1461   - <schema/>
1462   - <table>bsth_c_car_park</table>
1463   - <orderby/>
1464   - <fail_on_multiple>N</fail_on_multiple>
1465   - <eat_row_on_failure>N</eat_row_on_failure>
1466   - <key>
1467   - <name>tccname_</name>
1468   - <field>park_name</field>
1469   - <condition>&#x3d;</condition>
1470   - <name2/>
1471   - </key>
1472   - <value>
1473   - <name>id</name>
1474   - <rename>qdzid</rename>
1475   - <default/>
1476   - <type>Integer</type>
1477   - </value>
1478   - <value>
1479   - <name>park_code</name>
1480   - <rename>qdzcode</rename>
1481   - <default/>
1482   - <type>String</type>
1483   - </value>
1484   - <value>
1485   - <name>park_name</name>
1486   - <rename>tn</rename>
1487   - <default/>
1488   - <type>String</type>
1489   - </value>
1490   - </lookup>
1491   - <cluster_schema/>
1492   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
1493   - <xloc>755</xloc>
1494   - <yloc>504</yloc>
1495   - <draw>Y</draw>
1496   - </GUI>
1497   - </step>
1498   -
1499   - <step>
1500   - <name>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;2</name>
1501   - <type>DBLookup</type>
1502   - <description/>
1503   - <distribute>Y</distribute>
1504   - <custom_distribution/>
1505   - <copies>1</copies>
1506   - <partitioning>
1507   - <method>none</method>
1508   - <schema_name/>
1509   - </partitioning>
1510   - <connection>bus_control_variable</connection>
1511   - <cache>N</cache>
1512   - <cache_load_all>N</cache_load_all>
1513   - <cache_size>0</cache_size>
1514   - <lookup>
1515   - <schema/>
1516   - <table>bsth_c_car_park</table>
1517   - <orderby/>
1518   - <fail_on_multiple>N</fail_on_multiple>
1519   - <eat_row_on_failure>N</eat_row_on_failure>
1520   - <key>
1521   - <name>tccname_</name>
1522   - <field>park_name</field>
1523   - <condition>&#x3d;</condition>
1524   - <name2/>
1525   - </key>
1526   - <value>
1527   - <name>id</name>
1528   - <rename>zdzid</rename>
1529   - <default/>
1530   - <type>Integer</type>
1531   - </value>
1532   - <value>
1533   - <name>park_code</name>
1534   - <rename>zdzcode</rename>
1535   - <default/>
1536   - <type>String</type>
1537   - </value>
1538   - <value>
1539   - <name>park_name</name>
1540   - <rename>tn</rename>
1541   - <default/>
1542   - <type>String</type>
1543   - </value>
1544   - </lookup>
1545   - <cluster_schema/>
1546   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
1547   - <xloc>887</xloc>
1548   - <yloc>608</yloc>
1549   - <draw>Y</draw>
1550   - </GUI>
1551   - </step>
1552   -
1553   - <step>
1554   - <name>&#x67e5;&#x627e;&#x51fa;&#x573a;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</name>
1555   - <type>DBLookup</type>
1556   - <description/>
1557   - <distribute>Y</distribute>
1558   - <custom_distribution/>
1559   - <copies>1</copies>
1560   - <partitioning>
1561   - <method>none</method>
1562   - <schema_name/>
1563   - </partitioning>
1564   - <connection>bus_control_variable</connection>
1565   - <cache>N</cache>
1566   - <cache_load_all>N</cache_load_all>
1567   - <cache_size>0</cache_size>
1568   - <lookup>
1569   - <schema/>
1570   - <table>bsth_c_stationroute</table>
1571   - <orderby/>
1572   - <fail_on_multiple>N</fail_on_multiple>
1573   - <eat_row_on_failure>N</eat_row_on_failure>
1574   - <key>
1575   - <name>xlid</name>
1576   - <field>line</field>
1577   - <condition>&#x3d;</condition>
1578   - <name2/>
1579   - </key>
1580   - <key>
1581   - <name>zdzname</name>
1582   - <field>station_name</field>
1583   - <condition>&#x3d;</condition>
1584   - <name2/>
1585   - </key>
1586   - <key>
1587   - <name>endZdtype</name>
1588   - <field>station_mark</field>
1589   - <condition>&#x3d;</condition>
1590   - <name2/>
1591   - </key>
1592   - <key>
1593   - <name>destory</name>
1594   - <field>destroy</field>
1595   - <condition>&#x3d;</condition>
1596   - <name2/>
1597   - </key>
1598   - <value>
1599   - <name>station</name>
1600   - <rename>zdzid</rename>
1601   - <default/>
1602   - <type>Integer</type>
1603   - </value>
1604   - <value>
1605   - <name>directions</name>
1606   - <rename>sxx</rename>
1607   - <default/>
1608   - <type>Integer</type>
1609   - </value>
1610   - <value>
1611   - <name>station_code</name>
1612   - <rename>zdzcode</rename>
1613   - <default/>
1614   - <type>String</type>
1615   - </value>
1616   - </lookup>
1617   - <cluster_schema/>
1618   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
1619   - <xloc>329</xloc>
1620   - <yloc>505</yloc>
1621   - <draw>Y</draw>
1622   - </GUI>
1623   - </step>
1624   -
1625   - <step>
1626   - <name>&#x67e5;&#x627e;&#x65f6;&#x523b;&#x8868;&#x57fa;&#x7840;&#x4fe1;&#x606f;&#x5173;&#x8054;</name>
1627   - <type>DBLookup</type>
1628   - <description/>
1629   - <distribute>Y</distribute>
1630   - <custom_distribution/>
1631   - <copies>1</copies>
1632   - <partitioning>
1633   - <method>none</method>
1634   - <schema_name/>
1635   - </partitioning>
1636   - <connection>bus_control_variable</connection>
1637   - <cache>N</cache>
1638   - <cache_load_all>N</cache_load_all>
1639   - <cache_size>0</cache_size>
1640   - <lookup>
1641   - <schema/>
1642   - <table>bsth_c_s_ttinfo</table>
1643   - <orderby/>
1644   - <fail_on_multiple>N</fail_on_multiple>
1645   - <eat_row_on_failure>N</eat_row_on_failure>
1646   - <key>
1647   - <name>xlid</name>
1648   - <field>xl</field>
1649   - <condition>&#x3d;</condition>
1650   - <name2/>
1651   - </key>
1652   - <key>
1653   - <name>ttinfoname_</name>
1654   - <field>name</field>
1655   - <condition>&#x3d;</condition>
1656   - <name2/>
1657   - </key>
1658   - <key>
1659   - <name>iscanceled</name>
1660   - <field>is_cancel</field>
1661   - <condition>&#x3d;</condition>
1662   - <name2/>
1663   - </key>
1664   - <value>
1665   - <name>id</name>
1666   - <rename>ttid</rename>
1667   - <default/>
1668   - <type>Integer</type>
1669   - </value>
1670   - </lookup>
1671   - <cluster_schema/>
1672   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
1673   - <xloc>1011</xloc>
1674   - <yloc>134</yloc>
1675   - <draw>Y</draw>
1676   - </GUI>
1677   - </step>
1678   -
1679   - <step>
1680   - <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x4e0a;&#x4e0b;&#x884c;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
1681   - <type>DBLookup</type>
1682   - <description/>
1683   - <distribute>Y</distribute>
1684   - <custom_distribution/>
1685   - <copies>1</copies>
1686   - <partitioning>
1687   - <method>none</method>
1688   - <schema_name/>
1689   - </partitioning>
1690   - <connection>bus_control_variable</connection>
1691   - <cache>N</cache>
1692   - <cache_load_all>N</cache_load_all>
1693   - <cache_size>0</cache_size>
1694   - <lookup>
1695   - <schema/>
1696   - <table>bsth_c_line_information</table>
1697   - <orderby/>
1698   - <fail_on_multiple>N</fail_on_multiple>
1699   - <eat_row_on_failure>N</eat_row_on_failure>
1700   - <key>
1701   - <name>xlid</name>
1702   - <field>line</field>
1703   - <condition>&#x3d;</condition>
1704   - <name2/>
1705   - </key>
1706   - <value>
1707   - <name>up_mileage</name>
1708   - <rename>up_mileage</rename>
1709   - <default/>
1710   - <type>Number</type>
1711   - </value>
1712   - <value>
1713   - <name>down_mileage</name>
1714   - <rename>down_mileage</rename>
1715   - <default/>
1716   - <type>Number</type>
1717   - </value>
1718   - <value>
1719   - <name>up_travel_time</name>
1720   - <rename>up_travel_time</rename>
1721   - <default/>
1722   - <type>Number</type>
1723   - </value>
1724   - <value>
1725   - <name>down_travel_time</name>
1726   - <rename>down_travel_time</rename>
1727   - <default/>
1728   - <type>Number</type>
1729   - </value>
1730   - </lookup>
1731   - <cluster_schema/>
1732   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
1733   - <xloc>149</xloc>
1734   - <yloc>581</yloc>
1735   - <draw>Y</draw>
1736   - </GUI>
1737   - </step>
1738   -
1739   - <step>
1740   - <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x5173;&#x8054;</name>
1741   - <type>DBLookup</type>
1742   - <description/>
1743   - <distribute>Y</distribute>
1744   - <custom_distribution/>
1745   - <copies>1</copies>
1746   - <partitioning>
1747   - <method>none</method>
1748   - <schema_name/>
1749   - </partitioning>
1750   - <connection>bus_control_variable</connection>
1751   - <cache>N</cache>
1752   - <cache_load_all>N</cache_load_all>
1753   - <cache_size>0</cache_size>
1754   - <lookup>
1755   - <schema/>
1756   - <table>bsth_c_line</table>
1757   - <orderby/>
1758   - <fail_on_multiple>N</fail_on_multiple>
1759   - <eat_row_on_failure>N</eat_row_on_failure>
1760   - <key>
1761   - <name>xlname_</name>
1762   - <field>name</field>
1763   - <condition>&#x3d;</condition>
1764   - <name2/>
1765   - </key>
1766   - <value>
1767   - <name>id</name>
1768   - <rename>xlid</rename>
1769   - <default/>
1770   - <type>Integer</type>
1771   - </value>
1772   - </lookup>
1773   - <cluster_schema/>
1774   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
1775   - <xloc>1007</xloc>
1776   - <yloc>43</yloc>
1777   - <draw>Y</draw>
1778   - </GUI>
1779   - </step>
1780   -
1781   - <step>
1782   - <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x51fa;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
1783   - <type>DBLookup</type>
1784   - <description/>
1785   - <distribute>Y</distribute>
1786   - <custom_distribution/>
1787   - <copies>1</copies>
1788   - <partitioning>
1789   - <method>none</method>
1790   - <schema_name/>
1791   - </partitioning>
1792   - <connection>bus_control_variable</connection>
1793   - <cache>N</cache>
1794   - <cache_load_all>N</cache_load_all>
1795   - <cache_size>0</cache_size>
1796   - <lookup>
1797   - <schema/>
1798   - <table>bsth_c_line_information</table>
1799   - <orderby/>
1800   - <fail_on_multiple>N</fail_on_multiple>
1801   - <eat_row_on_failure>N</eat_row_on_failure>
1802   - <key>
1803   - <name>xlid</name>
1804   - <field>line</field>
1805   - <condition>&#x3d;</condition>
1806   - <name2/>
1807   - </key>
1808   - <value>
1809   - <name>up_out_timer</name>
1810   - <rename>up_out_timer</rename>
1811   - <default/>
1812   - <type>Number</type>
1813   - </value>
1814   - <value>
1815   - <name>up_out_mileage</name>
1816   - <rename>up_out_mileage</rename>
1817   - <default/>
1818   - <type>Number</type>
1819   - </value>
1820   - <value>
1821   - <name>down_out_timer</name>
1822   - <rename>down_out_timer</rename>
1823   - <default/>
1824   - <type>Number</type>
1825   - </value>
1826   - <value>
1827   - <name>down_out_mileage</name>
1828   - <rename>down_out_mileage</rename>
1829   - <default/>
1830   - <type>Number</type>
1831   - </value>
1832   - </lookup>
1833   - <cluster_schema/>
1834   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
1835   - <xloc>335</xloc>
1836   - <yloc>763</yloc>
1837   - <draw>Y</draw>
1838   - </GUI>
1839   - </step>
1840   -
1841   - <step>
1842   - <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x8fdb;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
1843   - <type>DBLookup</type>
1844   - <description/>
1845   - <distribute>Y</distribute>
1846   - <custom_distribution/>
1847   - <copies>1</copies>
1848   - <partitioning>
1849   - <method>none</method>
1850   - <schema_name/>
1851   - </partitioning>
1852   - <connection>bus_control_variable</connection>
1853   - <cache>N</cache>
1854   - <cache_load_all>N</cache_load_all>
1855   - <cache_size>0</cache_size>
1856   - <lookup>
1857   - <schema/>
1858   - <table>bsth_c_line_information</table>
1859   - <orderby/>
1860   - <fail_on_multiple>N</fail_on_multiple>
1861   - <eat_row_on_failure>N</eat_row_on_failure>
1862   - <key>
1863   - <name>xlid</name>
1864   - <field>line</field>
1865   - <condition>&#x3d;</condition>
1866   - <name2/>
1867   - </key>
1868   - <value>
1869   - <name>up_in_mileage</name>
1870   - <rename>up_in_mileage</rename>
1871   - <default/>
1872   - <type>Number</type>
1873   - </value>
1874   - <value>
1875   - <name>up_in_timer</name>
1876   - <rename>up_in_timer</rename>
1877   - <default/>
1878   - <type>Number</type>
1879   - </value>
1880   - <value>
1881   - <name>down_in_mileage</name>
1882   - <rename>down_in_mileage</rename>
1883   - <default/>
1884   - <type>Number</type>
1885   - </value>
1886   - <value>
1887   - <name>down_in_timer</name>
1888   - <rename>down_in_timer</rename>
1889   - <default/>
1890   - <type>Number</type>
1891   - </value>
1892   - </lookup>
1893   - <cluster_schema/>
1894   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
1895   - <xloc>553</xloc>
1896   - <yloc>1004</yloc>
1897   - <draw>Y</draw>
1898   - </GUI>
1899   - </step>
1900   -
1901   - <step>
1902   - <name>&#x67e5;&#x627e;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;</name>
1903   - <type>DBLookup</type>
1904   - <description/>
1905   - <distribute>Y</distribute>
1906   - <custom_distribution/>
1907   - <copies>1</copies>
1908   - <partitioning>
1909   - <method>none</method>
1910   - <schema_name/>
1911   - </partitioning>
1912   - <connection>bus_control_variable</connection>
1913   - <cache>N</cache>
1914   - <cache_load_all>N</cache_load_all>
1915   - <cache_size>0</cache_size>
1916   - <lookup>
1917   - <schema/>
1918   - <table>bsth_c_stationroute</table>
1919   - <orderby/>
1920   - <fail_on_multiple>N</fail_on_multiple>
1921   - <eat_row_on_failure>N</eat_row_on_failure>
1922   - <key>
1923   - <name>xlid</name>
1924   - <field>line</field>
1925   - <condition>&#x3d;</condition>
1926   - <name2/>
1927   - </key>
1928   - <key>
1929   - <name>sxx</name>
1930   - <field>directions</field>
1931   - <condition>&#x3d;</condition>
1932   - <name2/>
1933   - </key>
1934   - <key>
1935   - <name>endZdtype</name>
1936   - <field>station_mark</field>
1937   - <condition>&#x3d;</condition>
1938   - <name2/>
1939   - </key>
1940   - <key>
1941   - <name>destory</name>
1942   - <field>destroy</field>
1943   - <condition>&#x3d;</condition>
1944   - <name2/>
1945   - </key>
1946   - <value>
1947   - <name>station_name</name>
1948   - <rename>zdzname</rename>
1949   - <default/>
1950   - <type>String</type>
1951   - </value>
1952   - <value>
1953   - <name>station</name>
1954   - <rename>zdzid</rename>
1955   - <default/>
1956   - <type>Integer</type>
1957   - </value>
1958   - <value>
1959   - <name>station_code</name>
1960   - <rename>zdzcode</rename>
1961   - <default/>
1962   - <type>String</type>
1963   - </value>
1964   - </lookup>
1965   - <cluster_schema/>
1966   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
1967   - <xloc>280</xloc>
1968   - <yloc>404</yloc>
1969   - <draw>Y</draw>
1970   - </GUI>
1971   - </step>
1972   -
1973   - <step>
1974   - <name>&#x67e5;&#x627e;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</name>
1975   - <type>DBLookup</type>
1976   - <description/>
1977   - <distribute>Y</distribute>
1978   - <custom_distribution/>
1979   - <copies>1</copies>
1980   - <partitioning>
1981   - <method>none</method>
1982   - <schema_name/>
1983   - </partitioning>
1984   - <connection>bus_control_variable</connection>
1985   - <cache>N</cache>
1986   - <cache_load_all>N</cache_load_all>
1987   - <cache_size>0</cache_size>
1988   - <lookup>
1989   - <schema/>
1990   - <table>bsth_c_stationroute</table>
1991   - <orderby/>
1992   - <fail_on_multiple>N</fail_on_multiple>
1993   - <eat_row_on_failure>N</eat_row_on_failure>
1994   - <key>
1995   - <name>xlid</name>
1996   - <field>line</field>
1997   - <condition>&#x3d;</condition>
1998   - <name2/>
1999   - </key>
2000   - <key>
2001   - <name>qdzname</name>
2002   - <field>station_name</field>
2003   - <condition>&#x3d;</condition>
2004   - <name2/>
2005   - </key>
2006   - <key>
2007   - <name>sendZdtype</name>
2008   - <field>station_mark</field>
2009   - <condition>&#x3d;</condition>
2010   - <name2/>
2011   - </key>
2012   - <key>
2013   - <name>destory</name>
2014   - <field>destroy</field>
2015   - <condition>&#x3d;</condition>
2016   - <name2/>
2017   - </key>
2018   - <value>
2019   - <name>station</name>
2020   - <rename>qdzid</rename>
2021   - <default/>
2022   - <type>Integer</type>
2023   - </value>
2024   - <value>
2025   - <name>directions</name>
2026   - <rename>sxx</rename>
2027   - <default/>
2028   - <type>Integer</type>
2029   - </value>
2030   - <value>
2031   - <name>station_code</name>
2032   - <rename>qdzcode</rename>
2033   - <default/>
2034   - <type>String</type>
2035   - </value>
2036   - </lookup>
2037   - <cluster_schema/>
2038   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2039   - <xloc>430</xloc>
2040   - <yloc>403</yloc>
2041   - <draw>Y</draw>
2042   - </GUI>
2043   - </step>
2044   -
2045   - <step>
2046   - <name>&#x67e5;&#x627e;&#x8def;&#x724c;&#x5173;&#x8054;</name>
2047   - <type>DBLookup</type>
2048   - <description/>
2049   - <distribute>Y</distribute>
2050   - <custom_distribution/>
2051   - <copies>1</copies>
2052   - <partitioning>
2053   - <method>none</method>
2054   - <schema_name/>
2055   - </partitioning>
2056   - <connection>bus_control_variable</connection>
2057   - <cache>N</cache>
2058   - <cache_load_all>N</cache_load_all>
2059   - <cache_size>0</cache_size>
2060   - <lookup>
2061   - <schema/>
2062   - <table>bsth_c_s_gbi</table>
2063   - <orderby/>
2064   - <fail_on_multiple>N</fail_on_multiple>
2065   - <eat_row_on_failure>N</eat_row_on_failure>
2066   - <key>
2067   - <name>xlid</name>
2068   - <field>xl</field>
2069   - <condition>&#x3d;</condition>
2070   - <name2/>
2071   - </key>
2072   - <key>
2073   - <name>lp</name>
2074   - <field>lp_name</field>
2075   - <condition>&#x3d;</condition>
2076   - <name2/>
2077   - </key>
2078   - <key>
2079   - <name>iscanceled</name>
2080   - <field>is_cancel</field>
2081   - <condition>&#x3d;</condition>
2082   - <name2/>
2083   - </key>
2084   - <value>
2085   - <name>id</name>
2086   - <rename>lpid</rename>
2087   - <default/>
2088   - <type>Integer</type>
2089   - </value>
2090   - </lookup>
2091   - <cluster_schema/>
2092   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2093   - <xloc>1013</xloc>
2094   - <yloc>265</yloc>
2095   - <draw>Y</draw>
2096   - </GUI>
2097   - </step>
2098   -
2099   - <step>
2100   - <name>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ebf;&#x8def;&#x65b9;&#x5411;</name>
2101   - <type>DBLookup</type>
2102   - <description/>
2103   - <distribute>Y</distribute>
2104   - <custom_distribution/>
2105   - <copies>1</copies>
2106   - <partitioning>
2107   - <method>none</method>
2108   - <schema_name/>
2109   - </partitioning>
2110   - <connection>bus_control_variable</connection>
2111   - <cache>N</cache>
2112   - <cache_load_all>N</cache_load_all>
2113   - <cache_size>0</cache_size>
2114   - <lookup>
2115   - <schema/>
2116   - <table>bsth_c_stationroute</table>
2117   - <orderby/>
2118   - <fail_on_multiple>N</fail_on_multiple>
2119   - <eat_row_on_failure>N</eat_row_on_failure>
2120   - <key>
2121   - <name>xlid</name>
2122   - <field>line</field>
2123   - <condition>&#x3d;</condition>
2124   - <name2/>
2125   - </key>
2126   - <key>
2127   - <name>startZdtype_calcu</name>
2128   - <field>station_mark</field>
2129   - <condition>&#x3d;</condition>
2130   - <name2/>
2131   - </key>
2132   - <key>
2133   - <name>qdzname_calcu</name>
2134   - <field>station_name</field>
2135   - <condition>&#x3d;</condition>
2136   - <name2/>
2137   - </key>
2138   - <key>
2139   - <name>destory</name>
2140   - <field>destroy</field>
2141   - <condition>&#x3d;</condition>
2142   - <name2/>
2143   - </key>
2144   - <value>
2145   - <name>directions</name>
2146   - <rename>sxx</rename>
2147   - <default/>
2148   - <type>String</type>
2149   - </value>
2150   - </lookup>
2151   - <cluster_schema/>
2152   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2153   - <xloc>548</xloc>
2154   - <yloc>610</yloc>
2155   - <draw>Y</draw>
2156   - </GUI>
2157   - </step>
2158   -
2159   - <step>
2160   - <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>
2161   - <type>DBLookup</type>
2162   - <description/>
2163   - <distribute>Y</distribute>
2164   - <custom_distribution/>
2165   - <copies>1</copies>
2166   - <partitioning>
2167   - <method>none</method>
2168   - <schema_name/>
2169   - </partitioning>
2170   - <connection>bus_control_variable</connection>
2171   - <cache>Y</cache>
2172   - <cache_load_all>Y</cache_load_all>
2173   - <cache_size>0</cache_size>
2174   - <lookup>
2175   - <schema/>
2176   - <table>bsth_c_stationroute</table>
2177   - <orderby/>
2178   - <fail_on_multiple>N</fail_on_multiple>
2179   - <eat_row_on_failure>N</eat_row_on_failure>
2180   - <key>
2181   - <name>xlid</name>
2182   - <field>line</field>
2183   - <condition>&#x3d;</condition>
2184   - <name2/>
2185   - </key>
2186   - <key>
2187   - <name>endZdtype_calcu</name>
2188   - <field>station_mark</field>
2189   - <condition>&#x3d;</condition>
2190   - <name2/>
2191   - </key>
2192   - <key>
2193   - <name>sxx</name>
2194   - <field>directions</field>
2195   - <condition>&#x3d;</condition>
2196   - <name2/>
2197   - </key>
2198   - <key>
2199   - <name>destory</name>
2200   - <field>destroy</field>
2201   - <condition>&#x3d;</condition>
2202   - <name2/>
2203   - </key>
2204   - <value>
2205   - <name>station_name</name>
2206   - <rename>zdzname_calcu</rename>
2207   - <default/>
2208   - <type>Integer</type>
2209   - </value>
2210   - </lookup>
2211   - <cluster_schema/>
2212   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2213   - <xloc>550</xloc>
2214   - <yloc>701</yloc>
2215   - <draw>Y</draw>
2216   - </GUI>
2217   - </step>
2218   -
2219   - <step>
2220   - <name>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</name>
2221   - <type>DBLookup</type>
2222   - <description/>
2223   - <distribute>Y</distribute>
2224   - <custom_distribution/>
2225   - <copies>1</copies>
2226   - <partitioning>
2227   - <method>none</method>
2228   - <schema_name/>
2229   - </partitioning>
2230   - <connection>bus_control_variable</connection>
2231   - <cache>N</cache>
2232   - <cache_load_all>N</cache_load_all>
2233   - <cache_size>0</cache_size>
2234   - <lookup>
2235   - <schema/>
2236   - <table>bsth_c_stationroute</table>
2237   - <orderby/>
2238   - <fail_on_multiple>N</fail_on_multiple>
2239   - <eat_row_on_failure>N</eat_row_on_failure>
2240   - <key>
2241   - <name>xlid</name>
2242   - <field>line</field>
2243   - <condition>&#x3d;</condition>
2244   - <name2/>
2245   - </key>
2246   - <key>
2247   - <name>zdzname_calcu</name>
2248   - <field>station_name</field>
2249   - <condition>&#x3d;</condition>
2250   - <name2/>
2251   - </key>
2252   - <key>
2253   - <name>startZdtype_calcu</name>
2254   - <field>station_mark</field>
2255   - <condition>&#x3d;</condition>
2256   - <name2/>
2257   - </key>
2258   - <key>
2259   - <name>destory</name>
2260   - <field>destroy</field>
2261   - <condition>&#x3d;</condition>
2262   - <name2/>
2263   - </key>
2264   - <value>
2265   - <name>directions</name>
2266   - <rename>sxx2</rename>
2267   - <default/>
2268   - <type>Integer</type>
2269   - </value>
2270   - <value>
2271   - <name>station</name>
2272   - <rename>qdzid</rename>
2273   - <default/>
2274   - <type>Integer</type>
2275   - </value>
2276   - <value>
2277   - <name>station_code</name>
2278   - <rename>qdzcode</rename>
2279   - <default/>
2280   - <type>String</type>
2281   - </value>
2282   - <value>
2283   - <name>station_name</name>
2284   - <rename>qname</rename>
2285   - <default/>
2286   - <type>String</type>
2287   - </value>
2288   - </lookup>
2289   - <cluster_schema/>
2290   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2291   - <xloc>551</xloc>
2292   - <yloc>782</yloc>
2293   - <draw>Y</draw>
2294   - </GUI>
2295   - </step>
2296   -
2297   - <step>
2298   - <name>&#x6b63;&#x5e38;&#x73ed;&#x6b21;_&#x5904;&#x7406;&#x6570;&#x636e;</name>
2299   - <type>ScriptValueMod</type>
2300   - <description/>
2301   - <distribute>Y</distribute>
2302   - <custom_distribution/>
2303   - <copies>1</copies>
2304   - <partitioning>
2305   - <method>none</method>
2306   - <schema_name/>
2307   - </partitioning>
2308   - <compatible>N</compatible>
2309   - <optimizationLevel>9</optimizationLevel>
2310   - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
2311   - <jsScript_name>Script 1</jsScript_name>
2312   - <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>
2313   - </jsScript> </jsScripts> <fields> <field> <name>sendZdtype</name>
2314   - <rename>sendZdtype</rename>
2315   - <type>String</type>
2316   - <length>-1</length>
2317   - <precision>-1</precision>
2318   - <replace>N</replace>
2319   - </field> <field> <name>endZdtype</name>
2320   - <rename>endZdtype</rename>
2321   - <type>String</type>
2322   - <length>-1</length>
2323   - <precision>-1</precision>
2324   - <replace>N</replace>
2325   - </field> <field> <name>destory</name>
2326   - <rename>destory</rename>
2327   - <type>Integer</type>
2328   - <length>-1</length>
2329   - <precision>-1</precision>
2330   - <replace>N</replace>
2331   - </field> </fields> <cluster_schema/>
2332   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2333   - <xloc>588</xloc>
2334   - <yloc>403</yloc>
2335   - <draw>Y</draw>
2336   - </GUI>
2337   - </step>
2338   -
2339   - <step>
2340   - <name>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</name>
2341   - <type>Dummy</type>
2342   - <description/>
2343   - <distribute>Y</distribute>
2344   - <custom_distribution/>
2345   - <copies>1</copies>
2346   - <partitioning>
2347   - <method>none</method>
2348   - <schema_name/>
2349   - </partitioning>
2350   - <cluster_schema/>
2351   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2352   - <xloc>725</xloc>
2353   - <yloc>404</yloc>
2354   - <draw>Y</draw>
2355   - </GUI>
2356   - </step>
2357   -
2358   - <step>
2359   - <name>&#x6dfb;&#x52a0;&#x53d1;&#x8f66;&#x987a;&#x5e8f;&#x53f7;</name>
2360   - <type>GroupBy</type>
2361   - <description/>
2362   - <distribute>Y</distribute>
2363   - <custom_distribution/>
2364   - <copies>1</copies>
2365   - <partitioning>
2366   - <method>none</method>
2367   - <schema_name/>
2368   - </partitioning>
2369   - <all_rows>Y</all_rows>
2370   - <ignore_aggregate>N</ignore_aggregate>
2371   - <field_ignore/>
2372   - <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
2373   - <prefix>grp</prefix>
2374   - <add_linenr>Y</add_linenr>
2375   - <linenr_fieldname>fcno</linenr_fieldname>
2376   - <give_back_row>N</give_back_row>
2377   - <group>
2378   - <field>
2379   - <name>lp</name>
2380   - </field>
2381   - </group>
2382   - <fields>
2383   - </fields>
2384   - <cluster_schema/>
2385   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2386   - <xloc>442</xloc>
2387   - <yloc>44</yloc>
2388   - <draw>Y</draw>
2389   - </GUI>
2390   - </step>
2391   -
2392   - <step>
2393   - <name>&#x6dfb;&#x52a0;&#x5bf9;&#x5e94;&#x73ed;&#x6b21;&#x6570;</name>
2394   - <type>GroupBy</type>
2395   - <description/>
2396   - <distribute>Y</distribute>
2397   - <custom_distribution/>
2398   - <copies>1</copies>
2399   - <partitioning>
2400   - <method>none</method>
2401   - <schema_name/>
2402   - </partitioning>
2403   - <all_rows>Y</all_rows>
2404   - <ignore_aggregate>N</ignore_aggregate>
2405   - <field_ignore/>
2406   - <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
2407   - <prefix>grp</prefix>
2408   - <add_linenr>Y</add_linenr>
2409   - <linenr_fieldname>bcs</linenr_fieldname>
2410   - <give_back_row>N</give_back_row>
2411   - <group>
2412   - </group>
2413   - <fields>
2414   - </fields>
2415   - <cluster_schema/>
2416   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2417   - <xloc>692</xloc>
2418   - <yloc>44</yloc>
2419   - <draw>Y</draw>
2420   - </GUI>
2421   - </step>
2422   -
2423   - <step>
2424   - <name>&#x73ed;&#x6b21;&#x6570;&#x636e;&#x8303;&#x5f0f;&#x5316;</name>
2425   - <type>Normaliser</type>
2426   - <description/>
2427   - <distribute>Y</distribute>
2428   - <custom_distribution/>
2429   - <copies>1</copies>
2430   - <partitioning>
2431   - <method>none</method>
2432   - <schema_name/>
2433   - </partitioning>
2434   - <typefield>&#x7ad9;&#x70b9;&#x540d;&#x79f0;</typefield>
2435   - <fields> </fields> <cluster_schema/>
2436   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2437   - <xloc>248</xloc>
2438   - <yloc>44</yloc>
2439   - <draw>Y</draw>
2440   - </GUI>
2441   - </step>
2442   -
2443   - <step>
2444   - <name>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178;</name>
2445   - <type>ValueMapper</type>
2446   - <description/>
2447   - <distribute>Y</distribute>
2448   - <custom_distribution/>
2449   - <copies>1</copies>
2450   - <partitioning>
2451   - <method>none</method>
2452   - <schema_name/>
2453   - </partitioning>
2454   - <field_to_use>bctype</field_to_use>
2455   - <target_field>bctype_code</target_field>
2456   - <non_match_default>&#x672a;&#x77e5;&#x7c7b;&#x578b;</non_match_default>
2457   - <fields>
2458   - <field>
2459   - <source_value>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</source_value>
2460   - <target_value>normal</target_value>
2461   - </field>
2462   - <field>
2463   - <source_value>&#x51fa;&#x573a;</source_value>
2464   - <target_value>out</target_value>
2465   - </field>
2466   - <field>
2467   - <source_value>&#x8fdb;&#x573a;</source_value>
2468   - <target_value>in</target_value>
2469   - </field>
2470   - <field>
2471   - <source_value>&#x52a0;&#x6cb9;</source_value>
2472   - <target_value>oil</target_value>
2473   - </field>
2474   - <field>
2475   - <source_value>&#x4e34;&#x52a0;</source_value>
2476   - <target_value>temp</target_value>
2477   - </field>
2478   - <field>
2479   - <source_value>&#x533a;&#x95f4;</source_value>
2480   - <target_value>region</target_value>
2481   - </field>
2482   - <field>
2483   - <source_value>&#x653e;&#x7a7a;</source_value>
2484   - <target_value>venting</target_value>
2485   - </field>
2486   - <field>
2487   - <source_value>&#x653e;&#x5927;&#x7ad9;</source_value>
2488   - <target_value>major</target_value>
2489   - </field>
2490   - </fields>
2491   - <cluster_schema/>
2492   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2493   - <xloc>149</xloc>
2494   - <yloc>491</yloc>
2495   - <draw>Y</draw>
2496   - </GUI>
2497   - </step>
2498   -
2499   - <step>
2500   - <name>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 2</name>
2501   - <type>ValueMapper</type>
2502   - <description/>
2503   - <distribute>Y</distribute>
2504   - <custom_distribution/>
2505   - <copies>1</copies>
2506   - <partitioning>
2507   - <method>none</method>
2508   - <schema_name/>
2509   - </partitioning>
2510   - <field_to_use>bctype</field_to_use>
2511   - <target_field>bctype_code</target_field>
2512   - <non_match_default>&#x672a;&#x77e5;&#x7c7b;&#x578b;</non_match_default>
2513   - <fields>
2514   - <field>
2515   - <source_value>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</source_value>
2516   - <target_value>normal</target_value>
2517   - </field>
2518   - <field>
2519   - <source_value>&#x51fa;&#x573a;</source_value>
2520   - <target_value>out</target_value>
2521   - </field>
2522   - <field>
2523   - <source_value>&#x8fdb;&#x573a;</source_value>
2524   - <target_value>in</target_value>
2525   - </field>
2526   - <field>
2527   - <source_value>&#x52a0;&#x6cb9;</source_value>
2528   - <target_value>oil</target_value>
2529   - </field>
2530   - <field>
2531   - <source_value>&#x4e34;&#x52a0;</source_value>
2532   - <target_value>temp</target_value>
2533   - </field>
2534   - <field>
2535   - <source_value>&#x533a;&#x95f4;</source_value>
2536   - <target_value>region</target_value>
2537   - </field>
2538   - <field>
2539   - <source_value>&#x653e;&#x7a7a;</source_value>
2540   - <target_value>venting</target_value>
2541   - </field>
2542   - <field>
2543   - <source_value>&#x653e;&#x5927;&#x7ad9;</source_value>
2544   - <target_value>major</target_value>
2545   - </field>
2546   - </fields>
2547   - <cluster_schema/>
2548   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2549   - <xloc>333</xloc>
2550   - <yloc>681</yloc>
2551   - <draw>Y</draw>
2552   - </GUI>
2553   - </step>
2554   -
2555   - <step>
2556   - <name>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 3</name>
2557   - <type>ValueMapper</type>
2558   - <description/>
2559   - <distribute>Y</distribute>
2560   - <custom_distribution/>
2561   - <copies>1</copies>
2562   - <partitioning>
2563   - <method>none</method>
2564   - <schema_name/>
2565   - </partitioning>
2566   - <field_to_use>bctype</field_to_use>
2567   - <target_field>bctype_code</target_field>
2568   - <non_match_default>&#x672a;&#x77e5;&#x7c7b;&#x578b;</non_match_default>
2569   - <fields>
2570   - <field>
2571   - <source_value>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</source_value>
2572   - <target_value>normal</target_value>
2573   - </field>
2574   - <field>
2575   - <source_value>&#x51fa;&#x573a;</source_value>
2576   - <target_value>out</target_value>
2577   - </field>
2578   - <field>
2579   - <source_value>&#x8fdb;&#x573a;</source_value>
2580   - <target_value>in</target_value>
2581   - </field>
2582   - <field>
2583   - <source_value>&#x52a0;&#x6cb9;</source_value>
2584   - <target_value>oil</target_value>
2585   - </field>
2586   - <field>
2587   - <source_value>&#x4e34;&#x52a0;</source_value>
2588   - <target_value>temp</target_value>
2589   - </field>
2590   - <field>
2591   - <source_value>&#x533a;&#x95f4;</source_value>
2592   - <target_value>region</target_value>
2593   - </field>
2594   - <field>
2595   - <source_value>&#x653e;&#x7a7a;</source_value>
2596   - <target_value>venting</target_value>
2597   - </field>
2598   - <field>
2599   - <source_value>&#x653e;&#x5927;&#x7ad9;</source_value>
2600   - <target_value>major</target_value>
2601   - </field>
2602   - </fields>
2603   - <cluster_schema/>
2604   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2605   - <xloc>551</xloc>
2606   - <yloc>928</yloc>
2607   - <draw>Y</draw>
2608   - </GUI>
2609   - </step>
2610   -
2611   - <step>
2612   - <name>&#x7c7b;&#x578b;&#x4fee;&#x6b63;</name>
2613   - <type>SelectValues</type>
2614   - <description/>
2615   - <distribute>Y</distribute>
2616   - <custom_distribution/>
2617   - <copies>1</copies>
2618   - <partitioning>
2619   - <method>none</method>
2620   - <schema_name/>
2621   - </partitioning>
2622   - <fields> <select_unspecified>N</select_unspecified>
2623   - <meta> <name>jhlc</name>
2624   - <rename>jhlc</rename>
2625   - <type>Number</type>
2626   - <length>-2</length>
2627   - <precision>-2</precision>
2628   - <conversion_mask/>
2629   - <date_format_lenient>false</date_format_lenient>
2630   - <date_format_locale/>
2631   - <date_format_timezone/>
2632   - <lenient_string_to_number>false</lenient_string_to_number>
2633   - <encoding/>
2634   - <decimal_symbol/>
2635   - <grouping_symbol/>
2636   - <currency_symbol/>
2637   - <storage_type/>
2638   - </meta> <meta> <name>bcsj</name>
2639   - <rename>bcsj</rename>
2640   - <type>Integer</type>
2641   - <length>-2</length>
2642   - <precision>-2</precision>
2643   - <conversion_mask/>
2644   - <date_format_lenient>false</date_format_lenient>
2645   - <date_format_locale/>
2646   - <date_format_timezone/>
2647   - <lenient_string_to_number>false</lenient_string_to_number>
2648   - <encoding/>
2649   - <decimal_symbol/>
2650   - <grouping_symbol/>
2651   - <currency_symbol/>
2652   - <storage_type/>
2653   - </meta> </fields> <cluster_schema/>
2654   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2655   - <xloc>146</xloc>
2656   - <yloc>768</yloc>
2657   - <draw>Y</draw>
2658   - </GUI>
2659   - </step>
2660   -
2661   - <step>
2662   - <name>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 2</name>
2663   - <type>SelectValues</type>
2664   - <description/>
2665   - <distribute>Y</distribute>
2666   - <custom_distribution/>
2667   - <copies>1</copies>
2668   - <partitioning>
2669   - <method>none</method>
2670   - <schema_name/>
2671   - </partitioning>
2672   - <fields> <select_unspecified>N</select_unspecified>
2673   - <meta> <name>out_mileage</name>
2674   - <rename>out_mileage</rename>
2675   - <type>Number</type>
2676   - <length>-2</length>
2677   - <precision>-2</precision>
2678   - <conversion_mask/>
2679   - <date_format_lenient>false</date_format_lenient>
2680   - <date_format_locale/>
2681   - <date_format_timezone/>
2682   - <lenient_string_to_number>false</lenient_string_to_number>
2683   - <encoding/>
2684   - <decimal_symbol/>
2685   - <grouping_symbol/>
2686   - <currency_symbol/>
2687   - <storage_type/>
2688   - </meta> <meta> <name>out_time</name>
2689   - <rename>out_time</rename>
2690   - <type>Integer</type>
2691   - <length>-2</length>
2692   - <precision>-2</precision>
2693   - <conversion_mask/>
2694   - <date_format_lenient>false</date_format_lenient>
2695   - <date_format_locale/>
2696   - <date_format_timezone/>
2697   - <lenient_string_to_number>false</lenient_string_to_number>
2698   - <encoding/>
2699   - <decimal_symbol/>
2700   - <grouping_symbol/>
2701   - <currency_symbol/>
2702   - <storage_type/>
2703   - </meta> <meta> <name>sxx</name>
2704   - <rename>sxx</rename>
2705   - <type>Integer</type>
2706   - <length>-2</length>
2707   - <precision>-2</precision>
2708   - <conversion_mask/>
2709   - <date_format_lenient>false</date_format_lenient>
2710   - <date_format_locale/>
2711   - <date_format_timezone/>
2712   - <lenient_string_to_number>false</lenient_string_to_number>
2713   - <encoding/>
2714   - <decimal_symbol/>
2715   - <grouping_symbol/>
2716   - <currency_symbol/>
2717   - <storage_type/>
2718   - </meta> </fields> <cluster_schema/>
2719   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2720   - <xloc>338</xloc>
2721   - <yloc>1008</yloc>
2722   - <draw>Y</draw>
2723   - </GUI>
2724   - </step>
2725   -
2726   - <step>
2727   - <name>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 3</name>
2728   - <type>SelectValues</type>
2729   - <description/>
2730   - <distribute>Y</distribute>
2731   - <custom_distribution/>
2732   - <copies>1</copies>
2733   - <partitioning>
2734   - <method>none</method>
2735   - <schema_name/>
2736   - </partitioning>
2737   - <fields> <select_unspecified>N</select_unspecified>
2738   - <meta> <name>parade_mileage</name>
2739   - <rename>parade_mileage</rename>
2740   - <type>Number</type>
2741   - <length>-2</length>
2742   - <precision>-2</precision>
2743   - <conversion_mask/>
2744   - <date_format_lenient>false</date_format_lenient>
2745   - <date_format_locale/>
2746   - <date_format_timezone/>
2747   - <lenient_string_to_number>false</lenient_string_to_number>
2748   - <encoding/>
2749   - <decimal_symbol/>
2750   - <grouping_symbol/>
2751   - <currency_symbol/>
2752   - <storage_type/>
2753   - </meta> <meta> <name>parade_time</name>
2754   - <rename>parade_time</rename>
2755   - <type>Integer</type>
2756   - <length>-2</length>
2757   - <precision>-2</precision>
2758   - <conversion_mask/>
2759   - <date_format_lenient>false</date_format_lenient>
2760   - <date_format_locale/>
2761   - <date_format_timezone/>
2762   - <lenient_string_to_number>false</lenient_string_to_number>
2763   - <encoding/>
2764   - <decimal_symbol/>
2765   - <grouping_symbol/>
2766   - <currency_symbol/>
2767   - <storage_type/>
2768   - </meta> <meta> <name>sxx2</name>
2769   - <rename>sxx2</rename>
2770   - <type>Integer</type>
2771   - <length>-2</length>
2772   - <precision>-2</precision>
2773   - <conversion_mask/>
2774   - <date_format_lenient>false</date_format_lenient>
2775   - <date_format_locale/>
2776   - <date_format_timezone/>
2777   - <lenient_string_to_number>false</lenient_string_to_number>
2778   - <encoding/>
2779   - <decimal_symbol/>
2780   - <grouping_symbol/>
2781   - <currency_symbol/>
2782   - <storage_type/>
2783   - </meta> </fields> <cluster_schema/>
2784   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2785   - <xloc>847</xloc>
2786   - <yloc>1003</yloc>
2787   - <draw>Y</draw>
2788   - </GUI>
2789   - </step>
2790   -
2791   - <step>
2792   - <name>&#x8ba1;&#x7b97;&#x73ed;&#x6b21;&#x7c7b;&#x578b;</name>
2793   - <type>ValueMapper</type>
2794   - <description/>
2795   - <distribute>Y</distribute>
2796   - <custom_distribution/>
2797   - <copies>1</copies>
2798   - <partitioning>
2799   - <method>none</method>
2800   - <schema_name/>
2801   - </partitioning>
2802   - <field_to_use>qdzname</field_to_use>
2803   - <target_field>bctype</target_field>
2804   - <non_match_default>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</non_match_default>
2805   - <fields>
2806   - <field>
2807   - <source_value>&#x51fa;&#x573a;</source_value>
2808   - <target_value>&#x51fa;&#x573a;</target_value>
2809   - </field>
2810   - <field>
2811   - <source_value>&#x8fdb;&#x573a;</source_value>
2812   - <target_value>&#x8fdb;&#x573a;</target_value>
2813   - </field>
2814   - </fields>
2815   - <cluster_schema/>
2816   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2817   - <xloc>1014</xloc>
2818   - <yloc>401</yloc>
2819   - <draw>Y</draw>
2820   - </GUI>
2821   - </step>
2822   -
2823   - <step>
2824   - <name>&#x8bb0;&#x5f55;&#x5173;&#x8054; &#x28;&#x7b1b;&#x5361;&#x5c14;&#x8f93;&#x51fa;&#x29;</name>
2825   - <type>JoinRows</type>
2826   - <description/>
2827   - <distribute>Y</distribute>
2828   - <custom_distribution/>
2829   - <copies>1</copies>
2830   - <partitioning>
2831   - <method>none</method>
2832   - <schema_name/>
2833   - </partitioning>
2834   - <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
2835   - <prefix>out</prefix>
2836   - <cache_size>500</cache_size>
2837   - <main/>
2838   - <compare>
2839   -<condition>
2840   - <negated>N</negated>
2841   - <leftvalue/>
2842   - <function>&#x3d;</function>
2843   - <rightvalue/>
2844   - </condition>
2845   - </compare>
2846   - <cluster_schema/>
2847   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2848   - <xloc>310</xloc>
2849   - <yloc>133</yloc>
2850   - <draw>Y</draw>
2851   - </GUI>
2852   - </step>
2853   -
2854   - <step>
2855   - <name>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;&#xff08;&#x53d1;&#x8f66;&#x65f6;&#x95f4;&#x4e3a;&#x7a7a;&#xff09;</name>
2856   - <type>FilterRows</type>
2857   - <description/>
2858   - <distribute>Y</distribute>
2859   - <custom_distribution/>
2860   - <copies>1</copies>
2861   - <partitioning>
2862   - <method>none</method>
2863   - <schema_name/>
2864   - </partitioning>
2865   -<send_true_to/>
2866   -<send_false_to/>
2867   - <compare>
2868   -<condition>
2869   - <negated>N</negated>
2870   - <leftvalue>sendtime</leftvalue>
2871   - <function>IS NOT NULL</function>
2872   - <rightvalue/>
2873   - </condition>
2874   - </compare>
2875   - <cluster_schema/>
2876   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2877   - <xloc>571</xloc>
2878   - <yloc>44</yloc>
2879   - <draw>Y</draw>
2880   - </GUI>
2881   - </step>
2882   -
2883   - <step>
2884   - <name>&#x8fdb;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x8d77;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</name>
2885   - <type>ScriptValueMod</type>
2886   - <description/>
2887   - <distribute>Y</distribute>
2888   - <custom_distribution/>
2889   - <copies>1</copies>
2890   - <partitioning>
2891   - <method>none</method>
2892   - <schema_name/>
2893   - </partitioning>
2894   - <compatible>N</compatible>
2895   - <optimizationLevel>9</optimizationLevel>
2896   - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
2897   - <jsScript_name>Script 1</jsScript_name>
2898   - <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>
2899   - </jsScript> </jsScripts> <fields> <field> <name>qdzname_calcu</name>
2900   - <rename>qdzname_calcu</rename>
2901   - <type>String</type>
2902   - <length>-1</length>
2903   - <precision>-1</precision>
2904   - <replace>N</replace>
2905   - </field> <field> <name>startZdtype_calcu</name>
2906   - <rename>startZdtype_calcu</rename>
2907   - <type>String</type>
2908   - <length>-1</length>
2909   - <precision>-1</precision>
2910   - <replace>N</replace>
2911   - </field> <field> <name>endZdtype_calcu</name>
2912   - <rename>endZdtype_calcu</rename>
2913   - <type>String</type>
2914   - <length>-1</length>
2915   - <precision>-1</precision>
2916   - <replace>N</replace>
2917   - </field> <field> <name>destory</name>
2918   - <rename>destory</rename>
2919   - <type>Integer</type>
2920   - <length>-1</length>
2921   - <precision>-1</precision>
2922   - <replace>N</replace>
2923   - </field> </fields> <cluster_schema/>
2924   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2925   - <xloc>754</xloc>
2926   - <yloc>610</yloc>
2927   - <draw>Y</draw>
2928   - </GUI>
2929   - </step>
2930   -
2931   - <step>
2932   - <name>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</name>
2933   - <type>Dummy</type>
2934   - <description/>
2935   - <distribute>Y</distribute>
2936   - <custom_distribution/>
2937   - <copies>1</copies>
2938   - <partitioning>
2939   - <method>none</method>
2940   - <schema_name/>
2941   - </partitioning>
2942   - <cluster_schema/>
2943   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2944   - <xloc>997</xloc>
2945   - <yloc>606</yloc>
2946   - <draw>Y</draw>
2947   - </GUI>
2948   - </step>
2949   -
2950   - <step_error_handling>
2951   - <error>
2952   - <source_step>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail</source_step>
2953   - <target_step/>
2954   - <is_enabled>Y</is_enabled>
2955   - <nr_valuename>c1</nr_valuename>
2956   - <descriptions_valuename>c2</descriptions_valuename>
2957   - <fields_valuename>c3</fields_valuename>
2958   - <codes_valuename>c4</codes_valuename>
2959   - <max_errors/>
2960   - <max_pct_errors/>
2961   - <min_pct_rows/>
2962   - </error>
2963   - </step_error_handling>
2964   - <slave-step-copy-partition-distribution>
2965   -</slave-step-copy-partition-distribution>
2966   - <slave_transformation>N</slave_transformation>
2967   -
2968   -</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;&#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;&#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;if &#x28;sxx &#x3d;&#x3d; 0&#x29; &#x7b; &#x2f;&#x2f; &#x4e0a;&#x884c;&#xa; jhlc &#x3d; up_mileage&#x3b;&#xa; bcsj &#x3d; up_travel_time&#x3b;&#xa;&#x7d; else &#x7b; &#x2f;&#x2f; sxx &#x3d;&#x3d; 1 &#x4e0b;&#x884c;&#xa; jhlc &#x3d; down_mileage&#x3b;&#xa; bcsj &#x3d; down_travel_time&#x3b;&#xa;&#x7d;</jsScript_script>
  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;&#x4e2d;&#x7684;&#x6570;&#x5b57;&#xa;qdzname &#x3d; qdzname.replace&#x28;&#x2f;&#x5c;d&#x2b;&#x2f;g,&#x27;&#x27;&#x29;&#x3b;&#xa;&#xa;&#x2f;&#x2f; sendtime&#x5904;&#x7406;&#xff0c;hhmm&#xff0c;hh&#x3a;mm&#xff0c;hh,mm&#xa;var sendtime_calcu&#x3b;&#xa;if &#x28;sendtime.length &#x3d;&#x3d; 5&#x29; &#x7b; &#x2f;&#x2f; &#x6700;&#x957f;&#x683c;&#x5f0f;&#xff0c;&#x5305;&#x62ec;&#x5206;&#x9694;&#x7b26;&#xff0c;&#x7edf;&#x4e00;&#x628a;&#x5206;&#x9694;&#x7b26;&#x66ff;&#x6362;&#x6210;&#x5192;&#x53f7;&#xa; sendtime_calcu &#x3d; sendtime.substr&#x28;0, 2&#x29; &#x2b; &#x22;&#x3a;&#x22; &#x2b; sendtime.substr&#x28;3, 2&#x29;&#x3b;&#xa;&#x7d; else if &#x28;sendtime.length &#x3d;&#x3d; 4&#x29; &#x7b;&#xa; if &#x28;sendtime.indexOf&#x28;&#x22;&#x3a;&#x22;&#x29; &#x3e; 0&#x29; &#x7b; &#x2f;&#x2f; &#x5192;&#x53f7;&#x5206;&#x9694;&#xff0c;&#x65e0;&#x9700;&#x4fee;&#x6539;&#xa; sendtime_calcu &#x3d; sendtime&#x3b;&#xa; &#x7d; else if &#x28;sendtime.indexOf&#x28;&#x22;,&#x22;&#x29; &#x3e; 0&#x29; &#x7b; &#x2f;&#x2f; &#x9017;&#x53f7;&#x5206;&#x9694;&#xff0c;&#x6539;&#x6210;&#x5192;&#x53f7;&#x5206;&#x9694;&#xa; sendtime_calcu &#x3d; sendtime.substr&#x28;0, 1&#x29; &#x2b; &#x22;&#x3a;&#x22; &#x2b; sendtime.substr&#x28;2, 2&#x29;&#x3b;&#xa; &#x7d; else &#x7b; &#x2f;&#x2f; &#x65e0;&#x5206;&#x9694;&#x7b26;&#xff0c;&#x6539;&#x6210;&#x5192;&#x53f7;&#x5206;&#x9694;&#xa; sendtime_calcu &#x3d; sendtime.substr&#x28;0, 2&#x29; &#x2b; &#x22;&#x3a;&#x22; &#x2b; sendtime.substr&#x28;2, 2&#x29;&#x3b;&#xa; &#x7d;&#xa;&#x7d; else if &#x28;sendtime.length &#x3d;&#x3d; 3&#x29; &#x7b; &#x2f;&#x2f; &#x65e0;&#x5206;&#x9694;&#x7b26;&#xff0c;&#x6539;&#x6210;&#x5192;&#x53f7;&#x5206;&#x9694;&#xa; sendtime_calcu &#x3d; sendtime.substr&#x28;0, 1&#x29; &#x2b; &#x22;&#x3a;&#x22; &#x2b; sendtime.substr&#x28;1, 2&#x29;&#x3b;&#xa;&#x7d;&#xa;&#xa;&#x2f;&#x2f; &#x8bbe;&#x7f6e;&#x5206;&#x73ed;&#xa;var isfb &#x3d; 0&#x3b;&#xa;&#xa;&#x2f;&#x2f; &#x8bbe;&#x7f6e;isCanceled&#xa;var iscanceled &#x3d; 0&#x3b;</jsScript_script>
  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> </fields> <cluster_schema/>
  857 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  858 + <xloc>788</xloc>
  859 + <yloc>44</yloc>
  860 + <draw>Y</draw>
  861 + </GUI>
  862 + </step>
  863 +
  864 + <step>
  865 + <name>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</name>
  866 + <type>SelectValues</type>
  867 + <description/>
  868 + <distribute>Y</distribute>
  869 + <custom_distribution/>
  870 + <copies>1</copies>
  871 + <partitioning>
  872 + <method>none</method>
  873 + <schema_name/>
  874 + </partitioning>
  875 + <fields> <field> <name>&#x8def;&#x724c;</name>
  876 + <rename>lp</rename>
  877 + <length>-2</length>
  878 + <precision>-2</precision>
  879 + </field> <field> <name>&#x7ad9;&#x70b9;&#x540d;&#x79f0;</name>
  880 + <rename>qdzname</rename>
  881 + <length>-2</length>
  882 + <precision>-2</precision>
  883 + </field> <field> <name>&#x53d1;&#x8f66;&#x65f6;&#x95f4;</name>
  884 + <rename>sendtime</rename>
  885 + <length>-2</length>
  886 + <precision>-2</precision>
  887 + </field> <select_unspecified>Y</select_unspecified>
  888 + </fields> <cluster_schema/>
  889 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  890 + <xloc>444</xloc>
  891 + <yloc>131</yloc>
  892 + <draw>Y</draw>
  893 + </GUI>
  894 + </step>
  895 +
  896 + <step>
  897 + <name>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;1</name>
  898 + <type>FilterRows</type>
  899 + <description/>
  900 + <distribute>Y</distribute>
  901 + <custom_distribution/>
  902 + <copies>1</copies>
  903 + <partitioning>
  904 + <method>none</method>
  905 + <schema_name/>
  906 + </partitioning>
  907 +<send_true_to>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</send_true_to>
  908 +<send_false_to>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</send_false_to>
  909 + <compare>
  910 +<condition>
  911 + <negated>N</negated>
  912 + <leftvalue>bctype</leftvalue>
  913 + <function>&#x3d;</function>
  914 + <rightvalue/>
  915 + <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>
  916 + </compare>
  917 + <cluster_schema/>
  918 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  919 + <xloc>860</xloc>
  920 + <yloc>401</yloc>
  921 + <draw>Y</draw>
  922 + </GUI>
  923 + </step>
  924 +
  925 + <step>
  926 + <name>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</name>
  927 + <type>FilterRows</type>
  928 + <description/>
  929 + <distribute>Y</distribute>
  930 + <custom_distribution/>
  931 + <copies>1</copies>
  932 + <partitioning>
  933 + <method>none</method>
  934 + <schema_name/>
  935 + </partitioning>
  936 +<send_true_to>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</send_true_to>
  937 +<send_false_to>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</send_false_to>
  938 + <compare>
  939 +<condition>
  940 + <negated>N</negated>
  941 + <leftvalue>bctype</leftvalue>
  942 + <function>&#x3d;</function>
  943 + <rightvalue/>
  944 + <value><name>constant</name><type>String</type><text>&#x51fa;&#x573a;</text><length>-1</length><precision>-1</precision><isnull>N</isnull><mask/></value> </condition>
  945 + </compare>
  946 + <cluster_schema/>
  947 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  948 + <xloc>995</xloc>
  949 + <yloc>503</yloc>
  950 + <draw>Y</draw>
  951 + </GUI>
  952 + </step>
  953 +
  954 + <step>
  955 + <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail</name>
  956 + <type>InsertUpdate</type>
  957 + <description/>
  958 + <distribute>Y</distribute>
  959 + <custom_distribution/>
  960 + <copies>1</copies>
  961 + <partitioning>
  962 + <method>none</method>
  963 + <schema_name/>
  964 + </partitioning>
  965 + <connection>bus_control_variable</connection>
  966 + <commit>100</commit>
  967 + <update_bypassed>N</update_bypassed>
  968 + <lookup>
  969 + <schema/>
  970 + <table>bsth_c_s_ttinfo_detail</table>
  971 + <key>
  972 + <name>xlid</name>
  973 + <field>xl</field>
  974 + <condition>&#x3d;</condition>
  975 + <name2/>
  976 + </key>
  977 + <key>
  978 + <name>ttid</name>
  979 + <field>ttinfo</field>
  980 + <condition>&#x3d;</condition>
  981 + <name2/>
  982 + </key>
  983 + <key>
  984 + <name>lpid</name>
  985 + <field>lp</field>
  986 + <condition>&#x3d;</condition>
  987 + <name2/>
  988 + </key>
  989 + <key>
  990 + <name>fcno</name>
  991 + <field>fcno</field>
  992 + <condition>&#x3d;</condition>
  993 + <name2/>
  994 + </key>
  995 + <key>
  996 + <name>bcs</name>
  997 + <field>bcs</field>
  998 + <condition>&#x3d;</condition>
  999 + <name2/>
  1000 + </key>
  1001 + <value>
  1002 + <name>lp</name>
  1003 + <rename>lpid</rename>
  1004 + <update>Y</update>
  1005 + </value>
  1006 + <value>
  1007 + <name>bc_type</name>
  1008 + <rename>bctype_code</rename>
  1009 + <update>Y</update>
  1010 + </value>
  1011 + <value>
  1012 + <name>bcs</name>
  1013 + <rename>bcs</rename>
  1014 + <update>Y</update>
  1015 + </value>
  1016 + <value>
  1017 + <name>bcsj</name>
  1018 + <rename>bcsj</rename>
  1019 + <update>Y</update>
  1020 + </value>
  1021 + <value>
  1022 + <name>fcno</name>
  1023 + <rename>fcno</rename>
  1024 + <update>Y</update>
  1025 + </value>
  1026 + <value>
  1027 + <name>jhlc</name>
  1028 + <rename>jhlc</rename>
  1029 + <update>Y</update>
  1030 + </value>
  1031 + <value>
  1032 + <name>fcsj</name>
  1033 + <rename>sendtime_calcu</rename>
  1034 + <update>Y</update>
  1035 + </value>
  1036 + <value>
  1037 + <name>ttinfo</name>
  1038 + <rename>ttid</rename>
  1039 + <update>Y</update>
  1040 + </value>
  1041 + <value>
  1042 + <name>xl</name>
  1043 + <rename>xlid</rename>
  1044 + <update>Y</update>
  1045 + </value>
  1046 + <value>
  1047 + <name>qdz</name>
  1048 + <rename>qdzid</rename>
  1049 + <update>Y</update>
  1050 + </value>
  1051 + <value>
  1052 + <name>zdz</name>
  1053 + <rename>zdzid</rename>
  1054 + <update>Y</update>
  1055 + </value>
  1056 + <value>
  1057 + <name>xl_dir</name>
  1058 + <rename>sxx</rename>
  1059 + <update>Y</update>
  1060 + </value>
  1061 + <value>
  1062 + <name>isfb</name>
  1063 + <rename>isfb</rename>
  1064 + <update>Y</update>
  1065 + </value>
  1066 + <value>
  1067 + <name>qdz_code</name>
  1068 + <rename>qdzcode</rename>
  1069 + <update>Y</update>
  1070 + </value>
  1071 + <value>
  1072 + <name>qdz_name</name>
  1073 + <rename>qdzname</rename>
  1074 + <update>Y</update>
  1075 + </value>
  1076 + <value>
  1077 + <name>zdz_code</name>
  1078 + <rename>zdzcode</rename>
  1079 + <update>Y</update>
  1080 + </value>
  1081 + <value>
  1082 + <name>zdz_name</name>
  1083 + <rename>zdzname</rename>
  1084 + <update>Y</update>
  1085 + </value>
  1086 + </lookup>
  1087 + <cluster_schema/>
  1088 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1089 + <xloc>143</xloc>
  1090 + <yloc>860</yloc>
  1091 + <draw>Y</draw>
  1092 + </GUI>
  1093 + </step>
  1094 +
  1095 + <step>
  1096 + <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail 2</name>
  1097 + <type>InsertUpdate</type>
  1098 + <description/>
  1099 + <distribute>Y</distribute>
  1100 + <custom_distribution/>
  1101 + <copies>1</copies>
  1102 + <partitioning>
  1103 + <method>none</method>
  1104 + <schema_name/>
  1105 + </partitioning>
  1106 + <connection>bus_control_variable</connection>
  1107 + <commit>100</commit>
  1108 + <update_bypassed>N</update_bypassed>
  1109 + <lookup>
  1110 + <schema/>
  1111 + <table>bsth_c_s_ttinfo_detail</table>
  1112 + <key>
  1113 + <name>xlid</name>
  1114 + <field>xl</field>
  1115 + <condition>&#x3d;</condition>
  1116 + <name2/>
  1117 + </key>
  1118 + <key>
  1119 + <name>ttid</name>
  1120 + <field>ttinfo</field>
  1121 + <condition>&#x3d;</condition>
  1122 + <name2/>
  1123 + </key>
  1124 + <key>
  1125 + <name>lpid</name>
  1126 + <field>lp</field>
  1127 + <condition>&#x3d;</condition>
  1128 + <name2/>
  1129 + </key>
  1130 + <key>
  1131 + <name>fcno</name>
  1132 + <field>fcno</field>
  1133 + <condition>&#x3d;</condition>
  1134 + <name2/>
  1135 + </key>
  1136 + <key>
  1137 + <name>bcs</name>
  1138 + <field>bcs</field>
  1139 + <condition>&#x3d;</condition>
  1140 + <name2/>
  1141 + </key>
  1142 + <value>
  1143 + <name>tcc</name>
  1144 + <rename>qdzid</rename>
  1145 + <update>Y</update>
  1146 + </value>
  1147 + <value>
  1148 + <name>zdz</name>
  1149 + <rename>zdzid</rename>
  1150 + <update>Y</update>
  1151 + </value>
  1152 + <value>
  1153 + <name>xl</name>
  1154 + <rename>xlid</rename>
  1155 + <update>Y</update>
  1156 + </value>
  1157 + <value>
  1158 + <name>ttinfo</name>
  1159 + <rename>ttid</rename>
  1160 + <update>Y</update>
  1161 + </value>
  1162 + <value>
  1163 + <name>xl_dir</name>
  1164 + <rename>sxx</rename>
  1165 + <update>Y</update>
  1166 + </value>
  1167 + <value>
  1168 + <name>lp</name>
  1169 + <rename>lpid</rename>
  1170 + <update>Y</update>
  1171 + </value>
  1172 + <value>
  1173 + <name>jhlc</name>
  1174 + <rename>out_mileage</rename>
  1175 + <update>Y</update>
  1176 + </value>
  1177 + <value>
  1178 + <name>fcsj</name>
  1179 + <rename>sendtime_calcu</rename>
  1180 + <update>Y</update>
  1181 + </value>
  1182 + <value>
  1183 + <name>bcsj</name>
  1184 + <rename>out_time</rename>
  1185 + <update>Y</update>
  1186 + </value>
  1187 + <value>
  1188 + <name>bcs</name>
  1189 + <rename>bcs</rename>
  1190 + <update>Y</update>
  1191 + </value>
  1192 + <value>
  1193 + <name>fcno</name>
  1194 + <rename>fcno</rename>
  1195 + <update>Y</update>
  1196 + </value>
  1197 + <value>
  1198 + <name>bc_type</name>
  1199 + <rename>bctype_code</rename>
  1200 + <update>Y</update>
  1201 + </value>
  1202 + <value>
  1203 + <name>isfb</name>
  1204 + <rename>isfb</rename>
  1205 + <update>Y</update>
  1206 + </value>
  1207 + <value>
  1208 + <name>qdz_code</name>
  1209 + <rename>qdzcode</rename>
  1210 + <update>Y</update>
  1211 + </value>
  1212 + <value>
  1213 + <name>qdz_name</name>
  1214 + <rename>tn</rename>
  1215 + <update>Y</update>
  1216 + </value>
  1217 + <value>
  1218 + <name>zdz_code</name>
  1219 + <rename>zdzcode</rename>
  1220 + <update>Y</update>
  1221 + </value>
  1222 + <value>
  1223 + <name>zdz_name</name>
  1224 + <rename>zdzname</rename>
  1225 + <update>Y</update>
  1226 + </value>
  1227 + </lookup>
  1228 + <cluster_schema/>
  1229 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1230 + <xloc>340</xloc>
  1231 + <yloc>1087</yloc>
  1232 + <draw>Y</draw>
  1233 + </GUI>
  1234 + </step>
  1235 +
  1236 + <step>
  1237 + <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail 3</name>
  1238 + <type>InsertUpdate</type>
  1239 + <description/>
  1240 + <distribute>Y</distribute>
  1241 + <custom_distribution/>
  1242 + <copies>1</copies>
  1243 + <partitioning>
  1244 + <method>none</method>
  1245 + <schema_name/>
  1246 + </partitioning>
  1247 + <connection>bus_control_variable</connection>
  1248 + <commit>100</commit>
  1249 + <update_bypassed>N</update_bypassed>
  1250 + <lookup>
  1251 + <schema/>
  1252 + <table>bsth_c_s_ttinfo_detail</table>
  1253 + <key>
  1254 + <name>xlid</name>
  1255 + <field>xl</field>
  1256 + <condition>&#x3d;</condition>
  1257 + <name2/>
  1258 + </key>
  1259 + <key>
  1260 + <name>ttid</name>
  1261 + <field>ttinfo</field>
  1262 + <condition>&#x3d;</condition>
  1263 + <name2/>
  1264 + </key>
  1265 + <key>
  1266 + <name>lpid</name>
  1267 + <field>lp</field>
  1268 + <condition>&#x3d;</condition>
  1269 + <name2/>
  1270 + </key>
  1271 + <key>
  1272 + <name>fcno</name>
  1273 + <field>fcno</field>
  1274 + <condition>&#x3d;</condition>
  1275 + <name2/>
  1276 + </key>
  1277 + <key>
  1278 + <name>bcs</name>
  1279 + <field>bcs</field>
  1280 + <condition>&#x3d;</condition>
  1281 + <name2/>
  1282 + </key>
  1283 + <value>
  1284 + <name>fcno</name>
  1285 + <rename>fcno</rename>
  1286 + <update>Y</update>
  1287 + </value>
  1288 + <value>
  1289 + <name>bcs</name>
  1290 + <rename>bcs</rename>
  1291 + <update>Y</update>
  1292 + </value>
  1293 + <value>
  1294 + <name>xl</name>
  1295 + <rename>xlid</rename>
  1296 + <update>Y</update>
  1297 + </value>
  1298 + <value>
  1299 + <name>ttinfo</name>
  1300 + <rename>ttid</rename>
  1301 + <update>Y</update>
  1302 + </value>
  1303 + <value>
  1304 + <name>lp</name>
  1305 + <rename>lpid</rename>
  1306 + <update>Y</update>
  1307 + </value>
  1308 + <value>
  1309 + <name>bc_type</name>
  1310 + <rename>bctype_code</rename>
  1311 + <update>Y</update>
  1312 + </value>
  1313 + <value>
  1314 + <name>bcsj</name>
  1315 + <rename>parade_time</rename>
  1316 + <update>Y</update>
  1317 + </value>
  1318 + <value>
  1319 + <name>jhlc</name>
  1320 + <rename>parade_mileage</rename>
  1321 + <update>Y</update>
  1322 + </value>
  1323 + <value>
  1324 + <name>fcsj</name>
  1325 + <rename>sendtime_calcu</rename>
  1326 + <update>Y</update>
  1327 + </value>
  1328 + <value>
  1329 + <name>xl_dir</name>
  1330 + <rename>sxx2</rename>
  1331 + <update>Y</update>
  1332 + </value>
  1333 + <value>
  1334 + <name>qdz</name>
  1335 + <rename>qdzid</rename>
  1336 + <update>Y</update>
  1337 + </value>
  1338 + <value>
  1339 + <name>tcc</name>
  1340 + <rename>zdzid</rename>
  1341 + <update>Y</update>
  1342 + </value>
  1343 + <value>
  1344 + <name>isfb</name>
  1345 + <rename>isfb</rename>
  1346 + <update>Y</update>
  1347 + </value>
  1348 + <value>
  1349 + <name>qdz_code</name>
  1350 + <rename>qdzcode</rename>
  1351 + <update>Y</update>
  1352 + </value>
  1353 + <value>
  1354 + <name>qdz_name</name>
  1355 + <rename>qname</rename>
  1356 + <update>Y</update>
  1357 + </value>
  1358 + <value>
  1359 + <name>zdz_code</name>
  1360 + <rename>zdzcode</rename>
  1361 + <update>Y</update>
  1362 + </value>
  1363 + <value>
  1364 + <name>zdz_name</name>
  1365 + <rename>tn</rename>
  1366 + <update>Y</update>
  1367 + </value>
  1368 + </lookup>
  1369 + <cluster_schema/>
  1370 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1371 + <xloc>845</xloc>
  1372 + <yloc>899</yloc>
  1373 + <draw>Y</draw>
  1374 + </GUI>
  1375 + </step>
  1376 +
  1377 + <step>
  1378 + <name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</name>
  1379 + <type>ExcelInput</type>
  1380 + <description/>
  1381 + <distribute>N</distribute>
  1382 + <custom_distribution/>
  1383 + <copies>1</copies>
  1384 + <partitioning>
  1385 + <method>none</method>
  1386 + <schema_name/>
  1387 + </partitioning>
  1388 + <header>Y</header>
  1389 + <noempty>Y</noempty>
  1390 + <stoponempty>N</stoponempty>
  1391 + <filefield/>
  1392 + <sheetfield/>
  1393 + <sheetrownumfield/>
  1394 + <rownumfield/>
  1395 + <sheetfield/>
  1396 + <filefield/>
  1397 + <limit>0</limit>
  1398 + <encoding/>
  1399 + <add_to_result_filenames>Y</add_to_result_filenames>
  1400 + <accept_filenames>N</accept_filenames>
  1401 + <accept_field/>
  1402 + <accept_stepname/>
  1403 + <file>
  1404 + <name/>
  1405 + <filemask/>
  1406 + <exclude_filemask/>
  1407 + <file_required>N</file_required>
  1408 + <include_subfolders>N</include_subfolders>
  1409 + </file>
  1410 + <fields>
  1411 + </fields>
  1412 + <sheets>
  1413 + <sheet>
  1414 + <name/>
  1415 + <startrow>0</startrow>
  1416 + <startcol>0</startcol>
  1417 + </sheet>
  1418 + </sheets>
  1419 + <strict_types>N</strict_types>
  1420 + <error_ignored>N</error_ignored>
  1421 + <error_line_skipped>N</error_line_skipped>
  1422 + <bad_line_files_destination_directory/>
  1423 + <bad_line_files_extension>warning</bad_line_files_extension>
  1424 + <error_line_files_destination_directory/>
  1425 + <error_line_files_extension>error</error_line_files_extension>
  1426 + <line_number_files_destination_directory/>
  1427 + <line_number_files_extension>line</line_number_files_extension>
  1428 + <shortFileFieldName/>
  1429 + <pathFieldName/>
  1430 + <hiddenFieldName/>
  1431 + <lastModificationTimeFieldName/>
  1432 + <uriNameFieldName/>
  1433 + <rootUriNameFieldName/>
  1434 + <extensionFieldName/>
  1435 + <sizeFieldName/>
  1436 + <spreadsheet_type>JXL</spreadsheet_type>
  1437 + <cluster_schema/>
  1438 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1439 + <xloc>112</xloc>
  1440 + <yloc>44</yloc>
  1441 + <draw>Y</draw>
  1442 + </GUI>
  1443 + </step>
  1444 +
  1445 + <step>
  1446 + <name>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;1</name>
  1447 + <type>DBLookup</type>
  1448 + <description/>
  1449 + <distribute>Y</distribute>
  1450 + <custom_distribution/>
  1451 + <copies>1</copies>
  1452 + <partitioning>
  1453 + <method>none</method>
  1454 + <schema_name/>
  1455 + </partitioning>
  1456 + <connection>bus_control_variable</connection>
  1457 + <cache>N</cache>
  1458 + <cache_load_all>N</cache_load_all>
  1459 + <cache_size>0</cache_size>
  1460 + <lookup>
  1461 + <schema/>
  1462 + <table>bsth_c_car_park</table>
  1463 + <orderby/>
  1464 + <fail_on_multiple>N</fail_on_multiple>
  1465 + <eat_row_on_failure>N</eat_row_on_failure>
  1466 + <key>
  1467 + <name>tccname_</name>
  1468 + <field>park_name</field>
  1469 + <condition>&#x3d;</condition>
  1470 + <name2/>
  1471 + </key>
  1472 + <value>
  1473 + <name>id</name>
  1474 + <rename>qdzid</rename>
  1475 + <default/>
  1476 + <type>Integer</type>
  1477 + </value>
  1478 + <value>
  1479 + <name>park_code</name>
  1480 + <rename>qdzcode</rename>
  1481 + <default/>
  1482 + <type>String</type>
  1483 + </value>
  1484 + <value>
  1485 + <name>park_name</name>
  1486 + <rename>tn</rename>
  1487 + <default/>
  1488 + <type>String</type>
  1489 + </value>
  1490 + </lookup>
  1491 + <cluster_schema/>
  1492 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1493 + <xloc>755</xloc>
  1494 + <yloc>504</yloc>
  1495 + <draw>Y</draw>
  1496 + </GUI>
  1497 + </step>
  1498 +
  1499 + <step>
  1500 + <name>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;2</name>
  1501 + <type>DBLookup</type>
  1502 + <description/>
  1503 + <distribute>Y</distribute>
  1504 + <custom_distribution/>
  1505 + <copies>1</copies>
  1506 + <partitioning>
  1507 + <method>none</method>
  1508 + <schema_name/>
  1509 + </partitioning>
  1510 + <connection>bus_control_variable</connection>
  1511 + <cache>N</cache>
  1512 + <cache_load_all>N</cache_load_all>
  1513 + <cache_size>0</cache_size>
  1514 + <lookup>
  1515 + <schema/>
  1516 + <table>bsth_c_car_park</table>
  1517 + <orderby/>
  1518 + <fail_on_multiple>N</fail_on_multiple>
  1519 + <eat_row_on_failure>N</eat_row_on_failure>
  1520 + <key>
  1521 + <name>tccname_</name>
  1522 + <field>park_name</field>
  1523 + <condition>&#x3d;</condition>
  1524 + <name2/>
  1525 + </key>
  1526 + <value>
  1527 + <name>id</name>
  1528 + <rename>zdzid</rename>
  1529 + <default/>
  1530 + <type>Integer</type>
  1531 + </value>
  1532 + <value>
  1533 + <name>park_code</name>
  1534 + <rename>zdzcode</rename>
  1535 + <default/>
  1536 + <type>String</type>
  1537 + </value>
  1538 + <value>
  1539 + <name>park_name</name>
  1540 + <rename>tn</rename>
  1541 + <default/>
  1542 + <type>String</type>
  1543 + </value>
  1544 + </lookup>
  1545 + <cluster_schema/>
  1546 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1547 + <xloc>887</xloc>
  1548 + <yloc>608</yloc>
  1549 + <draw>Y</draw>
  1550 + </GUI>
  1551 + </step>
  1552 +
  1553 + <step>
  1554 + <name>&#x67e5;&#x627e;&#x51fa;&#x573a;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</name>
  1555 + <type>DBLookup</type>
  1556 + <description/>
  1557 + <distribute>Y</distribute>
  1558 + <custom_distribution/>
  1559 + <copies>1</copies>
  1560 + <partitioning>
  1561 + <method>none</method>
  1562 + <schema_name/>
  1563 + </partitioning>
  1564 + <connection>bus_control_variable</connection>
  1565 + <cache>N</cache>
  1566 + <cache_load_all>N</cache_load_all>
  1567 + <cache_size>0</cache_size>
  1568 + <lookup>
  1569 + <schema/>
  1570 + <table>bsth_c_stationroute</table>
  1571 + <orderby/>
  1572 + <fail_on_multiple>N</fail_on_multiple>
  1573 + <eat_row_on_failure>N</eat_row_on_failure>
  1574 + <key>
  1575 + <name>xlid</name>
  1576 + <field>line</field>
  1577 + <condition>&#x3d;</condition>
  1578 + <name2/>
  1579 + </key>
  1580 + <key>
  1581 + <name>zdzname</name>
  1582 + <field>station_name</field>
  1583 + <condition>&#x3d;</condition>
  1584 + <name2/>
  1585 + </key>
  1586 + <key>
  1587 + <name>endZdtype</name>
  1588 + <field>station_mark</field>
  1589 + <condition>&#x3d;</condition>
  1590 + <name2/>
  1591 + </key>
  1592 + <key>
  1593 + <name>destory</name>
  1594 + <field>destroy</field>
  1595 + <condition>&#x3d;</condition>
  1596 + <name2/>
  1597 + </key>
  1598 + <value>
  1599 + <name>station</name>
  1600 + <rename>zdzid</rename>
  1601 + <default/>
  1602 + <type>Integer</type>
  1603 + </value>
  1604 + <value>
  1605 + <name>directions</name>
  1606 + <rename>sxx</rename>
  1607 + <default/>
  1608 + <type>Integer</type>
  1609 + </value>
  1610 + <value>
  1611 + <name>station_code</name>
  1612 + <rename>zdzcode</rename>
  1613 + <default/>
  1614 + <type>String</type>
  1615 + </value>
  1616 + </lookup>
  1617 + <cluster_schema/>
  1618 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1619 + <xloc>329</xloc>
  1620 + <yloc>505</yloc>
  1621 + <draw>Y</draw>
  1622 + </GUI>
  1623 + </step>
  1624 +
  1625 + <step>
  1626 + <name>&#x67e5;&#x627e;&#x65f6;&#x523b;&#x8868;&#x57fa;&#x7840;&#x4fe1;&#x606f;&#x5173;&#x8054;</name>
  1627 + <type>DBLookup</type>
  1628 + <description/>
  1629 + <distribute>Y</distribute>
  1630 + <custom_distribution/>
  1631 + <copies>1</copies>
  1632 + <partitioning>
  1633 + <method>none</method>
  1634 + <schema_name/>
  1635 + </partitioning>
  1636 + <connection>bus_control_variable</connection>
  1637 + <cache>N</cache>
  1638 + <cache_load_all>N</cache_load_all>
  1639 + <cache_size>0</cache_size>
  1640 + <lookup>
  1641 + <schema/>
  1642 + <table>bsth_c_s_ttinfo</table>
  1643 + <orderby/>
  1644 + <fail_on_multiple>N</fail_on_multiple>
  1645 + <eat_row_on_failure>N</eat_row_on_failure>
  1646 + <key>
  1647 + <name>xlid</name>
  1648 + <field>xl</field>
  1649 + <condition>&#x3d;</condition>
  1650 + <name2/>
  1651 + </key>
  1652 + <key>
  1653 + <name>ttinfoname_</name>
  1654 + <field>name</field>
  1655 + <condition>&#x3d;</condition>
  1656 + <name2/>
  1657 + </key>
  1658 + <key>
  1659 + <name>iscanceled</name>
  1660 + <field>is_cancel</field>
  1661 + <condition>&#x3d;</condition>
  1662 + <name2/>
  1663 + </key>
  1664 + <value>
  1665 + <name>id</name>
  1666 + <rename>ttid</rename>
  1667 + <default/>
  1668 + <type>Integer</type>
  1669 + </value>
  1670 + </lookup>
  1671 + <cluster_schema/>
  1672 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1673 + <xloc>1011</xloc>
  1674 + <yloc>134</yloc>
  1675 + <draw>Y</draw>
  1676 + </GUI>
  1677 + </step>
  1678 +
  1679 + <step>
  1680 + <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x4e0a;&#x4e0b;&#x884c;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
  1681 + <type>DBLookup</type>
  1682 + <description/>
  1683 + <distribute>Y</distribute>
  1684 + <custom_distribution/>
  1685 + <copies>1</copies>
  1686 + <partitioning>
  1687 + <method>none</method>
  1688 + <schema_name/>
  1689 + </partitioning>
  1690 + <connection>bus_control_variable</connection>
  1691 + <cache>N</cache>
  1692 + <cache_load_all>N</cache_load_all>
  1693 + <cache_size>0</cache_size>
  1694 + <lookup>
  1695 + <schema/>
  1696 + <table>bsth_c_line_information</table>
  1697 + <orderby/>
  1698 + <fail_on_multiple>N</fail_on_multiple>
  1699 + <eat_row_on_failure>N</eat_row_on_failure>
  1700 + <key>
  1701 + <name>xlid</name>
  1702 + <field>line</field>
  1703 + <condition>&#x3d;</condition>
  1704 + <name2/>
  1705 + </key>
  1706 + <value>
  1707 + <name>up_mileage</name>
  1708 + <rename>up_mileage</rename>
  1709 + <default/>
  1710 + <type>Number</type>
  1711 + </value>
  1712 + <value>
  1713 + <name>down_mileage</name>
  1714 + <rename>down_mileage</rename>
  1715 + <default/>
  1716 + <type>Number</type>
  1717 + </value>
  1718 + <value>
  1719 + <name>up_travel_time</name>
  1720 + <rename>up_travel_time</rename>
  1721 + <default/>
  1722 + <type>Number</type>
  1723 + </value>
  1724 + <value>
  1725 + <name>down_travel_time</name>
  1726 + <rename>down_travel_time</rename>
  1727 + <default/>
  1728 + <type>Number</type>
  1729 + </value>
  1730 + </lookup>
  1731 + <cluster_schema/>
  1732 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1733 + <xloc>149</xloc>
  1734 + <yloc>581</yloc>
  1735 + <draw>Y</draw>
  1736 + </GUI>
  1737 + </step>
  1738 +
  1739 + <step>
  1740 + <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x5173;&#x8054;</name>
  1741 + <type>DBLookup</type>
  1742 + <description/>
  1743 + <distribute>Y</distribute>
  1744 + <custom_distribution/>
  1745 + <copies>1</copies>
  1746 + <partitioning>
  1747 + <method>none</method>
  1748 + <schema_name/>
  1749 + </partitioning>
  1750 + <connection>bus_control_variable</connection>
  1751 + <cache>N</cache>
  1752 + <cache_load_all>N</cache_load_all>
  1753 + <cache_size>0</cache_size>
  1754 + <lookup>
  1755 + <schema/>
  1756 + <table>bsth_c_line</table>
  1757 + <orderby/>
  1758 + <fail_on_multiple>N</fail_on_multiple>
  1759 + <eat_row_on_failure>N</eat_row_on_failure>
  1760 + <key>
  1761 + <name>xlname_</name>
  1762 + <field>name</field>
  1763 + <condition>&#x3d;</condition>
  1764 + <name2/>
  1765 + </key>
  1766 + <value>
  1767 + <name>id</name>
  1768 + <rename>xlid</rename>
  1769 + <default/>
  1770 + <type>Integer</type>
  1771 + </value>
  1772 + </lookup>
  1773 + <cluster_schema/>
  1774 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1775 + <xloc>1007</xloc>
  1776 + <yloc>43</yloc>
  1777 + <draw>Y</draw>
  1778 + </GUI>
  1779 + </step>
  1780 +
  1781 + <step>
  1782 + <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x51fa;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
  1783 + <type>DBLookup</type>
  1784 + <description/>
  1785 + <distribute>Y</distribute>
  1786 + <custom_distribution/>
  1787 + <copies>1</copies>
  1788 + <partitioning>
  1789 + <method>none</method>
  1790 + <schema_name/>
  1791 + </partitioning>
  1792 + <connection>bus_control_variable</connection>
  1793 + <cache>N</cache>
  1794 + <cache_load_all>N</cache_load_all>
  1795 + <cache_size>0</cache_size>
  1796 + <lookup>
  1797 + <schema/>
  1798 + <table>bsth_c_line_information</table>
  1799 + <orderby/>
  1800 + <fail_on_multiple>N</fail_on_multiple>
  1801 + <eat_row_on_failure>N</eat_row_on_failure>
  1802 + <key>
  1803 + <name>xlid</name>
  1804 + <field>line</field>
  1805 + <condition>&#x3d;</condition>
  1806 + <name2/>
  1807 + </key>
  1808 + <value>
  1809 + <name>up_out_timer</name>
  1810 + <rename>up_out_timer</rename>
  1811 + <default/>
  1812 + <type>Number</type>
  1813 + </value>
  1814 + <value>
  1815 + <name>up_out_mileage</name>
  1816 + <rename>up_out_mileage</rename>
  1817 + <default/>
  1818 + <type>Number</type>
  1819 + </value>
  1820 + <value>
  1821 + <name>down_out_timer</name>
  1822 + <rename>down_out_timer</rename>
  1823 + <default/>
  1824 + <type>Number</type>
  1825 + </value>
  1826 + <value>
  1827 + <name>down_out_mileage</name>
  1828 + <rename>down_out_mileage</rename>
  1829 + <default/>
  1830 + <type>Number</type>
  1831 + </value>
  1832 + </lookup>
  1833 + <cluster_schema/>
  1834 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1835 + <xloc>335</xloc>
  1836 + <yloc>763</yloc>
  1837 + <draw>Y</draw>
  1838 + </GUI>
  1839 + </step>
  1840 +
  1841 + <step>
  1842 + <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x8fdb;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
  1843 + <type>DBLookup</type>
  1844 + <description/>
  1845 + <distribute>Y</distribute>
  1846 + <custom_distribution/>
  1847 + <copies>1</copies>
  1848 + <partitioning>
  1849 + <method>none</method>
  1850 + <schema_name/>
  1851 + </partitioning>
  1852 + <connection>bus_control_variable</connection>
  1853 + <cache>N</cache>
  1854 + <cache_load_all>N</cache_load_all>
  1855 + <cache_size>0</cache_size>
  1856 + <lookup>
  1857 + <schema/>
  1858 + <table>bsth_c_line_information</table>
  1859 + <orderby/>
  1860 + <fail_on_multiple>N</fail_on_multiple>
  1861 + <eat_row_on_failure>N</eat_row_on_failure>
  1862 + <key>
  1863 + <name>xlid</name>
  1864 + <field>line</field>
  1865 + <condition>&#x3d;</condition>
  1866 + <name2/>
  1867 + </key>
  1868 + <value>
  1869 + <name>up_in_mileage</name>
  1870 + <rename>up_in_mileage</rename>
  1871 + <default/>
  1872 + <type>Number</type>
  1873 + </value>
  1874 + <value>
  1875 + <name>up_in_timer</name>
  1876 + <rename>up_in_timer</rename>
  1877 + <default/>
  1878 + <type>Number</type>
  1879 + </value>
  1880 + <value>
  1881 + <name>down_in_mileage</name>
  1882 + <rename>down_in_mileage</rename>
  1883 + <default/>
  1884 + <type>Number</type>
  1885 + </value>
  1886 + <value>
  1887 + <name>down_in_timer</name>
  1888 + <rename>down_in_timer</rename>
  1889 + <default/>
  1890 + <type>Number</type>
  1891 + </value>
  1892 + </lookup>
  1893 + <cluster_schema/>
  1894 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1895 + <xloc>553</xloc>
  1896 + <yloc>1004</yloc>
  1897 + <draw>Y</draw>
  1898 + </GUI>
  1899 + </step>
  1900 +
  1901 + <step>
  1902 + <name>&#x67e5;&#x627e;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;</name>
  1903 + <type>DBLookup</type>
  1904 + <description/>
  1905 + <distribute>Y</distribute>
  1906 + <custom_distribution/>
  1907 + <copies>1</copies>
  1908 + <partitioning>
  1909 + <method>none</method>
  1910 + <schema_name/>
  1911 + </partitioning>
  1912 + <connection>bus_control_variable</connection>
  1913 + <cache>N</cache>
  1914 + <cache_load_all>N</cache_load_all>
  1915 + <cache_size>0</cache_size>
  1916 + <lookup>
  1917 + <schema/>
  1918 + <table>bsth_c_stationroute</table>
  1919 + <orderby/>
  1920 + <fail_on_multiple>N</fail_on_multiple>
  1921 + <eat_row_on_failure>N</eat_row_on_failure>
  1922 + <key>
  1923 + <name>xlid</name>
  1924 + <field>line</field>
  1925 + <condition>&#x3d;</condition>
  1926 + <name2/>
  1927 + </key>
  1928 + <key>
  1929 + <name>sxx</name>
  1930 + <field>directions</field>
  1931 + <condition>&#x3d;</condition>
  1932 + <name2/>
  1933 + </key>
  1934 + <key>
  1935 + <name>endZdtype</name>
  1936 + <field>station_mark</field>
  1937 + <condition>&#x3d;</condition>
  1938 + <name2/>
  1939 + </key>
  1940 + <key>
  1941 + <name>destory</name>
  1942 + <field>destroy</field>
  1943 + <condition>&#x3d;</condition>
  1944 + <name2/>
  1945 + </key>
  1946 + <value>
  1947 + <name>station_name</name>
  1948 + <rename>zdzname</rename>
  1949 + <default/>
  1950 + <type>String</type>
  1951 + </value>
  1952 + <value>
  1953 + <name>station</name>
  1954 + <rename>zdzid</rename>
  1955 + <default/>
  1956 + <type>Integer</type>
  1957 + </value>
  1958 + <value>
  1959 + <name>station_code</name>
  1960 + <rename>zdzcode</rename>
  1961 + <default/>
  1962 + <type>String</type>
  1963 + </value>
  1964 + </lookup>
  1965 + <cluster_schema/>
  1966 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1967 + <xloc>280</xloc>
  1968 + <yloc>404</yloc>
  1969 + <draw>Y</draw>
  1970 + </GUI>
  1971 + </step>
  1972 +
  1973 + <step>
  1974 + <name>&#x67e5;&#x627e;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</name>
  1975 + <type>DBLookup</type>
  1976 + <description/>
  1977 + <distribute>Y</distribute>
  1978 + <custom_distribution/>
  1979 + <copies>1</copies>
  1980 + <partitioning>
  1981 + <method>none</method>
  1982 + <schema_name/>
  1983 + </partitioning>
  1984 + <connection>bus_control_variable</connection>
  1985 + <cache>N</cache>
  1986 + <cache_load_all>N</cache_load_all>
  1987 + <cache_size>0</cache_size>
  1988 + <lookup>
  1989 + <schema/>
  1990 + <table>bsth_c_stationroute</table>
  1991 + <orderby/>
  1992 + <fail_on_multiple>N</fail_on_multiple>
  1993 + <eat_row_on_failure>N</eat_row_on_failure>
  1994 + <key>
  1995 + <name>xlid</name>
  1996 + <field>line</field>
  1997 + <condition>&#x3d;</condition>
  1998 + <name2/>
  1999 + </key>
  2000 + <key>
  2001 + <name>qdzname</name>
  2002 + <field>station_name</field>
  2003 + <condition>&#x3d;</condition>
  2004 + <name2/>
  2005 + </key>
  2006 + <key>
  2007 + <name>sendZdtype</name>
  2008 + <field>station_mark</field>
  2009 + <condition>&#x3d;</condition>
  2010 + <name2/>
  2011 + </key>
  2012 + <key>
  2013 + <name>destory</name>
  2014 + <field>destroy</field>
  2015 + <condition>&#x3d;</condition>
  2016 + <name2/>
  2017 + </key>
  2018 + <value>
  2019 + <name>station</name>
  2020 + <rename>qdzid</rename>
  2021 + <default/>
  2022 + <type>Integer</type>
  2023 + </value>
  2024 + <value>
  2025 + <name>directions</name>
  2026 + <rename>sxx</rename>
  2027 + <default/>
  2028 + <type>Integer</type>
  2029 + </value>
  2030 + <value>
  2031 + <name>station_code</name>
  2032 + <rename>qdzcode</rename>
  2033 + <default/>
  2034 + <type>String</type>
  2035 + </value>
  2036 + </lookup>
  2037 + <cluster_schema/>
  2038 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2039 + <xloc>430</xloc>
  2040 + <yloc>403</yloc>
  2041 + <draw>Y</draw>
  2042 + </GUI>
  2043 + </step>
  2044 +
  2045 + <step>
  2046 + <name>&#x67e5;&#x627e;&#x8def;&#x724c;&#x5173;&#x8054;</name>
  2047 + <type>DBLookup</type>
  2048 + <description/>
  2049 + <distribute>Y</distribute>
  2050 + <custom_distribution/>
  2051 + <copies>1</copies>
  2052 + <partitioning>
  2053 + <method>none</method>
  2054 + <schema_name/>
  2055 + </partitioning>
  2056 + <connection>bus_control_variable</connection>
  2057 + <cache>N</cache>
  2058 + <cache_load_all>N</cache_load_all>
  2059 + <cache_size>0</cache_size>
  2060 + <lookup>
  2061 + <schema/>
  2062 + <table>bsth_c_s_gbi</table>
  2063 + <orderby/>
  2064 + <fail_on_multiple>N</fail_on_multiple>
  2065 + <eat_row_on_failure>N</eat_row_on_failure>
  2066 + <key>
  2067 + <name>xlid</name>
  2068 + <field>xl</field>
  2069 + <condition>&#x3d;</condition>
  2070 + <name2/>
  2071 + </key>
  2072 + <key>
  2073 + <name>lp</name>
  2074 + <field>lp_name</field>
  2075 + <condition>&#x3d;</condition>
  2076 + <name2/>
  2077 + </key>
  2078 + <key>
  2079 + <name>iscanceled</name>
  2080 + <field>is_cancel</field>
  2081 + <condition>&#x3d;</condition>
  2082 + <name2/>
  2083 + </key>
  2084 + <value>
  2085 + <name>id</name>
  2086 + <rename>lpid</rename>
  2087 + <default/>
  2088 + <type>Integer</type>
  2089 + </value>
  2090 + </lookup>
  2091 + <cluster_schema/>
  2092 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2093 + <xloc>1013</xloc>
  2094 + <yloc>265</yloc>
  2095 + <draw>Y</draw>
  2096 + </GUI>
  2097 + </step>
  2098 +
  2099 + <step>
  2100 + <name>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ebf;&#x8def;&#x65b9;&#x5411;</name>
  2101 + <type>DBLookup</type>
  2102 + <description/>
  2103 + <distribute>Y</distribute>
  2104 + <custom_distribution/>
  2105 + <copies>1</copies>
  2106 + <partitioning>
  2107 + <method>none</method>
  2108 + <schema_name/>
  2109 + </partitioning>
  2110 + <connection>bus_control_variable</connection>
  2111 + <cache>N</cache>
  2112 + <cache_load_all>N</cache_load_all>
  2113 + <cache_size>0</cache_size>
  2114 + <lookup>
  2115 + <schema/>
  2116 + <table>bsth_c_stationroute</table>
  2117 + <orderby/>
  2118 + <fail_on_multiple>N</fail_on_multiple>
  2119 + <eat_row_on_failure>N</eat_row_on_failure>
  2120 + <key>
  2121 + <name>xlid</name>
  2122 + <field>line</field>
  2123 + <condition>&#x3d;</condition>
  2124 + <name2/>
  2125 + </key>
  2126 + <key>
  2127 + <name>startZdtype_calcu</name>
  2128 + <field>station_mark</field>
  2129 + <condition>&#x3d;</condition>
  2130 + <name2/>
  2131 + </key>
  2132 + <key>
  2133 + <name>qdzname_calcu</name>
  2134 + <field>station_name</field>
  2135 + <condition>&#x3d;</condition>
  2136 + <name2/>
  2137 + </key>
  2138 + <key>
  2139 + <name>destory</name>
  2140 + <field>destroy</field>
  2141 + <condition>&#x3d;</condition>
  2142 + <name2/>
  2143 + </key>
  2144 + <value>
  2145 + <name>directions</name>
  2146 + <rename>sxx</rename>
  2147 + <default/>
  2148 + <type>String</type>
  2149 + </value>
  2150 + </lookup>
  2151 + <cluster_schema/>
  2152 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2153 + <xloc>548</xloc>
  2154 + <yloc>610</yloc>
  2155 + <draw>Y</draw>
  2156 + </GUI>
  2157 + </step>
  2158 +
  2159 + <step>
  2160 + <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>
  2161 + <type>DBLookup</type>
  2162 + <description/>
  2163 + <distribute>Y</distribute>
  2164 + <custom_distribution/>
  2165 + <copies>1</copies>
  2166 + <partitioning>
  2167 + <method>none</method>
  2168 + <schema_name/>
  2169 + </partitioning>
  2170 + <connection>bus_control_variable</connection>
  2171 + <cache>Y</cache>
  2172 + <cache_load_all>Y</cache_load_all>
  2173 + <cache_size>0</cache_size>
  2174 + <lookup>
  2175 + <schema/>
  2176 + <table>bsth_c_stationroute</table>
  2177 + <orderby/>
  2178 + <fail_on_multiple>N</fail_on_multiple>
  2179 + <eat_row_on_failure>N</eat_row_on_failure>
  2180 + <key>
  2181 + <name>xlid</name>
  2182 + <field>line</field>
  2183 + <condition>&#x3d;</condition>
  2184 + <name2/>
  2185 + </key>
  2186 + <key>
  2187 + <name>endZdtype_calcu</name>
  2188 + <field>station_mark</field>
  2189 + <condition>&#x3d;</condition>
  2190 + <name2/>
  2191 + </key>
  2192 + <key>
  2193 + <name>sxx</name>
  2194 + <field>directions</field>
  2195 + <condition>&#x3d;</condition>
  2196 + <name2/>
  2197 + </key>
  2198 + <key>
  2199 + <name>destory</name>
  2200 + <field>destroy</field>
  2201 + <condition>&#x3d;</condition>
  2202 + <name2/>
  2203 + </key>
  2204 + <value>
  2205 + <name>station_name</name>
  2206 + <rename>zdzname_calcu</rename>
  2207 + <default/>
  2208 + <type>Integer</type>
  2209 + </value>
  2210 + </lookup>
  2211 + <cluster_schema/>
  2212 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2213 + <xloc>550</xloc>
  2214 + <yloc>701</yloc>
  2215 + <draw>Y</draw>
  2216 + </GUI>
  2217 + </step>
  2218 +
  2219 + <step>
  2220 + <name>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</name>
  2221 + <type>DBLookup</type>
  2222 + <description/>
  2223 + <distribute>Y</distribute>
  2224 + <custom_distribution/>
  2225 + <copies>1</copies>
  2226 + <partitioning>
  2227 + <method>none</method>
  2228 + <schema_name/>
  2229 + </partitioning>
  2230 + <connection>bus_control_variable</connection>
  2231 + <cache>N</cache>
  2232 + <cache_load_all>N</cache_load_all>
  2233 + <cache_size>0</cache_size>
  2234 + <lookup>
  2235 + <schema/>
  2236 + <table>bsth_c_stationroute</table>
  2237 + <orderby/>
  2238 + <fail_on_multiple>N</fail_on_multiple>
  2239 + <eat_row_on_failure>N</eat_row_on_failure>
  2240 + <key>
  2241 + <name>xlid</name>
  2242 + <field>line</field>
  2243 + <condition>&#x3d;</condition>
  2244 + <name2/>
  2245 + </key>
  2246 + <key>
  2247 + <name>zdzname_calcu</name>
  2248 + <field>station_name</field>
  2249 + <condition>&#x3d;</condition>
  2250 + <name2/>
  2251 + </key>
  2252 + <key>
  2253 + <name>startZdtype_calcu</name>
  2254 + <field>station_mark</field>
  2255 + <condition>&#x3d;</condition>
  2256 + <name2/>
  2257 + </key>
  2258 + <key>
  2259 + <name>destory</name>
  2260 + <field>destroy</field>
  2261 + <condition>&#x3d;</condition>
  2262 + <name2/>
  2263 + </key>
  2264 + <value>
  2265 + <name>directions</name>
  2266 + <rename>sxx2</rename>
  2267 + <default/>
  2268 + <type>Integer</type>
  2269 + </value>
  2270 + <value>
  2271 + <name>station</name>
  2272 + <rename>qdzid</rename>
  2273 + <default/>
  2274 + <type>Integer</type>
  2275 + </value>
  2276 + <value>
  2277 + <name>station_code</name>
  2278 + <rename>qdzcode</rename>
  2279 + <default/>
  2280 + <type>String</type>
  2281 + </value>
  2282 + <value>
  2283 + <name>station_name</name>
  2284 + <rename>qname</rename>
  2285 + <default/>
  2286 + <type>String</type>
  2287 + </value>
  2288 + </lookup>
  2289 + <cluster_schema/>
  2290 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2291 + <xloc>551</xloc>
  2292 + <yloc>782</yloc>
  2293 + <draw>Y</draw>
  2294 + </GUI>
  2295 + </step>
  2296 +
  2297 + <step>
  2298 + <name>&#x6b63;&#x5e38;&#x73ed;&#x6b21;_&#x5904;&#x7406;&#x6570;&#x636e;</name>
  2299 + <type>ScriptValueMod</type>
  2300 + <description/>
  2301 + <distribute>Y</distribute>
  2302 + <custom_distribution/>
  2303 + <copies>1</copies>
  2304 + <partitioning>
  2305 + <method>none</method>
  2306 + <schema_name/>
  2307 + </partitioning>
  2308 + <compatible>N</compatible>
  2309 + <optimizationLevel>9</optimizationLevel>
  2310 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  2311 + <jsScript_name>Script 1</jsScript_name>
  2312 + <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>
  2313 + </jsScript> </jsScripts> <fields> <field> <name>sendZdtype</name>
  2314 + <rename>sendZdtype</rename>
  2315 + <type>String</type>
  2316 + <length>-1</length>
  2317 + <precision>-1</precision>
  2318 + <replace>N</replace>
  2319 + </field> <field> <name>endZdtype</name>
  2320 + <rename>endZdtype</rename>
  2321 + <type>String</type>
  2322 + <length>-1</length>
  2323 + <precision>-1</precision>
  2324 + <replace>N</replace>
  2325 + </field> <field> <name>destory</name>
  2326 + <rename>destory</rename>
  2327 + <type>Integer</type>
  2328 + <length>-1</length>
  2329 + <precision>-1</precision>
  2330 + <replace>N</replace>
  2331 + </field> </fields> <cluster_schema/>
  2332 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2333 + <xloc>588</xloc>
  2334 + <yloc>403</yloc>
  2335 + <draw>Y</draw>
  2336 + </GUI>
  2337 + </step>
  2338 +
  2339 + <step>
  2340 + <name>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</name>
  2341 + <type>Dummy</type>
  2342 + <description/>
  2343 + <distribute>Y</distribute>
  2344 + <custom_distribution/>
  2345 + <copies>1</copies>
  2346 + <partitioning>
  2347 + <method>none</method>
  2348 + <schema_name/>
  2349 + </partitioning>
  2350 + <cluster_schema/>
  2351 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2352 + <xloc>725</xloc>
  2353 + <yloc>404</yloc>
  2354 + <draw>Y</draw>
  2355 + </GUI>
  2356 + </step>
  2357 +
  2358 + <step>
  2359 + <name>&#x6dfb;&#x52a0;&#x53d1;&#x8f66;&#x987a;&#x5e8f;&#x53f7;</name>
  2360 + <type>GroupBy</type>
  2361 + <description/>
  2362 + <distribute>Y</distribute>
  2363 + <custom_distribution/>
  2364 + <copies>1</copies>
  2365 + <partitioning>
  2366 + <method>none</method>
  2367 + <schema_name/>
  2368 + </partitioning>
  2369 + <all_rows>Y</all_rows>
  2370 + <ignore_aggregate>N</ignore_aggregate>
  2371 + <field_ignore/>
  2372 + <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
  2373 + <prefix>grp</prefix>
  2374 + <add_linenr>Y</add_linenr>
  2375 + <linenr_fieldname>fcno</linenr_fieldname>
  2376 + <give_back_row>N</give_back_row>
  2377 + <group>
  2378 + <field>
  2379 + <name>lp</name>
  2380 + </field>
  2381 + </group>
  2382 + <fields>
  2383 + </fields>
  2384 + <cluster_schema/>
  2385 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2386 + <xloc>442</xloc>
  2387 + <yloc>44</yloc>
  2388 + <draw>Y</draw>
  2389 + </GUI>
  2390 + </step>
  2391 +
  2392 + <step>
  2393 + <name>&#x6dfb;&#x52a0;&#x5bf9;&#x5e94;&#x73ed;&#x6b21;&#x6570;</name>
  2394 + <type>GroupBy</type>
  2395 + <description/>
  2396 + <distribute>Y</distribute>
  2397 + <custom_distribution/>
  2398 + <copies>1</copies>
  2399 + <partitioning>
  2400 + <method>none</method>
  2401 + <schema_name/>
  2402 + </partitioning>
  2403 + <all_rows>Y</all_rows>
  2404 + <ignore_aggregate>N</ignore_aggregate>
  2405 + <field_ignore/>
  2406 + <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
  2407 + <prefix>grp</prefix>
  2408 + <add_linenr>Y</add_linenr>
  2409 + <linenr_fieldname>bcs</linenr_fieldname>
  2410 + <give_back_row>N</give_back_row>
  2411 + <group>
  2412 + </group>
  2413 + <fields>
  2414 + </fields>
  2415 + <cluster_schema/>
  2416 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2417 + <xloc>692</xloc>
  2418 + <yloc>44</yloc>
  2419 + <draw>Y</draw>
  2420 + </GUI>
  2421 + </step>
  2422 +
  2423 + <step>
  2424 + <name>&#x73ed;&#x6b21;&#x6570;&#x636e;&#x8303;&#x5f0f;&#x5316;</name>
  2425 + <type>Normaliser</type>
  2426 + <description/>
  2427 + <distribute>Y</distribute>
  2428 + <custom_distribution/>
  2429 + <copies>1</copies>
  2430 + <partitioning>
  2431 + <method>none</method>
  2432 + <schema_name/>
  2433 + </partitioning>
  2434 + <typefield>&#x7ad9;&#x70b9;&#x540d;&#x79f0;</typefield>
  2435 + <fields> </fields> <cluster_schema/>
  2436 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2437 + <xloc>248</xloc>
  2438 + <yloc>44</yloc>
  2439 + <draw>Y</draw>
  2440 + </GUI>
  2441 + </step>
  2442 +
  2443 + <step>
  2444 + <name>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178;</name>
  2445 + <type>ValueMapper</type>
  2446 + <description/>
  2447 + <distribute>Y</distribute>
  2448 + <custom_distribution/>
  2449 + <copies>1</copies>
  2450 + <partitioning>
  2451 + <method>none</method>
  2452 + <schema_name/>
  2453 + </partitioning>
  2454 + <field_to_use>bctype</field_to_use>
  2455 + <target_field>bctype_code</target_field>
  2456 + <non_match_default>&#x672a;&#x77e5;&#x7c7b;&#x578b;</non_match_default>
  2457 + <fields>
  2458 + <field>
  2459 + <source_value>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</source_value>
  2460 + <target_value>normal</target_value>
  2461 + </field>
  2462 + <field>
  2463 + <source_value>&#x51fa;&#x573a;</source_value>
  2464 + <target_value>out</target_value>
  2465 + </field>
  2466 + <field>
  2467 + <source_value>&#x8fdb;&#x573a;</source_value>
  2468 + <target_value>in</target_value>
  2469 + </field>
  2470 + <field>
  2471 + <source_value>&#x52a0;&#x6cb9;</source_value>
  2472 + <target_value>oil</target_value>
  2473 + </field>
  2474 + <field>
  2475 + <source_value>&#x4e34;&#x52a0;</source_value>
  2476 + <target_value>temp</target_value>
  2477 + </field>
  2478 + <field>
  2479 + <source_value>&#x533a;&#x95f4;</source_value>
  2480 + <target_value>region</target_value>
  2481 + </field>
  2482 + <field>
  2483 + <source_value>&#x653e;&#x7a7a;</source_value>
  2484 + <target_value>venting</target_value>
  2485 + </field>
  2486 + <field>
  2487 + <source_value>&#x653e;&#x5927;&#x7ad9;</source_value>
  2488 + <target_value>major</target_value>
  2489 + </field>
  2490 + </fields>
  2491 + <cluster_schema/>
  2492 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2493 + <xloc>149</xloc>
  2494 + <yloc>491</yloc>
  2495 + <draw>Y</draw>
  2496 + </GUI>
  2497 + </step>
  2498 +
  2499 + <step>
  2500 + <name>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 2</name>
  2501 + <type>ValueMapper</type>
  2502 + <description/>
  2503 + <distribute>Y</distribute>
  2504 + <custom_distribution/>
  2505 + <copies>1</copies>
  2506 + <partitioning>
  2507 + <method>none</method>
  2508 + <schema_name/>
  2509 + </partitioning>
  2510 + <field_to_use>bctype</field_to_use>
  2511 + <target_field>bctype_code</target_field>
  2512 + <non_match_default>&#x672a;&#x77e5;&#x7c7b;&#x578b;</non_match_default>
  2513 + <fields>
  2514 + <field>
  2515 + <source_value>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</source_value>
  2516 + <target_value>normal</target_value>
  2517 + </field>
  2518 + <field>
  2519 + <source_value>&#x51fa;&#x573a;</source_value>
  2520 + <target_value>out</target_value>
  2521 + </field>
  2522 + <field>
  2523 + <source_value>&#x8fdb;&#x573a;</source_value>
  2524 + <target_value>in</target_value>
  2525 + </field>
  2526 + <field>
  2527 + <source_value>&#x52a0;&#x6cb9;</source_value>
  2528 + <target_value>oil</target_value>
  2529 + </field>
  2530 + <field>
  2531 + <source_value>&#x4e34;&#x52a0;</source_value>
  2532 + <target_value>temp</target_value>
  2533 + </field>
  2534 + <field>
  2535 + <source_value>&#x533a;&#x95f4;</source_value>
  2536 + <target_value>region</target_value>
  2537 + </field>
  2538 + <field>
  2539 + <source_value>&#x653e;&#x7a7a;</source_value>
  2540 + <target_value>venting</target_value>
  2541 + </field>
  2542 + <field>
  2543 + <source_value>&#x653e;&#x5927;&#x7ad9;</source_value>
  2544 + <target_value>major</target_value>
  2545 + </field>
  2546 + </fields>
  2547 + <cluster_schema/>
  2548 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2549 + <xloc>333</xloc>
  2550 + <yloc>681</yloc>
  2551 + <draw>Y</draw>
  2552 + </GUI>
  2553 + </step>
  2554 +
  2555 + <step>
  2556 + <name>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 3</name>
  2557 + <type>ValueMapper</type>
  2558 + <description/>
  2559 + <distribute>Y</distribute>
  2560 + <custom_distribution/>
  2561 + <copies>1</copies>
  2562 + <partitioning>
  2563 + <method>none</method>
  2564 + <schema_name/>
  2565 + </partitioning>
  2566 + <field_to_use>bctype</field_to_use>
  2567 + <target_field>bctype_code</target_field>
  2568 + <non_match_default>&#x672a;&#x77e5;&#x7c7b;&#x578b;</non_match_default>
  2569 + <fields>
  2570 + <field>
  2571 + <source_value>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</source_value>
  2572 + <target_value>normal</target_value>
  2573 + </field>
  2574 + <field>
  2575 + <source_value>&#x51fa;&#x573a;</source_value>
  2576 + <target_value>out</target_value>
  2577 + </field>
  2578 + <field>
  2579 + <source_value>&#x8fdb;&#x573a;</source_value>
  2580 + <target_value>in</target_value>
  2581 + </field>
  2582 + <field>
  2583 + <source_value>&#x52a0;&#x6cb9;</source_value>
  2584 + <target_value>oil</target_value>
  2585 + </field>
  2586 + <field>
  2587 + <source_value>&#x4e34;&#x52a0;</source_value>
  2588 + <target_value>temp</target_value>
  2589 + </field>
  2590 + <field>
  2591 + <source_value>&#x533a;&#x95f4;</source_value>
  2592 + <target_value>region</target_value>
  2593 + </field>
  2594 + <field>
  2595 + <source_value>&#x653e;&#x7a7a;</source_value>
  2596 + <target_value>venting</target_value>
  2597 + </field>
  2598 + <field>
  2599 + <source_value>&#x653e;&#x5927;&#x7ad9;</source_value>
  2600 + <target_value>major</target_value>
  2601 + </field>
  2602 + </fields>
  2603 + <cluster_schema/>
  2604 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2605 + <xloc>551</xloc>
  2606 + <yloc>928</yloc>
  2607 + <draw>Y</draw>
  2608 + </GUI>
  2609 + </step>
  2610 +
  2611 + <step>
  2612 + <name>&#x7c7b;&#x578b;&#x4fee;&#x6b63;</name>
  2613 + <type>SelectValues</type>
  2614 + <description/>
  2615 + <distribute>Y</distribute>
  2616 + <custom_distribution/>
  2617 + <copies>1</copies>
  2618 + <partitioning>
  2619 + <method>none</method>
  2620 + <schema_name/>
  2621 + </partitioning>
  2622 + <fields> <select_unspecified>N</select_unspecified>
  2623 + <meta> <name>jhlc</name>
  2624 + <rename>jhlc</rename>
  2625 + <type>Number</type>
  2626 + <length>-2</length>
  2627 + <precision>-2</precision>
  2628 + <conversion_mask/>
  2629 + <date_format_lenient>false</date_format_lenient>
  2630 + <date_format_locale/>
  2631 + <date_format_timezone/>
  2632 + <lenient_string_to_number>false</lenient_string_to_number>
  2633 + <encoding/>
  2634 + <decimal_symbol/>
  2635 + <grouping_symbol/>
  2636 + <currency_symbol/>
  2637 + <storage_type/>
  2638 + </meta> <meta> <name>bcsj</name>
  2639 + <rename>bcsj</rename>
  2640 + <type>Integer</type>
  2641 + <length>-2</length>
  2642 + <precision>-2</precision>
  2643 + <conversion_mask/>
  2644 + <date_format_lenient>false</date_format_lenient>
  2645 + <date_format_locale/>
  2646 + <date_format_timezone/>
  2647 + <lenient_string_to_number>false</lenient_string_to_number>
  2648 + <encoding/>
  2649 + <decimal_symbol/>
  2650 + <grouping_symbol/>
  2651 + <currency_symbol/>
  2652 + <storage_type/>
  2653 + </meta> </fields> <cluster_schema/>
  2654 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2655 + <xloc>146</xloc>
  2656 + <yloc>768</yloc>
  2657 + <draw>Y</draw>
  2658 + </GUI>
  2659 + </step>
  2660 +
  2661 + <step>
  2662 + <name>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 2</name>
  2663 + <type>SelectValues</type>
  2664 + <description/>
  2665 + <distribute>Y</distribute>
  2666 + <custom_distribution/>
  2667 + <copies>1</copies>
  2668 + <partitioning>
  2669 + <method>none</method>
  2670 + <schema_name/>
  2671 + </partitioning>
  2672 + <fields> <select_unspecified>N</select_unspecified>
  2673 + <meta> <name>out_mileage</name>
  2674 + <rename>out_mileage</rename>
  2675 + <type>Number</type>
  2676 + <length>-2</length>
  2677 + <precision>-2</precision>
  2678 + <conversion_mask/>
  2679 + <date_format_lenient>false</date_format_lenient>
  2680 + <date_format_locale/>
  2681 + <date_format_timezone/>
  2682 + <lenient_string_to_number>false</lenient_string_to_number>
  2683 + <encoding/>
  2684 + <decimal_symbol/>
  2685 + <grouping_symbol/>
  2686 + <currency_symbol/>
  2687 + <storage_type/>
  2688 + </meta> <meta> <name>out_time</name>
  2689 + <rename>out_time</rename>
  2690 + <type>Integer</type>
  2691 + <length>-2</length>
  2692 + <precision>-2</precision>
  2693 + <conversion_mask/>
  2694 + <date_format_lenient>false</date_format_lenient>
  2695 + <date_format_locale/>
  2696 + <date_format_timezone/>
  2697 + <lenient_string_to_number>false</lenient_string_to_number>
  2698 + <encoding/>
  2699 + <decimal_symbol/>
  2700 + <grouping_symbol/>
  2701 + <currency_symbol/>
  2702 + <storage_type/>
  2703 + </meta> <meta> <name>sxx</name>
  2704 + <rename>sxx</rename>
  2705 + <type>Integer</type>
  2706 + <length>-2</length>
  2707 + <precision>-2</precision>
  2708 + <conversion_mask/>
  2709 + <date_format_lenient>false</date_format_lenient>
  2710 + <date_format_locale/>
  2711 + <date_format_timezone/>
  2712 + <lenient_string_to_number>false</lenient_string_to_number>
  2713 + <encoding/>
  2714 + <decimal_symbol/>
  2715 + <grouping_symbol/>
  2716 + <currency_symbol/>
  2717 + <storage_type/>
  2718 + </meta> </fields> <cluster_schema/>
  2719 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2720 + <xloc>338</xloc>
  2721 + <yloc>1008</yloc>
  2722 + <draw>Y</draw>
  2723 + </GUI>
  2724 + </step>
  2725 +
  2726 + <step>
  2727 + <name>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 3</name>
  2728 + <type>SelectValues</type>
  2729 + <description/>
  2730 + <distribute>Y</distribute>
  2731 + <custom_distribution/>
  2732 + <copies>1</copies>
  2733 + <partitioning>
  2734 + <method>none</method>
  2735 + <schema_name/>
  2736 + </partitioning>
  2737 + <fields> <select_unspecified>N</select_unspecified>
  2738 + <meta> <name>parade_mileage</name>
  2739 + <rename>parade_mileage</rename>
  2740 + <type>Number</type>
  2741 + <length>-2</length>
  2742 + <precision>-2</precision>
  2743 + <conversion_mask/>
  2744 + <date_format_lenient>false</date_format_lenient>
  2745 + <date_format_locale/>
  2746 + <date_format_timezone/>
  2747 + <lenient_string_to_number>false</lenient_string_to_number>
  2748 + <encoding/>
  2749 + <decimal_symbol/>
  2750 + <grouping_symbol/>
  2751 + <currency_symbol/>
  2752 + <storage_type/>
  2753 + </meta> <meta> <name>parade_time</name>
  2754 + <rename>parade_time</rename>
  2755 + <type>Integer</type>
  2756 + <length>-2</length>
  2757 + <precision>-2</precision>
  2758 + <conversion_mask/>
  2759 + <date_format_lenient>false</date_format_lenient>
  2760 + <date_format_locale/>
  2761 + <date_format_timezone/>
  2762 + <lenient_string_to_number>false</lenient_string_to_number>
  2763 + <encoding/>
  2764 + <decimal_symbol/>
  2765 + <grouping_symbol/>
  2766 + <currency_symbol/>
  2767 + <storage_type/>
  2768 + </meta> <meta> <name>sxx2</name>
  2769 + <rename>sxx2</rename>
  2770 + <type>Integer</type>
  2771 + <length>-2</length>
  2772 + <precision>-2</precision>
  2773 + <conversion_mask/>
  2774 + <date_format_lenient>false</date_format_lenient>
  2775 + <date_format_locale/>
  2776 + <date_format_timezone/>
  2777 + <lenient_string_to_number>false</lenient_string_to_number>
  2778 + <encoding/>
  2779 + <decimal_symbol/>
  2780 + <grouping_symbol/>
  2781 + <currency_symbol/>
  2782 + <storage_type/>
  2783 + </meta> </fields> <cluster_schema/>
  2784 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2785 + <xloc>847</xloc>
  2786 + <yloc>1003</yloc>
  2787 + <draw>Y</draw>
  2788 + </GUI>
  2789 + </step>
  2790 +
  2791 + <step>
  2792 + <name>&#x8ba1;&#x7b97;&#x73ed;&#x6b21;&#x7c7b;&#x578b;</name>
  2793 + <type>ValueMapper</type>
  2794 + <description/>
  2795 + <distribute>Y</distribute>
  2796 + <custom_distribution/>
  2797 + <copies>1</copies>
  2798 + <partitioning>
  2799 + <method>none</method>
  2800 + <schema_name/>
  2801 + </partitioning>
  2802 + <field_to_use>qdzname</field_to_use>
  2803 + <target_field>bctype</target_field>
  2804 + <non_match_default>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</non_match_default>
  2805 + <fields>
  2806 + <field>
  2807 + <source_value>&#x51fa;&#x573a;</source_value>
  2808 + <target_value>&#x51fa;&#x573a;</target_value>
  2809 + </field>
  2810 + <field>
  2811 + <source_value>&#x8fdb;&#x573a;</source_value>
  2812 + <target_value>&#x8fdb;&#x573a;</target_value>
  2813 + </field>
  2814 + </fields>
  2815 + <cluster_schema/>
  2816 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2817 + <xloc>1014</xloc>
  2818 + <yloc>401</yloc>
  2819 + <draw>Y</draw>
  2820 + </GUI>
  2821 + </step>
  2822 +
  2823 + <step>
  2824 + <name>&#x8bb0;&#x5f55;&#x5173;&#x8054; &#x28;&#x7b1b;&#x5361;&#x5c14;&#x8f93;&#x51fa;&#x29;</name>
  2825 + <type>JoinRows</type>
  2826 + <description/>
  2827 + <distribute>Y</distribute>
  2828 + <custom_distribution/>
  2829 + <copies>1</copies>
  2830 + <partitioning>
  2831 + <method>none</method>
  2832 + <schema_name/>
  2833 + </partitioning>
  2834 + <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
  2835 + <prefix>out</prefix>
  2836 + <cache_size>500</cache_size>
  2837 + <main/>
  2838 + <compare>
  2839 +<condition>
  2840 + <negated>N</negated>
  2841 + <leftvalue/>
  2842 + <function>&#x3d;</function>
  2843 + <rightvalue/>
  2844 + </condition>
  2845 + </compare>
  2846 + <cluster_schema/>
  2847 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2848 + <xloc>310</xloc>
  2849 + <yloc>133</yloc>
  2850 + <draw>Y</draw>
  2851 + </GUI>
  2852 + </step>
  2853 +
  2854 + <step>
  2855 + <name>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;&#xff08;&#x53d1;&#x8f66;&#x65f6;&#x95f4;&#x4e3a;&#x7a7a;&#xff09;</name>
  2856 + <type>FilterRows</type>
  2857 + <description/>
  2858 + <distribute>Y</distribute>
  2859 + <custom_distribution/>
  2860 + <copies>1</copies>
  2861 + <partitioning>
  2862 + <method>none</method>
  2863 + <schema_name/>
  2864 + </partitioning>
  2865 +<send_true_to/>
  2866 +<send_false_to/>
  2867 + <compare>
  2868 +<condition>
  2869 + <negated>N</negated>
  2870 + <leftvalue>sendtime</leftvalue>
  2871 + <function>IS NOT NULL</function>
  2872 + <rightvalue/>
  2873 + </condition>
  2874 + </compare>
  2875 + <cluster_schema/>
  2876 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2877 + <xloc>571</xloc>
  2878 + <yloc>44</yloc>
  2879 + <draw>Y</draw>
  2880 + </GUI>
  2881 + </step>
  2882 +
  2883 + <step>
  2884 + <name>&#x8fdb;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x8d77;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</name>
  2885 + <type>ScriptValueMod</type>
  2886 + <description/>
  2887 + <distribute>Y</distribute>
  2888 + <custom_distribution/>
  2889 + <copies>1</copies>
  2890 + <partitioning>
  2891 + <method>none</method>
  2892 + <schema_name/>
  2893 + </partitioning>
  2894 + <compatible>N</compatible>
  2895 + <optimizationLevel>9</optimizationLevel>
  2896 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  2897 + <jsScript_name>Script 1</jsScript_name>
  2898 + <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>
  2899 + </jsScript> </jsScripts> <fields> <field> <name>qdzname_calcu</name>
  2900 + <rename>qdzname_calcu</rename>
  2901 + <type>String</type>
  2902 + <length>-1</length>
  2903 + <precision>-1</precision>
  2904 + <replace>N</replace>
  2905 + </field> <field> <name>startZdtype_calcu</name>
  2906 + <rename>startZdtype_calcu</rename>
  2907 + <type>String</type>
  2908 + <length>-1</length>
  2909 + <precision>-1</precision>
  2910 + <replace>N</replace>
  2911 + </field> <field> <name>endZdtype_calcu</name>
  2912 + <rename>endZdtype_calcu</rename>
  2913 + <type>String</type>
  2914 + <length>-1</length>
  2915 + <precision>-1</precision>
  2916 + <replace>N</replace>
  2917 + </field> <field> <name>destory</name>
  2918 + <rename>destory</rename>
  2919 + <type>Integer</type>
  2920 + <length>-1</length>
  2921 + <precision>-1</precision>
  2922 + <replace>N</replace>
  2923 + </field> </fields> <cluster_schema/>
  2924 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2925 + <xloc>754</xloc>
  2926 + <yloc>610</yloc>
  2927 + <draw>Y</draw>
  2928 + </GUI>
  2929 + </step>
  2930 +
  2931 + <step>
  2932 + <name>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</name>
  2933 + <type>Dummy</type>
  2934 + <description/>
  2935 + <distribute>Y</distribute>
  2936 + <custom_distribution/>
  2937 + <copies>1</copies>
  2938 + <partitioning>
  2939 + <method>none</method>
  2940 + <schema_name/>
  2941 + </partitioning>
  2942 + <cluster_schema/>
  2943 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2944 + <xloc>997</xloc>
  2945 + <yloc>606</yloc>
  2946 + <draw>Y</draw>
  2947 + </GUI>
  2948 + </step>
  2949 +
  2950 + <step_error_handling>
  2951 + <error>
  2952 + <source_step>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail</source_step>
  2953 + <target_step/>
  2954 + <is_enabled>Y</is_enabled>
  2955 + <nr_valuename>c1</nr_valuename>
  2956 + <descriptions_valuename>c2</descriptions_valuename>
  2957 + <fields_valuename>c3</fields_valuename>
  2958 + <codes_valuename>c4</codes_valuename>
  2959 + <max_errors/>
  2960 + <max_pct_errors/>
  2961 + <min_pct_rows/>
  2962 + </error>
  2963 + </step_error_handling>
  2964 + <slave-step-copy-partition-distribution>
  2965 +</slave-step-copy-partition-distribution>
  2966 + <slave_transformation>N</slave_transformation>
  2967 +
  2968 +</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;&#x51fa;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;&#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;&#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;if &#x28;sxx &#x3d;&#x3d; 0&#x29; &#x7b; &#x2f;&#x2f; &#x4e0a;&#x884c;&#xa; jhlc &#x3d; up_mileage&#x3b;&#xa; bcsj &#x3d; up_travel_time&#x3b;&#xa;&#x7d; else &#x7b; &#x2f;&#x2f; sxx &#x3d;&#x3d; 1 &#x4e0b;&#x884c;&#xa; jhlc &#x3d; down_mileage&#x3b;&#xa; bcsj &#x3d; down_travel_time&#x3b;&#xa;&#x7d;</jsScript_script>
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;&#x4e2d;&#x7684;&#x6570;&#x5b57;&#xa;qdzname &#x3d; qdzname.replace&#x28;&#x2f;&#x5c;d&#x2b;&#x2f;g,&#x27;&#x27;&#x29;&#x3b;&#xa;&#xa;&#x2f;&#x2f; sendtime&#x5904;&#x7406;&#xff0c;hhmm&#xff0c;hh&#x3a;mm&#xff0c;hh,mm&#xa;var sendtime_calcu&#x3b;&#xa;if &#x28;sendtime.length &#x3d;&#x3d; 5&#x29; &#x7b; &#x2f;&#x2f; &#x6700;&#x957f;&#x683c;&#x5f0f;&#xff0c;&#x5305;&#x62ec;&#x5206;&#x9694;&#x7b26;&#xff0c;&#x7edf;&#x4e00;&#x628a;&#x5206;&#x9694;&#x7b26;&#x66ff;&#x6362;&#x6210;&#x5192;&#x53f7;&#xa; sendtime_calcu &#x3d; sendtime.substr&#x28;0, 2&#x29; &#x2b; &#x22;&#x3a;&#x22; &#x2b; sendtime.substr&#x28;3, 2&#x29;&#x3b;&#xa;&#x7d; else if &#x28;sendtime.length &#x3d;&#x3d; 4&#x29; &#x7b;&#xa; if &#x28;sendtime.indexOf&#x28;&#x22;&#x3a;&#x22;&#x29; &#x3e; 0&#x29; &#x7b; &#x2f;&#x2f; &#x5192;&#x53f7;&#x5206;&#x9694;&#xff0c;&#x65e0;&#x9700;&#x4fee;&#x6539;&#xa; sendtime_calcu &#x3d; sendtime&#x3b;&#xa; &#x7d; else if &#x28;sendtime.indexOf&#x28;&#x22;,&#x22;&#x29; &#x3e; 0&#x29; &#x7b; &#x2f;&#x2f; &#x9017;&#x53f7;&#x5206;&#x9694;&#xff0c;&#x6539;&#x6210;&#x5192;&#x53f7;&#x5206;&#x9694;&#xa; sendtime_calcu &#x3d; sendtime.substr&#x28;0, 1&#x29; &#x2b; &#x22;&#x3a;&#x22; &#x2b; sendtime.substr&#x28;2, 2&#x29;&#x3b;&#xa; &#x7d; else &#x7b; &#x2f;&#x2f; &#x65e0;&#x5206;&#x9694;&#x7b26;&#xff0c;&#x6539;&#x6210;&#x5192;&#x53f7;&#x5206;&#x9694;&#xa; sendtime_calcu &#x3d; sendtime.substr&#x28;0, 2&#x29; &#x2b; &#x22;&#x3a;&#x22; &#x2b; sendtime.substr&#x28;2, 2&#x29;&#x3b;&#xa; &#x7d;&#xa;&#x7d; else if &#x28;sendtime.length &#x3d;&#x3d; 3&#x29; &#x7b; &#x2f;&#x2f; &#x65e0;&#x5206;&#x9694;&#x7b26;&#xff0c;&#x6539;&#x6210;&#x5192;&#x53f7;&#x5206;&#x9694;&#xa; sendtime_calcu &#x3d; sendtime.substr&#x28;0, 1&#x29; &#x2b; &#x22;&#x3a;&#x22; &#x2b; sendtime.substr&#x28;1, 2&#x29;&#x3b;&#xa;&#x7d;&#xa;&#xa;&#x2f;&#x2f; &#x8bbe;&#x7f6e;&#x5206;&#x73ed;&#xa;var isfb &#x3d; 0&#x3b;&#xa;&#xa;&#x2f;&#x2f; &#x8bbe;&#x7f6e;isCanceled&#xa;var iscanceled &#x3d; 0&#x3b;</jsScript_script>
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> </fields> <cluster_schema/>
857   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
858   - <xloc>788</xloc>
859   - <yloc>44</yloc>
860   - <draw>Y</draw>
861   - </GUI>
862   - </step>
863   -
864   - <step>
865   - <name>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</name>
866   - <type>SelectValues</type>
867   - <description/>
868   - <distribute>Y</distribute>
869   - <custom_distribution/>
870   - <copies>1</copies>
871   - <partitioning>
872   - <method>none</method>
873   - <schema_name/>
874   - </partitioning>
875   - <fields> <field> <name>&#x8def;&#x724c;</name>
876   - <rename>lp</rename>
877   - <length>-2</length>
878   - <precision>-2</precision>
879   - </field> <field> <name>&#x7ad9;&#x70b9;&#x540d;&#x79f0;</name>
880   - <rename>qdzname</rename>
881   - <length>-2</length>
882   - <precision>-2</precision>
883   - </field> <field> <name>&#x53d1;&#x8f66;&#x65f6;&#x95f4;</name>
884   - <rename>sendtime</rename>
885   - <length>-2</length>
886   - <precision>-2</precision>
887   - </field> <select_unspecified>Y</select_unspecified>
888   - </fields> <cluster_schema/>
889   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
890   - <xloc>444</xloc>
891   - <yloc>131</yloc>
892   - <draw>Y</draw>
893   - </GUI>
894   - </step>
895   -
896   - <step>
897   - <name>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;1</name>
898   - <type>FilterRows</type>
899   - <description/>
900   - <distribute>Y</distribute>
901   - <custom_distribution/>
902   - <copies>1</copies>
903   - <partitioning>
904   - <method>none</method>
905   - <schema_name/>
906   - </partitioning>
907   -<send_true_to>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</send_true_to>
908   -<send_false_to>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</send_false_to>
909   - <compare>
910   -<condition>
911   - <negated>N</negated>
912   - <leftvalue>bctype</leftvalue>
913   - <function>&#x3d;</function>
914   - <rightvalue/>
915   - <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>
916   - </compare>
917   - <cluster_schema/>
918   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
919   - <xloc>860</xloc>
920   - <yloc>401</yloc>
921   - <draw>Y</draw>
922   - </GUI>
923   - </step>
924   -
925   - <step>
926   - <name>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</name>
927   - <type>FilterRows</type>
928   - <description/>
929   - <distribute>Y</distribute>
930   - <custom_distribution/>
931   - <copies>1</copies>
932   - <partitioning>
933   - <method>none</method>
934   - <schema_name/>
935   - </partitioning>
936   -<send_true_to>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</send_true_to>
937   -<send_false_to>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</send_false_to>
938   - <compare>
939   -<condition>
940   - <negated>N</negated>
941   - <leftvalue>bctype</leftvalue>
942   - <function>&#x3d;</function>
943   - <rightvalue/>
944   - <value><name>constant</name><type>String</type><text>&#x51fa;&#x573a;</text><length>-1</length><precision>-1</precision><isnull>N</isnull><mask/></value> </condition>
945   - </compare>
946   - <cluster_schema/>
947   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
948   - <xloc>995</xloc>
949   - <yloc>503</yloc>
950   - <draw>Y</draw>
951   - </GUI>
952   - </step>
953   -
954   - <step>
955   - <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail</name>
956   - <type>InsertUpdate</type>
957   - <description/>
958   - <distribute>Y</distribute>
959   - <custom_distribution/>
960   - <copies>1</copies>
961   - <partitioning>
962   - <method>none</method>
963   - <schema_name/>
964   - </partitioning>
965   - <connection>bus_control_variable</connection>
966   - <commit>100</commit>
967   - <update_bypassed>N</update_bypassed>
968   - <lookup>
969   - <schema/>
970   - <table>bsth_c_s_ttinfo_detail</table>
971   - <key>
972   - <name>xlid</name>
973   - <field>xl</field>
974   - <condition>&#x3d;</condition>
975   - <name2/>
976   - </key>
977   - <key>
978   - <name>ttid</name>
979   - <field>ttinfo</field>
980   - <condition>&#x3d;</condition>
981   - <name2/>
982   - </key>
983   - <key>
984   - <name>lpid</name>
985   - <field>lp</field>
986   - <condition>&#x3d;</condition>
987   - <name2/>
988   - </key>
989   - <key>
990   - <name>fcno</name>
991   - <field>fcno</field>
992   - <condition>&#x3d;</condition>
993   - <name2/>
994   - </key>
995   - <key>
996   - <name>bcs</name>
997   - <field>bcs</field>
998   - <condition>&#x3d;</condition>
999   - <name2/>
1000   - </key>
1001   - <value>
1002   - <name>lp</name>
1003   - <rename>lpid</rename>
1004   - <update>Y</update>
1005   - </value>
1006   - <value>
1007   - <name>bc_type</name>
1008   - <rename>bctype_code</rename>
1009   - <update>Y</update>
1010   - </value>
1011   - <value>
1012   - <name>bcs</name>
1013   - <rename>bcs</rename>
1014   - <update>Y</update>
1015   - </value>
1016   - <value>
1017   - <name>bcsj</name>
1018   - <rename>bcsj</rename>
1019   - <update>Y</update>
1020   - </value>
1021   - <value>
1022   - <name>fcno</name>
1023   - <rename>fcno</rename>
1024   - <update>Y</update>
1025   - </value>
1026   - <value>
1027   - <name>jhlc</name>
1028   - <rename>jhlc</rename>
1029   - <update>Y</update>
1030   - </value>
1031   - <value>
1032   - <name>fcsj</name>
1033   - <rename>sendtime_calcu</rename>
1034   - <update>Y</update>
1035   - </value>
1036   - <value>
1037   - <name>ttinfo</name>
1038   - <rename>ttid</rename>
1039   - <update>Y</update>
1040   - </value>
1041   - <value>
1042   - <name>xl</name>
1043   - <rename>xlid</rename>
1044   - <update>Y</update>
1045   - </value>
1046   - <value>
1047   - <name>qdz</name>
1048   - <rename>qdzid</rename>
1049   - <update>Y</update>
1050   - </value>
1051   - <value>
1052   - <name>zdz</name>
1053   - <rename>zdzid</rename>
1054   - <update>Y</update>
1055   - </value>
1056   - <value>
1057   - <name>xl_dir</name>
1058   - <rename>sxx</rename>
1059   - <update>Y</update>
1060   - </value>
1061   - <value>
1062   - <name>isfb</name>
1063   - <rename>isfb</rename>
1064   - <update>Y</update>
1065   - </value>
1066   - <value>
1067   - <name>qdz_code</name>
1068   - <rename>qdzcode</rename>
1069   - <update>Y</update>
1070   - </value>
1071   - <value>
1072   - <name>qdz_name</name>
1073   - <rename>qdzname</rename>
1074   - <update>Y</update>
1075   - </value>
1076   - <value>
1077   - <name>zdz_code</name>
1078   - <rename>zdzcode</rename>
1079   - <update>Y</update>
1080   - </value>
1081   - <value>
1082   - <name>zdz_name</name>
1083   - <rename>zdzname</rename>
1084   - <update>Y</update>
1085   - </value>
1086   - </lookup>
1087   - <cluster_schema/>
1088   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
1089   - <xloc>143</xloc>
1090   - <yloc>860</yloc>
1091   - <draw>Y</draw>
1092   - </GUI>
1093   - </step>
1094   -
1095   - <step>
1096   - <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail 2</name>
1097   - <type>InsertUpdate</type>
1098   - <description/>
1099   - <distribute>Y</distribute>
1100   - <custom_distribution/>
1101   - <copies>1</copies>
1102   - <partitioning>
1103   - <method>none</method>
1104   - <schema_name/>
1105   - </partitioning>
1106   - <connection>bus_control_variable</connection>
1107   - <commit>100</commit>
1108   - <update_bypassed>N</update_bypassed>
1109   - <lookup>
1110   - <schema/>
1111   - <table>bsth_c_s_ttinfo_detail</table>
1112   - <key>
1113   - <name>xlid</name>
1114   - <field>xl</field>
1115   - <condition>&#x3d;</condition>
1116   - <name2/>
1117   - </key>
1118   - <key>
1119   - <name>ttid</name>
1120   - <field>ttinfo</field>
1121   - <condition>&#x3d;</condition>
1122   - <name2/>
1123   - </key>
1124   - <key>
1125   - <name>lpid</name>
1126   - <field>lp</field>
1127   - <condition>&#x3d;</condition>
1128   - <name2/>
1129   - </key>
1130   - <key>
1131   - <name>fcno</name>
1132   - <field>fcno</field>
1133   - <condition>&#x3d;</condition>
1134   - <name2/>
1135   - </key>
1136   - <key>
1137   - <name>bcs</name>
1138   - <field>bcs</field>
1139   - <condition>&#x3d;</condition>
1140   - <name2/>
1141   - </key>
1142   - <value>
1143   - <name>tcc</name>
1144   - <rename>qdzid</rename>
1145   - <update>Y</update>
1146   - </value>
1147   - <value>
1148   - <name>zdz</name>
1149   - <rename>zdzid</rename>
1150   - <update>Y</update>
1151   - </value>
1152   - <value>
1153   - <name>xl</name>
1154   - <rename>xlid</rename>
1155   - <update>Y</update>
1156   - </value>
1157   - <value>
1158   - <name>ttinfo</name>
1159   - <rename>ttid</rename>
1160   - <update>Y</update>
1161   - </value>
1162   - <value>
1163   - <name>xl_dir</name>
1164   - <rename>sxx</rename>
1165   - <update>Y</update>
1166   - </value>
1167   - <value>
1168   - <name>lp</name>
1169   - <rename>lpid</rename>
1170   - <update>Y</update>
1171   - </value>
1172   - <value>
1173   - <name>jhlc</name>
1174   - <rename>out_mileage</rename>
1175   - <update>Y</update>
1176   - </value>
1177   - <value>
1178   - <name>fcsj</name>
1179   - <rename>sendtime_calcu</rename>
1180   - <update>Y</update>
1181   - </value>
1182   - <value>
1183   - <name>bcsj</name>
1184   - <rename>out_time</rename>
1185   - <update>Y</update>
1186   - </value>
1187   - <value>
1188   - <name>bcs</name>
1189   - <rename>bcs</rename>
1190   - <update>Y</update>
1191   - </value>
1192   - <value>
1193   - <name>fcno</name>
1194   - <rename>fcno</rename>
1195   - <update>Y</update>
1196   - </value>
1197   - <value>
1198   - <name>bc_type</name>
1199   - <rename>bctype_code</rename>
1200   - <update>Y</update>
1201   - </value>
1202   - <value>
1203   - <name>isfb</name>
1204   - <rename>isfb</rename>
1205   - <update>Y</update>
1206   - </value>
1207   - <value>
1208   - <name>qdz_code</name>
1209   - <rename>qdzcode</rename>
1210   - <update>Y</update>
1211   - </value>
1212   - <value>
1213   - <name>qdz_name</name>
1214   - <rename>tn</rename>
1215   - <update>Y</update>
1216   - </value>
1217   - <value>
1218   - <name>zdz_code</name>
1219   - <rename>zdzcode</rename>
1220   - <update>Y</update>
1221   - </value>
1222   - <value>
1223   - <name>zdz_name</name>
1224   - <rename>zdzname</rename>
1225   - <update>Y</update>
1226   - </value>
1227   - </lookup>
1228   - <cluster_schema/>
1229   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
1230   - <xloc>340</xloc>
1231   - <yloc>1087</yloc>
1232   - <draw>Y</draw>
1233   - </GUI>
1234   - </step>
1235   -
1236   - <step>
1237   - <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail 3</name>
1238   - <type>InsertUpdate</type>
1239   - <description/>
1240   - <distribute>Y</distribute>
1241   - <custom_distribution/>
1242   - <copies>1</copies>
1243   - <partitioning>
1244   - <method>none</method>
1245   - <schema_name/>
1246   - </partitioning>
1247   - <connection>bus_control_variable</connection>
1248   - <commit>100</commit>
1249   - <update_bypassed>N</update_bypassed>
1250   - <lookup>
1251   - <schema/>
1252   - <table>bsth_c_s_ttinfo_detail</table>
1253   - <key>
1254   - <name>xlid</name>
1255   - <field>xl</field>
1256   - <condition>&#x3d;</condition>
1257   - <name2/>
1258   - </key>
1259   - <key>
1260   - <name>ttid</name>
1261   - <field>ttinfo</field>
1262   - <condition>&#x3d;</condition>
1263   - <name2/>
1264   - </key>
1265   - <key>
1266   - <name>lpid</name>
1267   - <field>lp</field>
1268   - <condition>&#x3d;</condition>
1269   - <name2/>
1270   - </key>
1271   - <key>
1272   - <name>fcno</name>
1273   - <field>fcno</field>
1274   - <condition>&#x3d;</condition>
1275   - <name2/>
1276   - </key>
1277   - <key>
1278   - <name>bcs</name>
1279   - <field>bcs</field>
1280   - <condition>&#x3d;</condition>
1281   - <name2/>
1282   - </key>
1283   - <value>
1284   - <name>fcno</name>
1285   - <rename>fcno</rename>
1286   - <update>Y</update>
1287   - </value>
1288   - <value>
1289   - <name>bcs</name>
1290   - <rename>bcs</rename>
1291   - <update>Y</update>
1292   - </value>
1293   - <value>
1294   - <name>xl</name>
1295   - <rename>xlid</rename>
1296   - <update>Y</update>
1297   - </value>
1298   - <value>
1299   - <name>ttinfo</name>
1300   - <rename>ttid</rename>
1301   - <update>Y</update>
1302   - </value>
1303   - <value>
1304   - <name>lp</name>
1305   - <rename>lpid</rename>
1306   - <update>Y</update>
1307   - </value>
1308   - <value>
1309   - <name>bc_type</name>
1310   - <rename>bctype_code</rename>
1311   - <update>Y</update>
1312   - </value>
1313   - <value>
1314   - <name>bcsj</name>
1315   - <rename>parade_time</rename>
1316   - <update>Y</update>
1317   - </value>
1318   - <value>
1319   - <name>jhlc</name>
1320   - <rename>parade_mileage</rename>
1321   - <update>Y</update>
1322   - </value>
1323   - <value>
1324   - <name>fcsj</name>
1325   - <rename>sendtime_calcu</rename>
1326   - <update>Y</update>
1327   - </value>
1328   - <value>
1329   - <name>xl_dir</name>
1330   - <rename>sxx2</rename>
1331   - <update>Y</update>
1332   - </value>
1333   - <value>
1334   - <name>qdz</name>
1335   - <rename>qdzid</rename>
1336   - <update>Y</update>
1337   - </value>
1338   - <value>
1339   - <name>tcc</name>
1340   - <rename>zdzid</rename>
1341   - <update>Y</update>
1342   - </value>
1343   - <value>
1344   - <name>isfb</name>
1345   - <rename>isfb</rename>
1346   - <update>Y</update>
1347   - </value>
1348   - <value>
1349   - <name>qdz_code</name>
1350   - <rename>qdzcode</rename>
1351   - <update>Y</update>
1352   - </value>
1353   - <value>
1354   - <name>qdz_name</name>
1355   - <rename>qname</rename>
1356   - <update>Y</update>
1357   - </value>
1358   - <value>
1359   - <name>zdz_code</name>
1360   - <rename>zdzcode</rename>
1361   - <update>Y</update>
1362   - </value>
1363   - <value>
1364   - <name>zdz_name</name>
1365   - <rename>tn</rename>
1366   - <update>Y</update>
1367   - </value>
1368   - </lookup>
1369   - <cluster_schema/>
1370   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
1371   - <xloc>845</xloc>
1372   - <yloc>899</yloc>
1373   - <draw>Y</draw>
1374   - </GUI>
1375   - </step>
1376   -
1377   - <step>
1378   - <name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</name>
1379   - <type>ExcelInput</type>
1380   - <description/>
1381   - <distribute>N</distribute>
1382   - <custom_distribution/>
1383   - <copies>1</copies>
1384   - <partitioning>
1385   - <method>none</method>
1386   - <schema_name/>
1387   - </partitioning>
1388   - <header>Y</header>
1389   - <noempty>Y</noempty>
1390   - <stoponempty>N</stoponempty>
1391   - <filefield/>
1392   - <sheetfield/>
1393   - <sheetrownumfield/>
1394   - <rownumfield/>
1395   - <sheetfield/>
1396   - <filefield/>
1397   - <limit>0</limit>
1398   - <encoding/>
1399   - <add_to_result_filenames>Y</add_to_result_filenames>
1400   - <accept_filenames>N</accept_filenames>
1401   - <accept_field/>
1402   - <accept_stepname/>
1403   - <file>
1404   - <name/>
1405   - <filemask/>
1406   - <exclude_filemask/>
1407   - <file_required>N</file_required>
1408   - <include_subfolders>N</include_subfolders>
1409   - </file>
1410   - <fields>
1411   - </fields>
1412   - <sheets>
1413   - <sheet>
1414   - <name/>
1415   - <startrow>0</startrow>
1416   - <startcol>0</startcol>
1417   - </sheet>
1418   - </sheets>
1419   - <strict_types>N</strict_types>
1420   - <error_ignored>N</error_ignored>
1421   - <error_line_skipped>N</error_line_skipped>
1422   - <bad_line_files_destination_directory/>
1423   - <bad_line_files_extension>warning</bad_line_files_extension>
1424   - <error_line_files_destination_directory/>
1425   - <error_line_files_extension>error</error_line_files_extension>
1426   - <line_number_files_destination_directory/>
1427   - <line_number_files_extension>line</line_number_files_extension>
1428   - <shortFileFieldName/>
1429   - <pathFieldName/>
1430   - <hiddenFieldName/>
1431   - <lastModificationTimeFieldName/>
1432   - <uriNameFieldName/>
1433   - <rootUriNameFieldName/>
1434   - <extensionFieldName/>
1435   - <sizeFieldName/>
1436   - <spreadsheet_type>JXL</spreadsheet_type>
1437   - <cluster_schema/>
1438   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
1439   - <xloc>112</xloc>
1440   - <yloc>44</yloc>
1441   - <draw>Y</draw>
1442   - </GUI>
1443   - </step>
1444   -
1445   - <step>
1446   - <name>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;1</name>
1447   - <type>DBLookup</type>
1448   - <description/>
1449   - <distribute>Y</distribute>
1450   - <custom_distribution/>
1451   - <copies>1</copies>
1452   - <partitioning>
1453   - <method>none</method>
1454   - <schema_name/>
1455   - </partitioning>
1456   - <connection>bus_control_variable</connection>
1457   - <cache>N</cache>
1458   - <cache_load_all>N</cache_load_all>
1459   - <cache_size>0</cache_size>
1460   - <lookup>
1461   - <schema/>
1462   - <table>bsth_c_car_park</table>
1463   - <orderby/>
1464   - <fail_on_multiple>N</fail_on_multiple>
1465   - <eat_row_on_failure>N</eat_row_on_failure>
1466   - <key>
1467   - <name>tccname_</name>
1468   - <field>park_name</field>
1469   - <condition>&#x3d;</condition>
1470   - <name2/>
1471   - </key>
1472   - <value>
1473   - <name>id</name>
1474   - <rename>qdzid</rename>
1475   - <default/>
1476   - <type>Integer</type>
1477   - </value>
1478   - <value>
1479   - <name>park_code</name>
1480   - <rename>qdzcode</rename>
1481   - <default/>
1482   - <type>String</type>
1483   - </value>
1484   - <value>
1485   - <name>park_name</name>
1486   - <rename>tn</rename>
1487   - <default/>
1488   - <type>String</type>
1489   - </value>
1490   - </lookup>
1491   - <cluster_schema/>
1492   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
1493   - <xloc>755</xloc>
1494   - <yloc>504</yloc>
1495   - <draw>Y</draw>
1496   - </GUI>
1497   - </step>
1498   -
1499   - <step>
1500   - <name>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;2</name>
1501   - <type>DBLookup</type>
1502   - <description/>
1503   - <distribute>Y</distribute>
1504   - <custom_distribution/>
1505   - <copies>1</copies>
1506   - <partitioning>
1507   - <method>none</method>
1508   - <schema_name/>
1509   - </partitioning>
1510   - <connection>bus_control_variable</connection>
1511   - <cache>N</cache>
1512   - <cache_load_all>N</cache_load_all>
1513   - <cache_size>0</cache_size>
1514   - <lookup>
1515   - <schema/>
1516   - <table>bsth_c_car_park</table>
1517   - <orderby/>
1518   - <fail_on_multiple>N</fail_on_multiple>
1519   - <eat_row_on_failure>N</eat_row_on_failure>
1520   - <key>
1521   - <name>tccname_</name>
1522   - <field>park_name</field>
1523   - <condition>&#x3d;</condition>
1524   - <name2/>
1525   - </key>
1526   - <value>
1527   - <name>id</name>
1528   - <rename>zdzid</rename>
1529   - <default/>
1530   - <type>Integer</type>
1531   - </value>
1532   - <value>
1533   - <name>park_code</name>
1534   - <rename>zdzcode</rename>
1535   - <default/>
1536   - <type>String</type>
1537   - </value>
1538   - <value>
1539   - <name>park_name</name>
1540   - <rename>tn</rename>
1541   - <default/>
1542   - <type>String</type>
1543   - </value>
1544   - </lookup>
1545   - <cluster_schema/>
1546   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
1547   - <xloc>887</xloc>
1548   - <yloc>608</yloc>
1549   - <draw>Y</draw>
1550   - </GUI>
1551   - </step>
1552   -
1553   - <step>
1554   - <name>&#x67e5;&#x627e;&#x51fa;&#x573a;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</name>
1555   - <type>DBLookup</type>
1556   - <description/>
1557   - <distribute>Y</distribute>
1558   - <custom_distribution/>
1559   - <copies>1</copies>
1560   - <partitioning>
1561   - <method>none</method>
1562   - <schema_name/>
1563   - </partitioning>
1564   - <connection>bus_control_variable</connection>
1565   - <cache>N</cache>
1566   - <cache_load_all>N</cache_load_all>
1567   - <cache_size>0</cache_size>
1568   - <lookup>
1569   - <schema/>
1570   - <table>bsth_c_stationroute</table>
1571   - <orderby/>
1572   - <fail_on_multiple>N</fail_on_multiple>
1573   - <eat_row_on_failure>N</eat_row_on_failure>
1574   - <key>
1575   - <name>xlid</name>
1576   - <field>line</field>
1577   - <condition>&#x3d;</condition>
1578   - <name2/>
1579   - </key>
1580   - <key>
1581   - <name>zdzname</name>
1582   - <field>station_name</field>
1583   - <condition>&#x3d;</condition>
1584   - <name2/>
1585   - </key>
1586   - <key>
1587   - <name>endZdtype</name>
1588   - <field>station_mark</field>
1589   - <condition>&#x3d;</condition>
1590   - <name2/>
1591   - </key>
1592   - <key>
1593   - <name>destory</name>
1594   - <field>destroy</field>
1595   - <condition>&#x3d;</condition>
1596   - <name2/>
1597   - </key>
1598   - <value>
1599   - <name>station</name>
1600   - <rename>zdzid</rename>
1601   - <default/>
1602   - <type>Integer</type>
1603   - </value>
1604   - <value>
1605   - <name>directions</name>
1606   - <rename>sxx</rename>
1607   - <default/>
1608   - <type>Integer</type>
1609   - </value>
1610   - <value>
1611   - <name>station_code</name>
1612   - <rename>zdzcode</rename>
1613   - <default/>
1614   - <type>String</type>
1615   - </value>
1616   - </lookup>
1617   - <cluster_schema/>
1618   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
1619   - <xloc>329</xloc>
1620   - <yloc>505</yloc>
1621   - <draw>Y</draw>
1622   - </GUI>
1623   - </step>
1624   -
1625   - <step>
1626   - <name>&#x67e5;&#x627e;&#x65f6;&#x523b;&#x8868;&#x57fa;&#x7840;&#x4fe1;&#x606f;&#x5173;&#x8054;</name>
1627   - <type>DBLookup</type>
1628   - <description/>
1629   - <distribute>Y</distribute>
1630   - <custom_distribution/>
1631   - <copies>1</copies>
1632   - <partitioning>
1633   - <method>none</method>
1634   - <schema_name/>
1635   - </partitioning>
1636   - <connection>bus_control_variable</connection>
1637   - <cache>N</cache>
1638   - <cache_load_all>N</cache_load_all>
1639   - <cache_size>0</cache_size>
1640   - <lookup>
1641   - <schema/>
1642   - <table>bsth_c_s_ttinfo</table>
1643   - <orderby/>
1644   - <fail_on_multiple>N</fail_on_multiple>
1645   - <eat_row_on_failure>N</eat_row_on_failure>
1646   - <key>
1647   - <name>xlid</name>
1648   - <field>xl</field>
1649   - <condition>&#x3d;</condition>
1650   - <name2/>
1651   - </key>
1652   - <key>
1653   - <name>ttinfoname_</name>
1654   - <field>name</field>
1655   - <condition>&#x3d;</condition>
1656   - <name2/>
1657   - </key>
1658   - <key>
1659   - <name>iscanceled</name>
1660   - <field>is_cancel</field>
1661   - <condition>&#x3d;</condition>
1662   - <name2/>
1663   - </key>
1664   - <value>
1665   - <name>id</name>
1666   - <rename>ttid</rename>
1667   - <default/>
1668   - <type>Integer</type>
1669   - </value>
1670   - </lookup>
1671   - <cluster_schema/>
1672   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
1673   - <xloc>1011</xloc>
1674   - <yloc>134</yloc>
1675   - <draw>Y</draw>
1676   - </GUI>
1677   - </step>
1678   -
1679   - <step>
1680   - <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x4e0a;&#x4e0b;&#x884c;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
1681   - <type>DBLookup</type>
1682   - <description/>
1683   - <distribute>Y</distribute>
1684   - <custom_distribution/>
1685   - <copies>1</copies>
1686   - <partitioning>
1687   - <method>none</method>
1688   - <schema_name/>
1689   - </partitioning>
1690   - <connection>bus_control_variable</connection>
1691   - <cache>N</cache>
1692   - <cache_load_all>N</cache_load_all>
1693   - <cache_size>0</cache_size>
1694   - <lookup>
1695   - <schema/>
1696   - <table>bsth_c_line_information</table>
1697   - <orderby/>
1698   - <fail_on_multiple>N</fail_on_multiple>
1699   - <eat_row_on_failure>N</eat_row_on_failure>
1700   - <key>
1701   - <name>xlid</name>
1702   - <field>line</field>
1703   - <condition>&#x3d;</condition>
1704   - <name2/>
1705   - </key>
1706   - <value>
1707   - <name>up_mileage</name>
1708   - <rename>up_mileage</rename>
1709   - <default/>
1710   - <type>Number</type>
1711   - </value>
1712   - <value>
1713   - <name>down_mileage</name>
1714   - <rename>down_mileage</rename>
1715   - <default/>
1716   - <type>Number</type>
1717   - </value>
1718   - <value>
1719   - <name>up_travel_time</name>
1720   - <rename>up_travel_time</rename>
1721   - <default/>
1722   - <type>Number</type>
1723   - </value>
1724   - <value>
1725   - <name>down_travel_time</name>
1726   - <rename>down_travel_time</rename>
1727   - <default/>
1728   - <type>Number</type>
1729   - </value>
1730   - </lookup>
1731   - <cluster_schema/>
1732   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
1733   - <xloc>149</xloc>
1734   - <yloc>581</yloc>
1735   - <draw>Y</draw>
1736   - </GUI>
1737   - </step>
1738   -
1739   - <step>
1740   - <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x5173;&#x8054;</name>
1741   - <type>DBLookup</type>
1742   - <description/>
1743   - <distribute>Y</distribute>
1744   - <custom_distribution/>
1745   - <copies>1</copies>
1746   - <partitioning>
1747   - <method>none</method>
1748   - <schema_name/>
1749   - </partitioning>
1750   - <connection>bus_control_variable</connection>
1751   - <cache>N</cache>
1752   - <cache_load_all>N</cache_load_all>
1753   - <cache_size>0</cache_size>
1754   - <lookup>
1755   - <schema/>
1756   - <table>bsth_c_line</table>
1757   - <orderby/>
1758   - <fail_on_multiple>N</fail_on_multiple>
1759   - <eat_row_on_failure>N</eat_row_on_failure>
1760   - <key>
1761   - <name>xlname_</name>
1762   - <field>name</field>
1763   - <condition>&#x3d;</condition>
1764   - <name2/>
1765   - </key>
1766   - <value>
1767   - <name>id</name>
1768   - <rename>xlid</rename>
1769   - <default/>
1770   - <type>Integer</type>
1771   - </value>
1772   - </lookup>
1773   - <cluster_schema/>
1774   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
1775   - <xloc>1007</xloc>
1776   - <yloc>43</yloc>
1777   - <draw>Y</draw>
1778   - </GUI>
1779   - </step>
1780   -
1781   - <step>
1782   - <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x51fa;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
1783   - <type>DBLookup</type>
1784   - <description/>
1785   - <distribute>Y</distribute>
1786   - <custom_distribution/>
1787   - <copies>1</copies>
1788   - <partitioning>
1789   - <method>none</method>
1790   - <schema_name/>
1791   - </partitioning>
1792   - <connection>bus_control_variable</connection>
1793   - <cache>N</cache>
1794   - <cache_load_all>N</cache_load_all>
1795   - <cache_size>0</cache_size>
1796   - <lookup>
1797   - <schema/>
1798   - <table>bsth_c_line_information</table>
1799   - <orderby/>
1800   - <fail_on_multiple>N</fail_on_multiple>
1801   - <eat_row_on_failure>N</eat_row_on_failure>
1802   - <key>
1803   - <name>xlid</name>
1804   - <field>line</field>
1805   - <condition>&#x3d;</condition>
1806   - <name2/>
1807   - </key>
1808   - <value>
1809   - <name>up_out_timer</name>
1810   - <rename>up_out_timer</rename>
1811   - <default/>
1812   - <type>Number</type>
1813   - </value>
1814   - <value>
1815   - <name>up_out_mileage</name>
1816   - <rename>up_out_mileage</rename>
1817   - <default/>
1818   - <type>Number</type>
1819   - </value>
1820   - <value>
1821   - <name>down_out_timer</name>
1822   - <rename>down_out_timer</rename>
1823   - <default/>
1824   - <type>Number</type>
1825   - </value>
1826   - <value>
1827   - <name>down_out_mileage</name>
1828   - <rename>down_out_mileage</rename>
1829   - <default/>
1830   - <type>Number</type>
1831   - </value>
1832   - </lookup>
1833   - <cluster_schema/>
1834   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
1835   - <xloc>335</xloc>
1836   - <yloc>763</yloc>
1837   - <draw>Y</draw>
1838   - </GUI>
1839   - </step>
1840   -
1841   - <step>
1842   - <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x8fdb;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
1843   - <type>DBLookup</type>
1844   - <description/>
1845   - <distribute>Y</distribute>
1846   - <custom_distribution/>
1847   - <copies>1</copies>
1848   - <partitioning>
1849   - <method>none</method>
1850   - <schema_name/>
1851   - </partitioning>
1852   - <connection>bus_control_variable</connection>
1853   - <cache>N</cache>
1854   - <cache_load_all>N</cache_load_all>
1855   - <cache_size>0</cache_size>
1856   - <lookup>
1857   - <schema/>
1858   - <table>bsth_c_line_information</table>
1859   - <orderby/>
1860   - <fail_on_multiple>N</fail_on_multiple>
1861   - <eat_row_on_failure>N</eat_row_on_failure>
1862   - <key>
1863   - <name>xlid</name>
1864   - <field>line</field>
1865   - <condition>&#x3d;</condition>
1866   - <name2/>
1867   - </key>
1868   - <value>
1869   - <name>up_in_mileage</name>
1870   - <rename>up_in_mileage</rename>
1871   - <default/>
1872   - <type>Number</type>
1873   - </value>
1874   - <value>
1875   - <name>up_in_timer</name>
1876   - <rename>up_in_timer</rename>
1877   - <default/>
1878   - <type>Number</type>
1879   - </value>
1880   - <value>
1881   - <name>down_in_mileage</name>
1882   - <rename>down_in_mileage</rename>
1883   - <default/>
1884   - <type>Number</type>
1885   - </value>
1886   - <value>
1887   - <name>down_in_timer</name>
1888   - <rename>down_in_timer</rename>
1889   - <default/>
1890   - <type>Number</type>
1891   - </value>
1892   - </lookup>
1893   - <cluster_schema/>
1894   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
1895   - <xloc>553</xloc>
1896   - <yloc>1004</yloc>
1897   - <draw>Y</draw>
1898   - </GUI>
1899   - </step>
1900   -
1901   - <step>
1902   - <name>&#x67e5;&#x627e;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;</name>
1903   - <type>DBLookup</type>
1904   - <description/>
1905   - <distribute>Y</distribute>
1906   - <custom_distribution/>
1907   - <copies>1</copies>
1908   - <partitioning>
1909   - <method>none</method>
1910   - <schema_name/>
1911   - </partitioning>
1912   - <connection>bus_control_variable</connection>
1913   - <cache>N</cache>
1914   - <cache_load_all>N</cache_load_all>
1915   - <cache_size>0</cache_size>
1916   - <lookup>
1917   - <schema/>
1918   - <table>bsth_c_stationroute</table>
1919   - <orderby/>
1920   - <fail_on_multiple>N</fail_on_multiple>
1921   - <eat_row_on_failure>N</eat_row_on_failure>
1922   - <key>
1923   - <name>xlid</name>
1924   - <field>line</field>
1925   - <condition>&#x3d;</condition>
1926   - <name2/>
1927   - </key>
1928   - <key>
1929   - <name>sxx</name>
1930   - <field>directions</field>
1931   - <condition>&#x3d;</condition>
1932   - <name2/>
1933   - </key>
1934   - <key>
1935   - <name>endZdtype</name>
1936   - <field>station_mark</field>
1937   - <condition>&#x3d;</condition>
1938   - <name2/>
1939   - </key>
1940   - <key>
1941   - <name>destory</name>
1942   - <field>destroy</field>
1943   - <condition>&#x3d;</condition>
1944   - <name2/>
1945   - </key>
1946   - <value>
1947   - <name>station_name</name>
1948   - <rename>zdzname</rename>
1949   - <default/>
1950   - <type>String</type>
1951   - </value>
1952   - <value>
1953   - <name>station</name>
1954   - <rename>zdzid</rename>
1955   - <default/>
1956   - <type>Integer</type>
1957   - </value>
1958   - <value>
1959   - <name>station_code</name>
1960   - <rename>zdzcode</rename>
1961   - <default/>
1962   - <type>String</type>
1963   - </value>
1964   - </lookup>
1965   - <cluster_schema/>
1966   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
1967   - <xloc>280</xloc>
1968   - <yloc>404</yloc>
1969   - <draw>Y</draw>
1970   - </GUI>
1971   - </step>
1972   -
1973   - <step>
1974   - <name>&#x67e5;&#x627e;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</name>
1975   - <type>DBLookup</type>
1976   - <description/>
1977   - <distribute>Y</distribute>
1978   - <custom_distribution/>
1979   - <copies>1</copies>
1980   - <partitioning>
1981   - <method>none</method>
1982   - <schema_name/>
1983   - </partitioning>
1984   - <connection>bus_control_variable</connection>
1985   - <cache>N</cache>
1986   - <cache_load_all>N</cache_load_all>
1987   - <cache_size>0</cache_size>
1988   - <lookup>
1989   - <schema/>
1990   - <table>bsth_c_stationroute</table>
1991   - <orderby/>
1992   - <fail_on_multiple>N</fail_on_multiple>
1993   - <eat_row_on_failure>N</eat_row_on_failure>
1994   - <key>
1995   - <name>xlid</name>
1996   - <field>line</field>
1997   - <condition>&#x3d;</condition>
1998   - <name2/>
1999   - </key>
2000   - <key>
2001   - <name>qdzname</name>
2002   - <field>station_name</field>
2003   - <condition>&#x3d;</condition>
2004   - <name2/>
2005   - </key>
2006   - <key>
2007   - <name>sendZdtype</name>
2008   - <field>station_mark</field>
2009   - <condition>&#x3d;</condition>
2010   - <name2/>
2011   - </key>
2012   - <key>
2013   - <name>destory</name>
2014   - <field>destroy</field>
2015   - <condition>&#x3d;</condition>
2016   - <name2/>
2017   - </key>
2018   - <value>
2019   - <name>station</name>
2020   - <rename>qdzid</rename>
2021   - <default/>
2022   - <type>Integer</type>
2023   - </value>
2024   - <value>
2025   - <name>directions</name>
2026   - <rename>sxx</rename>
2027   - <default/>
2028   - <type>Integer</type>
2029   - </value>
2030   - <value>
2031   - <name>station_code</name>
2032   - <rename>qdzcode</rename>
2033   - <default/>
2034   - <type>String</type>
2035   - </value>
2036   - </lookup>
2037   - <cluster_schema/>
2038   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2039   - <xloc>430</xloc>
2040   - <yloc>403</yloc>
2041   - <draw>Y</draw>
2042   - </GUI>
2043   - </step>
2044   -
2045   - <step>
2046   - <name>&#x67e5;&#x627e;&#x8def;&#x724c;&#x5173;&#x8054;</name>
2047   - <type>DBLookup</type>
2048   - <description/>
2049   - <distribute>Y</distribute>
2050   - <custom_distribution/>
2051   - <copies>1</copies>
2052   - <partitioning>
2053   - <method>none</method>
2054   - <schema_name/>
2055   - </partitioning>
2056   - <connection>bus_control_variable</connection>
2057   - <cache>N</cache>
2058   - <cache_load_all>N</cache_load_all>
2059   - <cache_size>0</cache_size>
2060   - <lookup>
2061   - <schema/>
2062   - <table>bsth_c_s_gbi</table>
2063   - <orderby/>
2064   - <fail_on_multiple>N</fail_on_multiple>
2065   - <eat_row_on_failure>N</eat_row_on_failure>
2066   - <key>
2067   - <name>xlid</name>
2068   - <field>xl</field>
2069   - <condition>&#x3d;</condition>
2070   - <name2/>
2071   - </key>
2072   - <key>
2073   - <name>lp</name>
2074   - <field>lp_name</field>
2075   - <condition>&#x3d;</condition>
2076   - <name2/>
2077   - </key>
2078   - <key>
2079   - <name>iscanceled</name>
2080   - <field>is_cancel</field>
2081   - <condition>&#x3d;</condition>
2082   - <name2/>
2083   - </key>
2084   - <value>
2085   - <name>id</name>
2086   - <rename>lpid</rename>
2087   - <default/>
2088   - <type>Integer</type>
2089   - </value>
2090   - </lookup>
2091   - <cluster_schema/>
2092   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2093   - <xloc>1013</xloc>
2094   - <yloc>265</yloc>
2095   - <draw>Y</draw>
2096   - </GUI>
2097   - </step>
2098   -
2099   - <step>
2100   - <name>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ebf;&#x8def;&#x65b9;&#x5411;</name>
2101   - <type>DBLookup</type>
2102   - <description/>
2103   - <distribute>Y</distribute>
2104   - <custom_distribution/>
2105   - <copies>1</copies>
2106   - <partitioning>
2107   - <method>none</method>
2108   - <schema_name/>
2109   - </partitioning>
2110   - <connection>bus_control_variable</connection>
2111   - <cache>N</cache>
2112   - <cache_load_all>N</cache_load_all>
2113   - <cache_size>0</cache_size>
2114   - <lookup>
2115   - <schema/>
2116   - <table>bsth_c_stationroute</table>
2117   - <orderby/>
2118   - <fail_on_multiple>N</fail_on_multiple>
2119   - <eat_row_on_failure>N</eat_row_on_failure>
2120   - <key>
2121   - <name>xlid</name>
2122   - <field>line</field>
2123   - <condition>&#x3d;</condition>
2124   - <name2/>
2125   - </key>
2126   - <key>
2127   - <name>startZdtype_calcu</name>
2128   - <field>station_mark</field>
2129   - <condition>&#x3d;</condition>
2130   - <name2/>
2131   - </key>
2132   - <key>
2133   - <name>qdzname_calcu</name>
2134   - <field>station_name</field>
2135   - <condition>&#x3d;</condition>
2136   - <name2/>
2137   - </key>
2138   - <key>
2139   - <name>destory</name>
2140   - <field>destroy</field>
2141   - <condition>&#x3d;</condition>
2142   - <name2/>
2143   - </key>
2144   - <value>
2145   - <name>directions</name>
2146   - <rename>sxx</rename>
2147   - <default/>
2148   - <type>String</type>
2149   - </value>
2150   - </lookup>
2151   - <cluster_schema/>
2152   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2153   - <xloc>548</xloc>
2154   - <yloc>610</yloc>
2155   - <draw>Y</draw>
2156   - </GUI>
2157   - </step>
2158   -
2159   - <step>
2160   - <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>
2161   - <type>DBLookup</type>
2162   - <description/>
2163   - <distribute>Y</distribute>
2164   - <custom_distribution/>
2165   - <copies>1</copies>
2166   - <partitioning>
2167   - <method>none</method>
2168   - <schema_name/>
2169   - </partitioning>
2170   - <connection>bus_control_variable</connection>
2171   - <cache>Y</cache>
2172   - <cache_load_all>Y</cache_load_all>
2173   - <cache_size>0</cache_size>
2174   - <lookup>
2175   - <schema/>
2176   - <table>bsth_c_stationroute</table>
2177   - <orderby/>
2178   - <fail_on_multiple>N</fail_on_multiple>
2179   - <eat_row_on_failure>N</eat_row_on_failure>
2180   - <key>
2181   - <name>xlid</name>
2182   - <field>line</field>
2183   - <condition>&#x3d;</condition>
2184   - <name2/>
2185   - </key>
2186   - <key>
2187   - <name>endZdtype_calcu</name>
2188   - <field>station_mark</field>
2189   - <condition>&#x3d;</condition>
2190   - <name2/>
2191   - </key>
2192   - <key>
2193   - <name>sxx</name>
2194   - <field>directions</field>
2195   - <condition>&#x3d;</condition>
2196   - <name2/>
2197   - </key>
2198   - <key>
2199   - <name>destory</name>
2200   - <field>destroy</field>
2201   - <condition>&#x3d;</condition>
2202   - <name2/>
2203   - </key>
2204   - <value>
2205   - <name>station_name</name>
2206   - <rename>zdzname_calcu</rename>
2207   - <default/>
2208   - <type>Integer</type>
2209   - </value>
2210   - </lookup>
2211   - <cluster_schema/>
2212   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2213   - <xloc>550</xloc>
2214   - <yloc>701</yloc>
2215   - <draw>Y</draw>
2216   - </GUI>
2217   - </step>
2218   -
2219   - <step>
2220   - <name>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</name>
2221   - <type>DBLookup</type>
2222   - <description/>
2223   - <distribute>Y</distribute>
2224   - <custom_distribution/>
2225   - <copies>1</copies>
2226   - <partitioning>
2227   - <method>none</method>
2228   - <schema_name/>
2229   - </partitioning>
2230   - <connection>bus_control_variable</connection>
2231   - <cache>N</cache>
2232   - <cache_load_all>N</cache_load_all>
2233   - <cache_size>0</cache_size>
2234   - <lookup>
2235   - <schema/>
2236   - <table>bsth_c_stationroute</table>
2237   - <orderby/>
2238   - <fail_on_multiple>N</fail_on_multiple>
2239   - <eat_row_on_failure>N</eat_row_on_failure>
2240   - <key>
2241   - <name>xlid</name>
2242   - <field>line</field>
2243   - <condition>&#x3d;</condition>
2244   - <name2/>
2245   - </key>
2246   - <key>
2247   - <name>zdzname_calcu</name>
2248   - <field>station_name</field>
2249   - <condition>&#x3d;</condition>
2250   - <name2/>
2251   - </key>
2252   - <key>
2253   - <name>startZdtype_calcu</name>
2254   - <field>station_mark</field>
2255   - <condition>&#x3d;</condition>
2256   - <name2/>
2257   - </key>
2258   - <key>
2259   - <name>destory</name>
2260   - <field>destroy</field>
2261   - <condition>&#x3d;</condition>
2262   - <name2/>
2263   - </key>
2264   - <value>
2265   - <name>directions</name>
2266   - <rename>sxx2</rename>
2267   - <default/>
2268   - <type>Integer</type>
2269   - </value>
2270   - <value>
2271   - <name>station</name>
2272   - <rename>qdzid</rename>
2273   - <default/>
2274   - <type>Integer</type>
2275   - </value>
2276   - <value>
2277   - <name>station_code</name>
2278   - <rename>qdzcode</rename>
2279   - <default/>
2280   - <type>String</type>
2281   - </value>
2282   - <value>
2283   - <name>station_name</name>
2284   - <rename>qname</rename>
2285   - <default/>
2286   - <type>String</type>
2287   - </value>
2288   - </lookup>
2289   - <cluster_schema/>
2290   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2291   - <xloc>551</xloc>
2292   - <yloc>782</yloc>
2293   - <draw>Y</draw>
2294   - </GUI>
2295   - </step>
2296   -
2297   - <step>
2298   - <name>&#x6b63;&#x5e38;&#x73ed;&#x6b21;_&#x5904;&#x7406;&#x6570;&#x636e;</name>
2299   - <type>ScriptValueMod</type>
2300   - <description/>
2301   - <distribute>Y</distribute>
2302   - <custom_distribution/>
2303   - <copies>1</copies>
2304   - <partitioning>
2305   - <method>none</method>
2306   - <schema_name/>
2307   - </partitioning>
2308   - <compatible>N</compatible>
2309   - <optimizationLevel>9</optimizationLevel>
2310   - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
2311   - <jsScript_name>Script 1</jsScript_name>
2312   - <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>
2313   - </jsScript> </jsScripts> <fields> <field> <name>sendZdtype</name>
2314   - <rename>sendZdtype</rename>
2315   - <type>String</type>
2316   - <length>-1</length>
2317   - <precision>-1</precision>
2318   - <replace>N</replace>
2319   - </field> <field> <name>endZdtype</name>
2320   - <rename>endZdtype</rename>
2321   - <type>String</type>
2322   - <length>-1</length>
2323   - <precision>-1</precision>
2324   - <replace>N</replace>
2325   - </field> <field> <name>destory</name>
2326   - <rename>destory</rename>
2327   - <type>Integer</type>
2328   - <length>-1</length>
2329   - <precision>-1</precision>
2330   - <replace>N</replace>
2331   - </field> </fields> <cluster_schema/>
2332   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2333   - <xloc>588</xloc>
2334   - <yloc>403</yloc>
2335   - <draw>Y</draw>
2336   - </GUI>
2337   - </step>
2338   -
2339   - <step>
2340   - <name>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</name>
2341   - <type>Dummy</type>
2342   - <description/>
2343   - <distribute>Y</distribute>
2344   - <custom_distribution/>
2345   - <copies>1</copies>
2346   - <partitioning>
2347   - <method>none</method>
2348   - <schema_name/>
2349   - </partitioning>
2350   - <cluster_schema/>
2351   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2352   - <xloc>725</xloc>
2353   - <yloc>404</yloc>
2354   - <draw>Y</draw>
2355   - </GUI>
2356   - </step>
2357   -
2358   - <step>
2359   - <name>&#x6dfb;&#x52a0;&#x53d1;&#x8f66;&#x987a;&#x5e8f;&#x53f7;</name>
2360   - <type>GroupBy</type>
2361   - <description/>
2362   - <distribute>Y</distribute>
2363   - <custom_distribution/>
2364   - <copies>1</copies>
2365   - <partitioning>
2366   - <method>none</method>
2367   - <schema_name/>
2368   - </partitioning>
2369   - <all_rows>Y</all_rows>
2370   - <ignore_aggregate>N</ignore_aggregate>
2371   - <field_ignore/>
2372   - <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
2373   - <prefix>grp</prefix>
2374   - <add_linenr>Y</add_linenr>
2375   - <linenr_fieldname>fcno</linenr_fieldname>
2376   - <give_back_row>N</give_back_row>
2377   - <group>
2378   - <field>
2379   - <name>lp</name>
2380   - </field>
2381   - </group>
2382   - <fields>
2383   - </fields>
2384   - <cluster_schema/>
2385   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2386   - <xloc>442</xloc>
2387   - <yloc>44</yloc>
2388   - <draw>Y</draw>
2389   - </GUI>
2390   - </step>
2391   -
2392   - <step>
2393   - <name>&#x6dfb;&#x52a0;&#x5bf9;&#x5e94;&#x73ed;&#x6b21;&#x6570;</name>
2394   - <type>GroupBy</type>
2395   - <description/>
2396   - <distribute>Y</distribute>
2397   - <custom_distribution/>
2398   - <copies>1</copies>
2399   - <partitioning>
2400   - <method>none</method>
2401   - <schema_name/>
2402   - </partitioning>
2403   - <all_rows>Y</all_rows>
2404   - <ignore_aggregate>N</ignore_aggregate>
2405   - <field_ignore/>
2406   - <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
2407   - <prefix>grp</prefix>
2408   - <add_linenr>Y</add_linenr>
2409   - <linenr_fieldname>bcs</linenr_fieldname>
2410   - <give_back_row>N</give_back_row>
2411   - <group>
2412   - </group>
2413   - <fields>
2414   - </fields>
2415   - <cluster_schema/>
2416   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2417   - <xloc>692</xloc>
2418   - <yloc>44</yloc>
2419   - <draw>Y</draw>
2420   - </GUI>
2421   - </step>
2422   -
2423   - <step>
2424   - <name>&#x73ed;&#x6b21;&#x6570;&#x636e;&#x8303;&#x5f0f;&#x5316;</name>
2425   - <type>Normaliser</type>
2426   - <description/>
2427   - <distribute>Y</distribute>
2428   - <custom_distribution/>
2429   - <copies>1</copies>
2430   - <partitioning>
2431   - <method>none</method>
2432   - <schema_name/>
2433   - </partitioning>
2434   - <typefield>&#x7ad9;&#x70b9;&#x540d;&#x79f0;</typefield>
2435   - <fields> </fields> <cluster_schema/>
2436   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2437   - <xloc>248</xloc>
2438   - <yloc>44</yloc>
2439   - <draw>Y</draw>
2440   - </GUI>
2441   - </step>
2442   -
2443   - <step>
2444   - <name>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178;</name>
2445   - <type>ValueMapper</type>
2446   - <description/>
2447   - <distribute>Y</distribute>
2448   - <custom_distribution/>
2449   - <copies>1</copies>
2450   - <partitioning>
2451   - <method>none</method>
2452   - <schema_name/>
2453   - </partitioning>
2454   - <field_to_use>bctype</field_to_use>
2455   - <target_field>bctype_code</target_field>
2456   - <non_match_default>&#x672a;&#x77e5;&#x7c7b;&#x578b;</non_match_default>
2457   - <fields>
2458   - <field>
2459   - <source_value>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</source_value>
2460   - <target_value>normal</target_value>
2461   - </field>
2462   - <field>
2463   - <source_value>&#x51fa;&#x573a;</source_value>
2464   - <target_value>out</target_value>
2465   - </field>
2466   - <field>
2467   - <source_value>&#x8fdb;&#x573a;</source_value>
2468   - <target_value>in</target_value>
2469   - </field>
2470   - <field>
2471   - <source_value>&#x52a0;&#x6cb9;</source_value>
2472   - <target_value>oil</target_value>
2473   - </field>
2474   - <field>
2475   - <source_value>&#x4e34;&#x52a0;</source_value>
2476   - <target_value>temp</target_value>
2477   - </field>
2478   - <field>
2479   - <source_value>&#x533a;&#x95f4;</source_value>
2480   - <target_value>region</target_value>
2481   - </field>
2482   - <field>
2483   - <source_value>&#x653e;&#x7a7a;</source_value>
2484   - <target_value>venting</target_value>
2485   - </field>
2486   - <field>
2487   - <source_value>&#x653e;&#x5927;&#x7ad9;</source_value>
2488   - <target_value>major</target_value>
2489   - </field>
2490   - </fields>
2491   - <cluster_schema/>
2492   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2493   - <xloc>149</xloc>
2494   - <yloc>491</yloc>
2495   - <draw>Y</draw>
2496   - </GUI>
2497   - </step>
2498   -
2499   - <step>
2500   - <name>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 2</name>
2501   - <type>ValueMapper</type>
2502   - <description/>
2503   - <distribute>Y</distribute>
2504   - <custom_distribution/>
2505   - <copies>1</copies>
2506   - <partitioning>
2507   - <method>none</method>
2508   - <schema_name/>
2509   - </partitioning>
2510   - <field_to_use>bctype</field_to_use>
2511   - <target_field>bctype_code</target_field>
2512   - <non_match_default>&#x672a;&#x77e5;&#x7c7b;&#x578b;</non_match_default>
2513   - <fields>
2514   - <field>
2515   - <source_value>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</source_value>
2516   - <target_value>normal</target_value>
2517   - </field>
2518   - <field>
2519   - <source_value>&#x51fa;&#x573a;</source_value>
2520   - <target_value>out</target_value>
2521   - </field>
2522   - <field>
2523   - <source_value>&#x8fdb;&#x573a;</source_value>
2524   - <target_value>in</target_value>
2525   - </field>
2526   - <field>
2527   - <source_value>&#x52a0;&#x6cb9;</source_value>
2528   - <target_value>oil</target_value>
2529   - </field>
2530   - <field>
2531   - <source_value>&#x4e34;&#x52a0;</source_value>
2532   - <target_value>temp</target_value>
2533   - </field>
2534   - <field>
2535   - <source_value>&#x533a;&#x95f4;</source_value>
2536   - <target_value>region</target_value>
2537   - </field>
2538   - <field>
2539   - <source_value>&#x653e;&#x7a7a;</source_value>
2540   - <target_value>venting</target_value>
2541   - </field>
2542   - <field>
2543   - <source_value>&#x653e;&#x5927;&#x7ad9;</source_value>
2544   - <target_value>major</target_value>
2545   - </field>
2546   - </fields>
2547   - <cluster_schema/>
2548   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2549   - <xloc>333</xloc>
2550   - <yloc>681</yloc>
2551   - <draw>Y</draw>
2552   - </GUI>
2553   - </step>
2554   -
2555   - <step>
2556   - <name>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 3</name>
2557   - <type>ValueMapper</type>
2558   - <description/>
2559   - <distribute>Y</distribute>
2560   - <custom_distribution/>
2561   - <copies>1</copies>
2562   - <partitioning>
2563   - <method>none</method>
2564   - <schema_name/>
2565   - </partitioning>
2566   - <field_to_use>bctype</field_to_use>
2567   - <target_field>bctype_code</target_field>
2568   - <non_match_default>&#x672a;&#x77e5;&#x7c7b;&#x578b;</non_match_default>
2569   - <fields>
2570   - <field>
2571   - <source_value>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</source_value>
2572   - <target_value>normal</target_value>
2573   - </field>
2574   - <field>
2575   - <source_value>&#x51fa;&#x573a;</source_value>
2576   - <target_value>out</target_value>
2577   - </field>
2578   - <field>
2579   - <source_value>&#x8fdb;&#x573a;</source_value>
2580   - <target_value>in</target_value>
2581   - </field>
2582   - <field>
2583   - <source_value>&#x52a0;&#x6cb9;</source_value>
2584   - <target_value>oil</target_value>
2585   - </field>
2586   - <field>
2587   - <source_value>&#x4e34;&#x52a0;</source_value>
2588   - <target_value>temp</target_value>
2589   - </field>
2590   - <field>
2591   - <source_value>&#x533a;&#x95f4;</source_value>
2592   - <target_value>region</target_value>
2593   - </field>
2594   - <field>
2595   - <source_value>&#x653e;&#x7a7a;</source_value>
2596   - <target_value>venting</target_value>
2597   - </field>
2598   - <field>
2599   - <source_value>&#x653e;&#x5927;&#x7ad9;</source_value>
2600   - <target_value>major</target_value>
2601   - </field>
2602   - </fields>
2603   - <cluster_schema/>
2604   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2605   - <xloc>551</xloc>
2606   - <yloc>928</yloc>
2607   - <draw>Y</draw>
2608   - </GUI>
2609   - </step>
2610   -
2611   - <step>
2612   - <name>&#x7c7b;&#x578b;&#x4fee;&#x6b63;</name>
2613   - <type>SelectValues</type>
2614   - <description/>
2615   - <distribute>Y</distribute>
2616   - <custom_distribution/>
2617   - <copies>1</copies>
2618   - <partitioning>
2619   - <method>none</method>
2620   - <schema_name/>
2621   - </partitioning>
2622   - <fields> <select_unspecified>N</select_unspecified>
2623   - <meta> <name>jhlc</name>
2624   - <rename>jhlc</rename>
2625   - <type>Number</type>
2626   - <length>-2</length>
2627   - <precision>-2</precision>
2628   - <conversion_mask/>
2629   - <date_format_lenient>false</date_format_lenient>
2630   - <date_format_locale/>
2631   - <date_format_timezone/>
2632   - <lenient_string_to_number>false</lenient_string_to_number>
2633   - <encoding/>
2634   - <decimal_symbol/>
2635   - <grouping_symbol/>
2636   - <currency_symbol/>
2637   - <storage_type/>
2638   - </meta> <meta> <name>bcsj</name>
2639   - <rename>bcsj</rename>
2640   - <type>Integer</type>
2641   - <length>-2</length>
2642   - <precision>-2</precision>
2643   - <conversion_mask/>
2644   - <date_format_lenient>false</date_format_lenient>
2645   - <date_format_locale/>
2646   - <date_format_timezone/>
2647   - <lenient_string_to_number>false</lenient_string_to_number>
2648   - <encoding/>
2649   - <decimal_symbol/>
2650   - <grouping_symbol/>
2651   - <currency_symbol/>
2652   - <storage_type/>
2653   - </meta> </fields> <cluster_schema/>
2654   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2655   - <xloc>146</xloc>
2656   - <yloc>768</yloc>
2657   - <draw>Y</draw>
2658   - </GUI>
2659   - </step>
2660   -
2661   - <step>
2662   - <name>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 2</name>
2663   - <type>SelectValues</type>
2664   - <description/>
2665   - <distribute>Y</distribute>
2666   - <custom_distribution/>
2667   - <copies>1</copies>
2668   - <partitioning>
2669   - <method>none</method>
2670   - <schema_name/>
2671   - </partitioning>
2672   - <fields> <select_unspecified>N</select_unspecified>
2673   - <meta> <name>out_mileage</name>
2674   - <rename>out_mileage</rename>
2675   - <type>Number</type>
2676   - <length>-2</length>
2677   - <precision>-2</precision>
2678   - <conversion_mask/>
2679   - <date_format_lenient>false</date_format_lenient>
2680   - <date_format_locale/>
2681   - <date_format_timezone/>
2682   - <lenient_string_to_number>false</lenient_string_to_number>
2683   - <encoding/>
2684   - <decimal_symbol/>
2685   - <grouping_symbol/>
2686   - <currency_symbol/>
2687   - <storage_type/>
2688   - </meta> <meta> <name>out_time</name>
2689   - <rename>out_time</rename>
2690   - <type>Integer</type>
2691   - <length>-2</length>
2692   - <precision>-2</precision>
2693   - <conversion_mask/>
2694   - <date_format_lenient>false</date_format_lenient>
2695   - <date_format_locale/>
2696   - <date_format_timezone/>
2697   - <lenient_string_to_number>false</lenient_string_to_number>
2698   - <encoding/>
2699   - <decimal_symbol/>
2700   - <grouping_symbol/>
2701   - <currency_symbol/>
2702   - <storage_type/>
2703   - </meta> <meta> <name>sxx</name>
2704   - <rename>sxx</rename>
2705   - <type>Integer</type>
2706   - <length>-2</length>
2707   - <precision>-2</precision>
2708   - <conversion_mask/>
2709   - <date_format_lenient>false</date_format_lenient>
2710   - <date_format_locale/>
2711   - <date_format_timezone/>
2712   - <lenient_string_to_number>false</lenient_string_to_number>
2713   - <encoding/>
2714   - <decimal_symbol/>
2715   - <grouping_symbol/>
2716   - <currency_symbol/>
2717   - <storage_type/>
2718   - </meta> </fields> <cluster_schema/>
2719   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2720   - <xloc>338</xloc>
2721   - <yloc>1008</yloc>
2722   - <draw>Y</draw>
2723   - </GUI>
2724   - </step>
2725   -
2726   - <step>
2727   - <name>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 3</name>
2728   - <type>SelectValues</type>
2729   - <description/>
2730   - <distribute>Y</distribute>
2731   - <custom_distribution/>
2732   - <copies>1</copies>
2733   - <partitioning>
2734   - <method>none</method>
2735   - <schema_name/>
2736   - </partitioning>
2737   - <fields> <select_unspecified>N</select_unspecified>
2738   - <meta> <name>parade_mileage</name>
2739   - <rename>parade_mileage</rename>
2740   - <type>Number</type>
2741   - <length>-2</length>
2742   - <precision>-2</precision>
2743   - <conversion_mask/>
2744   - <date_format_lenient>false</date_format_lenient>
2745   - <date_format_locale/>
2746   - <date_format_timezone/>
2747   - <lenient_string_to_number>false</lenient_string_to_number>
2748   - <encoding/>
2749   - <decimal_symbol/>
2750   - <grouping_symbol/>
2751   - <currency_symbol/>
2752   - <storage_type/>
2753   - </meta> <meta> <name>parade_time</name>
2754   - <rename>parade_time</rename>
2755   - <type>Integer</type>
2756   - <length>-2</length>
2757   - <precision>-2</precision>
2758   - <conversion_mask/>
2759   - <date_format_lenient>false</date_format_lenient>
2760   - <date_format_locale/>
2761   - <date_format_timezone/>
2762   - <lenient_string_to_number>false</lenient_string_to_number>
2763   - <encoding/>
2764   - <decimal_symbol/>
2765   - <grouping_symbol/>
2766   - <currency_symbol/>
2767   - <storage_type/>
2768   - </meta> <meta> <name>sxx2</name>
2769   - <rename>sxx2</rename>
2770   - <type>Integer</type>
2771   - <length>-2</length>
2772   - <precision>-2</precision>
2773   - <conversion_mask/>
2774   - <date_format_lenient>false</date_format_lenient>
2775   - <date_format_locale/>
2776   - <date_format_timezone/>
2777   - <lenient_string_to_number>false</lenient_string_to_number>
2778   - <encoding/>
2779   - <decimal_symbol/>
2780   - <grouping_symbol/>
2781   - <currency_symbol/>
2782   - <storage_type/>
2783   - </meta> </fields> <cluster_schema/>
2784   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2785   - <xloc>847</xloc>
2786   - <yloc>1003</yloc>
2787   - <draw>Y</draw>
2788   - </GUI>
2789   - </step>
2790   -
2791   - <step>
2792   - <name>&#x8ba1;&#x7b97;&#x73ed;&#x6b21;&#x7c7b;&#x578b;</name>
2793   - <type>ValueMapper</type>
2794   - <description/>
2795   - <distribute>Y</distribute>
2796   - <custom_distribution/>
2797   - <copies>1</copies>
2798   - <partitioning>
2799   - <method>none</method>
2800   - <schema_name/>
2801   - </partitioning>
2802   - <field_to_use>qdzname</field_to_use>
2803   - <target_field>bctype</target_field>
2804   - <non_match_default>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</non_match_default>
2805   - <fields>
2806   - <field>
2807   - <source_value>&#x51fa;&#x573a;</source_value>
2808   - <target_value>&#x51fa;&#x573a;</target_value>
2809   - </field>
2810   - <field>
2811   - <source_value>&#x8fdb;&#x573a;</source_value>
2812   - <target_value>&#x8fdb;&#x573a;</target_value>
2813   - </field>
2814   - </fields>
2815   - <cluster_schema/>
2816   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2817   - <xloc>1014</xloc>
2818   - <yloc>401</yloc>
2819   - <draw>Y</draw>
2820   - </GUI>
2821   - </step>
2822   -
2823   - <step>
2824   - <name>&#x8bb0;&#x5f55;&#x5173;&#x8054; &#x28;&#x7b1b;&#x5361;&#x5c14;&#x8f93;&#x51fa;&#x29;</name>
2825   - <type>JoinRows</type>
2826   - <description/>
2827   - <distribute>Y</distribute>
2828   - <custom_distribution/>
2829   - <copies>1</copies>
2830   - <partitioning>
2831   - <method>none</method>
2832   - <schema_name/>
2833   - </partitioning>
2834   - <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
2835   - <prefix>out</prefix>
2836   - <cache_size>500</cache_size>
2837   - <main/>
2838   - <compare>
2839   -<condition>
2840   - <negated>N</negated>
2841   - <leftvalue/>
2842   - <function>&#x3d;</function>
2843   - <rightvalue/>
2844   - </condition>
2845   - </compare>
2846   - <cluster_schema/>
2847   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2848   - <xloc>310</xloc>
2849   - <yloc>133</yloc>
2850   - <draw>Y</draw>
2851   - </GUI>
2852   - </step>
2853   -
2854   - <step>
2855   - <name>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;&#xff08;&#x53d1;&#x8f66;&#x65f6;&#x95f4;&#x4e3a;&#x7a7a;&#xff09;</name>
2856   - <type>FilterRows</type>
2857   - <description/>
2858   - <distribute>Y</distribute>
2859   - <custom_distribution/>
2860   - <copies>1</copies>
2861   - <partitioning>
2862   - <method>none</method>
2863   - <schema_name/>
2864   - </partitioning>
2865   -<send_true_to/>
2866   -<send_false_to/>
2867   - <compare>
2868   -<condition>
2869   - <negated>N</negated>
2870   - <leftvalue>sendtime</leftvalue>
2871   - <function>IS NOT NULL</function>
2872   - <rightvalue/>
2873   - </condition>
2874   - </compare>
2875   - <cluster_schema/>
2876   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2877   - <xloc>571</xloc>
2878   - <yloc>44</yloc>
2879   - <draw>Y</draw>
2880   - </GUI>
2881   - </step>
2882   -
2883   - <step>
2884   - <name>&#x8fdb;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x8d77;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</name>
2885   - <type>ScriptValueMod</type>
2886   - <description/>
2887   - <distribute>Y</distribute>
2888   - <custom_distribution/>
2889   - <copies>1</copies>
2890   - <partitioning>
2891   - <method>none</method>
2892   - <schema_name/>
2893   - </partitioning>
2894   - <compatible>N</compatible>
2895   - <optimizationLevel>9</optimizationLevel>
2896   - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
2897   - <jsScript_name>Script 1</jsScript_name>
2898   - <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>
2899   - </jsScript> </jsScripts> <fields> <field> <name>qdzname_calcu</name>
2900   - <rename>qdzname_calcu</rename>
2901   - <type>String</type>
2902   - <length>-1</length>
2903   - <precision>-1</precision>
2904   - <replace>N</replace>
2905   - </field> <field> <name>startZdtype_calcu</name>
2906   - <rename>startZdtype_calcu</rename>
2907   - <type>String</type>
2908   - <length>-1</length>
2909   - <precision>-1</precision>
2910   - <replace>N</replace>
2911   - </field> <field> <name>endZdtype_calcu</name>
2912   - <rename>endZdtype_calcu</rename>
2913   - <type>String</type>
2914   - <length>-1</length>
2915   - <precision>-1</precision>
2916   - <replace>N</replace>
2917   - </field> <field> <name>destory</name>
2918   - <rename>destory</rename>
2919   - <type>Integer</type>
2920   - <length>-1</length>
2921   - <precision>-1</precision>
2922   - <replace>N</replace>
2923   - </field> </fields> <cluster_schema/>
2924   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2925   - <xloc>754</xloc>
2926   - <yloc>610</yloc>
2927   - <draw>Y</draw>
2928   - </GUI>
2929   - </step>
2930   -
2931   - <step>
2932   - <name>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</name>
2933   - <type>Dummy</type>
2934   - <description/>
2935   - <distribute>Y</distribute>
2936   - <custom_distribution/>
2937   - <copies>1</copies>
2938   - <partitioning>
2939   - <method>none</method>
2940   - <schema_name/>
2941   - </partitioning>
2942   - <cluster_schema/>
2943   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2944   - <xloc>997</xloc>
2945   - <yloc>606</yloc>
2946   - <draw>Y</draw>
2947   - </GUI>
2948   - </step>
2949   -
2950   - <step_error_handling>
2951   - <error>
2952   - <source_step>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail</source_step>
2953   - <target_step/>
2954   - <is_enabled>Y</is_enabled>
2955   - <nr_valuename>c1</nr_valuename>
2956   - <descriptions_valuename>c2</descriptions_valuename>
2957   - <fields_valuename>c3</fields_valuename>
2958   - <codes_valuename>c4</codes_valuename>
2959   - <max_errors/>
2960   - <max_pct_errors/>
2961   - <min_pct_rows/>
2962   - </error>
2963   - </step_error_handling>
2964   - <slave-step-copy-partition-distribution>
2965   -</slave-step-copy-partition-distribution>
2966   - <slave_transformation>N</slave_transformation>
2967   -
2968   -</transformation>
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<transformation>
  3 + <info>
  4 + <name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x5bfc;&#x51fa;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;&#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;&#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;if &#x28;sxx &#x3d;&#x3d; 0&#x29; &#x7b; &#x2f;&#x2f; &#x4e0a;&#x884c;&#xa; jhlc &#x3d; up_mileage&#x3b;&#xa; bcsj &#x3d; up_travel_time&#x3b;&#xa;&#x7d; else &#x7b; &#x2f;&#x2f; sxx &#x3d;&#x3d; 1 &#x4e0b;&#x884c;&#xa; jhlc &#x3d; down_mileage&#x3b;&#xa; bcsj &#x3d; down_travel_time&#x3b;&#xa;&#x7d;</jsScript_script>
  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;&#x4e2d;&#x7684;&#x6570;&#x5b57;&#xa;qdzname &#x3d; qdzname.replace&#x28;&#x2f;&#x5c;d&#x2b;&#x2f;g,&#x27;&#x27;&#x29;&#x3b;&#xa;&#xa;&#x2f;&#x2f; sendtime&#x5904;&#x7406;&#xff0c;hhmm&#xff0c;hh&#x3a;mm&#xff0c;hh,mm&#xa;var sendtime_calcu&#x3b;&#xa;if &#x28;sendtime.length &#x3d;&#x3d; 5&#x29; &#x7b; &#x2f;&#x2f; &#x6700;&#x957f;&#x683c;&#x5f0f;&#xff0c;&#x5305;&#x62ec;&#x5206;&#x9694;&#x7b26;&#xff0c;&#x7edf;&#x4e00;&#x628a;&#x5206;&#x9694;&#x7b26;&#x66ff;&#x6362;&#x6210;&#x5192;&#x53f7;&#xa; sendtime_calcu &#x3d; sendtime.substr&#x28;0, 2&#x29; &#x2b; &#x22;&#x3a;&#x22; &#x2b; sendtime.substr&#x28;3, 2&#x29;&#x3b;&#xa;&#x7d; else if &#x28;sendtime.length &#x3d;&#x3d; 4&#x29; &#x7b;&#xa; if &#x28;sendtime.indexOf&#x28;&#x22;&#x3a;&#x22;&#x29; &#x3e; 0&#x29; &#x7b; &#x2f;&#x2f; &#x5192;&#x53f7;&#x5206;&#x9694;&#xff0c;&#x65e0;&#x9700;&#x4fee;&#x6539;&#xa; sendtime_calcu &#x3d; sendtime&#x3b;&#xa; &#x7d; else if &#x28;sendtime.indexOf&#x28;&#x22;,&#x22;&#x29; &#x3e; 0&#x29; &#x7b; &#x2f;&#x2f; &#x9017;&#x53f7;&#x5206;&#x9694;&#xff0c;&#x6539;&#x6210;&#x5192;&#x53f7;&#x5206;&#x9694;&#xa; sendtime_calcu &#x3d; sendtime.substr&#x28;0, 1&#x29; &#x2b; &#x22;&#x3a;&#x22; &#x2b; sendtime.substr&#x28;2, 2&#x29;&#x3b;&#xa; &#x7d; else &#x7b; &#x2f;&#x2f; &#x65e0;&#x5206;&#x9694;&#x7b26;&#xff0c;&#x6539;&#x6210;&#x5192;&#x53f7;&#x5206;&#x9694;&#xa; sendtime_calcu &#x3d; sendtime.substr&#x28;0, 2&#x29; &#x2b; &#x22;&#x3a;&#x22; &#x2b; sendtime.substr&#x28;2, 2&#x29;&#x3b;&#xa; &#x7d;&#xa;&#x7d; else if &#x28;sendtime.length &#x3d;&#x3d; 3&#x29; &#x7b; &#x2f;&#x2f; &#x65e0;&#x5206;&#x9694;&#x7b26;&#xff0c;&#x6539;&#x6210;&#x5192;&#x53f7;&#x5206;&#x9694;&#xa; sendtime_calcu &#x3d; sendtime.substr&#x28;0, 1&#x29; &#x2b; &#x22;&#x3a;&#x22; &#x2b; sendtime.substr&#x28;1, 2&#x29;&#x3b;&#xa;&#x7d;&#xa;&#xa;&#x2f;&#x2f; &#x8bbe;&#x7f6e;&#x5206;&#x73ed;&#xa;var isfb &#x3d; 0&#x3b;&#xa;&#xa;&#x2f;&#x2f; &#x8bbe;&#x7f6e;isCanceled&#xa;var iscanceled &#x3d; 0&#x3b;</jsScript_script>
  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> </fields> <cluster_schema/>
  857 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  858 + <xloc>788</xloc>
  859 + <yloc>44</yloc>
  860 + <draw>Y</draw>
  861 + </GUI>
  862 + </step>
  863 +
  864 + <step>
  865 + <name>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</name>
  866 + <type>SelectValues</type>
  867 + <description/>
  868 + <distribute>Y</distribute>
  869 + <custom_distribution/>
  870 + <copies>1</copies>
  871 + <partitioning>
  872 + <method>none</method>
  873 + <schema_name/>
  874 + </partitioning>
  875 + <fields> <field> <name>&#x8def;&#x724c;</name>
  876 + <rename>lp</rename>
  877 + <length>-2</length>
  878 + <precision>-2</precision>
  879 + </field> <field> <name>&#x7ad9;&#x70b9;&#x540d;&#x79f0;</name>
  880 + <rename>qdzname</rename>
  881 + <length>-2</length>
  882 + <precision>-2</precision>
  883 + </field> <field> <name>&#x53d1;&#x8f66;&#x65f6;&#x95f4;</name>
  884 + <rename>sendtime</rename>
  885 + <length>-2</length>
  886 + <precision>-2</precision>
  887 + </field> <select_unspecified>Y</select_unspecified>
  888 + </fields> <cluster_schema/>
  889 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  890 + <xloc>444</xloc>
  891 + <yloc>131</yloc>
  892 + <draw>Y</draw>
  893 + </GUI>
  894 + </step>
  895 +
  896 + <step>
  897 + <name>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;1</name>
  898 + <type>FilterRows</type>
  899 + <description/>
  900 + <distribute>Y</distribute>
  901 + <custom_distribution/>
  902 + <copies>1</copies>
  903 + <partitioning>
  904 + <method>none</method>
  905 + <schema_name/>
  906 + </partitioning>
  907 +<send_true_to>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</send_true_to>
  908 +<send_false_to>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</send_false_to>
  909 + <compare>
  910 +<condition>
  911 + <negated>N</negated>
  912 + <leftvalue>bctype</leftvalue>
  913 + <function>&#x3d;</function>
  914 + <rightvalue/>
  915 + <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>
  916 + </compare>
  917 + <cluster_schema/>
  918 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  919 + <xloc>860</xloc>
  920 + <yloc>401</yloc>
  921 + <draw>Y</draw>
  922 + </GUI>
  923 + </step>
  924 +
  925 + <step>
  926 + <name>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</name>
  927 + <type>FilterRows</type>
  928 + <description/>
  929 + <distribute>Y</distribute>
  930 + <custom_distribution/>
  931 + <copies>1</copies>
  932 + <partitioning>
  933 + <method>none</method>
  934 + <schema_name/>
  935 + </partitioning>
  936 +<send_true_to>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</send_true_to>
  937 +<send_false_to>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</send_false_to>
  938 + <compare>
  939 +<condition>
  940 + <negated>N</negated>
  941 + <leftvalue>bctype</leftvalue>
  942 + <function>&#x3d;</function>
  943 + <rightvalue/>
  944 + <value><name>constant</name><type>String</type><text>&#x51fa;&#x573a;</text><length>-1</length><precision>-1</precision><isnull>N</isnull><mask/></value> </condition>
  945 + </compare>
  946 + <cluster_schema/>
  947 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  948 + <xloc>995</xloc>
  949 + <yloc>503</yloc>
  950 + <draw>Y</draw>
  951 + </GUI>
  952 + </step>
  953 +
  954 + <step>
  955 + <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail</name>
  956 + <type>InsertUpdate</type>
  957 + <description/>
  958 + <distribute>Y</distribute>
  959 + <custom_distribution/>
  960 + <copies>1</copies>
  961 + <partitioning>
  962 + <method>none</method>
  963 + <schema_name/>
  964 + </partitioning>
  965 + <connection>bus_control_variable</connection>
  966 + <commit>100</commit>
  967 + <update_bypassed>N</update_bypassed>
  968 + <lookup>
  969 + <schema/>
  970 + <table>bsth_c_s_ttinfo_detail</table>
  971 + <key>
  972 + <name>xlid</name>
  973 + <field>xl</field>
  974 + <condition>&#x3d;</condition>
  975 + <name2/>
  976 + </key>
  977 + <key>
  978 + <name>ttid</name>
  979 + <field>ttinfo</field>
  980 + <condition>&#x3d;</condition>
  981 + <name2/>
  982 + </key>
  983 + <key>
  984 + <name>lpid</name>
  985 + <field>lp</field>
  986 + <condition>&#x3d;</condition>
  987 + <name2/>
  988 + </key>
  989 + <key>
  990 + <name>fcno</name>
  991 + <field>fcno</field>
  992 + <condition>&#x3d;</condition>
  993 + <name2/>
  994 + </key>
  995 + <key>
  996 + <name>bcs</name>
  997 + <field>bcs</field>
  998 + <condition>&#x3d;</condition>
  999 + <name2/>
  1000 + </key>
  1001 + <value>
  1002 + <name>lp</name>
  1003 + <rename>lpid</rename>
  1004 + <update>Y</update>
  1005 + </value>
  1006 + <value>
  1007 + <name>bc_type</name>
  1008 + <rename>bctype_code</rename>
  1009 + <update>Y</update>
  1010 + </value>
  1011 + <value>
  1012 + <name>bcs</name>
  1013 + <rename>bcs</rename>
  1014 + <update>Y</update>
  1015 + </value>
  1016 + <value>
  1017 + <name>bcsj</name>
  1018 + <rename>bcsj</rename>
  1019 + <update>Y</update>
  1020 + </value>
  1021 + <value>
  1022 + <name>fcno</name>
  1023 + <rename>fcno</rename>
  1024 + <update>Y</update>
  1025 + </value>
  1026 + <value>
  1027 + <name>jhlc</name>
  1028 + <rename>jhlc</rename>
  1029 + <update>Y</update>
  1030 + </value>
  1031 + <value>
  1032 + <name>fcsj</name>
  1033 + <rename>sendtime_calcu</rename>
  1034 + <update>Y</update>
  1035 + </value>
  1036 + <value>
  1037 + <name>ttinfo</name>
  1038 + <rename>ttid</rename>
  1039 + <update>Y</update>
  1040 + </value>
  1041 + <value>
  1042 + <name>xl</name>
  1043 + <rename>xlid</rename>
  1044 + <update>Y</update>
  1045 + </value>
  1046 + <value>
  1047 + <name>qdz</name>
  1048 + <rename>qdzid</rename>
  1049 + <update>Y</update>
  1050 + </value>
  1051 + <value>
  1052 + <name>zdz</name>
  1053 + <rename>zdzid</rename>
  1054 + <update>Y</update>
  1055 + </value>
  1056 + <value>
  1057 + <name>xl_dir</name>
  1058 + <rename>sxx</rename>
  1059 + <update>Y</update>
  1060 + </value>
  1061 + <value>
  1062 + <name>isfb</name>
  1063 + <rename>isfb</rename>
  1064 + <update>Y</update>
  1065 + </value>
  1066 + <value>
  1067 + <name>qdz_code</name>
  1068 + <rename>qdzcode</rename>
  1069 + <update>Y</update>
  1070 + </value>
  1071 + <value>
  1072 + <name>qdz_name</name>
  1073 + <rename>qdzname</rename>
  1074 + <update>Y</update>
  1075 + </value>
  1076 + <value>
  1077 + <name>zdz_code</name>
  1078 + <rename>zdzcode</rename>
  1079 + <update>Y</update>
  1080 + </value>
  1081 + <value>
  1082 + <name>zdz_name</name>
  1083 + <rename>zdzname</rename>
  1084 + <update>Y</update>
  1085 + </value>
  1086 + </lookup>
  1087 + <cluster_schema/>
  1088 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1089 + <xloc>143</xloc>
  1090 + <yloc>860</yloc>
  1091 + <draw>Y</draw>
  1092 + </GUI>
  1093 + </step>
  1094 +
  1095 + <step>
  1096 + <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail 2</name>
  1097 + <type>InsertUpdate</type>
  1098 + <description/>
  1099 + <distribute>Y</distribute>
  1100 + <custom_distribution/>
  1101 + <copies>1</copies>
  1102 + <partitioning>
  1103 + <method>none</method>
  1104 + <schema_name/>
  1105 + </partitioning>
  1106 + <connection>bus_control_variable</connection>
  1107 + <commit>100</commit>
  1108 + <update_bypassed>N</update_bypassed>
  1109 + <lookup>
  1110 + <schema/>
  1111 + <table>bsth_c_s_ttinfo_detail</table>
  1112 + <key>
  1113 + <name>xlid</name>
  1114 + <field>xl</field>
  1115 + <condition>&#x3d;</condition>
  1116 + <name2/>
  1117 + </key>
  1118 + <key>
  1119 + <name>ttid</name>
  1120 + <field>ttinfo</field>
  1121 + <condition>&#x3d;</condition>
  1122 + <name2/>
  1123 + </key>
  1124 + <key>
  1125 + <name>lpid</name>
  1126 + <field>lp</field>
  1127 + <condition>&#x3d;</condition>
  1128 + <name2/>
  1129 + </key>
  1130 + <key>
  1131 + <name>fcno</name>
  1132 + <field>fcno</field>
  1133 + <condition>&#x3d;</condition>
  1134 + <name2/>
  1135 + </key>
  1136 + <key>
  1137 + <name>bcs</name>
  1138 + <field>bcs</field>
  1139 + <condition>&#x3d;</condition>
  1140 + <name2/>
  1141 + </key>
  1142 + <value>
  1143 + <name>tcc</name>
  1144 + <rename>qdzid</rename>
  1145 + <update>Y</update>
  1146 + </value>
  1147 + <value>
  1148 + <name>zdz</name>
  1149 + <rename>zdzid</rename>
  1150 + <update>Y</update>
  1151 + </value>
  1152 + <value>
  1153 + <name>xl</name>
  1154 + <rename>xlid</rename>
  1155 + <update>Y</update>
  1156 + </value>
  1157 + <value>
  1158 + <name>ttinfo</name>
  1159 + <rename>ttid</rename>
  1160 + <update>Y</update>
  1161 + </value>
  1162 + <value>
  1163 + <name>xl_dir</name>
  1164 + <rename>sxx</rename>
  1165 + <update>Y</update>
  1166 + </value>
  1167 + <value>
  1168 + <name>lp</name>
  1169 + <rename>lpid</rename>
  1170 + <update>Y</update>
  1171 + </value>
  1172 + <value>
  1173 + <name>jhlc</name>
  1174 + <rename>out_mileage</rename>
  1175 + <update>Y</update>
  1176 + </value>
  1177 + <value>
  1178 + <name>fcsj</name>
  1179 + <rename>sendtime_calcu</rename>
  1180 + <update>Y</update>
  1181 + </value>
  1182 + <value>
  1183 + <name>bcsj</name>
  1184 + <rename>out_time</rename>
  1185 + <update>Y</update>
  1186 + </value>
  1187 + <value>
  1188 + <name>bcs</name>
  1189 + <rename>bcs</rename>
  1190 + <update>Y</update>
  1191 + </value>
  1192 + <value>
  1193 + <name>fcno</name>
  1194 + <rename>fcno</rename>
  1195 + <update>Y</update>
  1196 + </value>
  1197 + <value>
  1198 + <name>bc_type</name>
  1199 + <rename>bctype_code</rename>
  1200 + <update>Y</update>
  1201 + </value>
  1202 + <value>
  1203 + <name>isfb</name>
  1204 + <rename>isfb</rename>
  1205 + <update>Y</update>
  1206 + </value>
  1207 + <value>
  1208 + <name>qdz_code</name>
  1209 + <rename>qdzcode</rename>
  1210 + <update>Y</update>
  1211 + </value>
  1212 + <value>
  1213 + <name>qdz_name</name>
  1214 + <rename>tn</rename>
  1215 + <update>Y</update>
  1216 + </value>
  1217 + <value>
  1218 + <name>zdz_code</name>
  1219 + <rename>zdzcode</rename>
  1220 + <update>Y</update>
  1221 + </value>
  1222 + <value>
  1223 + <name>zdz_name</name>
  1224 + <rename>zdzname</rename>
  1225 + <update>Y</update>
  1226 + </value>
  1227 + </lookup>
  1228 + <cluster_schema/>
  1229 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1230 + <xloc>340</xloc>
  1231 + <yloc>1087</yloc>
  1232 + <draw>Y</draw>
  1233 + </GUI>
  1234 + </step>
  1235 +
  1236 + <step>
  1237 + <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail 3</name>
  1238 + <type>InsertUpdate</type>
  1239 + <description/>
  1240 + <distribute>Y</distribute>
  1241 + <custom_distribution/>
  1242 + <copies>1</copies>
  1243 + <partitioning>
  1244 + <method>none</method>
  1245 + <schema_name/>
  1246 + </partitioning>
  1247 + <connection>bus_control_variable</connection>
  1248 + <commit>100</commit>
  1249 + <update_bypassed>N</update_bypassed>
  1250 + <lookup>
  1251 + <schema/>
  1252 + <table>bsth_c_s_ttinfo_detail</table>
  1253 + <key>
  1254 + <name>xlid</name>
  1255 + <field>xl</field>
  1256 + <condition>&#x3d;</condition>
  1257 + <name2/>
  1258 + </key>
  1259 + <key>
  1260 + <name>ttid</name>
  1261 + <field>ttinfo</field>
  1262 + <condition>&#x3d;</condition>
  1263 + <name2/>
  1264 + </key>
  1265 + <key>
  1266 + <name>lpid</name>
  1267 + <field>lp</field>
  1268 + <condition>&#x3d;</condition>
  1269 + <name2/>
  1270 + </key>
  1271 + <key>
  1272 + <name>fcno</name>
  1273 + <field>fcno</field>
  1274 + <condition>&#x3d;</condition>
  1275 + <name2/>
  1276 + </key>
  1277 + <key>
  1278 + <name>bcs</name>
  1279 + <field>bcs</field>
  1280 + <condition>&#x3d;</condition>
  1281 + <name2/>
  1282 + </key>
  1283 + <value>
  1284 + <name>fcno</name>
  1285 + <rename>fcno</rename>
  1286 + <update>Y</update>
  1287 + </value>
  1288 + <value>
  1289 + <name>bcs</name>
  1290 + <rename>bcs</rename>
  1291 + <update>Y</update>
  1292 + </value>
  1293 + <value>
  1294 + <name>xl</name>
  1295 + <rename>xlid</rename>
  1296 + <update>Y</update>
  1297 + </value>
  1298 + <value>
  1299 + <name>ttinfo</name>
  1300 + <rename>ttid</rename>
  1301 + <update>Y</update>
  1302 + </value>
  1303 + <value>
  1304 + <name>lp</name>
  1305 + <rename>lpid</rename>
  1306 + <update>Y</update>
  1307 + </value>
  1308 + <value>
  1309 + <name>bc_type</name>
  1310 + <rename>bctype_code</rename>
  1311 + <update>Y</update>
  1312 + </value>
  1313 + <value>
  1314 + <name>bcsj</name>
  1315 + <rename>parade_time</rename>
  1316 + <update>Y</update>
  1317 + </value>
  1318 + <value>
  1319 + <name>jhlc</name>
  1320 + <rename>parade_mileage</rename>
  1321 + <update>Y</update>
  1322 + </value>
  1323 + <value>
  1324 + <name>fcsj</name>
  1325 + <rename>sendtime_calcu</rename>
  1326 + <update>Y</update>
  1327 + </value>
  1328 + <value>
  1329 + <name>xl_dir</name>
  1330 + <rename>sxx2</rename>
  1331 + <update>Y</update>
  1332 + </value>
  1333 + <value>
  1334 + <name>qdz</name>
  1335 + <rename>qdzid</rename>
  1336 + <update>Y</update>
  1337 + </value>
  1338 + <value>
  1339 + <name>tcc</name>
  1340 + <rename>zdzid</rename>
  1341 + <update>Y</update>
  1342 + </value>
  1343 + <value>
  1344 + <name>isfb</name>
  1345 + <rename>isfb</rename>
  1346 + <update>Y</update>
  1347 + </value>
  1348 + <value>
  1349 + <name>qdz_code</name>
  1350 + <rename>qdzcode</rename>
  1351 + <update>Y</update>
  1352 + </value>
  1353 + <value>
  1354 + <name>qdz_name</name>
  1355 + <rename>qname</rename>
  1356 + <update>Y</update>
  1357 + </value>
  1358 + <value>
  1359 + <name>zdz_code</name>
  1360 + <rename>zdzcode</rename>
  1361 + <update>Y</update>
  1362 + </value>
  1363 + <value>
  1364 + <name>zdz_name</name>
  1365 + <rename>tn</rename>
  1366 + <update>Y</update>
  1367 + </value>
  1368 + </lookup>
  1369 + <cluster_schema/>
  1370 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1371 + <xloc>845</xloc>
  1372 + <yloc>899</yloc>
  1373 + <draw>Y</draw>
  1374 + </GUI>
  1375 + </step>
  1376 +
  1377 + <step>
  1378 + <name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</name>
  1379 + <type>ExcelInput</type>
  1380 + <description/>
  1381 + <distribute>N</distribute>
  1382 + <custom_distribution/>
  1383 + <copies>1</copies>
  1384 + <partitioning>
  1385 + <method>none</method>
  1386 + <schema_name/>
  1387 + </partitioning>
  1388 + <header>Y</header>
  1389 + <noempty>Y</noempty>
  1390 + <stoponempty>N</stoponempty>
  1391 + <filefield/>
  1392 + <sheetfield/>
  1393 + <sheetrownumfield/>
  1394 + <rownumfield/>
  1395 + <sheetfield/>
  1396 + <filefield/>
  1397 + <limit>0</limit>
  1398 + <encoding/>
  1399 + <add_to_result_filenames>Y</add_to_result_filenames>
  1400 + <accept_filenames>N</accept_filenames>
  1401 + <accept_field/>
  1402 + <accept_stepname/>
  1403 + <file>
  1404 + <name/>
  1405 + <filemask/>
  1406 + <exclude_filemask/>
  1407 + <file_required>N</file_required>
  1408 + <include_subfolders>N</include_subfolders>
  1409 + </file>
  1410 + <fields>
  1411 + </fields>
  1412 + <sheets>
  1413 + <sheet>
  1414 + <name/>
  1415 + <startrow>0</startrow>
  1416 + <startcol>0</startcol>
  1417 + </sheet>
  1418 + </sheets>
  1419 + <strict_types>N</strict_types>
  1420 + <error_ignored>N</error_ignored>
  1421 + <error_line_skipped>N</error_line_skipped>
  1422 + <bad_line_files_destination_directory/>
  1423 + <bad_line_files_extension>warning</bad_line_files_extension>
  1424 + <error_line_files_destination_directory/>
  1425 + <error_line_files_extension>error</error_line_files_extension>
  1426 + <line_number_files_destination_directory/>
  1427 + <line_number_files_extension>line</line_number_files_extension>
  1428 + <shortFileFieldName/>
  1429 + <pathFieldName/>
  1430 + <hiddenFieldName/>
  1431 + <lastModificationTimeFieldName/>
  1432 + <uriNameFieldName/>
  1433 + <rootUriNameFieldName/>
  1434 + <extensionFieldName/>
  1435 + <sizeFieldName/>
  1436 + <spreadsheet_type>JXL</spreadsheet_type>
  1437 + <cluster_schema/>
  1438 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1439 + <xloc>112</xloc>
  1440 + <yloc>44</yloc>
  1441 + <draw>Y</draw>
  1442 + </GUI>
  1443 + </step>
  1444 +
  1445 + <step>
  1446 + <name>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;1</name>
  1447 + <type>DBLookup</type>
  1448 + <description/>
  1449 + <distribute>Y</distribute>
  1450 + <custom_distribution/>
  1451 + <copies>1</copies>
  1452 + <partitioning>
  1453 + <method>none</method>
  1454 + <schema_name/>
  1455 + </partitioning>
  1456 + <connection>bus_control_variable</connection>
  1457 + <cache>N</cache>
  1458 + <cache_load_all>N</cache_load_all>
  1459 + <cache_size>0</cache_size>
  1460 + <lookup>
  1461 + <schema/>
  1462 + <table>bsth_c_car_park</table>
  1463 + <orderby/>
  1464 + <fail_on_multiple>N</fail_on_multiple>
  1465 + <eat_row_on_failure>N</eat_row_on_failure>
  1466 + <key>
  1467 + <name>tccname_</name>
  1468 + <field>park_name</field>
  1469 + <condition>&#x3d;</condition>
  1470 + <name2/>
  1471 + </key>
  1472 + <value>
  1473 + <name>id</name>
  1474 + <rename>qdzid</rename>
  1475 + <default/>
  1476 + <type>Integer</type>
  1477 + </value>
  1478 + <value>
  1479 + <name>park_code</name>
  1480 + <rename>qdzcode</rename>
  1481 + <default/>
  1482 + <type>String</type>
  1483 + </value>
  1484 + <value>
  1485 + <name>park_name</name>
  1486 + <rename>tn</rename>
  1487 + <default/>
  1488 + <type>String</type>
  1489 + </value>
  1490 + </lookup>
  1491 + <cluster_schema/>
  1492 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1493 + <xloc>755</xloc>
  1494 + <yloc>504</yloc>
  1495 + <draw>Y</draw>
  1496 + </GUI>
  1497 + </step>
  1498 +
  1499 + <step>
  1500 + <name>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;2</name>
  1501 + <type>DBLookup</type>
  1502 + <description/>
  1503 + <distribute>Y</distribute>
  1504 + <custom_distribution/>
  1505 + <copies>1</copies>
  1506 + <partitioning>
  1507 + <method>none</method>
  1508 + <schema_name/>
  1509 + </partitioning>
  1510 + <connection>bus_control_variable</connection>
  1511 + <cache>N</cache>
  1512 + <cache_load_all>N</cache_load_all>
  1513 + <cache_size>0</cache_size>
  1514 + <lookup>
  1515 + <schema/>
  1516 + <table>bsth_c_car_park</table>
  1517 + <orderby/>
  1518 + <fail_on_multiple>N</fail_on_multiple>
  1519 + <eat_row_on_failure>N</eat_row_on_failure>
  1520 + <key>
  1521 + <name>tccname_</name>
  1522 + <field>park_name</field>
  1523 + <condition>&#x3d;</condition>
  1524 + <name2/>
  1525 + </key>
  1526 + <value>
  1527 + <name>id</name>
  1528 + <rename>zdzid</rename>
  1529 + <default/>
  1530 + <type>Integer</type>
  1531 + </value>
  1532 + <value>
  1533 + <name>park_code</name>
  1534 + <rename>zdzcode</rename>
  1535 + <default/>
  1536 + <type>String</type>
  1537 + </value>
  1538 + <value>
  1539 + <name>park_name</name>
  1540 + <rename>tn</rename>
  1541 + <default/>
  1542 + <type>String</type>
  1543 + </value>
  1544 + </lookup>
  1545 + <cluster_schema/>
  1546 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1547 + <xloc>887</xloc>
  1548 + <yloc>608</yloc>
  1549 + <draw>Y</draw>
  1550 + </GUI>
  1551 + </step>
  1552 +
  1553 + <step>
  1554 + <name>&#x67e5;&#x627e;&#x51fa;&#x573a;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</name>
  1555 + <type>DBLookup</type>
  1556 + <description/>
  1557 + <distribute>Y</distribute>
  1558 + <custom_distribution/>
  1559 + <copies>1</copies>
  1560 + <partitioning>
  1561 + <method>none</method>
  1562 + <schema_name/>
  1563 + </partitioning>
  1564 + <connection>bus_control_variable</connection>
  1565 + <cache>N</cache>
  1566 + <cache_load_all>N</cache_load_all>
  1567 + <cache_size>0</cache_size>
  1568 + <lookup>
  1569 + <schema/>
  1570 + <table>bsth_c_stationroute</table>
  1571 + <orderby/>
  1572 + <fail_on_multiple>N</fail_on_multiple>
  1573 + <eat_row_on_failure>N</eat_row_on_failure>
  1574 + <key>
  1575 + <name>xlid</name>
  1576 + <field>line</field>
  1577 + <condition>&#x3d;</condition>
  1578 + <name2/>
  1579 + </key>
  1580 + <key>
  1581 + <name>zdzname</name>
  1582 + <field>station_name</field>
  1583 + <condition>&#x3d;</condition>
  1584 + <name2/>
  1585 + </key>
  1586 + <key>
  1587 + <name>endZdtype</name>
  1588 + <field>station_mark</field>
  1589 + <condition>&#x3d;</condition>
  1590 + <name2/>
  1591 + </key>
  1592 + <key>
  1593 + <name>destory</name>
  1594 + <field>destroy</field>
  1595 + <condition>&#x3d;</condition>
  1596 + <name2/>
  1597 + </key>
  1598 + <value>
  1599 + <name>station</name>
  1600 + <rename>zdzid</rename>
  1601 + <default/>
  1602 + <type>Integer</type>
  1603 + </value>
  1604 + <value>
  1605 + <name>directions</name>
  1606 + <rename>sxx</rename>
  1607 + <default/>
  1608 + <type>Integer</type>
  1609 + </value>
  1610 + <value>
  1611 + <name>station_code</name>
  1612 + <rename>zdzcode</rename>
  1613 + <default/>
  1614 + <type>String</type>
  1615 + </value>
  1616 + </lookup>
  1617 + <cluster_schema/>
  1618 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1619 + <xloc>329</xloc>
  1620 + <yloc>505</yloc>
  1621 + <draw>Y</draw>
  1622 + </GUI>
  1623 + </step>
  1624 +
  1625 + <step>
  1626 + <name>&#x67e5;&#x627e;&#x65f6;&#x523b;&#x8868;&#x57fa;&#x7840;&#x4fe1;&#x606f;&#x5173;&#x8054;</name>
  1627 + <type>DBLookup</type>
  1628 + <description/>
  1629 + <distribute>Y</distribute>
  1630 + <custom_distribution/>
  1631 + <copies>1</copies>
  1632 + <partitioning>
  1633 + <method>none</method>
  1634 + <schema_name/>
  1635 + </partitioning>
  1636 + <connection>bus_control_variable</connection>
  1637 + <cache>N</cache>
  1638 + <cache_load_all>N</cache_load_all>
  1639 + <cache_size>0</cache_size>
  1640 + <lookup>
  1641 + <schema/>
  1642 + <table>bsth_c_s_ttinfo</table>
  1643 + <orderby/>
  1644 + <fail_on_multiple>N</fail_on_multiple>
  1645 + <eat_row_on_failure>N</eat_row_on_failure>
  1646 + <key>
  1647 + <name>xlid</name>
  1648 + <field>xl</field>
  1649 + <condition>&#x3d;</condition>
  1650 + <name2/>
  1651 + </key>
  1652 + <key>
  1653 + <name>ttinfoname_</name>
  1654 + <field>name</field>
  1655 + <condition>&#x3d;</condition>
  1656 + <name2/>
  1657 + </key>
  1658 + <key>
  1659 + <name>iscanceled</name>
  1660 + <field>is_cancel</field>
  1661 + <condition>&#x3d;</condition>
  1662 + <name2/>
  1663 + </key>
  1664 + <value>
  1665 + <name>id</name>
  1666 + <rename>ttid</rename>
  1667 + <default/>
  1668 + <type>Integer</type>
  1669 + </value>
  1670 + </lookup>
  1671 + <cluster_schema/>
  1672 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1673 + <xloc>1011</xloc>
  1674 + <yloc>134</yloc>
  1675 + <draw>Y</draw>
  1676 + </GUI>
  1677 + </step>
  1678 +
  1679 + <step>
  1680 + <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x4e0a;&#x4e0b;&#x884c;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
  1681 + <type>DBLookup</type>
  1682 + <description/>
  1683 + <distribute>Y</distribute>
  1684 + <custom_distribution/>
  1685 + <copies>1</copies>
  1686 + <partitioning>
  1687 + <method>none</method>
  1688 + <schema_name/>
  1689 + </partitioning>
  1690 + <connection>bus_control_variable</connection>
  1691 + <cache>N</cache>
  1692 + <cache_load_all>N</cache_load_all>
  1693 + <cache_size>0</cache_size>
  1694 + <lookup>
  1695 + <schema/>
  1696 + <table>bsth_c_line_information</table>
  1697 + <orderby/>
  1698 + <fail_on_multiple>N</fail_on_multiple>
  1699 + <eat_row_on_failure>N</eat_row_on_failure>
  1700 + <key>
  1701 + <name>xlid</name>
  1702 + <field>line</field>
  1703 + <condition>&#x3d;</condition>
  1704 + <name2/>
  1705 + </key>
  1706 + <value>
  1707 + <name>up_mileage</name>
  1708 + <rename>up_mileage</rename>
  1709 + <default/>
  1710 + <type>Number</type>
  1711 + </value>
  1712 + <value>
  1713 + <name>down_mileage</name>
  1714 + <rename>down_mileage</rename>
  1715 + <default/>
  1716 + <type>Number</type>
  1717 + </value>
  1718 + <value>
  1719 + <name>up_travel_time</name>
  1720 + <rename>up_travel_time</rename>
  1721 + <default/>
  1722 + <type>Number</type>
  1723 + </value>
  1724 + <value>
  1725 + <name>down_travel_time</name>
  1726 + <rename>down_travel_time</rename>
  1727 + <default/>
  1728 + <type>Number</type>
  1729 + </value>
  1730 + </lookup>
  1731 + <cluster_schema/>
  1732 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1733 + <xloc>149</xloc>
  1734 + <yloc>581</yloc>
  1735 + <draw>Y</draw>
  1736 + </GUI>
  1737 + </step>
  1738 +
  1739 + <step>
  1740 + <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x5173;&#x8054;</name>
  1741 + <type>DBLookup</type>
  1742 + <description/>
  1743 + <distribute>Y</distribute>
  1744 + <custom_distribution/>
  1745 + <copies>1</copies>
  1746 + <partitioning>
  1747 + <method>none</method>
  1748 + <schema_name/>
  1749 + </partitioning>
  1750 + <connection>bus_control_variable</connection>
  1751 + <cache>N</cache>
  1752 + <cache_load_all>N</cache_load_all>
  1753 + <cache_size>0</cache_size>
  1754 + <lookup>
  1755 + <schema/>
  1756 + <table>bsth_c_line</table>
  1757 + <orderby/>
  1758 + <fail_on_multiple>N</fail_on_multiple>
  1759 + <eat_row_on_failure>N</eat_row_on_failure>
  1760 + <key>
  1761 + <name>xlname_</name>
  1762 + <field>name</field>
  1763 + <condition>&#x3d;</condition>
  1764 + <name2/>
  1765 + </key>
  1766 + <value>
  1767 + <name>id</name>
  1768 + <rename>xlid</rename>
  1769 + <default/>
  1770 + <type>Integer</type>
  1771 + </value>
  1772 + </lookup>
  1773 + <cluster_schema/>
  1774 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1775 + <xloc>1007</xloc>
  1776 + <yloc>43</yloc>
  1777 + <draw>Y</draw>
  1778 + </GUI>
  1779 + </step>
  1780 +
  1781 + <step>
  1782 + <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x51fa;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
  1783 + <type>DBLookup</type>
  1784 + <description/>
  1785 + <distribute>Y</distribute>
  1786 + <custom_distribution/>
  1787 + <copies>1</copies>
  1788 + <partitioning>
  1789 + <method>none</method>
  1790 + <schema_name/>
  1791 + </partitioning>
  1792 + <connection>bus_control_variable</connection>
  1793 + <cache>N</cache>
  1794 + <cache_load_all>N</cache_load_all>
  1795 + <cache_size>0</cache_size>
  1796 + <lookup>
  1797 + <schema/>
  1798 + <table>bsth_c_line_information</table>
  1799 + <orderby/>
  1800 + <fail_on_multiple>N</fail_on_multiple>
  1801 + <eat_row_on_failure>N</eat_row_on_failure>
  1802 + <key>
  1803 + <name>xlid</name>
  1804 + <field>line</field>
  1805 + <condition>&#x3d;</condition>
  1806 + <name2/>
  1807 + </key>
  1808 + <value>
  1809 + <name>up_out_timer</name>
  1810 + <rename>up_out_timer</rename>
  1811 + <default/>
  1812 + <type>Number</type>
  1813 + </value>
  1814 + <value>
  1815 + <name>up_out_mileage</name>
  1816 + <rename>up_out_mileage</rename>
  1817 + <default/>
  1818 + <type>Number</type>
  1819 + </value>
  1820 + <value>
  1821 + <name>down_out_timer</name>
  1822 + <rename>down_out_timer</rename>
  1823 + <default/>
  1824 + <type>Number</type>
  1825 + </value>
  1826 + <value>
  1827 + <name>down_out_mileage</name>
  1828 + <rename>down_out_mileage</rename>
  1829 + <default/>
  1830 + <type>Number</type>
  1831 + </value>
  1832 + </lookup>
  1833 + <cluster_schema/>
  1834 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1835 + <xloc>335</xloc>
  1836 + <yloc>763</yloc>
  1837 + <draw>Y</draw>
  1838 + </GUI>
  1839 + </step>
  1840 +
  1841 + <step>
  1842 + <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x8fdb;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
  1843 + <type>DBLookup</type>
  1844 + <description/>
  1845 + <distribute>Y</distribute>
  1846 + <custom_distribution/>
  1847 + <copies>1</copies>
  1848 + <partitioning>
  1849 + <method>none</method>
  1850 + <schema_name/>
  1851 + </partitioning>
  1852 + <connection>bus_control_variable</connection>
  1853 + <cache>N</cache>
  1854 + <cache_load_all>N</cache_load_all>
  1855 + <cache_size>0</cache_size>
  1856 + <lookup>
  1857 + <schema/>
  1858 + <table>bsth_c_line_information</table>
  1859 + <orderby/>
  1860 + <fail_on_multiple>N</fail_on_multiple>
  1861 + <eat_row_on_failure>N</eat_row_on_failure>
  1862 + <key>
  1863 + <name>xlid</name>
  1864 + <field>line</field>
  1865 + <condition>&#x3d;</condition>
  1866 + <name2/>
  1867 + </key>
  1868 + <value>
  1869 + <name>up_in_mileage</name>
  1870 + <rename>up_in_mileage</rename>
  1871 + <default/>
  1872 + <type>Number</type>
  1873 + </value>
  1874 + <value>
  1875 + <name>up_in_timer</name>
  1876 + <rename>up_in_timer</rename>
  1877 + <default/>
  1878 + <type>Number</type>
  1879 + </value>
  1880 + <value>
  1881 + <name>down_in_mileage</name>
  1882 + <rename>down_in_mileage</rename>
  1883 + <default/>
  1884 + <type>Number</type>
  1885 + </value>
  1886 + <value>
  1887 + <name>down_in_timer</name>
  1888 + <rename>down_in_timer</rename>
  1889 + <default/>
  1890 + <type>Number</type>
  1891 + </value>
  1892 + </lookup>
  1893 + <cluster_schema/>
  1894 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1895 + <xloc>553</xloc>
  1896 + <yloc>1004</yloc>
  1897 + <draw>Y</draw>
  1898 + </GUI>
  1899 + </step>
  1900 +
  1901 + <step>
  1902 + <name>&#x67e5;&#x627e;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;</name>
  1903 + <type>DBLookup</type>
  1904 + <description/>
  1905 + <distribute>Y</distribute>
  1906 + <custom_distribution/>
  1907 + <copies>1</copies>
  1908 + <partitioning>
  1909 + <method>none</method>
  1910 + <schema_name/>
  1911 + </partitioning>
  1912 + <connection>bus_control_variable</connection>
  1913 + <cache>N</cache>
  1914 + <cache_load_all>N</cache_load_all>
  1915 + <cache_size>0</cache_size>
  1916 + <lookup>
  1917 + <schema/>
  1918 + <table>bsth_c_stationroute</table>
  1919 + <orderby/>
  1920 + <fail_on_multiple>N</fail_on_multiple>
  1921 + <eat_row_on_failure>N</eat_row_on_failure>
  1922 + <key>
  1923 + <name>xlid</name>
  1924 + <field>line</field>
  1925 + <condition>&#x3d;</condition>
  1926 + <name2/>
  1927 + </key>
  1928 + <key>
  1929 + <name>sxx</name>
  1930 + <field>directions</field>
  1931 + <condition>&#x3d;</condition>
  1932 + <name2/>
  1933 + </key>
  1934 + <key>
  1935 + <name>endZdtype</name>
  1936 + <field>station_mark</field>
  1937 + <condition>&#x3d;</condition>
  1938 + <name2/>
  1939 + </key>
  1940 + <key>
  1941 + <name>destory</name>
  1942 + <field>destroy</field>
  1943 + <condition>&#x3d;</condition>
  1944 + <name2/>
  1945 + </key>
  1946 + <value>
  1947 + <name>station_name</name>
  1948 + <rename>zdzname</rename>
  1949 + <default/>
  1950 + <type>String</type>
  1951 + </value>
  1952 + <value>
  1953 + <name>station</name>
  1954 + <rename>zdzid</rename>
  1955 + <default/>
  1956 + <type>Integer</type>
  1957 + </value>
  1958 + <value>
  1959 + <name>station_code</name>
  1960 + <rename>zdzcode</rename>
  1961 + <default/>
  1962 + <type>String</type>
  1963 + </value>
  1964 + </lookup>
  1965 + <cluster_schema/>
  1966 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1967 + <xloc>280</xloc>
  1968 + <yloc>404</yloc>
  1969 + <draw>Y</draw>
  1970 + </GUI>
  1971 + </step>
  1972 +
  1973 + <step>
  1974 + <name>&#x67e5;&#x627e;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</name>
  1975 + <type>DBLookup</type>
  1976 + <description/>
  1977 + <distribute>Y</distribute>
  1978 + <custom_distribution/>
  1979 + <copies>1</copies>
  1980 + <partitioning>
  1981 + <method>none</method>
  1982 + <schema_name/>
  1983 + </partitioning>
  1984 + <connection>bus_control_variable</connection>
  1985 + <cache>N</cache>
  1986 + <cache_load_all>N</cache_load_all>
  1987 + <cache_size>0</cache_size>
  1988 + <lookup>
  1989 + <schema/>
  1990 + <table>bsth_c_stationroute</table>
  1991 + <orderby/>
  1992 + <fail_on_multiple>N</fail_on_multiple>
  1993 + <eat_row_on_failure>N</eat_row_on_failure>
  1994 + <key>
  1995 + <name>xlid</name>
  1996 + <field>line</field>
  1997 + <condition>&#x3d;</condition>
  1998 + <name2/>
  1999 + </key>
  2000 + <key>
  2001 + <name>qdzname</name>
  2002 + <field>station_name</field>
  2003 + <condition>&#x3d;</condition>
  2004 + <name2/>
  2005 + </key>
  2006 + <key>
  2007 + <name>sendZdtype</name>
  2008 + <field>station_mark</field>
  2009 + <condition>&#x3d;</condition>
  2010 + <name2/>
  2011 + </key>
  2012 + <key>
  2013 + <name>destory</name>
  2014 + <field>destroy</field>
  2015 + <condition>&#x3d;</condition>
  2016 + <name2/>
  2017 + </key>
  2018 + <value>
  2019 + <name>station</name>
  2020 + <rename>qdzid</rename>
  2021 + <default/>
  2022 + <type>Integer</type>
  2023 + </value>
  2024 + <value>
  2025 + <name>directions</name>
  2026 + <rename>sxx</rename>
  2027 + <default/>
  2028 + <type>Integer</type>
  2029 + </value>
  2030 + <value>
  2031 + <name>station_code</name>
  2032 + <rename>qdzcode</rename>
  2033 + <default/>
  2034 + <type>String</type>
  2035 + </value>
  2036 + </lookup>
  2037 + <cluster_schema/>
  2038 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2039 + <xloc>430</xloc>
  2040 + <yloc>403</yloc>
  2041 + <draw>Y</draw>
  2042 + </GUI>
  2043 + </step>
  2044 +
  2045 + <step>
  2046 + <name>&#x67e5;&#x627e;&#x8def;&#x724c;&#x5173;&#x8054;</name>
  2047 + <type>DBLookup</type>
  2048 + <description/>
  2049 + <distribute>Y</distribute>
  2050 + <custom_distribution/>
  2051 + <copies>1</copies>
  2052 + <partitioning>
  2053 + <method>none</method>
  2054 + <schema_name/>
  2055 + </partitioning>
  2056 + <connection>bus_control_variable</connection>
  2057 + <cache>N</cache>
  2058 + <cache_load_all>N</cache_load_all>
  2059 + <cache_size>0</cache_size>
  2060 + <lookup>
  2061 + <schema/>
  2062 + <table>bsth_c_s_gbi</table>
  2063 + <orderby/>
  2064 + <fail_on_multiple>N</fail_on_multiple>
  2065 + <eat_row_on_failure>N</eat_row_on_failure>
  2066 + <key>
  2067 + <name>xlid</name>
  2068 + <field>xl</field>
  2069 + <condition>&#x3d;</condition>
  2070 + <name2/>
  2071 + </key>
  2072 + <key>
  2073 + <name>lp</name>
  2074 + <field>lp_name</field>
  2075 + <condition>&#x3d;</condition>
  2076 + <name2/>
  2077 + </key>
  2078 + <key>
  2079 + <name>iscanceled</name>
  2080 + <field>is_cancel</field>
  2081 + <condition>&#x3d;</condition>
  2082 + <name2/>
  2083 + </key>
  2084 + <value>
  2085 + <name>id</name>
  2086 + <rename>lpid</rename>
  2087 + <default/>
  2088 + <type>Integer</type>
  2089 + </value>
  2090 + </lookup>
  2091 + <cluster_schema/>
  2092 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2093 + <xloc>1013</xloc>
  2094 + <yloc>265</yloc>
  2095 + <draw>Y</draw>
  2096 + </GUI>
  2097 + </step>
  2098 +
  2099 + <step>
  2100 + <name>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ebf;&#x8def;&#x65b9;&#x5411;</name>
  2101 + <type>DBLookup</type>
  2102 + <description/>
  2103 + <distribute>Y</distribute>
  2104 + <custom_distribution/>
  2105 + <copies>1</copies>
  2106 + <partitioning>
  2107 + <method>none</method>
  2108 + <schema_name/>
  2109 + </partitioning>
  2110 + <connection>bus_control_variable</connection>
  2111 + <cache>N</cache>
  2112 + <cache_load_all>N</cache_load_all>
  2113 + <cache_size>0</cache_size>
  2114 + <lookup>
  2115 + <schema/>
  2116 + <table>bsth_c_stationroute</table>
  2117 + <orderby/>
  2118 + <fail_on_multiple>N</fail_on_multiple>
  2119 + <eat_row_on_failure>N</eat_row_on_failure>
  2120 + <key>
  2121 + <name>xlid</name>
  2122 + <field>line</field>
  2123 + <condition>&#x3d;</condition>
  2124 + <name2/>
  2125 + </key>
  2126 + <key>
  2127 + <name>startZdtype_calcu</name>
  2128 + <field>station_mark</field>
  2129 + <condition>&#x3d;</condition>
  2130 + <name2/>
  2131 + </key>
  2132 + <key>
  2133 + <name>qdzname_calcu</name>
  2134 + <field>station_name</field>
  2135 + <condition>&#x3d;</condition>
  2136 + <name2/>
  2137 + </key>
  2138 + <key>
  2139 + <name>destory</name>
  2140 + <field>destroy</field>
  2141 + <condition>&#x3d;</condition>
  2142 + <name2/>
  2143 + </key>
  2144 + <value>
  2145 + <name>directions</name>
  2146 + <rename>sxx</rename>
  2147 + <default/>
  2148 + <type>String</type>
  2149 + </value>
  2150 + </lookup>
  2151 + <cluster_schema/>
  2152 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2153 + <xloc>548</xloc>
  2154 + <yloc>610</yloc>
  2155 + <draw>Y</draw>
  2156 + </GUI>
  2157 + </step>
  2158 +
  2159 + <step>
  2160 + <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>
  2161 + <type>DBLookup</type>
  2162 + <description/>
  2163 + <distribute>Y</distribute>
  2164 + <custom_distribution/>
  2165 + <copies>1</copies>
  2166 + <partitioning>
  2167 + <method>none</method>
  2168 + <schema_name/>
  2169 + </partitioning>
  2170 + <connection>bus_control_variable</connection>
  2171 + <cache>Y</cache>
  2172 + <cache_load_all>Y</cache_load_all>
  2173 + <cache_size>0</cache_size>
  2174 + <lookup>
  2175 + <schema/>
  2176 + <table>bsth_c_stationroute</table>
  2177 + <orderby/>
  2178 + <fail_on_multiple>N</fail_on_multiple>
  2179 + <eat_row_on_failure>N</eat_row_on_failure>
  2180 + <key>
  2181 + <name>xlid</name>
  2182 + <field>line</field>
  2183 + <condition>&#x3d;</condition>
  2184 + <name2/>
  2185 + </key>
  2186 + <key>
  2187 + <name>endZdtype_calcu</name>
  2188 + <field>station_mark</field>
  2189 + <condition>&#x3d;</condition>
  2190 + <name2/>
  2191 + </key>
  2192 + <key>
  2193 + <name>sxx</name>
  2194 + <field>directions</field>
  2195 + <condition>&#x3d;</condition>
  2196 + <name2/>
  2197 + </key>
  2198 + <key>
  2199 + <name>destory</name>
  2200 + <field>destroy</field>
  2201 + <condition>&#x3d;</condition>
  2202 + <name2/>
  2203 + </key>
  2204 + <value>
  2205 + <name>station_name</name>
  2206 + <rename>zdzname_calcu</rename>
  2207 + <default/>
  2208 + <type>Integer</type>
  2209 + </value>
  2210 + </lookup>
  2211 + <cluster_schema/>
  2212 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2213 + <xloc>550</xloc>
  2214 + <yloc>701</yloc>
  2215 + <draw>Y</draw>
  2216 + </GUI>
  2217 + </step>
  2218 +
  2219 + <step>
  2220 + <name>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</name>
  2221 + <type>DBLookup</type>
  2222 + <description/>
  2223 + <distribute>Y</distribute>
  2224 + <custom_distribution/>
  2225 + <copies>1</copies>
  2226 + <partitioning>
  2227 + <method>none</method>
  2228 + <schema_name/>
  2229 + </partitioning>
  2230 + <connection>bus_control_variable</connection>
  2231 + <cache>N</cache>
  2232 + <cache_load_all>N</cache_load_all>
  2233 + <cache_size>0</cache_size>
  2234 + <lookup>
  2235 + <schema/>
  2236 + <table>bsth_c_stationroute</table>
  2237 + <orderby/>
  2238 + <fail_on_multiple>N</fail_on_multiple>
  2239 + <eat_row_on_failure>N</eat_row_on_failure>
  2240 + <key>
  2241 + <name>xlid</name>
  2242 + <field>line</field>
  2243 + <condition>&#x3d;</condition>
  2244 + <name2/>
  2245 + </key>
  2246 + <key>
  2247 + <name>zdzname_calcu</name>
  2248 + <field>station_name</field>
  2249 + <condition>&#x3d;</condition>
  2250 + <name2/>
  2251 + </key>
  2252 + <key>
  2253 + <name>startZdtype_calcu</name>
  2254 + <field>station_mark</field>
  2255 + <condition>&#x3d;</condition>
  2256 + <name2/>
  2257 + </key>
  2258 + <key>
  2259 + <name>destory</name>
  2260 + <field>destroy</field>
  2261 + <condition>&#x3d;</condition>
  2262 + <name2/>
  2263 + </key>
  2264 + <value>
  2265 + <name>directions</name>
  2266 + <rename>sxx2</rename>
  2267 + <default/>
  2268 + <type>Integer</type>
  2269 + </value>
  2270 + <value>
  2271 + <name>station</name>
  2272 + <rename>qdzid</rename>
  2273 + <default/>
  2274 + <type>Integer</type>
  2275 + </value>
  2276 + <value>
  2277 + <name>station_code</name>
  2278 + <rename>qdzcode</rename>
  2279 + <default/>
  2280 + <type>String</type>
  2281 + </value>
  2282 + <value>
  2283 + <name>station_name</name>
  2284 + <rename>qname</rename>
  2285 + <default/>
  2286 + <type>String</type>
  2287 + </value>
  2288 + </lookup>
  2289 + <cluster_schema/>
  2290 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2291 + <xloc>551</xloc>
  2292 + <yloc>782</yloc>
  2293 + <draw>Y</draw>
  2294 + </GUI>
  2295 + </step>
  2296 +
  2297 + <step>
  2298 + <name>&#x6b63;&#x5e38;&#x73ed;&#x6b21;_&#x5904;&#x7406;&#x6570;&#x636e;</name>
  2299 + <type>ScriptValueMod</type>
  2300 + <description/>
  2301 + <distribute>Y</distribute>
  2302 + <custom_distribution/>
  2303 + <copies>1</copies>
  2304 + <partitioning>
  2305 + <method>none</method>
  2306 + <schema_name/>
  2307 + </partitioning>
  2308 + <compatible>N</compatible>
  2309 + <optimizationLevel>9</optimizationLevel>
  2310 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  2311 + <jsScript_name>Script 1</jsScript_name>
  2312 + <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>
  2313 + </jsScript> </jsScripts> <fields> <field> <name>sendZdtype</name>
  2314 + <rename>sendZdtype</rename>
  2315 + <type>String</type>
  2316 + <length>-1</length>
  2317 + <precision>-1</precision>
  2318 + <replace>N</replace>
  2319 + </field> <field> <name>endZdtype</name>
  2320 + <rename>endZdtype</rename>
  2321 + <type>String</type>
  2322 + <length>-1</length>
  2323 + <precision>-1</precision>
  2324 + <replace>N</replace>
  2325 + </field> <field> <name>destory</name>
  2326 + <rename>destory</rename>
  2327 + <type>Integer</type>
  2328 + <length>-1</length>
  2329 + <precision>-1</precision>
  2330 + <replace>N</replace>
  2331 + </field> </fields> <cluster_schema/>
  2332 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2333 + <xloc>588</xloc>
  2334 + <yloc>403</yloc>
  2335 + <draw>Y</draw>
  2336 + </GUI>
  2337 + </step>
  2338 +
  2339 + <step>
  2340 + <name>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</name>
  2341 + <type>Dummy</type>
  2342 + <description/>
  2343 + <distribute>Y</distribute>
  2344 + <custom_distribution/>
  2345 + <copies>1</copies>
  2346 + <partitioning>
  2347 + <method>none</method>
  2348 + <schema_name/>
  2349 + </partitioning>
  2350 + <cluster_schema/>
  2351 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2352 + <xloc>725</xloc>
  2353 + <yloc>404</yloc>
  2354 + <draw>Y</draw>
  2355 + </GUI>
  2356 + </step>
  2357 +
  2358 + <step>
  2359 + <name>&#x6dfb;&#x52a0;&#x53d1;&#x8f66;&#x987a;&#x5e8f;&#x53f7;</name>
  2360 + <type>GroupBy</type>
  2361 + <description/>
  2362 + <distribute>Y</distribute>
  2363 + <custom_distribution/>
  2364 + <copies>1</copies>
  2365 + <partitioning>
  2366 + <method>none</method>
  2367 + <schema_name/>
  2368 + </partitioning>
  2369 + <all_rows>Y</all_rows>
  2370 + <ignore_aggregate>N</ignore_aggregate>
  2371 + <field_ignore/>
  2372 + <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
  2373 + <prefix>grp</prefix>
  2374 + <add_linenr>Y</add_linenr>
  2375 + <linenr_fieldname>fcno</linenr_fieldname>
  2376 + <give_back_row>N</give_back_row>
  2377 + <group>
  2378 + <field>
  2379 + <name>lp</name>
  2380 + </field>
  2381 + </group>
  2382 + <fields>
  2383 + </fields>
  2384 + <cluster_schema/>
  2385 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2386 + <xloc>442</xloc>
  2387 + <yloc>44</yloc>
  2388 + <draw>Y</draw>
  2389 + </GUI>
  2390 + </step>
  2391 +
  2392 + <step>
  2393 + <name>&#x6dfb;&#x52a0;&#x5bf9;&#x5e94;&#x73ed;&#x6b21;&#x6570;</name>
  2394 + <type>GroupBy</type>
  2395 + <description/>
  2396 + <distribute>Y</distribute>
  2397 + <custom_distribution/>
  2398 + <copies>1</copies>
  2399 + <partitioning>
  2400 + <method>none</method>
  2401 + <schema_name/>
  2402 + </partitioning>
  2403 + <all_rows>Y</all_rows>
  2404 + <ignore_aggregate>N</ignore_aggregate>
  2405 + <field_ignore/>
  2406 + <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
  2407 + <prefix>grp</prefix>
  2408 + <add_linenr>Y</add_linenr>
  2409 + <linenr_fieldname>bcs</linenr_fieldname>
  2410 + <give_back_row>N</give_back_row>
  2411 + <group>
  2412 + </group>
  2413 + <fields>
  2414 + </fields>
  2415 + <cluster_schema/>
  2416 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2417 + <xloc>692</xloc>
  2418 + <yloc>44</yloc>
  2419 + <draw>Y</draw>
  2420 + </GUI>
  2421 + </step>
  2422 +
  2423 + <step>
  2424 + <name>&#x73ed;&#x6b21;&#x6570;&#x636e;&#x8303;&#x5f0f;&#x5316;</name>
  2425 + <type>Normaliser</type>
  2426 + <description/>
  2427 + <distribute>Y</distribute>
  2428 + <custom_distribution/>
  2429 + <copies>1</copies>
  2430 + <partitioning>
  2431 + <method>none</method>
  2432 + <schema_name/>
  2433 + </partitioning>
  2434 + <typefield>&#x7ad9;&#x70b9;&#x540d;&#x79f0;</typefield>
  2435 + <fields> </fields> <cluster_schema/>
  2436 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2437 + <xloc>248</xloc>
  2438 + <yloc>44</yloc>
  2439 + <draw>Y</draw>
  2440 + </GUI>
  2441 + </step>
  2442 +
  2443 + <step>
  2444 + <name>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178;</name>
  2445 + <type>ValueMapper</type>
  2446 + <description/>
  2447 + <distribute>Y</distribute>
  2448 + <custom_distribution/>
  2449 + <copies>1</copies>
  2450 + <partitioning>
  2451 + <method>none</method>
  2452 + <schema_name/>
  2453 + </partitioning>
  2454 + <field_to_use>bctype</field_to_use>
  2455 + <target_field>bctype_code</target_field>
  2456 + <non_match_default>&#x672a;&#x77e5;&#x7c7b;&#x578b;</non_match_default>
  2457 + <fields>
  2458 + <field>
  2459 + <source_value>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</source_value>
  2460 + <target_value>normal</target_value>
  2461 + </field>
  2462 + <field>
  2463 + <source_value>&#x51fa;&#x573a;</source_value>
  2464 + <target_value>out</target_value>
  2465 + </field>
  2466 + <field>
  2467 + <source_value>&#x8fdb;&#x573a;</source_value>
  2468 + <target_value>in</target_value>
  2469 + </field>
  2470 + <field>
  2471 + <source_value>&#x52a0;&#x6cb9;</source_value>
  2472 + <target_value>oil</target_value>
  2473 + </field>
  2474 + <field>
  2475 + <source_value>&#x4e34;&#x52a0;</source_value>
  2476 + <target_value>temp</target_value>
  2477 + </field>
  2478 + <field>
  2479 + <source_value>&#x533a;&#x95f4;</source_value>
  2480 + <target_value>region</target_value>
  2481 + </field>
  2482 + <field>
  2483 + <source_value>&#x653e;&#x7a7a;</source_value>
  2484 + <target_value>venting</target_value>
  2485 + </field>
  2486 + <field>
  2487 + <source_value>&#x653e;&#x5927;&#x7ad9;</source_value>
  2488 + <target_value>major</target_value>
  2489 + </field>
  2490 + </fields>
  2491 + <cluster_schema/>
  2492 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2493 + <xloc>149</xloc>
  2494 + <yloc>491</yloc>
  2495 + <draw>Y</draw>
  2496 + </GUI>
  2497 + </step>
  2498 +
  2499 + <step>
  2500 + <name>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 2</name>
  2501 + <type>ValueMapper</type>
  2502 + <description/>
  2503 + <distribute>Y</distribute>
  2504 + <custom_distribution/>
  2505 + <copies>1</copies>
  2506 + <partitioning>
  2507 + <method>none</method>
  2508 + <schema_name/>
  2509 + </partitioning>
  2510 + <field_to_use>bctype</field_to_use>
  2511 + <target_field>bctype_code</target_field>
  2512 + <non_match_default>&#x672a;&#x77e5;&#x7c7b;&#x578b;</non_match_default>
  2513 + <fields>
  2514 + <field>
  2515 + <source_value>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</source_value>
  2516 + <target_value>normal</target_value>
  2517 + </field>
  2518 + <field>
  2519 + <source_value>&#x51fa;&#x573a;</source_value>
  2520 + <target_value>out</target_value>
  2521 + </field>
  2522 + <field>
  2523 + <source_value>&#x8fdb;&#x573a;</source_value>
  2524 + <target_value>in</target_value>
  2525 + </field>
  2526 + <field>
  2527 + <source_value>&#x52a0;&#x6cb9;</source_value>
  2528 + <target_value>oil</target_value>
  2529 + </field>
  2530 + <field>
  2531 + <source_value>&#x4e34;&#x52a0;</source_value>
  2532 + <target_value>temp</target_value>
  2533 + </field>
  2534 + <field>
  2535 + <source_value>&#x533a;&#x95f4;</source_value>
  2536 + <target_value>region</target_value>
  2537 + </field>
  2538 + <field>
  2539 + <source_value>&#x653e;&#x7a7a;</source_value>
  2540 + <target_value>venting</target_value>
  2541 + </field>
  2542 + <field>
  2543 + <source_value>&#x653e;&#x5927;&#x7ad9;</source_value>
  2544 + <target_value>major</target_value>
  2545 + </field>
  2546 + </fields>
  2547 + <cluster_schema/>
  2548 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2549 + <xloc>333</xloc>
  2550 + <yloc>681</yloc>
  2551 + <draw>Y</draw>
  2552 + </GUI>
  2553 + </step>
  2554 +
  2555 + <step>
  2556 + <name>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 3</name>
  2557 + <type>ValueMapper</type>
  2558 + <description/>
  2559 + <distribute>Y</distribute>
  2560 + <custom_distribution/>
  2561 + <copies>1</copies>
  2562 + <partitioning>
  2563 + <method>none</method>
  2564 + <schema_name/>
  2565 + </partitioning>
  2566 + <field_to_use>bctype</field_to_use>
  2567 + <target_field>bctype_code</target_field>
  2568 + <non_match_default>&#x672a;&#x77e5;&#x7c7b;&#x578b;</non_match_default>
  2569 + <fields>
  2570 + <field>
  2571 + <source_value>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</source_value>
  2572 + <target_value>normal</target_value>
  2573 + </field>
  2574 + <field>
  2575 + <source_value>&#x51fa;&#x573a;</source_value>
  2576 + <target_value>out</target_value>
  2577 + </field>
  2578 + <field>
  2579 + <source_value>&#x8fdb;&#x573a;</source_value>
  2580 + <target_value>in</target_value>
  2581 + </field>
  2582 + <field>
  2583 + <source_value>&#x52a0;&#x6cb9;</source_value>
  2584 + <target_value>oil</target_value>
  2585 + </field>
  2586 + <field>
  2587 + <source_value>&#x4e34;&#x52a0;</source_value>
  2588 + <target_value>temp</target_value>
  2589 + </field>
  2590 + <field>
  2591 + <source_value>&#x533a;&#x95f4;</source_value>
  2592 + <target_value>region</target_value>
  2593 + </field>
  2594 + <field>
  2595 + <source_value>&#x653e;&#x7a7a;</source_value>
  2596 + <target_value>venting</target_value>
  2597 + </field>
  2598 + <field>
  2599 + <source_value>&#x653e;&#x5927;&#x7ad9;</source_value>
  2600 + <target_value>major</target_value>
  2601 + </field>
  2602 + </fields>
  2603 + <cluster_schema/>
  2604 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2605 + <xloc>551</xloc>
  2606 + <yloc>928</yloc>
  2607 + <draw>Y</draw>
  2608 + </GUI>
  2609 + </step>
  2610 +
  2611 + <step>
  2612 + <name>&#x7c7b;&#x578b;&#x4fee;&#x6b63;</name>
  2613 + <type>SelectValues</type>
  2614 + <description/>
  2615 + <distribute>Y</distribute>
  2616 + <custom_distribution/>
  2617 + <copies>1</copies>
  2618 + <partitioning>
  2619 + <method>none</method>
  2620 + <schema_name/>
  2621 + </partitioning>
  2622 + <fields> <select_unspecified>N</select_unspecified>
  2623 + <meta> <name>jhlc</name>
  2624 + <rename>jhlc</rename>
  2625 + <type>Number</type>
  2626 + <length>-2</length>
  2627 + <precision>-2</precision>
  2628 + <conversion_mask/>
  2629 + <date_format_lenient>false</date_format_lenient>
  2630 + <date_format_locale/>
  2631 + <date_format_timezone/>
  2632 + <lenient_string_to_number>false</lenient_string_to_number>
  2633 + <encoding/>
  2634 + <decimal_symbol/>
  2635 + <grouping_symbol/>
  2636 + <currency_symbol/>
  2637 + <storage_type/>
  2638 + </meta> <meta> <name>bcsj</name>
  2639 + <rename>bcsj</rename>
  2640 + <type>Integer</type>
  2641 + <length>-2</length>
  2642 + <precision>-2</precision>
  2643 + <conversion_mask/>
  2644 + <date_format_lenient>false</date_format_lenient>
  2645 + <date_format_locale/>
  2646 + <date_format_timezone/>
  2647 + <lenient_string_to_number>false</lenient_string_to_number>
  2648 + <encoding/>
  2649 + <decimal_symbol/>
  2650 + <grouping_symbol/>
  2651 + <currency_symbol/>
  2652 + <storage_type/>
  2653 + </meta> </fields> <cluster_schema/>
  2654 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2655 + <xloc>146</xloc>
  2656 + <yloc>768</yloc>
  2657 + <draw>Y</draw>
  2658 + </GUI>
  2659 + </step>
  2660 +
  2661 + <step>
  2662 + <name>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 2</name>
  2663 + <type>SelectValues</type>
  2664 + <description/>
  2665 + <distribute>Y</distribute>
  2666 + <custom_distribution/>
  2667 + <copies>1</copies>
  2668 + <partitioning>
  2669 + <method>none</method>
  2670 + <schema_name/>
  2671 + </partitioning>
  2672 + <fields> <select_unspecified>N</select_unspecified>
  2673 + <meta> <name>out_mileage</name>
  2674 + <rename>out_mileage</rename>
  2675 + <type>Number</type>
  2676 + <length>-2</length>
  2677 + <precision>-2</precision>
  2678 + <conversion_mask/>
  2679 + <date_format_lenient>false</date_format_lenient>
  2680 + <date_format_locale/>
  2681 + <date_format_timezone/>
  2682 + <lenient_string_to_number>false</lenient_string_to_number>
  2683 + <encoding/>
  2684 + <decimal_symbol/>
  2685 + <grouping_symbol/>
  2686 + <currency_symbol/>
  2687 + <storage_type/>
  2688 + </meta> <meta> <name>out_time</name>
  2689 + <rename>out_time</rename>
  2690 + <type>Integer</type>
  2691 + <length>-2</length>
  2692 + <precision>-2</precision>
  2693 + <conversion_mask/>
  2694 + <date_format_lenient>false</date_format_lenient>
  2695 + <date_format_locale/>
  2696 + <date_format_timezone/>
  2697 + <lenient_string_to_number>false</lenient_string_to_number>
  2698 + <encoding/>
  2699 + <decimal_symbol/>
  2700 + <grouping_symbol/>
  2701 + <currency_symbol/>
  2702 + <storage_type/>
  2703 + </meta> <meta> <name>sxx</name>
  2704 + <rename>sxx</rename>
  2705 + <type>Integer</type>
  2706 + <length>-2</length>
  2707 + <precision>-2</precision>
  2708 + <conversion_mask/>
  2709 + <date_format_lenient>false</date_format_lenient>
  2710 + <date_format_locale/>
  2711 + <date_format_timezone/>
  2712 + <lenient_string_to_number>false</lenient_string_to_number>
  2713 + <encoding/>
  2714 + <decimal_symbol/>
  2715 + <grouping_symbol/>
  2716 + <currency_symbol/>
  2717 + <storage_type/>
  2718 + </meta> </fields> <cluster_schema/>
  2719 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2720 + <xloc>338</xloc>
  2721 + <yloc>1008</yloc>
  2722 + <draw>Y</draw>
  2723 + </GUI>
  2724 + </step>
  2725 +
  2726 + <step>
  2727 + <name>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 3</name>
  2728 + <type>SelectValues</type>
  2729 + <description/>
  2730 + <distribute>Y</distribute>
  2731 + <custom_distribution/>
  2732 + <copies>1</copies>
  2733 + <partitioning>
  2734 + <method>none</method>
  2735 + <schema_name/>
  2736 + </partitioning>
  2737 + <fields> <select_unspecified>N</select_unspecified>
  2738 + <meta> <name>parade_mileage</name>
  2739 + <rename>parade_mileage</rename>
  2740 + <type>Number</type>
  2741 + <length>-2</length>
  2742 + <precision>-2</precision>
  2743 + <conversion_mask/>
  2744 + <date_format_lenient>false</date_format_lenient>
  2745 + <date_format_locale/>
  2746 + <date_format_timezone/>
  2747 + <lenient_string_to_number>false</lenient_string_to_number>
  2748 + <encoding/>
  2749 + <decimal_symbol/>
  2750 + <grouping_symbol/>
  2751 + <currency_symbol/>
  2752 + <storage_type/>
  2753 + </meta> <meta> <name>parade_time</name>
  2754 + <rename>parade_time</rename>
  2755 + <type>Integer</type>
  2756 + <length>-2</length>
  2757 + <precision>-2</precision>
  2758 + <conversion_mask/>
  2759 + <date_format_lenient>false</date_format_lenient>
  2760 + <date_format_locale/>
  2761 + <date_format_timezone/>
  2762 + <lenient_string_to_number>false</lenient_string_to_number>
  2763 + <encoding/>
  2764 + <decimal_symbol/>
  2765 + <grouping_symbol/>
  2766 + <currency_symbol/>
  2767 + <storage_type/>
  2768 + </meta> <meta> <name>sxx2</name>
  2769 + <rename>sxx2</rename>
  2770 + <type>Integer</type>
  2771 + <length>-2</length>
  2772 + <precision>-2</precision>
  2773 + <conversion_mask/>
  2774 + <date_format_lenient>false</date_format_lenient>
  2775 + <date_format_locale/>
  2776 + <date_format_timezone/>
  2777 + <lenient_string_to_number>false</lenient_string_to_number>
  2778 + <encoding/>
  2779 + <decimal_symbol/>
  2780 + <grouping_symbol/>
  2781 + <currency_symbol/>
  2782 + <storage_type/>
  2783 + </meta> </fields> <cluster_schema/>
  2784 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2785 + <xloc>847</xloc>
  2786 + <yloc>1003</yloc>
  2787 + <draw>Y</draw>
  2788 + </GUI>
  2789 + </step>
  2790 +
  2791 + <step>
  2792 + <name>&#x8ba1;&#x7b97;&#x73ed;&#x6b21;&#x7c7b;&#x578b;</name>
  2793 + <type>ValueMapper</type>
  2794 + <description/>
  2795 + <distribute>Y</distribute>
  2796 + <custom_distribution/>
  2797 + <copies>1</copies>
  2798 + <partitioning>
  2799 + <method>none</method>
  2800 + <schema_name/>
  2801 + </partitioning>
  2802 + <field_to_use>qdzname</field_to_use>
  2803 + <target_field>bctype</target_field>
  2804 + <non_match_default>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</non_match_default>
  2805 + <fields>
  2806 + <field>
  2807 + <source_value>&#x51fa;&#x573a;</source_value>
  2808 + <target_value>&#x51fa;&#x573a;</target_value>
  2809 + </field>
  2810 + <field>
  2811 + <source_value>&#x8fdb;&#x573a;</source_value>
  2812 + <target_value>&#x8fdb;&#x573a;</target_value>
  2813 + </field>
  2814 + </fields>
  2815 + <cluster_schema/>
  2816 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2817 + <xloc>1014</xloc>
  2818 + <yloc>401</yloc>
  2819 + <draw>Y</draw>
  2820 + </GUI>
  2821 + </step>
  2822 +
  2823 + <step>
  2824 + <name>&#x8bb0;&#x5f55;&#x5173;&#x8054; &#x28;&#x7b1b;&#x5361;&#x5c14;&#x8f93;&#x51fa;&#x29;</name>
  2825 + <type>JoinRows</type>
  2826 + <description/>
  2827 + <distribute>Y</distribute>
  2828 + <custom_distribution/>
  2829 + <copies>1</copies>
  2830 + <partitioning>
  2831 + <method>none</method>
  2832 + <schema_name/>
  2833 + </partitioning>
  2834 + <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
  2835 + <prefix>out</prefix>
  2836 + <cache_size>500</cache_size>
  2837 + <main/>
  2838 + <compare>
  2839 +<condition>
  2840 + <negated>N</negated>
  2841 + <leftvalue/>
  2842 + <function>&#x3d;</function>
  2843 + <rightvalue/>
  2844 + </condition>
  2845 + </compare>
  2846 + <cluster_schema/>
  2847 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2848 + <xloc>310</xloc>
  2849 + <yloc>133</yloc>
  2850 + <draw>Y</draw>
  2851 + </GUI>
  2852 + </step>
  2853 +
  2854 + <step>
  2855 + <name>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;&#xff08;&#x53d1;&#x8f66;&#x65f6;&#x95f4;&#x4e3a;&#x7a7a;&#xff09;</name>
  2856 + <type>FilterRows</type>
  2857 + <description/>
  2858 + <distribute>Y</distribute>
  2859 + <custom_distribution/>
  2860 + <copies>1</copies>
  2861 + <partitioning>
  2862 + <method>none</method>
  2863 + <schema_name/>
  2864 + </partitioning>
  2865 +<send_true_to/>
  2866 +<send_false_to/>
  2867 + <compare>
  2868 +<condition>
  2869 + <negated>N</negated>
  2870 + <leftvalue>sendtime</leftvalue>
  2871 + <function>IS NOT NULL</function>
  2872 + <rightvalue/>
  2873 + </condition>
  2874 + </compare>
  2875 + <cluster_schema/>
  2876 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2877 + <xloc>571</xloc>
  2878 + <yloc>44</yloc>
  2879 + <draw>Y</draw>
  2880 + </GUI>
  2881 + </step>
  2882 +
  2883 + <step>
  2884 + <name>&#x8fdb;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x8d77;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</name>
  2885 + <type>ScriptValueMod</type>
  2886 + <description/>
  2887 + <distribute>Y</distribute>
  2888 + <custom_distribution/>
  2889 + <copies>1</copies>
  2890 + <partitioning>
  2891 + <method>none</method>
  2892 + <schema_name/>
  2893 + </partitioning>
  2894 + <compatible>N</compatible>
  2895 + <optimizationLevel>9</optimizationLevel>
  2896 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  2897 + <jsScript_name>Script 1</jsScript_name>
  2898 + <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>
  2899 + </jsScript> </jsScripts> <fields> <field> <name>qdzname_calcu</name>
  2900 + <rename>qdzname_calcu</rename>
  2901 + <type>String</type>
  2902 + <length>-1</length>
  2903 + <precision>-1</precision>
  2904 + <replace>N</replace>
  2905 + </field> <field> <name>startZdtype_calcu</name>
  2906 + <rename>startZdtype_calcu</rename>
  2907 + <type>String</type>
  2908 + <length>-1</length>
  2909 + <precision>-1</precision>
  2910 + <replace>N</replace>
  2911 + </field> <field> <name>endZdtype_calcu</name>
  2912 + <rename>endZdtype_calcu</rename>
  2913 + <type>String</type>
  2914 + <length>-1</length>
  2915 + <precision>-1</precision>
  2916 + <replace>N</replace>
  2917 + </field> <field> <name>destory</name>
  2918 + <rename>destory</rename>
  2919 + <type>Integer</type>
  2920 + <length>-1</length>
  2921 + <precision>-1</precision>
  2922 + <replace>N</replace>
  2923 + </field> </fields> <cluster_schema/>
  2924 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2925 + <xloc>754</xloc>
  2926 + <yloc>610</yloc>
  2927 + <draw>Y</draw>
  2928 + </GUI>
  2929 + </step>
  2930 +
  2931 + <step>
  2932 + <name>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</name>
  2933 + <type>Dummy</type>
  2934 + <description/>
  2935 + <distribute>Y</distribute>
  2936 + <custom_distribution/>
  2937 + <copies>1</copies>
  2938 + <partitioning>
  2939 + <method>none</method>
  2940 + <schema_name/>
  2941 + </partitioning>
  2942 + <cluster_schema/>
  2943 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2944 + <xloc>997</xloc>
  2945 + <yloc>606</yloc>
  2946 + <draw>Y</draw>
  2947 + </GUI>
  2948 + </step>
  2949 +
  2950 + <step_error_handling>
  2951 + <error>
  2952 + <source_step>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail</source_step>
  2953 + <target_step/>
  2954 + <is_enabled>Y</is_enabled>
  2955 + <nr_valuename>c1</nr_valuename>
  2956 + <descriptions_valuename>c2</descriptions_valuename>
  2957 + <fields_valuename>c3</fields_valuename>
  2958 + <codes_valuename>c4</codes_valuename>
  2959 + <max_errors/>
  2960 + <max_pct_errors/>
  2961 + <min_pct_rows/>
  2962 + </error>
  2963 + </step_error_handling>
  2964 + <slave-step-copy-partition-distribution>
  2965 +</slave-step-copy-partition-distribution>
  2966 + <slave_transformation>N</slave_transformation>
  2967 +
  2968 +</transformation>
... ...
src/main/resources/datatools/ktrs/ttinfodetailoutputforedit.ktr
1   -<?xml version="1.0" encoding="UTF-8"?>
2   -<transformation>
3   - <info>
4   - <name>ttinfodetailoutputforedit</name>
5   - <description/>
6   - <extended_description/>
7   - <trans_version/>
8   - <trans_type>Normal</trans_type>
9   - <trans_status>0</trans_status>
10   - <directory>&#x2f;</directory>
11   - <parameters>
12   - <parameter>
13   - <name>tempfilepath</name>
14   - <default_value>&#x2f;Users&#x2f;xu&#x2f;resource&#x2f;project_code&#x2f;runtime_temp&#x2f;bsth_control_u_d_files&#x2f;temp&#x2f;test</default_value>
15   - <description>&#x9ed8;&#x8ba4;&#x8f93;&#x51fa;&#x7684;&#x6587;&#x4ef6;&#x8def;&#x5f84;&#x540d;</description>
16   - </parameter>
17   - <parameter>
18   - <name>ttid</name>
19   - <default_value>79</default_value>
20   - <description>&#x65f6;&#x523b;&#x8868;id</description>
21   - </parameter>
22   - <parameter>
23   - <name>xlid</name>
24   - <default_value>63020</default_value>
25   - <description>&#x7ebf;&#x8def;id</description>
26   - </parameter>
27   - </parameters>
28   - <log>
29   -<trans-log-table><connection/>
30   -<schema/>
31   -<table/>
32   -<size_limit_lines/>
33   -<interval/>
34   -<timeout_days/>
35   -<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>
36   -<perf-log-table><connection/>
37   -<schema/>
38   -<table/>
39   -<interval/>
40   -<timeout_days/>
41   -<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>
42   -<channel-log-table><connection/>
43   -<schema/>
44   -<table/>
45   -<timeout_days/>
46   -<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>
47   -<step-log-table><connection/>
48   -<schema/>
49   -<table/>
50   -<timeout_days/>
51   -<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>
52   -<metrics-log-table><connection/>
53   -<schema/>
54   -<table/>
55   -<timeout_days/>
56   -<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>
57   - </log>
58   - <maxdate>
59   - <connection/>
60   - <table/>
61   - <field/>
62   - <offset>0.0</offset>
63   - <maxdiff>0.0</maxdiff>
64   - </maxdate>
65   - <size_rowset>10000</size_rowset>
66   - <sleep_time_empty>50</sleep_time_empty>
67   - <sleep_time_full>50</sleep_time_full>
68   - <unique_connections>N</unique_connections>
69   - <feedback_shown>Y</feedback_shown>
70   - <feedback_size>50000</feedback_size>
71   - <using_thread_priorities>Y</using_thread_priorities>
72   - <shared_objects_file/>
73   - <capture_step_performance>N</capture_step_performance>
74   - <step_performance_capturing_delay>1000</step_performance_capturing_delay>
75   - <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit>
76   - <dependencies>
77   - </dependencies>
78   - <partitionschemas>
79   - </partitionschemas>
80   - <slaveservers>
81   - </slaveservers>
82   - <clusterschemas>
83   - </clusterschemas>
84   - <created_user>-</created_user>
85   - <created_date>2016&#x2f;07&#x2f;11 21&#x3a;45&#x3a;05.041</created_date>
86   - <modified_user>-</modified_user>
87   - <modified_date>2016&#x2f;07&#x2f;11 21&#x3a;45&#x3a;05.041</modified_date>
88   - <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA&#x3d;</key_for_session_key>
89   - <is_key_private>N</is_key_private>
90   - </info>
91   - <notepads>
92   - <notepad>
93   - <note>&#x6b64;&#x5904;&#x8f6c;&#x6362;excel&#x6709;&#x95ee;&#x9898;&#xff0c;&#xa;2003&#x683c;&#x5f0f;&#x7684;xls&#x6700;&#x591a;256&#x5217;&#xff0c;&#xa;&#x8fd9;&#x91cc;&#x660e;&#x663e;&#x8d85;&#x8fc7;&#xff0c;&#x6240;&#x4ee5;&#x628a;&#x6240;&#x6709;&#x5185;&#x5bb9;&#x5408;&#x5e76;&#x6210;1&#x5217;&#xff0c;&#xa;&#x7528;,&#x5206;&#x9694;</note>
94   - <xloc>316</xloc>
95   - <yloc>166</yloc>
96   - <width>245</width>
97   - <heigth>74</heigth>
98   - <fontname>YaHei Consolas Hybrid</fontname>
99   - <fontsize>12</fontsize>
100   - <fontbold>N</fontbold>
101   - <fontitalic>N</fontitalic>
102   - <fontcolorred>0</fontcolorred>
103   - <fontcolorgreen>0</fontcolorgreen>
104   - <fontcolorblue>0</fontcolorblue>
105   - <backgroundcolorred>255</backgroundcolorred>
106   - <backgroundcolorgreen>205</backgroundcolorgreen>
107   - <backgroundcolorblue>112</backgroundcolorblue>
108   - <bordercolorred>100</bordercolorred>
109   - <bordercolorgreen>100</bordercolorgreen>
110   - <bordercolorblue>100</bordercolorblue>
111   - <drawshadow>Y</drawshadow>
112   - </notepad>
113   - </notepads>
114   - <connection>
115   - <name>192.168.168.1_jwgl_dw</name>
116   - <server>192.168.168.1</server>
117   - <type>ORACLE</type>
118   - <access>Native</access>
119   - <database>orcl</database>
120   - <port>1521</port>
121   - <username>jwgl_dw</username>
122   - <password>Encrypted 2be98afc86aa7f2e4cb13b977d2adabcd</password>
123   - <servername/>
124   - <data_tablespace/>
125   - <index_tablespace/>
126   - <attributes>
127   - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
128   - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
129   - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
130   - <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
131   - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
132   - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
133   - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
134   - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
135   - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
136   - </attributes>
137   - </connection>
138   - <connection>
139   - <name>bus_control_variable</name>
140   - <server>&#x24;&#x7b;v_db_ip&#x7d;</server>
141   - <type>MYSQL</type>
142   - <access>Native</access>
143   - <database>&#x24;&#x7b;v_db_dname&#x7d;</database>
144   - <port>3306</port>
145   - <username>&#x24;&#x7b;v_db_uname&#x7d;</username>
146   - <password>&#x24;&#x7b;v_db_pwd&#x7d;</password>
147   - <servername/>
148   - <data_tablespace/>
149   - <index_tablespace/>
150   - <attributes>
151   - <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
152   - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
153   - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
154   - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
155   - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
156   - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
157   - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
158   - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
159   - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
160   - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
161   - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
162   - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
163   - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
164   - </attributes>
165   - </connection>
166   - <connection>
167   - <name>bus_control_&#x516c;&#x53f8;_201</name>
168   - <server>localhost</server>
169   - <type>MYSQL</type>
170   - <access>Native</access>
171   - <database>control</database>
172   - <port>3306</port>
173   - <username>root</username>
174   - <password>Encrypted </password>
175   - <servername/>
176   - <data_tablespace/>
177   - <index_tablespace/>
178   - <attributes>
179   - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
180   - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
181   - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
182   - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
183   - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
184   - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
185   - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
186   - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
187   - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
188   - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
189   - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
190   - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
191   - </attributes>
192   - </connection>
193   - <connection>
194   - <name>bus_control_&#x672c;&#x673a;</name>
195   - <server>localhost</server>
196   - <type>MYSQL</type>
197   - <access>Native</access>
198   - <database>control</database>
199   - <port>3306</port>
200   - <username>root</username>
201   - <password>Encrypted </password>
202   - <servername/>
203   - <data_tablespace/>
204   - <index_tablespace/>
205   - <attributes>
206   - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
207   - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
208   - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
209   - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
210   - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
211   - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
212   - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
213   - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
214   - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
215   - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
216   - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
217   - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
218   - </attributes>
219   - </connection>
220   - <connection>
221   - <name>xlab_mysql_youle</name>
222   - <server>101.231.124.8</server>
223   - <type>MYSQL</type>
224   - <access>Native</access>
225   - <database>xlab_youle</database>
226   - <port>45687</port>
227   - <username>xlab-youle</username>
228   - <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password>
229   - <servername/>
230   - <data_tablespace/>
231   - <index_tablespace/>
232   - <attributes>
233   - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
234   - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
235   - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
236   - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
237   - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
238   - <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute>
239   - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
240   - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
241   - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
242   - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
243   - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
244   - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
245   - </attributes>
246   - </connection>
247   - <connection>
248   - <name>xlab_mysql_youle&#xff08;&#x672c;&#x673a;&#xff09;</name>
249   - <server>localhost</server>
250   - <type>MYSQL</type>
251   - <access>Native</access>
252   - <database>xlab_youle</database>
253   - <port>3306</port>
254   - <username>root</username>
255   - <password>Encrypted </password>
256   - <servername/>
257   - <data_tablespace/>
258   - <index_tablespace/>
259   - <attributes>
260   - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
261   - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
262   - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
263   - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
264   - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
265   - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
266   - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
267   - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
268   - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
269   - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
270   - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
271   - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
272   - </attributes>
273   - </connection>
274   - <connection>
275   - <name>xlab_youle</name>
276   - <server/>
277   - <type>MYSQL</type>
278   - <access>JNDI</access>
279   - <database>xlab_youle</database>
280   - <port>1521</port>
281   - <username/>
282   - <password>Encrypted </password>
283   - <servername/>
284   - <data_tablespace/>
285   - <index_tablespace/>
286   - <attributes>
287   - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
288   - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
289   - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
290   - <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
291   - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
292   - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
293   - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
294   - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
295   - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
296   - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
297   - </attributes>
298   - </connection>
299   - <order>
300   - <hop> <from>&#x5217;&#x8f6c;&#x884c;</from><to>&#x53bb;&#x9664;&#x5b57;&#x6bb5;</to><enabled>Y</enabled> </hop>
301   - <hop> <from>&#x53bb;&#x9664;&#x5b57;&#x6bb5;</from><to>Excel&#x8f93;&#x51fa;</to><enabled>Y</enabled> </hop>
302   - <hop> <from>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</from><to>&#x8868;&#x8f93;&#x5165;</to><enabled>Y</enabled> </hop>
303   - <hop> <from>&#x8ba1;&#x7b97;&#x53d1;&#x8f66;&#x7ad9;&#x540d;</from><to>&#x5408;&#x5e76;&#x5185;&#x5bb9;</to><enabled>Y</enabled> </hop>
304   - <hop> <from>&#x5408;&#x5e76;&#x5185;&#x5bb9;</from><to>&#x5217;&#x8f6c;&#x884c;</to><enabled>Y</enabled> </hop>
305   - <hop> <from>&#x53bb;&#x9664;&#x5b57;&#x6bb5;</from><to>&#x6587;&#x672c;&#x6587;&#x4ef6;&#x8f93;&#x51fa;</to><enabled>Y</enabled> </hop>
306   - <hop> <from>&#x8868;&#x8f93;&#x5165;</from><to>&#x8ba1;&#x7b97;&#x53d1;&#x8f66;&#x7ad9;&#x540d;</to><enabled>Y</enabled> </hop>
307   - </order>
308   - <step>
309   - <name>Excel&#x8f93;&#x51fa;</name>
310   - <type>ExcelOutput</type>
311   - <description/>
312   - <distribute>Y</distribute>
313   - <custom_distribution/>
314   - <copies>1</copies>
315   - <partitioning>
316   - <method>none</method>
317   - <schema_name/>
318   - </partitioning>
319   - <header>Y</header>
320   - <footer>N</footer>
321   - <encoding/>
322   - <append>N</append>
323   - <add_to_result_filenames>Y</add_to_result_filenames>
324   - <file>
325   - <name>&#x24;&#x7b;tempfilepath&#x7d;</name>
326   - <extention>xls</extention>
327   - <do_not_open_newfile_init>N</do_not_open_newfile_init>
328   - <create_parent_folder>N</create_parent_folder>
329   - <split>N</split>
330   - <add_date>N</add_date>
331   - <add_time>N</add_time>
332   - <SpecifyFormat>N</SpecifyFormat>
333   - <date_time_format/>
334   - <sheetname>Sheet1</sheetname>
335   - <autosizecolums>N</autosizecolums>
336   - <nullisblank>N</nullisblank>
337   - <protect_sheet>N</protect_sheet>
338   - <password>Encrypted </password>
339   - <splitevery>0</splitevery>
340   - <usetempfiles>N</usetempfiles>
341   - <tempdirectory/>
342   - </file>
343   - <template>
344   - <enabled>N</enabled>
345   - <append>N</append>
346   - <filename>template.xls</filename>
347   - </template>
348   - <fields>
349   - <field>
350   - <name>lp</name>
351   - <type>String</type>
352   - <format/>
353   - </field>
354   - <field>
355   - <name>fcno1</name>
356   - <type>String</type>
357   - <format/>
358   - </field>
359   - <field>
360   - <name>fcno2</name>
361   - <type>String</type>
362   - <format/>
363   - </field>
364   - <field>
365   - <name>fcno3</name>
366   - <type>String</type>
367   - <format/>
368   - </field>
369   - <field>
370   - <name>fcno4</name>
371   - <type>String</type>
372   - <format/>
373   - </field>
374   - <field>
375   - <name>fcno5</name>
376   - <type>String</type>
377   - <format/>
378   - </field>
379   - <field>
380   - <name>fcno6</name>
381   - <type>String</type>
382   - <format/>
383   - </field>
384   - <field>
385   - <name>fcno7</name>
386   - <type>String</type>
387   - <format/>
388   - </field>
389   - <field>
390   - <name>fcno8</name>
391   - <type>String</type>
392   - <format/>
393   - </field>
394   - <field>
395   - <name>fcno9</name>
396   - <type>String</type>
397   - <format/>
398   - </field>
399   - <field>
400   - <name>fcno10</name>
401   - <type>String</type>
402   - <format/>
403   - </field>
404   - <field>
405   - <name>fcno11</name>
406   - <type>String</type>
407   - <format/>
408   - </field>
409   - <field>
410   - <name>fcno12</name>
411   - <type>String</type>
412   - <format/>
413   - </field>
414   - <field>
415   - <name>fcno13</name>
416   - <type>String</type>
417   - <format/>
418   - </field>
419   - <field>
420   - <name>fcno14</name>
421   - <type>String</type>
422   - <format/>
423   - </field>
424   - <field>
425   - <name>fcno15</name>
426   - <type>String</type>
427   - <format/>
428   - </field>
429   - <field>
430   - <name>fcno16</name>
431   - <type>String</type>
432   - <format/>
433   - </field>
434   - <field>
435   - <name>fcno17</name>
436   - <type>String</type>
437   - <format/>
438   - </field>
439   - <field>
440   - <name>fcno18</name>
441   - <type>String</type>
442   - <format/>
443   - </field>
444   - <field>
445   - <name>fcno19</name>
446   - <type>String</type>
447   - <format/>
448   - </field>
449   - <field>
450   - <name>fcno20</name>
451   - <type>String</type>
452   - <format/>
453   - </field>
454   - <field>
455   - <name>fcno21</name>
456   - <type>String</type>
457   - <format/>
458   - </field>
459   - <field>
460   - <name>fcno22</name>
461   - <type>String</type>
462   - <format/>
463   - </field>
464   - <field>
465   - <name>fcno23</name>
466   - <type>String</type>
467   - <format/>
468   - </field>
469   - <field>
470   - <name>fcno24</name>
471   - <type>String</type>
472   - <format/>
473   - </field>
474   - <field>
475   - <name>fcno25</name>
476   - <type>String</type>
477   - <format/>
478   - </field>
479   - <field>
480   - <name>fcno26</name>
481   - <type>String</type>
482   - <format/>
483   - </field>
484   - <field>
485   - <name>fcno27</name>
486   - <type>String</type>
487   - <format/>
488   - </field>
489   - <field>
490   - <name>fcno28</name>
491   - <type>String</type>
492   - <format/>
493   - </field>
494   - <field>
495   - <name>fcno29</name>
496   - <type>String</type>
497   - <format/>
498   - </field>
499   - <field>
500   - <name>fcno30</name>
501   - <type>String</type>
502   - <format/>
503   - </field>
504   - <field>
505   - <name>fcno31</name>
506   - <type>String</type>
507   - <format/>
508   - </field>
509   - <field>
510   - <name>fcno32</name>
511   - <type>String</type>
512   - <format/>
513   - </field>
514   - <field>
515   - <name>fcno33</name>
516   - <type>String</type>
517   - <format/>
518   - </field>
519   - <field>
520   - <name>fcno34</name>
521   - <type>String</type>
522   - <format/>
523   - </field>
524   - <field>
525   - <name>fcno35</name>
526   - <type>String</type>
527   - <format/>
528   - </field>
529   - <field>
530   - <name>fcno36</name>
531   - <type>String</type>
532   - <format/>
533   - </field>
534   - <field>
535   - <name>fcno37</name>
536   - <type>String</type>
537   - <format/>
538   - </field>
539   - <field>
540   - <name>fcno38</name>
541   - <type>String</type>
542   - <format/>
543   - </field>
544   - <field>
545   - <name>fcno39</name>
546   - <type>String</type>
547   - <format/>
548   - </field>
549   - <field>
550   - <name>fcno40</name>
551   - <type>String</type>
552   - <format/>
553   - </field>
554   - <field>
555   - <name>fcno41</name>
556   - <type>String</type>
557   - <format/>
558   - </field>
559   - <field>
560   - <name>fcno42</name>
561   - <type>String</type>
562   - <format/>
563   - </field>
564   - <field>
565   - <name>fcno43</name>
566   - <type>String</type>
567   - <format/>
568   - </field>
569   - <field>
570   - <name>fcno44</name>
571   - <type>String</type>
572   - <format/>
573   - </field>
574   - <field>
575   - <name>fcno45</name>
576   - <type>String</type>
577   - <format/>
578   - </field>
579   - <field>
580   - <name>fcno46</name>
581   - <type>String</type>
582   - <format/>
583   - </field>
584   - <field>
585   - <name>fcno47</name>
586   - <type>String</type>
587   - <format/>
588   - </field>
589   - <field>
590   - <name>fcno48</name>
591   - <type>String</type>
592   - <format/>
593   - </field>
594   - <field>
595   - <name>fcno49</name>
596   - <type>String</type>
597   - <format/>
598   - </field>
599   - <field>
600   - <name>fcno50</name>
601   - <type>String</type>
602   - <format/>
603   - </field>
604   - <field>
605   - <name>fcno51</name>
606   - <type>String</type>
607   - <format/>
608   - </field>
609   - <field>
610   - <name>fcno52</name>
611   - <type>String</type>
612   - <format/>
613   - </field>
614   - <field>
615   - <name>fcno53</name>
616   - <type>String</type>
617   - <format/>
618   - </field>
619   - <field>
620   - <name>fcno54</name>
621   - <type>String</type>
622   - <format/>
623   - </field>
624   - <field>
625   - <name>fcno55</name>
626   - <type>String</type>
627   - <format/>
628   - </field>
629   - <field>
630   - <name>fcno56</name>
631   - <type>String</type>
632   - <format/>
633   - </field>
634   - <field>
635   - <name>fcno57</name>
636   - <type>String</type>
637   - <format/>
638   - </field>
639   - <field>
640   - <name>fcno58</name>
641   - <type>String</type>
642   - <format/>
643   - </field>
644   - <field>
645   - <name>fcno59</name>
646   - <type>String</type>
647   - <format/>
648   - </field>
649   - <field>
650   - <name>fcno60</name>
651   - <type>String</type>
652   - <format/>
653   - </field>
654   - <field>
655   - <name>fcno61</name>
656   - <type>String</type>
657   - <format/>
658   - </field>
659   - <field>
660   - <name>fcno62</name>
661   - <type>String</type>
662   - <format/>
663   - </field>
664   - <field>
665   - <name>fcno63</name>
666   - <type>String</type>
667   - <format/>
668   - </field>
669   - <field>
670   - <name>fcno64</name>
671   - <type>String</type>
672   - <format/>
673   - </field>
674   - <field>
675   - <name>fcno65</name>
676   - <type>String</type>
677   - <format/>
678   - </field>
679   - <field>
680   - <name>fcno66</name>
681   - <type>String</type>
682   - <format/>
683   - </field>
684   - <field>
685   - <name>fcno67</name>
686   - <type>String</type>
687   - <format/>
688   - </field>
689   - <field>
690   - <name>fcno68</name>
691   - <type>String</type>
692   - <format/>
693   - </field>
694   - <field>
695   - <name>fcno69</name>
696   - <type>String</type>
697   - <format/>
698   - </field>
699   - <field>
700   - <name>fcno70</name>
701   - <type>String</type>
702   - <format/>
703   - </field>
704   - </fields>
705   - <custom>
706   - <header_font_name>arial</header_font_name>
707   - <header_font_size>10</header_font_size>
708   - <header_font_bold>N</header_font_bold>
709   - <header_font_italic>N</header_font_italic>
710   - <header_font_underline>no</header_font_underline>
711   - <header_font_orientation>horizontal</header_font_orientation>
712   - <header_font_color>black</header_font_color>
713   - <header_background_color>none</header_background_color>
714   - <header_row_height>255</header_row_height>
715   - <header_alignment>left</header_alignment>
716   - <header_image/>
717   - <row_font_name>arial</row_font_name>
718   - <row_font_size>10</row_font_size>
719   - <row_font_color>black</row_font_color>
720   - <row_background_color>none</row_background_color>
721   - </custom>
722   - <cluster_schema/>
723   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
724   - <xloc>692</xloc>
725   - <yloc>514</yloc>
726   - <draw>Y</draw>
727   - </GUI>
728   - </step>
729   -
730   - <step>
731   - <name>&#x5217;&#x8f6c;&#x884c;</name>
732   - <type>Denormaliser</type>
733   - <description/>
734   - <distribute>N</distribute>
735   - <custom_distribution/>
736   - <copies>1</copies>
737   - <partitioning>
738   - <method>none</method>
739   - <schema_name/>
740   - </partitioning>
741   - <key_field>fcno</key_field>
742   - <group>
743   - <field>
744   - <name>lp</name>
745   - </field>
746   - </group>
747   - <fields>
748   - <field>
749   - <field_name>all_content</field_name>
750   - <key_value>1</key_value>
751   - <target_name>fcno1</target_name>
752   - <target_type>String</target_type>
753   - <target_format/>
754   - <target_length>-1</target_length>
755   - <target_precision>-1</target_precision>
756   - <target_decimal_symbol/>
757   - <target_grouping_symbol/>
758   - <target_currency_symbol/>
759   - <target_null_string/>
760   - <target_aggregation_type>-</target_aggregation_type>
761   - </field>
762   - <field>
763   - <field_name>all_content</field_name>
764   - <key_value>2</key_value>
765   - <target_name>fcno2</target_name>
766   - <target_type>String</target_type>
767   - <target_format/>
768   - <target_length>-1</target_length>
769   - <target_precision>-1</target_precision>
770   - <target_decimal_symbol/>
771   - <target_grouping_symbol/>
772   - <target_currency_symbol/>
773   - <target_null_string/>
774   - <target_aggregation_type>-</target_aggregation_type>
775   - </field>
776   - <field>
777   - <field_name>all_content</field_name>
778   - <key_value>3</key_value>
779   - <target_name>fcno3</target_name>
780   - <target_type>String</target_type>
781   - <target_format/>
782   - <target_length>-1</target_length>
783   - <target_precision>-1</target_precision>
784   - <target_decimal_symbol/>
785   - <target_grouping_symbol/>
786   - <target_currency_symbol/>
787   - <target_null_string/>
788   - <target_aggregation_type>-</target_aggregation_type>
789   - </field>
790   - <field>
791   - <field_name>all_content</field_name>
792   - <key_value>4</key_value>
793   - <target_name>fcno4</target_name>
794   - <target_type>String</target_type>
795   - <target_format/>
796   - <target_length>-1</target_length>
797   - <target_precision>-1</target_precision>
798   - <target_decimal_symbol/>
799   - <target_grouping_symbol/>
800   - <target_currency_symbol/>
801   - <target_null_string/>
802   - <target_aggregation_type>-</target_aggregation_type>
803   - </field>
804   - <field>
805   - <field_name>all_content</field_name>
806   - <key_value>5</key_value>
807   - <target_name>fcno5</target_name>
808   - <target_type>String</target_type>
809   - <target_format/>
810   - <target_length>-1</target_length>
811   - <target_precision>-1</target_precision>
812   - <target_decimal_symbol/>
813   - <target_grouping_symbol/>
814   - <target_currency_symbol/>
815   - <target_null_string/>
816   - <target_aggregation_type>-</target_aggregation_type>
817   - </field>
818   - <field>
819   - <field_name>all_content</field_name>
820   - <key_value>6</key_value>
821   - <target_name>fcno6</target_name>
822   - <target_type>String</target_type>
823   - <target_format/>
824   - <target_length>-1</target_length>
825   - <target_precision>-1</target_precision>
826   - <target_decimal_symbol/>
827   - <target_grouping_symbol/>
828   - <target_currency_symbol/>
829   - <target_null_string/>
830   - <target_aggregation_type>-</target_aggregation_type>
831   - </field>
832   - <field>
833   - <field_name>all_content</field_name>
834   - <key_value>7</key_value>
835   - <target_name>fcno7</target_name>
836   - <target_type>String</target_type>
837   - <target_format/>
838   - <target_length>-1</target_length>
839   - <target_precision>-1</target_precision>
840   - <target_decimal_symbol/>
841   - <target_grouping_symbol/>
842   - <target_currency_symbol/>
843   - <target_null_string/>
844   - <target_aggregation_type>-</target_aggregation_type>
845   - </field>
846   - <field>
847   - <field_name>all_content</field_name>
848   - <key_value>8</key_value>
849   - <target_name>fcno8</target_name>
850   - <target_type>String</target_type>
851   - <target_format/>
852   - <target_length>-1</target_length>
853   - <target_precision>-1</target_precision>
854   - <target_decimal_symbol/>
855   - <target_grouping_symbol/>
856   - <target_currency_symbol/>
857   - <target_null_string/>
858   - <target_aggregation_type>-</target_aggregation_type>
859   - </field>
860   - <field>
861   - <field_name>all_content</field_name>
862   - <key_value>9</key_value>
863   - <target_name>fcno9</target_name>
864   - <target_type>String</target_type>
865   - <target_format/>
866   - <target_length>-1</target_length>
867   - <target_precision>-1</target_precision>
868   - <target_decimal_symbol/>
869   - <target_grouping_symbol/>
870   - <target_currency_symbol/>
871   - <target_null_string/>
872   - <target_aggregation_type>-</target_aggregation_type>
873   - </field>
874   - <field>
875   - <field_name>all_content</field_name>
876   - <key_value>10</key_value>
877   - <target_name>fcno10</target_name>
878   - <target_type>String</target_type>
879   - <target_format/>
880   - <target_length>-1</target_length>
881   - <target_precision>-1</target_precision>
882   - <target_decimal_symbol/>
883   - <target_grouping_symbol/>
884   - <target_currency_symbol/>
885   - <target_null_string/>
886   - <target_aggregation_type>-</target_aggregation_type>
887   - </field>
888   - <field>
889   - <field_name>all_content</field_name>
890   - <key_value>11</key_value>
891   - <target_name>fcno11</target_name>
892   - <target_type>String</target_type>
893   - <target_format/>
894   - <target_length>-1</target_length>
895   - <target_precision>-1</target_precision>
896   - <target_decimal_symbol/>
897   - <target_grouping_symbol/>
898   - <target_currency_symbol/>
899   - <target_null_string/>
900   - <target_aggregation_type>-</target_aggregation_type>
901   - </field>
902   - <field>
903   - <field_name>all_content</field_name>
904   - <key_value>12</key_value>
905   - <target_name>fcno12</target_name>
906   - <target_type>String</target_type>
907   - <target_format/>
908   - <target_length>-1</target_length>
909   - <target_precision>-1</target_precision>
910   - <target_decimal_symbol/>
911   - <target_grouping_symbol/>
912   - <target_currency_symbol/>
913   - <target_null_string/>
914   - <target_aggregation_type>-</target_aggregation_type>
915   - </field>
916   - <field>
917   - <field_name>all_content</field_name>
918   - <key_value>13</key_value>
919   - <target_name>fcno13</target_name>
920   - <target_type>String</target_type>
921   - <target_format/>
922   - <target_length>-1</target_length>
923   - <target_precision>-1</target_precision>
924   - <target_decimal_symbol/>
925   - <target_grouping_symbol/>
926   - <target_currency_symbol/>
927   - <target_null_string/>
928   - <target_aggregation_type>-</target_aggregation_type>
929   - </field>
930   - <field>
931   - <field_name>all_content</field_name>
932   - <key_value>14</key_value>
933   - <target_name>fcno14</target_name>
934   - <target_type>String</target_type>
935   - <target_format/>
936   - <target_length>-1</target_length>
937   - <target_precision>-1</target_precision>
938   - <target_decimal_symbol/>
939   - <target_grouping_symbol/>
940   - <target_currency_symbol/>
941   - <target_null_string/>
942   - <target_aggregation_type>-</target_aggregation_type>
943   - </field>
944   - <field>
945   - <field_name>all_content</field_name>
946   - <key_value>15</key_value>
947   - <target_name>fcno15</target_name>
948   - <target_type>String</target_type>
949   - <target_format/>
950   - <target_length>-1</target_length>
951   - <target_precision>-1</target_precision>
952   - <target_decimal_symbol/>
953   - <target_grouping_symbol/>
954   - <target_currency_symbol/>
955   - <target_null_string/>
956   - <target_aggregation_type>-</target_aggregation_type>
957   - </field>
958   - <field>
959   - <field_name>all_content</field_name>
960   - <key_value>16</key_value>
961   - <target_name>fcno16</target_name>
962   - <target_type>String</target_type>
963   - <target_format/>
964   - <target_length>-1</target_length>
965   - <target_precision>-1</target_precision>
966   - <target_decimal_symbol/>
967   - <target_grouping_symbol/>
968   - <target_currency_symbol/>
969   - <target_null_string/>
970   - <target_aggregation_type>-</target_aggregation_type>
971   - </field>
972   - <field>
973   - <field_name>all_content</field_name>
974   - <key_value>17</key_value>
975   - <target_name>fcno17</target_name>
976   - <target_type>String</target_type>
977   - <target_format/>
978   - <target_length>-1</target_length>
979   - <target_precision>-1</target_precision>
980   - <target_decimal_symbol/>
981   - <target_grouping_symbol/>
982   - <target_currency_symbol/>
983   - <target_null_string/>
984   - <target_aggregation_type>-</target_aggregation_type>
985   - </field>
986   - <field>
987   - <field_name>all_content</field_name>
988   - <key_value>18</key_value>
989   - <target_name>fcno18</target_name>
990   - <target_type>String</target_type>
991   - <target_format/>
992   - <target_length>-1</target_length>
993   - <target_precision>-1</target_precision>
994   - <target_decimal_symbol/>
995   - <target_grouping_symbol/>
996   - <target_currency_symbol/>
997   - <target_null_string/>
998   - <target_aggregation_type>-</target_aggregation_type>
999   - </field>
1000   - <field>
1001   - <field_name>all_content</field_name>
1002   - <key_value>19</key_value>
1003   - <target_name>fcno19</target_name>
1004   - <target_type>String</target_type>
1005   - <target_format/>
1006   - <target_length>-1</target_length>
1007   - <target_precision>-1</target_precision>
1008   - <target_decimal_symbol/>
1009   - <target_grouping_symbol/>
1010   - <target_currency_symbol/>
1011   - <target_null_string/>
1012   - <target_aggregation_type>-</target_aggregation_type>
1013   - </field>
1014   - <field>
1015   - <field_name>all_content</field_name>
1016   - <key_value>20</key_value>
1017   - <target_name>fcno20</target_name>
1018   - <target_type>String</target_type>
1019   - <target_format/>
1020   - <target_length>-1</target_length>
1021   - <target_precision>-1</target_precision>
1022   - <target_decimal_symbol/>
1023   - <target_grouping_symbol/>
1024   - <target_currency_symbol/>
1025   - <target_null_string/>
1026   - <target_aggregation_type>-</target_aggregation_type>
1027   - </field>
1028   - <field>
1029   - <field_name>all_content</field_name>
1030   - <key_value>21</key_value>
1031   - <target_name>fcno21</target_name>
1032   - <target_type>String</target_type>
1033   - <target_format/>
1034   - <target_length>-1</target_length>
1035   - <target_precision>-1</target_precision>
1036   - <target_decimal_symbol/>
1037   - <target_grouping_symbol/>
1038   - <target_currency_symbol/>
1039   - <target_null_string/>
1040   - <target_aggregation_type>-</target_aggregation_type>
1041   - </field>
1042   - <field>
1043   - <field_name>all_content</field_name>
1044   - <key_value>22</key_value>
1045   - <target_name>fcno22</target_name>
1046   - <target_type>String</target_type>
1047   - <target_format/>
1048   - <target_length>-1</target_length>
1049   - <target_precision>-1</target_precision>
1050   - <target_decimal_symbol/>
1051   - <target_grouping_symbol/>
1052   - <target_currency_symbol/>
1053   - <target_null_string/>
1054   - <target_aggregation_type>-</target_aggregation_type>
1055   - </field>
1056   - <field>
1057   - <field_name>all_content</field_name>
1058   - <key_value>23</key_value>
1059   - <target_name>fcno23</target_name>
1060   - <target_type>String</target_type>
1061   - <target_format/>
1062   - <target_length>-1</target_length>
1063   - <target_precision>-1</target_precision>
1064   - <target_decimal_symbol/>
1065   - <target_grouping_symbol/>
1066   - <target_currency_symbol/>
1067   - <target_null_string/>
1068   - <target_aggregation_type>-</target_aggregation_type>
1069   - </field>
1070   - <field>
1071   - <field_name>all_content</field_name>
1072   - <key_value>24</key_value>
1073   - <target_name>fcno24</target_name>
1074   - <target_type>String</target_type>
1075   - <target_format/>
1076   - <target_length>-1</target_length>
1077   - <target_precision>-1</target_precision>
1078   - <target_decimal_symbol/>
1079   - <target_grouping_symbol/>
1080   - <target_currency_symbol/>
1081   - <target_null_string/>
1082   - <target_aggregation_type>-</target_aggregation_type>
1083   - </field>
1084   - <field>
1085   - <field_name>all_content</field_name>
1086   - <key_value>25</key_value>
1087   - <target_name>fcno25</target_name>
1088   - <target_type>String</target_type>
1089   - <target_format/>
1090   - <target_length>-1</target_length>
1091   - <target_precision>-1</target_precision>
1092   - <target_decimal_symbol/>
1093   - <target_grouping_symbol/>
1094   - <target_currency_symbol/>
1095   - <target_null_string/>
1096   - <target_aggregation_type>-</target_aggregation_type>
1097   - </field>
1098   - <field>
1099   - <field_name>all_content</field_name>
1100   - <key_value>26</key_value>
1101   - <target_name>fcno26</target_name>
1102   - <target_type>String</target_type>
1103   - <target_format/>
1104   - <target_length>-1</target_length>
1105   - <target_precision>-1</target_precision>
1106   - <target_decimal_symbol/>
1107   - <target_grouping_symbol/>
1108   - <target_currency_symbol/>
1109   - <target_null_string/>
1110   - <target_aggregation_type>-</target_aggregation_type>
1111   - </field>
1112   - <field>
1113   - <field_name>all_content</field_name>
1114   - <key_value>27</key_value>
1115   - <target_name>fcno27</target_name>
1116   - <target_type>String</target_type>
1117   - <target_format/>
1118   - <target_length>-1</target_length>
1119   - <target_precision>-1</target_precision>
1120   - <target_decimal_symbol/>
1121   - <target_grouping_symbol/>
1122   - <target_currency_symbol/>
1123   - <target_null_string/>
1124   - <target_aggregation_type>-</target_aggregation_type>
1125   - </field>
1126   - <field>
1127   - <field_name>all_content</field_name>
1128   - <key_value>28</key_value>
1129   - <target_name>fcno28</target_name>
1130   - <target_type>String</target_type>
1131   - <target_format/>
1132   - <target_length>-1</target_length>
1133   - <target_precision>-1</target_precision>
1134   - <target_decimal_symbol/>
1135   - <target_grouping_symbol/>
1136   - <target_currency_symbol/>
1137   - <target_null_string/>
1138   - <target_aggregation_type>-</target_aggregation_type>
1139   - </field>
1140   - <field>
1141   - <field_name>all_content</field_name>
1142   - <key_value>29</key_value>
1143   - <target_name>fcno29</target_name>
1144   - <target_type>String</target_type>
1145   - <target_format/>
1146   - <target_length>-1</target_length>
1147   - <target_precision>-1</target_precision>
1148   - <target_decimal_symbol/>
1149   - <target_grouping_symbol/>
1150   - <target_currency_symbol/>
1151   - <target_null_string/>
1152   - <target_aggregation_type>-</target_aggregation_type>
1153   - </field>
1154   - <field>
1155   - <field_name>all_content</field_name>
1156   - <key_value>30</key_value>
1157   - <target_name>fcno30</target_name>
1158   - <target_type>String</target_type>
1159   - <target_format/>
1160   - <target_length>-1</target_length>
1161   - <target_precision>-1</target_precision>
1162   - <target_decimal_symbol/>
1163   - <target_grouping_symbol/>
1164   - <target_currency_symbol/>
1165   - <target_null_string/>
1166   - <target_aggregation_type>-</target_aggregation_type>
1167   - </field>
1168   - <field>
1169   - <field_name>all_content</field_name>
1170   - <key_value>31</key_value>
1171   - <target_name>fcno31</target_name>
1172   - <target_type>String</target_type>
1173   - <target_format/>
1174   - <target_length>-1</target_length>
1175   - <target_precision>-1</target_precision>
1176   - <target_decimal_symbol/>
1177   - <target_grouping_symbol/>
1178   - <target_currency_symbol/>
1179   - <target_null_string/>
1180   - <target_aggregation_type>-</target_aggregation_type>
1181   - </field>
1182   - <field>
1183   - <field_name>all_content</field_name>
1184   - <key_value>32</key_value>
1185   - <target_name>fcno32</target_name>
1186   - <target_type>String</target_type>
1187   - <target_format/>
1188   - <target_length>-1</target_length>
1189   - <target_precision>-1</target_precision>
1190   - <target_decimal_symbol/>
1191   - <target_grouping_symbol/>
1192   - <target_currency_symbol/>
1193   - <target_null_string/>
1194   - <target_aggregation_type>-</target_aggregation_type>
1195   - </field>
1196   - <field>
1197   - <field_name>all_content</field_name>
1198   - <key_value>33</key_value>
1199   - <target_name>fcno33</target_name>
1200   - <target_type>String</target_type>
1201   - <target_format/>
1202   - <target_length>-1</target_length>
1203   - <target_precision>-1</target_precision>
1204   - <target_decimal_symbol/>
1205   - <target_grouping_symbol/>
1206   - <target_currency_symbol/>
1207   - <target_null_string/>
1208   - <target_aggregation_type>-</target_aggregation_type>
1209   - </field>
1210   - <field>
1211   - <field_name>all_content</field_name>
1212   - <key_value>34</key_value>
1213   - <target_name>fcno34</target_name>
1214   - <target_type>String</target_type>
1215   - <target_format/>
1216   - <target_length>-1</target_length>
1217   - <target_precision>-1</target_precision>
1218   - <target_decimal_symbol/>
1219   - <target_grouping_symbol/>
1220   - <target_currency_symbol/>
1221   - <target_null_string/>
1222   - <target_aggregation_type>-</target_aggregation_type>
1223   - </field>
1224   - <field>
1225   - <field_name>all_content</field_name>
1226   - <key_value>35</key_value>
1227   - <target_name>fcno35</target_name>
1228   - <target_type>String</target_type>
1229   - <target_format/>
1230   - <target_length>-1</target_length>
1231   - <target_precision>-1</target_precision>
1232   - <target_decimal_symbol/>
1233   - <target_grouping_symbol/>
1234   - <target_currency_symbol/>
1235   - <target_null_string/>
1236   - <target_aggregation_type>-</target_aggregation_type>
1237   - </field>
1238   - <field>
1239   - <field_name>all_content</field_name>
1240   - <key_value>36</key_value>
1241   - <target_name>fcno36</target_name>
1242   - <target_type>String</target_type>
1243   - <target_format/>
1244   - <target_length>-1</target_length>
1245   - <target_precision>-1</target_precision>
1246   - <target_decimal_symbol/>
1247   - <target_grouping_symbol/>
1248   - <target_currency_symbol/>
1249   - <target_null_string/>
1250   - <target_aggregation_type>-</target_aggregation_type>
1251   - </field>
1252   - <field>
1253   - <field_name>all_content</field_name>
1254   - <key_value>37</key_value>
1255   - <target_name>fcno37</target_name>
1256   - <target_type>String</target_type>
1257   - <target_format/>
1258   - <target_length>-1</target_length>
1259   - <target_precision>-1</target_precision>
1260   - <target_decimal_symbol/>
1261   - <target_grouping_symbol/>
1262   - <target_currency_symbol/>
1263   - <target_null_string/>
1264   - <target_aggregation_type>-</target_aggregation_type>
1265   - </field>
1266   - <field>
1267   - <field_name>all_content</field_name>
1268   - <key_value>38</key_value>
1269   - <target_name>fcno38</target_name>
1270   - <target_type>String</target_type>
1271   - <target_format/>
1272   - <target_length>-1</target_length>
1273   - <target_precision>-1</target_precision>
1274   - <target_decimal_symbol/>
1275   - <target_grouping_symbol/>
1276   - <target_currency_symbol/>
1277   - <target_null_string/>
1278   - <target_aggregation_type>-</target_aggregation_type>
1279   - </field>
1280   - <field>
1281   - <field_name>all_content</field_name>
1282   - <key_value>39</key_value>
1283   - <target_name>fcno39</target_name>
1284   - <target_type>String</target_type>
1285   - <target_format/>
1286   - <target_length>-1</target_length>
1287   - <target_precision>-1</target_precision>
1288   - <target_decimal_symbol/>
1289   - <target_grouping_symbol/>
1290   - <target_currency_symbol/>
1291   - <target_null_string/>
1292   - <target_aggregation_type>-</target_aggregation_type>
1293   - </field>
1294   - <field>
1295   - <field_name>all_content</field_name>
1296   - <key_value>40</key_value>
1297   - <target_name>fcno40</target_name>
1298   - <target_type>String</target_type>
1299   - <target_format/>
1300   - <target_length>-1</target_length>
1301   - <target_precision>-1</target_precision>
1302   - <target_decimal_symbol/>
1303   - <target_grouping_symbol/>
1304   - <target_currency_symbol/>
1305   - <target_null_string/>
1306   - <target_aggregation_type>-</target_aggregation_type>
1307   - </field>
1308   - <field>
1309   - <field_name>all_content</field_name>
1310   - <key_value>41</key_value>
1311   - <target_name>fcno41</target_name>
1312   - <target_type>String</target_type>
1313   - <target_format/>
1314   - <target_length>-1</target_length>
1315   - <target_precision>-1</target_precision>
1316   - <target_decimal_symbol/>
1317   - <target_grouping_symbol/>
1318   - <target_currency_symbol/>
1319   - <target_null_string/>
1320   - <target_aggregation_type>-</target_aggregation_type>
1321   - </field>
1322   - <field>
1323   - <field_name>all_content</field_name>
1324   - <key_value>42</key_value>
1325   - <target_name>fcno42</target_name>
1326   - <target_type>String</target_type>
1327   - <target_format/>
1328   - <target_length>-1</target_length>
1329   - <target_precision>-1</target_precision>
1330   - <target_decimal_symbol/>
1331   - <target_grouping_symbol/>
1332   - <target_currency_symbol/>
1333   - <target_null_string/>
1334   - <target_aggregation_type>-</target_aggregation_type>
1335   - </field>
1336   - <field>
1337   - <field_name>all_content</field_name>
1338   - <key_value>43</key_value>
1339   - <target_name>fcno43</target_name>
1340   - <target_type>String</target_type>
1341   - <target_format/>
1342   - <target_length>-1</target_length>
1343   - <target_precision>-1</target_precision>
1344   - <target_decimal_symbol/>
1345   - <target_grouping_symbol/>
1346   - <target_currency_symbol/>
1347   - <target_null_string/>
1348   - <target_aggregation_type>-</target_aggregation_type>
1349   - </field>
1350   - <field>
1351   - <field_name>all_content</field_name>
1352   - <key_value>44</key_value>
1353   - <target_name>fcno44</target_name>
1354   - <target_type>String</target_type>
1355   - <target_format/>
1356   - <target_length>-1</target_length>
1357   - <target_precision>-1</target_precision>
1358   - <target_decimal_symbol/>
1359   - <target_grouping_symbol/>
1360   - <target_currency_symbol/>
1361   - <target_null_string/>
1362   - <target_aggregation_type>-</target_aggregation_type>
1363   - </field>
1364   - <field>
1365   - <field_name>all_content</field_name>
1366   - <key_value>45</key_value>
1367   - <target_name>fcno45</target_name>
1368   - <target_type>String</target_type>
1369   - <target_format/>
1370   - <target_length>-1</target_length>
1371   - <target_precision>-1</target_precision>
1372   - <target_decimal_symbol/>
1373   - <target_grouping_symbol/>
1374   - <target_currency_symbol/>
1375   - <target_null_string/>
1376   - <target_aggregation_type>-</target_aggregation_type>
1377   - </field>
1378   - <field>
1379   - <field_name>all_content</field_name>
1380   - <key_value>46</key_value>
1381   - <target_name>fcno46</target_name>
1382   - <target_type>String</target_type>
1383   - <target_format/>
1384   - <target_length>-1</target_length>
1385   - <target_precision>-1</target_precision>
1386   - <target_decimal_symbol/>
1387   - <target_grouping_symbol/>
1388   - <target_currency_symbol/>
1389   - <target_null_string/>
1390   - <target_aggregation_type>-</target_aggregation_type>
1391   - </field>
1392   - <field>
1393   - <field_name>all_content</field_name>
1394   - <key_value>47</key_value>
1395   - <target_name>fcno47</target_name>
1396   - <target_type>String</target_type>
1397   - <target_format/>
1398   - <target_length>-1</target_length>
1399   - <target_precision>-1</target_precision>
1400   - <target_decimal_symbol/>
1401   - <target_grouping_symbol/>
1402   - <target_currency_symbol/>
1403   - <target_null_string/>
1404   - <target_aggregation_type>-</target_aggregation_type>
1405   - </field>
1406   - <field>
1407   - <field_name>all_content</field_name>
1408   - <key_value>48</key_value>
1409   - <target_name>fcno48</target_name>
1410   - <target_type>String</target_type>
1411   - <target_format/>
1412   - <target_length>-1</target_length>
1413   - <target_precision>-1</target_precision>
1414   - <target_decimal_symbol/>
1415   - <target_grouping_symbol/>
1416   - <target_currency_symbol/>
1417   - <target_null_string/>
1418   - <target_aggregation_type>-</target_aggregation_type>
1419   - </field>
1420   - <field>
1421   - <field_name>all_content</field_name>
1422   - <key_value>49</key_value>
1423   - <target_name>fcno49</target_name>
1424   - <target_type>String</target_type>
1425   - <target_format/>
1426   - <target_length>-1</target_length>
1427   - <target_precision>-1</target_precision>
1428   - <target_decimal_symbol/>
1429   - <target_grouping_symbol/>
1430   - <target_currency_symbol/>
1431   - <target_null_string/>
1432   - <target_aggregation_type>-</target_aggregation_type>
1433   - </field>
1434   - <field>
1435   - <field_name>all_content</field_name>
1436   - <key_value>50</key_value>
1437   - <target_name>fcno50</target_name>
1438   - <target_type>String</target_type>
1439   - <target_format/>
1440   - <target_length>-1</target_length>
1441   - <target_precision>-1</target_precision>
1442   - <target_decimal_symbol/>
1443   - <target_grouping_symbol/>
1444   - <target_currency_symbol/>
1445   - <target_null_string/>
1446   - <target_aggregation_type>-</target_aggregation_type>
1447   - </field>
1448   - <field>
1449   - <field_name>all_content</field_name>
1450   - <key_value>51</key_value>
1451   - <target_name>fcno51</target_name>
1452   - <target_type>String</target_type>
1453   - <target_format/>
1454   - <target_length>-1</target_length>
1455   - <target_precision>-1</target_precision>
1456   - <target_decimal_symbol/>
1457   - <target_grouping_symbol/>
1458   - <target_currency_symbol/>
1459   - <target_null_string/>
1460   - <target_aggregation_type>-</target_aggregation_type>
1461   - </field>
1462   - <field>
1463   - <field_name>all_content</field_name>
1464   - <key_value>52</key_value>
1465   - <target_name>fcno52</target_name>
1466   - <target_type>String</target_type>
1467   - <target_format/>
1468   - <target_length>-1</target_length>
1469   - <target_precision>-1</target_precision>
1470   - <target_decimal_symbol/>
1471   - <target_grouping_symbol/>
1472   - <target_currency_symbol/>
1473   - <target_null_string/>
1474   - <target_aggregation_type>-</target_aggregation_type>
1475   - </field>
1476   - <field>
1477   - <field_name>all_content</field_name>
1478   - <key_value>53</key_value>
1479   - <target_name>fcno53</target_name>
1480   - <target_type>String</target_type>
1481   - <target_format/>
1482   - <target_length>-1</target_length>
1483   - <target_precision>-1</target_precision>
1484   - <target_decimal_symbol/>
1485   - <target_grouping_symbol/>
1486   - <target_currency_symbol/>
1487   - <target_null_string/>
1488   - <target_aggregation_type>-</target_aggregation_type>
1489   - </field>
1490   - <field>
1491   - <field_name>all_content</field_name>
1492   - <key_value>54</key_value>
1493   - <target_name>fcno54</target_name>
1494   - <target_type>String</target_type>
1495   - <target_format/>
1496   - <target_length>-1</target_length>
1497   - <target_precision>-1</target_precision>
1498   - <target_decimal_symbol/>
1499   - <target_grouping_symbol/>
1500   - <target_currency_symbol/>
1501   - <target_null_string/>
1502   - <target_aggregation_type>-</target_aggregation_type>
1503   - </field>
1504   - <field>
1505   - <field_name>all_content</field_name>
1506   - <key_value>55</key_value>
1507   - <target_name>fcno55</target_name>
1508   - <target_type>String</target_type>
1509   - <target_format/>
1510   - <target_length>-1</target_length>
1511   - <target_precision>-1</target_precision>
1512   - <target_decimal_symbol/>
1513   - <target_grouping_symbol/>
1514   - <target_currency_symbol/>
1515   - <target_null_string/>
1516   - <target_aggregation_type>-</target_aggregation_type>
1517   - </field>
1518   - <field>
1519   - <field_name>all_content</field_name>
1520   - <key_value>56</key_value>
1521   - <target_name>fcno56</target_name>
1522   - <target_type>String</target_type>
1523   - <target_format/>
1524   - <target_length>-1</target_length>
1525   - <target_precision>-1</target_precision>
1526   - <target_decimal_symbol/>
1527   - <target_grouping_symbol/>
1528   - <target_currency_symbol/>
1529   - <target_null_string/>
1530   - <target_aggregation_type>-</target_aggregation_type>
1531   - </field>
1532   - <field>
1533   - <field_name>all_content</field_name>
1534   - <key_value>57</key_value>
1535   - <target_name>fcno57</target_name>
1536   - <target_type>String</target_type>
1537   - <target_format/>
1538   - <target_length>-1</target_length>
1539   - <target_precision>-1</target_precision>
1540   - <target_decimal_symbol/>
1541   - <target_grouping_symbol/>
1542   - <target_currency_symbol/>
1543   - <target_null_string/>
1544   - <target_aggregation_type>-</target_aggregation_type>
1545   - </field>
1546   - <field>
1547   - <field_name>all_content</field_name>
1548   - <key_value>58</key_value>
1549   - <target_name>fcno58</target_name>
1550   - <target_type>String</target_type>
1551   - <target_format/>
1552   - <target_length>-1</target_length>
1553   - <target_precision>-1</target_precision>
1554   - <target_decimal_symbol/>
1555   - <target_grouping_symbol/>
1556   - <target_currency_symbol/>
1557   - <target_null_string/>
1558   - <target_aggregation_type>-</target_aggregation_type>
1559   - </field>
1560   - <field>
1561   - <field_name>all_content</field_name>
1562   - <key_value>59</key_value>
1563   - <target_name>fcno59</target_name>
1564   - <target_type>String</target_type>
1565   - <target_format/>
1566   - <target_length>-1</target_length>
1567   - <target_precision>-1</target_precision>
1568   - <target_decimal_symbol/>
1569   - <target_grouping_symbol/>
1570   - <target_currency_symbol/>
1571   - <target_null_string/>
1572   - <target_aggregation_type>-</target_aggregation_type>
1573   - </field>
1574   - <field>
1575   - <field_name>all_content</field_name>
1576   - <key_value>60</key_value>
1577   - <target_name>fcno60</target_name>
1578   - <target_type>String</target_type>
1579   - <target_format/>
1580   - <target_length>-1</target_length>
1581   - <target_precision>-1</target_precision>
1582   - <target_decimal_symbol/>
1583   - <target_grouping_symbol/>
1584   - <target_currency_symbol/>
1585   - <target_null_string/>
1586   - <target_aggregation_type>-</target_aggregation_type>
1587   - </field>
1588   - <field>
1589   - <field_name>all_content</field_name>
1590   - <key_value>61</key_value>
1591   - <target_name>fcno61</target_name>
1592   - <target_type>String</target_type>
1593   - <target_format/>
1594   - <target_length>-1</target_length>
1595   - <target_precision>-1</target_precision>
1596   - <target_decimal_symbol/>
1597   - <target_grouping_symbol/>
1598   - <target_currency_symbol/>
1599   - <target_null_string/>
1600   - <target_aggregation_type>-</target_aggregation_type>
1601   - </field>
1602   - <field>
1603   - <field_name>all_content</field_name>
1604   - <key_value>62</key_value>
1605   - <target_name>fcno62</target_name>
1606   - <target_type>String</target_type>
1607   - <target_format/>
1608   - <target_length>-1</target_length>
1609   - <target_precision>-1</target_precision>
1610   - <target_decimal_symbol/>
1611   - <target_grouping_symbol/>
1612   - <target_currency_symbol/>
1613   - <target_null_string/>
1614   - <target_aggregation_type>-</target_aggregation_type>
1615   - </field>
1616   - <field>
1617   - <field_name>all_content</field_name>
1618   - <key_value>63</key_value>
1619   - <target_name>fcno63</target_name>
1620   - <target_type>String</target_type>
1621   - <target_format/>
1622   - <target_length>-1</target_length>
1623   - <target_precision>-1</target_precision>
1624   - <target_decimal_symbol/>
1625   - <target_grouping_symbol/>
1626   - <target_currency_symbol/>
1627   - <target_null_string/>
1628   - <target_aggregation_type>-</target_aggregation_type>
1629   - </field>
1630   - <field>
1631   - <field_name>all_content</field_name>
1632   - <key_value>64</key_value>
1633   - <target_name>fcno64</target_name>
1634   - <target_type>String</target_type>
1635   - <target_format/>
1636   - <target_length>-1</target_length>
1637   - <target_precision>-1</target_precision>
1638   - <target_decimal_symbol/>
1639   - <target_grouping_symbol/>
1640   - <target_currency_symbol/>
1641   - <target_null_string/>
1642   - <target_aggregation_type>-</target_aggregation_type>
1643   - </field>
1644   - <field>
1645   - <field_name>all_content</field_name>
1646   - <key_value>65</key_value>
1647   - <target_name>fcno65</target_name>
1648   - <target_type>String</target_type>
1649   - <target_format/>
1650   - <target_length>-1</target_length>
1651   - <target_precision>-1</target_precision>
1652   - <target_decimal_symbol/>
1653   - <target_grouping_symbol/>
1654   - <target_currency_symbol/>
1655   - <target_null_string/>
1656   - <target_aggregation_type>-</target_aggregation_type>
1657   - </field>
1658   - <field>
1659   - <field_name>all_content</field_name>
1660   - <key_value>66</key_value>
1661   - <target_name>fcno66</target_name>
1662   - <target_type>String</target_type>
1663   - <target_format/>
1664   - <target_length>-1</target_length>
1665   - <target_precision>-1</target_precision>
1666   - <target_decimal_symbol/>
1667   - <target_grouping_symbol/>
1668   - <target_currency_symbol/>
1669   - <target_null_string/>
1670   - <target_aggregation_type>-</target_aggregation_type>
1671   - </field>
1672   - <field>
1673   - <field_name>all_content</field_name>
1674   - <key_value>67</key_value>
1675   - <target_name>fcno67</target_name>
1676   - <target_type>String</target_type>
1677   - <target_format/>
1678   - <target_length>-1</target_length>
1679   - <target_precision>-1</target_precision>
1680   - <target_decimal_symbol/>
1681   - <target_grouping_symbol/>
1682   - <target_currency_symbol/>
1683   - <target_null_string/>
1684   - <target_aggregation_type>-</target_aggregation_type>
1685   - </field>
1686   - <field>
1687   - <field_name>all_content</field_name>
1688   - <key_value>68</key_value>
1689   - <target_name>fcno68</target_name>
1690   - <target_type>String</target_type>
1691   - <target_format/>
1692   - <target_length>-1</target_length>
1693   - <target_precision>-1</target_precision>
1694   - <target_decimal_symbol/>
1695   - <target_grouping_symbol/>
1696   - <target_currency_symbol/>
1697   - <target_null_string/>
1698   - <target_aggregation_type>-</target_aggregation_type>
1699   - </field>
1700   - <field>
1701   - <field_name>all_content</field_name>
1702   - <key_value>69</key_value>
1703   - <target_name>fcno69</target_name>
1704   - <target_type>String</target_type>
1705   - <target_format/>
1706   - <target_length>-1</target_length>
1707   - <target_precision>-1</target_precision>
1708   - <target_decimal_symbol/>
1709   - <target_grouping_symbol/>
1710   - <target_currency_symbol/>
1711   - <target_null_string/>
1712   - <target_aggregation_type>-</target_aggregation_type>
1713   - </field>
1714   - <field>
1715   - <field_name>all_content</field_name>
1716   - <key_value>70</key_value>
1717   - <target_name>fcno70</target_name>
1718   - <target_type>String</target_type>
1719   - <target_format/>
1720   - <target_length>-1</target_length>
1721   - <target_precision>-1</target_precision>
1722   - <target_decimal_symbol/>
1723   - <target_grouping_symbol/>
1724   - <target_currency_symbol/>
1725   - <target_null_string/>
1726   - <target_aggregation_type>-</target_aggregation_type>
1727   - </field>
1728   - </fields>
1729   - <cluster_schema/>
1730   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
1731   - <xloc>683</xloc>
1732   - <yloc>184</yloc>
1733   - <draw>Y</draw>
1734   - </GUI>
1735   - </step>
1736   -
1737   - <step>
1738   - <name>&#x53bb;&#x9664;&#x5b57;&#x6bb5;</name>
1739   - <type>SelectValues</type>
1740   - <description/>
1741   - <distribute>N</distribute>
1742   - <custom_distribution/>
1743   - <copies>1</copies>
1744   - <partitioning>
1745   - <method>none</method>
1746   - <schema_name/>
1747   - </partitioning>
1748   - <fields> <field> <name>lp</name>
1749   - <rename/>
1750   - <length>-2</length>
1751   - <precision>-2</precision>
1752   - </field> <field> <name>fcno1</name>
1753   - <rename/>
1754   - <length>-2</length>
1755   - <precision>-2</precision>
1756   - </field> <field> <name>fcno2</name>
1757   - <rename/>
1758   - <length>-2</length>
1759   - <precision>-2</precision>
1760   - </field> <field> <name>fcno3</name>
1761   - <rename/>
1762   - <length>-2</length>
1763   - <precision>-2</precision>
1764   - </field> <field> <name>fcno4</name>
1765   - <rename/>
1766   - <length>-2</length>
1767   - <precision>-2</precision>
1768   - </field> <field> <name>fcno5</name>
1769   - <rename/>
1770   - <length>-2</length>
1771   - <precision>-2</precision>
1772   - </field> <field> <name>fcno6</name>
1773   - <rename/>
1774   - <length>-2</length>
1775   - <precision>-2</precision>
1776   - </field> <field> <name>fcno7</name>
1777   - <rename/>
1778   - <length>-2</length>
1779   - <precision>-2</precision>
1780   - </field> <field> <name>fcno8</name>
1781   - <rename/>
1782   - <length>-2</length>
1783   - <precision>-2</precision>
1784   - </field> <field> <name>fcno9</name>
1785   - <rename/>
1786   - <length>-2</length>
1787   - <precision>-2</precision>
1788   - </field> <field> <name>fcno10</name>
1789   - <rename/>
1790   - <length>-2</length>
1791   - <precision>-2</precision>
1792   - </field> <field> <name>fcno11</name>
1793   - <rename/>
1794   - <length>-2</length>
1795   - <precision>-2</precision>
1796   - </field> <field> <name>fcno12</name>
1797   - <rename/>
1798   - <length>-2</length>
1799   - <precision>-2</precision>
1800   - </field> <field> <name>fcno13</name>
1801   - <rename/>
1802   - <length>-2</length>
1803   - <precision>-2</precision>
1804   - </field> <field> <name>fcno14</name>
1805   - <rename/>
1806   - <length>-2</length>
1807   - <precision>-2</precision>
1808   - </field> <field> <name>fcno15</name>
1809   - <rename/>
1810   - <length>-2</length>
1811   - <precision>-2</precision>
1812   - </field> <field> <name>fcno16</name>
1813   - <rename/>
1814   - <length>-2</length>
1815   - <precision>-2</precision>
1816   - </field> <field> <name>fcno17</name>
1817   - <rename/>
1818   - <length>-2</length>
1819   - <precision>-2</precision>
1820   - </field> <field> <name>fcno18</name>
1821   - <rename/>
1822   - <length>-2</length>
1823   - <precision>-2</precision>
1824   - </field> <field> <name>fcno19</name>
1825   - <rename/>
1826   - <length>-2</length>
1827   - <precision>-2</precision>
1828   - </field> <field> <name>fcno20</name>
1829   - <rename/>
1830   - <length>-2</length>
1831   - <precision>-2</precision>
1832   - </field> <field> <name>fcno21</name>
1833   - <rename/>
1834   - <length>-2</length>
1835   - <precision>-2</precision>
1836   - </field> <field> <name>fcno22</name>
1837   - <rename/>
1838   - <length>-2</length>
1839   - <precision>-2</precision>
1840   - </field> <field> <name>fcno23</name>
1841   - <rename/>
1842   - <length>-2</length>
1843   - <precision>-2</precision>
1844   - </field> <field> <name>fcno24</name>
1845   - <rename/>
1846   - <length>-2</length>
1847   - <precision>-2</precision>
1848   - </field> <field> <name>fcno25</name>
1849   - <rename/>
1850   - <length>-2</length>
1851   - <precision>-2</precision>
1852   - </field> <field> <name>fcno26</name>
1853   - <rename/>
1854   - <length>-2</length>
1855   - <precision>-2</precision>
1856   - </field> <field> <name>fcno27</name>
1857   - <rename/>
1858   - <length>-2</length>
1859   - <precision>-2</precision>
1860   - </field> <field> <name>fcno28</name>
1861   - <rename/>
1862   - <length>-2</length>
1863   - <precision>-2</precision>
1864   - </field> <field> <name>fcno29</name>
1865   - <rename/>
1866   - <length>-2</length>
1867   - <precision>-2</precision>
1868   - </field> <field> <name>fcno30</name>
1869   - <rename/>
1870   - <length>-2</length>
1871   - <precision>-2</precision>
1872   - </field> <field> <name>fcno31</name>
1873   - <rename/>
1874   - <length>-2</length>
1875   - <precision>-2</precision>
1876   - </field> <field> <name>fcno32</name>
1877   - <rename/>
1878   - <length>-2</length>
1879   - <precision>-2</precision>
1880   - </field> <field> <name>fcno33</name>
1881   - <rename/>
1882   - <length>-2</length>
1883   - <precision>-2</precision>
1884   - </field> <field> <name>fcno34</name>
1885   - <rename/>
1886   - <length>-2</length>
1887   - <precision>-2</precision>
1888   - </field> <field> <name>fcno35</name>
1889   - <rename/>
1890   - <length>-2</length>
1891   - <precision>-2</precision>
1892   - </field> <field> <name>fcno36</name>
1893   - <rename/>
1894   - <length>-2</length>
1895   - <precision>-2</precision>
1896   - </field> <field> <name>fcno37</name>
1897   - <rename/>
1898   - <length>-2</length>
1899   - <precision>-2</precision>
1900   - </field> <field> <name>fcno38</name>
1901   - <rename/>
1902   - <length>-2</length>
1903   - <precision>-2</precision>
1904   - </field> <field> <name>fcno39</name>
1905   - <rename/>
1906   - <length>-2</length>
1907   - <precision>-2</precision>
1908   - </field> <field> <name>fcno40</name>
1909   - <rename/>
1910   - <length>-2</length>
1911   - <precision>-2</precision>
1912   - </field> <field> <name>fcno41</name>
1913   - <rename/>
1914   - <length>-2</length>
1915   - <precision>-2</precision>
1916   - </field> <field> <name>fcno42</name>
1917   - <rename/>
1918   - <length>-2</length>
1919   - <precision>-2</precision>
1920   - </field> <field> <name>fcno43</name>
1921   - <rename/>
1922   - <length>-2</length>
1923   - <precision>-2</precision>
1924   - </field> <field> <name>fcno44</name>
1925   - <rename/>
1926   - <length>-2</length>
1927   - <precision>-2</precision>
1928   - </field> <field> <name>fcno45</name>
1929   - <rename/>
1930   - <length>-2</length>
1931   - <precision>-2</precision>
1932   - </field> <field> <name>fcno46</name>
1933   - <rename/>
1934   - <length>-2</length>
1935   - <precision>-2</precision>
1936   - </field> <field> <name>fcno47</name>
1937   - <rename/>
1938   - <length>-2</length>
1939   - <precision>-2</precision>
1940   - </field> <field> <name>fcno48</name>
1941   - <rename/>
1942   - <length>-2</length>
1943   - <precision>-2</precision>
1944   - </field> <field> <name>fcno49</name>
1945   - <rename/>
1946   - <length>-2</length>
1947   - <precision>-2</precision>
1948   - </field> <field> <name>fcno50</name>
1949   - <rename/>
1950   - <length>-2</length>
1951   - <precision>-2</precision>
1952   - </field> <field> <name>fcno51</name>
1953   - <rename/>
1954   - <length>-2</length>
1955   - <precision>-2</precision>
1956   - </field> <field> <name>fcno52</name>
1957   - <rename/>
1958   - <length>-2</length>
1959   - <precision>-2</precision>
1960   - </field> <field> <name>fcno53</name>
1961   - <rename/>
1962   - <length>-2</length>
1963   - <precision>-2</precision>
1964   - </field> <field> <name>fcno54</name>
1965   - <rename/>
1966   - <length>-2</length>
1967   - <precision>-2</precision>
1968   - </field> <field> <name>fcno55</name>
1969   - <rename/>
1970   - <length>-2</length>
1971   - <precision>-2</precision>
1972   - </field> <field> <name>fcno56</name>
1973   - <rename/>
1974   - <length>-2</length>
1975   - <precision>-2</precision>
1976   - </field> <field> <name>fcno57</name>
1977   - <rename/>
1978   - <length>-2</length>
1979   - <precision>-2</precision>
1980   - </field> <field> <name>fcno58</name>
1981   - <rename/>
1982   - <length>-2</length>
1983   - <precision>-2</precision>
1984   - </field> <field> <name>fcno59</name>
1985   - <rename/>
1986   - <length>-2</length>
1987   - <precision>-2</precision>
1988   - </field> <field> <name>fcno60</name>
1989   - <rename/>
1990   - <length>-2</length>
1991   - <precision>-2</precision>
1992   - </field> <field> <name>fcno61</name>
1993   - <rename/>
1994   - <length>-2</length>
1995   - <precision>-2</precision>
1996   - </field> <field> <name>fcno62</name>
1997   - <rename/>
1998   - <length>-2</length>
1999   - <precision>-2</precision>
2000   - </field> <field> <name>fcno63</name>
2001   - <rename/>
2002   - <length>-2</length>
2003   - <precision>-2</precision>
2004   - </field> <field> <name>fcno64</name>
2005   - <rename/>
2006   - <length>-2</length>
2007   - <precision>-2</precision>
2008   - </field> <field> <name>fcno65</name>
2009   - <rename/>
2010   - <length>-2</length>
2011   - <precision>-2</precision>
2012   - </field> <field> <name>fcno66</name>
2013   - <rename/>
2014   - <length>-2</length>
2015   - <precision>-2</precision>
2016   - </field> <field> <name>fcno67</name>
2017   - <rename/>
2018   - <length>-2</length>
2019   - <precision>-2</precision>
2020   - </field> <field> <name>fcno68</name>
2021   - <rename/>
2022   - <length>-2</length>
2023   - <precision>-2</precision>
2024   - </field> <field> <name>fcno69</name>
2025   - <rename/>
2026   - <length>-2</length>
2027   - <precision>-2</precision>
2028   - </field> <field> <name>fcno70</name>
2029   - <rename/>
2030   - <length>-2</length>
2031   - <precision>-2</precision>
2032   - </field> <select_unspecified>N</select_unspecified>
2033   - </fields> <cluster_schema/>
2034   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2035   - <xloc>691</xloc>
2036   - <yloc>361</yloc>
2037   - <draw>Y</draw>
2038   - </GUI>
2039   - </step>
2040   -
2041   - <step>
2042   - <name>&#x5408;&#x5e76;&#x5185;&#x5bb9;</name>
2043   - <type>ScriptValueMod</type>
2044   - <description/>
2045   - <distribute>Y</distribute>
2046   - <custom_distribution/>
2047   - <copies>1</copies>
2048   - <partitioning>
2049   - <method>none</method>
2050   - <schema_name/>
2051   - </partitioning>
2052   - <compatible>N</compatible>
2053   - <optimizationLevel>9</optimizationLevel>
2054   - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
2055   - <jsScript_name>Script 1</jsScript_name>
2056   - <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;&#x2f;&#x2f; &#x987a;&#x5e8f;&#xff0c;id,fcsj,jhlc,zdname,bctype,xldir,isfb&#xa;var all_content_array &#x3d; &#x5b;&#x5d;&#x3b;&#xa;var all_content &#x3d; &#x22;&#x22;&#x3b; &#xa;all_content_array.push&#x28;id&#x29;&#x3b;&#xa;all_content_array.push&#x28;fcsj&#x29;&#x3b;&#xa;all_content_array.push&#x28;jhlc&#x29;&#x3b;&#xa;all_content_array.push&#x28;fczdName&#x29;&#x3b;&#xa;all_content_array.push&#x28;bc_type&#x29;&#x3b;&#xa;all_content_array.push&#x28;xl_dir&#x29;&#x3b;&#xa;all_content_array.push&#x28;isfb&#x29;&#x3b;&#xa;all_content_array.push&#x28;qdz_code &#x7c;&#x7c; &#x27;null&#x27;&#x29;&#x3b;&#xa;all_content_array.push&#x28;zdz_code &#x7c;&#x7c; &#x27;null&#x27;&#x29;&#x3b;&#xa;&#xa;all_content &#x3d; all_content_array.join&#x28;&#x22;,&#x22;&#x29;&#x3b; &#x2f;&#x2f; &#x9017;&#x53f7;&#x5206;&#x9694;</jsScript_script>
2057   - </jsScript> </jsScripts> <fields> <field> <name>all_content</name>
2058   - <rename>all_content</rename>
2059   - <type>String</type>
2060   - <length>-1</length>
2061   - <precision>-1</precision>
2062   - <replace>N</replace>
2063   - </field> </fields> <cluster_schema/>
2064   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2065   - <xloc>441</xloc>
2066   - <yloc>84</yloc>
2067   - <draw>Y</draw>
2068   - </GUI>
2069   - </step>
2070   -
2071   - <step>
2072   - <name>&#x6587;&#x672c;&#x6587;&#x4ef6;&#x8f93;&#x51fa;</name>
2073   - <type>TextFileOutput</type>
2074   - <description/>
2075   - <distribute>Y</distribute>
2076   - <custom_distribution/>
2077   - <copies>1</copies>
2078   - <partitioning>
2079   - <method>none</method>
2080   - <schema_name/>
2081   - </partitioning>
2082   - <separator>&#x3b;</separator>
2083   - <enclosure>&#x22;</enclosure>
2084   - <enclosure_forced>N</enclosure_forced>
2085   - <enclosure_fix_disabled>N</enclosure_fix_disabled>
2086   - <header>Y</header>
2087   - <footer>N</footer>
2088   - <format>DOS</format>
2089   - <compression>None</compression>
2090   - <encoding>UTF-8</encoding>
2091   - <endedLine/>
2092   - <fileNameInField>N</fileNameInField>
2093   - <fileNameField/>
2094   - <create_parent_folder>Y</create_parent_folder>
2095   - <file>
2096   - <name>&#x24;&#x7b;tempfilepath&#x7d;</name>
2097   - <is_command>N</is_command>
2098   - <servlet_output>N</servlet_output>
2099   - <do_not_open_new_file_init>N</do_not_open_new_file_init>
2100   - <extention>txt</extention>
2101   - <append>N</append>
2102   - <split>N</split>
2103   - <haspartno>N</haspartno>
2104   - <add_date>N</add_date>
2105   - <add_time>N</add_time>
2106   - <SpecifyFormat>N</SpecifyFormat>
2107   - <date_time_format/>
2108   - <add_to_result_filenames>Y</add_to_result_filenames>
2109   - <pad>N</pad>
2110   - <fast_dump>N</fast_dump>
2111   - <splitevery>0</splitevery>
2112   - </file>
2113   - <fields>
2114   - <field>
2115   - <name>lp</name>
2116   - <type>String</type>
2117   - <format/>
2118   - <currency/>
2119   - <decimal/>
2120   - <group/>
2121   - <nullif/>
2122   - <trim_type>none</trim_type>
2123   - <length>255</length>
2124   - <precision>-1</precision>
2125   - </field>
2126   - <field>
2127   - <name>fcno1</name>
2128   - <type>String</type>
2129   - <format/>
2130   - <currency/>
2131   - <decimal/>
2132   - <group/>
2133   - <nullif/>
2134   - <trim_type>none</trim_type>
2135   - <length>-1</length>
2136   - <precision>-1</precision>
2137   - </field>
2138   - <field>
2139   - <name>fcno2</name>
2140   - <type>String</type>
2141   - <format/>
2142   - <currency/>
2143   - <decimal/>
2144   - <group/>
2145   - <nullif/>
2146   - <trim_type>none</trim_type>
2147   - <length>-1</length>
2148   - <precision>-1</precision>
2149   - </field>
2150   - <field>
2151   - <name>fcno3</name>
2152   - <type>String</type>
2153   - <format/>
2154   - <currency/>
2155   - <decimal/>
2156   - <group/>
2157   - <nullif/>
2158   - <trim_type>none</trim_type>
2159   - <length>-1</length>
2160   - <precision>-1</precision>
2161   - </field>
2162   - <field>
2163   - <name>fcno4</name>
2164   - <type>String</type>
2165   - <format/>
2166   - <currency/>
2167   - <decimal/>
2168   - <group/>
2169   - <nullif/>
2170   - <trim_type>none</trim_type>
2171   - <length>-1</length>
2172   - <precision>-1</precision>
2173   - </field>
2174   - <field>
2175   - <name>fcno5</name>
2176   - <type>String</type>
2177   - <format/>
2178   - <currency/>
2179   - <decimal/>
2180   - <group/>
2181   - <nullif/>
2182   - <trim_type>none</trim_type>
2183   - <length>-1</length>
2184   - <precision>-1</precision>
2185   - </field>
2186   - <field>
2187   - <name>fcno6</name>
2188   - <type>String</type>
2189   - <format/>
2190   - <currency/>
2191   - <decimal/>
2192   - <group/>
2193   - <nullif/>
2194   - <trim_type>none</trim_type>
2195   - <length>-1</length>
2196   - <precision>-1</precision>
2197   - </field>
2198   - <field>
2199   - <name>fcno7</name>
2200   - <type>String</type>
2201   - <format/>
2202   - <currency/>
2203   - <decimal/>
2204   - <group/>
2205   - <nullif/>
2206   - <trim_type>none</trim_type>
2207   - <length>-1</length>
2208   - <precision>-1</precision>
2209   - </field>
2210   - <field>
2211   - <name>fcno8</name>
2212   - <type>String</type>
2213   - <format/>
2214   - <currency/>
2215   - <decimal/>
2216   - <group/>
2217   - <nullif/>
2218   - <trim_type>none</trim_type>
2219   - <length>-1</length>
2220   - <precision>-1</precision>
2221   - </field>
2222   - <field>
2223   - <name>fcno9</name>
2224   - <type>String</type>
2225   - <format/>
2226   - <currency/>
2227   - <decimal/>
2228   - <group/>
2229   - <nullif/>
2230   - <trim_type>none</trim_type>
2231   - <length>-1</length>
2232   - <precision>-1</precision>
2233   - </field>
2234   - <field>
2235   - <name>fcno10</name>
2236   - <type>String</type>
2237   - <format/>
2238   - <currency/>
2239   - <decimal/>
2240   - <group/>
2241   - <nullif/>
2242   - <trim_type>none</trim_type>
2243   - <length>-1</length>
2244   - <precision>-1</precision>
2245   - </field>
2246   - <field>
2247   - <name>fcno11</name>
2248   - <type>String</type>
2249   - <format/>
2250   - <currency/>
2251   - <decimal/>
2252   - <group/>
2253   - <nullif/>
2254   - <trim_type>none</trim_type>
2255   - <length>-1</length>
2256   - <precision>-1</precision>
2257   - </field>
2258   - <field>
2259   - <name>fcno12</name>
2260   - <type>String</type>
2261   - <format/>
2262   - <currency/>
2263   - <decimal/>
2264   - <group/>
2265   - <nullif/>
2266   - <trim_type>none</trim_type>
2267   - <length>-1</length>
2268   - <precision>-1</precision>
2269   - </field>
2270   - <field>
2271   - <name>fcno13</name>
2272   - <type>String</type>
2273   - <format/>
2274   - <currency/>
2275   - <decimal/>
2276   - <group/>
2277   - <nullif/>
2278   - <trim_type>none</trim_type>
2279   - <length>-1</length>
2280   - <precision>-1</precision>
2281   - </field>
2282   - <field>
2283   - <name>fcno14</name>
2284   - <type>String</type>
2285   - <format/>
2286   - <currency/>
2287   - <decimal/>
2288   - <group/>
2289   - <nullif/>
2290   - <trim_type>none</trim_type>
2291   - <length>-1</length>
2292   - <precision>-1</precision>
2293   - </field>
2294   - <field>
2295   - <name>fcno15</name>
2296   - <type>String</type>
2297   - <format/>
2298   - <currency/>
2299   - <decimal/>
2300   - <group/>
2301   - <nullif/>
2302   - <trim_type>none</trim_type>
2303   - <length>-1</length>
2304   - <precision>-1</precision>
2305   - </field>
2306   - <field>
2307   - <name>fcno16</name>
2308   - <type>String</type>
2309   - <format/>
2310   - <currency/>
2311   - <decimal/>
2312   - <group/>
2313   - <nullif/>
2314   - <trim_type>none</trim_type>
2315   - <length>-1</length>
2316   - <precision>-1</precision>
2317   - </field>
2318   - <field>
2319   - <name>fcno17</name>
2320   - <type>String</type>
2321   - <format/>
2322   - <currency/>
2323   - <decimal/>
2324   - <group/>
2325   - <nullif/>
2326   - <trim_type>none</trim_type>
2327   - <length>-1</length>
2328   - <precision>-1</precision>
2329   - </field>
2330   - <field>
2331   - <name>fcno18</name>
2332   - <type>String</type>
2333   - <format/>
2334   - <currency/>
2335   - <decimal/>
2336   - <group/>
2337   - <nullif/>
2338   - <trim_type>none</trim_type>
2339   - <length>-1</length>
2340   - <precision>-1</precision>
2341   - </field>
2342   - <field>
2343   - <name>fcno19</name>
2344   - <type>String</type>
2345   - <format/>
2346   - <currency/>
2347   - <decimal/>
2348   - <group/>
2349   - <nullif/>
2350   - <trim_type>none</trim_type>
2351   - <length>-1</length>
2352   - <precision>-1</precision>
2353   - </field>
2354   - <field>
2355   - <name>fcno20</name>
2356   - <type>String</type>
2357   - <format/>
2358   - <currency/>
2359   - <decimal/>
2360   - <group/>
2361   - <nullif/>
2362   - <trim_type>none</trim_type>
2363   - <length>-1</length>
2364   - <precision>-1</precision>
2365   - </field>
2366   - <field>
2367   - <name>fcno21</name>
2368   - <type>String</type>
2369   - <format/>
2370   - <currency/>
2371   - <decimal/>
2372   - <group/>
2373   - <nullif/>
2374   - <trim_type>none</trim_type>
2375   - <length>-1</length>
2376   - <precision>-1</precision>
2377   - </field>
2378   - <field>
2379   - <name>fcno22</name>
2380   - <type>String</type>
2381   - <format/>
2382   - <currency/>
2383   - <decimal/>
2384   - <group/>
2385   - <nullif/>
2386   - <trim_type>none</trim_type>
2387   - <length>-1</length>
2388   - <precision>-1</precision>
2389   - </field>
2390   - <field>
2391   - <name>fcno23</name>
2392   - <type>String</type>
2393   - <format/>
2394   - <currency/>
2395   - <decimal/>
2396   - <group/>
2397   - <nullif/>
2398   - <trim_type>none</trim_type>
2399   - <length>-1</length>
2400   - <precision>-1</precision>
2401   - </field>
2402   - <field>
2403   - <name>fcno24</name>
2404   - <type>String</type>
2405   - <format/>
2406   - <currency/>
2407   - <decimal/>
2408   - <group/>
2409   - <nullif/>
2410   - <trim_type>none</trim_type>
2411   - <length>-1</length>
2412   - <precision>-1</precision>
2413   - </field>
2414   - <field>
2415   - <name>fcno25</name>
2416   - <type>String</type>
2417   - <format/>
2418   - <currency/>
2419   - <decimal/>
2420   - <group/>
2421   - <nullif/>
2422   - <trim_type>none</trim_type>
2423   - <length>-1</length>
2424   - <precision>-1</precision>
2425   - </field>
2426   - <field>
2427   - <name>fcno26</name>
2428   - <type>String</type>
2429   - <format/>
2430   - <currency/>
2431   - <decimal/>
2432   - <group/>
2433   - <nullif/>
2434   - <trim_type>none</trim_type>
2435   - <length>-1</length>
2436   - <precision>-1</precision>
2437   - </field>
2438   - <field>
2439   - <name>fcno27</name>
2440   - <type>String</type>
2441   - <format/>
2442   - <currency/>
2443   - <decimal/>
2444   - <group/>
2445   - <nullif/>
2446   - <trim_type>none</trim_type>
2447   - <length>-1</length>
2448   - <precision>-1</precision>
2449   - </field>
2450   - <field>
2451   - <name>fcno28</name>
2452   - <type>String</type>
2453   - <format/>
2454   - <currency/>
2455   - <decimal/>
2456   - <group/>
2457   - <nullif/>
2458   - <trim_type>none</trim_type>
2459   - <length>-1</length>
2460   - <precision>-1</precision>
2461   - </field>
2462   - <field>
2463   - <name>fcno29</name>
2464   - <type>String</type>
2465   - <format/>
2466   - <currency/>
2467   - <decimal/>
2468   - <group/>
2469   - <nullif/>
2470   - <trim_type>none</trim_type>
2471   - <length>-1</length>
2472   - <precision>-1</precision>
2473   - </field>
2474   - <field>
2475   - <name>fcno30</name>
2476   - <type>String</type>
2477   - <format/>
2478   - <currency/>
2479   - <decimal/>
2480   - <group/>
2481   - <nullif/>
2482   - <trim_type>none</trim_type>
2483   - <length>-1</length>
2484   - <precision>-1</precision>
2485   - </field>
2486   - <field>
2487   - <name>fcno31</name>
2488   - <type>String</type>
2489   - <format/>
2490   - <currency/>
2491   - <decimal/>
2492   - <group/>
2493   - <nullif/>
2494   - <trim_type>none</trim_type>
2495   - <length>-1</length>
2496   - <precision>-1</precision>
2497   - </field>
2498   - <field>
2499   - <name>fcno32</name>
2500   - <type>String</type>
2501   - <format/>
2502   - <currency/>
2503   - <decimal/>
2504   - <group/>
2505   - <nullif/>
2506   - <trim_type>none</trim_type>
2507   - <length>-1</length>
2508   - <precision>-1</precision>
2509   - </field>
2510   - <field>
2511   - <name>fcno33</name>
2512   - <type>String</type>
2513   - <format/>
2514   - <currency/>
2515   - <decimal/>
2516   - <group/>
2517   - <nullif/>
2518   - <trim_type>none</trim_type>
2519   - <length>-1</length>
2520   - <precision>-1</precision>
2521   - </field>
2522   - <field>
2523   - <name>fcno34</name>
2524   - <type>String</type>
2525   - <format/>
2526   - <currency/>
2527   - <decimal/>
2528   - <group/>
2529   - <nullif/>
2530   - <trim_type>none</trim_type>
2531   - <length>-1</length>
2532   - <precision>-1</precision>
2533   - </field>
2534   - <field>
2535   - <name>fcno35</name>
2536   - <type>String</type>
2537   - <format/>
2538   - <currency/>
2539   - <decimal/>
2540   - <group/>
2541   - <nullif/>
2542   - <trim_type>none</trim_type>
2543   - <length>-1</length>
2544   - <precision>-1</precision>
2545   - </field>
2546   - <field>
2547   - <name>fcno36</name>
2548   - <type>String</type>
2549   - <format/>
2550   - <currency/>
2551   - <decimal/>
2552   - <group/>
2553   - <nullif/>
2554   - <trim_type>none</trim_type>
2555   - <length>-1</length>
2556   - <precision>-1</precision>
2557   - </field>
2558   - <field>
2559   - <name>fcno37</name>
2560   - <type>String</type>
2561   - <format/>
2562   - <currency/>
2563   - <decimal/>
2564   - <group/>
2565   - <nullif/>
2566   - <trim_type>none</trim_type>
2567   - <length>-1</length>
2568   - <precision>-1</precision>
2569   - </field>
2570   - <field>
2571   - <name>fcno38</name>
2572   - <type>String</type>
2573   - <format/>
2574   - <currency/>
2575   - <decimal/>
2576   - <group/>
2577   - <nullif/>
2578   - <trim_type>none</trim_type>
2579   - <length>-1</length>
2580   - <precision>-1</precision>
2581   - </field>
2582   - <field>
2583   - <name>fcno39</name>
2584   - <type>String</type>
2585   - <format/>
2586   - <currency/>
2587   - <decimal/>
2588   - <group/>
2589   - <nullif/>
2590   - <trim_type>none</trim_type>
2591   - <length>-1</length>
2592   - <precision>-1</precision>
2593   - </field>
2594   - <field>
2595   - <name>fcno40</name>
2596   - <type>String</type>
2597   - <format/>
2598   - <currency/>
2599   - <decimal/>
2600   - <group/>
2601   - <nullif/>
2602   - <trim_type>none</trim_type>
2603   - <length>-1</length>
2604   - <precision>-1</precision>
2605   - </field>
2606   - <field>
2607   - <name>fcno41</name>
2608   - <type>String</type>
2609   - <format/>
2610   - <currency/>
2611   - <decimal/>
2612   - <group/>
2613   - <nullif/>
2614   - <trim_type>none</trim_type>
2615   - <length>-1</length>
2616   - <precision>-1</precision>
2617   - </field>
2618   - <field>
2619   - <name>fcno42</name>
2620   - <type>String</type>
2621   - <format/>
2622   - <currency/>
2623   - <decimal/>
2624   - <group/>
2625   - <nullif/>
2626   - <trim_type>none</trim_type>
2627   - <length>-1</length>
2628   - <precision>-1</precision>
2629   - </field>
2630   - <field>
2631   - <name>fcno43</name>
2632   - <type>String</type>
2633   - <format/>
2634   - <currency/>
2635   - <decimal/>
2636   - <group/>
2637   - <nullif/>
2638   - <trim_type>none</trim_type>
2639   - <length>-1</length>
2640   - <precision>-1</precision>
2641   - </field>
2642   - <field>
2643   - <name>fcno44</name>
2644   - <type>String</type>
2645   - <format/>
2646   - <currency/>
2647   - <decimal/>
2648   - <group/>
2649   - <nullif/>
2650   - <trim_type>none</trim_type>
2651   - <length>-1</length>
2652   - <precision>-1</precision>
2653   - </field>
2654   - <field>
2655   - <name>fcno45</name>
2656   - <type>String</type>
2657   - <format/>
2658   - <currency/>
2659   - <decimal/>
2660   - <group/>
2661   - <nullif/>
2662   - <trim_type>none</trim_type>
2663   - <length>-1</length>
2664   - <precision>-1</precision>
2665   - </field>
2666   - <field>
2667   - <name>fcno46</name>
2668   - <type>String</type>
2669   - <format/>
2670   - <currency/>
2671   - <decimal/>
2672   - <group/>
2673   - <nullif/>
2674   - <trim_type>none</trim_type>
2675   - <length>-1</length>
2676   - <precision>-1</precision>
2677   - </field>
2678   - <field>
2679   - <name>fcno47</name>
2680   - <type>String</type>
2681   - <format/>
2682   - <currency/>
2683   - <decimal/>
2684   - <group/>
2685   - <nullif/>
2686   - <trim_type>none</trim_type>
2687   - <length>-1</length>
2688   - <precision>-1</precision>
2689   - </field>
2690   - <field>
2691   - <name>fcno48</name>
2692   - <type>String</type>
2693   - <format/>
2694   - <currency/>
2695   - <decimal/>
2696   - <group/>
2697   - <nullif/>
2698   - <trim_type>none</trim_type>
2699   - <length>-1</length>
2700   - <precision>-1</precision>
2701   - </field>
2702   - <field>
2703   - <name>fcno49</name>
2704   - <type>String</type>
2705   - <format/>
2706   - <currency/>
2707   - <decimal/>
2708   - <group/>
2709   - <nullif/>
2710   - <trim_type>none</trim_type>
2711   - <length>-1</length>
2712   - <precision>-1</precision>
2713   - </field>
2714   - <field>
2715   - <name>fcno50</name>
2716   - <type>String</type>
2717   - <format/>
2718   - <currency/>
2719   - <decimal/>
2720   - <group/>
2721   - <nullif/>
2722   - <trim_type>none</trim_type>
2723   - <length>-1</length>
2724   - <precision>-1</precision>
2725   - </field>
2726   - <field>
2727   - <name>fcno51</name>
2728   - <type>String</type>
2729   - <format/>
2730   - <currency/>
2731   - <decimal/>
2732   - <group/>
2733   - <nullif/>
2734   - <trim_type>none</trim_type>
2735   - <length>-1</length>
2736   - <precision>-1</precision>
2737   - </field>
2738   - <field>
2739   - <name>fcno52</name>
2740   - <type>String</type>
2741   - <format/>
2742   - <currency/>
2743   - <decimal/>
2744   - <group/>
2745   - <nullif/>
2746   - <trim_type>none</trim_type>
2747   - <length>-1</length>
2748   - <precision>-1</precision>
2749   - </field>
2750   - <field>
2751   - <name>fcno53</name>
2752   - <type>String</type>
2753   - <format/>
2754   - <currency/>
2755   - <decimal/>
2756   - <group/>
2757   - <nullif/>
2758   - <trim_type>none</trim_type>
2759   - <length>-1</length>
2760   - <precision>-1</precision>
2761   - </field>
2762   - <field>
2763   - <name>fcno54</name>
2764   - <type>String</type>
2765   - <format/>
2766   - <currency/>
2767   - <decimal/>
2768   - <group/>
2769   - <nullif/>
2770   - <trim_type>none</trim_type>
2771   - <length>-1</length>
2772   - <precision>-1</precision>
2773   - </field>
2774   - <field>
2775   - <name>fcno55</name>
2776   - <type>String</type>
2777   - <format/>
2778   - <currency/>
2779   - <decimal/>
2780   - <group/>
2781   - <nullif/>
2782   - <trim_type>none</trim_type>
2783   - <length>-1</length>
2784   - <precision>-1</precision>
2785   - </field>
2786   - <field>
2787   - <name>fcno56</name>
2788   - <type>String</type>
2789   - <format/>
2790   - <currency/>
2791   - <decimal/>
2792   - <group/>
2793   - <nullif/>
2794   - <trim_type>none</trim_type>
2795   - <length>-1</length>
2796   - <precision>-1</precision>
2797   - </field>
2798   - <field>
2799   - <name>fcno57</name>
2800   - <type>String</type>
2801   - <format/>
2802   - <currency/>
2803   - <decimal/>
2804   - <group/>
2805   - <nullif/>
2806   - <trim_type>none</trim_type>
2807   - <length>-1</length>
2808   - <precision>-1</precision>
2809   - </field>
2810   - <field>
2811   - <name>fcno58</name>
2812   - <type>String</type>
2813   - <format/>
2814   - <currency/>
2815   - <decimal/>
2816   - <group/>
2817   - <nullif/>
2818   - <trim_type>none</trim_type>
2819   - <length>-1</length>
2820   - <precision>-1</precision>
2821   - </field>
2822   - <field>
2823   - <name>fcno59</name>
2824   - <type>String</type>
2825   - <format/>
2826   - <currency/>
2827   - <decimal/>
2828   - <group/>
2829   - <nullif/>
2830   - <trim_type>none</trim_type>
2831   - <length>-1</length>
2832   - <precision>-1</precision>
2833   - </field>
2834   - <field>
2835   - <name>fcno60</name>
2836   - <type>String</type>
2837   - <format/>
2838   - <currency/>
2839   - <decimal/>
2840   - <group/>
2841   - <nullif/>
2842   - <trim_type>none</trim_type>
2843   - <length>-1</length>
2844   - <precision>-1</precision>
2845   - </field>
2846   - <field>
2847   - <name>fcno61</name>
2848   - <type>String</type>
2849   - <format/>
2850   - <currency/>
2851   - <decimal/>
2852   - <group/>
2853   - <nullif/>
2854   - <trim_type>none</trim_type>
2855   - <length>-1</length>
2856   - <precision>-1</precision>
2857   - </field>
2858   - <field>
2859   - <name>fcno62</name>
2860   - <type>String</type>
2861   - <format/>
2862   - <currency/>
2863   - <decimal/>
2864   - <group/>
2865   - <nullif/>
2866   - <trim_type>none</trim_type>
2867   - <length>-1</length>
2868   - <precision>-1</precision>
2869   - </field>
2870   - <field>
2871   - <name>fcno63</name>
2872   - <type>String</type>
2873   - <format/>
2874   - <currency/>
2875   - <decimal/>
2876   - <group/>
2877   - <nullif/>
2878   - <trim_type>none</trim_type>
2879   - <length>-1</length>
2880   - <precision>-1</precision>
2881   - </field>
2882   - <field>
2883   - <name>fcno64</name>
2884   - <type>String</type>
2885   - <format/>
2886   - <currency/>
2887   - <decimal/>
2888   - <group/>
2889   - <nullif/>
2890   - <trim_type>none</trim_type>
2891   - <length>-1</length>
2892   - <precision>-1</precision>
2893   - </field>
2894   - <field>
2895   - <name>fcno65</name>
2896   - <type>String</type>
2897   - <format/>
2898   - <currency/>
2899   - <decimal/>
2900   - <group/>
2901   - <nullif/>
2902   - <trim_type>none</trim_type>
2903   - <length>-1</length>
2904   - <precision>-1</precision>
2905   - </field>
2906   - <field>
2907   - <name>fcno66</name>
2908   - <type>String</type>
2909   - <format/>
2910   - <currency/>
2911   - <decimal/>
2912   - <group/>
2913   - <nullif/>
2914   - <trim_type>none</trim_type>
2915   - <length>-1</length>
2916   - <precision>-1</precision>
2917   - </field>
2918   - <field>
2919   - <name>fcno67</name>
2920   - <type>String</type>
2921   - <format/>
2922   - <currency/>
2923   - <decimal/>
2924   - <group/>
2925   - <nullif/>
2926   - <trim_type>none</trim_type>
2927   - <length>-1</length>
2928   - <precision>-1</precision>
2929   - </field>
2930   - <field>
2931   - <name>fcno68</name>
2932   - <type>String</type>
2933   - <format/>
2934   - <currency/>
2935   - <decimal/>
2936   - <group/>
2937   - <nullif/>
2938   - <trim_type>none</trim_type>
2939   - <length>-1</length>
2940   - <precision>-1</precision>
2941   - </field>
2942   - <field>
2943   - <name>fcno69</name>
2944   - <type>String</type>
2945   - <format/>
2946   - <currency/>
2947   - <decimal/>
2948   - <group/>
2949   - <nullif/>
2950   - <trim_type>none</trim_type>
2951   - <length>-1</length>
2952   - <precision>-1</precision>
2953   - </field>
2954   - <field>
2955   - <name>fcno70</name>
2956   - <type>String</type>
2957   - <format/>
2958   - <currency/>
2959   - <decimal/>
2960   - <group/>
2961   - <nullif/>
2962   - <trim_type>none</trim_type>
2963   - <length>-1</length>
2964   - <precision>-1</precision>
2965   - </field>
2966   - </fields>
2967   - <cluster_schema/>
2968   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2969   - <xloc>880</xloc>
2970   - <yloc>365</yloc>
2971   - <draw>Y</draw>
2972   - </GUI>
2973   - </step>
2974   -
2975   - <step>
2976   - <name>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</name>
2977   - <type>GetVariable</type>
2978   - <description/>
2979   - <distribute>Y</distribute>
2980   - <custom_distribution/>
2981   - <copies>1</copies>
2982   - <partitioning>
2983   - <method>none</method>
2984   - <schema_name/>
2985   - </partitioning>
2986   - <fields>
2987   - <field>
2988   - <name>xlid_</name>
2989   - <variable>&#x24;&#x7b;xlid&#x7d;</variable>
2990   - <type>Integer</type>
2991   - <format/>
2992   - <currency/>
2993   - <decimal/>
2994   - <group/>
2995   - <length>-1</length>
2996   - <precision>-1</precision>
2997   - <trim_type>none</trim_type>
2998   - </field>
2999   - <field>
3000   - <name>ttid_</name>
3001   - <variable>&#x24;&#x7b;ttid&#x7d;</variable>
3002   - <type>Number</type>
3003   - <format/>
3004   - <currency/>
3005   - <decimal/>
3006   - <group/>
3007   - <length>-1</length>
3008   - <precision>-1</precision>
3009   - <trim_type>none</trim_type>
3010   - </field>
3011   - </fields>
3012   - <cluster_schema/>
3013   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
3014   - <xloc>45</xloc>
3015   - <yloc>189</yloc>
3016   - <draw>Y</draw>
3017   - </GUI>
3018   - </step>
3019   -
3020   - <step>
3021   - <name>&#x8868;&#x8f93;&#x5165;</name>
3022   - <type>TableInput</type>
3023   - <description/>
3024   - <distribute>Y</distribute>
3025   - <custom_distribution/>
3026   - <copies>1</copies>
3027   - <partitioning>
3028   - <method>none</method>
3029   - <schema_name/>
3030   - </partitioning>
3031   - <connection>bus_control_variable</connection>
3032   - <sql>select &#xa;t.id as id&#xa;, concat&#x28;g.id, &#x27;_&#x27;, g.lp_name&#x29; as lp&#xa;, g.xl as xl&#xa;, qdz_code&#xa;, qdz_name&#xa;, zdz_code&#xa;, zdz_name&#xa;, fcsj&#xa;, jhlc&#xa;, bc_type &#xa;, bcs&#xa;, fcno&#xa;, xl_dir&#xa;, isfb&#xa;from bsth_c_s_ttinfo_detail t left join &#xa;bsth_c_s_gbi g on t.lp &#x3d; g.id &#xa;where &#xa;g.xl &#x3d; &#x3f; and&#xa;t.ttinfo &#x3d; &#x3f; &#xa;order by g.lp_no asc, t.bcs asc</sql>
3033   - <limit>0</limit>
3034   - <lookup>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</lookup>
3035   - <execute_each_row>N</execute_each_row>
3036   - <variables_active>Y</variables_active>
3037   - <lazy_conversion_active>N</lazy_conversion_active>
3038   - <cluster_schema/>
3039   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
3040   - <xloc>130</xloc>
3041   - <yloc>85</yloc>
3042   - <draw>Y</draw>
3043   - </GUI>
3044   - </step>
3045   -
3046   - <step>
3047   - <name>&#x8ba1;&#x7b97;&#x53d1;&#x8f66;&#x7ad9;&#x540d;</name>
3048   - <type>ScriptValueMod</type>
3049   - <description/>
3050   - <distribute>Y</distribute>
3051   - <custom_distribution/>
3052   - <copies>1</copies>
3053   - <partitioning>
3054   - <method>none</method>
3055   - <schema_name/>
3056   - </partitioning>
3057   - <compatible>N</compatible>
3058   - <optimizationLevel>9</optimizationLevel>
3059   - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
3060   - <jsScript_name>Script 1</jsScript_name>
3061   - <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var fczdName &#x3d; null&#x3b; &#x2f;&#x2f; &#x53d1;&#x8f66;&#x7ad9;&#x70b9;&#x540d;&#x5b57;&#xa;if &#x28;bc_type &#x3d;&#x3d; &#x22;in&#x22;&#x29; &#x7b;&#xa; fczdName &#x3d; &#x22;&#x8fdb;&#x573a;&#x22;&#x3b;&#xa;&#x7d; else if &#x28;bc_type &#x3d;&#x3d; &#x22;out&#x22;&#x29; &#x7b;&#xa; fczdName &#x3d; &#x22;&#x51fa;&#x573a;&#x22;&#x3b;&#xa;&#x7d; else &#x7b;&#xa; fczdName &#x3d; qdz_name&#x3b;&#xa;&#x7d;</jsScript_script>
3062   - </jsScript> </jsScripts> <fields> <field> <name>fczdName</name>
3063   - <rename>fczdName</rename>
3064   - <type>String</type>
3065   - <length>-1</length>
3066   - <precision>-1</precision>
3067   - <replace>N</replace>
3068   - </field> </fields> <cluster_schema/>
3069   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
3070   - <xloc>282</xloc>
3071   - <yloc>82</yloc>
3072   - <draw>Y</draw>
3073   - </GUI>
3074   - </step>
3075   -
3076   - <step_error_handling>
3077   - </step_error_handling>
3078   - <slave-step-copy-partition-distribution>
3079   -</slave-step-copy-partition-distribution>
3080   - <slave_transformation>N</slave_transformation>
3081   -
3082   -</transformation>
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<transformation>
  3 + <info>
  4 + <name>ttinfodetailoutputforedit</name>
  5 + <description/>
  6 + <extended_description/>
  7 + <trans_version/>
  8 + <trans_type>Normal</trans_type>
  9 + <trans_status>0</trans_status>
  10 + <directory>&#x2f;</directory>
  11 + <parameters>
  12 + <parameter>
  13 + <name>tempfilepath</name>
  14 + <default_value>&#x2f;Users&#x2f;xu&#x2f;resource&#x2f;project_code&#x2f;runtime_temp&#x2f;bsth_control_u_d_files&#x2f;temp&#x2f;test</default_value>
  15 + <description>&#x9ed8;&#x8ba4;&#x8f93;&#x51fa;&#x7684;&#x6587;&#x4ef6;&#x8def;&#x5f84;&#x540d;</description>
  16 + </parameter>
  17 + <parameter>
  18 + <name>ttid</name>
  19 + <default_value>79</default_value>
  20 + <description>&#x65f6;&#x523b;&#x8868;id</description>
  21 + </parameter>
  22 + <parameter>
  23 + <name>xlid</name>
  24 + <default_value>63020</default_value>
  25 + <description>&#x7ebf;&#x8def;id</description>
  26 + </parameter>
  27 + </parameters>
  28 + <log>
  29 +<trans-log-table><connection/>
  30 +<schema/>
  31 +<table/>
  32 +<size_limit_lines/>
  33 +<interval/>
  34 +<timeout_days/>
  35 +<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>
  36 +<perf-log-table><connection/>
  37 +<schema/>
  38 +<table/>
  39 +<interval/>
  40 +<timeout_days/>
  41 +<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>
  42 +<channel-log-table><connection/>
  43 +<schema/>
  44 +<table/>
  45 +<timeout_days/>
  46 +<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>
  47 +<step-log-table><connection/>
  48 +<schema/>
  49 +<table/>
  50 +<timeout_days/>
  51 +<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>
  52 +<metrics-log-table><connection/>
  53 +<schema/>
  54 +<table/>
  55 +<timeout_days/>
  56 +<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>
  57 + </log>
  58 + <maxdate>
  59 + <connection/>
  60 + <table/>
  61 + <field/>
  62 + <offset>0.0</offset>
  63 + <maxdiff>0.0</maxdiff>
  64 + </maxdate>
  65 + <size_rowset>10000</size_rowset>
  66 + <sleep_time_empty>50</sleep_time_empty>
  67 + <sleep_time_full>50</sleep_time_full>
  68 + <unique_connections>N</unique_connections>
  69 + <feedback_shown>Y</feedback_shown>
  70 + <feedback_size>50000</feedback_size>
  71 + <using_thread_priorities>Y</using_thread_priorities>
  72 + <shared_objects_file/>
  73 + <capture_step_performance>N</capture_step_performance>
  74 + <step_performance_capturing_delay>1000</step_performance_capturing_delay>
  75 + <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit>
  76 + <dependencies>
  77 + </dependencies>
  78 + <partitionschemas>
  79 + </partitionschemas>
  80 + <slaveservers>
  81 + </slaveservers>
  82 + <clusterschemas>
  83 + </clusterschemas>
  84 + <created_user>-</created_user>
  85 + <created_date>2016&#x2f;07&#x2f;11 21&#x3a;45&#x3a;05.041</created_date>
  86 + <modified_user>-</modified_user>
  87 + <modified_date>2016&#x2f;07&#x2f;11 21&#x3a;45&#x3a;05.041</modified_date>
  88 + <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA&#x3d;</key_for_session_key>
  89 + <is_key_private>N</is_key_private>
  90 + </info>
  91 + <notepads>
  92 + <notepad>
  93 + <note>&#x6b64;&#x5904;&#x8f6c;&#x6362;excel&#x6709;&#x95ee;&#x9898;&#xff0c;&#xa;2003&#x683c;&#x5f0f;&#x7684;xls&#x6700;&#x591a;256&#x5217;&#xff0c;&#xa;&#x8fd9;&#x91cc;&#x660e;&#x663e;&#x8d85;&#x8fc7;&#xff0c;&#x6240;&#x4ee5;&#x628a;&#x6240;&#x6709;&#x5185;&#x5bb9;&#x5408;&#x5e76;&#x6210;1&#x5217;&#xff0c;&#xa;&#x7528;,&#x5206;&#x9694;</note>
  94 + <xloc>316</xloc>
  95 + <yloc>166</yloc>
  96 + <width>245</width>
  97 + <heigth>74</heigth>
  98 + <fontname>YaHei Consolas Hybrid</fontname>
  99 + <fontsize>12</fontsize>
  100 + <fontbold>N</fontbold>
  101 + <fontitalic>N</fontitalic>
  102 + <fontcolorred>0</fontcolorred>
  103 + <fontcolorgreen>0</fontcolorgreen>
  104 + <fontcolorblue>0</fontcolorblue>
  105 + <backgroundcolorred>255</backgroundcolorred>
  106 + <backgroundcolorgreen>205</backgroundcolorgreen>
  107 + <backgroundcolorblue>112</backgroundcolorblue>
  108 + <bordercolorred>100</bordercolorred>
  109 + <bordercolorgreen>100</bordercolorgreen>
  110 + <bordercolorblue>100</bordercolorblue>
  111 + <drawshadow>Y</drawshadow>
  112 + </notepad>
  113 + </notepads>
  114 + <connection>
  115 + <name>192.168.168.1_jwgl_dw</name>
  116 + <server>192.168.168.1</server>
  117 + <type>ORACLE</type>
  118 + <access>Native</access>
  119 + <database>orcl</database>
  120 + <port>1521</port>
  121 + <username>jwgl_dw</username>
  122 + <password>Encrypted 2be98afc86aa7f2e4cb13b977d2adabcd</password>
  123 + <servername/>
  124 + <data_tablespace/>
  125 + <index_tablespace/>
  126 + <attributes>
  127 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  128 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  129 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  130 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  131 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  132 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  133 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  134 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  135 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  136 + </attributes>
  137 + </connection>
  138 + <connection>
  139 + <name>bus_control_variable</name>
  140 + <server>&#x24;&#x7b;v_db_ip&#x7d;</server>
  141 + <type>MYSQL</type>
  142 + <access>Native</access>
  143 + <database>&#x24;&#x7b;v_db_dname&#x7d;</database>
  144 + <port>3306</port>
  145 + <username>&#x24;&#x7b;v_db_uname&#x7d;</username>
  146 + <password>&#x24;&#x7b;v_db_pwd&#x7d;</password>
  147 + <servername/>
  148 + <data_tablespace/>
  149 + <index_tablespace/>
  150 + <attributes>
  151 + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
  152 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  153 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  154 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  155 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  156 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  157 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  158 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  159 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  160 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  161 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  162 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  163 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  164 + </attributes>
  165 + </connection>
  166 + <connection>
  167 + <name>bus_control_&#x516c;&#x53f8;_201</name>
  168 + <server>localhost</server>
  169 + <type>MYSQL</type>
  170 + <access>Native</access>
  171 + <database>control</database>
  172 + <port>3306</port>
  173 + <username>root</username>
  174 + <password>Encrypted </password>
  175 + <servername/>
  176 + <data_tablespace/>
  177 + <index_tablespace/>
  178 + <attributes>
  179 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  180 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  181 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  182 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  183 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  184 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  185 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  186 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  187 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  188 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  189 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  190 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  191 + </attributes>
  192 + </connection>
  193 + <connection>
  194 + <name>bus_control_&#x672c;&#x673a;</name>
  195 + <server>localhost</server>
  196 + <type>MYSQL</type>
  197 + <access>Native</access>
  198 + <database>control</database>
  199 + <port>3306</port>
  200 + <username>root</username>
  201 + <password>Encrypted </password>
  202 + <servername/>
  203 + <data_tablespace/>
  204 + <index_tablespace/>
  205 + <attributes>
  206 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  207 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  208 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  209 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  210 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  211 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  212 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  213 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  214 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  215 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  216 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  217 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  218 + </attributes>
  219 + </connection>
  220 + <connection>
  221 + <name>xlab_mysql_youle</name>
  222 + <server>101.231.124.8</server>
  223 + <type>MYSQL</type>
  224 + <access>Native</access>
  225 + <database>xlab_youle</database>
  226 + <port>45687</port>
  227 + <username>xlab-youle</username>
  228 + <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password>
  229 + <servername/>
  230 + <data_tablespace/>
  231 + <index_tablespace/>
  232 + <attributes>
  233 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  234 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  235 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  236 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  237 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  238 + <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute>
  239 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  240 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  241 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  242 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  243 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  244 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  245 + </attributes>
  246 + </connection>
  247 + <connection>
  248 + <name>xlab_mysql_youle&#xff08;&#x672c;&#x673a;&#xff09;</name>
  249 + <server>localhost</server>
  250 + <type>MYSQL</type>
  251 + <access>Native</access>
  252 + <database>xlab_youle</database>
  253 + <port>3306</port>
  254 + <username>root</username>
  255 + <password>Encrypted </password>
  256 + <servername/>
  257 + <data_tablespace/>
  258 + <index_tablespace/>
  259 + <attributes>
  260 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  261 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  262 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  263 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  264 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  265 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  266 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  267 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  268 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  269 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  270 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  271 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  272 + </attributes>
  273 + </connection>
  274 + <connection>
  275 + <name>xlab_youle</name>
  276 + <server/>
  277 + <type>MYSQL</type>
  278 + <access>JNDI</access>
  279 + <database>xlab_youle</database>
  280 + <port>1521</port>
  281 + <username/>
  282 + <password>Encrypted </password>
  283 + <servername/>
  284 + <data_tablespace/>
  285 + <index_tablespace/>
  286 + <attributes>
  287 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  288 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  289 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  290 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  291 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  292 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  293 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  294 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  295 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  296 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  297 + </attributes>
  298 + </connection>
  299 + <order>
  300 + <hop> <from>&#x5217;&#x8f6c;&#x884c;</from><to>&#x53bb;&#x9664;&#x5b57;&#x6bb5;</to><enabled>Y</enabled> </hop>
  301 + <hop> <from>&#x53bb;&#x9664;&#x5b57;&#x6bb5;</from><to>Excel&#x8f93;&#x51fa;</to><enabled>Y</enabled> </hop>
  302 + <hop> <from>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</from><to>&#x8868;&#x8f93;&#x5165;</to><enabled>Y</enabled> </hop>
  303 + <hop> <from>&#x8ba1;&#x7b97;&#x53d1;&#x8f66;&#x7ad9;&#x540d;</from><to>&#x5408;&#x5e76;&#x5185;&#x5bb9;</to><enabled>Y</enabled> </hop>
  304 + <hop> <from>&#x5408;&#x5e76;&#x5185;&#x5bb9;</from><to>&#x5217;&#x8f6c;&#x884c;</to><enabled>Y</enabled> </hop>
  305 + <hop> <from>&#x53bb;&#x9664;&#x5b57;&#x6bb5;</from><to>&#x6587;&#x672c;&#x6587;&#x4ef6;&#x8f93;&#x51fa;</to><enabled>Y</enabled> </hop>
  306 + <hop> <from>&#x8868;&#x8f93;&#x5165;</from><to>&#x8ba1;&#x7b97;&#x53d1;&#x8f66;&#x7ad9;&#x540d;</to><enabled>Y</enabled> </hop>
  307 + </order>
  308 + <step>
  309 + <name>Excel&#x8f93;&#x51fa;</name>
  310 + <type>ExcelOutput</type>
  311 + <description/>
  312 + <distribute>Y</distribute>
  313 + <custom_distribution/>
  314 + <copies>1</copies>
  315 + <partitioning>
  316 + <method>none</method>
  317 + <schema_name/>
  318 + </partitioning>
  319 + <header>Y</header>
  320 + <footer>N</footer>
  321 + <encoding/>
  322 + <append>N</append>
  323 + <add_to_result_filenames>Y</add_to_result_filenames>
  324 + <file>
  325 + <name>&#x24;&#x7b;tempfilepath&#x7d;</name>
  326 + <extention>xls</extention>
  327 + <do_not_open_newfile_init>N</do_not_open_newfile_init>
  328 + <create_parent_folder>N</create_parent_folder>
  329 + <split>N</split>
  330 + <add_date>N</add_date>
  331 + <add_time>N</add_time>
  332 + <SpecifyFormat>N</SpecifyFormat>
  333 + <date_time_format/>
  334 + <sheetname>Sheet1</sheetname>
  335 + <autosizecolums>N</autosizecolums>
  336 + <nullisblank>N</nullisblank>
  337 + <protect_sheet>N</protect_sheet>
  338 + <password>Encrypted </password>
  339 + <splitevery>0</splitevery>
  340 + <usetempfiles>N</usetempfiles>
  341 + <tempdirectory/>
  342 + </file>
  343 + <template>
  344 + <enabled>N</enabled>
  345 + <append>N</append>
  346 + <filename>template.xls</filename>
  347 + </template>
  348 + <fields>
  349 + <field>
  350 + <name>lp</name>
  351 + <type>String</type>
  352 + <format/>
  353 + </field>
  354 + <field>
  355 + <name>fcno1</name>
  356 + <type>String</type>
  357 + <format/>
  358 + </field>
  359 + <field>
  360 + <name>fcno2</name>
  361 + <type>String</type>
  362 + <format/>
  363 + </field>
  364 + <field>
  365 + <name>fcno3</name>
  366 + <type>String</type>
  367 + <format/>
  368 + </field>
  369 + <field>
  370 + <name>fcno4</name>
  371 + <type>String</type>
  372 + <format/>
  373 + </field>
  374 + <field>
  375 + <name>fcno5</name>
  376 + <type>String</type>
  377 + <format/>
  378 + </field>
  379 + <field>
  380 + <name>fcno6</name>
  381 + <type>String</type>
  382 + <format/>
  383 + </field>
  384 + <field>
  385 + <name>fcno7</name>
  386 + <type>String</type>
  387 + <format/>
  388 + </field>
  389 + <field>
  390 + <name>fcno8</name>
  391 + <type>String</type>
  392 + <format/>
  393 + </field>
  394 + <field>
  395 + <name>fcno9</name>
  396 + <type>String</type>
  397 + <format/>
  398 + </field>
  399 + <field>
  400 + <name>fcno10</name>
  401 + <type>String</type>
  402 + <format/>
  403 + </field>
  404 + <field>
  405 + <name>fcno11</name>
  406 + <type>String</type>
  407 + <format/>
  408 + </field>
  409 + <field>
  410 + <name>fcno12</name>
  411 + <type>String</type>
  412 + <format/>
  413 + </field>
  414 + <field>
  415 + <name>fcno13</name>
  416 + <type>String</type>
  417 + <format/>
  418 + </field>
  419 + <field>
  420 + <name>fcno14</name>
  421 + <type>String</type>
  422 + <format/>
  423 + </field>
  424 + <field>
  425 + <name>fcno15</name>
  426 + <type>String</type>
  427 + <format/>
  428 + </field>
  429 + <field>
  430 + <name>fcno16</name>
  431 + <type>String</type>
  432 + <format/>
  433 + </field>
  434 + <field>
  435 + <name>fcno17</name>
  436 + <type>String</type>
  437 + <format/>
  438 + </field>
  439 + <field>
  440 + <name>fcno18</name>
  441 + <type>String</type>
  442 + <format/>
  443 + </field>
  444 + <field>
  445 + <name>fcno19</name>
  446 + <type>String</type>
  447 + <format/>
  448 + </field>
  449 + <field>
  450 + <name>fcno20</name>
  451 + <type>String</type>
  452 + <format/>
  453 + </field>
  454 + <field>
  455 + <name>fcno21</name>
  456 + <type>String</type>
  457 + <format/>
  458 + </field>
  459 + <field>
  460 + <name>fcno22</name>
  461 + <type>String</type>
  462 + <format/>
  463 + </field>
  464 + <field>
  465 + <name>fcno23</name>
  466 + <type>String</type>
  467 + <format/>
  468 + </field>
  469 + <field>
  470 + <name>fcno24</name>
  471 + <type>String</type>
  472 + <format/>
  473 + </field>
  474 + <field>
  475 + <name>fcno25</name>
  476 + <type>String</type>
  477 + <format/>
  478 + </field>
  479 + <field>
  480 + <name>fcno26</name>
  481 + <type>String</type>
  482 + <format/>
  483 + </field>
  484 + <field>
  485 + <name>fcno27</name>
  486 + <type>String</type>
  487 + <format/>
  488 + </field>
  489 + <field>
  490 + <name>fcno28</name>
  491 + <type>String</type>
  492 + <format/>
  493 + </field>
  494 + <field>
  495 + <name>fcno29</name>
  496 + <type>String</type>
  497 + <format/>
  498 + </field>
  499 + <field>
  500 + <name>fcno30</name>
  501 + <type>String</type>
  502 + <format/>
  503 + </field>
  504 + <field>
  505 + <name>fcno31</name>
  506 + <type>String</type>
  507 + <format/>
  508 + </field>
  509 + <field>
  510 + <name>fcno32</name>
  511 + <type>String</type>
  512 + <format/>
  513 + </field>
  514 + <field>
  515 + <name>fcno33</name>
  516 + <type>String</type>
  517 + <format/>
  518 + </field>
  519 + <field>
  520 + <name>fcno34</name>
  521 + <type>String</type>
  522 + <format/>
  523 + </field>
  524 + <field>
  525 + <name>fcno35</name>
  526 + <type>String</type>
  527 + <format/>
  528 + </field>
  529 + <field>
  530 + <name>fcno36</name>
  531 + <type>String</type>
  532 + <format/>
  533 + </field>
  534 + <field>
  535 + <name>fcno37</name>
  536 + <type>String</type>
  537 + <format/>
  538 + </field>
  539 + <field>
  540 + <name>fcno38</name>
  541 + <type>String</type>
  542 + <format/>
  543 + </field>
  544 + <field>
  545 + <name>fcno39</name>
  546 + <type>String</type>
  547 + <format/>
  548 + </field>
  549 + <field>
  550 + <name>fcno40</name>
  551 + <type>String</type>
  552 + <format/>
  553 + </field>
  554 + <field>
  555 + <name>fcno41</name>
  556 + <type>String</type>
  557 + <format/>
  558 + </field>
  559 + <field>
  560 + <name>fcno42</name>
  561 + <type>String</type>
  562 + <format/>
  563 + </field>
  564 + <field>
  565 + <name>fcno43</name>
  566 + <type>String</type>
  567 + <format/>
  568 + </field>
  569 + <field>
  570 + <name>fcno44</name>
  571 + <type>String</type>
  572 + <format/>
  573 + </field>
  574 + <field>
  575 + <name>fcno45</name>
  576 + <type>String</type>
  577 + <format/>
  578 + </field>
  579 + <field>
  580 + <name>fcno46</name>
  581 + <type>String</type>
  582 + <format/>
  583 + </field>
  584 + <field>
  585 + <name>fcno47</name>
  586 + <type>String</type>
  587 + <format/>
  588 + </field>
  589 + <field>
  590 + <name>fcno48</name>
  591 + <type>String</type>
  592 + <format/>
  593 + </field>
  594 + <field>
  595 + <name>fcno49</name>
  596 + <type>String</type>
  597 + <format/>
  598 + </field>
  599 + <field>
  600 + <name>fcno50</name>
  601 + <type>String</type>
  602 + <format/>
  603 + </field>
  604 + <field>
  605 + <name>fcno51</name>
  606 + <type>String</type>
  607 + <format/>
  608 + </field>
  609 + <field>
  610 + <name>fcno52</name>
  611 + <type>String</type>
  612 + <format/>
  613 + </field>
  614 + <field>
  615 + <name>fcno53</name>
  616 + <type>String</type>
  617 + <format/>
  618 + </field>
  619 + <field>
  620 + <name>fcno54</name>
  621 + <type>String</type>
  622 + <format/>
  623 + </field>
  624 + <field>
  625 + <name>fcno55</name>
  626 + <type>String</type>
  627 + <format/>
  628 + </field>
  629 + <field>
  630 + <name>fcno56</name>
  631 + <type>String</type>
  632 + <format/>
  633 + </field>
  634 + <field>
  635 + <name>fcno57</name>
  636 + <type>String</type>
  637 + <format/>
  638 + </field>
  639 + <field>
  640 + <name>fcno58</name>
  641 + <type>String</type>
  642 + <format/>
  643 + </field>
  644 + <field>
  645 + <name>fcno59</name>
  646 + <type>String</type>
  647 + <format/>
  648 + </field>
  649 + <field>
  650 + <name>fcno60</name>
  651 + <type>String</type>
  652 + <format/>
  653 + </field>
  654 + <field>
  655 + <name>fcno61</name>
  656 + <type>String</type>
  657 + <format/>
  658 + </field>
  659 + <field>
  660 + <name>fcno62</name>
  661 + <type>String</type>
  662 + <format/>
  663 + </field>
  664 + <field>
  665 + <name>fcno63</name>
  666 + <type>String</type>
  667 + <format/>
  668 + </field>
  669 + <field>
  670 + <name>fcno64</name>
  671 + <type>String</type>
  672 + <format/>
  673 + </field>
  674 + <field>
  675 + <name>fcno65</name>
  676 + <type>String</type>
  677 + <format/>
  678 + </field>
  679 + <field>
  680 + <name>fcno66</name>
  681 + <type>String</type>
  682 + <format/>
  683 + </field>
  684 + <field>
  685 + <name>fcno67</name>
  686 + <type>String</type>
  687 + <format/>
  688 + </field>
  689 + <field>
  690 + <name>fcno68</name>
  691 + <type>String</type>
  692 + <format/>
  693 + </field>
  694 + <field>
  695 + <name>fcno69</name>
  696 + <type>String</type>
  697 + <format/>
  698 + </field>
  699 + <field>
  700 + <name>fcno70</name>
  701 + <type>String</type>
  702 + <format/>
  703 + </field>
  704 + </fields>
  705 + <custom>
  706 + <header_font_name>arial</header_font_name>
  707 + <header_font_size>10</header_font_size>
  708 + <header_font_bold>N</header_font_bold>
  709 + <header_font_italic>N</header_font_italic>
  710 + <header_font_underline>no</header_font_underline>
  711 + <header_font_orientation>horizontal</header_font_orientation>
  712 + <header_font_color>black</header_font_color>
  713 + <header_background_color>none</header_background_color>
  714 + <header_row_height>255</header_row_height>
  715 + <header_alignment>left</header_alignment>
  716 + <header_image/>
  717 + <row_font_name>arial</row_font_name>
  718 + <row_font_size>10</row_font_size>
  719 + <row_font_color>black</row_font_color>
  720 + <row_background_color>none</row_background_color>
  721 + </custom>
  722 + <cluster_schema/>
  723 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  724 + <xloc>692</xloc>
  725 + <yloc>514</yloc>
  726 + <draw>Y</draw>
  727 + </GUI>
  728 + </step>
  729 +
  730 + <step>
  731 + <name>&#x5217;&#x8f6c;&#x884c;</name>
  732 + <type>Denormaliser</type>
  733 + <description/>
  734 + <distribute>N</distribute>
  735 + <custom_distribution/>
  736 + <copies>1</copies>
  737 + <partitioning>
  738 + <method>none</method>
  739 + <schema_name/>
  740 + </partitioning>
  741 + <key_field>fcno</key_field>
  742 + <group>
  743 + <field>
  744 + <name>lp</name>
  745 + </field>
  746 + </group>
  747 + <fields>
  748 + <field>
  749 + <field_name>all_content</field_name>
  750 + <key_value>1</key_value>
  751 + <target_name>fcno1</target_name>
  752 + <target_type>String</target_type>
  753 + <target_format/>
  754 + <target_length>-1</target_length>
  755 + <target_precision>-1</target_precision>
  756 + <target_decimal_symbol/>
  757 + <target_grouping_symbol/>
  758 + <target_currency_symbol/>
  759 + <target_null_string/>
  760 + <target_aggregation_type>-</target_aggregation_type>
  761 + </field>
  762 + <field>
  763 + <field_name>all_content</field_name>
  764 + <key_value>2</key_value>
  765 + <target_name>fcno2</target_name>
  766 + <target_type>String</target_type>
  767 + <target_format/>
  768 + <target_length>-1</target_length>
  769 + <target_precision>-1</target_precision>
  770 + <target_decimal_symbol/>
  771 + <target_grouping_symbol/>
  772 + <target_currency_symbol/>
  773 + <target_null_string/>
  774 + <target_aggregation_type>-</target_aggregation_type>
  775 + </field>
  776 + <field>
  777 + <field_name>all_content</field_name>
  778 + <key_value>3</key_value>
  779 + <target_name>fcno3</target_name>
  780 + <target_type>String</target_type>
  781 + <target_format/>
  782 + <target_length>-1</target_length>
  783 + <target_precision>-1</target_precision>
  784 + <target_decimal_symbol/>
  785 + <target_grouping_symbol/>
  786 + <target_currency_symbol/>
  787 + <target_null_string/>
  788 + <target_aggregation_type>-</target_aggregation_type>
  789 + </field>
  790 + <field>
  791 + <field_name>all_content</field_name>
  792 + <key_value>4</key_value>
  793 + <target_name>fcno4</target_name>
  794 + <target_type>String</target_type>
  795 + <target_format/>
  796 + <target_length>-1</target_length>
  797 + <target_precision>-1</target_precision>
  798 + <target_decimal_symbol/>
  799 + <target_grouping_symbol/>
  800 + <target_currency_symbol/>
  801 + <target_null_string/>
  802 + <target_aggregation_type>-</target_aggregation_type>
  803 + </field>
  804 + <field>
  805 + <field_name>all_content</field_name>
  806 + <key_value>5</key_value>
  807 + <target_name>fcno5</target_name>
  808 + <target_type>String</target_type>
  809 + <target_format/>
  810 + <target_length>-1</target_length>
  811 + <target_precision>-1</target_precision>
  812 + <target_decimal_symbol/>
  813 + <target_grouping_symbol/>
  814 + <target_currency_symbol/>
  815 + <target_null_string/>
  816 + <target_aggregation_type>-</target_aggregation_type>
  817 + </field>
  818 + <field>
  819 + <field_name>all_content</field_name>
  820 + <key_value>6</key_value>
  821 + <target_name>fcno6</target_name>
  822 + <target_type>String</target_type>
  823 + <target_format/>
  824 + <target_length>-1</target_length>
  825 + <target_precision>-1</target_precision>
  826 + <target_decimal_symbol/>
  827 + <target_grouping_symbol/>
  828 + <target_currency_symbol/>
  829 + <target_null_string/>
  830 + <target_aggregation_type>-</target_aggregation_type>
  831 + </field>
  832 + <field>
  833 + <field_name>all_content</field_name>
  834 + <key_value>7</key_value>
  835 + <target_name>fcno7</target_name>
  836 + <target_type>String</target_type>
  837 + <target_format/>
  838 + <target_length>-1</target_length>
  839 + <target_precision>-1</target_precision>
  840 + <target_decimal_symbol/>
  841 + <target_grouping_symbol/>
  842 + <target_currency_symbol/>
  843 + <target_null_string/>
  844 + <target_aggregation_type>-</target_aggregation_type>
  845 + </field>
  846 + <field>
  847 + <field_name>all_content</field_name>
  848 + <key_value>8</key_value>
  849 + <target_name>fcno8</target_name>
  850 + <target_type>String</target_type>
  851 + <target_format/>
  852 + <target_length>-1</target_length>
  853 + <target_precision>-1</target_precision>
  854 + <target_decimal_symbol/>
  855 + <target_grouping_symbol/>
  856 + <target_currency_symbol/>
  857 + <target_null_string/>
  858 + <target_aggregation_type>-</target_aggregation_type>
  859 + </field>
  860 + <field>
  861 + <field_name>all_content</field_name>
  862 + <key_value>9</key_value>
  863 + <target_name>fcno9</target_name>
  864 + <target_type>String</target_type>
  865 + <target_format/>
  866 + <target_length>-1</target_length>
  867 + <target_precision>-1</target_precision>
  868 + <target_decimal_symbol/>
  869 + <target_grouping_symbol/>
  870 + <target_currency_symbol/>
  871 + <target_null_string/>
  872 + <target_aggregation_type>-</target_aggregation_type>
  873 + </field>
  874 + <field>
  875 + <field_name>all_content</field_name>
  876 + <key_value>10</key_value>
  877 + <target_name>fcno10</target_name>
  878 + <target_type>String</target_type>
  879 + <target_format/>
  880 + <target_length>-1</target_length>
  881 + <target_precision>-1</target_precision>
  882 + <target_decimal_symbol/>
  883 + <target_grouping_symbol/>
  884 + <target_currency_symbol/>
  885 + <target_null_string/>
  886 + <target_aggregation_type>-</target_aggregation_type>
  887 + </field>
  888 + <field>
  889 + <field_name>all_content</field_name>
  890 + <key_value>11</key_value>
  891 + <target_name>fcno11</target_name>
  892 + <target_type>String</target_type>
  893 + <target_format/>
  894 + <target_length>-1</target_length>
  895 + <target_precision>-1</target_precision>
  896 + <target_decimal_symbol/>
  897 + <target_grouping_symbol/>
  898 + <target_currency_symbol/>
  899 + <target_null_string/>
  900 + <target_aggregation_type>-</target_aggregation_type>
  901 + </field>
  902 + <field>
  903 + <field_name>all_content</field_name>
  904 + <key_value>12</key_value>
  905 + <target_name>fcno12</target_name>
  906 + <target_type>String</target_type>
  907 + <target_format/>
  908 + <target_length>-1</target_length>
  909 + <target_precision>-1</target_precision>
  910 + <target_decimal_symbol/>
  911 + <target_grouping_symbol/>
  912 + <target_currency_symbol/>
  913 + <target_null_string/>
  914 + <target_aggregation_type>-</target_aggregation_type>
  915 + </field>
  916 + <field>
  917 + <field_name>all_content</field_name>
  918 + <key_value>13</key_value>
  919 + <target_name>fcno13</target_name>
  920 + <target_type>String</target_type>
  921 + <target_format/>
  922 + <target_length>-1</target_length>
  923 + <target_precision>-1</target_precision>
  924 + <target_decimal_symbol/>
  925 + <target_grouping_symbol/>
  926 + <target_currency_symbol/>
  927 + <target_null_string/>
  928 + <target_aggregation_type>-</target_aggregation_type>
  929 + </field>
  930 + <field>
  931 + <field_name>all_content</field_name>
  932 + <key_value>14</key_value>
  933 + <target_name>fcno14</target_name>
  934 + <target_type>String</target_type>
  935 + <target_format/>
  936 + <target_length>-1</target_length>
  937 + <target_precision>-1</target_precision>
  938 + <target_decimal_symbol/>
  939 + <target_grouping_symbol/>
  940 + <target_currency_symbol/>
  941 + <target_null_string/>
  942 + <target_aggregation_type>-</target_aggregation_type>
  943 + </field>
  944 + <field>
  945 + <field_name>all_content</field_name>
  946 + <key_value>15</key_value>
  947 + <target_name>fcno15</target_name>
  948 + <target_type>String</target_type>
  949 + <target_format/>
  950 + <target_length>-1</target_length>
  951 + <target_precision>-1</target_precision>
  952 + <target_decimal_symbol/>
  953 + <target_grouping_symbol/>
  954 + <target_currency_symbol/>
  955 + <target_null_string/>
  956 + <target_aggregation_type>-</target_aggregation_type>
  957 + </field>
  958 + <field>
  959 + <field_name>all_content</field_name>
  960 + <key_value>16</key_value>
  961 + <target_name>fcno16</target_name>
  962 + <target_type>String</target_type>
  963 + <target_format/>
  964 + <target_length>-1</target_length>
  965 + <target_precision>-1</target_precision>
  966 + <target_decimal_symbol/>
  967 + <target_grouping_symbol/>
  968 + <target_currency_symbol/>
  969 + <target_null_string/>
  970 + <target_aggregation_type>-</target_aggregation_type>
  971 + </field>
  972 + <field>
  973 + <field_name>all_content</field_name>
  974 + <key_value>17</key_value>
  975 + <target_name>fcno17</target_name>
  976 + <target_type>String</target_type>
  977 + <target_format/>
  978 + <target_length>-1</target_length>
  979 + <target_precision>-1</target_precision>
  980 + <target_decimal_symbol/>
  981 + <target_grouping_symbol/>
  982 + <target_currency_symbol/>
  983 + <target_null_string/>
  984 + <target_aggregation_type>-</target_aggregation_type>
  985 + </field>
  986 + <field>
  987 + <field_name>all_content</field_name>
  988 + <key_value>18</key_value>
  989 + <target_name>fcno18</target_name>
  990 + <target_type>String</target_type>
  991 + <target_format/>
  992 + <target_length>-1</target_length>
  993 + <target_precision>-1</target_precision>
  994 + <target_decimal_symbol/>
  995 + <target_grouping_symbol/>
  996 + <target_currency_symbol/>
  997 + <target_null_string/>
  998 + <target_aggregation_type>-</target_aggregation_type>
  999 + </field>
  1000 + <field>
  1001 + <field_name>all_content</field_name>
  1002 + <key_value>19</key_value>
  1003 + <target_name>fcno19</target_name>
  1004 + <target_type>String</target_type>
  1005 + <target_format/>
  1006 + <target_length>-1</target_length>
  1007 + <target_precision>-1</target_precision>
  1008 + <target_decimal_symbol/>
  1009 + <target_grouping_symbol/>
  1010 + <target_currency_symbol/>
  1011 + <target_null_string/>
  1012 + <target_aggregation_type>-</target_aggregation_type>
  1013 + </field>
  1014 + <field>
  1015 + <field_name>all_content</field_name>
  1016 + <key_value>20</key_value>
  1017 + <target_name>fcno20</target_name>
  1018 + <target_type>String</target_type>
  1019 + <target_format/>
  1020 + <target_length>-1</target_length>
  1021 + <target_precision>-1</target_precision>
  1022 + <target_decimal_symbol/>
  1023 + <target_grouping_symbol/>
  1024 + <target_currency_symbol/>
  1025 + <target_null_string/>
  1026 + <target_aggregation_type>-</target_aggregation_type>
  1027 + </field>
  1028 + <field>
  1029 + <field_name>all_content</field_name>
  1030 + <key_value>21</key_value>
  1031 + <target_name>fcno21</target_name>
  1032 + <target_type>String</target_type>
  1033 + <target_format/>
  1034 + <target_length>-1</target_length>
  1035 + <target_precision>-1</target_precision>
  1036 + <target_decimal_symbol/>
  1037 + <target_grouping_symbol/>
  1038 + <target_currency_symbol/>
  1039 + <target_null_string/>
  1040 + <target_aggregation_type>-</target_aggregation_type>
  1041 + </field>
  1042 + <field>
  1043 + <field_name>all_content</field_name>
  1044 + <key_value>22</key_value>
  1045 + <target_name>fcno22</target_name>
  1046 + <target_type>String</target_type>
  1047 + <target_format/>
  1048 + <target_length>-1</target_length>
  1049 + <target_precision>-1</target_precision>
  1050 + <target_decimal_symbol/>
  1051 + <target_grouping_symbol/>
  1052 + <target_currency_symbol/>
  1053 + <target_null_string/>
  1054 + <target_aggregation_type>-</target_aggregation_type>
  1055 + </field>
  1056 + <field>
  1057 + <field_name>all_content</field_name>
  1058 + <key_value>23</key_value>
  1059 + <target_name>fcno23</target_name>
  1060 + <target_type>String</target_type>
  1061 + <target_format/>
  1062 + <target_length>-1</target_length>
  1063 + <target_precision>-1</target_precision>
  1064 + <target_decimal_symbol/>
  1065 + <target_grouping_symbol/>
  1066 + <target_currency_symbol/>
  1067 + <target_null_string/>
  1068 + <target_aggregation_type>-</target_aggregation_type>
  1069 + </field>
  1070 + <field>
  1071 + <field_name>all_content</field_name>
  1072 + <key_value>24</key_value>
  1073 + <target_name>fcno24</target_name>
  1074 + <target_type>String</target_type>
  1075 + <target_format/>
  1076 + <target_length>-1</target_length>
  1077 + <target_precision>-1</target_precision>
  1078 + <target_decimal_symbol/>
  1079 + <target_grouping_symbol/>
  1080 + <target_currency_symbol/>
  1081 + <target_null_string/>
  1082 + <target_aggregation_type>-</target_aggregation_type>
  1083 + </field>
  1084 + <field>
  1085 + <field_name>all_content</field_name>
  1086 + <key_value>25</key_value>
  1087 + <target_name>fcno25</target_name>
  1088 + <target_type>String</target_type>
  1089 + <target_format/>
  1090 + <target_length>-1</target_length>
  1091 + <target_precision>-1</target_precision>
  1092 + <target_decimal_symbol/>
  1093 + <target_grouping_symbol/>
  1094 + <target_currency_symbol/>
  1095 + <target_null_string/>
  1096 + <target_aggregation_type>-</target_aggregation_type>
  1097 + </field>
  1098 + <field>
  1099 + <field_name>all_content</field_name>
  1100 + <key_value>26</key_value>
  1101 + <target_name>fcno26</target_name>
  1102 + <target_type>String</target_type>
  1103 + <target_format/>
  1104 + <target_length>-1</target_length>
  1105 + <target_precision>-1</target_precision>
  1106 + <target_decimal_symbol/>
  1107 + <target_grouping_symbol/>
  1108 + <target_currency_symbol/>
  1109 + <target_null_string/>
  1110 + <target_aggregation_type>-</target_aggregation_type>
  1111 + </field>
  1112 + <field>
  1113 + <field_name>all_content</field_name>
  1114 + <key_value>27</key_value>
  1115 + <target_name>fcno27</target_name>
  1116 + <target_type>String</target_type>
  1117 + <target_format/>
  1118 + <target_length>-1</target_length>
  1119 + <target_precision>-1</target_precision>
  1120 + <target_decimal_symbol/>
  1121 + <target_grouping_symbol/>
  1122 + <target_currency_symbol/>
  1123 + <target_null_string/>
  1124 + <target_aggregation_type>-</target_aggregation_type>
  1125 + </field>
  1126 + <field>
  1127 + <field_name>all_content</field_name>
  1128 + <key_value>28</key_value>
  1129 + <target_name>fcno28</target_name>
  1130 + <target_type>String</target_type>
  1131 + <target_format/>
  1132 + <target_length>-1</target_length>
  1133 + <target_precision>-1</target_precision>
  1134 + <target_decimal_symbol/>
  1135 + <target_grouping_symbol/>
  1136 + <target_currency_symbol/>
  1137 + <target_null_string/>
  1138 + <target_aggregation_type>-</target_aggregation_type>
  1139 + </field>
  1140 + <field>
  1141 + <field_name>all_content</field_name>
  1142 + <key_value>29</key_value>
  1143 + <target_name>fcno29</target_name>
  1144 + <target_type>String</target_type>
  1145 + <target_format/>
  1146 + <target_length>-1</target_length>
  1147 + <target_precision>-1</target_precision>
  1148 + <target_decimal_symbol/>
  1149 + <target_grouping_symbol/>
  1150 + <target_currency_symbol/>
  1151 + <target_null_string/>
  1152 + <target_aggregation_type>-</target_aggregation_type>
  1153 + </field>
  1154 + <field>
  1155 + <field_name>all_content</field_name>
  1156 + <key_value>30</key_value>
  1157 + <target_name>fcno30</target_name>
  1158 + <target_type>String</target_type>
  1159 + <target_format/>
  1160 + <target_length>-1</target_length>
  1161 + <target_precision>-1</target_precision>
  1162 + <target_decimal_symbol/>
  1163 + <target_grouping_symbol/>
  1164 + <target_currency_symbol/>
  1165 + <target_null_string/>
  1166 + <target_aggregation_type>-</target_aggregation_type>
  1167 + </field>
  1168 + <field>
  1169 + <field_name>all_content</field_name>
  1170 + <key_value>31</key_value>
  1171 + <target_name>fcno31</target_name>
  1172 + <target_type>String</target_type>
  1173 + <target_format/>
  1174 + <target_length>-1</target_length>
  1175 + <target_precision>-1</target_precision>
  1176 + <target_decimal_symbol/>
  1177 + <target_grouping_symbol/>
  1178 + <target_currency_symbol/>
  1179 + <target_null_string/>
  1180 + <target_aggregation_type>-</target_aggregation_type>
  1181 + </field>
  1182 + <field>
  1183 + <field_name>all_content</field_name>
  1184 + <key_value>32</key_value>
  1185 + <target_name>fcno32</target_name>
  1186 + <target_type>String</target_type>
  1187 + <target_format/>
  1188 + <target_length>-1</target_length>
  1189 + <target_precision>-1</target_precision>
  1190 + <target_decimal_symbol/>
  1191 + <target_grouping_symbol/>
  1192 + <target_currency_symbol/>
  1193 + <target_null_string/>
  1194 + <target_aggregation_type>-</target_aggregation_type>
  1195 + </field>
  1196 + <field>
  1197 + <field_name>all_content</field_name>
  1198 + <key_value>33</key_value>
  1199 + <target_name>fcno33</target_name>
  1200 + <target_type>String</target_type>
  1201 + <target_format/>
  1202 + <target_length>-1</target_length>
  1203 + <target_precision>-1</target_precision>
  1204 + <target_decimal_symbol/>
  1205 + <target_grouping_symbol/>
  1206 + <target_currency_symbol/>
  1207 + <target_null_string/>
  1208 + <target_aggregation_type>-</target_aggregation_type>
  1209 + </field>
  1210 + <field>
  1211 + <field_name>all_content</field_name>
  1212 + <key_value>34</key_value>
  1213 + <target_name>fcno34</target_name>
  1214 + <target_type>String</target_type>
  1215 + <target_format/>
  1216 + <target_length>-1</target_length>
  1217 + <target_precision>-1</target_precision>
  1218 + <target_decimal_symbol/>
  1219 + <target_grouping_symbol/>
  1220 + <target_currency_symbol/>
  1221 + <target_null_string/>
  1222 + <target_aggregation_type>-</target_aggregation_type>
  1223 + </field>
  1224 + <field>
  1225 + <field_name>all_content</field_name>
  1226 + <key_value>35</key_value>
  1227 + <target_name>fcno35</target_name>
  1228 + <target_type>String</target_type>
  1229 + <target_format/>
  1230 + <target_length>-1</target_length>
  1231 + <target_precision>-1</target_precision>
  1232 + <target_decimal_symbol/>
  1233 + <target_grouping_symbol/>
  1234 + <target_currency_symbol/>
  1235 + <target_null_string/>
  1236 + <target_aggregation_type>-</target_aggregation_type>
  1237 + </field>
  1238 + <field>
  1239 + <field_name>all_content</field_name>
  1240 + <key_value>36</key_value>
  1241 + <target_name>fcno36</target_name>
  1242 + <target_type>String</target_type>
  1243 + <target_format/>
  1244 + <target_length>-1</target_length>
  1245 + <target_precision>-1</target_precision>
  1246 + <target_decimal_symbol/>
  1247 + <target_grouping_symbol/>
  1248 + <target_currency_symbol/>
  1249 + <target_null_string/>
  1250 + <target_aggregation_type>-</target_aggregation_type>
  1251 + </field>
  1252 + <field>
  1253 + <field_name>all_content</field_name>
  1254 + <key_value>37</key_value>
  1255 + <target_name>fcno37</target_name>
  1256 + <target_type>String</target_type>
  1257 + <target_format/>
  1258 + <target_length>-1</target_length>
  1259 + <target_precision>-1</target_precision>
  1260 + <target_decimal_symbol/>
  1261 + <target_grouping_symbol/>
  1262 + <target_currency_symbol/>
  1263 + <target_null_string/>
  1264 + <target_aggregation_type>-</target_aggregation_type>
  1265 + </field>
  1266 + <field>
  1267 + <field_name>all_content</field_name>
  1268 + <key_value>38</key_value>
  1269 + <target_name>fcno38</target_name>
  1270 + <target_type>String</target_type>
  1271 + <target_format/>
  1272 + <target_length>-1</target_length>
  1273 + <target_precision>-1</target_precision>
  1274 + <target_decimal_symbol/>
  1275 + <target_grouping_symbol/>
  1276 + <target_currency_symbol/>
  1277 + <target_null_string/>
  1278 + <target_aggregation_type>-</target_aggregation_type>
  1279 + </field>
  1280 + <field>
  1281 + <field_name>all_content</field_name>
  1282 + <key_value>39</key_value>
  1283 + <target_name>fcno39</target_name>
  1284 + <target_type>String</target_type>
  1285 + <target_format/>
  1286 + <target_length>-1</target_length>
  1287 + <target_precision>-1</target_precision>
  1288 + <target_decimal_symbol/>
  1289 + <target_grouping_symbol/>
  1290 + <target_currency_symbol/>
  1291 + <target_null_string/>
  1292 + <target_aggregation_type>-</target_aggregation_type>
  1293 + </field>
  1294 + <field>
  1295 + <field_name>all_content</field_name>
  1296 + <key_value>40</key_value>
  1297 + <target_name>fcno40</target_name>
  1298 + <target_type>String</target_type>
  1299 + <target_format/>
  1300 + <target_length>-1</target_length>
  1301 + <target_precision>-1</target_precision>
  1302 + <target_decimal_symbol/>
  1303 + <target_grouping_symbol/>
  1304 + <target_currency_symbol/>
  1305 + <target_null_string/>
  1306 + <target_aggregation_type>-</target_aggregation_type>
  1307 + </field>
  1308 + <field>
  1309 + <field_name>all_content</field_name>
  1310 + <key_value>41</key_value>
  1311 + <target_name>fcno41</target_name>
  1312 + <target_type>String</target_type>
  1313 + <target_format/>
  1314 + <target_length>-1</target_length>
  1315 + <target_precision>-1</target_precision>
  1316 + <target_decimal_symbol/>
  1317 + <target_grouping_symbol/>
  1318 + <target_currency_symbol/>
  1319 + <target_null_string/>
  1320 + <target_aggregation_type>-</target_aggregation_type>
  1321 + </field>
  1322 + <field>
  1323 + <field_name>all_content</field_name>
  1324 + <key_value>42</key_value>
  1325 + <target_name>fcno42</target_name>
  1326 + <target_type>String</target_type>
  1327 + <target_format/>
  1328 + <target_length>-1</target_length>
  1329 + <target_precision>-1</target_precision>
  1330 + <target_decimal_symbol/>
  1331 + <target_grouping_symbol/>
  1332 + <target_currency_symbol/>
  1333 + <target_null_string/>
  1334 + <target_aggregation_type>-</target_aggregation_type>
  1335 + </field>
  1336 + <field>
  1337 + <field_name>all_content</field_name>
  1338 + <key_value>43</key_value>
  1339 + <target_name>fcno43</target_name>
  1340 + <target_type>String</target_type>
  1341 + <target_format/>
  1342 + <target_length>-1</target_length>
  1343 + <target_precision>-1</target_precision>
  1344 + <target_decimal_symbol/>
  1345 + <target_grouping_symbol/>
  1346 + <target_currency_symbol/>
  1347 + <target_null_string/>
  1348 + <target_aggregation_type>-</target_aggregation_type>
  1349 + </field>
  1350 + <field>
  1351 + <field_name>all_content</field_name>
  1352 + <key_value>44</key_value>
  1353 + <target_name>fcno44</target_name>
  1354 + <target_type>String</target_type>
  1355 + <target_format/>
  1356 + <target_length>-1</target_length>
  1357 + <target_precision>-1</target_precision>
  1358 + <target_decimal_symbol/>
  1359 + <target_grouping_symbol/>
  1360 + <target_currency_symbol/>
  1361 + <target_null_string/>
  1362 + <target_aggregation_type>-</target_aggregation_type>
  1363 + </field>
  1364 + <field>
  1365 + <field_name>all_content</field_name>
  1366 + <key_value>45</key_value>
  1367 + <target_name>fcno45</target_name>
  1368 + <target_type>String</target_type>
  1369 + <target_format/>
  1370 + <target_length>-1</target_length>
  1371 + <target_precision>-1</target_precision>
  1372 + <target_decimal_symbol/>
  1373 + <target_grouping_symbol/>
  1374 + <target_currency_symbol/>
  1375 + <target_null_string/>
  1376 + <target_aggregation_type>-</target_aggregation_type>
  1377 + </field>
  1378 + <field>
  1379 + <field_name>all_content</field_name>
  1380 + <key_value>46</key_value>
  1381 + <target_name>fcno46</target_name>
  1382 + <target_type>String</target_type>
  1383 + <target_format/>
  1384 + <target_length>-1</target_length>
  1385 + <target_precision>-1</target_precision>
  1386 + <target_decimal_symbol/>
  1387 + <target_grouping_symbol/>
  1388 + <target_currency_symbol/>
  1389 + <target_null_string/>
  1390 + <target_aggregation_type>-</target_aggregation_type>
  1391 + </field>
  1392 + <field>
  1393 + <field_name>all_content</field_name>
  1394 + <key_value>47</key_value>
  1395 + <target_name>fcno47</target_name>
  1396 + <target_type>String</target_type>
  1397 + <target_format/>
  1398 + <target_length>-1</target_length>
  1399 + <target_precision>-1</target_precision>
  1400 + <target_decimal_symbol/>
  1401 + <target_grouping_symbol/>
  1402 + <target_currency_symbol/>
  1403 + <target_null_string/>
  1404 + <target_aggregation_type>-</target_aggregation_type>
  1405 + </field>
  1406 + <field>
  1407 + <field_name>all_content</field_name>
  1408 + <key_value>48</key_value>
  1409 + <target_name>fcno48</target_name>
  1410 + <target_type>String</target_type>
  1411 + <target_format/>
  1412 + <target_length>-1</target_length>
  1413 + <target_precision>-1</target_precision>
  1414 + <target_decimal_symbol/>
  1415 + <target_grouping_symbol/>
  1416 + <target_currency_symbol/>
  1417 + <target_null_string/>
  1418 + <target_aggregation_type>-</target_aggregation_type>
  1419 + </field>
  1420 + <field>
  1421 + <field_name>all_content</field_name>
  1422 + <key_value>49</key_value>
  1423 + <target_name>fcno49</target_name>
  1424 + <target_type>String</target_type>
  1425 + <target_format/>
  1426 + <target_length>-1</target_length>
  1427 + <target_precision>-1</target_precision>
  1428 + <target_decimal_symbol/>
  1429 + <target_grouping_symbol/>
  1430 + <target_currency_symbol/>
  1431 + <target_null_string/>
  1432 + <target_aggregation_type>-</target_aggregation_type>
  1433 + </field>
  1434 + <field>
  1435 + <field_name>all_content</field_name>
  1436 + <key_value>50</key_value>
  1437 + <target_name>fcno50</target_name>
  1438 + <target_type>String</target_type>
  1439 + <target_format/>
  1440 + <target_length>-1</target_length>
  1441 + <target_precision>-1</target_precision>
  1442 + <target_decimal_symbol/>
  1443 + <target_grouping_symbol/>
  1444 + <target_currency_symbol/>
  1445 + <target_null_string/>
  1446 + <target_aggregation_type>-</target_aggregation_type>
  1447 + </field>
  1448 + <field>
  1449 + <field_name>all_content</field_name>
  1450 + <key_value>51</key_value>
  1451 + <target_name>fcno51</target_name>
  1452 + <target_type>String</target_type>
  1453 + <target_format/>
  1454 + <target_length>-1</target_length>
  1455 + <target_precision>-1</target_precision>
  1456 + <target_decimal_symbol/>
  1457 + <target_grouping_symbol/>
  1458 + <target_currency_symbol/>
  1459 + <target_null_string/>
  1460 + <target_aggregation_type>-</target_aggregation_type>
  1461 + </field>
  1462 + <field>
  1463 + <field_name>all_content</field_name>
  1464 + <key_value>52</key_value>
  1465 + <target_name>fcno52</target_name>
  1466 + <target_type>String</target_type>
  1467 + <target_format/>
  1468 + <target_length>-1</target_length>
  1469 + <target_precision>-1</target_precision>
  1470 + <target_decimal_symbol/>
  1471 + <target_grouping_symbol/>
  1472 + <target_currency_symbol/>
  1473 + <target_null_string/>
  1474 + <target_aggregation_type>-</target_aggregation_type>
  1475 + </field>
  1476 + <field>
  1477 + <field_name>all_content</field_name>
  1478 + <key_value>53</key_value>
  1479 + <target_name>fcno53</target_name>
  1480 + <target_type>String</target_type>
  1481 + <target_format/>
  1482 + <target_length>-1</target_length>
  1483 + <target_precision>-1</target_precision>
  1484 + <target_decimal_symbol/>
  1485 + <target_grouping_symbol/>
  1486 + <target_currency_symbol/>
  1487 + <target_null_string/>
  1488 + <target_aggregation_type>-</target_aggregation_type>
  1489 + </field>
  1490 + <field>
  1491 + <field_name>all_content</field_name>
  1492 + <key_value>54</key_value>
  1493 + <target_name>fcno54</target_name>
  1494 + <target_type>String</target_type>
  1495 + <target_format/>
  1496 + <target_length>-1</target_length>
  1497 + <target_precision>-1</target_precision>
  1498 + <target_decimal_symbol/>
  1499 + <target_grouping_symbol/>
  1500 + <target_currency_symbol/>
  1501 + <target_null_string/>
  1502 + <target_aggregation_type>-</target_aggregation_type>
  1503 + </field>
  1504 + <field>
  1505 + <field_name>all_content</field_name>
  1506 + <key_value>55</key_value>
  1507 + <target_name>fcno55</target_name>
  1508 + <target_type>String</target_type>
  1509 + <target_format/>
  1510 + <target_length>-1</target_length>
  1511 + <target_precision>-1</target_precision>
  1512 + <target_decimal_symbol/>
  1513 + <target_grouping_symbol/>
  1514 + <target_currency_symbol/>
  1515 + <target_null_string/>
  1516 + <target_aggregation_type>-</target_aggregation_type>
  1517 + </field>
  1518 + <field>
  1519 + <field_name>all_content</field_name>
  1520 + <key_value>56</key_value>
  1521 + <target_name>fcno56</target_name>
  1522 + <target_type>String</target_type>
  1523 + <target_format/>
  1524 + <target_length>-1</target_length>
  1525 + <target_precision>-1</target_precision>
  1526 + <target_decimal_symbol/>
  1527 + <target_grouping_symbol/>
  1528 + <target_currency_symbol/>
  1529 + <target_null_string/>
  1530 + <target_aggregation_type>-</target_aggregation_type>
  1531 + </field>
  1532 + <field>
  1533 + <field_name>all_content</field_name>
  1534 + <key_value>57</key_value>
  1535 + <target_name>fcno57</target_name>
  1536 + <target_type>String</target_type>
  1537 + <target_format/>
  1538 + <target_length>-1</target_length>
  1539 + <target_precision>-1</target_precision>
  1540 + <target_decimal_symbol/>
  1541 + <target_grouping_symbol/>
  1542 + <target_currency_symbol/>
  1543 + <target_null_string/>
  1544 + <target_aggregation_type>-</target_aggregation_type>
  1545 + </field>
  1546 + <field>
  1547 + <field_name>all_content</field_name>
  1548 + <key_value>58</key_value>
  1549 + <target_name>fcno58</target_name>
  1550 + <target_type>String</target_type>
  1551 + <target_format/>
  1552 + <target_length>-1</target_length>
  1553 + <target_precision>-1</target_precision>
  1554 + <target_decimal_symbol/>
  1555 + <target_grouping_symbol/>
  1556 + <target_currency_symbol/>
  1557 + <target_null_string/>
  1558 + <target_aggregation_type>-</target_aggregation_type>
  1559 + </field>
  1560 + <field>
  1561 + <field_name>all_content</field_name>
  1562 + <key_value>59</key_value>
  1563 + <target_name>fcno59</target_name>
  1564 + <target_type>String</target_type>
  1565 + <target_format/>
  1566 + <target_length>-1</target_length>
  1567 + <target_precision>-1</target_precision>
  1568 + <target_decimal_symbol/>
  1569 + <target_grouping_symbol/>
  1570 + <target_currency_symbol/>
  1571 + <target_null_string/>
  1572 + <target_aggregation_type>-</target_aggregation_type>
  1573 + </field>
  1574 + <field>
  1575 + <field_name>all_content</field_name>
  1576 + <key_value>60</key_value>
  1577 + <target_name>fcno60</target_name>
  1578 + <target_type>String</target_type>
  1579 + <target_format/>
  1580 + <target_length>-1</target_length>
  1581 + <target_precision>-1</target_precision>
  1582 + <target_decimal_symbol/>
  1583 + <target_grouping_symbol/>
  1584 + <target_currency_symbol/>
  1585 + <target_null_string/>
  1586 + <target_aggregation_type>-</target_aggregation_type>
  1587 + </field>
  1588 + <field>
  1589 + <field_name>all_content</field_name>
  1590 + <key_value>61</key_value>
  1591 + <target_name>fcno61</target_name>
  1592 + <target_type>String</target_type>
  1593 + <target_format/>
  1594 + <target_length>-1</target_length>
  1595 + <target_precision>-1</target_precision>
  1596 + <target_decimal_symbol/>
  1597 + <target_grouping_symbol/>
  1598 + <target_currency_symbol/>
  1599 + <target_null_string/>
  1600 + <target_aggregation_type>-</target_aggregation_type>
  1601 + </field>
  1602 + <field>
  1603 + <field_name>all_content</field_name>
  1604 + <key_value>62</key_value>
  1605 + <target_name>fcno62</target_name>
  1606 + <target_type>String</target_type>
  1607 + <target_format/>
  1608 + <target_length>-1</target_length>
  1609 + <target_precision>-1</target_precision>
  1610 + <target_decimal_symbol/>
  1611 + <target_grouping_symbol/>
  1612 + <target_currency_symbol/>
  1613 + <target_null_string/>
  1614 + <target_aggregation_type>-</target_aggregation_type>
  1615 + </field>
  1616 + <field>
  1617 + <field_name>all_content</field_name>
  1618 + <key_value>63</key_value>
  1619 + <target_name>fcno63</target_name>
  1620 + <target_type>String</target_type>
  1621 + <target_format/>
  1622 + <target_length>-1</target_length>
  1623 + <target_precision>-1</target_precision>
  1624 + <target_decimal_symbol/>
  1625 + <target_grouping_symbol/>
  1626 + <target_currency_symbol/>
  1627 + <target_null_string/>
  1628 + <target_aggregation_type>-</target_aggregation_type>
  1629 + </field>
  1630 + <field>
  1631 + <field_name>all_content</field_name>
  1632 + <key_value>64</key_value>
  1633 + <target_name>fcno64</target_name>
  1634 + <target_type>String</target_type>
  1635 + <target_format/>
  1636 + <target_length>-1</target_length>
  1637 + <target_precision>-1</target_precision>
  1638 + <target_decimal_symbol/>
  1639 + <target_grouping_symbol/>
  1640 + <target_currency_symbol/>
  1641 + <target_null_string/>
  1642 + <target_aggregation_type>-</target_aggregation_type>
  1643 + </field>
  1644 + <field>
  1645 + <field_name>all_content</field_name>
  1646 + <key_value>65</key_value>
  1647 + <target_name>fcno65</target_name>
  1648 + <target_type>String</target_type>
  1649 + <target_format/>
  1650 + <target_length>-1</target_length>
  1651 + <target_precision>-1</target_precision>
  1652 + <target_decimal_symbol/>
  1653 + <target_grouping_symbol/>
  1654 + <target_currency_symbol/>
  1655 + <target_null_string/>
  1656 + <target_aggregation_type>-</target_aggregation_type>
  1657 + </field>
  1658 + <field>
  1659 + <field_name>all_content</field_name>
  1660 + <key_value>66</key_value>
  1661 + <target_name>fcno66</target_name>
  1662 + <target_type>String</target_type>
  1663 + <target_format/>
  1664 + <target_length>-1</target_length>
  1665 + <target_precision>-1</target_precision>
  1666 + <target_decimal_symbol/>
  1667 + <target_grouping_symbol/>
  1668 + <target_currency_symbol/>
  1669 + <target_null_string/>
  1670 + <target_aggregation_type>-</target_aggregation_type>
  1671 + </field>
  1672 + <field>
  1673 + <field_name>all_content</field_name>
  1674 + <key_value>67</key_value>
  1675 + <target_name>fcno67</target_name>
  1676 + <target_type>String</target_type>
  1677 + <target_format/>
  1678 + <target_length>-1</target_length>
  1679 + <target_precision>-1</target_precision>
  1680 + <target_decimal_symbol/>
  1681 + <target_grouping_symbol/>
  1682 + <target_currency_symbol/>
  1683 + <target_null_string/>
  1684 + <target_aggregation_type>-</target_aggregation_type>
  1685 + </field>
  1686 + <field>
  1687 + <field_name>all_content</field_name>
  1688 + <key_value>68</key_value>
  1689 + <target_name>fcno68</target_name>
  1690 + <target_type>String</target_type>
  1691 + <target_format/>
  1692 + <target_length>-1</target_length>
  1693 + <target_precision>-1</target_precision>
  1694 + <target_decimal_symbol/>
  1695 + <target_grouping_symbol/>
  1696 + <target_currency_symbol/>
  1697 + <target_null_string/>
  1698 + <target_aggregation_type>-</target_aggregation_type>
  1699 + </field>
  1700 + <field>
  1701 + <field_name>all_content</field_name>
  1702 + <key_value>69</key_value>
  1703 + <target_name>fcno69</target_name>
  1704 + <target_type>String</target_type>
  1705 + <target_format/>
  1706 + <target_length>-1</target_length>
  1707 + <target_precision>-1</target_precision>
  1708 + <target_decimal_symbol/>
  1709 + <target_grouping_symbol/>
  1710 + <target_currency_symbol/>
  1711 + <target_null_string/>
  1712 + <target_aggregation_type>-</target_aggregation_type>
  1713 + </field>
  1714 + <field>
  1715 + <field_name>all_content</field_name>
  1716 + <key_value>70</key_value>
  1717 + <target_name>fcno70</target_name>
  1718 + <target_type>String</target_type>
  1719 + <target_format/>
  1720 + <target_length>-1</target_length>
  1721 + <target_precision>-1</target_precision>
  1722 + <target_decimal_symbol/>
  1723 + <target_grouping_symbol/>
  1724 + <target_currency_symbol/>
  1725 + <target_null_string/>
  1726 + <target_aggregation_type>-</target_aggregation_type>
  1727 + </field>
  1728 + </fields>
  1729 + <cluster_schema/>
  1730 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1731 + <xloc>683</xloc>
  1732 + <yloc>184</yloc>
  1733 + <draw>Y</draw>
  1734 + </GUI>
  1735 + </step>
  1736 +
  1737 + <step>
  1738 + <name>&#x53bb;&#x9664;&#x5b57;&#x6bb5;</name>
  1739 + <type>SelectValues</type>
  1740 + <description/>
  1741 + <distribute>N</distribute>
  1742 + <custom_distribution/>
  1743 + <copies>1</copies>
  1744 + <partitioning>
  1745 + <method>none</method>
  1746 + <schema_name/>
  1747 + </partitioning>
  1748 + <fields> <field> <name>lp</name>
  1749 + <rename/>
  1750 + <length>-2</length>
  1751 + <precision>-2</precision>
  1752 + </field> <field> <name>fcno1</name>
  1753 + <rename/>
  1754 + <length>-2</length>
  1755 + <precision>-2</precision>
  1756 + </field> <field> <name>fcno2</name>
  1757 + <rename/>
  1758 + <length>-2</length>
  1759 + <precision>-2</precision>
  1760 + </field> <field> <name>fcno3</name>
  1761 + <rename/>
  1762 + <length>-2</length>
  1763 + <precision>-2</precision>
  1764 + </field> <field> <name>fcno4</name>
  1765 + <rename/>
  1766 + <length>-2</length>
  1767 + <precision>-2</precision>
  1768 + </field> <field> <name>fcno5</name>
  1769 + <rename/>
  1770 + <length>-2</length>
  1771 + <precision>-2</precision>
  1772 + </field> <field> <name>fcno6</name>
  1773 + <rename/>
  1774 + <length>-2</length>
  1775 + <precision>-2</precision>
  1776 + </field> <field> <name>fcno7</name>
  1777 + <rename/>
  1778 + <length>-2</length>
  1779 + <precision>-2</precision>
  1780 + </field> <field> <name>fcno8</name>
  1781 + <rename/>
  1782 + <length>-2</length>
  1783 + <precision>-2</precision>
  1784 + </field> <field> <name>fcno9</name>
  1785 + <rename/>
  1786 + <length>-2</length>
  1787 + <precision>-2</precision>
  1788 + </field> <field> <name>fcno10</name>
  1789 + <rename/>
  1790 + <length>-2</length>
  1791 + <precision>-2</precision>
  1792 + </field> <field> <name>fcno11</name>
  1793 + <rename/>
  1794 + <length>-2</length>
  1795 + <precision>-2</precision>
  1796 + </field> <field> <name>fcno12</name>
  1797 + <rename/>
  1798 + <length>-2</length>
  1799 + <precision>-2</precision>
  1800 + </field> <field> <name>fcno13</name>
  1801 + <rename/>
  1802 + <length>-2</length>
  1803 + <precision>-2</precision>
  1804 + </field> <field> <name>fcno14</name>
  1805 + <rename/>
  1806 + <length>-2</length>
  1807 + <precision>-2</precision>
  1808 + </field> <field> <name>fcno15</name>
  1809 + <rename/>
  1810 + <length>-2</length>
  1811 + <precision>-2</precision>
  1812 + </field> <field> <name>fcno16</name>
  1813 + <rename/>
  1814 + <length>-2</length>
  1815 + <precision>-2</precision>
  1816 + </field> <field> <name>fcno17</name>
  1817 + <rename/>
  1818 + <length>-2</length>
  1819 + <precision>-2</precision>
  1820 + </field> <field> <name>fcno18</name>
  1821 + <rename/>
  1822 + <length>-2</length>
  1823 + <precision>-2</precision>
  1824 + </field> <field> <name>fcno19</name>
  1825 + <rename/>
  1826 + <length>-2</length>
  1827 + <precision>-2</precision>
  1828 + </field> <field> <name>fcno20</name>
  1829 + <rename/>
  1830 + <length>-2</length>
  1831 + <precision>-2</precision>
  1832 + </field> <field> <name>fcno21</name>
  1833 + <rename/>
  1834 + <length>-2</length>
  1835 + <precision>-2</precision>
  1836 + </field> <field> <name>fcno22</name>
  1837 + <rename/>
  1838 + <length>-2</length>
  1839 + <precision>-2</precision>
  1840 + </field> <field> <name>fcno23</name>
  1841 + <rename/>
  1842 + <length>-2</length>
  1843 + <precision>-2</precision>
  1844 + </field> <field> <name>fcno24</name>
  1845 + <rename/>
  1846 + <length>-2</length>
  1847 + <precision>-2</precision>
  1848 + </field> <field> <name>fcno25</name>
  1849 + <rename/>
  1850 + <length>-2</length>
  1851 + <precision>-2</precision>
  1852 + </field> <field> <name>fcno26</name>
  1853 + <rename/>
  1854 + <length>-2</length>
  1855 + <precision>-2</precision>
  1856 + </field> <field> <name>fcno27</name>
  1857 + <rename/>
  1858 + <length>-2</length>
  1859 + <precision>-2</precision>
  1860 + </field> <field> <name>fcno28</name>
  1861 + <rename/>
  1862 + <length>-2</length>
  1863 + <precision>-2</precision>
  1864 + </field> <field> <name>fcno29</name>
  1865 + <rename/>
  1866 + <length>-2</length>
  1867 + <precision>-2</precision>
  1868 + </field> <field> <name>fcno30</name>
  1869 + <rename/>
  1870 + <length>-2</length>
  1871 + <precision>-2</precision>
  1872 + </field> <field> <name>fcno31</name>
  1873 + <rename/>
  1874 + <length>-2</length>
  1875 + <precision>-2</precision>
  1876 + </field> <field> <name>fcno32</name>
  1877 + <rename/>
  1878 + <length>-2</length>
  1879 + <precision>-2</precision>
  1880 + </field> <field> <name>fcno33</name>
  1881 + <rename/>
  1882 + <length>-2</length>
  1883 + <precision>-2</precision>
  1884 + </field> <field> <name>fcno34</name>
  1885 + <rename/>
  1886 + <length>-2</length>
  1887 + <precision>-2</precision>
  1888 + </field> <field> <name>fcno35</name>
  1889 + <rename/>
  1890 + <length>-2</length>
  1891 + <precision>-2</precision>
  1892 + </field> <field> <name>fcno36</name>
  1893 + <rename/>
  1894 + <length>-2</length>
  1895 + <precision>-2</precision>
  1896 + </field> <field> <name>fcno37</name>
  1897 + <rename/>
  1898 + <length>-2</length>
  1899 + <precision>-2</precision>
  1900 + </field> <field> <name>fcno38</name>
  1901 + <rename/>
  1902 + <length>-2</length>
  1903 + <precision>-2</precision>
  1904 + </field> <field> <name>fcno39</name>
  1905 + <rename/>
  1906 + <length>-2</length>
  1907 + <precision>-2</precision>
  1908 + </field> <field> <name>fcno40</name>
  1909 + <rename/>
  1910 + <length>-2</length>
  1911 + <precision>-2</precision>
  1912 + </field> <field> <name>fcno41</name>
  1913 + <rename/>
  1914 + <length>-2</length>
  1915 + <precision>-2</precision>
  1916 + </field> <field> <name>fcno42</name>
  1917 + <rename/>
  1918 + <length>-2</length>
  1919 + <precision>-2</precision>
  1920 + </field> <field> <name>fcno43</name>
  1921 + <rename/>
  1922 + <length>-2</length>
  1923 + <precision>-2</precision>
  1924 + </field> <field> <name>fcno44</name>
  1925 + <rename/>
  1926 + <length>-2</length>
  1927 + <precision>-2</precision>
  1928 + </field> <field> <name>fcno45</name>
  1929 + <rename/>
  1930 + <length>-2</length>
  1931 + <precision>-2</precision>
  1932 + </field> <field> <name>fcno46</name>
  1933 + <rename/>
  1934 + <length>-2</length>
  1935 + <precision>-2</precision>
  1936 + </field> <field> <name>fcno47</name>
  1937 + <rename/>
  1938 + <length>-2</length>
  1939 + <precision>-2</precision>
  1940 + </field> <field> <name>fcno48</name>
  1941 + <rename/>
  1942 + <length>-2</length>
  1943 + <precision>-2</precision>
  1944 + </field> <field> <name>fcno49</name>
  1945 + <rename/>
  1946 + <length>-2</length>
  1947 + <precision>-2</precision>
  1948 + </field> <field> <name>fcno50</name>
  1949 + <rename/>
  1950 + <length>-2</length>
  1951 + <precision>-2</precision>
  1952 + </field> <field> <name>fcno51</name>
  1953 + <rename/>
  1954 + <length>-2</length>
  1955 + <precision>-2</precision>
  1956 + </field> <field> <name>fcno52</name>
  1957 + <rename/>
  1958 + <length>-2</length>
  1959 + <precision>-2</precision>
  1960 + </field> <field> <name>fcno53</name>
  1961 + <rename/>
  1962 + <length>-2</length>
  1963 + <precision>-2</precision>
  1964 + </field> <field> <name>fcno54</name>
  1965 + <rename/>
  1966 + <length>-2</length>
  1967 + <precision>-2</precision>
  1968 + </field> <field> <name>fcno55</name>
  1969 + <rename/>
  1970 + <length>-2</length>
  1971 + <precision>-2</precision>
  1972 + </field> <field> <name>fcno56</name>
  1973 + <rename/>
  1974 + <length>-2</length>
  1975 + <precision>-2</precision>
  1976 + </field> <field> <name>fcno57</name>
  1977 + <rename/>
  1978 + <length>-2</length>
  1979 + <precision>-2</precision>
  1980 + </field> <field> <name>fcno58</name>
  1981 + <rename/>
  1982 + <length>-2</length>
  1983 + <precision>-2</precision>
  1984 + </field> <field> <name>fcno59</name>
  1985 + <rename/>
  1986 + <length>-2</length>
  1987 + <precision>-2</precision>
  1988 + </field> <field> <name>fcno60</name>
  1989 + <rename/>
  1990 + <length>-2</length>
  1991 + <precision>-2</precision>
  1992 + </field> <field> <name>fcno61</name>
  1993 + <rename/>
  1994 + <length>-2</length>
  1995 + <precision>-2</precision>
  1996 + </field> <field> <name>fcno62</name>
  1997 + <rename/>
  1998 + <length>-2</length>
  1999 + <precision>-2</precision>
  2000 + </field> <field> <name>fcno63</name>
  2001 + <rename/>
  2002 + <length>-2</length>
  2003 + <precision>-2</precision>
  2004 + </field> <field> <name>fcno64</name>
  2005 + <rename/>
  2006 + <length>-2</length>
  2007 + <precision>-2</precision>
  2008 + </field> <field> <name>fcno65</name>
  2009 + <rename/>
  2010 + <length>-2</length>
  2011 + <precision>-2</precision>
  2012 + </field> <field> <name>fcno66</name>
  2013 + <rename/>
  2014 + <length>-2</length>
  2015 + <precision>-2</precision>
  2016 + </field> <field> <name>fcno67</name>
  2017 + <rename/>
  2018 + <length>-2</length>
  2019 + <precision>-2</precision>
  2020 + </field> <field> <name>fcno68</name>
  2021 + <rename/>
  2022 + <length>-2</length>
  2023 + <precision>-2</precision>
  2024 + </field> <field> <name>fcno69</name>
  2025 + <rename/>
  2026 + <length>-2</length>
  2027 + <precision>-2</precision>
  2028 + </field> <field> <name>fcno70</name>
  2029 + <rename/>
  2030 + <length>-2</length>
  2031 + <precision>-2</precision>
  2032 + </field> <select_unspecified>N</select_unspecified>
  2033 + </fields> <cluster_schema/>
  2034 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2035 + <xloc>691</xloc>
  2036 + <yloc>361</yloc>
  2037 + <draw>Y</draw>
  2038 + </GUI>
  2039 + </step>
  2040 +
  2041 + <step>
  2042 + <name>&#x5408;&#x5e76;&#x5185;&#x5bb9;</name>
  2043 + <type>ScriptValueMod</type>
  2044 + <description/>
  2045 + <distribute>Y</distribute>
  2046 + <custom_distribution/>
  2047 + <copies>1</copies>
  2048 + <partitioning>
  2049 + <method>none</method>
  2050 + <schema_name/>
  2051 + </partitioning>
  2052 + <compatible>N</compatible>
  2053 + <optimizationLevel>9</optimizationLevel>
  2054 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  2055 + <jsScript_name>Script 1</jsScript_name>
  2056 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;&#x2f;&#x2f; &#x987a;&#x5e8f;&#xff0c;id,fcsj,jhlc,zdname,bctype,xldir,isfb&#xa;var all_content_array &#x3d; &#x5b;&#x5d;&#x3b;&#xa;var all_content &#x3d; &#x22;&#x22;&#x3b; &#xa;all_content_array.push&#x28;id&#x29;&#x3b;&#xa;all_content_array.push&#x28;fcsj&#x29;&#x3b;&#xa;all_content_array.push&#x28;jhlc&#x29;&#x3b;&#xa;all_content_array.push&#x28;fczdName&#x29;&#x3b;&#xa;all_content_array.push&#x28;bc_type&#x29;&#x3b;&#xa;all_content_array.push&#x28;xl_dir&#x29;&#x3b;&#xa;all_content_array.push&#x28;isfb&#x29;&#x3b;&#xa;all_content_array.push&#x28;qdz_code &#x7c;&#x7c; &#x27;null&#x27;&#x29;&#x3b;&#xa;all_content_array.push&#x28;zdz_code &#x7c;&#x7c; &#x27;null&#x27;&#x29;&#x3b;&#xa;&#xa;all_content &#x3d; all_content_array.join&#x28;&#x22;,&#x22;&#x29;&#x3b; &#x2f;&#x2f; &#x9017;&#x53f7;&#x5206;&#x9694;</jsScript_script>
  2057 + </jsScript> </jsScripts> <fields> <field> <name>all_content</name>
  2058 + <rename>all_content</rename>
  2059 + <type>String</type>
  2060 + <length>-1</length>
  2061 + <precision>-1</precision>
  2062 + <replace>N</replace>
  2063 + </field> </fields> <cluster_schema/>
  2064 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2065 + <xloc>441</xloc>
  2066 + <yloc>84</yloc>
  2067 + <draw>Y</draw>
  2068 + </GUI>
  2069 + </step>
  2070 +
  2071 + <step>
  2072 + <name>&#x6587;&#x672c;&#x6587;&#x4ef6;&#x8f93;&#x51fa;</name>
  2073 + <type>TextFileOutput</type>
  2074 + <description/>
  2075 + <distribute>Y</distribute>
  2076 + <custom_distribution/>
  2077 + <copies>1</copies>
  2078 + <partitioning>
  2079 + <method>none</method>
  2080 + <schema_name/>
  2081 + </partitioning>
  2082 + <separator>&#x3b;</separator>
  2083 + <enclosure>&#x22;</enclosure>
  2084 + <enclosure_forced>N</enclosure_forced>
  2085 + <enclosure_fix_disabled>N</enclosure_fix_disabled>
  2086 + <header>Y</header>
  2087 + <footer>N</footer>
  2088 + <format>DOS</format>
  2089 + <compression>None</compression>
  2090 + <encoding>UTF-8</encoding>
  2091 + <endedLine/>
  2092 + <fileNameInField>N</fileNameInField>
  2093 + <fileNameField/>
  2094 + <create_parent_folder>Y</create_parent_folder>
  2095 + <file>
  2096 + <name>&#x24;&#x7b;tempfilepath&#x7d;</name>
  2097 + <is_command>N</is_command>
  2098 + <servlet_output>N</servlet_output>
  2099 + <do_not_open_new_file_init>N</do_not_open_new_file_init>
  2100 + <extention>txt</extention>
  2101 + <append>N</append>
  2102 + <split>N</split>
  2103 + <haspartno>N</haspartno>
  2104 + <add_date>N</add_date>
  2105 + <add_time>N</add_time>
  2106 + <SpecifyFormat>N</SpecifyFormat>
  2107 + <date_time_format/>
  2108 + <add_to_result_filenames>Y</add_to_result_filenames>
  2109 + <pad>N</pad>
  2110 + <fast_dump>N</fast_dump>
  2111 + <splitevery>0</splitevery>
  2112 + </file>
  2113 + <fields>
  2114 + <field>
  2115 + <name>lp</name>
  2116 + <type>String</type>
  2117 + <format/>
  2118 + <currency/>
  2119 + <decimal/>
  2120 + <group/>
  2121 + <nullif/>
  2122 + <trim_type>none</trim_type>
  2123 + <length>255</length>
  2124 + <precision>-1</precision>
  2125 + </field>
  2126 + <field>
  2127 + <name>fcno1</name>
  2128 + <type>String</type>
  2129 + <format/>
  2130 + <currency/>
  2131 + <decimal/>
  2132 + <group/>
  2133 + <nullif/>
  2134 + <trim_type>none</trim_type>
  2135 + <length>-1</length>
  2136 + <precision>-1</precision>
  2137 + </field>
  2138 + <field>
  2139 + <name>fcno2</name>
  2140 + <type>String</type>
  2141 + <format/>
  2142 + <currency/>
  2143 + <decimal/>
  2144 + <group/>
  2145 + <nullif/>
  2146 + <trim_type>none</trim_type>
  2147 + <length>-1</length>
  2148 + <precision>-1</precision>
  2149 + </field>
  2150 + <field>
  2151 + <name>fcno3</name>
  2152 + <type>String</type>
  2153 + <format/>
  2154 + <currency/>
  2155 + <decimal/>
  2156 + <group/>
  2157 + <nullif/>
  2158 + <trim_type>none</trim_type>
  2159 + <length>-1</length>
  2160 + <precision>-1</precision>
  2161 + </field>
  2162 + <field>
  2163 + <name>fcno4</name>
  2164 + <type>String</type>
  2165 + <format/>
  2166 + <currency/>
  2167 + <decimal/>
  2168 + <group/>
  2169 + <nullif/>
  2170 + <trim_type>none</trim_type>
  2171 + <length>-1</length>
  2172 + <precision>-1</precision>
  2173 + </field>
  2174 + <field>
  2175 + <name>fcno5</name>
  2176 + <type>String</type>
  2177 + <format/>
  2178 + <currency/>
  2179 + <decimal/>
  2180 + <group/>
  2181 + <nullif/>
  2182 + <trim_type>none</trim_type>
  2183 + <length>-1</length>
  2184 + <precision>-1</precision>
  2185 + </field>
  2186 + <field>
  2187 + <name>fcno6</name>
  2188 + <type>String</type>
  2189 + <format/>
  2190 + <currency/>
  2191 + <decimal/>
  2192 + <group/>
  2193 + <nullif/>
  2194 + <trim_type>none</trim_type>
  2195 + <length>-1</length>
  2196 + <precision>-1</precision>
  2197 + </field>
  2198 + <field>
  2199 + <name>fcno7</name>
  2200 + <type>String</type>
  2201 + <format/>
  2202 + <currency/>
  2203 + <decimal/>
  2204 + <group/>
  2205 + <nullif/>
  2206 + <trim_type>none</trim_type>
  2207 + <length>-1</length>
  2208 + <precision>-1</precision>
  2209 + </field>
  2210 + <field>
  2211 + <name>fcno8</name>
  2212 + <type>String</type>
  2213 + <format/>
  2214 + <currency/>
  2215 + <decimal/>
  2216 + <group/>
  2217 + <nullif/>
  2218 + <trim_type>none</trim_type>
  2219 + <length>-1</length>
  2220 + <precision>-1</precision>
  2221 + </field>
  2222 + <field>
  2223 + <name>fcno9</name>
  2224 + <type>String</type>
  2225 + <format/>
  2226 + <currency/>
  2227 + <decimal/>
  2228 + <group/>
  2229 + <nullif/>
  2230 + <trim_type>none</trim_type>
  2231 + <length>-1</length>
  2232 + <precision>-1</precision>
  2233 + </field>
  2234 + <field>
  2235 + <name>fcno10</name>
  2236 + <type>String</type>
  2237 + <format/>
  2238 + <currency/>
  2239 + <decimal/>
  2240 + <group/>
  2241 + <nullif/>
  2242 + <trim_type>none</trim_type>
  2243 + <length>-1</length>
  2244 + <precision>-1</precision>
  2245 + </field>
  2246 + <field>
  2247 + <name>fcno11</name>
  2248 + <type>String</type>
  2249 + <format/>
  2250 + <currency/>
  2251 + <decimal/>
  2252 + <group/>
  2253 + <nullif/>
  2254 + <trim_type>none</trim_type>
  2255 + <length>-1</length>
  2256 + <precision>-1</precision>
  2257 + </field>
  2258 + <field>
  2259 + <name>fcno12</name>
  2260 + <type>String</type>
  2261 + <format/>
  2262 + <currency/>
  2263 + <decimal/>
  2264 + <group/>
  2265 + <nullif/>
  2266 + <trim_type>none</trim_type>
  2267 + <length>-1</length>
  2268 + <precision>-1</precision>
  2269 + </field>
  2270 + <field>
  2271 + <name>fcno13</name>
  2272 + <type>String</type>
  2273 + <format/>
  2274 + <currency/>
  2275 + <decimal/>
  2276 + <group/>
  2277 + <nullif/>
  2278 + <trim_type>none</trim_type>
  2279 + <length>-1</length>
  2280 + <precision>-1</precision>
  2281 + </field>
  2282 + <field>
  2283 + <name>fcno14</name>
  2284 + <type>String</type>
  2285 + <format/>
  2286 + <currency/>
  2287 + <decimal/>
  2288 + <group/>
  2289 + <nullif/>
  2290 + <trim_type>none</trim_type>
  2291 + <length>-1</length>
  2292 + <precision>-1</precision>
  2293 + </field>
  2294 + <field>
  2295 + <name>fcno15</name>
  2296 + <type>String</type>
  2297 + <format/>
  2298 + <currency/>
  2299 + <decimal/>
  2300 + <group/>
  2301 + <nullif/>
  2302 + <trim_type>none</trim_type>
  2303 + <length>-1</length>
  2304 + <precision>-1</precision>
  2305 + </field>
  2306 + <field>
  2307 + <name>fcno16</name>
  2308 + <type>String</type>
  2309 + <format/>
  2310 + <currency/>
  2311 + <decimal/>
  2312 + <group/>
  2313 + <nullif/>
  2314 + <trim_type>none</trim_type>
  2315 + <length>-1</length>
  2316 + <precision>-1</precision>
  2317 + </field>
  2318 + <field>
  2319 + <name>fcno17</name>
  2320 + <type>String</type>
  2321 + <format/>
  2322 + <currency/>
  2323 + <decimal/>
  2324 + <group/>
  2325 + <nullif/>
  2326 + <trim_type>none</trim_type>
  2327 + <length>-1</length>
  2328 + <precision>-1</precision>
  2329 + </field>
  2330 + <field>
  2331 + <name>fcno18</name>
  2332 + <type>String</type>
  2333 + <format/>
  2334 + <currency/>
  2335 + <decimal/>
  2336 + <group/>
  2337 + <nullif/>
  2338 + <trim_type>none</trim_type>
  2339 + <length>-1</length>
  2340 + <precision>-1</precision>
  2341 + </field>
  2342 + <field>
  2343 + <name>fcno19</name>
  2344 + <type>String</type>
  2345 + <format/>
  2346 + <currency/>
  2347 + <decimal/>
  2348 + <group/>
  2349 + <nullif/>
  2350 + <trim_type>none</trim_type>
  2351 + <length>-1</length>
  2352 + <precision>-1</precision>
  2353 + </field>
  2354 + <field>
  2355 + <name>fcno20</name>
  2356 + <type>String</type>
  2357 + <format/>
  2358 + <currency/>
  2359 + <decimal/>
  2360 + <group/>
  2361 + <nullif/>
  2362 + <trim_type>none</trim_type>
  2363 + <length>-1</length>
  2364 + <precision>-1</precision>
  2365 + </field>
  2366 + <field>
  2367 + <name>fcno21</name>
  2368 + <type>String</type>
  2369 + <format/>
  2370 + <currency/>
  2371 + <decimal/>
  2372 + <group/>
  2373 + <nullif/>
  2374 + <trim_type>none</trim_type>
  2375 + <length>-1</length>
  2376 + <precision>-1</precision>
  2377 + </field>
  2378 + <field>
  2379 + <name>fcno22</name>
  2380 + <type>String</type>
  2381 + <format/>
  2382 + <currency/>
  2383 + <decimal/>
  2384 + <group/>
  2385 + <nullif/>
  2386 + <trim_type>none</trim_type>
  2387 + <length>-1</length>
  2388 + <precision>-1</precision>
  2389 + </field>
  2390 + <field>
  2391 + <name>fcno23</name>
  2392 + <type>String</type>
  2393 + <format/>
  2394 + <currency/>
  2395 + <decimal/>
  2396 + <group/>
  2397 + <nullif/>
  2398 + <trim_type>none</trim_type>
  2399 + <length>-1</length>
  2400 + <precision>-1</precision>
  2401 + </field>
  2402 + <field>
  2403 + <name>fcno24</name>
  2404 + <type>String</type>
  2405 + <format/>
  2406 + <currency/>
  2407 + <decimal/>
  2408 + <group/>
  2409 + <nullif/>
  2410 + <trim_type>none</trim_type>
  2411 + <length>-1</length>
  2412 + <precision>-1</precision>
  2413 + </field>
  2414 + <field>
  2415 + <name>fcno25</name>
  2416 + <type>String</type>
  2417 + <format/>
  2418 + <currency/>
  2419 + <decimal/>
  2420 + <group/>
  2421 + <nullif/>
  2422 + <trim_type>none</trim_type>
  2423 + <length>-1</length>
  2424 + <precision>-1</precision>
  2425 + </field>
  2426 + <field>
  2427 + <name>fcno26</name>
  2428 + <type>String</type>
  2429 + <format/>
  2430 + <currency/>
  2431 + <decimal/>
  2432 + <group/>
  2433 + <nullif/>
  2434 + <trim_type>none</trim_type>
  2435 + <length>-1</length>
  2436 + <precision>-1</precision>
  2437 + </field>
  2438 + <field>
  2439 + <name>fcno27</name>
  2440 + <type>String</type>
  2441 + <format/>
  2442 + <currency/>
  2443 + <decimal/>
  2444 + <group/>
  2445 + <nullif/>
  2446 + <trim_type>none</trim_type>
  2447 + <length>-1</length>
  2448 + <precision>-1</precision>
  2449 + </field>
  2450 + <field>
  2451 + <name>fcno28</name>
  2452 + <type>String</type>
  2453 + <format/>
  2454 + <currency/>
  2455 + <decimal/>
  2456 + <group/>
  2457 + <nullif/>
  2458 + <trim_type>none</trim_type>
  2459 + <length>-1</length>
  2460 + <precision>-1</precision>
  2461 + </field>
  2462 + <field>
  2463 + <name>fcno29</name>
  2464 + <type>String</type>
  2465 + <format/>
  2466 + <currency/>
  2467 + <decimal/>
  2468 + <group/>
  2469 + <nullif/>
  2470 + <trim_type>none</trim_type>
  2471 + <length>-1</length>
  2472 + <precision>-1</precision>
  2473 + </field>
  2474 + <field>
  2475 + <name>fcno30</name>
  2476 + <type>String</type>
  2477 + <format/>
  2478 + <currency/>
  2479 + <decimal/>
  2480 + <group/>
  2481 + <nullif/>
  2482 + <trim_type>none</trim_type>
  2483 + <length>-1</length>
  2484 + <precision>-1</precision>
  2485 + </field>
  2486 + <field>
  2487 + <name>fcno31</name>
  2488 + <type>String</type>
  2489 + <format/>
  2490 + <currency/>
  2491 + <decimal/>
  2492 + <group/>
  2493 + <nullif/>
  2494 + <trim_type>none</trim_type>
  2495 + <length>-1</length>
  2496 + <precision>-1</precision>
  2497 + </field>
  2498 + <field>
  2499 + <name>fcno32</name>
  2500 + <type>String</type>
  2501 + <format/>
  2502 + <currency/>
  2503 + <decimal/>
  2504 + <group/>
  2505 + <nullif/>
  2506 + <trim_type>none</trim_type>
  2507 + <length>-1</length>
  2508 + <precision>-1</precision>
  2509 + </field>
  2510 + <field>
  2511 + <name>fcno33</name>
  2512 + <type>String</type>
  2513 + <format/>
  2514 + <currency/>
  2515 + <decimal/>
  2516 + <group/>
  2517 + <nullif/>
  2518 + <trim_type>none</trim_type>
  2519 + <length>-1</length>
  2520 + <precision>-1</precision>
  2521 + </field>
  2522 + <field>
  2523 + <name>fcno34</name>
  2524 + <type>String</type>
  2525 + <format/>
  2526 + <currency/>
  2527 + <decimal/>
  2528 + <group/>
  2529 + <nullif/>
  2530 + <trim_type>none</trim_type>
  2531 + <length>-1</length>
  2532 + <precision>-1</precision>
  2533 + </field>
  2534 + <field>
  2535 + <name>fcno35</name>
  2536 + <type>String</type>
  2537 + <format/>
  2538 + <currency/>
  2539 + <decimal/>
  2540 + <group/>
  2541 + <nullif/>
  2542 + <trim_type>none</trim_type>
  2543 + <length>-1</length>
  2544 + <precision>-1</precision>
  2545 + </field>
  2546 + <field>
  2547 + <name>fcno36</name>
  2548 + <type>String</type>
  2549 + <format/>
  2550 + <currency/>
  2551 + <decimal/>
  2552 + <group/>
  2553 + <nullif/>
  2554 + <trim_type>none</trim_type>
  2555 + <length>-1</length>
  2556 + <precision>-1</precision>
  2557 + </field>
  2558 + <field>
  2559 + <name>fcno37</name>
  2560 + <type>String</type>
  2561 + <format/>
  2562 + <currency/>
  2563 + <decimal/>
  2564 + <group/>
  2565 + <nullif/>
  2566 + <trim_type>none</trim_type>
  2567 + <length>-1</length>
  2568 + <precision>-1</precision>
  2569 + </field>
  2570 + <field>
  2571 + <name>fcno38</name>
  2572 + <type>String</type>
  2573 + <format/>
  2574 + <currency/>
  2575 + <decimal/>
  2576 + <group/>
  2577 + <nullif/>
  2578 + <trim_type>none</trim_type>
  2579 + <length>-1</length>
  2580 + <precision>-1</precision>
  2581 + </field>
  2582 + <field>
  2583 + <name>fcno39</name>
  2584 + <type>String</type>
  2585 + <format/>
  2586 + <currency/>
  2587 + <decimal/>
  2588 + <group/>
  2589 + <nullif/>
  2590 + <trim_type>none</trim_type>
  2591 + <length>-1</length>
  2592 + <precision>-1</precision>
  2593 + </field>
  2594 + <field>
  2595 + <name>fcno40</name>
  2596 + <type>String</type>
  2597 + <format/>
  2598 + <currency/>
  2599 + <decimal/>
  2600 + <group/>
  2601 + <nullif/>
  2602 + <trim_type>none</trim_type>
  2603 + <length>-1</length>
  2604 + <precision>-1</precision>
  2605 + </field>
  2606 + <field>
  2607 + <name>fcno41</name>
  2608 + <type>String</type>
  2609 + <format/>
  2610 + <currency/>
  2611 + <decimal/>
  2612 + <group/>
  2613 + <nullif/>
  2614 + <trim_type>none</trim_type>
  2615 + <length>-1</length>
  2616 + <precision>-1</precision>
  2617 + </field>
  2618 + <field>
  2619 + <name>fcno42</name>
  2620 + <type>String</type>
  2621 + <format/>
  2622 + <currency/>
  2623 + <decimal/>
  2624 + <group/>
  2625 + <nullif/>
  2626 + <trim_type>none</trim_type>
  2627 + <length>-1</length>
  2628 + <precision>-1</precision>
  2629 + </field>
  2630 + <field>
  2631 + <name>fcno43</name>
  2632 + <type>String</type>
  2633 + <format/>
  2634 + <currency/>
  2635 + <decimal/>
  2636 + <group/>
  2637 + <nullif/>
  2638 + <trim_type>none</trim_type>
  2639 + <length>-1</length>
  2640 + <precision>-1</precision>
  2641 + </field>
  2642 + <field>
  2643 + <name>fcno44</name>
  2644 + <type>String</type>
  2645 + <format/>
  2646 + <currency/>
  2647 + <decimal/>
  2648 + <group/>
  2649 + <nullif/>
  2650 + <trim_type>none</trim_type>
  2651 + <length>-1</length>
  2652 + <precision>-1</precision>
  2653 + </field>
  2654 + <field>
  2655 + <name>fcno45</name>
  2656 + <type>String</type>
  2657 + <format/>
  2658 + <currency/>
  2659 + <decimal/>
  2660 + <group/>
  2661 + <nullif/>
  2662 + <trim_type>none</trim_type>
  2663 + <length>-1</length>
  2664 + <precision>-1</precision>
  2665 + </field>
  2666 + <field>
  2667 + <name>fcno46</name>
  2668 + <type>String</type>
  2669 + <format/>
  2670 + <currency/>
  2671 + <decimal/>
  2672 + <group/>
  2673 + <nullif/>
  2674 + <trim_type>none</trim_type>
  2675 + <length>-1</length>
  2676 + <precision>-1</precision>
  2677 + </field>
  2678 + <field>
  2679 + <name>fcno47</name>
  2680 + <type>String</type>
  2681 + <format/>
  2682 + <currency/>
  2683 + <decimal/>
  2684 + <group/>
  2685 + <nullif/>
  2686 + <trim_type>none</trim_type>
  2687 + <length>-1</length>
  2688 + <precision>-1</precision>
  2689 + </field>
  2690 + <field>
  2691 + <name>fcno48</name>
  2692 + <type>String</type>
  2693 + <format/>
  2694 + <currency/>
  2695 + <decimal/>
  2696 + <group/>
  2697 + <nullif/>
  2698 + <trim_type>none</trim_type>
  2699 + <length>-1</length>
  2700 + <precision>-1</precision>
  2701 + </field>
  2702 + <field>
  2703 + <name>fcno49</name>
  2704 + <type>String</type>
  2705 + <format/>
  2706 + <currency/>
  2707 + <decimal/>
  2708 + <group/>
  2709 + <nullif/>
  2710 + <trim_type>none</trim_type>
  2711 + <length>-1</length>
  2712 + <precision>-1</precision>
  2713 + </field>
  2714 + <field>
  2715 + <name>fcno50</name>
  2716 + <type>String</type>
  2717 + <format/>
  2718 + <currency/>
  2719 + <decimal/>
  2720 + <group/>
  2721 + <nullif/>
  2722 + <trim_type>none</trim_type>
  2723 + <length>-1</length>
  2724 + <precision>-1</precision>
  2725 + </field>
  2726 + <field>
  2727 + <name>fcno51</name>
  2728 + <type>String</type>
  2729 + <format/>
  2730 + <currency/>
  2731 + <decimal/>
  2732 + <group/>
  2733 + <nullif/>
  2734 + <trim_type>none</trim_type>
  2735 + <length>-1</length>
  2736 + <precision>-1</precision>
  2737 + </field>
  2738 + <field>
  2739 + <name>fcno52</name>
  2740 + <type>String</type>
  2741 + <format/>
  2742 + <currency/>
  2743 + <decimal/>
  2744 + <group/>
  2745 + <nullif/>
  2746 + <trim_type>none</trim_type>
  2747 + <length>-1</length>
  2748 + <precision>-1</precision>
  2749 + </field>
  2750 + <field>
  2751 + <name>fcno53</name>
  2752 + <type>String</type>
  2753 + <format/>
  2754 + <currency/>
  2755 + <decimal/>
  2756 + <group/>
  2757 + <nullif/>
  2758 + <trim_type>none</trim_type>
  2759 + <length>-1</length>
  2760 + <precision>-1</precision>
  2761 + </field>
  2762 + <field>
  2763 + <name>fcno54</name>
  2764 + <type>String</type>
  2765 + <format/>
  2766 + <currency/>
  2767 + <decimal/>
  2768 + <group/>
  2769 + <nullif/>
  2770 + <trim_type>none</trim_type>
  2771 + <length>-1</length>
  2772 + <precision>-1</precision>
  2773 + </field>
  2774 + <field>
  2775 + <name>fcno55</name>
  2776 + <type>String</type>
  2777 + <format/>
  2778 + <currency/>
  2779 + <decimal/>
  2780 + <group/>
  2781 + <nullif/>
  2782 + <trim_type>none</trim_type>
  2783 + <length>-1</length>
  2784 + <precision>-1</precision>
  2785 + </field>
  2786 + <field>
  2787 + <name>fcno56</name>
  2788 + <type>String</type>
  2789 + <format/>
  2790 + <currency/>
  2791 + <decimal/>
  2792 + <group/>
  2793 + <nullif/>
  2794 + <trim_type>none</trim_type>
  2795 + <length>-1</length>
  2796 + <precision>-1</precision>
  2797 + </field>
  2798 + <field>
  2799 + <name>fcno57</name>
  2800 + <type>String</type>
  2801 + <format/>
  2802 + <currency/>
  2803 + <decimal/>
  2804 + <group/>
  2805 + <nullif/>
  2806 + <trim_type>none</trim_type>
  2807 + <length>-1</length>
  2808 + <precision>-1</precision>
  2809 + </field>
  2810 + <field>
  2811 + <name>fcno58</name>
  2812 + <type>String</type>
  2813 + <format/>
  2814 + <currency/>
  2815 + <decimal/>
  2816 + <group/>
  2817 + <nullif/>
  2818 + <trim_type>none</trim_type>
  2819 + <length>-1</length>
  2820 + <precision>-1</precision>
  2821 + </field>
  2822 + <field>
  2823 + <name>fcno59</name>
  2824 + <type>String</type>
  2825 + <format/>
  2826 + <currency/>
  2827 + <decimal/>
  2828 + <group/>
  2829 + <nullif/>
  2830 + <trim_type>none</trim_type>
  2831 + <length>-1</length>
  2832 + <precision>-1</precision>
  2833 + </field>
  2834 + <field>
  2835 + <name>fcno60</name>
  2836 + <type>String</type>
  2837 + <format/>
  2838 + <currency/>
  2839 + <decimal/>
  2840 + <group/>
  2841 + <nullif/>
  2842 + <trim_type>none</trim_type>
  2843 + <length>-1</length>
  2844 + <precision>-1</precision>
  2845 + </field>
  2846 + <field>
  2847 + <name>fcno61</name>
  2848 + <type>String</type>
  2849 + <format/>
  2850 + <currency/>
  2851 + <decimal/>
  2852 + <group/>
  2853 + <nullif/>
  2854 + <trim_type>none</trim_type>
  2855 + <length>-1</length>
  2856 + <precision>-1</precision>
  2857 + </field>
  2858 + <field>
  2859 + <name>fcno62</name>
  2860 + <type>String</type>
  2861 + <format/>
  2862 + <currency/>
  2863 + <decimal/>
  2864 + <group/>
  2865 + <nullif/>
  2866 + <trim_type>none</trim_type>
  2867 + <length>-1</length>
  2868 + <precision>-1</precision>
  2869 + </field>
  2870 + <field>
  2871 + <name>fcno63</name>
  2872 + <type>String</type>
  2873 + <format/>
  2874 + <currency/>
  2875 + <decimal/>
  2876 + <group/>
  2877 + <nullif/>
  2878 + <trim_type>none</trim_type>
  2879 + <length>-1</length>
  2880 + <precision>-1</precision>
  2881 + </field>
  2882 + <field>
  2883 + <name>fcno64</name>
  2884 + <type>String</type>
  2885 + <format/>
  2886 + <currency/>
  2887 + <decimal/>
  2888 + <group/>
  2889 + <nullif/>
  2890 + <trim_type>none</trim_type>
  2891 + <length>-1</length>
  2892 + <precision>-1</precision>
  2893 + </field>
  2894 + <field>
  2895 + <name>fcno65</name>
  2896 + <type>String</type>
  2897 + <format/>
  2898 + <currency/>
  2899 + <decimal/>
  2900 + <group/>
  2901 + <nullif/>
  2902 + <trim_type>none</trim_type>
  2903 + <length>-1</length>
  2904 + <precision>-1</precision>
  2905 + </field>
  2906 + <field>
  2907 + <name>fcno66</name>
  2908 + <type>String</type>
  2909 + <format/>
  2910 + <currency/>
  2911 + <decimal/>
  2912 + <group/>
  2913 + <nullif/>
  2914 + <trim_type>none</trim_type>
  2915 + <length>-1</length>
  2916 + <precision>-1</precision>
  2917 + </field>
  2918 + <field>
  2919 + <name>fcno67</name>
  2920 + <type>String</type>
  2921 + <format/>
  2922 + <currency/>
  2923 + <decimal/>
  2924 + <group/>
  2925 + <nullif/>
  2926 + <trim_type>none</trim_type>
  2927 + <length>-1</length>
  2928 + <precision>-1</precision>
  2929 + </field>
  2930 + <field>
  2931 + <name>fcno68</name>
  2932 + <type>String</type>
  2933 + <format/>
  2934 + <currency/>
  2935 + <decimal/>
  2936 + <group/>
  2937 + <nullif/>
  2938 + <trim_type>none</trim_type>
  2939 + <length>-1</length>
  2940 + <precision>-1</precision>
  2941 + </field>
  2942 + <field>
  2943 + <name>fcno69</name>
  2944 + <type>String</type>
  2945 + <format/>
  2946 + <currency/>
  2947 + <decimal/>
  2948 + <group/>
  2949 + <nullif/>
  2950 + <trim_type>none</trim_type>
  2951 + <length>-1</length>
  2952 + <precision>-1</precision>
  2953 + </field>
  2954 + <field>
  2955 + <name>fcno70</name>
  2956 + <type>String</type>
  2957 + <format/>
  2958 + <currency/>
  2959 + <decimal/>
  2960 + <group/>
  2961 + <nullif/>
  2962 + <trim_type>none</trim_type>
  2963 + <length>-1</length>
  2964 + <precision>-1</precision>
  2965 + </field>
  2966 + </fields>
  2967 + <cluster_schema/>
  2968 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2969 + <xloc>880</xloc>
  2970 + <yloc>365</yloc>
  2971 + <draw>Y</draw>
  2972 + </GUI>
  2973 + </step>
  2974 +
  2975 + <step>
  2976 + <name>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</name>
  2977 + <type>GetVariable</type>
  2978 + <description/>
  2979 + <distribute>Y</distribute>
  2980 + <custom_distribution/>
  2981 + <copies>1</copies>
  2982 + <partitioning>
  2983 + <method>none</method>
  2984 + <schema_name/>
  2985 + </partitioning>
  2986 + <fields>
  2987 + <field>
  2988 + <name>xlid_</name>
  2989 + <variable>&#x24;&#x7b;xlid&#x7d;</variable>
  2990 + <type>Integer</type>
  2991 + <format/>
  2992 + <currency/>
  2993 + <decimal/>
  2994 + <group/>
  2995 + <length>-1</length>
  2996 + <precision>-1</precision>
  2997 + <trim_type>none</trim_type>
  2998 + </field>
  2999 + <field>
  3000 + <name>ttid_</name>
  3001 + <variable>&#x24;&#x7b;ttid&#x7d;</variable>
  3002 + <type>Number</type>
  3003 + <format/>
  3004 + <currency/>
  3005 + <decimal/>
  3006 + <group/>
  3007 + <length>-1</length>
  3008 + <precision>-1</precision>
  3009 + <trim_type>none</trim_type>
  3010 + </field>
  3011 + </fields>
  3012 + <cluster_schema/>
  3013 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3014 + <xloc>45</xloc>
  3015 + <yloc>189</yloc>
  3016 + <draw>Y</draw>
  3017 + </GUI>
  3018 + </step>
  3019 +
  3020 + <step>
  3021 + <name>&#x8868;&#x8f93;&#x5165;</name>
  3022 + <type>TableInput</type>
  3023 + <description/>
  3024 + <distribute>Y</distribute>
  3025 + <custom_distribution/>
  3026 + <copies>1</copies>
  3027 + <partitioning>
  3028 + <method>none</method>
  3029 + <schema_name/>
  3030 + </partitioning>
  3031 + <connection>bus_control_variable</connection>
  3032 + <sql>select &#xa;t.id as id&#xa;, concat&#x28;g.id, &#x27;_&#x27;, g.lp_name&#x29; as lp&#xa;, g.xl as xl&#xa;, qdz_code&#xa;, qdz_name&#xa;, zdz_code&#xa;, zdz_name&#xa;, fcsj&#xa;, jhlc&#xa;, bc_type &#xa;, bcs&#xa;, fcno&#xa;, xl_dir&#xa;, isfb&#xa;from bsth_c_s_ttinfo_detail t left join &#xa;bsth_c_s_gbi g on t.lp &#x3d; g.id &#xa;where &#xa;g.xl &#x3d; &#x3f; and&#xa;t.ttinfo &#x3d; &#x3f; &#xa;order by g.lp_no asc, t.bcs asc</sql>
  3033 + <limit>0</limit>
  3034 + <lookup>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</lookup>
  3035 + <execute_each_row>N</execute_each_row>
  3036 + <variables_active>Y</variables_active>
  3037 + <lazy_conversion_active>N</lazy_conversion_active>
  3038 + <cluster_schema/>
  3039 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3040 + <xloc>130</xloc>
  3041 + <yloc>85</yloc>
  3042 + <draw>Y</draw>
  3043 + </GUI>
  3044 + </step>
  3045 +
  3046 + <step>
  3047 + <name>&#x8ba1;&#x7b97;&#x53d1;&#x8f66;&#x7ad9;&#x540d;</name>
  3048 + <type>ScriptValueMod</type>
  3049 + <description/>
  3050 + <distribute>Y</distribute>
  3051 + <custom_distribution/>
  3052 + <copies>1</copies>
  3053 + <partitioning>
  3054 + <method>none</method>
  3055 + <schema_name/>
  3056 + </partitioning>
  3057 + <compatible>N</compatible>
  3058 + <optimizationLevel>9</optimizationLevel>
  3059 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  3060 + <jsScript_name>Script 1</jsScript_name>
  3061 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var fczdName &#x3d; null&#x3b; &#x2f;&#x2f; &#x53d1;&#x8f66;&#x7ad9;&#x70b9;&#x540d;&#x5b57;&#xa;if &#x28;bc_type &#x3d;&#x3d; &#x22;in&#x22;&#x29; &#x7b;&#xa; fczdName &#x3d; &#x22;&#x8fdb;&#x573a;&#x22;&#x3b;&#xa;&#x7d; else if &#x28;bc_type &#x3d;&#x3d; &#x22;out&#x22;&#x29; &#x7b;&#xa; fczdName &#x3d; &#x22;&#x51fa;&#x573a;&#x22;&#x3b;&#xa;&#x7d; else &#x7b;&#xa; fczdName &#x3d; qdz_name&#x3b;&#xa;&#x7d;</jsScript_script>
  3062 + </jsScript> </jsScripts> <fields> <field> <name>fczdName</name>
  3063 + <rename>fczdName</rename>
  3064 + <type>String</type>
  3065 + <length>-1</length>
  3066 + <precision>-1</precision>
  3067 + <replace>N</replace>
  3068 + </field> </fields> <cluster_schema/>
  3069 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3070 + <xloc>282</xloc>
  3071 + <yloc>82</yloc>
  3072 + <draw>Y</draw>
  3073 + </GUI>
  3074 + </step>
  3075 +
  3076 + <step_error_handling>
  3077 + </step_error_handling>
  3078 + <slave-step-copy-partition-distribution>
  3079 +</slave-step-copy-partition-distribution>
  3080 + <slave_transformation>N</slave_transformation>
  3081 +
  3082 +</transformation>
... ...
src/main/resources/static/pages/forms/mould/jobSummary.xls 0 → 100644
No preview for this file type
src/main/resources/static/pages/forms/mould/waybillday.xls
No preview for this file type
src/main/resources/static/pages/forms/statement/jobSummary.html
... ... @@ -46,7 +46,7 @@
46 46 </div>
47 47 <div class="form-group">
48 48 <input class="btn btn-default" type="button" id="query" value="查询"/>
49   -<!-- <input class="btn btn-default" type="button" id="export" value="导出"/> -->
  49 + <input class="btn btn-default" type="button" id="export" value="导出"/>
50 50 </div>
51 51 </form>
52 52 </div>
... ... @@ -298,10 +298,12 @@
298 298 });
299 299 });
300 300 }
  301 + $('#export').attr('disabled', "true");
301 302 $("#query").on("click",function(){
302   - var line=$("#line").val();;
  303 + var line=$("#line").val();
303 304 var lineName=$(".select2-selection__rendered").html();
304 305 var date =$("#date").val();
  306 + $("#export").removeAttr("disabled");
305 307 if(line=="" || line==null){
306 308 layer.msg('请选择线路.');
307 309 }else if(date==""||date==null){
... ... @@ -310,6 +312,7 @@
310 312 $("#xlid").html(lineName);
311 313 $("#dateid").html(date);
312 314 $get('/report/jobFwqk',{line:line,date:date},function(result){
  315 + console.log(result);
313 316 var list_lbqk = template('list_lbqk',{list:result});
314 317 // 把渲染好的模版html文本追加到表格中
315 318 $('#forms .list_lbqk').html(list_lbqk);
... ... @@ -344,7 +347,22 @@
344 347  
345 348 }
346 349  
347   - })
  350 + });
  351 +
  352 + $("#export").on("click",function(){
  353 + var line=$("#line").val();
  354 + var lineName=$(".select2-selection__rendered").html();
  355 + var date =$("#date").val();
  356 + if(line=="" || line==null){
  357 + layer.msg('请选择线路.');
  358 + }else if(date==""||date==null){
  359 + layer.msg('请选择日期.');
  360 + }else{
  361 + $get('/report/jobSummaryExport',{line:line,date:date,lineName:lineName},function(result){
  362 + window.open("/downloadFile/download?fileName=调度员工作汇总日报");
  363 + });
  364 + }
  365 + });
348 366  
349 367 });
350 368 </script>
... ... @@ -354,15 +372,13 @@
354 372 <td>{{obj.nr}}</td>
355 373 <td>{{obj.lp}}</td>
356 374 <td>{{obj.nbbm}}</td>
357   - <td {{if obj.lx ==1}} colspan="2" {{/if}}>{{obj.jgh}}</td>
  375 + <td {{if obj.lx ==1}} colspan="4" {{/if}}>{{obj.jgh}}</td>
358 376 {{if obj.lx ==0}}
359   - <td>{{obj.dz}}</td>
360   - {{/if}}
361   - <td {{if obj.lx ==1}} colspan="3" {{/if}}>{{obj.sj}}</td>
362   - {{if obj.lx ==0}}
363   - <td>&nbsp;</td>
  377 + <td>{{obj.dz}}</td>
  378 + <td>{{obj.sj}}</td>
  379 + <td>&nbsp;</td>
  380 + {{/if}}
364 381 <td>{{obj.lbbc}}</td>
365   - {{/if}}
366 382 <td {{if obj.lx ==1}} colspan="2" {{/if}}>{{obj.lblc}}</td>
367 383 {{if obj.lx ==0}}
368 384 <td>{{obj.jyqp}}</td>
... ...
src/main/resources/static/pages/mforms/waybilldays/waybillday.html
... ... @@ -59,10 +59,10 @@
59 59 <th>空驶公里</th>
60 60 <th>加注量</th>
61 61 <th>机油</th>
62   - <th>耗</th>
  62 + <th>耗</th>
63 63 <th>驾驶员</th>
64 64 <th>里程</th>
65   - <th>用油</th>
  65 + <th>油耗</th>
66 66 </tr>
67 67 </thead>
68 68 <tbody>
... ... @@ -86,27 +86,38 @@
86 86 format : 'YYYY-MM-DD',
87 87 locale : 'zh-cn'
88 88 });
89   -
  89 + var d = new Date();
  90 + var year = d.getFullYear();
  91 + var month = d.getMonth() + 1;
  92 + var day = d.getDate();
  93 + if(month < 10)
  94 + month = "0" + month;
  95 + if(day < 10)
  96 + day = "0" + day;
  97 + $("#date").val(year + "-" + month + "-" + day);
  98 + var fage=false;
90 99 var obj = [];
91   - $.get('/user/companyData', function(result){
92   - obj = result;
93   - var options = '';
94   - for(var i = 0; i < obj.length; i++){
95   - options += '<option value="'+obj[i].companyCode+'">'+obj[i].companyName+'</option>';
96   - }
97   -
98   - if(obj.length ==0){
99   - $("#gsdmDiv_waybillday").css('display','none');
100   - $('#fgsdmDiv_waybillday').css('display','none');
101   - }else if(obj.length ==1){
102   - $("#gsdmDiv_waybillday").css('display','none');
103   - if(obj[0].children.length == 1 || obj[0].children.length ==0)
104   - $('#fgsdmDiv_waybillday').css('display','none');
105   - }
106   - $('#gsdmWaybillday').html(options);
107   - updateCompany();
108   - });
109   -
  100 + var xlList;
  101 + $.get('/report/lineList',function(result){
  102 + xlList=result;
  103 + $.get('/user/companyData', function(result){
  104 + obj = result;
  105 + var options = '';
  106 + for(var i = 0; i < obj.length; i++){
  107 + options += '<option value="'+obj[i].companyCode+'">'+obj[i].companyName+'</option>';
  108 + }
  109 +
  110 + if(obj.length ==0){
  111 + $("#gsdmDiv_waybillday").css('display','none');
  112 + }else if(obj.length ==1){
  113 + $("#gsdmDiv_waybillday").css('display','none');
  114 + if(obj[0].children.length == 1 || obj[0].children.length ==0)
  115 + $('#fgsdmDiv_waybillday').css('display','none');
  116 + }
  117 + $('#gsdmWaybillday').html(options);
  118 + updateCompany();
  119 + });
  120 + })
110 121 $("#gsdmWaybillday").on("change",updateCompany);
111 122 function updateCompany(){
112 123 var company = $('#gsdmWaybillday').val();
... ... @@ -120,18 +131,32 @@
120 131 }
121 132 }
122 133 $('#fgsdmWaybillday').html(options);
  134 + initXl();
123 135 }
124   -
125   -
126   - $.get('/basic/lineCode2Name',function(result){
  136 + $("#fgsdmWaybillday").on("change",initXl);
  137 + function initXl(){
127 138 var data=[];
128   -
129   - for(var code in result){
130   - data.push({id: code, text: result[code]});
  139 + if(fage){
  140 + $("#line").select2("destroy").html('');
  141 + }
  142 + var fgs=$('#fgsdmWaybillday').val();
  143 + var gs=$('#gsdmWaybillday').val();
  144 + for(var i=0;i<xlList.length;i++){
  145 + if(gs!=""){
  146 + if(fgs!=""){
  147 + if(xlList[i]["fgsbm"]==fgs && xlList[i]["gsbm"]==gs){
  148 + data.push({id: xlList[i]["xlbm"], text: xlList[i]["xlname"]});
  149 + }
  150 + }else{
  151 + if(xlList[i]["gsbm"]==gs){
  152 + data.push({id: xlList[i]["xlbm"], text: xlList[i]["xlname"]});
  153 + }
  154 + }
  155 + }
131 156 }
132 157 initPinYinSelect2('#line',data,'');
133   -
134   - })
  158 + fage=true;
  159 + }
135 160 var line;
136 161 var date;
137 162 var gsdmWaybillday;
... ... @@ -144,7 +169,7 @@
144 169 if(date=="" || date ==null){
145 170 layer.msg('请选择日期.');
146 171 }else{
147   - $post('/mcy_forms/waybillday',{gsdmWaybillday:gsdmWaybillday,fgsdmWaybillday:fgsdmWaybillday, line:line,date:date,type:'query'},function(result){
  172 + $post('/mcy_forms/waybillday',{line:line,date:date,type:'query'},function(result){
148 173 $.each(result, function(i, obj) {
149 174 obj.requestType = reqCodeMap[obj.requestType];
150 175 });
... ... @@ -162,7 +187,7 @@
162 187 gsdmWaybillday=$("#gsdmWaybillday").val();
163 188 fgsdmWaybillday = $("#fgsdmWaybillday").val();
164 189 $post('/mcy_export/waybilldayExport',{gsdmWaybillday:gsdmWaybillday,fgsdmWaybillday:fgsdmWaybillday,line:line,date:date,type:'export'},function(result){
165   - window.open("/downloadFile/download?fileName=行车路单日报表"+moment(date).format("YYYYMMDD"));
  190 + window.open("/downloadFile/download?fileName=行车路单日报表");
166 191 });
167 192 });
168 193 });
... ... @@ -170,11 +195,11 @@
170 195 <script type="text/html" id="waybillday">
171 196 {{each list as obj i}}
172 197 <tr>
173   - <td>{{obj.carPlate}}</td>
  198 + <td>{{obj.nbbm}}</td>
174 199 <td>{{obj.jzl1}} </td>
175 200 <td>{{obj.jzl}}</td>
176 201 <td> </td>
177   - <td>{{obj.yh}}</td>
  202 + <td>{{obj.sh}}</td>
178 203 <td>{{obj.jName}}</td>
179 204 <td>{{obj.zlc}}</td>
180 205 <td>{{obj.yh}}</td>
... ...
src/main/resources/static/real_control_v2/fragments/line_schedule/context_menu/sub_task/add_sub_task_range_turn.html
... ... @@ -27,8 +27,11 @@
27 27 </div>
28 28 </div>
29 29 </div>
30   - <div class="uk-width-2-4" style="padding-left: 28px;">
31   - <h6 style="color: #a7a5a5;margin-top: 35px;"><i class="uk-icon-question-circle"> </i>
  30 + <div class="uk-width-2-4" style="padding: 20px 0 0 28px;">
  31 + <label>
  32 + <input type="checkbox" id="emptyTurnCbox"> 调头后空驶回起点
  33 + </label>
  34 + <h6 style="color: #a7a5a5;margin-top: 0;"><i class="uk-icon-question-circle"> </i>
32 35 如果“调头站点”在另一个走向不存在,你需要手动选择第二个营运起点</h6>
33 36 </div>
34 37 </div>
... ... @@ -164,7 +167,7 @@
164 167 <div class="uk-grid">
165 168 <div class="uk-width-3-10">
166 169 <div class="uk-form-row">
167   - <label class="uk-form-label">营运里程</label>
  170 + <label class="uk-form-label mileage_label">营运里程</label>
168 171 </div>
169 172 </div>
170 173 <div class="uk-width-7-10 pl5">
... ... @@ -178,7 +181,7 @@
178 181 </div>
179 182 </div>
180 183 <div class="uk-width-7-10 pl5">
181   - <input type="time" name="startDate" value="{{sch.dfsj}}" required disabled>
  184 + <input type="time" name="startDate" value="{{sch.dfsj}}" required >
182 185 </div>
183 186 </div>
184 187 <div class="uk-grid">
... ... @@ -188,7 +191,7 @@
188 191 </div>
189 192 </div>
190 193 <div class="uk-width-7-10 pl5">
191   - <input type="time" name="endDate" value="{{sch.zdsj}}" required>
  194 + <input type="time" name="endDate" value="{{sch.zdsj}}" >
192 195 </div>
193 196 </div>
194 197 </script>
... ... @@ -295,7 +298,7 @@
295 298  
296 299 //营运2
297 300 nsf.html(template('range_turn_child_service-temp', nextData));
298   - disabledField(nsf, 'endDate');
  301 + disabledField(nsf, 'startDate');
299 302 //烂班1
300 303 cdf.html(template('range_turn_child_destroy-temp', currData));
301 304 disabledField(cdf, 'endStation');
... ... @@ -351,6 +354,9 @@
351 354 return;
352 355 }
353 356 var data = dataArray[i];
  357 + //营运子任务不写备注
  358 + if(data.mileageType == 'service' && !data.destroy)
  359 + data.remarks = '';
354 360 gb_common.$post('/childTask', data, function (rs) {
355 361 notify_succ('子任务添加成功');
356 362 gb_schedule_table.updateSchedule(rs.t);
... ... @@ -432,8 +438,10 @@
432 438 $('[name=startDate]', cdf).val(ets);
433 439 //烂班2终点
434 440 try {
435   - $('[name=endStation]', ndf).val(searchParallelStation());
436   - calcFormMileage(ndf, nextSch.xlDir);
  441 + if(!$('#emptyTurnCbox', modal)[0].checked){
  442 + $('[name=endStation]', ndf).val(searchParallelStation());
  443 + calcFormMileage(ndf, nextSch.xlDir);
  444 + }
437 445 } catch (e) {
438 446 }
439 447 //开始时间
... ... @@ -585,6 +593,37 @@
585 593 btmDrawer.data('name', id).data('url', url).trigger('drawer_show');
586 594 }
587 595 }
  596 +
  597 + /**
  598 + * 选择空驶调头
  599 + */
  600 + $('#emptyTurnCbox', modal).on('click', function () {
  601 + if(this.checked){
  602 + //全程烂班
  603 + $('[name=endStation]', ndf).val(nextSch.zdzCode).attr('disabled', 'disabled');
  604 + $('[name=mileage]', ndf).val(nextSch.jhlc).attr('disabled', 'disabled');
  605 + //空驶回起点,营运变空驶
  606 + var $panel = nsf.parents('.uk-panel').removeClass('uk-panel-box-primary')
  607 + .addClass('uk-panel-box-secondary');
  608 + $panel.find('.uk-panel-badge').addClass('uk-badge-default').text('空驶');
  609 + $panel.find('.mileage_label').text('空驶里程');
  610 +
  611 + $('[name=mileageType]', nsf).val('empty');
  612 + }
  613 + else{
  614 + //恢复
  615 + $('[name=endStation]', ndf).removeAttr('disabled');
  616 + $('[name=mileage]', ndf).removeAttr('disabled');
  617 +
  618 + //空驶变营运
  619 + var $panel = nsf.parents('.uk-panel').removeClass('uk-panel-box-secondary')
  620 + .addClass('uk-panel-box-primary');
  621 + $panel.find('.uk-panel-badge').removeClass('uk-badge-default').text('营运');
  622 + $panel.find('.mileage_label').text('营运里程');
  623 +
  624 + reClac();
  625 + }
  626 + });
588 627 })();
589 628 </script>
590 629 </div>
591 630 \ No newline at end of file
... ...
src/main/resources/static/real_control_v2/js/line_schedule/context_menu.js
... ... @@ -193,7 +193,8 @@ var gb_schedule_context_menu = (function () {
193 193  
194 194 var idx='', minute=0;
195 195 $.each(schArray, function () {
196   - if(this.fcsjActual && this.status != 0){
  196 + if(this.bcType=='in' || this.bcType=='out' ||
  197 + (this.fcsjActual && this.status != 0)){
197 198 return true;
198 199 }
199 200 else
... ... @@ -202,7 +203,7 @@ var gb_schedule_context_menu = (function () {
202 203 });
203 204  
204 205 if(!idx || idx==''){
205   - notify_err('没有需要调整的班次!');
  206 + notify_err('没有需要设置误点停靠时间的班次!');
206 207 return;
207 208 }
208 209  
... ...
src/main/resources/static/real_control_v2/js/line_schedule/sch_table.js
... ... @@ -100,49 +100,12 @@ var gb_schedule_table = (function () {
100 100 gb_ct_table.enableSort($('.ct_table', content), reset_seq_no, gb_schedule_table_dbclick.init);
101 101 //dbclick event
102 102 gb_schedule_table_dbclick.init();
103   - //点击实发,show detail
104   - fcsjActualCellQtip();
  103 + //双击实发
  104 + gb_schedule_table_dbclick.sfsjCellClick($('dd.fcsjActualCell'));
105 105 cb && cb();
106 106 });
107 107 };
108 108  
109   - function fcsjActualCellQtip() {
110   - //单击实发单元格显示详细信息
111   - $(document).on('click', 'dd.fcsjActualCell', function () {
112   - var that = this;
113   - $(that).qtip({
114   - show: true,
115   - content: {
116   - text: function (e) {
117   - var lineCode = $(that).parents('li.line_schedule').data('id')
118   - , id = $(that).parents('dl').data('id')
119   - , sch = line2Schedule[lineCode][id];
120   - return temps['sfsj_sch-detail-temp'](sch);
121   - }
122   - }
123   - , style: {
124   - classes: 'qtip-dark qtip-rounded qtip-shadow'
125   - },
126   - hide: {
127   - fixed: true,
128   - delay: 300
129   - },
130   - position: {
131   - target: that,
132   - my: 'center left',
133   - at: 'center right'
134   - },
135   - events: {
136   - hidden: function (event, api) {
137   - $(this).qtip('destroy', true);
138   - }
139   - }
140   - });
141   - });
142   -
143   - //双击
144   - gb_schedule_table_dbclick.sfsjCellClick($('dd.fcsjActualCell'));
145   - }
146 109  
147 110 //重置序号
148 111 var reset_seq_no = function (dls) {
... ... @@ -174,16 +137,21 @@ var gb_schedule_table = (function () {
174 137  
175 138 //新增一个班次,附带更新的班次
176 139 var insertSchedule = function (sch, upArr) {
  140 + var xls = {};
  141 + xls[sch.xlBm] = 1;
177 142 line2Schedule[sch.xlBm][sch.id] = sch;
178 143 //update
179 144 if (isArray(upArr)) {
180 145 $.each(upArr, function () {
181 146 line2Schedule[this.xlBm][this.id] = this;
  147 + xls[this.xlBm] = 1;
182 148 });
183 149 }
184 150  
185 151 //重新渲染表格
186   - reRenderTable(sch.xlBm);
  152 + for(var xlBm in xls){
  153 + reRenderTable(sch.xlBm);
  154 + }
187 155 //定位到新添加的班次
188 156 scroToDl(sch);
189 157 };
... ... @@ -350,6 +318,39 @@ var gb_schedule_table = (function () {
350 318 markerLastSch([sch]);
351 319 };
352 320  
  321 + //单击实发单元格显示详细信息
  322 + $(document).on('click', 'dd.fcsjActualCell', function () {
  323 + var that = this;
  324 + $(that).qtip({
  325 + show: true,
  326 + content: {
  327 + text: function (e) {
  328 + var lineCode = $(that).parents('li.line_schedule').data('id')
  329 + , id = $(that).parents('dl').data('id')
  330 + , sch = line2Schedule[lineCode][id];
  331 + return temps['sfsj_sch-detail-temp'](sch);
  332 + }
  333 + }
  334 + , style: {
  335 + classes: 'qtip-dark qtip-rounded qtip-shadow'
  336 + },
  337 + hide: {
  338 + fixed: true,
  339 + delay: 300
  340 + },
  341 + position: {
  342 + target: that,
  343 + my: 'center left',
  344 + at: 'center right'
  345 + },
  346 + events: {
  347 + hidden: function (event, api) {
  348 + $(this).qtip('destroy', true);
  349 + }
  350 + }
  351 + });
  352 + });
  353 +
353 354 //拖拽选中...
354 355 var seq_nos = '.line-schedule-table .ct_table_body>dl>dd.seq_no';
355 356 var drag_strat;
... ... @@ -601,6 +602,14 @@ var gb_schedule_table = (function () {
601 602 return dfCell;
602 603 };
603 604  
  605 +
  606 + /**
  607 + * 刷新页面的所有线路班次
  608 + */
  609 + var refreshAll = function () {
  610 + show();
  611 + };
  612 +
604 613 return {
605 614 show: show,
606 615 findScheduleByLine: findScheduleByLine,
... ... @@ -620,6 +629,7 @@ var gb_schedule_table = (function () {
620 629 addRemarks: addRemarks,
621 630 reLoadAndRefresh: reLoadAndRefresh,
622 631 showLateBadge: showLateBadge,
623   - cancelLateBadge: cancelLateBadge
  632 + cancelLateBadge: cancelLateBadge,
  633 + refreshAll: refreshAll
624 634 };
625 635 })();
... ...
src/main/resources/static/real_control_v2/js/line_schedule/search.js
... ... @@ -78,6 +78,8 @@ var gb_sch_search = (function() {
78 78 //uikit 会记住上一次搜索值,触发keyup以清空该值
79 79 $('.sch-search-autocom input', cont).val('').trigger('keyup').parent().removeClass('active');
80 80 $('.line-schedule-table .ct_table_body dl._search_hide', cont).removeClass('_search_hide');
  81 + //更新滚动条高度
  82 + $('.ct_table_wrap', cont).perfectScrollbar('update');
81 83 }
82 84  
83 85 function execSch(gps) {
... ... @@ -109,6 +111,9 @@ var gb_sch_search = (function() {
109 111 if (car != $(dds[2]).data('nbbm'))
110 112 $(this).addClass('_search_hide');
111 113 });
  114 +
  115 + //滚动条置顶
  116 + $(tbody).parents('.ct_table_wrap')[0].scrollTop = 0;
112 117 }
113 118  
114 119 return {
... ...
src/main/resources/static/real_control_v2/js/main.js
... ... @@ -171,8 +171,8 @@ var disabled_submit_btn = function (form) {
171 171 function showUpdateDescription() {
172 172 //更新说明
173 173 var updateDescription = {
174   - date: '2017-04-19',
175   - text: '<h5>加油子任务改为空驶进出场子任务</h5><h5>计划烂班时调整说明必填</h5><h5>连接断开(横幅变红)后会自动尝试重连</h5><h5>误点调整功能加入,线上测试一天,20号再用</h5>'
  174 + date: '2017-04-20',
  175 + text: '<h5>现在可以在轨迹回放里看到停车场位置和多边形电子围栏</h5><h5>区间调头子任务,可以勾选“调头后空驶回起点”</h5>'
176 176 };
177 177  
178 178 var storage = window.localStorage
... ...
src/main/resources/static/real_control_v2/js/websocket/sch_websocket.js
... ... @@ -9,10 +9,14 @@ var gb_sch_websocket = (function () {
9 9 var recInterval = null;
10 10 var reConnSpace = 1500;//重连间隔
11 11 var reConnCount; //重连次数
12   - var maxReConn = 10; //最多重连次数
  12 + var maxReConn = 6; //最多重连次数
13 13 var new_conn = function () {
14 14 schSock = new SockJS('/sockjs/realcontrol');
15 15 schSock.onopen = function (e) {
  16 + if(reConnCount && reConnCount > 1){
  17 + gb_schedule_table.refreshAll();
  18 + console.log('重新连接,刷新班次');
  19 + }
16 20 reConnCount = 1;
17 21 clearInterval(recInterval);
18 22 console.log('webSocket[realcontrol] onopen');
... ... @@ -101,6 +105,7 @@ var gb_sch_websocket = (function () {
101 105 * @param msg
102 106 */
103 107 var autoWdtz = function (msg) {
  108 + debugger
104 109 var schId = msg.id;
105 110 var minute = msg.minute;
106 111 var lineCode = msg.lineCode;
... ...
src/main/resources/static/real_control_v2/mapmonitor/fragments/playback_v2/main.html
... ... @@ -169,7 +169,14 @@
169 169 <input type="checkbox" name="stationName"> 站点名称
170 170 </label>
171 171 <label>
172   - <a>停车场 <i class="uk-icon-angle-down"></i></a>
  172 + <div class="uk-button-dropdown" data-uk-dropdown>
  173 + <a>停车场 <i class="uk-icon-angle-down"></i></a>
  174 + <div class="uk-dropdown uk-dropdown-scrollable" style="max-height: 300px;">
  175 + <ul class="uk-nav uk-nav-dropdown parks_list">
  176 +
  177 + </ul>
  178 + </div>
  179 + </div>
173 180 </label>
174 181 </form>
175 182 </div>
... ... @@ -249,6 +256,15 @@
249 256 </dl>
250 257 {{/each}}
251 258 </script>
  259 +
  260 + <script id="pb_park_list_dropdown-temp" type="text/html">
  261 + {{each list as p i}}
  262 + <li data-code="{{p.parkCode}}" ><a>{{p.parkName}}</a></li>
  263 + {{if i == 0}}
  264 + <li class="uk-nav-divider"></li>
  265 + {{/if}}
  266 + {{/each}}
  267 + </script>
252 268 <script>
253 269 (function () {
254 270 var modal = '#map-playback2-modal', gpsArray;
... ... @@ -713,6 +729,8 @@
713 729 var routes;//路段
714 730 var stations;//站点
715 731 var parks;//停车场
  732 + //停车场编码和Polygon对照
  733 + var parkPolygons={};
716 734  
717 735 var initData = function (rs) {
718 736 var gpsArray = rs.list;
... ... @@ -721,13 +739,70 @@
721 739 var lineCode = gpsArray[0].lineId;
722 740 //从地图模块获取站点数据
723 741 stations = gb_map_spatial_data.getStationArray(lineCode);
724   - //从地图模块获取停车场数据
725   - parks = gb_map_spatial_data.carparkArray();
  742 + //停车场下拉菜单
  743 + initDropdownList(lineCode);
  744 +
726 745 //从localStorage 获取路段
727 746 routes = JSON.parse(storage.getItem(lineCode + '_route'));
728 747 routes = [routes.up_bd, routes.down_bd];
729 748 };
730 749  
  750 + /**
  751 + * 初始化停车场下拉菜单
  752 + */
  753 + var initDropdownList = function (lineCode) {
  754 + //从地图模块获取停车场数据
  755 + parks = gb_map_spatial_data.carparkArray();
  756 + console.log('parksparks', parks);
  757 + //将线路标准停车场排在第一个
  758 + var information = gb_data_basic.getLineInformation(lineCode);
  759 + var index;
  760 + for(var i = 0,p; p=parks[i++];){
  761 + if(p.parkCode == information.carPark){
  762 + index = i - 1;
  763 + break;
  764 + }
  765 + }
  766 + parks[index] = parks.splice(0, 1 , parks[index])[0];
  767 + //渲染
  768 + var htmlStr = template('pb_park_list_dropdown-temp', {list: parks});
  769 + $('.buffer_area_form .parks_list', modal).html(htmlStr);
  770 +
  771 + //停车场点击
  772 + $('.buffer_area_form .parks_list>li', modal).on('click', function () {
  773 + var code = $(this).data('code');
  774 +
  775 + if(!parkPolygons[code]){
  776 + var park;
  777 + $.each(parks, function () {
  778 + if(this.parkCode==code){park = this;return false;}
  779 + });
  780 +
  781 + transMultiWGSToBd(park);
  782 + var polygon = new BMap.Polygon(park.bdPoints, {strokeColor: 'red', strokeWeight: 1});
  783 + map.addOverlay(polygon);
  784 + parkPolygons[code] = polygon;
  785 + //中心点
  786 + var ts = park.gCenterPoint.split(' ')
  787 + ,coord = TransGPS.wgsToBD(parseFloat(ts[1]), parseFloat(ts[0]));
  788 + polygon._centerPoint = new BMap.Point(coord.lng, coord.lat);
  789 + //绘制名称label
  790 + var style = {backgroundColor: "rgba(255, 255, 255, 0.69)",color : "red", borderColor: "red", fontSize : "12px", height : "16px", lineHeight : "16px", fontFamily:"微软雅黑"}
  791 + var width = park.parkName.length * 12;
  792 + var label = new BMap.Label(park.parkName, {
  793 + position:polygon._centerPoint,
  794 + offset: new BMap.Size(-(width / 2), -27)
  795 + });
  796 + label.setStyle(style);
  797 + map.addOverlay(label);
  798 + }
  799 +
  800 + //定位到polygon
  801 + var polygon=parkPolygons[code];
  802 + map.panTo(polygon._centerPoint);
  803 + });
  804 + };
  805 +
731 806  
732 807 /**
733 808 * 更新车辆位置
... ... @@ -866,8 +941,10 @@
866 941 map.addOverlay(circle);
867 942 };
868 943  
869   - var drawPolygon = function () {
870   -
  944 + var drawPolygon = function (station) {
  945 + transMultiWGSToBd(station);
  946 + var polygon = new BMap.Polygon(station.bdPoints, {strokeColor: '#000000', strokeWeight: 1});
  947 + map.addOverlay(polygon);
871 948 };
872 949  
873 950 /**
... ... @@ -883,6 +960,7 @@
883 960 trailArray=[];
884 961 trailPolyline = null;
885 962 gpsMarker = null;
  963 + parkPolygons = {};
886 964 };
887 965  
888 966 /**
... ... @@ -1012,6 +1090,18 @@
1012 1090 reset: reset
1013 1091 }
1014 1092 })();
  1093 +
  1094 + function transMultiWGSToBd(obj) {
  1095 + if(!obj._gPoints)
  1096 + return;
  1097 + var bdPoints = [],coord;
  1098 + $.each(obj._gPoints, function () {
  1099 + coord = TransGPS.wgsToBD(this.lat, this.lng);
  1100 + bdPoints.push(new BMap.Point(coord.lng, coord.lat));
  1101 + });
  1102 +
  1103 + obj.bdPoints=bdPoints;
  1104 + }
1015 1105 })();
1016 1106 </script>
1017 1107 </div>
1018 1108 \ No newline at end of file
... ...
src/test/resources/testdata/d2.xml
1   -<?xml version='1.0' encoding='UTF-8'?>
2   -<dataset>
3   - <!-- 用户(对应实体 SysUser) -->
4   - <bsth_c_sys_user id="1" user_name="admin" name="系统管理员" create_date="2000-01-01" enabled="1" last_login_date="2000-01-01" />
5   -
6   - <!-- 公司(对应实体 Business) -->
7   - <bsth_c_business id="1" business_name="公交公司" business_code="88" up_code="0" create_by="1" create_date="2000-01-01" update_by="1" update_date="2000-01-01" />
8   - <bsth_c_business id="2" business_name="金高公司" business_code="22" up_code="88" create_by="1" create_date="2000-01-01" update_by="1" update_date="2000-01-01" />
9   - <bsth_c_business id="3" business_name="杨高公司" business_code="05" up_code="88" create_by="1" create_date="2000-01-01" update_by="1" update_date="2000-01-01" />
10   - <bsth_c_business id="4" business_name="上南公司" business_code="55" up_code="88" create_by="1" create_date="2000-01-01" update_by="1" update_date="2000-01-01" />
11   - <bsth_c_business id="5" business_name="南汇公司" business_code="26" up_code="88" create_by="1" create_date="2000-01-01" update_by="1" update_date="2000-01-01" />
12   -
13   - <!-- 线路(对应实体 Line) -->
14   - <bsth_c_line id="1" name="测试线路1" line_code="l1" destroy="0" create_by="1" create_date="2000-01-01" update_by="1" update_date="2000-01-01" />
15   - <!-- 线路标准(对应实体 LineInformation) -->
16   - <bsth_c_line_information id="1" line="1" create_by="1" create_date="2000-01-01" update_by="1" update_date="2000-01-01" />
17   -
18   - <!-- 站点(对应实体 Station) -->
19   - <bsth_c_station id="1" station_name="站1" station_cod="#112233" create_by="1" create_date="2000-01-01" update_by="1" update_date="2000-01-01" />
20   - <bsth_c_station id="2" station_name="站2" station_cod="#223344" create_by="1" create_date="2000-01-01" update_by="1" update_date="2000-01-01" />
21   - <!-- 站点路由(对应实体 StationRoute)-->
22   - <bsth_c_stationroute id="1" line="1" station="1" station_name="上行起点站" station_mark="B" directions="0" destroy="0" create_by="1" create_date="2000-01-01" update_by="1" update_date="2000-01-01" />
23   - <bsth_c_stationroute id="2" line="1" station="2" station_name="上行终点站" station_mark="E" directions="0" destroy="0" create_by="1" create_date="2000-01-01" update_by="1" update_date="2000-01-01" />
24   - <bsth_c_stationroute id="3" line="1" station="2" station_name="下行起点站" station_mark="B" directions="1" destroy="0" create_by="1" create_date="2000-01-01" update_by="1" update_date="2000-01-01" />
25   - <bsth_c_stationroute id="4" line="1" station="1" station_name="下行终点站" station_mark="E" directions="1" destroy="0" create_by="1" create_date="2000-01-01" update_by="1" update_date="2000-01-01" />
26   -
27   - <!-- 停车场(对应实体) -->
28   -
29   - <!-- TODO -->
30   -
  1 +<?xml version='1.0' encoding='UTF-8'?>
  2 +<dataset>
  3 + <!-- 用户(对应实体 SysUser) -->
  4 + <bsth_c_sys_user id="1" user_name="admin" name="系统管理员" create_date="2000-01-01" enabled="1" last_login_date="2000-01-01" />
  5 +
  6 + <!-- 公司(对应实体 Business) -->
  7 + <bsth_c_business id="1" business_name="公交公司" business_code="88" up_code="0" create_by="1" create_date="2000-01-01" update_by="1" update_date="2000-01-01" />
  8 + <bsth_c_business id="2" business_name="金高公司" business_code="22" up_code="88" create_by="1" create_date="2000-01-01" update_by="1" update_date="2000-01-01" />
  9 + <bsth_c_business id="3" business_name="杨高公司" business_code="05" up_code="88" create_by="1" create_date="2000-01-01" update_by="1" update_date="2000-01-01" />
  10 + <bsth_c_business id="4" business_name="上南公司" business_code="55" up_code="88" create_by="1" create_date="2000-01-01" update_by="1" update_date="2000-01-01" />
  11 + <bsth_c_business id="5" business_name="南汇公司" business_code="26" up_code="88" create_by="1" create_date="2000-01-01" update_by="1" update_date="2000-01-01" />
  12 +
  13 + <!-- 线路(对应实体 Line) -->
  14 + <bsth_c_line id="1" name="测试线路1" line_code="l1" destroy="0" create_by="1" create_date="2000-01-01" update_by="1" update_date="2000-01-01" />
  15 + <!-- 线路标准(对应实体 LineInformation) -->
  16 + <bsth_c_line_information id="1" line="1" create_by="1" create_date="2000-01-01" update_by="1" update_date="2000-01-01" />
  17 +
  18 + <!-- 站点(对应实体 Station) -->
  19 + <bsth_c_station id="1" station_name="站1" station_cod="#112233" create_by="1" create_date="2000-01-01" update_by="1" update_date="2000-01-01" />
  20 + <bsth_c_station id="2" station_name="站2" station_cod="#223344" create_by="1" create_date="2000-01-01" update_by="1" update_date="2000-01-01" />
  21 + <!-- 站点路由(对应实体 StationRoute)-->
  22 + <bsth_c_stationroute id="1" line="1" station="1" station_name="上行起点站" station_mark="B" directions="0" destroy="0" create_by="1" create_date="2000-01-01" update_by="1" update_date="2000-01-01" />
  23 + <bsth_c_stationroute id="2" line="1" station="2" station_name="上行终点站" station_mark="E" directions="0" destroy="0" create_by="1" create_date="2000-01-01" update_by="1" update_date="2000-01-01" />
  24 + <bsth_c_stationroute id="3" line="1" station="2" station_name="下行起点站" station_mark="B" directions="1" destroy="0" create_by="1" create_date="2000-01-01" update_by="1" update_date="2000-01-01" />
  25 + <bsth_c_stationroute id="4" line="1" station="1" station_name="下行终点站" station_mark="E" directions="1" destroy="0" create_by="1" create_date="2000-01-01" update_by="1" update_date="2000-01-01" />
  26 +
  27 + <!-- 停车场(对应实体) -->
  28 +
  29 + <!-- TODO -->
  30 +
31 31 </dataset>
32 32 \ No newline at end of file
... ...
src/test/resources/testdata/new.txt
1   -1、车辆配置,每辆车都可以配置单独的停车点及相关数据,并提供两种设置模式(早晚,复驶)
2   -2、规则管理,修改规则的界面图形化,更加方便修改
3   -3、时刻表管理,导入时刻表xls做严格数据判定,时刻表明细修改提供跟方便的图形化修改方式
4   -4、排班计划管理,提供每次排班的操作信息,时间段,所使用的时刻表,可以查看具体的排班明细(细化到班次)
5   - 生成排班时,提供详细的时刻表统计信息,提供两种排班模式(历史排班优先,规则优先)
  1 +1、车辆配置,每辆车都可以配置单独的停车点及相关数据,并提供两种设置模式(早晚,复驶)
  2 +2、规则管理,修改规则的界面图形化,更加方便修改
  3 +3、时刻表管理,导入时刻表xls做严格数据判定,时刻表明细修改提供跟方便的图形化修改方式
  4 +4、排班计划管理,提供每次排班的操作信息,时间段,所使用的时刻表,可以查看具体的排班明细(细化到班次)
  5 + 生成排班时,提供详细的时刻表统计信息,提供两种排班模式(历史排班优先,规则优先)
6 6 5、调度值勤日报,列出每天的基于线路,路牌的排班统计,可以更换车辆,人员
7 7 \ No newline at end of file
... ...
src/test/resources/testdata/test3.txt
1   -select count(*) from bsth_c_s_sp_rule_rst
2   -
3   -show index from bsth_c_s_sp_rule_rst
4   -
5   -select * from bsth_c_s_sp_rule_rst t
6   -where not exists (select 1 from bsth_c_s_sp_rule_rst
7   -where create_date > t.create_date and schedule_date < '2017-04-17' )
8   -and t.xl_id = 10407 and t.schedule_date < '2017-04-17'
9   -
10   -show index from bsth_c_s_sp_rule_rst
11   -
12   -select * from bsth_c_s_sp_rule_rst
13   -where xl_id = 1
14   -
15   -select * from bsth_c_s_sp_rule_rst t
16   -where t.xl_id = 10407 and t.schedule_date < '2017-04-17'
17   -
18   -
19   -select count(distinct concat(xl_id ,schedule_date, create_date)) / count(*) from bsth_c_s_sp_rule_rst
20   -
21   -select * from bsth_c_s_sp_rule_rst a
22   -where exists (select 1 from
23   -(select t.rule_id as rid, max(t.schedule_date) as sd from bsth_c_s_sp_rule_rst t
24   -where t.xl_id = 10407 and t.schedule_date < '2017-04-17'
25   -group by t.rule_id) a2 where a.rule_id = rid and a.schedule_date = sd)
  1 +select count(*) from bsth_c_s_sp_rule_rst
  2 +
  3 +show index from bsth_c_s_sp_rule_rst
  4 +
  5 +select * from bsth_c_s_sp_rule_rst t
  6 +where not exists (select 1 from bsth_c_s_sp_rule_rst
  7 +where create_date > t.create_date and schedule_date < '2017-04-17' )
  8 +and t.xl_id = 10407 and t.schedule_date < '2017-04-17'
  9 +
  10 +show index from bsth_c_s_sp_rule_rst
  11 +
  12 +select * from bsth_c_s_sp_rule_rst
  13 +where xl_id = 1
  14 +
  15 +select * from bsth_c_s_sp_rule_rst t
  16 +where t.xl_id = 10407 and t.schedule_date < '2017-04-17'
  17 +
  18 +
  19 +select count(distinct concat(xl_id ,schedule_date, create_date)) / count(*) from bsth_c_s_sp_rule_rst
  20 +
  21 +select * from bsth_c_s_sp_rule_rst a
  22 +where exists (select 1 from
  23 +(select t.rule_id as rid, max(t.schedule_date) as sd from bsth_c_s_sp_rule_rst t
  24 +where t.xl_id = 10407 and t.schedule_date < '2017-04-17'
  25 +group by t.rule_id) a2 where a.rule_id = rid and a.schedule_date = sd)
... ...
src/test/resources/testdata/test4.txt
1   -select count(*) from bsth_c_s_ttinfo_detail
2   -
3   -select * from bsth_c_s_ttinfo_detail
4   -
5   -select * from bsth_c_s_ttinfo_detail where zdz_code is null;
6   -
7   -select * from bsth_c_station;
8   -
9   -select * from bsth_c_car_park;
10   -
11   -update bsth_c_s_ttinfo_detail a
12   -set a.qdz_code = (select station_cod from bsth_c_station b where a.qdz = b.id)
13   -where a.bc_type <> 'out'
14   -
15   -update bsth_c_s_ttinfo_detail a
16   -set a.qdz_name = (select station_name from bsth_c_station b where a.qdz = b.id)
17   -where a.bc_type <> 'out'
18   -
19   -update bsth_c_s_ttinfo_detail a
20   -set a.zdz_code = (select station_cod from bsth_c_station b where a.zdz = b.id)
21   -where a.bc_type <> 'in'
22   -
23   -update bsth_c_s_ttinfo_detail a
24   -set a.zdz_name = (select station_name from bsth_c_station b where a.zdz = b.id)
25   -where a.bc_type <> 'in'
26   -
27   -update bsth_c_s_ttinfo_detail a
28   -set a.qdz_code = (select park_code from bsth_c_car_park b where a.tcc = b.id)
29   -where a.bc_type = 'out'
30   -
31   -update bsth_c_s_ttinfo_detail a
32   -set a.qdz_name = (select park_name from bsth_c_car_park b where a.tcc = b.id)
33   -where a.bc_type = 'out'
34   -
35   -update bsth_c_s_ttinfo_detail a
36   -set a.zdz_code = (select park_code from bsth_c_car_park b where a.tcc = b.id)
37   -where a.bc_type = 'in'
38   -
39   -update bsth_c_s_ttinfo_detail a
40   -set a.zdz_name = (select park_name from bsth_c_car_park b where a.tcc = b.id)
41   -where a.bc_type = 'in'
42   -
43   -commit;
44   -
45   -
46   -
  1 +select count(*) from bsth_c_s_ttinfo_detail
  2 +
  3 +select * from bsth_c_s_ttinfo_detail
  4 +
  5 +select * from bsth_c_s_ttinfo_detail where zdz_code is null;
  6 +
  7 +select * from bsth_c_station;
  8 +
  9 +select * from bsth_c_car_park;
  10 +
  11 +update bsth_c_s_ttinfo_detail a
  12 +set a.qdz_code = (select station_cod from bsth_c_station b where a.qdz = b.id)
  13 +where a.bc_type <> 'out'
  14 +
  15 +update bsth_c_s_ttinfo_detail a
  16 +set a.qdz_name = (select station_name from bsth_c_station b where a.qdz = b.id)
  17 +where a.bc_type <> 'out'
  18 +
  19 +update bsth_c_s_ttinfo_detail a
  20 +set a.zdz_code = (select station_cod from bsth_c_station b where a.zdz = b.id)
  21 +where a.bc_type <> 'in'
  22 +
  23 +update bsth_c_s_ttinfo_detail a
  24 +set a.zdz_name = (select station_name from bsth_c_station b where a.zdz = b.id)
  25 +where a.bc_type <> 'in'
  26 +
  27 +update bsth_c_s_ttinfo_detail a
  28 +set a.qdz_code = (select park_code from bsth_c_car_park b where a.tcc = b.id)
  29 +where a.bc_type = 'out'
  30 +
  31 +update bsth_c_s_ttinfo_detail a
  32 +set a.qdz_name = (select park_name from bsth_c_car_park b where a.tcc = b.id)
  33 +where a.bc_type = 'out'
  34 +
  35 +update bsth_c_s_ttinfo_detail a
  36 +set a.zdz_code = (select park_code from bsth_c_car_park b where a.tcc = b.id)
  37 +where a.bc_type = 'in'
  38 +
  39 +update bsth_c_s_ttinfo_detail a
  40 +set a.zdz_name = (select park_name from bsth_c_car_park b where a.tcc = b.id)
  41 +where a.bc_type = 'in'
  42 +
  43 +commit;
  44 +
  45 +
  46 +
... ...