Commit a2558d9df711f644c8b485430852df7b1df5ba0f

Authored by zb
2 parents 54203076 336b258c

Merge branch 'minhang' of git@192.168.168.201:panzhaov5/bsth_control.git into minhang

... ... @@ -299,6 +299,11 @@
299 299 <version>3.3.0</version>
300 300 </dependency>
301 301  
  302 + <dependency>
  303 + <groupId>com.github.stuxuhai</groupId>
  304 + <artifactId>jpinyin</artifactId>
  305 + <version>1.1.8</version>
  306 + </dependency>
302 307 </dependencies>
303 308  
304 309 <dependencyManagement>
... ...
src/main/java/com/bsth/controller/PersonnelController.java
1 1 package com.bsth.controller;
2 2  
  3 +import com.bsth.common.Constants;
  4 +import com.bsth.data.pinyin.PersionPinYin;
  5 +import com.bsth.data.pinyin.PersionPinYinBuffer;
3 6 import com.bsth.entity.Personnel;
  7 +import com.bsth.entity.sys.CompanyAuthority;
4 8 import com.bsth.service.PersonnelService;
5 9 import org.springframework.beans.factory.annotation.Autowired;
6 10 import org.springframework.web.bind.annotation.RequestMapping;
... ... @@ -8,6 +12,7 @@ import org.springframework.web.bind.annotation.RequestMethod;
8 12 import org.springframework.web.bind.annotation.RequestParam;
9 13 import org.springframework.web.bind.annotation.RestController;
10 14  
  15 +import javax.servlet.http.HttpServletRequest;
11 16 import java.util.List;
12 17 import java.util.Map;
13 18  
... ... @@ -21,8 +26,22 @@ public class PersonnelController extends BaseController&lt;Personnel, Integer&gt; {
21 26 @Autowired
22 27 private PersonnelService service;
23 28  
  29 + @Autowired
  30 + PersionPinYinBuffer persionPinYinBuffer;
  31 +
24 32 @RequestMapping(value = "/sreachPersonnel", method = RequestMethod.GET)
25 33 public List<Map<String, String>> sreachPersonnel(@RequestParam String jobCode) {
26 34 return service.sreachPersonnel(jobCode);
27 35 }
  36 +
  37 + @RequestMapping(value = "/all_py", method = RequestMethod.GET)
  38 + public List<PersionPinYin> findAll_PY(){
  39 + return persionPinYinBuffer.getAll();
  40 + }
  41 +
  42 + @RequestMapping(value = "/list_py", method = RequestMethod.GET)
  43 + public List<PersionPinYin> findByCurrUser_PY(HttpServletRequest request){
  44 + List<CompanyAuthority> auths = (List<CompanyAuthority>) request.getSession().getAttribute(Constants.COMPANY_AUTHORITYS);
  45 + return persionPinYinBuffer.getAll(auths);
  46 + }
28 47 }
... ...
src/main/java/com/bsth/controller/realcontrol/BasicDataController.java
1 1 package com.bsth.controller.realcontrol;
2 2  
3   -import com.alibaba.fastjson.JSON;
4 3 import com.alibaba.fastjson.serializer.PropertyFilter;
5 4 import com.bsth.common.ResponseCode;
6 5 import com.bsth.data.BasicData;
... ... @@ -60,16 +59,16 @@ public class BasicDataController {
60 59 return rs;
61 60 }
62 61  
63   - @RequestMapping("/personnel")
  62 + /*@RequestMapping("/personnel")
64 63 public Map<String, Object> findPersonnelInfo(){
65 64 Map<String, Object> rs = new HashMap<>();
66 65 PersonnelFieldFilter filter=new PersonnelFieldFilter();
67 66 //驾驶员
68 67 rs.put("jsy", JSON.parse(JSON.toJSONString(BasicData.jsyMap.values(), filter)));
69 68 //售票员
70   - rs.put("spy", JSON.parse(JSON.toJSONString(BasicData.spyMap.values(), filter)));
  69 + rs.put("spy", JSON.parse(JSON.toJSONString(BasicData.spyMap.values(), filter)));*//*
71 70 return rs;
72   - }
  71 + }*/
73 72  
74 73 @RequestMapping("/all_personnel")
75 74 public Map<String, String> all_personnel(){
... ... @@ -179,15 +178,12 @@ public class BasicDataController {
179 178 map.put("lineCode", line.getLineCode());
180 179 rs.add(map);
181 180 }
182   - //listMultimap.put(line.getName(), nbbm);
183 181 }
184   - //return listMultimap.asMap();
185   -
186 182 return rs;
187 183 }
188 184  
189 185 /**
190   - * 获取站点和停车场对照表
  186 + * 获取站点和停车场历时公里对照表
191 187 * @param idx
192 188 * @return
193 189 */
... ...
src/main/java/com/bsth/data/BasicData.java
... ... @@ -2,6 +2,7 @@ package com.bsth.data;
2 2  
3 3 import com.bsth.Application;
4 4 import com.bsth.data.gpsdata.arrival.GeoCacheData;
  5 +import com.bsth.data.pinyin.PersionPinYinBuffer;
5 6 import com.bsth.entity.*;
6 7 import com.bsth.entity.schedule.CarConfigInfo;
7 8 import com.bsth.repository.*;
... ... @@ -64,10 +65,10 @@ public class BasicData implements CommandLineRunner {
64 65 //线路Code和shangHaiLinecode 对照
65 66 public static Map<String, String> lineCode2ShangHaiCodeMap;
66 67  
67   - //驾驶员工号 和 personnel 对象映射
  68 + /*//驾驶员工号 和 personnel 对象映射
68 69 public static Map<String, Personnel> jsyMap;
69 70 //售票员工号 和 personnel 对象映射
70   - public static Map<String, Personnel> spyMap;
  71 + public static Map<String, Personnel> spyMap;*/
71 72 //所以员工和personnerl 对象映射
72 73 public static Map<String, Personnel> perMap;
73 74 //全量员工 工号和姓名对照
... ... @@ -137,6 +138,9 @@ public class BasicData implements CommandLineRunner {
137 138 @Autowired
138 139 Station2ParkBuffer station2ParkBuffer;
139 140  
  141 + @Autowired
  142 + PersionPinYinBuffer persionPinYinBuffer;
  143 +
140 144  
141 145 @Override
142 146 public void run() {
... ... @@ -165,6 +169,8 @@ public class BasicData implements CommandLineRunner {
165 169 geoCacheData.loadData();
166 170 station2ParkBuffer.saveAll();
167 171 logger.info("加载基础数据成功!,");
  172 + //人员拼音转换
  173 + persionPinYinBuffer.refresh();
168 174 } catch (Exception e) {
169 175 logger.error("加载基础数据时出现异常,", e);
170 176 }
... ... @@ -321,7 +327,7 @@ public class BasicData implements CommandLineRunner {
321 327 public void loadPersonnelInfo() {
322 328 Iterator<Personnel> iterator = personnelRepository.findAll().iterator();
323 329  
324   - Map<String, Personnel> jsyTempMap = new HashMap<>(), spyTempMap = new HashMap<>(),perTempMap=new HashMap<>();
  330 + Map<String, Personnel> /*jsyTempMap = new HashMap<>(), spyTempMap = new HashMap<>(),*/perTempMap=new HashMap<>();
325 331 Map<String, String> allPersonMap = new HashMap<>();
326 332  
327 333 Personnel p;
... ... @@ -333,20 +339,20 @@ public class BasicData implements CommandLineRunner {
333 339 if (StringUtils.isEmpty(jobCode))
334 340 continue;
335 341  
336   - if (p.getPosts() != null) {
  342 + /*if (p.getPosts() != null) {
337 343 if (p.getPosts().equals("1"))
338 344 jsyTempMap.put(jobCode, p);
339 345 else if (p.getPosts().equals("2"))
340 346 spyTempMap.put(jobCode, p);
341   - }
  347 + }*/
342 348  
343 349 perTempMap.put(jobCode, p);
344 350  
345 351 allPersonMap.put(jobCode, p.getPersonnelName());
346 352 }
347 353  
348   - jsyMap = jsyTempMap;
349   - spyMap = spyTempMap;
  354 + //jsyMap = jsyTempMap;
  355 + //spyMap = spyTempMap;
350 356 allPerson = allPersonMap;
351 357 perMap = perTempMap;
352 358 }
... ...
src/main/java/com/bsth/data/pinyin/PersionPinYin.java 0 → 100644
  1 +package com.bsth.data.pinyin;
  2 +
  3 +import com.fasterxml.jackson.annotation.JsonIgnore;
  4 +
  5 +/**
  6 + * 人员拼音映射
  7 + * Created by panzhao on 2017/7/19.
  8 + */
  9 +public class PersionPinYin {
  10 +
  11 + /**
  12 + * Id
  13 + */
  14 + private Integer id;
  15 +
  16 + /**
  17 + * 工号
  18 + */
  19 + private String workId;
  20 +
  21 + /**
  22 + * 姓名
  23 + */
  24 + private String name;
  25 +
  26 + /**
  27 + * 全拼
  28 + */
  29 + private String fullChars;
  30 +
  31 + /**
  32 + * 简便
  33 + */
  34 + private String camelChars;
  35 +
  36 + /**
  37 + * 所属公司编码
  38 + */
  39 + @JsonIgnore
  40 + private String companyId;
  41 +
  42 + /**
  43 + * 所属分公司编码
  44 + */
  45 + @JsonIgnore
  46 + private String fgsCompanyId;
  47 +
  48 + public String getWorkId() {
  49 + return workId;
  50 + }
  51 +
  52 + public void setWorkId(String workId) {
  53 + this.workId = workId;
  54 + }
  55 +
  56 + public String getName() {
  57 + return name;
  58 + }
  59 +
  60 + public void setName(String name) {
  61 + this.name = name;
  62 + }
  63 +
  64 + public String getFullChars() {
  65 + return fullChars;
  66 + }
  67 +
  68 + public void setFullChars(String fullChars) {
  69 + this.fullChars = fullChars;
  70 + }
  71 +
  72 + public String getCamelChars() {
  73 + return camelChars;
  74 + }
  75 +
  76 + public void setCamelChars(String camelChars) {
  77 + this.camelChars = camelChars;
  78 + }
  79 +
  80 + public String getCompanyId() {
  81 + return companyId;
  82 + }
  83 +
  84 + public void setCompanyId(String companyId) {
  85 + this.companyId = companyId;
  86 + }
  87 +
  88 + public String getFgsCompanyId() {
  89 + return fgsCompanyId;
  90 + }
  91 +
  92 + public void setFgsCompanyId(String fgsCompanyId) {
  93 + this.fgsCompanyId = fgsCompanyId;
  94 + }
  95 +
  96 + public Integer getId() {
  97 + return id;
  98 + }
  99 +
  100 + public void setId(Integer id) {
  101 + this.id = id;
  102 + }
  103 +}
... ...
src/main/java/com/bsth/data/pinyin/PersionPinYinBuffer.java 0 → 100644
  1 +package com.bsth.data.pinyin;
  2 +
  3 +import com.bsth.data.BasicData;
  4 +import com.bsth.entity.Personnel;
  5 +import com.bsth.entity.sys.CompanyAuthority;
  6 +import com.github.stuxuhai.jpinyin.PinyinException;
  7 +import com.github.stuxuhai.jpinyin.PinyinFormat;
  8 +import com.github.stuxuhai.jpinyin.PinyinHelper;
  9 +import com.google.common.collect.ArrayListMultimap;
  10 +import org.slf4j.Logger;
  11 +import org.slf4j.LoggerFactory;
  12 +import org.springframework.stereotype.Component;
  13 +
  14 +import java.util.ArrayList;
  15 +import java.util.Collection;
  16 +import java.util.List;
  17 +
  18 +/**
  19 + * 人员拼音数据映射缓存
  20 + * Created by panzhao on 2017/7/19.
  21 + */
  22 +@Component
  23 +public class PersionPinYinBuffer {
  24 +
  25 + static ArrayListMultimap<String, PersionPinYin> listMultimap = ArrayListMultimap.create();
  26 + static List<PersionPinYin> all = new ArrayList<>();
  27 +
  28 + Logger log = LoggerFactory.getLogger(this.getClass());
  29 +
  30 +
  31 + public void refresh(){
  32 + ArrayListMultimap<String, PersionPinYin> listMultimapCopy = ArrayListMultimap.create();
  33 + List<PersionPinYin> allCopy = new ArrayList<>();
  34 + PersionPinYin ppy;
  35 +
  36 + Collection<Personnel> list = BasicData.perMap.values();
  37 + for(Personnel p : list){
  38 + ppy = new PersionPinYin();
  39 + ppy.setId(p.getId());
  40 + ppy.setCompanyId(p.getCompanyCode());
  41 + ppy.setFgsCompanyId(p.getBrancheCompanyCode());
  42 + ppy.setName(p.getPersonnelName());
  43 + ppy.setWorkId(p.getJobCode());
  44 + try {
  45 + ppy.setFullChars(PinyinHelper.convertToPinyinString(ppy.getName(), "" , PinyinFormat.WITHOUT_TONE));
  46 + ppy.setCamelChars(PinyinHelper.getShortPinyin(ppy.getName()));
  47 + }catch (PinyinException pye){
  48 + log.error("拼音转换出现异常," + ppy.getName(), pye);
  49 + continue;
  50 + }
  51 +
  52 + listMultimapCopy.put(ppy.getCompanyId() + "_" + ppy.getFgsCompanyId(), ppy);
  53 + allCopy.add(ppy);
  54 + }
  55 +
  56 + if(allCopy.size() > 0){
  57 + all = allCopy;
  58 + listMultimap = listMultimapCopy;
  59 + }
  60 + }
  61 +
  62 + public List<PersionPinYin> getAll(){
  63 + return all;
  64 + }
  65 +
  66 + public List<PersionPinYin> getAll(List<CompanyAuthority> auths){
  67 + List<PersionPinYin> rs = new ArrayList<>();
  68 + for(CompanyAuthority ca : auths){
  69 + rs.addAll(listMultimap.get(ca.getCompanyCode() + "_" + ca.getSubCompanyCode()));
  70 + }
  71 + return rs;
  72 + }
  73 +}
... ...
src/main/java/com/bsth/data/schedule/DayOfSchedule.java
... ... @@ -7,6 +7,7 @@ import com.bsth.common.ResponseCode;
7 7 import com.bsth.data.LineConfigData;
8 8 import com.bsth.data.gpsdata.GpsRealData;
9 9 import com.bsth.data.gpsdata.recovery.GpsDataRecovery;
  10 +import com.bsth.data.schedule.f_a_l.FirstAndLastHandler;
10 11 import com.bsth.entity.realcontrol.LineConfig;
11 12 import com.bsth.entity.realcontrol.ScheduleRealInfo;
12 13 import com.bsth.entity.schedule.SchedulePlanInfo;
... ... @@ -176,6 +177,8 @@ public class DayOfSchedule {
176 177 //添加到缓存
177 178 putAll(list);
178 179  
  180 + //标记首末班
  181 + FirstAndLastHandler.marks(list);
179 182  
180 183 Set<String> lps = searchAllLP(list);
181 184 for (String lp : lps) {
... ...
src/main/java/com/bsth/data/schedule/f_a_l/FirstAndLastHandler.java 0 → 100644
  1 +package com.bsth.data.schedule.f_a_l;
  2 +
  3 +import com.bsth.data.BasicData;
  4 +import com.bsth.data.schedule.DayOfSchedule;
  5 +import com.bsth.data.schedule.ScheduleComparator;
  6 +import com.bsth.data.schedule.f_a_l.entity.ToGateway;
  7 +import com.bsth.entity.realcontrol.ScheduleRealInfo;
  8 +import com.bsth.util.db.DBUtils_MS;
  9 +import org.slf4j.Logger;
  10 +import org.slf4j.LoggerFactory;
  11 +import org.springframework.beans.factory.annotation.Autowired;
  12 +import org.springframework.jdbc.core.BatchPreparedStatementSetter;
  13 +import org.springframework.jdbc.core.JdbcTemplate;
  14 +import org.springframework.jdbc.datasource.DataSourceTransactionManager;
  15 +import org.springframework.stereotype.Component;
  16 +import org.springframework.transaction.TransactionDefinition;
  17 +import org.springframework.transaction.TransactionStatus;
  18 +import org.springframework.transaction.support.DefaultTransactionDefinition;
  19 +
  20 +import java.sql.PreparedStatement;
  21 +import java.sql.SQLException;
  22 +import java.util.ArrayList;
  23 +import java.util.Collections;
  24 +import java.util.List;
  25 +import java.util.concurrent.ConcurrentHashMap;
  26 +
  27 +/**
  28 + * 首末班处理程序
  29 + * Created by panzhao on 2017/7/19.
  30 + */
  31 +@Component
  32 +public class FirstAndLastHandler {
  33 +
  34 + static ConcurrentHashMap<String, ToGateway> maps = new ConcurrentHashMap<>();
  35 +
  36 + static Logger log = LoggerFactory.getLogger(FirstAndLastHandler.class);
  37 +
  38 + static boolean flag;
  39 +
  40 + @Autowired
  41 + DayOfSchedule dayOfSchedule;
  42 +
  43 + public void marks(String lineCode){
  44 + marks(dayOfSchedule.findByLineCode(lineCode));
  45 + }
  46 +
  47 + /**
  48 + * 标记首末班
  49 + * @param list
  50 + */
  51 + public static void marks(List<ScheduleRealInfo> list){
  52 + try{
  53 + Collections.sort(list, new ScheduleComparator.FCSJ());
  54 + //按上下行分组
  55 + List<ScheduleRealInfo> ups = new ArrayList<>(),
  56 + downs = new ArrayList<>();
  57 +
  58 + for(ScheduleRealInfo sch : list){
  59 + if(sch.getXlDir().equals("0"))
  60 + ups.add(sch);
  61 + else
  62 + downs.add(sch);
  63 + }
  64 +
  65 + markOneWay(ups);
  66 + markOneWay(downs);
  67 + }catch (Exception e){
  68 + log.error("", e);
  69 + }
  70 + }
  71 +
  72 + /**
  73 + * 标记单程,上行或下行
  74 + * @param list
  75 + */
  76 + private static void markOneWay(List<ScheduleRealInfo> list){
  77 + ScheduleRealInfo first = null, last = null;
  78 +
  79 + for(ScheduleRealInfo sch: list){
  80 + if(sch._isInout() || sch.getBcType().equals("region")
  81 + || sch.getBcType().equals("venting"))
  82 + continue;
  83 +
  84 + if(first == null)
  85 + first = sch;
  86 +
  87 + last = sch;
  88 + }
  89 +
  90 + put(first, last);
  91 + }
  92 +
  93 + private static void put(ScheduleRealInfo first, ScheduleRealInfo last){
  94 + if(first == null || last == null)
  95 + return;
  96 +
  97 + ToGateway tg = new ToGateway();
  98 + tg.setLineCode(first.getXlBm());
  99 + tg.setUpDown(Integer.parseInt(first.getXlDir()));
  100 + tg.setsDeviceId(BasicData.deviceId2NbbmMap.inverse().get(first.getClZbh()));
  101 + tg.setSt(first.getDfsjT());
  102 +
  103 + tg.setRq(first.getScheduleDateStr());
  104 +
  105 + tg.seteDeviceId(BasicData.deviceId2NbbmMap.inverse().get(last.getClZbh()));
  106 + tg.setEt(last.getDfsjT());
  107 +
  108 + maps.put(tg.getLineCode() + "_" + tg.getUpDown(), tg);
  109 + flag = true;
  110 + }
  111 +
  112 + public static void saveAll(){
  113 + if(!flag)
  114 + return;
  115 +
  116 + final List<ToGateway> pstList = new ArrayList<>(maps.values());
  117 + if(pstList == null || pstList.size() == 0)
  118 + return;
  119 +
  120 + flag = false;
  121 + JdbcTemplate jdbcTemp = new JdbcTemplate(DBUtils_MS.getDataSource());
  122 + //编程式事务
  123 + DataSourceTransactionManager tran = new DataSourceTransactionManager(jdbcTemp.getDataSource());
  124 + DefaultTransactionDefinition def = new DefaultTransactionDefinition();
  125 + def.setPropagationBehavior(TransactionDefinition.PROPAGATION_REQUIRED);
  126 + TransactionStatus status = tran.getTransaction(def);
  127 +
  128 + try{
  129 + //删除
  130 + jdbcTemp.update("delete from bsth_t_first_last");
  131 + //重新写入
  132 + jdbcTemp.batchUpdate("insert into bsth_t_first_last(line_code, s_device_id, st, e_device_id, et, up_down, rq) VALUES(?, ?, ?, ?, ?, ?, ?)", new BatchPreparedStatementSetter() {
  133 + @Override
  134 + public void setValues(PreparedStatement ps, int i) throws SQLException {
  135 + ToGateway tg = pstList.get(i);
  136 + ps.setString(1, tg.getLineCode());
  137 + ps.setString(2, tg.getsDeviceId());
  138 + ps.setLong(3, tg.getSt());
  139 + ps.setString(4, tg.geteDeviceId());
  140 + ps.setLong(5, tg.getEt());
  141 + ps.setInt(6, tg.getUpDown());
  142 + ps.setString(7, tg.getRq());
  143 + }
  144 +
  145 + @Override
  146 + public int getBatchSize() {
  147 + return pstList.size();
  148 + }
  149 + });
  150 +
  151 + log.info("首末班数据入库," + pstList.size());
  152 + tran.commit(status);
  153 + }catch (Exception e){
  154 + log.error("", e);
  155 + tran.rollback(status);
  156 + }
  157 + }
  158 +}
... ...
src/main/java/com/bsth/data/schedule/f_a_l/entity/ToGateway.java 0 → 100644
  1 +package com.bsth.data.schedule.f_a_l.entity;
  2 +
  3 +/**
  4 + * 发送给网关的首末班数据格式
  5 + * Created by panzhao on 2017/7/19.
  6 + */
  7 +public class ToGateway {
  8 +
  9 + /** 线路 */
  10 + private String lineCode;
  11 +
  12 + /** 上下行 */
  13 + private int upDown;
  14 +
  15 + /** 首班设备号 */
  16 + private String sDeviceId;
  17 +
  18 + /** 首班时间 */
  19 + private Long st;
  20 +
  21 + /** 末班设备号 */
  22 + private String eDeviceId;
  23 +
  24 + /** 末班时间 */
  25 + private Long et;
  26 +
  27 + /** 班次日期 */
  28 + private String rq;
  29 +
  30 +
  31 + public String getLineCode() {
  32 + return lineCode;
  33 + }
  34 +
  35 + public void setLineCode(String lineCode) {
  36 + this.lineCode = lineCode;
  37 + }
  38 +
  39 + public Long getSt() {
  40 + return st;
  41 + }
  42 +
  43 + public void setSt(Long st) {
  44 + this.st = st;
  45 + }
  46 +
  47 + public Long getEt() {
  48 + return et;
  49 + }
  50 +
  51 + public void setEt(Long et) {
  52 + this.et = et;
  53 + }
  54 +
  55 + public String getRq() {
  56 + return rq;
  57 + }
  58 +
  59 + public void setRq(String rq) {
  60 + this.rq = rq;
  61 + }
  62 +
  63 + public int getUpDown() {
  64 + return upDown;
  65 + }
  66 +
  67 + public void setUpDown(int upDown) {
  68 + this.upDown = upDown;
  69 + }
  70 +
  71 + public String getsDeviceId() {
  72 + return sDeviceId;
  73 + }
  74 +
  75 + public void setsDeviceId(String sDeviceId) {
  76 + this.sDeviceId = sDeviceId;
  77 + }
  78 +
  79 + public String geteDeviceId() {
  80 + return eDeviceId;
  81 + }
  82 +
  83 + public void seteDeviceId(String eDeviceId) {
  84 + this.eDeviceId = eDeviceId;
  85 + }
  86 +}
... ...
src/main/java/com/bsth/data/schedule/thread/ScheduleRefreshThread.java
... ... @@ -5,6 +5,7 @@ import com.bsth.data.LineConfigData;
5 5 import com.bsth.data.directive.DayOfDirectives;
6 6 import com.bsth.data.pilot80.PilotReport;
7 7 import com.bsth.data.schedule.DayOfSchedule;
  8 +import com.bsth.data.schedule.f_a_l.FirstAndLastHandler;
8 9 import com.bsth.entity.realcontrol.LineConfig;
9 10 import org.slf4j.Logger;
10 11 import org.slf4j.LoggerFactory;
... ... @@ -69,7 +70,9 @@ public class ScheduleRefreshThread extends Thread{
69 70 logger.info(lineCode + "翻班完成, " + currSchDate + " -班次数量:" + dayOfSchedule.findByLineCode(lineCode).size());
70 71 }
71 72 }
72   -
  73 +
  74 + //首末班入库(给网关用的数据)
  75 + FirstAndLastHandler.saveAll();
73 76 } catch (Exception e) {
74 77 logger.error("", e);
75 78 }
... ...
src/main/java/com/bsth/service/schedule/impl/CarDeviceServiceImpl.java
... ... @@ -7,6 +7,8 @@ import com.bsth.service.schedule.CarDeviceService;
7 7 import com.bsth.service.schedule.exception.ScheduleException;
8 8 import org.springframework.beans.factory.annotation.Autowired;
9 9 import org.springframework.stereotype.Service;
  10 +import org.springframework.transaction.annotation.Isolation;
  11 +import org.springframework.transaction.annotation.Propagation;
10 12 import org.springframework.transaction.annotation.Transactional;
11 13 import org.springframework.util.CollectionUtils;
12 14  
... ... @@ -21,7 +23,7 @@ public class CarDeviceServiceImpl extends BServiceImpl&lt;CarDevice, Long&gt; implemen
21 23 @Autowired
22 24 private CarsService carsService;
23 25  
24   - @Transactional
  26 + @Transactional(propagation = Propagation.REQUIRED, isolation = Isolation.READ_COMMITTED)
25 27 @Override
26 28 public CarDevice save(CarDevice carDevice) {
27 29 // 查找对应的车辆基础信息,更新设备编号数据
... ...
src/main/java/com/bsth/service/schedule/impl/TTInfoDetailServiceImpl.java
... ... @@ -144,6 +144,11 @@ public class TTInfoDetailServiceImpl extends BServiceImpl&lt;TTInfoDetail, Long&gt; im
144 144 return ttInfoDetailForEdit.getEditInfo(xlid, ttid, maxfcno);
145 145 }
146 146  
  147 + public static void main(String[] args) {
  148 + String test = "中1中111";
  149 + System.out.println(test.replaceAll("(\\d+)$", ""));
  150 + }
  151 +
147 152 @Override
148 153 public void validateExcelSheet(String filename, String sheetname, Integer lineid, String linename) throws ScheduleException {
149 154 try {
... ... @@ -162,8 +167,9 @@ public class TTInfoDetailServiceImpl extends BServiceImpl&lt;TTInfoDetail, Long&gt; im
162 167 if (StringUtils.isEmpty(cell_con)) {
163 168 throw new Exception(String.format("第1行,第%d列数据不能为空", i + 1));
164 169 } else {
165   - // 正则表达式去除数字
166   - cell_con = cell_con.replaceAll("[\\d+]", "");
  170 + // 正则表达式去除右侧数字
  171 +// cell_con = cell_con.replaceAll("[\\d+]", "");
  172 + cell_con = cell_con.replaceAll("(\\d+)$", "");
167 173  
168 174 if (i == 0) { // 第一列必须是路牌2个字
169 175 if (!"路牌".equals(cell_con.trim())) {
... ...
src/main/resources/datatools/ktrs/ttinfodetailDataInput.ktr
1   -<?xml version="1.0" encoding="UTF-8"?>
2   -<transformation>
3   - <info>
4   - <name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x5bfc;&#x5165;</name>
5   - <description>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;&#x5bfc;&#x5165;</description>
6   - <extended_description>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;</extended_description>
7   - <trans_version/>
8   - <trans_type>Normal</trans_type>
9   - <trans_status>0</trans_status>
10   - <directory>&#x2f;</directory>
11   - <parameters>
12   - </parameters>
13   - <log>
14   -<trans-log-table><connection/>
15   -<schema/>
16   -<table/>
17   -<size_limit_lines/>
18   -<interval/>
19   -<timeout_days/>
20   -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STATUS</id><enabled>Y</enabled><name>STATUS</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name><subject/></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name><subject/></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name><subject/></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name><subject/></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name><subject/></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name><subject/></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>STARTDATE</id><enabled>Y</enabled><name>STARTDATE</name></field><field><id>ENDDATE</id><enabled>Y</enabled><name>ENDDATE</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>DEPDATE</id><enabled>Y</enabled><name>DEPDATE</name></field><field><id>REPLAYDATE</id><enabled>Y</enabled><name>REPLAYDATE</name></field><field><id>LOG_FIELD</id><enabled>Y</enabled><name>LOG_FIELD</name></field><field><id>EXECUTING_SERVER</id><enabled>N</enabled><name>EXECUTING_SERVER</name></field><field><id>EXECUTING_USER</id><enabled>N</enabled><name>EXECUTING_USER</name></field><field><id>CLIENT</id><enabled>N</enabled><name>CLIENT</name></field></trans-log-table>
21   -<perf-log-table><connection/>
22   -<schema/>
23   -<table/>
24   -<interval/>
25   -<timeout_days/>
26   -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>SEQ_NR</id><enabled>Y</enabled><name>SEQ_NR</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>INPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>INPUT_BUFFER_ROWS</name></field><field><id>OUTPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>OUTPUT_BUFFER_ROWS</name></field></perf-log-table>
27   -<channel-log-table><connection/>
28   -<schema/>
29   -<table/>
30   -<timeout_days/>
31   -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>LOGGING_OBJECT_TYPE</id><enabled>Y</enabled><name>LOGGING_OBJECT_TYPE</name></field><field><id>OBJECT_NAME</id><enabled>Y</enabled><name>OBJECT_NAME</name></field><field><id>OBJECT_COPY</id><enabled>Y</enabled><name>OBJECT_COPY</name></field><field><id>REPOSITORY_DIRECTORY</id><enabled>Y</enabled><name>REPOSITORY_DIRECTORY</name></field><field><id>FILENAME</id><enabled>Y</enabled><name>FILENAME</name></field><field><id>OBJECT_ID</id><enabled>Y</enabled><name>OBJECT_ID</name></field><field><id>OBJECT_REVISION</id><enabled>Y</enabled><name>OBJECT_REVISION</name></field><field><id>PARENT_CHANNEL_ID</id><enabled>Y</enabled><name>PARENT_CHANNEL_ID</name></field><field><id>ROOT_CHANNEL_ID</id><enabled>Y</enabled><name>ROOT_CHANNEL_ID</name></field></channel-log-table>
32   -<step-log-table><connection/>
33   -<schema/>
34   -<table/>
35   -<timeout_days/>
36   -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>LOG_FIELD</id><enabled>N</enabled><name>LOG_FIELD</name></field></step-log-table>
37   -<metrics-log-table><connection/>
38   -<schema/>
39   -<table/>
40   -<timeout_days/>
41   -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>METRICS_DATE</id><enabled>Y</enabled><name>METRICS_DATE</name></field><field><id>METRICS_CODE</id><enabled>Y</enabled><name>METRICS_CODE</name></field><field><id>METRICS_DESCRIPTION</id><enabled>Y</enabled><name>METRICS_DESCRIPTION</name></field><field><id>METRICS_SUBJECT</id><enabled>Y</enabled><name>METRICS_SUBJECT</name></field><field><id>METRICS_TYPE</id><enabled>Y</enabled><name>METRICS_TYPE</name></field><field><id>METRICS_VALUE</id><enabled>Y</enabled><name>METRICS_VALUE</name></field></metrics-log-table>
42   - </log>
43   - <maxdate>
44   - <connection/>
45   - <table/>
46   - <field/>
47   - <offset>0.0</offset>
48   - <maxdiff>0.0</maxdiff>
49   - </maxdate>
50   - <size_rowset>10000</size_rowset>
51   - <sleep_time_empty>50</sleep_time_empty>
52   - <sleep_time_full>50</sleep_time_full>
53   - <unique_connections>N</unique_connections>
54   - <feedback_shown>Y</feedback_shown>
55   - <feedback_size>50000</feedback_size>
56   - <using_thread_priorities>Y</using_thread_priorities>
57   - <shared_objects_file/>
58   - <capture_step_performance>N</capture_step_performance>
59   - <step_performance_capturing_delay>1000</step_performance_capturing_delay>
60   - <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit>
61   - <dependencies>
62   - </dependencies>
63   - <partitionschemas>
64   - </partitionschemas>
65   - <slaveservers>
66   - </slaveservers>
67   - <clusterschemas>
68   - </clusterschemas>
69   - <created_user>-</created_user>
70   - <created_date>2016&#x2f;06&#x2f;30 12&#x3a;21&#x3a;57.536</created_date>
71   - <modified_user>-</modified_user>
72   - <modified_date>2016&#x2f;06&#x2f;30 12&#x3a;21&#x3a;57.536</modified_date>
73   - <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA&#x3d;</key_for_session_key>
74   - <is_key_private>N</is_key_private>
75   - </info>
76   - <notepads>
77   - <notepad>
78   - <note>&#x5b57;&#x5178;&#x8868;&#x5bf9;&#x5e94;&#xff08;&#x4ee5;&#x540e;&#x76f4;&#x63a5;&#x67e5;&#x627e;&#x8868; bsth_c_sys_dictionary&#xff09;&#xa;&#x7c7b;&#x578b; &#x4ee3;&#x7801; &#x540d;&#x79f0;&#xa;LineTrend 0 &#x4e0a;&#x884c;&#xa;LineTrend 1 &#x4e0b;&#x884c;&#xa;ScheduleType normal &#x6b63;&#x5e38;&#x73ed;&#x6b21;&#xa;ScheduleType out &#x51fa;&#x573a;&#xa;ScheduleType in &#x8fdb;&#x573a;&#xa;ScheduleType temp &#x4e34;&#x52a0;&#xa;ScheduleType region &#x533a;&#x95f4;&#xa;ScheduleType venting &#x653e;&#x7a7a;&#xa;ScheduleType major &#x653e;&#x5927;&#x7ad9;</note>
79   - <xloc>606</xloc>
80   - <yloc>129</yloc>
81   - <width>332</width>
82   - <heigth>186</heigth>
83   - <fontname>YaHei Consolas Hybrid</fontname>
84   - <fontsize>12</fontsize>
85   - <fontbold>N</fontbold>
86   - <fontitalic>N</fontitalic>
87   - <fontcolorred>0</fontcolorred>
88   - <fontcolorgreen>0</fontcolorgreen>
89   - <fontcolorblue>0</fontcolorblue>
90   - <backgroundcolorred>255</backgroundcolorred>
91   - <backgroundcolorgreen>205</backgroundcolorgreen>
92   - <backgroundcolorblue>112</backgroundcolorblue>
93   - <bordercolorred>100</bordercolorred>
94   - <bordercolorgreen>100</bordercolorgreen>
95   - <bordercolorblue>100</bordercolorblue>
96   - <drawshadow>Y</drawshadow>
97   - </notepad>
98   - <notepad>
99   - <note>&#x56e0;&#x4e3a;&#x65f6;&#x523b;&#x8868;&#x8f93;&#x5165;&#x683c;&#x5f0f;&#x4e0d;&#x786e;&#x5b9a;&#x6027;&#xff0c;&#x4e3b;&#x8981;&#x56e0;&#x4e3a;&#x8868;&#x7ed3;&#x6784;&#x662f;&#x53cd;&#x8303;&#x5f0f;&#x5316;&#x7684;&#xff0c;&#xa;&#x6240;&#x4ee5;&#x9700;&#x8981;&#x5916;&#x90e8;&#x52a8;&#x6001;&#x6307;&#x5b9a;&#x613f;&#x6570;&#x636e;&#xff0c;&#x5934;&#x4e09;&#x4e2a;step&#x52a8;&#x6001;&#x6307;&#x5b9a;&#x613f;&#x6570;&#x636e;&#xa;&#xa;</note>
100   - <xloc>79</xloc>
101   - <yloc>206</yloc>
102   - <width>346</width>
103   - <heigth>74</heigth>
104   - <fontname>YaHei Consolas Hybrid</fontname>
105   - <fontsize>12</fontsize>
106   - <fontbold>N</fontbold>
107   - <fontitalic>N</fontitalic>
108   - <fontcolorred>0</fontcolorred>
109   - <fontcolorgreen>0</fontcolorgreen>
110   - <fontcolorblue>0</fontcolorblue>
111   - <backgroundcolorred>255</backgroundcolorred>
112   - <backgroundcolorgreen>205</backgroundcolorgreen>
113   - <backgroundcolorblue>112</backgroundcolorblue>
114   - <bordercolorred>100</bordercolorred>
115   - <bordercolorgreen>100</bordercolorgreen>
116   - <bordercolorblue>100</bordercolorblue>
117   - <drawshadow>Y</drawshadow>
118   - </notepad>
119   - <notepad>
120   - <note>&#x8fd9;&#x91cc;&#x6709;&#x4e9b;&#x95ee;&#x9898;&#xa;&#x5728;window2012&#x7684;&#x73af;&#x5883;&#x4e0b;&#xff0c;&#xa;MySql&#x6570;&#x636e;&#x5e93;&#x67e5;&#x8be2;&#x4e2d;&#x5982;&#x679c;&#x8fd4;&#x56de;&#x4e2d;&#x6587;&#x5185;&#x5bb9;&#x7684;&#x5b57;&#x6bb5;&#xff0c;&#x8fd9;&#x4e2a;&#x5185;&#x5bb9;&#x4e71;&#x7801;&#xa;&#x89e3;&#x51b3;&#x529e;&#x6cd5;&#xff0c;&#x5c31;&#x662f;&#x6570;&#x636e;&#x5e93;&#x67e5;&#x8be2;&#x5168;&#x90e8;&#x7f13;&#x5b58;&#xff0c;&#x5c31;&#x4e0d;&#x4e71;&#x7801;&#xa;linux&#x73af;&#x5883;&#x4e0b;&#x6ca1;&#x95ee;&#x9898;</note>
121   - <xloc>721</xloc>
122   - <yloc>762</yloc>
123   - <width>333</width>
124   - <heigth>90</heigth>
125   - <fontname>YaHei Consolas Hybrid</fontname>
126   - <fontsize>12</fontsize>
127   - <fontbold>N</fontbold>
128   - <fontitalic>N</fontitalic>
129   - <fontcolorred>0</fontcolorred>
130   - <fontcolorgreen>0</fontcolorgreen>
131   - <fontcolorblue>0</fontcolorblue>
132   - <backgroundcolorred>255</backgroundcolorred>
133   - <backgroundcolorgreen>205</backgroundcolorgreen>
134   - <backgroundcolorblue>112</backgroundcolorblue>
135   - <bordercolorred>100</bordercolorred>
136   - <bordercolorgreen>100</bordercolorgreen>
137   - <bordercolorblue>100</bordercolorblue>
138   - <drawshadow>Y</drawshadow>
139   - </notepad>
140   - <notepad>
141   - <note>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#xff0c;&#x65b9;&#x5411;&#x6709;&#x65f6;&#x786e;&#x5b9a;&#x4e0d;&#x51c6;&#xff0c;&#xa;&#x7a7a;&#x7684;&#x60c5;&#x51b5;&#x4e0b;&#x8bbe;&#x5b9a;&#x4e3a;0&#xff08;&#x4e0a;&#x884c;&#xff09;</note>
142   - <xloc>120</xloc>
143   - <yloc>1016</yloc>
144   - <width>178</width>
145   - <heigth>42</heigth>
146   - <fontname>YaHei Consolas Hybrid</fontname>
147   - <fontsize>12</fontsize>
148   - <fontbold>N</fontbold>
149   - <fontitalic>N</fontitalic>
150   - <fontcolorred>0</fontcolorred>
151   - <fontcolorgreen>0</fontcolorgreen>
152   - <fontcolorblue>0</fontcolorblue>
153   - <backgroundcolorred>255</backgroundcolorred>
154   - <backgroundcolorgreen>205</backgroundcolorgreen>
155   - <backgroundcolorblue>112</backgroundcolorblue>
156   - <bordercolorred>100</bordercolorred>
157   - <bordercolorgreen>100</bordercolorgreen>
158   - <bordercolorblue>100</bordercolorblue>
159   - <drawshadow>Y</drawshadow>
160   - </notepad>
161   - <notepad>
162   - <note>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#xff0c;&#x65b9;&#x5411;&#x6709;&#x65f6;&#x786e;&#x5b9a;&#x4e0d;&#x51c6;&#xff0c;&#xa;&#x7a7a;&#x7684;&#x60c5;&#x51b5;&#x4e0b;&#x8bbe;&#x5b9a;&#x4e3a;0&#xff08;&#x4e0a;&#x884c;&#xff09;</note>
163   - <xloc>578</xloc>
164   - <yloc>1084</yloc>
165   - <width>178</width>
166   - <heigth>42</heigth>
167   - <fontname>YaHei Consolas Hybrid</fontname>
168   - <fontsize>12</fontsize>
169   - <fontbold>N</fontbold>
170   - <fontitalic>N</fontitalic>
171   - <fontcolorred>0</fontcolorred>
172   - <fontcolorgreen>0</fontcolorgreen>
173   - <fontcolorblue>0</fontcolorblue>
174   - <backgroundcolorred>255</backgroundcolorred>
175   - <backgroundcolorgreen>205</backgroundcolorgreen>
176   - <backgroundcolorblue>112</backgroundcolorblue>
177   - <bordercolorred>100</bordercolorred>
178   - <bordercolorgreen>100</bordercolorgreen>
179   - <bordercolorblue>100</bordercolorblue>
180   - <drawshadow>Y</drawshadow>
181   - </notepad>
182   - </notepads>
183   - <connection>
184   - <name>192.168.168.1_jwgl_dw</name>
185   - <server>192.168.168.1</server>
186   - <type>ORACLE</type>
187   - <access>Native</access>
188   - <database>orcl</database>
189   - <port>1521</port>
190   - <username>jwgl_dw</username>
191   - <password>Encrypted 2be98afc86aa7f2e4cb13b977d2adabcd</password>
192   - <servername/>
193   - <data_tablespace/>
194   - <index_tablespace/>
195   - <attributes>
196   - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
197   - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
198   - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
199   - <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
200   - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
201   - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
202   - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
203   - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
204   - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
205   - </attributes>
206   - </connection>
207   - <connection>
208   - <name>bus_control_variable</name>
209   - <server>&#x24;&#x7b;v_db_ip&#x7d;</server>
210   - <type>MYSQL</type>
211   - <access>Native</access>
212   - <database>&#x24;&#x7b;v_db_dname&#x7d;</database>
213   - <port>3306</port>
214   - <username>&#x24;&#x7b;v_db_uname&#x7d;</username>
215   - <password>&#x24;&#x7b;v_db_pwd&#x7d;</password>
216   - <servername/>
217   - <data_tablespace/>
218   - <index_tablespace/>
219   - <attributes>
220   - <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
221   - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
222   - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
223   - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
224   - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
225   - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
226   - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
227   - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
228   - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
229   - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
230   - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
231   - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
232   - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
233   - </attributes>
234   - </connection>
235   - <connection>
236   - <name>bus_control_&#x516c;&#x53f8;_201</name>
237   - <server>localhost</server>
238   - <type>MYSQL</type>
239   - <access>Native</access>
240   - <database>control</database>
241   - <port>3306</port>
242   - <username>root</username>
243   - <password>Encrypted </password>
244   - <servername/>
245   - <data_tablespace/>
246   - <index_tablespace/>
247   - <attributes>
248   - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
249   - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
250   - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
251   - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
252   - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
253   - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
254   - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
255   - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
256   - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
257   - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
258   - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
259   - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
260   - </attributes>
261   - </connection>
262   - <connection>
263   - <name>bus_control_&#x672c;&#x673a;</name>
264   - <server>localhost</server>
265   - <type>MYSQL</type>
266   - <access>Native</access>
267   - <database>control</database>
268   - <port>3306</port>
269   - <username>root</username>
270   - <password>Encrypted </password>
271   - <servername/>
272   - <data_tablespace/>
273   - <index_tablespace/>
274   - <attributes>
275   - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
276   - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
277   - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
278   - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
279   - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
280   - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
281   - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
282   - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
283   - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
284   - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
285   - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
286   - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
287   - </attributes>
288   - </connection>
289   - <connection>
290   - <name>xlab_mysql_youle</name>
291   - <server>101.231.124.8</server>
292   - <type>MYSQL</type>
293   - <access>Native</access>
294   - <database>xlab_youle</database>
295   - <port>45687</port>
296   - <username>xlab-youle</username>
297   - <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password>
298   - <servername/>
299   - <data_tablespace/>
300   - <index_tablespace/>
301   - <attributes>
302   - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
303   - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
304   - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
305   - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
306   - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
307   - <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute>
308   - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
309   - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
310   - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
311   - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
312   - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
313   - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
314   - </attributes>
315   - </connection>
316   - <connection>
317   - <name>xlab_mysql_youle&#xff08;&#x672c;&#x673a;&#xff09;</name>
318   - <server>localhost</server>
319   - <type>MYSQL</type>
320   - <access>Native</access>
321   - <database>xlab_youle</database>
322   - <port>3306</port>
323   - <username>root</username>
324   - <password>Encrypted </password>
325   - <servername/>
326   - <data_tablespace/>
327   - <index_tablespace/>
328   - <attributes>
329   - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
330   - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
331   - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
332   - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
333   - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
334   - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
335   - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
336   - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
337   - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
338   - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
339   - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
340   - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
341   - </attributes>
342   - </connection>
343   - <connection>
344   - <name>xlab_youle</name>
345   - <server/>
346   - <type>MYSQL</type>
347   - <access>JNDI</access>
348   - <database>xlab_youle</database>
349   - <port>1521</port>
350   - <username/>
351   - <password>Encrypted </password>
352   - <servername/>
353   - <data_tablespace/>
354   - <index_tablespace/>
355   - <attributes>
356   - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
357   - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
358   - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
359   - <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
360   - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
361   - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
362   - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
363   - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
364   - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
365   - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
366   - </attributes>
367   - </connection>
368   - <order>
369   - <hop> <from>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</from><to>&#x73ed;&#x6b21;&#x6570;&#x636e;&#x8303;&#x5f0f;&#x5316;</to><enabled>Y</enabled> </hop>
370   - <hop> <from>&#x6dfb;&#x52a0;&#x53d1;&#x8f66;&#x987a;&#x5e8f;&#x53f7;</from><to>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;&#xff08;&#x53d1;&#x8f66;&#x65f6;&#x95f4;&#x4e3a;&#x7a7a;&#xff09;</to><enabled>Y</enabled> </hop>
371   - <hop> <from>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;&#xff08;&#x53d1;&#x8f66;&#x65f6;&#x95f4;&#x4e3a;&#x7a7a;&#xff09;</from><to>&#x6dfb;&#x52a0;&#x5bf9;&#x5e94;&#x73ed;&#x6b21;&#x6570;</to><enabled>Y</enabled> </hop>
372   - <hop> <from>&#x6dfb;&#x52a0;&#x5bf9;&#x5e94;&#x73ed;&#x6b21;&#x6570;</from><to>&#x5904;&#x7406;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
373   - <hop> <from>&#x5904;&#x7406;&#x6570;&#x636e;</from><to>&#x5206;&#x7ec4;&#x5404;&#x4e2a;&#x8def;&#x724c;&#x7684;&#x7ad9;</to><enabled>Y</enabled> </hop>
374   - <hop> <from>&#x67e5;&#x627e;&#x65f6;&#x523b;&#x8868;&#x57fa;&#x7840;&#x4fe1;&#x606f;&#x5173;&#x8054;</from><to>&#x67e5;&#x627e;&#x8def;&#x724c;&#x5173;&#x8054;</to><enabled>Y</enabled> </hop>
375   - <hop> <from>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x5173;&#x8054;</from><to>&#x67e5;&#x627e;&#x65f6;&#x523b;&#x8868;&#x57fa;&#x7840;&#x4fe1;&#x606f;&#x5173;&#x8054;</to><enabled>Y</enabled> </hop>
376   - <hop> <from>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178;</from><to>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178;</to><enabled>Y</enabled> </hop>
377   - <hop> <from>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 2</from><to>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 2</to><enabled>Y</enabled> </hop>
378   - <hop> <from>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 3</from><to>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 3</to><enabled>Y</enabled> </hop>
379   - <hop> <from>&#x5339;&#x914d;&#x4e0a;&#x4e0b;&#x884c;&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</from><to>&#x7c7b;&#x578b;&#x4fee;&#x6b63;</to><enabled>Y</enabled> </hop>
380   - <hop> <from>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;1</from><to>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</to><enabled>Y</enabled> </hop>
381   - <hop> <from>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;1</from><to>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
382   - <hop> <from>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</from><to>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
383   - <hop> <from>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</from><to>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
384   - <hop> <from>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x6240;&#x6709;&#x4e0a;&#x4e0b;&#x884c;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</from><to>&#x5339;&#x914d;&#x4e0a;&#x4e0b;&#x884c;&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>
385   - <hop> <from>&#x67e5;&#x627e;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;</from><to>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178;</to><enabled>Y</enabled> </hop>
386   - <hop> <from>&#x67e5;&#x627e;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</from><to>&#x67e5;&#x627e;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;</to><enabled>Y</enabled> </hop>
387   - <hop> <from>&#x6b63;&#x5e38;&#x73ed;&#x6b21;_&#x5904;&#x7406;&#x6570;&#x636e;</from><to>&#x67e5;&#x627e;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</to><enabled>Y</enabled> </hop>
388   - <hop> <from>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</from><to>&#x6b63;&#x5e38;&#x73ed;&#x6b21;_&#x5904;&#x7406;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
389   - <hop> <from>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178;</from><to>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x6240;&#x6709;&#x4e0a;&#x4e0b;&#x884c;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>
390   - <hop> <from>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 2</from><to>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x51fa;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>
391   - <hop> <from>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 3</from><to>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x8fdb;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>
392   - <hop> <from>&#x67e5;&#x627e;&#x8def;&#x724c;&#x5173;&#x8054;</from><to>&#x8ba1;&#x7b97;&#x73ed;&#x6b21;&#x7c7b;&#x578b;</to><enabled>Y</enabled> </hop>
393   - <hop> <from>&#x8ba1;&#x7b97;&#x73ed;&#x6b21;&#x7c7b;&#x578b;</from><to>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;1</to><enabled>Y</enabled> </hop>
394   - <hop> <from>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</from><to>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;1</to><enabled>Y</enabled> </hop>
395   - <hop> <from>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;1</from><to>&#x51fa;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x7ec8;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</to><enabled>Y</enabled> </hop>
396   - <hop> <from>&#x51fa;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x7ec8;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</from><to>&#x67e5;&#x627e;&#x51fa;&#x573a;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</to><enabled>Y</enabled> </hop>
397   - <hop> <from>&#x67e5;&#x627e;&#x51fa;&#x573a;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</from><to>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 2</to><enabled>Y</enabled> </hop>
398   - <hop> <from>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</from><to>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;2</to><enabled>Y</enabled> </hop>
399   - <hop> <from>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;2</from><to>&#x8fdb;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x8d77;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</to><enabled>Y</enabled> </hop>
400   - <hop> <from>&#x8fdb;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x8d77;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</from><to>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ebf;&#x8def;&#x65b9;&#x5411;</to><enabled>Y</enabled> </hop>
401   - <hop> <from>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ebf;&#x8def;&#x65b9;&#x5411;</from><to>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ec8;&#x70b9;&#x7ad9;&#xff0c;&#x5e76;&#x4f5c;&#x4e3a;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x7684;&#x8d77;&#x70b9;&#x7ad9;</to><enabled>Y</enabled> </hop>
402   - <hop> <from>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</from><to>&#x6dfb;&#x52a0;&#x53d1;&#x8f66;&#x987a;&#x5e8f;&#x53f7;</to><enabled>Y</enabled> </hop>
403   - <hop> <from>&#x5206;&#x7ec4;&#x5404;&#x4e2a;&#x8def;&#x724c;&#x7684;&#x7ad9;</from><to>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x5173;&#x8054;</to><enabled>Y</enabled> </hop>
404   - <hop> <from>&#x589e;&#x52a0;&#x65f6;&#x523b;&#x8868;&#x540d;&#x5b57;&#xff0c;&#x7ebf;&#x8def;&#x540d;&#x5b57;&#xff0c;&#x505c;&#x8f66;&#x573a;&#x540d;&#x5b57;</from><to>&#x8bb0;&#x5f55;&#x5173;&#x8054; &#x28;&#x7b1b;&#x5361;&#x5c14;&#x8f93;&#x51fa;&#x29;</to><enabled>Y</enabled> </hop>
405   - <hop> <from>&#x73ed;&#x6b21;&#x6570;&#x636e;&#x8303;&#x5f0f;&#x5316;</from><to>&#x8bb0;&#x5f55;&#x5173;&#x8054; &#x28;&#x7b1b;&#x5361;&#x5c14;&#x8f93;&#x51fa;&#x29;</to><enabled>Y</enabled> </hop>
406   - <hop> <from>&#x8bb0;&#x5f55;&#x5173;&#x8054; &#x28;&#x7b1b;&#x5361;&#x5c14;&#x8f93;&#x51fa;&#x29;</from><to>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</to><enabled>Y</enabled> </hop>
407   - <hop> <from>&#x7c7b;&#x578b;&#x4fee;&#x6b63;</from><to>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail</to><enabled>Y</enabled> </hop>
408   - <hop> <from>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ec8;&#x70b9;&#x7ad9;&#xff0c;&#x5e76;&#x4f5c;&#x4e3a;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x7684;&#x8d77;&#x70b9;&#x7ad9;</from><to>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</to><enabled>Y</enabled> </hop>
409   - <hop> <from>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</from><to>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 3</to><enabled>Y</enabled> </hop>
410   - <hop> <from>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x51fa;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</from><to>&#x5339;&#x914d;&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>
411   - <hop> <from>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x8fdb;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</from><to>&#x5339;&#x914d;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>
412   - <hop> <from>&#x5339;&#x914d;&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</from><to>&#x4e0a;&#x4e0b;&#x884c;NULL&#x5224;&#x5b9a;</to><enabled>Y</enabled> </hop>
413   - <hop> <from>&#x4e0a;&#x4e0b;&#x884c;NULL&#x5224;&#x5b9a;</from><to>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 2</to><enabled>Y</enabled> </hop>
414   - <hop> <from>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 2</from><to>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail 2</to><enabled>Y</enabled> </hop>
415   - <hop> <from>&#x5339;&#x914d;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</from><to>&#x4e0a;&#x4e0b;&#x884c;&#x5224;&#x5b9a; 2</to><enabled>Y</enabled> </hop>
416   - <hop> <from>&#x4e0a;&#x4e0b;&#x884c;&#x5224;&#x5b9a; 2</from><to>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 3</to><enabled>Y</enabled> </hop>
417   - <hop> <from>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 3</from><to>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail 3</to><enabled>Y</enabled> </hop>
418   - </order>
419   - <step>
420   - <name>&#x4e0a;&#x4e0b;&#x884c;NULL&#x5224;&#x5b9a;</name>
421   - <type>IfNull</type>
422   - <description/>
423   - <distribute>Y</distribute>
424   - <custom_distribution/>
425   - <copies>1</copies>
426   - <partitioning>
427   - <method>none</method>
428   - <schema_name/>
429   - </partitioning>
430   - <replaceAllByValue/>
431   - <replaceAllMask/>
432   - <selectFields>Y</selectFields>
433   - <selectValuesType>N</selectValuesType>
434   - <setEmptyStringAll>N</setEmptyStringAll>
435   - <valuetypes>
436   - </valuetypes>
437   - <fields>
438   - <field>
439   - <name>sxx</name>
440   - <value>0</value>
441   - <mask/>
442   - <set_empty_string>N</set_empty_string>
443   - </field>
444   - </fields>
445   - <cluster_schema/>
446   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
447   - <xloc>230</xloc>
448   - <yloc>946</yloc>
449   - <draw>Y</draw>
450   - </GUI>
451   - </step>
452   -
453   - <step>
454   - <name>&#x4e0a;&#x4e0b;&#x884c;&#x5224;&#x5b9a; 2</name>
455   - <type>IfNull</type>
456   - <description/>
457   - <distribute>Y</distribute>
458   - <custom_distribution/>
459   - <copies>1</copies>
460   - <partitioning>
461   - <method>none</method>
462   - <schema_name/>
463   - </partitioning>
464   - <replaceAllByValue/>
465   - <replaceAllMask/>
466   - <selectFields>Y</selectFields>
467   - <selectValuesType>N</selectValuesType>
468   - <setEmptyStringAll>N</setEmptyStringAll>
469   - <valuetypes>
470   - </valuetypes>
471   - <fields>
472   - <field>
473   - <name>sxx2</name>
474   - <value>0</value>
475   - <mask/>
476   - <set_empty_string>N</set_empty_string>
477   - </field>
478   - </fields>
479   - <cluster_schema/>
480   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
481   - <xloc>804</xloc>
482   - <yloc>1081</yloc>
483   - <draw>Y</draw>
484   - </GUI>
485   - </step>
486   -
487   - <step>
488   - <name>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178;</name>
489   - <type>ValueMapper</type>
490   - <description/>
491   - <distribute>Y</distribute>
492   - <custom_distribution/>
493   - <copies>1</copies>
494   - <partitioning>
495   - <method>none</method>
496   - <schema_name/>
497   - </partitioning>
498   - <field_to_use>sxx</field_to_use>
499   - <target_field>sxx_desc</target_field>
500   - <non_match_default/>
501   - <fields>
502   - <field>
503   - <source_value>0</source_value>
504   - <target_value>&#x4e0a;&#x884c;</target_value>
505   - </field>
506   - <field>
507   - <source_value>1</source_value>
508   - <target_value>&#x4e0b;&#x884c;</target_value>
509   - </field>
510   - </fields>
511   - <cluster_schema/>
512   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
513   - <xloc>147</xloc>
514   - <yloc>403</yloc>
515   - <draw>Y</draw>
516   - </GUI>
517   - </step>
518   -
519   - <step>
520   - <name>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 2</name>
521   - <type>ValueMapper</type>
522   - <description/>
523   - <distribute>Y</distribute>
524   - <custom_distribution/>
525   - <copies>1</copies>
526   - <partitioning>
527   - <method>none</method>
528   - <schema_name/>
529   - </partitioning>
530   - <field_to_use>sxx</field_to_use>
531   - <target_field>sxx_desc</target_field>
532   - <non_match_default/>
533   - <fields>
534   - <field>
535   - <source_value>0</source_value>
536   - <target_value>&#x4e0a;&#x884c;</target_value>
537   - </field>
538   - <field>
539   - <source_value>1</source_value>
540   - <target_value>&#x4e0b;&#x884c;</target_value>
541   - </field>
542   - </fields>
543   - <cluster_schema/>
544   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
545   - <xloc>331</xloc>
546   - <yloc>598</yloc>
547   - <draw>Y</draw>
548   - </GUI>
549   - </step>
550   -
551   - <step>
552   - <name>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 3</name>
553   - <type>ValueMapper</type>
554   - <description/>
555   - <distribute>Y</distribute>
556   - <custom_distribution/>
557   - <copies>1</copies>
558   - <partitioning>
559   - <method>none</method>
560   - <schema_name/>
561   - </partitioning>
562   - <field_to_use>sxx</field_to_use>
563   - <target_field>sxx_desc</target_field>
564   - <non_match_default/>
565   - <fields>
566   - <field>
567   - <source_value>0</source_value>
568   - <target_value>&#x4e0a;&#x884c;</target_value>
569   - </field>
570   - <field>
571   - <source_value>1</source_value>
572   - <target_value>&#x4e0b;&#x884c;</target_value>
573   - </field>
574   - </fields>
575   - <cluster_schema/>
576   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
577   - <xloc>553</xloc>
578   - <yloc>859</yloc>
579   - <draw>Y</draw>
580   - </GUI>
581   - </step>
582   -
583   - <step>
584   - <name>&#x51fa;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x7ec8;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</name>
585   - <type>ScriptValueMod</type>
586   - <description/>
587   - <distribute>Y</distribute>
588   - <custom_distribution/>
589   - <copies>1</copies>
590   - <partitioning>
591   - <method>none</method>
592   - <schema_name/>
593   - </partitioning>
594   - <compatible>N</compatible>
595   - <optimizationLevel>9</optimizationLevel>
596   - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
597   - <jsScript_name>Script 1</jsScript_name>
598   - <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;&#x2f;&#x2f; &#x6dfb;&#x52a0;&#x7ad9;&#x70b9;&#x6807;&#x8bc6;&#xa;var cc_groups &#x3d; qdzgroups.split&#x28;&#x22;,&#x22;&#x29;&#x3b; &#x2f;&#x2f; &#x6240;&#x6709;&#x73ed;&#x6b21;&#x8d77;&#x70b9;&#x7ad9;&#x6570;&#x7ec4;&#xa;var zdzname &#x3d; cc_groups&#x5b;gno&#x5d;&#x3b; &#x2f;&#x2f; &#x51fa;&#x573a;&#x73ed;&#x6b21;&#x7684;&#x7ec8;&#x70b9;&#x7ad9;&#x662f;&#x4e0b;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x8d77;&#x59cb;&#x7ad9;&#xa;var endZdtype &#x3d; &#x27;E&#x27;&#x3b;&#xa;&#xa;var destory &#x3d; 0&#x3b; &#x2f;&#x2f; &#x672a;&#x64a4;&#x9500;flag</jsScript_script>
599   - </jsScript> </jsScripts> <fields> <field> <name>zdzname</name>
600   - <rename>zdzname</rename>
601   - <type>String</type>
602   - <length>-1</length>
603   - <precision>-1</precision>
604   - <replace>N</replace>
605   - </field> <field> <name>endZdtype</name>
606   - <rename>endZdtype</rename>
607   - <type>String</type>
608   - <length>-1</length>
609   - <precision>-1</precision>
610   - <replace>N</replace>
611   - </field> <field> <name>destory</name>
612   - <rename>destory</rename>
613   - <type>Integer</type>
614   - <length>-1</length>
615   - <precision>-1</precision>
616   - <replace>N</replace>
617   - </field> </fields> <cluster_schema/>
618   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
619   - <xloc>575</xloc>
620   - <yloc>502</yloc>
621   - <draw>Y</draw>
622   - </GUI>
623   - </step>
624   -
625   - <step>
626   - <name>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</name>
627   - <type>Dummy</type>
628   - <description/>
629   - <distribute>Y</distribute>
630   - <custom_distribution/>
631   - <copies>1</copies>
632   - <partitioning>
633   - <method>none</method>
634   - <schema_name/>
635   - </partitioning>
636   - <cluster_schema/>
637   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
638   - <xloc>869</xloc>
639   - <yloc>504</yloc>
640   - <draw>Y</draw>
641   - </GUI>
642   - </step>
643   -
644   - <step>
645   - <name>&#x5206;&#x7ec4;&#x5404;&#x4e2a;&#x8def;&#x724c;&#x7684;&#x7ad9;</name>
646   - <type>GroupBy</type>
647   - <description/>
648   - <distribute>Y</distribute>
649   - <custom_distribution/>
650   - <copies>1</copies>
651   - <partitioning>
652   - <method>none</method>
653   - <schema_name/>
654   - </partitioning>
655   - <all_rows>Y</all_rows>
656   - <ignore_aggregate>N</ignore_aggregate>
657   - <field_ignore/>
658   - <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
659   - <prefix>grp</prefix>
660   - <add_linenr>Y</add_linenr>
661   - <linenr_fieldname>gno</linenr_fieldname>
662   - <give_back_row>N</give_back_row>
663   - <group>
664   - <field>
665   - <name>lp</name>
666   - </field>
667   - </group>
668   - <fields>
669   - <field>
670   - <aggregate>qdzgroups</aggregate>
671   - <subject>qdzname</subject>
672   - <type>CONCAT_STRING</type>
673   - <valuefield>,</valuefield>
674   - </field>
675   - </fields>
676   - <cluster_schema/>
677   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
678   - <xloc>892</xloc>
679   - <yloc>44</yloc>
680   - <draw>Y</draw>
681   - </GUI>
682   - </step>
683   -
684   - <step>
685   - <name>&#x5339;&#x914d;&#x4e0a;&#x4e0b;&#x884c;&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
686   - <type>ScriptValueMod</type>
687   - <description/>
688   - <distribute>Y</distribute>
689   - <custom_distribution/>
690   - <copies>1</copies>
691   - <partitioning>
692   - <method>none</method>
693   - <schema_name/>
694   - </partitioning>
695   - <compatible>N</compatible>
696   - <optimizationLevel>9</optimizationLevel>
697   - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
698   - <jsScript_name>Script 1</jsScript_name>
699   - <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var jhlc&#x3b; &#x2f;&#x2f; &#x8ba1;&#x5212;&#x91cc;&#x7a0b;&#xa;var bcsj&#x3b; &#x2f;&#x2f; &#x73ed;&#x6b21;&#x65f6;&#x95f4;&#xa;&#xa;&#x2f;&#x2f; &#x65f6;&#x95f4;&#x8303;&#x56f4;&#x6b63;&#x5219;&#x8868;&#x8fbe;&#x5f0f;&#xa;var timeRex &#x3d; &#x2f;&#x5e;&#x28;&#x5b;01&#x5d;&#x3f;&#x5b;0-9&#x5d;&#x7c;2&#x5b;0-3&#x5d;&#x29;&#x3a;&#x5b;0-5&#x5d;&#x5b;0-9&#x5d;&#x24;&#x2f;&#x3b;&#xa;&#x2f;&#x2f; &#x53d1;&#x8f66;&#x65f6;&#x95f4;&#x8f6c;&#x6362;&#x6210;&#x65e5;&#x671f;&#xa;var fcsj_hour &#x3d; str2num&#x28;sendtime_calcu.substr&#x28;0, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa;var fcsj_min &#x3d; str2num&#x28;sendtime_calcu.substr&#x28;3, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa;var fcsj_date &#x3d; new Date&#x28;2000,1,1,fcsj_hour,fcsj_min,0&#x29;&#x3b;&#xa;&#xa;&#x2f;&#x2f; &#x5224;&#x5b9a;&#x662f;&#x5426;&#x65e9;&#x9ad8;&#x5cf0;&#xa;var isZgf &#x3d; false&#x3b;&#xa;if &#x28;timeRex.test&#x28;early_start_time&#x29; &#x26;&#x26; timeRex.test&#x28;early_end_time&#x29; &#x26;&#x26; early_up_time &#x21;&#x3d; null &#x26;&#x26; early_down_time &#x21;&#x3d; null&#x29; &#x7b;&#xa; var early_s_hour &#x3d; str2num&#x28;early_start_time.substr&#x28;0, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var early_s_min &#x3d; str2num&#x28;early_start_time.substr&#x28;3, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var early_s_date &#x3d; new Date&#x28;2000,1,1,early_s_hour,early_s_min,0&#x29;&#x3b;&#xa;&#xa; var early_e_hour &#x3d; str2num&#x28;early_end_time.substr&#x28;0, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var early_e_min &#x3d; str2num&#x28;early_end_time.substr&#x28;3, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var early_e_date &#x3d; new Date&#x28;2000,1,1,early_e_hour,early_e_min,0&#x29;&#x3b;&#xa;&#xa; if &#x28;fcsj_date &#x3e;&#x3d; early_s_date &#x26;&#x26; fcsj_date &#x3c;&#x3d; early_e_date&#x29; &#x7b;&#xa; isZgf &#x3d; true&#x3b;&#xa; &#x7d;&#xa;&#x7d;&#xa;&#xa;&#x2f;&#x2f; &#x5224;&#x5b9a;&#x662f;&#x5426;&#x665a;&#x9ad8;&#x5cf0;&#xa;var isWgf &#x3d; false&#x3b;&#xa;if &#x28;timeRex.test&#x28;late_start_time&#x29; &#x26;&#x26; timeRex.test&#x28;late_end_time&#x29; &#x26;&#x26; late_up_time &#x21;&#x3d; null &#x26;&#x26; late_down_time &#x21;&#x3d; null&#x29; &#x7b;&#xa; var late_s_hour &#x3d; str2num&#x28;late_start_time.substr&#x28;0, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var late_s_min &#x3d; str2num&#x28;late_start_time.substr&#x28;3, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var late_s_date &#x3d; new Date&#x28;2000,1,1,late_s_hour,late_s_min,0&#x29;&#x3b;&#xa;&#xa; var late_e_hour &#x3d; str2num&#x28;late_end_time.substr&#x28;0, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var late_e_min &#x3d; str2num&#x28;late_end_time.substr&#x28;3, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var late_e_date &#x3d; new Date&#x28;2000,1,1,late_e_hour,late_e_min,0&#x29;&#x3b;&#xa;&#xa; if &#x28;fcsj_date &#x3e;&#x3d; late_s_date &#x26;&#x26; fcsj_date &#x3c;&#x3d; late_e_date&#x29; &#x7b;&#xa; isWgf &#x3d; true&#x3b;&#xa; &#x7d;&#xa;&#x7d;&#xa;&#xa;&#x2f;&#x2f; &#x5224;&#x5b9a;&#x662f;&#x5426;&#x665a;&#x9ad8;&#x5cf0;&#xa;&#xa;if &#x28;sxx &#x3d;&#x3d; 0&#x29; &#x7b; &#x2f;&#x2f; &#x4e0a;&#x884c;&#xa; if &#x28;isZgf&#x29; &#x7b;&#xa; jhlc &#x3d; up_mileage&#x3b;&#xa; bcsj &#x3d; early_up_time &#x21;&#x3d; 0 &#x3f; early_up_time &#x3a; up_travel_time&#x3b;&#xa; &#x7d; else if &#x28;isWgf&#x29; &#x7b;&#xa; jhlc &#x3d; up_mileage&#x3b;&#xa; bcsj &#x3d; late_up_time &#x21;&#x3d; 0 &#x3f; late_up_time &#x3a; up_travel_time&#x3b;&#xa; &#x7d; else &#x7b;&#xa; jhlc &#x3d; up_mileage&#x3b;&#xa; bcsj &#x3d; up_travel_time&#x3b;&#xa; &#x7d;&#xa;&#x7d; else &#x7b; &#x2f;&#x2f; sxx &#x3d;&#x3d; 1 &#x4e0b;&#x884c;&#xa; if &#x28;isZgf&#x29; &#x7b;&#xa; jhlc &#x3d; down_mileage&#x3b;&#xa; bcsj &#x3d; early_down_time &#x21;&#x3d; 0 &#x3f; early_down_time &#x3a; down_travel_time&#x3b;&#xa; &#x7d; else if &#x28;isWgf&#x29; &#x7b;&#xa; jhlc &#x3d; down_mileage&#x3b;&#xa; bcsj &#x3d; late_down_time &#x21;&#x3d; 0 &#x3f; late_down_time &#x3a; down_travel_time&#x3b;&#xa; &#x7d; else &#x7b;&#xa; jhlc &#x3d; down_mileage&#x3b;&#xa; bcsj &#x3d; down_travel_time&#x3b;&#xa; &#x7d;&#xa;&#x7d;&#xa;&#xa;</jsScript_script>
700   - </jsScript> </jsScripts> <fields> <field> <name>jhlc</name>
701   - <rename>jhlc</rename>
702   - <type>String</type>
703   - <length>-1</length>
704   - <precision>-1</precision>
705   - <replace>N</replace>
706   - </field> <field> <name>bcsj</name>
707   - <rename>bcsj</rename>
708   - <type>String</type>
709   - <length>-1</length>
710   - <precision>-1</precision>
711   - <replace>N</replace>
712   - </field> </fields> <cluster_schema/>
713   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
714   - <xloc>148</xloc>
715   - <yloc>674</yloc>
716   - <draw>Y</draw>
717   - </GUI>
718   - </step>
719   -
720   - <step>
721   - <name>&#x5339;&#x914d;&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
722   - <type>ScriptValueMod</type>
723   - <description/>
724   - <distribute>Y</distribute>
725   - <custom_distribution/>
726   - <copies>1</copies>
727   - <partitioning>
728   - <method>none</method>
729   - <schema_name/>
730   - </partitioning>
731   - <compatible>N</compatible>
732   - <optimizationLevel>9</optimizationLevel>
733   - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
734   - <jsScript_name>Script 1</jsScript_name>
735   - <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var out_mileage&#x3b; &#x2f;&#x2f; &#x51fa;&#x573a;&#x8ba1;&#x5212;&#x91cc;&#x7a0b;&#xa;var out_time&#x3b; &#x2f;&#x2f; &#x51fa;&#x573a;&#x8ba1;&#x5212;&#x65f6;&#x95f4;&#xa;&#xa;if &#x28;sxx &#x3d;&#x3d; 0&#x29; &#x7b; &#x2f;&#x2f; &#x4e0a;&#x884c;&#xa; out_mileage &#x3d; up_out_mileage&#x3b;&#xa; out_time &#x3d; up_out_timer&#x3b;&#xa;&#x7d; else &#x7b; &#x2f;&#x2f; sxx &#x3d;&#x3d; 1 &#x4e0b;&#x884c;&#xa; out_mileage &#x3d; down_out_mileage&#x3b;&#xa; out_time &#x3d; down_out_timer&#x3b;&#xa;&#x7d;&#xa;&#xa;&#xa;&#xa;</jsScript_script>
736   - </jsScript> </jsScripts> <fields> <field> <name>out_mileage</name>
737   - <rename>out_mileage</rename>
738   - <type>String</type>
739   - <length>-1</length>
740   - <precision>-1</precision>
741   - <replace>N</replace>
742   - </field> <field> <name>out_time</name>
743   - <rename>out_time</rename>
744   - <type>String</type>
745   - <length>-1</length>
746   - <precision>-1</precision>
747   - <replace>N</replace>
748   - </field> </fields> <cluster_schema/>
749   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
750   - <xloc>336</xloc>
751   - <yloc>862</yloc>
752   - <draw>Y</draw>
753   - </GUI>
754   - </step>
755   -
756   - <step>
757   - <name>&#x5339;&#x914d;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
758   - <type>ScriptValueMod</type>
759   - <description/>
760   - <distribute>Y</distribute>
761   - <custom_distribution/>
762   - <copies>1</copies>
763   - <partitioning>
764   - <method>none</method>
765   - <schema_name/>
766   - </partitioning>
767   - <compatible>N</compatible>
768   - <optimizationLevel>9</optimizationLevel>
769   - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
770   - <jsScript_name>Script 1</jsScript_name>
771   - <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var parade_mileage&#x3b; &#x2f;&#x2f; &#x8fdb;&#x573a;&#x8ba1;&#x5212;&#x91cc;&#x7a0b;&#xa;var parade_time&#x3b; &#x2f;&#x2f; &#x8fdb;&#x573a;&#x8ba1;&#x5212;&#x65f6;&#x95f4;&#xa;&#xa;if &#x28;sxx2 &#x3d;&#x3d; 0&#x29; &#x7b; &#x2f;&#x2f; &#x4e0a;&#x884c;&#xa; parade_mileage &#x3d; up_in_mileage&#x3b;&#xa; parade_time &#x3d; up_in_timer&#x3b;&#xa;&#x7d; else &#x7b; &#x2f;&#x2f; sxx &#x3d;&#x3d; 1 &#x4e0b;&#x884c;&#xa; parade_mileage &#x3d; down_in_mileage&#x3b;&#xa; parade_time &#x3d; down_in_timer&#x3b;&#xa;&#x7d;&#xa;&#xa;&#xa;&#xa;</jsScript_script>
772   - </jsScript> </jsScripts> <fields> <field> <name>parade_mileage</name>
773   - <rename>parade_mileage</rename>
774   - <type>String</type>
775   - <length>-1</length>
776   - <precision>-1</precision>
777   - <replace>N</replace>
778   - </field> <field> <name>parade_time</name>
779   - <rename>parade_time</rename>
780   - <type>String</type>
781   - <length>-1</length>
782   - <precision>-1</precision>
783   - <replace>N</replace>
784   - </field> </fields> <cluster_schema/>
785   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
786   - <xloc>726</xloc>
787   - <yloc>1005</yloc>
788   - <draw>Y</draw>
789   - </GUI>
790   - </step>
791   -
792   - <step>
793   - <name>&#x589e;&#x52a0;&#x65f6;&#x523b;&#x8868;&#x540d;&#x5b57;&#xff0c;&#x7ebf;&#x8def;&#x540d;&#x5b57;&#xff0c;&#x505c;&#x8f66;&#x573a;&#x540d;&#x5b57;</name>
794   - <type>DataGrid</type>
795   - <description/>
796   - <distribute>Y</distribute>
797   - <custom_distribution/>
798   - <copies>1</copies>
799   - <partitioning>
800   - <method>none</method>
801   - <schema_name/>
802   - </partitioning>
803   - <fields>
804   - </fields>
805   - <data>
806   - <line> </line>
807   - </data>
808   - <cluster_schema/>
809   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
810   - <xloc>110</xloc>
811   - <yloc>133</yloc>
812   - <draw>Y</draw>
813   - </GUI>
814   - </step>
815   -
816   - <step>
817   - <name>&#x5904;&#x7406;&#x6570;&#x636e;</name>
818   - <type>ScriptValueMod</type>
819   - <description/>
820   - <distribute>Y</distribute>
821   - <custom_distribution/>
822   - <copies>1</copies>
823   - <partitioning>
824   - <method>none</method>
825   - <schema_name/>
826   - </partitioning>
827   - <compatible>N</compatible>
828   - <optimizationLevel>9</optimizationLevel>
829   - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
830   - <jsScript_name>Script 1</jsScript_name>
831   - <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;&#x2f;&#x2f; &#x4f7f;&#x7528;&#x6b63;&#x5219;&#x8868;&#x8fbe;&#x5f0f;&#x53bb;&#x9664;&#x7ad9;&#x70b9;&#x540d;&#x79f0;&#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;&#x505c;&#x9a76;&#xa;var ists &#x3d; 0&#x3b;&#xa;&#xa;&#x2f;&#x2f; &#x8bbe;&#x7f6e;isCanceled&#xa;var iscanceled &#x3d; 0&#x3b;</jsScript_script>
832   - </jsScript> </jsScripts> <fields> <field> <name>qdzname</name>
833   - <rename>qdzname</rename>
834   - <type>String</type>
835   - <length>-1</length>
836   - <precision>-1</precision>
837   - <replace>Y</replace>
838   - </field> <field> <name>isfb</name>
839   - <rename>isfb</rename>
840   - <type>Integer</type>
841   - <length>-1</length>
842   - <precision>-1</precision>
843   - <replace>N</replace>
844   - </field> <field> <name>iscanceled</name>
845   - <rename>iscanceled</rename>
846   - <type>Integer</type>
847   - <length>-1</length>
848   - <precision>-1</precision>
849   - <replace>N</replace>
850   - </field> <field> <name>sendtime_calcu</name>
851   - <rename>sendtime_calcu</rename>
852   - <type>String</type>
853   - <length>-1</length>
854   - <precision>-1</precision>
855   - <replace>N</replace>
856   - </field> <field> <name>ists</name>
857   - <rename>ists</rename>
858   - <type>Integer</type>
859   - <length>-1</length>
860   - <precision>-1</precision>
861   - <replace>N</replace>
862   - </field> </fields> <cluster_schema/>
863   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
864   - <xloc>788</xloc>
865   - <yloc>44</yloc>
866   - <draw>Y</draw>
867   - </GUI>
868   - </step>
869   -
870   - <step>
871   - <name>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</name>
872   - <type>SelectValues</type>
873   - <description/>
874   - <distribute>Y</distribute>
875   - <custom_distribution/>
876   - <copies>1</copies>
877   - <partitioning>
878   - <method>none</method>
879   - <schema_name/>
880   - </partitioning>
881   - <fields> <field> <name>&#x8def;&#x724c;</name>
882   - <rename>lp</rename>
883   - <length>-2</length>
884   - <precision>-2</precision>
885   - </field> <field> <name>&#x7ad9;&#x70b9;&#x540d;&#x79f0;</name>
886   - <rename>qdzname</rename>
887   - <length>-2</length>
888   - <precision>-2</precision>
889   - </field> <field> <name>&#x53d1;&#x8f66;&#x65f6;&#x95f4;</name>
890   - <rename>sendtime</rename>
891   - <length>-2</length>
892   - <precision>-2</precision>
893   - </field> <select_unspecified>Y</select_unspecified>
894   - </fields> <cluster_schema/>
895   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
896   - <xloc>444</xloc>
897   - <yloc>131</yloc>
898   - <draw>Y</draw>
899   - </GUI>
900   - </step>
901   -
902   - <step>
903   - <name>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;1</name>
904   - <type>FilterRows</type>
905   - <description/>
906   - <distribute>Y</distribute>
907   - <custom_distribution/>
908   - <copies>1</copies>
909   - <partitioning>
910   - <method>none</method>
911   - <schema_name/>
912   - </partitioning>
913   -<send_true_to>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</send_true_to>
914   -<send_false_to>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</send_false_to>
915   - <compare>
916   -<condition>
917   - <negated>N</negated>
918   - <leftvalue>bctype</leftvalue>
919   - <function>&#x3d;</function>
920   - <rightvalue/>
921   - <value><name>constant</name><type>String</type><text>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</text><length>-1</length><precision>-1</precision><isnull>N</isnull><mask/></value> </condition>
922   - </compare>
923   - <cluster_schema/>
924   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
925   - <xloc>860</xloc>
926   - <yloc>401</yloc>
927   - <draw>Y</draw>
928   - </GUI>
929   - </step>
930   -
931   - <step>
932   - <name>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</name>
933   - <type>FilterRows</type>
934   - <description/>
935   - <distribute>Y</distribute>
936   - <custom_distribution/>
937   - <copies>1</copies>
938   - <partitioning>
939   - <method>none</method>
940   - <schema_name/>
941   - </partitioning>
942   -<send_true_to>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</send_true_to>
943   -<send_false_to>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</send_false_to>
944   - <compare>
945   -<condition>
946   - <negated>N</negated>
947   - <leftvalue>bctype</leftvalue>
948   - <function>&#x3d;</function>
949   - <rightvalue/>
950   - <value><name>constant</name><type>String</type><text>&#x51fa;&#x573a;</text><length>-1</length><precision>-1</precision><isnull>N</isnull><mask/></value> </condition>
951   - </compare>
952   - <cluster_schema/>
953   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
954   - <xloc>995</xloc>
955   - <yloc>503</yloc>
956   - <draw>Y</draw>
957   - </GUI>
958   - </step>
959   -
960   - <step>
961   - <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail</name>
962   - <type>InsertUpdate</type>
963   - <description/>
964   - <distribute>Y</distribute>
965   - <custom_distribution/>
966   - <copies>1</copies>
967   - <partitioning>
968   - <method>none</method>
969   - <schema_name/>
970   - </partitioning>
971   - <connection>bus_control_variable</connection>
972   - <commit>100</commit>
973   - <update_bypassed>N</update_bypassed>
974   - <lookup>
975   - <schema/>
976   - <table>bsth_c_s_ttinfo_detail</table>
977   - <key>
978   - <name>xlid</name>
979   - <field>xl</field>
980   - <condition>&#x3d;</condition>
981   - <name2/>
982   - </key>
983   - <key>
984   - <name>ttid</name>
985   - <field>ttinfo</field>
986   - <condition>&#x3d;</condition>
987   - <name2/>
988   - </key>
989   - <key>
990   - <name>lpid</name>
991   - <field>lp</field>
992   - <condition>&#x3d;</condition>
993   - <name2/>
994   - </key>
995   - <key>
996   - <name>fcno</name>
997   - <field>fcno</field>
998   - <condition>&#x3d;</condition>
999   - <name2/>
1000   - </key>
1001   - <key>
1002   - <name>bcs</name>
1003   - <field>bcs</field>
1004   - <condition>&#x3d;</condition>
1005   - <name2/>
1006   - </key>
1007   - <value>
1008   - <name>lp</name>
1009   - <rename>lpid</rename>
1010   - <update>Y</update>
1011   - </value>
1012   - <value>
1013   - <name>bc_type</name>
1014   - <rename>bctype_code</rename>
1015   - <update>Y</update>
1016   - </value>
1017   - <value>
1018   - <name>bcs</name>
1019   - <rename>bcs</rename>
1020   - <update>Y</update>
1021   - </value>
1022   - <value>
1023   - <name>bcsj</name>
1024   - <rename>bcsj</rename>
1025   - <update>Y</update>
1026   - </value>
1027   - <value>
1028   - <name>fcno</name>
1029   - <rename>fcno</rename>
1030   - <update>Y</update>
1031   - </value>
1032   - <value>
1033   - <name>jhlc</name>
1034   - <rename>jhlc</rename>
1035   - <update>Y</update>
1036   - </value>
1037   - <value>
1038   - <name>fcsj</name>
1039   - <rename>sendtime_calcu</rename>
1040   - <update>Y</update>
1041   - </value>
1042   - <value>
1043   - <name>ttinfo</name>
1044   - <rename>ttid</rename>
1045   - <update>Y</update>
1046   - </value>
1047   - <value>
1048   - <name>xl</name>
1049   - <rename>xlid</rename>
1050   - <update>Y</update>
1051   - </value>
1052   - <value>
1053   - <name>qdz</name>
1054   - <rename>qdzid</rename>
1055   - <update>Y</update>
1056   - </value>
1057   - <value>
1058   - <name>zdz</name>
1059   - <rename>zdzid</rename>
1060   - <update>Y</update>
1061   - </value>
1062   - <value>
1063   - <name>xl_dir</name>
1064   - <rename>sxx</rename>
1065   - <update>Y</update>
1066   - </value>
1067   - <value>
1068   - <name>isfb</name>
1069   - <rename>isfb</rename>
1070   - <update>Y</update>
1071   - </value>
1072   - <value>
1073   - <name>qdz_code</name>
1074   - <rename>qdzcode</rename>
1075   - <update>Y</update>
1076   - </value>
1077   - <value>
1078   - <name>qdz_name</name>
1079   - <rename>qdzname</rename>
1080   - <update>Y</update>
1081   - </value>
1082   - <value>
1083   - <name>zdz_code</name>
1084   - <rename>zdzcode</rename>
1085   - <update>Y</update>
1086   - </value>
1087   - <value>
1088   - <name>zdz_name</name>
1089   - <rename>zdzname</rename>
1090   - <update>Y</update>
1091   - </value>
1092   - <value>
1093   - <name>ists</name>
1094   - <rename>ists</rename>
1095   - <update>Y</update>
1096   - </value>
1097   - </lookup>
1098   - <cluster_schema/>
1099   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
1100   - <xloc>143</xloc>
1101   - <yloc>860</yloc>
1102   - <draw>Y</draw>
1103   - </GUI>
1104   - </step>
1105   -
1106   - <step>
1107   - <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail 2</name>
1108   - <type>InsertUpdate</type>
1109   - <description/>
1110   - <distribute>Y</distribute>
1111   - <custom_distribution/>
1112   - <copies>1</copies>
1113   - <partitioning>
1114   - <method>none</method>
1115   - <schema_name/>
1116   - </partitioning>
1117   - <connection>bus_control_variable</connection>
1118   - <commit>100</commit>
1119   - <update_bypassed>N</update_bypassed>
1120   - <lookup>
1121   - <schema/>
1122   - <table>bsth_c_s_ttinfo_detail</table>
1123   - <key>
1124   - <name>xlid</name>
1125   - <field>xl</field>
1126   - <condition>&#x3d;</condition>
1127   - <name2/>
1128   - </key>
1129   - <key>
1130   - <name>ttid</name>
1131   - <field>ttinfo</field>
1132   - <condition>&#x3d;</condition>
1133   - <name2/>
1134   - </key>
1135   - <key>
1136   - <name>lpid</name>
1137   - <field>lp</field>
1138   - <condition>&#x3d;</condition>
1139   - <name2/>
1140   - </key>
1141   - <key>
1142   - <name>fcno</name>
1143   - <field>fcno</field>
1144   - <condition>&#x3d;</condition>
1145   - <name2/>
1146   - </key>
1147   - <key>
1148   - <name>bcs</name>
1149   - <field>bcs</field>
1150   - <condition>&#x3d;</condition>
1151   - <name2/>
1152   - </key>
1153   - <value>
1154   - <name>tcc</name>
1155   - <rename>qdzid</rename>
1156   - <update>Y</update>
1157   - </value>
1158   - <value>
1159   - <name>zdz</name>
1160   - <rename>zdzid</rename>
1161   - <update>Y</update>
1162   - </value>
1163   - <value>
1164   - <name>xl</name>
1165   - <rename>xlid</rename>
1166   - <update>Y</update>
1167   - </value>
1168   - <value>
1169   - <name>ttinfo</name>
1170   - <rename>ttid</rename>
1171   - <update>Y</update>
1172   - </value>
1173   - <value>
1174   - <name>xl_dir</name>
1175   - <rename>sxx</rename>
1176   - <update>Y</update>
1177   - </value>
1178   - <value>
1179   - <name>lp</name>
1180   - <rename>lpid</rename>
1181   - <update>Y</update>
1182   - </value>
1183   - <value>
1184   - <name>jhlc</name>
1185   - <rename>out_mileage</rename>
1186   - <update>Y</update>
1187   - </value>
1188   - <value>
1189   - <name>fcsj</name>
1190   - <rename>sendtime_calcu</rename>
1191   - <update>Y</update>
1192   - </value>
1193   - <value>
1194   - <name>bcsj</name>
1195   - <rename>out_time</rename>
1196   - <update>Y</update>
1197   - </value>
1198   - <value>
1199   - <name>bcs</name>
1200   - <rename>bcs</rename>
1201   - <update>Y</update>
1202   - </value>
1203   - <value>
1204   - <name>fcno</name>
1205   - <rename>fcno</rename>
1206   - <update>Y</update>
1207   - </value>
1208   - <value>
1209   - <name>bc_type</name>
1210   - <rename>bctype_code</rename>
1211   - <update>Y</update>
1212   - </value>
1213   - <value>
1214   - <name>isfb</name>
1215   - <rename>isfb</rename>
1216   - <update>Y</update>
1217   - </value>
1218   - <value>
1219   - <name>qdz_code</name>
1220   - <rename>qdzcode</rename>
1221   - <update>Y</update>
1222   - </value>
1223   - <value>
1224   - <name>qdz_name</name>
1225   - <rename>tn</rename>
1226   - <update>Y</update>
1227   - </value>
1228   - <value>
1229   - <name>zdz_code</name>
1230   - <rename>zdzcode</rename>
1231   - <update>Y</update>
1232   - </value>
1233   - <value>
1234   - <name>zdz_name</name>
1235   - <rename>zdzname</rename>
1236   - <update>Y</update>
1237   - </value>
1238   - <value>
1239   - <name>ists</name>
1240   - <rename>ists</rename>
1241   - <update>Y</update>
1242   - </value>
1243   - </lookup>
1244   - <cluster_schema/>
1245   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
1246   - <xloc>340</xloc>
1247   - <yloc>1087</yloc>
1248   - <draw>Y</draw>
1249   - </GUI>
1250   - </step>
1251   -
1252   - <step>
1253   - <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail 3</name>
1254   - <type>InsertUpdate</type>
1255   - <description/>
1256   - <distribute>Y</distribute>
1257   - <custom_distribution/>
1258   - <copies>1</copies>
1259   - <partitioning>
1260   - <method>none</method>
1261   - <schema_name/>
1262   - </partitioning>
1263   - <connection>bus_control_variable</connection>
1264   - <commit>100</commit>
1265   - <update_bypassed>N</update_bypassed>
1266   - <lookup>
1267   - <schema/>
1268   - <table>bsth_c_s_ttinfo_detail</table>
1269   - <key>
1270   - <name>xlid</name>
1271   - <field>xl</field>
1272   - <condition>&#x3d;</condition>
1273   - <name2/>
1274   - </key>
1275   - <key>
1276   - <name>ttid</name>
1277   - <field>ttinfo</field>
1278   - <condition>&#x3d;</condition>
1279   - <name2/>
1280   - </key>
1281   - <key>
1282   - <name>lpid</name>
1283   - <field>lp</field>
1284   - <condition>&#x3d;</condition>
1285   - <name2/>
1286   - </key>
1287   - <key>
1288   - <name>fcno</name>
1289   - <field>fcno</field>
1290   - <condition>&#x3d;</condition>
1291   - <name2/>
1292   - </key>
1293   - <key>
1294   - <name>bcs</name>
1295   - <field>bcs</field>
1296   - <condition>&#x3d;</condition>
1297   - <name2/>
1298   - </key>
1299   - <value>
1300   - <name>fcno</name>
1301   - <rename>fcno</rename>
1302   - <update>Y</update>
1303   - </value>
1304   - <value>
1305   - <name>bcs</name>
1306   - <rename>bcs</rename>
1307   - <update>Y</update>
1308   - </value>
1309   - <value>
1310   - <name>xl</name>
1311   - <rename>xlid</rename>
1312   - <update>Y</update>
1313   - </value>
1314   - <value>
1315   - <name>ttinfo</name>
1316   - <rename>ttid</rename>
1317   - <update>Y</update>
1318   - </value>
1319   - <value>
1320   - <name>lp</name>
1321   - <rename>lpid</rename>
1322   - <update>Y</update>
1323   - </value>
1324   - <value>
1325   - <name>bc_type</name>
1326   - <rename>bctype_code</rename>
1327   - <update>Y</update>
1328   - </value>
1329   - <value>
1330   - <name>bcsj</name>
1331   - <rename>parade_time</rename>
1332   - <update>Y</update>
1333   - </value>
1334   - <value>
1335   - <name>jhlc</name>
1336   - <rename>parade_mileage</rename>
1337   - <update>Y</update>
1338   - </value>
1339   - <value>
1340   - <name>fcsj</name>
1341   - <rename>sendtime_calcu</rename>
1342   - <update>Y</update>
1343   - </value>
1344   - <value>
1345   - <name>xl_dir</name>
1346   - <rename>sxx2</rename>
1347   - <update>Y</update>
1348   - </value>
1349   - <value>
1350   - <name>qdz</name>
1351   - <rename>qdzid</rename>
1352   - <update>Y</update>
1353   - </value>
1354   - <value>
1355   - <name>tcc</name>
1356   - <rename>zdzid</rename>
1357   - <update>Y</update>
1358   - </value>
1359   - <value>
1360   - <name>isfb</name>
1361   - <rename>isfb</rename>
1362   - <update>Y</update>
1363   - </value>
1364   - <value>
1365   - <name>qdz_code</name>
1366   - <rename>qdzcode</rename>
1367   - <update>Y</update>
1368   - </value>
1369   - <value>
1370   - <name>qdz_name</name>
1371   - <rename>qname</rename>
1372   - <update>Y</update>
1373   - </value>
1374   - <value>
1375   - <name>zdz_code</name>
1376   - <rename>zdzcode</rename>
1377   - <update>Y</update>
1378   - </value>
1379   - <value>
1380   - <name>zdz_name</name>
1381   - <rename>tn</rename>
1382   - <update>Y</update>
1383   - </value>
1384   - <value>
1385   - <name>ists</name>
1386   - <rename>ists</rename>
1387   - <update>Y</update>
1388   - </value>
1389   - </lookup>
1390   - <cluster_schema/>
1391   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
1392   - <xloc>845</xloc>
1393   - <yloc>899</yloc>
1394   - <draw>Y</draw>
1395   - </GUI>
1396   - </step>
1397   -
1398   - <step>
1399   - <name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</name>
1400   - <type>ExcelInput</type>
1401   - <description/>
1402   - <distribute>N</distribute>
1403   - <custom_distribution/>
1404   - <copies>1</copies>
1405   - <partitioning>
1406   - <method>none</method>
1407   - <schema_name/>
1408   - </partitioning>
1409   - <header>Y</header>
1410   - <noempty>Y</noempty>
1411   - <stoponempty>N</stoponempty>
1412   - <filefield/>
1413   - <sheetfield/>
1414   - <sheetrownumfield/>
1415   - <rownumfield/>
1416   - <sheetfield/>
1417   - <filefield/>
1418   - <limit>0</limit>
1419   - <encoding/>
1420   - <add_to_result_filenames>Y</add_to_result_filenames>
1421   - <accept_filenames>N</accept_filenames>
1422   - <accept_field/>
1423   - <accept_stepname/>
1424   - <file>
1425   - <name/>
1426   - <filemask/>
1427   - <exclude_filemask/>
1428   - <file_required>N</file_required>
1429   - <include_subfolders>N</include_subfolders>
1430   - </file>
1431   - <fields>
1432   - </fields>
1433   - <sheets>
1434   - <sheet>
1435   - <name/>
1436   - <startrow>0</startrow>
1437   - <startcol>0</startcol>
1438   - </sheet>
1439   - </sheets>
1440   - <strict_types>N</strict_types>
1441   - <error_ignored>N</error_ignored>
1442   - <error_line_skipped>N</error_line_skipped>
1443   - <bad_line_files_destination_directory/>
1444   - <bad_line_files_extension>warning</bad_line_files_extension>
1445   - <error_line_files_destination_directory/>
1446   - <error_line_files_extension>error</error_line_files_extension>
1447   - <line_number_files_destination_directory/>
1448   - <line_number_files_extension>line</line_number_files_extension>
1449   - <shortFileFieldName/>
1450   - <pathFieldName/>
1451   - <hiddenFieldName/>
1452   - <lastModificationTimeFieldName/>
1453   - <uriNameFieldName/>
1454   - <rootUriNameFieldName/>
1455   - <extensionFieldName/>
1456   - <sizeFieldName/>
1457   - <spreadsheet_type>JXL</spreadsheet_type>
1458   - <cluster_schema/>
1459   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
1460   - <xloc>112</xloc>
1461   - <yloc>44</yloc>
1462   - <draw>Y</draw>
1463   - </GUI>
1464   - </step>
1465   -
1466   - <step>
1467   - <name>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;1</name>
1468   - <type>DBLookup</type>
1469   - <description/>
1470   - <distribute>Y</distribute>
1471   - <custom_distribution/>
1472   - <copies>1</copies>
1473   - <partitioning>
1474   - <method>none</method>
1475   - <schema_name/>
1476   - </partitioning>
1477   - <connection>bus_control_variable</connection>
1478   - <cache>N</cache>
1479   - <cache_load_all>N</cache_load_all>
1480   - <cache_size>0</cache_size>
1481   - <lookup>
1482   - <schema/>
1483   - <table>bsth_c_car_park</table>
1484   - <orderby/>
1485   - <fail_on_multiple>N</fail_on_multiple>
1486   - <eat_row_on_failure>N</eat_row_on_failure>
1487   - <key>
1488   - <name>tccname_</name>
1489   - <field>park_name</field>
1490   - <condition>&#x3d;</condition>
1491   - <name2/>
1492   - </key>
1493   - <value>
1494   - <name>id</name>
1495   - <rename>qdzid</rename>
1496   - <default/>
1497   - <type>Integer</type>
1498   - </value>
1499   - <value>
1500   - <name>park_code</name>
1501   - <rename>qdzcode</rename>
1502   - <default/>
1503   - <type>String</type>
1504   - </value>
1505   - <value>
1506   - <name>park_name</name>
1507   - <rename>tn</rename>
1508   - <default/>
1509   - <type>String</type>
1510   - </value>
1511   - </lookup>
1512   - <cluster_schema/>
1513   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
1514   - <xloc>755</xloc>
1515   - <yloc>504</yloc>
1516   - <draw>Y</draw>
1517   - </GUI>
1518   - </step>
1519   -
1520   - <step>
1521   - <name>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;2</name>
1522   - <type>DBLookup</type>
1523   - <description/>
1524   - <distribute>Y</distribute>
1525   - <custom_distribution/>
1526   - <copies>1</copies>
1527   - <partitioning>
1528   - <method>none</method>
1529   - <schema_name/>
1530   - </partitioning>
1531   - <connection>bus_control_variable</connection>
1532   - <cache>N</cache>
1533   - <cache_load_all>N</cache_load_all>
1534   - <cache_size>0</cache_size>
1535   - <lookup>
1536   - <schema/>
1537   - <table>bsth_c_car_park</table>
1538   - <orderby/>
1539   - <fail_on_multiple>N</fail_on_multiple>
1540   - <eat_row_on_failure>N</eat_row_on_failure>
1541   - <key>
1542   - <name>tccname_</name>
1543   - <field>park_name</field>
1544   - <condition>&#x3d;</condition>
1545   - <name2/>
1546   - </key>
1547   - <value>
1548   - <name>id</name>
1549   - <rename>zdzid</rename>
1550   - <default/>
1551   - <type>Integer</type>
1552   - </value>
1553   - <value>
1554   - <name>park_code</name>
1555   - <rename>zdzcode</rename>
1556   - <default/>
1557   - <type>String</type>
1558   - </value>
1559   - <value>
1560   - <name>park_name</name>
1561   - <rename>tn</rename>
1562   - <default/>
1563   - <type>String</type>
1564   - </value>
1565   - </lookup>
1566   - <cluster_schema/>
1567   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
1568   - <xloc>887</xloc>
1569   - <yloc>608</yloc>
1570   - <draw>Y</draw>
1571   - </GUI>
1572   - </step>
1573   -
1574   - <step>
1575   - <name>&#x67e5;&#x627e;&#x51fa;&#x573a;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</name>
1576   - <type>DBLookup</type>
1577   - <description/>
1578   - <distribute>Y</distribute>
1579   - <custom_distribution/>
1580   - <copies>1</copies>
1581   - <partitioning>
1582   - <method>none</method>
1583   - <schema_name/>
1584   - </partitioning>
1585   - <connection>bus_control_variable</connection>
1586   - <cache>N</cache>
1587   - <cache_load_all>N</cache_load_all>
1588   - <cache_size>0</cache_size>
1589   - <lookup>
1590   - <schema/>
1591   - <table>bsth_c_stationroute</table>
1592   - <orderby/>
1593   - <fail_on_multiple>N</fail_on_multiple>
1594   - <eat_row_on_failure>N</eat_row_on_failure>
1595   - <key>
1596   - <name>xlid</name>
1597   - <field>line</field>
1598   - <condition>&#x3d;</condition>
1599   - <name2/>
1600   - </key>
1601   - <key>
1602   - <name>zdzname</name>
1603   - <field>station_name</field>
1604   - <condition>&#x3d;</condition>
1605   - <name2/>
1606   - </key>
1607   - <key>
1608   - <name>endZdtype</name>
1609   - <field>station_mark</field>
1610   - <condition>&#x3d;</condition>
1611   - <name2/>
1612   - </key>
1613   - <key>
1614   - <name>destory</name>
1615   - <field>destroy</field>
1616   - <condition>&#x3d;</condition>
1617   - <name2/>
1618   - </key>
1619   - <value>
1620   - <name>station</name>
1621   - <rename>zdzid</rename>
1622   - <default/>
1623   - <type>Integer</type>
1624   - </value>
1625   - <value>
1626   - <name>directions</name>
1627   - <rename>sxx</rename>
1628   - <default/>
1629   - <type>Integer</type>
1630   - </value>
1631   - <value>
1632   - <name>station_code</name>
1633   - <rename>zdzcode</rename>
1634   - <default/>
1635   - <type>String</type>
1636   - </value>
1637   - </lookup>
1638   - <cluster_schema/>
1639   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
1640   - <xloc>329</xloc>
1641   - <yloc>505</yloc>
1642   - <draw>Y</draw>
1643   - </GUI>
1644   - </step>
1645   -
1646   - <step>
1647   - <name>&#x67e5;&#x627e;&#x65f6;&#x523b;&#x8868;&#x57fa;&#x7840;&#x4fe1;&#x606f;&#x5173;&#x8054;</name>
1648   - <type>DBLookup</type>
1649   - <description/>
1650   - <distribute>Y</distribute>
1651   - <custom_distribution/>
1652   - <copies>1</copies>
1653   - <partitioning>
1654   - <method>none</method>
1655   - <schema_name/>
1656   - </partitioning>
1657   - <connection>bus_control_variable</connection>
1658   - <cache>N</cache>
1659   - <cache_load_all>N</cache_load_all>
1660   - <cache_size>0</cache_size>
1661   - <lookup>
1662   - <schema/>
1663   - <table>bsth_c_s_ttinfo</table>
1664   - <orderby/>
1665   - <fail_on_multiple>N</fail_on_multiple>
1666   - <eat_row_on_failure>N</eat_row_on_failure>
1667   - <key>
1668   - <name>xlid</name>
1669   - <field>xl</field>
1670   - <condition>&#x3d;</condition>
1671   - <name2/>
1672   - </key>
1673   - <key>
1674   - <name>ttinfoname_</name>
1675   - <field>name</field>
1676   - <condition>&#x3d;</condition>
1677   - <name2/>
1678   - </key>
1679   - <key>
1680   - <name>iscanceled</name>
1681   - <field>is_cancel</field>
1682   - <condition>&#x3d;</condition>
1683   - <name2/>
1684   - </key>
1685   - <value>
1686   - <name>id</name>
1687   - <rename>ttid</rename>
1688   - <default/>
1689   - <type>Integer</type>
1690   - </value>
1691   - </lookup>
1692   - <cluster_schema/>
1693   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
1694   - <xloc>1011</xloc>
1695   - <yloc>134</yloc>
1696   - <draw>Y</draw>
1697   - </GUI>
1698   - </step>
1699   -
1700   - <step>
1701   - <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x5173;&#x8054;</name>
1702   - <type>DBLookup</type>
1703   - <description/>
1704   - <distribute>Y</distribute>
1705   - <custom_distribution/>
1706   - <copies>1</copies>
1707   - <partitioning>
1708   - <method>none</method>
1709   - <schema_name/>
1710   - </partitioning>
1711   - <connection>bus_control_variable</connection>
1712   - <cache>N</cache>
1713   - <cache_load_all>N</cache_load_all>
1714   - <cache_size>0</cache_size>
1715   - <lookup>
1716   - <schema/>
1717   - <table>bsth_c_line</table>
1718   - <orderby/>
1719   - <fail_on_multiple>N</fail_on_multiple>
1720   - <eat_row_on_failure>N</eat_row_on_failure>
1721   - <key>
1722   - <name>xlname_</name>
1723   - <field>name</field>
1724   - <condition>&#x3d;</condition>
1725   - <name2/>
1726   - </key>
1727   - <key>
1728   - <name>iscanceled</name>
1729   - <field>destroy</field>
1730   - <condition>&#x3d;</condition>
1731   - <name2/>
1732   - </key>
1733   - <value>
1734   - <name>id</name>
1735   - <rename>xlid</rename>
1736   - <default/>
1737   - <type>Integer</type>
1738   - </value>
1739   - </lookup>
1740   - <cluster_schema/>
1741   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
1742   - <xloc>1007</xloc>
1743   - <yloc>43</yloc>
1744   - <draw>Y</draw>
1745   - </GUI>
1746   - </step>
1747   -
1748   - <step>
1749   - <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x51fa;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
1750   - <type>DBLookup</type>
1751   - <description/>
1752   - <distribute>Y</distribute>
1753   - <custom_distribution/>
1754   - <copies>1</copies>
1755   - <partitioning>
1756   - <method>none</method>
1757   - <schema_name/>
1758   - </partitioning>
1759   - <connection>bus_control_variable</connection>
1760   - <cache>N</cache>
1761   - <cache_load_all>N</cache_load_all>
1762   - <cache_size>0</cache_size>
1763   - <lookup>
1764   - <schema/>
1765   - <table>bsth_c_line_information</table>
1766   - <orderby/>
1767   - <fail_on_multiple>N</fail_on_multiple>
1768   - <eat_row_on_failure>N</eat_row_on_failure>
1769   - <key>
1770   - <name>xlid</name>
1771   - <field>line</field>
1772   - <condition>&#x3d;</condition>
1773   - <name2/>
1774   - </key>
1775   - <value>
1776   - <name>up_out_timer</name>
1777   - <rename>up_out_timer</rename>
1778   - <default/>
1779   - <type>Number</type>
1780   - </value>
1781   - <value>
1782   - <name>up_out_mileage</name>
1783   - <rename>up_out_mileage</rename>
1784   - <default/>
1785   - <type>Number</type>
1786   - </value>
1787   - <value>
1788   - <name>down_out_timer</name>
1789   - <rename>down_out_timer</rename>
1790   - <default/>
1791   - <type>Number</type>
1792   - </value>
1793   - <value>
1794   - <name>down_out_mileage</name>
1795   - <rename>down_out_mileage</rename>
1796   - <default/>
1797   - <type>Number</type>
1798   - </value>
1799   - </lookup>
1800   - <cluster_schema/>
1801   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
1802   - <xloc>335</xloc>
1803   - <yloc>763</yloc>
1804   - <draw>Y</draw>
1805   - </GUI>
1806   - </step>
1807   -
1808   - <step>
1809   - <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x6240;&#x6709;&#x4e0a;&#x4e0b;&#x884c;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
1810   - <type>DBLookup</type>
1811   - <description/>
1812   - <distribute>Y</distribute>
1813   - <custom_distribution/>
1814   - <copies>1</copies>
1815   - <partitioning>
1816   - <method>none</method>
1817   - <schema_name/>
1818   - </partitioning>
1819   - <connection>bus_control_variable</connection>
1820   - <cache>N</cache>
1821   - <cache_load_all>N</cache_load_all>
1822   - <cache_size>0</cache_size>
1823   - <lookup>
1824   - <schema/>
1825   - <table>bsth_c_line_information</table>
1826   - <orderby/>
1827   - <fail_on_multiple>N</fail_on_multiple>
1828   - <eat_row_on_failure>N</eat_row_on_failure>
1829   - <key>
1830   - <name>xlid</name>
1831   - <field>line</field>
1832   - <condition>&#x3d;</condition>
1833   - <name2/>
1834   - </key>
1835   - <value>
1836   - <name>up_mileage</name>
1837   - <rename>up_mileage</rename>
1838   - <default/>
1839   - <type>Number</type>
1840   - </value>
1841   - <value>
1842   - <name>down_mileage</name>
1843   - <rename>down_mileage</rename>
1844   - <default/>
1845   - <type>Number</type>
1846   - </value>
1847   - <value>
1848   - <name>up_travel_time</name>
1849   - <rename>up_travel_time</rename>
1850   - <default/>
1851   - <type>Number</type>
1852   - </value>
1853   - <value>
1854   - <name>down_travel_time</name>
1855   - <rename>down_travel_time</rename>
1856   - <default/>
1857   - <type>Number</type>
1858   - </value>
1859   - <value>
1860   - <name>early_start_time</name>
1861   - <rename>early_start_time</rename>
1862   - <default/>
1863   - <type>String</type>
1864   - </value>
1865   - <value>
1866   - <name>early_end_time</name>
1867   - <rename>early_end_time</rename>
1868   - <default/>
1869   - <type>String</type>
1870   - </value>
1871   - <value>
1872   - <name>early_up_time</name>
1873   - <rename>early_up_time</rename>
1874   - <default/>
1875   - <type>Number</type>
1876   - </value>
1877   - <value>
1878   - <name>early_down_time</name>
1879   - <rename>early_down_time</rename>
1880   - <default/>
1881   - <type>Number</type>
1882   - </value>
1883   - <value>
1884   - <name>late_start_time</name>
1885   - <rename>late_start_time</rename>
1886   - <default/>
1887   - <type>String</type>
1888   - </value>
1889   - <value>
1890   - <name>late_end_time</name>
1891   - <rename>late_end_time</rename>
1892   - <default/>
1893   - <type>String</type>
1894   - </value>
1895   - <value>
1896   - <name>late_up_time</name>
1897   - <rename>late_up_time</rename>
1898   - <default/>
1899   - <type>Number</type>
1900   - </value>
1901   - <value>
1902   - <name>late_down_time</name>
1903   - <rename>late_down_time</rename>
1904   - <default/>
1905   - <type>Number</type>
1906   - </value>
1907   - </lookup>
1908   - <cluster_schema/>
1909   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
1910   - <xloc>149</xloc>
1911   - <yloc>581</yloc>
1912   - <draw>Y</draw>
1913   - </GUI>
1914   - </step>
1915   -
1916   - <step>
1917   - <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x8fdb;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
1918   - <type>DBLookup</type>
1919   - <description/>
1920   - <distribute>Y</distribute>
1921   - <custom_distribution/>
1922   - <copies>1</copies>
1923   - <partitioning>
1924   - <method>none</method>
1925   - <schema_name/>
1926   - </partitioning>
1927   - <connection>bus_control_variable</connection>
1928   - <cache>N</cache>
1929   - <cache_load_all>N</cache_load_all>
1930   - <cache_size>0</cache_size>
1931   - <lookup>
1932   - <schema/>
1933   - <table>bsth_c_line_information</table>
1934   - <orderby/>
1935   - <fail_on_multiple>N</fail_on_multiple>
1936   - <eat_row_on_failure>N</eat_row_on_failure>
1937   - <key>
1938   - <name>xlid</name>
1939   - <field>line</field>
1940   - <condition>&#x3d;</condition>
1941   - <name2/>
1942   - </key>
1943   - <value>
1944   - <name>up_in_mileage</name>
1945   - <rename>up_in_mileage</rename>
1946   - <default/>
1947   - <type>Number</type>
1948   - </value>
1949   - <value>
1950   - <name>up_in_timer</name>
1951   - <rename>up_in_timer</rename>
1952   - <default/>
1953   - <type>Number</type>
1954   - </value>
1955   - <value>
1956   - <name>down_in_mileage</name>
1957   - <rename>down_in_mileage</rename>
1958   - <default/>
1959   - <type>Number</type>
1960   - </value>
1961   - <value>
1962   - <name>down_in_timer</name>
1963   - <rename>down_in_timer</rename>
1964   - <default/>
1965   - <type>Number</type>
1966   - </value>
1967   - </lookup>
1968   - <cluster_schema/>
1969   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
1970   - <xloc>553</xloc>
1971   - <yloc>1004</yloc>
1972   - <draw>Y</draw>
1973   - </GUI>
1974   - </step>
1975   -
1976   - <step>
1977   - <name>&#x67e5;&#x627e;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;</name>
1978   - <type>DBLookup</type>
1979   - <description/>
1980   - <distribute>Y</distribute>
1981   - <custom_distribution/>
1982   - <copies>1</copies>
1983   - <partitioning>
1984   - <method>none</method>
1985   - <schema_name/>
1986   - </partitioning>
1987   - <connection>bus_control_variable</connection>
1988   - <cache>N</cache>
1989   - <cache_load_all>N</cache_load_all>
1990   - <cache_size>0</cache_size>
1991   - <lookup>
1992   - <schema/>
1993   - <table>bsth_c_stationroute</table>
1994   - <orderby/>
1995   - <fail_on_multiple>N</fail_on_multiple>
1996   - <eat_row_on_failure>N</eat_row_on_failure>
1997   - <key>
1998   - <name>xlid</name>
1999   - <field>line</field>
2000   - <condition>&#x3d;</condition>
2001   - <name2/>
2002   - </key>
2003   - <key>
2004   - <name>sxx</name>
2005   - <field>directions</field>
2006   - <condition>&#x3d;</condition>
2007   - <name2/>
2008   - </key>
2009   - <key>
2010   - <name>endZdtype</name>
2011   - <field>station_mark</field>
2012   - <condition>&#x3d;</condition>
2013   - <name2/>
2014   - </key>
2015   - <key>
2016   - <name>destory</name>
2017   - <field>destroy</field>
2018   - <condition>&#x3d;</condition>
2019   - <name2/>
2020   - </key>
2021   - <value>
2022   - <name>station_name</name>
2023   - <rename>zdzname</rename>
2024   - <default/>
2025   - <type>String</type>
2026   - </value>
2027   - <value>
2028   - <name>station</name>
2029   - <rename>zdzid</rename>
2030   - <default/>
2031   - <type>Integer</type>
2032   - </value>
2033   - <value>
2034   - <name>station_code</name>
2035   - <rename>zdzcode</rename>
2036   - <default/>
2037   - <type>String</type>
2038   - </value>
2039   - </lookup>
2040   - <cluster_schema/>
2041   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2042   - <xloc>280</xloc>
2043   - <yloc>404</yloc>
2044   - <draw>Y</draw>
2045   - </GUI>
2046   - </step>
2047   -
2048   - <step>
2049   - <name>&#x67e5;&#x627e;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</name>
2050   - <type>DBLookup</type>
2051   - <description/>
2052   - <distribute>Y</distribute>
2053   - <custom_distribution/>
2054   - <copies>1</copies>
2055   - <partitioning>
2056   - <method>none</method>
2057   - <schema_name/>
2058   - </partitioning>
2059   - <connection>bus_control_variable</connection>
2060   - <cache>N</cache>
2061   - <cache_load_all>N</cache_load_all>
2062   - <cache_size>0</cache_size>
2063   - <lookup>
2064   - <schema/>
2065   - <table>bsth_c_stationroute</table>
2066   - <orderby/>
2067   - <fail_on_multiple>N</fail_on_multiple>
2068   - <eat_row_on_failure>N</eat_row_on_failure>
2069   - <key>
2070   - <name>xlid</name>
2071   - <field>line</field>
2072   - <condition>&#x3d;</condition>
2073   - <name2/>
2074   - </key>
2075   - <key>
2076   - <name>qdzname</name>
2077   - <field>station_name</field>
2078   - <condition>&#x3d;</condition>
2079   - <name2/>
2080   - </key>
2081   - <key>
2082   - <name>sendZdtype</name>
2083   - <field>station_mark</field>
2084   - <condition>&#x3d;</condition>
2085   - <name2/>
2086   - </key>
2087   - <key>
2088   - <name>destory</name>
2089   - <field>destroy</field>
2090   - <condition>&#x3d;</condition>
2091   - <name2/>
2092   - </key>
2093   - <value>
2094   - <name>station</name>
2095   - <rename>qdzid</rename>
2096   - <default/>
2097   - <type>Integer</type>
2098   - </value>
2099   - <value>
2100   - <name>directions</name>
2101   - <rename>sxx</rename>
2102   - <default/>
2103   - <type>Integer</type>
2104   - </value>
2105   - <value>
2106   - <name>station_code</name>
2107   - <rename>qdzcode</rename>
2108   - <default/>
2109   - <type>String</type>
2110   - </value>
2111   - </lookup>
2112   - <cluster_schema/>
2113   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2114   - <xloc>430</xloc>
2115   - <yloc>403</yloc>
2116   - <draw>Y</draw>
2117   - </GUI>
2118   - </step>
2119   -
2120   - <step>
2121   - <name>&#x67e5;&#x627e;&#x8def;&#x724c;&#x5173;&#x8054;</name>
2122   - <type>DBLookup</type>
2123   - <description/>
2124   - <distribute>Y</distribute>
2125   - <custom_distribution/>
2126   - <copies>1</copies>
2127   - <partitioning>
2128   - <method>none</method>
2129   - <schema_name/>
2130   - </partitioning>
2131   - <connection>bus_control_variable</connection>
2132   - <cache>N</cache>
2133   - <cache_load_all>N</cache_load_all>
2134   - <cache_size>0</cache_size>
2135   - <lookup>
2136   - <schema/>
2137   - <table>bsth_c_s_gbi</table>
2138   - <orderby/>
2139   - <fail_on_multiple>N</fail_on_multiple>
2140   - <eat_row_on_failure>N</eat_row_on_failure>
2141   - <key>
2142   - <name>xlid</name>
2143   - <field>xl</field>
2144   - <condition>&#x3d;</condition>
2145   - <name2/>
2146   - </key>
2147   - <key>
2148   - <name>lp</name>
2149   - <field>lp_name</field>
2150   - <condition>&#x3d;</condition>
2151   - <name2/>
2152   - </key>
2153   - <key>
2154   - <name>iscanceled</name>
2155   - <field>is_cancel</field>
2156   - <condition>&#x3d;</condition>
2157   - <name2/>
2158   - </key>
2159   - <value>
2160   - <name>id</name>
2161   - <rename>lpid</rename>
2162   - <default/>
2163   - <type>Integer</type>
2164   - </value>
2165   - </lookup>
2166   - <cluster_schema/>
2167   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2168   - <xloc>1013</xloc>
2169   - <yloc>265</yloc>
2170   - <draw>Y</draw>
2171   - </GUI>
2172   - </step>
2173   -
2174   - <step>
2175   - <name>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ebf;&#x8def;&#x65b9;&#x5411;</name>
2176   - <type>DBLookup</type>
2177   - <description/>
2178   - <distribute>Y</distribute>
2179   - <custom_distribution/>
2180   - <copies>1</copies>
2181   - <partitioning>
2182   - <method>none</method>
2183   - <schema_name/>
2184   - </partitioning>
2185   - <connection>bus_control_variable</connection>
2186   - <cache>N</cache>
2187   - <cache_load_all>N</cache_load_all>
2188   - <cache_size>0</cache_size>
2189   - <lookup>
2190   - <schema/>
2191   - <table>bsth_c_stationroute</table>
2192   - <orderby/>
2193   - <fail_on_multiple>N</fail_on_multiple>
2194   - <eat_row_on_failure>N</eat_row_on_failure>
2195   - <key>
2196   - <name>xlid</name>
2197   - <field>line</field>
2198   - <condition>&#x3d;</condition>
2199   - <name2/>
2200   - </key>
2201   - <key>
2202   - <name>startZdtype_calcu</name>
2203   - <field>station_mark</field>
2204   - <condition>&#x3d;</condition>
2205   - <name2/>
2206   - </key>
2207   - <key>
2208   - <name>qdzname_calcu</name>
2209   - <field>station_name</field>
2210   - <condition>&#x3d;</condition>
2211   - <name2/>
2212   - </key>
2213   - <key>
2214   - <name>destory</name>
2215   - <field>destroy</field>
2216   - <condition>&#x3d;</condition>
2217   - <name2/>
2218   - </key>
2219   - <value>
2220   - <name>directions</name>
2221   - <rename>sxx</rename>
2222   - <default/>
2223   - <type>String</type>
2224   - </value>
2225   - </lookup>
2226   - <cluster_schema/>
2227   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2228   - <xloc>548</xloc>
2229   - <yloc>610</yloc>
2230   - <draw>Y</draw>
2231   - </GUI>
2232   - </step>
2233   -
2234   - <step>
2235   - <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>
2236   - <type>DBLookup</type>
2237   - <description/>
2238   - <distribute>Y</distribute>
2239   - <custom_distribution/>
2240   - <copies>1</copies>
2241   - <partitioning>
2242   - <method>none</method>
2243   - <schema_name/>
2244   - </partitioning>
2245   - <connection>bus_control_variable</connection>
2246   - <cache>Y</cache>
2247   - <cache_load_all>Y</cache_load_all>
2248   - <cache_size>0</cache_size>
2249   - <lookup>
2250   - <schema/>
2251   - <table>bsth_c_stationroute</table>
2252   - <orderby/>
2253   - <fail_on_multiple>N</fail_on_multiple>
2254   - <eat_row_on_failure>N</eat_row_on_failure>
2255   - <key>
2256   - <name>xlid</name>
2257   - <field>line</field>
2258   - <condition>&#x3d;</condition>
2259   - <name2/>
2260   - </key>
2261   - <key>
2262   - <name>endZdtype_calcu</name>
2263   - <field>station_mark</field>
2264   - <condition>&#x3d;</condition>
2265   - <name2/>
2266   - </key>
2267   - <key>
2268   - <name>sxx</name>
2269   - <field>directions</field>
2270   - <condition>&#x3d;</condition>
2271   - <name2/>
2272   - </key>
2273   - <key>
2274   - <name>destory</name>
2275   - <field>destroy</field>
2276   - <condition>&#x3d;</condition>
2277   - <name2/>
2278   - </key>
2279   - <value>
2280   - <name>station_name</name>
2281   - <rename>zdzname_calcu</rename>
2282   - <default/>
2283   - <type>Integer</type>
2284   - </value>
2285   - </lookup>
2286   - <cluster_schema/>
2287   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2288   - <xloc>550</xloc>
2289   - <yloc>701</yloc>
2290   - <draw>Y</draw>
2291   - </GUI>
2292   - </step>
2293   -
2294   - <step>
2295   - <name>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</name>
2296   - <type>DBLookup</type>
2297   - <description/>
2298   - <distribute>Y</distribute>
2299   - <custom_distribution/>
2300   - <copies>1</copies>
2301   - <partitioning>
2302   - <method>none</method>
2303   - <schema_name/>
2304   - </partitioning>
2305   - <connection>bus_control_variable</connection>
2306   - <cache>N</cache>
2307   - <cache_load_all>N</cache_load_all>
2308   - <cache_size>0</cache_size>
2309   - <lookup>
2310   - <schema/>
2311   - <table>bsth_c_stationroute</table>
2312   - <orderby/>
2313   - <fail_on_multiple>N</fail_on_multiple>
2314   - <eat_row_on_failure>N</eat_row_on_failure>
2315   - <key>
2316   - <name>xlid</name>
2317   - <field>line</field>
2318   - <condition>&#x3d;</condition>
2319   - <name2/>
2320   - </key>
2321   - <key>
2322   - <name>zdzname_calcu</name>
2323   - <field>station_name</field>
2324   - <condition>&#x3d;</condition>
2325   - <name2/>
2326   - </key>
2327   - <key>
2328   - <name>startZdtype_calcu</name>
2329   - <field>station_mark</field>
2330   - <condition>&#x3d;</condition>
2331   - <name2/>
2332   - </key>
2333   - <key>
2334   - <name>destory</name>
2335   - <field>destroy</field>
2336   - <condition>&#x3d;</condition>
2337   - <name2/>
2338   - </key>
2339   - <value>
2340   - <name>directions</name>
2341   - <rename>sxx2</rename>
2342   - <default/>
2343   - <type>Integer</type>
2344   - </value>
2345   - <value>
2346   - <name>station</name>
2347   - <rename>qdzid</rename>
2348   - <default/>
2349   - <type>Integer</type>
2350   - </value>
2351   - <value>
2352   - <name>station_code</name>
2353   - <rename>qdzcode</rename>
2354   - <default/>
2355   - <type>String</type>
2356   - </value>
2357   - <value>
2358   - <name>station_name</name>
2359   - <rename>qname</rename>
2360   - <default/>
2361   - <type>String</type>
2362   - </value>
2363   - </lookup>
2364   - <cluster_schema/>
2365   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2366   - <xloc>551</xloc>
2367   - <yloc>782</yloc>
2368   - <draw>Y</draw>
2369   - </GUI>
2370   - </step>
2371   -
2372   - <step>
2373   - <name>&#x6b63;&#x5e38;&#x73ed;&#x6b21;_&#x5904;&#x7406;&#x6570;&#x636e;</name>
2374   - <type>ScriptValueMod</type>
2375   - <description/>
2376   - <distribute>Y</distribute>
2377   - <custom_distribution/>
2378   - <copies>1</copies>
2379   - <partitioning>
2380   - <method>none</method>
2381   - <schema_name/>
2382   - </partitioning>
2383   - <compatible>N</compatible>
2384   - <optimizationLevel>9</optimizationLevel>
2385   - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
2386   - <jsScript_name>Script 1</jsScript_name>
2387   - <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>
2388   - </jsScript> </jsScripts> <fields> <field> <name>sendZdtype</name>
2389   - <rename>sendZdtype</rename>
2390   - <type>String</type>
2391   - <length>-1</length>
2392   - <precision>-1</precision>
2393   - <replace>N</replace>
2394   - </field> <field> <name>endZdtype</name>
2395   - <rename>endZdtype</rename>
2396   - <type>String</type>
2397   - <length>-1</length>
2398   - <precision>-1</precision>
2399   - <replace>N</replace>
2400   - </field> <field> <name>destory</name>
2401   - <rename>destory</rename>
2402   - <type>Integer</type>
2403   - <length>-1</length>
2404   - <precision>-1</precision>
2405   - <replace>N</replace>
2406   - </field> </fields> <cluster_schema/>
2407   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2408   - <xloc>588</xloc>
2409   - <yloc>403</yloc>
2410   - <draw>Y</draw>
2411   - </GUI>
2412   - </step>
2413   -
2414   - <step>
2415   - <name>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</name>
2416   - <type>Dummy</type>
2417   - <description/>
2418   - <distribute>Y</distribute>
2419   - <custom_distribution/>
2420   - <copies>1</copies>
2421   - <partitioning>
2422   - <method>none</method>
2423   - <schema_name/>
2424   - </partitioning>
2425   - <cluster_schema/>
2426   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2427   - <xloc>725</xloc>
2428   - <yloc>404</yloc>
2429   - <draw>Y</draw>
2430   - </GUI>
2431   - </step>
2432   -
2433   - <step>
2434   - <name>&#x6dfb;&#x52a0;&#x53d1;&#x8f66;&#x987a;&#x5e8f;&#x53f7;</name>
2435   - <type>GroupBy</type>
2436   - <description/>
2437   - <distribute>Y</distribute>
2438   - <custom_distribution/>
2439   - <copies>1</copies>
2440   - <partitioning>
2441   - <method>none</method>
2442   - <schema_name/>
2443   - </partitioning>
2444   - <all_rows>Y</all_rows>
2445   - <ignore_aggregate>N</ignore_aggregate>
2446   - <field_ignore/>
2447   - <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
2448   - <prefix>grp</prefix>
2449   - <add_linenr>Y</add_linenr>
2450   - <linenr_fieldname>fcno</linenr_fieldname>
2451   - <give_back_row>N</give_back_row>
2452   - <group>
2453   - <field>
2454   - <name>lp</name>
2455   - </field>
2456   - </group>
2457   - <fields>
2458   - </fields>
2459   - <cluster_schema/>
2460   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2461   - <xloc>442</xloc>
2462   - <yloc>44</yloc>
2463   - <draw>Y</draw>
2464   - </GUI>
2465   - </step>
2466   -
2467   - <step>
2468   - <name>&#x6dfb;&#x52a0;&#x5bf9;&#x5e94;&#x73ed;&#x6b21;&#x6570;</name>
2469   - <type>GroupBy</type>
2470   - <description/>
2471   - <distribute>Y</distribute>
2472   - <custom_distribution/>
2473   - <copies>1</copies>
2474   - <partitioning>
2475   - <method>none</method>
2476   - <schema_name/>
2477   - </partitioning>
2478   - <all_rows>Y</all_rows>
2479   - <ignore_aggregate>N</ignore_aggregate>
2480   - <field_ignore/>
2481   - <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
2482   - <prefix>grp</prefix>
2483   - <add_linenr>Y</add_linenr>
2484   - <linenr_fieldname>bcs</linenr_fieldname>
2485   - <give_back_row>N</give_back_row>
2486   - <group>
2487   - </group>
2488   - <fields>
2489   - </fields>
2490   - <cluster_schema/>
2491   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2492   - <xloc>692</xloc>
2493   - <yloc>44</yloc>
2494   - <draw>Y</draw>
2495   - </GUI>
2496   - </step>
2497   -
2498   - <step>
2499   - <name>&#x73ed;&#x6b21;&#x6570;&#x636e;&#x8303;&#x5f0f;&#x5316;</name>
2500   - <type>Normaliser</type>
2501   - <description/>
2502   - <distribute>Y</distribute>
2503   - <custom_distribution/>
2504   - <copies>1</copies>
2505   - <partitioning>
2506   - <method>none</method>
2507   - <schema_name/>
2508   - </partitioning>
2509   - <typefield>&#x7ad9;&#x70b9;&#x540d;&#x79f0;</typefield>
2510   - <fields> </fields> <cluster_schema/>
2511   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2512   - <xloc>248</xloc>
2513   - <yloc>44</yloc>
2514   - <draw>Y</draw>
2515   - </GUI>
2516   - </step>
2517   -
2518   - <step>
2519   - <name>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178;</name>
2520   - <type>ValueMapper</type>
2521   - <description/>
2522   - <distribute>Y</distribute>
2523   - <custom_distribution/>
2524   - <copies>1</copies>
2525   - <partitioning>
2526   - <method>none</method>
2527   - <schema_name/>
2528   - </partitioning>
2529   - <field_to_use>bctype</field_to_use>
2530   - <target_field>bctype_code</target_field>
2531   - <non_match_default>&#x672a;&#x77e5;&#x7c7b;&#x578b;</non_match_default>
2532   - <fields>
2533   - <field>
2534   - <source_value>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</source_value>
2535   - <target_value>normal</target_value>
2536   - </field>
2537   - <field>
2538   - <source_value>&#x51fa;&#x573a;</source_value>
2539   - <target_value>out</target_value>
2540   - </field>
2541   - <field>
2542   - <source_value>&#x8fdb;&#x573a;</source_value>
2543   - <target_value>in</target_value>
2544   - </field>
2545   - <field>
2546   - <source_value>&#x52a0;&#x6cb9;</source_value>
2547   - <target_value>oil</target_value>
2548   - </field>
2549   - <field>
2550   - <source_value>&#x4e34;&#x52a0;</source_value>
2551   - <target_value>temp</target_value>
2552   - </field>
2553   - <field>
2554   - <source_value>&#x533a;&#x95f4;</source_value>
2555   - <target_value>region</target_value>
2556   - </field>
2557   - <field>
2558   - <source_value>&#x653e;&#x7a7a;</source_value>
2559   - <target_value>venting</target_value>
2560   - </field>
2561   - <field>
2562   - <source_value>&#x653e;&#x5927;&#x7ad9;</source_value>
2563   - <target_value>major</target_value>
2564   - </field>
2565   - </fields>
2566   - <cluster_schema/>
2567   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2568   - <xloc>149</xloc>
2569   - <yloc>491</yloc>
2570   - <draw>Y</draw>
2571   - </GUI>
2572   - </step>
2573   -
2574   - <step>
2575   - <name>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 2</name>
2576   - <type>ValueMapper</type>
2577   - <description/>
2578   - <distribute>Y</distribute>
2579   - <custom_distribution/>
2580   - <copies>1</copies>
2581   - <partitioning>
2582   - <method>none</method>
2583   - <schema_name/>
2584   - </partitioning>
2585   - <field_to_use>bctype</field_to_use>
2586   - <target_field>bctype_code</target_field>
2587   - <non_match_default>&#x672a;&#x77e5;&#x7c7b;&#x578b;</non_match_default>
2588   - <fields>
2589   - <field>
2590   - <source_value>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</source_value>
2591   - <target_value>normal</target_value>
2592   - </field>
2593   - <field>
2594   - <source_value>&#x51fa;&#x573a;</source_value>
2595   - <target_value>out</target_value>
2596   - </field>
2597   - <field>
2598   - <source_value>&#x8fdb;&#x573a;</source_value>
2599   - <target_value>in</target_value>
2600   - </field>
2601   - <field>
2602   - <source_value>&#x52a0;&#x6cb9;</source_value>
2603   - <target_value>oil</target_value>
2604   - </field>
2605   - <field>
2606   - <source_value>&#x4e34;&#x52a0;</source_value>
2607   - <target_value>temp</target_value>
2608   - </field>
2609   - <field>
2610   - <source_value>&#x533a;&#x95f4;</source_value>
2611   - <target_value>region</target_value>
2612   - </field>
2613   - <field>
2614   - <source_value>&#x653e;&#x7a7a;</source_value>
2615   - <target_value>venting</target_value>
2616   - </field>
2617   - <field>
2618   - <source_value>&#x653e;&#x5927;&#x7ad9;</source_value>
2619   - <target_value>major</target_value>
2620   - </field>
2621   - </fields>
2622   - <cluster_schema/>
2623   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2624   - <xloc>333</xloc>
2625   - <yloc>681</yloc>
2626   - <draw>Y</draw>
2627   - </GUI>
2628   - </step>
2629   -
2630   - <step>
2631   - <name>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 3</name>
2632   - <type>ValueMapper</type>
2633   - <description/>
2634   - <distribute>Y</distribute>
2635   - <custom_distribution/>
2636   - <copies>1</copies>
2637   - <partitioning>
2638   - <method>none</method>
2639   - <schema_name/>
2640   - </partitioning>
2641   - <field_to_use>bctype</field_to_use>
2642   - <target_field>bctype_code</target_field>
2643   - <non_match_default>&#x672a;&#x77e5;&#x7c7b;&#x578b;</non_match_default>
2644   - <fields>
2645   - <field>
2646   - <source_value>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</source_value>
2647   - <target_value>normal</target_value>
2648   - </field>
2649   - <field>
2650   - <source_value>&#x51fa;&#x573a;</source_value>
2651   - <target_value>out</target_value>
2652   - </field>
2653   - <field>
2654   - <source_value>&#x8fdb;&#x573a;</source_value>
2655   - <target_value>in</target_value>
2656   - </field>
2657   - <field>
2658   - <source_value>&#x52a0;&#x6cb9;</source_value>
2659   - <target_value>oil</target_value>
2660   - </field>
2661   - <field>
2662   - <source_value>&#x4e34;&#x52a0;</source_value>
2663   - <target_value>temp</target_value>
2664   - </field>
2665   - <field>
2666   - <source_value>&#x533a;&#x95f4;</source_value>
2667   - <target_value>region</target_value>
2668   - </field>
2669   - <field>
2670   - <source_value>&#x653e;&#x7a7a;</source_value>
2671   - <target_value>venting</target_value>
2672   - </field>
2673   - <field>
2674   - <source_value>&#x653e;&#x5927;&#x7ad9;</source_value>
2675   - <target_value>major</target_value>
2676   - </field>
2677   - </fields>
2678   - <cluster_schema/>
2679   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2680   - <xloc>551</xloc>
2681   - <yloc>928</yloc>
2682   - <draw>Y</draw>
2683   - </GUI>
2684   - </step>
2685   -
2686   - <step>
2687   - <name>&#x7c7b;&#x578b;&#x4fee;&#x6b63;</name>
2688   - <type>SelectValues</type>
2689   - <description/>
2690   - <distribute>Y</distribute>
2691   - <custom_distribution/>
2692   - <copies>1</copies>
2693   - <partitioning>
2694   - <method>none</method>
2695   - <schema_name/>
2696   - </partitioning>
2697   - <fields> <select_unspecified>N</select_unspecified>
2698   - <meta> <name>jhlc</name>
2699   - <rename>jhlc</rename>
2700   - <type>Number</type>
2701   - <length>-2</length>
2702   - <precision>-2</precision>
2703   - <conversion_mask/>
2704   - <date_format_lenient>false</date_format_lenient>
2705   - <date_format_locale/>
2706   - <date_format_timezone/>
2707   - <lenient_string_to_number>false</lenient_string_to_number>
2708   - <encoding/>
2709   - <decimal_symbol/>
2710   - <grouping_symbol/>
2711   - <currency_symbol/>
2712   - <storage_type/>
2713   - </meta> <meta> <name>bcsj</name>
2714   - <rename>bcsj</rename>
2715   - <type>Integer</type>
2716   - <length>-2</length>
2717   - <precision>-2</precision>
2718   - <conversion_mask/>
2719   - <date_format_lenient>false</date_format_lenient>
2720   - <date_format_locale/>
2721   - <date_format_timezone/>
2722   - <lenient_string_to_number>false</lenient_string_to_number>
2723   - <encoding/>
2724   - <decimal_symbol/>
2725   - <grouping_symbol/>
2726   - <currency_symbol/>
2727   - <storage_type/>
2728   - </meta> </fields> <cluster_schema/>
2729   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2730   - <xloc>146</xloc>
2731   - <yloc>768</yloc>
2732   - <draw>Y</draw>
2733   - </GUI>
2734   - </step>
2735   -
2736   - <step>
2737   - <name>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 2</name>
2738   - <type>SelectValues</type>
2739   - <description/>
2740   - <distribute>Y</distribute>
2741   - <custom_distribution/>
2742   - <copies>1</copies>
2743   - <partitioning>
2744   - <method>none</method>
2745   - <schema_name/>
2746   - </partitioning>
2747   - <fields> <select_unspecified>N</select_unspecified>
2748   - <meta> <name>out_mileage</name>
2749   - <rename>out_mileage</rename>
2750   - <type>Number</type>
2751   - <length>-2</length>
2752   - <precision>-2</precision>
2753   - <conversion_mask/>
2754   - <date_format_lenient>false</date_format_lenient>
2755   - <date_format_locale/>
2756   - <date_format_timezone/>
2757   - <lenient_string_to_number>false</lenient_string_to_number>
2758   - <encoding/>
2759   - <decimal_symbol/>
2760   - <grouping_symbol/>
2761   - <currency_symbol/>
2762   - <storage_type/>
2763   - </meta> <meta> <name>out_time</name>
2764   - <rename>out_time</rename>
2765   - <type>Integer</type>
2766   - <length>-2</length>
2767   - <precision>-2</precision>
2768   - <conversion_mask/>
2769   - <date_format_lenient>false</date_format_lenient>
2770   - <date_format_locale/>
2771   - <date_format_timezone/>
2772   - <lenient_string_to_number>false</lenient_string_to_number>
2773   - <encoding/>
2774   - <decimal_symbol/>
2775   - <grouping_symbol/>
2776   - <currency_symbol/>
2777   - <storage_type/>
2778   - </meta> <meta> <name>sxx</name>
2779   - <rename>sxx</rename>
2780   - <type>Integer</type>
2781   - <length>-2</length>
2782   - <precision>-2</precision>
2783   - <conversion_mask/>
2784   - <date_format_lenient>false</date_format_lenient>
2785   - <date_format_locale/>
2786   - <date_format_timezone/>
2787   - <lenient_string_to_number>false</lenient_string_to_number>
2788   - <encoding/>
2789   - <decimal_symbol/>
2790   - <grouping_symbol/>
2791   - <currency_symbol/>
2792   - <storage_type/>
2793   - </meta> </fields> <cluster_schema/>
2794   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2795   - <xloc>338</xloc>
2796   - <yloc>1008</yloc>
2797   - <draw>Y</draw>
2798   - </GUI>
2799   - </step>
2800   -
2801   - <step>
2802   - <name>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 3</name>
2803   - <type>SelectValues</type>
2804   - <description/>
2805   - <distribute>Y</distribute>
2806   - <custom_distribution/>
2807   - <copies>1</copies>
2808   - <partitioning>
2809   - <method>none</method>
2810   - <schema_name/>
2811   - </partitioning>
2812   - <fields> <select_unspecified>N</select_unspecified>
2813   - <meta> <name>parade_mileage</name>
2814   - <rename>parade_mileage</rename>
2815   - <type>Number</type>
2816   - <length>-2</length>
2817   - <precision>-2</precision>
2818   - <conversion_mask/>
2819   - <date_format_lenient>false</date_format_lenient>
2820   - <date_format_locale/>
2821   - <date_format_timezone/>
2822   - <lenient_string_to_number>false</lenient_string_to_number>
2823   - <encoding/>
2824   - <decimal_symbol/>
2825   - <grouping_symbol/>
2826   - <currency_symbol/>
2827   - <storage_type/>
2828   - </meta> <meta> <name>parade_time</name>
2829   - <rename>parade_time</rename>
2830   - <type>Integer</type>
2831   - <length>-2</length>
2832   - <precision>-2</precision>
2833   - <conversion_mask/>
2834   - <date_format_lenient>false</date_format_lenient>
2835   - <date_format_locale/>
2836   - <date_format_timezone/>
2837   - <lenient_string_to_number>false</lenient_string_to_number>
2838   - <encoding/>
2839   - <decimal_symbol/>
2840   - <grouping_symbol/>
2841   - <currency_symbol/>
2842   - <storage_type/>
2843   - </meta> <meta> <name>sxx2</name>
2844   - <rename>sxx2</rename>
2845   - <type>Integer</type>
2846   - <length>-2</length>
2847   - <precision>-2</precision>
2848   - <conversion_mask/>
2849   - <date_format_lenient>false</date_format_lenient>
2850   - <date_format_locale/>
2851   - <date_format_timezone/>
2852   - <lenient_string_to_number>false</lenient_string_to_number>
2853   - <encoding/>
2854   - <decimal_symbol/>
2855   - <grouping_symbol/>
2856   - <currency_symbol/>
2857   - <storage_type/>
2858   - </meta> </fields> <cluster_schema/>
2859   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2860   - <xloc>847</xloc>
2861   - <yloc>1003</yloc>
2862   - <draw>Y</draw>
2863   - </GUI>
2864   - </step>
2865   -
2866   - <step>
2867   - <name>&#x8ba1;&#x7b97;&#x73ed;&#x6b21;&#x7c7b;&#x578b;</name>
2868   - <type>ValueMapper</type>
2869   - <description/>
2870   - <distribute>Y</distribute>
2871   - <custom_distribution/>
2872   - <copies>1</copies>
2873   - <partitioning>
2874   - <method>none</method>
2875   - <schema_name/>
2876   - </partitioning>
2877   - <field_to_use>qdzname</field_to_use>
2878   - <target_field>bctype</target_field>
2879   - <non_match_default>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</non_match_default>
2880   - <fields>
2881   - <field>
2882   - <source_value>&#x51fa;&#x573a;</source_value>
2883   - <target_value>&#x51fa;&#x573a;</target_value>
2884   - </field>
2885   - <field>
2886   - <source_value>&#x8fdb;&#x573a;</source_value>
2887   - <target_value>&#x8fdb;&#x573a;</target_value>
2888   - </field>
2889   - </fields>
2890   - <cluster_schema/>
2891   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2892   - <xloc>1014</xloc>
2893   - <yloc>401</yloc>
2894   - <draw>Y</draw>
2895   - </GUI>
2896   - </step>
2897   -
2898   - <step>
2899   - <name>&#x8bb0;&#x5f55;&#x5173;&#x8054; &#x28;&#x7b1b;&#x5361;&#x5c14;&#x8f93;&#x51fa;&#x29;</name>
2900   - <type>JoinRows</type>
2901   - <description/>
2902   - <distribute>Y</distribute>
2903   - <custom_distribution/>
2904   - <copies>1</copies>
2905   - <partitioning>
2906   - <method>none</method>
2907   - <schema_name/>
2908   - </partitioning>
2909   - <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
2910   - <prefix>out</prefix>
2911   - <cache_size>500</cache_size>
2912   - <main/>
2913   - <compare>
2914   -<condition>
2915   - <negated>N</negated>
2916   - <leftvalue/>
2917   - <function>&#x3d;</function>
2918   - <rightvalue/>
2919   - </condition>
2920   - </compare>
2921   - <cluster_schema/>
2922   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2923   - <xloc>310</xloc>
2924   - <yloc>133</yloc>
2925   - <draw>Y</draw>
2926   - </GUI>
2927   - </step>
2928   -
2929   - <step>
2930   - <name>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;&#xff08;&#x53d1;&#x8f66;&#x65f6;&#x95f4;&#x4e3a;&#x7a7a;&#xff09;</name>
2931   - <type>FilterRows</type>
2932   - <description/>
2933   - <distribute>Y</distribute>
2934   - <custom_distribution/>
2935   - <copies>1</copies>
2936   - <partitioning>
2937   - <method>none</method>
2938   - <schema_name/>
2939   - </partitioning>
2940   -<send_true_to/>
2941   -<send_false_to/>
2942   - <compare>
2943   -<condition>
2944   - <negated>N</negated>
2945   - <leftvalue>sendtime</leftvalue>
2946   - <function>IS NOT NULL</function>
2947   - <rightvalue/>
2948   - </condition>
2949   - </compare>
2950   - <cluster_schema/>
2951   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2952   - <xloc>571</xloc>
2953   - <yloc>44</yloc>
2954   - <draw>Y</draw>
2955   - </GUI>
2956   - </step>
2957   -
2958   - <step>
2959   - <name>&#x8fdb;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x8d77;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</name>
2960   - <type>ScriptValueMod</type>
2961   - <description/>
2962   - <distribute>Y</distribute>
2963   - <custom_distribution/>
2964   - <copies>1</copies>
2965   - <partitioning>
2966   - <method>none</method>
2967   - <schema_name/>
2968   - </partitioning>
2969   - <compatible>N</compatible>
2970   - <optimizationLevel>9</optimizationLevel>
2971   - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
2972   - <jsScript_name>Script 1</jsScript_name>
2973   - <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>
2974   - </jsScript> </jsScripts> <fields> <field> <name>qdzname_calcu</name>
2975   - <rename>qdzname_calcu</rename>
2976   - <type>String</type>
2977   - <length>-1</length>
2978   - <precision>-1</precision>
2979   - <replace>N</replace>
2980   - </field> <field> <name>startZdtype_calcu</name>
2981   - <rename>startZdtype_calcu</rename>
2982   - <type>String</type>
2983   - <length>-1</length>
2984   - <precision>-1</precision>
2985   - <replace>N</replace>
2986   - </field> <field> <name>endZdtype_calcu</name>
2987   - <rename>endZdtype_calcu</rename>
2988   - <type>String</type>
2989   - <length>-1</length>
2990   - <precision>-1</precision>
2991   - <replace>N</replace>
2992   - </field> <field> <name>destory</name>
2993   - <rename>destory</rename>
2994   - <type>Integer</type>
2995   - <length>-1</length>
2996   - <precision>-1</precision>
2997   - <replace>N</replace>
2998   - </field> </fields> <cluster_schema/>
2999   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
3000   - <xloc>754</xloc>
3001   - <yloc>610</yloc>
3002   - <draw>Y</draw>
3003   - </GUI>
3004   - </step>
3005   -
3006   - <step>
3007   - <name>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</name>
3008   - <type>Dummy</type>
3009   - <description/>
3010   - <distribute>Y</distribute>
3011   - <custom_distribution/>
3012   - <copies>1</copies>
3013   - <partitioning>
3014   - <method>none</method>
3015   - <schema_name/>
3016   - </partitioning>
3017   - <cluster_schema/>
3018   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
3019   - <xloc>997</xloc>
3020   - <yloc>606</yloc>
3021   - <draw>Y</draw>
3022   - </GUI>
3023   - </step>
3024   -
3025   - <step_error_handling>
3026   - <error>
3027   - <source_step>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail</source_step>
3028   - <target_step/>
3029   - <is_enabled>Y</is_enabled>
3030   - <nr_valuename>c1</nr_valuename>
3031   - <descriptions_valuename>c2</descriptions_valuename>
3032   - <fields_valuename>c3</fields_valuename>
3033   - <codes_valuename>c4</codes_valuename>
3034   - <max_errors/>
3035   - <max_pct_errors/>
3036   - <min_pct_rows/>
3037   - </error>
3038   - </step_error_handling>
3039   - <slave-step-copy-partition-distribution>
3040   -</slave-step-copy-partition-distribution>
3041   - <slave_transformation>N</slave_transformation>
3042   -
3043   -</transformation>
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<transformation>
  3 + <info>
  4 + <name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x5bfc;&#x5165;</name>
  5 + <description>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;&#x5bfc;&#x5165;</description>
  6 + <extended_description>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;</extended_description>
  7 + <trans_version/>
  8 + <trans_type>Normal</trans_type>
  9 + <trans_status>0</trans_status>
  10 + <directory>&#x2f;</directory>
  11 + <parameters>
  12 + </parameters>
  13 + <log>
  14 +<trans-log-table><connection/>
  15 +<schema/>
  16 +<table/>
  17 +<size_limit_lines/>
  18 +<interval/>
  19 +<timeout_days/>
  20 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STATUS</id><enabled>Y</enabled><name>STATUS</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name><subject/></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name><subject/></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name><subject/></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name><subject/></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name><subject/></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name><subject/></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>STARTDATE</id><enabled>Y</enabled><name>STARTDATE</name></field><field><id>ENDDATE</id><enabled>Y</enabled><name>ENDDATE</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>DEPDATE</id><enabled>Y</enabled><name>DEPDATE</name></field><field><id>REPLAYDATE</id><enabled>Y</enabled><name>REPLAYDATE</name></field><field><id>LOG_FIELD</id><enabled>Y</enabled><name>LOG_FIELD</name></field><field><id>EXECUTING_SERVER</id><enabled>N</enabled><name>EXECUTING_SERVER</name></field><field><id>EXECUTING_USER</id><enabled>N</enabled><name>EXECUTING_USER</name></field><field><id>CLIENT</id><enabled>N</enabled><name>CLIENT</name></field></trans-log-table>
  21 +<perf-log-table><connection/>
  22 +<schema/>
  23 +<table/>
  24 +<interval/>
  25 +<timeout_days/>
  26 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>SEQ_NR</id><enabled>Y</enabled><name>SEQ_NR</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>INPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>INPUT_BUFFER_ROWS</name></field><field><id>OUTPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>OUTPUT_BUFFER_ROWS</name></field></perf-log-table>
  27 +<channel-log-table><connection/>
  28 +<schema/>
  29 +<table/>
  30 +<timeout_days/>
  31 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>LOGGING_OBJECT_TYPE</id><enabled>Y</enabled><name>LOGGING_OBJECT_TYPE</name></field><field><id>OBJECT_NAME</id><enabled>Y</enabled><name>OBJECT_NAME</name></field><field><id>OBJECT_COPY</id><enabled>Y</enabled><name>OBJECT_COPY</name></field><field><id>REPOSITORY_DIRECTORY</id><enabled>Y</enabled><name>REPOSITORY_DIRECTORY</name></field><field><id>FILENAME</id><enabled>Y</enabled><name>FILENAME</name></field><field><id>OBJECT_ID</id><enabled>Y</enabled><name>OBJECT_ID</name></field><field><id>OBJECT_REVISION</id><enabled>Y</enabled><name>OBJECT_REVISION</name></field><field><id>PARENT_CHANNEL_ID</id><enabled>Y</enabled><name>PARENT_CHANNEL_ID</name></field><field><id>ROOT_CHANNEL_ID</id><enabled>Y</enabled><name>ROOT_CHANNEL_ID</name></field></channel-log-table>
  32 +<step-log-table><connection/>
  33 +<schema/>
  34 +<table/>
  35 +<timeout_days/>
  36 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>LOG_FIELD</id><enabled>N</enabled><name>LOG_FIELD</name></field></step-log-table>
  37 +<metrics-log-table><connection/>
  38 +<schema/>
  39 +<table/>
  40 +<timeout_days/>
  41 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>METRICS_DATE</id><enabled>Y</enabled><name>METRICS_DATE</name></field><field><id>METRICS_CODE</id><enabled>Y</enabled><name>METRICS_CODE</name></field><field><id>METRICS_DESCRIPTION</id><enabled>Y</enabled><name>METRICS_DESCRIPTION</name></field><field><id>METRICS_SUBJECT</id><enabled>Y</enabled><name>METRICS_SUBJECT</name></field><field><id>METRICS_TYPE</id><enabled>Y</enabled><name>METRICS_TYPE</name></field><field><id>METRICS_VALUE</id><enabled>Y</enabled><name>METRICS_VALUE</name></field></metrics-log-table>
  42 + </log>
  43 + <maxdate>
  44 + <connection/>
  45 + <table/>
  46 + <field/>
  47 + <offset>0.0</offset>
  48 + <maxdiff>0.0</maxdiff>
  49 + </maxdate>
  50 + <size_rowset>10000</size_rowset>
  51 + <sleep_time_empty>50</sleep_time_empty>
  52 + <sleep_time_full>50</sleep_time_full>
  53 + <unique_connections>N</unique_connections>
  54 + <feedback_shown>Y</feedback_shown>
  55 + <feedback_size>50000</feedback_size>
  56 + <using_thread_priorities>Y</using_thread_priorities>
  57 + <shared_objects_file/>
  58 + <capture_step_performance>N</capture_step_performance>
  59 + <step_performance_capturing_delay>1000</step_performance_capturing_delay>
  60 + <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit>
  61 + <dependencies>
  62 + </dependencies>
  63 + <partitionschemas>
  64 + </partitionschemas>
  65 + <slaveservers>
  66 + </slaveservers>
  67 + <clusterschemas>
  68 + </clusterschemas>
  69 + <created_user>-</created_user>
  70 + <created_date>2016&#x2f;06&#x2f;30 12&#x3a;21&#x3a;57.536</created_date>
  71 + <modified_user>-</modified_user>
  72 + <modified_date>2016&#x2f;06&#x2f;30 12&#x3a;21&#x3a;57.536</modified_date>
  73 + <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA&#x3d;</key_for_session_key>
  74 + <is_key_private>N</is_key_private>
  75 + </info>
  76 + <notepads>
  77 + <notepad>
  78 + <note>&#x5b57;&#x5178;&#x8868;&#x5bf9;&#x5e94;&#xff08;&#x4ee5;&#x540e;&#x76f4;&#x63a5;&#x67e5;&#x627e;&#x8868; bsth_c_sys_dictionary&#xff09;&#xa;&#x7c7b;&#x578b; &#x4ee3;&#x7801; &#x540d;&#x79f0;&#xa;LineTrend 0 &#x4e0a;&#x884c;&#xa;LineTrend 1 &#x4e0b;&#x884c;&#xa;ScheduleType normal &#x6b63;&#x5e38;&#x73ed;&#x6b21;&#xa;ScheduleType out &#x51fa;&#x573a;&#xa;ScheduleType in &#x8fdb;&#x573a;&#xa;ScheduleType temp &#x4e34;&#x52a0;&#xa;ScheduleType region &#x533a;&#x95f4;&#xa;ScheduleType venting &#x653e;&#x7a7a;&#xa;ScheduleType major &#x653e;&#x5927;&#x7ad9;</note>
  79 + <xloc>606</xloc>
  80 + <yloc>129</yloc>
  81 + <width>332</width>
  82 + <heigth>186</heigth>
  83 + <fontname>YaHei Consolas Hybrid</fontname>
  84 + <fontsize>12</fontsize>
  85 + <fontbold>N</fontbold>
  86 + <fontitalic>N</fontitalic>
  87 + <fontcolorred>0</fontcolorred>
  88 + <fontcolorgreen>0</fontcolorgreen>
  89 + <fontcolorblue>0</fontcolorblue>
  90 + <backgroundcolorred>255</backgroundcolorred>
  91 + <backgroundcolorgreen>205</backgroundcolorgreen>
  92 + <backgroundcolorblue>112</backgroundcolorblue>
  93 + <bordercolorred>100</bordercolorred>
  94 + <bordercolorgreen>100</bordercolorgreen>
  95 + <bordercolorblue>100</bordercolorblue>
  96 + <drawshadow>Y</drawshadow>
  97 + </notepad>
  98 + <notepad>
  99 + <note>&#x56e0;&#x4e3a;&#x65f6;&#x523b;&#x8868;&#x8f93;&#x5165;&#x683c;&#x5f0f;&#x4e0d;&#x786e;&#x5b9a;&#x6027;&#xff0c;&#x4e3b;&#x8981;&#x56e0;&#x4e3a;&#x8868;&#x7ed3;&#x6784;&#x662f;&#x53cd;&#x8303;&#x5f0f;&#x5316;&#x7684;&#xff0c;&#xa;&#x6240;&#x4ee5;&#x9700;&#x8981;&#x5916;&#x90e8;&#x52a8;&#x6001;&#x6307;&#x5b9a;&#x613f;&#x6570;&#x636e;&#xff0c;&#x5934;&#x4e09;&#x4e2a;step&#x52a8;&#x6001;&#x6307;&#x5b9a;&#x613f;&#x6570;&#x636e;&#xa;&#xa;</note>
  100 + <xloc>79</xloc>
  101 + <yloc>206</yloc>
  102 + <width>346</width>
  103 + <heigth>74</heigth>
  104 + <fontname>YaHei Consolas Hybrid</fontname>
  105 + <fontsize>12</fontsize>
  106 + <fontbold>N</fontbold>
  107 + <fontitalic>N</fontitalic>
  108 + <fontcolorred>0</fontcolorred>
  109 + <fontcolorgreen>0</fontcolorgreen>
  110 + <fontcolorblue>0</fontcolorblue>
  111 + <backgroundcolorred>255</backgroundcolorred>
  112 + <backgroundcolorgreen>205</backgroundcolorgreen>
  113 + <backgroundcolorblue>112</backgroundcolorblue>
  114 + <bordercolorred>100</bordercolorred>
  115 + <bordercolorgreen>100</bordercolorgreen>
  116 + <bordercolorblue>100</bordercolorblue>
  117 + <drawshadow>Y</drawshadow>
  118 + </notepad>
  119 + <notepad>
  120 + <note>&#x8fd9;&#x91cc;&#x6709;&#x4e9b;&#x95ee;&#x9898;&#xa;&#x5728;window2012&#x7684;&#x73af;&#x5883;&#x4e0b;&#xff0c;&#xa;MySql&#x6570;&#x636e;&#x5e93;&#x67e5;&#x8be2;&#x4e2d;&#x5982;&#x679c;&#x8fd4;&#x56de;&#x4e2d;&#x6587;&#x5185;&#x5bb9;&#x7684;&#x5b57;&#x6bb5;&#xff0c;&#x8fd9;&#x4e2a;&#x5185;&#x5bb9;&#x4e71;&#x7801;&#xa;&#x89e3;&#x51b3;&#x529e;&#x6cd5;&#xff0c;&#x5c31;&#x662f;&#x6570;&#x636e;&#x5e93;&#x67e5;&#x8be2;&#x5168;&#x90e8;&#x7f13;&#x5b58;&#xff0c;&#x5c31;&#x4e0d;&#x4e71;&#x7801;&#xa;linux&#x73af;&#x5883;&#x4e0b;&#x6ca1;&#x95ee;&#x9898;</note>
  121 + <xloc>721</xloc>
  122 + <yloc>762</yloc>
  123 + <width>333</width>
  124 + <heigth>90</heigth>
  125 + <fontname>YaHei Consolas Hybrid</fontname>
  126 + <fontsize>12</fontsize>
  127 + <fontbold>N</fontbold>
  128 + <fontitalic>N</fontitalic>
  129 + <fontcolorred>0</fontcolorred>
  130 + <fontcolorgreen>0</fontcolorgreen>
  131 + <fontcolorblue>0</fontcolorblue>
  132 + <backgroundcolorred>255</backgroundcolorred>
  133 + <backgroundcolorgreen>205</backgroundcolorgreen>
  134 + <backgroundcolorblue>112</backgroundcolorblue>
  135 + <bordercolorred>100</bordercolorred>
  136 + <bordercolorgreen>100</bordercolorgreen>
  137 + <bordercolorblue>100</bordercolorblue>
  138 + <drawshadow>Y</drawshadow>
  139 + </notepad>
  140 + <notepad>
  141 + <note>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#xff0c;&#x65b9;&#x5411;&#x6709;&#x65f6;&#x786e;&#x5b9a;&#x4e0d;&#x51c6;&#xff0c;&#xa;&#x7a7a;&#x7684;&#x60c5;&#x51b5;&#x4e0b;&#x8bbe;&#x5b9a;&#x4e3a;0&#xff08;&#x4e0a;&#x884c;&#xff09;</note>
  142 + <xloc>120</xloc>
  143 + <yloc>1016</yloc>
  144 + <width>178</width>
  145 + <heigth>42</heigth>
  146 + <fontname>YaHei Consolas Hybrid</fontname>
  147 + <fontsize>12</fontsize>
  148 + <fontbold>N</fontbold>
  149 + <fontitalic>N</fontitalic>
  150 + <fontcolorred>0</fontcolorred>
  151 + <fontcolorgreen>0</fontcolorgreen>
  152 + <fontcolorblue>0</fontcolorblue>
  153 + <backgroundcolorred>255</backgroundcolorred>
  154 + <backgroundcolorgreen>205</backgroundcolorgreen>
  155 + <backgroundcolorblue>112</backgroundcolorblue>
  156 + <bordercolorred>100</bordercolorred>
  157 + <bordercolorgreen>100</bordercolorgreen>
  158 + <bordercolorblue>100</bordercolorblue>
  159 + <drawshadow>Y</drawshadow>
  160 + </notepad>
  161 + <notepad>
  162 + <note>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#xff0c;&#x65b9;&#x5411;&#x6709;&#x65f6;&#x786e;&#x5b9a;&#x4e0d;&#x51c6;&#xff0c;&#xa;&#x7a7a;&#x7684;&#x60c5;&#x51b5;&#x4e0b;&#x8bbe;&#x5b9a;&#x4e3a;0&#xff08;&#x4e0a;&#x884c;&#xff09;</note>
  163 + <xloc>578</xloc>
  164 + <yloc>1084</yloc>
  165 + <width>178</width>
  166 + <heigth>42</heigth>
  167 + <fontname>YaHei Consolas Hybrid</fontname>
  168 + <fontsize>12</fontsize>
  169 + <fontbold>N</fontbold>
  170 + <fontitalic>N</fontitalic>
  171 + <fontcolorred>0</fontcolorred>
  172 + <fontcolorgreen>0</fontcolorgreen>
  173 + <fontcolorblue>0</fontcolorblue>
  174 + <backgroundcolorred>255</backgroundcolorred>
  175 + <backgroundcolorgreen>205</backgroundcolorgreen>
  176 + <backgroundcolorblue>112</backgroundcolorblue>
  177 + <bordercolorred>100</bordercolorred>
  178 + <bordercolorgreen>100</bordercolorgreen>
  179 + <bordercolorblue>100</bordercolorblue>
  180 + <drawshadow>Y</drawshadow>
  181 + </notepad>
  182 + </notepads>
  183 + <connection>
  184 + <name>192.168.168.1_jwgl_dw</name>
  185 + <server>192.168.168.1</server>
  186 + <type>ORACLE</type>
  187 + <access>Native</access>
  188 + <database>orcl</database>
  189 + <port>1521</port>
  190 + <username>jwgl_dw</username>
  191 + <password>Encrypted 2be98afc86aa7f2e4cb13b977d2adabcd</password>
  192 + <servername/>
  193 + <data_tablespace/>
  194 + <index_tablespace/>
  195 + <attributes>
  196 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  197 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  198 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  199 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  200 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  201 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  202 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  203 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  204 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  205 + </attributes>
  206 + </connection>
  207 + <connection>
  208 + <name>bus_control_variable</name>
  209 + <server>&#x24;&#x7b;v_db_ip&#x7d;</server>
  210 + <type>MYSQL</type>
  211 + <access>Native</access>
  212 + <database>&#x24;&#x7b;v_db_dname&#x7d;</database>
  213 + <port>3306</port>
  214 + <username>&#x24;&#x7b;v_db_uname&#x7d;</username>
  215 + <password>&#x24;&#x7b;v_db_pwd&#x7d;</password>
  216 + <servername/>
  217 + <data_tablespace/>
  218 + <index_tablespace/>
  219 + <attributes>
  220 + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
  221 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  222 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  223 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  224 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  225 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  226 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  227 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  228 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  229 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  230 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  231 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  232 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  233 + </attributes>
  234 + </connection>
  235 + <connection>
  236 + <name>bus_control_&#x516c;&#x53f8;_201</name>
  237 + <server>localhost</server>
  238 + <type>MYSQL</type>
  239 + <access>Native</access>
  240 + <database>control</database>
  241 + <port>3306</port>
  242 + <username>root</username>
  243 + <password>Encrypted </password>
  244 + <servername/>
  245 + <data_tablespace/>
  246 + <index_tablespace/>
  247 + <attributes>
  248 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  249 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  250 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  251 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  252 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  253 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  254 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  255 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  256 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  257 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  258 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  259 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  260 + </attributes>
  261 + </connection>
  262 + <connection>
  263 + <name>bus_control_&#x672c;&#x673a;</name>
  264 + <server>localhost</server>
  265 + <type>MYSQL</type>
  266 + <access>Native</access>
  267 + <database>control</database>
  268 + <port>3306</port>
  269 + <username>root</username>
  270 + <password>Encrypted </password>
  271 + <servername/>
  272 + <data_tablespace/>
  273 + <index_tablespace/>
  274 + <attributes>
  275 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  276 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  277 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  278 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  279 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  280 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  281 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  282 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  283 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  284 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  285 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  286 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  287 + </attributes>
  288 + </connection>
  289 + <connection>
  290 + <name>xlab_mysql_youle</name>
  291 + <server>101.231.124.8</server>
  292 + <type>MYSQL</type>
  293 + <access>Native</access>
  294 + <database>xlab_youle</database>
  295 + <port>45687</port>
  296 + <username>xlab-youle</username>
  297 + <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password>
  298 + <servername/>
  299 + <data_tablespace/>
  300 + <index_tablespace/>
  301 + <attributes>
  302 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  303 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  304 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  305 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  306 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  307 + <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute>
  308 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  309 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  310 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  311 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  312 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  313 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  314 + </attributes>
  315 + </connection>
  316 + <connection>
  317 + <name>xlab_mysql_youle&#xff08;&#x672c;&#x673a;&#xff09;</name>
  318 + <server>localhost</server>
  319 + <type>MYSQL</type>
  320 + <access>Native</access>
  321 + <database>xlab_youle</database>
  322 + <port>3306</port>
  323 + <username>root</username>
  324 + <password>Encrypted </password>
  325 + <servername/>
  326 + <data_tablespace/>
  327 + <index_tablespace/>
  328 + <attributes>
  329 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  330 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  331 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  332 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  333 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  334 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  335 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  336 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  337 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  338 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  339 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  340 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  341 + </attributes>
  342 + </connection>
  343 + <connection>
  344 + <name>xlab_youle</name>
  345 + <server/>
  346 + <type>MYSQL</type>
  347 + <access>JNDI</access>
  348 + <database>xlab_youle</database>
  349 + <port>1521</port>
  350 + <username/>
  351 + <password>Encrypted </password>
  352 + <servername/>
  353 + <data_tablespace/>
  354 + <index_tablespace/>
  355 + <attributes>
  356 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  357 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  358 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  359 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  360 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  361 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  362 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  363 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  364 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  365 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  366 + </attributes>
  367 + </connection>
  368 + <order>
  369 + <hop> <from>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</from><to>&#x73ed;&#x6b21;&#x6570;&#x636e;&#x8303;&#x5f0f;&#x5316;</to><enabled>Y</enabled> </hop>
  370 + <hop> <from>&#x6dfb;&#x52a0;&#x53d1;&#x8f66;&#x987a;&#x5e8f;&#x53f7;</from><to>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;&#xff08;&#x53d1;&#x8f66;&#x65f6;&#x95f4;&#x4e3a;&#x7a7a;&#xff09;</to><enabled>Y</enabled> </hop>
  371 + <hop> <from>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;&#xff08;&#x53d1;&#x8f66;&#x65f6;&#x95f4;&#x4e3a;&#x7a7a;&#xff09;</from><to>&#x6dfb;&#x52a0;&#x5bf9;&#x5e94;&#x73ed;&#x6b21;&#x6570;</to><enabled>Y</enabled> </hop>
  372 + <hop> <from>&#x6dfb;&#x52a0;&#x5bf9;&#x5e94;&#x73ed;&#x6b21;&#x6570;</from><to>&#x5904;&#x7406;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
  373 + <hop> <from>&#x5904;&#x7406;&#x6570;&#x636e;</from><to>&#x5206;&#x7ec4;&#x5404;&#x4e2a;&#x8def;&#x724c;&#x7684;&#x7ad9;</to><enabled>Y</enabled> </hop>
  374 + <hop> <from>&#x67e5;&#x627e;&#x65f6;&#x523b;&#x8868;&#x57fa;&#x7840;&#x4fe1;&#x606f;&#x5173;&#x8054;</from><to>&#x67e5;&#x627e;&#x8def;&#x724c;&#x5173;&#x8054;</to><enabled>Y</enabled> </hop>
  375 + <hop> <from>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x5173;&#x8054;</from><to>&#x67e5;&#x627e;&#x65f6;&#x523b;&#x8868;&#x57fa;&#x7840;&#x4fe1;&#x606f;&#x5173;&#x8054;</to><enabled>Y</enabled> </hop>
  376 + <hop> <from>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178;</from><to>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178;</to><enabled>Y</enabled> </hop>
  377 + <hop> <from>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 2</from><to>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 2</to><enabled>Y</enabled> </hop>
  378 + <hop> <from>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 3</from><to>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 3</to><enabled>Y</enabled> </hop>
  379 + <hop> <from>&#x5339;&#x914d;&#x4e0a;&#x4e0b;&#x884c;&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</from><to>&#x7c7b;&#x578b;&#x4fee;&#x6b63;</to><enabled>Y</enabled> </hop>
  380 + <hop> <from>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;1</from><to>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</to><enabled>Y</enabled> </hop>
  381 + <hop> <from>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;1</from><to>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
  382 + <hop> <from>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</from><to>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
  383 + <hop> <from>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</from><to>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
  384 + <hop> <from>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x6240;&#x6709;&#x4e0a;&#x4e0b;&#x884c;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</from><to>&#x5339;&#x914d;&#x4e0a;&#x4e0b;&#x884c;&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>
  385 + <hop> <from>&#x67e5;&#x627e;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;</from><to>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178;</to><enabled>Y</enabled> </hop>
  386 + <hop> <from>&#x67e5;&#x627e;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</from><to>&#x67e5;&#x627e;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;</to><enabled>Y</enabled> </hop>
  387 + <hop> <from>&#x6b63;&#x5e38;&#x73ed;&#x6b21;_&#x5904;&#x7406;&#x6570;&#x636e;</from><to>&#x67e5;&#x627e;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</to><enabled>Y</enabled> </hop>
  388 + <hop> <from>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</from><to>&#x6b63;&#x5e38;&#x73ed;&#x6b21;_&#x5904;&#x7406;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
  389 + <hop> <from>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178;</from><to>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x6240;&#x6709;&#x4e0a;&#x4e0b;&#x884c;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>
  390 + <hop> <from>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 2</from><to>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x51fa;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>
  391 + <hop> <from>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 3</from><to>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x8fdb;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>
  392 + <hop> <from>&#x67e5;&#x627e;&#x8def;&#x724c;&#x5173;&#x8054;</from><to>&#x8ba1;&#x7b97;&#x73ed;&#x6b21;&#x7c7b;&#x578b;</to><enabled>Y</enabled> </hop>
  393 + <hop> <from>&#x8ba1;&#x7b97;&#x73ed;&#x6b21;&#x7c7b;&#x578b;</from><to>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;1</to><enabled>Y</enabled> </hop>
  394 + <hop> <from>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</from><to>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;1</to><enabled>Y</enabled> </hop>
  395 + <hop> <from>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;1</from><to>&#x51fa;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x7ec8;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</to><enabled>Y</enabled> </hop>
  396 + <hop> <from>&#x51fa;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x7ec8;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</from><to>&#x67e5;&#x627e;&#x51fa;&#x573a;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</to><enabled>Y</enabled> </hop>
  397 + <hop> <from>&#x67e5;&#x627e;&#x51fa;&#x573a;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</from><to>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 2</to><enabled>Y</enabled> </hop>
  398 + <hop> <from>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</from><to>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;2</to><enabled>Y</enabled> </hop>
  399 + <hop> <from>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;2</from><to>&#x8fdb;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x8d77;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</to><enabled>Y</enabled> </hop>
  400 + <hop> <from>&#x8fdb;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x8d77;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</from><to>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ebf;&#x8def;&#x65b9;&#x5411;</to><enabled>Y</enabled> </hop>
  401 + <hop> <from>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ebf;&#x8def;&#x65b9;&#x5411;</from><to>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ec8;&#x70b9;&#x7ad9;&#xff0c;&#x5e76;&#x4f5c;&#x4e3a;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x7684;&#x8d77;&#x70b9;&#x7ad9;</to><enabled>Y</enabled> </hop>
  402 + <hop> <from>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</from><to>&#x6dfb;&#x52a0;&#x53d1;&#x8f66;&#x987a;&#x5e8f;&#x53f7;</to><enabled>Y</enabled> </hop>
  403 + <hop> <from>&#x5206;&#x7ec4;&#x5404;&#x4e2a;&#x8def;&#x724c;&#x7684;&#x7ad9;</from><to>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x5173;&#x8054;</to><enabled>Y</enabled> </hop>
  404 + <hop> <from>&#x589e;&#x52a0;&#x65f6;&#x523b;&#x8868;&#x540d;&#x5b57;&#xff0c;&#x7ebf;&#x8def;&#x540d;&#x5b57;&#xff0c;&#x505c;&#x8f66;&#x573a;&#x540d;&#x5b57;</from><to>&#x8bb0;&#x5f55;&#x5173;&#x8054; &#x28;&#x7b1b;&#x5361;&#x5c14;&#x8f93;&#x51fa;&#x29;</to><enabled>Y</enabled> </hop>
  405 + <hop> <from>&#x73ed;&#x6b21;&#x6570;&#x636e;&#x8303;&#x5f0f;&#x5316;</from><to>&#x8bb0;&#x5f55;&#x5173;&#x8054; &#x28;&#x7b1b;&#x5361;&#x5c14;&#x8f93;&#x51fa;&#x29;</to><enabled>Y</enabled> </hop>
  406 + <hop> <from>&#x8bb0;&#x5f55;&#x5173;&#x8054; &#x28;&#x7b1b;&#x5361;&#x5c14;&#x8f93;&#x51fa;&#x29;</from><to>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</to><enabled>Y</enabled> </hop>
  407 + <hop> <from>&#x7c7b;&#x578b;&#x4fee;&#x6b63;</from><to>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail</to><enabled>Y</enabled> </hop>
  408 + <hop> <from>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ec8;&#x70b9;&#x7ad9;&#xff0c;&#x5e76;&#x4f5c;&#x4e3a;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x7684;&#x8d77;&#x70b9;&#x7ad9;</from><to>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</to><enabled>Y</enabled> </hop>
  409 + <hop> <from>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</from><to>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 3</to><enabled>Y</enabled> </hop>
  410 + <hop> <from>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x51fa;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</from><to>&#x5339;&#x914d;&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>
  411 + <hop> <from>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x8fdb;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</from><to>&#x5339;&#x914d;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>
  412 + <hop> <from>&#x5339;&#x914d;&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</from><to>&#x4e0a;&#x4e0b;&#x884c;NULL&#x5224;&#x5b9a;</to><enabled>Y</enabled> </hop>
  413 + <hop> <from>&#x4e0a;&#x4e0b;&#x884c;NULL&#x5224;&#x5b9a;</from><to>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 2</to><enabled>Y</enabled> </hop>
  414 + <hop> <from>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 2</from><to>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail 2</to><enabled>Y</enabled> </hop>
  415 + <hop> <from>&#x5339;&#x914d;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</from><to>&#x4e0a;&#x4e0b;&#x884c;&#x5224;&#x5b9a; 2</to><enabled>Y</enabled> </hop>
  416 + <hop> <from>&#x4e0a;&#x4e0b;&#x884c;&#x5224;&#x5b9a; 2</from><to>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 3</to><enabled>Y</enabled> </hop>
  417 + <hop> <from>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 3</from><to>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail 3</to><enabled>Y</enabled> </hop>
  418 + </order>
  419 + <step>
  420 + <name>&#x4e0a;&#x4e0b;&#x884c;NULL&#x5224;&#x5b9a;</name>
  421 + <type>IfNull</type>
  422 + <description/>
  423 + <distribute>Y</distribute>
  424 + <custom_distribution/>
  425 + <copies>1</copies>
  426 + <partitioning>
  427 + <method>none</method>
  428 + <schema_name/>
  429 + </partitioning>
  430 + <replaceAllByValue/>
  431 + <replaceAllMask/>
  432 + <selectFields>Y</selectFields>
  433 + <selectValuesType>N</selectValuesType>
  434 + <setEmptyStringAll>N</setEmptyStringAll>
  435 + <valuetypes>
  436 + </valuetypes>
  437 + <fields>
  438 + <field>
  439 + <name>sxx</name>
  440 + <value>0</value>
  441 + <mask/>
  442 + <set_empty_string>N</set_empty_string>
  443 + </field>
  444 + </fields>
  445 + <cluster_schema/>
  446 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  447 + <xloc>230</xloc>
  448 + <yloc>946</yloc>
  449 + <draw>Y</draw>
  450 + </GUI>
  451 + </step>
  452 +
  453 + <step>
  454 + <name>&#x4e0a;&#x4e0b;&#x884c;&#x5224;&#x5b9a; 2</name>
  455 + <type>IfNull</type>
  456 + <description/>
  457 + <distribute>Y</distribute>
  458 + <custom_distribution/>
  459 + <copies>1</copies>
  460 + <partitioning>
  461 + <method>none</method>
  462 + <schema_name/>
  463 + </partitioning>
  464 + <replaceAllByValue/>
  465 + <replaceAllMask/>
  466 + <selectFields>Y</selectFields>
  467 + <selectValuesType>N</selectValuesType>
  468 + <setEmptyStringAll>N</setEmptyStringAll>
  469 + <valuetypes>
  470 + </valuetypes>
  471 + <fields>
  472 + <field>
  473 + <name>sxx2</name>
  474 + <value>0</value>
  475 + <mask/>
  476 + <set_empty_string>N</set_empty_string>
  477 + </field>
  478 + </fields>
  479 + <cluster_schema/>
  480 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  481 + <xloc>804</xloc>
  482 + <yloc>1081</yloc>
  483 + <draw>Y</draw>
  484 + </GUI>
  485 + </step>
  486 +
  487 + <step>
  488 + <name>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178;</name>
  489 + <type>ValueMapper</type>
  490 + <description/>
  491 + <distribute>Y</distribute>
  492 + <custom_distribution/>
  493 + <copies>1</copies>
  494 + <partitioning>
  495 + <method>none</method>
  496 + <schema_name/>
  497 + </partitioning>
  498 + <field_to_use>sxx</field_to_use>
  499 + <target_field>sxx_desc</target_field>
  500 + <non_match_default/>
  501 + <fields>
  502 + <field>
  503 + <source_value>0</source_value>
  504 + <target_value>&#x4e0a;&#x884c;</target_value>
  505 + </field>
  506 + <field>
  507 + <source_value>1</source_value>
  508 + <target_value>&#x4e0b;&#x884c;</target_value>
  509 + </field>
  510 + </fields>
  511 + <cluster_schema/>
  512 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  513 + <xloc>147</xloc>
  514 + <yloc>403</yloc>
  515 + <draw>Y</draw>
  516 + </GUI>
  517 + </step>
  518 +
  519 + <step>
  520 + <name>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 2</name>
  521 + <type>ValueMapper</type>
  522 + <description/>
  523 + <distribute>Y</distribute>
  524 + <custom_distribution/>
  525 + <copies>1</copies>
  526 + <partitioning>
  527 + <method>none</method>
  528 + <schema_name/>
  529 + </partitioning>
  530 + <field_to_use>sxx</field_to_use>
  531 + <target_field>sxx_desc</target_field>
  532 + <non_match_default/>
  533 + <fields>
  534 + <field>
  535 + <source_value>0</source_value>
  536 + <target_value>&#x4e0a;&#x884c;</target_value>
  537 + </field>
  538 + <field>
  539 + <source_value>1</source_value>
  540 + <target_value>&#x4e0b;&#x884c;</target_value>
  541 + </field>
  542 + </fields>
  543 + <cluster_schema/>
  544 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  545 + <xloc>331</xloc>
  546 + <yloc>598</yloc>
  547 + <draw>Y</draw>
  548 + </GUI>
  549 + </step>
  550 +
  551 + <step>
  552 + <name>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 3</name>
  553 + <type>ValueMapper</type>
  554 + <description/>
  555 + <distribute>Y</distribute>
  556 + <custom_distribution/>
  557 + <copies>1</copies>
  558 + <partitioning>
  559 + <method>none</method>
  560 + <schema_name/>
  561 + </partitioning>
  562 + <field_to_use>sxx</field_to_use>
  563 + <target_field>sxx_desc</target_field>
  564 + <non_match_default/>
  565 + <fields>
  566 + <field>
  567 + <source_value>0</source_value>
  568 + <target_value>&#x4e0a;&#x884c;</target_value>
  569 + </field>
  570 + <field>
  571 + <source_value>1</source_value>
  572 + <target_value>&#x4e0b;&#x884c;</target_value>
  573 + </field>
  574 + </fields>
  575 + <cluster_schema/>
  576 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  577 + <xloc>553</xloc>
  578 + <yloc>859</yloc>
  579 + <draw>Y</draw>
  580 + </GUI>
  581 + </step>
  582 +
  583 + <step>
  584 + <name>&#x51fa;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x7ec8;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</name>
  585 + <type>ScriptValueMod</type>
  586 + <description/>
  587 + <distribute>Y</distribute>
  588 + <custom_distribution/>
  589 + <copies>1</copies>
  590 + <partitioning>
  591 + <method>none</method>
  592 + <schema_name/>
  593 + </partitioning>
  594 + <compatible>N</compatible>
  595 + <optimizationLevel>9</optimizationLevel>
  596 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  597 + <jsScript_name>Script 1</jsScript_name>
  598 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;&#x2f;&#x2f; &#x6dfb;&#x52a0;&#x7ad9;&#x70b9;&#x6807;&#x8bc6;&#xa;var cc_groups &#x3d; qdzgroups.split&#x28;&#x22;,&#x22;&#x29;&#x3b; &#x2f;&#x2f; &#x6240;&#x6709;&#x73ed;&#x6b21;&#x8d77;&#x70b9;&#x7ad9;&#x6570;&#x7ec4;&#xa;var zdzname &#x3d; cc_groups&#x5b;gno&#x5d;&#x3b; &#x2f;&#x2f; &#x51fa;&#x573a;&#x73ed;&#x6b21;&#x7684;&#x7ec8;&#x70b9;&#x7ad9;&#x662f;&#x4e0b;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x8d77;&#x59cb;&#x7ad9;&#xa;var endZdtype &#x3d; &#x27;E&#x27;&#x3b;&#xa;&#xa;var destory &#x3d; 0&#x3b; &#x2f;&#x2f; &#x672a;&#x64a4;&#x9500;flag</jsScript_script>
  599 + </jsScript> </jsScripts> <fields> <field> <name>zdzname</name>
  600 + <rename>zdzname</rename>
  601 + <type>String</type>
  602 + <length>-1</length>
  603 + <precision>-1</precision>
  604 + <replace>N</replace>
  605 + </field> <field> <name>endZdtype</name>
  606 + <rename>endZdtype</rename>
  607 + <type>String</type>
  608 + <length>-1</length>
  609 + <precision>-1</precision>
  610 + <replace>N</replace>
  611 + </field> <field> <name>destory</name>
  612 + <rename>destory</rename>
  613 + <type>Integer</type>
  614 + <length>-1</length>
  615 + <precision>-1</precision>
  616 + <replace>N</replace>
  617 + </field> </fields> <cluster_schema/>
  618 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  619 + <xloc>575</xloc>
  620 + <yloc>502</yloc>
  621 + <draw>Y</draw>
  622 + </GUI>
  623 + </step>
  624 +
  625 + <step>
  626 + <name>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</name>
  627 + <type>Dummy</type>
  628 + <description/>
  629 + <distribute>Y</distribute>
  630 + <custom_distribution/>
  631 + <copies>1</copies>
  632 + <partitioning>
  633 + <method>none</method>
  634 + <schema_name/>
  635 + </partitioning>
  636 + <cluster_schema/>
  637 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  638 + <xloc>869</xloc>
  639 + <yloc>504</yloc>
  640 + <draw>Y</draw>
  641 + </GUI>
  642 + </step>
  643 +
  644 + <step>
  645 + <name>&#x5206;&#x7ec4;&#x5404;&#x4e2a;&#x8def;&#x724c;&#x7684;&#x7ad9;</name>
  646 + <type>GroupBy</type>
  647 + <description/>
  648 + <distribute>Y</distribute>
  649 + <custom_distribution/>
  650 + <copies>1</copies>
  651 + <partitioning>
  652 + <method>none</method>
  653 + <schema_name/>
  654 + </partitioning>
  655 + <all_rows>Y</all_rows>
  656 + <ignore_aggregate>N</ignore_aggregate>
  657 + <field_ignore/>
  658 + <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
  659 + <prefix>grp</prefix>
  660 + <add_linenr>Y</add_linenr>
  661 + <linenr_fieldname>gno</linenr_fieldname>
  662 + <give_back_row>N</give_back_row>
  663 + <group>
  664 + <field>
  665 + <name>lp</name>
  666 + </field>
  667 + </group>
  668 + <fields>
  669 + <field>
  670 + <aggregate>qdzgroups</aggregate>
  671 + <subject>qdzname</subject>
  672 + <type>CONCAT_STRING</type>
  673 + <valuefield>,</valuefield>
  674 + </field>
  675 + </fields>
  676 + <cluster_schema/>
  677 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  678 + <xloc>892</xloc>
  679 + <yloc>44</yloc>
  680 + <draw>Y</draw>
  681 + </GUI>
  682 + </step>
  683 +
  684 + <step>
  685 + <name>&#x5339;&#x914d;&#x4e0a;&#x4e0b;&#x884c;&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
  686 + <type>ScriptValueMod</type>
  687 + <description/>
  688 + <distribute>Y</distribute>
  689 + <custom_distribution/>
  690 + <copies>1</copies>
  691 + <partitioning>
  692 + <method>none</method>
  693 + <schema_name/>
  694 + </partitioning>
  695 + <compatible>N</compatible>
  696 + <optimizationLevel>9</optimizationLevel>
  697 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  698 + <jsScript_name>Script 1</jsScript_name>
  699 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var jhlc&#x3b; &#x2f;&#x2f; &#x8ba1;&#x5212;&#x91cc;&#x7a0b;&#xa;var bcsj&#x3b; &#x2f;&#x2f; &#x73ed;&#x6b21;&#x65f6;&#x95f4;&#xa;&#xa;&#x2f;&#x2f; &#x65f6;&#x95f4;&#x8303;&#x56f4;&#x6b63;&#x5219;&#x8868;&#x8fbe;&#x5f0f;&#xa;var timeRex &#x3d; &#x2f;&#x5e;&#x28;&#x5b;01&#x5d;&#x3f;&#x5b;0-9&#x5d;&#x7c;2&#x5b;0-3&#x5d;&#x29;&#x3a;&#x5b;0-5&#x5d;&#x5b;0-9&#x5d;&#x24;&#x2f;&#x3b;&#xa;&#x2f;&#x2f; &#x53d1;&#x8f66;&#x65f6;&#x95f4;&#x8f6c;&#x6362;&#x6210;&#x65e5;&#x671f;&#xa;var fcsj_hour &#x3d; str2num&#x28;sendtime_calcu.substr&#x28;0, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa;var fcsj_min &#x3d; str2num&#x28;sendtime_calcu.substr&#x28;3, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa;var fcsj_date &#x3d; new Date&#x28;2000,1,1,fcsj_hour,fcsj_min,0&#x29;&#x3b;&#xa;&#xa;&#x2f;&#x2f; &#x5224;&#x5b9a;&#x662f;&#x5426;&#x65e9;&#x9ad8;&#x5cf0;&#xa;var isZgf &#x3d; false&#x3b;&#xa;if &#x28;timeRex.test&#x28;early_start_time&#x29; &#x26;&#x26; timeRex.test&#x28;early_end_time&#x29; &#x26;&#x26; early_up_time &#x21;&#x3d; null &#x26;&#x26; early_down_time &#x21;&#x3d; null&#x29; &#x7b;&#xa; var early_s_hour &#x3d; str2num&#x28;early_start_time.substr&#x28;0, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var early_s_min &#x3d; str2num&#x28;early_start_time.substr&#x28;3, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var early_s_date &#x3d; new Date&#x28;2000,1,1,early_s_hour,early_s_min,0&#x29;&#x3b;&#xa;&#xa; var early_e_hour &#x3d; str2num&#x28;early_end_time.substr&#x28;0, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var early_e_min &#x3d; str2num&#x28;early_end_time.substr&#x28;3, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var early_e_date &#x3d; new Date&#x28;2000,1,1,early_e_hour,early_e_min,0&#x29;&#x3b;&#xa;&#xa; if &#x28;fcsj_date &#x3e;&#x3d; early_s_date &#x26;&#x26; fcsj_date &#x3c;&#x3d; early_e_date&#x29; &#x7b;&#xa; isZgf &#x3d; true&#x3b;&#xa; &#x7d;&#xa;&#x7d;&#xa;&#xa;&#x2f;&#x2f; &#x5224;&#x5b9a;&#x662f;&#x5426;&#x665a;&#x9ad8;&#x5cf0;&#xa;var isWgf &#x3d; false&#x3b;&#xa;if &#x28;timeRex.test&#x28;late_start_time&#x29; &#x26;&#x26; timeRex.test&#x28;late_end_time&#x29; &#x26;&#x26; late_up_time &#x21;&#x3d; null &#x26;&#x26; late_down_time &#x21;&#x3d; null&#x29; &#x7b;&#xa; var late_s_hour &#x3d; str2num&#x28;late_start_time.substr&#x28;0, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var late_s_min &#x3d; str2num&#x28;late_start_time.substr&#x28;3, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var late_s_date &#x3d; new Date&#x28;2000,1,1,late_s_hour,late_s_min,0&#x29;&#x3b;&#xa;&#xa; var late_e_hour &#x3d; str2num&#x28;late_end_time.substr&#x28;0, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var late_e_min &#x3d; str2num&#x28;late_end_time.substr&#x28;3, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var late_e_date &#x3d; new Date&#x28;2000,1,1,late_e_hour,late_e_min,0&#x29;&#x3b;&#xa;&#xa; if &#x28;fcsj_date &#x3e;&#x3d; late_s_date &#x26;&#x26; fcsj_date &#x3c;&#x3d; late_e_date&#x29; &#x7b;&#xa; isWgf &#x3d; true&#x3b;&#xa; &#x7d;&#xa;&#x7d;&#xa;&#xa;&#x2f;&#x2f; &#x5224;&#x5b9a;&#x662f;&#x5426;&#x665a;&#x9ad8;&#x5cf0;&#xa;&#xa;if &#x28;sxx &#x3d;&#x3d; 0&#x29; &#x7b; &#x2f;&#x2f; &#x4e0a;&#x884c;&#xa; if &#x28;isZgf&#x29; &#x7b;&#xa; jhlc &#x3d; up_mileage&#x3b;&#xa; bcsj &#x3d; early_up_time &#x21;&#x3d; 0 &#x3f; early_up_time &#x3a; up_travel_time&#x3b;&#xa; &#x7d; else if &#x28;isWgf&#x29; &#x7b;&#xa; jhlc &#x3d; up_mileage&#x3b;&#xa; bcsj &#x3d; late_up_time &#x21;&#x3d; 0 &#x3f; late_up_time &#x3a; up_travel_time&#x3b;&#xa; &#x7d; else &#x7b;&#xa; jhlc &#x3d; up_mileage&#x3b;&#xa; bcsj &#x3d; up_travel_time&#x3b;&#xa; &#x7d;&#xa;&#x7d; else &#x7b; &#x2f;&#x2f; sxx &#x3d;&#x3d; 1 &#x4e0b;&#x884c;&#xa; if &#x28;isZgf&#x29; &#x7b;&#xa; jhlc &#x3d; down_mileage&#x3b;&#xa; bcsj &#x3d; early_down_time &#x21;&#x3d; 0 &#x3f; early_down_time &#x3a; down_travel_time&#x3b;&#xa; &#x7d; else if &#x28;isWgf&#x29; &#x7b;&#xa; jhlc &#x3d; down_mileage&#x3b;&#xa; bcsj &#x3d; late_down_time &#x21;&#x3d; 0 &#x3f; late_down_time &#x3a; down_travel_time&#x3b;&#xa; &#x7d; else &#x7b;&#xa; jhlc &#x3d; down_mileage&#x3b;&#xa; bcsj &#x3d; down_travel_time&#x3b;&#xa; &#x7d;&#xa;&#x7d;&#xa;&#xa;</jsScript_script>
  700 + </jsScript> </jsScripts> <fields> <field> <name>jhlc</name>
  701 + <rename>jhlc</rename>
  702 + <type>String</type>
  703 + <length>-1</length>
  704 + <precision>-1</precision>
  705 + <replace>N</replace>
  706 + </field> <field> <name>bcsj</name>
  707 + <rename>bcsj</rename>
  708 + <type>String</type>
  709 + <length>-1</length>
  710 + <precision>-1</precision>
  711 + <replace>N</replace>
  712 + </field> </fields> <cluster_schema/>
  713 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  714 + <xloc>148</xloc>
  715 + <yloc>674</yloc>
  716 + <draw>Y</draw>
  717 + </GUI>
  718 + </step>
  719 +
  720 + <step>
  721 + <name>&#x5339;&#x914d;&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
  722 + <type>ScriptValueMod</type>
  723 + <description/>
  724 + <distribute>Y</distribute>
  725 + <custom_distribution/>
  726 + <copies>1</copies>
  727 + <partitioning>
  728 + <method>none</method>
  729 + <schema_name/>
  730 + </partitioning>
  731 + <compatible>N</compatible>
  732 + <optimizationLevel>9</optimizationLevel>
  733 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  734 + <jsScript_name>Script 1</jsScript_name>
  735 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var out_mileage&#x3b; &#x2f;&#x2f; &#x51fa;&#x573a;&#x8ba1;&#x5212;&#x91cc;&#x7a0b;&#xa;var out_time&#x3b; &#x2f;&#x2f; &#x51fa;&#x573a;&#x8ba1;&#x5212;&#x65f6;&#x95f4;&#xa;&#xa;if &#x28;sxx &#x3d;&#x3d; 0&#x29; &#x7b; &#x2f;&#x2f; &#x4e0a;&#x884c;&#xa; out_mileage &#x3d; up_out_mileage&#x3b;&#xa; out_time &#x3d; up_out_timer&#x3b;&#xa;&#x7d; else &#x7b; &#x2f;&#x2f; sxx &#x3d;&#x3d; 1 &#x4e0b;&#x884c;&#xa; out_mileage &#x3d; down_out_mileage&#x3b;&#xa; out_time &#x3d; down_out_timer&#x3b;&#xa;&#x7d;&#xa;&#xa;&#xa;&#xa;</jsScript_script>
  736 + </jsScript> </jsScripts> <fields> <field> <name>out_mileage</name>
  737 + <rename>out_mileage</rename>
  738 + <type>String</type>
  739 + <length>-1</length>
  740 + <precision>-1</precision>
  741 + <replace>N</replace>
  742 + </field> <field> <name>out_time</name>
  743 + <rename>out_time</rename>
  744 + <type>String</type>
  745 + <length>-1</length>
  746 + <precision>-1</precision>
  747 + <replace>N</replace>
  748 + </field> </fields> <cluster_schema/>
  749 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  750 + <xloc>336</xloc>
  751 + <yloc>862</yloc>
  752 + <draw>Y</draw>
  753 + </GUI>
  754 + </step>
  755 +
  756 + <step>
  757 + <name>&#x5339;&#x914d;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
  758 + <type>ScriptValueMod</type>
  759 + <description/>
  760 + <distribute>Y</distribute>
  761 + <custom_distribution/>
  762 + <copies>1</copies>
  763 + <partitioning>
  764 + <method>none</method>
  765 + <schema_name/>
  766 + </partitioning>
  767 + <compatible>N</compatible>
  768 + <optimizationLevel>9</optimizationLevel>
  769 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  770 + <jsScript_name>Script 1</jsScript_name>
  771 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var parade_mileage&#x3b; &#x2f;&#x2f; &#x8fdb;&#x573a;&#x8ba1;&#x5212;&#x91cc;&#x7a0b;&#xa;var parade_time&#x3b; &#x2f;&#x2f; &#x8fdb;&#x573a;&#x8ba1;&#x5212;&#x65f6;&#x95f4;&#xa;&#xa;if &#x28;sxx2 &#x3d;&#x3d; 0&#x29; &#x7b; &#x2f;&#x2f; &#x4e0a;&#x884c;&#xa; parade_mileage &#x3d; up_in_mileage&#x3b;&#xa; parade_time &#x3d; up_in_timer&#x3b;&#xa;&#x7d; else &#x7b; &#x2f;&#x2f; sxx &#x3d;&#x3d; 1 &#x4e0b;&#x884c;&#xa; parade_mileage &#x3d; down_in_mileage&#x3b;&#xa; parade_time &#x3d; down_in_timer&#x3b;&#xa;&#x7d;&#xa;&#xa;&#xa;&#xa;</jsScript_script>
  772 + </jsScript> </jsScripts> <fields> <field> <name>parade_mileage</name>
  773 + <rename>parade_mileage</rename>
  774 + <type>String</type>
  775 + <length>-1</length>
  776 + <precision>-1</precision>
  777 + <replace>N</replace>
  778 + </field> <field> <name>parade_time</name>
  779 + <rename>parade_time</rename>
  780 + <type>String</type>
  781 + <length>-1</length>
  782 + <precision>-1</precision>
  783 + <replace>N</replace>
  784 + </field> </fields> <cluster_schema/>
  785 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  786 + <xloc>726</xloc>
  787 + <yloc>1005</yloc>
  788 + <draw>Y</draw>
  789 + </GUI>
  790 + </step>
  791 +
  792 + <step>
  793 + <name>&#x589e;&#x52a0;&#x65f6;&#x523b;&#x8868;&#x540d;&#x5b57;&#xff0c;&#x7ebf;&#x8def;&#x540d;&#x5b57;&#xff0c;&#x505c;&#x8f66;&#x573a;&#x540d;&#x5b57;</name>
  794 + <type>DataGrid</type>
  795 + <description/>
  796 + <distribute>Y</distribute>
  797 + <custom_distribution/>
  798 + <copies>1</copies>
  799 + <partitioning>
  800 + <method>none</method>
  801 + <schema_name/>
  802 + </partitioning>
  803 + <fields>
  804 + </fields>
  805 + <data>
  806 + <line> </line>
  807 + </data>
  808 + <cluster_schema/>
  809 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  810 + <xloc>110</xloc>
  811 + <yloc>133</yloc>
  812 + <draw>Y</draw>
  813 + </GUI>
  814 + </step>
  815 +
  816 + <step>
  817 + <name>&#x5904;&#x7406;&#x6570;&#x636e;</name>
  818 + <type>ScriptValueMod</type>
  819 + <description/>
  820 + <distribute>Y</distribute>
  821 + <custom_distribution/>
  822 + <copies>1</copies>
  823 + <partitioning>
  824 + <method>none</method>
  825 + <schema_name/>
  826 + </partitioning>
  827 + <compatible>N</compatible>
  828 + <optimizationLevel>9</optimizationLevel>
  829 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  830 + <jsScript_name>Script 1</jsScript_name>
  831 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;&#x2f;&#x2f; &#x4f7f;&#x7528;&#x6b63;&#x5219;&#x8868;&#x8fbe;&#x5f0f;&#x53bb;&#x9664;&#x7ad9;&#x70b9;&#x540d;&#x79f0;&#x53f3;&#x4fa7;&#x591a;&#x4f59;&#x7684;&#x6570;&#x5b57;&#xa;qdzname &#x3d; qdzname.replace&#x28;&#x2f;&#x28;&#x5c;d&#x2b;&#x24;&#x29;&#x2f;g,&#x27;&#x27;&#x29;&#x3b;&#xa;&#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;&#x505c;&#x9a76;&#xa;var ists &#x3d; 0&#x3b;&#xa;&#xa;&#x2f;&#x2f; &#x8bbe;&#x7f6e;isCanceled&#xa;var iscanceled &#x3d; 0&#x3b;</jsScript_script>
  832 + </jsScript> </jsScripts> <fields> <field> <name>qdzname</name>
  833 + <rename>qdzname</rename>
  834 + <type>String</type>
  835 + <length>-1</length>
  836 + <precision>-1</precision>
  837 + <replace>Y</replace>
  838 + </field> <field> <name>isfb</name>
  839 + <rename>isfb</rename>
  840 + <type>Integer</type>
  841 + <length>-1</length>
  842 + <precision>-1</precision>
  843 + <replace>N</replace>
  844 + </field> <field> <name>iscanceled</name>
  845 + <rename>iscanceled</rename>
  846 + <type>Integer</type>
  847 + <length>-1</length>
  848 + <precision>-1</precision>
  849 + <replace>N</replace>
  850 + </field> <field> <name>sendtime_calcu</name>
  851 + <rename>sendtime_calcu</rename>
  852 + <type>String</type>
  853 + <length>-1</length>
  854 + <precision>-1</precision>
  855 + <replace>N</replace>
  856 + </field> <field> <name>ists</name>
  857 + <rename>ists</rename>
  858 + <type>Integer</type>
  859 + <length>-1</length>
  860 + <precision>-1</precision>
  861 + <replace>N</replace>
  862 + </field> </fields> <cluster_schema/>
  863 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  864 + <xloc>788</xloc>
  865 + <yloc>44</yloc>
  866 + <draw>Y</draw>
  867 + </GUI>
  868 + </step>
  869 +
  870 + <step>
  871 + <name>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</name>
  872 + <type>SelectValues</type>
  873 + <description/>
  874 + <distribute>Y</distribute>
  875 + <custom_distribution/>
  876 + <copies>1</copies>
  877 + <partitioning>
  878 + <method>none</method>
  879 + <schema_name/>
  880 + </partitioning>
  881 + <fields> <field> <name>&#x8def;&#x724c;</name>
  882 + <rename>lp</rename>
  883 + <length>-2</length>
  884 + <precision>-2</precision>
  885 + </field> <field> <name>&#x7ad9;&#x70b9;&#x540d;&#x79f0;</name>
  886 + <rename>qdzname</rename>
  887 + <length>-2</length>
  888 + <precision>-2</precision>
  889 + </field> <field> <name>&#x53d1;&#x8f66;&#x65f6;&#x95f4;</name>
  890 + <rename>sendtime</rename>
  891 + <length>-2</length>
  892 + <precision>-2</precision>
  893 + </field> <select_unspecified>Y</select_unspecified>
  894 + </fields> <cluster_schema/>
  895 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  896 + <xloc>444</xloc>
  897 + <yloc>131</yloc>
  898 + <draw>Y</draw>
  899 + </GUI>
  900 + </step>
  901 +
  902 + <step>
  903 + <name>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;1</name>
  904 + <type>FilterRows</type>
  905 + <description/>
  906 + <distribute>Y</distribute>
  907 + <custom_distribution/>
  908 + <copies>1</copies>
  909 + <partitioning>
  910 + <method>none</method>
  911 + <schema_name/>
  912 + </partitioning>
  913 +<send_true_to>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</send_true_to>
  914 +<send_false_to>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</send_false_to>
  915 + <compare>
  916 +<condition>
  917 + <negated>N</negated>
  918 + <leftvalue>bctype</leftvalue>
  919 + <function>&#x3d;</function>
  920 + <rightvalue/>
  921 + <value><name>constant</name><type>String</type><text>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</text><length>-1</length><precision>-1</precision><isnull>N</isnull><mask/></value> </condition>
  922 + </compare>
  923 + <cluster_schema/>
  924 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  925 + <xloc>860</xloc>
  926 + <yloc>401</yloc>
  927 + <draw>Y</draw>
  928 + </GUI>
  929 + </step>
  930 +
  931 + <step>
  932 + <name>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</name>
  933 + <type>FilterRows</type>
  934 + <description/>
  935 + <distribute>Y</distribute>
  936 + <custom_distribution/>
  937 + <copies>1</copies>
  938 + <partitioning>
  939 + <method>none</method>
  940 + <schema_name/>
  941 + </partitioning>
  942 +<send_true_to>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</send_true_to>
  943 +<send_false_to>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</send_false_to>
  944 + <compare>
  945 +<condition>
  946 + <negated>N</negated>
  947 + <leftvalue>bctype</leftvalue>
  948 + <function>&#x3d;</function>
  949 + <rightvalue/>
  950 + <value><name>constant</name><type>String</type><text>&#x51fa;&#x573a;</text><length>-1</length><precision>-1</precision><isnull>N</isnull><mask/></value> </condition>
  951 + </compare>
  952 + <cluster_schema/>
  953 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  954 + <xloc>995</xloc>
  955 + <yloc>503</yloc>
  956 + <draw>Y</draw>
  957 + </GUI>
  958 + </step>
  959 +
  960 + <step>
  961 + <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail</name>
  962 + <type>InsertUpdate</type>
  963 + <description/>
  964 + <distribute>Y</distribute>
  965 + <custom_distribution/>
  966 + <copies>1</copies>
  967 + <partitioning>
  968 + <method>none</method>
  969 + <schema_name/>
  970 + </partitioning>
  971 + <connection>bus_control_variable</connection>
  972 + <commit>100</commit>
  973 + <update_bypassed>N</update_bypassed>
  974 + <lookup>
  975 + <schema/>
  976 + <table>bsth_c_s_ttinfo_detail</table>
  977 + <key>
  978 + <name>xlid</name>
  979 + <field>xl</field>
  980 + <condition>&#x3d;</condition>
  981 + <name2/>
  982 + </key>
  983 + <key>
  984 + <name>ttid</name>
  985 + <field>ttinfo</field>
  986 + <condition>&#x3d;</condition>
  987 + <name2/>
  988 + </key>
  989 + <key>
  990 + <name>lpid</name>
  991 + <field>lp</field>
  992 + <condition>&#x3d;</condition>
  993 + <name2/>
  994 + </key>
  995 + <key>
  996 + <name>fcno</name>
  997 + <field>fcno</field>
  998 + <condition>&#x3d;</condition>
  999 + <name2/>
  1000 + </key>
  1001 + <key>
  1002 + <name>bcs</name>
  1003 + <field>bcs</field>
  1004 + <condition>&#x3d;</condition>
  1005 + <name2/>
  1006 + </key>
  1007 + <value>
  1008 + <name>lp</name>
  1009 + <rename>lpid</rename>
  1010 + <update>Y</update>
  1011 + </value>
  1012 + <value>
  1013 + <name>bc_type</name>
  1014 + <rename>bctype_code</rename>
  1015 + <update>Y</update>
  1016 + </value>
  1017 + <value>
  1018 + <name>bcs</name>
  1019 + <rename>bcs</rename>
  1020 + <update>Y</update>
  1021 + </value>
  1022 + <value>
  1023 + <name>bcsj</name>
  1024 + <rename>bcsj</rename>
  1025 + <update>Y</update>
  1026 + </value>
  1027 + <value>
  1028 + <name>fcno</name>
  1029 + <rename>fcno</rename>
  1030 + <update>Y</update>
  1031 + </value>
  1032 + <value>
  1033 + <name>jhlc</name>
  1034 + <rename>jhlc</rename>
  1035 + <update>Y</update>
  1036 + </value>
  1037 + <value>
  1038 + <name>fcsj</name>
  1039 + <rename>sendtime_calcu</rename>
  1040 + <update>Y</update>
  1041 + </value>
  1042 + <value>
  1043 + <name>ttinfo</name>
  1044 + <rename>ttid</rename>
  1045 + <update>Y</update>
  1046 + </value>
  1047 + <value>
  1048 + <name>xl</name>
  1049 + <rename>xlid</rename>
  1050 + <update>Y</update>
  1051 + </value>
  1052 + <value>
  1053 + <name>qdz</name>
  1054 + <rename>qdzid</rename>
  1055 + <update>Y</update>
  1056 + </value>
  1057 + <value>
  1058 + <name>zdz</name>
  1059 + <rename>zdzid</rename>
  1060 + <update>Y</update>
  1061 + </value>
  1062 + <value>
  1063 + <name>xl_dir</name>
  1064 + <rename>sxx</rename>
  1065 + <update>Y</update>
  1066 + </value>
  1067 + <value>
  1068 + <name>isfb</name>
  1069 + <rename>isfb</rename>
  1070 + <update>Y</update>
  1071 + </value>
  1072 + <value>
  1073 + <name>qdz_code</name>
  1074 + <rename>qdzcode</rename>
  1075 + <update>Y</update>
  1076 + </value>
  1077 + <value>
  1078 + <name>qdz_name</name>
  1079 + <rename>qdzname</rename>
  1080 + <update>Y</update>
  1081 + </value>
  1082 + <value>
  1083 + <name>zdz_code</name>
  1084 + <rename>zdzcode</rename>
  1085 + <update>Y</update>
  1086 + </value>
  1087 + <value>
  1088 + <name>zdz_name</name>
  1089 + <rename>zdzname</rename>
  1090 + <update>Y</update>
  1091 + </value>
  1092 + <value>
  1093 + <name>ists</name>
  1094 + <rename>ists</rename>
  1095 + <update>Y</update>
  1096 + </value>
  1097 + </lookup>
  1098 + <cluster_schema/>
  1099 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1100 + <xloc>143</xloc>
  1101 + <yloc>860</yloc>
  1102 + <draw>Y</draw>
  1103 + </GUI>
  1104 + </step>
  1105 +
  1106 + <step>
  1107 + <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail 2</name>
  1108 + <type>InsertUpdate</type>
  1109 + <description/>
  1110 + <distribute>Y</distribute>
  1111 + <custom_distribution/>
  1112 + <copies>1</copies>
  1113 + <partitioning>
  1114 + <method>none</method>
  1115 + <schema_name/>
  1116 + </partitioning>
  1117 + <connection>bus_control_variable</connection>
  1118 + <commit>100</commit>
  1119 + <update_bypassed>N</update_bypassed>
  1120 + <lookup>
  1121 + <schema/>
  1122 + <table>bsth_c_s_ttinfo_detail</table>
  1123 + <key>
  1124 + <name>xlid</name>
  1125 + <field>xl</field>
  1126 + <condition>&#x3d;</condition>
  1127 + <name2/>
  1128 + </key>
  1129 + <key>
  1130 + <name>ttid</name>
  1131 + <field>ttinfo</field>
  1132 + <condition>&#x3d;</condition>
  1133 + <name2/>
  1134 + </key>
  1135 + <key>
  1136 + <name>lpid</name>
  1137 + <field>lp</field>
  1138 + <condition>&#x3d;</condition>
  1139 + <name2/>
  1140 + </key>
  1141 + <key>
  1142 + <name>fcno</name>
  1143 + <field>fcno</field>
  1144 + <condition>&#x3d;</condition>
  1145 + <name2/>
  1146 + </key>
  1147 + <key>
  1148 + <name>bcs</name>
  1149 + <field>bcs</field>
  1150 + <condition>&#x3d;</condition>
  1151 + <name2/>
  1152 + </key>
  1153 + <value>
  1154 + <name>tcc</name>
  1155 + <rename>qdzid</rename>
  1156 + <update>Y</update>
  1157 + </value>
  1158 + <value>
  1159 + <name>zdz</name>
  1160 + <rename>zdzid</rename>
  1161 + <update>Y</update>
  1162 + </value>
  1163 + <value>
  1164 + <name>xl</name>
  1165 + <rename>xlid</rename>
  1166 + <update>Y</update>
  1167 + </value>
  1168 + <value>
  1169 + <name>ttinfo</name>
  1170 + <rename>ttid</rename>
  1171 + <update>Y</update>
  1172 + </value>
  1173 + <value>
  1174 + <name>xl_dir</name>
  1175 + <rename>sxx</rename>
  1176 + <update>Y</update>
  1177 + </value>
  1178 + <value>
  1179 + <name>lp</name>
  1180 + <rename>lpid</rename>
  1181 + <update>Y</update>
  1182 + </value>
  1183 + <value>
  1184 + <name>jhlc</name>
  1185 + <rename>out_mileage</rename>
  1186 + <update>Y</update>
  1187 + </value>
  1188 + <value>
  1189 + <name>fcsj</name>
  1190 + <rename>sendtime_calcu</rename>
  1191 + <update>Y</update>
  1192 + </value>
  1193 + <value>
  1194 + <name>bcsj</name>
  1195 + <rename>out_time</rename>
  1196 + <update>Y</update>
  1197 + </value>
  1198 + <value>
  1199 + <name>bcs</name>
  1200 + <rename>bcs</rename>
  1201 + <update>Y</update>
  1202 + </value>
  1203 + <value>
  1204 + <name>fcno</name>
  1205 + <rename>fcno</rename>
  1206 + <update>Y</update>
  1207 + </value>
  1208 + <value>
  1209 + <name>bc_type</name>
  1210 + <rename>bctype_code</rename>
  1211 + <update>Y</update>
  1212 + </value>
  1213 + <value>
  1214 + <name>isfb</name>
  1215 + <rename>isfb</rename>
  1216 + <update>Y</update>
  1217 + </value>
  1218 + <value>
  1219 + <name>qdz_code</name>
  1220 + <rename>qdzcode</rename>
  1221 + <update>Y</update>
  1222 + </value>
  1223 + <value>
  1224 + <name>qdz_name</name>
  1225 + <rename>tn</rename>
  1226 + <update>Y</update>
  1227 + </value>
  1228 + <value>
  1229 + <name>zdz_code</name>
  1230 + <rename>zdzcode</rename>
  1231 + <update>Y</update>
  1232 + </value>
  1233 + <value>
  1234 + <name>zdz_name</name>
  1235 + <rename>zdzname</rename>
  1236 + <update>Y</update>
  1237 + </value>
  1238 + <value>
  1239 + <name>ists</name>
  1240 + <rename>ists</rename>
  1241 + <update>Y</update>
  1242 + </value>
  1243 + </lookup>
  1244 + <cluster_schema/>
  1245 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1246 + <xloc>340</xloc>
  1247 + <yloc>1087</yloc>
  1248 + <draw>Y</draw>
  1249 + </GUI>
  1250 + </step>
  1251 +
  1252 + <step>
  1253 + <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail 3</name>
  1254 + <type>InsertUpdate</type>
  1255 + <description/>
  1256 + <distribute>Y</distribute>
  1257 + <custom_distribution/>
  1258 + <copies>1</copies>
  1259 + <partitioning>
  1260 + <method>none</method>
  1261 + <schema_name/>
  1262 + </partitioning>
  1263 + <connection>bus_control_variable</connection>
  1264 + <commit>100</commit>
  1265 + <update_bypassed>N</update_bypassed>
  1266 + <lookup>
  1267 + <schema/>
  1268 + <table>bsth_c_s_ttinfo_detail</table>
  1269 + <key>
  1270 + <name>xlid</name>
  1271 + <field>xl</field>
  1272 + <condition>&#x3d;</condition>
  1273 + <name2/>
  1274 + </key>
  1275 + <key>
  1276 + <name>ttid</name>
  1277 + <field>ttinfo</field>
  1278 + <condition>&#x3d;</condition>
  1279 + <name2/>
  1280 + </key>
  1281 + <key>
  1282 + <name>lpid</name>
  1283 + <field>lp</field>
  1284 + <condition>&#x3d;</condition>
  1285 + <name2/>
  1286 + </key>
  1287 + <key>
  1288 + <name>fcno</name>
  1289 + <field>fcno</field>
  1290 + <condition>&#x3d;</condition>
  1291 + <name2/>
  1292 + </key>
  1293 + <key>
  1294 + <name>bcs</name>
  1295 + <field>bcs</field>
  1296 + <condition>&#x3d;</condition>
  1297 + <name2/>
  1298 + </key>
  1299 + <value>
  1300 + <name>fcno</name>
  1301 + <rename>fcno</rename>
  1302 + <update>Y</update>
  1303 + </value>
  1304 + <value>
  1305 + <name>bcs</name>
  1306 + <rename>bcs</rename>
  1307 + <update>Y</update>
  1308 + </value>
  1309 + <value>
  1310 + <name>xl</name>
  1311 + <rename>xlid</rename>
  1312 + <update>Y</update>
  1313 + </value>
  1314 + <value>
  1315 + <name>ttinfo</name>
  1316 + <rename>ttid</rename>
  1317 + <update>Y</update>
  1318 + </value>
  1319 + <value>
  1320 + <name>lp</name>
  1321 + <rename>lpid</rename>
  1322 + <update>Y</update>
  1323 + </value>
  1324 + <value>
  1325 + <name>bc_type</name>
  1326 + <rename>bctype_code</rename>
  1327 + <update>Y</update>
  1328 + </value>
  1329 + <value>
  1330 + <name>bcsj</name>
  1331 + <rename>parade_time</rename>
  1332 + <update>Y</update>
  1333 + </value>
  1334 + <value>
  1335 + <name>jhlc</name>
  1336 + <rename>parade_mileage</rename>
  1337 + <update>Y</update>
  1338 + </value>
  1339 + <value>
  1340 + <name>fcsj</name>
  1341 + <rename>sendtime_calcu</rename>
  1342 + <update>Y</update>
  1343 + </value>
  1344 + <value>
  1345 + <name>xl_dir</name>
  1346 + <rename>sxx2</rename>
  1347 + <update>Y</update>
  1348 + </value>
  1349 + <value>
  1350 + <name>qdz</name>
  1351 + <rename>qdzid</rename>
  1352 + <update>Y</update>
  1353 + </value>
  1354 + <value>
  1355 + <name>tcc</name>
  1356 + <rename>zdzid</rename>
  1357 + <update>Y</update>
  1358 + </value>
  1359 + <value>
  1360 + <name>isfb</name>
  1361 + <rename>isfb</rename>
  1362 + <update>Y</update>
  1363 + </value>
  1364 + <value>
  1365 + <name>qdz_code</name>
  1366 + <rename>qdzcode</rename>
  1367 + <update>Y</update>
  1368 + </value>
  1369 + <value>
  1370 + <name>qdz_name</name>
  1371 + <rename>qname</rename>
  1372 + <update>Y</update>
  1373 + </value>
  1374 + <value>
  1375 + <name>zdz_code</name>
  1376 + <rename>zdzcode</rename>
  1377 + <update>Y</update>
  1378 + </value>
  1379 + <value>
  1380 + <name>zdz_name</name>
  1381 + <rename>tn</rename>
  1382 + <update>Y</update>
  1383 + </value>
  1384 + <value>
  1385 + <name>ists</name>
  1386 + <rename>ists</rename>
  1387 + <update>Y</update>
  1388 + </value>
  1389 + </lookup>
  1390 + <cluster_schema/>
  1391 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1392 + <xloc>845</xloc>
  1393 + <yloc>899</yloc>
  1394 + <draw>Y</draw>
  1395 + </GUI>
  1396 + </step>
  1397 +
  1398 + <step>
  1399 + <name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</name>
  1400 + <type>ExcelInput</type>
  1401 + <description/>
  1402 + <distribute>N</distribute>
  1403 + <custom_distribution/>
  1404 + <copies>1</copies>
  1405 + <partitioning>
  1406 + <method>none</method>
  1407 + <schema_name/>
  1408 + </partitioning>
  1409 + <header>Y</header>
  1410 + <noempty>Y</noempty>
  1411 + <stoponempty>N</stoponempty>
  1412 + <filefield/>
  1413 + <sheetfield/>
  1414 + <sheetrownumfield/>
  1415 + <rownumfield/>
  1416 + <sheetfield/>
  1417 + <filefield/>
  1418 + <limit>0</limit>
  1419 + <encoding/>
  1420 + <add_to_result_filenames>Y</add_to_result_filenames>
  1421 + <accept_filenames>N</accept_filenames>
  1422 + <accept_field/>
  1423 + <accept_stepname/>
  1424 + <file>
  1425 + <name/>
  1426 + <filemask/>
  1427 + <exclude_filemask/>
  1428 + <file_required>N</file_required>
  1429 + <include_subfolders>N</include_subfolders>
  1430 + </file>
  1431 + <fields>
  1432 + </fields>
  1433 + <sheets>
  1434 + <sheet>
  1435 + <name/>
  1436 + <startrow>0</startrow>
  1437 + <startcol>0</startcol>
  1438 + </sheet>
  1439 + </sheets>
  1440 + <strict_types>N</strict_types>
  1441 + <error_ignored>N</error_ignored>
  1442 + <error_line_skipped>N</error_line_skipped>
  1443 + <bad_line_files_destination_directory/>
  1444 + <bad_line_files_extension>warning</bad_line_files_extension>
  1445 + <error_line_files_destination_directory/>
  1446 + <error_line_files_extension>error</error_line_files_extension>
  1447 + <line_number_files_destination_directory/>
  1448 + <line_number_files_extension>line</line_number_files_extension>
  1449 + <shortFileFieldName/>
  1450 + <pathFieldName/>
  1451 + <hiddenFieldName/>
  1452 + <lastModificationTimeFieldName/>
  1453 + <uriNameFieldName/>
  1454 + <rootUriNameFieldName/>
  1455 + <extensionFieldName/>
  1456 + <sizeFieldName/>
  1457 + <spreadsheet_type>JXL</spreadsheet_type>
  1458 + <cluster_schema/>
  1459 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1460 + <xloc>112</xloc>
  1461 + <yloc>44</yloc>
  1462 + <draw>Y</draw>
  1463 + </GUI>
  1464 + </step>
  1465 +
  1466 + <step>
  1467 + <name>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;1</name>
  1468 + <type>DBLookup</type>
  1469 + <description/>
  1470 + <distribute>Y</distribute>
  1471 + <custom_distribution/>
  1472 + <copies>1</copies>
  1473 + <partitioning>
  1474 + <method>none</method>
  1475 + <schema_name/>
  1476 + </partitioning>
  1477 + <connection>bus_control_variable</connection>
  1478 + <cache>N</cache>
  1479 + <cache_load_all>N</cache_load_all>
  1480 + <cache_size>0</cache_size>
  1481 + <lookup>
  1482 + <schema/>
  1483 + <table>bsth_c_car_park</table>
  1484 + <orderby/>
  1485 + <fail_on_multiple>N</fail_on_multiple>
  1486 + <eat_row_on_failure>N</eat_row_on_failure>
  1487 + <key>
  1488 + <name>tccname_</name>
  1489 + <field>park_name</field>
  1490 + <condition>&#x3d;</condition>
  1491 + <name2/>
  1492 + </key>
  1493 + <value>
  1494 + <name>id</name>
  1495 + <rename>qdzid</rename>
  1496 + <default/>
  1497 + <type>Integer</type>
  1498 + </value>
  1499 + <value>
  1500 + <name>park_code</name>
  1501 + <rename>qdzcode</rename>
  1502 + <default/>
  1503 + <type>String</type>
  1504 + </value>
  1505 + <value>
  1506 + <name>park_name</name>
  1507 + <rename>tn</rename>
  1508 + <default/>
  1509 + <type>String</type>
  1510 + </value>
  1511 + </lookup>
  1512 + <cluster_schema/>
  1513 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1514 + <xloc>755</xloc>
  1515 + <yloc>504</yloc>
  1516 + <draw>Y</draw>
  1517 + </GUI>
  1518 + </step>
  1519 +
  1520 + <step>
  1521 + <name>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;2</name>
  1522 + <type>DBLookup</type>
  1523 + <description/>
  1524 + <distribute>Y</distribute>
  1525 + <custom_distribution/>
  1526 + <copies>1</copies>
  1527 + <partitioning>
  1528 + <method>none</method>
  1529 + <schema_name/>
  1530 + </partitioning>
  1531 + <connection>bus_control_variable</connection>
  1532 + <cache>N</cache>
  1533 + <cache_load_all>N</cache_load_all>
  1534 + <cache_size>0</cache_size>
  1535 + <lookup>
  1536 + <schema/>
  1537 + <table>bsth_c_car_park</table>
  1538 + <orderby/>
  1539 + <fail_on_multiple>N</fail_on_multiple>
  1540 + <eat_row_on_failure>N</eat_row_on_failure>
  1541 + <key>
  1542 + <name>tccname_</name>
  1543 + <field>park_name</field>
  1544 + <condition>&#x3d;</condition>
  1545 + <name2/>
  1546 + </key>
  1547 + <value>
  1548 + <name>id</name>
  1549 + <rename>zdzid</rename>
  1550 + <default/>
  1551 + <type>Integer</type>
  1552 + </value>
  1553 + <value>
  1554 + <name>park_code</name>
  1555 + <rename>zdzcode</rename>
  1556 + <default/>
  1557 + <type>String</type>
  1558 + </value>
  1559 + <value>
  1560 + <name>park_name</name>
  1561 + <rename>tn</rename>
  1562 + <default/>
  1563 + <type>String</type>
  1564 + </value>
  1565 + </lookup>
  1566 + <cluster_schema/>
  1567 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1568 + <xloc>887</xloc>
  1569 + <yloc>608</yloc>
  1570 + <draw>Y</draw>
  1571 + </GUI>
  1572 + </step>
  1573 +
  1574 + <step>
  1575 + <name>&#x67e5;&#x627e;&#x51fa;&#x573a;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</name>
  1576 + <type>DBLookup</type>
  1577 + <description/>
  1578 + <distribute>Y</distribute>
  1579 + <custom_distribution/>
  1580 + <copies>1</copies>
  1581 + <partitioning>
  1582 + <method>none</method>
  1583 + <schema_name/>
  1584 + </partitioning>
  1585 + <connection>bus_control_variable</connection>
  1586 + <cache>N</cache>
  1587 + <cache_load_all>N</cache_load_all>
  1588 + <cache_size>0</cache_size>
  1589 + <lookup>
  1590 + <schema/>
  1591 + <table>bsth_c_stationroute</table>
  1592 + <orderby/>
  1593 + <fail_on_multiple>N</fail_on_multiple>
  1594 + <eat_row_on_failure>N</eat_row_on_failure>
  1595 + <key>
  1596 + <name>xlid</name>
  1597 + <field>line</field>
  1598 + <condition>&#x3d;</condition>
  1599 + <name2/>
  1600 + </key>
  1601 + <key>
  1602 + <name>zdzname</name>
  1603 + <field>station_name</field>
  1604 + <condition>&#x3d;</condition>
  1605 + <name2/>
  1606 + </key>
  1607 + <key>
  1608 + <name>endZdtype</name>
  1609 + <field>station_mark</field>
  1610 + <condition>&#x3d;</condition>
  1611 + <name2/>
  1612 + </key>
  1613 + <key>
  1614 + <name>destory</name>
  1615 + <field>destroy</field>
  1616 + <condition>&#x3d;</condition>
  1617 + <name2/>
  1618 + </key>
  1619 + <value>
  1620 + <name>station</name>
  1621 + <rename>zdzid</rename>
  1622 + <default/>
  1623 + <type>Integer</type>
  1624 + </value>
  1625 + <value>
  1626 + <name>directions</name>
  1627 + <rename>sxx</rename>
  1628 + <default/>
  1629 + <type>Integer</type>
  1630 + </value>
  1631 + <value>
  1632 + <name>station_code</name>
  1633 + <rename>zdzcode</rename>
  1634 + <default/>
  1635 + <type>String</type>
  1636 + </value>
  1637 + </lookup>
  1638 + <cluster_schema/>
  1639 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1640 + <xloc>329</xloc>
  1641 + <yloc>505</yloc>
  1642 + <draw>Y</draw>
  1643 + </GUI>
  1644 + </step>
  1645 +
  1646 + <step>
  1647 + <name>&#x67e5;&#x627e;&#x65f6;&#x523b;&#x8868;&#x57fa;&#x7840;&#x4fe1;&#x606f;&#x5173;&#x8054;</name>
  1648 + <type>DBLookup</type>
  1649 + <description/>
  1650 + <distribute>Y</distribute>
  1651 + <custom_distribution/>
  1652 + <copies>1</copies>
  1653 + <partitioning>
  1654 + <method>none</method>
  1655 + <schema_name/>
  1656 + </partitioning>
  1657 + <connection>bus_control_variable</connection>
  1658 + <cache>N</cache>
  1659 + <cache_load_all>N</cache_load_all>
  1660 + <cache_size>0</cache_size>
  1661 + <lookup>
  1662 + <schema/>
  1663 + <table>bsth_c_s_ttinfo</table>
  1664 + <orderby/>
  1665 + <fail_on_multiple>N</fail_on_multiple>
  1666 + <eat_row_on_failure>N</eat_row_on_failure>
  1667 + <key>
  1668 + <name>xlid</name>
  1669 + <field>xl</field>
  1670 + <condition>&#x3d;</condition>
  1671 + <name2/>
  1672 + </key>
  1673 + <key>
  1674 + <name>ttinfoname_</name>
  1675 + <field>name</field>
  1676 + <condition>&#x3d;</condition>
  1677 + <name2/>
  1678 + </key>
  1679 + <key>
  1680 + <name>iscanceled</name>
  1681 + <field>is_cancel</field>
  1682 + <condition>&#x3d;</condition>
  1683 + <name2/>
  1684 + </key>
  1685 + <value>
  1686 + <name>id</name>
  1687 + <rename>ttid</rename>
  1688 + <default/>
  1689 + <type>Integer</type>
  1690 + </value>
  1691 + </lookup>
  1692 + <cluster_schema/>
  1693 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1694 + <xloc>1011</xloc>
  1695 + <yloc>134</yloc>
  1696 + <draw>Y</draw>
  1697 + </GUI>
  1698 + </step>
  1699 +
  1700 + <step>
  1701 + <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x5173;&#x8054;</name>
  1702 + <type>DBLookup</type>
  1703 + <description/>
  1704 + <distribute>Y</distribute>
  1705 + <custom_distribution/>
  1706 + <copies>1</copies>
  1707 + <partitioning>
  1708 + <method>none</method>
  1709 + <schema_name/>
  1710 + </partitioning>
  1711 + <connection>bus_control_variable</connection>
  1712 + <cache>N</cache>
  1713 + <cache_load_all>N</cache_load_all>
  1714 + <cache_size>0</cache_size>
  1715 + <lookup>
  1716 + <schema/>
  1717 + <table>bsth_c_line</table>
  1718 + <orderby/>
  1719 + <fail_on_multiple>N</fail_on_multiple>
  1720 + <eat_row_on_failure>N</eat_row_on_failure>
  1721 + <key>
  1722 + <name>xlname_</name>
  1723 + <field>name</field>
  1724 + <condition>&#x3d;</condition>
  1725 + <name2/>
  1726 + </key>
  1727 + <key>
  1728 + <name>iscanceled</name>
  1729 + <field>destroy</field>
  1730 + <condition>&#x3d;</condition>
  1731 + <name2/>
  1732 + </key>
  1733 + <value>
  1734 + <name>id</name>
  1735 + <rename>xlid</rename>
  1736 + <default/>
  1737 + <type>Integer</type>
  1738 + </value>
  1739 + </lookup>
  1740 + <cluster_schema/>
  1741 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1742 + <xloc>1007</xloc>
  1743 + <yloc>43</yloc>
  1744 + <draw>Y</draw>
  1745 + </GUI>
  1746 + </step>
  1747 +
  1748 + <step>
  1749 + <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x51fa;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
  1750 + <type>DBLookup</type>
  1751 + <description/>
  1752 + <distribute>Y</distribute>
  1753 + <custom_distribution/>
  1754 + <copies>1</copies>
  1755 + <partitioning>
  1756 + <method>none</method>
  1757 + <schema_name/>
  1758 + </partitioning>
  1759 + <connection>bus_control_variable</connection>
  1760 + <cache>N</cache>
  1761 + <cache_load_all>N</cache_load_all>
  1762 + <cache_size>0</cache_size>
  1763 + <lookup>
  1764 + <schema/>
  1765 + <table>bsth_c_line_information</table>
  1766 + <orderby/>
  1767 + <fail_on_multiple>N</fail_on_multiple>
  1768 + <eat_row_on_failure>N</eat_row_on_failure>
  1769 + <key>
  1770 + <name>xlid</name>
  1771 + <field>line</field>
  1772 + <condition>&#x3d;</condition>
  1773 + <name2/>
  1774 + </key>
  1775 + <value>
  1776 + <name>up_out_timer</name>
  1777 + <rename>up_out_timer</rename>
  1778 + <default/>
  1779 + <type>Number</type>
  1780 + </value>
  1781 + <value>
  1782 + <name>up_out_mileage</name>
  1783 + <rename>up_out_mileage</rename>
  1784 + <default/>
  1785 + <type>Number</type>
  1786 + </value>
  1787 + <value>
  1788 + <name>down_out_timer</name>
  1789 + <rename>down_out_timer</rename>
  1790 + <default/>
  1791 + <type>Number</type>
  1792 + </value>
  1793 + <value>
  1794 + <name>down_out_mileage</name>
  1795 + <rename>down_out_mileage</rename>
  1796 + <default/>
  1797 + <type>Number</type>
  1798 + </value>
  1799 + </lookup>
  1800 + <cluster_schema/>
  1801 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1802 + <xloc>335</xloc>
  1803 + <yloc>763</yloc>
  1804 + <draw>Y</draw>
  1805 + </GUI>
  1806 + </step>
  1807 +
  1808 + <step>
  1809 + <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x6240;&#x6709;&#x4e0a;&#x4e0b;&#x884c;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
  1810 + <type>DBLookup</type>
  1811 + <description/>
  1812 + <distribute>Y</distribute>
  1813 + <custom_distribution/>
  1814 + <copies>1</copies>
  1815 + <partitioning>
  1816 + <method>none</method>
  1817 + <schema_name/>
  1818 + </partitioning>
  1819 + <connection>bus_control_variable</connection>
  1820 + <cache>N</cache>
  1821 + <cache_load_all>N</cache_load_all>
  1822 + <cache_size>0</cache_size>
  1823 + <lookup>
  1824 + <schema/>
  1825 + <table>bsth_c_line_information</table>
  1826 + <orderby/>
  1827 + <fail_on_multiple>N</fail_on_multiple>
  1828 + <eat_row_on_failure>N</eat_row_on_failure>
  1829 + <key>
  1830 + <name>xlid</name>
  1831 + <field>line</field>
  1832 + <condition>&#x3d;</condition>
  1833 + <name2/>
  1834 + </key>
  1835 + <value>
  1836 + <name>up_mileage</name>
  1837 + <rename>up_mileage</rename>
  1838 + <default/>
  1839 + <type>Number</type>
  1840 + </value>
  1841 + <value>
  1842 + <name>down_mileage</name>
  1843 + <rename>down_mileage</rename>
  1844 + <default/>
  1845 + <type>Number</type>
  1846 + </value>
  1847 + <value>
  1848 + <name>up_travel_time</name>
  1849 + <rename>up_travel_time</rename>
  1850 + <default/>
  1851 + <type>Number</type>
  1852 + </value>
  1853 + <value>
  1854 + <name>down_travel_time</name>
  1855 + <rename>down_travel_time</rename>
  1856 + <default/>
  1857 + <type>Number</type>
  1858 + </value>
  1859 + <value>
  1860 + <name>early_start_time</name>
  1861 + <rename>early_start_time</rename>
  1862 + <default/>
  1863 + <type>String</type>
  1864 + </value>
  1865 + <value>
  1866 + <name>early_end_time</name>
  1867 + <rename>early_end_time</rename>
  1868 + <default/>
  1869 + <type>String</type>
  1870 + </value>
  1871 + <value>
  1872 + <name>early_up_time</name>
  1873 + <rename>early_up_time</rename>
  1874 + <default/>
  1875 + <type>Number</type>
  1876 + </value>
  1877 + <value>
  1878 + <name>early_down_time</name>
  1879 + <rename>early_down_time</rename>
  1880 + <default/>
  1881 + <type>Number</type>
  1882 + </value>
  1883 + <value>
  1884 + <name>late_start_time</name>
  1885 + <rename>late_start_time</rename>
  1886 + <default/>
  1887 + <type>String</type>
  1888 + </value>
  1889 + <value>
  1890 + <name>late_end_time</name>
  1891 + <rename>late_end_time</rename>
  1892 + <default/>
  1893 + <type>String</type>
  1894 + </value>
  1895 + <value>
  1896 + <name>late_up_time</name>
  1897 + <rename>late_up_time</rename>
  1898 + <default/>
  1899 + <type>Number</type>
  1900 + </value>
  1901 + <value>
  1902 + <name>late_down_time</name>
  1903 + <rename>late_down_time</rename>
  1904 + <default/>
  1905 + <type>Number</type>
  1906 + </value>
  1907 + </lookup>
  1908 + <cluster_schema/>
  1909 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1910 + <xloc>149</xloc>
  1911 + <yloc>581</yloc>
  1912 + <draw>Y</draw>
  1913 + </GUI>
  1914 + </step>
  1915 +
  1916 + <step>
  1917 + <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x8fdb;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
  1918 + <type>DBLookup</type>
  1919 + <description/>
  1920 + <distribute>Y</distribute>
  1921 + <custom_distribution/>
  1922 + <copies>1</copies>
  1923 + <partitioning>
  1924 + <method>none</method>
  1925 + <schema_name/>
  1926 + </partitioning>
  1927 + <connection>bus_control_variable</connection>
  1928 + <cache>N</cache>
  1929 + <cache_load_all>N</cache_load_all>
  1930 + <cache_size>0</cache_size>
  1931 + <lookup>
  1932 + <schema/>
  1933 + <table>bsth_c_line_information</table>
  1934 + <orderby/>
  1935 + <fail_on_multiple>N</fail_on_multiple>
  1936 + <eat_row_on_failure>N</eat_row_on_failure>
  1937 + <key>
  1938 + <name>xlid</name>
  1939 + <field>line</field>
  1940 + <condition>&#x3d;</condition>
  1941 + <name2/>
  1942 + </key>
  1943 + <value>
  1944 + <name>up_in_mileage</name>
  1945 + <rename>up_in_mileage</rename>
  1946 + <default/>
  1947 + <type>Number</type>
  1948 + </value>
  1949 + <value>
  1950 + <name>up_in_timer</name>
  1951 + <rename>up_in_timer</rename>
  1952 + <default/>
  1953 + <type>Number</type>
  1954 + </value>
  1955 + <value>
  1956 + <name>down_in_mileage</name>
  1957 + <rename>down_in_mileage</rename>
  1958 + <default/>
  1959 + <type>Number</type>
  1960 + </value>
  1961 + <value>
  1962 + <name>down_in_timer</name>
  1963 + <rename>down_in_timer</rename>
  1964 + <default/>
  1965 + <type>Number</type>
  1966 + </value>
  1967 + </lookup>
  1968 + <cluster_schema/>
  1969 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1970 + <xloc>553</xloc>
  1971 + <yloc>1004</yloc>
  1972 + <draw>Y</draw>
  1973 + </GUI>
  1974 + </step>
  1975 +
  1976 + <step>
  1977 + <name>&#x67e5;&#x627e;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;</name>
  1978 + <type>DBLookup</type>
  1979 + <description/>
  1980 + <distribute>Y</distribute>
  1981 + <custom_distribution/>
  1982 + <copies>1</copies>
  1983 + <partitioning>
  1984 + <method>none</method>
  1985 + <schema_name/>
  1986 + </partitioning>
  1987 + <connection>bus_control_variable</connection>
  1988 + <cache>N</cache>
  1989 + <cache_load_all>N</cache_load_all>
  1990 + <cache_size>0</cache_size>
  1991 + <lookup>
  1992 + <schema/>
  1993 + <table>bsth_c_stationroute</table>
  1994 + <orderby/>
  1995 + <fail_on_multiple>N</fail_on_multiple>
  1996 + <eat_row_on_failure>N</eat_row_on_failure>
  1997 + <key>
  1998 + <name>xlid</name>
  1999 + <field>line</field>
  2000 + <condition>&#x3d;</condition>
  2001 + <name2/>
  2002 + </key>
  2003 + <key>
  2004 + <name>sxx</name>
  2005 + <field>directions</field>
  2006 + <condition>&#x3d;</condition>
  2007 + <name2/>
  2008 + </key>
  2009 + <key>
  2010 + <name>endZdtype</name>
  2011 + <field>station_mark</field>
  2012 + <condition>&#x3d;</condition>
  2013 + <name2/>
  2014 + </key>
  2015 + <key>
  2016 + <name>destory</name>
  2017 + <field>destroy</field>
  2018 + <condition>&#x3d;</condition>
  2019 + <name2/>
  2020 + </key>
  2021 + <value>
  2022 + <name>station_name</name>
  2023 + <rename>zdzname</rename>
  2024 + <default/>
  2025 + <type>String</type>
  2026 + </value>
  2027 + <value>
  2028 + <name>station</name>
  2029 + <rename>zdzid</rename>
  2030 + <default/>
  2031 + <type>Integer</type>
  2032 + </value>
  2033 + <value>
  2034 + <name>station_code</name>
  2035 + <rename>zdzcode</rename>
  2036 + <default/>
  2037 + <type>String</type>
  2038 + </value>
  2039 + </lookup>
  2040 + <cluster_schema/>
  2041 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2042 + <xloc>280</xloc>
  2043 + <yloc>404</yloc>
  2044 + <draw>Y</draw>
  2045 + </GUI>
  2046 + </step>
  2047 +
  2048 + <step>
  2049 + <name>&#x67e5;&#x627e;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</name>
  2050 + <type>DBLookup</type>
  2051 + <description/>
  2052 + <distribute>Y</distribute>
  2053 + <custom_distribution/>
  2054 + <copies>1</copies>
  2055 + <partitioning>
  2056 + <method>none</method>
  2057 + <schema_name/>
  2058 + </partitioning>
  2059 + <connection>bus_control_variable</connection>
  2060 + <cache>N</cache>
  2061 + <cache_load_all>N</cache_load_all>
  2062 + <cache_size>0</cache_size>
  2063 + <lookup>
  2064 + <schema/>
  2065 + <table>bsth_c_stationroute</table>
  2066 + <orderby/>
  2067 + <fail_on_multiple>N</fail_on_multiple>
  2068 + <eat_row_on_failure>N</eat_row_on_failure>
  2069 + <key>
  2070 + <name>xlid</name>
  2071 + <field>line</field>
  2072 + <condition>&#x3d;</condition>
  2073 + <name2/>
  2074 + </key>
  2075 + <key>
  2076 + <name>qdzname</name>
  2077 + <field>station_name</field>
  2078 + <condition>&#x3d;</condition>
  2079 + <name2/>
  2080 + </key>
  2081 + <key>
  2082 + <name>sendZdtype</name>
  2083 + <field>station_mark</field>
  2084 + <condition>&#x3d;</condition>
  2085 + <name2/>
  2086 + </key>
  2087 + <key>
  2088 + <name>destory</name>
  2089 + <field>destroy</field>
  2090 + <condition>&#x3d;</condition>
  2091 + <name2/>
  2092 + </key>
  2093 + <value>
  2094 + <name>station</name>
  2095 + <rename>qdzid</rename>
  2096 + <default/>
  2097 + <type>Integer</type>
  2098 + </value>
  2099 + <value>
  2100 + <name>directions</name>
  2101 + <rename>sxx</rename>
  2102 + <default/>
  2103 + <type>Integer</type>
  2104 + </value>
  2105 + <value>
  2106 + <name>station_code</name>
  2107 + <rename>qdzcode</rename>
  2108 + <default/>
  2109 + <type>String</type>
  2110 + </value>
  2111 + </lookup>
  2112 + <cluster_schema/>
  2113 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2114 + <xloc>430</xloc>
  2115 + <yloc>403</yloc>
  2116 + <draw>Y</draw>
  2117 + </GUI>
  2118 + </step>
  2119 +
  2120 + <step>
  2121 + <name>&#x67e5;&#x627e;&#x8def;&#x724c;&#x5173;&#x8054;</name>
  2122 + <type>DBLookup</type>
  2123 + <description/>
  2124 + <distribute>Y</distribute>
  2125 + <custom_distribution/>
  2126 + <copies>1</copies>
  2127 + <partitioning>
  2128 + <method>none</method>
  2129 + <schema_name/>
  2130 + </partitioning>
  2131 + <connection>bus_control_variable</connection>
  2132 + <cache>N</cache>
  2133 + <cache_load_all>N</cache_load_all>
  2134 + <cache_size>0</cache_size>
  2135 + <lookup>
  2136 + <schema/>
  2137 + <table>bsth_c_s_gbi</table>
  2138 + <orderby/>
  2139 + <fail_on_multiple>N</fail_on_multiple>
  2140 + <eat_row_on_failure>N</eat_row_on_failure>
  2141 + <key>
  2142 + <name>xlid</name>
  2143 + <field>xl</field>
  2144 + <condition>&#x3d;</condition>
  2145 + <name2/>
  2146 + </key>
  2147 + <key>
  2148 + <name>lp</name>
  2149 + <field>lp_name</field>
  2150 + <condition>&#x3d;</condition>
  2151 + <name2/>
  2152 + </key>
  2153 + <key>
  2154 + <name>iscanceled</name>
  2155 + <field>is_cancel</field>
  2156 + <condition>&#x3d;</condition>
  2157 + <name2/>
  2158 + </key>
  2159 + <value>
  2160 + <name>id</name>
  2161 + <rename>lpid</rename>
  2162 + <default/>
  2163 + <type>Integer</type>
  2164 + </value>
  2165 + </lookup>
  2166 + <cluster_schema/>
  2167 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2168 + <xloc>1013</xloc>
  2169 + <yloc>265</yloc>
  2170 + <draw>Y</draw>
  2171 + </GUI>
  2172 + </step>
  2173 +
  2174 + <step>
  2175 + <name>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ebf;&#x8def;&#x65b9;&#x5411;</name>
  2176 + <type>DBLookup</type>
  2177 + <description/>
  2178 + <distribute>Y</distribute>
  2179 + <custom_distribution/>
  2180 + <copies>1</copies>
  2181 + <partitioning>
  2182 + <method>none</method>
  2183 + <schema_name/>
  2184 + </partitioning>
  2185 + <connection>bus_control_variable</connection>
  2186 + <cache>N</cache>
  2187 + <cache_load_all>N</cache_load_all>
  2188 + <cache_size>0</cache_size>
  2189 + <lookup>
  2190 + <schema/>
  2191 + <table>bsth_c_stationroute</table>
  2192 + <orderby/>
  2193 + <fail_on_multiple>N</fail_on_multiple>
  2194 + <eat_row_on_failure>N</eat_row_on_failure>
  2195 + <key>
  2196 + <name>xlid</name>
  2197 + <field>line</field>
  2198 + <condition>&#x3d;</condition>
  2199 + <name2/>
  2200 + </key>
  2201 + <key>
  2202 + <name>startZdtype_calcu</name>
  2203 + <field>station_mark</field>
  2204 + <condition>&#x3d;</condition>
  2205 + <name2/>
  2206 + </key>
  2207 + <key>
  2208 + <name>qdzname_calcu</name>
  2209 + <field>station_name</field>
  2210 + <condition>&#x3d;</condition>
  2211 + <name2/>
  2212 + </key>
  2213 + <key>
  2214 + <name>destory</name>
  2215 + <field>destroy</field>
  2216 + <condition>&#x3d;</condition>
  2217 + <name2/>
  2218 + </key>
  2219 + <value>
  2220 + <name>directions</name>
  2221 + <rename>sxx</rename>
  2222 + <default/>
  2223 + <type>String</type>
  2224 + </value>
  2225 + </lookup>
  2226 + <cluster_schema/>
  2227 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2228 + <xloc>548</xloc>
  2229 + <yloc>610</yloc>
  2230 + <draw>Y</draw>
  2231 + </GUI>
  2232 + </step>
  2233 +
  2234 + <step>
  2235 + <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>
  2236 + <type>DBLookup</type>
  2237 + <description/>
  2238 + <distribute>Y</distribute>
  2239 + <custom_distribution/>
  2240 + <copies>1</copies>
  2241 + <partitioning>
  2242 + <method>none</method>
  2243 + <schema_name/>
  2244 + </partitioning>
  2245 + <connection>bus_control_variable</connection>
  2246 + <cache>Y</cache>
  2247 + <cache_load_all>Y</cache_load_all>
  2248 + <cache_size>0</cache_size>
  2249 + <lookup>
  2250 + <schema/>
  2251 + <table>bsth_c_stationroute</table>
  2252 + <orderby/>
  2253 + <fail_on_multiple>N</fail_on_multiple>
  2254 + <eat_row_on_failure>N</eat_row_on_failure>
  2255 + <key>
  2256 + <name>xlid</name>
  2257 + <field>line</field>
  2258 + <condition>&#x3d;</condition>
  2259 + <name2/>
  2260 + </key>
  2261 + <key>
  2262 + <name>endZdtype_calcu</name>
  2263 + <field>station_mark</field>
  2264 + <condition>&#x3d;</condition>
  2265 + <name2/>
  2266 + </key>
  2267 + <key>
  2268 + <name>sxx</name>
  2269 + <field>directions</field>
  2270 + <condition>&#x3d;</condition>
  2271 + <name2/>
  2272 + </key>
  2273 + <key>
  2274 + <name>destory</name>
  2275 + <field>destroy</field>
  2276 + <condition>&#x3d;</condition>
  2277 + <name2/>
  2278 + </key>
  2279 + <value>
  2280 + <name>station_name</name>
  2281 + <rename>zdzname_calcu</rename>
  2282 + <default/>
  2283 + <type>Integer</type>
  2284 + </value>
  2285 + </lookup>
  2286 + <cluster_schema/>
  2287 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2288 + <xloc>550</xloc>
  2289 + <yloc>701</yloc>
  2290 + <draw>Y</draw>
  2291 + </GUI>
  2292 + </step>
  2293 +
  2294 + <step>
  2295 + <name>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</name>
  2296 + <type>DBLookup</type>
  2297 + <description/>
  2298 + <distribute>Y</distribute>
  2299 + <custom_distribution/>
  2300 + <copies>1</copies>
  2301 + <partitioning>
  2302 + <method>none</method>
  2303 + <schema_name/>
  2304 + </partitioning>
  2305 + <connection>bus_control_variable</connection>
  2306 + <cache>N</cache>
  2307 + <cache_load_all>N</cache_load_all>
  2308 + <cache_size>0</cache_size>
  2309 + <lookup>
  2310 + <schema/>
  2311 + <table>bsth_c_stationroute</table>
  2312 + <orderby/>
  2313 + <fail_on_multiple>N</fail_on_multiple>
  2314 + <eat_row_on_failure>N</eat_row_on_failure>
  2315 + <key>
  2316 + <name>xlid</name>
  2317 + <field>line</field>
  2318 + <condition>&#x3d;</condition>
  2319 + <name2/>
  2320 + </key>
  2321 + <key>
  2322 + <name>zdzname_calcu</name>
  2323 + <field>station_name</field>
  2324 + <condition>&#x3d;</condition>
  2325 + <name2/>
  2326 + </key>
  2327 + <key>
  2328 + <name>startZdtype_calcu</name>
  2329 + <field>station_mark</field>
  2330 + <condition>&#x3d;</condition>
  2331 + <name2/>
  2332 + </key>
  2333 + <key>
  2334 + <name>destory</name>
  2335 + <field>destroy</field>
  2336 + <condition>&#x3d;</condition>
  2337 + <name2/>
  2338 + </key>
  2339 + <value>
  2340 + <name>directions</name>
  2341 + <rename>sxx2</rename>
  2342 + <default/>
  2343 + <type>Integer</type>
  2344 + </value>
  2345 + <value>
  2346 + <name>station</name>
  2347 + <rename>qdzid</rename>
  2348 + <default/>
  2349 + <type>Integer</type>
  2350 + </value>
  2351 + <value>
  2352 + <name>station_code</name>
  2353 + <rename>qdzcode</rename>
  2354 + <default/>
  2355 + <type>String</type>
  2356 + </value>
  2357 + <value>
  2358 + <name>station_name</name>
  2359 + <rename>qname</rename>
  2360 + <default/>
  2361 + <type>String</type>
  2362 + </value>
  2363 + </lookup>
  2364 + <cluster_schema/>
  2365 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2366 + <xloc>551</xloc>
  2367 + <yloc>782</yloc>
  2368 + <draw>Y</draw>
  2369 + </GUI>
  2370 + </step>
  2371 +
  2372 + <step>
  2373 + <name>&#x6b63;&#x5e38;&#x73ed;&#x6b21;_&#x5904;&#x7406;&#x6570;&#x636e;</name>
  2374 + <type>ScriptValueMod</type>
  2375 + <description/>
  2376 + <distribute>Y</distribute>
  2377 + <custom_distribution/>
  2378 + <copies>1</copies>
  2379 + <partitioning>
  2380 + <method>none</method>
  2381 + <schema_name/>
  2382 + </partitioning>
  2383 + <compatible>N</compatible>
  2384 + <optimizationLevel>9</optimizationLevel>
  2385 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  2386 + <jsScript_name>Script 1</jsScript_name>
  2387 + <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>
  2388 + </jsScript> </jsScripts> <fields> <field> <name>sendZdtype</name>
  2389 + <rename>sendZdtype</rename>
  2390 + <type>String</type>
  2391 + <length>-1</length>
  2392 + <precision>-1</precision>
  2393 + <replace>N</replace>
  2394 + </field> <field> <name>endZdtype</name>
  2395 + <rename>endZdtype</rename>
  2396 + <type>String</type>
  2397 + <length>-1</length>
  2398 + <precision>-1</precision>
  2399 + <replace>N</replace>
  2400 + </field> <field> <name>destory</name>
  2401 + <rename>destory</rename>
  2402 + <type>Integer</type>
  2403 + <length>-1</length>
  2404 + <precision>-1</precision>
  2405 + <replace>N</replace>
  2406 + </field> </fields> <cluster_schema/>
  2407 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2408 + <xloc>588</xloc>
  2409 + <yloc>403</yloc>
  2410 + <draw>Y</draw>
  2411 + </GUI>
  2412 + </step>
  2413 +
  2414 + <step>
  2415 + <name>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</name>
  2416 + <type>Dummy</type>
  2417 + <description/>
  2418 + <distribute>Y</distribute>
  2419 + <custom_distribution/>
  2420 + <copies>1</copies>
  2421 + <partitioning>
  2422 + <method>none</method>
  2423 + <schema_name/>
  2424 + </partitioning>
  2425 + <cluster_schema/>
  2426 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2427 + <xloc>725</xloc>
  2428 + <yloc>404</yloc>
  2429 + <draw>Y</draw>
  2430 + </GUI>
  2431 + </step>
  2432 +
  2433 + <step>
  2434 + <name>&#x6dfb;&#x52a0;&#x53d1;&#x8f66;&#x987a;&#x5e8f;&#x53f7;</name>
  2435 + <type>GroupBy</type>
  2436 + <description/>
  2437 + <distribute>Y</distribute>
  2438 + <custom_distribution/>
  2439 + <copies>1</copies>
  2440 + <partitioning>
  2441 + <method>none</method>
  2442 + <schema_name/>
  2443 + </partitioning>
  2444 + <all_rows>Y</all_rows>
  2445 + <ignore_aggregate>N</ignore_aggregate>
  2446 + <field_ignore/>
  2447 + <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
  2448 + <prefix>grp</prefix>
  2449 + <add_linenr>Y</add_linenr>
  2450 + <linenr_fieldname>fcno</linenr_fieldname>
  2451 + <give_back_row>N</give_back_row>
  2452 + <group>
  2453 + <field>
  2454 + <name>lp</name>
  2455 + </field>
  2456 + </group>
  2457 + <fields>
  2458 + </fields>
  2459 + <cluster_schema/>
  2460 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2461 + <xloc>442</xloc>
  2462 + <yloc>44</yloc>
  2463 + <draw>Y</draw>
  2464 + </GUI>
  2465 + </step>
  2466 +
  2467 + <step>
  2468 + <name>&#x6dfb;&#x52a0;&#x5bf9;&#x5e94;&#x73ed;&#x6b21;&#x6570;</name>
  2469 + <type>GroupBy</type>
  2470 + <description/>
  2471 + <distribute>Y</distribute>
  2472 + <custom_distribution/>
  2473 + <copies>1</copies>
  2474 + <partitioning>
  2475 + <method>none</method>
  2476 + <schema_name/>
  2477 + </partitioning>
  2478 + <all_rows>Y</all_rows>
  2479 + <ignore_aggregate>N</ignore_aggregate>
  2480 + <field_ignore/>
  2481 + <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
  2482 + <prefix>grp</prefix>
  2483 + <add_linenr>Y</add_linenr>
  2484 + <linenr_fieldname>bcs</linenr_fieldname>
  2485 + <give_back_row>N</give_back_row>
  2486 + <group>
  2487 + </group>
  2488 + <fields>
  2489 + </fields>
  2490 + <cluster_schema/>
  2491 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2492 + <xloc>692</xloc>
  2493 + <yloc>44</yloc>
  2494 + <draw>Y</draw>
  2495 + </GUI>
  2496 + </step>
  2497 +
  2498 + <step>
  2499 + <name>&#x73ed;&#x6b21;&#x6570;&#x636e;&#x8303;&#x5f0f;&#x5316;</name>
  2500 + <type>Normaliser</type>
  2501 + <description/>
  2502 + <distribute>Y</distribute>
  2503 + <custom_distribution/>
  2504 + <copies>1</copies>
  2505 + <partitioning>
  2506 + <method>none</method>
  2507 + <schema_name/>
  2508 + </partitioning>
  2509 + <typefield>&#x7ad9;&#x70b9;&#x540d;&#x79f0;</typefield>
  2510 + <fields> </fields> <cluster_schema/>
  2511 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2512 + <xloc>248</xloc>
  2513 + <yloc>44</yloc>
  2514 + <draw>Y</draw>
  2515 + </GUI>
  2516 + </step>
  2517 +
  2518 + <step>
  2519 + <name>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178;</name>
  2520 + <type>ValueMapper</type>
  2521 + <description/>
  2522 + <distribute>Y</distribute>
  2523 + <custom_distribution/>
  2524 + <copies>1</copies>
  2525 + <partitioning>
  2526 + <method>none</method>
  2527 + <schema_name/>
  2528 + </partitioning>
  2529 + <field_to_use>bctype</field_to_use>
  2530 + <target_field>bctype_code</target_field>
  2531 + <non_match_default>&#x672a;&#x77e5;&#x7c7b;&#x578b;</non_match_default>
  2532 + <fields>
  2533 + <field>
  2534 + <source_value>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</source_value>
  2535 + <target_value>normal</target_value>
  2536 + </field>
  2537 + <field>
  2538 + <source_value>&#x51fa;&#x573a;</source_value>
  2539 + <target_value>out</target_value>
  2540 + </field>
  2541 + <field>
  2542 + <source_value>&#x8fdb;&#x573a;</source_value>
  2543 + <target_value>in</target_value>
  2544 + </field>
  2545 + <field>
  2546 + <source_value>&#x52a0;&#x6cb9;</source_value>
  2547 + <target_value>oil</target_value>
  2548 + </field>
  2549 + <field>
  2550 + <source_value>&#x4e34;&#x52a0;</source_value>
  2551 + <target_value>temp</target_value>
  2552 + </field>
  2553 + <field>
  2554 + <source_value>&#x533a;&#x95f4;</source_value>
  2555 + <target_value>region</target_value>
  2556 + </field>
  2557 + <field>
  2558 + <source_value>&#x653e;&#x7a7a;</source_value>
  2559 + <target_value>venting</target_value>
  2560 + </field>
  2561 + <field>
  2562 + <source_value>&#x653e;&#x5927;&#x7ad9;</source_value>
  2563 + <target_value>major</target_value>
  2564 + </field>
  2565 + </fields>
  2566 + <cluster_schema/>
  2567 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2568 + <xloc>149</xloc>
  2569 + <yloc>491</yloc>
  2570 + <draw>Y</draw>
  2571 + </GUI>
  2572 + </step>
  2573 +
  2574 + <step>
  2575 + <name>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 2</name>
  2576 + <type>ValueMapper</type>
  2577 + <description/>
  2578 + <distribute>Y</distribute>
  2579 + <custom_distribution/>
  2580 + <copies>1</copies>
  2581 + <partitioning>
  2582 + <method>none</method>
  2583 + <schema_name/>
  2584 + </partitioning>
  2585 + <field_to_use>bctype</field_to_use>
  2586 + <target_field>bctype_code</target_field>
  2587 + <non_match_default>&#x672a;&#x77e5;&#x7c7b;&#x578b;</non_match_default>
  2588 + <fields>
  2589 + <field>
  2590 + <source_value>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</source_value>
  2591 + <target_value>normal</target_value>
  2592 + </field>
  2593 + <field>
  2594 + <source_value>&#x51fa;&#x573a;</source_value>
  2595 + <target_value>out</target_value>
  2596 + </field>
  2597 + <field>
  2598 + <source_value>&#x8fdb;&#x573a;</source_value>
  2599 + <target_value>in</target_value>
  2600 + </field>
  2601 + <field>
  2602 + <source_value>&#x52a0;&#x6cb9;</source_value>
  2603 + <target_value>oil</target_value>
  2604 + </field>
  2605 + <field>
  2606 + <source_value>&#x4e34;&#x52a0;</source_value>
  2607 + <target_value>temp</target_value>
  2608 + </field>
  2609 + <field>
  2610 + <source_value>&#x533a;&#x95f4;</source_value>
  2611 + <target_value>region</target_value>
  2612 + </field>
  2613 + <field>
  2614 + <source_value>&#x653e;&#x7a7a;</source_value>
  2615 + <target_value>venting</target_value>
  2616 + </field>
  2617 + <field>
  2618 + <source_value>&#x653e;&#x5927;&#x7ad9;</source_value>
  2619 + <target_value>major</target_value>
  2620 + </field>
  2621 + </fields>
  2622 + <cluster_schema/>
  2623 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2624 + <xloc>333</xloc>
  2625 + <yloc>681</yloc>
  2626 + <draw>Y</draw>
  2627 + </GUI>
  2628 + </step>
  2629 +
  2630 + <step>
  2631 + <name>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 3</name>
  2632 + <type>ValueMapper</type>
  2633 + <description/>
  2634 + <distribute>Y</distribute>
  2635 + <custom_distribution/>
  2636 + <copies>1</copies>
  2637 + <partitioning>
  2638 + <method>none</method>
  2639 + <schema_name/>
  2640 + </partitioning>
  2641 + <field_to_use>bctype</field_to_use>
  2642 + <target_field>bctype_code</target_field>
  2643 + <non_match_default>&#x672a;&#x77e5;&#x7c7b;&#x578b;</non_match_default>
  2644 + <fields>
  2645 + <field>
  2646 + <source_value>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</source_value>
  2647 + <target_value>normal</target_value>
  2648 + </field>
  2649 + <field>
  2650 + <source_value>&#x51fa;&#x573a;</source_value>
  2651 + <target_value>out</target_value>
  2652 + </field>
  2653 + <field>
  2654 + <source_value>&#x8fdb;&#x573a;</source_value>
  2655 + <target_value>in</target_value>
  2656 + </field>
  2657 + <field>
  2658 + <source_value>&#x52a0;&#x6cb9;</source_value>
  2659 + <target_value>oil</target_value>
  2660 + </field>
  2661 + <field>
  2662 + <source_value>&#x4e34;&#x52a0;</source_value>
  2663 + <target_value>temp</target_value>
  2664 + </field>
  2665 + <field>
  2666 + <source_value>&#x533a;&#x95f4;</source_value>
  2667 + <target_value>region</target_value>
  2668 + </field>
  2669 + <field>
  2670 + <source_value>&#x653e;&#x7a7a;</source_value>
  2671 + <target_value>venting</target_value>
  2672 + </field>
  2673 + <field>
  2674 + <source_value>&#x653e;&#x5927;&#x7ad9;</source_value>
  2675 + <target_value>major</target_value>
  2676 + </field>
  2677 + </fields>
  2678 + <cluster_schema/>
  2679 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2680 + <xloc>551</xloc>
  2681 + <yloc>928</yloc>
  2682 + <draw>Y</draw>
  2683 + </GUI>
  2684 + </step>
  2685 +
  2686 + <step>
  2687 + <name>&#x7c7b;&#x578b;&#x4fee;&#x6b63;</name>
  2688 + <type>SelectValues</type>
  2689 + <description/>
  2690 + <distribute>Y</distribute>
  2691 + <custom_distribution/>
  2692 + <copies>1</copies>
  2693 + <partitioning>
  2694 + <method>none</method>
  2695 + <schema_name/>
  2696 + </partitioning>
  2697 + <fields> <select_unspecified>N</select_unspecified>
  2698 + <meta> <name>jhlc</name>
  2699 + <rename>jhlc</rename>
  2700 + <type>Number</type>
  2701 + <length>-2</length>
  2702 + <precision>-2</precision>
  2703 + <conversion_mask/>
  2704 + <date_format_lenient>false</date_format_lenient>
  2705 + <date_format_locale/>
  2706 + <date_format_timezone/>
  2707 + <lenient_string_to_number>false</lenient_string_to_number>
  2708 + <encoding/>
  2709 + <decimal_symbol/>
  2710 + <grouping_symbol/>
  2711 + <currency_symbol/>
  2712 + <storage_type/>
  2713 + </meta> <meta> <name>bcsj</name>
  2714 + <rename>bcsj</rename>
  2715 + <type>Integer</type>
  2716 + <length>-2</length>
  2717 + <precision>-2</precision>
  2718 + <conversion_mask/>
  2719 + <date_format_lenient>false</date_format_lenient>
  2720 + <date_format_locale/>
  2721 + <date_format_timezone/>
  2722 + <lenient_string_to_number>false</lenient_string_to_number>
  2723 + <encoding/>
  2724 + <decimal_symbol/>
  2725 + <grouping_symbol/>
  2726 + <currency_symbol/>
  2727 + <storage_type/>
  2728 + </meta> </fields> <cluster_schema/>
  2729 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2730 + <xloc>146</xloc>
  2731 + <yloc>768</yloc>
  2732 + <draw>Y</draw>
  2733 + </GUI>
  2734 + </step>
  2735 +
  2736 + <step>
  2737 + <name>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 2</name>
  2738 + <type>SelectValues</type>
  2739 + <description/>
  2740 + <distribute>Y</distribute>
  2741 + <custom_distribution/>
  2742 + <copies>1</copies>
  2743 + <partitioning>
  2744 + <method>none</method>
  2745 + <schema_name/>
  2746 + </partitioning>
  2747 + <fields> <select_unspecified>N</select_unspecified>
  2748 + <meta> <name>out_mileage</name>
  2749 + <rename>out_mileage</rename>
  2750 + <type>Number</type>
  2751 + <length>-2</length>
  2752 + <precision>-2</precision>
  2753 + <conversion_mask/>
  2754 + <date_format_lenient>false</date_format_lenient>
  2755 + <date_format_locale/>
  2756 + <date_format_timezone/>
  2757 + <lenient_string_to_number>false</lenient_string_to_number>
  2758 + <encoding/>
  2759 + <decimal_symbol/>
  2760 + <grouping_symbol/>
  2761 + <currency_symbol/>
  2762 + <storage_type/>
  2763 + </meta> <meta> <name>out_time</name>
  2764 + <rename>out_time</rename>
  2765 + <type>Integer</type>
  2766 + <length>-2</length>
  2767 + <precision>-2</precision>
  2768 + <conversion_mask/>
  2769 + <date_format_lenient>false</date_format_lenient>
  2770 + <date_format_locale/>
  2771 + <date_format_timezone/>
  2772 + <lenient_string_to_number>false</lenient_string_to_number>
  2773 + <encoding/>
  2774 + <decimal_symbol/>
  2775 + <grouping_symbol/>
  2776 + <currency_symbol/>
  2777 + <storage_type/>
  2778 + </meta> <meta> <name>sxx</name>
  2779 + <rename>sxx</rename>
  2780 + <type>Integer</type>
  2781 + <length>-2</length>
  2782 + <precision>-2</precision>
  2783 + <conversion_mask/>
  2784 + <date_format_lenient>false</date_format_lenient>
  2785 + <date_format_locale/>
  2786 + <date_format_timezone/>
  2787 + <lenient_string_to_number>false</lenient_string_to_number>
  2788 + <encoding/>
  2789 + <decimal_symbol/>
  2790 + <grouping_symbol/>
  2791 + <currency_symbol/>
  2792 + <storage_type/>
  2793 + </meta> </fields> <cluster_schema/>
  2794 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2795 + <xloc>338</xloc>
  2796 + <yloc>1008</yloc>
  2797 + <draw>Y</draw>
  2798 + </GUI>
  2799 + </step>
  2800 +
  2801 + <step>
  2802 + <name>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 3</name>
  2803 + <type>SelectValues</type>
  2804 + <description/>
  2805 + <distribute>Y</distribute>
  2806 + <custom_distribution/>
  2807 + <copies>1</copies>
  2808 + <partitioning>
  2809 + <method>none</method>
  2810 + <schema_name/>
  2811 + </partitioning>
  2812 + <fields> <select_unspecified>N</select_unspecified>
  2813 + <meta> <name>parade_mileage</name>
  2814 + <rename>parade_mileage</rename>
  2815 + <type>Number</type>
  2816 + <length>-2</length>
  2817 + <precision>-2</precision>
  2818 + <conversion_mask/>
  2819 + <date_format_lenient>false</date_format_lenient>
  2820 + <date_format_locale/>
  2821 + <date_format_timezone/>
  2822 + <lenient_string_to_number>false</lenient_string_to_number>
  2823 + <encoding/>
  2824 + <decimal_symbol/>
  2825 + <grouping_symbol/>
  2826 + <currency_symbol/>
  2827 + <storage_type/>
  2828 + </meta> <meta> <name>parade_time</name>
  2829 + <rename>parade_time</rename>
  2830 + <type>Integer</type>
  2831 + <length>-2</length>
  2832 + <precision>-2</precision>
  2833 + <conversion_mask/>
  2834 + <date_format_lenient>false</date_format_lenient>
  2835 + <date_format_locale/>
  2836 + <date_format_timezone/>
  2837 + <lenient_string_to_number>false</lenient_string_to_number>
  2838 + <encoding/>
  2839 + <decimal_symbol/>
  2840 + <grouping_symbol/>
  2841 + <currency_symbol/>
  2842 + <storage_type/>
  2843 + </meta> <meta> <name>sxx2</name>
  2844 + <rename>sxx2</rename>
  2845 + <type>Integer</type>
  2846 + <length>-2</length>
  2847 + <precision>-2</precision>
  2848 + <conversion_mask/>
  2849 + <date_format_lenient>false</date_format_lenient>
  2850 + <date_format_locale/>
  2851 + <date_format_timezone/>
  2852 + <lenient_string_to_number>false</lenient_string_to_number>
  2853 + <encoding/>
  2854 + <decimal_symbol/>
  2855 + <grouping_symbol/>
  2856 + <currency_symbol/>
  2857 + <storage_type/>
  2858 + </meta> </fields> <cluster_schema/>
  2859 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2860 + <xloc>847</xloc>
  2861 + <yloc>1003</yloc>
  2862 + <draw>Y</draw>
  2863 + </GUI>
  2864 + </step>
  2865 +
  2866 + <step>
  2867 + <name>&#x8ba1;&#x7b97;&#x73ed;&#x6b21;&#x7c7b;&#x578b;</name>
  2868 + <type>ValueMapper</type>
  2869 + <description/>
  2870 + <distribute>Y</distribute>
  2871 + <custom_distribution/>
  2872 + <copies>1</copies>
  2873 + <partitioning>
  2874 + <method>none</method>
  2875 + <schema_name/>
  2876 + </partitioning>
  2877 + <field_to_use>qdzname</field_to_use>
  2878 + <target_field>bctype</target_field>
  2879 + <non_match_default>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</non_match_default>
  2880 + <fields>
  2881 + <field>
  2882 + <source_value>&#x51fa;&#x573a;</source_value>
  2883 + <target_value>&#x51fa;&#x573a;</target_value>
  2884 + </field>
  2885 + <field>
  2886 + <source_value>&#x8fdb;&#x573a;</source_value>
  2887 + <target_value>&#x8fdb;&#x573a;</target_value>
  2888 + </field>
  2889 + </fields>
  2890 + <cluster_schema/>
  2891 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2892 + <xloc>1014</xloc>
  2893 + <yloc>401</yloc>
  2894 + <draw>Y</draw>
  2895 + </GUI>
  2896 + </step>
  2897 +
  2898 + <step>
  2899 + <name>&#x8bb0;&#x5f55;&#x5173;&#x8054; &#x28;&#x7b1b;&#x5361;&#x5c14;&#x8f93;&#x51fa;&#x29;</name>
  2900 + <type>JoinRows</type>
  2901 + <description/>
  2902 + <distribute>Y</distribute>
  2903 + <custom_distribution/>
  2904 + <copies>1</copies>
  2905 + <partitioning>
  2906 + <method>none</method>
  2907 + <schema_name/>
  2908 + </partitioning>
  2909 + <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
  2910 + <prefix>out</prefix>
  2911 + <cache_size>500</cache_size>
  2912 + <main/>
  2913 + <compare>
  2914 +<condition>
  2915 + <negated>N</negated>
  2916 + <leftvalue/>
  2917 + <function>&#x3d;</function>
  2918 + <rightvalue/>
  2919 + </condition>
  2920 + </compare>
  2921 + <cluster_schema/>
  2922 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2923 + <xloc>310</xloc>
  2924 + <yloc>133</yloc>
  2925 + <draw>Y</draw>
  2926 + </GUI>
  2927 + </step>
  2928 +
  2929 + <step>
  2930 + <name>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;&#xff08;&#x53d1;&#x8f66;&#x65f6;&#x95f4;&#x4e3a;&#x7a7a;&#xff09;</name>
  2931 + <type>FilterRows</type>
  2932 + <description/>
  2933 + <distribute>Y</distribute>
  2934 + <custom_distribution/>
  2935 + <copies>1</copies>
  2936 + <partitioning>
  2937 + <method>none</method>
  2938 + <schema_name/>
  2939 + </partitioning>
  2940 +<send_true_to/>
  2941 +<send_false_to/>
  2942 + <compare>
  2943 +<condition>
  2944 + <negated>N</negated>
  2945 + <leftvalue>sendtime</leftvalue>
  2946 + <function>IS NOT NULL</function>
  2947 + <rightvalue/>
  2948 + </condition>
  2949 + </compare>
  2950 + <cluster_schema/>
  2951 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2952 + <xloc>571</xloc>
  2953 + <yloc>44</yloc>
  2954 + <draw>Y</draw>
  2955 + </GUI>
  2956 + </step>
  2957 +
  2958 + <step>
  2959 + <name>&#x8fdb;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x8d77;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</name>
  2960 + <type>ScriptValueMod</type>
  2961 + <description/>
  2962 + <distribute>Y</distribute>
  2963 + <custom_distribution/>
  2964 + <copies>1</copies>
  2965 + <partitioning>
  2966 + <method>none</method>
  2967 + <schema_name/>
  2968 + </partitioning>
  2969 + <compatible>N</compatible>
  2970 + <optimizationLevel>9</optimizationLevel>
  2971 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  2972 + <jsScript_name>Script 1</jsScript_name>
  2973 + <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>
  2974 + </jsScript> </jsScripts> <fields> <field> <name>qdzname_calcu</name>
  2975 + <rename>qdzname_calcu</rename>
  2976 + <type>String</type>
  2977 + <length>-1</length>
  2978 + <precision>-1</precision>
  2979 + <replace>N</replace>
  2980 + </field> <field> <name>startZdtype_calcu</name>
  2981 + <rename>startZdtype_calcu</rename>
  2982 + <type>String</type>
  2983 + <length>-1</length>
  2984 + <precision>-1</precision>
  2985 + <replace>N</replace>
  2986 + </field> <field> <name>endZdtype_calcu</name>
  2987 + <rename>endZdtype_calcu</rename>
  2988 + <type>String</type>
  2989 + <length>-1</length>
  2990 + <precision>-1</precision>
  2991 + <replace>N</replace>
  2992 + </field> <field> <name>destory</name>
  2993 + <rename>destory</rename>
  2994 + <type>Integer</type>
  2995 + <length>-1</length>
  2996 + <precision>-1</precision>
  2997 + <replace>N</replace>
  2998 + </field> </fields> <cluster_schema/>
  2999 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3000 + <xloc>754</xloc>
  3001 + <yloc>610</yloc>
  3002 + <draw>Y</draw>
  3003 + </GUI>
  3004 + </step>
  3005 +
  3006 + <step>
  3007 + <name>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</name>
  3008 + <type>Dummy</type>
  3009 + <description/>
  3010 + <distribute>Y</distribute>
  3011 + <custom_distribution/>
  3012 + <copies>1</copies>
  3013 + <partitioning>
  3014 + <method>none</method>
  3015 + <schema_name/>
  3016 + </partitioning>
  3017 + <cluster_schema/>
  3018 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3019 + <xloc>997</xloc>
  3020 + <yloc>606</yloc>
  3021 + <draw>Y</draw>
  3022 + </GUI>
  3023 + </step>
  3024 +
  3025 + <step_error_handling>
  3026 + <error>
  3027 + <source_step>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail</source_step>
  3028 + <target_step/>
  3029 + <is_enabled>Y</is_enabled>
  3030 + <nr_valuename>c1</nr_valuename>
  3031 + <descriptions_valuename>c2</descriptions_valuename>
  3032 + <fields_valuename>c3</fields_valuename>
  3033 + <codes_valuename>c4</codes_valuename>
  3034 + <max_errors/>
  3035 + <max_pct_errors/>
  3036 + <min_pct_rows/>
  3037 + </error>
  3038 + </step_error_handling>
  3039 + <slave-step-copy-partition-distribution>
  3040 +</slave-step-copy-partition-distribution>
  3041 + <slave_transformation>N</slave_transformation>
  3042 +
  3043 +</transformation>
... ...
src/main/resources/datatools/ktrs/ttinfodetailDataInput2.ktr
1   -<?xml version="1.0" encoding="UTF-8"?>
2   -<transformation>
3   - <info>
4   - <name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x5bfc;&#x5165;2</name>
5   - <description>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;&#x5bfc;&#x5165;</description>
6   - <extended_description>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;</extended_description>
7   - <trans_version/>
8   - <trans_type>Normal</trans_type>
9   - <trans_status>0</trans_status>
10   - <directory>&#x2f;</directory>
11   - <parameters>
12   - </parameters>
13   - <log>
14   -<trans-log-table><connection/>
15   -<schema/>
16   -<table/>
17   -<size_limit_lines/>
18   -<interval/>
19   -<timeout_days/>
20   -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STATUS</id><enabled>Y</enabled><name>STATUS</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name><subject/></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name><subject/></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name><subject/></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name><subject/></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name><subject/></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name><subject/></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>STARTDATE</id><enabled>Y</enabled><name>STARTDATE</name></field><field><id>ENDDATE</id><enabled>Y</enabled><name>ENDDATE</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>DEPDATE</id><enabled>Y</enabled><name>DEPDATE</name></field><field><id>REPLAYDATE</id><enabled>Y</enabled><name>REPLAYDATE</name></field><field><id>LOG_FIELD</id><enabled>Y</enabled><name>LOG_FIELD</name></field><field><id>EXECUTING_SERVER</id><enabled>N</enabled><name>EXECUTING_SERVER</name></field><field><id>EXECUTING_USER</id><enabled>N</enabled><name>EXECUTING_USER</name></field><field><id>CLIENT</id><enabled>N</enabled><name>CLIENT</name></field></trans-log-table>
21   -<perf-log-table><connection/>
22   -<schema/>
23   -<table/>
24   -<interval/>
25   -<timeout_days/>
26   -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>SEQ_NR</id><enabled>Y</enabled><name>SEQ_NR</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>INPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>INPUT_BUFFER_ROWS</name></field><field><id>OUTPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>OUTPUT_BUFFER_ROWS</name></field></perf-log-table>
27   -<channel-log-table><connection/>
28   -<schema/>
29   -<table/>
30   -<timeout_days/>
31   -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>LOGGING_OBJECT_TYPE</id><enabled>Y</enabled><name>LOGGING_OBJECT_TYPE</name></field><field><id>OBJECT_NAME</id><enabled>Y</enabled><name>OBJECT_NAME</name></field><field><id>OBJECT_COPY</id><enabled>Y</enabled><name>OBJECT_COPY</name></field><field><id>REPOSITORY_DIRECTORY</id><enabled>Y</enabled><name>REPOSITORY_DIRECTORY</name></field><field><id>FILENAME</id><enabled>Y</enabled><name>FILENAME</name></field><field><id>OBJECT_ID</id><enabled>Y</enabled><name>OBJECT_ID</name></field><field><id>OBJECT_REVISION</id><enabled>Y</enabled><name>OBJECT_REVISION</name></field><field><id>PARENT_CHANNEL_ID</id><enabled>Y</enabled><name>PARENT_CHANNEL_ID</name></field><field><id>ROOT_CHANNEL_ID</id><enabled>Y</enabled><name>ROOT_CHANNEL_ID</name></field></channel-log-table>
32   -<step-log-table><connection/>
33   -<schema/>
34   -<table/>
35   -<timeout_days/>
36   -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>LOG_FIELD</id><enabled>N</enabled><name>LOG_FIELD</name></field></step-log-table>
37   -<metrics-log-table><connection/>
38   -<schema/>
39   -<table/>
40   -<timeout_days/>
41   -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>METRICS_DATE</id><enabled>Y</enabled><name>METRICS_DATE</name></field><field><id>METRICS_CODE</id><enabled>Y</enabled><name>METRICS_CODE</name></field><field><id>METRICS_DESCRIPTION</id><enabled>Y</enabled><name>METRICS_DESCRIPTION</name></field><field><id>METRICS_SUBJECT</id><enabled>Y</enabled><name>METRICS_SUBJECT</name></field><field><id>METRICS_TYPE</id><enabled>Y</enabled><name>METRICS_TYPE</name></field><field><id>METRICS_VALUE</id><enabled>Y</enabled><name>METRICS_VALUE</name></field></metrics-log-table>
42   - </log>
43   - <maxdate>
44   - <connection/>
45   - <table/>
46   - <field/>
47   - <offset>0.0</offset>
48   - <maxdiff>0.0</maxdiff>
49   - </maxdate>
50   - <size_rowset>10000</size_rowset>
51   - <sleep_time_empty>50</sleep_time_empty>
52   - <sleep_time_full>50</sleep_time_full>
53   - <unique_connections>N</unique_connections>
54   - <feedback_shown>Y</feedback_shown>
55   - <feedback_size>50000</feedback_size>
56   - <using_thread_priorities>Y</using_thread_priorities>
57   - <shared_objects_file/>
58   - <capture_step_performance>N</capture_step_performance>
59   - <step_performance_capturing_delay>1000</step_performance_capturing_delay>
60   - <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit>
61   - <dependencies>
62   - </dependencies>
63   - <partitionschemas>
64   - </partitionschemas>
65   - <slaveservers>
66   - </slaveservers>
67   - <clusterschemas>
68   - </clusterschemas>
69   - <created_user>-</created_user>
70   - <created_date>2016&#x2f;06&#x2f;30 12&#x3a;21&#x3a;57.536</created_date>
71   - <modified_user>-</modified_user>
72   - <modified_date>2016&#x2f;06&#x2f;30 12&#x3a;21&#x3a;57.536</modified_date>
73   - <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA&#x3d;</key_for_session_key>
74   - <is_key_private>N</is_key_private>
75   - </info>
76   - <notepads>
77   - <notepad>
78   - <note>&#x5b57;&#x5178;&#x8868;&#x5bf9;&#x5e94;&#xff08;&#x4ee5;&#x540e;&#x76f4;&#x63a5;&#x67e5;&#x627e;&#x8868; bsth_c_sys_dictionary&#xff09;&#xa;&#x7c7b;&#x578b; &#x4ee3;&#x7801; &#x540d;&#x79f0;&#xa;LineTrend 0 &#x4e0a;&#x884c;&#xa;LineTrend 1 &#x4e0b;&#x884c;&#xa;ScheduleType normal &#x6b63;&#x5e38;&#x73ed;&#x6b21;&#xa;ScheduleType out &#x51fa;&#x573a;&#xa;ScheduleType in &#x8fdb;&#x573a;&#xa;ScheduleType temp &#x4e34;&#x52a0;&#xa;ScheduleType region &#x533a;&#x95f4;&#xa;ScheduleType venting &#x653e;&#x7a7a;&#xa;ScheduleType major &#x653e;&#x5927;&#x7ad9;</note>
79   - <xloc>606</xloc>
80   - <yloc>129</yloc>
81   - <width>332</width>
82   - <heigth>186</heigth>
83   - <fontname>YaHei Consolas Hybrid</fontname>
84   - <fontsize>12</fontsize>
85   - <fontbold>N</fontbold>
86   - <fontitalic>N</fontitalic>
87   - <fontcolorred>0</fontcolorred>
88   - <fontcolorgreen>0</fontcolorgreen>
89   - <fontcolorblue>0</fontcolorblue>
90   - <backgroundcolorred>255</backgroundcolorred>
91   - <backgroundcolorgreen>205</backgroundcolorgreen>
92   - <backgroundcolorblue>112</backgroundcolorblue>
93   - <bordercolorred>100</bordercolorred>
94   - <bordercolorgreen>100</bordercolorgreen>
95   - <bordercolorblue>100</bordercolorblue>
96   - <drawshadow>Y</drawshadow>
97   - </notepad>
98   - <notepad>
99   - <note>&#x56e0;&#x4e3a;&#x65f6;&#x523b;&#x8868;&#x8f93;&#x5165;&#x683c;&#x5f0f;&#x4e0d;&#x786e;&#x5b9a;&#x6027;&#xff0c;&#x4e3b;&#x8981;&#x56e0;&#x4e3a;&#x8868;&#x7ed3;&#x6784;&#x662f;&#x53cd;&#x8303;&#x5f0f;&#x5316;&#x7684;&#xff0c;&#xa;&#x6240;&#x4ee5;&#x9700;&#x8981;&#x5916;&#x90e8;&#x52a8;&#x6001;&#x6307;&#x5b9a;&#x613f;&#x6570;&#x636e;&#xff0c;&#x5934;&#x4e09;&#x4e2a;step&#x52a8;&#x6001;&#x6307;&#x5b9a;&#x613f;&#x6570;&#x636e;&#xa;&#xa;</note>
100   - <xloc>79</xloc>
101   - <yloc>206</yloc>
102   - <width>346</width>
103   - <heigth>74</heigth>
104   - <fontname>YaHei Consolas Hybrid</fontname>
105   - <fontsize>12</fontsize>
106   - <fontbold>N</fontbold>
107   - <fontitalic>N</fontitalic>
108   - <fontcolorred>0</fontcolorred>
109   - <fontcolorgreen>0</fontcolorgreen>
110   - <fontcolorblue>0</fontcolorblue>
111   - <backgroundcolorred>255</backgroundcolorred>
112   - <backgroundcolorgreen>205</backgroundcolorgreen>
113   - <backgroundcolorblue>112</backgroundcolorblue>
114   - <bordercolorred>100</bordercolorred>
115   - <bordercolorgreen>100</bordercolorgreen>
116   - <bordercolorblue>100</bordercolorblue>
117   - <drawshadow>Y</drawshadow>
118   - </notepad>
119   - <notepad>
120   - <note>&#x8fd9;&#x91cc;&#x6709;&#x4e9b;&#x95ee;&#x9898;&#xa;&#x5728;window2012&#x7684;&#x73af;&#x5883;&#x4e0b;&#xff0c;&#xa;MySql&#x6570;&#x636e;&#x5e93;&#x67e5;&#x8be2;&#x4e2d;&#x5982;&#x679c;&#x8fd4;&#x56de;&#x4e2d;&#x6587;&#x5185;&#x5bb9;&#x7684;&#x5b57;&#x6bb5;&#xff0c;&#x8fd9;&#x4e2a;&#x5185;&#x5bb9;&#x4e71;&#x7801;&#xa;&#x89e3;&#x51b3;&#x529e;&#x6cd5;&#xff0c;&#x5c31;&#x662f;&#x6570;&#x636e;&#x5e93;&#x67e5;&#x8be2;&#x5168;&#x90e8;&#x7f13;&#x5b58;&#xff0c;&#x5c31;&#x4e0d;&#x4e71;&#x7801;&#xa;linux&#x73af;&#x5883;&#x4e0b;&#x6ca1;&#x95ee;&#x9898;</note>
121   - <xloc>721</xloc>
122   - <yloc>762</yloc>
123   - <width>333</width>
124   - <heigth>90</heigth>
125   - <fontname>YaHei Consolas Hybrid</fontname>
126   - <fontsize>12</fontsize>
127   - <fontbold>N</fontbold>
128   - <fontitalic>N</fontitalic>
129   - <fontcolorred>0</fontcolorred>
130   - <fontcolorgreen>0</fontcolorgreen>
131   - <fontcolorblue>0</fontcolorblue>
132   - <backgroundcolorred>255</backgroundcolorred>
133   - <backgroundcolorgreen>205</backgroundcolorgreen>
134   - <backgroundcolorblue>112</backgroundcolorblue>
135   - <bordercolorred>100</bordercolorred>
136   - <bordercolorgreen>100</bordercolorgreen>
137   - <bordercolorblue>100</bordercolorblue>
138   - <drawshadow>Y</drawshadow>
139   - </notepad>
140   - <notepad>
141   - <note>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#xff0c;&#x65b9;&#x5411;&#x6709;&#x65f6;&#x786e;&#x5b9a;&#x4e0d;&#x51c6;&#xff0c;&#xa;&#x7a7a;&#x7684;&#x60c5;&#x51b5;&#x4e0b;&#x8bbe;&#x5b9a;&#x4e3a;0&#xff08;&#x4e0a;&#x884c;&#xff09;</note>
142   - <xloc>104</xloc>
143   - <yloc>939</yloc>
144   - <width>178</width>
145   - <heigth>42</heigth>
146   - <fontname>YaHei Consolas Hybrid</fontname>
147   - <fontsize>12</fontsize>
148   - <fontbold>N</fontbold>
149   - <fontitalic>N</fontitalic>
150   - <fontcolorred>0</fontcolorred>
151   - <fontcolorgreen>0</fontcolorgreen>
152   - <fontcolorblue>0</fontcolorblue>
153   - <backgroundcolorred>255</backgroundcolorred>
154   - <backgroundcolorgreen>205</backgroundcolorgreen>
155   - <backgroundcolorblue>112</backgroundcolorblue>
156   - <bordercolorred>100</bordercolorred>
157   - <bordercolorgreen>100</bordercolorgreen>
158   - <bordercolorblue>100</bordercolorblue>
159   - <drawshadow>Y</drawshadow>
160   - </notepad>
161   - <notepad>
162   - <note>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#xff0c;&#x65b9;&#x5411;&#x6709;&#x65f6;&#x786e;&#x5b9a;&#x4e0d;&#x51c6;&#xff0c;&#xa;&#x7a7a;&#x7684;&#x60c5;&#x51b5;&#x4e0b;&#x8bbe;&#x5b9a;&#x4e3a;0&#xff08;&#x4e0a;&#x884c;&#xff09;</note>
163   - <xloc>578</xloc>
164   - <yloc>1084</yloc>
165   - <width>178</width>
166   - <heigth>42</heigth>
167   - <fontname>YaHei Consolas Hybrid</fontname>
168   - <fontsize>12</fontsize>
169   - <fontbold>N</fontbold>
170   - <fontitalic>N</fontitalic>
171   - <fontcolorred>0</fontcolorred>
172   - <fontcolorgreen>0</fontcolorgreen>
173   - <fontcolorblue>0</fontcolorblue>
174   - <backgroundcolorred>255</backgroundcolorred>
175   - <backgroundcolorgreen>205</backgroundcolorgreen>
176   - <backgroundcolorblue>112</backgroundcolorblue>
177   - <bordercolorred>100</bordercolorred>
178   - <bordercolorgreen>100</bordercolorgreen>
179   - <bordercolorblue>100</bordercolorblue>
180   - <drawshadow>Y</drawshadow>
181   - </notepad>
182   - </notepads>
183   - <connection>
184   - <name>192.168.168.1_jwgl_dw</name>
185   - <server>192.168.168.1</server>
186   - <type>ORACLE</type>
187   - <access>Native</access>
188   - <database>orcl</database>
189   - <port>1521</port>
190   - <username>jwgl_dw</username>
191   - <password>Encrypted 2be98afc86aa7f2e4cb13b977d2adabcd</password>
192   - <servername/>
193   - <data_tablespace/>
194   - <index_tablespace/>
195   - <attributes>
196   - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
197   - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
198   - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
199   - <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
200   - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
201   - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
202   - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
203   - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
204   - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
205   - </attributes>
206   - </connection>
207   - <connection>
208   - <name>bus_control_variable</name>
209   - <server>&#x24;&#x7b;v_db_ip&#x7d;</server>
210   - <type>MYSQL</type>
211   - <access>Native</access>
212   - <database>&#x24;&#x7b;v_db_dname&#x7d;</database>
213   - <port>3306</port>
214   - <username>&#x24;&#x7b;v_db_uname&#x7d;</username>
215   - <password>&#x24;&#x7b;v_db_pwd&#x7d;</password>
216   - <servername/>
217   - <data_tablespace/>
218   - <index_tablespace/>
219   - <attributes>
220   - <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
221   - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
222   - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
223   - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
224   - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
225   - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
226   - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
227   - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
228   - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
229   - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
230   - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
231   - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
232   - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
233   - </attributes>
234   - </connection>
235   - <connection>
236   - <name>bus_control_&#x516c;&#x53f8;_201</name>
237   - <server>localhost</server>
238   - <type>MYSQL</type>
239   - <access>Native</access>
240   - <database>control</database>
241   - <port>3306</port>
242   - <username>root</username>
243   - <password>Encrypted </password>
244   - <servername/>
245   - <data_tablespace/>
246   - <index_tablespace/>
247   - <attributes>
248   - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
249   - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
250   - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
251   - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
252   - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
253   - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
254   - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
255   - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
256   - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
257   - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
258   - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
259   - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
260   - </attributes>
261   - </connection>
262   - <connection>
263   - <name>bus_control_&#x672c;&#x673a;</name>
264   - <server>localhost</server>
265   - <type>MYSQL</type>
266   - <access>Native</access>
267   - <database>control</database>
268   - <port>3306</port>
269   - <username>root</username>
270   - <password>Encrypted </password>
271   - <servername/>
272   - <data_tablespace/>
273   - <index_tablespace/>
274   - <attributes>
275   - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
276   - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
277   - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
278   - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
279   - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
280   - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
281   - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
282   - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
283   - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
284   - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
285   - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
286   - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
287   - </attributes>
288   - </connection>
289   - <connection>
290   - <name>xlab_mysql_youle</name>
291   - <server>101.231.124.8</server>
292   - <type>MYSQL</type>
293   - <access>Native</access>
294   - <database>xlab_youle</database>
295   - <port>45687</port>
296   - <username>xlab-youle</username>
297   - <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password>
298   - <servername/>
299   - <data_tablespace/>
300   - <index_tablespace/>
301   - <attributes>
302   - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
303   - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
304   - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
305   - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
306   - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
307   - <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute>
308   - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
309   - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
310   - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
311   - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
312   - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
313   - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
314   - </attributes>
315   - </connection>
316   - <connection>
317   - <name>xlab_mysql_youle&#xff08;&#x672c;&#x673a;&#xff09;</name>
318   - <server>localhost</server>
319   - <type>MYSQL</type>
320   - <access>Native</access>
321   - <database>xlab_youle</database>
322   - <port>3306</port>
323   - <username>root</username>
324   - <password>Encrypted </password>
325   - <servername/>
326   - <data_tablespace/>
327   - <index_tablespace/>
328   - <attributes>
329   - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
330   - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
331   - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
332   - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
333   - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
334   - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
335   - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
336   - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
337   - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
338   - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
339   - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
340   - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
341   - </attributes>
342   - </connection>
343   - <connection>
344   - <name>xlab_youle</name>
345   - <server/>
346   - <type>MYSQL</type>
347   - <access>JNDI</access>
348   - <database>xlab_youle</database>
349   - <port>1521</port>
350   - <username/>
351   - <password>Encrypted </password>
352   - <servername/>
353   - <data_tablespace/>
354   - <index_tablespace/>
355   - <attributes>
356   - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
357   - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
358   - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
359   - <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
360   - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
361   - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
362   - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
363   - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
364   - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
365   - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
366   - </attributes>
367   - </connection>
368   - <order>
369   - <hop> <from>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</from><to>&#x73ed;&#x6b21;&#x6570;&#x636e;&#x8303;&#x5f0f;&#x5316;</to><enabled>Y</enabled> </hop>
370   - <hop> <from>&#x6dfb;&#x52a0;&#x53d1;&#x8f66;&#x987a;&#x5e8f;&#x53f7;</from><to>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;&#xff08;&#x53d1;&#x8f66;&#x65f6;&#x95f4;&#x4e3a;&#x7a7a;&#xff09;</to><enabled>Y</enabled> </hop>
371   - <hop> <from>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;&#xff08;&#x53d1;&#x8f66;&#x65f6;&#x95f4;&#x4e3a;&#x7a7a;&#xff09;</from><to>&#x6dfb;&#x52a0;&#x5bf9;&#x5e94;&#x73ed;&#x6b21;&#x6570;</to><enabled>Y</enabled> </hop>
372   - <hop> <from>&#x6dfb;&#x52a0;&#x5bf9;&#x5e94;&#x73ed;&#x6b21;&#x6570;</from><to>&#x5904;&#x7406;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
373   - <hop> <from>&#x5904;&#x7406;&#x6570;&#x636e;</from><to>&#x5206;&#x7ec4;&#x5404;&#x4e2a;&#x8def;&#x724c;&#x7684;&#x7ad9;</to><enabled>Y</enabled> </hop>
374   - <hop> <from>&#x67e5;&#x627e;&#x65f6;&#x523b;&#x8868;&#x57fa;&#x7840;&#x4fe1;&#x606f;&#x5173;&#x8054;</from><to>&#x67e5;&#x627e;&#x8def;&#x724c;&#x5173;&#x8054;</to><enabled>Y</enabled> </hop>
375   - <hop> <from>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x5173;&#x8054;</from><to>&#x67e5;&#x627e;&#x65f6;&#x523b;&#x8868;&#x57fa;&#x7840;&#x4fe1;&#x606f;&#x5173;&#x8054;</to><enabled>Y</enabled> </hop>
376   - <hop> <from>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178;</from><to>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178;</to><enabled>Y</enabled> </hop>
377   - <hop> <from>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 2</from><to>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 2</to><enabled>Y</enabled> </hop>
378   - <hop> <from>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 3</from><to>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 3</to><enabled>Y</enabled> </hop>
379   - <hop> <from>&#x5339;&#x914d;&#x4e0a;&#x4e0b;&#x884c;&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</from><to>&#x7c7b;&#x578b;&#x4fee;&#x6b63;</to><enabled>Y</enabled> </hop>
380   - <hop> <from>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;1</from><to>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</to><enabled>Y</enabled> </hop>
381   - <hop> <from>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;1</from><to>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
382   - <hop> <from>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</from><to>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
383   - <hop> <from>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</from><to>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
384   - <hop> <from>&#x67e5;&#x627e;&#x6240;&#x6709;&#x7ebf;&#x8def;&#x4e0a;&#x4e0b;&#x884c;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</from><to>&#x5339;&#x914d;&#x4e0a;&#x4e0b;&#x884c;&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>
385   - <hop> <from>&#x67e5;&#x627e;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;</from><to>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178;</to><enabled>Y</enabled> </hop>
386   - <hop> <from>&#x67e5;&#x627e;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</from><to>&#x67e5;&#x627e;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;</to><enabled>Y</enabled> </hop>
387   - <hop> <from>&#x6b63;&#x5e38;&#x73ed;&#x6b21;_&#x5904;&#x7406;&#x6570;&#x636e;</from><to>&#x67e5;&#x627e;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</to><enabled>Y</enabled> </hop>
388   - <hop> <from>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</from><to>&#x6b63;&#x5e38;&#x73ed;&#x6b21;_&#x5904;&#x7406;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
389   - <hop> <from>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178;</from><to>&#x67e5;&#x627e;&#x6240;&#x6709;&#x7ebf;&#x8def;&#x4e0a;&#x4e0b;&#x884c;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>
390   - <hop> <from>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 2</from><to>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x51fa;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>
391   - <hop> <from>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 3</from><to>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x8fdb;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>
392   - <hop> <from>&#x67e5;&#x627e;&#x8def;&#x724c;&#x5173;&#x8054;</from><to>&#x8ba1;&#x7b97;&#x73ed;&#x6b21;&#x7c7b;&#x578b;</to><enabled>Y</enabled> </hop>
393   - <hop> <from>&#x8ba1;&#x7b97;&#x73ed;&#x6b21;&#x7c7b;&#x578b;</from><to>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;1</to><enabled>Y</enabled> </hop>
394   - <hop> <from>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</from><to>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;1</to><enabled>Y</enabled> </hop>
395   - <hop> <from>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;1</from><to>&#x51fa;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x7ec8;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</to><enabled>Y</enabled> </hop>
396   - <hop> <from>&#x51fa;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x7ec8;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</from><to>&#x67e5;&#x627e;&#x51fa;&#x573a;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</to><enabled>Y</enabled> </hop>
397   - <hop> <from>&#x67e5;&#x627e;&#x51fa;&#x573a;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</from><to>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 2</to><enabled>Y</enabled> </hop>
398   - <hop> <from>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</from><to>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;2</to><enabled>Y</enabled> </hop>
399   - <hop> <from>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;2</from><to>&#x8fdb;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x8d77;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</to><enabled>Y</enabled> </hop>
400   - <hop> <from>&#x8fdb;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x8d77;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</from><to>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ebf;&#x8def;&#x65b9;&#x5411;</to><enabled>Y</enabled> </hop>
401   - <hop> <from>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ebf;&#x8def;&#x65b9;&#x5411;</from><to>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ec8;&#x70b9;&#x7ad9;&#xff0c;&#x5e76;&#x4f5c;&#x4e3a;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x7684;&#x8d77;&#x70b9;&#x7ad9;</to><enabled>Y</enabled> </hop>
402   - <hop> <from>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</from><to>&#x6dfb;&#x52a0;&#x53d1;&#x8f66;&#x987a;&#x5e8f;&#x53f7;</to><enabled>Y</enabled> </hop>
403   - <hop> <from>&#x5206;&#x7ec4;&#x5404;&#x4e2a;&#x8def;&#x724c;&#x7684;&#x7ad9;</from><to>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x5173;&#x8054;</to><enabled>Y</enabled> </hop>
404   - <hop> <from>&#x589e;&#x52a0;&#x65f6;&#x523b;&#x8868;&#x540d;&#x5b57;&#xff0c;&#x7ebf;&#x8def;&#x540d;&#x5b57;&#xff0c;&#x505c;&#x8f66;&#x573a;&#x540d;&#x5b57;</from><to>&#x8bb0;&#x5f55;&#x5173;&#x8054; &#x28;&#x7b1b;&#x5361;&#x5c14;&#x8f93;&#x51fa;&#x29;</to><enabled>Y</enabled> </hop>
405   - <hop> <from>&#x73ed;&#x6b21;&#x6570;&#x636e;&#x8303;&#x5f0f;&#x5316;</from><to>&#x8bb0;&#x5f55;&#x5173;&#x8054; &#x28;&#x7b1b;&#x5361;&#x5c14;&#x8f93;&#x51fa;&#x29;</to><enabled>Y</enabled> </hop>
406   - <hop> <from>&#x8bb0;&#x5f55;&#x5173;&#x8054; &#x28;&#x7b1b;&#x5361;&#x5c14;&#x8f93;&#x51fa;&#x29;</from><to>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</to><enabled>Y</enabled> </hop>
407   - <hop> <from>&#x7c7b;&#x578b;&#x4fee;&#x6b63;</from><to>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail</to><enabled>Y</enabled> </hop>
408   - <hop> <from>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ec8;&#x70b9;&#x7ad9;&#xff0c;&#x5e76;&#x4f5c;&#x4e3a;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x7684;&#x8d77;&#x70b9;&#x7ad9;</from><to>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</to><enabled>Y</enabled> </hop>
409   - <hop> <from>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</from><to>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 3</to><enabled>Y</enabled> </hop>
410   - <hop> <from>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x51fa;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</from><to>&#x5339;&#x914d;&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>
411   - <hop> <from>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x8fdb;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</from><to>&#x5339;&#x914d;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>
412   - <hop> <from>&#x5339;&#x914d;&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</from><to>&#x4e0a;&#x4e0b;&#x884c;NULL&#x5224;&#x5b9a;</to><enabled>Y</enabled> </hop>
413   - <hop> <from>&#x4e0a;&#x4e0b;&#x884c;NULL&#x5224;&#x5b9a;</from><to>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 2</to><enabled>Y</enabled> </hop>
414   - <hop> <from>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 2</from><to>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail 2</to><enabled>Y</enabled> </hop>
415   - <hop> <from>&#x5339;&#x914d;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</from><to>&#x4e0a;&#x4e0b;&#x884c;&#x5224;&#x5b9a; 2</to><enabled>Y</enabled> </hop>
416   - <hop> <from>&#x4e0a;&#x4e0b;&#x884c;&#x5224;&#x5b9a; 2</from><to>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 3</to><enabled>Y</enabled> </hop>
417   - <hop> <from>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 3</from><to>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail 3</to><enabled>Y</enabled> </hop>
418   - </order>
419   - <step>
420   - <name>&#x4e0a;&#x4e0b;&#x884c;NULL&#x5224;&#x5b9a;</name>
421   - <type>IfNull</type>
422   - <description/>
423   - <distribute>Y</distribute>
424   - <custom_distribution/>
425   - <copies>1</copies>
426   - <partitioning>
427   - <method>none</method>
428   - <schema_name/>
429   - </partitioning>
430   - <replaceAllByValue/>
431   - <replaceAllMask/>
432   - <selectFields>Y</selectFields>
433   - <selectValuesType>N</selectValuesType>
434   - <setEmptyStringAll>N</setEmptyStringAll>
435   - <valuetypes>
436   - </valuetypes>
437   - <fields>
438   - <field>
439   - <name>sxx</name>
440   - <value>0</value>
441   - <mask/>
442   - <set_empty_string>N</set_empty_string>
443   - </field>
444   - </fields>
445   - <cluster_schema/>
446   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
447   - <xloc>335</xloc>
448   - <yloc>938</yloc>
449   - <draw>Y</draw>
450   - </GUI>
451   - </step>
452   -
453   - <step>
454   - <name>&#x4e0a;&#x4e0b;&#x884c;&#x5224;&#x5b9a; 2</name>
455   - <type>IfNull</type>
456   - <description/>
457   - <distribute>Y</distribute>
458   - <custom_distribution/>
459   - <copies>1</copies>
460   - <partitioning>
461   - <method>none</method>
462   - <schema_name/>
463   - </partitioning>
464   - <replaceAllByValue/>
465   - <replaceAllMask/>
466   - <selectFields>Y</selectFields>
467   - <selectValuesType>N</selectValuesType>
468   - <setEmptyStringAll>N</setEmptyStringAll>
469   - <valuetypes>
470   - </valuetypes>
471   - <fields>
472   - <field>
473   - <name>sxx2</name>
474   - <value>0</value>
475   - <mask/>
476   - <set_empty_string>N</set_empty_string>
477   - </field>
478   - </fields>
479   - <cluster_schema/>
480   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
481   - <xloc>804</xloc>
482   - <yloc>1081</yloc>
483   - <draw>Y</draw>
484   - </GUI>
485   - </step>
486   -
487   - <step>
488   - <name>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178;</name>
489   - <type>ValueMapper</type>
490   - <description/>
491   - <distribute>Y</distribute>
492   - <custom_distribution/>
493   - <copies>1</copies>
494   - <partitioning>
495   - <method>none</method>
496   - <schema_name/>
497   - </partitioning>
498   - <field_to_use>sxx</field_to_use>
499   - <target_field>sxx_desc</target_field>
500   - <non_match_default/>
501   - <fields>
502   - <field>
503   - <source_value>0</source_value>
504   - <target_value>&#x4e0a;&#x884c;</target_value>
505   - </field>
506   - <field>
507   - <source_value>1</source_value>
508   - <target_value>&#x4e0b;&#x884c;</target_value>
509   - </field>
510   - </fields>
511   - <cluster_schema/>
512   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
513   - <xloc>147</xloc>
514   - <yloc>403</yloc>
515   - <draw>Y</draw>
516   - </GUI>
517   - </step>
518   -
519   - <step>
520   - <name>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 2</name>
521   - <type>ValueMapper</type>
522   - <description/>
523   - <distribute>Y</distribute>
524   - <custom_distribution/>
525   - <copies>1</copies>
526   - <partitioning>
527   - <method>none</method>
528   - <schema_name/>
529   - </partitioning>
530   - <field_to_use>sxx</field_to_use>
531   - <target_field>sxx_desc</target_field>
532   - <non_match_default/>
533   - <fields>
534   - <field>
535   - <source_value>0</source_value>
536   - <target_value>&#x4e0a;&#x884c;</target_value>
537   - </field>
538   - <field>
539   - <source_value>1</source_value>
540   - <target_value>&#x4e0b;&#x884c;</target_value>
541   - </field>
542   - </fields>
543   - <cluster_schema/>
544   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
545   - <xloc>331</xloc>
546   - <yloc>598</yloc>
547   - <draw>Y</draw>
548   - </GUI>
549   - </step>
550   -
551   - <step>
552   - <name>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 3</name>
553   - <type>ValueMapper</type>
554   - <description/>
555   - <distribute>Y</distribute>
556   - <custom_distribution/>
557   - <copies>1</copies>
558   - <partitioning>
559   - <method>none</method>
560   - <schema_name/>
561   - </partitioning>
562   - <field_to_use>sxx</field_to_use>
563   - <target_field>sxx_desc</target_field>
564   - <non_match_default/>
565   - <fields>
566   - <field>
567   - <source_value>0</source_value>
568   - <target_value>&#x4e0a;&#x884c;</target_value>
569   - </field>
570   - <field>
571   - <source_value>1</source_value>
572   - <target_value>&#x4e0b;&#x884c;</target_value>
573   - </field>
574   - </fields>
575   - <cluster_schema/>
576   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
577   - <xloc>553</xloc>
578   - <yloc>859</yloc>
579   - <draw>Y</draw>
580   - </GUI>
581   - </step>
582   -
583   - <step>
584   - <name>&#x51fa;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x7ec8;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</name>
585   - <type>ScriptValueMod</type>
586   - <description/>
587   - <distribute>Y</distribute>
588   - <custom_distribution/>
589   - <copies>1</copies>
590   - <partitioning>
591   - <method>none</method>
592   - <schema_name/>
593   - </partitioning>
594   - <compatible>N</compatible>
595   - <optimizationLevel>9</optimizationLevel>
596   - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
597   - <jsScript_name>Script 1</jsScript_name>
598   - <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;&#x2f;&#x2f; &#x6dfb;&#x52a0;&#x7ad9;&#x70b9;&#x6807;&#x8bc6;&#xa;var cc_groups &#x3d; qdzgroups.split&#x28;&#x22;,&#x22;&#x29;&#x3b; &#x2f;&#x2f; &#x6240;&#x6709;&#x73ed;&#x6b21;&#x8d77;&#x70b9;&#x7ad9;&#x6570;&#x7ec4;&#xa;var zdzname &#x3d; cc_groups&#x5b;gno&#x5d;&#x3b; &#x2f;&#x2f; &#x51fa;&#x573a;&#x73ed;&#x6b21;&#x7684;&#x7ec8;&#x70b9;&#x7ad9;&#x662f;&#x4e0b;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x8d77;&#x59cb;&#x7ad9;&#xa;var endZdtype &#x3d; &#x27;B&#x27;&#x3b;&#xa;&#x2f;&#x2f; var endZdtype &#x3d; &#x27;E&#x27;&#x3b;&#xa;&#xa;var destory &#x3d; 0&#x3b; &#x2f;&#x2f; &#x672a;&#x64a4;&#x9500;flag</jsScript_script>
599   - </jsScript> </jsScripts> <fields> <field> <name>zdzname</name>
600   - <rename>zdzname</rename>
601   - <type>String</type>
602   - <length>-1</length>
603   - <precision>-1</precision>
604   - <replace>N</replace>
605   - </field> <field> <name>endZdtype</name>
606   - <rename>endZdtype</rename>
607   - <type>String</type>
608   - <length>-1</length>
609   - <precision>-1</precision>
610   - <replace>N</replace>
611   - </field> <field> <name>destory</name>
612   - <rename>destory</rename>
613   - <type>Integer</type>
614   - <length>-1</length>
615   - <precision>-1</precision>
616   - <replace>N</replace>
617   - </field> </fields> <cluster_schema/>
618   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
619   - <xloc>575</xloc>
620   - <yloc>502</yloc>
621   - <draw>Y</draw>
622   - </GUI>
623   - </step>
624   -
625   - <step>
626   - <name>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</name>
627   - <type>Dummy</type>
628   - <description/>
629   - <distribute>Y</distribute>
630   - <custom_distribution/>
631   - <copies>1</copies>
632   - <partitioning>
633   - <method>none</method>
634   - <schema_name/>
635   - </partitioning>
636   - <cluster_schema/>
637   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
638   - <xloc>869</xloc>
639   - <yloc>504</yloc>
640   - <draw>Y</draw>
641   - </GUI>
642   - </step>
643   -
644   - <step>
645   - <name>&#x5206;&#x7ec4;&#x5404;&#x4e2a;&#x8def;&#x724c;&#x7684;&#x7ad9;</name>
646   - <type>GroupBy</type>
647   - <description/>
648   - <distribute>Y</distribute>
649   - <custom_distribution/>
650   - <copies>1</copies>
651   - <partitioning>
652   - <method>none</method>
653   - <schema_name/>
654   - </partitioning>
655   - <all_rows>Y</all_rows>
656   - <ignore_aggregate>N</ignore_aggregate>
657   - <field_ignore/>
658   - <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
659   - <prefix>grp</prefix>
660   - <add_linenr>Y</add_linenr>
661   - <linenr_fieldname>gno</linenr_fieldname>
662   - <give_back_row>N</give_back_row>
663   - <group>
664   - <field>
665   - <name>lp</name>
666   - </field>
667   - </group>
668   - <fields>
669   - <field>
670   - <aggregate>qdzgroups</aggregate>
671   - <subject>qdzname</subject>
672   - <type>CONCAT_STRING</type>
673   - <valuefield>,</valuefield>
674   - </field>
675   - </fields>
676   - <cluster_schema/>
677   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
678   - <xloc>892</xloc>
679   - <yloc>44</yloc>
680   - <draw>Y</draw>
681   - </GUI>
682   - </step>
683   -
684   - <step>
685   - <name>&#x5339;&#x914d;&#x4e0a;&#x4e0b;&#x884c;&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
686   - <type>ScriptValueMod</type>
687   - <description/>
688   - <distribute>Y</distribute>
689   - <custom_distribution/>
690   - <copies>1</copies>
691   - <partitioning>
692   - <method>none</method>
693   - <schema_name/>
694   - </partitioning>
695   - <compatible>N</compatible>
696   - <optimizationLevel>9</optimizationLevel>
697   - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
698   - <jsScript_name>Script 1</jsScript_name>
699   - <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var jhlc&#x3b; &#x2f;&#x2f; &#x8ba1;&#x5212;&#x91cc;&#x7a0b;&#xa;var bcsj&#x3b; &#x2f;&#x2f; &#x73ed;&#x6b21;&#x65f6;&#x95f4;&#xa;&#xa;&#x2f;&#x2f; &#x65f6;&#x95f4;&#x8303;&#x56f4;&#x6b63;&#x5219;&#x8868;&#x8fbe;&#x5f0f;&#xa;var timeRex &#x3d; &#x2f;&#x5e;&#x28;&#x5b;01&#x5d;&#x3f;&#x5b;0-9&#x5d;&#x7c;2&#x5b;0-3&#x5d;&#x29;&#x3a;&#x5b;0-5&#x5d;&#x5b;0-9&#x5d;&#x24;&#x2f;&#x3b;&#xa;&#x2f;&#x2f; &#x53d1;&#x8f66;&#x65f6;&#x95f4;&#x8f6c;&#x6362;&#x6210;&#x65e5;&#x671f;&#xa;var fcsj_hour &#x3d; str2num&#x28;sendtime_calcu.substr&#x28;0, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa;var fcsj_min &#x3d; str2num&#x28;sendtime_calcu.substr&#x28;3, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa;var fcsj_date &#x3d; new Date&#x28;2000,1,1,fcsj_hour,fcsj_min,0&#x29;&#x3b;&#xa;&#xa;&#x2f;&#x2f; &#x5224;&#x5b9a;&#x662f;&#x5426;&#x65e9;&#x9ad8;&#x5cf0;&#xa;var isZgf &#x3d; false&#x3b;&#xa;if &#x28;timeRex.test&#x28;early_start_time&#x29; &#x26;&#x26; timeRex.test&#x28;early_end_time&#x29; &#x26;&#x26; early_up_time &#x21;&#x3d; null &#x26;&#x26; early_down_time &#x21;&#x3d; null&#x29; &#x7b;&#xa; var early_s_hour &#x3d; str2num&#x28;early_start_time.substr&#x28;0, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var early_s_min &#x3d; str2num&#x28;early_start_time.substr&#x28;3, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var early_s_date &#x3d; new Date&#x28;2000,1,1,early_s_hour,early_s_min,0&#x29;&#x3b;&#xa;&#xa; var early_e_hour &#x3d; str2num&#x28;early_end_time.substr&#x28;0, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var early_e_min &#x3d; str2num&#x28;early_end_time.substr&#x28;3, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var early_e_date &#x3d; new Date&#x28;2000,1,1,early_e_hour,early_e_min,0&#x29;&#x3b;&#xa;&#xa; if &#x28;fcsj_date &#x3e;&#x3d; early_s_date &#x26;&#x26; fcsj_date &#x3c;&#x3d; early_e_date&#x29; &#x7b;&#xa; isZgf &#x3d; true&#x3b;&#xa; &#x7d;&#xa;&#x7d;&#xa;&#xa;&#x2f;&#x2f; &#x5224;&#x5b9a;&#x662f;&#x5426;&#x665a;&#x9ad8;&#x5cf0;&#xa;var isWgf &#x3d; false&#x3b;&#xa;if &#x28;timeRex.test&#x28;late_start_time&#x29; &#x26;&#x26; timeRex.test&#x28;late_end_time&#x29; &#x26;&#x26; late_up_time &#x21;&#x3d; null &#x26;&#x26; late_down_time &#x21;&#x3d; null&#x29; &#x7b;&#xa; var late_s_hour &#x3d; str2num&#x28;late_start_time.substr&#x28;0, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var late_s_min &#x3d; str2num&#x28;late_start_time.substr&#x28;3, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var late_s_date &#x3d; new Date&#x28;2000,1,1,late_s_hour,late_s_min,0&#x29;&#x3b;&#xa;&#xa; var late_e_hour &#x3d; str2num&#x28;late_end_time.substr&#x28;0, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var late_e_min &#x3d; str2num&#x28;late_end_time.substr&#x28;3, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var late_e_date &#x3d; new Date&#x28;2000,1,1,late_e_hour,late_e_min,0&#x29;&#x3b;&#xa;&#xa; if &#x28;fcsj_date &#x3e;&#x3d; late_s_date &#x26;&#x26; fcsj_date &#x3c;&#x3d; late_e_date&#x29; &#x7b;&#xa; isWgf &#x3d; true&#x3b;&#xa; &#x7d;&#xa;&#x7d;&#xa;&#xa;&#x2f;&#x2f; &#x5224;&#x5b9a;&#x662f;&#x5426;&#x665a;&#x9ad8;&#x5cf0;&#xa;&#xa;if &#x28;sxx &#x3d;&#x3d; 0&#x29; &#x7b; &#x2f;&#x2f; &#x4e0a;&#x884c;&#xa; if &#x28;isZgf&#x29; &#x7b;&#xa; jhlc &#x3d; up_mileage&#x3b;&#xa; bcsj &#x3d; early_up_time &#x21;&#x3d; 0 &#x3f; early_up_time &#x3a; up_travel_time&#x3b;&#xa; &#x7d; else if &#x28;isWgf&#x29; &#x7b;&#xa; jhlc &#x3d; up_mileage&#x3b;&#xa; bcsj &#x3d; late_up_time &#x21;&#x3d; 0 &#x3f; late_up_time &#x3a; up_travel_time&#x3b;&#xa; &#x7d; else &#x7b;&#xa; jhlc &#x3d; up_mileage&#x3b;&#xa; bcsj &#x3d; up_travel_time&#x3b;&#xa; &#x7d;&#xa;&#x7d; else &#x7b; &#x2f;&#x2f; sxx &#x3d;&#x3d; 1 &#x4e0b;&#x884c;&#xa; if &#x28;isZgf&#x29; &#x7b;&#xa; jhlc &#x3d; down_mileage&#x3b;&#xa; bcsj &#x3d; early_down_time &#x21;&#x3d; 0 &#x3f; early_down_time &#x3a; down_travel_time&#x3b;&#xa; &#x7d; else if &#x28;isWgf&#x29; &#x7b;&#xa; jhlc &#x3d; down_mileage&#x3b;&#xa; bcsj &#x3d; late_down_time &#x21;&#x3d; 0 &#x3f; late_down_time &#x3a; down_travel_time&#x3b;&#xa; &#x7d; else &#x7b;&#xa; jhlc &#x3d; down_mileage&#x3b;&#xa; bcsj &#x3d; down_travel_time&#x3b;&#xa; &#x7d;&#xa;&#x7d;</jsScript_script>
700   - </jsScript> </jsScripts> <fields> <field> <name>jhlc</name>
701   - <rename>jhlc</rename>
702   - <type>String</type>
703   - <length>-1</length>
704   - <precision>-1</precision>
705   - <replace>N</replace>
706   - </field> <field> <name>bcsj</name>
707   - <rename>bcsj</rename>
708   - <type>String</type>
709   - <length>-1</length>
710   - <precision>-1</precision>
711   - <replace>N</replace>
712   - </field> </fields> <cluster_schema/>
713   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
714   - <xloc>148</xloc>
715   - <yloc>674</yloc>
716   - <draw>Y</draw>
717   - </GUI>
718   - </step>
719   -
720   - <step>
721   - <name>&#x5339;&#x914d;&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
722   - <type>ScriptValueMod</type>
723   - <description/>
724   - <distribute>Y</distribute>
725   - <custom_distribution/>
726   - <copies>1</copies>
727   - <partitioning>
728   - <method>none</method>
729   - <schema_name/>
730   - </partitioning>
731   - <compatible>N</compatible>
732   - <optimizationLevel>9</optimizationLevel>
733   - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
734   - <jsScript_name>Script 1</jsScript_name>
735   - <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var out_mileage&#x3b; &#x2f;&#x2f; &#x51fa;&#x573a;&#x8ba1;&#x5212;&#x91cc;&#x7a0b;&#xa;var out_time&#x3b; &#x2f;&#x2f; &#x51fa;&#x573a;&#x8ba1;&#x5212;&#x65f6;&#x95f4;&#xa;&#xa;if &#x28;sxx &#x3d;&#x3d; 0&#x29; &#x7b; &#x2f;&#x2f; &#x4e0a;&#x884c;&#xa; out_mileage &#x3d; up_out_mileage&#x3b;&#xa; out_time &#x3d; up_out_timer&#x3b;&#xa;&#x7d; else &#x7b; &#x2f;&#x2f; sxx &#x3d;&#x3d; 1 &#x4e0b;&#x884c;&#xa; out_mileage &#x3d; down_out_mileage&#x3b;&#xa; out_time &#x3d; down_out_timer&#x3b;&#xa;&#x7d;&#xa;&#xa;&#xa;&#xa;</jsScript_script>
736   - </jsScript> </jsScripts> <fields> <field> <name>out_mileage</name>
737   - <rename>out_mileage</rename>
738   - <type>String</type>
739   - <length>-1</length>
740   - <precision>-1</precision>
741   - <replace>N</replace>
742   - </field> <field> <name>out_time</name>
743   - <rename>out_time</rename>
744   - <type>String</type>
745   - <length>-1</length>
746   - <precision>-1</precision>
747   - <replace>N</replace>
748   - </field> </fields> <cluster_schema/>
749   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
750   - <xloc>336</xloc>
751   - <yloc>862</yloc>
752   - <draw>Y</draw>
753   - </GUI>
754   - </step>
755   -
756   - <step>
757   - <name>&#x5339;&#x914d;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
758   - <type>ScriptValueMod</type>
759   - <description/>
760   - <distribute>Y</distribute>
761   - <custom_distribution/>
762   - <copies>1</copies>
763   - <partitioning>
764   - <method>none</method>
765   - <schema_name/>
766   - </partitioning>
767   - <compatible>N</compatible>
768   - <optimizationLevel>9</optimizationLevel>
769   - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
770   - <jsScript_name>Script 1</jsScript_name>
771   - <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var parade_mileage&#x3b; &#x2f;&#x2f; &#x8fdb;&#x573a;&#x8ba1;&#x5212;&#x91cc;&#x7a0b;&#xa;var parade_time&#x3b; &#x2f;&#x2f; &#x8fdb;&#x573a;&#x8ba1;&#x5212;&#x65f6;&#x95f4;&#xa;&#xa;if &#x28;sxx2 &#x3d;&#x3d; 0&#x29; &#x7b; &#x2f;&#x2f; &#x4e0a;&#x884c;&#xa; parade_mileage &#x3d; up_in_mileage&#x3b;&#xa; parade_time &#x3d; up_in_timer&#x3b;&#xa;&#x7d; else &#x7b; &#x2f;&#x2f; sxx &#x3d;&#x3d; 1 &#x4e0b;&#x884c;&#xa; parade_mileage &#x3d; down_in_mileage&#x3b;&#xa; parade_time &#x3d; down_in_timer&#x3b;&#xa;&#x7d;&#xa;&#xa;&#xa;&#xa;</jsScript_script>
772   - </jsScript> </jsScripts> <fields> <field> <name>parade_mileage</name>
773   - <rename>parade_mileage</rename>
774   - <type>String</type>
775   - <length>-1</length>
776   - <precision>-1</precision>
777   - <replace>N</replace>
778   - </field> <field> <name>parade_time</name>
779   - <rename>parade_time</rename>
780   - <type>String</type>
781   - <length>-1</length>
782   - <precision>-1</precision>
783   - <replace>N</replace>
784   - </field> </fields> <cluster_schema/>
785   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
786   - <xloc>726</xloc>
787   - <yloc>1005</yloc>
788   - <draw>Y</draw>
789   - </GUI>
790   - </step>
791   -
792   - <step>
793   - <name>&#x589e;&#x52a0;&#x65f6;&#x523b;&#x8868;&#x540d;&#x5b57;&#xff0c;&#x7ebf;&#x8def;&#x540d;&#x5b57;&#xff0c;&#x505c;&#x8f66;&#x573a;&#x540d;&#x5b57;</name>
794   - <type>DataGrid</type>
795   - <description/>
796   - <distribute>Y</distribute>
797   - <custom_distribution/>
798   - <copies>1</copies>
799   - <partitioning>
800   - <method>none</method>
801   - <schema_name/>
802   - </partitioning>
803   - <fields>
804   - </fields>
805   - <data>
806   - <line> </line>
807   - </data>
808   - <cluster_schema/>
809   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
810   - <xloc>110</xloc>
811   - <yloc>133</yloc>
812   - <draw>Y</draw>
813   - </GUI>
814   - </step>
815   -
816   - <step>
817   - <name>&#x5904;&#x7406;&#x6570;&#x636e;</name>
818   - <type>ScriptValueMod</type>
819   - <description/>
820   - <distribute>Y</distribute>
821   - <custom_distribution/>
822   - <copies>1</copies>
823   - <partitioning>
824   - <method>none</method>
825   - <schema_name/>
826   - </partitioning>
827   - <compatible>N</compatible>
828   - <optimizationLevel>9</optimizationLevel>
829   - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
830   - <jsScript_name>Script 1</jsScript_name>
831   - <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;&#x2f;&#x2f; &#x4f7f;&#x7528;&#x6b63;&#x5219;&#x8868;&#x8fbe;&#x5f0f;&#x53bb;&#x9664;&#x7ad9;&#x70b9;&#x540d;&#x79f0;&#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;&#x505c;&#x9a76;&#xa;var ists &#x3d; 0&#x3b;&#xa;&#xa;&#x2f;&#x2f; &#x8bbe;&#x7f6e;isCanceled&#xa;var iscanceled &#x3d; 0&#x3b;</jsScript_script>
832   - </jsScript> </jsScripts> <fields> <field> <name>qdzname</name>
833   - <rename>qdzname</rename>
834   - <type>String</type>
835   - <length>-1</length>
836   - <precision>-1</precision>
837   - <replace>Y</replace>
838   - </field> <field> <name>isfb</name>
839   - <rename>isfb</rename>
840   - <type>Integer</type>
841   - <length>-1</length>
842   - <precision>-1</precision>
843   - <replace>N</replace>
844   - </field> <field> <name>iscanceled</name>
845   - <rename>iscanceled</rename>
846   - <type>Integer</type>
847   - <length>-1</length>
848   - <precision>-1</precision>
849   - <replace>N</replace>
850   - </field> <field> <name>sendtime_calcu</name>
851   - <rename>sendtime_calcu</rename>
852   - <type>String</type>
853   - <length>-1</length>
854   - <precision>-1</precision>
855   - <replace>N</replace>
856   - </field> <field> <name>ists</name>
857   - <rename>ists</rename>
858   - <type>Integer</type>
859   - <length>-1</length>
860   - <precision>-1</precision>
861   - <replace>N</replace>
862   - </field> </fields> <cluster_schema/>
863   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
864   - <xloc>788</xloc>
865   - <yloc>44</yloc>
866   - <draw>Y</draw>
867   - </GUI>
868   - </step>
869   -
870   - <step>
871   - <name>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</name>
872   - <type>SelectValues</type>
873   - <description/>
874   - <distribute>Y</distribute>
875   - <custom_distribution/>
876   - <copies>1</copies>
877   - <partitioning>
878   - <method>none</method>
879   - <schema_name/>
880   - </partitioning>
881   - <fields> <field> <name>&#x8def;&#x724c;</name>
882   - <rename>lp</rename>
883   - <length>-2</length>
884   - <precision>-2</precision>
885   - </field> <field> <name>&#x7ad9;&#x70b9;&#x540d;&#x79f0;</name>
886   - <rename>qdzname</rename>
887   - <length>-2</length>
888   - <precision>-2</precision>
889   - </field> <field> <name>&#x53d1;&#x8f66;&#x65f6;&#x95f4;</name>
890   - <rename>sendtime</rename>
891   - <length>-2</length>
892   - <precision>-2</precision>
893   - </field> <select_unspecified>Y</select_unspecified>
894   - </fields> <cluster_schema/>
895   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
896   - <xloc>444</xloc>
897   - <yloc>131</yloc>
898   - <draw>Y</draw>
899   - </GUI>
900   - </step>
901   -
902   - <step>
903   - <name>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;1</name>
904   - <type>FilterRows</type>
905   - <description/>
906   - <distribute>Y</distribute>
907   - <custom_distribution/>
908   - <copies>1</copies>
909   - <partitioning>
910   - <method>none</method>
911   - <schema_name/>
912   - </partitioning>
913   -<send_true_to>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</send_true_to>
914   -<send_false_to>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</send_false_to>
915   - <compare>
916   -<condition>
917   - <negated>N</negated>
918   - <leftvalue>bctype</leftvalue>
919   - <function>&#x3d;</function>
920   - <rightvalue/>
921   - <value><name>constant</name><type>String</type><text>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</text><length>-1</length><precision>-1</precision><isnull>N</isnull><mask/></value> </condition>
922   - </compare>
923   - <cluster_schema/>
924   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
925   - <xloc>860</xloc>
926   - <yloc>401</yloc>
927   - <draw>Y</draw>
928   - </GUI>
929   - </step>
930   -
931   - <step>
932   - <name>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</name>
933   - <type>FilterRows</type>
934   - <description/>
935   - <distribute>Y</distribute>
936   - <custom_distribution/>
937   - <copies>1</copies>
938   - <partitioning>
939   - <method>none</method>
940   - <schema_name/>
941   - </partitioning>
942   -<send_true_to>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</send_true_to>
943   -<send_false_to>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</send_false_to>
944   - <compare>
945   -<condition>
946   - <negated>N</negated>
947   - <leftvalue>bctype</leftvalue>
948   - <function>&#x3d;</function>
949   - <rightvalue/>
950   - <value><name>constant</name><type>String</type><text>&#x51fa;&#x573a;</text><length>-1</length><precision>-1</precision><isnull>N</isnull><mask/></value> </condition>
951   - </compare>
952   - <cluster_schema/>
953   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
954   - <xloc>995</xloc>
955   - <yloc>503</yloc>
956   - <draw>Y</draw>
957   - </GUI>
958   - </step>
959   -
960   - <step>
961   - <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail</name>
962   - <type>InsertUpdate</type>
963   - <description/>
964   - <distribute>Y</distribute>
965   - <custom_distribution/>
966   - <copies>1</copies>
967   - <partitioning>
968   - <method>none</method>
969   - <schema_name/>
970   - </partitioning>
971   - <connection>bus_control_variable</connection>
972   - <commit>100</commit>
973   - <update_bypassed>N</update_bypassed>
974   - <lookup>
975   - <schema/>
976   - <table>bsth_c_s_ttinfo_detail</table>
977   - <key>
978   - <name>xlid</name>
979   - <field>xl</field>
980   - <condition>&#x3d;</condition>
981   - <name2/>
982   - </key>
983   - <key>
984   - <name>ttid</name>
985   - <field>ttinfo</field>
986   - <condition>&#x3d;</condition>
987   - <name2/>
988   - </key>
989   - <key>
990   - <name>lpid</name>
991   - <field>lp</field>
992   - <condition>&#x3d;</condition>
993   - <name2/>
994   - </key>
995   - <key>
996   - <name>fcno</name>
997   - <field>fcno</field>
998   - <condition>&#x3d;</condition>
999   - <name2/>
1000   - </key>
1001   - <key>
1002   - <name>bcs</name>
1003   - <field>bcs</field>
1004   - <condition>&#x3d;</condition>
1005   - <name2/>
1006   - </key>
1007   - <value>
1008   - <name>lp</name>
1009   - <rename>lpid</rename>
1010   - <update>Y</update>
1011   - </value>
1012   - <value>
1013   - <name>bc_type</name>
1014   - <rename>bctype_code</rename>
1015   - <update>Y</update>
1016   - </value>
1017   - <value>
1018   - <name>bcs</name>
1019   - <rename>bcs</rename>
1020   - <update>Y</update>
1021   - </value>
1022   - <value>
1023   - <name>bcsj</name>
1024   - <rename>bcsj</rename>
1025   - <update>Y</update>
1026   - </value>
1027   - <value>
1028   - <name>fcno</name>
1029   - <rename>fcno</rename>
1030   - <update>Y</update>
1031   - </value>
1032   - <value>
1033   - <name>jhlc</name>
1034   - <rename>jhlc</rename>
1035   - <update>Y</update>
1036   - </value>
1037   - <value>
1038   - <name>fcsj</name>
1039   - <rename>sendtime_calcu</rename>
1040   - <update>Y</update>
1041   - </value>
1042   - <value>
1043   - <name>ttinfo</name>
1044   - <rename>ttid</rename>
1045   - <update>Y</update>
1046   - </value>
1047   - <value>
1048   - <name>xl</name>
1049   - <rename>xlid</rename>
1050   - <update>Y</update>
1051   - </value>
1052   - <value>
1053   - <name>qdz</name>
1054   - <rename>qdzid</rename>
1055   - <update>Y</update>
1056   - </value>
1057   - <value>
1058   - <name>zdz</name>
1059   - <rename>zdzid</rename>
1060   - <update>Y</update>
1061   - </value>
1062   - <value>
1063   - <name>xl_dir</name>
1064   - <rename>sxx</rename>
1065   - <update>Y</update>
1066   - </value>
1067   - <value>
1068   - <name>isfb</name>
1069   - <rename>isfb</rename>
1070   - <update>Y</update>
1071   - </value>
1072   - <value>
1073   - <name>qdz_code</name>
1074   - <rename>qdzcode</rename>
1075   - <update>Y</update>
1076   - </value>
1077   - <value>
1078   - <name>qdz_name</name>
1079   - <rename>qdzname</rename>
1080   - <update>Y</update>
1081   - </value>
1082   - <value>
1083   - <name>zdz_code</name>
1084   - <rename>zdzcode</rename>
1085   - <update>Y</update>
1086   - </value>
1087   - <value>
1088   - <name>zdz_name</name>
1089   - <rename>zdzname</rename>
1090   - <update>Y</update>
1091   - </value>
1092   - <value>
1093   - <name>ists</name>
1094   - <rename>ists</rename>
1095   - <update>Y</update>
1096   - </value>
1097   - </lookup>
1098   - <cluster_schema/>
1099   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
1100   - <xloc>143</xloc>
1101   - <yloc>860</yloc>
1102   - <draw>Y</draw>
1103   - </GUI>
1104   - </step>
1105   -
1106   - <step>
1107   - <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail 2</name>
1108   - <type>InsertUpdate</type>
1109   - <description/>
1110   - <distribute>Y</distribute>
1111   - <custom_distribution/>
1112   - <copies>1</copies>
1113   - <partitioning>
1114   - <method>none</method>
1115   - <schema_name/>
1116   - </partitioning>
1117   - <connection>bus_control_variable</connection>
1118   - <commit>100</commit>
1119   - <update_bypassed>N</update_bypassed>
1120   - <lookup>
1121   - <schema/>
1122   - <table>bsth_c_s_ttinfo_detail</table>
1123   - <key>
1124   - <name>xlid</name>
1125   - <field>xl</field>
1126   - <condition>&#x3d;</condition>
1127   - <name2/>
1128   - </key>
1129   - <key>
1130   - <name>ttid</name>
1131   - <field>ttinfo</field>
1132   - <condition>&#x3d;</condition>
1133   - <name2/>
1134   - </key>
1135   - <key>
1136   - <name>lpid</name>
1137   - <field>lp</field>
1138   - <condition>&#x3d;</condition>
1139   - <name2/>
1140   - </key>
1141   - <key>
1142   - <name>fcno</name>
1143   - <field>fcno</field>
1144   - <condition>&#x3d;</condition>
1145   - <name2/>
1146   - </key>
1147   - <key>
1148   - <name>bcs</name>
1149   - <field>bcs</field>
1150   - <condition>&#x3d;</condition>
1151   - <name2/>
1152   - </key>
1153   - <value>
1154   - <name>tcc</name>
1155   - <rename>qdzid</rename>
1156   - <update>Y</update>
1157   - </value>
1158   - <value>
1159   - <name>zdz</name>
1160   - <rename>zdzid</rename>
1161   - <update>Y</update>
1162   - </value>
1163   - <value>
1164   - <name>xl</name>
1165   - <rename>xlid</rename>
1166   - <update>Y</update>
1167   - </value>
1168   - <value>
1169   - <name>ttinfo</name>
1170   - <rename>ttid</rename>
1171   - <update>Y</update>
1172   - </value>
1173   - <value>
1174   - <name>xl_dir</name>
1175   - <rename>sxx</rename>
1176   - <update>Y</update>
1177   - </value>
1178   - <value>
1179   - <name>lp</name>
1180   - <rename>lpid</rename>
1181   - <update>Y</update>
1182   - </value>
1183   - <value>
1184   - <name>jhlc</name>
1185   - <rename>out_mileage</rename>
1186   - <update>Y</update>
1187   - </value>
1188   - <value>
1189   - <name>fcsj</name>
1190   - <rename>sendtime_calcu</rename>
1191   - <update>Y</update>
1192   - </value>
1193   - <value>
1194   - <name>bcsj</name>
1195   - <rename>out_time</rename>
1196   - <update>Y</update>
1197   - </value>
1198   - <value>
1199   - <name>bcs</name>
1200   - <rename>bcs</rename>
1201   - <update>Y</update>
1202   - </value>
1203   - <value>
1204   - <name>fcno</name>
1205   - <rename>fcno</rename>
1206   - <update>Y</update>
1207   - </value>
1208   - <value>
1209   - <name>bc_type</name>
1210   - <rename>bctype_code</rename>
1211   - <update>Y</update>
1212   - </value>
1213   - <value>
1214   - <name>isfb</name>
1215   - <rename>isfb</rename>
1216   - <update>Y</update>
1217   - </value>
1218   - <value>
1219   - <name>qdz_code</name>
1220   - <rename>qdzcode</rename>
1221   - <update>Y</update>
1222   - </value>
1223   - <value>
1224   - <name>qdz_name</name>
1225   - <rename>tn</rename>
1226   - <update>Y</update>
1227   - </value>
1228   - <value>
1229   - <name>zdz_code</name>
1230   - <rename>zdzcode</rename>
1231   - <update>Y</update>
1232   - </value>
1233   - <value>
1234   - <name>zdz_name</name>
1235   - <rename>zdzname</rename>
1236   - <update>Y</update>
1237   - </value>
1238   - <value>
1239   - <name>ists</name>
1240   - <rename>ists</rename>
1241   - <update>Y</update>
1242   - </value>
1243   - </lookup>
1244   - <cluster_schema/>
1245   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
1246   - <xloc>340</xloc>
1247   - <yloc>1087</yloc>
1248   - <draw>Y</draw>
1249   - </GUI>
1250   - </step>
1251   -
1252   - <step>
1253   - <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail 3</name>
1254   - <type>InsertUpdate</type>
1255   - <description/>
1256   - <distribute>Y</distribute>
1257   - <custom_distribution/>
1258   - <copies>1</copies>
1259   - <partitioning>
1260   - <method>none</method>
1261   - <schema_name/>
1262   - </partitioning>
1263   - <connection>bus_control_variable</connection>
1264   - <commit>100</commit>
1265   - <update_bypassed>N</update_bypassed>
1266   - <lookup>
1267   - <schema/>
1268   - <table>bsth_c_s_ttinfo_detail</table>
1269   - <key>
1270   - <name>xlid</name>
1271   - <field>xl</field>
1272   - <condition>&#x3d;</condition>
1273   - <name2/>
1274   - </key>
1275   - <key>
1276   - <name>ttid</name>
1277   - <field>ttinfo</field>
1278   - <condition>&#x3d;</condition>
1279   - <name2/>
1280   - </key>
1281   - <key>
1282   - <name>lpid</name>
1283   - <field>lp</field>
1284   - <condition>&#x3d;</condition>
1285   - <name2/>
1286   - </key>
1287   - <key>
1288   - <name>fcno</name>
1289   - <field>fcno</field>
1290   - <condition>&#x3d;</condition>
1291   - <name2/>
1292   - </key>
1293   - <key>
1294   - <name>bcs</name>
1295   - <field>bcs</field>
1296   - <condition>&#x3d;</condition>
1297   - <name2/>
1298   - </key>
1299   - <value>
1300   - <name>fcno</name>
1301   - <rename>fcno</rename>
1302   - <update>Y</update>
1303   - </value>
1304   - <value>
1305   - <name>bcs</name>
1306   - <rename>bcs</rename>
1307   - <update>Y</update>
1308   - </value>
1309   - <value>
1310   - <name>xl</name>
1311   - <rename>xlid</rename>
1312   - <update>Y</update>
1313   - </value>
1314   - <value>
1315   - <name>ttinfo</name>
1316   - <rename>ttid</rename>
1317   - <update>Y</update>
1318   - </value>
1319   - <value>
1320   - <name>lp</name>
1321   - <rename>lpid</rename>
1322   - <update>Y</update>
1323   - </value>
1324   - <value>
1325   - <name>bc_type</name>
1326   - <rename>bctype_code</rename>
1327   - <update>Y</update>
1328   - </value>
1329   - <value>
1330   - <name>bcsj</name>
1331   - <rename>parade_time</rename>
1332   - <update>Y</update>
1333   - </value>
1334   - <value>
1335   - <name>jhlc</name>
1336   - <rename>parade_mileage</rename>
1337   - <update>Y</update>
1338   - </value>
1339   - <value>
1340   - <name>fcsj</name>
1341   - <rename>sendtime_calcu</rename>
1342   - <update>Y</update>
1343   - </value>
1344   - <value>
1345   - <name>xl_dir</name>
1346   - <rename>sxx2</rename>
1347   - <update>Y</update>
1348   - </value>
1349   - <value>
1350   - <name>qdz</name>
1351   - <rename>qdzid</rename>
1352   - <update>Y</update>
1353   - </value>
1354   - <value>
1355   - <name>tcc</name>
1356   - <rename>zdzid</rename>
1357   - <update>Y</update>
1358   - </value>
1359   - <value>
1360   - <name>isfb</name>
1361   - <rename>isfb</rename>
1362   - <update>Y</update>
1363   - </value>
1364   - <value>
1365   - <name>qdz_code</name>
1366   - <rename>qdzcode</rename>
1367   - <update>Y</update>
1368   - </value>
1369   - <value>
1370   - <name>qdz_name</name>
1371   - <rename>qname</rename>
1372   - <update>Y</update>
1373   - </value>
1374   - <value>
1375   - <name>zdz_code</name>
1376   - <rename>zdzcode</rename>
1377   - <update>Y</update>
1378   - </value>
1379   - <value>
1380   - <name>zdz_name</name>
1381   - <rename>tn</rename>
1382   - <update>Y</update>
1383   - </value>
1384   - <value>
1385   - <name>ists</name>
1386   - <rename>ists</rename>
1387   - <update>Y</update>
1388   - </value>
1389   - </lookup>
1390   - <cluster_schema/>
1391   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
1392   - <xloc>845</xloc>
1393   - <yloc>899</yloc>
1394   - <draw>Y</draw>
1395   - </GUI>
1396   - </step>
1397   -
1398   - <step>
1399   - <name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</name>
1400   - <type>ExcelInput</type>
1401   - <description/>
1402   - <distribute>N</distribute>
1403   - <custom_distribution/>
1404   - <copies>1</copies>
1405   - <partitioning>
1406   - <method>none</method>
1407   - <schema_name/>
1408   - </partitioning>
1409   - <header>Y</header>
1410   - <noempty>Y</noempty>
1411   - <stoponempty>N</stoponempty>
1412   - <filefield/>
1413   - <sheetfield/>
1414   - <sheetrownumfield/>
1415   - <rownumfield/>
1416   - <sheetfield/>
1417   - <filefield/>
1418   - <limit>0</limit>
1419   - <encoding/>
1420   - <add_to_result_filenames>Y</add_to_result_filenames>
1421   - <accept_filenames>N</accept_filenames>
1422   - <accept_field/>
1423   - <accept_stepname/>
1424   - <file>
1425   - <name/>
1426   - <filemask/>
1427   - <exclude_filemask/>
1428   - <file_required>N</file_required>
1429   - <include_subfolders>N</include_subfolders>
1430   - </file>
1431   - <fields>
1432   - </fields>
1433   - <sheets>
1434   - <sheet>
1435   - <name/>
1436   - <startrow>0</startrow>
1437   - <startcol>0</startcol>
1438   - </sheet>
1439   - </sheets>
1440   - <strict_types>N</strict_types>
1441   - <error_ignored>N</error_ignored>
1442   - <error_line_skipped>N</error_line_skipped>
1443   - <bad_line_files_destination_directory/>
1444   - <bad_line_files_extension>warning</bad_line_files_extension>
1445   - <error_line_files_destination_directory/>
1446   - <error_line_files_extension>error</error_line_files_extension>
1447   - <line_number_files_destination_directory/>
1448   - <line_number_files_extension>line</line_number_files_extension>
1449   - <shortFileFieldName/>
1450   - <pathFieldName/>
1451   - <hiddenFieldName/>
1452   - <lastModificationTimeFieldName/>
1453   - <uriNameFieldName/>
1454   - <rootUriNameFieldName/>
1455   - <extensionFieldName/>
1456   - <sizeFieldName/>
1457   - <spreadsheet_type>JXL</spreadsheet_type>
1458   - <cluster_schema/>
1459   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
1460   - <xloc>112</xloc>
1461   - <yloc>44</yloc>
1462   - <draw>Y</draw>
1463   - </GUI>
1464   - </step>
1465   -
1466   - <step>
1467   - <name>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;1</name>
1468   - <type>DBLookup</type>
1469   - <description/>
1470   - <distribute>Y</distribute>
1471   - <custom_distribution/>
1472   - <copies>1</copies>
1473   - <partitioning>
1474   - <method>none</method>
1475   - <schema_name/>
1476   - </partitioning>
1477   - <connection>bus_control_variable</connection>
1478   - <cache>N</cache>
1479   - <cache_load_all>N</cache_load_all>
1480   - <cache_size>0</cache_size>
1481   - <lookup>
1482   - <schema/>
1483   - <table>bsth_c_car_park</table>
1484   - <orderby/>
1485   - <fail_on_multiple>N</fail_on_multiple>
1486   - <eat_row_on_failure>N</eat_row_on_failure>
1487   - <key>
1488   - <name>tccname_</name>
1489   - <field>park_name</field>
1490   - <condition>&#x3d;</condition>
1491   - <name2/>
1492   - </key>
1493   - <value>
1494   - <name>id</name>
1495   - <rename>qdzid</rename>
1496   - <default/>
1497   - <type>Integer</type>
1498   - </value>
1499   - <value>
1500   - <name>park_code</name>
1501   - <rename>qdzcode</rename>
1502   - <default/>
1503   - <type>String</type>
1504   - </value>
1505   - <value>
1506   - <name>park_name</name>
1507   - <rename>tn</rename>
1508   - <default/>
1509   - <type>String</type>
1510   - </value>
1511   - </lookup>
1512   - <cluster_schema/>
1513   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
1514   - <xloc>755</xloc>
1515   - <yloc>504</yloc>
1516   - <draw>Y</draw>
1517   - </GUI>
1518   - </step>
1519   -
1520   - <step>
1521   - <name>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;2</name>
1522   - <type>DBLookup</type>
1523   - <description/>
1524   - <distribute>Y</distribute>
1525   - <custom_distribution/>
1526   - <copies>1</copies>
1527   - <partitioning>
1528   - <method>none</method>
1529   - <schema_name/>
1530   - </partitioning>
1531   - <connection>bus_control_variable</connection>
1532   - <cache>N</cache>
1533   - <cache_load_all>N</cache_load_all>
1534   - <cache_size>0</cache_size>
1535   - <lookup>
1536   - <schema/>
1537   - <table>bsth_c_car_park</table>
1538   - <orderby/>
1539   - <fail_on_multiple>N</fail_on_multiple>
1540   - <eat_row_on_failure>N</eat_row_on_failure>
1541   - <key>
1542   - <name>tccname_</name>
1543   - <field>park_name</field>
1544   - <condition>&#x3d;</condition>
1545   - <name2/>
1546   - </key>
1547   - <value>
1548   - <name>id</name>
1549   - <rename>zdzid</rename>
1550   - <default/>
1551   - <type>Integer</type>
1552   - </value>
1553   - <value>
1554   - <name>park_code</name>
1555   - <rename>zdzcode</rename>
1556   - <default/>
1557   - <type>String</type>
1558   - </value>
1559   - <value>
1560   - <name>park_name</name>
1561   - <rename>tn</rename>
1562   - <default/>
1563   - <type>String</type>
1564   - </value>
1565   - </lookup>
1566   - <cluster_schema/>
1567   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
1568   - <xloc>887</xloc>
1569   - <yloc>608</yloc>
1570   - <draw>Y</draw>
1571   - </GUI>
1572   - </step>
1573   -
1574   - <step>
1575   - <name>&#x67e5;&#x627e;&#x51fa;&#x573a;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</name>
1576   - <type>DBLookup</type>
1577   - <description/>
1578   - <distribute>Y</distribute>
1579   - <custom_distribution/>
1580   - <copies>1</copies>
1581   - <partitioning>
1582   - <method>none</method>
1583   - <schema_name/>
1584   - </partitioning>
1585   - <connection>bus_control_variable</connection>
1586   - <cache>N</cache>
1587   - <cache_load_all>N</cache_load_all>
1588   - <cache_size>0</cache_size>
1589   - <lookup>
1590   - <schema/>
1591   - <table>bsth_c_stationroute</table>
1592   - <orderby/>
1593   - <fail_on_multiple>N</fail_on_multiple>
1594   - <eat_row_on_failure>N</eat_row_on_failure>
1595   - <key>
1596   - <name>xlid</name>
1597   - <field>line</field>
1598   - <condition>&#x3d;</condition>
1599   - <name2/>
1600   - </key>
1601   - <key>
1602   - <name>zdzname</name>
1603   - <field>station_name</field>
1604   - <condition>&#x3d;</condition>
1605   - <name2/>
1606   - </key>
1607   - <key>
1608   - <name>endZdtype</name>
1609   - <field>station_mark</field>
1610   - <condition>&#x3d;</condition>
1611   - <name2/>
1612   - </key>
1613   - <key>
1614   - <name>destory</name>
1615   - <field>destroy</field>
1616   - <condition>&#x3d;</condition>
1617   - <name2/>
1618   - </key>
1619   - <value>
1620   - <name>station</name>
1621   - <rename>zdzid</rename>
1622   - <default/>
1623   - <type>Integer</type>
1624   - </value>
1625   - <value>
1626   - <name>directions</name>
1627   - <rename>sxx</rename>
1628   - <default/>
1629   - <type>Integer</type>
1630   - </value>
1631   - <value>
1632   - <name>station_code</name>
1633   - <rename>zdzcode</rename>
1634   - <default/>
1635   - <type>String</type>
1636   - </value>
1637   - </lookup>
1638   - <cluster_schema/>
1639   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
1640   - <xloc>329</xloc>
1641   - <yloc>505</yloc>
1642   - <draw>Y</draw>
1643   - </GUI>
1644   - </step>
1645   -
1646   - <step>
1647   - <name>&#x67e5;&#x627e;&#x6240;&#x6709;&#x7ebf;&#x8def;&#x4e0a;&#x4e0b;&#x884c;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
1648   - <type>DBLookup</type>
1649   - <description/>
1650   - <distribute>Y</distribute>
1651   - <custom_distribution/>
1652   - <copies>1</copies>
1653   - <partitioning>
1654   - <method>none</method>
1655   - <schema_name/>
1656   - </partitioning>
1657   - <connection>bus_control_variable</connection>
1658   - <cache>N</cache>
1659   - <cache_load_all>N</cache_load_all>
1660   - <cache_size>0</cache_size>
1661   - <lookup>
1662   - <schema/>
1663   - <table>bsth_c_line_information</table>
1664   - <orderby/>
1665   - <fail_on_multiple>N</fail_on_multiple>
1666   - <eat_row_on_failure>N</eat_row_on_failure>
1667   - <key>
1668   - <name>xlid</name>
1669   - <field>line</field>
1670   - <condition>&#x3d;</condition>
1671   - <name2/>
1672   - </key>
1673   - <value>
1674   - <name>up_mileage</name>
1675   - <rename>up_mileage</rename>
1676   - <default/>
1677   - <type>Number</type>
1678   - </value>
1679   - <value>
1680   - <name>down_mileage</name>
1681   - <rename>down_mileage</rename>
1682   - <default/>
1683   - <type>Number</type>
1684   - </value>
1685   - <value>
1686   - <name>up_travel_time</name>
1687   - <rename>up_travel_time</rename>
1688   - <default/>
1689   - <type>Number</type>
1690   - </value>
1691   - <value>
1692   - <name>down_travel_time</name>
1693   - <rename>down_travel_time</rename>
1694   - <default/>
1695   - <type>Number</type>
1696   - </value>
1697   - <value>
1698   - <name>early_start_time</name>
1699   - <rename>early_start_time</rename>
1700   - <default/>
1701   - <type>String</type>
1702   - </value>
1703   - <value>
1704   - <name>early_end_time</name>
1705   - <rename>early_end_time</rename>
1706   - <default/>
1707   - <type>String</type>
1708   - </value>
1709   - <value>
1710   - <name>early_up_time</name>
1711   - <rename>early_up_time</rename>
1712   - <default/>
1713   - <type>Number</type>
1714   - </value>
1715   - <value>
1716   - <name>early_down_time</name>
1717   - <rename>early_down_time</rename>
1718   - <default/>
1719   - <type>Number</type>
1720   - </value>
1721   - <value>
1722   - <name>late_start_time</name>
1723   - <rename>late_start_time</rename>
1724   - <default/>
1725   - <type>String</type>
1726   - </value>
1727   - <value>
1728   - <name>late_end_time</name>
1729   - <rename>late_end_time</rename>
1730   - <default/>
1731   - <type>String</type>
1732   - </value>
1733   - <value>
1734   - <name>late_up_time</name>
1735   - <rename>late_up_time</rename>
1736   - <default/>
1737   - <type>Number</type>
1738   - </value>
1739   - <value>
1740   - <name>late_down_time</name>
1741   - <rename>late_down_time</rename>
1742   - <default/>
1743   - <type>Number</type>
1744   - </value>
1745   - </lookup>
1746   - <cluster_schema/>
1747   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
1748   - <xloc>149</xloc>
1749   - <yloc>581</yloc>
1750   - <draw>Y</draw>
1751   - </GUI>
1752   - </step>
1753   -
1754   - <step>
1755   - <name>&#x67e5;&#x627e;&#x65f6;&#x523b;&#x8868;&#x57fa;&#x7840;&#x4fe1;&#x606f;&#x5173;&#x8054;</name>
1756   - <type>DBLookup</type>
1757   - <description/>
1758   - <distribute>Y</distribute>
1759   - <custom_distribution/>
1760   - <copies>1</copies>
1761   - <partitioning>
1762   - <method>none</method>
1763   - <schema_name/>
1764   - </partitioning>
1765   - <connection>bus_control_variable</connection>
1766   - <cache>N</cache>
1767   - <cache_load_all>N</cache_load_all>
1768   - <cache_size>0</cache_size>
1769   - <lookup>
1770   - <schema/>
1771   - <table>bsth_c_s_ttinfo</table>
1772   - <orderby/>
1773   - <fail_on_multiple>N</fail_on_multiple>
1774   - <eat_row_on_failure>N</eat_row_on_failure>
1775   - <key>
1776   - <name>xlid</name>
1777   - <field>xl</field>
1778   - <condition>&#x3d;</condition>
1779   - <name2/>
1780   - </key>
1781   - <key>
1782   - <name>ttinfoname_</name>
1783   - <field>name</field>
1784   - <condition>&#x3d;</condition>
1785   - <name2/>
1786   - </key>
1787   - <key>
1788   - <name>iscanceled</name>
1789   - <field>is_cancel</field>
1790   - <condition>&#x3d;</condition>
1791   - <name2/>
1792   - </key>
1793   - <value>
1794   - <name>id</name>
1795   - <rename>ttid</rename>
1796   - <default/>
1797   - <type>Integer</type>
1798   - </value>
1799   - </lookup>
1800   - <cluster_schema/>
1801   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
1802   - <xloc>1011</xloc>
1803   - <yloc>134</yloc>
1804   - <draw>Y</draw>
1805   - </GUI>
1806   - </step>
1807   -
1808   - <step>
1809   - <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x5173;&#x8054;</name>
1810   - <type>DBLookup</type>
1811   - <description/>
1812   - <distribute>Y</distribute>
1813   - <custom_distribution/>
1814   - <copies>1</copies>
1815   - <partitioning>
1816   - <method>none</method>
1817   - <schema_name/>
1818   - </partitioning>
1819   - <connection>bus_control_variable</connection>
1820   - <cache>N</cache>
1821   - <cache_load_all>N</cache_load_all>
1822   - <cache_size>0</cache_size>
1823   - <lookup>
1824   - <schema/>
1825   - <table>bsth_c_line</table>
1826   - <orderby/>
1827   - <fail_on_multiple>N</fail_on_multiple>
1828   - <eat_row_on_failure>N</eat_row_on_failure>
1829   - <key>
1830   - <name>xlname_</name>
1831   - <field>name</field>
1832   - <condition>&#x3d;</condition>
1833   - <name2/>
1834   - </key>
1835   - <key>
1836   - <name>iscanceled</name>
1837   - <field>destroy</field>
1838   - <condition>&#x3d;</condition>
1839   - <name2/>
1840   - </key>
1841   - <value>
1842   - <name>id</name>
1843   - <rename>xlid</rename>
1844   - <default/>
1845   - <type>Integer</type>
1846   - </value>
1847   - </lookup>
1848   - <cluster_schema/>
1849   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
1850   - <xloc>1007</xloc>
1851   - <yloc>43</yloc>
1852   - <draw>Y</draw>
1853   - </GUI>
1854   - </step>
1855   -
1856   - <step>
1857   - <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x51fa;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
1858   - <type>DBLookup</type>
1859   - <description/>
1860   - <distribute>Y</distribute>
1861   - <custom_distribution/>
1862   - <copies>1</copies>
1863   - <partitioning>
1864   - <method>none</method>
1865   - <schema_name/>
1866   - </partitioning>
1867   - <connection>bus_control_variable</connection>
1868   - <cache>N</cache>
1869   - <cache_load_all>N</cache_load_all>
1870   - <cache_size>0</cache_size>
1871   - <lookup>
1872   - <schema/>
1873   - <table>bsth_c_line_information</table>
1874   - <orderby/>
1875   - <fail_on_multiple>N</fail_on_multiple>
1876   - <eat_row_on_failure>N</eat_row_on_failure>
1877   - <key>
1878   - <name>xlid</name>
1879   - <field>line</field>
1880   - <condition>&#x3d;</condition>
1881   - <name2/>
1882   - </key>
1883   - <value>
1884   - <name>up_out_timer</name>
1885   - <rename>up_out_timer</rename>
1886   - <default/>
1887   - <type>Number</type>
1888   - </value>
1889   - <value>
1890   - <name>up_out_mileage</name>
1891   - <rename>up_out_mileage</rename>
1892   - <default/>
1893   - <type>Number</type>
1894   - </value>
1895   - <value>
1896   - <name>down_out_timer</name>
1897   - <rename>down_out_timer</rename>
1898   - <default/>
1899   - <type>Number</type>
1900   - </value>
1901   - <value>
1902   - <name>down_out_mileage</name>
1903   - <rename>down_out_mileage</rename>
1904   - <default/>
1905   - <type>Number</type>
1906   - </value>
1907   - </lookup>
1908   - <cluster_schema/>
1909   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
1910   - <xloc>335</xloc>
1911   - <yloc>763</yloc>
1912   - <draw>Y</draw>
1913   - </GUI>
1914   - </step>
1915   -
1916   - <step>
1917   - <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x8fdb;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
1918   - <type>DBLookup</type>
1919   - <description/>
1920   - <distribute>Y</distribute>
1921   - <custom_distribution/>
1922   - <copies>1</copies>
1923   - <partitioning>
1924   - <method>none</method>
1925   - <schema_name/>
1926   - </partitioning>
1927   - <connection>bus_control_variable</connection>
1928   - <cache>N</cache>
1929   - <cache_load_all>N</cache_load_all>
1930   - <cache_size>0</cache_size>
1931   - <lookup>
1932   - <schema/>
1933   - <table>bsth_c_line_information</table>
1934   - <orderby/>
1935   - <fail_on_multiple>N</fail_on_multiple>
1936   - <eat_row_on_failure>N</eat_row_on_failure>
1937   - <key>
1938   - <name>xlid</name>
1939   - <field>line</field>
1940   - <condition>&#x3d;</condition>
1941   - <name2/>
1942   - </key>
1943   - <value>
1944   - <name>up_in_mileage</name>
1945   - <rename>up_in_mileage</rename>
1946   - <default/>
1947   - <type>Number</type>
1948   - </value>
1949   - <value>
1950   - <name>up_in_timer</name>
1951   - <rename>up_in_timer</rename>
1952   - <default/>
1953   - <type>Number</type>
1954   - </value>
1955   - <value>
1956   - <name>down_in_mileage</name>
1957   - <rename>down_in_mileage</rename>
1958   - <default/>
1959   - <type>Number</type>
1960   - </value>
1961   - <value>
1962   - <name>down_in_timer</name>
1963   - <rename>down_in_timer</rename>
1964   - <default/>
1965   - <type>Number</type>
1966   - </value>
1967   - </lookup>
1968   - <cluster_schema/>
1969   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
1970   - <xloc>553</xloc>
1971   - <yloc>1004</yloc>
1972   - <draw>Y</draw>
1973   - </GUI>
1974   - </step>
1975   -
1976   - <step>
1977   - <name>&#x67e5;&#x627e;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;</name>
1978   - <type>DBLookup</type>
1979   - <description/>
1980   - <distribute>Y</distribute>
1981   - <custom_distribution/>
1982   - <copies>1</copies>
1983   - <partitioning>
1984   - <method>none</method>
1985   - <schema_name/>
1986   - </partitioning>
1987   - <connection>bus_control_variable</connection>
1988   - <cache>N</cache>
1989   - <cache_load_all>N</cache_load_all>
1990   - <cache_size>0</cache_size>
1991   - <lookup>
1992   - <schema/>
1993   - <table>bsth_c_stationroute</table>
1994   - <orderby/>
1995   - <fail_on_multiple>N</fail_on_multiple>
1996   - <eat_row_on_failure>N</eat_row_on_failure>
1997   - <key>
1998   - <name>xlid</name>
1999   - <field>line</field>
2000   - <condition>&#x3d;</condition>
2001   - <name2/>
2002   - </key>
2003   - <key>
2004   - <name>sxx</name>
2005   - <field>directions</field>
2006   - <condition>&#x3d;</condition>
2007   - <name2/>
2008   - </key>
2009   - <key>
2010   - <name>endZdtype</name>
2011   - <field>station_mark</field>
2012   - <condition>&#x3d;</condition>
2013   - <name2/>
2014   - </key>
2015   - <key>
2016   - <name>destory</name>
2017   - <field>destroy</field>
2018   - <condition>&#x3d;</condition>
2019   - <name2/>
2020   - </key>
2021   - <value>
2022   - <name>station_name</name>
2023   - <rename>zdzname</rename>
2024   - <default/>
2025   - <type>String</type>
2026   - </value>
2027   - <value>
2028   - <name>station</name>
2029   - <rename>zdzid</rename>
2030   - <default/>
2031   - <type>Integer</type>
2032   - </value>
2033   - <value>
2034   - <name>station_code</name>
2035   - <rename>zdzcode</rename>
2036   - <default/>
2037   - <type>String</type>
2038   - </value>
2039   - </lookup>
2040   - <cluster_schema/>
2041   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2042   - <xloc>280</xloc>
2043   - <yloc>404</yloc>
2044   - <draw>Y</draw>
2045   - </GUI>
2046   - </step>
2047   -
2048   - <step>
2049   - <name>&#x67e5;&#x627e;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</name>
2050   - <type>DBLookup</type>
2051   - <description/>
2052   - <distribute>Y</distribute>
2053   - <custom_distribution/>
2054   - <copies>1</copies>
2055   - <partitioning>
2056   - <method>none</method>
2057   - <schema_name/>
2058   - </partitioning>
2059   - <connection>bus_control_variable</connection>
2060   - <cache>N</cache>
2061   - <cache_load_all>N</cache_load_all>
2062   - <cache_size>0</cache_size>
2063   - <lookup>
2064   - <schema/>
2065   - <table>bsth_c_stationroute</table>
2066   - <orderby/>
2067   - <fail_on_multiple>N</fail_on_multiple>
2068   - <eat_row_on_failure>N</eat_row_on_failure>
2069   - <key>
2070   - <name>xlid</name>
2071   - <field>line</field>
2072   - <condition>&#x3d;</condition>
2073   - <name2/>
2074   - </key>
2075   - <key>
2076   - <name>qdzname</name>
2077   - <field>station_name</field>
2078   - <condition>&#x3d;</condition>
2079   - <name2/>
2080   - </key>
2081   - <key>
2082   - <name>sendZdtype</name>
2083   - <field>station_mark</field>
2084   - <condition>&#x3d;</condition>
2085   - <name2/>
2086   - </key>
2087   - <key>
2088   - <name>destory</name>
2089   - <field>destroy</field>
2090   - <condition>&#x3d;</condition>
2091   - <name2/>
2092   - </key>
2093   - <value>
2094   - <name>station</name>
2095   - <rename>qdzid</rename>
2096   - <default/>
2097   - <type>Integer</type>
2098   - </value>
2099   - <value>
2100   - <name>directions</name>
2101   - <rename>sxx</rename>
2102   - <default/>
2103   - <type>Integer</type>
2104   - </value>
2105   - <value>
2106   - <name>station_code</name>
2107   - <rename>qdzcode</rename>
2108   - <default/>
2109   - <type>String</type>
2110   - </value>
2111   - </lookup>
2112   - <cluster_schema/>
2113   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2114   - <xloc>430</xloc>
2115   - <yloc>403</yloc>
2116   - <draw>Y</draw>
2117   - </GUI>
2118   - </step>
2119   -
2120   - <step>
2121   - <name>&#x67e5;&#x627e;&#x8def;&#x724c;&#x5173;&#x8054;</name>
2122   - <type>DBLookup</type>
2123   - <description/>
2124   - <distribute>Y</distribute>
2125   - <custom_distribution/>
2126   - <copies>1</copies>
2127   - <partitioning>
2128   - <method>none</method>
2129   - <schema_name/>
2130   - </partitioning>
2131   - <connection>bus_control_variable</connection>
2132   - <cache>N</cache>
2133   - <cache_load_all>N</cache_load_all>
2134   - <cache_size>0</cache_size>
2135   - <lookup>
2136   - <schema/>
2137   - <table>bsth_c_s_gbi</table>
2138   - <orderby/>
2139   - <fail_on_multiple>N</fail_on_multiple>
2140   - <eat_row_on_failure>N</eat_row_on_failure>
2141   - <key>
2142   - <name>xlid</name>
2143   - <field>xl</field>
2144   - <condition>&#x3d;</condition>
2145   - <name2/>
2146   - </key>
2147   - <key>
2148   - <name>lp</name>
2149   - <field>lp_name</field>
2150   - <condition>&#x3d;</condition>
2151   - <name2/>
2152   - </key>
2153   - <key>
2154   - <name>iscanceled</name>
2155   - <field>is_cancel</field>
2156   - <condition>&#x3d;</condition>
2157   - <name2/>
2158   - </key>
2159   - <value>
2160   - <name>id</name>
2161   - <rename>lpid</rename>
2162   - <default/>
2163   - <type>Integer</type>
2164   - </value>
2165   - </lookup>
2166   - <cluster_schema/>
2167   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2168   - <xloc>1013</xloc>
2169   - <yloc>265</yloc>
2170   - <draw>Y</draw>
2171   - </GUI>
2172   - </step>
2173   -
2174   - <step>
2175   - <name>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ebf;&#x8def;&#x65b9;&#x5411;</name>
2176   - <type>DBLookup</type>
2177   - <description/>
2178   - <distribute>Y</distribute>
2179   - <custom_distribution/>
2180   - <copies>1</copies>
2181   - <partitioning>
2182   - <method>none</method>
2183   - <schema_name/>
2184   - </partitioning>
2185   - <connection>bus_control_variable</connection>
2186   - <cache>N</cache>
2187   - <cache_load_all>N</cache_load_all>
2188   - <cache_size>0</cache_size>
2189   - <lookup>
2190   - <schema/>
2191   - <table>bsth_c_stationroute</table>
2192   - <orderby/>
2193   - <fail_on_multiple>N</fail_on_multiple>
2194   - <eat_row_on_failure>N</eat_row_on_failure>
2195   - <key>
2196   - <name>xlid</name>
2197   - <field>line</field>
2198   - <condition>&#x3d;</condition>
2199   - <name2/>
2200   - </key>
2201   - <key>
2202   - <name>startZdtype_calcu</name>
2203   - <field>station_mark</field>
2204   - <condition>&#x3d;</condition>
2205   - <name2/>
2206   - </key>
2207   - <key>
2208   - <name>qdzname_calcu</name>
2209   - <field>station_name</field>
2210   - <condition>&#x3d;</condition>
2211   - <name2/>
2212   - </key>
2213   - <key>
2214   - <name>destory</name>
2215   - <field>destroy</field>
2216   - <condition>&#x3d;</condition>
2217   - <name2/>
2218   - </key>
2219   - <value>
2220   - <name>directions</name>
2221   - <rename>sxx</rename>
2222   - <default/>
2223   - <type>String</type>
2224   - </value>
2225   - </lookup>
2226   - <cluster_schema/>
2227   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2228   - <xloc>548</xloc>
2229   - <yloc>610</yloc>
2230   - <draw>Y</draw>
2231   - </GUI>
2232   - </step>
2233   -
2234   - <step>
2235   - <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>
2236   - <type>DBLookup</type>
2237   - <description/>
2238   - <distribute>Y</distribute>
2239   - <custom_distribution/>
2240   - <copies>1</copies>
2241   - <partitioning>
2242   - <method>none</method>
2243   - <schema_name/>
2244   - </partitioning>
2245   - <connection>bus_control_variable</connection>
2246   - <cache>Y</cache>
2247   - <cache_load_all>Y</cache_load_all>
2248   - <cache_size>0</cache_size>
2249   - <lookup>
2250   - <schema/>
2251   - <table>bsth_c_stationroute</table>
2252   - <orderby/>
2253   - <fail_on_multiple>N</fail_on_multiple>
2254   - <eat_row_on_failure>N</eat_row_on_failure>
2255   - <key>
2256   - <name>xlid</name>
2257   - <field>line</field>
2258   - <condition>&#x3d;</condition>
2259   - <name2/>
2260   - </key>
2261   - <key>
2262   - <name>endZdtype_calcu</name>
2263   - <field>station_mark</field>
2264   - <condition>&#x3d;</condition>
2265   - <name2/>
2266   - </key>
2267   - <key>
2268   - <name>sxx</name>
2269   - <field>directions</field>
2270   - <condition>&#x3d;</condition>
2271   - <name2/>
2272   - </key>
2273   - <key>
2274   - <name>destory</name>
2275   - <field>destroy</field>
2276   - <condition>&#x3d;</condition>
2277   - <name2/>
2278   - </key>
2279   - <value>
2280   - <name>station_name</name>
2281   - <rename>zdzname_calcu</rename>
2282   - <default/>
2283   - <type>Integer</type>
2284   - </value>
2285   - </lookup>
2286   - <cluster_schema/>
2287   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2288   - <xloc>550</xloc>
2289   - <yloc>701</yloc>
2290   - <draw>Y</draw>
2291   - </GUI>
2292   - </step>
2293   -
2294   - <step>
2295   - <name>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</name>
2296   - <type>DBLookup</type>
2297   - <description/>
2298   - <distribute>Y</distribute>
2299   - <custom_distribution/>
2300   - <copies>1</copies>
2301   - <partitioning>
2302   - <method>none</method>
2303   - <schema_name/>
2304   - </partitioning>
2305   - <connection>bus_control_variable</connection>
2306   - <cache>N</cache>
2307   - <cache_load_all>N</cache_load_all>
2308   - <cache_size>0</cache_size>
2309   - <lookup>
2310   - <schema/>
2311   - <table>bsth_c_stationroute</table>
2312   - <orderby/>
2313   - <fail_on_multiple>N</fail_on_multiple>
2314   - <eat_row_on_failure>N</eat_row_on_failure>
2315   - <key>
2316   - <name>xlid</name>
2317   - <field>line</field>
2318   - <condition>&#x3d;</condition>
2319   - <name2/>
2320   - </key>
2321   - <key>
2322   - <name>zdzname_calcu</name>
2323   - <field>station_name</field>
2324   - <condition>&#x3d;</condition>
2325   - <name2/>
2326   - </key>
2327   - <key>
2328   - <name>startZdtype_calcu</name>
2329   - <field>station_mark</field>
2330   - <condition>&#x3d;</condition>
2331   - <name2/>
2332   - </key>
2333   - <key>
2334   - <name>destory</name>
2335   - <field>destroy</field>
2336   - <condition>&#x3d;</condition>
2337   - <name2/>
2338   - </key>
2339   - <value>
2340   - <name>directions</name>
2341   - <rename>sxx2</rename>
2342   - <default/>
2343   - <type>Integer</type>
2344   - </value>
2345   - <value>
2346   - <name>station</name>
2347   - <rename>qdzid</rename>
2348   - <default/>
2349   - <type>Integer</type>
2350   - </value>
2351   - <value>
2352   - <name>station_code</name>
2353   - <rename>qdzcode</rename>
2354   - <default/>
2355   - <type>String</type>
2356   - </value>
2357   - <value>
2358   - <name>station_name</name>
2359   - <rename>qname</rename>
2360   - <default/>
2361   - <type>String</type>
2362   - </value>
2363   - </lookup>
2364   - <cluster_schema/>
2365   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2366   - <xloc>551</xloc>
2367   - <yloc>782</yloc>
2368   - <draw>Y</draw>
2369   - </GUI>
2370   - </step>
2371   -
2372   - <step>
2373   - <name>&#x6b63;&#x5e38;&#x73ed;&#x6b21;_&#x5904;&#x7406;&#x6570;&#x636e;</name>
2374   - <type>ScriptValueMod</type>
2375   - <description/>
2376   - <distribute>Y</distribute>
2377   - <custom_distribution/>
2378   - <copies>1</copies>
2379   - <partitioning>
2380   - <method>none</method>
2381   - <schema_name/>
2382   - </partitioning>
2383   - <compatible>N</compatible>
2384   - <optimizationLevel>9</optimizationLevel>
2385   - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
2386   - <jsScript_name>Script 1</jsScript_name>
2387   - <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>
2388   - </jsScript> </jsScripts> <fields> <field> <name>sendZdtype</name>
2389   - <rename>sendZdtype</rename>
2390   - <type>String</type>
2391   - <length>-1</length>
2392   - <precision>-1</precision>
2393   - <replace>N</replace>
2394   - </field> <field> <name>endZdtype</name>
2395   - <rename>endZdtype</rename>
2396   - <type>String</type>
2397   - <length>-1</length>
2398   - <precision>-1</precision>
2399   - <replace>N</replace>
2400   - </field> <field> <name>destory</name>
2401   - <rename>destory</rename>
2402   - <type>Integer</type>
2403   - <length>-1</length>
2404   - <precision>-1</precision>
2405   - <replace>N</replace>
2406   - </field> </fields> <cluster_schema/>
2407   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2408   - <xloc>588</xloc>
2409   - <yloc>403</yloc>
2410   - <draw>Y</draw>
2411   - </GUI>
2412   - </step>
2413   -
2414   - <step>
2415   - <name>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</name>
2416   - <type>Dummy</type>
2417   - <description/>
2418   - <distribute>Y</distribute>
2419   - <custom_distribution/>
2420   - <copies>1</copies>
2421   - <partitioning>
2422   - <method>none</method>
2423   - <schema_name/>
2424   - </partitioning>
2425   - <cluster_schema/>
2426   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2427   - <xloc>725</xloc>
2428   - <yloc>404</yloc>
2429   - <draw>Y</draw>
2430   - </GUI>
2431   - </step>
2432   -
2433   - <step>
2434   - <name>&#x6dfb;&#x52a0;&#x53d1;&#x8f66;&#x987a;&#x5e8f;&#x53f7;</name>
2435   - <type>GroupBy</type>
2436   - <description/>
2437   - <distribute>Y</distribute>
2438   - <custom_distribution/>
2439   - <copies>1</copies>
2440   - <partitioning>
2441   - <method>none</method>
2442   - <schema_name/>
2443   - </partitioning>
2444   - <all_rows>Y</all_rows>
2445   - <ignore_aggregate>N</ignore_aggregate>
2446   - <field_ignore/>
2447   - <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
2448   - <prefix>grp</prefix>
2449   - <add_linenr>Y</add_linenr>
2450   - <linenr_fieldname>fcno</linenr_fieldname>
2451   - <give_back_row>N</give_back_row>
2452   - <group>
2453   - <field>
2454   - <name>lp</name>
2455   - </field>
2456   - </group>
2457   - <fields>
2458   - </fields>
2459   - <cluster_schema/>
2460   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2461   - <xloc>442</xloc>
2462   - <yloc>44</yloc>
2463   - <draw>Y</draw>
2464   - </GUI>
2465   - </step>
2466   -
2467   - <step>
2468   - <name>&#x6dfb;&#x52a0;&#x5bf9;&#x5e94;&#x73ed;&#x6b21;&#x6570;</name>
2469   - <type>GroupBy</type>
2470   - <description/>
2471   - <distribute>Y</distribute>
2472   - <custom_distribution/>
2473   - <copies>1</copies>
2474   - <partitioning>
2475   - <method>none</method>
2476   - <schema_name/>
2477   - </partitioning>
2478   - <all_rows>Y</all_rows>
2479   - <ignore_aggregate>N</ignore_aggregate>
2480   - <field_ignore/>
2481   - <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
2482   - <prefix>grp</prefix>
2483   - <add_linenr>Y</add_linenr>
2484   - <linenr_fieldname>bcs</linenr_fieldname>
2485   - <give_back_row>N</give_back_row>
2486   - <group>
2487   - </group>
2488   - <fields>
2489   - </fields>
2490   - <cluster_schema/>
2491   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2492   - <xloc>692</xloc>
2493   - <yloc>44</yloc>
2494   - <draw>Y</draw>
2495   - </GUI>
2496   - </step>
2497   -
2498   - <step>
2499   - <name>&#x73ed;&#x6b21;&#x6570;&#x636e;&#x8303;&#x5f0f;&#x5316;</name>
2500   - <type>Normaliser</type>
2501   - <description/>
2502   - <distribute>Y</distribute>
2503   - <custom_distribution/>
2504   - <copies>1</copies>
2505   - <partitioning>
2506   - <method>none</method>
2507   - <schema_name/>
2508   - </partitioning>
2509   - <typefield>&#x7ad9;&#x70b9;&#x540d;&#x79f0;</typefield>
2510   - <fields> </fields> <cluster_schema/>
2511   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2512   - <xloc>248</xloc>
2513   - <yloc>44</yloc>
2514   - <draw>Y</draw>
2515   - </GUI>
2516   - </step>
2517   -
2518   - <step>
2519   - <name>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178;</name>
2520   - <type>ValueMapper</type>
2521   - <description/>
2522   - <distribute>Y</distribute>
2523   - <custom_distribution/>
2524   - <copies>1</copies>
2525   - <partitioning>
2526   - <method>none</method>
2527   - <schema_name/>
2528   - </partitioning>
2529   - <field_to_use>bctype</field_to_use>
2530   - <target_field>bctype_code</target_field>
2531   - <non_match_default>&#x672a;&#x77e5;&#x7c7b;&#x578b;</non_match_default>
2532   - <fields>
2533   - <field>
2534   - <source_value>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</source_value>
2535   - <target_value>normal</target_value>
2536   - </field>
2537   - <field>
2538   - <source_value>&#x51fa;&#x573a;</source_value>
2539   - <target_value>out</target_value>
2540   - </field>
2541   - <field>
2542   - <source_value>&#x8fdb;&#x573a;</source_value>
2543   - <target_value>in</target_value>
2544   - </field>
2545   - <field>
2546   - <source_value>&#x52a0;&#x6cb9;</source_value>
2547   - <target_value>oil</target_value>
2548   - </field>
2549   - <field>
2550   - <source_value>&#x4e34;&#x52a0;</source_value>
2551   - <target_value>temp</target_value>
2552   - </field>
2553   - <field>
2554   - <source_value>&#x533a;&#x95f4;</source_value>
2555   - <target_value>region</target_value>
2556   - </field>
2557   - <field>
2558   - <source_value>&#x653e;&#x7a7a;</source_value>
2559   - <target_value>venting</target_value>
2560   - </field>
2561   - <field>
2562   - <source_value>&#x653e;&#x5927;&#x7ad9;</source_value>
2563   - <target_value>major</target_value>
2564   - </field>
2565   - </fields>
2566   - <cluster_schema/>
2567   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2568   - <xloc>149</xloc>
2569   - <yloc>491</yloc>
2570   - <draw>Y</draw>
2571   - </GUI>
2572   - </step>
2573   -
2574   - <step>
2575   - <name>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 2</name>
2576   - <type>ValueMapper</type>
2577   - <description/>
2578   - <distribute>Y</distribute>
2579   - <custom_distribution/>
2580   - <copies>1</copies>
2581   - <partitioning>
2582   - <method>none</method>
2583   - <schema_name/>
2584   - </partitioning>
2585   - <field_to_use>bctype</field_to_use>
2586   - <target_field>bctype_code</target_field>
2587   - <non_match_default>&#x672a;&#x77e5;&#x7c7b;&#x578b;</non_match_default>
2588   - <fields>
2589   - <field>
2590   - <source_value>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</source_value>
2591   - <target_value>normal</target_value>
2592   - </field>
2593   - <field>
2594   - <source_value>&#x51fa;&#x573a;</source_value>
2595   - <target_value>out</target_value>
2596   - </field>
2597   - <field>
2598   - <source_value>&#x8fdb;&#x573a;</source_value>
2599   - <target_value>in</target_value>
2600   - </field>
2601   - <field>
2602   - <source_value>&#x52a0;&#x6cb9;</source_value>
2603   - <target_value>oil</target_value>
2604   - </field>
2605   - <field>
2606   - <source_value>&#x4e34;&#x52a0;</source_value>
2607   - <target_value>temp</target_value>
2608   - </field>
2609   - <field>
2610   - <source_value>&#x533a;&#x95f4;</source_value>
2611   - <target_value>region</target_value>
2612   - </field>
2613   - <field>
2614   - <source_value>&#x653e;&#x7a7a;</source_value>
2615   - <target_value>venting</target_value>
2616   - </field>
2617   - <field>
2618   - <source_value>&#x653e;&#x5927;&#x7ad9;</source_value>
2619   - <target_value>major</target_value>
2620   - </field>
2621   - </fields>
2622   - <cluster_schema/>
2623   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2624   - <xloc>333</xloc>
2625   - <yloc>681</yloc>
2626   - <draw>Y</draw>
2627   - </GUI>
2628   - </step>
2629   -
2630   - <step>
2631   - <name>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 3</name>
2632   - <type>ValueMapper</type>
2633   - <description/>
2634   - <distribute>Y</distribute>
2635   - <custom_distribution/>
2636   - <copies>1</copies>
2637   - <partitioning>
2638   - <method>none</method>
2639   - <schema_name/>
2640   - </partitioning>
2641   - <field_to_use>bctype</field_to_use>
2642   - <target_field>bctype_code</target_field>
2643   - <non_match_default>&#x672a;&#x77e5;&#x7c7b;&#x578b;</non_match_default>
2644   - <fields>
2645   - <field>
2646   - <source_value>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</source_value>
2647   - <target_value>normal</target_value>
2648   - </field>
2649   - <field>
2650   - <source_value>&#x51fa;&#x573a;</source_value>
2651   - <target_value>out</target_value>
2652   - </field>
2653   - <field>
2654   - <source_value>&#x8fdb;&#x573a;</source_value>
2655   - <target_value>in</target_value>
2656   - </field>
2657   - <field>
2658   - <source_value>&#x52a0;&#x6cb9;</source_value>
2659   - <target_value>oil</target_value>
2660   - </field>
2661   - <field>
2662   - <source_value>&#x4e34;&#x52a0;</source_value>
2663   - <target_value>temp</target_value>
2664   - </field>
2665   - <field>
2666   - <source_value>&#x533a;&#x95f4;</source_value>
2667   - <target_value>region</target_value>
2668   - </field>
2669   - <field>
2670   - <source_value>&#x653e;&#x7a7a;</source_value>
2671   - <target_value>venting</target_value>
2672   - </field>
2673   - <field>
2674   - <source_value>&#x653e;&#x5927;&#x7ad9;</source_value>
2675   - <target_value>major</target_value>
2676   - </field>
2677   - </fields>
2678   - <cluster_schema/>
2679   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2680   - <xloc>551</xloc>
2681   - <yloc>928</yloc>
2682   - <draw>Y</draw>
2683   - </GUI>
2684   - </step>
2685   -
2686   - <step>
2687   - <name>&#x7c7b;&#x578b;&#x4fee;&#x6b63;</name>
2688   - <type>SelectValues</type>
2689   - <description/>
2690   - <distribute>Y</distribute>
2691   - <custom_distribution/>
2692   - <copies>1</copies>
2693   - <partitioning>
2694   - <method>none</method>
2695   - <schema_name/>
2696   - </partitioning>
2697   - <fields> <select_unspecified>N</select_unspecified>
2698   - <meta> <name>jhlc</name>
2699   - <rename>jhlc</rename>
2700   - <type>Number</type>
2701   - <length>-2</length>
2702   - <precision>-2</precision>
2703   - <conversion_mask/>
2704   - <date_format_lenient>false</date_format_lenient>
2705   - <date_format_locale/>
2706   - <date_format_timezone/>
2707   - <lenient_string_to_number>false</lenient_string_to_number>
2708   - <encoding/>
2709   - <decimal_symbol/>
2710   - <grouping_symbol/>
2711   - <currency_symbol/>
2712   - <storage_type/>
2713   - </meta> <meta> <name>bcsj</name>
2714   - <rename>bcsj</rename>
2715   - <type>Integer</type>
2716   - <length>-2</length>
2717   - <precision>-2</precision>
2718   - <conversion_mask/>
2719   - <date_format_lenient>false</date_format_lenient>
2720   - <date_format_locale/>
2721   - <date_format_timezone/>
2722   - <lenient_string_to_number>false</lenient_string_to_number>
2723   - <encoding/>
2724   - <decimal_symbol/>
2725   - <grouping_symbol/>
2726   - <currency_symbol/>
2727   - <storage_type/>
2728   - </meta> </fields> <cluster_schema/>
2729   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2730   - <xloc>146</xloc>
2731   - <yloc>768</yloc>
2732   - <draw>Y</draw>
2733   - </GUI>
2734   - </step>
2735   -
2736   - <step>
2737   - <name>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 2</name>
2738   - <type>SelectValues</type>
2739   - <description/>
2740   - <distribute>Y</distribute>
2741   - <custom_distribution/>
2742   - <copies>1</copies>
2743   - <partitioning>
2744   - <method>none</method>
2745   - <schema_name/>
2746   - </partitioning>
2747   - <fields> <select_unspecified>N</select_unspecified>
2748   - <meta> <name>out_mileage</name>
2749   - <rename>out_mileage</rename>
2750   - <type>Number</type>
2751   - <length>-2</length>
2752   - <precision>-2</precision>
2753   - <conversion_mask/>
2754   - <date_format_lenient>false</date_format_lenient>
2755   - <date_format_locale/>
2756   - <date_format_timezone/>
2757   - <lenient_string_to_number>false</lenient_string_to_number>
2758   - <encoding/>
2759   - <decimal_symbol/>
2760   - <grouping_symbol/>
2761   - <currency_symbol/>
2762   - <storage_type/>
2763   - </meta> <meta> <name>out_time</name>
2764   - <rename>out_time</rename>
2765   - <type>Integer</type>
2766   - <length>-2</length>
2767   - <precision>-2</precision>
2768   - <conversion_mask/>
2769   - <date_format_lenient>false</date_format_lenient>
2770   - <date_format_locale/>
2771   - <date_format_timezone/>
2772   - <lenient_string_to_number>false</lenient_string_to_number>
2773   - <encoding/>
2774   - <decimal_symbol/>
2775   - <grouping_symbol/>
2776   - <currency_symbol/>
2777   - <storage_type/>
2778   - </meta> <meta> <name>sxx</name>
2779   - <rename>sxx</rename>
2780   - <type>Integer</type>
2781   - <length>-2</length>
2782   - <precision>-2</precision>
2783   - <conversion_mask/>
2784   - <date_format_lenient>false</date_format_lenient>
2785   - <date_format_locale/>
2786   - <date_format_timezone/>
2787   - <lenient_string_to_number>false</lenient_string_to_number>
2788   - <encoding/>
2789   - <decimal_symbol/>
2790   - <grouping_symbol/>
2791   - <currency_symbol/>
2792   - <storage_type/>
2793   - </meta> </fields> <cluster_schema/>
2794   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2795   - <xloc>338</xloc>
2796   - <yloc>1008</yloc>
2797   - <draw>Y</draw>
2798   - </GUI>
2799   - </step>
2800   -
2801   - <step>
2802   - <name>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 3</name>
2803   - <type>SelectValues</type>
2804   - <description/>
2805   - <distribute>Y</distribute>
2806   - <custom_distribution/>
2807   - <copies>1</copies>
2808   - <partitioning>
2809   - <method>none</method>
2810   - <schema_name/>
2811   - </partitioning>
2812   - <fields> <select_unspecified>N</select_unspecified>
2813   - <meta> <name>parade_mileage</name>
2814   - <rename>parade_mileage</rename>
2815   - <type>Number</type>
2816   - <length>-2</length>
2817   - <precision>-2</precision>
2818   - <conversion_mask/>
2819   - <date_format_lenient>false</date_format_lenient>
2820   - <date_format_locale/>
2821   - <date_format_timezone/>
2822   - <lenient_string_to_number>false</lenient_string_to_number>
2823   - <encoding/>
2824   - <decimal_symbol/>
2825   - <grouping_symbol/>
2826   - <currency_symbol/>
2827   - <storage_type/>
2828   - </meta> <meta> <name>parade_time</name>
2829   - <rename>parade_time</rename>
2830   - <type>Integer</type>
2831   - <length>-2</length>
2832   - <precision>-2</precision>
2833   - <conversion_mask/>
2834   - <date_format_lenient>false</date_format_lenient>
2835   - <date_format_locale/>
2836   - <date_format_timezone/>
2837   - <lenient_string_to_number>false</lenient_string_to_number>
2838   - <encoding/>
2839   - <decimal_symbol/>
2840   - <grouping_symbol/>
2841   - <currency_symbol/>
2842   - <storage_type/>
2843   - </meta> <meta> <name>sxx2</name>
2844   - <rename>sxx2</rename>
2845   - <type>Integer</type>
2846   - <length>-2</length>
2847   - <precision>-2</precision>
2848   - <conversion_mask/>
2849   - <date_format_lenient>false</date_format_lenient>
2850   - <date_format_locale/>
2851   - <date_format_timezone/>
2852   - <lenient_string_to_number>false</lenient_string_to_number>
2853   - <encoding/>
2854   - <decimal_symbol/>
2855   - <grouping_symbol/>
2856   - <currency_symbol/>
2857   - <storage_type/>
2858   - </meta> </fields> <cluster_schema/>
2859   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2860   - <xloc>847</xloc>
2861   - <yloc>1003</yloc>
2862   - <draw>Y</draw>
2863   - </GUI>
2864   - </step>
2865   -
2866   - <step>
2867   - <name>&#x8ba1;&#x7b97;&#x73ed;&#x6b21;&#x7c7b;&#x578b;</name>
2868   - <type>ValueMapper</type>
2869   - <description/>
2870   - <distribute>Y</distribute>
2871   - <custom_distribution/>
2872   - <copies>1</copies>
2873   - <partitioning>
2874   - <method>none</method>
2875   - <schema_name/>
2876   - </partitioning>
2877   - <field_to_use>qdzname</field_to_use>
2878   - <target_field>bctype</target_field>
2879   - <non_match_default>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</non_match_default>
2880   - <fields>
2881   - <field>
2882   - <source_value>&#x51fa;&#x573a;</source_value>
2883   - <target_value>&#x51fa;&#x573a;</target_value>
2884   - </field>
2885   - <field>
2886   - <source_value>&#x8fdb;&#x573a;</source_value>
2887   - <target_value>&#x8fdb;&#x573a;</target_value>
2888   - </field>
2889   - </fields>
2890   - <cluster_schema/>
2891   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2892   - <xloc>1014</xloc>
2893   - <yloc>401</yloc>
2894   - <draw>Y</draw>
2895   - </GUI>
2896   - </step>
2897   -
2898   - <step>
2899   - <name>&#x8bb0;&#x5f55;&#x5173;&#x8054; &#x28;&#x7b1b;&#x5361;&#x5c14;&#x8f93;&#x51fa;&#x29;</name>
2900   - <type>JoinRows</type>
2901   - <description/>
2902   - <distribute>Y</distribute>
2903   - <custom_distribution/>
2904   - <copies>1</copies>
2905   - <partitioning>
2906   - <method>none</method>
2907   - <schema_name/>
2908   - </partitioning>
2909   - <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
2910   - <prefix>out</prefix>
2911   - <cache_size>500</cache_size>
2912   - <main/>
2913   - <compare>
2914   -<condition>
2915   - <negated>N</negated>
2916   - <leftvalue/>
2917   - <function>&#x3d;</function>
2918   - <rightvalue/>
2919   - </condition>
2920   - </compare>
2921   - <cluster_schema/>
2922   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2923   - <xloc>310</xloc>
2924   - <yloc>133</yloc>
2925   - <draw>Y</draw>
2926   - </GUI>
2927   - </step>
2928   -
2929   - <step>
2930   - <name>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;&#xff08;&#x53d1;&#x8f66;&#x65f6;&#x95f4;&#x4e3a;&#x7a7a;&#xff09;</name>
2931   - <type>FilterRows</type>
2932   - <description/>
2933   - <distribute>Y</distribute>
2934   - <custom_distribution/>
2935   - <copies>1</copies>
2936   - <partitioning>
2937   - <method>none</method>
2938   - <schema_name/>
2939   - </partitioning>
2940   -<send_true_to/>
2941   -<send_false_to/>
2942   - <compare>
2943   -<condition>
2944   - <negated>N</negated>
2945   - <leftvalue>sendtime</leftvalue>
2946   - <function>IS NOT NULL</function>
2947   - <rightvalue/>
2948   - </condition>
2949   - </compare>
2950   - <cluster_schema/>
2951   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2952   - <xloc>571</xloc>
2953   - <yloc>44</yloc>
2954   - <draw>Y</draw>
2955   - </GUI>
2956   - </step>
2957   -
2958   - <step>
2959   - <name>&#x8fdb;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x8d77;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</name>
2960   - <type>ScriptValueMod</type>
2961   - <description/>
2962   - <distribute>Y</distribute>
2963   - <custom_distribution/>
2964   - <copies>1</copies>
2965   - <partitioning>
2966   - <method>none</method>
2967   - <schema_name/>
2968   - </partitioning>
2969   - <compatible>N</compatible>
2970   - <optimizationLevel>9</optimizationLevel>
2971   - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
2972   - <jsScript_name>Script 1</jsScript_name>
2973   - <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>
2974   - </jsScript> </jsScripts> <fields> <field> <name>qdzname_calcu</name>
2975   - <rename>qdzname_calcu</rename>
2976   - <type>String</type>
2977   - <length>-1</length>
2978   - <precision>-1</precision>
2979   - <replace>N</replace>
2980   - </field> <field> <name>startZdtype_calcu</name>
2981   - <rename>startZdtype_calcu</rename>
2982   - <type>String</type>
2983   - <length>-1</length>
2984   - <precision>-1</precision>
2985   - <replace>N</replace>
2986   - </field> <field> <name>endZdtype_calcu</name>
2987   - <rename>endZdtype_calcu</rename>
2988   - <type>String</type>
2989   - <length>-1</length>
2990   - <precision>-1</precision>
2991   - <replace>N</replace>
2992   - </field> <field> <name>destory</name>
2993   - <rename>destory</rename>
2994   - <type>Integer</type>
2995   - <length>-1</length>
2996   - <precision>-1</precision>
2997   - <replace>N</replace>
2998   - </field> </fields> <cluster_schema/>
2999   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
3000   - <xloc>754</xloc>
3001   - <yloc>610</yloc>
3002   - <draw>Y</draw>
3003   - </GUI>
3004   - </step>
3005   -
3006   - <step>
3007   - <name>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</name>
3008   - <type>Dummy</type>
3009   - <description/>
3010   - <distribute>Y</distribute>
3011   - <custom_distribution/>
3012   - <copies>1</copies>
3013   - <partitioning>
3014   - <method>none</method>
3015   - <schema_name/>
3016   - </partitioning>
3017   - <cluster_schema/>
3018   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
3019   - <xloc>997</xloc>
3020   - <yloc>606</yloc>
3021   - <draw>Y</draw>
3022   - </GUI>
3023   - </step>
3024   -
3025   - <step_error_handling>
3026   - <error>
3027   - <source_step>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail</source_step>
3028   - <target_step/>
3029   - <is_enabled>Y</is_enabled>
3030   - <nr_valuename>c1</nr_valuename>
3031   - <descriptions_valuename>c2</descriptions_valuename>
3032   - <fields_valuename>c3</fields_valuename>
3033   - <codes_valuename>c4</codes_valuename>
3034   - <max_errors/>
3035   - <max_pct_errors/>
3036   - <min_pct_rows/>
3037   - </error>
3038   - </step_error_handling>
3039   - <slave-step-copy-partition-distribution>
3040   -</slave-step-copy-partition-distribution>
3041   - <slave_transformation>N</slave_transformation>
3042   -
3043   -</transformation>
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<transformation>
  3 + <info>
  4 + <name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x5bfc;&#x5165;2</name>
  5 + <description>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;&#x5bfc;&#x5165;</description>
  6 + <extended_description>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;</extended_description>
  7 + <trans_version/>
  8 + <trans_type>Normal</trans_type>
  9 + <trans_status>0</trans_status>
  10 + <directory>&#x2f;</directory>
  11 + <parameters>
  12 + </parameters>
  13 + <log>
  14 +<trans-log-table><connection/>
  15 +<schema/>
  16 +<table/>
  17 +<size_limit_lines/>
  18 +<interval/>
  19 +<timeout_days/>
  20 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STATUS</id><enabled>Y</enabled><name>STATUS</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name><subject/></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name><subject/></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name><subject/></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name><subject/></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name><subject/></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name><subject/></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>STARTDATE</id><enabled>Y</enabled><name>STARTDATE</name></field><field><id>ENDDATE</id><enabled>Y</enabled><name>ENDDATE</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>DEPDATE</id><enabled>Y</enabled><name>DEPDATE</name></field><field><id>REPLAYDATE</id><enabled>Y</enabled><name>REPLAYDATE</name></field><field><id>LOG_FIELD</id><enabled>Y</enabled><name>LOG_FIELD</name></field><field><id>EXECUTING_SERVER</id><enabled>N</enabled><name>EXECUTING_SERVER</name></field><field><id>EXECUTING_USER</id><enabled>N</enabled><name>EXECUTING_USER</name></field><field><id>CLIENT</id><enabled>N</enabled><name>CLIENT</name></field></trans-log-table>
  21 +<perf-log-table><connection/>
  22 +<schema/>
  23 +<table/>
  24 +<interval/>
  25 +<timeout_days/>
  26 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>SEQ_NR</id><enabled>Y</enabled><name>SEQ_NR</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>INPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>INPUT_BUFFER_ROWS</name></field><field><id>OUTPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>OUTPUT_BUFFER_ROWS</name></field></perf-log-table>
  27 +<channel-log-table><connection/>
  28 +<schema/>
  29 +<table/>
  30 +<timeout_days/>
  31 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>LOGGING_OBJECT_TYPE</id><enabled>Y</enabled><name>LOGGING_OBJECT_TYPE</name></field><field><id>OBJECT_NAME</id><enabled>Y</enabled><name>OBJECT_NAME</name></field><field><id>OBJECT_COPY</id><enabled>Y</enabled><name>OBJECT_COPY</name></field><field><id>REPOSITORY_DIRECTORY</id><enabled>Y</enabled><name>REPOSITORY_DIRECTORY</name></field><field><id>FILENAME</id><enabled>Y</enabled><name>FILENAME</name></field><field><id>OBJECT_ID</id><enabled>Y</enabled><name>OBJECT_ID</name></field><field><id>OBJECT_REVISION</id><enabled>Y</enabled><name>OBJECT_REVISION</name></field><field><id>PARENT_CHANNEL_ID</id><enabled>Y</enabled><name>PARENT_CHANNEL_ID</name></field><field><id>ROOT_CHANNEL_ID</id><enabled>Y</enabled><name>ROOT_CHANNEL_ID</name></field></channel-log-table>
  32 +<step-log-table><connection/>
  33 +<schema/>
  34 +<table/>
  35 +<timeout_days/>
  36 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>LOG_FIELD</id><enabled>N</enabled><name>LOG_FIELD</name></field></step-log-table>
  37 +<metrics-log-table><connection/>
  38 +<schema/>
  39 +<table/>
  40 +<timeout_days/>
  41 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>METRICS_DATE</id><enabled>Y</enabled><name>METRICS_DATE</name></field><field><id>METRICS_CODE</id><enabled>Y</enabled><name>METRICS_CODE</name></field><field><id>METRICS_DESCRIPTION</id><enabled>Y</enabled><name>METRICS_DESCRIPTION</name></field><field><id>METRICS_SUBJECT</id><enabled>Y</enabled><name>METRICS_SUBJECT</name></field><field><id>METRICS_TYPE</id><enabled>Y</enabled><name>METRICS_TYPE</name></field><field><id>METRICS_VALUE</id><enabled>Y</enabled><name>METRICS_VALUE</name></field></metrics-log-table>
  42 + </log>
  43 + <maxdate>
  44 + <connection/>
  45 + <table/>
  46 + <field/>
  47 + <offset>0.0</offset>
  48 + <maxdiff>0.0</maxdiff>
  49 + </maxdate>
  50 + <size_rowset>10000</size_rowset>
  51 + <sleep_time_empty>50</sleep_time_empty>
  52 + <sleep_time_full>50</sleep_time_full>
  53 + <unique_connections>N</unique_connections>
  54 + <feedback_shown>Y</feedback_shown>
  55 + <feedback_size>50000</feedback_size>
  56 + <using_thread_priorities>Y</using_thread_priorities>
  57 + <shared_objects_file/>
  58 + <capture_step_performance>N</capture_step_performance>
  59 + <step_performance_capturing_delay>1000</step_performance_capturing_delay>
  60 + <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit>
  61 + <dependencies>
  62 + </dependencies>
  63 + <partitionschemas>
  64 + </partitionschemas>
  65 + <slaveservers>
  66 + </slaveservers>
  67 + <clusterschemas>
  68 + </clusterschemas>
  69 + <created_user>-</created_user>
  70 + <created_date>2016&#x2f;06&#x2f;30 12&#x3a;21&#x3a;57.536</created_date>
  71 + <modified_user>-</modified_user>
  72 + <modified_date>2016&#x2f;06&#x2f;30 12&#x3a;21&#x3a;57.536</modified_date>
  73 + <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA&#x3d;</key_for_session_key>
  74 + <is_key_private>N</is_key_private>
  75 + </info>
  76 + <notepads>
  77 + <notepad>
  78 + <note>&#x5b57;&#x5178;&#x8868;&#x5bf9;&#x5e94;&#xff08;&#x4ee5;&#x540e;&#x76f4;&#x63a5;&#x67e5;&#x627e;&#x8868; bsth_c_sys_dictionary&#xff09;&#xa;&#x7c7b;&#x578b; &#x4ee3;&#x7801; &#x540d;&#x79f0;&#xa;LineTrend 0 &#x4e0a;&#x884c;&#xa;LineTrend 1 &#x4e0b;&#x884c;&#xa;ScheduleType normal &#x6b63;&#x5e38;&#x73ed;&#x6b21;&#xa;ScheduleType out &#x51fa;&#x573a;&#xa;ScheduleType in &#x8fdb;&#x573a;&#xa;ScheduleType temp &#x4e34;&#x52a0;&#xa;ScheduleType region &#x533a;&#x95f4;&#xa;ScheduleType venting &#x653e;&#x7a7a;&#xa;ScheduleType major &#x653e;&#x5927;&#x7ad9;</note>
  79 + <xloc>606</xloc>
  80 + <yloc>129</yloc>
  81 + <width>332</width>
  82 + <heigth>186</heigth>
  83 + <fontname>YaHei Consolas Hybrid</fontname>
  84 + <fontsize>12</fontsize>
  85 + <fontbold>N</fontbold>
  86 + <fontitalic>N</fontitalic>
  87 + <fontcolorred>0</fontcolorred>
  88 + <fontcolorgreen>0</fontcolorgreen>
  89 + <fontcolorblue>0</fontcolorblue>
  90 + <backgroundcolorred>255</backgroundcolorred>
  91 + <backgroundcolorgreen>205</backgroundcolorgreen>
  92 + <backgroundcolorblue>112</backgroundcolorblue>
  93 + <bordercolorred>100</bordercolorred>
  94 + <bordercolorgreen>100</bordercolorgreen>
  95 + <bordercolorblue>100</bordercolorblue>
  96 + <drawshadow>Y</drawshadow>
  97 + </notepad>
  98 + <notepad>
  99 + <note>&#x56e0;&#x4e3a;&#x65f6;&#x523b;&#x8868;&#x8f93;&#x5165;&#x683c;&#x5f0f;&#x4e0d;&#x786e;&#x5b9a;&#x6027;&#xff0c;&#x4e3b;&#x8981;&#x56e0;&#x4e3a;&#x8868;&#x7ed3;&#x6784;&#x662f;&#x53cd;&#x8303;&#x5f0f;&#x5316;&#x7684;&#xff0c;&#xa;&#x6240;&#x4ee5;&#x9700;&#x8981;&#x5916;&#x90e8;&#x52a8;&#x6001;&#x6307;&#x5b9a;&#x613f;&#x6570;&#x636e;&#xff0c;&#x5934;&#x4e09;&#x4e2a;step&#x52a8;&#x6001;&#x6307;&#x5b9a;&#x613f;&#x6570;&#x636e;&#xa;&#xa;</note>
  100 + <xloc>79</xloc>
  101 + <yloc>206</yloc>
  102 + <width>346</width>
  103 + <heigth>74</heigth>
  104 + <fontname>YaHei Consolas Hybrid</fontname>
  105 + <fontsize>12</fontsize>
  106 + <fontbold>N</fontbold>
  107 + <fontitalic>N</fontitalic>
  108 + <fontcolorred>0</fontcolorred>
  109 + <fontcolorgreen>0</fontcolorgreen>
  110 + <fontcolorblue>0</fontcolorblue>
  111 + <backgroundcolorred>255</backgroundcolorred>
  112 + <backgroundcolorgreen>205</backgroundcolorgreen>
  113 + <backgroundcolorblue>112</backgroundcolorblue>
  114 + <bordercolorred>100</bordercolorred>
  115 + <bordercolorgreen>100</bordercolorgreen>
  116 + <bordercolorblue>100</bordercolorblue>
  117 + <drawshadow>Y</drawshadow>
  118 + </notepad>
  119 + <notepad>
  120 + <note>&#x8fd9;&#x91cc;&#x6709;&#x4e9b;&#x95ee;&#x9898;&#xa;&#x5728;window2012&#x7684;&#x73af;&#x5883;&#x4e0b;&#xff0c;&#xa;MySql&#x6570;&#x636e;&#x5e93;&#x67e5;&#x8be2;&#x4e2d;&#x5982;&#x679c;&#x8fd4;&#x56de;&#x4e2d;&#x6587;&#x5185;&#x5bb9;&#x7684;&#x5b57;&#x6bb5;&#xff0c;&#x8fd9;&#x4e2a;&#x5185;&#x5bb9;&#x4e71;&#x7801;&#xa;&#x89e3;&#x51b3;&#x529e;&#x6cd5;&#xff0c;&#x5c31;&#x662f;&#x6570;&#x636e;&#x5e93;&#x67e5;&#x8be2;&#x5168;&#x90e8;&#x7f13;&#x5b58;&#xff0c;&#x5c31;&#x4e0d;&#x4e71;&#x7801;&#xa;linux&#x73af;&#x5883;&#x4e0b;&#x6ca1;&#x95ee;&#x9898;</note>
  121 + <xloc>721</xloc>
  122 + <yloc>762</yloc>
  123 + <width>333</width>
  124 + <heigth>90</heigth>
  125 + <fontname>YaHei Consolas Hybrid</fontname>
  126 + <fontsize>12</fontsize>
  127 + <fontbold>N</fontbold>
  128 + <fontitalic>N</fontitalic>
  129 + <fontcolorred>0</fontcolorred>
  130 + <fontcolorgreen>0</fontcolorgreen>
  131 + <fontcolorblue>0</fontcolorblue>
  132 + <backgroundcolorred>255</backgroundcolorred>
  133 + <backgroundcolorgreen>205</backgroundcolorgreen>
  134 + <backgroundcolorblue>112</backgroundcolorblue>
  135 + <bordercolorred>100</bordercolorred>
  136 + <bordercolorgreen>100</bordercolorgreen>
  137 + <bordercolorblue>100</bordercolorblue>
  138 + <drawshadow>Y</drawshadow>
  139 + </notepad>
  140 + <notepad>
  141 + <note>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#xff0c;&#x65b9;&#x5411;&#x6709;&#x65f6;&#x786e;&#x5b9a;&#x4e0d;&#x51c6;&#xff0c;&#xa;&#x7a7a;&#x7684;&#x60c5;&#x51b5;&#x4e0b;&#x8bbe;&#x5b9a;&#x4e3a;0&#xff08;&#x4e0a;&#x884c;&#xff09;</note>
  142 + <xloc>104</xloc>
  143 + <yloc>939</yloc>
  144 + <width>178</width>
  145 + <heigth>42</heigth>
  146 + <fontname>YaHei Consolas Hybrid</fontname>
  147 + <fontsize>12</fontsize>
  148 + <fontbold>N</fontbold>
  149 + <fontitalic>N</fontitalic>
  150 + <fontcolorred>0</fontcolorred>
  151 + <fontcolorgreen>0</fontcolorgreen>
  152 + <fontcolorblue>0</fontcolorblue>
  153 + <backgroundcolorred>255</backgroundcolorred>
  154 + <backgroundcolorgreen>205</backgroundcolorgreen>
  155 + <backgroundcolorblue>112</backgroundcolorblue>
  156 + <bordercolorred>100</bordercolorred>
  157 + <bordercolorgreen>100</bordercolorgreen>
  158 + <bordercolorblue>100</bordercolorblue>
  159 + <drawshadow>Y</drawshadow>
  160 + </notepad>
  161 + <notepad>
  162 + <note>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#xff0c;&#x65b9;&#x5411;&#x6709;&#x65f6;&#x786e;&#x5b9a;&#x4e0d;&#x51c6;&#xff0c;&#xa;&#x7a7a;&#x7684;&#x60c5;&#x51b5;&#x4e0b;&#x8bbe;&#x5b9a;&#x4e3a;0&#xff08;&#x4e0a;&#x884c;&#xff09;</note>
  163 + <xloc>578</xloc>
  164 + <yloc>1084</yloc>
  165 + <width>178</width>
  166 + <heigth>42</heigth>
  167 + <fontname>YaHei Consolas Hybrid</fontname>
  168 + <fontsize>12</fontsize>
  169 + <fontbold>N</fontbold>
  170 + <fontitalic>N</fontitalic>
  171 + <fontcolorred>0</fontcolorred>
  172 + <fontcolorgreen>0</fontcolorgreen>
  173 + <fontcolorblue>0</fontcolorblue>
  174 + <backgroundcolorred>255</backgroundcolorred>
  175 + <backgroundcolorgreen>205</backgroundcolorgreen>
  176 + <backgroundcolorblue>112</backgroundcolorblue>
  177 + <bordercolorred>100</bordercolorred>
  178 + <bordercolorgreen>100</bordercolorgreen>
  179 + <bordercolorblue>100</bordercolorblue>
  180 + <drawshadow>Y</drawshadow>
  181 + </notepad>
  182 + </notepads>
  183 + <connection>
  184 + <name>192.168.168.1_jwgl_dw</name>
  185 + <server>192.168.168.1</server>
  186 + <type>ORACLE</type>
  187 + <access>Native</access>
  188 + <database>orcl</database>
  189 + <port>1521</port>
  190 + <username>jwgl_dw</username>
  191 + <password>Encrypted 2be98afc86aa7f2e4cb13b977d2adabcd</password>
  192 + <servername/>
  193 + <data_tablespace/>
  194 + <index_tablespace/>
  195 + <attributes>
  196 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  197 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  198 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  199 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  200 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  201 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  202 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  203 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  204 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  205 + </attributes>
  206 + </connection>
  207 + <connection>
  208 + <name>bus_control_variable</name>
  209 + <server>&#x24;&#x7b;v_db_ip&#x7d;</server>
  210 + <type>MYSQL</type>
  211 + <access>Native</access>
  212 + <database>&#x24;&#x7b;v_db_dname&#x7d;</database>
  213 + <port>3306</port>
  214 + <username>&#x24;&#x7b;v_db_uname&#x7d;</username>
  215 + <password>&#x24;&#x7b;v_db_pwd&#x7d;</password>
  216 + <servername/>
  217 + <data_tablespace/>
  218 + <index_tablespace/>
  219 + <attributes>
  220 + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
  221 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  222 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  223 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  224 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  225 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  226 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  227 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  228 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  229 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  230 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  231 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  232 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  233 + </attributes>
  234 + </connection>
  235 + <connection>
  236 + <name>bus_control_&#x516c;&#x53f8;_201</name>
  237 + <server>localhost</server>
  238 + <type>MYSQL</type>
  239 + <access>Native</access>
  240 + <database>control</database>
  241 + <port>3306</port>
  242 + <username>root</username>
  243 + <password>Encrypted </password>
  244 + <servername/>
  245 + <data_tablespace/>
  246 + <index_tablespace/>
  247 + <attributes>
  248 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  249 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  250 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  251 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  252 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  253 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  254 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  255 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  256 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  257 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  258 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  259 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  260 + </attributes>
  261 + </connection>
  262 + <connection>
  263 + <name>bus_control_&#x672c;&#x673a;</name>
  264 + <server>localhost</server>
  265 + <type>MYSQL</type>
  266 + <access>Native</access>
  267 + <database>control</database>
  268 + <port>3306</port>
  269 + <username>root</username>
  270 + <password>Encrypted </password>
  271 + <servername/>
  272 + <data_tablespace/>
  273 + <index_tablespace/>
  274 + <attributes>
  275 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  276 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  277 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  278 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  279 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  280 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  281 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  282 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  283 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  284 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  285 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  286 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  287 + </attributes>
  288 + </connection>
  289 + <connection>
  290 + <name>xlab_mysql_youle</name>
  291 + <server>101.231.124.8</server>
  292 + <type>MYSQL</type>
  293 + <access>Native</access>
  294 + <database>xlab_youle</database>
  295 + <port>45687</port>
  296 + <username>xlab-youle</username>
  297 + <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password>
  298 + <servername/>
  299 + <data_tablespace/>
  300 + <index_tablespace/>
  301 + <attributes>
  302 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  303 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  304 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  305 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  306 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  307 + <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute>
  308 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  309 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  310 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  311 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  312 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  313 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  314 + </attributes>
  315 + </connection>
  316 + <connection>
  317 + <name>xlab_mysql_youle&#xff08;&#x672c;&#x673a;&#xff09;</name>
  318 + <server>localhost</server>
  319 + <type>MYSQL</type>
  320 + <access>Native</access>
  321 + <database>xlab_youle</database>
  322 + <port>3306</port>
  323 + <username>root</username>
  324 + <password>Encrypted </password>
  325 + <servername/>
  326 + <data_tablespace/>
  327 + <index_tablespace/>
  328 + <attributes>
  329 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  330 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  331 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  332 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  333 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  334 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  335 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  336 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  337 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  338 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  339 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  340 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  341 + </attributes>
  342 + </connection>
  343 + <connection>
  344 + <name>xlab_youle</name>
  345 + <server/>
  346 + <type>MYSQL</type>
  347 + <access>JNDI</access>
  348 + <database>xlab_youle</database>
  349 + <port>1521</port>
  350 + <username/>
  351 + <password>Encrypted </password>
  352 + <servername/>
  353 + <data_tablespace/>
  354 + <index_tablespace/>
  355 + <attributes>
  356 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  357 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  358 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  359 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  360 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  361 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  362 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  363 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  364 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  365 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  366 + </attributes>
  367 + </connection>
  368 + <order>
  369 + <hop> <from>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</from><to>&#x73ed;&#x6b21;&#x6570;&#x636e;&#x8303;&#x5f0f;&#x5316;</to><enabled>Y</enabled> </hop>
  370 + <hop> <from>&#x6dfb;&#x52a0;&#x53d1;&#x8f66;&#x987a;&#x5e8f;&#x53f7;</from><to>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;&#xff08;&#x53d1;&#x8f66;&#x65f6;&#x95f4;&#x4e3a;&#x7a7a;&#xff09;</to><enabled>Y</enabled> </hop>
  371 + <hop> <from>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;&#xff08;&#x53d1;&#x8f66;&#x65f6;&#x95f4;&#x4e3a;&#x7a7a;&#xff09;</from><to>&#x6dfb;&#x52a0;&#x5bf9;&#x5e94;&#x73ed;&#x6b21;&#x6570;</to><enabled>Y</enabled> </hop>
  372 + <hop> <from>&#x6dfb;&#x52a0;&#x5bf9;&#x5e94;&#x73ed;&#x6b21;&#x6570;</from><to>&#x5904;&#x7406;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
  373 + <hop> <from>&#x5904;&#x7406;&#x6570;&#x636e;</from><to>&#x5206;&#x7ec4;&#x5404;&#x4e2a;&#x8def;&#x724c;&#x7684;&#x7ad9;</to><enabled>Y</enabled> </hop>
  374 + <hop> <from>&#x67e5;&#x627e;&#x65f6;&#x523b;&#x8868;&#x57fa;&#x7840;&#x4fe1;&#x606f;&#x5173;&#x8054;</from><to>&#x67e5;&#x627e;&#x8def;&#x724c;&#x5173;&#x8054;</to><enabled>Y</enabled> </hop>
  375 + <hop> <from>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x5173;&#x8054;</from><to>&#x67e5;&#x627e;&#x65f6;&#x523b;&#x8868;&#x57fa;&#x7840;&#x4fe1;&#x606f;&#x5173;&#x8054;</to><enabled>Y</enabled> </hop>
  376 + <hop> <from>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178;</from><to>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178;</to><enabled>Y</enabled> </hop>
  377 + <hop> <from>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 2</from><to>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 2</to><enabled>Y</enabled> </hop>
  378 + <hop> <from>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 3</from><to>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 3</to><enabled>Y</enabled> </hop>
  379 + <hop> <from>&#x5339;&#x914d;&#x4e0a;&#x4e0b;&#x884c;&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</from><to>&#x7c7b;&#x578b;&#x4fee;&#x6b63;</to><enabled>Y</enabled> </hop>
  380 + <hop> <from>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;1</from><to>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</to><enabled>Y</enabled> </hop>
  381 + <hop> <from>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;1</from><to>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
  382 + <hop> <from>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</from><to>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
  383 + <hop> <from>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</from><to>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
  384 + <hop> <from>&#x67e5;&#x627e;&#x6240;&#x6709;&#x7ebf;&#x8def;&#x4e0a;&#x4e0b;&#x884c;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</from><to>&#x5339;&#x914d;&#x4e0a;&#x4e0b;&#x884c;&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>
  385 + <hop> <from>&#x67e5;&#x627e;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;</from><to>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178;</to><enabled>Y</enabled> </hop>
  386 + <hop> <from>&#x67e5;&#x627e;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</from><to>&#x67e5;&#x627e;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;</to><enabled>Y</enabled> </hop>
  387 + <hop> <from>&#x6b63;&#x5e38;&#x73ed;&#x6b21;_&#x5904;&#x7406;&#x6570;&#x636e;</from><to>&#x67e5;&#x627e;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</to><enabled>Y</enabled> </hop>
  388 + <hop> <from>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</from><to>&#x6b63;&#x5e38;&#x73ed;&#x6b21;_&#x5904;&#x7406;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
  389 + <hop> <from>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178;</from><to>&#x67e5;&#x627e;&#x6240;&#x6709;&#x7ebf;&#x8def;&#x4e0a;&#x4e0b;&#x884c;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>
  390 + <hop> <from>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 2</from><to>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x51fa;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>
  391 + <hop> <from>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 3</from><to>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x8fdb;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>
  392 + <hop> <from>&#x67e5;&#x627e;&#x8def;&#x724c;&#x5173;&#x8054;</from><to>&#x8ba1;&#x7b97;&#x73ed;&#x6b21;&#x7c7b;&#x578b;</to><enabled>Y</enabled> </hop>
  393 + <hop> <from>&#x8ba1;&#x7b97;&#x73ed;&#x6b21;&#x7c7b;&#x578b;</from><to>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;1</to><enabled>Y</enabled> </hop>
  394 + <hop> <from>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</from><to>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;1</to><enabled>Y</enabled> </hop>
  395 + <hop> <from>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;1</from><to>&#x51fa;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x7ec8;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</to><enabled>Y</enabled> </hop>
  396 + <hop> <from>&#x51fa;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x7ec8;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</from><to>&#x67e5;&#x627e;&#x51fa;&#x573a;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</to><enabled>Y</enabled> </hop>
  397 + <hop> <from>&#x67e5;&#x627e;&#x51fa;&#x573a;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</from><to>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 2</to><enabled>Y</enabled> </hop>
  398 + <hop> <from>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</from><to>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;2</to><enabled>Y</enabled> </hop>
  399 + <hop> <from>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;2</from><to>&#x8fdb;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x8d77;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</to><enabled>Y</enabled> </hop>
  400 + <hop> <from>&#x8fdb;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x8d77;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</from><to>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ebf;&#x8def;&#x65b9;&#x5411;</to><enabled>Y</enabled> </hop>
  401 + <hop> <from>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ebf;&#x8def;&#x65b9;&#x5411;</from><to>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ec8;&#x70b9;&#x7ad9;&#xff0c;&#x5e76;&#x4f5c;&#x4e3a;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x7684;&#x8d77;&#x70b9;&#x7ad9;</to><enabled>Y</enabled> </hop>
  402 + <hop> <from>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</from><to>&#x6dfb;&#x52a0;&#x53d1;&#x8f66;&#x987a;&#x5e8f;&#x53f7;</to><enabled>Y</enabled> </hop>
  403 + <hop> <from>&#x5206;&#x7ec4;&#x5404;&#x4e2a;&#x8def;&#x724c;&#x7684;&#x7ad9;</from><to>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x5173;&#x8054;</to><enabled>Y</enabled> </hop>
  404 + <hop> <from>&#x589e;&#x52a0;&#x65f6;&#x523b;&#x8868;&#x540d;&#x5b57;&#xff0c;&#x7ebf;&#x8def;&#x540d;&#x5b57;&#xff0c;&#x505c;&#x8f66;&#x573a;&#x540d;&#x5b57;</from><to>&#x8bb0;&#x5f55;&#x5173;&#x8054; &#x28;&#x7b1b;&#x5361;&#x5c14;&#x8f93;&#x51fa;&#x29;</to><enabled>Y</enabled> </hop>
  405 + <hop> <from>&#x73ed;&#x6b21;&#x6570;&#x636e;&#x8303;&#x5f0f;&#x5316;</from><to>&#x8bb0;&#x5f55;&#x5173;&#x8054; &#x28;&#x7b1b;&#x5361;&#x5c14;&#x8f93;&#x51fa;&#x29;</to><enabled>Y</enabled> </hop>
  406 + <hop> <from>&#x8bb0;&#x5f55;&#x5173;&#x8054; &#x28;&#x7b1b;&#x5361;&#x5c14;&#x8f93;&#x51fa;&#x29;</from><to>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</to><enabled>Y</enabled> </hop>
  407 + <hop> <from>&#x7c7b;&#x578b;&#x4fee;&#x6b63;</from><to>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail</to><enabled>Y</enabled> </hop>
  408 + <hop> <from>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ec8;&#x70b9;&#x7ad9;&#xff0c;&#x5e76;&#x4f5c;&#x4e3a;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x7684;&#x8d77;&#x70b9;&#x7ad9;</from><to>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</to><enabled>Y</enabled> </hop>
  409 + <hop> <from>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</from><to>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 3</to><enabled>Y</enabled> </hop>
  410 + <hop> <from>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x51fa;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</from><to>&#x5339;&#x914d;&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>
  411 + <hop> <from>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x8fdb;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</from><to>&#x5339;&#x914d;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>
  412 + <hop> <from>&#x5339;&#x914d;&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</from><to>&#x4e0a;&#x4e0b;&#x884c;NULL&#x5224;&#x5b9a;</to><enabled>Y</enabled> </hop>
  413 + <hop> <from>&#x4e0a;&#x4e0b;&#x884c;NULL&#x5224;&#x5b9a;</from><to>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 2</to><enabled>Y</enabled> </hop>
  414 + <hop> <from>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 2</from><to>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail 2</to><enabled>Y</enabled> </hop>
  415 + <hop> <from>&#x5339;&#x914d;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</from><to>&#x4e0a;&#x4e0b;&#x884c;&#x5224;&#x5b9a; 2</to><enabled>Y</enabled> </hop>
  416 + <hop> <from>&#x4e0a;&#x4e0b;&#x884c;&#x5224;&#x5b9a; 2</from><to>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 3</to><enabled>Y</enabled> </hop>
  417 + <hop> <from>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 3</from><to>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail 3</to><enabled>Y</enabled> </hop>
  418 + </order>
  419 + <step>
  420 + <name>&#x4e0a;&#x4e0b;&#x884c;NULL&#x5224;&#x5b9a;</name>
  421 + <type>IfNull</type>
  422 + <description/>
  423 + <distribute>Y</distribute>
  424 + <custom_distribution/>
  425 + <copies>1</copies>
  426 + <partitioning>
  427 + <method>none</method>
  428 + <schema_name/>
  429 + </partitioning>
  430 + <replaceAllByValue/>
  431 + <replaceAllMask/>
  432 + <selectFields>Y</selectFields>
  433 + <selectValuesType>N</selectValuesType>
  434 + <setEmptyStringAll>N</setEmptyStringAll>
  435 + <valuetypes>
  436 + </valuetypes>
  437 + <fields>
  438 + <field>
  439 + <name>sxx</name>
  440 + <value>0</value>
  441 + <mask/>
  442 + <set_empty_string>N</set_empty_string>
  443 + </field>
  444 + </fields>
  445 + <cluster_schema/>
  446 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  447 + <xloc>335</xloc>
  448 + <yloc>938</yloc>
  449 + <draw>Y</draw>
  450 + </GUI>
  451 + </step>
  452 +
  453 + <step>
  454 + <name>&#x4e0a;&#x4e0b;&#x884c;&#x5224;&#x5b9a; 2</name>
  455 + <type>IfNull</type>
  456 + <description/>
  457 + <distribute>Y</distribute>
  458 + <custom_distribution/>
  459 + <copies>1</copies>
  460 + <partitioning>
  461 + <method>none</method>
  462 + <schema_name/>
  463 + </partitioning>
  464 + <replaceAllByValue/>
  465 + <replaceAllMask/>
  466 + <selectFields>Y</selectFields>
  467 + <selectValuesType>N</selectValuesType>
  468 + <setEmptyStringAll>N</setEmptyStringAll>
  469 + <valuetypes>
  470 + </valuetypes>
  471 + <fields>
  472 + <field>
  473 + <name>sxx2</name>
  474 + <value>0</value>
  475 + <mask/>
  476 + <set_empty_string>N</set_empty_string>
  477 + </field>
  478 + </fields>
  479 + <cluster_schema/>
  480 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  481 + <xloc>804</xloc>
  482 + <yloc>1081</yloc>
  483 + <draw>Y</draw>
  484 + </GUI>
  485 + </step>
  486 +
  487 + <step>
  488 + <name>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178;</name>
  489 + <type>ValueMapper</type>
  490 + <description/>
  491 + <distribute>Y</distribute>
  492 + <custom_distribution/>
  493 + <copies>1</copies>
  494 + <partitioning>
  495 + <method>none</method>
  496 + <schema_name/>
  497 + </partitioning>
  498 + <field_to_use>sxx</field_to_use>
  499 + <target_field>sxx_desc</target_field>
  500 + <non_match_default/>
  501 + <fields>
  502 + <field>
  503 + <source_value>0</source_value>
  504 + <target_value>&#x4e0a;&#x884c;</target_value>
  505 + </field>
  506 + <field>
  507 + <source_value>1</source_value>
  508 + <target_value>&#x4e0b;&#x884c;</target_value>
  509 + </field>
  510 + </fields>
  511 + <cluster_schema/>
  512 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  513 + <xloc>147</xloc>
  514 + <yloc>403</yloc>
  515 + <draw>Y</draw>
  516 + </GUI>
  517 + </step>
  518 +
  519 + <step>
  520 + <name>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 2</name>
  521 + <type>ValueMapper</type>
  522 + <description/>
  523 + <distribute>Y</distribute>
  524 + <custom_distribution/>
  525 + <copies>1</copies>
  526 + <partitioning>
  527 + <method>none</method>
  528 + <schema_name/>
  529 + </partitioning>
  530 + <field_to_use>sxx</field_to_use>
  531 + <target_field>sxx_desc</target_field>
  532 + <non_match_default/>
  533 + <fields>
  534 + <field>
  535 + <source_value>0</source_value>
  536 + <target_value>&#x4e0a;&#x884c;</target_value>
  537 + </field>
  538 + <field>
  539 + <source_value>1</source_value>
  540 + <target_value>&#x4e0b;&#x884c;</target_value>
  541 + </field>
  542 + </fields>
  543 + <cluster_schema/>
  544 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  545 + <xloc>331</xloc>
  546 + <yloc>598</yloc>
  547 + <draw>Y</draw>
  548 + </GUI>
  549 + </step>
  550 +
  551 + <step>
  552 + <name>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 3</name>
  553 + <type>ValueMapper</type>
  554 + <description/>
  555 + <distribute>Y</distribute>
  556 + <custom_distribution/>
  557 + <copies>1</copies>
  558 + <partitioning>
  559 + <method>none</method>
  560 + <schema_name/>
  561 + </partitioning>
  562 + <field_to_use>sxx</field_to_use>
  563 + <target_field>sxx_desc</target_field>
  564 + <non_match_default/>
  565 + <fields>
  566 + <field>
  567 + <source_value>0</source_value>
  568 + <target_value>&#x4e0a;&#x884c;</target_value>
  569 + </field>
  570 + <field>
  571 + <source_value>1</source_value>
  572 + <target_value>&#x4e0b;&#x884c;</target_value>
  573 + </field>
  574 + </fields>
  575 + <cluster_schema/>
  576 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  577 + <xloc>553</xloc>
  578 + <yloc>859</yloc>
  579 + <draw>Y</draw>
  580 + </GUI>
  581 + </step>
  582 +
  583 + <step>
  584 + <name>&#x51fa;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x7ec8;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</name>
  585 + <type>ScriptValueMod</type>
  586 + <description/>
  587 + <distribute>Y</distribute>
  588 + <custom_distribution/>
  589 + <copies>1</copies>
  590 + <partitioning>
  591 + <method>none</method>
  592 + <schema_name/>
  593 + </partitioning>
  594 + <compatible>N</compatible>
  595 + <optimizationLevel>9</optimizationLevel>
  596 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  597 + <jsScript_name>Script 1</jsScript_name>
  598 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;&#x2f;&#x2f; &#x6dfb;&#x52a0;&#x7ad9;&#x70b9;&#x6807;&#x8bc6;&#xa;var cc_groups &#x3d; qdzgroups.split&#x28;&#x22;,&#x22;&#x29;&#x3b; &#x2f;&#x2f; &#x6240;&#x6709;&#x73ed;&#x6b21;&#x8d77;&#x70b9;&#x7ad9;&#x6570;&#x7ec4;&#xa;var zdzname &#x3d; cc_groups&#x5b;gno&#x5d;&#x3b; &#x2f;&#x2f; &#x51fa;&#x573a;&#x73ed;&#x6b21;&#x7684;&#x7ec8;&#x70b9;&#x7ad9;&#x662f;&#x4e0b;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x8d77;&#x59cb;&#x7ad9;&#xa;var endZdtype &#x3d; &#x27;B&#x27;&#x3b;&#xa;&#x2f;&#x2f; var endZdtype &#x3d; &#x27;E&#x27;&#x3b;&#xa;&#xa;var destory &#x3d; 0&#x3b; &#x2f;&#x2f; &#x672a;&#x64a4;&#x9500;flag</jsScript_script>
  599 + </jsScript> </jsScripts> <fields> <field> <name>zdzname</name>
  600 + <rename>zdzname</rename>
  601 + <type>String</type>
  602 + <length>-1</length>
  603 + <precision>-1</precision>
  604 + <replace>N</replace>
  605 + </field> <field> <name>endZdtype</name>
  606 + <rename>endZdtype</rename>
  607 + <type>String</type>
  608 + <length>-1</length>
  609 + <precision>-1</precision>
  610 + <replace>N</replace>
  611 + </field> <field> <name>destory</name>
  612 + <rename>destory</rename>
  613 + <type>Integer</type>
  614 + <length>-1</length>
  615 + <precision>-1</precision>
  616 + <replace>N</replace>
  617 + </field> </fields> <cluster_schema/>
  618 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  619 + <xloc>575</xloc>
  620 + <yloc>502</yloc>
  621 + <draw>Y</draw>
  622 + </GUI>
  623 + </step>
  624 +
  625 + <step>
  626 + <name>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</name>
  627 + <type>Dummy</type>
  628 + <description/>
  629 + <distribute>Y</distribute>
  630 + <custom_distribution/>
  631 + <copies>1</copies>
  632 + <partitioning>
  633 + <method>none</method>
  634 + <schema_name/>
  635 + </partitioning>
  636 + <cluster_schema/>
  637 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  638 + <xloc>869</xloc>
  639 + <yloc>504</yloc>
  640 + <draw>Y</draw>
  641 + </GUI>
  642 + </step>
  643 +
  644 + <step>
  645 + <name>&#x5206;&#x7ec4;&#x5404;&#x4e2a;&#x8def;&#x724c;&#x7684;&#x7ad9;</name>
  646 + <type>GroupBy</type>
  647 + <description/>
  648 + <distribute>Y</distribute>
  649 + <custom_distribution/>
  650 + <copies>1</copies>
  651 + <partitioning>
  652 + <method>none</method>
  653 + <schema_name/>
  654 + </partitioning>
  655 + <all_rows>Y</all_rows>
  656 + <ignore_aggregate>N</ignore_aggregate>
  657 + <field_ignore/>
  658 + <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
  659 + <prefix>grp</prefix>
  660 + <add_linenr>Y</add_linenr>
  661 + <linenr_fieldname>gno</linenr_fieldname>
  662 + <give_back_row>N</give_back_row>
  663 + <group>
  664 + <field>
  665 + <name>lp</name>
  666 + </field>
  667 + </group>
  668 + <fields>
  669 + <field>
  670 + <aggregate>qdzgroups</aggregate>
  671 + <subject>qdzname</subject>
  672 + <type>CONCAT_STRING</type>
  673 + <valuefield>,</valuefield>
  674 + </field>
  675 + </fields>
  676 + <cluster_schema/>
  677 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  678 + <xloc>892</xloc>
  679 + <yloc>44</yloc>
  680 + <draw>Y</draw>
  681 + </GUI>
  682 + </step>
  683 +
  684 + <step>
  685 + <name>&#x5339;&#x914d;&#x4e0a;&#x4e0b;&#x884c;&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
  686 + <type>ScriptValueMod</type>
  687 + <description/>
  688 + <distribute>Y</distribute>
  689 + <custom_distribution/>
  690 + <copies>1</copies>
  691 + <partitioning>
  692 + <method>none</method>
  693 + <schema_name/>
  694 + </partitioning>
  695 + <compatible>N</compatible>
  696 + <optimizationLevel>9</optimizationLevel>
  697 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  698 + <jsScript_name>Script 1</jsScript_name>
  699 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var jhlc&#x3b; &#x2f;&#x2f; &#x8ba1;&#x5212;&#x91cc;&#x7a0b;&#xa;var bcsj&#x3b; &#x2f;&#x2f; &#x73ed;&#x6b21;&#x65f6;&#x95f4;&#xa;&#xa;&#x2f;&#x2f; &#x65f6;&#x95f4;&#x8303;&#x56f4;&#x6b63;&#x5219;&#x8868;&#x8fbe;&#x5f0f;&#xa;var timeRex &#x3d; &#x2f;&#x5e;&#x28;&#x5b;01&#x5d;&#x3f;&#x5b;0-9&#x5d;&#x7c;2&#x5b;0-3&#x5d;&#x29;&#x3a;&#x5b;0-5&#x5d;&#x5b;0-9&#x5d;&#x24;&#x2f;&#x3b;&#xa;&#x2f;&#x2f; &#x53d1;&#x8f66;&#x65f6;&#x95f4;&#x8f6c;&#x6362;&#x6210;&#x65e5;&#x671f;&#xa;var fcsj_hour &#x3d; str2num&#x28;sendtime_calcu.substr&#x28;0, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa;var fcsj_min &#x3d; str2num&#x28;sendtime_calcu.substr&#x28;3, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa;var fcsj_date &#x3d; new Date&#x28;2000,1,1,fcsj_hour,fcsj_min,0&#x29;&#x3b;&#xa;&#xa;&#x2f;&#x2f; &#x5224;&#x5b9a;&#x662f;&#x5426;&#x65e9;&#x9ad8;&#x5cf0;&#xa;var isZgf &#x3d; false&#x3b;&#xa;if &#x28;timeRex.test&#x28;early_start_time&#x29; &#x26;&#x26; timeRex.test&#x28;early_end_time&#x29; &#x26;&#x26; early_up_time &#x21;&#x3d; null &#x26;&#x26; early_down_time &#x21;&#x3d; null&#x29; &#x7b;&#xa; var early_s_hour &#x3d; str2num&#x28;early_start_time.substr&#x28;0, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var early_s_min &#x3d; str2num&#x28;early_start_time.substr&#x28;3, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var early_s_date &#x3d; new Date&#x28;2000,1,1,early_s_hour,early_s_min,0&#x29;&#x3b;&#xa;&#xa; var early_e_hour &#x3d; str2num&#x28;early_end_time.substr&#x28;0, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var early_e_min &#x3d; str2num&#x28;early_end_time.substr&#x28;3, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var early_e_date &#x3d; new Date&#x28;2000,1,1,early_e_hour,early_e_min,0&#x29;&#x3b;&#xa;&#xa; if &#x28;fcsj_date &#x3e;&#x3d; early_s_date &#x26;&#x26; fcsj_date &#x3c;&#x3d; early_e_date&#x29; &#x7b;&#xa; isZgf &#x3d; true&#x3b;&#xa; &#x7d;&#xa;&#x7d;&#xa;&#xa;&#x2f;&#x2f; &#x5224;&#x5b9a;&#x662f;&#x5426;&#x665a;&#x9ad8;&#x5cf0;&#xa;var isWgf &#x3d; false&#x3b;&#xa;if &#x28;timeRex.test&#x28;late_start_time&#x29; &#x26;&#x26; timeRex.test&#x28;late_end_time&#x29; &#x26;&#x26; late_up_time &#x21;&#x3d; null &#x26;&#x26; late_down_time &#x21;&#x3d; null&#x29; &#x7b;&#xa; var late_s_hour &#x3d; str2num&#x28;late_start_time.substr&#x28;0, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var late_s_min &#x3d; str2num&#x28;late_start_time.substr&#x28;3, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var late_s_date &#x3d; new Date&#x28;2000,1,1,late_s_hour,late_s_min,0&#x29;&#x3b;&#xa;&#xa; var late_e_hour &#x3d; str2num&#x28;late_end_time.substr&#x28;0, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var late_e_min &#x3d; str2num&#x28;late_end_time.substr&#x28;3, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var late_e_date &#x3d; new Date&#x28;2000,1,1,late_e_hour,late_e_min,0&#x29;&#x3b;&#xa;&#xa; if &#x28;fcsj_date &#x3e;&#x3d; late_s_date &#x26;&#x26; fcsj_date &#x3c;&#x3d; late_e_date&#x29; &#x7b;&#xa; isWgf &#x3d; true&#x3b;&#xa; &#x7d;&#xa;&#x7d;&#xa;&#xa;&#x2f;&#x2f; &#x5224;&#x5b9a;&#x662f;&#x5426;&#x665a;&#x9ad8;&#x5cf0;&#xa;&#xa;if &#x28;sxx &#x3d;&#x3d; 0&#x29; &#x7b; &#x2f;&#x2f; &#x4e0a;&#x884c;&#xa; if &#x28;isZgf&#x29; &#x7b;&#xa; jhlc &#x3d; up_mileage&#x3b;&#xa; bcsj &#x3d; early_up_time &#x21;&#x3d; 0 &#x3f; early_up_time &#x3a; up_travel_time&#x3b;&#xa; &#x7d; else if &#x28;isWgf&#x29; &#x7b;&#xa; jhlc &#x3d; up_mileage&#x3b;&#xa; bcsj &#x3d; late_up_time &#x21;&#x3d; 0 &#x3f; late_up_time &#x3a; up_travel_time&#x3b;&#xa; &#x7d; else &#x7b;&#xa; jhlc &#x3d; up_mileage&#x3b;&#xa; bcsj &#x3d; up_travel_time&#x3b;&#xa; &#x7d;&#xa;&#x7d; else &#x7b; &#x2f;&#x2f; sxx &#x3d;&#x3d; 1 &#x4e0b;&#x884c;&#xa; if &#x28;isZgf&#x29; &#x7b;&#xa; jhlc &#x3d; down_mileage&#x3b;&#xa; bcsj &#x3d; early_down_time &#x21;&#x3d; 0 &#x3f; early_down_time &#x3a; down_travel_time&#x3b;&#xa; &#x7d; else if &#x28;isWgf&#x29; &#x7b;&#xa; jhlc &#x3d; down_mileage&#x3b;&#xa; bcsj &#x3d; late_down_time &#x21;&#x3d; 0 &#x3f; late_down_time &#x3a; down_travel_time&#x3b;&#xa; &#x7d; else &#x7b;&#xa; jhlc &#x3d; down_mileage&#x3b;&#xa; bcsj &#x3d; down_travel_time&#x3b;&#xa; &#x7d;&#xa;&#x7d;</jsScript_script>
  700 + </jsScript> </jsScripts> <fields> <field> <name>jhlc</name>
  701 + <rename>jhlc</rename>
  702 + <type>String</type>
  703 + <length>-1</length>
  704 + <precision>-1</precision>
  705 + <replace>N</replace>
  706 + </field> <field> <name>bcsj</name>
  707 + <rename>bcsj</rename>
  708 + <type>String</type>
  709 + <length>-1</length>
  710 + <precision>-1</precision>
  711 + <replace>N</replace>
  712 + </field> </fields> <cluster_schema/>
  713 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  714 + <xloc>148</xloc>
  715 + <yloc>674</yloc>
  716 + <draw>Y</draw>
  717 + </GUI>
  718 + </step>
  719 +
  720 + <step>
  721 + <name>&#x5339;&#x914d;&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
  722 + <type>ScriptValueMod</type>
  723 + <description/>
  724 + <distribute>Y</distribute>
  725 + <custom_distribution/>
  726 + <copies>1</copies>
  727 + <partitioning>
  728 + <method>none</method>
  729 + <schema_name/>
  730 + </partitioning>
  731 + <compatible>N</compatible>
  732 + <optimizationLevel>9</optimizationLevel>
  733 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  734 + <jsScript_name>Script 1</jsScript_name>
  735 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var out_mileage&#x3b; &#x2f;&#x2f; &#x51fa;&#x573a;&#x8ba1;&#x5212;&#x91cc;&#x7a0b;&#xa;var out_time&#x3b; &#x2f;&#x2f; &#x51fa;&#x573a;&#x8ba1;&#x5212;&#x65f6;&#x95f4;&#xa;&#xa;if &#x28;sxx &#x3d;&#x3d; 0&#x29; &#x7b; &#x2f;&#x2f; &#x4e0a;&#x884c;&#xa; out_mileage &#x3d; up_out_mileage&#x3b;&#xa; out_time &#x3d; up_out_timer&#x3b;&#xa;&#x7d; else &#x7b; &#x2f;&#x2f; sxx &#x3d;&#x3d; 1 &#x4e0b;&#x884c;&#xa; out_mileage &#x3d; down_out_mileage&#x3b;&#xa; out_time &#x3d; down_out_timer&#x3b;&#xa;&#x7d;&#xa;&#xa;&#xa;&#xa;</jsScript_script>
  736 + </jsScript> </jsScripts> <fields> <field> <name>out_mileage</name>
  737 + <rename>out_mileage</rename>
  738 + <type>String</type>
  739 + <length>-1</length>
  740 + <precision>-1</precision>
  741 + <replace>N</replace>
  742 + </field> <field> <name>out_time</name>
  743 + <rename>out_time</rename>
  744 + <type>String</type>
  745 + <length>-1</length>
  746 + <precision>-1</precision>
  747 + <replace>N</replace>
  748 + </field> </fields> <cluster_schema/>
  749 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  750 + <xloc>336</xloc>
  751 + <yloc>862</yloc>
  752 + <draw>Y</draw>
  753 + </GUI>
  754 + </step>
  755 +
  756 + <step>
  757 + <name>&#x5339;&#x914d;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
  758 + <type>ScriptValueMod</type>
  759 + <description/>
  760 + <distribute>Y</distribute>
  761 + <custom_distribution/>
  762 + <copies>1</copies>
  763 + <partitioning>
  764 + <method>none</method>
  765 + <schema_name/>
  766 + </partitioning>
  767 + <compatible>N</compatible>
  768 + <optimizationLevel>9</optimizationLevel>
  769 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  770 + <jsScript_name>Script 1</jsScript_name>
  771 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var parade_mileage&#x3b; &#x2f;&#x2f; &#x8fdb;&#x573a;&#x8ba1;&#x5212;&#x91cc;&#x7a0b;&#xa;var parade_time&#x3b; &#x2f;&#x2f; &#x8fdb;&#x573a;&#x8ba1;&#x5212;&#x65f6;&#x95f4;&#xa;&#xa;if &#x28;sxx2 &#x3d;&#x3d; 0&#x29; &#x7b; &#x2f;&#x2f; &#x4e0a;&#x884c;&#xa; parade_mileage &#x3d; up_in_mileage&#x3b;&#xa; parade_time &#x3d; up_in_timer&#x3b;&#xa;&#x7d; else &#x7b; &#x2f;&#x2f; sxx &#x3d;&#x3d; 1 &#x4e0b;&#x884c;&#xa; parade_mileage &#x3d; down_in_mileage&#x3b;&#xa; parade_time &#x3d; down_in_timer&#x3b;&#xa;&#x7d;&#xa;&#xa;&#xa;&#xa;</jsScript_script>
  772 + </jsScript> </jsScripts> <fields> <field> <name>parade_mileage</name>
  773 + <rename>parade_mileage</rename>
  774 + <type>String</type>
  775 + <length>-1</length>
  776 + <precision>-1</precision>
  777 + <replace>N</replace>
  778 + </field> <field> <name>parade_time</name>
  779 + <rename>parade_time</rename>
  780 + <type>String</type>
  781 + <length>-1</length>
  782 + <precision>-1</precision>
  783 + <replace>N</replace>
  784 + </field> </fields> <cluster_schema/>
  785 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  786 + <xloc>726</xloc>
  787 + <yloc>1005</yloc>
  788 + <draw>Y</draw>
  789 + </GUI>
  790 + </step>
  791 +
  792 + <step>
  793 + <name>&#x589e;&#x52a0;&#x65f6;&#x523b;&#x8868;&#x540d;&#x5b57;&#xff0c;&#x7ebf;&#x8def;&#x540d;&#x5b57;&#xff0c;&#x505c;&#x8f66;&#x573a;&#x540d;&#x5b57;</name>
  794 + <type>DataGrid</type>
  795 + <description/>
  796 + <distribute>Y</distribute>
  797 + <custom_distribution/>
  798 + <copies>1</copies>
  799 + <partitioning>
  800 + <method>none</method>
  801 + <schema_name/>
  802 + </partitioning>
  803 + <fields>
  804 + </fields>
  805 + <data>
  806 + <line> </line>
  807 + </data>
  808 + <cluster_schema/>
  809 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  810 + <xloc>110</xloc>
  811 + <yloc>133</yloc>
  812 + <draw>Y</draw>
  813 + </GUI>
  814 + </step>
  815 +
  816 + <step>
  817 + <name>&#x5904;&#x7406;&#x6570;&#x636e;</name>
  818 + <type>ScriptValueMod</type>
  819 + <description/>
  820 + <distribute>Y</distribute>
  821 + <custom_distribution/>
  822 + <copies>1</copies>
  823 + <partitioning>
  824 + <method>none</method>
  825 + <schema_name/>
  826 + </partitioning>
  827 + <compatible>N</compatible>
  828 + <optimizationLevel>9</optimizationLevel>
  829 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  830 + <jsScript_name>Script 1</jsScript_name>
  831 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;&#x2f;&#x2f; &#x4f7f;&#x7528;&#x6b63;&#x5219;&#x8868;&#x8fbe;&#x5f0f;&#x53bb;&#x9664;&#x7ad9;&#x70b9;&#x540d;&#x79f0;&#x53f3;&#x4fa7;&#x591a;&#x4f59;&#x7684;&#x6570;&#x5b57;&#xa;qdzname &#x3d; qdzname.replace&#x28;&#x2f;&#x28;&#x5c;d&#x2b;&#x24;&#x29;&#x2f;g,&#x27;&#x27;&#x29;&#x3b;&#xa;&#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;&#x505c;&#x9a76;&#xa;var ists &#x3d; 0&#x3b;&#xa;&#xa;&#x2f;&#x2f; &#x8bbe;&#x7f6e;isCanceled&#xa;var iscanceled &#x3d; 0&#x3b;</jsScript_script>
  832 + </jsScript> </jsScripts> <fields> <field> <name>qdzname</name>
  833 + <rename>qdzname</rename>
  834 + <type>String</type>
  835 + <length>-1</length>
  836 + <precision>-1</precision>
  837 + <replace>Y</replace>
  838 + </field> <field> <name>isfb</name>
  839 + <rename>isfb</rename>
  840 + <type>Integer</type>
  841 + <length>-1</length>
  842 + <precision>-1</precision>
  843 + <replace>N</replace>
  844 + </field> <field> <name>iscanceled</name>
  845 + <rename>iscanceled</rename>
  846 + <type>Integer</type>
  847 + <length>-1</length>
  848 + <precision>-1</precision>
  849 + <replace>N</replace>
  850 + </field> <field> <name>sendtime_calcu</name>
  851 + <rename>sendtime_calcu</rename>
  852 + <type>String</type>
  853 + <length>-1</length>
  854 + <precision>-1</precision>
  855 + <replace>N</replace>
  856 + </field> <field> <name>ists</name>
  857 + <rename>ists</rename>
  858 + <type>Integer</type>
  859 + <length>-1</length>
  860 + <precision>-1</precision>
  861 + <replace>N</replace>
  862 + </field> </fields> <cluster_schema/>
  863 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  864 + <xloc>788</xloc>
  865 + <yloc>44</yloc>
  866 + <draw>Y</draw>
  867 + </GUI>
  868 + </step>
  869 +
  870 + <step>
  871 + <name>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</name>
  872 + <type>SelectValues</type>
  873 + <description/>
  874 + <distribute>Y</distribute>
  875 + <custom_distribution/>
  876 + <copies>1</copies>
  877 + <partitioning>
  878 + <method>none</method>
  879 + <schema_name/>
  880 + </partitioning>
  881 + <fields> <field> <name>&#x8def;&#x724c;</name>
  882 + <rename>lp</rename>
  883 + <length>-2</length>
  884 + <precision>-2</precision>
  885 + </field> <field> <name>&#x7ad9;&#x70b9;&#x540d;&#x79f0;</name>
  886 + <rename>qdzname</rename>
  887 + <length>-2</length>
  888 + <precision>-2</precision>
  889 + </field> <field> <name>&#x53d1;&#x8f66;&#x65f6;&#x95f4;</name>
  890 + <rename>sendtime</rename>
  891 + <length>-2</length>
  892 + <precision>-2</precision>
  893 + </field> <select_unspecified>Y</select_unspecified>
  894 + </fields> <cluster_schema/>
  895 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  896 + <xloc>444</xloc>
  897 + <yloc>131</yloc>
  898 + <draw>Y</draw>
  899 + </GUI>
  900 + </step>
  901 +
  902 + <step>
  903 + <name>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;1</name>
  904 + <type>FilterRows</type>
  905 + <description/>
  906 + <distribute>Y</distribute>
  907 + <custom_distribution/>
  908 + <copies>1</copies>
  909 + <partitioning>
  910 + <method>none</method>
  911 + <schema_name/>
  912 + </partitioning>
  913 +<send_true_to>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</send_true_to>
  914 +<send_false_to>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</send_false_to>
  915 + <compare>
  916 +<condition>
  917 + <negated>N</negated>
  918 + <leftvalue>bctype</leftvalue>
  919 + <function>&#x3d;</function>
  920 + <rightvalue/>
  921 + <value><name>constant</name><type>String</type><text>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</text><length>-1</length><precision>-1</precision><isnull>N</isnull><mask/></value> </condition>
  922 + </compare>
  923 + <cluster_schema/>
  924 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  925 + <xloc>860</xloc>
  926 + <yloc>401</yloc>
  927 + <draw>Y</draw>
  928 + </GUI>
  929 + </step>
  930 +
  931 + <step>
  932 + <name>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</name>
  933 + <type>FilterRows</type>
  934 + <description/>
  935 + <distribute>Y</distribute>
  936 + <custom_distribution/>
  937 + <copies>1</copies>
  938 + <partitioning>
  939 + <method>none</method>
  940 + <schema_name/>
  941 + </partitioning>
  942 +<send_true_to>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</send_true_to>
  943 +<send_false_to>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</send_false_to>
  944 + <compare>
  945 +<condition>
  946 + <negated>N</negated>
  947 + <leftvalue>bctype</leftvalue>
  948 + <function>&#x3d;</function>
  949 + <rightvalue/>
  950 + <value><name>constant</name><type>String</type><text>&#x51fa;&#x573a;</text><length>-1</length><precision>-1</precision><isnull>N</isnull><mask/></value> </condition>
  951 + </compare>
  952 + <cluster_schema/>
  953 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  954 + <xloc>995</xloc>
  955 + <yloc>503</yloc>
  956 + <draw>Y</draw>
  957 + </GUI>
  958 + </step>
  959 +
  960 + <step>
  961 + <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail</name>
  962 + <type>InsertUpdate</type>
  963 + <description/>
  964 + <distribute>Y</distribute>
  965 + <custom_distribution/>
  966 + <copies>1</copies>
  967 + <partitioning>
  968 + <method>none</method>
  969 + <schema_name/>
  970 + </partitioning>
  971 + <connection>bus_control_variable</connection>
  972 + <commit>100</commit>
  973 + <update_bypassed>N</update_bypassed>
  974 + <lookup>
  975 + <schema/>
  976 + <table>bsth_c_s_ttinfo_detail</table>
  977 + <key>
  978 + <name>xlid</name>
  979 + <field>xl</field>
  980 + <condition>&#x3d;</condition>
  981 + <name2/>
  982 + </key>
  983 + <key>
  984 + <name>ttid</name>
  985 + <field>ttinfo</field>
  986 + <condition>&#x3d;</condition>
  987 + <name2/>
  988 + </key>
  989 + <key>
  990 + <name>lpid</name>
  991 + <field>lp</field>
  992 + <condition>&#x3d;</condition>
  993 + <name2/>
  994 + </key>
  995 + <key>
  996 + <name>fcno</name>
  997 + <field>fcno</field>
  998 + <condition>&#x3d;</condition>
  999 + <name2/>
  1000 + </key>
  1001 + <key>
  1002 + <name>bcs</name>
  1003 + <field>bcs</field>
  1004 + <condition>&#x3d;</condition>
  1005 + <name2/>
  1006 + </key>
  1007 + <value>
  1008 + <name>lp</name>
  1009 + <rename>lpid</rename>
  1010 + <update>Y</update>
  1011 + </value>
  1012 + <value>
  1013 + <name>bc_type</name>
  1014 + <rename>bctype_code</rename>
  1015 + <update>Y</update>
  1016 + </value>
  1017 + <value>
  1018 + <name>bcs</name>
  1019 + <rename>bcs</rename>
  1020 + <update>Y</update>
  1021 + </value>
  1022 + <value>
  1023 + <name>bcsj</name>
  1024 + <rename>bcsj</rename>
  1025 + <update>Y</update>
  1026 + </value>
  1027 + <value>
  1028 + <name>fcno</name>
  1029 + <rename>fcno</rename>
  1030 + <update>Y</update>
  1031 + </value>
  1032 + <value>
  1033 + <name>jhlc</name>
  1034 + <rename>jhlc</rename>
  1035 + <update>Y</update>
  1036 + </value>
  1037 + <value>
  1038 + <name>fcsj</name>
  1039 + <rename>sendtime_calcu</rename>
  1040 + <update>Y</update>
  1041 + </value>
  1042 + <value>
  1043 + <name>ttinfo</name>
  1044 + <rename>ttid</rename>
  1045 + <update>Y</update>
  1046 + </value>
  1047 + <value>
  1048 + <name>xl</name>
  1049 + <rename>xlid</rename>
  1050 + <update>Y</update>
  1051 + </value>
  1052 + <value>
  1053 + <name>qdz</name>
  1054 + <rename>qdzid</rename>
  1055 + <update>Y</update>
  1056 + </value>
  1057 + <value>
  1058 + <name>zdz</name>
  1059 + <rename>zdzid</rename>
  1060 + <update>Y</update>
  1061 + </value>
  1062 + <value>
  1063 + <name>xl_dir</name>
  1064 + <rename>sxx</rename>
  1065 + <update>Y</update>
  1066 + </value>
  1067 + <value>
  1068 + <name>isfb</name>
  1069 + <rename>isfb</rename>
  1070 + <update>Y</update>
  1071 + </value>
  1072 + <value>
  1073 + <name>qdz_code</name>
  1074 + <rename>qdzcode</rename>
  1075 + <update>Y</update>
  1076 + </value>
  1077 + <value>
  1078 + <name>qdz_name</name>
  1079 + <rename>qdzname</rename>
  1080 + <update>Y</update>
  1081 + </value>
  1082 + <value>
  1083 + <name>zdz_code</name>
  1084 + <rename>zdzcode</rename>
  1085 + <update>Y</update>
  1086 + </value>
  1087 + <value>
  1088 + <name>zdz_name</name>
  1089 + <rename>zdzname</rename>
  1090 + <update>Y</update>
  1091 + </value>
  1092 + <value>
  1093 + <name>ists</name>
  1094 + <rename>ists</rename>
  1095 + <update>Y</update>
  1096 + </value>
  1097 + </lookup>
  1098 + <cluster_schema/>
  1099 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1100 + <xloc>143</xloc>
  1101 + <yloc>860</yloc>
  1102 + <draw>Y</draw>
  1103 + </GUI>
  1104 + </step>
  1105 +
  1106 + <step>
  1107 + <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail 2</name>
  1108 + <type>InsertUpdate</type>
  1109 + <description/>
  1110 + <distribute>Y</distribute>
  1111 + <custom_distribution/>
  1112 + <copies>1</copies>
  1113 + <partitioning>
  1114 + <method>none</method>
  1115 + <schema_name/>
  1116 + </partitioning>
  1117 + <connection>bus_control_variable</connection>
  1118 + <commit>100</commit>
  1119 + <update_bypassed>N</update_bypassed>
  1120 + <lookup>
  1121 + <schema/>
  1122 + <table>bsth_c_s_ttinfo_detail</table>
  1123 + <key>
  1124 + <name>xlid</name>
  1125 + <field>xl</field>
  1126 + <condition>&#x3d;</condition>
  1127 + <name2/>
  1128 + </key>
  1129 + <key>
  1130 + <name>ttid</name>
  1131 + <field>ttinfo</field>
  1132 + <condition>&#x3d;</condition>
  1133 + <name2/>
  1134 + </key>
  1135 + <key>
  1136 + <name>lpid</name>
  1137 + <field>lp</field>
  1138 + <condition>&#x3d;</condition>
  1139 + <name2/>
  1140 + </key>
  1141 + <key>
  1142 + <name>fcno</name>
  1143 + <field>fcno</field>
  1144 + <condition>&#x3d;</condition>
  1145 + <name2/>
  1146 + </key>
  1147 + <key>
  1148 + <name>bcs</name>
  1149 + <field>bcs</field>
  1150 + <condition>&#x3d;</condition>
  1151 + <name2/>
  1152 + </key>
  1153 + <value>
  1154 + <name>tcc</name>
  1155 + <rename>qdzid</rename>
  1156 + <update>Y</update>
  1157 + </value>
  1158 + <value>
  1159 + <name>zdz</name>
  1160 + <rename>zdzid</rename>
  1161 + <update>Y</update>
  1162 + </value>
  1163 + <value>
  1164 + <name>xl</name>
  1165 + <rename>xlid</rename>
  1166 + <update>Y</update>
  1167 + </value>
  1168 + <value>
  1169 + <name>ttinfo</name>
  1170 + <rename>ttid</rename>
  1171 + <update>Y</update>
  1172 + </value>
  1173 + <value>
  1174 + <name>xl_dir</name>
  1175 + <rename>sxx</rename>
  1176 + <update>Y</update>
  1177 + </value>
  1178 + <value>
  1179 + <name>lp</name>
  1180 + <rename>lpid</rename>
  1181 + <update>Y</update>
  1182 + </value>
  1183 + <value>
  1184 + <name>jhlc</name>
  1185 + <rename>out_mileage</rename>
  1186 + <update>Y</update>
  1187 + </value>
  1188 + <value>
  1189 + <name>fcsj</name>
  1190 + <rename>sendtime_calcu</rename>
  1191 + <update>Y</update>
  1192 + </value>
  1193 + <value>
  1194 + <name>bcsj</name>
  1195 + <rename>out_time</rename>
  1196 + <update>Y</update>
  1197 + </value>
  1198 + <value>
  1199 + <name>bcs</name>
  1200 + <rename>bcs</rename>
  1201 + <update>Y</update>
  1202 + </value>
  1203 + <value>
  1204 + <name>fcno</name>
  1205 + <rename>fcno</rename>
  1206 + <update>Y</update>
  1207 + </value>
  1208 + <value>
  1209 + <name>bc_type</name>
  1210 + <rename>bctype_code</rename>
  1211 + <update>Y</update>
  1212 + </value>
  1213 + <value>
  1214 + <name>isfb</name>
  1215 + <rename>isfb</rename>
  1216 + <update>Y</update>
  1217 + </value>
  1218 + <value>
  1219 + <name>qdz_code</name>
  1220 + <rename>qdzcode</rename>
  1221 + <update>Y</update>
  1222 + </value>
  1223 + <value>
  1224 + <name>qdz_name</name>
  1225 + <rename>tn</rename>
  1226 + <update>Y</update>
  1227 + </value>
  1228 + <value>
  1229 + <name>zdz_code</name>
  1230 + <rename>zdzcode</rename>
  1231 + <update>Y</update>
  1232 + </value>
  1233 + <value>
  1234 + <name>zdz_name</name>
  1235 + <rename>zdzname</rename>
  1236 + <update>Y</update>
  1237 + </value>
  1238 + <value>
  1239 + <name>ists</name>
  1240 + <rename>ists</rename>
  1241 + <update>Y</update>
  1242 + </value>
  1243 + </lookup>
  1244 + <cluster_schema/>
  1245 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1246 + <xloc>340</xloc>
  1247 + <yloc>1087</yloc>
  1248 + <draw>Y</draw>
  1249 + </GUI>
  1250 + </step>
  1251 +
  1252 + <step>
  1253 + <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail 3</name>
  1254 + <type>InsertUpdate</type>
  1255 + <description/>
  1256 + <distribute>Y</distribute>
  1257 + <custom_distribution/>
  1258 + <copies>1</copies>
  1259 + <partitioning>
  1260 + <method>none</method>
  1261 + <schema_name/>
  1262 + </partitioning>
  1263 + <connection>bus_control_variable</connection>
  1264 + <commit>100</commit>
  1265 + <update_bypassed>N</update_bypassed>
  1266 + <lookup>
  1267 + <schema/>
  1268 + <table>bsth_c_s_ttinfo_detail</table>
  1269 + <key>
  1270 + <name>xlid</name>
  1271 + <field>xl</field>
  1272 + <condition>&#x3d;</condition>
  1273 + <name2/>
  1274 + </key>
  1275 + <key>
  1276 + <name>ttid</name>
  1277 + <field>ttinfo</field>
  1278 + <condition>&#x3d;</condition>
  1279 + <name2/>
  1280 + </key>
  1281 + <key>
  1282 + <name>lpid</name>
  1283 + <field>lp</field>
  1284 + <condition>&#x3d;</condition>
  1285 + <name2/>
  1286 + </key>
  1287 + <key>
  1288 + <name>fcno</name>
  1289 + <field>fcno</field>
  1290 + <condition>&#x3d;</condition>
  1291 + <name2/>
  1292 + </key>
  1293 + <key>
  1294 + <name>bcs</name>
  1295 + <field>bcs</field>
  1296 + <condition>&#x3d;</condition>
  1297 + <name2/>
  1298 + </key>
  1299 + <value>
  1300 + <name>fcno</name>
  1301 + <rename>fcno</rename>
  1302 + <update>Y</update>
  1303 + </value>
  1304 + <value>
  1305 + <name>bcs</name>
  1306 + <rename>bcs</rename>
  1307 + <update>Y</update>
  1308 + </value>
  1309 + <value>
  1310 + <name>xl</name>
  1311 + <rename>xlid</rename>
  1312 + <update>Y</update>
  1313 + </value>
  1314 + <value>
  1315 + <name>ttinfo</name>
  1316 + <rename>ttid</rename>
  1317 + <update>Y</update>
  1318 + </value>
  1319 + <value>
  1320 + <name>lp</name>
  1321 + <rename>lpid</rename>
  1322 + <update>Y</update>
  1323 + </value>
  1324 + <value>
  1325 + <name>bc_type</name>
  1326 + <rename>bctype_code</rename>
  1327 + <update>Y</update>
  1328 + </value>
  1329 + <value>
  1330 + <name>bcsj</name>
  1331 + <rename>parade_time</rename>
  1332 + <update>Y</update>
  1333 + </value>
  1334 + <value>
  1335 + <name>jhlc</name>
  1336 + <rename>parade_mileage</rename>
  1337 + <update>Y</update>
  1338 + </value>
  1339 + <value>
  1340 + <name>fcsj</name>
  1341 + <rename>sendtime_calcu</rename>
  1342 + <update>Y</update>
  1343 + </value>
  1344 + <value>
  1345 + <name>xl_dir</name>
  1346 + <rename>sxx2</rename>
  1347 + <update>Y</update>
  1348 + </value>
  1349 + <value>
  1350 + <name>qdz</name>
  1351 + <rename>qdzid</rename>
  1352 + <update>Y</update>
  1353 + </value>
  1354 + <value>
  1355 + <name>tcc</name>
  1356 + <rename>zdzid</rename>
  1357 + <update>Y</update>
  1358 + </value>
  1359 + <value>
  1360 + <name>isfb</name>
  1361 + <rename>isfb</rename>
  1362 + <update>Y</update>
  1363 + </value>
  1364 + <value>
  1365 + <name>qdz_code</name>
  1366 + <rename>qdzcode</rename>
  1367 + <update>Y</update>
  1368 + </value>
  1369 + <value>
  1370 + <name>qdz_name</name>
  1371 + <rename>qname</rename>
  1372 + <update>Y</update>
  1373 + </value>
  1374 + <value>
  1375 + <name>zdz_code</name>
  1376 + <rename>zdzcode</rename>
  1377 + <update>Y</update>
  1378 + </value>
  1379 + <value>
  1380 + <name>zdz_name</name>
  1381 + <rename>tn</rename>
  1382 + <update>Y</update>
  1383 + </value>
  1384 + <value>
  1385 + <name>ists</name>
  1386 + <rename>ists</rename>
  1387 + <update>Y</update>
  1388 + </value>
  1389 + </lookup>
  1390 + <cluster_schema/>
  1391 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1392 + <xloc>845</xloc>
  1393 + <yloc>899</yloc>
  1394 + <draw>Y</draw>
  1395 + </GUI>
  1396 + </step>
  1397 +
  1398 + <step>
  1399 + <name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</name>
  1400 + <type>ExcelInput</type>
  1401 + <description/>
  1402 + <distribute>N</distribute>
  1403 + <custom_distribution/>
  1404 + <copies>1</copies>
  1405 + <partitioning>
  1406 + <method>none</method>
  1407 + <schema_name/>
  1408 + </partitioning>
  1409 + <header>Y</header>
  1410 + <noempty>Y</noempty>
  1411 + <stoponempty>N</stoponempty>
  1412 + <filefield/>
  1413 + <sheetfield/>
  1414 + <sheetrownumfield/>
  1415 + <rownumfield/>
  1416 + <sheetfield/>
  1417 + <filefield/>
  1418 + <limit>0</limit>
  1419 + <encoding/>
  1420 + <add_to_result_filenames>Y</add_to_result_filenames>
  1421 + <accept_filenames>N</accept_filenames>
  1422 + <accept_field/>
  1423 + <accept_stepname/>
  1424 + <file>
  1425 + <name/>
  1426 + <filemask/>
  1427 + <exclude_filemask/>
  1428 + <file_required>N</file_required>
  1429 + <include_subfolders>N</include_subfolders>
  1430 + </file>
  1431 + <fields>
  1432 + </fields>
  1433 + <sheets>
  1434 + <sheet>
  1435 + <name/>
  1436 + <startrow>0</startrow>
  1437 + <startcol>0</startcol>
  1438 + </sheet>
  1439 + </sheets>
  1440 + <strict_types>N</strict_types>
  1441 + <error_ignored>N</error_ignored>
  1442 + <error_line_skipped>N</error_line_skipped>
  1443 + <bad_line_files_destination_directory/>
  1444 + <bad_line_files_extension>warning</bad_line_files_extension>
  1445 + <error_line_files_destination_directory/>
  1446 + <error_line_files_extension>error</error_line_files_extension>
  1447 + <line_number_files_destination_directory/>
  1448 + <line_number_files_extension>line</line_number_files_extension>
  1449 + <shortFileFieldName/>
  1450 + <pathFieldName/>
  1451 + <hiddenFieldName/>
  1452 + <lastModificationTimeFieldName/>
  1453 + <uriNameFieldName/>
  1454 + <rootUriNameFieldName/>
  1455 + <extensionFieldName/>
  1456 + <sizeFieldName/>
  1457 + <spreadsheet_type>JXL</spreadsheet_type>
  1458 + <cluster_schema/>
  1459 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1460 + <xloc>112</xloc>
  1461 + <yloc>44</yloc>
  1462 + <draw>Y</draw>
  1463 + </GUI>
  1464 + </step>
  1465 +
  1466 + <step>
  1467 + <name>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;1</name>
  1468 + <type>DBLookup</type>
  1469 + <description/>
  1470 + <distribute>Y</distribute>
  1471 + <custom_distribution/>
  1472 + <copies>1</copies>
  1473 + <partitioning>
  1474 + <method>none</method>
  1475 + <schema_name/>
  1476 + </partitioning>
  1477 + <connection>bus_control_variable</connection>
  1478 + <cache>N</cache>
  1479 + <cache_load_all>N</cache_load_all>
  1480 + <cache_size>0</cache_size>
  1481 + <lookup>
  1482 + <schema/>
  1483 + <table>bsth_c_car_park</table>
  1484 + <orderby/>
  1485 + <fail_on_multiple>N</fail_on_multiple>
  1486 + <eat_row_on_failure>N</eat_row_on_failure>
  1487 + <key>
  1488 + <name>tccname_</name>
  1489 + <field>park_name</field>
  1490 + <condition>&#x3d;</condition>
  1491 + <name2/>
  1492 + </key>
  1493 + <value>
  1494 + <name>id</name>
  1495 + <rename>qdzid</rename>
  1496 + <default/>
  1497 + <type>Integer</type>
  1498 + </value>
  1499 + <value>
  1500 + <name>park_code</name>
  1501 + <rename>qdzcode</rename>
  1502 + <default/>
  1503 + <type>String</type>
  1504 + </value>
  1505 + <value>
  1506 + <name>park_name</name>
  1507 + <rename>tn</rename>
  1508 + <default/>
  1509 + <type>String</type>
  1510 + </value>
  1511 + </lookup>
  1512 + <cluster_schema/>
  1513 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1514 + <xloc>755</xloc>
  1515 + <yloc>504</yloc>
  1516 + <draw>Y</draw>
  1517 + </GUI>
  1518 + </step>
  1519 +
  1520 + <step>
  1521 + <name>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;2</name>
  1522 + <type>DBLookup</type>
  1523 + <description/>
  1524 + <distribute>Y</distribute>
  1525 + <custom_distribution/>
  1526 + <copies>1</copies>
  1527 + <partitioning>
  1528 + <method>none</method>
  1529 + <schema_name/>
  1530 + </partitioning>
  1531 + <connection>bus_control_variable</connection>
  1532 + <cache>N</cache>
  1533 + <cache_load_all>N</cache_load_all>
  1534 + <cache_size>0</cache_size>
  1535 + <lookup>
  1536 + <schema/>
  1537 + <table>bsth_c_car_park</table>
  1538 + <orderby/>
  1539 + <fail_on_multiple>N</fail_on_multiple>
  1540 + <eat_row_on_failure>N</eat_row_on_failure>
  1541 + <key>
  1542 + <name>tccname_</name>
  1543 + <field>park_name</field>
  1544 + <condition>&#x3d;</condition>
  1545 + <name2/>
  1546 + </key>
  1547 + <value>
  1548 + <name>id</name>
  1549 + <rename>zdzid</rename>
  1550 + <default/>
  1551 + <type>Integer</type>
  1552 + </value>
  1553 + <value>
  1554 + <name>park_code</name>
  1555 + <rename>zdzcode</rename>
  1556 + <default/>
  1557 + <type>String</type>
  1558 + </value>
  1559 + <value>
  1560 + <name>park_name</name>
  1561 + <rename>tn</rename>
  1562 + <default/>
  1563 + <type>String</type>
  1564 + </value>
  1565 + </lookup>
  1566 + <cluster_schema/>
  1567 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1568 + <xloc>887</xloc>
  1569 + <yloc>608</yloc>
  1570 + <draw>Y</draw>
  1571 + </GUI>
  1572 + </step>
  1573 +
  1574 + <step>
  1575 + <name>&#x67e5;&#x627e;&#x51fa;&#x573a;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</name>
  1576 + <type>DBLookup</type>
  1577 + <description/>
  1578 + <distribute>Y</distribute>
  1579 + <custom_distribution/>
  1580 + <copies>1</copies>
  1581 + <partitioning>
  1582 + <method>none</method>
  1583 + <schema_name/>
  1584 + </partitioning>
  1585 + <connection>bus_control_variable</connection>
  1586 + <cache>N</cache>
  1587 + <cache_load_all>N</cache_load_all>
  1588 + <cache_size>0</cache_size>
  1589 + <lookup>
  1590 + <schema/>
  1591 + <table>bsth_c_stationroute</table>
  1592 + <orderby/>
  1593 + <fail_on_multiple>N</fail_on_multiple>
  1594 + <eat_row_on_failure>N</eat_row_on_failure>
  1595 + <key>
  1596 + <name>xlid</name>
  1597 + <field>line</field>
  1598 + <condition>&#x3d;</condition>
  1599 + <name2/>
  1600 + </key>
  1601 + <key>
  1602 + <name>zdzname</name>
  1603 + <field>station_name</field>
  1604 + <condition>&#x3d;</condition>
  1605 + <name2/>
  1606 + </key>
  1607 + <key>
  1608 + <name>endZdtype</name>
  1609 + <field>station_mark</field>
  1610 + <condition>&#x3d;</condition>
  1611 + <name2/>
  1612 + </key>
  1613 + <key>
  1614 + <name>destory</name>
  1615 + <field>destroy</field>
  1616 + <condition>&#x3d;</condition>
  1617 + <name2/>
  1618 + </key>
  1619 + <value>
  1620 + <name>station</name>
  1621 + <rename>zdzid</rename>
  1622 + <default/>
  1623 + <type>Integer</type>
  1624 + </value>
  1625 + <value>
  1626 + <name>directions</name>
  1627 + <rename>sxx</rename>
  1628 + <default/>
  1629 + <type>Integer</type>
  1630 + </value>
  1631 + <value>
  1632 + <name>station_code</name>
  1633 + <rename>zdzcode</rename>
  1634 + <default/>
  1635 + <type>String</type>
  1636 + </value>
  1637 + </lookup>
  1638 + <cluster_schema/>
  1639 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1640 + <xloc>329</xloc>
  1641 + <yloc>505</yloc>
  1642 + <draw>Y</draw>
  1643 + </GUI>
  1644 + </step>
  1645 +
  1646 + <step>
  1647 + <name>&#x67e5;&#x627e;&#x6240;&#x6709;&#x7ebf;&#x8def;&#x4e0a;&#x4e0b;&#x884c;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
  1648 + <type>DBLookup</type>
  1649 + <description/>
  1650 + <distribute>Y</distribute>
  1651 + <custom_distribution/>
  1652 + <copies>1</copies>
  1653 + <partitioning>
  1654 + <method>none</method>
  1655 + <schema_name/>
  1656 + </partitioning>
  1657 + <connection>bus_control_variable</connection>
  1658 + <cache>N</cache>
  1659 + <cache_load_all>N</cache_load_all>
  1660 + <cache_size>0</cache_size>
  1661 + <lookup>
  1662 + <schema/>
  1663 + <table>bsth_c_line_information</table>
  1664 + <orderby/>
  1665 + <fail_on_multiple>N</fail_on_multiple>
  1666 + <eat_row_on_failure>N</eat_row_on_failure>
  1667 + <key>
  1668 + <name>xlid</name>
  1669 + <field>line</field>
  1670 + <condition>&#x3d;</condition>
  1671 + <name2/>
  1672 + </key>
  1673 + <value>
  1674 + <name>up_mileage</name>
  1675 + <rename>up_mileage</rename>
  1676 + <default/>
  1677 + <type>Number</type>
  1678 + </value>
  1679 + <value>
  1680 + <name>down_mileage</name>
  1681 + <rename>down_mileage</rename>
  1682 + <default/>
  1683 + <type>Number</type>
  1684 + </value>
  1685 + <value>
  1686 + <name>up_travel_time</name>
  1687 + <rename>up_travel_time</rename>
  1688 + <default/>
  1689 + <type>Number</type>
  1690 + </value>
  1691 + <value>
  1692 + <name>down_travel_time</name>
  1693 + <rename>down_travel_time</rename>
  1694 + <default/>
  1695 + <type>Number</type>
  1696 + </value>
  1697 + <value>
  1698 + <name>early_start_time</name>
  1699 + <rename>early_start_time</rename>
  1700 + <default/>
  1701 + <type>String</type>
  1702 + </value>
  1703 + <value>
  1704 + <name>early_end_time</name>
  1705 + <rename>early_end_time</rename>
  1706 + <default/>
  1707 + <type>String</type>
  1708 + </value>
  1709 + <value>
  1710 + <name>early_up_time</name>
  1711 + <rename>early_up_time</rename>
  1712 + <default/>
  1713 + <type>Number</type>
  1714 + </value>
  1715 + <value>
  1716 + <name>early_down_time</name>
  1717 + <rename>early_down_time</rename>
  1718 + <default/>
  1719 + <type>Number</type>
  1720 + </value>
  1721 + <value>
  1722 + <name>late_start_time</name>
  1723 + <rename>late_start_time</rename>
  1724 + <default/>
  1725 + <type>String</type>
  1726 + </value>
  1727 + <value>
  1728 + <name>late_end_time</name>
  1729 + <rename>late_end_time</rename>
  1730 + <default/>
  1731 + <type>String</type>
  1732 + </value>
  1733 + <value>
  1734 + <name>late_up_time</name>
  1735 + <rename>late_up_time</rename>
  1736 + <default/>
  1737 + <type>Number</type>
  1738 + </value>
  1739 + <value>
  1740 + <name>late_down_time</name>
  1741 + <rename>late_down_time</rename>
  1742 + <default/>
  1743 + <type>Number</type>
  1744 + </value>
  1745 + </lookup>
  1746 + <cluster_schema/>
  1747 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1748 + <xloc>149</xloc>
  1749 + <yloc>581</yloc>
  1750 + <draw>Y</draw>
  1751 + </GUI>
  1752 + </step>
  1753 +
  1754 + <step>
  1755 + <name>&#x67e5;&#x627e;&#x65f6;&#x523b;&#x8868;&#x57fa;&#x7840;&#x4fe1;&#x606f;&#x5173;&#x8054;</name>
  1756 + <type>DBLookup</type>
  1757 + <description/>
  1758 + <distribute>Y</distribute>
  1759 + <custom_distribution/>
  1760 + <copies>1</copies>
  1761 + <partitioning>
  1762 + <method>none</method>
  1763 + <schema_name/>
  1764 + </partitioning>
  1765 + <connection>bus_control_variable</connection>
  1766 + <cache>N</cache>
  1767 + <cache_load_all>N</cache_load_all>
  1768 + <cache_size>0</cache_size>
  1769 + <lookup>
  1770 + <schema/>
  1771 + <table>bsth_c_s_ttinfo</table>
  1772 + <orderby/>
  1773 + <fail_on_multiple>N</fail_on_multiple>
  1774 + <eat_row_on_failure>N</eat_row_on_failure>
  1775 + <key>
  1776 + <name>xlid</name>
  1777 + <field>xl</field>
  1778 + <condition>&#x3d;</condition>
  1779 + <name2/>
  1780 + </key>
  1781 + <key>
  1782 + <name>ttinfoname_</name>
  1783 + <field>name</field>
  1784 + <condition>&#x3d;</condition>
  1785 + <name2/>
  1786 + </key>
  1787 + <key>
  1788 + <name>iscanceled</name>
  1789 + <field>is_cancel</field>
  1790 + <condition>&#x3d;</condition>
  1791 + <name2/>
  1792 + </key>
  1793 + <value>
  1794 + <name>id</name>
  1795 + <rename>ttid</rename>
  1796 + <default/>
  1797 + <type>Integer</type>
  1798 + </value>
  1799 + </lookup>
  1800 + <cluster_schema/>
  1801 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1802 + <xloc>1011</xloc>
  1803 + <yloc>134</yloc>
  1804 + <draw>Y</draw>
  1805 + </GUI>
  1806 + </step>
  1807 +
  1808 + <step>
  1809 + <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x5173;&#x8054;</name>
  1810 + <type>DBLookup</type>
  1811 + <description/>
  1812 + <distribute>Y</distribute>
  1813 + <custom_distribution/>
  1814 + <copies>1</copies>
  1815 + <partitioning>
  1816 + <method>none</method>
  1817 + <schema_name/>
  1818 + </partitioning>
  1819 + <connection>bus_control_variable</connection>
  1820 + <cache>N</cache>
  1821 + <cache_load_all>N</cache_load_all>
  1822 + <cache_size>0</cache_size>
  1823 + <lookup>
  1824 + <schema/>
  1825 + <table>bsth_c_line</table>
  1826 + <orderby/>
  1827 + <fail_on_multiple>N</fail_on_multiple>
  1828 + <eat_row_on_failure>N</eat_row_on_failure>
  1829 + <key>
  1830 + <name>xlname_</name>
  1831 + <field>name</field>
  1832 + <condition>&#x3d;</condition>
  1833 + <name2/>
  1834 + </key>
  1835 + <key>
  1836 + <name>iscanceled</name>
  1837 + <field>destroy</field>
  1838 + <condition>&#x3d;</condition>
  1839 + <name2/>
  1840 + </key>
  1841 + <value>
  1842 + <name>id</name>
  1843 + <rename>xlid</rename>
  1844 + <default/>
  1845 + <type>Integer</type>
  1846 + </value>
  1847 + </lookup>
  1848 + <cluster_schema/>
  1849 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1850 + <xloc>1007</xloc>
  1851 + <yloc>43</yloc>
  1852 + <draw>Y</draw>
  1853 + </GUI>
  1854 + </step>
  1855 +
  1856 + <step>
  1857 + <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x51fa;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
  1858 + <type>DBLookup</type>
  1859 + <description/>
  1860 + <distribute>Y</distribute>
  1861 + <custom_distribution/>
  1862 + <copies>1</copies>
  1863 + <partitioning>
  1864 + <method>none</method>
  1865 + <schema_name/>
  1866 + </partitioning>
  1867 + <connection>bus_control_variable</connection>
  1868 + <cache>N</cache>
  1869 + <cache_load_all>N</cache_load_all>
  1870 + <cache_size>0</cache_size>
  1871 + <lookup>
  1872 + <schema/>
  1873 + <table>bsth_c_line_information</table>
  1874 + <orderby/>
  1875 + <fail_on_multiple>N</fail_on_multiple>
  1876 + <eat_row_on_failure>N</eat_row_on_failure>
  1877 + <key>
  1878 + <name>xlid</name>
  1879 + <field>line</field>
  1880 + <condition>&#x3d;</condition>
  1881 + <name2/>
  1882 + </key>
  1883 + <value>
  1884 + <name>up_out_timer</name>
  1885 + <rename>up_out_timer</rename>
  1886 + <default/>
  1887 + <type>Number</type>
  1888 + </value>
  1889 + <value>
  1890 + <name>up_out_mileage</name>
  1891 + <rename>up_out_mileage</rename>
  1892 + <default/>
  1893 + <type>Number</type>
  1894 + </value>
  1895 + <value>
  1896 + <name>down_out_timer</name>
  1897 + <rename>down_out_timer</rename>
  1898 + <default/>
  1899 + <type>Number</type>
  1900 + </value>
  1901 + <value>
  1902 + <name>down_out_mileage</name>
  1903 + <rename>down_out_mileage</rename>
  1904 + <default/>
  1905 + <type>Number</type>
  1906 + </value>
  1907 + </lookup>
  1908 + <cluster_schema/>
  1909 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1910 + <xloc>335</xloc>
  1911 + <yloc>763</yloc>
  1912 + <draw>Y</draw>
  1913 + </GUI>
  1914 + </step>
  1915 +
  1916 + <step>
  1917 + <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x8fdb;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
  1918 + <type>DBLookup</type>
  1919 + <description/>
  1920 + <distribute>Y</distribute>
  1921 + <custom_distribution/>
  1922 + <copies>1</copies>
  1923 + <partitioning>
  1924 + <method>none</method>
  1925 + <schema_name/>
  1926 + </partitioning>
  1927 + <connection>bus_control_variable</connection>
  1928 + <cache>N</cache>
  1929 + <cache_load_all>N</cache_load_all>
  1930 + <cache_size>0</cache_size>
  1931 + <lookup>
  1932 + <schema/>
  1933 + <table>bsth_c_line_information</table>
  1934 + <orderby/>
  1935 + <fail_on_multiple>N</fail_on_multiple>
  1936 + <eat_row_on_failure>N</eat_row_on_failure>
  1937 + <key>
  1938 + <name>xlid</name>
  1939 + <field>line</field>
  1940 + <condition>&#x3d;</condition>
  1941 + <name2/>
  1942 + </key>
  1943 + <value>
  1944 + <name>up_in_mileage</name>
  1945 + <rename>up_in_mileage</rename>
  1946 + <default/>
  1947 + <type>Number</type>
  1948 + </value>
  1949 + <value>
  1950 + <name>up_in_timer</name>
  1951 + <rename>up_in_timer</rename>
  1952 + <default/>
  1953 + <type>Number</type>
  1954 + </value>
  1955 + <value>
  1956 + <name>down_in_mileage</name>
  1957 + <rename>down_in_mileage</rename>
  1958 + <default/>
  1959 + <type>Number</type>
  1960 + </value>
  1961 + <value>
  1962 + <name>down_in_timer</name>
  1963 + <rename>down_in_timer</rename>
  1964 + <default/>
  1965 + <type>Number</type>
  1966 + </value>
  1967 + </lookup>
  1968 + <cluster_schema/>
  1969 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1970 + <xloc>553</xloc>
  1971 + <yloc>1004</yloc>
  1972 + <draw>Y</draw>
  1973 + </GUI>
  1974 + </step>
  1975 +
  1976 + <step>
  1977 + <name>&#x67e5;&#x627e;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;</name>
  1978 + <type>DBLookup</type>
  1979 + <description/>
  1980 + <distribute>Y</distribute>
  1981 + <custom_distribution/>
  1982 + <copies>1</copies>
  1983 + <partitioning>
  1984 + <method>none</method>
  1985 + <schema_name/>
  1986 + </partitioning>
  1987 + <connection>bus_control_variable</connection>
  1988 + <cache>N</cache>
  1989 + <cache_load_all>N</cache_load_all>
  1990 + <cache_size>0</cache_size>
  1991 + <lookup>
  1992 + <schema/>
  1993 + <table>bsth_c_stationroute</table>
  1994 + <orderby/>
  1995 + <fail_on_multiple>N</fail_on_multiple>
  1996 + <eat_row_on_failure>N</eat_row_on_failure>
  1997 + <key>
  1998 + <name>xlid</name>
  1999 + <field>line</field>
  2000 + <condition>&#x3d;</condition>
  2001 + <name2/>
  2002 + </key>
  2003 + <key>
  2004 + <name>sxx</name>
  2005 + <field>directions</field>
  2006 + <condition>&#x3d;</condition>
  2007 + <name2/>
  2008 + </key>
  2009 + <key>
  2010 + <name>endZdtype</name>
  2011 + <field>station_mark</field>
  2012 + <condition>&#x3d;</condition>
  2013 + <name2/>
  2014 + </key>
  2015 + <key>
  2016 + <name>destory</name>
  2017 + <field>destroy</field>
  2018 + <condition>&#x3d;</condition>
  2019 + <name2/>
  2020 + </key>
  2021 + <value>
  2022 + <name>station_name</name>
  2023 + <rename>zdzname</rename>
  2024 + <default/>
  2025 + <type>String</type>
  2026 + </value>
  2027 + <value>
  2028 + <name>station</name>
  2029 + <rename>zdzid</rename>
  2030 + <default/>
  2031 + <type>Integer</type>
  2032 + </value>
  2033 + <value>
  2034 + <name>station_code</name>
  2035 + <rename>zdzcode</rename>
  2036 + <default/>
  2037 + <type>String</type>
  2038 + </value>
  2039 + </lookup>
  2040 + <cluster_schema/>
  2041 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2042 + <xloc>280</xloc>
  2043 + <yloc>404</yloc>
  2044 + <draw>Y</draw>
  2045 + </GUI>
  2046 + </step>
  2047 +
  2048 + <step>
  2049 + <name>&#x67e5;&#x627e;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</name>
  2050 + <type>DBLookup</type>
  2051 + <description/>
  2052 + <distribute>Y</distribute>
  2053 + <custom_distribution/>
  2054 + <copies>1</copies>
  2055 + <partitioning>
  2056 + <method>none</method>
  2057 + <schema_name/>
  2058 + </partitioning>
  2059 + <connection>bus_control_variable</connection>
  2060 + <cache>N</cache>
  2061 + <cache_load_all>N</cache_load_all>
  2062 + <cache_size>0</cache_size>
  2063 + <lookup>
  2064 + <schema/>
  2065 + <table>bsth_c_stationroute</table>
  2066 + <orderby/>
  2067 + <fail_on_multiple>N</fail_on_multiple>
  2068 + <eat_row_on_failure>N</eat_row_on_failure>
  2069 + <key>
  2070 + <name>xlid</name>
  2071 + <field>line</field>
  2072 + <condition>&#x3d;</condition>
  2073 + <name2/>
  2074 + </key>
  2075 + <key>
  2076 + <name>qdzname</name>
  2077 + <field>station_name</field>
  2078 + <condition>&#x3d;</condition>
  2079 + <name2/>
  2080 + </key>
  2081 + <key>
  2082 + <name>sendZdtype</name>
  2083 + <field>station_mark</field>
  2084 + <condition>&#x3d;</condition>
  2085 + <name2/>
  2086 + </key>
  2087 + <key>
  2088 + <name>destory</name>
  2089 + <field>destroy</field>
  2090 + <condition>&#x3d;</condition>
  2091 + <name2/>
  2092 + </key>
  2093 + <value>
  2094 + <name>station</name>
  2095 + <rename>qdzid</rename>
  2096 + <default/>
  2097 + <type>Integer</type>
  2098 + </value>
  2099 + <value>
  2100 + <name>directions</name>
  2101 + <rename>sxx</rename>
  2102 + <default/>
  2103 + <type>Integer</type>
  2104 + </value>
  2105 + <value>
  2106 + <name>station_code</name>
  2107 + <rename>qdzcode</rename>
  2108 + <default/>
  2109 + <type>String</type>
  2110 + </value>
  2111 + </lookup>
  2112 + <cluster_schema/>
  2113 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2114 + <xloc>430</xloc>
  2115 + <yloc>403</yloc>
  2116 + <draw>Y</draw>
  2117 + </GUI>
  2118 + </step>
  2119 +
  2120 + <step>
  2121 + <name>&#x67e5;&#x627e;&#x8def;&#x724c;&#x5173;&#x8054;</name>
  2122 + <type>DBLookup</type>
  2123 + <description/>
  2124 + <distribute>Y</distribute>
  2125 + <custom_distribution/>
  2126 + <copies>1</copies>
  2127 + <partitioning>
  2128 + <method>none</method>
  2129 + <schema_name/>
  2130 + </partitioning>
  2131 + <connection>bus_control_variable</connection>
  2132 + <cache>N</cache>
  2133 + <cache_load_all>N</cache_load_all>
  2134 + <cache_size>0</cache_size>
  2135 + <lookup>
  2136 + <schema/>
  2137 + <table>bsth_c_s_gbi</table>
  2138 + <orderby/>
  2139 + <fail_on_multiple>N</fail_on_multiple>
  2140 + <eat_row_on_failure>N</eat_row_on_failure>
  2141 + <key>
  2142 + <name>xlid</name>
  2143 + <field>xl</field>
  2144 + <condition>&#x3d;</condition>
  2145 + <name2/>
  2146 + </key>
  2147 + <key>
  2148 + <name>lp</name>
  2149 + <field>lp_name</field>
  2150 + <condition>&#x3d;</condition>
  2151 + <name2/>
  2152 + </key>
  2153 + <key>
  2154 + <name>iscanceled</name>
  2155 + <field>is_cancel</field>
  2156 + <condition>&#x3d;</condition>
  2157 + <name2/>
  2158 + </key>
  2159 + <value>
  2160 + <name>id</name>
  2161 + <rename>lpid</rename>
  2162 + <default/>
  2163 + <type>Integer</type>
  2164 + </value>
  2165 + </lookup>
  2166 + <cluster_schema/>
  2167 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2168 + <xloc>1013</xloc>
  2169 + <yloc>265</yloc>
  2170 + <draw>Y</draw>
  2171 + </GUI>
  2172 + </step>
  2173 +
  2174 + <step>
  2175 + <name>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ebf;&#x8def;&#x65b9;&#x5411;</name>
  2176 + <type>DBLookup</type>
  2177 + <description/>
  2178 + <distribute>Y</distribute>
  2179 + <custom_distribution/>
  2180 + <copies>1</copies>
  2181 + <partitioning>
  2182 + <method>none</method>
  2183 + <schema_name/>
  2184 + </partitioning>
  2185 + <connection>bus_control_variable</connection>
  2186 + <cache>N</cache>
  2187 + <cache_load_all>N</cache_load_all>
  2188 + <cache_size>0</cache_size>
  2189 + <lookup>
  2190 + <schema/>
  2191 + <table>bsth_c_stationroute</table>
  2192 + <orderby/>
  2193 + <fail_on_multiple>N</fail_on_multiple>
  2194 + <eat_row_on_failure>N</eat_row_on_failure>
  2195 + <key>
  2196 + <name>xlid</name>
  2197 + <field>line</field>
  2198 + <condition>&#x3d;</condition>
  2199 + <name2/>
  2200 + </key>
  2201 + <key>
  2202 + <name>startZdtype_calcu</name>
  2203 + <field>station_mark</field>
  2204 + <condition>&#x3d;</condition>
  2205 + <name2/>
  2206 + </key>
  2207 + <key>
  2208 + <name>qdzname_calcu</name>
  2209 + <field>station_name</field>
  2210 + <condition>&#x3d;</condition>
  2211 + <name2/>
  2212 + </key>
  2213 + <key>
  2214 + <name>destory</name>
  2215 + <field>destroy</field>
  2216 + <condition>&#x3d;</condition>
  2217 + <name2/>
  2218 + </key>
  2219 + <value>
  2220 + <name>directions</name>
  2221 + <rename>sxx</rename>
  2222 + <default/>
  2223 + <type>String</type>
  2224 + </value>
  2225 + </lookup>
  2226 + <cluster_schema/>
  2227 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2228 + <xloc>548</xloc>
  2229 + <yloc>610</yloc>
  2230 + <draw>Y</draw>
  2231 + </GUI>
  2232 + </step>
  2233 +
  2234 + <step>
  2235 + <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>
  2236 + <type>DBLookup</type>
  2237 + <description/>
  2238 + <distribute>Y</distribute>
  2239 + <custom_distribution/>
  2240 + <copies>1</copies>
  2241 + <partitioning>
  2242 + <method>none</method>
  2243 + <schema_name/>
  2244 + </partitioning>
  2245 + <connection>bus_control_variable</connection>
  2246 + <cache>Y</cache>
  2247 + <cache_load_all>Y</cache_load_all>
  2248 + <cache_size>0</cache_size>
  2249 + <lookup>
  2250 + <schema/>
  2251 + <table>bsth_c_stationroute</table>
  2252 + <orderby/>
  2253 + <fail_on_multiple>N</fail_on_multiple>
  2254 + <eat_row_on_failure>N</eat_row_on_failure>
  2255 + <key>
  2256 + <name>xlid</name>
  2257 + <field>line</field>
  2258 + <condition>&#x3d;</condition>
  2259 + <name2/>
  2260 + </key>
  2261 + <key>
  2262 + <name>endZdtype_calcu</name>
  2263 + <field>station_mark</field>
  2264 + <condition>&#x3d;</condition>
  2265 + <name2/>
  2266 + </key>
  2267 + <key>
  2268 + <name>sxx</name>
  2269 + <field>directions</field>
  2270 + <condition>&#x3d;</condition>
  2271 + <name2/>
  2272 + </key>
  2273 + <key>
  2274 + <name>destory</name>
  2275 + <field>destroy</field>
  2276 + <condition>&#x3d;</condition>
  2277 + <name2/>
  2278 + </key>
  2279 + <value>
  2280 + <name>station_name</name>
  2281 + <rename>zdzname_calcu</rename>
  2282 + <default/>
  2283 + <type>Integer</type>
  2284 + </value>
  2285 + </lookup>
  2286 + <cluster_schema/>
  2287 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2288 + <xloc>550</xloc>
  2289 + <yloc>701</yloc>
  2290 + <draw>Y</draw>
  2291 + </GUI>
  2292 + </step>
  2293 +
  2294 + <step>
  2295 + <name>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</name>
  2296 + <type>DBLookup</type>
  2297 + <description/>
  2298 + <distribute>Y</distribute>
  2299 + <custom_distribution/>
  2300 + <copies>1</copies>
  2301 + <partitioning>
  2302 + <method>none</method>
  2303 + <schema_name/>
  2304 + </partitioning>
  2305 + <connection>bus_control_variable</connection>
  2306 + <cache>N</cache>
  2307 + <cache_load_all>N</cache_load_all>
  2308 + <cache_size>0</cache_size>
  2309 + <lookup>
  2310 + <schema/>
  2311 + <table>bsth_c_stationroute</table>
  2312 + <orderby/>
  2313 + <fail_on_multiple>N</fail_on_multiple>
  2314 + <eat_row_on_failure>N</eat_row_on_failure>
  2315 + <key>
  2316 + <name>xlid</name>
  2317 + <field>line</field>
  2318 + <condition>&#x3d;</condition>
  2319 + <name2/>
  2320 + </key>
  2321 + <key>
  2322 + <name>zdzname_calcu</name>
  2323 + <field>station_name</field>
  2324 + <condition>&#x3d;</condition>
  2325 + <name2/>
  2326 + </key>
  2327 + <key>
  2328 + <name>startZdtype_calcu</name>
  2329 + <field>station_mark</field>
  2330 + <condition>&#x3d;</condition>
  2331 + <name2/>
  2332 + </key>
  2333 + <key>
  2334 + <name>destory</name>
  2335 + <field>destroy</field>
  2336 + <condition>&#x3d;</condition>
  2337 + <name2/>
  2338 + </key>
  2339 + <value>
  2340 + <name>directions</name>
  2341 + <rename>sxx2</rename>
  2342 + <default/>
  2343 + <type>Integer</type>
  2344 + </value>
  2345 + <value>
  2346 + <name>station</name>
  2347 + <rename>qdzid</rename>
  2348 + <default/>
  2349 + <type>Integer</type>
  2350 + </value>
  2351 + <value>
  2352 + <name>station_code</name>
  2353 + <rename>qdzcode</rename>
  2354 + <default/>
  2355 + <type>String</type>
  2356 + </value>
  2357 + <value>
  2358 + <name>station_name</name>
  2359 + <rename>qname</rename>
  2360 + <default/>
  2361 + <type>String</type>
  2362 + </value>
  2363 + </lookup>
  2364 + <cluster_schema/>
  2365 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2366 + <xloc>551</xloc>
  2367 + <yloc>782</yloc>
  2368 + <draw>Y</draw>
  2369 + </GUI>
  2370 + </step>
  2371 +
  2372 + <step>
  2373 + <name>&#x6b63;&#x5e38;&#x73ed;&#x6b21;_&#x5904;&#x7406;&#x6570;&#x636e;</name>
  2374 + <type>ScriptValueMod</type>
  2375 + <description/>
  2376 + <distribute>Y</distribute>
  2377 + <custom_distribution/>
  2378 + <copies>1</copies>
  2379 + <partitioning>
  2380 + <method>none</method>
  2381 + <schema_name/>
  2382 + </partitioning>
  2383 + <compatible>N</compatible>
  2384 + <optimizationLevel>9</optimizationLevel>
  2385 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  2386 + <jsScript_name>Script 1</jsScript_name>
  2387 + <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>
  2388 + </jsScript> </jsScripts> <fields> <field> <name>sendZdtype</name>
  2389 + <rename>sendZdtype</rename>
  2390 + <type>String</type>
  2391 + <length>-1</length>
  2392 + <precision>-1</precision>
  2393 + <replace>N</replace>
  2394 + </field> <field> <name>endZdtype</name>
  2395 + <rename>endZdtype</rename>
  2396 + <type>String</type>
  2397 + <length>-1</length>
  2398 + <precision>-1</precision>
  2399 + <replace>N</replace>
  2400 + </field> <field> <name>destory</name>
  2401 + <rename>destory</rename>
  2402 + <type>Integer</type>
  2403 + <length>-1</length>
  2404 + <precision>-1</precision>
  2405 + <replace>N</replace>
  2406 + </field> </fields> <cluster_schema/>
  2407 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2408 + <xloc>588</xloc>
  2409 + <yloc>403</yloc>
  2410 + <draw>Y</draw>
  2411 + </GUI>
  2412 + </step>
  2413 +
  2414 + <step>
  2415 + <name>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</name>
  2416 + <type>Dummy</type>
  2417 + <description/>
  2418 + <distribute>Y</distribute>
  2419 + <custom_distribution/>
  2420 + <copies>1</copies>
  2421 + <partitioning>
  2422 + <method>none</method>
  2423 + <schema_name/>
  2424 + </partitioning>
  2425 + <cluster_schema/>
  2426 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2427 + <xloc>725</xloc>
  2428 + <yloc>404</yloc>
  2429 + <draw>Y</draw>
  2430 + </GUI>
  2431 + </step>
  2432 +
  2433 + <step>
  2434 + <name>&#x6dfb;&#x52a0;&#x53d1;&#x8f66;&#x987a;&#x5e8f;&#x53f7;</name>
  2435 + <type>GroupBy</type>
  2436 + <description/>
  2437 + <distribute>Y</distribute>
  2438 + <custom_distribution/>
  2439 + <copies>1</copies>
  2440 + <partitioning>
  2441 + <method>none</method>
  2442 + <schema_name/>
  2443 + </partitioning>
  2444 + <all_rows>Y</all_rows>
  2445 + <ignore_aggregate>N</ignore_aggregate>
  2446 + <field_ignore/>
  2447 + <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
  2448 + <prefix>grp</prefix>
  2449 + <add_linenr>Y</add_linenr>
  2450 + <linenr_fieldname>fcno</linenr_fieldname>
  2451 + <give_back_row>N</give_back_row>
  2452 + <group>
  2453 + <field>
  2454 + <name>lp</name>
  2455 + </field>
  2456 + </group>
  2457 + <fields>
  2458 + </fields>
  2459 + <cluster_schema/>
  2460 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2461 + <xloc>442</xloc>
  2462 + <yloc>44</yloc>
  2463 + <draw>Y</draw>
  2464 + </GUI>
  2465 + </step>
  2466 +
  2467 + <step>
  2468 + <name>&#x6dfb;&#x52a0;&#x5bf9;&#x5e94;&#x73ed;&#x6b21;&#x6570;</name>
  2469 + <type>GroupBy</type>
  2470 + <description/>
  2471 + <distribute>Y</distribute>
  2472 + <custom_distribution/>
  2473 + <copies>1</copies>
  2474 + <partitioning>
  2475 + <method>none</method>
  2476 + <schema_name/>
  2477 + </partitioning>
  2478 + <all_rows>Y</all_rows>
  2479 + <ignore_aggregate>N</ignore_aggregate>
  2480 + <field_ignore/>
  2481 + <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
  2482 + <prefix>grp</prefix>
  2483 + <add_linenr>Y</add_linenr>
  2484 + <linenr_fieldname>bcs</linenr_fieldname>
  2485 + <give_back_row>N</give_back_row>
  2486 + <group>
  2487 + </group>
  2488 + <fields>
  2489 + </fields>
  2490 + <cluster_schema/>
  2491 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2492 + <xloc>692</xloc>
  2493 + <yloc>44</yloc>
  2494 + <draw>Y</draw>
  2495 + </GUI>
  2496 + </step>
  2497 +
  2498 + <step>
  2499 + <name>&#x73ed;&#x6b21;&#x6570;&#x636e;&#x8303;&#x5f0f;&#x5316;</name>
  2500 + <type>Normaliser</type>
  2501 + <description/>
  2502 + <distribute>Y</distribute>
  2503 + <custom_distribution/>
  2504 + <copies>1</copies>
  2505 + <partitioning>
  2506 + <method>none</method>
  2507 + <schema_name/>
  2508 + </partitioning>
  2509 + <typefield>&#x7ad9;&#x70b9;&#x540d;&#x79f0;</typefield>
  2510 + <fields> </fields> <cluster_schema/>
  2511 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2512 + <xloc>248</xloc>
  2513 + <yloc>44</yloc>
  2514 + <draw>Y</draw>
  2515 + </GUI>
  2516 + </step>
  2517 +
  2518 + <step>
  2519 + <name>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178;</name>
  2520 + <type>ValueMapper</type>
  2521 + <description/>
  2522 + <distribute>Y</distribute>
  2523 + <custom_distribution/>
  2524 + <copies>1</copies>
  2525 + <partitioning>
  2526 + <method>none</method>
  2527 + <schema_name/>
  2528 + </partitioning>
  2529 + <field_to_use>bctype</field_to_use>
  2530 + <target_field>bctype_code</target_field>
  2531 + <non_match_default>&#x672a;&#x77e5;&#x7c7b;&#x578b;</non_match_default>
  2532 + <fields>
  2533 + <field>
  2534 + <source_value>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</source_value>
  2535 + <target_value>normal</target_value>
  2536 + </field>
  2537 + <field>
  2538 + <source_value>&#x51fa;&#x573a;</source_value>
  2539 + <target_value>out</target_value>
  2540 + </field>
  2541 + <field>
  2542 + <source_value>&#x8fdb;&#x573a;</source_value>
  2543 + <target_value>in</target_value>
  2544 + </field>
  2545 + <field>
  2546 + <source_value>&#x52a0;&#x6cb9;</source_value>
  2547 + <target_value>oil</target_value>
  2548 + </field>
  2549 + <field>
  2550 + <source_value>&#x4e34;&#x52a0;</source_value>
  2551 + <target_value>temp</target_value>
  2552 + </field>
  2553 + <field>
  2554 + <source_value>&#x533a;&#x95f4;</source_value>
  2555 + <target_value>region</target_value>
  2556 + </field>
  2557 + <field>
  2558 + <source_value>&#x653e;&#x7a7a;</source_value>
  2559 + <target_value>venting</target_value>
  2560 + </field>
  2561 + <field>
  2562 + <source_value>&#x653e;&#x5927;&#x7ad9;</source_value>
  2563 + <target_value>major</target_value>
  2564 + </field>
  2565 + </fields>
  2566 + <cluster_schema/>
  2567 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2568 + <xloc>149</xloc>
  2569 + <yloc>491</yloc>
  2570 + <draw>Y</draw>
  2571 + </GUI>
  2572 + </step>
  2573 +
  2574 + <step>
  2575 + <name>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 2</name>
  2576 + <type>ValueMapper</type>
  2577 + <description/>
  2578 + <distribute>Y</distribute>
  2579 + <custom_distribution/>
  2580 + <copies>1</copies>
  2581 + <partitioning>
  2582 + <method>none</method>
  2583 + <schema_name/>
  2584 + </partitioning>
  2585 + <field_to_use>bctype</field_to_use>
  2586 + <target_field>bctype_code</target_field>
  2587 + <non_match_default>&#x672a;&#x77e5;&#x7c7b;&#x578b;</non_match_default>
  2588 + <fields>
  2589 + <field>
  2590 + <source_value>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</source_value>
  2591 + <target_value>normal</target_value>
  2592 + </field>
  2593 + <field>
  2594 + <source_value>&#x51fa;&#x573a;</source_value>
  2595 + <target_value>out</target_value>
  2596 + </field>
  2597 + <field>
  2598 + <source_value>&#x8fdb;&#x573a;</source_value>
  2599 + <target_value>in</target_value>
  2600 + </field>
  2601 + <field>
  2602 + <source_value>&#x52a0;&#x6cb9;</source_value>
  2603 + <target_value>oil</target_value>
  2604 + </field>
  2605 + <field>
  2606 + <source_value>&#x4e34;&#x52a0;</source_value>
  2607 + <target_value>temp</target_value>
  2608 + </field>
  2609 + <field>
  2610 + <source_value>&#x533a;&#x95f4;</source_value>
  2611 + <target_value>region</target_value>
  2612 + </field>
  2613 + <field>
  2614 + <source_value>&#x653e;&#x7a7a;</source_value>
  2615 + <target_value>venting</target_value>
  2616 + </field>
  2617 + <field>
  2618 + <source_value>&#x653e;&#x5927;&#x7ad9;</source_value>
  2619 + <target_value>major</target_value>
  2620 + </field>
  2621 + </fields>
  2622 + <cluster_schema/>
  2623 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2624 + <xloc>333</xloc>
  2625 + <yloc>681</yloc>
  2626 + <draw>Y</draw>
  2627 + </GUI>
  2628 + </step>
  2629 +
  2630 + <step>
  2631 + <name>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 3</name>
  2632 + <type>ValueMapper</type>
  2633 + <description/>
  2634 + <distribute>Y</distribute>
  2635 + <custom_distribution/>
  2636 + <copies>1</copies>
  2637 + <partitioning>
  2638 + <method>none</method>
  2639 + <schema_name/>
  2640 + </partitioning>
  2641 + <field_to_use>bctype</field_to_use>
  2642 + <target_field>bctype_code</target_field>
  2643 + <non_match_default>&#x672a;&#x77e5;&#x7c7b;&#x578b;</non_match_default>
  2644 + <fields>
  2645 + <field>
  2646 + <source_value>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</source_value>
  2647 + <target_value>normal</target_value>
  2648 + </field>
  2649 + <field>
  2650 + <source_value>&#x51fa;&#x573a;</source_value>
  2651 + <target_value>out</target_value>
  2652 + </field>
  2653 + <field>
  2654 + <source_value>&#x8fdb;&#x573a;</source_value>
  2655 + <target_value>in</target_value>
  2656 + </field>
  2657 + <field>
  2658 + <source_value>&#x52a0;&#x6cb9;</source_value>
  2659 + <target_value>oil</target_value>
  2660 + </field>
  2661 + <field>
  2662 + <source_value>&#x4e34;&#x52a0;</source_value>
  2663 + <target_value>temp</target_value>
  2664 + </field>
  2665 + <field>
  2666 + <source_value>&#x533a;&#x95f4;</source_value>
  2667 + <target_value>region</target_value>
  2668 + </field>
  2669 + <field>
  2670 + <source_value>&#x653e;&#x7a7a;</source_value>
  2671 + <target_value>venting</target_value>
  2672 + </field>
  2673 + <field>
  2674 + <source_value>&#x653e;&#x5927;&#x7ad9;</source_value>
  2675 + <target_value>major</target_value>
  2676 + </field>
  2677 + </fields>
  2678 + <cluster_schema/>
  2679 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2680 + <xloc>551</xloc>
  2681 + <yloc>928</yloc>
  2682 + <draw>Y</draw>
  2683 + </GUI>
  2684 + </step>
  2685 +
  2686 + <step>
  2687 + <name>&#x7c7b;&#x578b;&#x4fee;&#x6b63;</name>
  2688 + <type>SelectValues</type>
  2689 + <description/>
  2690 + <distribute>Y</distribute>
  2691 + <custom_distribution/>
  2692 + <copies>1</copies>
  2693 + <partitioning>
  2694 + <method>none</method>
  2695 + <schema_name/>
  2696 + </partitioning>
  2697 + <fields> <select_unspecified>N</select_unspecified>
  2698 + <meta> <name>jhlc</name>
  2699 + <rename>jhlc</rename>
  2700 + <type>Number</type>
  2701 + <length>-2</length>
  2702 + <precision>-2</precision>
  2703 + <conversion_mask/>
  2704 + <date_format_lenient>false</date_format_lenient>
  2705 + <date_format_locale/>
  2706 + <date_format_timezone/>
  2707 + <lenient_string_to_number>false</lenient_string_to_number>
  2708 + <encoding/>
  2709 + <decimal_symbol/>
  2710 + <grouping_symbol/>
  2711 + <currency_symbol/>
  2712 + <storage_type/>
  2713 + </meta> <meta> <name>bcsj</name>
  2714 + <rename>bcsj</rename>
  2715 + <type>Integer</type>
  2716 + <length>-2</length>
  2717 + <precision>-2</precision>
  2718 + <conversion_mask/>
  2719 + <date_format_lenient>false</date_format_lenient>
  2720 + <date_format_locale/>
  2721 + <date_format_timezone/>
  2722 + <lenient_string_to_number>false</lenient_string_to_number>
  2723 + <encoding/>
  2724 + <decimal_symbol/>
  2725 + <grouping_symbol/>
  2726 + <currency_symbol/>
  2727 + <storage_type/>
  2728 + </meta> </fields> <cluster_schema/>
  2729 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2730 + <xloc>146</xloc>
  2731 + <yloc>768</yloc>
  2732 + <draw>Y</draw>
  2733 + </GUI>
  2734 + </step>
  2735 +
  2736 + <step>
  2737 + <name>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 2</name>
  2738 + <type>SelectValues</type>
  2739 + <description/>
  2740 + <distribute>Y</distribute>
  2741 + <custom_distribution/>
  2742 + <copies>1</copies>
  2743 + <partitioning>
  2744 + <method>none</method>
  2745 + <schema_name/>
  2746 + </partitioning>
  2747 + <fields> <select_unspecified>N</select_unspecified>
  2748 + <meta> <name>out_mileage</name>
  2749 + <rename>out_mileage</rename>
  2750 + <type>Number</type>
  2751 + <length>-2</length>
  2752 + <precision>-2</precision>
  2753 + <conversion_mask/>
  2754 + <date_format_lenient>false</date_format_lenient>
  2755 + <date_format_locale/>
  2756 + <date_format_timezone/>
  2757 + <lenient_string_to_number>false</lenient_string_to_number>
  2758 + <encoding/>
  2759 + <decimal_symbol/>
  2760 + <grouping_symbol/>
  2761 + <currency_symbol/>
  2762 + <storage_type/>
  2763 + </meta> <meta> <name>out_time</name>
  2764 + <rename>out_time</rename>
  2765 + <type>Integer</type>
  2766 + <length>-2</length>
  2767 + <precision>-2</precision>
  2768 + <conversion_mask/>
  2769 + <date_format_lenient>false</date_format_lenient>
  2770 + <date_format_locale/>
  2771 + <date_format_timezone/>
  2772 + <lenient_string_to_number>false</lenient_string_to_number>
  2773 + <encoding/>
  2774 + <decimal_symbol/>
  2775 + <grouping_symbol/>
  2776 + <currency_symbol/>
  2777 + <storage_type/>
  2778 + </meta> <meta> <name>sxx</name>
  2779 + <rename>sxx</rename>
  2780 + <type>Integer</type>
  2781 + <length>-2</length>
  2782 + <precision>-2</precision>
  2783 + <conversion_mask/>
  2784 + <date_format_lenient>false</date_format_lenient>
  2785 + <date_format_locale/>
  2786 + <date_format_timezone/>
  2787 + <lenient_string_to_number>false</lenient_string_to_number>
  2788 + <encoding/>
  2789 + <decimal_symbol/>
  2790 + <grouping_symbol/>
  2791 + <currency_symbol/>
  2792 + <storage_type/>
  2793 + </meta> </fields> <cluster_schema/>
  2794 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2795 + <xloc>338</xloc>
  2796 + <yloc>1008</yloc>
  2797 + <draw>Y</draw>
  2798 + </GUI>
  2799 + </step>
  2800 +
  2801 + <step>
  2802 + <name>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 3</name>
  2803 + <type>SelectValues</type>
  2804 + <description/>
  2805 + <distribute>Y</distribute>
  2806 + <custom_distribution/>
  2807 + <copies>1</copies>
  2808 + <partitioning>
  2809 + <method>none</method>
  2810 + <schema_name/>
  2811 + </partitioning>
  2812 + <fields> <select_unspecified>N</select_unspecified>
  2813 + <meta> <name>parade_mileage</name>
  2814 + <rename>parade_mileage</rename>
  2815 + <type>Number</type>
  2816 + <length>-2</length>
  2817 + <precision>-2</precision>
  2818 + <conversion_mask/>
  2819 + <date_format_lenient>false</date_format_lenient>
  2820 + <date_format_locale/>
  2821 + <date_format_timezone/>
  2822 + <lenient_string_to_number>false</lenient_string_to_number>
  2823 + <encoding/>
  2824 + <decimal_symbol/>
  2825 + <grouping_symbol/>
  2826 + <currency_symbol/>
  2827 + <storage_type/>
  2828 + </meta> <meta> <name>parade_time</name>
  2829 + <rename>parade_time</rename>
  2830 + <type>Integer</type>
  2831 + <length>-2</length>
  2832 + <precision>-2</precision>
  2833 + <conversion_mask/>
  2834 + <date_format_lenient>false</date_format_lenient>
  2835 + <date_format_locale/>
  2836 + <date_format_timezone/>
  2837 + <lenient_string_to_number>false</lenient_string_to_number>
  2838 + <encoding/>
  2839 + <decimal_symbol/>
  2840 + <grouping_symbol/>
  2841 + <currency_symbol/>
  2842 + <storage_type/>
  2843 + </meta> <meta> <name>sxx2</name>
  2844 + <rename>sxx2</rename>
  2845 + <type>Integer</type>
  2846 + <length>-2</length>
  2847 + <precision>-2</precision>
  2848 + <conversion_mask/>
  2849 + <date_format_lenient>false</date_format_lenient>
  2850 + <date_format_locale/>
  2851 + <date_format_timezone/>
  2852 + <lenient_string_to_number>false</lenient_string_to_number>
  2853 + <encoding/>
  2854 + <decimal_symbol/>
  2855 + <grouping_symbol/>
  2856 + <currency_symbol/>
  2857 + <storage_type/>
  2858 + </meta> </fields> <cluster_schema/>
  2859 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2860 + <xloc>847</xloc>
  2861 + <yloc>1003</yloc>
  2862 + <draw>Y</draw>
  2863 + </GUI>
  2864 + </step>
  2865 +
  2866 + <step>
  2867 + <name>&#x8ba1;&#x7b97;&#x73ed;&#x6b21;&#x7c7b;&#x578b;</name>
  2868 + <type>ValueMapper</type>
  2869 + <description/>
  2870 + <distribute>Y</distribute>
  2871 + <custom_distribution/>
  2872 + <copies>1</copies>
  2873 + <partitioning>
  2874 + <method>none</method>
  2875 + <schema_name/>
  2876 + </partitioning>
  2877 + <field_to_use>qdzname</field_to_use>
  2878 + <target_field>bctype</target_field>
  2879 + <non_match_default>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</non_match_default>
  2880 + <fields>
  2881 + <field>
  2882 + <source_value>&#x51fa;&#x573a;</source_value>
  2883 + <target_value>&#x51fa;&#x573a;</target_value>
  2884 + </field>
  2885 + <field>
  2886 + <source_value>&#x8fdb;&#x573a;</source_value>
  2887 + <target_value>&#x8fdb;&#x573a;</target_value>
  2888 + </field>
  2889 + </fields>
  2890 + <cluster_schema/>
  2891 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2892 + <xloc>1014</xloc>
  2893 + <yloc>401</yloc>
  2894 + <draw>Y</draw>
  2895 + </GUI>
  2896 + </step>
  2897 +
  2898 + <step>
  2899 + <name>&#x8bb0;&#x5f55;&#x5173;&#x8054; &#x28;&#x7b1b;&#x5361;&#x5c14;&#x8f93;&#x51fa;&#x29;</name>
  2900 + <type>JoinRows</type>
  2901 + <description/>
  2902 + <distribute>Y</distribute>
  2903 + <custom_distribution/>
  2904 + <copies>1</copies>
  2905 + <partitioning>
  2906 + <method>none</method>
  2907 + <schema_name/>
  2908 + </partitioning>
  2909 + <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
  2910 + <prefix>out</prefix>
  2911 + <cache_size>500</cache_size>
  2912 + <main/>
  2913 + <compare>
  2914 +<condition>
  2915 + <negated>N</negated>
  2916 + <leftvalue/>
  2917 + <function>&#x3d;</function>
  2918 + <rightvalue/>
  2919 + </condition>
  2920 + </compare>
  2921 + <cluster_schema/>
  2922 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2923 + <xloc>310</xloc>
  2924 + <yloc>133</yloc>
  2925 + <draw>Y</draw>
  2926 + </GUI>
  2927 + </step>
  2928 +
  2929 + <step>
  2930 + <name>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;&#xff08;&#x53d1;&#x8f66;&#x65f6;&#x95f4;&#x4e3a;&#x7a7a;&#xff09;</name>
  2931 + <type>FilterRows</type>
  2932 + <description/>
  2933 + <distribute>Y</distribute>
  2934 + <custom_distribution/>
  2935 + <copies>1</copies>
  2936 + <partitioning>
  2937 + <method>none</method>
  2938 + <schema_name/>
  2939 + </partitioning>
  2940 +<send_true_to/>
  2941 +<send_false_to/>
  2942 + <compare>
  2943 +<condition>
  2944 + <negated>N</negated>
  2945 + <leftvalue>sendtime</leftvalue>
  2946 + <function>IS NOT NULL</function>
  2947 + <rightvalue/>
  2948 + </condition>
  2949 + </compare>
  2950 + <cluster_schema/>
  2951 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2952 + <xloc>571</xloc>
  2953 + <yloc>44</yloc>
  2954 + <draw>Y</draw>
  2955 + </GUI>
  2956 + </step>
  2957 +
  2958 + <step>
  2959 + <name>&#x8fdb;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x8d77;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</name>
  2960 + <type>ScriptValueMod</type>
  2961 + <description/>
  2962 + <distribute>Y</distribute>
  2963 + <custom_distribution/>
  2964 + <copies>1</copies>
  2965 + <partitioning>
  2966 + <method>none</method>
  2967 + <schema_name/>
  2968 + </partitioning>
  2969 + <compatible>N</compatible>
  2970 + <optimizationLevel>9</optimizationLevel>
  2971 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  2972 + <jsScript_name>Script 1</jsScript_name>
  2973 + <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>
  2974 + </jsScript> </jsScripts> <fields> <field> <name>qdzname_calcu</name>
  2975 + <rename>qdzname_calcu</rename>
  2976 + <type>String</type>
  2977 + <length>-1</length>
  2978 + <precision>-1</precision>
  2979 + <replace>N</replace>
  2980 + </field> <field> <name>startZdtype_calcu</name>
  2981 + <rename>startZdtype_calcu</rename>
  2982 + <type>String</type>
  2983 + <length>-1</length>
  2984 + <precision>-1</precision>
  2985 + <replace>N</replace>
  2986 + </field> <field> <name>endZdtype_calcu</name>
  2987 + <rename>endZdtype_calcu</rename>
  2988 + <type>String</type>
  2989 + <length>-1</length>
  2990 + <precision>-1</precision>
  2991 + <replace>N</replace>
  2992 + </field> <field> <name>destory</name>
  2993 + <rename>destory</rename>
  2994 + <type>Integer</type>
  2995 + <length>-1</length>
  2996 + <precision>-1</precision>
  2997 + <replace>N</replace>
  2998 + </field> </fields> <cluster_schema/>
  2999 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3000 + <xloc>754</xloc>
  3001 + <yloc>610</yloc>
  3002 + <draw>Y</draw>
  3003 + </GUI>
  3004 + </step>
  3005 +
  3006 + <step>
  3007 + <name>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</name>
  3008 + <type>Dummy</type>
  3009 + <description/>
  3010 + <distribute>Y</distribute>
  3011 + <custom_distribution/>
  3012 + <copies>1</copies>
  3013 + <partitioning>
  3014 + <method>none</method>
  3015 + <schema_name/>
  3016 + </partitioning>
  3017 + <cluster_schema/>
  3018 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3019 + <xloc>997</xloc>
  3020 + <yloc>606</yloc>
  3021 + <draw>Y</draw>
  3022 + </GUI>
  3023 + </step>
  3024 +
  3025 + <step_error_handling>
  3026 + <error>
  3027 + <source_step>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail</source_step>
  3028 + <target_step/>
  3029 + <is_enabled>Y</is_enabled>
  3030 + <nr_valuename>c1</nr_valuename>
  3031 + <descriptions_valuename>c2</descriptions_valuename>
  3032 + <fields_valuename>c3</fields_valuename>
  3033 + <codes_valuename>c4</codes_valuename>
  3034 + <max_errors/>
  3035 + <max_pct_errors/>
  3036 + <min_pct_rows/>
  3037 + </error>
  3038 + </step_error_handling>
  3039 + <slave-step-copy-partition-distribution>
  3040 +</slave-step-copy-partition-distribution>
  3041 + <slave_transformation>N</slave_transformation>
  3042 +
  3043 +</transformation>
... ...
src/main/resources/static/pages/permission/authorize_all/authorize.html 0 → 100644
  1 +我在iframe 里面
0 2 \ No newline at end of file
... ...
src/main/resources/static/pages/permission/authorize_all/main.html 0 → 100644
  1 +<iframe src="/pages/permission/authorize_all/authorize.html"></iframe>
0 2 \ No newline at end of file
... ...
src/main/resources/static/pages/permission/role/settings.html
... ... @@ -160,10 +160,13 @@ $(function(){
160 160  
161 161 //模块下拉框
162 162 getModuleTreeData(function(treeData){
  163 +
163 164 var options = '';
164 165 $.each(treeData, function(i, g){
165 166 var dArray = g.children;
166   -
  167 +
  168 + if(!dArray)
  169 + return true;
167 170 for(var i = 0,d; d = dArray[i++];){
168 171 options += '<optgroup label="'+d.name+'">';
169 172 if(!d.children)
... ...
src/main/resources/static/pages/scheduleApp/module/common/main.js
... ... @@ -67,28 +67,48 @@ ScheduleApp.factory(&#39;DataStore&#39;, [
67 67 // 简拼数据
68 68 dataMap.cl = result.data.data;
69 69 angular.forEach(result.data.data, function(obj) {
  70 + //// 全拼
  71 + //obj["$fullChars"] = pinyin.getFullChars(obj.insideCode ? obj.insideCode: "");
  72 + //// 简拼
  73 + //obj["$camelChars"] = pinyin.getCamelChars(obj.insideCode ? obj.insideCode: "");
70 74 // 全拼
71   - obj["$fullChars"] = pinyin.getFullChars(obj.insideCode ? obj.insideCode: "");
  75 + obj["$fullChars"] = obj.insideCode? obj.insideCode: "";
72 76 // 简拼
73   - obj["$camelChars"] = pinyin.getCamelChars(obj.insideCode ? obj.insideCode: "");
  77 + obj["$camelChars"] = obj.insideCode? obj.insideCode: "";
74 78 // 原值
75 79 obj["$calcu_str"] = obj.insideCode? obj.insideCode: "";
76 80 });
77 81 });
78 82  
  83 + //$http({
  84 + // method: 'GET',
  85 + // url: '/ee/all'
  86 + //}).then(function(result) {
  87 + // // 简拼数据
  88 + // dataMap.ry = result.data.data;
  89 + // angular.forEach(result.data.data, function(obj) {
  90 + // // 全拼
  91 + // obj["$fullChars"] = pinyin.getFullChars(obj.personnelName + "-" + obj.jobCode);
  92 + // // 简拼
  93 + // obj["$camelChars"] = pinyin.getCamelChars(obj.personnelName + "-" + obj.jobCode);
  94 + // // 原值
  95 + // obj["$calcu_str"] = obj.personnelName + "-" + obj.jobCode;
  96 + // });
  97 + //});
  98 +
79 99 $http({
80 100 method: 'GET',
81   - url: '/ee/all'
  101 + url: '/personnel/all_py'
82 102 }).then(function(result) {
83 103 // 简拼数据
84   - dataMap.ry = result.data.data;
85   - angular.forEach(result.data.data, function(obj) {
  104 + dataMap.ry = result.data;
  105 + angular.forEach(result.data, function(obj) {
86 106 // 全拼
87   - obj["$fullChars"] = pinyin.getFullChars(obj.personnelName + "-" + obj.jobCode);
  107 + obj["$fullChars"] = obj.fullChars;
88 108 // 简拼
89   - obj["$camelChars"] = pinyin.getCamelChars(obj.personnelName + "-" + obj.jobCode);
  109 + obj["$camelChars"] = obj.camelChars;
90 110 // 原值
91   - obj["$calcu_str"] = obj.personnelName + "-" + obj.jobCode;
  111 + obj["$calcu_str"] = obj.name + "-" + obj.workId;
92 112 });
93 113 });
94 114  
... ...
src/main/resources/static/pages/scheduleApp/module/core/employeeConfig/edit.html
... ... @@ -84,9 +84,9 @@
84 84 icname="id"
85 85 dsparams="{{ {type: 'local', param: 'ry' } | json }}"
86 86 iterobjname="item"
87   - iterobjexp="item.personnelName + '<' + item.jobCode + '>'"
  87 + iterobjexp="item.name + '<' + item.workId + '>'"
88 88 searchph="请输拼音..."
89   - searchexp="this.personnelName + '<' + this.jobCode + '>'"
  89 + searchexp="this.name + '<' + this.workId + '>'"
90 90 required >
91 91 </sa-Select5>
92 92 <input type="hidden" name="jsy_h" ng-model="ctrl.employeeConfigForSave.jsy.id"
... ... @@ -116,9 +116,9 @@
116 116 icname="id"
117 117 dsparams="{{ {type: 'local', param: 'ry' } | json }}"
118 118 iterobjname="item"
119   - iterobjexp="item.personnelName + '<' + item.jobCode + '>'"
  119 + iterobjexp="item.name + '<' + item.workId + '>'"
120 120 searchph="请输拼音..."
121   - searchexp="this.personnelName + '<' + this.jobCode + '>'"
  121 + searchexp="this.name + '<' + this.workId + '>'"
122 122 >
123 123 </sa-Select5>
124 124 <input type="hidden" name="spy_h" ng-model="ctrl.employeeConfigForSave.spy.id"
... ...
src/main/resources/static/pages/scheduleApp/module/core/employeeConfig/form.html
... ... @@ -84,9 +84,9 @@
84 84 icname="id"
85 85 dsparams="{{ {type: 'local', param: 'ry' } | json }}"
86 86 iterobjname="item"
87   - iterobjexp="item.personnelName + '<' + item.jobCode + '>'"
  87 + iterobjexp="item.name + '<' + item.workId + '>'"
88 88 searchph="请输拼音..."
89   - searchexp="this.personnelName + '<' + this.jobCode + '>'"
  89 + searchexp="this.name + '<' + this.workId + '>'"
90 90 required >
91 91 </sa-Select5>
92 92 <input type="hidden" name="jsy_h" ng-model="ctrl.employeeConfigForSave.jsy.id"
... ... @@ -116,9 +116,9 @@
116 116 icname="id"
117 117 dsparams="{{ {type: 'local', param: 'ry' } | json }}"
118 118 iterobjname="item"
119   - iterobjexp="item.personnelName + '<' + item.jobCode + '>'"
  119 + iterobjexp="item.name + '<' + item.workId + '>'"
120 120 searchph="请输拼音..."
121   - searchexp="this.personnelName + '<' + this.jobCode + '>'"
  121 + searchexp="this.name + '<' + this.workId + '>'"
122 122 >
123 123 </sa-Select5>
124 124 <input type="hidden" name="spy_h" ng-model="ctrl.employeeConfigForSave.spy.id"
... ...
src/main/resources/static/pages/scheduleApp/module/core/schedulePlanManage/report/ext/edit.html
... ... @@ -96,9 +96,9 @@
96 96 icname="id"
97 97 dsparams="{{ {type: 'local', param: 'ry' } | json }}"
98 98 iterobjname="item"
99   - iterobjexp="item.personnelName + '(' + item.jobCode + ')'"
  99 + iterobjexp="item.name + '(' + item.workId + ')'"
100 100 searchph="请输拼音..."
101   - searchexp="this.personnelName"
  101 + searchexp="this.name"
102 102 required
103 103 >
104 104 </sa-Select5>
... ... @@ -119,9 +119,9 @@
119 119 icname="id"
120 120 dsparams="{{ {type: 'local', param: 'ry' } | json }}"
121 121 iterobjname="item"
122   - iterobjexp="item.personnelName + '(' + item.jobCode + ')'"
  122 + iterobjexp="item.name + '(' + item.workId + ')'"
123 123 searchph="请输拼音..."
124   - searchexp="this.personnelName"
  124 + searchexp="this.name"
125 125 >
126 126 </sa-Select5>
127 127 </div>
... ... @@ -137,9 +137,9 @@
137 137 icname="id"
138 138 dsparams="{{ {type: 'local', param: 'ry' } | json }}"
139 139 iterobjname="item"
140   - iterobjexp="item.personnelName + '(' + item.jobCode + ')'"
  140 + iterobjexp="item.name + '(' + item.workId + ')'"
141 141 searchph="请输拼音..."
142   - searchexp="this.personnelName"
  142 + searchexp="this.name"
143 143 >
144 144 </sa-Select5>
145 145 </div>
... ... @@ -155,9 +155,9 @@
155 155 icname="id"
156 156 dsparams="{{ {type: 'local', param: 'ry' } | json }}"
157 157 iterobjname="item"
158   - iterobjexp="item.personnelName + '(' + item.jobCode + ')'"
  158 + iterobjexp="item.name + '(' + item.workId + ')'"
159 159 searchph="请输拼音..."
160   - searchexp="this.personnelName"
  160 + searchexp="this.name"
161 161 >
162 162 </sa-Select5>
163 163 </div>
... ... @@ -173,9 +173,9 @@
173 173 icname="id"
174 174 dsparams="{{ {type: 'local', param: 'ry' } | json }}"
175 175 iterobjname="item"
176   - iterobjexp="item.personnelName + '(' + item.jobCode + ')'"
  176 + iterobjexp="item.name + '(' + item.workId + ')'"
177 177 searchph="请输拼音..."
178   - searchexp="this.personnelName"
  178 + searchexp="this.name"
179 179 >
180 180 </sa-Select5>
181 181 </div>
... ... @@ -191,9 +191,9 @@
191 191 icname="id"
192 192 dsparams="{{ {type: 'local', param: 'ry' } | json }}"
193 193 iterobjname="item"
194   - iterobjexp="item.personnelName + '(' + item.jobCode + ')'"
  194 + iterobjexp="item.name + '(' + item.workId + ')'"
195 195 searchph="请输拼音..."
196   - searchexp="this.personnelName"
  196 + searchexp="this.name"
197 197 >
198 198 </sa-Select5>
199 199 </div>
... ...
src/main/resources/static/real_control_v2/js/data/data_basic.js
... ... @@ -56,16 +56,15 @@ var gb_data_basic = (function () {
56 56 ep.emit('all_personnel', data);
57 57 });
58 58 function loadAllPersonnel(cb) {
59   - $.get('/basic/all_personnel', function (rs) {
  59 + $.get('/personnel/all_py', function (rs) {
60 60 //转换成自动补全组件需要的数据
61   - var data = [], name, code;
62   - for (var jobCode in rs) {
63   - name = rs[jobCode];
64   - code = jobCode.indexOf('-')!=-1?jobCode.split('-')[1]:jobCode;
  61 + var data = [], code;
  62 + for(var i =0, p; p = rs[i++];){
  63 + code = p['workId'].indexOf('-')!=-1?p['workId'].split('-')[1]:p['workId'];
65 64 data.push({
66   - value: code + '/' + name,
67   - fullChars: pinyin.getFullChars(name).toUpperCase(),
68   - camelChars: pinyin.getCamelChars(name)
  65 + value: code + '/' + p.name,
  66 + fullChars: p.fullChars,
  67 + camelChars: p.camelChars
69 68 });
70 69 }
71 70 cb && cb(data);
... ...