Commit 0f0d02b826a67cd88bd6fa2db77e3e51396f0e4b
Merge branch 'minhang' of http://222.66.0.204:8090//panzhaov5/bsth_control into minhang
Showing
28 changed files
with
13476 additions
and
13372 deletions
Too many changes to show.
To preserve performance only 28 of 46 files are displayed.
src/main/java/com/bsth/controller/logger/MileModifyController.java
| 1 | -package com.bsth.controller.logger; | |
| 2 | - | |
| 3 | -import com.bsth.controller.BaseController; | |
| 4 | -import com.bsth.entity.logger.Logger_MileModify; | |
| 5 | -import org.springframework.web.bind.annotation.RequestMapping; | |
| 6 | -import org.springframework.web.bind.annotation.RestController; | |
| 7 | - | |
| 8 | -/** | |
| 9 | - * Created by panzhao on 2017/3/6. | |
| 10 | - */ | |
| 11 | -@RestController | |
| 12 | -@RequestMapping("logger_mile_modify") | |
| 13 | -public class MileModifyController extends BaseController<Logger_MileModify, Long>{ | |
| 14 | -} | |
| 1 | +package com.bsth.controller.logger; | |
| 2 | + | |
| 3 | +import com.bsth.controller.BaseController; | |
| 4 | +import com.bsth.entity.logger.Logger_MileModify; | |
| 5 | +import org.springframework.web.bind.annotation.RequestMapping; | |
| 6 | +import org.springframework.web.bind.annotation.RestController; | |
| 7 | + | |
| 8 | +/** | |
| 9 | + * Created by panzhao on 2017/3/6. | |
| 10 | + */ | |
| 11 | +@RestController | |
| 12 | +@RequestMapping("logger_mile_modify") | |
| 13 | +public class MileModifyController extends BaseController<Logger_MileModify, Long>{ | |
| 14 | +} | ... | ... |
src/main/java/com/bsth/controller/realcontrol/ScheduleRealInfoController.java
| ... | ... | @@ -144,6 +144,16 @@ public class ScheduleRealInfoController extends BaseController<ScheduleRealInfo, |
| 144 | 144 | } |
| 145 | 145 | |
| 146 | 146 | /** |
| 147 | + * 撤销执行 | |
| 148 | + * @param id | |
| 149 | + * @return | |
| 150 | + */ | |
| 151 | + @RequestMapping(value = "/revokeRealArrive", method = RequestMethod.POST) | |
| 152 | + public Map<String, Object> revokeRealArrive(@RequestParam Long id){ | |
| 153 | + return scheduleRealInfoService.revokeRealArrive(id); | |
| 154 | + } | |
| 155 | + | |
| 156 | + /** | |
| 147 | 157 | * |
| 148 | 158 | * @Title: spaceAdjust |
| 149 | 159 | * @Description: TODO(间隔调整) | ... | ... |
src/main/java/com/bsth/controller/realcontrol/dto/LpData.java
| 1 | -package com.bsth.controller.realcontrol.dto; | |
| 2 | - | |
| 3 | -import com.bsth.entity.realcontrol.ScheduleRealInfo; | |
| 4 | - | |
| 5 | -/** | |
| 6 | - * 路牌相关的数据(换路牌时要换的字段) | |
| 7 | - * Created by panzhao on 2017/3/2. | |
| 8 | - */ | |
| 9 | -public class LpData { | |
| 10 | - | |
| 11 | - public LpData(ScheduleRealInfo sch) { | |
| 12 | - this.jGh = sch.getjGh(); | |
| 13 | - this.jName = sch.getjName(); | |
| 14 | - this.sGh = sch.getsGh(); | |
| 15 | - this.sName = sch.getsName(); | |
| 16 | - this.nbbm = sch.getClZbh(); | |
| 17 | - | |
| 18 | - this.fcsj = sch.getFcsjActualTime(); | |
| 19 | - this.zdsj = sch.getZdsjActualTime(); | |
| 20 | - } | |
| 21 | - | |
| 22 | - public void appendTo(ScheduleRealInfo sch, int type) { | |
| 23 | - | |
| 24 | - if (type == 0) { | |
| 25 | - //只换人 | |
| 26 | - sch.setjGh(this.jGh); | |
| 27 | - sch.setjName(this.jName); | |
| 28 | - sch.setsGh(this.sGh); | |
| 29 | - sch.setsName(this.sName); | |
| 30 | - } else if (type == 1) { | |
| 31 | - //只换车 | |
| 32 | - sch.setClZbh(this.nbbm); | |
| 33 | - | |
| 34 | - if (this.fcsj != null) | |
| 35 | - sch.setFcsjActualAll(this.fcsj); | |
| 36 | - if (this.zdsj != null) | |
| 37 | - sch.setZdsjActualAll(this.zdsj); | |
| 38 | - | |
| 39 | - } else if (type == 2) { | |
| 40 | - //换人并换车 | |
| 41 | - sch.setjGh(this.jGh); | |
| 42 | - sch.setjName(this.jName); | |
| 43 | - sch.setsGh(this.sGh); | |
| 44 | - sch.setsName(this.sName); | |
| 45 | - sch.setClZbh(this.nbbm); | |
| 46 | - | |
| 47 | - if (this.fcsj != null) | |
| 48 | - sch.setFcsjActualAll(this.fcsj); | |
| 49 | - if (this.zdsj != null) | |
| 50 | - sch.setZdsjActualAll(this.zdsj); | |
| 51 | - } | |
| 52 | - } | |
| 53 | - | |
| 54 | - /** | |
| 55 | - * 驾驶员 | |
| 56 | - */ | |
| 57 | - private String jGh; | |
| 58 | - private String jName; | |
| 59 | - | |
| 60 | - /** | |
| 61 | - * 售票员 | |
| 62 | - */ | |
| 63 | - private String sGh; | |
| 64 | - private String sName; | |
| 65 | - | |
| 66 | - /** | |
| 67 | - * 车辆自编号 | |
| 68 | - */ | |
| 69 | - private String nbbm; | |
| 70 | - | |
| 71 | - /** | |
| 72 | - * 实际发车时间 | |
| 73 | - */ | |
| 74 | - private Long fcsj; | |
| 75 | - | |
| 76 | - /** | |
| 77 | - * 实际终点时间 | |
| 78 | - */ | |
| 79 | - private Long zdsj; | |
| 80 | - | |
| 81 | - public String getjGh() { | |
| 82 | - return jGh; | |
| 83 | - } | |
| 84 | - | |
| 85 | - public void setjGh(String jGh) { | |
| 86 | - this.jGh = jGh; | |
| 87 | - } | |
| 88 | - | |
| 89 | - public String getjName() { | |
| 90 | - return jName; | |
| 91 | - } | |
| 92 | - | |
| 93 | - public void setjName(String jName) { | |
| 94 | - this.jName = jName; | |
| 95 | - } | |
| 96 | - | |
| 97 | - public String getsGh() { | |
| 98 | - return sGh; | |
| 99 | - } | |
| 100 | - | |
| 101 | - public void setsGh(String sGh) { | |
| 102 | - this.sGh = sGh; | |
| 103 | - } | |
| 104 | - | |
| 105 | - public String getsName() { | |
| 106 | - return sName; | |
| 107 | - } | |
| 108 | - | |
| 109 | - public void setsName(String sName) { | |
| 110 | - this.sName = sName; | |
| 111 | - } | |
| 112 | - | |
| 113 | - public String getNbbm() { | |
| 114 | - return nbbm; | |
| 115 | - } | |
| 116 | - | |
| 117 | - public void setNbbm(String nbbm) { | |
| 118 | - this.nbbm = nbbm; | |
| 119 | - } | |
| 120 | - | |
| 121 | - public Long getFcsj() { | |
| 122 | - return fcsj; | |
| 123 | - } | |
| 124 | - | |
| 125 | - public void setFcsj(Long fcsj) { | |
| 126 | - this.fcsj = fcsj; | |
| 127 | - } | |
| 128 | - | |
| 129 | - public Long getZdsj() { | |
| 130 | - return zdsj; | |
| 131 | - } | |
| 132 | - | |
| 133 | - public void setZdsj(Long zdsj) { | |
| 134 | - this.zdsj = zdsj; | |
| 135 | - } | |
| 136 | -} | |
| 1 | +package com.bsth.controller.realcontrol.dto; | |
| 2 | + | |
| 3 | +import com.bsth.entity.realcontrol.ScheduleRealInfo; | |
| 4 | + | |
| 5 | +/** | |
| 6 | + * 路牌相关的数据(换路牌时要换的字段) | |
| 7 | + * Created by panzhao on 2017/3/2. | |
| 8 | + */ | |
| 9 | +public class LpData { | |
| 10 | + | |
| 11 | + public LpData(ScheduleRealInfo sch) { | |
| 12 | + this.jGh = sch.getjGh(); | |
| 13 | + this.jName = sch.getjName(); | |
| 14 | + this.sGh = sch.getsGh(); | |
| 15 | + this.sName = sch.getsName(); | |
| 16 | + this.nbbm = sch.getClZbh(); | |
| 17 | + | |
| 18 | + this.fcsj = sch.getFcsjActualTime(); | |
| 19 | + this.zdsj = sch.getZdsjActualTime(); | |
| 20 | + } | |
| 21 | + | |
| 22 | + public void appendTo(ScheduleRealInfo sch, int type) { | |
| 23 | + | |
| 24 | + if (type == 0) { | |
| 25 | + //只换人 | |
| 26 | + sch.setjGh(this.jGh); | |
| 27 | + sch.setjName(this.jName); | |
| 28 | + sch.setsGh(this.sGh); | |
| 29 | + sch.setsName(this.sName); | |
| 30 | + } else if (type == 1) { | |
| 31 | + //只换车 | |
| 32 | + sch.setClZbh(this.nbbm); | |
| 33 | + | |
| 34 | + if (this.fcsj != null) | |
| 35 | + sch.setFcsjActualAll(this.fcsj); | |
| 36 | + if (this.zdsj != null) | |
| 37 | + sch.setZdsjActualAll(this.zdsj); | |
| 38 | + | |
| 39 | + } else if (type == 2) { | |
| 40 | + //换人并换车 | |
| 41 | + sch.setjGh(this.jGh); | |
| 42 | + sch.setjName(this.jName); | |
| 43 | + sch.setsGh(this.sGh); | |
| 44 | + sch.setsName(this.sName); | |
| 45 | + sch.setClZbh(this.nbbm); | |
| 46 | + | |
| 47 | + if (this.fcsj != null) | |
| 48 | + sch.setFcsjActualAll(this.fcsj); | |
| 49 | + if (this.zdsj != null) | |
| 50 | + sch.setZdsjActualAll(this.zdsj); | |
| 51 | + } | |
| 52 | + } | |
| 53 | + | |
| 54 | + /** | |
| 55 | + * 驾驶员 | |
| 56 | + */ | |
| 57 | + private String jGh; | |
| 58 | + private String jName; | |
| 59 | + | |
| 60 | + /** | |
| 61 | + * 售票员 | |
| 62 | + */ | |
| 63 | + private String sGh; | |
| 64 | + private String sName; | |
| 65 | + | |
| 66 | + /** | |
| 67 | + * 车辆自编号 | |
| 68 | + */ | |
| 69 | + private String nbbm; | |
| 70 | + | |
| 71 | + /** | |
| 72 | + * 实际发车时间 | |
| 73 | + */ | |
| 74 | + private Long fcsj; | |
| 75 | + | |
| 76 | + /** | |
| 77 | + * 实际终点时间 | |
| 78 | + */ | |
| 79 | + private Long zdsj; | |
| 80 | + | |
| 81 | + public String getjGh() { | |
| 82 | + return jGh; | |
| 83 | + } | |
| 84 | + | |
| 85 | + public void setjGh(String jGh) { | |
| 86 | + this.jGh = jGh; | |
| 87 | + } | |
| 88 | + | |
| 89 | + public String getjName() { | |
| 90 | + return jName; | |
| 91 | + } | |
| 92 | + | |
| 93 | + public void setjName(String jName) { | |
| 94 | + this.jName = jName; | |
| 95 | + } | |
| 96 | + | |
| 97 | + public String getsGh() { | |
| 98 | + return sGh; | |
| 99 | + } | |
| 100 | + | |
| 101 | + public void setsGh(String sGh) { | |
| 102 | + this.sGh = sGh; | |
| 103 | + } | |
| 104 | + | |
| 105 | + public String getsName() { | |
| 106 | + return sName; | |
| 107 | + } | |
| 108 | + | |
| 109 | + public void setsName(String sName) { | |
| 110 | + this.sName = sName; | |
| 111 | + } | |
| 112 | + | |
| 113 | + public String getNbbm() { | |
| 114 | + return nbbm; | |
| 115 | + } | |
| 116 | + | |
| 117 | + public void setNbbm(String nbbm) { | |
| 118 | + this.nbbm = nbbm; | |
| 119 | + } | |
| 120 | + | |
| 121 | + public Long getFcsj() { | |
| 122 | + return fcsj; | |
| 123 | + } | |
| 124 | + | |
| 125 | + public void setFcsj(Long fcsj) { | |
| 126 | + this.fcsj = fcsj; | |
| 127 | + } | |
| 128 | + | |
| 129 | + public Long getZdsj() { | |
| 130 | + return zdsj; | |
| 131 | + } | |
| 132 | + | |
| 133 | + public void setZdsj(Long zdsj) { | |
| 134 | + this.zdsj = zdsj; | |
| 135 | + } | |
| 136 | +} | ... | ... |
src/main/java/com/bsth/data/directive/DirectivesPstThread.java
| 1 | -package com.bsth.data.directive; | |
| 2 | - | |
| 3 | -import com.bsth.entity.directive.D60; | |
| 4 | -import com.bsth.entity.directive.D64; | |
| 5 | -import com.bsth.entity.directive.Directive; | |
| 6 | -import com.bsth.repository.directive.D60Repository; | |
| 7 | -import com.bsth.repository.directive.D64Repository; | |
| 8 | -import org.slf4j.Logger; | |
| 9 | -import org.slf4j.LoggerFactory; | |
| 10 | -import org.springframework.beans.factory.annotation.Autowired; | |
| 11 | -import org.springframework.stereotype.Component; | |
| 12 | - | |
| 13 | -import java.util.LinkedList; | |
| 14 | - | |
| 15 | -/** | |
| 16 | - * 指令持久化线程 | |
| 17 | - * Created by panzhao on 2017/3/6. | |
| 18 | - */ | |
| 19 | -@Component | |
| 20 | -public class DirectivesPstThread extends Thread { | |
| 21 | - | |
| 22 | - Logger logger = LoggerFactory.getLogger(this.getClass()); | |
| 23 | - | |
| 24 | - @Autowired | |
| 25 | - D60Repository d60Repository; | |
| 26 | - | |
| 27 | - @Autowired | |
| 28 | - D64Repository d64Repository; | |
| 29 | - | |
| 30 | - @Override | |
| 31 | - public void run() { | |
| 32 | - LinkedList<Directive> list = DayOfDirectives.pstDirectives; | |
| 33 | - | |
| 34 | - Directive directive; | |
| 35 | - for (int i = 0; i < 1000; i++) { | |
| 36 | - try { | |
| 37 | - directive = list.poll(); | |
| 38 | - | |
| 39 | - if (directive instanceof D60) { | |
| 40 | - d60Repository.save((D60) directive); | |
| 41 | - } | |
| 42 | - | |
| 43 | - if (directive instanceof D64) { | |
| 44 | - d64Repository.save((D64) directive); | |
| 45 | - } | |
| 46 | - } catch (Exception e) { | |
| 47 | - logger.error("", e); | |
| 48 | - } | |
| 49 | - } | |
| 50 | - } | |
| 51 | -} | |
| 1 | +package com.bsth.data.directive; | |
| 2 | + | |
| 3 | +import com.bsth.entity.directive.D60; | |
| 4 | +import com.bsth.entity.directive.D64; | |
| 5 | +import com.bsth.entity.directive.Directive; | |
| 6 | +import com.bsth.repository.directive.D60Repository; | |
| 7 | +import com.bsth.repository.directive.D64Repository; | |
| 8 | +import org.slf4j.Logger; | |
| 9 | +import org.slf4j.LoggerFactory; | |
| 10 | +import org.springframework.beans.factory.annotation.Autowired; | |
| 11 | +import org.springframework.stereotype.Component; | |
| 12 | + | |
| 13 | +import java.util.LinkedList; | |
| 14 | + | |
| 15 | +/** | |
| 16 | + * 指令持久化线程 | |
| 17 | + * Created by panzhao on 2017/3/6. | |
| 18 | + */ | |
| 19 | +@Component | |
| 20 | +public class DirectivesPstThread extends Thread { | |
| 21 | + | |
| 22 | + Logger logger = LoggerFactory.getLogger(this.getClass()); | |
| 23 | + | |
| 24 | + @Autowired | |
| 25 | + D60Repository d60Repository; | |
| 26 | + | |
| 27 | + @Autowired | |
| 28 | + D64Repository d64Repository; | |
| 29 | + | |
| 30 | + @Override | |
| 31 | + public void run() { | |
| 32 | + LinkedList<Directive> list = DayOfDirectives.pstDirectives; | |
| 33 | + | |
| 34 | + Directive directive; | |
| 35 | + for (int i = 0; i < 1000; i++) { | |
| 36 | + try { | |
| 37 | + directive = list.poll(); | |
| 38 | + | |
| 39 | + if (directive instanceof D60) { | |
| 40 | + d60Repository.save((D60) directive); | |
| 41 | + } | |
| 42 | + | |
| 43 | + if (directive instanceof D64) { | |
| 44 | + d64Repository.save((D64) directive); | |
| 45 | + } | |
| 46 | + } catch (Exception e) { | |
| 47 | + logger.error("", e); | |
| 48 | + } | |
| 49 | + } | |
| 50 | + } | |
| 51 | +} | ... | ... |
src/main/java/com/bsth/data/schedule/thread/CalcOilThread.java
| 1 | -package com.bsth.data.schedule.thread; | |
| 2 | - | |
| 3 | -import com.bsth.service.oil.YlbService; | |
| 4 | -import org.slf4j.Logger; | |
| 5 | -import org.slf4j.LoggerFactory; | |
| 6 | -import org.springframework.beans.factory.annotation.Autowired; | |
| 7 | -import org.springframework.stereotype.Component; | |
| 8 | - | |
| 9 | -/** | |
| 10 | - * 计算油、公里加注量 线程 | |
| 11 | - * Created by panzhao on 2017/3/7. | |
| 12 | - */ | |
| 13 | -@Component | |
| 14 | -public class CalcOilThread extends Thread{ | |
| 15 | - | |
| 16 | - @Autowired | |
| 17 | - YlbService ylbService; | |
| 18 | - | |
| 19 | - Logger logger = LoggerFactory.getLogger(this.getClass()); | |
| 20 | - | |
| 21 | - @Override | |
| 22 | - public void run() { | |
| 23 | - try{ | |
| 24 | - logger.info("开始计算路单里程加注量...."); | |
| 25 | - ylbService.obtainDsq(); | |
| 26 | - logger.info("计算路单里程加注量结束!"); | |
| 27 | - } catch(Exception e){ | |
| 28 | - logger.error("计算路单里程加注量失败",e); | |
| 29 | - } | |
| 30 | - } | |
| 31 | -} | |
| 1 | +package com.bsth.data.schedule.thread; | |
| 2 | + | |
| 3 | +import com.bsth.service.oil.YlbService; | |
| 4 | +import org.slf4j.Logger; | |
| 5 | +import org.slf4j.LoggerFactory; | |
| 6 | +import org.springframework.beans.factory.annotation.Autowired; | |
| 7 | +import org.springframework.stereotype.Component; | |
| 8 | + | |
| 9 | +/** | |
| 10 | + * 计算油、公里加注量 线程 | |
| 11 | + * Created by panzhao on 2017/3/7. | |
| 12 | + */ | |
| 13 | +@Component | |
| 14 | +public class CalcOilThread extends Thread{ | |
| 15 | + | |
| 16 | + @Autowired | |
| 17 | + YlbService ylbService; | |
| 18 | + | |
| 19 | + Logger logger = LoggerFactory.getLogger(this.getClass()); | |
| 20 | + | |
| 21 | + @Override | |
| 22 | + public void run() { | |
| 23 | + try{ | |
| 24 | + logger.info("开始计算路单里程加注量...."); | |
| 25 | + ylbService.obtainDsq(); | |
| 26 | + logger.info("计算路单里程加注量结束!"); | |
| 27 | + } catch(Exception e){ | |
| 28 | + logger.error("计算路单里程加注量失败",e); | |
| 29 | + } | |
| 30 | + } | |
| 31 | +} | ... | ... |
src/main/java/com/bsth/entity/logger/Logger.java
| 1 | -package com.bsth.entity.logger; | |
| 2 | - | |
| 3 | -import javax.persistence.GeneratedValue; | |
| 4 | -import javax.persistence.Id; | |
| 5 | -import javax.persistence.MappedSuperclass; | |
| 6 | - | |
| 7 | -/** | |
| 8 | - * 操作日志通用字段 | |
| 9 | - * Created by panzhao on 2017/3/6. | |
| 10 | - */ | |
| 11 | -@MappedSuperclass | |
| 12 | -public abstract class Logger { | |
| 13 | - | |
| 14 | - @Id | |
| 15 | - @GeneratedValue | |
| 16 | - private Long id; | |
| 17 | - | |
| 18 | - /** 用户信息 */ | |
| 19 | - private String userName; | |
| 20 | - private String name; | |
| 21 | - | |
| 22 | - /** ########## 客户端信息 ########### */ | |
| 23 | - /** ip */ | |
| 24 | - private String clientIp; | |
| 25 | - /** 浏览器 */ | |
| 26 | - private String browser; | |
| 27 | - /** 系统平台 */ | |
| 28 | - private String clientSystem; | |
| 29 | - /** 浏览器内核 */ | |
| 30 | - private String browserCore; | |
| 31 | - | |
| 32 | - /** 操作时间 */ | |
| 33 | - private Long ts; | |
| 34 | - | |
| 35 | - public String getUserName() { | |
| 36 | - return userName; | |
| 37 | - } | |
| 38 | - | |
| 39 | - public void setUserName(String userName) { | |
| 40 | - this.userName = userName; | |
| 41 | - } | |
| 42 | - | |
| 43 | - public String getName() { | |
| 44 | - return name; | |
| 45 | - } | |
| 46 | - | |
| 47 | - public void setName(String name) { | |
| 48 | - this.name = name; | |
| 49 | - } | |
| 50 | - | |
| 51 | - public String getClientIp() { | |
| 52 | - return clientIp; | |
| 53 | - } | |
| 54 | - | |
| 55 | - public void setClientIp(String clientIp) { | |
| 56 | - this.clientIp = clientIp; | |
| 57 | - } | |
| 58 | - | |
| 59 | - public String getBrowser() { | |
| 60 | - return browser; | |
| 61 | - } | |
| 62 | - | |
| 63 | - public void setBrowser(String browser) { | |
| 64 | - this.browser = browser; | |
| 65 | - } | |
| 66 | - | |
| 67 | - public String getClientSystem() { | |
| 68 | - return clientSystem; | |
| 69 | - } | |
| 70 | - | |
| 71 | - public void setClientSystem(String clientSystem) { | |
| 72 | - this.clientSystem = clientSystem; | |
| 73 | - } | |
| 74 | - | |
| 75 | - public String getBrowserCore() { | |
| 76 | - return browserCore; | |
| 77 | - } | |
| 78 | - | |
| 79 | - public void setBrowserCore(String browserCore) { | |
| 80 | - this.browserCore = browserCore; | |
| 81 | - } | |
| 82 | - | |
| 83 | - public Long getTs() { | |
| 84 | - return ts; | |
| 85 | - } | |
| 86 | - | |
| 87 | - public void setTs(Long ts) { | |
| 88 | - this.ts = ts; | |
| 89 | - } | |
| 90 | -} | |
| 1 | +package com.bsth.entity.logger; | |
| 2 | + | |
| 3 | +import javax.persistence.GeneratedValue; | |
| 4 | +import javax.persistence.Id; | |
| 5 | +import javax.persistence.MappedSuperclass; | |
| 6 | + | |
| 7 | +/** | |
| 8 | + * 操作日志通用字段 | |
| 9 | + * Created by panzhao on 2017/3/6. | |
| 10 | + */ | |
| 11 | +@MappedSuperclass | |
| 12 | +public abstract class Logger { | |
| 13 | + | |
| 14 | + @Id | |
| 15 | + @GeneratedValue | |
| 16 | + private Long id; | |
| 17 | + | |
| 18 | + /** 用户信息 */ | |
| 19 | + private String userName; | |
| 20 | + private String name; | |
| 21 | + | |
| 22 | + /** ########## 客户端信息 ########### */ | |
| 23 | + /** ip */ | |
| 24 | + private String clientIp; | |
| 25 | + /** 浏览器 */ | |
| 26 | + private String browser; | |
| 27 | + /** 系统平台 */ | |
| 28 | + private String clientSystem; | |
| 29 | + /** 浏览器内核 */ | |
| 30 | + private String browserCore; | |
| 31 | + | |
| 32 | + /** 操作时间 */ | |
| 33 | + private Long ts; | |
| 34 | + | |
| 35 | + public String getUserName() { | |
| 36 | + return userName; | |
| 37 | + } | |
| 38 | + | |
| 39 | + public void setUserName(String userName) { | |
| 40 | + this.userName = userName; | |
| 41 | + } | |
| 42 | + | |
| 43 | + public String getName() { | |
| 44 | + return name; | |
| 45 | + } | |
| 46 | + | |
| 47 | + public void setName(String name) { | |
| 48 | + this.name = name; | |
| 49 | + } | |
| 50 | + | |
| 51 | + public String getClientIp() { | |
| 52 | + return clientIp; | |
| 53 | + } | |
| 54 | + | |
| 55 | + public void setClientIp(String clientIp) { | |
| 56 | + this.clientIp = clientIp; | |
| 57 | + } | |
| 58 | + | |
| 59 | + public String getBrowser() { | |
| 60 | + return browser; | |
| 61 | + } | |
| 62 | + | |
| 63 | + public void setBrowser(String browser) { | |
| 64 | + this.browser = browser; | |
| 65 | + } | |
| 66 | + | |
| 67 | + public String getClientSystem() { | |
| 68 | + return clientSystem; | |
| 69 | + } | |
| 70 | + | |
| 71 | + public void setClientSystem(String clientSystem) { | |
| 72 | + this.clientSystem = clientSystem; | |
| 73 | + } | |
| 74 | + | |
| 75 | + public String getBrowserCore() { | |
| 76 | + return browserCore; | |
| 77 | + } | |
| 78 | + | |
| 79 | + public void setBrowserCore(String browserCore) { | |
| 80 | + this.browserCore = browserCore; | |
| 81 | + } | |
| 82 | + | |
| 83 | + public Long getTs() { | |
| 84 | + return ts; | |
| 85 | + } | |
| 86 | + | |
| 87 | + public void setTs(Long ts) { | |
| 88 | + this.ts = ts; | |
| 89 | + } | |
| 90 | +} | ... | ... |
src/main/java/com/bsth/entity/logger/Logger_MileModify.java
| 1 | -package com.bsth.entity.logger; | |
| 2 | - | |
| 3 | -import javax.persistence.Entity; | |
| 4 | -import javax.persistence.Table; | |
| 5 | - | |
| 6 | -/** | |
| 7 | - * 操作日志 -修改公里 | |
| 8 | - * Created by panzhao on 2017/3/6. | |
| 9 | - */ | |
| 10 | -@Entity | |
| 11 | -@Table(name = "logger_mile_modify") | |
| 12 | -public class Logger_MileModify extends Logger{ | |
| 13 | - | |
| 14 | - /** 之前的公里 */ | |
| 15 | - private Double beforeMile; | |
| 16 | - | |
| 17 | - /** 修改之后的公里 */ | |
| 18 | - private Double afterMile; | |
| 19 | - | |
| 20 | - /** 线路 code/name */ | |
| 21 | - private String lineStr; | |
| 22 | - | |
| 23 | - /** 路牌 */ | |
| 24 | - private String lp; | |
| 25 | - | |
| 26 | - /** 车辆自编号 */ | |
| 27 | - private String nbbm; | |
| 28 | - | |
| 29 | - /** 发车时间 */ | |
| 30 | - private String fcsj; | |
| 31 | - | |
| 32 | - /** 班次ID */ | |
| 33 | - private Long schId; | |
| 34 | - | |
| 35 | - /** 备注 */ | |
| 36 | - private String remarks; | |
| 37 | - | |
| 38 | - public Double getBeforeMile() { | |
| 39 | - return beforeMile; | |
| 40 | - } | |
| 41 | - | |
| 42 | - public void setBeforeMile(Double beforeMile) { | |
| 43 | - this.beforeMile = beforeMile; | |
| 44 | - } | |
| 45 | - | |
| 46 | - public Double getAfterMile() { | |
| 47 | - return afterMile; | |
| 48 | - } | |
| 49 | - | |
| 50 | - public void setAfterMile(Double afterMile) { | |
| 51 | - this.afterMile = afterMile; | |
| 52 | - } | |
| 53 | - | |
| 54 | - public String getLineStr() { | |
| 55 | - return lineStr; | |
| 56 | - } | |
| 57 | - | |
| 58 | - public void setLineStr(String lineStr) { | |
| 59 | - this.lineStr = lineStr; | |
| 60 | - } | |
| 61 | - | |
| 62 | - public String getLp() { | |
| 63 | - return lp; | |
| 64 | - } | |
| 65 | - | |
| 66 | - public void setLp(String lp) { | |
| 67 | - this.lp = lp; | |
| 68 | - } | |
| 69 | - | |
| 70 | - public String getNbbm() { | |
| 71 | - return nbbm; | |
| 72 | - } | |
| 73 | - | |
| 74 | - public void setNbbm(String nbbm) { | |
| 75 | - this.nbbm = nbbm; | |
| 76 | - } | |
| 77 | - | |
| 78 | - public String getFcsj() { | |
| 79 | - return fcsj; | |
| 80 | - } | |
| 81 | - | |
| 82 | - public void setFcsj(String fcsj) { | |
| 83 | - this.fcsj = fcsj; | |
| 84 | - } | |
| 85 | - | |
| 86 | - public Long getSchId() { | |
| 87 | - return schId; | |
| 88 | - } | |
| 89 | - | |
| 90 | - public void setSchId(Long schId) { | |
| 91 | - this.schId = schId; | |
| 92 | - } | |
| 93 | - | |
| 94 | - public String getRemarks() { | |
| 95 | - return remarks; | |
| 96 | - } | |
| 97 | - | |
| 98 | - public void setRemarks(String remarks) { | |
| 99 | - this.remarks = remarks; | |
| 100 | - } | |
| 101 | -} | |
| 1 | +package com.bsth.entity.logger; | |
| 2 | + | |
| 3 | +import javax.persistence.Entity; | |
| 4 | +import javax.persistence.Table; | |
| 5 | + | |
| 6 | +/** | |
| 7 | + * 操作日志 -修改公里 | |
| 8 | + * Created by panzhao on 2017/3/6. | |
| 9 | + */ | |
| 10 | +@Entity | |
| 11 | +@Table(name = "logger_mile_modify") | |
| 12 | +public class Logger_MileModify extends Logger{ | |
| 13 | + | |
| 14 | + /** 之前的公里 */ | |
| 15 | + private Double beforeMile; | |
| 16 | + | |
| 17 | + /** 修改之后的公里 */ | |
| 18 | + private Double afterMile; | |
| 19 | + | |
| 20 | + /** 线路 code/name */ | |
| 21 | + private String lineStr; | |
| 22 | + | |
| 23 | + /** 路牌 */ | |
| 24 | + private String lp; | |
| 25 | + | |
| 26 | + /** 车辆自编号 */ | |
| 27 | + private String nbbm; | |
| 28 | + | |
| 29 | + /** 发车时间 */ | |
| 30 | + private String fcsj; | |
| 31 | + | |
| 32 | + /** 班次ID */ | |
| 33 | + private Long schId; | |
| 34 | + | |
| 35 | + /** 备注 */ | |
| 36 | + private String remarks; | |
| 37 | + | |
| 38 | + public Double getBeforeMile() { | |
| 39 | + return beforeMile; | |
| 40 | + } | |
| 41 | + | |
| 42 | + public void setBeforeMile(Double beforeMile) { | |
| 43 | + this.beforeMile = beforeMile; | |
| 44 | + } | |
| 45 | + | |
| 46 | + public Double getAfterMile() { | |
| 47 | + return afterMile; | |
| 48 | + } | |
| 49 | + | |
| 50 | + public void setAfterMile(Double afterMile) { | |
| 51 | + this.afterMile = afterMile; | |
| 52 | + } | |
| 53 | + | |
| 54 | + public String getLineStr() { | |
| 55 | + return lineStr; | |
| 56 | + } | |
| 57 | + | |
| 58 | + public void setLineStr(String lineStr) { | |
| 59 | + this.lineStr = lineStr; | |
| 60 | + } | |
| 61 | + | |
| 62 | + public String getLp() { | |
| 63 | + return lp; | |
| 64 | + } | |
| 65 | + | |
| 66 | + public void setLp(String lp) { | |
| 67 | + this.lp = lp; | |
| 68 | + } | |
| 69 | + | |
| 70 | + public String getNbbm() { | |
| 71 | + return nbbm; | |
| 72 | + } | |
| 73 | + | |
| 74 | + public void setNbbm(String nbbm) { | |
| 75 | + this.nbbm = nbbm; | |
| 76 | + } | |
| 77 | + | |
| 78 | + public String getFcsj() { | |
| 79 | + return fcsj; | |
| 80 | + } | |
| 81 | + | |
| 82 | + public void setFcsj(String fcsj) { | |
| 83 | + this.fcsj = fcsj; | |
| 84 | + } | |
| 85 | + | |
| 86 | + public Long getSchId() { | |
| 87 | + return schId; | |
| 88 | + } | |
| 89 | + | |
| 90 | + public void setSchId(Long schId) { | |
| 91 | + this.schId = schId; | |
| 92 | + } | |
| 93 | + | |
| 94 | + public String getRemarks() { | |
| 95 | + return remarks; | |
| 96 | + } | |
| 97 | + | |
| 98 | + public void setRemarks(String remarks) { | |
| 99 | + this.remarks = remarks; | |
| 100 | + } | |
| 101 | +} | ... | ... |
src/main/java/com/bsth/repository/logger/MileModifyRepository.java
| 1 | -package com.bsth.repository.logger; | |
| 2 | - | |
| 3 | -import com.bsth.entity.logger.Logger_MileModify; | |
| 4 | -import com.bsth.repository.BaseRepository; | |
| 5 | -import org.springframework.stereotype.Repository; | |
| 6 | - | |
| 7 | -/** | |
| 8 | - * Created by panzhao on 2017/3/6. | |
| 9 | - */ | |
| 10 | -@Repository | |
| 11 | -public interface MileModifyRepository extends BaseRepository<Logger_MileModify, Long>{ | |
| 12 | -} | |
| 1 | +package com.bsth.repository.logger; | |
| 2 | + | |
| 3 | +import com.bsth.entity.logger.Logger_MileModify; | |
| 4 | +import com.bsth.repository.BaseRepository; | |
| 5 | +import org.springframework.stereotype.Repository; | |
| 6 | + | |
| 7 | +/** | |
| 8 | + * Created by panzhao on 2017/3/6. | |
| 9 | + */ | |
| 10 | +@Repository | |
| 11 | +public interface MileModifyRepository extends BaseRepository<Logger_MileModify, Long>{ | |
| 12 | +} | ... | ... |
src/main/java/com/bsth/repository/oil/YlbRepository.java
| ... | ... | @@ -37,6 +37,10 @@ public interface YlbRepository extends BaseRepository<Ylb, Integer>{ |
| 37 | 37 | List<Ylb> obtainYl(String rq); |
| 38 | 38 | |
| 39 | 39 | |
| 40 | + @Transactional | |
| 41 | + @Modifying | |
| 42 | + @Query(value="SELECT * FROM bsth_c_ylb where to_days(?1)=to_days(rq) and nbbm =?2 ",nativeQuery=true) | |
| 43 | + List<Ylb> queryListYlb(String rq,String nbbm); | |
| 40 | 44 | /** |
| 41 | 45 | * 查询当天总的加注量和总里程 |
| 42 | 46 | * @param rq | ... | ... |
src/main/java/com/bsth/repository/oil/YlxxbRepository.java
| ... | ... | @@ -24,6 +24,11 @@ public interface YlxxbRepository extends BaseRepository<Ylxxb, Integer>{ |
| 24 | 24 | |
| 25 | 25 | @Transactional |
| 26 | 26 | @Modifying |
| 27 | + @Query(value="SELECT * FROM bsth_c_ylxxb where to_days(?1)=to_days(yyrq) and ssgs=?2",nativeQuery=true) | |
| 28 | + List<Ylxxb> checkYlxx(String rq,String gs); | |
| 29 | + | |
| 30 | + @Transactional | |
| 31 | + @Modifying | |
| 27 | 32 | @Query(value="SELECT * FROM bsth_c_ylxxb where to_days(?1)=to_days(yyrq) and nbbm =?2 and jylx=1",nativeQuery=true) |
| 28 | 33 | List<Ylxxb> obtainYlxx2(String rq,String nbbm); |
| 29 | 34 | ... | ... |
src/main/java/com/bsth/service/logger/MileModifyService.java
| 1 | -package com.bsth.service.logger; | |
| 2 | - | |
| 3 | -import com.bsth.entity.logger.Logger_MileModify; | |
| 4 | -import com.bsth.service.BaseService; | |
| 5 | - | |
| 6 | -/** | |
| 7 | - * Created by panzhao on 2017/3/6. | |
| 8 | - */ | |
| 9 | -public interface MileModifyService extends BaseService<Logger_MileModify, Long>{ | |
| 10 | -} | |
| 1 | +package com.bsth.service.logger; | |
| 2 | + | |
| 3 | +import com.bsth.entity.logger.Logger_MileModify; | |
| 4 | +import com.bsth.service.BaseService; | |
| 5 | + | |
| 6 | +/** | |
| 7 | + * Created by panzhao on 2017/3/6. | |
| 8 | + */ | |
| 9 | +public interface MileModifyService extends BaseService<Logger_MileModify, Long>{ | |
| 10 | +} | ... | ... |
src/main/java/com/bsth/service/logger/impl/MileModifyServiceImpl.java
| 1 | -package com.bsth.service.logger.impl; | |
| 2 | - | |
| 3 | -import com.bsth.entity.logger.Logger_MileModify; | |
| 4 | -import com.bsth.service.impl.BaseServiceImpl; | |
| 5 | -import com.bsth.service.logger.MileModifyService; | |
| 6 | -import org.springframework.stereotype.Service; | |
| 7 | - | |
| 8 | -/** | |
| 9 | - * Created by panzhao on 2017/3/6. | |
| 10 | - */ | |
| 11 | -@Service | |
| 12 | -public class MileModifyServiceImpl extends BaseServiceImpl<Logger_MileModify, Long> implements MileModifyService { | |
| 13 | -} | |
| 1 | +package com.bsth.service.logger.impl; | |
| 2 | + | |
| 3 | +import com.bsth.entity.logger.Logger_MileModify; | |
| 4 | +import com.bsth.service.impl.BaseServiceImpl; | |
| 5 | +import com.bsth.service.logger.MileModifyService; | |
| 6 | +import org.springframework.stereotype.Service; | |
| 7 | + | |
| 8 | +/** | |
| 9 | + * Created by panzhao on 2017/3/6. | |
| 10 | + */ | |
| 11 | +@Service | |
| 12 | +public class MileModifyServiceImpl extends BaseServiceImpl<Logger_MileModify, Long> implements MileModifyService { | |
| 13 | +} | ... | ... |
src/main/java/com/bsth/service/oil/impl/YlbServiceImpl.java
| ... | ... | @@ -25,6 +25,7 @@ import org.springframework.jdbc.core.RowMapper; |
| 25 | 25 | import org.springframework.stereotype.Service; |
| 26 | 26 | |
| 27 | 27 | import com.bsth.common.ResponseCode; |
| 28 | +import com.bsth.data.BasicData; | |
| 28 | 29 | import com.bsth.entity.oil.Cyl; |
| 29 | 30 | import com.bsth.entity.oil.Ylb; |
| 30 | 31 | import com.bsth.entity.oil.Ylxxb; |
| ... | ... | @@ -435,6 +436,7 @@ public class YlbServiceImpl extends BaseServiceImpl<Ylb,Integer> implements YlbS |
| 435 | 436 | @Override |
| 436 | 437 | public Map<String, Object> checkYl(Map<String, Object> map) { |
| 437 | 438 | Map<String, Object> newMap=new HashMap<String,Object>(); |
| 439 | + String xlbm=map.get("xlbm_eq").toString(); | |
| 438 | 440 | // TODO Auto-generated method stub |
| 439 | 441 | try{ |
| 440 | 442 | //获取车辆存油信息 |
| ... | ... | @@ -460,7 +462,7 @@ public class YlbServiceImpl extends BaseServiceImpl<Ylb,Integer> implements YlbS |
| 460 | 462 | t.setJsy(y1.getJsy()); |
| 461 | 463 | t.setJzl(y1.getJzl()); |
| 462 | 464 | t.setSsgsdm(y1.getGsdm()); |
| 463 | - t.setXlbm("1024"); | |
| 465 | + t.setXlbm(xlbm); | |
| 464 | 466 | repository.save(t); |
| 465 | 467 | |
| 466 | 468 | //设置存油量 | ... | ... |
src/main/java/com/bsth/service/oil/impl/YlxxbServiceImpl.java
| 1 | 1 | package com.bsth.service.oil.impl; |
| 2 | 2 | |
| 3 | +import java.sql.ResultSet; | |
| 4 | +import java.sql.SQLException; | |
| 3 | 5 | import java.text.ParseException; |
| 4 | 6 | import java.text.SimpleDateFormat; |
| 5 | 7 | import java.util.ArrayList; |
| ... | ... | @@ -10,9 +12,12 @@ import java.util.Map; |
| 10 | 12 | import org.slf4j.Logger; |
| 11 | 13 | import org.slf4j.LoggerFactory; |
| 12 | 14 | import org.springframework.beans.factory.annotation.Autowired; |
| 15 | +import org.springframework.jdbc.core.JdbcTemplate; | |
| 16 | +import org.springframework.jdbc.core.RowMapper; | |
| 13 | 17 | import org.springframework.stereotype.Service; |
| 14 | 18 | |
| 15 | 19 | import com.bsth.common.ResponseCode; |
| 20 | +import com.bsth.entity.excep.Offline; | |
| 16 | 21 | import com.bsth.entity.oil.Ylb; |
| 17 | 22 | import com.bsth.entity.oil.Ylxxb; |
| 18 | 23 | import com.bsth.entity.search.CustomerSpecs; |
| ... | ... | @@ -31,27 +36,23 @@ public class YlxxbServiceImpl extends BaseServiceImpl<Ylxxb,Integer> implements |
| 31 | 36 | YlxxbRepository repository; |
| 32 | 37 | @Autowired |
| 33 | 38 | YlbRepository ylbRepository; |
| 34 | - | |
| 39 | + @Autowired | |
| 40 | + JdbcTemplate jdbcTemplate; | |
| 35 | 41 | @Override |
| 36 | 42 | public PageObject<Ylxxb> Pagequery(Map<String, Object> map) { |
| 37 | 43 | |
| 38 | 44 | String rq=map.get("yyrq").toString(); |
| 39 | - SimpleDateFormat sdf=new SimpleDateFormat("yyyy-MM-dd"); | |
| 40 | - try { | |
| 41 | - map.put("yyrq_eq", sdf.parseObject(rq)); | |
| 42 | - } catch (ParseException e) { | |
| 43 | - // TODO Auto-generated catch block | |
| 44 | - e.printStackTrace(); | |
| 45 | - } | |
| 45 | + String gsdm=map.get("gsdm_like").toString(); | |
| 46 | + String fgsdm=map.get("fgsdm_like").toString(); | |
| 47 | + | |
| 48 | + String sql=" select x.*,y.jsy as ldgh,y.fgsdm as fgsdm from bsth_c_ylxxb x " | |
| 49 | + + " left join bsth_c_ylb y on x.nbbm = y.nbbm and x.jsy !=y.jsy " | |
| 50 | + + " where DATE_FORMAT(y.rq,'%Y-%m-%d')='"+rq+"' and y.ssgsdm='"+gsdm+"' " | |
| 51 | + + " and y.fgsdm='"+fgsdm+"' and DATE_FORMAT(x.yyrq,'%Y-%m-%d')='"+rq+"' " | |
| 52 | + + " and x.gsdm='"+gsdm+"'"; | |
| 53 | + | |
| 46 | 54 | //根具条件查询指定日期Ylxxb的数据 |
| 47 | - List<Ylxxb> iterator=repository.findAll(new CustomerSpecs<Ylxxb>(map)); | |
| 48 | - map.remove("yyrq_eq"); | |
| 49 | - try { | |
| 50 | - map.put("rq_eq", sdf.parse(rq)); | |
| 51 | - } catch (ParseException e) { | |
| 52 | - // TODO Auto-generated catch block | |
| 53 | - e.printStackTrace(); | |
| 54 | - } | |
| 55 | +// List<Ylxxb> iterator=repository.checkYlxx(rq,gsdm); | |
| 55 | 56 | /*if(map.get("gsdm_in")!=null){ |
| 56 | 57 | map.put("ssgsdm_in", map.get("gsdm_in")); |
| 57 | 58 | map.remove("gsdm_in"); |
| ... | ... | @@ -62,30 +63,54 @@ public class YlxxbServiceImpl extends BaseServiceImpl<Ylxxb,Integer> implements |
| 62 | 63 | }*/ |
| 63 | 64 | |
| 64 | 65 | //根具条件查询指定日期Ylb的数据 |
| 65 | - List<Ylb> ylbIterator=(List<Ylb>) ylbRepository.findAll(new CustomerSpecs<Ylb>(map)); | |
| 66 | - List<Ylxxb> list=new ArrayList<Ylxxb>(); | |
| 67 | - for (int i = 0; i < iterator.size(); i++) { | |
| 68 | - Ylxxb y1=iterator.get(i); | |
| 69 | - boolean fage=true; | |
| 70 | - String ldgh=""; | |
| 71 | - for (int j = 0; j < ylbIterator.size(); j++) { | |
| 72 | - Ylb y2 = ylbIterator.get(j); | |
| 73 | - if(y1.getNbbm().equals(y2.getNbbm())){ | |
| 74 | - if(y1.getJsy().equals(y2.getJsy())){ | |
| 75 | - fage=false; | |
| 76 | - } | |
| 77 | - ldgh +=y2.getJsy()+"/"; | |
| 78 | - } | |
| 79 | - } | |
| 80 | - if(fage){ | |
| 81 | - y1.setLdgh(ldgh); | |
| 82 | - list.add(y1); | |
| 83 | - } | |
| 84 | - } | |
| 66 | +// List<Ylb> ylbIterator=ylbRepository.checkYl(rq,gsdm,fgsdm); | |
| 67 | + List<Ylxxb> list=jdbcTemplate.query(sql, | |
| 68 | + new RowMapper<Ylxxb>(){ | |
| 69 | + @Override | |
| 70 | + public Ylxxb mapRow(ResultSet rs, int rowNum) throws SQLException { | |
| 71 | + Ylxxb s = new Ylxxb(); | |
| 72 | + s.setId(rs.getInt("id")); | |
| 73 | + s.setYyrq(rs.getDate("yyrq")); | |
| 74 | + s.setNbbm(rs.getString("nbbm")); | |
| 75 | + s.setGsdm(rs.getString("gsdm")); | |
| 76 | + s.setFgsdm(rs.getString("fgsdm")); | |
| 77 | + s.setJsy(rs.getString("jsy")); | |
| 78 | + s.setJzl(rs.getDouble("jzl")); | |
| 79 | + s.setStationid(rs.getString("stationid")); | |
| 80 | + s.setNylx(rs.getInt("nylx")); | |
| 81 | + s.setJyggh(rs.getString("jyggh")); | |
| 82 | + s.setYj(rs.getDouble("yj")); | |
| 83 | + s.setLdgh(rs.getString("ldgh")); | |
| 84 | + s.setBz(rs.getString("bz")); | |
| 85 | + return s; | |
| 86 | + } | |
| 87 | + }); | |
| 88 | + | |
| 89 | + //正式使用用下面代码 | |
| 90 | +// for (int i = 0; i < iterator.size(); i++) { | |
| 91 | +// Ylxxb y1=iterator.get(i); | |
| 92 | +// boolean fage=true; | |
| 93 | +// String ldgh=""; | |
| 94 | +// for (int j = 0; j < ylbIterator.size(); j++) { | |
| 95 | +// Ylb y2 = ylbIterator.get(j); | |
| 96 | +// if(y1.getNbbm().equals(y2.getNbbm())){ | |
| 97 | +// if(y1.getJsy().equals(y2.getJsy())){ | |
| 98 | +// fage=false; | |
| 99 | +// } | |
| 100 | +// ldgh +=y2.getJsy()+"/"; | |
| 101 | +// } | |
| 102 | +// } | |
| 103 | +// if(fage){ | |
| 104 | +// y1.setLdgh(ldgh); | |
| 105 | +// list.add(y1); | |
| 106 | +// } | |
| 107 | +// } | |
| 108 | + | |
| 109 | + | |
| 85 | 110 | |
| 86 | 111 | PageHelper pageHelper = new PageHelper(list.size(), map); |
| 87 | 112 | pageHelper.getMap(); |
| 88 | - PageObject<Ylxxb> pageObject=pageHelper.getPageObject(); | |
| 113 | + PageObject<Ylxxb> pageObject = pageHelper.getPageObject(); | |
| 89 | 114 | pageObject.setDataList(list); |
| 90 | 115 | return pageObject; |
| 91 | 116 | } | ... | ... |
src/main/java/com/bsth/service/realcontrol/ScheduleRealInfoService.java
| ... | ... | @@ -157,4 +157,6 @@ public interface ScheduleRealInfoService extends BaseService<ScheduleRealInfo, L |
| 157 | 157 | Map<String,Object> lpChangeMulti(String leftIdx, String rightIdx, int type); |
| 158 | 158 | |
| 159 | 159 | void lpChange(ScheduleRealInfo leftSch, ScheduleRealInfo rightSch, int type); |
| 160 | + | |
| 161 | + Map<String,Object> revokeRealArrive(Long id); | |
| 160 | 162 | } | ... | ... |
src/main/java/com/bsth/service/realcontrol/impl/ScheduleRealInfoServiceImpl.java
| ... | ... | @@ -9,14 +9,13 @@ import com.bsth.controller.realcontrol.dto.DfsjChange; |
| 9 | 9 | import com.bsth.controller.realcontrol.dto.LpData; |
| 10 | 10 | import com.bsth.data.BasicData; |
| 11 | 11 | import com.bsth.data.LineConfigData; |
| 12 | -import com.bsth.data.arrival.ArrivalData_GPS; | |
| 13 | -import com.bsth.data.arrival.ArrivalEntity; | |
| 14 | 12 | import com.bsth.data.schedule.DayOfSchedule; |
| 15 | 13 | import com.bsth.data.schedule.SchAttrCalculator; |
| 16 | 14 | import com.bsth.data.schedule.ScheduleComparator; |
| 17 | 15 | import com.bsth.entity.Cars; |
| 18 | 16 | import com.bsth.entity.Line; |
| 19 | 17 | import com.bsth.entity.Personnel; |
| 18 | +import com.bsth.entity.oil.Ylb; | |
| 20 | 19 | import com.bsth.entity.oil.Ylxxb; |
| 21 | 20 | import com.bsth.entity.realcontrol.ChildTaskPlan; |
| 22 | 21 | import com.bsth.entity.realcontrol.LineConfig; |
| ... | ... | @@ -29,6 +28,7 @@ import com.bsth.entity.schedule.SchedulePlanInfo; |
| 29 | 28 | import com.bsth.entity.sys.DutyEmployee; |
| 30 | 29 | import com.bsth.entity.sys.SysUser; |
| 31 | 30 | import com.bsth.repository.LineRepository; |
| 31 | +import com.bsth.repository.oil.YlbRepository; | |
| 32 | 32 | import com.bsth.repository.oil.YlxxbRepository; |
| 33 | 33 | import com.bsth.repository.realcontrol.ChildTaskPlanRepository; |
| 34 | 34 | import com.bsth.repository.realcontrol.ScheduleRealInfoRepository; |
| ... | ... | @@ -116,6 +116,9 @@ public class ScheduleRealInfoServiceImpl extends BaseServiceImpl<ScheduleRealInf |
| 116 | 116 | |
| 117 | 117 | @Autowired |
| 118 | 118 | YlxxbRepository ylxxbRepository; |
| 119 | + | |
| 120 | + @Autowired | |
| 121 | + YlbRepository ylbRepository; | |
| 119 | 122 | |
| 120 | 123 | Logger logger = LoggerFactory.getLogger(this.getClass()); |
| 121 | 124 | |
| ... | ... | @@ -457,12 +460,13 @@ public class ScheduleRealInfoServiceImpl extends BaseServiceImpl<ScheduleRealInf |
| 457 | 460 | @Override |
| 458 | 461 | public List<ScheduleRealInfo> queryUserInfoPx(String line, String date, String state,String type) { |
| 459 | 462 | // List<ScheduleRealInfo> list=new ArrayList<ScheduleRealInfo>(); |
| 463 | + state=state+""; | |
| 460 | 464 | String sqlPlan="select min(s.id) as id,s.j_Gh as jGh,s.cl_Zbh as clZbh," |
| 461 | 465 | + " s.lp_Name as lpName,s.j_Name as jName,s.s_Gh as sGh,s.s_Name as sName" |
| 462 | 466 | + " from bsth_c_s_sp_info_real s " |
| 463 | 467 | + " where s.xl_Bm = '"+line+"' and DATE_FORMAT(s.schedule_Date,'%Y-%m-%d') ='"+date+"' " |
| 464 | 468 | + " GROUP BY s.j_Gh,s.cl_Zbh,s.lp_Name ,s.j_Name,s.s_Gh," |
| 465 | - + " s.s_Name order by "+state+" "+type; | |
| 469 | + + " s.s_Name order by ("+state+") "+type; | |
| 466 | 470 | List<ScheduleRealInfo> list= jdbcTemplate.query(sqlPlan, |
| 467 | 471 | new RowMapper<ScheduleRealInfo>(){ |
| 468 | 472 | @Override |
| ... | ... | @@ -806,8 +810,8 @@ public class ScheduleRealInfoServiceImpl extends BaseServiceImpl<ScheduleRealInf |
| 806 | 810 | rs.put("status", ResponseCode.ERROR); |
| 807 | 811 | rs.put("msg", "无实发时间,无法撤销!"); |
| 808 | 812 | } else { |
| 809 | - //将对应的到离站数据标记为不可信 | |
| 810 | - List<ArrivalEntity> list = ArrivalData_GPS.findByNbbm(sch.getClZbh()); | |
| 813 | + //将对应的到离站数据标记为不可信 ### 废弃的代码 #### | |
| 814 | + /*List<ArrivalEntity> list = ArrivalData_GPS.findByNbbm(sch.getClZbh()); | |
| 811 | 815 | for (ArrivalEntity arr : list) { |
| 812 | 816 | if (arr.getInOut() == 1 |
| 813 | 817 | && arr.getUpDown() == Integer.parseInt(sch.getXlDir()) |
| ... | ... | @@ -816,7 +820,7 @@ public class ScheduleRealInfoServiceImpl extends BaseServiceImpl<ScheduleRealInf |
| 816 | 820 | arr.setEnable(false); |
| 817 | 821 | break; |
| 818 | 822 | } |
| 819 | - } | |
| 823 | + }*/ | |
| 820 | 824 | |
| 821 | 825 | sch.clearFcsjActual(); |
| 822 | 826 | rs.put("status", ResponseCode.SUCCESS); |
| ... | ... | @@ -824,6 +828,8 @@ public class ScheduleRealInfoServiceImpl extends BaseServiceImpl<ScheduleRealInf |
| 824 | 828 | ts.add(sch); |
| 825 | 829 | rs.put("ts", ts); |
| 826 | 830 | |
| 831 | + dayOfSchedule.save(sch); | |
| 832 | + | |
| 827 | 833 | } |
| 828 | 834 | } catch (Exception e) { |
| 829 | 835 | logger.error("", e); |
| ... | ... | @@ -1663,7 +1669,7 @@ public class ScheduleRealInfoServiceImpl extends BaseServiceImpl<ScheduleRealInf |
| 1663 | 1669 | jhbc_a++; |
| 1664 | 1670 | jhbc_aZ++; |
| 1665 | 1671 | } |
| 1666 | - if (scheduleRealInfo.getStatus() == 2) { | |
| 1672 | + if (scheduleRealInfo.getStatus() != -1) { | |
| 1667 | 1673 | sjbc++; |
| 1668 | 1674 | sjbcZ++; |
| 1669 | 1675 | if ((Integer.parseInt(fcsjActual[0]) * 60 + Integer.parseInt(fcsjActual[1])) > sj_0 && (Integer.parseInt(fcsjActual[0]) * 60 + Integer.parseInt(fcsjActual[1])) < sj_1) { |
| ... | ... | @@ -2990,7 +2996,22 @@ public class ScheduleRealInfoServiceImpl extends BaseServiceImpl<ScheduleRealInf |
| 2990 | 2996 | Ylxxb y=listYlxxb.get(t); |
| 2991 | 2997 | jzl += y.getJzl(); |
| 2992 | 2998 | } |
| 2999 | + | |
| 3000 | + List<Ylb> listYlb=ylbRepository.queryListYlb( fcrq,s.getClZbh()); | |
| 3001 | + Double ccyl=0.0; | |
| 3002 | + Double jcyl=0.0; | |
| 3003 | + Double yh=0.0; | |
| 3004 | + for (int i = 0; i < listYlb.size(); i++) { | |
| 3005 | + Ylb y=listYlb.get(i); | |
| 3006 | + ccyl +=y.getCzyl(); | |
| 3007 | + jcyl+= y.getJzyl(); | |
| 3008 | + yh+=y.getYh(); | |
| 3009 | + | |
| 3010 | + } | |
| 2993 | 3011 | map.put("jzl", jzl); |
| 3012 | + map.put("yh", yh); | |
| 3013 | + map.put("ccyl", ccyl); | |
| 3014 | + map.put("jcyl", jcyl); | |
| 2994 | 3015 | map.put("xlName", s.getXlName()); |
| 2995 | 3016 | map.put("clZbh", s.getClZbh()); |
| 2996 | 3017 | map.put("fcsjActual", s.getFcsjActual()); |
| ... | ... | @@ -3439,4 +3460,39 @@ public class ScheduleRealInfoServiceImpl extends BaseServiceImpl<ScheduleRealInf |
| 3439 | 3460 | leftData.appendTo(rightSch, type); |
| 3440 | 3461 | rightData.appendTo(leftSch, type); |
| 3441 | 3462 | } |
| 3463 | + | |
| 3464 | + @Override | |
| 3465 | + public Map<String, Object> revokeRealArrive(Long id) { | |
| 3466 | + Map<String, Object> rs = new HashMap<>(); | |
| 3467 | + List<ScheduleRealInfo> ts = new ArrayList<>(); | |
| 3468 | + | |
| 3469 | + try { | |
| 3470 | + ScheduleRealInfo sch = dayOfSchedule.get(id); | |
| 3471 | + if (sch.getZdsjActual() == null) { | |
| 3472 | + rs.put("status", ResponseCode.ERROR); | |
| 3473 | + rs.put("msg", "无实际到达时间,无法撤销!"); | |
| 3474 | + } else { | |
| 3475 | + | |
| 3476 | + sch.clearZdsjActual(); | |
| 3477 | + //清除下一个班次的起点到达时间 | |
| 3478 | + ScheduleRealInfo next = dayOfSchedule.next(sch); | |
| 3479 | + if (null != next) { | |
| 3480 | + next.setQdzArrDateSJ(null); | |
| 3481 | + ts.add(next); | |
| 3482 | + } | |
| 3483 | + | |
| 3484 | + rs.put("status", ResponseCode.SUCCESS); | |
| 3485 | + | |
| 3486 | + ts.add(sch); | |
| 3487 | + rs.put("ts", ts); | |
| 3488 | + | |
| 3489 | + dayOfSchedule.save(sch); | |
| 3490 | + | |
| 3491 | + } | |
| 3492 | + } catch (Exception e) { | |
| 3493 | + logger.error("", e); | |
| 3494 | + rs.put("status", ResponseCode.ERROR); | |
| 3495 | + } | |
| 3496 | + return rs; | |
| 3497 | + } | |
| 3442 | 3498 | } |
| 3443 | 3499 | \ No newline at end of file | ... | ... |
src/main/java/com/bsth/service/schedule/rules/ttinfo2/CalcuParam.java
| 1 | -package com.bsth.service.schedule.rules.ttinfo2; | |
| 2 | - | |
| 3 | -import org.joda.time.DateTime; | |
| 4 | - | |
| 5 | -/** | |
| 6 | - * 时刻表计算参数。 | |
| 7 | - */ | |
| 8 | -public class CalcuParam { | |
| 9 | - /** 开始计算时间 */ | |
| 10 | - private DateTime fromDate; | |
| 11 | - /** 结束计算时间 */ | |
| 12 | - private DateTime toDate; | |
| 13 | - /** 线路id */ | |
| 14 | - private Integer xlId; | |
| 15 | - | |
| 16 | - public CalcuParam() {} | |
| 17 | - public CalcuParam( | |
| 18 | - DateTime fromDate, | |
| 19 | - DateTime toDate, | |
| 20 | - Integer xlId) { | |
| 21 | - this.fromDate = fromDate; | |
| 22 | - this.toDate = toDate; | |
| 23 | - this.xlId = xlId; | |
| 24 | - } | |
| 25 | - | |
| 26 | - public DateTime getFromDate() { | |
| 27 | - return fromDate; | |
| 28 | - } | |
| 29 | - | |
| 30 | - public void setFromDate(DateTime fromDate) { | |
| 31 | - this.fromDate = fromDate; | |
| 32 | - } | |
| 33 | - | |
| 34 | - public DateTime getToDate() { | |
| 35 | - return toDate; | |
| 36 | - } | |
| 37 | - | |
| 38 | - public void setToDate(DateTime toDate) { | |
| 39 | - this.toDate = toDate; | |
| 40 | - } | |
| 41 | - | |
| 42 | - public Integer getXlId() { | |
| 43 | - return xlId; | |
| 44 | - } | |
| 45 | - | |
| 46 | - public void setXlId(Integer xlId) { | |
| 47 | - this.xlId = xlId; | |
| 48 | - } | |
| 49 | -} | |
| 1 | +package com.bsth.service.schedule.rules.ttinfo2; | |
| 2 | + | |
| 3 | +import org.joda.time.DateTime; | |
| 4 | + | |
| 5 | +/** | |
| 6 | + * 时刻表计算参数。 | |
| 7 | + */ | |
| 8 | +public class CalcuParam { | |
| 9 | + /** 开始计算时间 */ | |
| 10 | + private DateTime fromDate; | |
| 11 | + /** 结束计算时间 */ | |
| 12 | + private DateTime toDate; | |
| 13 | + /** 线路id */ | |
| 14 | + private Integer xlId; | |
| 15 | + | |
| 16 | + public CalcuParam() {} | |
| 17 | + public CalcuParam( | |
| 18 | + DateTime fromDate, | |
| 19 | + DateTime toDate, | |
| 20 | + Integer xlId) { | |
| 21 | + this.fromDate = fromDate; | |
| 22 | + this.toDate = toDate; | |
| 23 | + this.xlId = xlId; | |
| 24 | + } | |
| 25 | + | |
| 26 | + public DateTime getFromDate() { | |
| 27 | + return fromDate; | |
| 28 | + } | |
| 29 | + | |
| 30 | + public void setFromDate(DateTime fromDate) { | |
| 31 | + this.fromDate = fromDate; | |
| 32 | + } | |
| 33 | + | |
| 34 | + public DateTime getToDate() { | |
| 35 | + return toDate; | |
| 36 | + } | |
| 37 | + | |
| 38 | + public void setToDate(DateTime toDate) { | |
| 39 | + this.toDate = toDate; | |
| 40 | + } | |
| 41 | + | |
| 42 | + public Integer getXlId() { | |
| 43 | + return xlId; | |
| 44 | + } | |
| 45 | + | |
| 46 | + public void setXlId(Integer xlId) { | |
| 47 | + this.xlId = xlId; | |
| 48 | + } | |
| 49 | +} | ... | ... |
src/main/java/com/bsth/service/schedule/rules/ttinfo2/ErrorBcCountFunction.java
| 1 | -package com.bsth.service.schedule.rules.ttinfo2; | |
| 2 | - | |
| 3 | -import com.bsth.entity.schedule.TTInfoDetail; | |
| 4 | -import org.kie.api.runtime.rule.AccumulateFunction; | |
| 5 | - | |
| 6 | -import java.io.*; | |
| 7 | - | |
| 8 | -/** | |
| 9 | - * Created by xu on 17/2/28. | |
| 10 | - */ | |
| 11 | -public class ErrorBcCountFunction implements AccumulateFunction { | |
| 12 | - @Override | |
| 13 | - public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException { | |
| 14 | - } | |
| 15 | - | |
| 16 | - @Override | |
| 17 | - public void writeExternal(ObjectOutput out) throws IOException { | |
| 18 | - } | |
| 19 | - | |
| 20 | - protected static class ErrorCountData implements Externalizable { | |
| 21 | - public long errorcount = 0; | |
| 22 | - public TTInfoDetail ttInfoDetail; | |
| 23 | - | |
| 24 | - public ErrorCountData() { | |
| 25 | - } | |
| 26 | - | |
| 27 | - @Override | |
| 28 | - public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException { | |
| 29 | - errorcount = in.readLong(); | |
| 30 | - ttInfoDetail = (TTInfoDetail) in.readObject(); | |
| 31 | - } | |
| 32 | - | |
| 33 | - @Override | |
| 34 | - public void writeExternal(ObjectOutput out) throws IOException { | |
| 35 | - out.writeLong(errorcount); | |
| 36 | - out.writeObject(ttInfoDetail); | |
| 37 | - } | |
| 38 | - } | |
| 39 | - | |
| 40 | - @Override | |
| 41 | - public Serializable createContext() { | |
| 42 | - return new ErrorCountData(); | |
| 43 | - } | |
| 44 | - | |
| 45 | - @Override | |
| 46 | - public void init(Serializable context) throws Exception { | |
| 47 | - ErrorCountData errorCountData = (ErrorCountData) context; | |
| 48 | - errorCountData.errorcount = 0; | |
| 49 | - } | |
| 50 | - | |
| 51 | - @Override | |
| 52 | - public void accumulate(Serializable context, Object value) { | |
| 53 | - ErrorCountData errorCountData = (ErrorCountData) context; | |
| 54 | - TTInfoDetail ttInfoDetail = (TTInfoDetail) value; | |
| 55 | - | |
| 56 | - if (ttInfoDetail.getTtinfo() == null) { | |
| 57 | - errorCountData.errorcount ++; | |
| 58 | - return; | |
| 59 | - } | |
| 60 | - | |
| 61 | - if ("in".equals(ttInfoDetail.getBcType())) { | |
| 62 | - if (ttInfoDetail.getQdz() == null || ttInfoDetail.getTcc() == null) { | |
| 63 | - errorCountData.errorcount ++; | |
| 64 | - } | |
| 65 | - } else if ("out".equals(ttInfoDetail.getBcType())) { | |
| 66 | - if (ttInfoDetail.getTcc() == null || ttInfoDetail.getZdz() == null) { | |
| 67 | - errorCountData.errorcount ++; | |
| 68 | - } | |
| 69 | - } else { | |
| 70 | - if (ttInfoDetail.getQdz() == null || ttInfoDetail.getZdz() == null) { | |
| 71 | - errorCountData.errorcount ++; | |
| 72 | - } | |
| 73 | - } | |
| 74 | - } | |
| 75 | - | |
| 76 | - @Override | |
| 77 | - public void reverse(Serializable context, Object value) throws Exception { | |
| 78 | - ErrorCountData errorCountData = (ErrorCountData) context; | |
| 79 | - TTInfoDetail ttInfoDetail = (TTInfoDetail) value; | |
| 80 | - | |
| 81 | - if (ttInfoDetail.getTtinfo() == null) { | |
| 82 | - errorCountData.errorcount --; | |
| 83 | - return; | |
| 84 | - } | |
| 85 | - | |
| 86 | - if ("in".equals(ttInfoDetail.getBcType())) { | |
| 87 | - if (ttInfoDetail.getQdz() == null || ttInfoDetail.getTcc() == null) { | |
| 88 | - errorCountData.errorcount --; | |
| 89 | - } | |
| 90 | - } else if ("out".equals(ttInfoDetail.getBcType())) { | |
| 91 | - if (ttInfoDetail.getTcc() == null || ttInfoDetail.getZdz() == null) { | |
| 92 | - errorCountData.errorcount --; | |
| 93 | - } | |
| 94 | - } else { | |
| 95 | - if (ttInfoDetail.getQdz() == null || ttInfoDetail.getZdz() == null) { | |
| 96 | - errorCountData.errorcount --; | |
| 97 | - } | |
| 98 | - } | |
| 99 | - | |
| 100 | - } | |
| 101 | - | |
| 102 | - @Override | |
| 103 | - public Object getResult(Serializable context) throws Exception { | |
| 104 | - ErrorCountData errorCountData = (ErrorCountData) context; | |
| 105 | - return errorCountData.errorcount; | |
| 106 | - } | |
| 107 | - | |
| 108 | - @Override | |
| 109 | - public boolean supportsReverse() { | |
| 110 | - return true; | |
| 111 | - } | |
| 112 | - | |
| 113 | - @Override | |
| 114 | - public Class<?> getResultType() { | |
| 115 | - return Number.class; | |
| 116 | - } | |
| 117 | -} | |
| 1 | +package com.bsth.service.schedule.rules.ttinfo2; | |
| 2 | + | |
| 3 | +import com.bsth.entity.schedule.TTInfoDetail; | |
| 4 | +import org.kie.api.runtime.rule.AccumulateFunction; | |
| 5 | + | |
| 6 | +import java.io.*; | |
| 7 | + | |
| 8 | +/** | |
| 9 | + * Created by xu on 17/2/28. | |
| 10 | + */ | |
| 11 | +public class ErrorBcCountFunction implements AccumulateFunction { | |
| 12 | + @Override | |
| 13 | + public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException { | |
| 14 | + } | |
| 15 | + | |
| 16 | + @Override | |
| 17 | + public void writeExternal(ObjectOutput out) throws IOException { | |
| 18 | + } | |
| 19 | + | |
| 20 | + protected static class ErrorCountData implements Externalizable { | |
| 21 | + public long errorcount = 0; | |
| 22 | + public TTInfoDetail ttInfoDetail; | |
| 23 | + | |
| 24 | + public ErrorCountData() { | |
| 25 | + } | |
| 26 | + | |
| 27 | + @Override | |
| 28 | + public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException { | |
| 29 | + errorcount = in.readLong(); | |
| 30 | + ttInfoDetail = (TTInfoDetail) in.readObject(); | |
| 31 | + } | |
| 32 | + | |
| 33 | + @Override | |
| 34 | + public void writeExternal(ObjectOutput out) throws IOException { | |
| 35 | + out.writeLong(errorcount); | |
| 36 | + out.writeObject(ttInfoDetail); | |
| 37 | + } | |
| 38 | + } | |
| 39 | + | |
| 40 | + @Override | |
| 41 | + public Serializable createContext() { | |
| 42 | + return new ErrorCountData(); | |
| 43 | + } | |
| 44 | + | |
| 45 | + @Override | |
| 46 | + public void init(Serializable context) throws Exception { | |
| 47 | + ErrorCountData errorCountData = (ErrorCountData) context; | |
| 48 | + errorCountData.errorcount = 0; | |
| 49 | + } | |
| 50 | + | |
| 51 | + @Override | |
| 52 | + public void accumulate(Serializable context, Object value) { | |
| 53 | + ErrorCountData errorCountData = (ErrorCountData) context; | |
| 54 | + TTInfoDetail ttInfoDetail = (TTInfoDetail) value; | |
| 55 | + | |
| 56 | + if (ttInfoDetail.getTtinfo() == null) { | |
| 57 | + errorCountData.errorcount ++; | |
| 58 | + return; | |
| 59 | + } | |
| 60 | + | |
| 61 | + if ("in".equals(ttInfoDetail.getBcType())) { | |
| 62 | + if (ttInfoDetail.getQdz() == null || ttInfoDetail.getTcc() == null) { | |
| 63 | + errorCountData.errorcount ++; | |
| 64 | + } | |
| 65 | + } else if ("out".equals(ttInfoDetail.getBcType())) { | |
| 66 | + if (ttInfoDetail.getTcc() == null || ttInfoDetail.getZdz() == null) { | |
| 67 | + errorCountData.errorcount ++; | |
| 68 | + } | |
| 69 | + } else { | |
| 70 | + if (ttInfoDetail.getQdz() == null || ttInfoDetail.getZdz() == null) { | |
| 71 | + errorCountData.errorcount ++; | |
| 72 | + } | |
| 73 | + } | |
| 74 | + } | |
| 75 | + | |
| 76 | + @Override | |
| 77 | + public void reverse(Serializable context, Object value) throws Exception { | |
| 78 | + ErrorCountData errorCountData = (ErrorCountData) context; | |
| 79 | + TTInfoDetail ttInfoDetail = (TTInfoDetail) value; | |
| 80 | + | |
| 81 | + if (ttInfoDetail.getTtinfo() == null) { | |
| 82 | + errorCountData.errorcount --; | |
| 83 | + return; | |
| 84 | + } | |
| 85 | + | |
| 86 | + if ("in".equals(ttInfoDetail.getBcType())) { | |
| 87 | + if (ttInfoDetail.getQdz() == null || ttInfoDetail.getTcc() == null) { | |
| 88 | + errorCountData.errorcount --; | |
| 89 | + } | |
| 90 | + } else if ("out".equals(ttInfoDetail.getBcType())) { | |
| 91 | + if (ttInfoDetail.getTcc() == null || ttInfoDetail.getZdz() == null) { | |
| 92 | + errorCountData.errorcount --; | |
| 93 | + } | |
| 94 | + } else { | |
| 95 | + if (ttInfoDetail.getQdz() == null || ttInfoDetail.getZdz() == null) { | |
| 96 | + errorCountData.errorcount --; | |
| 97 | + } | |
| 98 | + } | |
| 99 | + | |
| 100 | + } | |
| 101 | + | |
| 102 | + @Override | |
| 103 | + public Object getResult(Serializable context) throws Exception { | |
| 104 | + ErrorCountData errorCountData = (ErrorCountData) context; | |
| 105 | + return errorCountData.errorcount; | |
| 106 | + } | |
| 107 | + | |
| 108 | + @Override | |
| 109 | + public boolean supportsReverse() { | |
| 110 | + return true; | |
| 111 | + } | |
| 112 | + | |
| 113 | + @Override | |
| 114 | + public Class<?> getResultType() { | |
| 115 | + return Number.class; | |
| 116 | + } | |
| 117 | +} | ... | ... |
src/main/java/com/bsth/service/schedule/rules/ttinfo2/Result.java
| 1 | -package com.bsth.service.schedule.rules.ttinfo2; | |
| 2 | - | |
| 3 | -import java.util.ArrayList; | |
| 4 | -import java.util.List; | |
| 5 | - | |
| 6 | -/** | |
| 7 | - * 输出结果值。 | |
| 8 | - */ | |
| 9 | -public class Result { | |
| 10 | - private List<StatInfo> infos = new ArrayList<>(); | |
| 11 | - | |
| 12 | - public List<StatInfo> getInfos() { | |
| 13 | - return infos; | |
| 14 | - } | |
| 15 | - | |
| 16 | - public void setInfos(List<StatInfo> infos) { | |
| 17 | - this.infos = infos; | |
| 18 | - } | |
| 19 | - | |
| 20 | - public static class StatInfo { | |
| 21 | - /** 时刻表id */ | |
| 22 | - private Long ttid; | |
| 23 | - /** 时刻表名字 */ | |
| 24 | - private String ttname; | |
| 25 | - | |
| 26 | - /** 所有班次数 */ | |
| 27 | - private Long allbc; | |
| 28 | - /** 进场班次数 */ | |
| 29 | - private Long inbc; | |
| 30 | - /** 出场班次数 */ | |
| 31 | - private Long outbc; | |
| 32 | - /** 营运班次数 */ | |
| 33 | - private Long yybc; | |
| 34 | - | |
| 35 | - /** 错误班次数 */ | |
| 36 | - private Long errorbc; | |
| 37 | - | |
| 38 | - public Long getTtid() { | |
| 39 | - return ttid; | |
| 40 | - } | |
| 41 | - | |
| 42 | - public void setTtid(Long ttid) { | |
| 43 | - this.ttid = ttid; | |
| 44 | - } | |
| 45 | - | |
| 46 | - public String getTtname() { | |
| 47 | - return ttname; | |
| 48 | - } | |
| 49 | - | |
| 50 | - public void setTtname(String ttname) { | |
| 51 | - this.ttname = ttname; | |
| 52 | - } | |
| 53 | - | |
| 54 | - public Long getAllbc() { | |
| 55 | - return allbc; | |
| 56 | - } | |
| 57 | - | |
| 58 | - public void setAllbc(Long allbc) { | |
| 59 | - this.allbc = allbc; | |
| 60 | - } | |
| 61 | - | |
| 62 | - public Long getInbc() { | |
| 63 | - return inbc; | |
| 64 | - } | |
| 65 | - | |
| 66 | - public void setInbc(Long inbc) { | |
| 67 | - this.inbc = inbc; | |
| 68 | - } | |
| 69 | - | |
| 70 | - public Long getOutbc() { | |
| 71 | - return outbc; | |
| 72 | - } | |
| 73 | - | |
| 74 | - public void setOutbc(Long outbc) { | |
| 75 | - this.outbc = outbc; | |
| 76 | - } | |
| 77 | - | |
| 78 | - public Long getYybc() { | |
| 79 | - return yybc; | |
| 80 | - } | |
| 81 | - | |
| 82 | - public void setYybc(Long yybc) { | |
| 83 | - this.yybc = yybc; | |
| 84 | - } | |
| 85 | - | |
| 86 | - public Long getErrorbc() { | |
| 87 | - return errorbc; | |
| 88 | - } | |
| 89 | - | |
| 90 | - public void setErrorbc(Long errorbc) { | |
| 91 | - this.errorbc = errorbc; | |
| 92 | - } | |
| 93 | - } | |
| 94 | -} | |
| 1 | +package com.bsth.service.schedule.rules.ttinfo2; | |
| 2 | + | |
| 3 | +import java.util.ArrayList; | |
| 4 | +import java.util.List; | |
| 5 | + | |
| 6 | +/** | |
| 7 | + * 输出结果值。 | |
| 8 | + */ | |
| 9 | +public class Result { | |
| 10 | + private List<StatInfo> infos = new ArrayList<>(); | |
| 11 | + | |
| 12 | + public List<StatInfo> getInfos() { | |
| 13 | + return infos; | |
| 14 | + } | |
| 15 | + | |
| 16 | + public void setInfos(List<StatInfo> infos) { | |
| 17 | + this.infos = infos; | |
| 18 | + } | |
| 19 | + | |
| 20 | + public static class StatInfo { | |
| 21 | + /** 时刻表id */ | |
| 22 | + private Long ttid; | |
| 23 | + /** 时刻表名字 */ | |
| 24 | + private String ttname; | |
| 25 | + | |
| 26 | + /** 所有班次数 */ | |
| 27 | + private Long allbc; | |
| 28 | + /** 进场班次数 */ | |
| 29 | + private Long inbc; | |
| 30 | + /** 出场班次数 */ | |
| 31 | + private Long outbc; | |
| 32 | + /** 营运班次数 */ | |
| 33 | + private Long yybc; | |
| 34 | + | |
| 35 | + /** 错误班次数 */ | |
| 36 | + private Long errorbc; | |
| 37 | + | |
| 38 | + public Long getTtid() { | |
| 39 | + return ttid; | |
| 40 | + } | |
| 41 | + | |
| 42 | + public void setTtid(Long ttid) { | |
| 43 | + this.ttid = ttid; | |
| 44 | + } | |
| 45 | + | |
| 46 | + public String getTtname() { | |
| 47 | + return ttname; | |
| 48 | + } | |
| 49 | + | |
| 50 | + public void setTtname(String ttname) { | |
| 51 | + this.ttname = ttname; | |
| 52 | + } | |
| 53 | + | |
| 54 | + public Long getAllbc() { | |
| 55 | + return allbc; | |
| 56 | + } | |
| 57 | + | |
| 58 | + public void setAllbc(Long allbc) { | |
| 59 | + this.allbc = allbc; | |
| 60 | + } | |
| 61 | + | |
| 62 | + public Long getInbc() { | |
| 63 | + return inbc; | |
| 64 | + } | |
| 65 | + | |
| 66 | + public void setInbc(Long inbc) { | |
| 67 | + this.inbc = inbc; | |
| 68 | + } | |
| 69 | + | |
| 70 | + public Long getOutbc() { | |
| 71 | + return outbc; | |
| 72 | + } | |
| 73 | + | |
| 74 | + public void setOutbc(Long outbc) { | |
| 75 | + this.outbc = outbc; | |
| 76 | + } | |
| 77 | + | |
| 78 | + public Long getYybc() { | |
| 79 | + return yybc; | |
| 80 | + } | |
| 81 | + | |
| 82 | + public void setYybc(Long yybc) { | |
| 83 | + this.yybc = yybc; | |
| 84 | + } | |
| 85 | + | |
| 86 | + public Long getErrorbc() { | |
| 87 | + return errorbc; | |
| 88 | + } | |
| 89 | + | |
| 90 | + public void setErrorbc(Long errorbc) { | |
| 91 | + this.errorbc = errorbc; | |
| 92 | + } | |
| 93 | + } | |
| 94 | +} | ... | ... |
src/main/resources/datatools/ktrs/employeesConfigDataInput.ktr
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<transformation> | |
| 3 | - <info> | |
| 4 | - <name>人员配置信息导入</name> | |
| 5 | - <description>人员配置信息导入</description> | |
| 6 | - <extended_description>人员配置信息</extended_description> | |
| 7 | - <trans_version/> | |
| 8 | - <trans_type>Normal</trans_type> | |
| 9 | - <trans_status>0</trans_status> | |
| 10 | - <directory>/</directory> | |
| 11 | - <parameters> | |
| 12 | - <parameter> | |
| 13 | - <name>erroroutputdir</name> | |
| 14 | - <default_value/> | |
| 15 | - <description>ktr step配置的错误输出目录</description> | |
| 16 | - </parameter> | |
| 17 | - <parameter> | |
| 18 | - <name>filepath</name> | |
| 19 | - <default_value/> | |
| 20 | - <description>待处理导入的excel文件</description> | |
| 21 | - </parameter> | |
| 22 | - </parameters> | |
| 23 | - <log> | |
| 24 | -<trans-log-table><connection/> | |
| 25 | -<schema/> | |
| 26 | -<table/> | |
| 27 | -<size_limit_lines/> | |
| 28 | -<interval/> | |
| 29 | -<timeout_days/> | |
| 30 | -<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> | |
| 31 | -<perf-log-table><connection/> | |
| 32 | -<schema/> | |
| 33 | -<table/> | |
| 34 | -<interval/> | |
| 35 | -<timeout_days/> | |
| 36 | -<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> | |
| 37 | -<channel-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>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> | |
| 42 | -<step-log-table><connection/> | |
| 43 | -<schema/> | |
| 44 | -<table/> | |
| 45 | -<timeout_days/> | |
| 46 | -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>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> | |
| 47 | -<metrics-log-table><connection/> | |
| 48 | -<schema/> | |
| 49 | -<table/> | |
| 50 | -<timeout_days/> | |
| 51 | -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>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> | |
| 52 | - </log> | |
| 53 | - <maxdate> | |
| 54 | - <connection/> | |
| 55 | - <table/> | |
| 56 | - <field/> | |
| 57 | - <offset>0.0</offset> | |
| 58 | - <maxdiff>0.0</maxdiff> | |
| 59 | - </maxdate> | |
| 60 | - <size_rowset>10000</size_rowset> | |
| 61 | - <sleep_time_empty>50</sleep_time_empty> | |
| 62 | - <sleep_time_full>50</sleep_time_full> | |
| 63 | - <unique_connections>N</unique_connections> | |
| 64 | - <feedback_shown>Y</feedback_shown> | |
| 65 | - <feedback_size>50000</feedback_size> | |
| 66 | - <using_thread_priorities>Y</using_thread_priorities> | |
| 67 | - <shared_objects_file/> | |
| 68 | - <capture_step_performance>N</capture_step_performance> | |
| 69 | - <step_performance_capturing_delay>1000</step_performance_capturing_delay> | |
| 70 | - <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit> | |
| 71 | - <dependencies> | |
| 72 | - </dependencies> | |
| 73 | - <partitionschemas> | |
| 74 | - </partitionschemas> | |
| 75 | - <slaveservers> | |
| 76 | - </slaveservers> | |
| 77 | - <clusterschemas> | |
| 78 | - </clusterschemas> | |
| 79 | - <created_user>-</created_user> | |
| 80 | - <created_date>2016/06/29 15:12:27.273</created_date> | |
| 81 | - <modified_user>-</modified_user> | |
| 82 | - <modified_date>2016/06/29 15:12:27.273</modified_date> | |
| 83 | - <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA=</key_for_session_key> | |
| 84 | - <is_key_private>N</is_key_private> | |
| 85 | - </info> | |
| 86 | - <notepads> | |
| 87 | - <notepad> | |
| 88 | - <note>这里有些问题
在window2012的环境下,
MySql数据库查询中如果返回中文内容的字段,这个内容乱码
解决办法,就是数据库查询全部缓存,就不乱码
linux环境下没问题</note> | |
| 89 | - <xloc>101</xloc> | |
| 90 | - <yloc>264</yloc> | |
| 91 | - <width>333</width> | |
| 92 | - <heigth>90</heigth> | |
| 93 | - <fontname>YaHei Consolas Hybrid</fontname> | |
| 94 | - <fontsize>12</fontsize> | |
| 95 | - <fontbold>N</fontbold> | |
| 96 | - <fontitalic>N</fontitalic> | |
| 97 | - <fontcolorred>0</fontcolorred> | |
| 98 | - <fontcolorgreen>0</fontcolorgreen> | |
| 99 | - <fontcolorblue>0</fontcolorblue> | |
| 100 | - <backgroundcolorred>255</backgroundcolorred> | |
| 101 | - <backgroundcolorgreen>205</backgroundcolorgreen> | |
| 102 | - <backgroundcolorblue>112</backgroundcolorblue> | |
| 103 | - <bordercolorred>100</bordercolorred> | |
| 104 | - <bordercolorgreen>100</bordercolorgreen> | |
| 105 | - <bordercolorblue>100</bordercolorblue> | |
| 106 | - <drawshadow>Y</drawshadow> | |
| 107 | - </notepad> | |
| 108 | - </notepads> | |
| 109 | - <connection> | |
| 110 | - <name>bus_control_variable</name> | |
| 111 | - <server>${v_db_ip}</server> | |
| 112 | - <type>MYSQL</type> | |
| 113 | - <access>Native</access> | |
| 114 | - <database>${v_db_dname}</database> | |
| 115 | - <port>3306</port> | |
| 116 | - <username>${v_db_uname}</username> | |
| 117 | - <password>${v_db_pwd}</password> | |
| 118 | - <servername/> | |
| 119 | - <data_tablespace/> | |
| 120 | - <index_tablespace/> | |
| 121 | - <attributes> | |
| 122 | - <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute> | |
| 123 | - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 124 | - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 125 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 126 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 127 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 128 | - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 129 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 130 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 131 | - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute> | |
| 132 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 133 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 134 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 135 | - </attributes> | |
| 136 | - </connection> | |
| 137 | - <connection> | |
| 138 | - <name>bus_control_公司_201</name> | |
| 139 | - <server>localhost</server> | |
| 140 | - <type>MYSQL</type> | |
| 141 | - <access>Native</access> | |
| 142 | - <database>control</database> | |
| 143 | - <port>3306</port> | |
| 144 | - <username>root</username> | |
| 145 | - <password>Encrypted </password> | |
| 146 | - <servername/> | |
| 147 | - <data_tablespace/> | |
| 148 | - <index_tablespace/> | |
| 149 | - <attributes> | |
| 150 | - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 151 | - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 152 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 153 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 154 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 155 | - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 156 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 157 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 158 | - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute> | |
| 159 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 160 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 161 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 162 | - </attributes> | |
| 163 | - </connection> | |
| 164 | - <connection> | |
| 165 | - <name>bus_control_本机</name> | |
| 166 | - <server>localhost</server> | |
| 167 | - <type>MYSQL</type> | |
| 168 | - <access>Native</access> | |
| 169 | - <database>control</database> | |
| 170 | - <port>3306</port> | |
| 171 | - <username>root</username> | |
| 172 | - <password>Encrypted </password> | |
| 173 | - <servername/> | |
| 174 | - <data_tablespace/> | |
| 175 | - <index_tablespace/> | |
| 176 | - <attributes> | |
| 177 | - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 178 | - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 179 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 180 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 181 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 182 | - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 183 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 184 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 185 | - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 186 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 187 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 188 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 189 | - </attributes> | |
| 190 | - </connection> | |
| 191 | - <connection> | |
| 192 | - <name>xlab_mysql_youle</name> | |
| 193 | - <server>101.231.124.8</server> | |
| 194 | - <type>MYSQL</type> | |
| 195 | - <access>Native</access> | |
| 196 | - <database>xlab_youle</database> | |
| 197 | - <port>45687</port> | |
| 198 | - <username>xlab-youle</username> | |
| 199 | - <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password> | |
| 200 | - <servername/> | |
| 201 | - <data_tablespace/> | |
| 202 | - <index_tablespace/> | |
| 203 | - <attributes> | |
| 204 | - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 205 | - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 206 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 207 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 208 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 209 | - <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute> | |
| 210 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 211 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 212 | - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 213 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 214 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 215 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 216 | - </attributes> | |
| 217 | - </connection> | |
| 218 | - <connection> | |
| 219 | - <name>xlab_mysql_youle(本机)</name> | |
| 220 | - <server>localhost</server> | |
| 221 | - <type>MYSQL</type> | |
| 222 | - <access>Native</access> | |
| 223 | - <database>xlab_youle</database> | |
| 224 | - <port>3306</port> | |
| 225 | - <username>root</username> | |
| 226 | - <password>Encrypted </password> | |
| 227 | - <servername/> | |
| 228 | - <data_tablespace/> | |
| 229 | - <index_tablespace/> | |
| 230 | - <attributes> | |
| 231 | - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 232 | - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 233 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 234 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 235 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 236 | - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 237 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 238 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 239 | - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 240 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 241 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 242 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 243 | - </attributes> | |
| 244 | - </connection> | |
| 245 | - <connection> | |
| 246 | - <name>xlab_youle</name> | |
| 247 | - <server/> | |
| 248 | - <type>MYSQL</type> | |
| 249 | - <access>JNDI</access> | |
| 250 | - <database>xlab_youle</database> | |
| 251 | - <port>1521</port> | |
| 252 | - <username/> | |
| 253 | - <password>Encrypted </password> | |
| 254 | - <servername/> | |
| 255 | - <data_tablespace/> | |
| 256 | - <index_tablespace/> | |
| 257 | - <attributes> | |
| 258 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 259 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 260 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 261 | - <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | |
| 262 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 263 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 264 | - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 265 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 266 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 267 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 268 | - </attributes> | |
| 269 | - </connection> | |
| 270 | - <order> | |
| 271 | - <hop> <from>插入/更新bsth_c_s_ecinfo</from><to>错误输出</to><enabled>Y</enabled> </hop> | |
| 272 | - <hop> <from>获取变量</from><to>原始系统导出的Excel输入</to><enabled>Y</enabled> </hop> | |
| 273 | - <hop> <from>原始系统导出的Excel输入</from><to>启用被数据flag</to><enabled>Y</enabled> </hop> | |
| 274 | - <hop> <from>启用被数据flag</from><to>线路id查询</to><enabled>Y</enabled> </hop> | |
| 275 | - <hop> <from>线路id查询</from><to>过滤线路id为空记录</to><enabled>Y</enabled> </hop> | |
| 276 | - <hop> <from>驾驶员id查找</from><to>过滤驾驶员id为空记录</to><enabled>Y</enabled> </hop> | |
| 277 | - <hop> <from>过滤驾驶员id为空记录</from><to>售票员id查找</to><enabled>Y</enabled> </hop> | |
| 278 | - <hop> <from>售票员id查找</from><to>插入/更新bsth_c_s_ecinfo</to><enabled>Y</enabled> </hop> | |
| 279 | - <hop> <from>过滤线路id为空记录</from><to>工号数据处理</to><enabled>Y</enabled> </hop> | |
| 280 | - <hop> <from>工号数据处理</from><to>驾驶员id查找</to><enabled>Y</enabled> </hop> | |
| 281 | - </order> | |
| 282 | - <step> | |
| 283 | - <name>原始系统导出的Excel输入</name> | |
| 284 | - <type>ExcelInput</type> | |
| 285 | - <description/> | |
| 286 | - <distribute>Y</distribute> | |
| 287 | - <custom_distribution/> | |
| 288 | - <copies>1</copies> | |
| 289 | - <partitioning> | |
| 290 | - <method>none</method> | |
| 291 | - <schema_name/> | |
| 292 | - </partitioning> | |
| 293 | - <header>Y</header> | |
| 294 | - <noempty>Y</noempty> | |
| 295 | - <stoponempty>N</stoponempty> | |
| 296 | - <filefield/> | |
| 297 | - <sheetfield/> | |
| 298 | - <sheetrownumfield/> | |
| 299 | - <rownumfield/> | |
| 300 | - <sheetfield/> | |
| 301 | - <filefield/> | |
| 302 | - <limit>0</limit> | |
| 303 | - <encoding/> | |
| 304 | - <add_to_result_filenames>Y</add_to_result_filenames> | |
| 305 | - <accept_filenames>Y</accept_filenames> | |
| 306 | - <accept_field>filepath_</accept_field> | |
| 307 | - <accept_stepname>获取变量</accept_stepname> | |
| 308 | - <file> | |
| 309 | - <name/> | |
| 310 | - <filemask/> | |
| 311 | - <exclude_filemask/> | |
| 312 | - <file_required>N</file_required> | |
| 313 | - <include_subfolders>N</include_subfolders> | |
| 314 | - </file> | |
| 315 | - <fields> | |
| 316 | - <field> | |
| 317 | - <name>线路</name> | |
| 318 | - <type>String</type> | |
| 319 | - <length>-1</length> | |
| 320 | - <precision>-1</precision> | |
| 321 | - <trim_type>none</trim_type> | |
| 322 | - <repeat>N</repeat> | |
| 323 | - <format/> | |
| 324 | - <currency/> | |
| 325 | - <decimal/> | |
| 326 | - <group/> | |
| 327 | - </field> | |
| 328 | - <field> | |
| 329 | - <name>搭班编码</name> | |
| 330 | - <type>String</type> | |
| 331 | - <length>-1</length> | |
| 332 | - <precision>-1</precision> | |
| 333 | - <trim_type>none</trim_type> | |
| 334 | - <repeat>N</repeat> | |
| 335 | - <format>#</format> | |
| 336 | - <currency/> | |
| 337 | - <decimal/> | |
| 338 | - <group/> | |
| 339 | - </field> | |
| 340 | - <field> | |
| 341 | - <name>驾驶员工号</name> | |
| 342 | - <type>String</type> | |
| 343 | - <length>-1</length> | |
| 344 | - <precision>-1</precision> | |
| 345 | - <trim_type>none</trim_type> | |
| 346 | - <repeat>N</repeat> | |
| 347 | - <format>#</format> | |
| 348 | - <currency/> | |
| 349 | - <decimal/> | |
| 350 | - <group/> | |
| 351 | - </field> | |
| 352 | - <field> | |
| 353 | - <name>驾驶员</name> | |
| 354 | - <type>String</type> | |
| 355 | - <length>-1</length> | |
| 356 | - <precision>-1</precision> | |
| 357 | - <trim_type>none</trim_type> | |
| 358 | - <repeat>N</repeat> | |
| 359 | - <format/> | |
| 360 | - <currency/> | |
| 361 | - <decimal/> | |
| 362 | - <group/> | |
| 363 | - </field> | |
| 364 | - <field> | |
| 365 | - <name>售票员工号</name> | |
| 366 | - <type>String</type> | |
| 367 | - <length>-1</length> | |
| 368 | - <precision>-1</precision> | |
| 369 | - <trim_type>none</trim_type> | |
| 370 | - <repeat>N</repeat> | |
| 371 | - <format>#</format> | |
| 372 | - <currency/> | |
| 373 | - <decimal/> | |
| 374 | - <group/> | |
| 375 | - </field> | |
| 376 | - <field> | |
| 377 | - <name>售票员</name> | |
| 378 | - <type>String</type> | |
| 379 | - <length>-1</length> | |
| 380 | - <precision>-1</precision> | |
| 381 | - <trim_type>none</trim_type> | |
| 382 | - <repeat>N</repeat> | |
| 383 | - <format/> | |
| 384 | - <currency/> | |
| 385 | - <decimal/> | |
| 386 | - <group/> | |
| 387 | - </field> | |
| 388 | - </fields> | |
| 389 | - <sheets> | |
| 390 | - <sheet> | |
| 391 | - <name>工作表1</name> | |
| 392 | - <startrow>0</startrow> | |
| 393 | - <startcol>0</startcol> | |
| 394 | - </sheet> | |
| 395 | - </sheets> | |
| 396 | - <strict_types>N</strict_types> | |
| 397 | - <error_ignored>N</error_ignored> | |
| 398 | - <error_line_skipped>N</error_line_skipped> | |
| 399 | - <bad_line_files_destination_directory/> | |
| 400 | - <bad_line_files_extension>warning</bad_line_files_extension> | |
| 401 | - <error_line_files_destination_directory/> | |
| 402 | - <error_line_files_extension>error</error_line_files_extension> | |
| 403 | - <line_number_files_destination_directory/> | |
| 404 | - <line_number_files_extension>line</line_number_files_extension> | |
| 405 | - <shortFileFieldName/> | |
| 406 | - <pathFieldName/> | |
| 407 | - <hiddenFieldName/> | |
| 408 | - <lastModificationTimeFieldName/> | |
| 409 | - <uriNameFieldName/> | |
| 410 | - <rootUriNameFieldName/> | |
| 411 | - <extensionFieldName/> | |
| 412 | - <sizeFieldName/> | |
| 413 | - <spreadsheet_type>JXL</spreadsheet_type> | |
| 414 | - <cluster_schema/> | |
| 415 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 416 | - <xloc>93</xloc> | |
| 417 | - <yloc>51</yloc> | |
| 418 | - <draw>Y</draw> | |
| 419 | - </GUI> | |
| 420 | - </step> | |
| 421 | - | |
| 422 | - <step> | |
| 423 | - <name>启用被数据flag</name> | |
| 424 | - <type>Constant</type> | |
| 425 | - <description/> | |
| 426 | - <distribute>Y</distribute> | |
| 427 | - <custom_distribution/> | |
| 428 | - <copies>1</copies> | |
| 429 | - <partitioning> | |
| 430 | - <method>none</method> | |
| 431 | - <schema_name/> | |
| 432 | - </partitioning> | |
| 433 | - <fields> | |
| 434 | - <field> | |
| 435 | - <name>isCancel</name> | |
| 436 | - <type>Integer</type> | |
| 437 | - <format/> | |
| 438 | - <currency/> | |
| 439 | - <decimal/> | |
| 440 | - <group/> | |
| 441 | - <nullif>0</nullif> | |
| 442 | - <length>-1</length> | |
| 443 | - <precision>-1</precision> | |
| 444 | - <set_empty_string>N</set_empty_string> | |
| 445 | - </field> | |
| 446 | - </fields> | |
| 447 | - <cluster_schema/> | |
| 448 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 449 | - <xloc>225</xloc> | |
| 450 | - <yloc>53</yloc> | |
| 451 | - <draw>Y</draw> | |
| 452 | - </GUI> | |
| 453 | - </step> | |
| 454 | - | |
| 455 | - <step> | |
| 456 | - <name>售票员id查找</name> | |
| 457 | - <type>DBJoin</type> | |
| 458 | - <description/> | |
| 459 | - <distribute>Y</distribute> | |
| 460 | - <custom_distribution/> | |
| 461 | - <copies>1</copies> | |
| 462 | - <partitioning> | |
| 463 | - <method>none</method> | |
| 464 | - <schema_name/> | |
| 465 | - </partitioning> | |
| 466 | - <connection>bus_control_variable</connection> | |
| 467 | - <rowlimit>1</rowlimit> | |
| 468 | - <sql>select id as sid from bsth_c_personnel
where job_code like ? and personnel_name = ?</sql> | |
| 469 | - <outer_join>Y</outer_join> | |
| 470 | - <replace_vars>N</replace_vars> | |
| 471 | - <parameter> | |
| 472 | - <field> | |
| 473 | - <name>sgh_temp</name> | |
| 474 | - <type>String</type> | |
| 475 | - </field> | |
| 476 | - <field> | |
| 477 | - <name>售票员</name> | |
| 478 | - <type>String</type> | |
| 479 | - </field> | |
| 480 | - </parameter> | |
| 481 | - <cluster_schema/> | |
| 482 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 483 | - <xloc>830</xloc> | |
| 484 | - <yloc>45</yloc> | |
| 485 | - <draw>Y</draw> | |
| 486 | - </GUI> | |
| 487 | - </step> | |
| 488 | - | |
| 489 | - <step> | |
| 490 | - <name>插入/更新bsth_c_s_ecinfo</name> | |
| 491 | - <type>InsertUpdate</type> | |
| 492 | - <description/> | |
| 493 | - <distribute>Y</distribute> | |
| 494 | - <custom_distribution/> | |
| 495 | - <copies>1</copies> | |
| 496 | - <partitioning> | |
| 497 | - <method>none</method> | |
| 498 | - <schema_name/> | |
| 499 | - </partitioning> | |
| 500 | - <connection>bus_control_variable</connection> | |
| 501 | - <commit>100</commit> | |
| 502 | - <update_bypassed>N</update_bypassed> | |
| 503 | - <lookup> | |
| 504 | - <schema/> | |
| 505 | - <table>bsth_c_s_ecinfo</table> | |
| 506 | - <key> | |
| 507 | - <name>xlid</name> | |
| 508 | - <field>xl</field> | |
| 509 | - <condition>=</condition> | |
| 510 | - <name2/> | |
| 511 | - </key> | |
| 512 | - <key> | |
| 513 | - <name>搭班编码</name> | |
| 514 | - <field>dbbm</field> | |
| 515 | - <condition>=</condition> | |
| 516 | - <name2/> | |
| 517 | - </key> | |
| 518 | - <key> | |
| 519 | - <name>isCancel</name> | |
| 520 | - <field>is_cancel</field> | |
| 521 | - <condition>=</condition> | |
| 522 | - <name2/> | |
| 523 | - </key> | |
| 524 | - <value> | |
| 525 | - <name>xl</name> | |
| 526 | - <rename>xlid</rename> | |
| 527 | - <update>N</update> | |
| 528 | - </value> | |
| 529 | - <value> | |
| 530 | - <name>dbbm</name> | |
| 531 | - <rename>搭班编码</rename> | |
| 532 | - <update>N</update> | |
| 533 | - </value> | |
| 534 | - <value> | |
| 535 | - <name>jsy</name> | |
| 536 | - <rename>jid</rename> | |
| 537 | - <update>N</update> | |
| 538 | - </value> | |
| 539 | - <value> | |
| 540 | - <name>spy</name> | |
| 541 | - <rename>sid</rename> | |
| 542 | - <update>N</update> | |
| 543 | - </value> | |
| 544 | - <value> | |
| 545 | - <name>is_cancel</name> | |
| 546 | - <rename>isCancel</rename> | |
| 547 | - <update>N</update> | |
| 548 | - </value> | |
| 549 | - </lookup> | |
| 550 | - <cluster_schema/> | |
| 551 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 552 | - <xloc>833</xloc> | |
| 553 | - <yloc>198</yloc> | |
| 554 | - <draw>Y</draw> | |
| 555 | - </GUI> | |
| 556 | - </step> | |
| 557 | - | |
| 558 | - <step> | |
| 559 | - <name>线路id查询</name> | |
| 560 | - <type>DBLookup</type> | |
| 561 | - <description/> | |
| 562 | - <distribute>Y</distribute> | |
| 563 | - <custom_distribution/> | |
| 564 | - <copies>1</copies> | |
| 565 | - <partitioning> | |
| 566 | - <method>none</method> | |
| 567 | - <schema_name/> | |
| 568 | - </partitioning> | |
| 569 | - <connection>bus_control_variable</connection> | |
| 570 | - <cache>Y</cache> | |
| 571 | - <cache_load_all>Y</cache_load_all> | |
| 572 | - <cache_size>0</cache_size> | |
| 573 | - <lookup> | |
| 574 | - <schema/> | |
| 575 | - <table>bsth_c_line</table> | |
| 576 | - <orderby/> | |
| 577 | - <fail_on_multiple>N</fail_on_multiple> | |
| 578 | - <eat_row_on_failure>N</eat_row_on_failure> | |
| 579 | - <key> | |
| 580 | - <name>线路</name> | |
| 581 | - <field>name</field> | |
| 582 | - <condition>=</condition> | |
| 583 | - <name2/> | |
| 584 | - </key> | |
| 585 | - <key> | |
| 586 | - <name>isCancel</name> | |
| 587 | - <field>destroy</field> | |
| 588 | - <condition>=</condition> | |
| 589 | - <name2/> | |
| 590 | - </key> | |
| 591 | - <value> | |
| 592 | - <name>id</name> | |
| 593 | - <rename>xlid</rename> | |
| 594 | - <default/> | |
| 595 | - <type>Integer</type> | |
| 596 | - </value> | |
| 597 | - </lookup> | |
| 598 | - <cluster_schema/> | |
| 599 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 600 | - <xloc>397</xloc> | |
| 601 | - <yloc>144</yloc> | |
| 602 | - <draw>Y</draw> | |
| 603 | - </GUI> | |
| 604 | - </step> | |
| 605 | - | |
| 606 | - <step> | |
| 607 | - <name>获取变量</name> | |
| 608 | - <type>GetVariable</type> | |
| 609 | - <description/> | |
| 610 | - <distribute>Y</distribute> | |
| 611 | - <custom_distribution/> | |
| 612 | - <copies>1</copies> | |
| 613 | - <partitioning> | |
| 614 | - <method>none</method> | |
| 615 | - <schema_name/> | |
| 616 | - </partitioning> | |
| 617 | - <fields> | |
| 618 | - <field> | |
| 619 | - <name>filepath_</name> | |
| 620 | - <variable>${filepath}</variable> | |
| 621 | - <type>String</type> | |
| 622 | - <format/> | |
| 623 | - <currency/> | |
| 624 | - <decimal/> | |
| 625 | - <group/> | |
| 626 | - <length>-1</length> | |
| 627 | - <precision>-1</precision> | |
| 628 | - <trim_type>none</trim_type> | |
| 629 | - </field> | |
| 630 | - <field> | |
| 631 | - <name>erroroutputdir_</name> | |
| 632 | - <variable>${erroroutputdir}</variable> | |
| 633 | - <type>String</type> | |
| 634 | - <format/> | |
| 635 | - <currency/> | |
| 636 | - <decimal/> | |
| 637 | - <group/> | |
| 638 | - <length>-1</length> | |
| 639 | - <precision>-1</precision> | |
| 640 | - <trim_type>none</trim_type> | |
| 641 | - </field> | |
| 642 | - </fields> | |
| 643 | - <cluster_schema/> | |
| 644 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 645 | - <xloc>94</xloc> | |
| 646 | - <yloc>178</yloc> | |
| 647 | - <draw>Y</draw> | |
| 648 | - </GUI> | |
| 649 | - </step> | |
| 650 | - | |
| 651 | - <step> | |
| 652 | - <name>过滤线路id为空记录</name> | |
| 653 | - <type>FilterRows</type> | |
| 654 | - <description/> | |
| 655 | - <distribute>Y</distribute> | |
| 656 | - <custom_distribution/> | |
| 657 | - <copies>1</copies> | |
| 658 | - <partitioning> | |
| 659 | - <method>none</method> | |
| 660 | - <schema_name/> | |
| 661 | - </partitioning> | |
| 662 | -<send_true_to/> | |
| 663 | -<send_false_to/> | |
| 664 | - <compare> | |
| 665 | -<condition> | |
| 666 | - <negated>N</negated> | |
| 667 | - <leftvalue>xlid</leftvalue> | |
| 668 | - <function>IS NOT NULL</function> | |
| 669 | - <rightvalue/> | |
| 670 | - </condition> | |
| 671 | - </compare> | |
| 672 | - <cluster_schema/> | |
| 673 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 674 | - <xloc>395</xloc> | |
| 675 | - <yloc>49</yloc> | |
| 676 | - <draw>Y</draw> | |
| 677 | - </GUI> | |
| 678 | - </step> | |
| 679 | - | |
| 680 | - <step> | |
| 681 | - <name>过滤驾驶员id为空记录</name> | |
| 682 | - <type>FilterRows</type> | |
| 683 | - <description/> | |
| 684 | - <distribute>Y</distribute> | |
| 685 | - <custom_distribution/> | |
| 686 | - <copies>1</copies> | |
| 687 | - <partitioning> | |
| 688 | - <method>none</method> | |
| 689 | - <schema_name/> | |
| 690 | - </partitioning> | |
| 691 | -<send_true_to>售票员id查找</send_true_to> | |
| 692 | -<send_false_to/> | |
| 693 | - <compare> | |
| 694 | -<condition> | |
| 695 | - <negated>N</negated> | |
| 696 | - <leftvalue>jid</leftvalue> | |
| 697 | - <function>IS NOT NULL</function> | |
| 698 | - <rightvalue/> | |
| 699 | - </condition> | |
| 700 | - </compare> | |
| 701 | - <cluster_schema/> | |
| 702 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 703 | - <xloc>695</xloc> | |
| 704 | - <yloc>45</yloc> | |
| 705 | - <draw>Y</draw> | |
| 706 | - </GUI> | |
| 707 | - </step> | |
| 708 | - | |
| 709 | - <step> | |
| 710 | - <name>错误输出</name> | |
| 711 | - <type>ExcelOutput</type> | |
| 712 | - <description/> | |
| 713 | - <distribute>Y</distribute> | |
| 714 | - <custom_distribution/> | |
| 715 | - <copies>1</copies> | |
| 716 | - <partitioning> | |
| 717 | - <method>none</method> | |
| 718 | - <schema_name/> | |
| 719 | - </partitioning> | |
| 720 | - <header>Y</header> | |
| 721 | - <footer>N</footer> | |
| 722 | - <encoding>UTF-8</encoding> | |
| 723 | - <append>N</append> | |
| 724 | - <add_to_result_filenames>Y</add_to_result_filenames> | |
| 725 | - <file> | |
| 726 | - <name>${erroroutputdir}/人员配置_错误</name> | |
| 727 | - <extention>xls</extention> | |
| 728 | - <do_not_open_newfile_init>N</do_not_open_newfile_init> | |
| 729 | - <create_parent_folder>N</create_parent_folder> | |
| 730 | - <split>N</split> | |
| 731 | - <add_date>N</add_date> | |
| 732 | - <add_time>N</add_time> | |
| 733 | - <SpecifyFormat>N</SpecifyFormat> | |
| 734 | - <date_time_format/> | |
| 735 | - <sheetname>Sheet1</sheetname> | |
| 736 | - <autosizecolums>N</autosizecolums> | |
| 737 | - <nullisblank>N</nullisblank> | |
| 738 | - <protect_sheet>N</protect_sheet> | |
| 739 | - <password>Encrypted </password> | |
| 740 | - <splitevery>0</splitevery> | |
| 741 | - <usetempfiles>N</usetempfiles> | |
| 742 | - <tempdirectory/> | |
| 743 | - </file> | |
| 744 | - <template> | |
| 745 | - <enabled>N</enabled> | |
| 746 | - <append>N</append> | |
| 747 | - <filename>template.xls</filename> | |
| 748 | - </template> | |
| 749 | - <fields> | |
| 750 | - <field> | |
| 751 | - <name>线路</name> | |
| 752 | - <type>String</type> | |
| 753 | - <format/> | |
| 754 | - </field> | |
| 755 | - <field> | |
| 756 | - <name>搭班编码</name> | |
| 757 | - <type>String</type> | |
| 758 | - <format/> | |
| 759 | - </field> | |
| 760 | - <field> | |
| 761 | - <name>驾驶员工号</name> | |
| 762 | - <type>String</type> | |
| 763 | - <format/> | |
| 764 | - </field> | |
| 765 | - <field> | |
| 766 | - <name>驾驶员</name> | |
| 767 | - <type>String</type> | |
| 768 | - <format/> | |
| 769 | - </field> | |
| 770 | - <field> | |
| 771 | - <name>售票员工号</name> | |
| 772 | - <type>String</type> | |
| 773 | - <format/> | |
| 774 | - </field> | |
| 775 | - <field> | |
| 776 | - <name>售票员</name> | |
| 777 | - <type>String</type> | |
| 778 | - <format/> | |
| 779 | - </field> | |
| 780 | - <field> | |
| 781 | - <name>isCancel</name> | |
| 782 | - <type>Integer</type> | |
| 783 | - <format/> | |
| 784 | - </field> | |
| 785 | - <field> | |
| 786 | - <name>xlid</name> | |
| 787 | - <type>Integer</type> | |
| 788 | - <format/> | |
| 789 | - </field> | |
| 790 | - <field> | |
| 791 | - <name>jid</name> | |
| 792 | - <type>Integer</type> | |
| 793 | - <format/> | |
| 794 | - </field> | |
| 795 | - <field> | |
| 796 | - <name>sid</name> | |
| 797 | - <type>Integer</type> | |
| 798 | - <format/> | |
| 799 | - </field> | |
| 800 | - <field> | |
| 801 | - <name>error_count</name> | |
| 802 | - <type>Integer</type> | |
| 803 | - <format/> | |
| 804 | - </field> | |
| 805 | - <field> | |
| 806 | - <name>error_desc</name> | |
| 807 | - <type>String</type> | |
| 808 | - <format/> | |
| 809 | - </field> | |
| 810 | - <field> | |
| 811 | - <name>error_column1</name> | |
| 812 | - <type>String</type> | |
| 813 | - <format/> | |
| 814 | - </field> | |
| 815 | - <field> | |
| 816 | - <name>error_column2</name> | |
| 817 | - <type>String</type> | |
| 818 | - <format/> | |
| 819 | - </field> | |
| 820 | - </fields> | |
| 821 | - <custom> | |
| 822 | - <header_font_name>arial</header_font_name> | |
| 823 | - <header_font_size>10</header_font_size> | |
| 824 | - <header_font_bold>N</header_font_bold> | |
| 825 | - <header_font_italic>N</header_font_italic> | |
| 826 | - <header_font_underline>no</header_font_underline> | |
| 827 | - <header_font_orientation>horizontal</header_font_orientation> | |
| 828 | - <header_font_color>black</header_font_color> | |
| 829 | - <header_background_color>none</header_background_color> | |
| 830 | - <header_row_height>255</header_row_height> | |
| 831 | - <header_alignment>left</header_alignment> | |
| 832 | - <header_image/> | |
| 833 | - <row_font_name>arial</row_font_name> | |
| 834 | - <row_font_size>10</row_font_size> | |
| 835 | - <row_font_color>black</row_font_color> | |
| 836 | - <row_background_color>none</row_background_color> | |
| 837 | - </custom> | |
| 838 | - <cluster_schema/> | |
| 839 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 840 | - <xloc>833</xloc> | |
| 841 | - <yloc>321</yloc> | |
| 842 | - <draw>Y</draw> | |
| 843 | - </GUI> | |
| 844 | - </step> | |
| 845 | - | |
| 846 | - <step> | |
| 847 | - <name>驾驶员id查找</name> | |
| 848 | - <type>DBJoin</type> | |
| 849 | - <description/> | |
| 850 | - <distribute>Y</distribute> | |
| 851 | - <custom_distribution/> | |
| 852 | - <copies>1</copies> | |
| 853 | - <partitioning> | |
| 854 | - <method>none</method> | |
| 855 | - <schema_name/> | |
| 856 | - </partitioning> | |
| 857 | - <connection>bus_control_variable</connection> | |
| 858 | - <rowlimit>1</rowlimit> | |
| 859 | - <sql>select id as jid from bsth_c_personnel
where job_code like ? and personnel_name = ?</sql> | |
| 860 | - <outer_join>Y</outer_join> | |
| 861 | - <replace_vars>N</replace_vars> | |
| 862 | - <parameter> | |
| 863 | - <field> | |
| 864 | - <name>jgh_temp</name> | |
| 865 | - <type>String</type> | |
| 866 | - </field> | |
| 867 | - <field> | |
| 868 | - <name>驾驶员</name> | |
| 869 | - <type>String</type> | |
| 870 | - </field> | |
| 871 | - </parameter> | |
| 872 | - <cluster_schema/> | |
| 873 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 874 | - <xloc>694</xloc> | |
| 875 | - <yloc>141</yloc> | |
| 876 | - <draw>Y</draw> | |
| 877 | - </GUI> | |
| 878 | - </step> | |
| 879 | - | |
| 880 | - <step> | |
| 881 | - <name>工号数据处理</name> | |
| 882 | - <type>ScriptValueMod</type> | |
| 883 | - <description/> | |
| 884 | - <distribute>Y</distribute> | |
| 885 | - <custom_distribution/> | |
| 886 | - <copies>1</copies> | |
| 887 | - <partitioning> | |
| 888 | - <method>none</method> | |
| 889 | - <schema_name/> | |
| 890 | - </partitioning> | |
| 891 | - <compatible>N</compatible> | |
| 892 | - <optimizationLevel>9</optimizationLevel> | |
| 893 | - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 894 | - <jsScript_name>Script 1</jsScript_name> | |
| 895 | - <jsScript_script>// 因为数据库中的数据工号可能带suffix,如55-12345678
// 所以之后的匹配使用like,则元数据需要加上% %符号

var jgh_temp;
var sgh_temp;

if (驾驶员工号) {
 jgh_temp = '%' + 驾驶员工号 + '%';
} else {
 jgh_temp = 驾驶员工号;
}

if (售票员工号) {
 sgh_temp = '%' + 售票员工号 + '%';
} else {
 sgh_temp = 售票员工号;
}</jsScript_script> | |
| 896 | - </jsScript> </jsScripts> <fields> <field> <name>jgh_temp</name> | |
| 897 | - <rename>jgh_temp</rename> | |
| 898 | - <type>String</type> | |
| 899 | - <length>-1</length> | |
| 900 | - <precision>-1</precision> | |
| 901 | - <replace>N</replace> | |
| 902 | - </field> <field> <name>sgh_temp</name> | |
| 903 | - <rename>sgh_temp</rename> | |
| 904 | - <type>String</type> | |
| 905 | - <length>-1</length> | |
| 906 | - <precision>-1</precision> | |
| 907 | - <replace>N</replace> | |
| 908 | - </field> </fields> <cluster_schema/> | |
| 909 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 910 | - <xloc>548</xloc> | |
| 911 | - <yloc>47</yloc> | |
| 912 | - <draw>Y</draw> | |
| 913 | - </GUI> | |
| 914 | - </step> | |
| 915 | - | |
| 916 | - <step_error_handling> | |
| 917 | - <error> | |
| 918 | - <source_step>插入/更新bsth_c_s_ecinfo</source_step> | |
| 919 | - <target_step>错误输出</target_step> | |
| 920 | - <is_enabled>Y</is_enabled> | |
| 921 | - <nr_valuename>error_count</nr_valuename> | |
| 922 | - <descriptions_valuename>error_desc</descriptions_valuename> | |
| 923 | - <fields_valuename>error_column1</fields_valuename> | |
| 924 | - <codes_valuename>error_column2</codes_valuename> | |
| 925 | - <max_errors/> | |
| 926 | - <max_pct_errors/> | |
| 927 | - <min_pct_rows/> | |
| 928 | - </error> | |
| 929 | - </step_error_handling> | |
| 930 | - <slave-step-copy-partition-distribution> | |
| 931 | -</slave-step-copy-partition-distribution> | |
| 932 | - <slave_transformation>N</slave_transformation> | |
| 933 | - | |
| 934 | -</transformation> | |
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | +<transformation> | |
| 3 | + <info> | |
| 4 | + <name>人员配置信息导入</name> | |
| 5 | + <description>人员配置信息导入</description> | |
| 6 | + <extended_description>人员配置信息</extended_description> | |
| 7 | + <trans_version/> | |
| 8 | + <trans_type>Normal</trans_type> | |
| 9 | + <trans_status>0</trans_status> | |
| 10 | + <directory>/</directory> | |
| 11 | + <parameters> | |
| 12 | + <parameter> | |
| 13 | + <name>erroroutputdir</name> | |
| 14 | + <default_value/> | |
| 15 | + <description>ktr step配置的错误输出目录</description> | |
| 16 | + </parameter> | |
| 17 | + <parameter> | |
| 18 | + <name>filepath</name> | |
| 19 | + <default_value/> | |
| 20 | + <description>待处理导入的excel文件</description> | |
| 21 | + </parameter> | |
| 22 | + </parameters> | |
| 23 | + <log> | |
| 24 | +<trans-log-table><connection/> | |
| 25 | +<schema/> | |
| 26 | +<table/> | |
| 27 | +<size_limit_lines/> | |
| 28 | +<interval/> | |
| 29 | +<timeout_days/> | |
| 30 | +<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> | |
| 31 | +<perf-log-table><connection/> | |
| 32 | +<schema/> | |
| 33 | +<table/> | |
| 34 | +<interval/> | |
| 35 | +<timeout_days/> | |
| 36 | +<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> | |
| 37 | +<channel-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>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> | |
| 42 | +<step-log-table><connection/> | |
| 43 | +<schema/> | |
| 44 | +<table/> | |
| 45 | +<timeout_days/> | |
| 46 | +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>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> | |
| 47 | +<metrics-log-table><connection/> | |
| 48 | +<schema/> | |
| 49 | +<table/> | |
| 50 | +<timeout_days/> | |
| 51 | +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>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> | |
| 52 | + </log> | |
| 53 | + <maxdate> | |
| 54 | + <connection/> | |
| 55 | + <table/> | |
| 56 | + <field/> | |
| 57 | + <offset>0.0</offset> | |
| 58 | + <maxdiff>0.0</maxdiff> | |
| 59 | + </maxdate> | |
| 60 | + <size_rowset>10000</size_rowset> | |
| 61 | + <sleep_time_empty>50</sleep_time_empty> | |
| 62 | + <sleep_time_full>50</sleep_time_full> | |
| 63 | + <unique_connections>N</unique_connections> | |
| 64 | + <feedback_shown>Y</feedback_shown> | |
| 65 | + <feedback_size>50000</feedback_size> | |
| 66 | + <using_thread_priorities>Y</using_thread_priorities> | |
| 67 | + <shared_objects_file/> | |
| 68 | + <capture_step_performance>N</capture_step_performance> | |
| 69 | + <step_performance_capturing_delay>1000</step_performance_capturing_delay> | |
| 70 | + <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit> | |
| 71 | + <dependencies> | |
| 72 | + </dependencies> | |
| 73 | + <partitionschemas> | |
| 74 | + </partitionschemas> | |
| 75 | + <slaveservers> | |
| 76 | + </slaveservers> | |
| 77 | + <clusterschemas> | |
| 78 | + </clusterschemas> | |
| 79 | + <created_user>-</created_user> | |
| 80 | + <created_date>2016/06/29 15:12:27.273</created_date> | |
| 81 | + <modified_user>-</modified_user> | |
| 82 | + <modified_date>2016/06/29 15:12:27.273</modified_date> | |
| 83 | + <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA=</key_for_session_key> | |
| 84 | + <is_key_private>N</is_key_private> | |
| 85 | + </info> | |
| 86 | + <notepads> | |
| 87 | + <notepad> | |
| 88 | + <note>这里有些问题
在window2012的环境下,
MySql数据库查询中如果返回中文内容的字段,这个内容乱码
解决办法,就是数据库查询全部缓存,就不乱码
linux环境下没问题</note> | |
| 89 | + <xloc>101</xloc> | |
| 90 | + <yloc>264</yloc> | |
| 91 | + <width>333</width> | |
| 92 | + <heigth>90</heigth> | |
| 93 | + <fontname>YaHei Consolas Hybrid</fontname> | |
| 94 | + <fontsize>12</fontsize> | |
| 95 | + <fontbold>N</fontbold> | |
| 96 | + <fontitalic>N</fontitalic> | |
| 97 | + <fontcolorred>0</fontcolorred> | |
| 98 | + <fontcolorgreen>0</fontcolorgreen> | |
| 99 | + <fontcolorblue>0</fontcolorblue> | |
| 100 | + <backgroundcolorred>255</backgroundcolorred> | |
| 101 | + <backgroundcolorgreen>205</backgroundcolorgreen> | |
| 102 | + <backgroundcolorblue>112</backgroundcolorblue> | |
| 103 | + <bordercolorred>100</bordercolorred> | |
| 104 | + <bordercolorgreen>100</bordercolorgreen> | |
| 105 | + <bordercolorblue>100</bordercolorblue> | |
| 106 | + <drawshadow>Y</drawshadow> | |
| 107 | + </notepad> | |
| 108 | + </notepads> | |
| 109 | + <connection> | |
| 110 | + <name>bus_control_variable</name> | |
| 111 | + <server>${v_db_ip}</server> | |
| 112 | + <type>MYSQL</type> | |
| 113 | + <access>Native</access> | |
| 114 | + <database>${v_db_dname}</database> | |
| 115 | + <port>3306</port> | |
| 116 | + <username>${v_db_uname}</username> | |
| 117 | + <password>${v_db_pwd}</password> | |
| 118 | + <servername/> | |
| 119 | + <data_tablespace/> | |
| 120 | + <index_tablespace/> | |
| 121 | + <attributes> | |
| 122 | + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute> | |
| 123 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 124 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 125 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 126 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 127 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 128 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 129 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 130 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 131 | + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute> | |
| 132 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 133 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 134 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 135 | + </attributes> | |
| 136 | + </connection> | |
| 137 | + <connection> | |
| 138 | + <name>bus_control_公司_201</name> | |
| 139 | + <server>localhost</server> | |
| 140 | + <type>MYSQL</type> | |
| 141 | + <access>Native</access> | |
| 142 | + <database>control</database> | |
| 143 | + <port>3306</port> | |
| 144 | + <username>root</username> | |
| 145 | + <password>Encrypted </password> | |
| 146 | + <servername/> | |
| 147 | + <data_tablespace/> | |
| 148 | + <index_tablespace/> | |
| 149 | + <attributes> | |
| 150 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 151 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 152 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 153 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 154 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 155 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 156 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 157 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 158 | + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute> | |
| 159 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 160 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 161 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 162 | + </attributes> | |
| 163 | + </connection> | |
| 164 | + <connection> | |
| 165 | + <name>bus_control_本机</name> | |
| 166 | + <server>localhost</server> | |
| 167 | + <type>MYSQL</type> | |
| 168 | + <access>Native</access> | |
| 169 | + <database>control</database> | |
| 170 | + <port>3306</port> | |
| 171 | + <username>root</username> | |
| 172 | + <password>Encrypted </password> | |
| 173 | + <servername/> | |
| 174 | + <data_tablespace/> | |
| 175 | + <index_tablespace/> | |
| 176 | + <attributes> | |
| 177 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 178 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 179 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 180 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 181 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 182 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 183 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 184 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 185 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 186 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 187 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 188 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 189 | + </attributes> | |
| 190 | + </connection> | |
| 191 | + <connection> | |
| 192 | + <name>xlab_mysql_youle</name> | |
| 193 | + <server>101.231.124.8</server> | |
| 194 | + <type>MYSQL</type> | |
| 195 | + <access>Native</access> | |
| 196 | + <database>xlab_youle</database> | |
| 197 | + <port>45687</port> | |
| 198 | + <username>xlab-youle</username> | |
| 199 | + <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password> | |
| 200 | + <servername/> | |
| 201 | + <data_tablespace/> | |
| 202 | + <index_tablespace/> | |
| 203 | + <attributes> | |
| 204 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 205 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 206 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 207 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 208 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 209 | + <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute> | |
| 210 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 211 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 212 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 213 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 214 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 215 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 216 | + </attributes> | |
| 217 | + </connection> | |
| 218 | + <connection> | |
| 219 | + <name>xlab_mysql_youle(本机)</name> | |
| 220 | + <server>localhost</server> | |
| 221 | + <type>MYSQL</type> | |
| 222 | + <access>Native</access> | |
| 223 | + <database>xlab_youle</database> | |
| 224 | + <port>3306</port> | |
| 225 | + <username>root</username> | |
| 226 | + <password>Encrypted </password> | |
| 227 | + <servername/> | |
| 228 | + <data_tablespace/> | |
| 229 | + <index_tablespace/> | |
| 230 | + <attributes> | |
| 231 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 232 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 233 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 234 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 235 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 236 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 237 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 238 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 239 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 240 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 241 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 242 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 243 | + </attributes> | |
| 244 | + </connection> | |
| 245 | + <connection> | |
| 246 | + <name>xlab_youle</name> | |
| 247 | + <server/> | |
| 248 | + <type>MYSQL</type> | |
| 249 | + <access>JNDI</access> | |
| 250 | + <database>xlab_youle</database> | |
| 251 | + <port>1521</port> | |
| 252 | + <username/> | |
| 253 | + <password>Encrypted </password> | |
| 254 | + <servername/> | |
| 255 | + <data_tablespace/> | |
| 256 | + <index_tablespace/> | |
| 257 | + <attributes> | |
| 258 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 259 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 260 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 261 | + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | |
| 262 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 263 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 264 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 265 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 266 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 267 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 268 | + </attributes> | |
| 269 | + </connection> | |
| 270 | + <order> | |
| 271 | + <hop> <from>插入/更新bsth_c_s_ecinfo</from><to>错误输出</to><enabled>Y</enabled> </hop> | |
| 272 | + <hop> <from>获取变量</from><to>原始系统导出的Excel输入</to><enabled>Y</enabled> </hop> | |
| 273 | + <hop> <from>原始系统导出的Excel输入</from><to>启用被数据flag</to><enabled>Y</enabled> </hop> | |
| 274 | + <hop> <from>启用被数据flag</from><to>线路id查询</to><enabled>Y</enabled> </hop> | |
| 275 | + <hop> <from>线路id查询</from><to>过滤线路id为空记录</to><enabled>Y</enabled> </hop> | |
| 276 | + <hop> <from>驾驶员id查找</from><to>过滤驾驶员id为空记录</to><enabled>Y</enabled> </hop> | |
| 277 | + <hop> <from>过滤驾驶员id为空记录</from><to>售票员id查找</to><enabled>Y</enabled> </hop> | |
| 278 | + <hop> <from>售票员id查找</from><to>插入/更新bsth_c_s_ecinfo</to><enabled>Y</enabled> </hop> | |
| 279 | + <hop> <from>过滤线路id为空记录</from><to>工号数据处理</to><enabled>Y</enabled> </hop> | |
| 280 | + <hop> <from>工号数据处理</from><to>驾驶员id查找</to><enabled>Y</enabled> </hop> | |
| 281 | + </order> | |
| 282 | + <step> | |
| 283 | + <name>原始系统导出的Excel输入</name> | |
| 284 | + <type>ExcelInput</type> | |
| 285 | + <description/> | |
| 286 | + <distribute>Y</distribute> | |
| 287 | + <custom_distribution/> | |
| 288 | + <copies>1</copies> | |
| 289 | + <partitioning> | |
| 290 | + <method>none</method> | |
| 291 | + <schema_name/> | |
| 292 | + </partitioning> | |
| 293 | + <header>Y</header> | |
| 294 | + <noempty>Y</noempty> | |
| 295 | + <stoponempty>N</stoponempty> | |
| 296 | + <filefield/> | |
| 297 | + <sheetfield/> | |
| 298 | + <sheetrownumfield/> | |
| 299 | + <rownumfield/> | |
| 300 | + <sheetfield/> | |
| 301 | + <filefield/> | |
| 302 | + <limit>0</limit> | |
| 303 | + <encoding/> | |
| 304 | + <add_to_result_filenames>Y</add_to_result_filenames> | |
| 305 | + <accept_filenames>Y</accept_filenames> | |
| 306 | + <accept_field>filepath_</accept_field> | |
| 307 | + <accept_stepname>获取变量</accept_stepname> | |
| 308 | + <file> | |
| 309 | + <name/> | |
| 310 | + <filemask/> | |
| 311 | + <exclude_filemask/> | |
| 312 | + <file_required>N</file_required> | |
| 313 | + <include_subfolders>N</include_subfolders> | |
| 314 | + </file> | |
| 315 | + <fields> | |
| 316 | + <field> | |
| 317 | + <name>线路</name> | |
| 318 | + <type>String</type> | |
| 319 | + <length>-1</length> | |
| 320 | + <precision>-1</precision> | |
| 321 | + <trim_type>none</trim_type> | |
| 322 | + <repeat>N</repeat> | |
| 323 | + <format/> | |
| 324 | + <currency/> | |
| 325 | + <decimal/> | |
| 326 | + <group/> | |
| 327 | + </field> | |
| 328 | + <field> | |
| 329 | + <name>搭班编码</name> | |
| 330 | + <type>String</type> | |
| 331 | + <length>-1</length> | |
| 332 | + <precision>-1</precision> | |
| 333 | + <trim_type>none</trim_type> | |
| 334 | + <repeat>N</repeat> | |
| 335 | + <format>#</format> | |
| 336 | + <currency/> | |
| 337 | + <decimal/> | |
| 338 | + <group/> | |
| 339 | + </field> | |
| 340 | + <field> | |
| 341 | + <name>驾驶员工号</name> | |
| 342 | + <type>String</type> | |
| 343 | + <length>-1</length> | |
| 344 | + <precision>-1</precision> | |
| 345 | + <trim_type>none</trim_type> | |
| 346 | + <repeat>N</repeat> | |
| 347 | + <format>#</format> | |
| 348 | + <currency/> | |
| 349 | + <decimal/> | |
| 350 | + <group/> | |
| 351 | + </field> | |
| 352 | + <field> | |
| 353 | + <name>驾驶员</name> | |
| 354 | + <type>String</type> | |
| 355 | + <length>-1</length> | |
| 356 | + <precision>-1</precision> | |
| 357 | + <trim_type>none</trim_type> | |
| 358 | + <repeat>N</repeat> | |
| 359 | + <format/> | |
| 360 | + <currency/> | |
| 361 | + <decimal/> | |
| 362 | + <group/> | |
| 363 | + </field> | |
| 364 | + <field> | |
| 365 | + <name>售票员工号</name> | |
| 366 | + <type>String</type> | |
| 367 | + <length>-1</length> | |
| 368 | + <precision>-1</precision> | |
| 369 | + <trim_type>none</trim_type> | |
| 370 | + <repeat>N</repeat> | |
| 371 | + <format>#</format> | |
| 372 | + <currency/> | |
| 373 | + <decimal/> | |
| 374 | + <group/> | |
| 375 | + </field> | |
| 376 | + <field> | |
| 377 | + <name>售票员</name> | |
| 378 | + <type>String</type> | |
| 379 | + <length>-1</length> | |
| 380 | + <precision>-1</precision> | |
| 381 | + <trim_type>none</trim_type> | |
| 382 | + <repeat>N</repeat> | |
| 383 | + <format/> | |
| 384 | + <currency/> | |
| 385 | + <decimal/> | |
| 386 | + <group/> | |
| 387 | + </field> | |
| 388 | + </fields> | |
| 389 | + <sheets> | |
| 390 | + <sheet> | |
| 391 | + <name>工作表1</name> | |
| 392 | + <startrow>0</startrow> | |
| 393 | + <startcol>0</startcol> | |
| 394 | + </sheet> | |
| 395 | + </sheets> | |
| 396 | + <strict_types>N</strict_types> | |
| 397 | + <error_ignored>N</error_ignored> | |
| 398 | + <error_line_skipped>N</error_line_skipped> | |
| 399 | + <bad_line_files_destination_directory/> | |
| 400 | + <bad_line_files_extension>warning</bad_line_files_extension> | |
| 401 | + <error_line_files_destination_directory/> | |
| 402 | + <error_line_files_extension>error</error_line_files_extension> | |
| 403 | + <line_number_files_destination_directory/> | |
| 404 | + <line_number_files_extension>line</line_number_files_extension> | |
| 405 | + <shortFileFieldName/> | |
| 406 | + <pathFieldName/> | |
| 407 | + <hiddenFieldName/> | |
| 408 | + <lastModificationTimeFieldName/> | |
| 409 | + <uriNameFieldName/> | |
| 410 | + <rootUriNameFieldName/> | |
| 411 | + <extensionFieldName/> | |
| 412 | + <sizeFieldName/> | |
| 413 | + <spreadsheet_type>JXL</spreadsheet_type> | |
| 414 | + <cluster_schema/> | |
| 415 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 416 | + <xloc>93</xloc> | |
| 417 | + <yloc>51</yloc> | |
| 418 | + <draw>Y</draw> | |
| 419 | + </GUI> | |
| 420 | + </step> | |
| 421 | + | |
| 422 | + <step> | |
| 423 | + <name>启用被数据flag</name> | |
| 424 | + <type>Constant</type> | |
| 425 | + <description/> | |
| 426 | + <distribute>Y</distribute> | |
| 427 | + <custom_distribution/> | |
| 428 | + <copies>1</copies> | |
| 429 | + <partitioning> | |
| 430 | + <method>none</method> | |
| 431 | + <schema_name/> | |
| 432 | + </partitioning> | |
| 433 | + <fields> | |
| 434 | + <field> | |
| 435 | + <name>isCancel</name> | |
| 436 | + <type>Integer</type> | |
| 437 | + <format/> | |
| 438 | + <currency/> | |
| 439 | + <decimal/> | |
| 440 | + <group/> | |
| 441 | + <nullif>0</nullif> | |
| 442 | + <length>-1</length> | |
| 443 | + <precision>-1</precision> | |
| 444 | + <set_empty_string>N</set_empty_string> | |
| 445 | + </field> | |
| 446 | + </fields> | |
| 447 | + <cluster_schema/> | |
| 448 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 449 | + <xloc>225</xloc> | |
| 450 | + <yloc>53</yloc> | |
| 451 | + <draw>Y</draw> | |
| 452 | + </GUI> | |
| 453 | + </step> | |
| 454 | + | |
| 455 | + <step> | |
| 456 | + <name>售票员id查找</name> | |
| 457 | + <type>DBJoin</type> | |
| 458 | + <description/> | |
| 459 | + <distribute>Y</distribute> | |
| 460 | + <custom_distribution/> | |
| 461 | + <copies>1</copies> | |
| 462 | + <partitioning> | |
| 463 | + <method>none</method> | |
| 464 | + <schema_name/> | |
| 465 | + </partitioning> | |
| 466 | + <connection>bus_control_variable</connection> | |
| 467 | + <rowlimit>1</rowlimit> | |
| 468 | + <sql>select id as sid from bsth_c_personnel
where job_code like ? and personnel_name = ?</sql> | |
| 469 | + <outer_join>Y</outer_join> | |
| 470 | + <replace_vars>N</replace_vars> | |
| 471 | + <parameter> | |
| 472 | + <field> | |
| 473 | + <name>sgh_temp</name> | |
| 474 | + <type>String</type> | |
| 475 | + </field> | |
| 476 | + <field> | |
| 477 | + <name>售票员</name> | |
| 478 | + <type>String</type> | |
| 479 | + </field> | |
| 480 | + </parameter> | |
| 481 | + <cluster_schema/> | |
| 482 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 483 | + <xloc>830</xloc> | |
| 484 | + <yloc>45</yloc> | |
| 485 | + <draw>Y</draw> | |
| 486 | + </GUI> | |
| 487 | + </step> | |
| 488 | + | |
| 489 | + <step> | |
| 490 | + <name>插入/更新bsth_c_s_ecinfo</name> | |
| 491 | + <type>InsertUpdate</type> | |
| 492 | + <description/> | |
| 493 | + <distribute>Y</distribute> | |
| 494 | + <custom_distribution/> | |
| 495 | + <copies>1</copies> | |
| 496 | + <partitioning> | |
| 497 | + <method>none</method> | |
| 498 | + <schema_name/> | |
| 499 | + </partitioning> | |
| 500 | + <connection>bus_control_variable</connection> | |
| 501 | + <commit>100</commit> | |
| 502 | + <update_bypassed>N</update_bypassed> | |
| 503 | + <lookup> | |
| 504 | + <schema/> | |
| 505 | + <table>bsth_c_s_ecinfo</table> | |
| 506 | + <key> | |
| 507 | + <name>xlid</name> | |
| 508 | + <field>xl</field> | |
| 509 | + <condition>=</condition> | |
| 510 | + <name2/> | |
| 511 | + </key> | |
| 512 | + <key> | |
| 513 | + <name>搭班编码</name> | |
| 514 | + <field>dbbm</field> | |
| 515 | + <condition>=</condition> | |
| 516 | + <name2/> | |
| 517 | + </key> | |
| 518 | + <key> | |
| 519 | + <name>isCancel</name> | |
| 520 | + <field>is_cancel</field> | |
| 521 | + <condition>=</condition> | |
| 522 | + <name2/> | |
| 523 | + </key> | |
| 524 | + <value> | |
| 525 | + <name>xl</name> | |
| 526 | + <rename>xlid</rename> | |
| 527 | + <update>N</update> | |
| 528 | + </value> | |
| 529 | + <value> | |
| 530 | + <name>dbbm</name> | |
| 531 | + <rename>搭班编码</rename> | |
| 532 | + <update>N</update> | |
| 533 | + </value> | |
| 534 | + <value> | |
| 535 | + <name>jsy</name> | |
| 536 | + <rename>jid</rename> | |
| 537 | + <update>N</update> | |
| 538 | + </value> | |
| 539 | + <value> | |
| 540 | + <name>spy</name> | |
| 541 | + <rename>sid</rename> | |
| 542 | + <update>N</update> | |
| 543 | + </value> | |
| 544 | + <value> | |
| 545 | + <name>is_cancel</name> | |
| 546 | + <rename>isCancel</rename> | |
| 547 | + <update>N</update> | |
| 548 | + </value> | |
| 549 | + </lookup> | |
| 550 | + <cluster_schema/> | |
| 551 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 552 | + <xloc>833</xloc> | |
| 553 | + <yloc>198</yloc> | |
| 554 | + <draw>Y</draw> | |
| 555 | + </GUI> | |
| 556 | + </step> | |
| 557 | + | |
| 558 | + <step> | |
| 559 | + <name>线路id查询</name> | |
| 560 | + <type>DBLookup</type> | |
| 561 | + <description/> | |
| 562 | + <distribute>Y</distribute> | |
| 563 | + <custom_distribution/> | |
| 564 | + <copies>1</copies> | |
| 565 | + <partitioning> | |
| 566 | + <method>none</method> | |
| 567 | + <schema_name/> | |
| 568 | + </partitioning> | |
| 569 | + <connection>bus_control_variable</connection> | |
| 570 | + <cache>Y</cache> | |
| 571 | + <cache_load_all>Y</cache_load_all> | |
| 572 | + <cache_size>0</cache_size> | |
| 573 | + <lookup> | |
| 574 | + <schema/> | |
| 575 | + <table>bsth_c_line</table> | |
| 576 | + <orderby/> | |
| 577 | + <fail_on_multiple>N</fail_on_multiple> | |
| 578 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 579 | + <key> | |
| 580 | + <name>线路</name> | |
| 581 | + <field>name</field> | |
| 582 | + <condition>=</condition> | |
| 583 | + <name2/> | |
| 584 | + </key> | |
| 585 | + <key> | |
| 586 | + <name>isCancel</name> | |
| 587 | + <field>destroy</field> | |
| 588 | + <condition>=</condition> | |
| 589 | + <name2/> | |
| 590 | + </key> | |
| 591 | + <value> | |
| 592 | + <name>id</name> | |
| 593 | + <rename>xlid</rename> | |
| 594 | + <default/> | |
| 595 | + <type>Integer</type> | |
| 596 | + </value> | |
| 597 | + </lookup> | |
| 598 | + <cluster_schema/> | |
| 599 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 600 | + <xloc>397</xloc> | |
| 601 | + <yloc>144</yloc> | |
| 602 | + <draw>Y</draw> | |
| 603 | + </GUI> | |
| 604 | + </step> | |
| 605 | + | |
| 606 | + <step> | |
| 607 | + <name>获取变量</name> | |
| 608 | + <type>GetVariable</type> | |
| 609 | + <description/> | |
| 610 | + <distribute>Y</distribute> | |
| 611 | + <custom_distribution/> | |
| 612 | + <copies>1</copies> | |
| 613 | + <partitioning> | |
| 614 | + <method>none</method> | |
| 615 | + <schema_name/> | |
| 616 | + </partitioning> | |
| 617 | + <fields> | |
| 618 | + <field> | |
| 619 | + <name>filepath_</name> | |
| 620 | + <variable>${filepath}</variable> | |
| 621 | + <type>String</type> | |
| 622 | + <format/> | |
| 623 | + <currency/> | |
| 624 | + <decimal/> | |
| 625 | + <group/> | |
| 626 | + <length>-1</length> | |
| 627 | + <precision>-1</precision> | |
| 628 | + <trim_type>none</trim_type> | |
| 629 | + </field> | |
| 630 | + <field> | |
| 631 | + <name>erroroutputdir_</name> | |
| 632 | + <variable>${erroroutputdir}</variable> | |
| 633 | + <type>String</type> | |
| 634 | + <format/> | |
| 635 | + <currency/> | |
| 636 | + <decimal/> | |
| 637 | + <group/> | |
| 638 | + <length>-1</length> | |
| 639 | + <precision>-1</precision> | |
| 640 | + <trim_type>none</trim_type> | |
| 641 | + </field> | |
| 642 | + </fields> | |
| 643 | + <cluster_schema/> | |
| 644 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 645 | + <xloc>94</xloc> | |
| 646 | + <yloc>178</yloc> | |
| 647 | + <draw>Y</draw> | |
| 648 | + </GUI> | |
| 649 | + </step> | |
| 650 | + | |
| 651 | + <step> | |
| 652 | + <name>过滤线路id为空记录</name> | |
| 653 | + <type>FilterRows</type> | |
| 654 | + <description/> | |
| 655 | + <distribute>Y</distribute> | |
| 656 | + <custom_distribution/> | |
| 657 | + <copies>1</copies> | |
| 658 | + <partitioning> | |
| 659 | + <method>none</method> | |
| 660 | + <schema_name/> | |
| 661 | + </partitioning> | |
| 662 | +<send_true_to/> | |
| 663 | +<send_false_to/> | |
| 664 | + <compare> | |
| 665 | +<condition> | |
| 666 | + <negated>N</negated> | |
| 667 | + <leftvalue>xlid</leftvalue> | |
| 668 | + <function>IS NOT NULL</function> | |
| 669 | + <rightvalue/> | |
| 670 | + </condition> | |
| 671 | + </compare> | |
| 672 | + <cluster_schema/> | |
| 673 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 674 | + <xloc>395</xloc> | |
| 675 | + <yloc>49</yloc> | |
| 676 | + <draw>Y</draw> | |
| 677 | + </GUI> | |
| 678 | + </step> | |
| 679 | + | |
| 680 | + <step> | |
| 681 | + <name>过滤驾驶员id为空记录</name> | |
| 682 | + <type>FilterRows</type> | |
| 683 | + <description/> | |
| 684 | + <distribute>Y</distribute> | |
| 685 | + <custom_distribution/> | |
| 686 | + <copies>1</copies> | |
| 687 | + <partitioning> | |
| 688 | + <method>none</method> | |
| 689 | + <schema_name/> | |
| 690 | + </partitioning> | |
| 691 | +<send_true_to>售票员id查找</send_true_to> | |
| 692 | +<send_false_to/> | |
| 693 | + <compare> | |
| 694 | +<condition> | |
| 695 | + <negated>N</negated> | |
| 696 | + <leftvalue>jid</leftvalue> | |
| 697 | + <function>IS NOT NULL</function> | |
| 698 | + <rightvalue/> | |
| 699 | + </condition> | |
| 700 | + </compare> | |
| 701 | + <cluster_schema/> | |
| 702 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 703 | + <xloc>695</xloc> | |
| 704 | + <yloc>45</yloc> | |
| 705 | + <draw>Y</draw> | |
| 706 | + </GUI> | |
| 707 | + </step> | |
| 708 | + | |
| 709 | + <step> | |
| 710 | + <name>错误输出</name> | |
| 711 | + <type>ExcelOutput</type> | |
| 712 | + <description/> | |
| 713 | + <distribute>Y</distribute> | |
| 714 | + <custom_distribution/> | |
| 715 | + <copies>1</copies> | |
| 716 | + <partitioning> | |
| 717 | + <method>none</method> | |
| 718 | + <schema_name/> | |
| 719 | + </partitioning> | |
| 720 | + <header>Y</header> | |
| 721 | + <footer>N</footer> | |
| 722 | + <encoding>UTF-8</encoding> | |
| 723 | + <append>N</append> | |
| 724 | + <add_to_result_filenames>Y</add_to_result_filenames> | |
| 725 | + <file> | |
| 726 | + <name>${erroroutputdir}/人员配置_错误</name> | |
| 727 | + <extention>xls</extention> | |
| 728 | + <do_not_open_newfile_init>N</do_not_open_newfile_init> | |
| 729 | + <create_parent_folder>N</create_parent_folder> | |
| 730 | + <split>N</split> | |
| 731 | + <add_date>N</add_date> | |
| 732 | + <add_time>N</add_time> | |
| 733 | + <SpecifyFormat>N</SpecifyFormat> | |
| 734 | + <date_time_format/> | |
| 735 | + <sheetname>Sheet1</sheetname> | |
| 736 | + <autosizecolums>N</autosizecolums> | |
| 737 | + <nullisblank>N</nullisblank> | |
| 738 | + <protect_sheet>N</protect_sheet> | |
| 739 | + <password>Encrypted </password> | |
| 740 | + <splitevery>0</splitevery> | |
| 741 | + <usetempfiles>N</usetempfiles> | |
| 742 | + <tempdirectory/> | |
| 743 | + </file> | |
| 744 | + <template> | |
| 745 | + <enabled>N</enabled> | |
| 746 | + <append>N</append> | |
| 747 | + <filename>template.xls</filename> | |
| 748 | + </template> | |
| 749 | + <fields> | |
| 750 | + <field> | |
| 751 | + <name>线路</name> | |
| 752 | + <type>String</type> | |
| 753 | + <format/> | |
| 754 | + </field> | |
| 755 | + <field> | |
| 756 | + <name>搭班编码</name> | |
| 757 | + <type>String</type> | |
| 758 | + <format/> | |
| 759 | + </field> | |
| 760 | + <field> | |
| 761 | + <name>驾驶员工号</name> | |
| 762 | + <type>String</type> | |
| 763 | + <format/> | |
| 764 | + </field> | |
| 765 | + <field> | |
| 766 | + <name>驾驶员</name> | |
| 767 | + <type>String</type> | |
| 768 | + <format/> | |
| 769 | + </field> | |
| 770 | + <field> | |
| 771 | + <name>售票员工号</name> | |
| 772 | + <type>String</type> | |
| 773 | + <format/> | |
| 774 | + </field> | |
| 775 | + <field> | |
| 776 | + <name>售票员</name> | |
| 777 | + <type>String</type> | |
| 778 | + <format/> | |
| 779 | + </field> | |
| 780 | + <field> | |
| 781 | + <name>isCancel</name> | |
| 782 | + <type>Integer</type> | |
| 783 | + <format/> | |
| 784 | + </field> | |
| 785 | + <field> | |
| 786 | + <name>xlid</name> | |
| 787 | + <type>Integer</type> | |
| 788 | + <format/> | |
| 789 | + </field> | |
| 790 | + <field> | |
| 791 | + <name>jid</name> | |
| 792 | + <type>Integer</type> | |
| 793 | + <format/> | |
| 794 | + </field> | |
| 795 | + <field> | |
| 796 | + <name>sid</name> | |
| 797 | + <type>Integer</type> | |
| 798 | + <format/> | |
| 799 | + </field> | |
| 800 | + <field> | |
| 801 | + <name>error_count</name> | |
| 802 | + <type>Integer</type> | |
| 803 | + <format/> | |
| 804 | + </field> | |
| 805 | + <field> | |
| 806 | + <name>error_desc</name> | |
| 807 | + <type>String</type> | |
| 808 | + <format/> | |
| 809 | + </field> | |
| 810 | + <field> | |
| 811 | + <name>error_column1</name> | |
| 812 | + <type>String</type> | |
| 813 | + <format/> | |
| 814 | + </field> | |
| 815 | + <field> | |
| 816 | + <name>error_column2</name> | |
| 817 | + <type>String</type> | |
| 818 | + <format/> | |
| 819 | + </field> | |
| 820 | + </fields> | |
| 821 | + <custom> | |
| 822 | + <header_font_name>arial</header_font_name> | |
| 823 | + <header_font_size>10</header_font_size> | |
| 824 | + <header_font_bold>N</header_font_bold> | |
| 825 | + <header_font_italic>N</header_font_italic> | |
| 826 | + <header_font_underline>no</header_font_underline> | |
| 827 | + <header_font_orientation>horizontal</header_font_orientation> | |
| 828 | + <header_font_color>black</header_font_color> | |
| 829 | + <header_background_color>none</header_background_color> | |
| 830 | + <header_row_height>255</header_row_height> | |
| 831 | + <header_alignment>left</header_alignment> | |
| 832 | + <header_image/> | |
| 833 | + <row_font_name>arial</row_font_name> | |
| 834 | + <row_font_size>10</row_font_size> | |
| 835 | + <row_font_color>black</row_font_color> | |
| 836 | + <row_background_color>none</row_background_color> | |
| 837 | + </custom> | |
| 838 | + <cluster_schema/> | |
| 839 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 840 | + <xloc>833</xloc> | |
| 841 | + <yloc>321</yloc> | |
| 842 | + <draw>Y</draw> | |
| 843 | + </GUI> | |
| 844 | + </step> | |
| 845 | + | |
| 846 | + <step> | |
| 847 | + <name>驾驶员id查找</name> | |
| 848 | + <type>DBJoin</type> | |
| 849 | + <description/> | |
| 850 | + <distribute>Y</distribute> | |
| 851 | + <custom_distribution/> | |
| 852 | + <copies>1</copies> | |
| 853 | + <partitioning> | |
| 854 | + <method>none</method> | |
| 855 | + <schema_name/> | |
| 856 | + </partitioning> | |
| 857 | + <connection>bus_control_variable</connection> | |
| 858 | + <rowlimit>1</rowlimit> | |
| 859 | + <sql>select id as jid from bsth_c_personnel
where job_code like ? and personnel_name = ?</sql> | |
| 860 | + <outer_join>Y</outer_join> | |
| 861 | + <replace_vars>N</replace_vars> | |
| 862 | + <parameter> | |
| 863 | + <field> | |
| 864 | + <name>jgh_temp</name> | |
| 865 | + <type>String</type> | |
| 866 | + </field> | |
| 867 | + <field> | |
| 868 | + <name>驾驶员</name> | |
| 869 | + <type>String</type> | |
| 870 | + </field> | |
| 871 | + </parameter> | |
| 872 | + <cluster_schema/> | |
| 873 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 874 | + <xloc>694</xloc> | |
| 875 | + <yloc>141</yloc> | |
| 876 | + <draw>Y</draw> | |
| 877 | + </GUI> | |
| 878 | + </step> | |
| 879 | + | |
| 880 | + <step> | |
| 881 | + <name>工号数据处理</name> | |
| 882 | + <type>ScriptValueMod</type> | |
| 883 | + <description/> | |
| 884 | + <distribute>Y</distribute> | |
| 885 | + <custom_distribution/> | |
| 886 | + <copies>1</copies> | |
| 887 | + <partitioning> | |
| 888 | + <method>none</method> | |
| 889 | + <schema_name/> | |
| 890 | + </partitioning> | |
| 891 | + <compatible>N</compatible> | |
| 892 | + <optimizationLevel>9</optimizationLevel> | |
| 893 | + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 894 | + <jsScript_name>Script 1</jsScript_name> | |
| 895 | + <jsScript_script>// 因为数据库中的数据工号可能带suffix,如55-12345678
// 所以之后的匹配使用like,则元数据需要加上% %符号

var jgh_temp;
var sgh_temp;

if (驾驶员工号) {
 jgh_temp = '%' + 驾驶员工号 + '%';
} else {
 jgh_temp = 驾驶员工号;
}

if (售票员工号) {
 sgh_temp = '%' + 售票员工号 + '%';
} else {
 sgh_temp = 售票员工号;
}</jsScript_script> | |
| 896 | + </jsScript> </jsScripts> <fields> <field> <name>jgh_temp</name> | |
| 897 | + <rename>jgh_temp</rename> | |
| 898 | + <type>String</type> | |
| 899 | + <length>-1</length> | |
| 900 | + <precision>-1</precision> | |
| 901 | + <replace>N</replace> | |
| 902 | + </field> <field> <name>sgh_temp</name> | |
| 903 | + <rename>sgh_temp</rename> | |
| 904 | + <type>String</type> | |
| 905 | + <length>-1</length> | |
| 906 | + <precision>-1</precision> | |
| 907 | + <replace>N</replace> | |
| 908 | + </field> </fields> <cluster_schema/> | |
| 909 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 910 | + <xloc>548</xloc> | |
| 911 | + <yloc>47</yloc> | |
| 912 | + <draw>Y</draw> | |
| 913 | + </GUI> | |
| 914 | + </step> | |
| 915 | + | |
| 916 | + <step_error_handling> | |
| 917 | + <error> | |
| 918 | + <source_step>插入/更新bsth_c_s_ecinfo</source_step> | |
| 919 | + <target_step>错误输出</target_step> | |
| 920 | + <is_enabled>Y</is_enabled> | |
| 921 | + <nr_valuename>error_count</nr_valuename> | |
| 922 | + <descriptions_valuename>error_desc</descriptions_valuename> | |
| 923 | + <fields_valuename>error_column1</fields_valuename> | |
| 924 | + <codes_valuename>error_column2</codes_valuename> | |
| 925 | + <max_errors/> | |
| 926 | + <max_pct_errors/> | |
| 927 | + <min_pct_rows/> | |
| 928 | + </error> | |
| 929 | + </step_error_handling> | |
| 930 | + <slave-step-copy-partition-distribution> | |
| 931 | +</slave-step-copy-partition-distribution> | |
| 932 | + <slave_transformation>N</slave_transformation> | |
| 933 | + | |
| 934 | +</transformation> | ... | ... |
src/main/resources/datatools/ktrs/test.ktr
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<transformation> | |
| 3 | - <info> | |
| 4 | - <name>employeesConfigDataInput</name> | |
| 5 | - <description>人员配置信息导入</description> | |
| 6 | - <extended_description>人员配置信息</extended_description> | |
| 7 | - <trans_version/> | |
| 8 | - <trans_type>Normal</trans_type> | |
| 9 | - <trans_status>0</trans_status> | |
| 10 | - <directory>/</directory> | |
| 11 | - <parameters> | |
| 12 | - <parameter> | |
| 13 | - <name>erroroutputdir</name> | |
| 14 | - <default_value/> | |
| 15 | - <description>ktr step配置的错误输出目录</description> | |
| 16 | - </parameter> | |
| 17 | - <parameter> | |
| 18 | - <name>filepath</name> | |
| 19 | - <default_value/> | |
| 20 | - <description>待处理导入的excel文件</description> | |
| 21 | - </parameter> | |
| 22 | - </parameters> | |
| 23 | - <log> | |
| 24 | -<trans-log-table><connection/> | |
| 25 | -<schema/> | |
| 26 | -<table/> | |
| 27 | -<size_limit_lines/> | |
| 28 | -<interval/> | |
| 29 | -<timeout_days/> | |
| 30 | -<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> | |
| 31 | -<perf-log-table><connection/> | |
| 32 | -<schema/> | |
| 33 | -<table/> | |
| 34 | -<interval/> | |
| 35 | -<timeout_days/> | |
| 36 | -<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> | |
| 37 | -<channel-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>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> | |
| 42 | -<step-log-table><connection/> | |
| 43 | -<schema/> | |
| 44 | -<table/> | |
| 45 | -<timeout_days/> | |
| 46 | -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>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> | |
| 47 | -<metrics-log-table><connection/> | |
| 48 | -<schema/> | |
| 49 | -<table/> | |
| 50 | -<timeout_days/> | |
| 51 | -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>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> | |
| 52 | - </log> | |
| 53 | - <maxdate> | |
| 54 | - <connection/> | |
| 55 | - <table/> | |
| 56 | - <field/> | |
| 57 | - <offset>0.0</offset> | |
| 58 | - <maxdiff>0.0</maxdiff> | |
| 59 | - </maxdate> | |
| 60 | - <size_rowset>10000</size_rowset> | |
| 61 | - <sleep_time_empty>50</sleep_time_empty> | |
| 62 | - <sleep_time_full>50</sleep_time_full> | |
| 63 | - <unique_connections>N</unique_connections> | |
| 64 | - <feedback_shown>Y</feedback_shown> | |
| 65 | - <feedback_size>50000</feedback_size> | |
| 66 | - <using_thread_priorities>Y</using_thread_priorities> | |
| 67 | - <shared_objects_file/> | |
| 68 | - <capture_step_performance>N</capture_step_performance> | |
| 69 | - <step_performance_capturing_delay>1000</step_performance_capturing_delay> | |
| 70 | - <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit> | |
| 71 | - <dependencies> | |
| 72 | - </dependencies> | |
| 73 | - <partitionschemas> | |
| 74 | - </partitionschemas> | |
| 75 | - <slaveservers> | |
| 76 | - </slaveservers> | |
| 77 | - <clusterschemas> | |
| 78 | - </clusterschemas> | |
| 79 | - <created_user>-</created_user> | |
| 80 | - <created_date>2016/06/29 15:12:27.273</created_date> | |
| 81 | - <modified_user>-</modified_user> | |
| 82 | - <modified_date>2016/06/29 15:12:27.273</modified_date> | |
| 83 | - <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA=</key_for_session_key> | |
| 84 | - <is_key_private>N</is_key_private> | |
| 85 | - </info> | |
| 86 | - <notepads> | |
| 87 | - <notepad> | |
| 88 | - <note>这里有些问题
在window2012的环境下,
MySql数据库查询中如果返回中文内容的字段,这个内容乱码
解决办法,就是数据库查询全部缓存,就不乱码
linux环境下没问题</note> | |
| 89 | - <xloc>101</xloc> | |
| 90 | - <yloc>264</yloc> | |
| 91 | - <width>333</width> | |
| 92 | - <heigth>90</heigth> | |
| 93 | - <fontname>YaHei Consolas Hybrid</fontname> | |
| 94 | - <fontsize>12</fontsize> | |
| 95 | - <fontbold>N</fontbold> | |
| 96 | - <fontitalic>N</fontitalic> | |
| 97 | - <fontcolorred>0</fontcolorred> | |
| 98 | - <fontcolorgreen>0</fontcolorgreen> | |
| 99 | - <fontcolorblue>0</fontcolorblue> | |
| 100 | - <backgroundcolorred>255</backgroundcolorred> | |
| 101 | - <backgroundcolorgreen>205</backgroundcolorgreen> | |
| 102 | - <backgroundcolorblue>112</backgroundcolorblue> | |
| 103 | - <bordercolorred>100</bordercolorred> | |
| 104 | - <bordercolorgreen>100</bordercolorgreen> | |
| 105 | - <bordercolorblue>100</bordercolorblue> | |
| 106 | - <drawshadow>Y</drawshadow> | |
| 107 | - </notepad> | |
| 108 | - </notepads> | |
| 109 | - <connection> | |
| 110 | - <name>bus_control_variable</name> | |
| 111 | - <server>${v_db_ip}</server> | |
| 112 | - <type>MYSQL</type> | |
| 113 | - <access>Native</access> | |
| 114 | - <database>${v_db_dname}</database> | |
| 115 | - <port>3306</port> | |
| 116 | - <username>${v_db_uname}</username> | |
| 117 | - <password>${v_db_pwd}</password> | |
| 118 | - <servername/> | |
| 119 | - <data_tablespace/> | |
| 120 | - <index_tablespace/> | |
| 121 | - <attributes> | |
| 122 | - <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute> | |
| 123 | - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 124 | - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 125 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 126 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 127 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 128 | - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 129 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 130 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 131 | - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute> | |
| 132 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 133 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 134 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 135 | - </attributes> | |
| 136 | - </connection> | |
| 137 | - <connection> | |
| 138 | - <name>bus_control_公司_201</name> | |
| 139 | - <server>localhost</server> | |
| 140 | - <type>MYSQL</type> | |
| 141 | - <access>Native</access> | |
| 142 | - <database>control</database> | |
| 143 | - <port>3306</port> | |
| 144 | - <username>root</username> | |
| 145 | - <password>Encrypted </password> | |
| 146 | - <servername/> | |
| 147 | - <data_tablespace/> | |
| 148 | - <index_tablespace/> | |
| 149 | - <attributes> | |
| 150 | - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 151 | - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 152 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 153 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 154 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 155 | - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 156 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 157 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 158 | - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute> | |
| 159 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 160 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 161 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 162 | - </attributes> | |
| 163 | - </connection> | |
| 164 | - <connection> | |
| 165 | - <name>bus_control_本机</name> | |
| 166 | - <server>localhost</server> | |
| 167 | - <type>MYSQL</type> | |
| 168 | - <access>Native</access> | |
| 169 | - <database>control</database> | |
| 170 | - <port>3306</port> | |
| 171 | - <username>root</username> | |
| 172 | - <password>Encrypted </password> | |
| 173 | - <servername/> | |
| 174 | - <data_tablespace/> | |
| 175 | - <index_tablespace/> | |
| 176 | - <attributes> | |
| 177 | - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 178 | - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 179 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 180 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 181 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 182 | - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 183 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 184 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 185 | - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 186 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 187 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 188 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 189 | - </attributes> | |
| 190 | - </connection> | |
| 191 | - <connection> | |
| 192 | - <name>xlab_mysql_youle</name> | |
| 193 | - <server>101.231.124.8</server> | |
| 194 | - <type>MYSQL</type> | |
| 195 | - <access>Native</access> | |
| 196 | - <database>xlab_youle</database> | |
| 197 | - <port>45687</port> | |
| 198 | - <username>xlab-youle</username> | |
| 199 | - <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password> | |
| 200 | - <servername/> | |
| 201 | - <data_tablespace/> | |
| 202 | - <index_tablespace/> | |
| 203 | - <attributes> | |
| 204 | - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 205 | - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 206 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 207 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 208 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 209 | - <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute> | |
| 210 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 211 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 212 | - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 213 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 214 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 215 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 216 | - </attributes> | |
| 217 | - </connection> | |
| 218 | - <connection> | |
| 219 | - <name>xlab_mysql_youle(本机)</name> | |
| 220 | - <server>localhost</server> | |
| 221 | - <type>MYSQL</type> | |
| 222 | - <access>Native</access> | |
| 223 | - <database>xlab_youle</database> | |
| 224 | - <port>3306</port> | |
| 225 | - <username>root</username> | |
| 226 | - <password>Encrypted </password> | |
| 227 | - <servername/> | |
| 228 | - <data_tablespace/> | |
| 229 | - <index_tablespace/> | |
| 230 | - <attributes> | |
| 231 | - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 232 | - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 233 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 234 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 235 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 236 | - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 237 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 238 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 239 | - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 240 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 241 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 242 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 243 | - </attributes> | |
| 244 | - </connection> | |
| 245 | - <connection> | |
| 246 | - <name>xlab_youle</name> | |
| 247 | - <server/> | |
| 248 | - <type>MYSQL</type> | |
| 249 | - <access>JNDI</access> | |
| 250 | - <database>xlab_youle</database> | |
| 251 | - <port>1521</port> | |
| 252 | - <username/> | |
| 253 | - <password>Encrypted </password> | |
| 254 | - <servername/> | |
| 255 | - <data_tablespace/> | |
| 256 | - <index_tablespace/> | |
| 257 | - <attributes> | |
| 258 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 259 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 260 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 261 | - <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | |
| 262 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 263 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 264 | - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 265 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 266 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 267 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 268 | - </attributes> | |
| 269 | - </connection> | |
| 270 | - <order> | |
| 271 | - <hop> <from>插入/更新bsth_c_s_ecinfo</from><to>错误输出</to><enabled>Y</enabled> </hop> | |
| 272 | - <hop> <from>获取变量</from><to>原始系统导出的Excel输入</to><enabled>Y</enabled> </hop> | |
| 273 | - <hop> <from>原始系统导出的Excel输入</from><to>启用被数据flag</to><enabled>Y</enabled> </hop> | |
| 274 | - <hop> <from>启用被数据flag</from><to>线路id查询</to><enabled>Y</enabled> </hop> | |
| 275 | - <hop> <from>线路id查询</from><to>过滤线路id为空记录</to><enabled>Y</enabled> </hop> | |
| 276 | - <hop> <from>过滤线路id为空记录</from><to>驾驶员id查找</to><enabled>Y</enabled> </hop> | |
| 277 | - <hop> <from>驾驶员id查找</from><to>过滤驾驶员id为空记录</to><enabled>Y</enabled> </hop> | |
| 278 | - <hop> <from>过滤驾驶员id为空记录</from><to>售票员id查找</to><enabled>Y</enabled> </hop> | |
| 279 | - <hop> <from>售票员id查找</from><to>插入/更新bsth_c_s_ecinfo</to><enabled>Y</enabled> </hop> | |
| 280 | - </order> | |
| 281 | - <step> | |
| 282 | - <name>原始系统导出的Excel输入</name> | |
| 283 | - <type>ExcelInput</type> | |
| 284 | - <description/> | |
| 285 | - <distribute>Y</distribute> | |
| 286 | - <custom_distribution/> | |
| 287 | - <copies>1</copies> | |
| 288 | - <partitioning> | |
| 289 | - <method>none</method> | |
| 290 | - <schema_name/> | |
| 291 | - </partitioning> | |
| 292 | - <header>Y</header> | |
| 293 | - <noempty>Y</noempty> | |
| 294 | - <stoponempty>N</stoponempty> | |
| 295 | - <filefield/> | |
| 296 | - <sheetfield/> | |
| 297 | - <sheetrownumfield/> | |
| 298 | - <rownumfield/> | |
| 299 | - <sheetfield/> | |
| 300 | - <filefield/> | |
| 301 | - <limit>0</limit> | |
| 302 | - <encoding/> | |
| 303 | - <add_to_result_filenames>Y</add_to_result_filenames> | |
| 304 | - <accept_filenames>Y</accept_filenames> | |
| 305 | - <accept_field>filepath_</accept_field> | |
| 306 | - <accept_stepname>获取变量</accept_stepname> | |
| 307 | - <file> | |
| 308 | - <name/> | |
| 309 | - <filemask/> | |
| 310 | - <exclude_filemask/> | |
| 311 | - <file_required>N</file_required> | |
| 312 | - <include_subfolders>N</include_subfolders> | |
| 313 | - </file> | |
| 314 | - <fields> | |
| 315 | - <field> | |
| 316 | - <name>线路</name> | |
| 317 | - <type>String</type> | |
| 318 | - <length>-1</length> | |
| 319 | - <precision>-1</precision> | |
| 320 | - <trim_type>none</trim_type> | |
| 321 | - <repeat>N</repeat> | |
| 322 | - <format/> | |
| 323 | - <currency/> | |
| 324 | - <decimal/> | |
| 325 | - <group/> | |
| 326 | - </field> | |
| 327 | - <field> | |
| 328 | - <name>搭班编码</name> | |
| 329 | - <type>String</type> | |
| 330 | - <length>-1</length> | |
| 331 | - <precision>-1</precision> | |
| 332 | - <trim_type>none</trim_type> | |
| 333 | - <repeat>N</repeat> | |
| 334 | - <format>#</format> | |
| 335 | - <currency/> | |
| 336 | - <decimal/> | |
| 337 | - <group/> | |
| 338 | - </field> | |
| 339 | - <field> | |
| 340 | - <name>驾驶员工号</name> | |
| 341 | - <type>String</type> | |
| 342 | - <length>-1</length> | |
| 343 | - <precision>-1</precision> | |
| 344 | - <trim_type>none</trim_type> | |
| 345 | - <repeat>N</repeat> | |
| 346 | - <format>#</format> | |
| 347 | - <currency/> | |
| 348 | - <decimal/> | |
| 349 | - <group/> | |
| 350 | - </field> | |
| 351 | - <field> | |
| 352 | - <name>驾驶员</name> | |
| 353 | - <type>String</type> | |
| 354 | - <length>-1</length> | |
| 355 | - <precision>-1</precision> | |
| 356 | - <trim_type>none</trim_type> | |
| 357 | - <repeat>N</repeat> | |
| 358 | - <format/> | |
| 359 | - <currency/> | |
| 360 | - <decimal/> | |
| 361 | - <group/> | |
| 362 | - </field> | |
| 363 | - <field> | |
| 364 | - <name>售票员工号</name> | |
| 365 | - <type>String</type> | |
| 366 | - <length>-1</length> | |
| 367 | - <precision>-1</precision> | |
| 368 | - <trim_type>none</trim_type> | |
| 369 | - <repeat>N</repeat> | |
| 370 | - <format>#</format> | |
| 371 | - <currency/> | |
| 372 | - <decimal/> | |
| 373 | - <group/> | |
| 374 | - </field> | |
| 375 | - <field> | |
| 376 | - <name>售票员</name> | |
| 377 | - <type>String</type> | |
| 378 | - <length>-1</length> | |
| 379 | - <precision>-1</precision> | |
| 380 | - <trim_type>none</trim_type> | |
| 381 | - <repeat>N</repeat> | |
| 382 | - <format/> | |
| 383 | - <currency/> | |
| 384 | - <decimal/> | |
| 385 | - <group/> | |
| 386 | - </field> | |
| 387 | - </fields> | |
| 388 | - <sheets> | |
| 389 | - <sheet> | |
| 390 | - <name>工作表1</name> | |
| 391 | - <startrow>0</startrow> | |
| 392 | - <startcol>0</startcol> | |
| 393 | - </sheet> | |
| 394 | - </sheets> | |
| 395 | - <strict_types>N</strict_types> | |
| 396 | - <error_ignored>N</error_ignored> | |
| 397 | - <error_line_skipped>N</error_line_skipped> | |
| 398 | - <bad_line_files_destination_directory/> | |
| 399 | - <bad_line_files_extension>warning</bad_line_files_extension> | |
| 400 | - <error_line_files_destination_directory/> | |
| 401 | - <error_line_files_extension>error</error_line_files_extension> | |
| 402 | - <line_number_files_destination_directory/> | |
| 403 | - <line_number_files_extension>line</line_number_files_extension> | |
| 404 | - <shortFileFieldName/> | |
| 405 | - <pathFieldName/> | |
| 406 | - <hiddenFieldName/> | |
| 407 | - <lastModificationTimeFieldName/> | |
| 408 | - <uriNameFieldName/> | |
| 409 | - <rootUriNameFieldName/> | |
| 410 | - <extensionFieldName/> | |
| 411 | - <sizeFieldName/> | |
| 412 | - <spreadsheet_type>JXL</spreadsheet_type> | |
| 413 | - <cluster_schema/> | |
| 414 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 415 | - <xloc>93</xloc> | |
| 416 | - <yloc>51</yloc> | |
| 417 | - <draw>Y</draw> | |
| 418 | - </GUI> | |
| 419 | - </step> | |
| 420 | - | |
| 421 | - <step> | |
| 422 | - <name>启用被数据flag</name> | |
| 423 | - <type>Constant</type> | |
| 424 | - <description/> | |
| 425 | - <distribute>Y</distribute> | |
| 426 | - <custom_distribution/> | |
| 427 | - <copies>1</copies> | |
| 428 | - <partitioning> | |
| 429 | - <method>none</method> | |
| 430 | - <schema_name/> | |
| 431 | - </partitioning> | |
| 432 | - <fields> | |
| 433 | - <field> | |
| 434 | - <name>isCancel</name> | |
| 435 | - <type>Integer</type> | |
| 436 | - <format/> | |
| 437 | - <currency/> | |
| 438 | - <decimal/> | |
| 439 | - <group/> | |
| 440 | - <nullif>0</nullif> | |
| 441 | - <length>-1</length> | |
| 442 | - <precision>-1</precision> | |
| 443 | - <set_empty_string>N</set_empty_string> | |
| 444 | - </field> | |
| 445 | - </fields> | |
| 446 | - <cluster_schema/> | |
| 447 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 448 | - <xloc>225</xloc> | |
| 449 | - <yloc>53</yloc> | |
| 450 | - <draw>Y</draw> | |
| 451 | - </GUI> | |
| 452 | - </step> | |
| 453 | - | |
| 454 | - <step> | |
| 455 | - <name>售票员id查找</name> | |
| 456 | - <type>DBJoin</type> | |
| 457 | - <description/> | |
| 458 | - <distribute>Y</distribute> | |
| 459 | - <custom_distribution/> | |
| 460 | - <copies>1</copies> | |
| 461 | - <partitioning> | |
| 462 | - <method>none</method> | |
| 463 | - <schema_name/> | |
| 464 | - </partitioning> | |
| 465 | - <connection>bus_control_variable</connection> | |
| 466 | - <rowlimit>1</rowlimit> | |
| 467 | - <sql>select id as sid from bsth_c_personnel
where job_code = ? and personnel_name = ?</sql> | |
| 468 | - <outer_join>Y</outer_join> | |
| 469 | - <replace_vars>N</replace_vars> | |
| 470 | - <parameter> | |
| 471 | - <field> | |
| 472 | - <name>售票员工号</name> | |
| 473 | - <type>String</type> | |
| 474 | - </field> | |
| 475 | - <field> | |
| 476 | - <name>售票员</name> | |
| 477 | - <type>String</type> | |
| 478 | - </field> | |
| 479 | - </parameter> | |
| 480 | - <cluster_schema/> | |
| 481 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 482 | - <xloc>673</xloc> | |
| 483 | - <yloc>47</yloc> | |
| 484 | - <draw>Y</draw> | |
| 485 | - </GUI> | |
| 486 | - </step> | |
| 487 | - | |
| 488 | - <step> | |
| 489 | - <name>插入/更新bsth_c_s_ecinfo</name> | |
| 490 | - <type>InsertUpdate</type> | |
| 491 | - <description/> | |
| 492 | - <distribute>Y</distribute> | |
| 493 | - <custom_distribution/> | |
| 494 | - <copies>1</copies> | |
| 495 | - <partitioning> | |
| 496 | - <method>none</method> | |
| 497 | - <schema_name/> | |
| 498 | - </partitioning> | |
| 499 | - <connection>bus_control_variable</connection> | |
| 500 | - <commit>100</commit> | |
| 501 | - <update_bypassed>N</update_bypassed> | |
| 502 | - <lookup> | |
| 503 | - <schema/> | |
| 504 | - <table>bsth_c_s_ecinfo</table> | |
| 505 | - <key> | |
| 506 | - <name>xlid</name> | |
| 507 | - <field>xl</field> | |
| 508 | - <condition>=</condition> | |
| 509 | - <name2/> | |
| 510 | - </key> | |
| 511 | - <key> | |
| 512 | - <name>搭班编码</name> | |
| 513 | - <field>dbbm</field> | |
| 514 | - <condition>=</condition> | |
| 515 | - <name2/> | |
| 516 | - </key> | |
| 517 | - <value> | |
| 518 | - <name>xl</name> | |
| 519 | - <rename>xlid</rename> | |
| 520 | - <update>Y</update> | |
| 521 | - </value> | |
| 522 | - <value> | |
| 523 | - <name>dbbm</name> | |
| 524 | - <rename>搭班编码</rename> | |
| 525 | - <update>Y</update> | |
| 526 | - </value> | |
| 527 | - <value> | |
| 528 | - <name>jsy</name> | |
| 529 | - <rename>jid</rename> | |
| 530 | - <update>Y</update> | |
| 531 | - </value> | |
| 532 | - <value> | |
| 533 | - <name>spy</name> | |
| 534 | - <rename>sid</rename> | |
| 535 | - <update>Y</update> | |
| 536 | - </value> | |
| 537 | - <value> | |
| 538 | - <name>is_cancel</name> | |
| 539 | - <rename>isCancel</rename> | |
| 540 | - <update>Y</update> | |
| 541 | - </value> | |
| 542 | - </lookup> | |
| 543 | - <cluster_schema/> | |
| 544 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 545 | - <xloc>676</xloc> | |
| 546 | - <yloc>200</yloc> | |
| 547 | - <draw>Y</draw> | |
| 548 | - </GUI> | |
| 549 | - </step> | |
| 550 | - | |
| 551 | - <step> | |
| 552 | - <name>线路id查询</name> | |
| 553 | - <type>DBLookup</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 | - <connection>bus_control_variable</connection> | |
| 563 | - <cache>Y</cache> | |
| 564 | - <cache_load_all>Y</cache_load_all> | |
| 565 | - <cache_size>0</cache_size> | |
| 566 | - <lookup> | |
| 567 | - <schema/> | |
| 568 | - <table>bsth_c_line</table> | |
| 569 | - <orderby/> | |
| 570 | - <fail_on_multiple>N</fail_on_multiple> | |
| 571 | - <eat_row_on_failure>N</eat_row_on_failure> | |
| 572 | - <key> | |
| 573 | - <name>线路</name> | |
| 574 | - <field>name</field> | |
| 575 | - <condition>=</condition> | |
| 576 | - <name2/> | |
| 577 | - </key> | |
| 578 | - <key> | |
| 579 | - <name>isCancel</name> | |
| 580 | - <field>destroy</field> | |
| 581 | - <condition>=</condition> | |
| 582 | - <name2/> | |
| 583 | - </key> | |
| 584 | - <value> | |
| 585 | - <name>id</name> | |
| 586 | - <rename>xlid</rename> | |
| 587 | - <default/> | |
| 588 | - <type>Integer</type> | |
| 589 | - </value> | |
| 590 | - </lookup> | |
| 591 | - <cluster_schema/> | |
| 592 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 593 | - <xloc>397</xloc> | |
| 594 | - <yloc>144</yloc> | |
| 595 | - <draw>Y</draw> | |
| 596 | - </GUI> | |
| 597 | - </step> | |
| 598 | - | |
| 599 | - <step> | |
| 600 | - <name>获取变量</name> | |
| 601 | - <type>GetVariable</type> | |
| 602 | - <description/> | |
| 603 | - <distribute>Y</distribute> | |
| 604 | - <custom_distribution/> | |
| 605 | - <copies>1</copies> | |
| 606 | - <partitioning> | |
| 607 | - <method>none</method> | |
| 608 | - <schema_name/> | |
| 609 | - </partitioning> | |
| 610 | - <fields> | |
| 611 | - <field> | |
| 612 | - <name>filepath_</name> | |
| 613 | - <variable>${filepath}</variable> | |
| 614 | - <type>String</type> | |
| 615 | - <format/> | |
| 616 | - <currency/> | |
| 617 | - <decimal/> | |
| 618 | - <group/> | |
| 619 | - <length>-1</length> | |
| 620 | - <precision>-1</precision> | |
| 621 | - <trim_type>none</trim_type> | |
| 622 | - </field> | |
| 623 | - <field> | |
| 624 | - <name>erroroutputdir_</name> | |
| 625 | - <variable>${erroroutputdir}</variable> | |
| 626 | - <type>String</type> | |
| 627 | - <format/> | |
| 628 | - <currency/> | |
| 629 | - <decimal/> | |
| 630 | - <group/> | |
| 631 | - <length>-1</length> | |
| 632 | - <precision>-1</precision> | |
| 633 | - <trim_type>none</trim_type> | |
| 634 | - </field> | |
| 635 | - </fields> | |
| 636 | - <cluster_schema/> | |
| 637 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 638 | - <xloc>94</xloc> | |
| 639 | - <yloc>178</yloc> | |
| 640 | - <draw>Y</draw> | |
| 641 | - </GUI> | |
| 642 | - </step> | |
| 643 | - | |
| 644 | - <step> | |
| 645 | - <name>过滤线路id为空记录</name> | |
| 646 | - <type>FilterRows</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 | -<send_true_to/> | |
| 656 | -<send_false_to/> | |
| 657 | - <compare> | |
| 658 | -<condition> | |
| 659 | - <negated>N</negated> | |
| 660 | - <leftvalue>xlid</leftvalue> | |
| 661 | - <function>IS NOT NULL</function> | |
| 662 | - <rightvalue/> | |
| 663 | - </condition> | |
| 664 | - </compare> | |
| 665 | - <cluster_schema/> | |
| 666 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 667 | - <xloc>395</xloc> | |
| 668 | - <yloc>49</yloc> | |
| 669 | - <draw>Y</draw> | |
| 670 | - </GUI> | |
| 671 | - </step> | |
| 672 | - | |
| 673 | - <step> | |
| 674 | - <name>过滤驾驶员id为空记录</name> | |
| 675 | - <type>FilterRows</type> | |
| 676 | - <description/> | |
| 677 | - <distribute>Y</distribute> | |
| 678 | - <custom_distribution/> | |
| 679 | - <copies>1</copies> | |
| 680 | - <partitioning> | |
| 681 | - <method>none</method> | |
| 682 | - <schema_name/> | |
| 683 | - </partitioning> | |
| 684 | -<send_true_to>售票员id查找</send_true_to> | |
| 685 | -<send_false_to/> | |
| 686 | - <compare> | |
| 687 | -<condition> | |
| 688 | - <negated>N</negated> | |
| 689 | - <leftvalue>jid</leftvalue> | |
| 690 | - <function>IS NOT NULL</function> | |
| 691 | - <rightvalue/> | |
| 692 | - </condition> | |
| 693 | - </compare> | |
| 694 | - <cluster_schema/> | |
| 695 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 696 | - <xloc>538</xloc> | |
| 697 | - <yloc>47</yloc> | |
| 698 | - <draw>Y</draw> | |
| 699 | - </GUI> | |
| 700 | - </step> | |
| 701 | - | |
| 702 | - <step> | |
| 703 | - <name>错误输出</name> | |
| 704 | - <type>ExcelOutput</type> | |
| 705 | - <description/> | |
| 706 | - <distribute>Y</distribute> | |
| 707 | - <custom_distribution/> | |
| 708 | - <copies>1</copies> | |
| 709 | - <partitioning> | |
| 710 | - <method>none</method> | |
| 711 | - <schema_name/> | |
| 712 | - </partitioning> | |
| 713 | - <header>Y</header> | |
| 714 | - <footer>N</footer> | |
| 715 | - <encoding>UTF-8</encoding> | |
| 716 | - <append>N</append> | |
| 717 | - <add_to_result_filenames>Y</add_to_result_filenames> | |
| 718 | - <file> | |
| 719 | - <name>${erroroutputdir}/人员配置_错误</name> | |
| 720 | - <extention>xls</extention> | |
| 721 | - <do_not_open_newfile_init>N</do_not_open_newfile_init> | |
| 722 | - <create_parent_folder>N</create_parent_folder> | |
| 723 | - <split>N</split> | |
| 724 | - <add_date>N</add_date> | |
| 725 | - <add_time>N</add_time> | |
| 726 | - <SpecifyFormat>N</SpecifyFormat> | |
| 727 | - <date_time_format/> | |
| 728 | - <sheetname>Sheet1</sheetname> | |
| 729 | - <autosizecolums>N</autosizecolums> | |
| 730 | - <nullisblank>N</nullisblank> | |
| 731 | - <protect_sheet>N</protect_sheet> | |
| 732 | - <password>Encrypted </password> | |
| 733 | - <splitevery>0</splitevery> | |
| 734 | - <usetempfiles>N</usetempfiles> | |
| 735 | - <tempdirectory/> | |
| 736 | - </file> | |
| 737 | - <template> | |
| 738 | - <enabled>N</enabled> | |
| 739 | - <append>N</append> | |
| 740 | - <filename>template.xls</filename> | |
| 741 | - </template> | |
| 742 | - <fields> | |
| 743 | - <field> | |
| 744 | - <name>线路</name> | |
| 745 | - <type>String</type> | |
| 746 | - <format/> | |
| 747 | - </field> | |
| 748 | - <field> | |
| 749 | - <name>搭班编码</name> | |
| 750 | - <type>String</type> | |
| 751 | - <format/> | |
| 752 | - </field> | |
| 753 | - <field> | |
| 754 | - <name>驾驶员工号</name> | |
| 755 | - <type>String</type> | |
| 756 | - <format/> | |
| 757 | - </field> | |
| 758 | - <field> | |
| 759 | - <name>驾驶员</name> | |
| 760 | - <type>String</type> | |
| 761 | - <format/> | |
| 762 | - </field> | |
| 763 | - <field> | |
| 764 | - <name>售票员工号</name> | |
| 765 | - <type>String</type> | |
| 766 | - <format/> | |
| 767 | - </field> | |
| 768 | - <field> | |
| 769 | - <name>售票员</name> | |
| 770 | - <type>String</type> | |
| 771 | - <format/> | |
| 772 | - </field> | |
| 773 | - <field> | |
| 774 | - <name>isCancel</name> | |
| 775 | - <type>Integer</type> | |
| 776 | - <format/> | |
| 777 | - </field> | |
| 778 | - <field> | |
| 779 | - <name>xlid</name> | |
| 780 | - <type>Integer</type> | |
| 781 | - <format/> | |
| 782 | - </field> | |
| 783 | - <field> | |
| 784 | - <name>jid</name> | |
| 785 | - <type>Integer</type> | |
| 786 | - <format/> | |
| 787 | - </field> | |
| 788 | - <field> | |
| 789 | - <name>sid</name> | |
| 790 | - <type>Integer</type> | |
| 791 | - <format/> | |
| 792 | - </field> | |
| 793 | - <field> | |
| 794 | - <name>error_count</name> | |
| 795 | - <type>Integer</type> | |
| 796 | - <format/> | |
| 797 | - </field> | |
| 798 | - <field> | |
| 799 | - <name>error_desc</name> | |
| 800 | - <type>String</type> | |
| 801 | - <format/> | |
| 802 | - </field> | |
| 803 | - <field> | |
| 804 | - <name>error_column1</name> | |
| 805 | - <type>String</type> | |
| 806 | - <format/> | |
| 807 | - </field> | |
| 808 | - <field> | |
| 809 | - <name>error_column2</name> | |
| 810 | - <type>String</type> | |
| 811 | - <format/> | |
| 812 | - </field> | |
| 813 | - </fields> | |
| 814 | - <custom> | |
| 815 | - <header_font_name>arial</header_font_name> | |
| 816 | - <header_font_size>10</header_font_size> | |
| 817 | - <header_font_bold>N</header_font_bold> | |
| 818 | - <header_font_italic>N</header_font_italic> | |
| 819 | - <header_font_underline>no</header_font_underline> | |
| 820 | - <header_font_orientation>horizontal</header_font_orientation> | |
| 821 | - <header_font_color>black</header_font_color> | |
| 822 | - <header_background_color>none</header_background_color> | |
| 823 | - <header_row_height>255</header_row_height> | |
| 824 | - <header_alignment>left</header_alignment> | |
| 825 | - <header_image/> | |
| 826 | - <row_font_name>arial</row_font_name> | |
| 827 | - <row_font_size>10</row_font_size> | |
| 828 | - <row_font_color>black</row_font_color> | |
| 829 | - <row_background_color>none</row_background_color> | |
| 830 | - </custom> | |
| 831 | - <cluster_schema/> | |
| 832 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 833 | - <xloc>676</xloc> | |
| 834 | - <yloc>323</yloc> | |
| 835 | - <draw>Y</draw> | |
| 836 | - </GUI> | |
| 837 | - </step> | |
| 838 | - | |
| 839 | - <step> | |
| 840 | - <name>驾驶员id查找</name> | |
| 841 | - <type>DBJoin</type> | |
| 842 | - <description/> | |
| 843 | - <distribute>Y</distribute> | |
| 844 | - <custom_distribution/> | |
| 845 | - <copies>1</copies> | |
| 846 | - <partitioning> | |
| 847 | - <method>none</method> | |
| 848 | - <schema_name/> | |
| 849 | - </partitioning> | |
| 850 | - <connection>bus_control_variable</connection> | |
| 851 | - <rowlimit>1</rowlimit> | |
| 852 | - <sql>select id as jid from bsth_c_personnel
where job_code = ? and personnel_name = ?</sql> | |
| 853 | - <outer_join>Y</outer_join> | |
| 854 | - <replace_vars>N</replace_vars> | |
| 855 | - <parameter> | |
| 856 | - <field> | |
| 857 | - <name>驾驶员工号</name> | |
| 858 | - <type>String</type> | |
| 859 | - </field> | |
| 860 | - <field> | |
| 861 | - <name>驾驶员</name> | |
| 862 | - <type>String</type> | |
| 863 | - </field> | |
| 864 | - </parameter> | |
| 865 | - <cluster_schema/> | |
| 866 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 867 | - <xloc>537</xloc> | |
| 868 | - <yloc>143</yloc> | |
| 869 | - <draw>Y</draw> | |
| 870 | - </GUI> | |
| 871 | - </step> | |
| 872 | - | |
| 873 | - <step_error_handling> | |
| 874 | - <error> | |
| 875 | - <source_step>插入/更新bsth_c_s_ecinfo</source_step> | |
| 876 | - <target_step>错误输出</target_step> | |
| 877 | - <is_enabled>Y</is_enabled> | |
| 878 | - <nr_valuename>error_count</nr_valuename> | |
| 879 | - <descriptions_valuename>error_desc</descriptions_valuename> | |
| 880 | - <fields_valuename>error_column1</fields_valuename> | |
| 881 | - <codes_valuename>error_column2</codes_valuename> | |
| 882 | - <max_errors/> | |
| 883 | - <max_pct_errors/> | |
| 884 | - <min_pct_rows/> | |
| 885 | - </error> | |
| 886 | - </step_error_handling> | |
| 887 | - <slave-step-copy-partition-distribution> | |
| 888 | -</slave-step-copy-partition-distribution> | |
| 889 | - <slave_transformation>N</slave_transformation> | |
| 890 | - | |
| 891 | -</transformation> | |
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | +<transformation> | |
| 3 | + <info> | |
| 4 | + <name>employeesConfigDataInput</name> | |
| 5 | + <description>人员配置信息导入</description> | |
| 6 | + <extended_description>人员配置信息</extended_description> | |
| 7 | + <trans_version/> | |
| 8 | + <trans_type>Normal</trans_type> | |
| 9 | + <trans_status>0</trans_status> | |
| 10 | + <directory>/</directory> | |
| 11 | + <parameters> | |
| 12 | + <parameter> | |
| 13 | + <name>erroroutputdir</name> | |
| 14 | + <default_value/> | |
| 15 | + <description>ktr step配置的错误输出目录</description> | |
| 16 | + </parameter> | |
| 17 | + <parameter> | |
| 18 | + <name>filepath</name> | |
| 19 | + <default_value/> | |
| 20 | + <description>待处理导入的excel文件</description> | |
| 21 | + </parameter> | |
| 22 | + </parameters> | |
| 23 | + <log> | |
| 24 | +<trans-log-table><connection/> | |
| 25 | +<schema/> | |
| 26 | +<table/> | |
| 27 | +<size_limit_lines/> | |
| 28 | +<interval/> | |
| 29 | +<timeout_days/> | |
| 30 | +<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> | |
| 31 | +<perf-log-table><connection/> | |
| 32 | +<schema/> | |
| 33 | +<table/> | |
| 34 | +<interval/> | |
| 35 | +<timeout_days/> | |
| 36 | +<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> | |
| 37 | +<channel-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>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> | |
| 42 | +<step-log-table><connection/> | |
| 43 | +<schema/> | |
| 44 | +<table/> | |
| 45 | +<timeout_days/> | |
| 46 | +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>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> | |
| 47 | +<metrics-log-table><connection/> | |
| 48 | +<schema/> | |
| 49 | +<table/> | |
| 50 | +<timeout_days/> | |
| 51 | +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>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> | |
| 52 | + </log> | |
| 53 | + <maxdate> | |
| 54 | + <connection/> | |
| 55 | + <table/> | |
| 56 | + <field/> | |
| 57 | + <offset>0.0</offset> | |
| 58 | + <maxdiff>0.0</maxdiff> | |
| 59 | + </maxdate> | |
| 60 | + <size_rowset>10000</size_rowset> | |
| 61 | + <sleep_time_empty>50</sleep_time_empty> | |
| 62 | + <sleep_time_full>50</sleep_time_full> | |
| 63 | + <unique_connections>N</unique_connections> | |
| 64 | + <feedback_shown>Y</feedback_shown> | |
| 65 | + <feedback_size>50000</feedback_size> | |
| 66 | + <using_thread_priorities>Y</using_thread_priorities> | |
| 67 | + <shared_objects_file/> | |
| 68 | + <capture_step_performance>N</capture_step_performance> | |
| 69 | + <step_performance_capturing_delay>1000</step_performance_capturing_delay> | |
| 70 | + <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit> | |
| 71 | + <dependencies> | |
| 72 | + </dependencies> | |
| 73 | + <partitionschemas> | |
| 74 | + </partitionschemas> | |
| 75 | + <slaveservers> | |
| 76 | + </slaveservers> | |
| 77 | + <clusterschemas> | |
| 78 | + </clusterschemas> | |
| 79 | + <created_user>-</created_user> | |
| 80 | + <created_date>2016/06/29 15:12:27.273</created_date> | |
| 81 | + <modified_user>-</modified_user> | |
| 82 | + <modified_date>2016/06/29 15:12:27.273</modified_date> | |
| 83 | + <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA=</key_for_session_key> | |
| 84 | + <is_key_private>N</is_key_private> | |
| 85 | + </info> | |
| 86 | + <notepads> | |
| 87 | + <notepad> | |
| 88 | + <note>这里有些问题
在window2012的环境下,
MySql数据库查询中如果返回中文内容的字段,这个内容乱码
解决办法,就是数据库查询全部缓存,就不乱码
linux环境下没问题</note> | |
| 89 | + <xloc>101</xloc> | |
| 90 | + <yloc>264</yloc> | |
| 91 | + <width>333</width> | |
| 92 | + <heigth>90</heigth> | |
| 93 | + <fontname>YaHei Consolas Hybrid</fontname> | |
| 94 | + <fontsize>12</fontsize> | |
| 95 | + <fontbold>N</fontbold> | |
| 96 | + <fontitalic>N</fontitalic> | |
| 97 | + <fontcolorred>0</fontcolorred> | |
| 98 | + <fontcolorgreen>0</fontcolorgreen> | |
| 99 | + <fontcolorblue>0</fontcolorblue> | |
| 100 | + <backgroundcolorred>255</backgroundcolorred> | |
| 101 | + <backgroundcolorgreen>205</backgroundcolorgreen> | |
| 102 | + <backgroundcolorblue>112</backgroundcolorblue> | |
| 103 | + <bordercolorred>100</bordercolorred> | |
| 104 | + <bordercolorgreen>100</bordercolorgreen> | |
| 105 | + <bordercolorblue>100</bordercolorblue> | |
| 106 | + <drawshadow>Y</drawshadow> | |
| 107 | + </notepad> | |
| 108 | + </notepads> | |
| 109 | + <connection> | |
| 110 | + <name>bus_control_variable</name> | |
| 111 | + <server>${v_db_ip}</server> | |
| 112 | + <type>MYSQL</type> | |
| 113 | + <access>Native</access> | |
| 114 | + <database>${v_db_dname}</database> | |
| 115 | + <port>3306</port> | |
| 116 | + <username>${v_db_uname}</username> | |
| 117 | + <password>${v_db_pwd}</password> | |
| 118 | + <servername/> | |
| 119 | + <data_tablespace/> | |
| 120 | + <index_tablespace/> | |
| 121 | + <attributes> | |
| 122 | + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute> | |
| 123 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 124 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 125 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 126 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 127 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 128 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 129 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 130 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 131 | + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute> | |
| 132 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 133 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 134 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 135 | + </attributes> | |
| 136 | + </connection> | |
| 137 | + <connection> | |
| 138 | + <name>bus_control_公司_201</name> | |
| 139 | + <server>localhost</server> | |
| 140 | + <type>MYSQL</type> | |
| 141 | + <access>Native</access> | |
| 142 | + <database>control</database> | |
| 143 | + <port>3306</port> | |
| 144 | + <username>root</username> | |
| 145 | + <password>Encrypted </password> | |
| 146 | + <servername/> | |
| 147 | + <data_tablespace/> | |
| 148 | + <index_tablespace/> | |
| 149 | + <attributes> | |
| 150 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 151 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 152 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 153 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 154 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 155 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 156 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 157 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 158 | + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute> | |
| 159 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 160 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 161 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 162 | + </attributes> | |
| 163 | + </connection> | |
| 164 | + <connection> | |
| 165 | + <name>bus_control_本机</name> | |
| 166 | + <server>localhost</server> | |
| 167 | + <type>MYSQL</type> | |
| 168 | + <access>Native</access> | |
| 169 | + <database>control</database> | |
| 170 | + <port>3306</port> | |
| 171 | + <username>root</username> | |
| 172 | + <password>Encrypted </password> | |
| 173 | + <servername/> | |
| 174 | + <data_tablespace/> | |
| 175 | + <index_tablespace/> | |
| 176 | + <attributes> | |
| 177 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 178 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 179 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 180 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 181 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 182 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 183 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 184 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 185 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 186 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 187 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 188 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 189 | + </attributes> | |
| 190 | + </connection> | |
| 191 | + <connection> | |
| 192 | + <name>xlab_mysql_youle</name> | |
| 193 | + <server>101.231.124.8</server> | |
| 194 | + <type>MYSQL</type> | |
| 195 | + <access>Native</access> | |
| 196 | + <database>xlab_youle</database> | |
| 197 | + <port>45687</port> | |
| 198 | + <username>xlab-youle</username> | |
| 199 | + <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password> | |
| 200 | + <servername/> | |
| 201 | + <data_tablespace/> | |
| 202 | + <index_tablespace/> | |
| 203 | + <attributes> | |
| 204 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 205 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 206 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 207 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 208 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 209 | + <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute> | |
| 210 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 211 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 212 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 213 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 214 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 215 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 216 | + </attributes> | |
| 217 | + </connection> | |
| 218 | + <connection> | |
| 219 | + <name>xlab_mysql_youle(本机)</name> | |
| 220 | + <server>localhost</server> | |
| 221 | + <type>MYSQL</type> | |
| 222 | + <access>Native</access> | |
| 223 | + <database>xlab_youle</database> | |
| 224 | + <port>3306</port> | |
| 225 | + <username>root</username> | |
| 226 | + <password>Encrypted </password> | |
| 227 | + <servername/> | |
| 228 | + <data_tablespace/> | |
| 229 | + <index_tablespace/> | |
| 230 | + <attributes> | |
| 231 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 232 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 233 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 234 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 235 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 236 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 237 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 238 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 239 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 240 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 241 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 242 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 243 | + </attributes> | |
| 244 | + </connection> | |
| 245 | + <connection> | |
| 246 | + <name>xlab_youle</name> | |
| 247 | + <server/> | |
| 248 | + <type>MYSQL</type> | |
| 249 | + <access>JNDI</access> | |
| 250 | + <database>xlab_youle</database> | |
| 251 | + <port>1521</port> | |
| 252 | + <username/> | |
| 253 | + <password>Encrypted </password> | |
| 254 | + <servername/> | |
| 255 | + <data_tablespace/> | |
| 256 | + <index_tablespace/> | |
| 257 | + <attributes> | |
| 258 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 259 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 260 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 261 | + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | |
| 262 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 263 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 264 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 265 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 266 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 267 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 268 | + </attributes> | |
| 269 | + </connection> | |
| 270 | + <order> | |
| 271 | + <hop> <from>插入/更新bsth_c_s_ecinfo</from><to>错误输出</to><enabled>Y</enabled> </hop> | |
| 272 | + <hop> <from>获取变量</from><to>原始系统导出的Excel输入</to><enabled>Y</enabled> </hop> | |
| 273 | + <hop> <from>原始系统导出的Excel输入</from><to>启用被数据flag</to><enabled>Y</enabled> </hop> | |
| 274 | + <hop> <from>启用被数据flag</from><to>线路id查询</to><enabled>Y</enabled> </hop> | |
| 275 | + <hop> <from>线路id查询</from><to>过滤线路id为空记录</to><enabled>Y</enabled> </hop> | |
| 276 | + <hop> <from>过滤线路id为空记录</from><to>驾驶员id查找</to><enabled>Y</enabled> </hop> | |
| 277 | + <hop> <from>驾驶员id查找</from><to>过滤驾驶员id为空记录</to><enabled>Y</enabled> </hop> | |
| 278 | + <hop> <from>过滤驾驶员id为空记录</from><to>售票员id查找</to><enabled>Y</enabled> </hop> | |
| 279 | + <hop> <from>售票员id查找</from><to>插入/更新bsth_c_s_ecinfo</to><enabled>Y</enabled> </hop> | |
| 280 | + </order> | |
| 281 | + <step> | |
| 282 | + <name>原始系统导出的Excel输入</name> | |
| 283 | + <type>ExcelInput</type> | |
| 284 | + <description/> | |
| 285 | + <distribute>Y</distribute> | |
| 286 | + <custom_distribution/> | |
| 287 | + <copies>1</copies> | |
| 288 | + <partitioning> | |
| 289 | + <method>none</method> | |
| 290 | + <schema_name/> | |
| 291 | + </partitioning> | |
| 292 | + <header>Y</header> | |
| 293 | + <noempty>Y</noempty> | |
| 294 | + <stoponempty>N</stoponempty> | |
| 295 | + <filefield/> | |
| 296 | + <sheetfield/> | |
| 297 | + <sheetrownumfield/> | |
| 298 | + <rownumfield/> | |
| 299 | + <sheetfield/> | |
| 300 | + <filefield/> | |
| 301 | + <limit>0</limit> | |
| 302 | + <encoding/> | |
| 303 | + <add_to_result_filenames>Y</add_to_result_filenames> | |
| 304 | + <accept_filenames>Y</accept_filenames> | |
| 305 | + <accept_field>filepath_</accept_field> | |
| 306 | + <accept_stepname>获取变量</accept_stepname> | |
| 307 | + <file> | |
| 308 | + <name/> | |
| 309 | + <filemask/> | |
| 310 | + <exclude_filemask/> | |
| 311 | + <file_required>N</file_required> | |
| 312 | + <include_subfolders>N</include_subfolders> | |
| 313 | + </file> | |
| 314 | + <fields> | |
| 315 | + <field> | |
| 316 | + <name>线路</name> | |
| 317 | + <type>String</type> | |
| 318 | + <length>-1</length> | |
| 319 | + <precision>-1</precision> | |
| 320 | + <trim_type>none</trim_type> | |
| 321 | + <repeat>N</repeat> | |
| 322 | + <format/> | |
| 323 | + <currency/> | |
| 324 | + <decimal/> | |
| 325 | + <group/> | |
| 326 | + </field> | |
| 327 | + <field> | |
| 328 | + <name>搭班编码</name> | |
| 329 | + <type>String</type> | |
| 330 | + <length>-1</length> | |
| 331 | + <precision>-1</precision> | |
| 332 | + <trim_type>none</trim_type> | |
| 333 | + <repeat>N</repeat> | |
| 334 | + <format>#</format> | |
| 335 | + <currency/> | |
| 336 | + <decimal/> | |
| 337 | + <group/> | |
| 338 | + </field> | |
| 339 | + <field> | |
| 340 | + <name>驾驶员工号</name> | |
| 341 | + <type>String</type> | |
| 342 | + <length>-1</length> | |
| 343 | + <precision>-1</precision> | |
| 344 | + <trim_type>none</trim_type> | |
| 345 | + <repeat>N</repeat> | |
| 346 | + <format>#</format> | |
| 347 | + <currency/> | |
| 348 | + <decimal/> | |
| 349 | + <group/> | |
| 350 | + </field> | |
| 351 | + <field> | |
| 352 | + <name>驾驶员</name> | |
| 353 | + <type>String</type> | |
| 354 | + <length>-1</length> | |
| 355 | + <precision>-1</precision> | |
| 356 | + <trim_type>none</trim_type> | |
| 357 | + <repeat>N</repeat> | |
| 358 | + <format/> | |
| 359 | + <currency/> | |
| 360 | + <decimal/> | |
| 361 | + <group/> | |
| 362 | + </field> | |
| 363 | + <field> | |
| 364 | + <name>售票员工号</name> | |
| 365 | + <type>String</type> | |
| 366 | + <length>-1</length> | |
| 367 | + <precision>-1</precision> | |
| 368 | + <trim_type>none</trim_type> | |
| 369 | + <repeat>N</repeat> | |
| 370 | + <format>#</format> | |
| 371 | + <currency/> | |
| 372 | + <decimal/> | |
| 373 | + <group/> | |
| 374 | + </field> | |
| 375 | + <field> | |
| 376 | + <name>售票员</name> | |
| 377 | + <type>String</type> | |
| 378 | + <length>-1</length> | |
| 379 | + <precision>-1</precision> | |
| 380 | + <trim_type>none</trim_type> | |
| 381 | + <repeat>N</repeat> | |
| 382 | + <format/> | |
| 383 | + <currency/> | |
| 384 | + <decimal/> | |
| 385 | + <group/> | |
| 386 | + </field> | |
| 387 | + </fields> | |
| 388 | + <sheets> | |
| 389 | + <sheet> | |
| 390 | + <name>工作表1</name> | |
| 391 | + <startrow>0</startrow> | |
| 392 | + <startcol>0</startcol> | |
| 393 | + </sheet> | |
| 394 | + </sheets> | |
| 395 | + <strict_types>N</strict_types> | |
| 396 | + <error_ignored>N</error_ignored> | |
| 397 | + <error_line_skipped>N</error_line_skipped> | |
| 398 | + <bad_line_files_destination_directory/> | |
| 399 | + <bad_line_files_extension>warning</bad_line_files_extension> | |
| 400 | + <error_line_files_destination_directory/> | |
| 401 | + <error_line_files_extension>error</error_line_files_extension> | |
| 402 | + <line_number_files_destination_directory/> | |
| 403 | + <line_number_files_extension>line</line_number_files_extension> | |
| 404 | + <shortFileFieldName/> | |
| 405 | + <pathFieldName/> | |
| 406 | + <hiddenFieldName/> | |
| 407 | + <lastModificationTimeFieldName/> | |
| 408 | + <uriNameFieldName/> | |
| 409 | + <rootUriNameFieldName/> | |
| 410 | + <extensionFieldName/> | |
| 411 | + <sizeFieldName/> | |
| 412 | + <spreadsheet_type>JXL</spreadsheet_type> | |
| 413 | + <cluster_schema/> | |
| 414 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 415 | + <xloc>93</xloc> | |
| 416 | + <yloc>51</yloc> | |
| 417 | + <draw>Y</draw> | |
| 418 | + </GUI> | |
| 419 | + </step> | |
| 420 | + | |
| 421 | + <step> | |
| 422 | + <name>启用被数据flag</name> | |
| 423 | + <type>Constant</type> | |
| 424 | + <description/> | |
| 425 | + <distribute>Y</distribute> | |
| 426 | + <custom_distribution/> | |
| 427 | + <copies>1</copies> | |
| 428 | + <partitioning> | |
| 429 | + <method>none</method> | |
| 430 | + <schema_name/> | |
| 431 | + </partitioning> | |
| 432 | + <fields> | |
| 433 | + <field> | |
| 434 | + <name>isCancel</name> | |
| 435 | + <type>Integer</type> | |
| 436 | + <format/> | |
| 437 | + <currency/> | |
| 438 | + <decimal/> | |
| 439 | + <group/> | |
| 440 | + <nullif>0</nullif> | |
| 441 | + <length>-1</length> | |
| 442 | + <precision>-1</precision> | |
| 443 | + <set_empty_string>N</set_empty_string> | |
| 444 | + </field> | |
| 445 | + </fields> | |
| 446 | + <cluster_schema/> | |
| 447 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 448 | + <xloc>225</xloc> | |
| 449 | + <yloc>53</yloc> | |
| 450 | + <draw>Y</draw> | |
| 451 | + </GUI> | |
| 452 | + </step> | |
| 453 | + | |
| 454 | + <step> | |
| 455 | + <name>售票员id查找</name> | |
| 456 | + <type>DBJoin</type> | |
| 457 | + <description/> | |
| 458 | + <distribute>Y</distribute> | |
| 459 | + <custom_distribution/> | |
| 460 | + <copies>1</copies> | |
| 461 | + <partitioning> | |
| 462 | + <method>none</method> | |
| 463 | + <schema_name/> | |
| 464 | + </partitioning> | |
| 465 | + <connection>bus_control_variable</connection> | |
| 466 | + <rowlimit>1</rowlimit> | |
| 467 | + <sql>select id as sid from bsth_c_personnel
where job_code = ? and personnel_name = ?</sql> | |
| 468 | + <outer_join>Y</outer_join> | |
| 469 | + <replace_vars>N</replace_vars> | |
| 470 | + <parameter> | |
| 471 | + <field> | |
| 472 | + <name>售票员工号</name> | |
| 473 | + <type>String</type> | |
| 474 | + </field> | |
| 475 | + <field> | |
| 476 | + <name>售票员</name> | |
| 477 | + <type>String</type> | |
| 478 | + </field> | |
| 479 | + </parameter> | |
| 480 | + <cluster_schema/> | |
| 481 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 482 | + <xloc>673</xloc> | |
| 483 | + <yloc>47</yloc> | |
| 484 | + <draw>Y</draw> | |
| 485 | + </GUI> | |
| 486 | + </step> | |
| 487 | + | |
| 488 | + <step> | |
| 489 | + <name>插入/更新bsth_c_s_ecinfo</name> | |
| 490 | + <type>InsertUpdate</type> | |
| 491 | + <description/> | |
| 492 | + <distribute>Y</distribute> | |
| 493 | + <custom_distribution/> | |
| 494 | + <copies>1</copies> | |
| 495 | + <partitioning> | |
| 496 | + <method>none</method> | |
| 497 | + <schema_name/> | |
| 498 | + </partitioning> | |
| 499 | + <connection>bus_control_variable</connection> | |
| 500 | + <commit>100</commit> | |
| 501 | + <update_bypassed>N</update_bypassed> | |
| 502 | + <lookup> | |
| 503 | + <schema/> | |
| 504 | + <table>bsth_c_s_ecinfo</table> | |
| 505 | + <key> | |
| 506 | + <name>xlid</name> | |
| 507 | + <field>xl</field> | |
| 508 | + <condition>=</condition> | |
| 509 | + <name2/> | |
| 510 | + </key> | |
| 511 | + <key> | |
| 512 | + <name>搭班编码</name> | |
| 513 | + <field>dbbm</field> | |
| 514 | + <condition>=</condition> | |
| 515 | + <name2/> | |
| 516 | + </key> | |
| 517 | + <value> | |
| 518 | + <name>xl</name> | |
| 519 | + <rename>xlid</rename> | |
| 520 | + <update>Y</update> | |
| 521 | + </value> | |
| 522 | + <value> | |
| 523 | + <name>dbbm</name> | |
| 524 | + <rename>搭班编码</rename> | |
| 525 | + <update>Y</update> | |
| 526 | + </value> | |
| 527 | + <value> | |
| 528 | + <name>jsy</name> | |
| 529 | + <rename>jid</rename> | |
| 530 | + <update>Y</update> | |
| 531 | + </value> | |
| 532 | + <value> | |
| 533 | + <name>spy</name> | |
| 534 | + <rename>sid</rename> | |
| 535 | + <update>Y</update> | |
| 536 | + </value> | |
| 537 | + <value> | |
| 538 | + <name>is_cancel</name> | |
| 539 | + <rename>isCancel</rename> | |
| 540 | + <update>Y</update> | |
| 541 | + </value> | |
| 542 | + </lookup> | |
| 543 | + <cluster_schema/> | |
| 544 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 545 | + <xloc>676</xloc> | |
| 546 | + <yloc>200</yloc> | |
| 547 | + <draw>Y</draw> | |
| 548 | + </GUI> | |
| 549 | + </step> | |
| 550 | + | |
| 551 | + <step> | |
| 552 | + <name>线路id查询</name> | |
| 553 | + <type>DBLookup</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 | + <connection>bus_control_variable</connection> | |
| 563 | + <cache>Y</cache> | |
| 564 | + <cache_load_all>Y</cache_load_all> | |
| 565 | + <cache_size>0</cache_size> | |
| 566 | + <lookup> | |
| 567 | + <schema/> | |
| 568 | + <table>bsth_c_line</table> | |
| 569 | + <orderby/> | |
| 570 | + <fail_on_multiple>N</fail_on_multiple> | |
| 571 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 572 | + <key> | |
| 573 | + <name>线路</name> | |
| 574 | + <field>name</field> | |
| 575 | + <condition>=</condition> | |
| 576 | + <name2/> | |
| 577 | + </key> | |
| 578 | + <key> | |
| 579 | + <name>isCancel</name> | |
| 580 | + <field>destroy</field> | |
| 581 | + <condition>=</condition> | |
| 582 | + <name2/> | |
| 583 | + </key> | |
| 584 | + <value> | |
| 585 | + <name>id</name> | |
| 586 | + <rename>xlid</rename> | |
| 587 | + <default/> | |
| 588 | + <type>Integer</type> | |
| 589 | + </value> | |
| 590 | + </lookup> | |
| 591 | + <cluster_schema/> | |
| 592 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 593 | + <xloc>397</xloc> | |
| 594 | + <yloc>144</yloc> | |
| 595 | + <draw>Y</draw> | |
| 596 | + </GUI> | |
| 597 | + </step> | |
| 598 | + | |
| 599 | + <step> | |
| 600 | + <name>获取变量</name> | |
| 601 | + <type>GetVariable</type> | |
| 602 | + <description/> | |
| 603 | + <distribute>Y</distribute> | |
| 604 | + <custom_distribution/> | |
| 605 | + <copies>1</copies> | |
| 606 | + <partitioning> | |
| 607 | + <method>none</method> | |
| 608 | + <schema_name/> | |
| 609 | + </partitioning> | |
| 610 | + <fields> | |
| 611 | + <field> | |
| 612 | + <name>filepath_</name> | |
| 613 | + <variable>${filepath}</variable> | |
| 614 | + <type>String</type> | |
| 615 | + <format/> | |
| 616 | + <currency/> | |
| 617 | + <decimal/> | |
| 618 | + <group/> | |
| 619 | + <length>-1</length> | |
| 620 | + <precision>-1</precision> | |
| 621 | + <trim_type>none</trim_type> | |
| 622 | + </field> | |
| 623 | + <field> | |
| 624 | + <name>erroroutputdir_</name> | |
| 625 | + <variable>${erroroutputdir}</variable> | |
| 626 | + <type>String</type> | |
| 627 | + <format/> | |
| 628 | + <currency/> | |
| 629 | + <decimal/> | |
| 630 | + <group/> | |
| 631 | + <length>-1</length> | |
| 632 | + <precision>-1</precision> | |
| 633 | + <trim_type>none</trim_type> | |
| 634 | + </field> | |
| 635 | + </fields> | |
| 636 | + <cluster_schema/> | |
| 637 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 638 | + <xloc>94</xloc> | |
| 639 | + <yloc>178</yloc> | |
| 640 | + <draw>Y</draw> | |
| 641 | + </GUI> | |
| 642 | + </step> | |
| 643 | + | |
| 644 | + <step> | |
| 645 | + <name>过滤线路id为空记录</name> | |
| 646 | + <type>FilterRows</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 | +<send_true_to/> | |
| 656 | +<send_false_to/> | |
| 657 | + <compare> | |
| 658 | +<condition> | |
| 659 | + <negated>N</negated> | |
| 660 | + <leftvalue>xlid</leftvalue> | |
| 661 | + <function>IS NOT NULL</function> | |
| 662 | + <rightvalue/> | |
| 663 | + </condition> | |
| 664 | + </compare> | |
| 665 | + <cluster_schema/> | |
| 666 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 667 | + <xloc>395</xloc> | |
| 668 | + <yloc>49</yloc> | |
| 669 | + <draw>Y</draw> | |
| 670 | + </GUI> | |
| 671 | + </step> | |
| 672 | + | |
| 673 | + <step> | |
| 674 | + <name>过滤驾驶员id为空记录</name> | |
| 675 | + <type>FilterRows</type> | |
| 676 | + <description/> | |
| 677 | + <distribute>Y</distribute> | |
| 678 | + <custom_distribution/> | |
| 679 | + <copies>1</copies> | |
| 680 | + <partitioning> | |
| 681 | + <method>none</method> | |
| 682 | + <schema_name/> | |
| 683 | + </partitioning> | |
| 684 | +<send_true_to>售票员id查找</send_true_to> | |
| 685 | +<send_false_to/> | |
| 686 | + <compare> | |
| 687 | +<condition> | |
| 688 | + <negated>N</negated> | |
| 689 | + <leftvalue>jid</leftvalue> | |
| 690 | + <function>IS NOT NULL</function> | |
| 691 | + <rightvalue/> | |
| 692 | + </condition> | |
| 693 | + </compare> | |
| 694 | + <cluster_schema/> | |
| 695 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 696 | + <xloc>538</xloc> | |
| 697 | + <yloc>47</yloc> | |
| 698 | + <draw>Y</draw> | |
| 699 | + </GUI> | |
| 700 | + </step> | |
| 701 | + | |
| 702 | + <step> | |
| 703 | + <name>错误输出</name> | |
| 704 | + <type>ExcelOutput</type> | |
| 705 | + <description/> | |
| 706 | + <distribute>Y</distribute> | |
| 707 | + <custom_distribution/> | |
| 708 | + <copies>1</copies> | |
| 709 | + <partitioning> | |
| 710 | + <method>none</method> | |
| 711 | + <schema_name/> | |
| 712 | + </partitioning> | |
| 713 | + <header>Y</header> | |
| 714 | + <footer>N</footer> | |
| 715 | + <encoding>UTF-8</encoding> | |
| 716 | + <append>N</append> | |
| 717 | + <add_to_result_filenames>Y</add_to_result_filenames> | |
| 718 | + <file> | |
| 719 | + <name>${erroroutputdir}/人员配置_错误</name> | |
| 720 | + <extention>xls</extention> | |
| 721 | + <do_not_open_newfile_init>N</do_not_open_newfile_init> | |
| 722 | + <create_parent_folder>N</create_parent_folder> | |
| 723 | + <split>N</split> | |
| 724 | + <add_date>N</add_date> | |
| 725 | + <add_time>N</add_time> | |
| 726 | + <SpecifyFormat>N</SpecifyFormat> | |
| 727 | + <date_time_format/> | |
| 728 | + <sheetname>Sheet1</sheetname> | |
| 729 | + <autosizecolums>N</autosizecolums> | |
| 730 | + <nullisblank>N</nullisblank> | |
| 731 | + <protect_sheet>N</protect_sheet> | |
| 732 | + <password>Encrypted </password> | |
| 733 | + <splitevery>0</splitevery> | |
| 734 | + <usetempfiles>N</usetempfiles> | |
| 735 | + <tempdirectory/> | |
| 736 | + </file> | |
| 737 | + <template> | |
| 738 | + <enabled>N</enabled> | |
| 739 | + <append>N</append> | |
| 740 | + <filename>template.xls</filename> | |
| 741 | + </template> | |
| 742 | + <fields> | |
| 743 | + <field> | |
| 744 | + <name>线路</name> | |
| 745 | + <type>String</type> | |
| 746 | + <format/> | |
| 747 | + </field> | |
| 748 | + <field> | |
| 749 | + <name>搭班编码</name> | |
| 750 | + <type>String</type> | |
| 751 | + <format/> | |
| 752 | + </field> | |
| 753 | + <field> | |
| 754 | + <name>驾驶员工号</name> | |
| 755 | + <type>String</type> | |
| 756 | + <format/> | |
| 757 | + </field> | |
| 758 | + <field> | |
| 759 | + <name>驾驶员</name> | |
| 760 | + <type>String</type> | |
| 761 | + <format/> | |
| 762 | + </field> | |
| 763 | + <field> | |
| 764 | + <name>售票员工号</name> | |
| 765 | + <type>String</type> | |
| 766 | + <format/> | |
| 767 | + </field> | |
| 768 | + <field> | |
| 769 | + <name>售票员</name> | |
| 770 | + <type>String</type> | |
| 771 | + <format/> | |
| 772 | + </field> | |
| 773 | + <field> | |
| 774 | + <name>isCancel</name> | |
| 775 | + <type>Integer</type> | |
| 776 | + <format/> | |
| 777 | + </field> | |
| 778 | + <field> | |
| 779 | + <name>xlid</name> | |
| 780 | + <type>Integer</type> | |
| 781 | + <format/> | |
| 782 | + </field> | |
| 783 | + <field> | |
| 784 | + <name>jid</name> | |
| 785 | + <type>Integer</type> | |
| 786 | + <format/> | |
| 787 | + </field> | |
| 788 | + <field> | |
| 789 | + <name>sid</name> | |
| 790 | + <type>Integer</type> | |
| 791 | + <format/> | |
| 792 | + </field> | |
| 793 | + <field> | |
| 794 | + <name>error_count</name> | |
| 795 | + <type>Integer</type> | |
| 796 | + <format/> | |
| 797 | + </field> | |
| 798 | + <field> | |
| 799 | + <name>error_desc</name> | |
| 800 | + <type>String</type> | |
| 801 | + <format/> | |
| 802 | + </field> | |
| 803 | + <field> | |
| 804 | + <name>error_column1</name> | |
| 805 | + <type>String</type> | |
| 806 | + <format/> | |
| 807 | + </field> | |
| 808 | + <field> | |
| 809 | + <name>error_column2</name> | |
| 810 | + <type>String</type> | |
| 811 | + <format/> | |
| 812 | + </field> | |
| 813 | + </fields> | |
| 814 | + <custom> | |
| 815 | + <header_font_name>arial</header_font_name> | |
| 816 | + <header_font_size>10</header_font_size> | |
| 817 | + <header_font_bold>N</header_font_bold> | |
| 818 | + <header_font_italic>N</header_font_italic> | |
| 819 | + <header_font_underline>no</header_font_underline> | |
| 820 | + <header_font_orientation>horizontal</header_font_orientation> | |
| 821 | + <header_font_color>black</header_font_color> | |
| 822 | + <header_background_color>none</header_background_color> | |
| 823 | + <header_row_height>255</header_row_height> | |
| 824 | + <header_alignment>left</header_alignment> | |
| 825 | + <header_image/> | |
| 826 | + <row_font_name>arial</row_font_name> | |
| 827 | + <row_font_size>10</row_font_size> | |
| 828 | + <row_font_color>black</row_font_color> | |
| 829 | + <row_background_color>none</row_background_color> | |
| 830 | + </custom> | |
| 831 | + <cluster_schema/> | |
| 832 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 833 | + <xloc>676</xloc> | |
| 834 | + <yloc>323</yloc> | |
| 835 | + <draw>Y</draw> | |
| 836 | + </GUI> | |
| 837 | + </step> | |
| 838 | + | |
| 839 | + <step> | |
| 840 | + <name>驾驶员id查找</name> | |
| 841 | + <type>DBJoin</type> | |
| 842 | + <description/> | |
| 843 | + <distribute>Y</distribute> | |
| 844 | + <custom_distribution/> | |
| 845 | + <copies>1</copies> | |
| 846 | + <partitioning> | |
| 847 | + <method>none</method> | |
| 848 | + <schema_name/> | |
| 849 | + </partitioning> | |
| 850 | + <connection>bus_control_variable</connection> | |
| 851 | + <rowlimit>1</rowlimit> | |
| 852 | + <sql>select id as jid from bsth_c_personnel
where job_code = ? and personnel_name = ?</sql> | |
| 853 | + <outer_join>Y</outer_join> | |
| 854 | + <replace_vars>N</replace_vars> | |
| 855 | + <parameter> | |
| 856 | + <field> | |
| 857 | + <name>驾驶员工号</name> | |
| 858 | + <type>String</type> | |
| 859 | + </field> | |
| 860 | + <field> | |
| 861 | + <name>驾驶员</name> | |
| 862 | + <type>String</type> | |
| 863 | + </field> | |
| 864 | + </parameter> | |
| 865 | + <cluster_schema/> | |
| 866 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 867 | + <xloc>537</xloc> | |
| 868 | + <yloc>143</yloc> | |
| 869 | + <draw>Y</draw> | |
| 870 | + </GUI> | |
| 871 | + </step> | |
| 872 | + | |
| 873 | + <step_error_handling> | |
| 874 | + <error> | |
| 875 | + <source_step>插入/更新bsth_c_s_ecinfo</source_step> | |
| 876 | + <target_step>错误输出</target_step> | |
| 877 | + <is_enabled>Y</is_enabled> | |
| 878 | + <nr_valuename>error_count</nr_valuename> | |
| 879 | + <descriptions_valuename>error_desc</descriptions_valuename> | |
| 880 | + <fields_valuename>error_column1</fields_valuename> | |
| 881 | + <codes_valuename>error_column2</codes_valuename> | |
| 882 | + <max_errors/> | |
| 883 | + <max_pct_errors/> | |
| 884 | + <min_pct_rows/> | |
| 885 | + </error> | |
| 886 | + </step_error_handling> | |
| 887 | + <slave-step-copy-partition-distribution> | |
| 888 | +</slave-step-copy-partition-distribution> | |
| 889 | + <slave_transformation>N</slave_transformation> | |
| 890 | + | |
| 891 | +</transformation> | ... | ... |
src/main/resources/datatools/ktrs/ttinfodetailDataInput.ktr
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<transformation> | |
| 3 | - <info> | |
| 4 | - <name>时刻表明细导入</name> | |
| 5 | - <description>时刻表明细信息导入</description> | |
| 6 | - <extended_description>时刻表明细信息</extended_description> | |
| 7 | - <trans_version/> | |
| 8 | - <trans_type>Normal</trans_type> | |
| 9 | - <trans_status>0</trans_status> | |
| 10 | - <directory>/</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/06/30 12:21:57.536</created_date> | |
| 71 | - <modified_user>-</modified_user> | |
| 72 | - <modified_date>2016/06/30 12:21:57.536</modified_date> | |
| 73 | - <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA=</key_for_session_key> | |
| 74 | - <is_key_private>N</is_key_private> | |
| 75 | - </info> | |
| 76 | - <notepads> | |
| 77 | - <notepad> | |
| 78 | - <note>字典表对应(以后直接查找表 bsth_c_sys_dictionary)
类型 代码 名称
LineTrend 0 上行
LineTrend 1 下行
ScheduleType normal 正常班次
ScheduleType out 出场
ScheduleType in 进场
ScheduleType temp 临加
ScheduleType region 区间
ScheduleType venting 放空
ScheduleType major 放大站</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>因为时刻表输入格式不确定性,主要因为表结构是反范式化的,
所以需要外部动态指定愿数据,头三个step动态指定愿数据

</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>这里有些问题
在window2012的环境下,
MySql数据库查询中如果返回中文内容的字段,这个内容乱码
解决办法,就是数据库查询全部缓存,就不乱码
linux环境下没问题</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>出场班次,方向有时确定不准,
空的情况下设定为0(上行)</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>进场班次,方向有时确定不准,
空的情况下设定为0(上行)</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>bus_control_variable</name> | |
| 185 | - <server>${v_db_ip}</server> | |
| 186 | - <type>MYSQL</type> | |
| 187 | - <access>Native</access> | |
| 188 | - <database>${v_db_dname}</database> | |
| 189 | - <port>3306</port> | |
| 190 | - <username>${v_db_uname}</username> | |
| 191 | - <password>${v_db_pwd}</password> | |
| 192 | - <servername/> | |
| 193 | - <data_tablespace/> | |
| 194 | - <index_tablespace/> | |
| 195 | - <attributes> | |
| 196 | - <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute> | |
| 197 | - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 198 | - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 199 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 200 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 201 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 202 | - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 203 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 204 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 205 | - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute> | |
| 206 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 207 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 208 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 209 | - </attributes> | |
| 210 | - </connection> | |
| 211 | - <connection> | |
| 212 | - <name>bus_control_公司_201</name> | |
| 213 | - <server>localhost</server> | |
| 214 | - <type>MYSQL</type> | |
| 215 | - <access>Native</access> | |
| 216 | - <database>control</database> | |
| 217 | - <port>3306</port> | |
| 218 | - <username>root</username> | |
| 219 | - <password>Encrypted </password> | |
| 220 | - <servername/> | |
| 221 | - <data_tablespace/> | |
| 222 | - <index_tablespace/> | |
| 223 | - <attributes> | |
| 224 | - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 225 | - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 226 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 227 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 228 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 229 | - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 230 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 231 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 232 | - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute> | |
| 233 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 234 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 235 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 236 | - </attributes> | |
| 237 | - </connection> | |
| 238 | - <connection> | |
| 239 | - <name>bus_control_本机</name> | |
| 240 | - <server>localhost</server> | |
| 241 | - <type>MYSQL</type> | |
| 242 | - <access>Native</access> | |
| 243 | - <database>control</database> | |
| 244 | - <port>3306</port> | |
| 245 | - <username>root</username> | |
| 246 | - <password>Encrypted </password> | |
| 247 | - <servername/> | |
| 248 | - <data_tablespace/> | |
| 249 | - <index_tablespace/> | |
| 250 | - <attributes> | |
| 251 | - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 252 | - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 253 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 254 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 255 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 256 | - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 257 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 258 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 259 | - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 260 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 261 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 262 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 263 | - </attributes> | |
| 264 | - </connection> | |
| 265 | - <connection> | |
| 266 | - <name>xlab_mysql_youle</name> | |
| 267 | - <server>101.231.124.8</server> | |
| 268 | - <type>MYSQL</type> | |
| 269 | - <access>Native</access> | |
| 270 | - <database>xlab_youle</database> | |
| 271 | - <port>45687</port> | |
| 272 | - <username>xlab-youle</username> | |
| 273 | - <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password> | |
| 274 | - <servername/> | |
| 275 | - <data_tablespace/> | |
| 276 | - <index_tablespace/> | |
| 277 | - <attributes> | |
| 278 | - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 279 | - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 280 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 281 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 282 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 283 | - <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute> | |
| 284 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 285 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 286 | - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 287 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 288 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 289 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 290 | - </attributes> | |
| 291 | - </connection> | |
| 292 | - <connection> | |
| 293 | - <name>xlab_mysql_youle(本机)</name> | |
| 294 | - <server>localhost</server> | |
| 295 | - <type>MYSQL</type> | |
| 296 | - <access>Native</access> | |
| 297 | - <database>xlab_youle</database> | |
| 298 | - <port>3306</port> | |
| 299 | - <username>root</username> | |
| 300 | - <password>Encrypted </password> | |
| 301 | - <servername/> | |
| 302 | - <data_tablespace/> | |
| 303 | - <index_tablespace/> | |
| 304 | - <attributes> | |
| 305 | - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 306 | - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 307 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 308 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 309 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 310 | - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 311 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 312 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 313 | - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 314 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 315 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 316 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 317 | - </attributes> | |
| 318 | - </connection> | |
| 319 | - <connection> | |
| 320 | - <name>xlab_youle</name> | |
| 321 | - <server/> | |
| 322 | - <type>MYSQL</type> | |
| 323 | - <access>JNDI</access> | |
| 324 | - <database>xlab_youle</database> | |
| 325 | - <port>1521</port> | |
| 326 | - <username/> | |
| 327 | - <password>Encrypted </password> | |
| 328 | - <servername/> | |
| 329 | - <data_tablespace/> | |
| 330 | - <index_tablespace/> | |
| 331 | - <attributes> | |
| 332 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 333 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 334 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 335 | - <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | |
| 336 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 337 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 338 | - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 339 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 340 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 341 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 342 | - </attributes> | |
| 343 | - </connection> | |
| 344 | - <order> | |
| 345 | - <hop> <from>时刻表明细信息Excel输入</from><to>班次数据范式化</to><enabled>Y</enabled> </hop> | |
| 346 | - <hop> <from>添加发车顺序号</from><to>过滤记录(发车时间为空)</to><enabled>Y</enabled> </hop> | |
| 347 | - <hop> <from>过滤记录(发车时间为空)</from><to>添加对应班次数</to><enabled>Y</enabled> </hop> | |
| 348 | - <hop> <from>添加对应班次数</from><to>处理数据</to><enabled>Y</enabled> </hop> | |
| 349 | - <hop> <from>处理数据</from><to>分组各个路牌的站</to><enabled>Y</enabled> </hop> | |
| 350 | - <hop> <from>查找时刻表基础信息关联</from><to>查找路牌关联</to><enabled>Y</enabled> </hop> | |
| 351 | - <hop> <from>查找线路关联</from><to>查找时刻表基础信息关联</to><enabled>Y</enabled> </hop> | |
| 352 | - <hop> <from>上下行字典</from><to>班次类型字典</to><enabled>Y</enabled> </hop> | |
| 353 | - <hop> <from>上下行字典 2</from><to>班次类型字典 2</to><enabled>Y</enabled> </hop> | |
| 354 | - <hop> <from>上下行字典 3</from><to>班次类型字典 3</to><enabled>Y</enabled> </hop> | |
| 355 | - <hop> <from>匹配上下行正常班次里程时间</from><to>类型修正</to><enabled>Y</enabled> </hop> | |
| 356 | - <hop> <from>按照班次类型过滤数据1</from><to>按照班次类型过滤数据2</to><enabled>Y</enabled> </hop> | |
| 357 | - <hop> <from>按照班次类型过滤数据1</from><to>正常班次数据</to><enabled>Y</enabled> </hop> | |
| 358 | - <hop> <from>按照班次类型过滤数据2</from><to>出场班次数据</to><enabled>Y</enabled> </hop> | |
| 359 | - <hop> <from>按照班次类型过滤数据2</from><to>进场班次数据</to><enabled>Y</enabled> </hop> | |
| 360 | - <hop> <from>查找线路上下行里程时间</from><to>匹配上下行正常班次里程时间</to><enabled>Y</enabled> </hop> | |
| 361 | - <hop> <from>查找终点站关联</from><to>上下行字典</to><enabled>Y</enabled> </hop> | |
| 362 | - <hop> <from>查找起点站关联并确定上下行</from><to>查找终点站关联</to><enabled>Y</enabled> </hop> | |
| 363 | - <hop> <from>正常班次_处理数据</from><to>查找起点站关联并确定上下行</to><enabled>Y</enabled> </hop> | |
| 364 | - <hop> <from>正常班次数据</from><to>正常班次_处理数据</to><enabled>Y</enabled> </hop> | |
| 365 | - <hop> <from>班次类型字典</from><to>查找线路上下行里程时间</to><enabled>Y</enabled> </hop> | |
| 366 | - <hop> <from>班次类型字典 2</from><to>查找线路出场里程时间</to><enabled>Y</enabled> </hop> | |
| 367 | - <hop> <from>班次类型字典 3</from><to>查找线路进场里程时间</to><enabled>Y</enabled> </hop> | |
| 368 | - <hop> <from>查找路牌关联</from><to>计算班次类型</to><enabled>Y</enabled> </hop> | |
| 369 | - <hop> <from>计算班次类型</from><to>按照班次类型过滤数据1</to><enabled>Y</enabled> </hop> | |
| 370 | - <hop> <from>出场班次数据</from><to>查找停车场1</to><enabled>Y</enabled> </hop> | |
| 371 | - <hop> <from>查找停车场1</from><to>出场班次_确定终点站名字</to><enabled>Y</enabled> </hop> | |
| 372 | - <hop> <from>出场班次_确定终点站名字</from><to>查找出场终点站关联并确定上下行</to><enabled>Y</enabled> </hop> | |
| 373 | - <hop> <from>查找出场终点站关联并确定上下行</from><to>上下行字典 2</to><enabled>Y</enabled> </hop> | |
| 374 | - <hop> <from>进场班次数据</from><to>查找停车场2</to><enabled>Y</enabled> </hop> | |
| 375 | - <hop> <from>查找停车场2</from><to>进场班次_确定起点站名字</to><enabled>Y</enabled> </hop> | |
| 376 | - <hop> <from>进场班次_确定起点站名字</from><to>查找进场班次上一个班次的线路方向</to><enabled>Y</enabled> </hop> | |
| 377 | - <hop> <from>查找进场班次上一个班次的线路方向</from><to>查找进场班次上一个班次的终点站,并作为进场班次的起点站</to><enabled>Y</enabled> </hop> | |
| 378 | - <hop> <from>字段选择</from><to>添加发车顺序号</to><enabled>Y</enabled> </hop> | |
| 379 | - <hop> <from>分组各个路牌的站</from><to>查找线路关联</to><enabled>Y</enabled> </hop> | |
| 380 | - <hop> <from>增加时刻表名字,线路名字,停车场名字</from><to>记录关联 (笛卡尔输出)</to><enabled>Y</enabled> </hop> | |
| 381 | - <hop> <from>班次数据范式化</from><to>记录关联 (笛卡尔输出)</to><enabled>Y</enabled> </hop> | |
| 382 | - <hop> <from>记录关联 (笛卡尔输出)</from><to>字段选择</to><enabled>Y</enabled> </hop> | |
| 383 | - <hop> <from>类型修正</from><to>插入/更新bsth_c_s_ttinfo_detail</to><enabled>Y</enabled> </hop> | |
| 384 | - <hop> <from>查找进场班次上一个班次的终点站,并作为进场班次的起点站</from><to>查找进场起点站关联确定上下行</to><enabled>Y</enabled> </hop> | |
| 385 | - <hop> <from>查找进场起点站关联确定上下行</from><to>上下行字典 3</to><enabled>Y</enabled> </hop> | |
| 386 | - <hop> <from>查找线路出场里程时间</from><to>匹配出场班次里程时间</to><enabled>Y</enabled> </hop> | |
| 387 | - <hop> <from>查找线路进场里程时间</from><to>匹配进场班次里程时间</to><enabled>Y</enabled> </hop> | |
| 388 | - <hop> <from>匹配出场班次里程时间</from><to>上下行NULL判定</to><enabled>Y</enabled> </hop> | |
| 389 | - <hop> <from>上下行NULL判定</from><to>类型修正 2</to><enabled>Y</enabled> </hop> | |
| 390 | - <hop> <from>类型修正 2</from><to>插入/更新bsth_c_s_ttinfo_detail 2</to><enabled>Y</enabled> </hop> | |
| 391 | - <hop> <from>匹配进场班次里程时间</from><to>上下行判定 2</to><enabled>Y</enabled> </hop> | |
| 392 | - <hop> <from>上下行判定 2</from><to>类型修正 3</to><enabled>Y</enabled> </hop> | |
| 393 | - <hop> <from>类型修正 3</from><to>插入/更新bsth_c_s_ttinfo_detail 3</to><enabled>Y</enabled> </hop> | |
| 394 | - </order> | |
| 395 | - <step> | |
| 396 | - <name>上下行NULL判定</name> | |
| 397 | - <type>IfNull</type> | |
| 398 | - <description/> | |
| 399 | - <distribute>Y</distribute> | |
| 400 | - <custom_distribution/> | |
| 401 | - <copies>1</copies> | |
| 402 | - <partitioning> | |
| 403 | - <method>none</method> | |
| 404 | - <schema_name/> | |
| 405 | - </partitioning> | |
| 406 | - <replaceAllByValue/> | |
| 407 | - <replaceAllMask/> | |
| 408 | - <selectFields>Y</selectFields> | |
| 409 | - <selectValuesType>N</selectValuesType> | |
| 410 | - <setEmptyStringAll>N</setEmptyStringAll> | |
| 411 | - <valuetypes> | |
| 412 | - </valuetypes> | |
| 413 | - <fields> | |
| 414 | - <field> | |
| 415 | - <name>sxx</name> | |
| 416 | - <value>0</value> | |
| 417 | - <mask/> | |
| 418 | - <set_empty_string>N</set_empty_string> | |
| 419 | - </field> | |
| 420 | - </fields> | |
| 421 | - <cluster_schema/> | |
| 422 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 423 | - <xloc>230</xloc> | |
| 424 | - <yloc>946</yloc> | |
| 425 | - <draw>Y</draw> | |
| 426 | - </GUI> | |
| 427 | - </step> | |
| 428 | - | |
| 429 | - <step> | |
| 430 | - <name>上下行判定 2</name> | |
| 431 | - <type>IfNull</type> | |
| 432 | - <description/> | |
| 433 | - <distribute>Y</distribute> | |
| 434 | - <custom_distribution/> | |
| 435 | - <copies>1</copies> | |
| 436 | - <partitioning> | |
| 437 | - <method>none</method> | |
| 438 | - <schema_name/> | |
| 439 | - </partitioning> | |
| 440 | - <replaceAllByValue/> | |
| 441 | - <replaceAllMask/> | |
| 442 | - <selectFields>Y</selectFields> | |
| 443 | - <selectValuesType>N</selectValuesType> | |
| 444 | - <setEmptyStringAll>N</setEmptyStringAll> | |
| 445 | - <valuetypes> | |
| 446 | - </valuetypes> | |
| 447 | - <fields> | |
| 448 | - <field> | |
| 449 | - <name>sxx2</name> | |
| 450 | - <value>0</value> | |
| 451 | - <mask/> | |
| 452 | - <set_empty_string>N</set_empty_string> | |
| 453 | - </field> | |
| 454 | - </fields> | |
| 455 | - <cluster_schema/> | |
| 456 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 457 | - <xloc>804</xloc> | |
| 458 | - <yloc>1081</yloc> | |
| 459 | - <draw>Y</draw> | |
| 460 | - </GUI> | |
| 461 | - </step> | |
| 462 | - | |
| 463 | - <step> | |
| 464 | - <name>上下行字典</name> | |
| 465 | - <type>ValueMapper</type> | |
| 466 | - <description/> | |
| 467 | - <distribute>Y</distribute> | |
| 468 | - <custom_distribution/> | |
| 469 | - <copies>1</copies> | |
| 470 | - <partitioning> | |
| 471 | - <method>none</method> | |
| 472 | - <schema_name/> | |
| 473 | - </partitioning> | |
| 474 | - <field_to_use>sxx</field_to_use> | |
| 475 | - <target_field>sxx_desc</target_field> | |
| 476 | - <non_match_default/> | |
| 477 | - <fields> | |
| 478 | - <field> | |
| 479 | - <source_value>0</source_value> | |
| 480 | - <target_value>上行</target_value> | |
| 481 | - </field> | |
| 482 | - <field> | |
| 483 | - <source_value>1</source_value> | |
| 484 | - <target_value>下行</target_value> | |
| 485 | - </field> | |
| 486 | - </fields> | |
| 487 | - <cluster_schema/> | |
| 488 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 489 | - <xloc>147</xloc> | |
| 490 | - <yloc>403</yloc> | |
| 491 | - <draw>Y</draw> | |
| 492 | - </GUI> | |
| 493 | - </step> | |
| 494 | - | |
| 495 | - <step> | |
| 496 | - <name>上下行字典 2</name> | |
| 497 | - <type>ValueMapper</type> | |
| 498 | - <description/> | |
| 499 | - <distribute>Y</distribute> | |
| 500 | - <custom_distribution/> | |
| 501 | - <copies>1</copies> | |
| 502 | - <partitioning> | |
| 503 | - <method>none</method> | |
| 504 | - <schema_name/> | |
| 505 | - </partitioning> | |
| 506 | - <field_to_use>sxx</field_to_use> | |
| 507 | - <target_field>sxx_desc</target_field> | |
| 508 | - <non_match_default/> | |
| 509 | - <fields> | |
| 510 | - <field> | |
| 511 | - <source_value>0</source_value> | |
| 512 | - <target_value>上行</target_value> | |
| 513 | - </field> | |
| 514 | - <field> | |
| 515 | - <source_value>1</source_value> | |
| 516 | - <target_value>下行</target_value> | |
| 517 | - </field> | |
| 518 | - </fields> | |
| 519 | - <cluster_schema/> | |
| 520 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 521 | - <xloc>331</xloc> | |
| 522 | - <yloc>598</yloc> | |
| 523 | - <draw>Y</draw> | |
| 524 | - </GUI> | |
| 525 | - </step> | |
| 526 | - | |
| 527 | - <step> | |
| 528 | - <name>上下行字典 3</name> | |
| 529 | - <type>ValueMapper</type> | |
| 530 | - <description/> | |
| 531 | - <distribute>Y</distribute> | |
| 532 | - <custom_distribution/> | |
| 533 | - <copies>1</copies> | |
| 534 | - <partitioning> | |
| 535 | - <method>none</method> | |
| 536 | - <schema_name/> | |
| 537 | - </partitioning> | |
| 538 | - <field_to_use>sxx</field_to_use> | |
| 539 | - <target_field>sxx_desc</target_field> | |
| 540 | - <non_match_default/> | |
| 541 | - <fields> | |
| 542 | - <field> | |
| 543 | - <source_value>0</source_value> | |
| 544 | - <target_value>上行</target_value> | |
| 545 | - </field> | |
| 546 | - <field> | |
| 547 | - <source_value>1</source_value> | |
| 548 | - <target_value>下行</target_value> | |
| 549 | - </field> | |
| 550 | - </fields> | |
| 551 | - <cluster_schema/> | |
| 552 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 553 | - <xloc>553</xloc> | |
| 554 | - <yloc>859</yloc> | |
| 555 | - <draw>Y</draw> | |
| 556 | - </GUI> | |
| 557 | - </step> | |
| 558 | - | |
| 559 | - <step> | |
| 560 | - <name>出场班次_确定终点站名字</name> | |
| 561 | - <type>ScriptValueMod</type> | |
| 562 | - <description/> | |
| 563 | - <distribute>Y</distribute> | |
| 564 | - <custom_distribution/> | |
| 565 | - <copies>1</copies> | |
| 566 | - <partitioning> | |
| 567 | - <method>none</method> | |
| 568 | - <schema_name/> | |
| 569 | - </partitioning> | |
| 570 | - <compatible>N</compatible> | |
| 571 | - <optimizationLevel>9</optimizationLevel> | |
| 572 | - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 573 | - <jsScript_name>Script 1</jsScript_name> | |
| 574 | - <jsScript_script>//Script here

// 添加站点标识
var cc_groups = qdzgroups.split(","); // 所有班次起点站数组
var zdzname = cc_groups[gno]; // 出场班次的终点站是下个班次的起始站
var endZdtype = 'E';

var destory = 0; // 未撤销flag</jsScript_script> | |
| 575 | - </jsScript> </jsScripts> <fields> <field> <name>zdzname</name> | |
| 576 | - <rename>zdzname</rename> | |
| 577 | - <type>String</type> | |
| 578 | - <length>-1</length> | |
| 579 | - <precision>-1</precision> | |
| 580 | - <replace>N</replace> | |
| 581 | - </field> <field> <name>endZdtype</name> | |
| 582 | - <rename>endZdtype</rename> | |
| 583 | - <type>String</type> | |
| 584 | - <length>-1</length> | |
| 585 | - <precision>-1</precision> | |
| 586 | - <replace>N</replace> | |
| 587 | - </field> <field> <name>destory</name> | |
| 588 | - <rename>destory</rename> | |
| 589 | - <type>Integer</type> | |
| 590 | - <length>-1</length> | |
| 591 | - <precision>-1</precision> | |
| 592 | - <replace>N</replace> | |
| 593 | - </field> </fields> <cluster_schema/> | |
| 594 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 595 | - <xloc>575</xloc> | |
| 596 | - <yloc>502</yloc> | |
| 597 | - <draw>Y</draw> | |
| 598 | - </GUI> | |
| 599 | - </step> | |
| 600 | - | |
| 601 | - <step> | |
| 602 | - <name>出场班次数据</name> | |
| 603 | - <type>Dummy</type> | |
| 604 | - <description/> | |
| 605 | - <distribute>Y</distribute> | |
| 606 | - <custom_distribution/> | |
| 607 | - <copies>1</copies> | |
| 608 | - <partitioning> | |
| 609 | - <method>none</method> | |
| 610 | - <schema_name/> | |
| 611 | - </partitioning> | |
| 612 | - <cluster_schema/> | |
| 613 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 614 | - <xloc>869</xloc> | |
| 615 | - <yloc>504</yloc> | |
| 616 | - <draw>Y</draw> | |
| 617 | - </GUI> | |
| 618 | - </step> | |
| 619 | - | |
| 620 | - <step> | |
| 621 | - <name>分组各个路牌的站</name> | |
| 622 | - <type>GroupBy</type> | |
| 623 | - <description/> | |
| 624 | - <distribute>Y</distribute> | |
| 625 | - <custom_distribution/> | |
| 626 | - <copies>1</copies> | |
| 627 | - <partitioning> | |
| 628 | - <method>none</method> | |
| 629 | - <schema_name/> | |
| 630 | - </partitioning> | |
| 631 | - <all_rows>Y</all_rows> | |
| 632 | - <ignore_aggregate>N</ignore_aggregate> | |
| 633 | - <field_ignore/> | |
| 634 | - <directory>%%java.io.tmpdir%%</directory> | |
| 635 | - <prefix>grp</prefix> | |
| 636 | - <add_linenr>Y</add_linenr> | |
| 637 | - <linenr_fieldname>gno</linenr_fieldname> | |
| 638 | - <give_back_row>N</give_back_row> | |
| 639 | - <group> | |
| 640 | - <field> | |
| 641 | - <name>lp</name> | |
| 642 | - </field> | |
| 643 | - </group> | |
| 644 | - <fields> | |
| 645 | - <field> | |
| 646 | - <aggregate>qdzgroups</aggregate> | |
| 647 | - <subject>qdzname</subject> | |
| 648 | - <type>CONCAT_STRING</type> | |
| 649 | - <valuefield>,</valuefield> | |
| 650 | - </field> | |
| 651 | - </fields> | |
| 652 | - <cluster_schema/> | |
| 653 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 654 | - <xloc>892</xloc> | |
| 655 | - <yloc>44</yloc> | |
| 656 | - <draw>Y</draw> | |
| 657 | - </GUI> | |
| 658 | - </step> | |
| 659 | - | |
| 660 | - <step> | |
| 661 | - <name>匹配上下行正常班次里程时间</name> | |
| 662 | - <type>ScriptValueMod</type> | |
| 663 | - <description/> | |
| 664 | - <distribute>Y</distribute> | |
| 665 | - <custom_distribution/> | |
| 666 | - <copies>1</copies> | |
| 667 | - <partitioning> | |
| 668 | - <method>none</method> | |
| 669 | - <schema_name/> | |
| 670 | - </partitioning> | |
| 671 | - <compatible>N</compatible> | |
| 672 | - <optimizationLevel>9</optimizationLevel> | |
| 673 | - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 674 | - <jsScript_name>Script 1</jsScript_name> | |
| 675 | - <jsScript_script>//Script here

var jhlc; // 计划里程
var bcsj; // 班次时间

if (sxx == 0) { // 上行
 jhlc = up_mileage;
 bcsj = up_travel_time;
} else { // sxx == 1 下行
 jhlc = down_mileage;
 bcsj = down_travel_time;
}</jsScript_script> | |
| 676 | - </jsScript> </jsScripts> <fields> <field> <name>jhlc</name> | |
| 677 | - <rename>jhlc</rename> | |
| 678 | - <type>String</type> | |
| 679 | - <length>-1</length> | |
| 680 | - <precision>-1</precision> | |
| 681 | - <replace>N</replace> | |
| 682 | - </field> <field> <name>bcsj</name> | |
| 683 | - <rename>bcsj</rename> | |
| 684 | - <type>String</type> | |
| 685 | - <length>-1</length> | |
| 686 | - <precision>-1</precision> | |
| 687 | - <replace>N</replace> | |
| 688 | - </field> </fields> <cluster_schema/> | |
| 689 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 690 | - <xloc>148</xloc> | |
| 691 | - <yloc>674</yloc> | |
| 692 | - <draw>Y</draw> | |
| 693 | - </GUI> | |
| 694 | - </step> | |
| 695 | - | |
| 696 | - <step> | |
| 697 | - <name>匹配出场班次里程时间</name> | |
| 698 | - <type>ScriptValueMod</type> | |
| 699 | - <description/> | |
| 700 | - <distribute>Y</distribute> | |
| 701 | - <custom_distribution/> | |
| 702 | - <copies>1</copies> | |
| 703 | - <partitioning> | |
| 704 | - <method>none</method> | |
| 705 | - <schema_name/> | |
| 706 | - </partitioning> | |
| 707 | - <compatible>N</compatible> | |
| 708 | - <optimizationLevel>9</optimizationLevel> | |
| 709 | - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 710 | - <jsScript_name>Script 1</jsScript_name> | |
| 711 | - <jsScript_script>//Script here

var out_mileage; // 出场计划里程
var out_time; // 出场计划时间

if (sxx == 0) { // 上行
 out_mileage = up_out_mileage;
 out_time = up_out_timer;
} else { // sxx == 1 下行
 out_mileage = down_out_mileage;
 out_time = down_out_timer;
}



</jsScript_script> | |
| 712 | - </jsScript> </jsScripts> <fields> <field> <name>out_mileage</name> | |
| 713 | - <rename>out_mileage</rename> | |
| 714 | - <type>String</type> | |
| 715 | - <length>-1</length> | |
| 716 | - <precision>-1</precision> | |
| 717 | - <replace>N</replace> | |
| 718 | - </field> <field> <name>out_time</name> | |
| 719 | - <rename>out_time</rename> | |
| 720 | - <type>String</type> | |
| 721 | - <length>-1</length> | |
| 722 | - <precision>-1</precision> | |
| 723 | - <replace>N</replace> | |
| 724 | - </field> </fields> <cluster_schema/> | |
| 725 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 726 | - <xloc>336</xloc> | |
| 727 | - <yloc>862</yloc> | |
| 728 | - <draw>Y</draw> | |
| 729 | - </GUI> | |
| 730 | - </step> | |
| 731 | - | |
| 732 | - <step> | |
| 733 | - <name>匹配进场班次里程时间</name> | |
| 734 | - <type>ScriptValueMod</type> | |
| 735 | - <description/> | |
| 736 | - <distribute>Y</distribute> | |
| 737 | - <custom_distribution/> | |
| 738 | - <copies>1</copies> | |
| 739 | - <partitioning> | |
| 740 | - <method>none</method> | |
| 741 | - <schema_name/> | |
| 742 | - </partitioning> | |
| 743 | - <compatible>N</compatible> | |
| 744 | - <optimizationLevel>9</optimizationLevel> | |
| 745 | - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 746 | - <jsScript_name>Script 1</jsScript_name> | |
| 747 | - <jsScript_script>//Script here

var parade_mileage; // 进场计划里程
var parade_time; // 进场计划时间

if (sxx2 == 0) { // 上行
 parade_mileage = up_in_mileage;
 parade_time = up_in_timer;
} else { // sxx == 1 下行
 parade_mileage = down_in_mileage;
 parade_time = down_in_timer;
}



</jsScript_script> | |
| 748 | - </jsScript> </jsScripts> <fields> <field> <name>parade_mileage</name> | |
| 749 | - <rename>parade_mileage</rename> | |
| 750 | - <type>String</type> | |
| 751 | - <length>-1</length> | |
| 752 | - <precision>-1</precision> | |
| 753 | - <replace>N</replace> | |
| 754 | - </field> <field> <name>parade_time</name> | |
| 755 | - <rename>parade_time</rename> | |
| 756 | - <type>String</type> | |
| 757 | - <length>-1</length> | |
| 758 | - <precision>-1</precision> | |
| 759 | - <replace>N</replace> | |
| 760 | - </field> </fields> <cluster_schema/> | |
| 761 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 762 | - <xloc>726</xloc> | |
| 763 | - <yloc>1005</yloc> | |
| 764 | - <draw>Y</draw> | |
| 765 | - </GUI> | |
| 766 | - </step> | |
| 767 | - | |
| 768 | - <step> | |
| 769 | - <name>增加时刻表名字,线路名字,停车场名字</name> | |
| 770 | - <type>DataGrid</type> | |
| 771 | - <description/> | |
| 772 | - <distribute>Y</distribute> | |
| 773 | - <custom_distribution/> | |
| 774 | - <copies>1</copies> | |
| 775 | - <partitioning> | |
| 776 | - <method>none</method> | |
| 777 | - <schema_name/> | |
| 778 | - </partitioning> | |
| 779 | - <fields> | |
| 780 | - </fields> | |
| 781 | - <data> | |
| 782 | - <line> </line> | |
| 783 | - </data> | |
| 784 | - <cluster_schema/> | |
| 785 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 786 | - <xloc>110</xloc> | |
| 787 | - <yloc>133</yloc> | |
| 788 | - <draw>Y</draw> | |
| 789 | - </GUI> | |
| 790 | - </step> | |
| 791 | - | |
| 792 | - <step> | |
| 793 | - <name>处理数据</name> | |
| 794 | - <type>ScriptValueMod</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 | - <compatible>N</compatible> | |
| 804 | - <optimizationLevel>9</optimizationLevel> | |
| 805 | - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 806 | - <jsScript_name>Script 1</jsScript_name> | |
| 807 | - <jsScript_script>//Script here

// 使用正则表达式去除站点名称中的数字
qdzname = qdzname.replace(/\d+/g,'');

// sendtime处理,hhmm,hh:mm,hh,mm
var sendtime_calcu;
if (sendtime.length == 5) { // 最长格式,包括分隔符,统一把分隔符替换成冒号
 sendtime_calcu = sendtime.substr(0, 2) + ":" + sendtime.substr(3, 2);
} else if (sendtime.length == 4) {
 if (sendtime.indexOf(":") > 0) { // 冒号分隔,无需修改
 sendtime_calcu = sendtime;
 } else if (sendtime.indexOf(",") > 0) { // 逗号分隔,改成冒号分隔
 sendtime_calcu = sendtime.substr(0, 1) + ":" + sendtime.substr(2, 2);
 } else { // 无分隔符,改成冒号分隔
 sendtime_calcu = sendtime.substr(0, 2) + ":" + sendtime.substr(2, 2);
 }
} else if (sendtime.length == 3) { // 无分隔符,改成冒号分隔
 sendtime_calcu = sendtime.substr(0, 1) + ":" + sendtime.substr(1, 2);
}

// 设置分班
var isfb = 0;

// 设置isCanceled
var iscanceled = 0;</jsScript_script> | |
| 808 | - </jsScript> </jsScripts> <fields> <field> <name>qdzname</name> | |
| 809 | - <rename>qdzname</rename> | |
| 810 | - <type>String</type> | |
| 811 | - <length>-1</length> | |
| 812 | - <precision>-1</precision> | |
| 813 | - <replace>Y</replace> | |
| 814 | - </field> <field> <name>isfb</name> | |
| 815 | - <rename>isfb</rename> | |
| 816 | - <type>Integer</type> | |
| 817 | - <length>-1</length> | |
| 818 | - <precision>-1</precision> | |
| 819 | - <replace>N</replace> | |
| 820 | - </field> <field> <name>iscanceled</name> | |
| 821 | - <rename>iscanceled</rename> | |
| 822 | - <type>Integer</type> | |
| 823 | - <length>-1</length> | |
| 824 | - <precision>-1</precision> | |
| 825 | - <replace>N</replace> | |
| 826 | - </field> <field> <name>sendtime_calcu</name> | |
| 827 | - <rename>sendtime_calcu</rename> | |
| 828 | - <type>String</type> | |
| 829 | - <length>-1</length> | |
| 830 | - <precision>-1</precision> | |
| 831 | - <replace>N</replace> | |
| 832 | - </field> </fields> <cluster_schema/> | |
| 833 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 834 | - <xloc>788</xloc> | |
| 835 | - <yloc>44</yloc> | |
| 836 | - <draw>Y</draw> | |
| 837 | - </GUI> | |
| 838 | - </step> | |
| 839 | - | |
| 840 | - <step> | |
| 841 | - <name>字段选择</name> | |
| 842 | - <type>SelectValues</type> | |
| 843 | - <description/> | |
| 844 | - <distribute>Y</distribute> | |
| 845 | - <custom_distribution/> | |
| 846 | - <copies>1</copies> | |
| 847 | - <partitioning> | |
| 848 | - <method>none</method> | |
| 849 | - <schema_name/> | |
| 850 | - </partitioning> | |
| 851 | - <fields> <field> <name>路牌</name> | |
| 852 | - <rename>lp</rename> | |
| 853 | - <length>-2</length> | |
| 854 | - <precision>-2</precision> | |
| 855 | - </field> <field> <name>站点名称</name> | |
| 856 | - <rename>qdzname</rename> | |
| 857 | - <length>-2</length> | |
| 858 | - <precision>-2</precision> | |
| 859 | - </field> <field> <name>发车时间</name> | |
| 860 | - <rename>sendtime</rename> | |
| 861 | - <length>-2</length> | |
| 862 | - <precision>-2</precision> | |
| 863 | - </field> <select_unspecified>Y</select_unspecified> | |
| 864 | - </fields> <cluster_schema/> | |
| 865 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 866 | - <xloc>444</xloc> | |
| 867 | - <yloc>131</yloc> | |
| 868 | - <draw>Y</draw> | |
| 869 | - </GUI> | |
| 870 | - </step> | |
| 871 | - | |
| 872 | - <step> | |
| 873 | - <name>按照班次类型过滤数据1</name> | |
| 874 | - <type>FilterRows</type> | |
| 875 | - <description/> | |
| 876 | - <distribute>Y</distribute> | |
| 877 | - <custom_distribution/> | |
| 878 | - <copies>1</copies> | |
| 879 | - <partitioning> | |
| 880 | - <method>none</method> | |
| 881 | - <schema_name/> | |
| 882 | - </partitioning> | |
| 883 | -<send_true_to>正常班次数据</send_true_to> | |
| 884 | -<send_false_to>按照班次类型过滤数据2</send_false_to> | |
| 885 | - <compare> | |
| 886 | -<condition> | |
| 887 | - <negated>N</negated> | |
| 888 | - <leftvalue>bctype</leftvalue> | |
| 889 | - <function>=</function> | |
| 890 | - <rightvalue/> | |
| 891 | - <value><name>constant</name><type>String</type><text>正常班次</text><length>-1</length><precision>-1</precision><isnull>N</isnull><mask/></value> </condition> | |
| 892 | - </compare> | |
| 893 | - <cluster_schema/> | |
| 894 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 895 | - <xloc>860</xloc> | |
| 896 | - <yloc>401</yloc> | |
| 897 | - <draw>Y</draw> | |
| 898 | - </GUI> | |
| 899 | - </step> | |
| 900 | - | |
| 901 | - <step> | |
| 902 | - <name>按照班次类型过滤数据2</name> | |
| 903 | - <type>FilterRows</type> | |
| 904 | - <description/> | |
| 905 | - <distribute>Y</distribute> | |
| 906 | - <custom_distribution/> | |
| 907 | - <copies>1</copies> | |
| 908 | - <partitioning> | |
| 909 | - <method>none</method> | |
| 910 | - <schema_name/> | |
| 911 | - </partitioning> | |
| 912 | -<send_true_to>出场班次数据</send_true_to> | |
| 913 | -<send_false_to>进场班次数据</send_false_to> | |
| 914 | - <compare> | |
| 915 | -<condition> | |
| 916 | - <negated>N</negated> | |
| 917 | - <leftvalue>bctype</leftvalue> | |
| 918 | - <function>=</function> | |
| 919 | - <rightvalue/> | |
| 920 | - <value><name>constant</name><type>String</type><text>出场</text><length>-1</length><precision>-1</precision><isnull>N</isnull><mask/></value> </condition> | |
| 921 | - </compare> | |
| 922 | - <cluster_schema/> | |
| 923 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 924 | - <xloc>995</xloc> | |
| 925 | - <yloc>503</yloc> | |
| 926 | - <draw>Y</draw> | |
| 927 | - </GUI> | |
| 928 | - </step> | |
| 929 | - | |
| 930 | - <step> | |
| 931 | - <name>插入/更新bsth_c_s_ttinfo_detail</name> | |
| 932 | - <type>InsertUpdate</type> | |
| 933 | - <description/> | |
| 934 | - <distribute>Y</distribute> | |
| 935 | - <custom_distribution/> | |
| 936 | - <copies>1</copies> | |
| 937 | - <partitioning> | |
| 938 | - <method>none</method> | |
| 939 | - <schema_name/> | |
| 940 | - </partitioning> | |
| 941 | - <connection>bus_control_variable</connection> | |
| 942 | - <commit>100</commit> | |
| 943 | - <update_bypassed>N</update_bypassed> | |
| 944 | - <lookup> | |
| 945 | - <schema/> | |
| 946 | - <table>bsth_c_s_ttinfo_detail</table> | |
| 947 | - <key> | |
| 948 | - <name>xlid</name> | |
| 949 | - <field>xl</field> | |
| 950 | - <condition>=</condition> | |
| 951 | - <name2/> | |
| 952 | - </key> | |
| 953 | - <key> | |
| 954 | - <name>ttid</name> | |
| 955 | - <field>ttinfo</field> | |
| 956 | - <condition>=</condition> | |
| 957 | - <name2/> | |
| 958 | - </key> | |
| 959 | - <key> | |
| 960 | - <name>lpid</name> | |
| 961 | - <field>lp</field> | |
| 962 | - <condition>=</condition> | |
| 963 | - <name2/> | |
| 964 | - </key> | |
| 965 | - <key> | |
| 966 | - <name>fcno</name> | |
| 967 | - <field>fcno</field> | |
| 968 | - <condition>=</condition> | |
| 969 | - <name2/> | |
| 970 | - </key> | |
| 971 | - <key> | |
| 972 | - <name>bcs</name> | |
| 973 | - <field>bcs</field> | |
| 974 | - <condition>=</condition> | |
| 975 | - <name2/> | |
| 976 | - </key> | |
| 977 | - <value> | |
| 978 | - <name>lp</name> | |
| 979 | - <rename>lpid</rename> | |
| 980 | - <update>Y</update> | |
| 981 | - </value> | |
| 982 | - <value> | |
| 983 | - <name>bc_type</name> | |
| 984 | - <rename>bctype_code</rename> | |
| 985 | - <update>Y</update> | |
| 986 | - </value> | |
| 987 | - <value> | |
| 988 | - <name>bcs</name> | |
| 989 | - <rename>bcs</rename> | |
| 990 | - <update>Y</update> | |
| 991 | - </value> | |
| 992 | - <value> | |
| 993 | - <name>bcsj</name> | |
| 994 | - <rename>bcsj</rename> | |
| 995 | - <update>Y</update> | |
| 996 | - </value> | |
| 997 | - <value> | |
| 998 | - <name>fcno</name> | |
| 999 | - <rename>fcno</rename> | |
| 1000 | - <update>Y</update> | |
| 1001 | - </value> | |
| 1002 | - <value> | |
| 1003 | - <name>jhlc</name> | |
| 1004 | - <rename>jhlc</rename> | |
| 1005 | - <update>Y</update> | |
| 1006 | - </value> | |
| 1007 | - <value> | |
| 1008 | - <name>fcsj</name> | |
| 1009 | - <rename>sendtime_calcu</rename> | |
| 1010 | - <update>Y</update> | |
| 1011 | - </value> | |
| 1012 | - <value> | |
| 1013 | - <name>ttinfo</name> | |
| 1014 | - <rename>ttid</rename> | |
| 1015 | - <update>Y</update> | |
| 1016 | - </value> | |
| 1017 | - <value> | |
| 1018 | - <name>xl</name> | |
| 1019 | - <rename>xlid</rename> | |
| 1020 | - <update>Y</update> | |
| 1021 | - </value> | |
| 1022 | - <value> | |
| 1023 | - <name>qdz</name> | |
| 1024 | - <rename>qdzid</rename> | |
| 1025 | - <update>Y</update> | |
| 1026 | - </value> | |
| 1027 | - <value> | |
| 1028 | - <name>zdz</name> | |
| 1029 | - <rename>zdzid</rename> | |
| 1030 | - <update>Y</update> | |
| 1031 | - </value> | |
| 1032 | - <value> | |
| 1033 | - <name>xl_dir</name> | |
| 1034 | - <rename>sxx</rename> | |
| 1035 | - <update>Y</update> | |
| 1036 | - </value> | |
| 1037 | - <value> | |
| 1038 | - <name>isfb</name> | |
| 1039 | - <rename>isfb</rename> | |
| 1040 | - <update>Y</update> | |
| 1041 | - </value> | |
| 1042 | - </lookup> | |
| 1043 | - <cluster_schema/> | |
| 1044 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1045 | - <xloc>143</xloc> | |
| 1046 | - <yloc>860</yloc> | |
| 1047 | - <draw>Y</draw> | |
| 1048 | - </GUI> | |
| 1049 | - </step> | |
| 1050 | - | |
| 1051 | - <step> | |
| 1052 | - <name>插入/更新bsth_c_s_ttinfo_detail 2</name> | |
| 1053 | - <type>InsertUpdate</type> | |
| 1054 | - <description/> | |
| 1055 | - <distribute>Y</distribute> | |
| 1056 | - <custom_distribution/> | |
| 1057 | - <copies>1</copies> | |
| 1058 | - <partitioning> | |
| 1059 | - <method>none</method> | |
| 1060 | - <schema_name/> | |
| 1061 | - </partitioning> | |
| 1062 | - <connection>bus_control_variable</connection> | |
| 1063 | - <commit>100</commit> | |
| 1064 | - <update_bypassed>N</update_bypassed> | |
| 1065 | - <lookup> | |
| 1066 | - <schema/> | |
| 1067 | - <table>bsth_c_s_ttinfo_detail</table> | |
| 1068 | - <key> | |
| 1069 | - <name>xlid</name> | |
| 1070 | - <field>xl</field> | |
| 1071 | - <condition>=</condition> | |
| 1072 | - <name2/> | |
| 1073 | - </key> | |
| 1074 | - <key> | |
| 1075 | - <name>ttid</name> | |
| 1076 | - <field>ttinfo</field> | |
| 1077 | - <condition>=</condition> | |
| 1078 | - <name2/> | |
| 1079 | - </key> | |
| 1080 | - <key> | |
| 1081 | - <name>lpid</name> | |
| 1082 | - <field>lp</field> | |
| 1083 | - <condition>=</condition> | |
| 1084 | - <name2/> | |
| 1085 | - </key> | |
| 1086 | - <key> | |
| 1087 | - <name>fcno</name> | |
| 1088 | - <field>fcno</field> | |
| 1089 | - <condition>=</condition> | |
| 1090 | - <name2/> | |
| 1091 | - </key> | |
| 1092 | - <key> | |
| 1093 | - <name>bcs</name> | |
| 1094 | - <field>bcs</field> | |
| 1095 | - <condition>=</condition> | |
| 1096 | - <name2/> | |
| 1097 | - </key> | |
| 1098 | - <value> | |
| 1099 | - <name>tcc</name> | |
| 1100 | - <rename>qdzid</rename> | |
| 1101 | - <update>Y</update> | |
| 1102 | - </value> | |
| 1103 | - <value> | |
| 1104 | - <name>zdz</name> | |
| 1105 | - <rename>zdzid</rename> | |
| 1106 | - <update>Y</update> | |
| 1107 | - </value> | |
| 1108 | - <value> | |
| 1109 | - <name>xl</name> | |
| 1110 | - <rename>xlid</rename> | |
| 1111 | - <update>Y</update> | |
| 1112 | - </value> | |
| 1113 | - <value> | |
| 1114 | - <name>ttinfo</name> | |
| 1115 | - <rename>ttid</rename> | |
| 1116 | - <update>Y</update> | |
| 1117 | - </value> | |
| 1118 | - <value> | |
| 1119 | - <name>xl_dir</name> | |
| 1120 | - <rename>sxx</rename> | |
| 1121 | - <update>Y</update> | |
| 1122 | - </value> | |
| 1123 | - <value> | |
| 1124 | - <name>lp</name> | |
| 1125 | - <rename>lpid</rename> | |
| 1126 | - <update>Y</update> | |
| 1127 | - </value> | |
| 1128 | - <value> | |
| 1129 | - <name>jhlc</name> | |
| 1130 | - <rename>out_mileage</rename> | |
| 1131 | - <update>Y</update> | |
| 1132 | - </value> | |
| 1133 | - <value> | |
| 1134 | - <name>fcsj</name> | |
| 1135 | - <rename>sendtime_calcu</rename> | |
| 1136 | - <update>Y</update> | |
| 1137 | - </value> | |
| 1138 | - <value> | |
| 1139 | - <name>bcsj</name> | |
| 1140 | - <rename>out_time</rename> | |
| 1141 | - <update>Y</update> | |
| 1142 | - </value> | |
| 1143 | - <value> | |
| 1144 | - <name>bcs</name> | |
| 1145 | - <rename>bcs</rename> | |
| 1146 | - <update>Y</update> | |
| 1147 | - </value> | |
| 1148 | - <value> | |
| 1149 | - <name>fcno</name> | |
| 1150 | - <rename>fcno</rename> | |
| 1151 | - <update>Y</update> | |
| 1152 | - </value> | |
| 1153 | - <value> | |
| 1154 | - <name>bc_type</name> | |
| 1155 | - <rename>bctype_code</rename> | |
| 1156 | - <update>Y</update> | |
| 1157 | - </value> | |
| 1158 | - <value> | |
| 1159 | - <name>isfb</name> | |
| 1160 | - <rename>isfb</rename> | |
| 1161 | - <update>Y</update> | |
| 1162 | - </value> | |
| 1163 | - </lookup> | |
| 1164 | - <cluster_schema/> | |
| 1165 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1166 | - <xloc>340</xloc> | |
| 1167 | - <yloc>1087</yloc> | |
| 1168 | - <draw>Y</draw> | |
| 1169 | - </GUI> | |
| 1170 | - </step> | |
| 1171 | - | |
| 1172 | - <step> | |
| 1173 | - <name>插入/更新bsth_c_s_ttinfo_detail 3</name> | |
| 1174 | - <type>InsertUpdate</type> | |
| 1175 | - <description/> | |
| 1176 | - <distribute>Y</distribute> | |
| 1177 | - <custom_distribution/> | |
| 1178 | - <copies>1</copies> | |
| 1179 | - <partitioning> | |
| 1180 | - <method>none</method> | |
| 1181 | - <schema_name/> | |
| 1182 | - </partitioning> | |
| 1183 | - <connection>bus_control_variable</connection> | |
| 1184 | - <commit>100</commit> | |
| 1185 | - <update_bypassed>N</update_bypassed> | |
| 1186 | - <lookup> | |
| 1187 | - <schema/> | |
| 1188 | - <table>bsth_c_s_ttinfo_detail</table> | |
| 1189 | - <key> | |
| 1190 | - <name>xlid</name> | |
| 1191 | - <field>xl</field> | |
| 1192 | - <condition>=</condition> | |
| 1193 | - <name2/> | |
| 1194 | - </key> | |
| 1195 | - <key> | |
| 1196 | - <name>ttid</name> | |
| 1197 | - <field>ttinfo</field> | |
| 1198 | - <condition>=</condition> | |
| 1199 | - <name2/> | |
| 1200 | - </key> | |
| 1201 | - <key> | |
| 1202 | - <name>lpid</name> | |
| 1203 | - <field>lp</field> | |
| 1204 | - <condition>=</condition> | |
| 1205 | - <name2/> | |
| 1206 | - </key> | |
| 1207 | - <key> | |
| 1208 | - <name>fcno</name> | |
| 1209 | - <field>fcno</field> | |
| 1210 | - <condition>=</condition> | |
| 1211 | - <name2/> | |
| 1212 | - </key> | |
| 1213 | - <key> | |
| 1214 | - <name>bcs</name> | |
| 1215 | - <field>bcs</field> | |
| 1216 | - <condition>=</condition> | |
| 1217 | - <name2/> | |
| 1218 | - </key> | |
| 1219 | - <value> | |
| 1220 | - <name>fcno</name> | |
| 1221 | - <rename>fcno</rename> | |
| 1222 | - <update>Y</update> | |
| 1223 | - </value> | |
| 1224 | - <value> | |
| 1225 | - <name>bcs</name> | |
| 1226 | - <rename>bcs</rename> | |
| 1227 | - <update>Y</update> | |
| 1228 | - </value> | |
| 1229 | - <value> | |
| 1230 | - <name>xl</name> | |
| 1231 | - <rename>xlid</rename> | |
| 1232 | - <update>Y</update> | |
| 1233 | - </value> | |
| 1234 | - <value> | |
| 1235 | - <name>ttinfo</name> | |
| 1236 | - <rename>ttid</rename> | |
| 1237 | - <update>Y</update> | |
| 1238 | - </value> | |
| 1239 | - <value> | |
| 1240 | - <name>lp</name> | |
| 1241 | - <rename>lpid</rename> | |
| 1242 | - <update>Y</update> | |
| 1243 | - </value> | |
| 1244 | - <value> | |
| 1245 | - <name>bc_type</name> | |
| 1246 | - <rename>bctype_code</rename> | |
| 1247 | - <update>Y</update> | |
| 1248 | - </value> | |
| 1249 | - <value> | |
| 1250 | - <name>bcsj</name> | |
| 1251 | - <rename>parade_time</rename> | |
| 1252 | - <update>Y</update> | |
| 1253 | - </value> | |
| 1254 | - <value> | |
| 1255 | - <name>jhlc</name> | |
| 1256 | - <rename>parade_mileage</rename> | |
| 1257 | - <update>Y</update> | |
| 1258 | - </value> | |
| 1259 | - <value> | |
| 1260 | - <name>fcsj</name> | |
| 1261 | - <rename>sendtime_calcu</rename> | |
| 1262 | - <update>Y</update> | |
| 1263 | - </value> | |
| 1264 | - <value> | |
| 1265 | - <name>xl_dir</name> | |
| 1266 | - <rename>sxx2</rename> | |
| 1267 | - <update>Y</update> | |
| 1268 | - </value> | |
| 1269 | - <value> | |
| 1270 | - <name>qdz</name> | |
| 1271 | - <rename>qdzid</rename> | |
| 1272 | - <update>Y</update> | |
| 1273 | - </value> | |
| 1274 | - <value> | |
| 1275 | - <name>tcc</name> | |
| 1276 | - <rename>zdzid</rename> | |
| 1277 | - <update>Y</update> | |
| 1278 | - </value> | |
| 1279 | - <value> | |
| 1280 | - <name>isfb</name> | |
| 1281 | - <rename>isfb</rename> | |
| 1282 | - <update>Y</update> | |
| 1283 | - </value> | |
| 1284 | - </lookup> | |
| 1285 | - <cluster_schema/> | |
| 1286 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1287 | - <xloc>845</xloc> | |
| 1288 | - <yloc>899</yloc> | |
| 1289 | - <draw>Y</draw> | |
| 1290 | - </GUI> | |
| 1291 | - </step> | |
| 1292 | - | |
| 1293 | - <step> | |
| 1294 | - <name>时刻表明细信息Excel输入</name> | |
| 1295 | - <type>ExcelInput</type> | |
| 1296 | - <description/> | |
| 1297 | - <distribute>N</distribute> | |
| 1298 | - <custom_distribution/> | |
| 1299 | - <copies>1</copies> | |
| 1300 | - <partitioning> | |
| 1301 | - <method>none</method> | |
| 1302 | - <schema_name/> | |
| 1303 | - </partitioning> | |
| 1304 | - <header>Y</header> | |
| 1305 | - <noempty>Y</noempty> | |
| 1306 | - <stoponempty>N</stoponempty> | |
| 1307 | - <filefield/> | |
| 1308 | - <sheetfield/> | |
| 1309 | - <sheetrownumfield/> | |
| 1310 | - <rownumfield/> | |
| 1311 | - <sheetfield/> | |
| 1312 | - <filefield/> | |
| 1313 | - <limit>0</limit> | |
| 1314 | - <encoding/> | |
| 1315 | - <add_to_result_filenames>Y</add_to_result_filenames> | |
| 1316 | - <accept_filenames>N</accept_filenames> | |
| 1317 | - <accept_field/> | |
| 1318 | - <accept_stepname/> | |
| 1319 | - <file> | |
| 1320 | - <name/> | |
| 1321 | - <filemask/> | |
| 1322 | - <exclude_filemask/> | |
| 1323 | - <file_required>N</file_required> | |
| 1324 | - <include_subfolders>N</include_subfolders> | |
| 1325 | - </file> | |
| 1326 | - <fields> | |
| 1327 | - </fields> | |
| 1328 | - <sheets> | |
| 1329 | - <sheet> | |
| 1330 | - <name/> | |
| 1331 | - <startrow>0</startrow> | |
| 1332 | - <startcol>0</startcol> | |
| 1333 | - </sheet> | |
| 1334 | - </sheets> | |
| 1335 | - <strict_types>N</strict_types> | |
| 1336 | - <error_ignored>N</error_ignored> | |
| 1337 | - <error_line_skipped>N</error_line_skipped> | |
| 1338 | - <bad_line_files_destination_directory/> | |
| 1339 | - <bad_line_files_extension>warning</bad_line_files_extension> | |
| 1340 | - <error_line_files_destination_directory/> | |
| 1341 | - <error_line_files_extension>error</error_line_files_extension> | |
| 1342 | - <line_number_files_destination_directory/> | |
| 1343 | - <line_number_files_extension>line</line_number_files_extension> | |
| 1344 | - <shortFileFieldName/> | |
| 1345 | - <pathFieldName/> | |
| 1346 | - <hiddenFieldName/> | |
| 1347 | - <lastModificationTimeFieldName/> | |
| 1348 | - <uriNameFieldName/> | |
| 1349 | - <rootUriNameFieldName/> | |
| 1350 | - <extensionFieldName/> | |
| 1351 | - <sizeFieldName/> | |
| 1352 | - <spreadsheet_type>JXL</spreadsheet_type> | |
| 1353 | - <cluster_schema/> | |
| 1354 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1355 | - <xloc>112</xloc> | |
| 1356 | - <yloc>44</yloc> | |
| 1357 | - <draw>Y</draw> | |
| 1358 | - </GUI> | |
| 1359 | - </step> | |
| 1360 | - | |
| 1361 | - <step> | |
| 1362 | - <name>查找停车场1</name> | |
| 1363 | - <type>DBLookup</type> | |
| 1364 | - <description/> | |
| 1365 | - <distribute>Y</distribute> | |
| 1366 | - <custom_distribution/> | |
| 1367 | - <copies>1</copies> | |
| 1368 | - <partitioning> | |
| 1369 | - <method>none</method> | |
| 1370 | - <schema_name/> | |
| 1371 | - </partitioning> | |
| 1372 | - <connection>bus_control_variable</connection> | |
| 1373 | - <cache>N</cache> | |
| 1374 | - <cache_load_all>N</cache_load_all> | |
| 1375 | - <cache_size>0</cache_size> | |
| 1376 | - <lookup> | |
| 1377 | - <schema/> | |
| 1378 | - <table>bsth_c_car_park</table> | |
| 1379 | - <orderby/> | |
| 1380 | - <fail_on_multiple>N</fail_on_multiple> | |
| 1381 | - <eat_row_on_failure>N</eat_row_on_failure> | |
| 1382 | - <key> | |
| 1383 | - <name>tccname_</name> | |
| 1384 | - <field>park_name</field> | |
| 1385 | - <condition>=</condition> | |
| 1386 | - <name2/> | |
| 1387 | - </key> | |
| 1388 | - <value> | |
| 1389 | - <name>id</name> | |
| 1390 | - <rename>qdzid</rename> | |
| 1391 | - <default/> | |
| 1392 | - <type>Integer</type> | |
| 1393 | - </value> | |
| 1394 | - </lookup> | |
| 1395 | - <cluster_schema/> | |
| 1396 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1397 | - <xloc>755</xloc> | |
| 1398 | - <yloc>504</yloc> | |
| 1399 | - <draw>Y</draw> | |
| 1400 | - </GUI> | |
| 1401 | - </step> | |
| 1402 | - | |
| 1403 | - <step> | |
| 1404 | - <name>查找停车场2</name> | |
| 1405 | - <type>DBLookup</type> | |
| 1406 | - <description/> | |
| 1407 | - <distribute>Y</distribute> | |
| 1408 | - <custom_distribution/> | |
| 1409 | - <copies>1</copies> | |
| 1410 | - <partitioning> | |
| 1411 | - <method>none</method> | |
| 1412 | - <schema_name/> | |
| 1413 | - </partitioning> | |
| 1414 | - <connection>bus_control_variable</connection> | |
| 1415 | - <cache>N</cache> | |
| 1416 | - <cache_load_all>N</cache_load_all> | |
| 1417 | - <cache_size>0</cache_size> | |
| 1418 | - <lookup> | |
| 1419 | - <schema/> | |
| 1420 | - <table>bsth_c_car_park</table> | |
| 1421 | - <orderby/> | |
| 1422 | - <fail_on_multiple>N</fail_on_multiple> | |
| 1423 | - <eat_row_on_failure>N</eat_row_on_failure> | |
| 1424 | - <key> | |
| 1425 | - <name>tccname_</name> | |
| 1426 | - <field>park_name</field> | |
| 1427 | - <condition>=</condition> | |
| 1428 | - <name2/> | |
| 1429 | - </key> | |
| 1430 | - <value> | |
| 1431 | - <name>id</name> | |
| 1432 | - <rename>zdzid</rename> | |
| 1433 | - <default/> | |
| 1434 | - <type>Integer</type> | |
| 1435 | - </value> | |
| 1436 | - </lookup> | |
| 1437 | - <cluster_schema/> | |
| 1438 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1439 | - <xloc>887</xloc> | |
| 1440 | - <yloc>608</yloc> | |
| 1441 | - <draw>Y</draw> | |
| 1442 | - </GUI> | |
| 1443 | - </step> | |
| 1444 | - | |
| 1445 | - <step> | |
| 1446 | - <name>查找出场终点站关联并确定上下行</name> | |
| 1447 | - <type>DBLookup</type> | |
| 1448 | - <description/> | |
| 1449 | - <distribute>Y</distribute> | |
| 1450 | - <custom_distribution/> | |
| 1451 | - <copies>1</copies> | |
| 1452 | - <partitioning> | |
| 1453 | - <method>none</method> | |
| 1454 | - <schema_name/> | |
| 1455 | - </partitioning> | |
| 1456 | - <connection>bus_control_variable</connection> | |
| 1457 | - <cache>N</cache> | |
| 1458 | - <cache_load_all>N</cache_load_all> | |
| 1459 | - <cache_size>0</cache_size> | |
| 1460 | - <lookup> | |
| 1461 | - <schema/> | |
| 1462 | - <table>bsth_c_stationroute</table> | |
| 1463 | - <orderby/> | |
| 1464 | - <fail_on_multiple>N</fail_on_multiple> | |
| 1465 | - <eat_row_on_failure>N</eat_row_on_failure> | |
| 1466 | - <key> | |
| 1467 | - <name>xlid</name> | |
| 1468 | - <field>line</field> | |
| 1469 | - <condition>=</condition> | |
| 1470 | - <name2/> | |
| 1471 | - </key> | |
| 1472 | - <key> | |
| 1473 | - <name>zdzname</name> | |
| 1474 | - <field>station_name</field> | |
| 1475 | - <condition>=</condition> | |
| 1476 | - <name2/> | |
| 1477 | - </key> | |
| 1478 | - <key> | |
| 1479 | - <name>endZdtype</name> | |
| 1480 | - <field>station_mark</field> | |
| 1481 | - <condition>=</condition> | |
| 1482 | - <name2/> | |
| 1483 | - </key> | |
| 1484 | - <key> | |
| 1485 | - <name>destory</name> | |
| 1486 | - <field>destroy</field> | |
| 1487 | - <condition>=</condition> | |
| 1488 | - <name2/> | |
| 1489 | - </key> | |
| 1490 | - <value> | |
| 1491 | - <name>station</name> | |
| 1492 | - <rename>zdzid</rename> | |
| 1493 | - <default/> | |
| 1494 | - <type>Integer</type> | |
| 1495 | - </value> | |
| 1496 | - <value> | |
| 1497 | - <name>directions</name> | |
| 1498 | - <rename>sxx</rename> | |
| 1499 | - <default/> | |
| 1500 | - <type>Integer</type> | |
| 1501 | - </value> | |
| 1502 | - </lookup> | |
| 1503 | - <cluster_schema/> | |
| 1504 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1505 | - <xloc>329</xloc> | |
| 1506 | - <yloc>505</yloc> | |
| 1507 | - <draw>Y</draw> | |
| 1508 | - </GUI> | |
| 1509 | - </step> | |
| 1510 | - | |
| 1511 | - <step> | |
| 1512 | - <name>查找时刻表基础信息关联</name> | |
| 1513 | - <type>DBLookup</type> | |
| 1514 | - <description/> | |
| 1515 | - <distribute>Y</distribute> | |
| 1516 | - <custom_distribution/> | |
| 1517 | - <copies>1</copies> | |
| 1518 | - <partitioning> | |
| 1519 | - <method>none</method> | |
| 1520 | - <schema_name/> | |
| 1521 | - </partitioning> | |
| 1522 | - <connection>bus_control_variable</connection> | |
| 1523 | - <cache>N</cache> | |
| 1524 | - <cache_load_all>N</cache_load_all> | |
| 1525 | - <cache_size>0</cache_size> | |
| 1526 | - <lookup> | |
| 1527 | - <schema/> | |
| 1528 | - <table>bsth_c_s_ttinfo</table> | |
| 1529 | - <orderby/> | |
| 1530 | - <fail_on_multiple>N</fail_on_multiple> | |
| 1531 | - <eat_row_on_failure>N</eat_row_on_failure> | |
| 1532 | - <key> | |
| 1533 | - <name>xlid</name> | |
| 1534 | - <field>xl</field> | |
| 1535 | - <condition>=</condition> | |
| 1536 | - <name2/> | |
| 1537 | - </key> | |
| 1538 | - <key> | |
| 1539 | - <name>ttinfoname_</name> | |
| 1540 | - <field>name</field> | |
| 1541 | - <condition>=</condition> | |
| 1542 | - <name2/> | |
| 1543 | - </key> | |
| 1544 | - <key> | |
| 1545 | - <name>iscanceled</name> | |
| 1546 | - <field>is_cancel</field> | |
| 1547 | - <condition>=</condition> | |
| 1548 | - <name2/> | |
| 1549 | - </key> | |
| 1550 | - <value> | |
| 1551 | - <name>id</name> | |
| 1552 | - <rename>ttid</rename> | |
| 1553 | - <default/> | |
| 1554 | - <type>Integer</type> | |
| 1555 | - </value> | |
| 1556 | - </lookup> | |
| 1557 | - <cluster_schema/> | |
| 1558 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1559 | - <xloc>1011</xloc> | |
| 1560 | - <yloc>134</yloc> | |
| 1561 | - <draw>Y</draw> | |
| 1562 | - </GUI> | |
| 1563 | - </step> | |
| 1564 | - | |
| 1565 | - <step> | |
| 1566 | - <name>查找线路上下行里程时间</name> | |
| 1567 | - <type>DBLookup</type> | |
| 1568 | - <description/> | |
| 1569 | - <distribute>Y</distribute> | |
| 1570 | - <custom_distribution/> | |
| 1571 | - <copies>1</copies> | |
| 1572 | - <partitioning> | |
| 1573 | - <method>none</method> | |
| 1574 | - <schema_name/> | |
| 1575 | - </partitioning> | |
| 1576 | - <connection>bus_control_variable</connection> | |
| 1577 | - <cache>N</cache> | |
| 1578 | - <cache_load_all>N</cache_load_all> | |
| 1579 | - <cache_size>0</cache_size> | |
| 1580 | - <lookup> | |
| 1581 | - <schema/> | |
| 1582 | - <table>bsth_c_line_information</table> | |
| 1583 | - <orderby/> | |
| 1584 | - <fail_on_multiple>N</fail_on_multiple> | |
| 1585 | - <eat_row_on_failure>N</eat_row_on_failure> | |
| 1586 | - <key> | |
| 1587 | - <name>xlid</name> | |
| 1588 | - <field>line</field> | |
| 1589 | - <condition>=</condition> | |
| 1590 | - <name2/> | |
| 1591 | - </key> | |
| 1592 | - <value> | |
| 1593 | - <name>up_mileage</name> | |
| 1594 | - <rename>up_mileage</rename> | |
| 1595 | - <default/> | |
| 1596 | - <type>Number</type> | |
| 1597 | - </value> | |
| 1598 | - <value> | |
| 1599 | - <name>down_mileage</name> | |
| 1600 | - <rename>down_mileage</rename> | |
| 1601 | - <default/> | |
| 1602 | - <type>Number</type> | |
| 1603 | - </value> | |
| 1604 | - <value> | |
| 1605 | - <name>up_travel_time</name> | |
| 1606 | - <rename>up_travel_time</rename> | |
| 1607 | - <default/> | |
| 1608 | - <type>Number</type> | |
| 1609 | - </value> | |
| 1610 | - <value> | |
| 1611 | - <name>down_travel_time</name> | |
| 1612 | - <rename>down_travel_time</rename> | |
| 1613 | - <default/> | |
| 1614 | - <type>Number</type> | |
| 1615 | - </value> | |
| 1616 | - </lookup> | |
| 1617 | - <cluster_schema/> | |
| 1618 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1619 | - <xloc>149</xloc> | |
| 1620 | - <yloc>581</yloc> | |
| 1621 | - <draw>Y</draw> | |
| 1622 | - </GUI> | |
| 1623 | - </step> | |
| 1624 | - | |
| 1625 | - <step> | |
| 1626 | - <name>查找线路关联</name> | |
| 1627 | - <type>DBLookup</type> | |
| 1628 | - <description/> | |
| 1629 | - <distribute>Y</distribute> | |
| 1630 | - <custom_distribution/> | |
| 1631 | - <copies>1</copies> | |
| 1632 | - <partitioning> | |
| 1633 | - <method>none</method> | |
| 1634 | - <schema_name/> | |
| 1635 | - </partitioning> | |
| 1636 | - <connection>bus_control_variable</connection> | |
| 1637 | - <cache>N</cache> | |
| 1638 | - <cache_load_all>N</cache_load_all> | |
| 1639 | - <cache_size>0</cache_size> | |
| 1640 | - <lookup> | |
| 1641 | - <schema/> | |
| 1642 | - <table>bsth_c_line</table> | |
| 1643 | - <orderby/> | |
| 1644 | - <fail_on_multiple>N</fail_on_multiple> | |
| 1645 | - <eat_row_on_failure>N</eat_row_on_failure> | |
| 1646 | - <key> | |
| 1647 | - <name>xlname_</name> | |
| 1648 | - <field>name</field> | |
| 1649 | - <condition>=</condition> | |
| 1650 | - <name2/> | |
| 1651 | - </key> | |
| 1652 | - <value> | |
| 1653 | - <name>id</name> | |
| 1654 | - <rename>xlid</rename> | |
| 1655 | - <default/> | |
| 1656 | - <type>Integer</type> | |
| 1657 | - </value> | |
| 1658 | - </lookup> | |
| 1659 | - <cluster_schema/> | |
| 1660 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1661 | - <xloc>1007</xloc> | |
| 1662 | - <yloc>43</yloc> | |
| 1663 | - <draw>Y</draw> | |
| 1664 | - </GUI> | |
| 1665 | - </step> | |
| 1666 | - | |
| 1667 | - <step> | |
| 1668 | - <name>查找线路出场里程时间</name> | |
| 1669 | - <type>DBLookup</type> | |
| 1670 | - <description/> | |
| 1671 | - <distribute>Y</distribute> | |
| 1672 | - <custom_distribution/> | |
| 1673 | - <copies>1</copies> | |
| 1674 | - <partitioning> | |
| 1675 | - <method>none</method> | |
| 1676 | - <schema_name/> | |
| 1677 | - </partitioning> | |
| 1678 | - <connection>bus_control_variable</connection> | |
| 1679 | - <cache>N</cache> | |
| 1680 | - <cache_load_all>N</cache_load_all> | |
| 1681 | - <cache_size>0</cache_size> | |
| 1682 | - <lookup> | |
| 1683 | - <schema/> | |
| 1684 | - <table>bsth_c_line_information</table> | |
| 1685 | - <orderby/> | |
| 1686 | - <fail_on_multiple>N</fail_on_multiple> | |
| 1687 | - <eat_row_on_failure>N</eat_row_on_failure> | |
| 1688 | - <key> | |
| 1689 | - <name>xlid</name> | |
| 1690 | - <field>line</field> | |
| 1691 | - <condition>=</condition> | |
| 1692 | - <name2/> | |
| 1693 | - </key> | |
| 1694 | - <value> | |
| 1695 | - <name>up_out_timer</name> | |
| 1696 | - <rename>up_out_timer</rename> | |
| 1697 | - <default/> | |
| 1698 | - <type>Number</type> | |
| 1699 | - </value> | |
| 1700 | - <value> | |
| 1701 | - <name>up_out_mileage</name> | |
| 1702 | - <rename>up_out_mileage</rename> | |
| 1703 | - <default/> | |
| 1704 | - <type>Number</type> | |
| 1705 | - </value> | |
| 1706 | - <value> | |
| 1707 | - <name>down_out_timer</name> | |
| 1708 | - <rename>down_out_timer</rename> | |
| 1709 | - <default/> | |
| 1710 | - <type>Number</type> | |
| 1711 | - </value> | |
| 1712 | - <value> | |
| 1713 | - <name>down_out_mileage</name> | |
| 1714 | - <rename>down_out_mileage</rename> | |
| 1715 | - <default/> | |
| 1716 | - <type>Number</type> | |
| 1717 | - </value> | |
| 1718 | - </lookup> | |
| 1719 | - <cluster_schema/> | |
| 1720 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1721 | - <xloc>335</xloc> | |
| 1722 | - <yloc>763</yloc> | |
| 1723 | - <draw>Y</draw> | |
| 1724 | - </GUI> | |
| 1725 | - </step> | |
| 1726 | - | |
| 1727 | - <step> | |
| 1728 | - <name>查找线路进场里程时间</name> | |
| 1729 | - <type>DBLookup</type> | |
| 1730 | - <description/> | |
| 1731 | - <distribute>Y</distribute> | |
| 1732 | - <custom_distribution/> | |
| 1733 | - <copies>1</copies> | |
| 1734 | - <partitioning> | |
| 1735 | - <method>none</method> | |
| 1736 | - <schema_name/> | |
| 1737 | - </partitioning> | |
| 1738 | - <connection>bus_control_variable</connection> | |
| 1739 | - <cache>N</cache> | |
| 1740 | - <cache_load_all>N</cache_load_all> | |
| 1741 | - <cache_size>0</cache_size> | |
| 1742 | - <lookup> | |
| 1743 | - <schema/> | |
| 1744 | - <table>bsth_c_line_information</table> | |
| 1745 | - <orderby/> | |
| 1746 | - <fail_on_multiple>N</fail_on_multiple> | |
| 1747 | - <eat_row_on_failure>N</eat_row_on_failure> | |
| 1748 | - <key> | |
| 1749 | - <name>xlid</name> | |
| 1750 | - <field>line</field> | |
| 1751 | - <condition>=</condition> | |
| 1752 | - <name2/> | |
| 1753 | - </key> | |
| 1754 | - <value> | |
| 1755 | - <name>up_in_mileage</name> | |
| 1756 | - <rename>up_in_mileage</rename> | |
| 1757 | - <default/> | |
| 1758 | - <type>Number</type> | |
| 1759 | - </value> | |
| 1760 | - <value> | |
| 1761 | - <name>up_in_timer</name> | |
| 1762 | - <rename>up_in_timer</rename> | |
| 1763 | - <default/> | |
| 1764 | - <type>Number</type> | |
| 1765 | - </value> | |
| 1766 | - <value> | |
| 1767 | - <name>down_in_mileage</name> | |
| 1768 | - <rename>down_in_mileage</rename> | |
| 1769 | - <default/> | |
| 1770 | - <type>Number</type> | |
| 1771 | - </value> | |
| 1772 | - <value> | |
| 1773 | - <name>down_in_timer</name> | |
| 1774 | - <rename>down_in_timer</rename> | |
| 1775 | - <default/> | |
| 1776 | - <type>Number</type> | |
| 1777 | - </value> | |
| 1778 | - </lookup> | |
| 1779 | - <cluster_schema/> | |
| 1780 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1781 | - <xloc>553</xloc> | |
| 1782 | - <yloc>1004</yloc> | |
| 1783 | - <draw>Y</draw> | |
| 1784 | - </GUI> | |
| 1785 | - </step> | |
| 1786 | - | |
| 1787 | - <step> | |
| 1788 | - <name>查找终点站关联</name> | |
| 1789 | - <type>DBLookup</type> | |
| 1790 | - <description/> | |
| 1791 | - <distribute>Y</distribute> | |
| 1792 | - <custom_distribution/> | |
| 1793 | - <copies>1</copies> | |
| 1794 | - <partitioning> | |
| 1795 | - <method>none</method> | |
| 1796 | - <schema_name/> | |
| 1797 | - </partitioning> | |
| 1798 | - <connection>bus_control_variable</connection> | |
| 1799 | - <cache>N</cache> | |
| 1800 | - <cache_load_all>N</cache_load_all> | |
| 1801 | - <cache_size>0</cache_size> | |
| 1802 | - <lookup> | |
| 1803 | - <schema/> | |
| 1804 | - <table>bsth_c_stationroute</table> | |
| 1805 | - <orderby/> | |
| 1806 | - <fail_on_multiple>N</fail_on_multiple> | |
| 1807 | - <eat_row_on_failure>N</eat_row_on_failure> | |
| 1808 | - <key> | |
| 1809 | - <name>xlid</name> | |
| 1810 | - <field>line</field> | |
| 1811 | - <condition>=</condition> | |
| 1812 | - <name2/> | |
| 1813 | - </key> | |
| 1814 | - <key> | |
| 1815 | - <name>sxx</name> | |
| 1816 | - <field>directions</field> | |
| 1817 | - <condition>=</condition> | |
| 1818 | - <name2/> | |
| 1819 | - </key> | |
| 1820 | - <key> | |
| 1821 | - <name>endZdtype</name> | |
| 1822 | - <field>station_mark</field> | |
| 1823 | - <condition>=</condition> | |
| 1824 | - <name2/> | |
| 1825 | - </key> | |
| 1826 | - <key> | |
| 1827 | - <name>destory</name> | |
| 1828 | - <field>destroy</field> | |
| 1829 | - <condition>=</condition> | |
| 1830 | - <name2/> | |
| 1831 | - </key> | |
| 1832 | - <value> | |
| 1833 | - <name>station_name</name> | |
| 1834 | - <rename>zdzname</rename> | |
| 1835 | - <default/> | |
| 1836 | - <type>String</type> | |
| 1837 | - </value> | |
| 1838 | - <value> | |
| 1839 | - <name>station</name> | |
| 1840 | - <rename>zdzid</rename> | |
| 1841 | - <default/> | |
| 1842 | - <type>Integer</type> | |
| 1843 | - </value> | |
| 1844 | - </lookup> | |
| 1845 | - <cluster_schema/> | |
| 1846 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1847 | - <xloc>280</xloc> | |
| 1848 | - <yloc>404</yloc> | |
| 1849 | - <draw>Y</draw> | |
| 1850 | - </GUI> | |
| 1851 | - </step> | |
| 1852 | - | |
| 1853 | - <step> | |
| 1854 | - <name>查找起点站关联并确定上下行</name> | |
| 1855 | - <type>DBLookup</type> | |
| 1856 | - <description/> | |
| 1857 | - <distribute>Y</distribute> | |
| 1858 | - <custom_distribution/> | |
| 1859 | - <copies>1</copies> | |
| 1860 | - <partitioning> | |
| 1861 | - <method>none</method> | |
| 1862 | - <schema_name/> | |
| 1863 | - </partitioning> | |
| 1864 | - <connection>bus_control_variable</connection> | |
| 1865 | - <cache>N</cache> | |
| 1866 | - <cache_load_all>N</cache_load_all> | |
| 1867 | - <cache_size>0</cache_size> | |
| 1868 | - <lookup> | |
| 1869 | - <schema/> | |
| 1870 | - <table>bsth_c_stationroute</table> | |
| 1871 | - <orderby/> | |
| 1872 | - <fail_on_multiple>N</fail_on_multiple> | |
| 1873 | - <eat_row_on_failure>N</eat_row_on_failure> | |
| 1874 | - <key> | |
| 1875 | - <name>xlid</name> | |
| 1876 | - <field>line</field> | |
| 1877 | - <condition>=</condition> | |
| 1878 | - <name2/> | |
| 1879 | - </key> | |
| 1880 | - <key> | |
| 1881 | - <name>qdzname</name> | |
| 1882 | - <field>station_name</field> | |
| 1883 | - <condition>=</condition> | |
| 1884 | - <name2/> | |
| 1885 | - </key> | |
| 1886 | - <key> | |
| 1887 | - <name>sendZdtype</name> | |
| 1888 | - <field>station_mark</field> | |
| 1889 | - <condition>=</condition> | |
| 1890 | - <name2/> | |
| 1891 | - </key> | |
| 1892 | - <key> | |
| 1893 | - <name>destory</name> | |
| 1894 | - <field>destroy</field> | |
| 1895 | - <condition>=</condition> | |
| 1896 | - <name2/> | |
| 1897 | - </key> | |
| 1898 | - <value> | |
| 1899 | - <name>station</name> | |
| 1900 | - <rename>qdzid</rename> | |
| 1901 | - <default/> | |
| 1902 | - <type>Integer</type> | |
| 1903 | - </value> | |
| 1904 | - <value> | |
| 1905 | - <name>directions</name> | |
| 1906 | - <rename>sxx</rename> | |
| 1907 | - <default/> | |
| 1908 | - <type>Integer</type> | |
| 1909 | - </value> | |
| 1910 | - </lookup> | |
| 1911 | - <cluster_schema/> | |
| 1912 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1913 | - <xloc>430</xloc> | |
| 1914 | - <yloc>403</yloc> | |
| 1915 | - <draw>Y</draw> | |
| 1916 | - </GUI> | |
| 1917 | - </step> | |
| 1918 | - | |
| 1919 | - <step> | |
| 1920 | - <name>查找路牌关联</name> | |
| 1921 | - <type>DBLookup</type> | |
| 1922 | - <description/> | |
| 1923 | - <distribute>Y</distribute> | |
| 1924 | - <custom_distribution/> | |
| 1925 | - <copies>1</copies> | |
| 1926 | - <partitioning> | |
| 1927 | - <method>none</method> | |
| 1928 | - <schema_name/> | |
| 1929 | - </partitioning> | |
| 1930 | - <connection>bus_control_variable</connection> | |
| 1931 | - <cache>N</cache> | |
| 1932 | - <cache_load_all>N</cache_load_all> | |
| 1933 | - <cache_size>0</cache_size> | |
| 1934 | - <lookup> | |
| 1935 | - <schema/> | |
| 1936 | - <table>bsth_c_s_gbi</table> | |
| 1937 | - <orderby/> | |
| 1938 | - <fail_on_multiple>N</fail_on_multiple> | |
| 1939 | - <eat_row_on_failure>N</eat_row_on_failure> | |
| 1940 | - <key> | |
| 1941 | - <name>xlid</name> | |
| 1942 | - <field>xl</field> | |
| 1943 | - <condition>=</condition> | |
| 1944 | - <name2/> | |
| 1945 | - </key> | |
| 1946 | - <key> | |
| 1947 | - <name>lp</name> | |
| 1948 | - <field>lp_name</field> | |
| 1949 | - <condition>=</condition> | |
| 1950 | - <name2/> | |
| 1951 | - </key> | |
| 1952 | - <key> | |
| 1953 | - <name>iscanceled</name> | |
| 1954 | - <field>is_cancel</field> | |
| 1955 | - <condition>=</condition> | |
| 1956 | - <name2/> | |
| 1957 | - </key> | |
| 1958 | - <value> | |
| 1959 | - <name>id</name> | |
| 1960 | - <rename>lpid</rename> | |
| 1961 | - <default/> | |
| 1962 | - <type>Integer</type> | |
| 1963 | - </value> | |
| 1964 | - </lookup> | |
| 1965 | - <cluster_schema/> | |
| 1966 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1967 | - <xloc>1013</xloc> | |
| 1968 | - <yloc>265</yloc> | |
| 1969 | - <draw>Y</draw> | |
| 1970 | - </GUI> | |
| 1971 | - </step> | |
| 1972 | - | |
| 1973 | - <step> | |
| 1974 | - <name>查找进场班次上一个班次的线路方向</name> | |
| 1975 | - <type>DBLookup</type> | |
| 1976 | - <description/> | |
| 1977 | - <distribute>Y</distribute> | |
| 1978 | - <custom_distribution/> | |
| 1979 | - <copies>1</copies> | |
| 1980 | - <partitioning> | |
| 1981 | - <method>none</method> | |
| 1982 | - <schema_name/> | |
| 1983 | - </partitioning> | |
| 1984 | - <connection>bus_control_variable</connection> | |
| 1985 | - <cache>N</cache> | |
| 1986 | - <cache_load_all>N</cache_load_all> | |
| 1987 | - <cache_size>0</cache_size> | |
| 1988 | - <lookup> | |
| 1989 | - <schema/> | |
| 1990 | - <table>bsth_c_stationroute</table> | |
| 1991 | - <orderby/> | |
| 1992 | - <fail_on_multiple>N</fail_on_multiple> | |
| 1993 | - <eat_row_on_failure>N</eat_row_on_failure> | |
| 1994 | - <key> | |
| 1995 | - <name>xlid</name> | |
| 1996 | - <field>line</field> | |
| 1997 | - <condition>=</condition> | |
| 1998 | - <name2/> | |
| 1999 | - </key> | |
| 2000 | - <key> | |
| 2001 | - <name>startZdtype_calcu</name> | |
| 2002 | - <field>station_mark</field> | |
| 2003 | - <condition>=</condition> | |
| 2004 | - <name2/> | |
| 2005 | - </key> | |
| 2006 | - <key> | |
| 2007 | - <name>qdzname_calcu</name> | |
| 2008 | - <field>station_name</field> | |
| 2009 | - <condition>=</condition> | |
| 2010 | - <name2/> | |
| 2011 | - </key> | |
| 2012 | - <key> | |
| 2013 | - <name>destory</name> | |
| 2014 | - <field>destroy</field> | |
| 2015 | - <condition>=</condition> | |
| 2016 | - <name2/> | |
| 2017 | - </key> | |
| 2018 | - <value> | |
| 2019 | - <name>directions</name> | |
| 2020 | - <rename>sxx</rename> | |
| 2021 | - <default/> | |
| 2022 | - <type>String</type> | |
| 2023 | - </value> | |
| 2024 | - </lookup> | |
| 2025 | - <cluster_schema/> | |
| 2026 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2027 | - <xloc>548</xloc> | |
| 2028 | - <yloc>610</yloc> | |
| 2029 | - <draw>Y</draw> | |
| 2030 | - </GUI> | |
| 2031 | - </step> | |
| 2032 | - | |
| 2033 | - <step> | |
| 2034 | - <name>查找进场班次上一个班次的终点站,并作为进场班次的起点站</name> | |
| 2035 | - <type>DBLookup</type> | |
| 2036 | - <description/> | |
| 2037 | - <distribute>Y</distribute> | |
| 2038 | - <custom_distribution/> | |
| 2039 | - <copies>1</copies> | |
| 2040 | - <partitioning> | |
| 2041 | - <method>none</method> | |
| 2042 | - <schema_name/> | |
| 2043 | - </partitioning> | |
| 2044 | - <connection>bus_control_variable</connection> | |
| 2045 | - <cache>Y</cache> | |
| 2046 | - <cache_load_all>Y</cache_load_all> | |
| 2047 | - <cache_size>0</cache_size> | |
| 2048 | - <lookup> | |
| 2049 | - <schema/> | |
| 2050 | - <table>bsth_c_stationroute</table> | |
| 2051 | - <orderby/> | |
| 2052 | - <fail_on_multiple>N</fail_on_multiple> | |
| 2053 | - <eat_row_on_failure>N</eat_row_on_failure> | |
| 2054 | - <key> | |
| 2055 | - <name>xlid</name> | |
| 2056 | - <field>line</field> | |
| 2057 | - <condition>=</condition> | |
| 2058 | - <name2/> | |
| 2059 | - </key> | |
| 2060 | - <key> | |
| 2061 | - <name>endZdtype_calcu</name> | |
| 2062 | - <field>station_mark</field> | |
| 2063 | - <condition>=</condition> | |
| 2064 | - <name2/> | |
| 2065 | - </key> | |
| 2066 | - <key> | |
| 2067 | - <name>sxx</name> | |
| 2068 | - <field>directions</field> | |
| 2069 | - <condition>=</condition> | |
| 2070 | - <name2/> | |
| 2071 | - </key> | |
| 2072 | - <key> | |
| 2073 | - <name>destory</name> | |
| 2074 | - <field>destroy</field> | |
| 2075 | - <condition>=</condition> | |
| 2076 | - <name2/> | |
| 2077 | - </key> | |
| 2078 | - <value> | |
| 2079 | - <name>station_name</name> | |
| 2080 | - <rename>zdzname_calcu</rename> | |
| 2081 | - <default/> | |
| 2082 | - <type>Integer</type> | |
| 2083 | - </value> | |
| 2084 | - </lookup> | |
| 2085 | - <cluster_schema/> | |
| 2086 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2087 | - <xloc>550</xloc> | |
| 2088 | - <yloc>701</yloc> | |
| 2089 | - <draw>Y</draw> | |
| 2090 | - </GUI> | |
| 2091 | - </step> | |
| 2092 | - | |
| 2093 | - <step> | |
| 2094 | - <name>查找进场起点站关联确定上下行</name> | |
| 2095 | - <type>DBLookup</type> | |
| 2096 | - <description/> | |
| 2097 | - <distribute>Y</distribute> | |
| 2098 | - <custom_distribution/> | |
| 2099 | - <copies>1</copies> | |
| 2100 | - <partitioning> | |
| 2101 | - <method>none</method> | |
| 2102 | - <schema_name/> | |
| 2103 | - </partitioning> | |
| 2104 | - <connection>bus_control_variable</connection> | |
| 2105 | - <cache>N</cache> | |
| 2106 | - <cache_load_all>N</cache_load_all> | |
| 2107 | - <cache_size>0</cache_size> | |
| 2108 | - <lookup> | |
| 2109 | - <schema/> | |
| 2110 | - <table>bsth_c_stationroute</table> | |
| 2111 | - <orderby/> | |
| 2112 | - <fail_on_multiple>N</fail_on_multiple> | |
| 2113 | - <eat_row_on_failure>N</eat_row_on_failure> | |
| 2114 | - <key> | |
| 2115 | - <name>xlid</name> | |
| 2116 | - <field>line</field> | |
| 2117 | - <condition>=</condition> | |
| 2118 | - <name2/> | |
| 2119 | - </key> | |
| 2120 | - <key> | |
| 2121 | - <name>zdzname_calcu</name> | |
| 2122 | - <field>station_name</field> | |
| 2123 | - <condition>=</condition> | |
| 2124 | - <name2/> | |
| 2125 | - </key> | |
| 2126 | - <key> | |
| 2127 | - <name>startZdtype_calcu</name> | |
| 2128 | - <field>station_mark</field> | |
| 2129 | - <condition>=</condition> | |
| 2130 | - <name2/> | |
| 2131 | - </key> | |
| 2132 | - <key> | |
| 2133 | - <name>destory</name> | |
| 2134 | - <field>destroy</field> | |
| 2135 | - <condition>=</condition> | |
| 2136 | - <name2/> | |
| 2137 | - </key> | |
| 2138 | - <value> | |
| 2139 | - <name>directions</name> | |
| 2140 | - <rename>sxx2</rename> | |
| 2141 | - <default/> | |
| 2142 | - <type>Integer</type> | |
| 2143 | - </value> | |
| 2144 | - <value> | |
| 2145 | - <name>station</name> | |
| 2146 | - <rename>qdzid</rename> | |
| 2147 | - <default/> | |
| 2148 | - <type>Integer</type> | |
| 2149 | - </value> | |
| 2150 | - </lookup> | |
| 2151 | - <cluster_schema/> | |
| 2152 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2153 | - <xloc>551</xloc> | |
| 2154 | - <yloc>782</yloc> | |
| 2155 | - <draw>Y</draw> | |
| 2156 | - </GUI> | |
| 2157 | - </step> | |
| 2158 | - | |
| 2159 | - <step> | |
| 2160 | - <name>正常班次_处理数据</name> | |
| 2161 | - <type>ScriptValueMod</type> | |
| 2162 | - <description/> | |
| 2163 | - <distribute>Y</distribute> | |
| 2164 | - <custom_distribution/> | |
| 2165 | - <copies>1</copies> | |
| 2166 | - <partitioning> | |
| 2167 | - <method>none</method> | |
| 2168 | - <schema_name/> | |
| 2169 | - </partitioning> | |
| 2170 | - <compatible>N</compatible> | |
| 2171 | - <optimizationLevel>9</optimizationLevel> | |
| 2172 | - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 2173 | - <jsScript_name>Script 1</jsScript_name> | |
| 2174 | - <jsScript_script>//Script here

// 添加站点标识
var sendZdtype = 'B';
var endZdtype = 'E';

var destory = 0; // 未撤销flag</jsScript_script> | |
| 2175 | - </jsScript> </jsScripts> <fields> <field> <name>sendZdtype</name> | |
| 2176 | - <rename>sendZdtype</rename> | |
| 2177 | - <type>String</type> | |
| 2178 | - <length>-1</length> | |
| 2179 | - <precision>-1</precision> | |
| 2180 | - <replace>N</replace> | |
| 2181 | - </field> <field> <name>endZdtype</name> | |
| 2182 | - <rename>endZdtype</rename> | |
| 2183 | - <type>String</type> | |
| 2184 | - <length>-1</length> | |
| 2185 | - <precision>-1</precision> | |
| 2186 | - <replace>N</replace> | |
| 2187 | - </field> <field> <name>destory</name> | |
| 2188 | - <rename>destory</rename> | |
| 2189 | - <type>Integer</type> | |
| 2190 | - <length>-1</length> | |
| 2191 | - <precision>-1</precision> | |
| 2192 | - <replace>N</replace> | |
| 2193 | - </field> </fields> <cluster_schema/> | |
| 2194 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2195 | - <xloc>588</xloc> | |
| 2196 | - <yloc>403</yloc> | |
| 2197 | - <draw>Y</draw> | |
| 2198 | - </GUI> | |
| 2199 | - </step> | |
| 2200 | - | |
| 2201 | - <step> | |
| 2202 | - <name>正常班次数据</name> | |
| 2203 | - <type>Dummy</type> | |
| 2204 | - <description/> | |
| 2205 | - <distribute>Y</distribute> | |
| 2206 | - <custom_distribution/> | |
| 2207 | - <copies>1</copies> | |
| 2208 | - <partitioning> | |
| 2209 | - <method>none</method> | |
| 2210 | - <schema_name/> | |
| 2211 | - </partitioning> | |
| 2212 | - <cluster_schema/> | |
| 2213 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2214 | - <xloc>725</xloc> | |
| 2215 | - <yloc>404</yloc> | |
| 2216 | - <draw>Y</draw> | |
| 2217 | - </GUI> | |
| 2218 | - </step> | |
| 2219 | - | |
| 2220 | - <step> | |
| 2221 | - <name>添加发车顺序号</name> | |
| 2222 | - <type>GroupBy</type> | |
| 2223 | - <description/> | |
| 2224 | - <distribute>Y</distribute> | |
| 2225 | - <custom_distribution/> | |
| 2226 | - <copies>1</copies> | |
| 2227 | - <partitioning> | |
| 2228 | - <method>none</method> | |
| 2229 | - <schema_name/> | |
| 2230 | - </partitioning> | |
| 2231 | - <all_rows>Y</all_rows> | |
| 2232 | - <ignore_aggregate>N</ignore_aggregate> | |
| 2233 | - <field_ignore/> | |
| 2234 | - <directory>%%java.io.tmpdir%%</directory> | |
| 2235 | - <prefix>grp</prefix> | |
| 2236 | - <add_linenr>Y</add_linenr> | |
| 2237 | - <linenr_fieldname>fcno</linenr_fieldname> | |
| 2238 | - <give_back_row>N</give_back_row> | |
| 2239 | - <group> | |
| 2240 | - <field> | |
| 2241 | - <name>lp</name> | |
| 2242 | - </field> | |
| 2243 | - </group> | |
| 2244 | - <fields> | |
| 2245 | - </fields> | |
| 2246 | - <cluster_schema/> | |
| 2247 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2248 | - <xloc>442</xloc> | |
| 2249 | - <yloc>44</yloc> | |
| 2250 | - <draw>Y</draw> | |
| 2251 | - </GUI> | |
| 2252 | - </step> | |
| 2253 | - | |
| 2254 | - <step> | |
| 2255 | - <name>添加对应班次数</name> | |
| 2256 | - <type>GroupBy</type> | |
| 2257 | - <description/> | |
| 2258 | - <distribute>Y</distribute> | |
| 2259 | - <custom_distribution/> | |
| 2260 | - <copies>1</copies> | |
| 2261 | - <partitioning> | |
| 2262 | - <method>none</method> | |
| 2263 | - <schema_name/> | |
| 2264 | - </partitioning> | |
| 2265 | - <all_rows>Y</all_rows> | |
| 2266 | - <ignore_aggregate>N</ignore_aggregate> | |
| 2267 | - <field_ignore/> | |
| 2268 | - <directory>%%java.io.tmpdir%%</directory> | |
| 2269 | - <prefix>grp</prefix> | |
| 2270 | - <add_linenr>Y</add_linenr> | |
| 2271 | - <linenr_fieldname>bcs</linenr_fieldname> | |
| 2272 | - <give_back_row>N</give_back_row> | |
| 2273 | - <group> | |
| 2274 | - </group> | |
| 2275 | - <fields> | |
| 2276 | - </fields> | |
| 2277 | - <cluster_schema/> | |
| 2278 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2279 | - <xloc>692</xloc> | |
| 2280 | - <yloc>44</yloc> | |
| 2281 | - <draw>Y</draw> | |
| 2282 | - </GUI> | |
| 2283 | - </step> | |
| 2284 | - | |
| 2285 | - <step> | |
| 2286 | - <name>班次数据范式化</name> | |
| 2287 | - <type>Normaliser</type> | |
| 2288 | - <description/> | |
| 2289 | - <distribute>Y</distribute> | |
| 2290 | - <custom_distribution/> | |
| 2291 | - <copies>1</copies> | |
| 2292 | - <partitioning> | |
| 2293 | - <method>none</method> | |
| 2294 | - <schema_name/> | |
| 2295 | - </partitioning> | |
| 2296 | - <typefield>站点名称</typefield> | |
| 2297 | - <fields> </fields> <cluster_schema/> | |
| 2298 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2299 | - <xloc>248</xloc> | |
| 2300 | - <yloc>44</yloc> | |
| 2301 | - <draw>Y</draw> | |
| 2302 | - </GUI> | |
| 2303 | - </step> | |
| 2304 | - | |
| 2305 | - <step> | |
| 2306 | - <name>班次类型字典</name> | |
| 2307 | - <type>ValueMapper</type> | |
| 2308 | - <description/> | |
| 2309 | - <distribute>Y</distribute> | |
| 2310 | - <custom_distribution/> | |
| 2311 | - <copies>1</copies> | |
| 2312 | - <partitioning> | |
| 2313 | - <method>none</method> | |
| 2314 | - <schema_name/> | |
| 2315 | - </partitioning> | |
| 2316 | - <field_to_use>bctype</field_to_use> | |
| 2317 | - <target_field>bctype_code</target_field> | |
| 2318 | - <non_match_default>未知类型</non_match_default> | |
| 2319 | - <fields> | |
| 2320 | - <field> | |
| 2321 | - <source_value>正常班次</source_value> | |
| 2322 | - <target_value>normal</target_value> | |
| 2323 | - </field> | |
| 2324 | - <field> | |
| 2325 | - <source_value>出场</source_value> | |
| 2326 | - <target_value>out</target_value> | |
| 2327 | - </field> | |
| 2328 | - <field> | |
| 2329 | - <source_value>进场</source_value> | |
| 2330 | - <target_value>in</target_value> | |
| 2331 | - </field> | |
| 2332 | - <field> | |
| 2333 | - <source_value>加油</source_value> | |
| 2334 | - <target_value>oil</target_value> | |
| 2335 | - </field> | |
| 2336 | - <field> | |
| 2337 | - <source_value>临加</source_value> | |
| 2338 | - <target_value>temp</target_value> | |
| 2339 | - </field> | |
| 2340 | - <field> | |
| 2341 | - <source_value>区间</source_value> | |
| 2342 | - <target_value>region</target_value> | |
| 2343 | - </field> | |
| 2344 | - <field> | |
| 2345 | - <source_value>放空</source_value> | |
| 2346 | - <target_value>venting</target_value> | |
| 2347 | - </field> | |
| 2348 | - <field> | |
| 2349 | - <source_value>放大站</source_value> | |
| 2350 | - <target_value>major</target_value> | |
| 2351 | - </field> | |
| 2352 | - </fields> | |
| 2353 | - <cluster_schema/> | |
| 2354 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2355 | - <xloc>149</xloc> | |
| 2356 | - <yloc>491</yloc> | |
| 2357 | - <draw>Y</draw> | |
| 2358 | - </GUI> | |
| 2359 | - </step> | |
| 2360 | - | |
| 2361 | - <step> | |
| 2362 | - <name>班次类型字典 2</name> | |
| 2363 | - <type>ValueMapper</type> | |
| 2364 | - <description/> | |
| 2365 | - <distribute>Y</distribute> | |
| 2366 | - <custom_distribution/> | |
| 2367 | - <copies>1</copies> | |
| 2368 | - <partitioning> | |
| 2369 | - <method>none</method> | |
| 2370 | - <schema_name/> | |
| 2371 | - </partitioning> | |
| 2372 | - <field_to_use>bctype</field_to_use> | |
| 2373 | - <target_field>bctype_code</target_field> | |
| 2374 | - <non_match_default>未知类型</non_match_default> | |
| 2375 | - <fields> | |
| 2376 | - <field> | |
| 2377 | - <source_value>正常班次</source_value> | |
| 2378 | - <target_value>normal</target_value> | |
| 2379 | - </field> | |
| 2380 | - <field> | |
| 2381 | - <source_value>出场</source_value> | |
| 2382 | - <target_value>out</target_value> | |
| 2383 | - </field> | |
| 2384 | - <field> | |
| 2385 | - <source_value>进场</source_value> | |
| 2386 | - <target_value>in</target_value> | |
| 2387 | - </field> | |
| 2388 | - <field> | |
| 2389 | - <source_value>加油</source_value> | |
| 2390 | - <target_value>oil</target_value> | |
| 2391 | - </field> | |
| 2392 | - <field> | |
| 2393 | - <source_value>临加</source_value> | |
| 2394 | - <target_value>temp</target_value> | |
| 2395 | - </field> | |
| 2396 | - <field> | |
| 2397 | - <source_value>区间</source_value> | |
| 2398 | - <target_value>region</target_value> | |
| 2399 | - </field> | |
| 2400 | - <field> | |
| 2401 | - <source_value>放空</source_value> | |
| 2402 | - <target_value>venting</target_value> | |
| 2403 | - </field> | |
| 2404 | - <field> | |
| 2405 | - <source_value>放大站</source_value> | |
| 2406 | - <target_value>major</target_value> | |
| 2407 | - </field> | |
| 2408 | - </fields> | |
| 2409 | - <cluster_schema/> | |
| 2410 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2411 | - <xloc>333</xloc> | |
| 2412 | - <yloc>681</yloc> | |
| 2413 | - <draw>Y</draw> | |
| 2414 | - </GUI> | |
| 2415 | - </step> | |
| 2416 | - | |
| 2417 | - <step> | |
| 2418 | - <name>班次类型字典 3</name> | |
| 2419 | - <type>ValueMapper</type> | |
| 2420 | - <description/> | |
| 2421 | - <distribute>Y</distribute> | |
| 2422 | - <custom_distribution/> | |
| 2423 | - <copies>1</copies> | |
| 2424 | - <partitioning> | |
| 2425 | - <method>none</method> | |
| 2426 | - <schema_name/> | |
| 2427 | - </partitioning> | |
| 2428 | - <field_to_use>bctype</field_to_use> | |
| 2429 | - <target_field>bctype_code</target_field> | |
| 2430 | - <non_match_default>未知类型</non_match_default> | |
| 2431 | - <fields> | |
| 2432 | - <field> | |
| 2433 | - <source_value>正常班次</source_value> | |
| 2434 | - <target_value>normal</target_value> | |
| 2435 | - </field> | |
| 2436 | - <field> | |
| 2437 | - <source_value>出场</source_value> | |
| 2438 | - <target_value>out</target_value> | |
| 2439 | - </field> | |
| 2440 | - <field> | |
| 2441 | - <source_value>进场</source_value> | |
| 2442 | - <target_value>in</target_value> | |
| 2443 | - </field> | |
| 2444 | - <field> | |
| 2445 | - <source_value>加油</source_value> | |
| 2446 | - <target_value>oil</target_value> | |
| 2447 | - </field> | |
| 2448 | - <field> | |
| 2449 | - <source_value>临加</source_value> | |
| 2450 | - <target_value>temp</target_value> | |
| 2451 | - </field> | |
| 2452 | - <field> | |
| 2453 | - <source_value>区间</source_value> | |
| 2454 | - <target_value>region</target_value> | |
| 2455 | - </field> | |
| 2456 | - <field> | |
| 2457 | - <source_value>放空</source_value> | |
| 2458 | - <target_value>venting</target_value> | |
| 2459 | - </field> | |
| 2460 | - <field> | |
| 2461 | - <source_value>放大站</source_value> | |
| 2462 | - <target_value>major</target_value> | |
| 2463 | - </field> | |
| 2464 | - </fields> | |
| 2465 | - <cluster_schema/> | |
| 2466 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2467 | - <xloc>551</xloc> | |
| 2468 | - <yloc>928</yloc> | |
| 2469 | - <draw>Y</draw> | |
| 2470 | - </GUI> | |
| 2471 | - </step> | |
| 2472 | - | |
| 2473 | - <step> | |
| 2474 | - <name>类型修正</name> | |
| 2475 | - <type>SelectValues</type> | |
| 2476 | - <description/> | |
| 2477 | - <distribute>Y</distribute> | |
| 2478 | - <custom_distribution/> | |
| 2479 | - <copies>1</copies> | |
| 2480 | - <partitioning> | |
| 2481 | - <method>none</method> | |
| 2482 | - <schema_name/> | |
| 2483 | - </partitioning> | |
| 2484 | - <fields> <select_unspecified>N</select_unspecified> | |
| 2485 | - <meta> <name>jhlc</name> | |
| 2486 | - <rename>jhlc</rename> | |
| 2487 | - <type>Number</type> | |
| 2488 | - <length>-2</length> | |
| 2489 | - <precision>-2</precision> | |
| 2490 | - <conversion_mask/> | |
| 2491 | - <date_format_lenient>false</date_format_lenient> | |
| 2492 | - <date_format_locale/> | |
| 2493 | - <date_format_timezone/> | |
| 2494 | - <lenient_string_to_number>false</lenient_string_to_number> | |
| 2495 | - <encoding/> | |
| 2496 | - <decimal_symbol/> | |
| 2497 | - <grouping_symbol/> | |
| 2498 | - <currency_symbol/> | |
| 2499 | - <storage_type/> | |
| 2500 | - </meta> <meta> <name>bcsj</name> | |
| 2501 | - <rename>bcsj</rename> | |
| 2502 | - <type>Integer</type> | |
| 2503 | - <length>-2</length> | |
| 2504 | - <precision>-2</precision> | |
| 2505 | - <conversion_mask/> | |
| 2506 | - <date_format_lenient>false</date_format_lenient> | |
| 2507 | - <date_format_locale/> | |
| 2508 | - <date_format_timezone/> | |
| 2509 | - <lenient_string_to_number>false</lenient_string_to_number> | |
| 2510 | - <encoding/> | |
| 2511 | - <decimal_symbol/> | |
| 2512 | - <grouping_symbol/> | |
| 2513 | - <currency_symbol/> | |
| 2514 | - <storage_type/> | |
| 2515 | - </meta> </fields> <cluster_schema/> | |
| 2516 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2517 | - <xloc>146</xloc> | |
| 2518 | - <yloc>768</yloc> | |
| 2519 | - <draw>Y</draw> | |
| 2520 | - </GUI> | |
| 2521 | - </step> | |
| 2522 | - | |
| 2523 | - <step> | |
| 2524 | - <name>类型修正 2</name> | |
| 2525 | - <type>SelectValues</type> | |
| 2526 | - <description/> | |
| 2527 | - <distribute>Y</distribute> | |
| 2528 | - <custom_distribution/> | |
| 2529 | - <copies>1</copies> | |
| 2530 | - <partitioning> | |
| 2531 | - <method>none</method> | |
| 2532 | - <schema_name/> | |
| 2533 | - </partitioning> | |
| 2534 | - <fields> <select_unspecified>N</select_unspecified> | |
| 2535 | - <meta> <name>out_mileage</name> | |
| 2536 | - <rename>out_mileage</rename> | |
| 2537 | - <type>Number</type> | |
| 2538 | - <length>-2</length> | |
| 2539 | - <precision>-2</precision> | |
| 2540 | - <conversion_mask/> | |
| 2541 | - <date_format_lenient>false</date_format_lenient> | |
| 2542 | - <date_format_locale/> | |
| 2543 | - <date_format_timezone/> | |
| 2544 | - <lenient_string_to_number>false</lenient_string_to_number> | |
| 2545 | - <encoding/> | |
| 2546 | - <decimal_symbol/> | |
| 2547 | - <grouping_symbol/> | |
| 2548 | - <currency_symbol/> | |
| 2549 | - <storage_type/> | |
| 2550 | - </meta> <meta> <name>out_time</name> | |
| 2551 | - <rename>out_time</rename> | |
| 2552 | - <type>Integer</type> | |
| 2553 | - <length>-2</length> | |
| 2554 | - <precision>-2</precision> | |
| 2555 | - <conversion_mask/> | |
| 2556 | - <date_format_lenient>false</date_format_lenient> | |
| 2557 | - <date_format_locale/> | |
| 2558 | - <date_format_timezone/> | |
| 2559 | - <lenient_string_to_number>false</lenient_string_to_number> | |
| 2560 | - <encoding/> | |
| 2561 | - <decimal_symbol/> | |
| 2562 | - <grouping_symbol/> | |
| 2563 | - <currency_symbol/> | |
| 2564 | - <storage_type/> | |
| 2565 | - </meta> <meta> <name>sxx</name> | |
| 2566 | - <rename>sxx</rename> | |
| 2567 | - <type>Integer</type> | |
| 2568 | - <length>-2</length> | |
| 2569 | - <precision>-2</precision> | |
| 2570 | - <conversion_mask/> | |
| 2571 | - <date_format_lenient>false</date_format_lenient> | |
| 2572 | - <date_format_locale/> | |
| 2573 | - <date_format_timezone/> | |
| 2574 | - <lenient_string_to_number>false</lenient_string_to_number> | |
| 2575 | - <encoding/> | |
| 2576 | - <decimal_symbol/> | |
| 2577 | - <grouping_symbol/> | |
| 2578 | - <currency_symbol/> | |
| 2579 | - <storage_type/> | |
| 2580 | - </meta> </fields> <cluster_schema/> | |
| 2581 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2582 | - <xloc>338</xloc> | |
| 2583 | - <yloc>1008</yloc> | |
| 2584 | - <draw>Y</draw> | |
| 2585 | - </GUI> | |
| 2586 | - </step> | |
| 2587 | - | |
| 2588 | - <step> | |
| 2589 | - <name>类型修正 3</name> | |
| 2590 | - <type>SelectValues</type> | |
| 2591 | - <description/> | |
| 2592 | - <distribute>Y</distribute> | |
| 2593 | - <custom_distribution/> | |
| 2594 | - <copies>1</copies> | |
| 2595 | - <partitioning> | |
| 2596 | - <method>none</method> | |
| 2597 | - <schema_name/> | |
| 2598 | - </partitioning> | |
| 2599 | - <fields> <select_unspecified>N</select_unspecified> | |
| 2600 | - <meta> <name>parade_mileage</name> | |
| 2601 | - <rename>parade_mileage</rename> | |
| 2602 | - <type>Number</type> | |
| 2603 | - <length>-2</length> | |
| 2604 | - <precision>-2</precision> | |
| 2605 | - <conversion_mask/> | |
| 2606 | - <date_format_lenient>false</date_format_lenient> | |
| 2607 | - <date_format_locale/> | |
| 2608 | - <date_format_timezone/> | |
| 2609 | - <lenient_string_to_number>false</lenient_string_to_number> | |
| 2610 | - <encoding/> | |
| 2611 | - <decimal_symbol/> | |
| 2612 | - <grouping_symbol/> | |
| 2613 | - <currency_symbol/> | |
| 2614 | - <storage_type/> | |
| 2615 | - </meta> <meta> <name>parade_time</name> | |
| 2616 | - <rename>parade_time</rename> | |
| 2617 | - <type>Integer</type> | |
| 2618 | - <length>-2</length> | |
| 2619 | - <precision>-2</precision> | |
| 2620 | - <conversion_mask/> | |
| 2621 | - <date_format_lenient>false</date_format_lenient> | |
| 2622 | - <date_format_locale/> | |
| 2623 | - <date_format_timezone/> | |
| 2624 | - <lenient_string_to_number>false</lenient_string_to_number> | |
| 2625 | - <encoding/> | |
| 2626 | - <decimal_symbol/> | |
| 2627 | - <grouping_symbol/> | |
| 2628 | - <currency_symbol/> | |
| 2629 | - <storage_type/> | |
| 2630 | - </meta> <meta> <name>sxx2</name> | |
| 2631 | - <rename>sxx2</rename> | |
| 2632 | - <type>Integer</type> | |
| 2633 | - <length>-2</length> | |
| 2634 | - <precision>-2</precision> | |
| 2635 | - <conversion_mask/> | |
| 2636 | - <date_format_lenient>false</date_format_lenient> | |
| 2637 | - <date_format_locale/> | |
| 2638 | - <date_format_timezone/> | |
| 2639 | - <lenient_string_to_number>false</lenient_string_to_number> | |
| 2640 | - <encoding/> | |
| 2641 | - <decimal_symbol/> | |
| 2642 | - <grouping_symbol/> | |
| 2643 | - <currency_symbol/> | |
| 2644 | - <storage_type/> | |
| 2645 | - </meta> </fields> <cluster_schema/> | |
| 2646 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2647 | - <xloc>847</xloc> | |
| 2648 | - <yloc>1003</yloc> | |
| 2649 | - <draw>Y</draw> | |
| 2650 | - </GUI> | |
| 2651 | - </step> | |
| 2652 | - | |
| 2653 | - <step> | |
| 2654 | - <name>计算班次类型</name> | |
| 2655 | - <type>ValueMapper</type> | |
| 2656 | - <description/> | |
| 2657 | - <distribute>Y</distribute> | |
| 2658 | - <custom_distribution/> | |
| 2659 | - <copies>1</copies> | |
| 2660 | - <partitioning> | |
| 2661 | - <method>none</method> | |
| 2662 | - <schema_name/> | |
| 2663 | - </partitioning> | |
| 2664 | - <field_to_use>qdzname</field_to_use> | |
| 2665 | - <target_field>bctype</target_field> | |
| 2666 | - <non_match_default>正常班次</non_match_default> | |
| 2667 | - <fields> | |
| 2668 | - <field> | |
| 2669 | - <source_value>出场</source_value> | |
| 2670 | - <target_value>出场</target_value> | |
| 2671 | - </field> | |
| 2672 | - <field> | |
| 2673 | - <source_value>进场</source_value> | |
| 2674 | - <target_value>进场</target_value> | |
| 2675 | - </field> | |
| 2676 | - </fields> | |
| 2677 | - <cluster_schema/> | |
| 2678 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2679 | - <xloc>1014</xloc> | |
| 2680 | - <yloc>401</yloc> | |
| 2681 | - <draw>Y</draw> | |
| 2682 | - </GUI> | |
| 2683 | - </step> | |
| 2684 | - | |
| 2685 | - <step> | |
| 2686 | - <name>记录关联 (笛卡尔输出)</name> | |
| 2687 | - <type>JoinRows</type> | |
| 2688 | - <description/> | |
| 2689 | - <distribute>Y</distribute> | |
| 2690 | - <custom_distribution/> | |
| 2691 | - <copies>1</copies> | |
| 2692 | - <partitioning> | |
| 2693 | - <method>none</method> | |
| 2694 | - <schema_name/> | |
| 2695 | - </partitioning> | |
| 2696 | - <directory>%%java.io.tmpdir%%</directory> | |
| 2697 | - <prefix>out</prefix> | |
| 2698 | - <cache_size>500</cache_size> | |
| 2699 | - <main/> | |
| 2700 | - <compare> | |
| 2701 | -<condition> | |
| 2702 | - <negated>N</negated> | |
| 2703 | - <leftvalue/> | |
| 2704 | - <function>=</function> | |
| 2705 | - <rightvalue/> | |
| 2706 | - </condition> | |
| 2707 | - </compare> | |
| 2708 | - <cluster_schema/> | |
| 2709 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2710 | - <xloc>310</xloc> | |
| 2711 | - <yloc>133</yloc> | |
| 2712 | - <draw>Y</draw> | |
| 2713 | - </GUI> | |
| 2714 | - </step> | |
| 2715 | - | |
| 2716 | - <step> | |
| 2717 | - <name>过滤记录(发车时间为空)</name> | |
| 2718 | - <type>FilterRows</type> | |
| 2719 | - <description/> | |
| 2720 | - <distribute>Y</distribute> | |
| 2721 | - <custom_distribution/> | |
| 2722 | - <copies>1</copies> | |
| 2723 | - <partitioning> | |
| 2724 | - <method>none</method> | |
| 2725 | - <schema_name/> | |
| 2726 | - </partitioning> | |
| 2727 | -<send_true_to/> | |
| 2728 | -<send_false_to/> | |
| 2729 | - <compare> | |
| 2730 | -<condition> | |
| 2731 | - <negated>N</negated> | |
| 2732 | - <leftvalue>sendtime</leftvalue> | |
| 2733 | - <function>IS NOT NULL</function> | |
| 2734 | - <rightvalue/> | |
| 2735 | - </condition> | |
| 2736 | - </compare> | |
| 2737 | - <cluster_schema/> | |
| 2738 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2739 | - <xloc>571</xloc> | |
| 2740 | - <yloc>44</yloc> | |
| 2741 | - <draw>Y</draw> | |
| 2742 | - </GUI> | |
| 2743 | - </step> | |
| 2744 | - | |
| 2745 | - <step> | |
| 2746 | - <name>进场班次_确定起点站名字</name> | |
| 2747 | - <type>ScriptValueMod</type> | |
| 2748 | - <description/> | |
| 2749 | - <distribute>Y</distribute> | |
| 2750 | - <custom_distribution/> | |
| 2751 | - <copies>1</copies> | |
| 2752 | - <partitioning> | |
| 2753 | - <method>none</method> | |
| 2754 | - <schema_name/> | |
| 2755 | - </partitioning> | |
| 2756 | - <compatible>N</compatible> | |
| 2757 | - <optimizationLevel>9</optimizationLevel> | |
| 2758 | - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 2759 | - <jsScript_name>Script 1</jsScript_name> | |
| 2760 | - <jsScript_script>//Script here

// 添加站点标识
var cc_groups = qdzgroups.split(","); // 所有班次起点站数组
var qdzname_calcu = cc_groups[gno - 2]; // 进场班次的起点站是上一个班次的终点站,这里只有上一个班次的起点站,还需要计算
var startZdtype_calcu = 'B';
var endZdtype_calcu = 'E';

var destory = 0; // 未撤销flag</jsScript_script> | |
| 2761 | - </jsScript> </jsScripts> <fields> <field> <name>qdzname_calcu</name> | |
| 2762 | - <rename>qdzname_calcu</rename> | |
| 2763 | - <type>String</type> | |
| 2764 | - <length>-1</length> | |
| 2765 | - <precision>-1</precision> | |
| 2766 | - <replace>N</replace> | |
| 2767 | - </field> <field> <name>startZdtype_calcu</name> | |
| 2768 | - <rename>startZdtype_calcu</rename> | |
| 2769 | - <type>String</type> | |
| 2770 | - <length>-1</length> | |
| 2771 | - <precision>-1</precision> | |
| 2772 | - <replace>N</replace> | |
| 2773 | - </field> <field> <name>endZdtype_calcu</name> | |
| 2774 | - <rename>endZdtype_calcu</rename> | |
| 2775 | - <type>String</type> | |
| 2776 | - <length>-1</length> | |
| 2777 | - <precision>-1</precision> | |
| 2778 | - <replace>N</replace> | |
| 2779 | - </field> <field> <name>destory</name> | |
| 2780 | - <rename>destory</rename> | |
| 2781 | - <type>Integer</type> | |
| 2782 | - <length>-1</length> | |
| 2783 | - <precision>-1</precision> | |
| 2784 | - <replace>N</replace> | |
| 2785 | - </field> </fields> <cluster_schema/> | |
| 2786 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2787 | - <xloc>754</xloc> | |
| 2788 | - <yloc>610</yloc> | |
| 2789 | - <draw>Y</draw> | |
| 2790 | - </GUI> | |
| 2791 | - </step> | |
| 2792 | - | |
| 2793 | - <step> | |
| 2794 | - <name>进场班次数据</name> | |
| 2795 | - <type>Dummy</type> | |
| 2796 | - <description/> | |
| 2797 | - <distribute>Y</distribute> | |
| 2798 | - <custom_distribution/> | |
| 2799 | - <copies>1</copies> | |
| 2800 | - <partitioning> | |
| 2801 | - <method>none</method> | |
| 2802 | - <schema_name/> | |
| 2803 | - </partitioning> | |
| 2804 | - <cluster_schema/> | |
| 2805 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2806 | - <xloc>997</xloc> | |
| 2807 | - <yloc>606</yloc> | |
| 2808 | - <draw>Y</draw> | |
| 2809 | - </GUI> | |
| 2810 | - </step> | |
| 2811 | - | |
| 2812 | - <step_error_handling> | |
| 2813 | - <error> | |
| 2814 | - <source_step>插入/更新bsth_c_s_ttinfo_detail</source_step> | |
| 2815 | - <target_step/> | |
| 2816 | - <is_enabled>Y</is_enabled> | |
| 2817 | - <nr_valuename>c1</nr_valuename> | |
| 2818 | - <descriptions_valuename>c2</descriptions_valuename> | |
| 2819 | - <fields_valuename>c3</fields_valuename> | |
| 2820 | - <codes_valuename>c4</codes_valuename> | |
| 2821 | - <max_errors/> | |
| 2822 | - <max_pct_errors/> | |
| 2823 | - <min_pct_rows/> | |
| 2824 | - </error> | |
| 2825 | - </step_error_handling> | |
| 2826 | - <slave-step-copy-partition-distribution> | |
| 2827 | -</slave-step-copy-partition-distribution> | |
| 2828 | - <slave_transformation>N</slave_transformation> | |
| 2829 | - | |
| 2830 | -</transformation> | |
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | +<transformation> | |
| 3 | + <info> | |
| 4 | + <name>时刻表明细导入</name> | |
| 5 | + <description>时刻表明细信息导入</description> | |
| 6 | + <extended_description>时刻表明细信息</extended_description> | |
| 7 | + <trans_version/> | |
| 8 | + <trans_type>Normal</trans_type> | |
| 9 | + <trans_status>0</trans_status> | |
| 10 | + <directory>/</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/06/30 12:21:57.536</created_date> | |
| 71 | + <modified_user>-</modified_user> | |
| 72 | + <modified_date>2016/06/30 12:21:57.536</modified_date> | |
| 73 | + <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA=</key_for_session_key> | |
| 74 | + <is_key_private>N</is_key_private> | |
| 75 | + </info> | |
| 76 | + <notepads> | |
| 77 | + <notepad> | |
| 78 | + <note>字典表对应(以后直接查找表 bsth_c_sys_dictionary)
类型 代码 名称
LineTrend 0 上行
LineTrend 1 下行
ScheduleType normal 正常班次
ScheduleType out 出场
ScheduleType in 进场
ScheduleType temp 临加
ScheduleType region 区间
ScheduleType venting 放空
ScheduleType major 放大站</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>因为时刻表输入格式不确定性,主要因为表结构是反范式化的,
所以需要外部动态指定愿数据,头三个step动态指定愿数据

</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>这里有些问题
在window2012的环境下,
MySql数据库查询中如果返回中文内容的字段,这个内容乱码
解决办法,就是数据库查询全部缓存,就不乱码
linux环境下没问题</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>出场班次,方向有时确定不准,
空的情况下设定为0(上行)</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>进场班次,方向有时确定不准,
空的情况下设定为0(上行)</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>bus_control_variable</name> | |
| 185 | + <server>${v_db_ip}</server> | |
| 186 | + <type>MYSQL</type> | |
| 187 | + <access>Native</access> | |
| 188 | + <database>${v_db_dname}</database> | |
| 189 | + <port>3306</port> | |
| 190 | + <username>${v_db_uname}</username> | |
| 191 | + <password>${v_db_pwd}</password> | |
| 192 | + <servername/> | |
| 193 | + <data_tablespace/> | |
| 194 | + <index_tablespace/> | |
| 195 | + <attributes> | |
| 196 | + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute> | |
| 197 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 198 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 199 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 200 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 201 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 202 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 203 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 204 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 205 | + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute> | |
| 206 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 207 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 208 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 209 | + </attributes> | |
| 210 | + </connection> | |
| 211 | + <connection> | |
| 212 | + <name>bus_control_公司_201</name> | |
| 213 | + <server>localhost</server> | |
| 214 | + <type>MYSQL</type> | |
| 215 | + <access>Native</access> | |
| 216 | + <database>control</database> | |
| 217 | + <port>3306</port> | |
| 218 | + <username>root</username> | |
| 219 | + <password>Encrypted </password> | |
| 220 | + <servername/> | |
| 221 | + <data_tablespace/> | |
| 222 | + <index_tablespace/> | |
| 223 | + <attributes> | |
| 224 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 225 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 226 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 227 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 228 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 229 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 230 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 231 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 232 | + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute> | |
| 233 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 234 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 235 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 236 | + </attributes> | |
| 237 | + </connection> | |
| 238 | + <connection> | |
| 239 | + <name>bus_control_本机</name> | |
| 240 | + <server>localhost</server> | |
| 241 | + <type>MYSQL</type> | |
| 242 | + <access>Native</access> | |
| 243 | + <database>control</database> | |
| 244 | + <port>3306</port> | |
| 245 | + <username>root</username> | |
| 246 | + <password>Encrypted </password> | |
| 247 | + <servername/> | |
| 248 | + <data_tablespace/> | |
| 249 | + <index_tablespace/> | |
| 250 | + <attributes> | |
| 251 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 252 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 253 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 254 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 255 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 256 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 257 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 258 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 259 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 260 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 261 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 262 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 263 | + </attributes> | |
| 264 | + </connection> | |
| 265 | + <connection> | |
| 266 | + <name>xlab_mysql_youle</name> | |
| 267 | + <server>101.231.124.8</server> | |
| 268 | + <type>MYSQL</type> | |
| 269 | + <access>Native</access> | |
| 270 | + <database>xlab_youle</database> | |
| 271 | + <port>45687</port> | |
| 272 | + <username>xlab-youle</username> | |
| 273 | + <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password> | |
| 274 | + <servername/> | |
| 275 | + <data_tablespace/> | |
| 276 | + <index_tablespace/> | |
| 277 | + <attributes> | |
| 278 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 279 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 280 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 281 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 282 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 283 | + <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute> | |
| 284 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 285 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 286 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 287 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 288 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 289 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 290 | + </attributes> | |
| 291 | + </connection> | |
| 292 | + <connection> | |
| 293 | + <name>xlab_mysql_youle(本机)</name> | |
| 294 | + <server>localhost</server> | |
| 295 | + <type>MYSQL</type> | |
| 296 | + <access>Native</access> | |
| 297 | + <database>xlab_youle</database> | |
| 298 | + <port>3306</port> | |
| 299 | + <username>root</username> | |
| 300 | + <password>Encrypted </password> | |
| 301 | + <servername/> | |
| 302 | + <data_tablespace/> | |
| 303 | + <index_tablespace/> | |
| 304 | + <attributes> | |
| 305 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 306 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 307 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 308 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 309 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 310 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 311 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 312 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 313 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 314 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 315 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 316 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 317 | + </attributes> | |
| 318 | + </connection> | |
| 319 | + <connection> | |
| 320 | + <name>xlab_youle</name> | |
| 321 | + <server/> | |
| 322 | + <type>MYSQL</type> | |
| 323 | + <access>JNDI</access> | |
| 324 | + <database>xlab_youle</database> | |
| 325 | + <port>1521</port> | |
| 326 | + <username/> | |
| 327 | + <password>Encrypted </password> | |
| 328 | + <servername/> | |
| 329 | + <data_tablespace/> | |
| 330 | + <index_tablespace/> | |
| 331 | + <attributes> | |
| 332 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 333 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 334 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 335 | + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | |
| 336 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 337 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 338 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 339 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 340 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 341 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 342 | + </attributes> | |
| 343 | + </connection> | |
| 344 | + <order> | |
| 345 | + <hop> <from>时刻表明细信息Excel输入</from><to>班次数据范式化</to><enabled>Y</enabled> </hop> | |
| 346 | + <hop> <from>添加发车顺序号</from><to>过滤记录(发车时间为空)</to><enabled>Y</enabled> </hop> | |
| 347 | + <hop> <from>过滤记录(发车时间为空)</from><to>添加对应班次数</to><enabled>Y</enabled> </hop> | |
| 348 | + <hop> <from>添加对应班次数</from><to>处理数据</to><enabled>Y</enabled> </hop> | |
| 349 | + <hop> <from>处理数据</from><to>分组各个路牌的站</to><enabled>Y</enabled> </hop> | |
| 350 | + <hop> <from>查找时刻表基础信息关联</from><to>查找路牌关联</to><enabled>Y</enabled> </hop> | |
| 351 | + <hop> <from>查找线路关联</from><to>查找时刻表基础信息关联</to><enabled>Y</enabled> </hop> | |
| 352 | + <hop> <from>上下行字典</from><to>班次类型字典</to><enabled>Y</enabled> </hop> | |
| 353 | + <hop> <from>上下行字典 2</from><to>班次类型字典 2</to><enabled>Y</enabled> </hop> | |
| 354 | + <hop> <from>上下行字典 3</from><to>班次类型字典 3</to><enabled>Y</enabled> </hop> | |
| 355 | + <hop> <from>匹配上下行正常班次里程时间</from><to>类型修正</to><enabled>Y</enabled> </hop> | |
| 356 | + <hop> <from>按照班次类型过滤数据1</from><to>按照班次类型过滤数据2</to><enabled>Y</enabled> </hop> | |
| 357 | + <hop> <from>按照班次类型过滤数据1</from><to>正常班次数据</to><enabled>Y</enabled> </hop> | |
| 358 | + <hop> <from>按照班次类型过滤数据2</from><to>出场班次数据</to><enabled>Y</enabled> </hop> | |
| 359 | + <hop> <from>按照班次类型过滤数据2</from><to>进场班次数据</to><enabled>Y</enabled> </hop> | |
| 360 | + <hop> <from>查找线路上下行里程时间</from><to>匹配上下行正常班次里程时间</to><enabled>Y</enabled> </hop> | |
| 361 | + <hop> <from>查找终点站关联</from><to>上下行字典</to><enabled>Y</enabled> </hop> | |
| 362 | + <hop> <from>查找起点站关联并确定上下行</from><to>查找终点站关联</to><enabled>Y</enabled> </hop> | |
| 363 | + <hop> <from>正常班次_处理数据</from><to>查找起点站关联并确定上下行</to><enabled>Y</enabled> </hop> | |
| 364 | + <hop> <from>正常班次数据</from><to>正常班次_处理数据</to><enabled>Y</enabled> </hop> | |
| 365 | + <hop> <from>班次类型字典</from><to>查找线路上下行里程时间</to><enabled>Y</enabled> </hop> | |
| 366 | + <hop> <from>班次类型字典 2</from><to>查找线路出场里程时间</to><enabled>Y</enabled> </hop> | |
| 367 | + <hop> <from>班次类型字典 3</from><to>查找线路进场里程时间</to><enabled>Y</enabled> </hop> | |
| 368 | + <hop> <from>查找路牌关联</from><to>计算班次类型</to><enabled>Y</enabled> </hop> | |
| 369 | + <hop> <from>计算班次类型</from><to>按照班次类型过滤数据1</to><enabled>Y</enabled> </hop> | |
| 370 | + <hop> <from>出场班次数据</from><to>查找停车场1</to><enabled>Y</enabled> </hop> | |
| 371 | + <hop> <from>查找停车场1</from><to>出场班次_确定终点站名字</to><enabled>Y</enabled> </hop> | |
| 372 | + <hop> <from>出场班次_确定终点站名字</from><to>查找出场终点站关联并确定上下行</to><enabled>Y</enabled> </hop> | |
| 373 | + <hop> <from>查找出场终点站关联并确定上下行</from><to>上下行字典 2</to><enabled>Y</enabled> </hop> | |
| 374 | + <hop> <from>进场班次数据</from><to>查找停车场2</to><enabled>Y</enabled> </hop> | |
| 375 | + <hop> <from>查找停车场2</from><to>进场班次_确定起点站名字</to><enabled>Y</enabled> </hop> | |
| 376 | + <hop> <from>进场班次_确定起点站名字</from><to>查找进场班次上一个班次的线路方向</to><enabled>Y</enabled> </hop> | |
| 377 | + <hop> <from>查找进场班次上一个班次的线路方向</from><to>查找进场班次上一个班次的终点站,并作为进场班次的起点站</to><enabled>Y</enabled> </hop> | |
| 378 | + <hop> <from>字段选择</from><to>添加发车顺序号</to><enabled>Y</enabled> </hop> | |
| 379 | + <hop> <from>分组各个路牌的站</from><to>查找线路关联</to><enabled>Y</enabled> </hop> | |
| 380 | + <hop> <from>增加时刻表名字,线路名字,停车场名字</from><to>记录关联 (笛卡尔输出)</to><enabled>Y</enabled> </hop> | |
| 381 | + <hop> <from>班次数据范式化</from><to>记录关联 (笛卡尔输出)</to><enabled>Y</enabled> </hop> | |
| 382 | + <hop> <from>记录关联 (笛卡尔输出)</from><to>字段选择</to><enabled>Y</enabled> </hop> | |
| 383 | + <hop> <from>类型修正</from><to>插入/更新bsth_c_s_ttinfo_detail</to><enabled>Y</enabled> </hop> | |
| 384 | + <hop> <from>查找进场班次上一个班次的终点站,并作为进场班次的起点站</from><to>查找进场起点站关联确定上下行</to><enabled>Y</enabled> </hop> | |
| 385 | + <hop> <from>查找进场起点站关联确定上下行</from><to>上下行字典 3</to><enabled>Y</enabled> </hop> | |
| 386 | + <hop> <from>查找线路出场里程时间</from><to>匹配出场班次里程时间</to><enabled>Y</enabled> </hop> | |
| 387 | + <hop> <from>查找线路进场里程时间</from><to>匹配进场班次里程时间</to><enabled>Y</enabled> </hop> | |
| 388 | + <hop> <from>匹配出场班次里程时间</from><to>上下行NULL判定</to><enabled>Y</enabled> </hop> | |
| 389 | + <hop> <from>上下行NULL判定</from><to>类型修正 2</to><enabled>Y</enabled> </hop> | |
| 390 | + <hop> <from>类型修正 2</from><to>插入/更新bsth_c_s_ttinfo_detail 2</to><enabled>Y</enabled> </hop> | |
| 391 | + <hop> <from>匹配进场班次里程时间</from><to>上下行判定 2</to><enabled>Y</enabled> </hop> | |
| 392 | + <hop> <from>上下行判定 2</from><to>类型修正 3</to><enabled>Y</enabled> </hop> | |
| 393 | + <hop> <from>类型修正 3</from><to>插入/更新bsth_c_s_ttinfo_detail 3</to><enabled>Y</enabled> </hop> | |
| 394 | + </order> | |
| 395 | + <step> | |
| 396 | + <name>上下行NULL判定</name> | |
| 397 | + <type>IfNull</type> | |
| 398 | + <description/> | |
| 399 | + <distribute>Y</distribute> | |
| 400 | + <custom_distribution/> | |
| 401 | + <copies>1</copies> | |
| 402 | + <partitioning> | |
| 403 | + <method>none</method> | |
| 404 | + <schema_name/> | |
| 405 | + </partitioning> | |
| 406 | + <replaceAllByValue/> | |
| 407 | + <replaceAllMask/> | |
| 408 | + <selectFields>Y</selectFields> | |
| 409 | + <selectValuesType>N</selectValuesType> | |
| 410 | + <setEmptyStringAll>N</setEmptyStringAll> | |
| 411 | + <valuetypes> | |
| 412 | + </valuetypes> | |
| 413 | + <fields> | |
| 414 | + <field> | |
| 415 | + <name>sxx</name> | |
| 416 | + <value>0</value> | |
| 417 | + <mask/> | |
| 418 | + <set_empty_string>N</set_empty_string> | |
| 419 | + </field> | |
| 420 | + </fields> | |
| 421 | + <cluster_schema/> | |
| 422 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 423 | + <xloc>230</xloc> | |
| 424 | + <yloc>946</yloc> | |
| 425 | + <draw>Y</draw> | |
| 426 | + </GUI> | |
| 427 | + </step> | |
| 428 | + | |
| 429 | + <step> | |
| 430 | + <name>上下行判定 2</name> | |
| 431 | + <type>IfNull</type> | |
| 432 | + <description/> | |
| 433 | + <distribute>Y</distribute> | |
| 434 | + <custom_distribution/> | |
| 435 | + <copies>1</copies> | |
| 436 | + <partitioning> | |
| 437 | + <method>none</method> | |
| 438 | + <schema_name/> | |
| 439 | + </partitioning> | |
| 440 | + <replaceAllByValue/> | |
| 441 | + <replaceAllMask/> | |
| 442 | + <selectFields>Y</selectFields> | |
| 443 | + <selectValuesType>N</selectValuesType> | |
| 444 | + <setEmptyStringAll>N</setEmptyStringAll> | |
| 445 | + <valuetypes> | |
| 446 | + </valuetypes> | |
| 447 | + <fields> | |
| 448 | + <field> | |
| 449 | + <name>sxx2</name> | |
| 450 | + <value>0</value> | |
| 451 | + <mask/> | |
| 452 | + <set_empty_string>N</set_empty_string> | |
| 453 | + </field> | |
| 454 | + </fields> | |
| 455 | + <cluster_schema/> | |
| 456 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 457 | + <xloc>804</xloc> | |
| 458 | + <yloc>1081</yloc> | |
| 459 | + <draw>Y</draw> | |
| 460 | + </GUI> | |
| 461 | + </step> | |
| 462 | + | |
| 463 | + <step> | |
| 464 | + <name>上下行字典</name> | |
| 465 | + <type>ValueMapper</type> | |
| 466 | + <description/> | |
| 467 | + <distribute>Y</distribute> | |
| 468 | + <custom_distribution/> | |
| 469 | + <copies>1</copies> | |
| 470 | + <partitioning> | |
| 471 | + <method>none</method> | |
| 472 | + <schema_name/> | |
| 473 | + </partitioning> | |
| 474 | + <field_to_use>sxx</field_to_use> | |
| 475 | + <target_field>sxx_desc</target_field> | |
| 476 | + <non_match_default/> | |
| 477 | + <fields> | |
| 478 | + <field> | |
| 479 | + <source_value>0</source_value> | |
| 480 | + <target_value>上行</target_value> | |
| 481 | + </field> | |
| 482 | + <field> | |
| 483 | + <source_value>1</source_value> | |
| 484 | + <target_value>下行</target_value> | |
| 485 | + </field> | |
| 486 | + </fields> | |
| 487 | + <cluster_schema/> | |
| 488 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 489 | + <xloc>147</xloc> | |
| 490 | + <yloc>403</yloc> | |
| 491 | + <draw>Y</draw> | |
| 492 | + </GUI> | |
| 493 | + </step> | |
| 494 | + | |
| 495 | + <step> | |
| 496 | + <name>上下行字典 2</name> | |
| 497 | + <type>ValueMapper</type> | |
| 498 | + <description/> | |
| 499 | + <distribute>Y</distribute> | |
| 500 | + <custom_distribution/> | |
| 501 | + <copies>1</copies> | |
| 502 | + <partitioning> | |
| 503 | + <method>none</method> | |
| 504 | + <schema_name/> | |
| 505 | + </partitioning> | |
| 506 | + <field_to_use>sxx</field_to_use> | |
| 507 | + <target_field>sxx_desc</target_field> | |
| 508 | + <non_match_default/> | |
| 509 | + <fields> | |
| 510 | + <field> | |
| 511 | + <source_value>0</source_value> | |
| 512 | + <target_value>上行</target_value> | |
| 513 | + </field> | |
| 514 | + <field> | |
| 515 | + <source_value>1</source_value> | |
| 516 | + <target_value>下行</target_value> | |
| 517 | + </field> | |
| 518 | + </fields> | |
| 519 | + <cluster_schema/> | |
| 520 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 521 | + <xloc>331</xloc> | |
| 522 | + <yloc>598</yloc> | |
| 523 | + <draw>Y</draw> | |
| 524 | + </GUI> | |
| 525 | + </step> | |
| 526 | + | |
| 527 | + <step> | |
| 528 | + <name>上下行字典 3</name> | |
| 529 | + <type>ValueMapper</type> | |
| 530 | + <description/> | |
| 531 | + <distribute>Y</distribute> | |
| 532 | + <custom_distribution/> | |
| 533 | + <copies>1</copies> | |
| 534 | + <partitioning> | |
| 535 | + <method>none</method> | |
| 536 | + <schema_name/> | |
| 537 | + </partitioning> | |
| 538 | + <field_to_use>sxx</field_to_use> | |
| 539 | + <target_field>sxx_desc</target_field> | |
| 540 | + <non_match_default/> | |
| 541 | + <fields> | |
| 542 | + <field> | |
| 543 | + <source_value>0</source_value> | |
| 544 | + <target_value>上行</target_value> | |
| 545 | + </field> | |
| 546 | + <field> | |
| 547 | + <source_value>1</source_value> | |
| 548 | + <target_value>下行</target_value> | |
| 549 | + </field> | |
| 550 | + </fields> | |
| 551 | + <cluster_schema/> | |
| 552 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 553 | + <xloc>553</xloc> | |
| 554 | + <yloc>859</yloc> | |
| 555 | + <draw>Y</draw> | |
| 556 | + </GUI> | |
| 557 | + </step> | |
| 558 | + | |
| 559 | + <step> | |
| 560 | + <name>出场班次_确定终点站名字</name> | |
| 561 | + <type>ScriptValueMod</type> | |
| 562 | + <description/> | |
| 563 | + <distribute>Y</distribute> | |
| 564 | + <custom_distribution/> | |
| 565 | + <copies>1</copies> | |
| 566 | + <partitioning> | |
| 567 | + <method>none</method> | |
| 568 | + <schema_name/> | |
| 569 | + </partitioning> | |
| 570 | + <compatible>N</compatible> | |
| 571 | + <optimizationLevel>9</optimizationLevel> | |
| 572 | + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 573 | + <jsScript_name>Script 1</jsScript_name> | |
| 574 | + <jsScript_script>//Script here

// 添加站点标识
var cc_groups = qdzgroups.split(","); // 所有班次起点站数组
var zdzname = cc_groups[gno]; // 出场班次的终点站是下个班次的起始站
var endZdtype = 'E';

var destory = 0; // 未撤销flag</jsScript_script> | |
| 575 | + </jsScript> </jsScripts> <fields> <field> <name>zdzname</name> | |
| 576 | + <rename>zdzname</rename> | |
| 577 | + <type>String</type> | |
| 578 | + <length>-1</length> | |
| 579 | + <precision>-1</precision> | |
| 580 | + <replace>N</replace> | |
| 581 | + </field> <field> <name>endZdtype</name> | |
| 582 | + <rename>endZdtype</rename> | |
| 583 | + <type>String</type> | |
| 584 | + <length>-1</length> | |
| 585 | + <precision>-1</precision> | |
| 586 | + <replace>N</replace> | |
| 587 | + </field> <field> <name>destory</name> | |
| 588 | + <rename>destory</rename> | |
| 589 | + <type>Integer</type> | |
| 590 | + <length>-1</length> | |
| 591 | + <precision>-1</precision> | |
| 592 | + <replace>N</replace> | |
| 593 | + </field> </fields> <cluster_schema/> | |
| 594 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 595 | + <xloc>575</xloc> | |
| 596 | + <yloc>502</yloc> | |
| 597 | + <draw>Y</draw> | |
| 598 | + </GUI> | |
| 599 | + </step> | |
| 600 | + | |
| 601 | + <step> | |
| 602 | + <name>出场班次数据</name> | |
| 603 | + <type>Dummy</type> | |
| 604 | + <description/> | |
| 605 | + <distribute>Y</distribute> | |
| 606 | + <custom_distribution/> | |
| 607 | + <copies>1</copies> | |
| 608 | + <partitioning> | |
| 609 | + <method>none</method> | |
| 610 | + <schema_name/> | |
| 611 | + </partitioning> | |
| 612 | + <cluster_schema/> | |
| 613 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 614 | + <xloc>869</xloc> | |
| 615 | + <yloc>504</yloc> | |
| 616 | + <draw>Y</draw> | |
| 617 | + </GUI> | |
| 618 | + </step> | |
| 619 | + | |
| 620 | + <step> | |
| 621 | + <name>分组各个路牌的站</name> | |
| 622 | + <type>GroupBy</type> | |
| 623 | + <description/> | |
| 624 | + <distribute>Y</distribute> | |
| 625 | + <custom_distribution/> | |
| 626 | + <copies>1</copies> | |
| 627 | + <partitioning> | |
| 628 | + <method>none</method> | |
| 629 | + <schema_name/> | |
| 630 | + </partitioning> | |
| 631 | + <all_rows>Y</all_rows> | |
| 632 | + <ignore_aggregate>N</ignore_aggregate> | |
| 633 | + <field_ignore/> | |
| 634 | + <directory>%%java.io.tmpdir%%</directory> | |
| 635 | + <prefix>grp</prefix> | |
| 636 | + <add_linenr>Y</add_linenr> | |
| 637 | + <linenr_fieldname>gno</linenr_fieldname> | |
| 638 | + <give_back_row>N</give_back_row> | |
| 639 | + <group> | |
| 640 | + <field> | |
| 641 | + <name>lp</name> | |
| 642 | + </field> | |
| 643 | + </group> | |
| 644 | + <fields> | |
| 645 | + <field> | |
| 646 | + <aggregate>qdzgroups</aggregate> | |
| 647 | + <subject>qdzname</subject> | |
| 648 | + <type>CONCAT_STRING</type> | |
| 649 | + <valuefield>,</valuefield> | |
| 650 | + </field> | |
| 651 | + </fields> | |
| 652 | + <cluster_schema/> | |
| 653 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 654 | + <xloc>892</xloc> | |
| 655 | + <yloc>44</yloc> | |
| 656 | + <draw>Y</draw> | |
| 657 | + </GUI> | |
| 658 | + </step> | |
| 659 | + | |
| 660 | + <step> | |
| 661 | + <name>匹配上下行正常班次里程时间</name> | |
| 662 | + <type>ScriptValueMod</type> | |
| 663 | + <description/> | |
| 664 | + <distribute>Y</distribute> | |
| 665 | + <custom_distribution/> | |
| 666 | + <copies>1</copies> | |
| 667 | + <partitioning> | |
| 668 | + <method>none</method> | |
| 669 | + <schema_name/> | |
| 670 | + </partitioning> | |
| 671 | + <compatible>N</compatible> | |
| 672 | + <optimizationLevel>9</optimizationLevel> | |
| 673 | + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 674 | + <jsScript_name>Script 1</jsScript_name> | |
| 675 | + <jsScript_script>//Script here

var jhlc; // 计划里程
var bcsj; // 班次时间

if (sxx == 0) { // 上行
 jhlc = up_mileage;
 bcsj = up_travel_time;
} else { // sxx == 1 下行
 jhlc = down_mileage;
 bcsj = down_travel_time;
}</jsScript_script> | |
| 676 | + </jsScript> </jsScripts> <fields> <field> <name>jhlc</name> | |
| 677 | + <rename>jhlc</rename> | |
| 678 | + <type>String</type> | |
| 679 | + <length>-1</length> | |
| 680 | + <precision>-1</precision> | |
| 681 | + <replace>N</replace> | |
| 682 | + </field> <field> <name>bcsj</name> | |
| 683 | + <rename>bcsj</rename> | |
| 684 | + <type>String</type> | |
| 685 | + <length>-1</length> | |
| 686 | + <precision>-1</precision> | |
| 687 | + <replace>N</replace> | |
| 688 | + </field> </fields> <cluster_schema/> | |
| 689 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 690 | + <xloc>148</xloc> | |
| 691 | + <yloc>674</yloc> | |
| 692 | + <draw>Y</draw> | |
| 693 | + </GUI> | |
| 694 | + </step> | |
| 695 | + | |
| 696 | + <step> | |
| 697 | + <name>匹配出场班次里程时间</name> | |
| 698 | + <type>ScriptValueMod</type> | |
| 699 | + <description/> | |
| 700 | + <distribute>Y</distribute> | |
| 701 | + <custom_distribution/> | |
| 702 | + <copies>1</copies> | |
| 703 | + <partitioning> | |
| 704 | + <method>none</method> | |
| 705 | + <schema_name/> | |
| 706 | + </partitioning> | |
| 707 | + <compatible>N</compatible> | |
| 708 | + <optimizationLevel>9</optimizationLevel> | |
| 709 | + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 710 | + <jsScript_name>Script 1</jsScript_name> | |
| 711 | + <jsScript_script>//Script here

var out_mileage; // 出场计划里程
var out_time; // 出场计划时间

if (sxx == 0) { // 上行
 out_mileage = up_out_mileage;
 out_time = up_out_timer;
} else { // sxx == 1 下行
 out_mileage = down_out_mileage;
 out_time = down_out_timer;
}



</jsScript_script> | |
| 712 | + </jsScript> </jsScripts> <fields> <field> <name>out_mileage</name> | |
| 713 | + <rename>out_mileage</rename> | |
| 714 | + <type>String</type> | |
| 715 | + <length>-1</length> | |
| 716 | + <precision>-1</precision> | |
| 717 | + <replace>N</replace> | |
| 718 | + </field> <field> <name>out_time</name> | |
| 719 | + <rename>out_time</rename> | |
| 720 | + <type>String</type> | |
| 721 | + <length>-1</length> | |
| 722 | + <precision>-1</precision> | |
| 723 | + <replace>N</replace> | |
| 724 | + </field> </fields> <cluster_schema/> | |
| 725 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 726 | + <xloc>336</xloc> | |
| 727 | + <yloc>862</yloc> | |
| 728 | + <draw>Y</draw> | |
| 729 | + </GUI> | |
| 730 | + </step> | |
| 731 | + | |
| 732 | + <step> | |
| 733 | + <name>匹配进场班次里程时间</name> | |
| 734 | + <type>ScriptValueMod</type> | |
| 735 | + <description/> | |
| 736 | + <distribute>Y</distribute> | |
| 737 | + <custom_distribution/> | |
| 738 | + <copies>1</copies> | |
| 739 | + <partitioning> | |
| 740 | + <method>none</method> | |
| 741 | + <schema_name/> | |
| 742 | + </partitioning> | |
| 743 | + <compatible>N</compatible> | |
| 744 | + <optimizationLevel>9</optimizationLevel> | |
| 745 | + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 746 | + <jsScript_name>Script 1</jsScript_name> | |
| 747 | + <jsScript_script>//Script here

var parade_mileage; // 进场计划里程
var parade_time; // 进场计划时间

if (sxx2 == 0) { // 上行
 parade_mileage = up_in_mileage;
 parade_time = up_in_timer;
} else { // sxx == 1 下行
 parade_mileage = down_in_mileage;
 parade_time = down_in_timer;
}



</jsScript_script> | |
| 748 | + </jsScript> </jsScripts> <fields> <field> <name>parade_mileage</name> | |
| 749 | + <rename>parade_mileage</rename> | |
| 750 | + <type>String</type> | |
| 751 | + <length>-1</length> | |
| 752 | + <precision>-1</precision> | |
| 753 | + <replace>N</replace> | |
| 754 | + </field> <field> <name>parade_time</name> | |
| 755 | + <rename>parade_time</rename> | |
| 756 | + <type>String</type> | |
| 757 | + <length>-1</length> | |
| 758 | + <precision>-1</precision> | |
| 759 | + <replace>N</replace> | |
| 760 | + </field> </fields> <cluster_schema/> | |
| 761 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 762 | + <xloc>726</xloc> | |
| 763 | + <yloc>1005</yloc> | |
| 764 | + <draw>Y</draw> | |
| 765 | + </GUI> | |
| 766 | + </step> | |
| 767 | + | |
| 768 | + <step> | |
| 769 | + <name>增加时刻表名字,线路名字,停车场名字</name> | |
| 770 | + <type>DataGrid</type> | |
| 771 | + <description/> | |
| 772 | + <distribute>Y</distribute> | |
| 773 | + <custom_distribution/> | |
| 774 | + <copies>1</copies> | |
| 775 | + <partitioning> | |
| 776 | + <method>none</method> | |
| 777 | + <schema_name/> | |
| 778 | + </partitioning> | |
| 779 | + <fields> | |
| 780 | + </fields> | |
| 781 | + <data> | |
| 782 | + <line> </line> | |
| 783 | + </data> | |
| 784 | + <cluster_schema/> | |
| 785 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 786 | + <xloc>110</xloc> | |
| 787 | + <yloc>133</yloc> | |
| 788 | + <draw>Y</draw> | |
| 789 | + </GUI> | |
| 790 | + </step> | |
| 791 | + | |
| 792 | + <step> | |
| 793 | + <name>处理数据</name> | |
| 794 | + <type>ScriptValueMod</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 | + <compatible>N</compatible> | |
| 804 | + <optimizationLevel>9</optimizationLevel> | |
| 805 | + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 806 | + <jsScript_name>Script 1</jsScript_name> | |
| 807 | + <jsScript_script>//Script here

// 使用正则表达式去除站点名称中的数字
qdzname = qdzname.replace(/\d+/g,'');

// sendtime处理,hhmm,hh:mm,hh,mm
var sendtime_calcu;
if (sendtime.length == 5) { // 最长格式,包括分隔符,统一把分隔符替换成冒号
 sendtime_calcu = sendtime.substr(0, 2) + ":" + sendtime.substr(3, 2);
} else if (sendtime.length == 4) {
 if (sendtime.indexOf(":") > 0) { // 冒号分隔,无需修改
 sendtime_calcu = sendtime;
 } else if (sendtime.indexOf(",") > 0) { // 逗号分隔,改成冒号分隔
 sendtime_calcu = sendtime.substr(0, 1) + ":" + sendtime.substr(2, 2);
 } else { // 无分隔符,改成冒号分隔
 sendtime_calcu = sendtime.substr(0, 2) + ":" + sendtime.substr(2, 2);
 }
} else if (sendtime.length == 3) { // 无分隔符,改成冒号分隔
 sendtime_calcu = sendtime.substr(0, 1) + ":" + sendtime.substr(1, 2);
}

// 设置分班
var isfb = 0;

// 设置isCanceled
var iscanceled = 0;</jsScript_script> | |
| 808 | + </jsScript> </jsScripts> <fields> <field> <name>qdzname</name> | |
| 809 | + <rename>qdzname</rename> | |
| 810 | + <type>String</type> | |
| 811 | + <length>-1</length> | |
| 812 | + <precision>-1</precision> | |
| 813 | + <replace>Y</replace> | |
| 814 | + </field> <field> <name>isfb</name> | |
| 815 | + <rename>isfb</rename> | |
| 816 | + <type>Integer</type> | |
| 817 | + <length>-1</length> | |
| 818 | + <precision>-1</precision> | |
| 819 | + <replace>N</replace> | |
| 820 | + </field> <field> <name>iscanceled</name> | |
| 821 | + <rename>iscanceled</rename> | |
| 822 | + <type>Integer</type> | |
| 823 | + <length>-1</length> | |
| 824 | + <precision>-1</precision> | |
| 825 | + <replace>N</replace> | |
| 826 | + </field> <field> <name>sendtime_calcu</name> | |
| 827 | + <rename>sendtime_calcu</rename> | |
| 828 | + <type>String</type> | |
| 829 | + <length>-1</length> | |
| 830 | + <precision>-1</precision> | |
| 831 | + <replace>N</replace> | |
| 832 | + </field> </fields> <cluster_schema/> | |
| 833 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 834 | + <xloc>788</xloc> | |
| 835 | + <yloc>44</yloc> | |
| 836 | + <draw>Y</draw> | |
| 837 | + </GUI> | |
| 838 | + </step> | |
| 839 | + | |
| 840 | + <step> | |
| 841 | + <name>字段选择</name> | |
| 842 | + <type>SelectValues</type> | |
| 843 | + <description/> | |
| 844 | + <distribute>Y</distribute> | |
| 845 | + <custom_distribution/> | |
| 846 | + <copies>1</copies> | |
| 847 | + <partitioning> | |
| 848 | + <method>none</method> | |
| 849 | + <schema_name/> | |
| 850 | + </partitioning> | |
| 851 | + <fields> <field> <name>路牌</name> | |
| 852 | + <rename>lp</rename> | |
| 853 | + <length>-2</length> | |
| 854 | + <precision>-2</precision> | |
| 855 | + </field> <field> <name>站点名称</name> | |
| 856 | + <rename>qdzname</rename> | |
| 857 | + <length>-2</length> | |
| 858 | + <precision>-2</precision> | |
| 859 | + </field> <field> <name>发车时间</name> | |
| 860 | + <rename>sendtime</rename> | |
| 861 | + <length>-2</length> | |
| 862 | + <precision>-2</precision> | |
| 863 | + </field> <select_unspecified>Y</select_unspecified> | |
| 864 | + </fields> <cluster_schema/> | |
| 865 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 866 | + <xloc>444</xloc> | |
| 867 | + <yloc>131</yloc> | |
| 868 | + <draw>Y</draw> | |
| 869 | + </GUI> | |
| 870 | + </step> | |
| 871 | + | |
| 872 | + <step> | |
| 873 | + <name>按照班次类型过滤数据1</name> | |
| 874 | + <type>FilterRows</type> | |
| 875 | + <description/> | |
| 876 | + <distribute>Y</distribute> | |
| 877 | + <custom_distribution/> | |
| 878 | + <copies>1</copies> | |
| 879 | + <partitioning> | |
| 880 | + <method>none</method> | |
| 881 | + <schema_name/> | |
| 882 | + </partitioning> | |
| 883 | +<send_true_to>正常班次数据</send_true_to> | |
| 884 | +<send_false_to>按照班次类型过滤数据2</send_false_to> | |
| 885 | + <compare> | |
| 886 | +<condition> | |
| 887 | + <negated>N</negated> | |
| 888 | + <leftvalue>bctype</leftvalue> | |
| 889 | + <function>=</function> | |
| 890 | + <rightvalue/> | |
| 891 | + <value><name>constant</name><type>String</type><text>正常班次</text><length>-1</length><precision>-1</precision><isnull>N</isnull><mask/></value> </condition> | |
| 892 | + </compare> | |
| 893 | + <cluster_schema/> | |
| 894 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 895 | + <xloc>860</xloc> | |
| 896 | + <yloc>401</yloc> | |
| 897 | + <draw>Y</draw> | |
| 898 | + </GUI> | |
| 899 | + </step> | |
| 900 | + | |
| 901 | + <step> | |
| 902 | + <name>按照班次类型过滤数据2</name> | |
| 903 | + <type>FilterRows</type> | |
| 904 | + <description/> | |
| 905 | + <distribute>Y</distribute> | |
| 906 | + <custom_distribution/> | |
| 907 | + <copies>1</copies> | |
| 908 | + <partitioning> | |
| 909 | + <method>none</method> | |
| 910 | + <schema_name/> | |
| 911 | + </partitioning> | |
| 912 | +<send_true_to>出场班次数据</send_true_to> | |
| 913 | +<send_false_to>进场班次数据</send_false_to> | |
| 914 | + <compare> | |
| 915 | +<condition> | |
| 916 | + <negated>N</negated> | |
| 917 | + <leftvalue>bctype</leftvalue> | |
| 918 | + <function>=</function> | |
| 919 | + <rightvalue/> | |
| 920 | + <value><name>constant</name><type>String</type><text>出场</text><length>-1</length><precision>-1</precision><isnull>N</isnull><mask/></value> </condition> | |
| 921 | + </compare> | |
| 922 | + <cluster_schema/> | |
| 923 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 924 | + <xloc>995</xloc> | |
| 925 | + <yloc>503</yloc> | |
| 926 | + <draw>Y</draw> | |
| 927 | + </GUI> | |
| 928 | + </step> | |
| 929 | + | |
| 930 | + <step> | |
| 931 | + <name>插入/更新bsth_c_s_ttinfo_detail</name> | |
| 932 | + <type>InsertUpdate</type> | |
| 933 | + <description/> | |
| 934 | + <distribute>Y</distribute> | |
| 935 | + <custom_distribution/> | |
| 936 | + <copies>1</copies> | |
| 937 | + <partitioning> | |
| 938 | + <method>none</method> | |
| 939 | + <schema_name/> | |
| 940 | + </partitioning> | |
| 941 | + <connection>bus_control_variable</connection> | |
| 942 | + <commit>100</commit> | |
| 943 | + <update_bypassed>N</update_bypassed> | |
| 944 | + <lookup> | |
| 945 | + <schema/> | |
| 946 | + <table>bsth_c_s_ttinfo_detail</table> | |
| 947 | + <key> | |
| 948 | + <name>xlid</name> | |
| 949 | + <field>xl</field> | |
| 950 | + <condition>=</condition> | |
| 951 | + <name2/> | |
| 952 | + </key> | |
| 953 | + <key> | |
| 954 | + <name>ttid</name> | |
| 955 | + <field>ttinfo</field> | |
| 956 | + <condition>=</condition> | |
| 957 | + <name2/> | |
| 958 | + </key> | |
| 959 | + <key> | |
| 960 | + <name>lpid</name> | |
| 961 | + <field>lp</field> | |
| 962 | + <condition>=</condition> | |
| 963 | + <name2/> | |
| 964 | + </key> | |
| 965 | + <key> | |
| 966 | + <name>fcno</name> | |
| 967 | + <field>fcno</field> | |
| 968 | + <condition>=</condition> | |
| 969 | + <name2/> | |
| 970 | + </key> | |
| 971 | + <key> | |
| 972 | + <name>bcs</name> | |
| 973 | + <field>bcs</field> | |
| 974 | + <condition>=</condition> | |
| 975 | + <name2/> | |
| 976 | + </key> | |
| 977 | + <value> | |
| 978 | + <name>lp</name> | |
| 979 | + <rename>lpid</rename> | |
| 980 | + <update>Y</update> | |
| 981 | + </value> | |
| 982 | + <value> | |
| 983 | + <name>bc_type</name> | |
| 984 | + <rename>bctype_code</rename> | |
| 985 | + <update>Y</update> | |
| 986 | + </value> | |
| 987 | + <value> | |
| 988 | + <name>bcs</name> | |
| 989 | + <rename>bcs</rename> | |
| 990 | + <update>Y</update> | |
| 991 | + </value> | |
| 992 | + <value> | |
| 993 | + <name>bcsj</name> | |
| 994 | + <rename>bcsj</rename> | |
| 995 | + <update>Y</update> | |
| 996 | + </value> | |
| 997 | + <value> | |
| 998 | + <name>fcno</name> | |
| 999 | + <rename>fcno</rename> | |
| 1000 | + <update>Y</update> | |
| 1001 | + </value> | |
| 1002 | + <value> | |
| 1003 | + <name>jhlc</name> | |
| 1004 | + <rename>jhlc</rename> | |
| 1005 | + <update>Y</update> | |
| 1006 | + </value> | |
| 1007 | + <value> | |
| 1008 | + <name>fcsj</name> | |
| 1009 | + <rename>sendtime_calcu</rename> | |
| 1010 | + <update>Y</update> | |
| 1011 | + </value> | |
| 1012 | + <value> | |
| 1013 | + <name>ttinfo</name> | |
| 1014 | + <rename>ttid</rename> | |
| 1015 | + <update>Y</update> | |
| 1016 | + </value> | |
| 1017 | + <value> | |
| 1018 | + <name>xl</name> | |
| 1019 | + <rename>xlid</rename> | |
| 1020 | + <update>Y</update> | |
| 1021 | + </value> | |
| 1022 | + <value> | |
| 1023 | + <name>qdz</name> | |
| 1024 | + <rename>qdzid</rename> | |
| 1025 | + <update>Y</update> | |
| 1026 | + </value> | |
| 1027 | + <value> | |
| 1028 | + <name>zdz</name> | |
| 1029 | + <rename>zdzid</rename> | |
| 1030 | + <update>Y</update> | |
| 1031 | + </value> | |
| 1032 | + <value> | |
| 1033 | + <name>xl_dir</name> | |
| 1034 | + <rename>sxx</rename> | |
| 1035 | + <update>Y</update> | |
| 1036 | + </value> | |
| 1037 | + <value> | |
| 1038 | + <name>isfb</name> | |
| 1039 | + <rename>isfb</rename> | |
| 1040 | + <update>Y</update> | |
| 1041 | + </value> | |
| 1042 | + </lookup> | |
| 1043 | + <cluster_schema/> | |
| 1044 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1045 | + <xloc>143</xloc> | |
| 1046 | + <yloc>860</yloc> | |
| 1047 | + <draw>Y</draw> | |
| 1048 | + </GUI> | |
| 1049 | + </step> | |
| 1050 | + | |
| 1051 | + <step> | |
| 1052 | + <name>插入/更新bsth_c_s_ttinfo_detail 2</name> | |
| 1053 | + <type>InsertUpdate</type> | |
| 1054 | + <description/> | |
| 1055 | + <distribute>Y</distribute> | |
| 1056 | + <custom_distribution/> | |
| 1057 | + <copies>1</copies> | |
| 1058 | + <partitioning> | |
| 1059 | + <method>none</method> | |
| 1060 | + <schema_name/> | |
| 1061 | + </partitioning> | |
| 1062 | + <connection>bus_control_variable</connection> | |
| 1063 | + <commit>100</commit> | |
| 1064 | + <update_bypassed>N</update_bypassed> | |
| 1065 | + <lookup> | |
| 1066 | + <schema/> | |
| 1067 | + <table>bsth_c_s_ttinfo_detail</table> | |
| 1068 | + <key> | |
| 1069 | + <name>xlid</name> | |
| 1070 | + <field>xl</field> | |
| 1071 | + <condition>=</condition> | |
| 1072 | + <name2/> | |
| 1073 | + </key> | |
| 1074 | + <key> | |
| 1075 | + <name>ttid</name> | |
| 1076 | + <field>ttinfo</field> | |
| 1077 | + <condition>=</condition> | |
| 1078 | + <name2/> | |
| 1079 | + </key> | |
| 1080 | + <key> | |
| 1081 | + <name>lpid</name> | |
| 1082 | + <field>lp</field> | |
| 1083 | + <condition>=</condition> | |
| 1084 | + <name2/> | |
| 1085 | + </key> | |
| 1086 | + <key> | |
| 1087 | + <name>fcno</name> | |
| 1088 | + <field>fcno</field> | |
| 1089 | + <condition>=</condition> | |
| 1090 | + <name2/> | |
| 1091 | + </key> | |
| 1092 | + <key> | |
| 1093 | + <name>bcs</name> | |
| 1094 | + <field>bcs</field> | |
| 1095 | + <condition>=</condition> | |
| 1096 | + <name2/> | |
| 1097 | + </key> | |
| 1098 | + <value> | |
| 1099 | + <name>tcc</name> | |
| 1100 | + <rename>qdzid</rename> | |
| 1101 | + <update>Y</update> | |
| 1102 | + </value> | |
| 1103 | + <value> | |
| 1104 | + <name>zdz</name> | |
| 1105 | + <rename>zdzid</rename> | |
| 1106 | + <update>Y</update> | |
| 1107 | + </value> | |
| 1108 | + <value> | |
| 1109 | + <name>xl</name> | |
| 1110 | + <rename>xlid</rename> | |
| 1111 | + <update>Y</update> | |
| 1112 | + </value> | |
| 1113 | + <value> | |
| 1114 | + <name>ttinfo</name> | |
| 1115 | + <rename>ttid</rename> | |
| 1116 | + <update>Y</update> | |
| 1117 | + </value> | |
| 1118 | + <value> | |
| 1119 | + <name>xl_dir</name> | |
| 1120 | + <rename>sxx</rename> | |
| 1121 | + <update>Y</update> | |
| 1122 | + </value> | |
| 1123 | + <value> | |
| 1124 | + <name>lp</name> | |
| 1125 | + <rename>lpid</rename> | |
| 1126 | + <update>Y</update> | |
| 1127 | + </value> | |
| 1128 | + <value> | |
| 1129 | + <name>jhlc</name> | |
| 1130 | + <rename>out_mileage</rename> | |
| 1131 | + <update>Y</update> | |
| 1132 | + </value> | |
| 1133 | + <value> | |
| 1134 | + <name>fcsj</name> | |
| 1135 | + <rename>sendtime_calcu</rename> | |
| 1136 | + <update>Y</update> | |
| 1137 | + </value> | |
| 1138 | + <value> | |
| 1139 | + <name>bcsj</name> | |
| 1140 | + <rename>out_time</rename> | |
| 1141 | + <update>Y</update> | |
| 1142 | + </value> | |
| 1143 | + <value> | |
| 1144 | + <name>bcs</name> | |
| 1145 | + <rename>bcs</rename> | |
| 1146 | + <update>Y</update> | |
| 1147 | + </value> | |
| 1148 | + <value> | |
| 1149 | + <name>fcno</name> | |
| 1150 | + <rename>fcno</rename> | |
| 1151 | + <update>Y</update> | |
| 1152 | + </value> | |
| 1153 | + <value> | |
| 1154 | + <name>bc_type</name> | |
| 1155 | + <rename>bctype_code</rename> | |
| 1156 | + <update>Y</update> | |
| 1157 | + </value> | |
| 1158 | + <value> | |
| 1159 | + <name>isfb</name> | |
| 1160 | + <rename>isfb</rename> | |
| 1161 | + <update>Y</update> | |
| 1162 | + </value> | |
| 1163 | + </lookup> | |
| 1164 | + <cluster_schema/> | |
| 1165 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1166 | + <xloc>340</xloc> | |
| 1167 | + <yloc>1087</yloc> | |
| 1168 | + <draw>Y</draw> | |
| 1169 | + </GUI> | |
| 1170 | + </step> | |
| 1171 | + | |
| 1172 | + <step> | |
| 1173 | + <name>插入/更新bsth_c_s_ttinfo_detail 3</name> | |
| 1174 | + <type>InsertUpdate</type> | |
| 1175 | + <description/> | |
| 1176 | + <distribute>Y</distribute> | |
| 1177 | + <custom_distribution/> | |
| 1178 | + <copies>1</copies> | |
| 1179 | + <partitioning> | |
| 1180 | + <method>none</method> | |
| 1181 | + <schema_name/> | |
| 1182 | + </partitioning> | |
| 1183 | + <connection>bus_control_variable</connection> | |
| 1184 | + <commit>100</commit> | |
| 1185 | + <update_bypassed>N</update_bypassed> | |
| 1186 | + <lookup> | |
| 1187 | + <schema/> | |
| 1188 | + <table>bsth_c_s_ttinfo_detail</table> | |
| 1189 | + <key> | |
| 1190 | + <name>xlid</name> | |
| 1191 | + <field>xl</field> | |
| 1192 | + <condition>=</condition> | |
| 1193 | + <name2/> | |
| 1194 | + </key> | |
| 1195 | + <key> | |
| 1196 | + <name>ttid</name> | |
| 1197 | + <field>ttinfo</field> | |
| 1198 | + <condition>=</condition> | |
| 1199 | + <name2/> | |
| 1200 | + </key> | |
| 1201 | + <key> | |
| 1202 | + <name>lpid</name> | |
| 1203 | + <field>lp</field> | |
| 1204 | + <condition>=</condition> | |
| 1205 | + <name2/> | |
| 1206 | + </key> | |
| 1207 | + <key> | |
| 1208 | + <name>fcno</name> | |
| 1209 | + <field>fcno</field> | |
| 1210 | + <condition>=</condition> | |
| 1211 | + <name2/> | |
| 1212 | + </key> | |
| 1213 | + <key> | |
| 1214 | + <name>bcs</name> | |
| 1215 | + <field>bcs</field> | |
| 1216 | + <condition>=</condition> | |
| 1217 | + <name2/> | |
| 1218 | + </key> | |
| 1219 | + <value> | |
| 1220 | + <name>fcno</name> | |
| 1221 | + <rename>fcno</rename> | |
| 1222 | + <update>Y</update> | |
| 1223 | + </value> | |
| 1224 | + <value> | |
| 1225 | + <name>bcs</name> | |
| 1226 | + <rename>bcs</rename> | |
| 1227 | + <update>Y</update> | |
| 1228 | + </value> | |
| 1229 | + <value> | |
| 1230 | + <name>xl</name> | |
| 1231 | + <rename>xlid</rename> | |
| 1232 | + <update>Y</update> | |
| 1233 | + </value> | |
| 1234 | + <value> | |
| 1235 | + <name>ttinfo</name> | |
| 1236 | + <rename>ttid</rename> | |
| 1237 | + <update>Y</update> | |
| 1238 | + </value> | |
| 1239 | + <value> | |
| 1240 | + <name>lp</name> | |
| 1241 | + <rename>lpid</rename> | |
| 1242 | + <update>Y</update> | |
| 1243 | + </value> | |
| 1244 | + <value> | |
| 1245 | + <name>bc_type</name> | |
| 1246 | + <rename>bctype_code</rename> | |
| 1247 | + <update>Y</update> | |
| 1248 | + </value> | |
| 1249 | + <value> | |
| 1250 | + <name>bcsj</name> | |
| 1251 | + <rename>parade_time</rename> | |
| 1252 | + <update>Y</update> | |
| 1253 | + </value> | |
| 1254 | + <value> | |
| 1255 | + <name>jhlc</name> | |
| 1256 | + <rename>parade_mileage</rename> | |
| 1257 | + <update>Y</update> | |
| 1258 | + </value> | |
| 1259 | + <value> | |
| 1260 | + <name>fcsj</name> | |
| 1261 | + <rename>sendtime_calcu</rename> | |
| 1262 | + <update>Y</update> | |
| 1263 | + </value> | |
| 1264 | + <value> | |
| 1265 | + <name>xl_dir</name> | |
| 1266 | + <rename>sxx2</rename> | |
| 1267 | + <update>Y</update> | |
| 1268 | + </value> | |
| 1269 | + <value> | |
| 1270 | + <name>qdz</name> | |
| 1271 | + <rename>qdzid</rename> | |
| 1272 | + <update>Y</update> | |
| 1273 | + </value> | |
| 1274 | + <value> | |
| 1275 | + <name>tcc</name> | |
| 1276 | + <rename>zdzid</rename> | |
| 1277 | + <update>Y</update> | |
| 1278 | + </value> | |
| 1279 | + <value> | |
| 1280 | + <name>isfb</name> | |
| 1281 | + <rename>isfb</rename> | |
| 1282 | + <update>Y</update> | |
| 1283 | + </value> | |
| 1284 | + </lookup> | |
| 1285 | + <cluster_schema/> | |
| 1286 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1287 | + <xloc>845</xloc> | |
| 1288 | + <yloc>899</yloc> | |
| 1289 | + <draw>Y</draw> | |
| 1290 | + </GUI> | |
| 1291 | + </step> | |
| 1292 | + | |
| 1293 | + <step> | |
| 1294 | + <name>时刻表明细信息Excel输入</name> | |
| 1295 | + <type>ExcelInput</type> | |
| 1296 | + <description/> | |
| 1297 | + <distribute>N</distribute> | |
| 1298 | + <custom_distribution/> | |
| 1299 | + <copies>1</copies> | |
| 1300 | + <partitioning> | |
| 1301 | + <method>none</method> | |
| 1302 | + <schema_name/> | |
| 1303 | + </partitioning> | |
| 1304 | + <header>Y</header> | |
| 1305 | + <noempty>Y</noempty> | |
| 1306 | + <stoponempty>N</stoponempty> | |
| 1307 | + <filefield/> | |
| 1308 | + <sheetfield/> | |
| 1309 | + <sheetrownumfield/> | |
| 1310 | + <rownumfield/> | |
| 1311 | + <sheetfield/> | |
| 1312 | + <filefield/> | |
| 1313 | + <limit>0</limit> | |
| 1314 | + <encoding/> | |
| 1315 | + <add_to_result_filenames>Y</add_to_result_filenames> | |
| 1316 | + <accept_filenames>N</accept_filenames> | |
| 1317 | + <accept_field/> | |
| 1318 | + <accept_stepname/> | |
| 1319 | + <file> | |
| 1320 | + <name/> | |
| 1321 | + <filemask/> | |
| 1322 | + <exclude_filemask/> | |
| 1323 | + <file_required>N</file_required> | |
| 1324 | + <include_subfolders>N</include_subfolders> | |
| 1325 | + </file> | |
| 1326 | + <fields> | |
| 1327 | + </fields> | |
| 1328 | + <sheets> | |
| 1329 | + <sheet> | |
| 1330 | + <name/> | |
| 1331 | + <startrow>0</startrow> | |
| 1332 | + <startcol>0</startcol> | |
| 1333 | + </sheet> | |
| 1334 | + </sheets> | |
| 1335 | + <strict_types>N</strict_types> | |
| 1336 | + <error_ignored>N</error_ignored> | |
| 1337 | + <error_line_skipped>N</error_line_skipped> | |
| 1338 | + <bad_line_files_destination_directory/> | |
| 1339 | + <bad_line_files_extension>warning</bad_line_files_extension> | |
| 1340 | + <error_line_files_destination_directory/> | |
| 1341 | + <error_line_files_extension>error</error_line_files_extension> | |
| 1342 | + <line_number_files_destination_directory/> | |
| 1343 | + <line_number_files_extension>line</line_number_files_extension> | |
| 1344 | + <shortFileFieldName/> | |
| 1345 | + <pathFieldName/> | |
| 1346 | + <hiddenFieldName/> | |
| 1347 | + <lastModificationTimeFieldName/> | |
| 1348 | + <uriNameFieldName/> | |
| 1349 | + <rootUriNameFieldName/> | |
| 1350 | + <extensionFieldName/> | |
| 1351 | + <sizeFieldName/> | |
| 1352 | + <spreadsheet_type>JXL</spreadsheet_type> | |
| 1353 | + <cluster_schema/> | |
| 1354 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1355 | + <xloc>112</xloc> | |
| 1356 | + <yloc>44</yloc> | |
| 1357 | + <draw>Y</draw> | |
| 1358 | + </GUI> | |
| 1359 | + </step> | |
| 1360 | + | |
| 1361 | + <step> | |
| 1362 | + <name>查找停车场1</name> | |
| 1363 | + <type>DBLookup</type> | |
| 1364 | + <description/> | |
| 1365 | + <distribute>Y</distribute> | |
| 1366 | + <custom_distribution/> | |
| 1367 | + <copies>1</copies> | |
| 1368 | + <partitioning> | |
| 1369 | + <method>none</method> | |
| 1370 | + <schema_name/> | |
| 1371 | + </partitioning> | |
| 1372 | + <connection>bus_control_variable</connection> | |
| 1373 | + <cache>N</cache> | |
| 1374 | + <cache_load_all>N</cache_load_all> | |
| 1375 | + <cache_size>0</cache_size> | |
| 1376 | + <lookup> | |
| 1377 | + <schema/> | |
| 1378 | + <table>bsth_c_car_park</table> | |
| 1379 | + <orderby/> | |
| 1380 | + <fail_on_multiple>N</fail_on_multiple> | |
| 1381 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 1382 | + <key> | |
| 1383 | + <name>tccname_</name> | |
| 1384 | + <field>park_name</field> | |
| 1385 | + <condition>=</condition> | |
| 1386 | + <name2/> | |
| 1387 | + </key> | |
| 1388 | + <value> | |
| 1389 | + <name>id</name> | |
| 1390 | + <rename>qdzid</rename> | |
| 1391 | + <default/> | |
| 1392 | + <type>Integer</type> | |
| 1393 | + </value> | |
| 1394 | + </lookup> | |
| 1395 | + <cluster_schema/> | |
| 1396 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1397 | + <xloc>755</xloc> | |
| 1398 | + <yloc>504</yloc> | |
| 1399 | + <draw>Y</draw> | |
| 1400 | + </GUI> | |
| 1401 | + </step> | |
| 1402 | + | |
| 1403 | + <step> | |
| 1404 | + <name>查找停车场2</name> | |
| 1405 | + <type>DBLookup</type> | |
| 1406 | + <description/> | |
| 1407 | + <distribute>Y</distribute> | |
| 1408 | + <custom_distribution/> | |
| 1409 | + <copies>1</copies> | |
| 1410 | + <partitioning> | |
| 1411 | + <method>none</method> | |
| 1412 | + <schema_name/> | |
| 1413 | + </partitioning> | |
| 1414 | + <connection>bus_control_variable</connection> | |
| 1415 | + <cache>N</cache> | |
| 1416 | + <cache_load_all>N</cache_load_all> | |
| 1417 | + <cache_size>0</cache_size> | |
| 1418 | + <lookup> | |
| 1419 | + <schema/> | |
| 1420 | + <table>bsth_c_car_park</table> | |
| 1421 | + <orderby/> | |
| 1422 | + <fail_on_multiple>N</fail_on_multiple> | |
| 1423 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 1424 | + <key> | |
| 1425 | + <name>tccname_</name> | |
| 1426 | + <field>park_name</field> | |
| 1427 | + <condition>=</condition> | |
| 1428 | + <name2/> | |
| 1429 | + </key> | |
| 1430 | + <value> | |
| 1431 | + <name>id</name> | |
| 1432 | + <rename>zdzid</rename> | |
| 1433 | + <default/> | |
| 1434 | + <type>Integer</type> | |
| 1435 | + </value> | |
| 1436 | + </lookup> | |
| 1437 | + <cluster_schema/> | |
| 1438 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1439 | + <xloc>887</xloc> | |
| 1440 | + <yloc>608</yloc> | |
| 1441 | + <draw>Y</draw> | |
| 1442 | + </GUI> | |
| 1443 | + </step> | |
| 1444 | + | |
| 1445 | + <step> | |
| 1446 | + <name>查找出场终点站关联并确定上下行</name> | |
| 1447 | + <type>DBLookup</type> | |
| 1448 | + <description/> | |
| 1449 | + <distribute>Y</distribute> | |
| 1450 | + <custom_distribution/> | |
| 1451 | + <copies>1</copies> | |
| 1452 | + <partitioning> | |
| 1453 | + <method>none</method> | |
| 1454 | + <schema_name/> | |
| 1455 | + </partitioning> | |
| 1456 | + <connection>bus_control_variable</connection> | |
| 1457 | + <cache>N</cache> | |
| 1458 | + <cache_load_all>N</cache_load_all> | |
| 1459 | + <cache_size>0</cache_size> | |
| 1460 | + <lookup> | |
| 1461 | + <schema/> | |
| 1462 | + <table>bsth_c_stationroute</table> | |
| 1463 | + <orderby/> | |
| 1464 | + <fail_on_multiple>N</fail_on_multiple> | |
| 1465 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 1466 | + <key> | |
| 1467 | + <name>xlid</name> | |
| 1468 | + <field>line</field> | |
| 1469 | + <condition>=</condition> | |
| 1470 | + <name2/> | |
| 1471 | + </key> | |
| 1472 | + <key> | |
| 1473 | + <name>zdzname</name> | |
| 1474 | + <field>station_name</field> | |
| 1475 | + <condition>=</condition> | |
| 1476 | + <name2/> | |
| 1477 | + </key> | |
| 1478 | + <key> | |
| 1479 | + <name>endZdtype</name> | |
| 1480 | + <field>station_mark</field> | |
| 1481 | + <condition>=</condition> | |
| 1482 | + <name2/> | |
| 1483 | + </key> | |
| 1484 | + <key> | |
| 1485 | + <name>destory</name> | |
| 1486 | + <field>destroy</field> | |
| 1487 | + <condition>=</condition> | |
| 1488 | + <name2/> | |
| 1489 | + </key> | |
| 1490 | + <value> | |
| 1491 | + <name>station</name> | |
| 1492 | + <rename>zdzid</rename> | |
| 1493 | + <default/> | |
| 1494 | + <type>Integer</type> | |
| 1495 | + </value> | |
| 1496 | + <value> | |
| 1497 | + <name>directions</name> | |
| 1498 | + <rename>sxx</rename> | |
| 1499 | + <default/> | |
| 1500 | + <type>Integer</type> | |
| 1501 | + </value> | |
| 1502 | + </lookup> | |
| 1503 | + <cluster_schema/> | |
| 1504 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1505 | + <xloc>329</xloc> | |
| 1506 | + <yloc>505</yloc> | |
| 1507 | + <draw>Y</draw> | |
| 1508 | + </GUI> | |
| 1509 | + </step> | |
| 1510 | + | |
| 1511 | + <step> | |
| 1512 | + <name>查找时刻表基础信息关联</name> | |
| 1513 | + <type>DBLookup</type> | |
| 1514 | + <description/> | |
| 1515 | + <distribute>Y</distribute> | |
| 1516 | + <custom_distribution/> | |
| 1517 | + <copies>1</copies> | |
| 1518 | + <partitioning> | |
| 1519 | + <method>none</method> | |
| 1520 | + <schema_name/> | |
| 1521 | + </partitioning> | |
| 1522 | + <connection>bus_control_variable</connection> | |
| 1523 | + <cache>N</cache> | |
| 1524 | + <cache_load_all>N</cache_load_all> | |
| 1525 | + <cache_size>0</cache_size> | |
| 1526 | + <lookup> | |
| 1527 | + <schema/> | |
| 1528 | + <table>bsth_c_s_ttinfo</table> | |
| 1529 | + <orderby/> | |
| 1530 | + <fail_on_multiple>N</fail_on_multiple> | |
| 1531 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 1532 | + <key> | |
| 1533 | + <name>xlid</name> | |
| 1534 | + <field>xl</field> | |
| 1535 | + <condition>=</condition> | |
| 1536 | + <name2/> | |
| 1537 | + </key> | |
| 1538 | + <key> | |
| 1539 | + <name>ttinfoname_</name> | |
| 1540 | + <field>name</field> | |
| 1541 | + <condition>=</condition> | |
| 1542 | + <name2/> | |
| 1543 | + </key> | |
| 1544 | + <key> | |
| 1545 | + <name>iscanceled</name> | |
| 1546 | + <field>is_cancel</field> | |
| 1547 | + <condition>=</condition> | |
| 1548 | + <name2/> | |
| 1549 | + </key> | |
| 1550 | + <value> | |
| 1551 | + <name>id</name> | |
| 1552 | + <rename>ttid</rename> | |
| 1553 | + <default/> | |
| 1554 | + <type>Integer</type> | |
| 1555 | + </value> | |
| 1556 | + </lookup> | |
| 1557 | + <cluster_schema/> | |
| 1558 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1559 | + <xloc>1011</xloc> | |
| 1560 | + <yloc>134</yloc> | |
| 1561 | + <draw>Y</draw> | |
| 1562 | + </GUI> | |
| 1563 | + </step> | |
| 1564 | + | |
| 1565 | + <step> | |
| 1566 | + <name>查找线路上下行里程时间</name> | |
| 1567 | + <type>DBLookup</type> | |
| 1568 | + <description/> | |
| 1569 | + <distribute>Y</distribute> | |
| 1570 | + <custom_distribution/> | |
| 1571 | + <copies>1</copies> | |
| 1572 | + <partitioning> | |
| 1573 | + <method>none</method> | |
| 1574 | + <schema_name/> | |
| 1575 | + </partitioning> | |
| 1576 | + <connection>bus_control_variable</connection> | |
| 1577 | + <cache>N</cache> | |
| 1578 | + <cache_load_all>N</cache_load_all> | |
| 1579 | + <cache_size>0</cache_size> | |
| 1580 | + <lookup> | |
| 1581 | + <schema/> | |
| 1582 | + <table>bsth_c_line_information</table> | |
| 1583 | + <orderby/> | |
| 1584 | + <fail_on_multiple>N</fail_on_multiple> | |
| 1585 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 1586 | + <key> | |
| 1587 | + <name>xlid</name> | |
| 1588 | + <field>line</field> | |
| 1589 | + <condition>=</condition> | |
| 1590 | + <name2/> | |
| 1591 | + </key> | |
| 1592 | + <value> | |
| 1593 | + <name>up_mileage</name> | |
| 1594 | + <rename>up_mileage</rename> | |
| 1595 | + <default/> | |
| 1596 | + <type>Number</type> | |
| 1597 | + </value> | |
| 1598 | + <value> | |
| 1599 | + <name>down_mileage</name> | |
| 1600 | + <rename>down_mileage</rename> | |
| 1601 | + <default/> | |
| 1602 | + <type>Number</type> | |
| 1603 | + </value> | |
| 1604 | + <value> | |
| 1605 | + <name>up_travel_time</name> | |
| 1606 | + <rename>up_travel_time</rename> | |
| 1607 | + <default/> | |
| 1608 | + <type>Number</type> | |
| 1609 | + </value> | |
| 1610 | + <value> | |
| 1611 | + <name>down_travel_time</name> | |
| 1612 | + <rename>down_travel_time</rename> | |
| 1613 | + <default/> | |
| 1614 | + <type>Number</type> | |
| 1615 | + </value> | |
| 1616 | + </lookup> | |
| 1617 | + <cluster_schema/> | |
| 1618 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1619 | + <xloc>149</xloc> | |
| 1620 | + <yloc>581</yloc> | |
| 1621 | + <draw>Y</draw> | |
| 1622 | + </GUI> | |
| 1623 | + </step> | |
| 1624 | + | |
| 1625 | + <step> | |
| 1626 | + <name>查找线路关联</name> | |
| 1627 | + <type>DBLookup</type> | |
| 1628 | + <description/> | |
| 1629 | + <distribute>Y</distribute> | |
| 1630 | + <custom_distribution/> | |
| 1631 | + <copies>1</copies> | |
| 1632 | + <partitioning> | |
| 1633 | + <method>none</method> | |
| 1634 | + <schema_name/> | |
| 1635 | + </partitioning> | |
| 1636 | + <connection>bus_control_variable</connection> | |
| 1637 | + <cache>N</cache> | |
| 1638 | + <cache_load_all>N</cache_load_all> | |
| 1639 | + <cache_size>0</cache_size> | |
| 1640 | + <lookup> | |
| 1641 | + <schema/> | |
| 1642 | + <table>bsth_c_line</table> | |
| 1643 | + <orderby/> | |
| 1644 | + <fail_on_multiple>N</fail_on_multiple> | |
| 1645 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 1646 | + <key> | |
| 1647 | + <name>xlname_</name> | |
| 1648 | + <field>name</field> | |
| 1649 | + <condition>=</condition> | |
| 1650 | + <name2/> | |
| 1651 | + </key> | |
| 1652 | + <value> | |
| 1653 | + <name>id</name> | |
| 1654 | + <rename>xlid</rename> | |
| 1655 | + <default/> | |
| 1656 | + <type>Integer</type> | |
| 1657 | + </value> | |
| 1658 | + </lookup> | |
| 1659 | + <cluster_schema/> | |
| 1660 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1661 | + <xloc>1007</xloc> | |
| 1662 | + <yloc>43</yloc> | |
| 1663 | + <draw>Y</draw> | |
| 1664 | + </GUI> | |
| 1665 | + </step> | |
| 1666 | + | |
| 1667 | + <step> | |
| 1668 | + <name>查找线路出场里程时间</name> | |
| 1669 | + <type>DBLookup</type> | |
| 1670 | + <description/> | |
| 1671 | + <distribute>Y</distribute> | |
| 1672 | + <custom_distribution/> | |
| 1673 | + <copies>1</copies> | |
| 1674 | + <partitioning> | |
| 1675 | + <method>none</method> | |
| 1676 | + <schema_name/> | |
| 1677 | + </partitioning> | |
| 1678 | + <connection>bus_control_variable</connection> | |
| 1679 | + <cache>N</cache> | |
| 1680 | + <cache_load_all>N</cache_load_all> | |
| 1681 | + <cache_size>0</cache_size> | |
| 1682 | + <lookup> | |
| 1683 | + <schema/> | |
| 1684 | + <table>bsth_c_line_information</table> | |
| 1685 | + <orderby/> | |
| 1686 | + <fail_on_multiple>N</fail_on_multiple> | |
| 1687 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 1688 | + <key> | |
| 1689 | + <name>xlid</name> | |
| 1690 | + <field>line</field> | |
| 1691 | + <condition>=</condition> | |
| 1692 | + <name2/> | |
| 1693 | + </key> | |
| 1694 | + <value> | |
| 1695 | + <name>up_out_timer</name> | |
| 1696 | + <rename>up_out_timer</rename> | |
| 1697 | + <default/> | |
| 1698 | + <type>Number</type> | |
| 1699 | + </value> | |
| 1700 | + <value> | |
| 1701 | + <name>up_out_mileage</name> | |
| 1702 | + <rename>up_out_mileage</rename> | |
| 1703 | + <default/> | |
| 1704 | + <type>Number</type> | |
| 1705 | + </value> | |
| 1706 | + <value> | |
| 1707 | + <name>down_out_timer</name> | |
| 1708 | + <rename>down_out_timer</rename> | |
| 1709 | + <default/> | |
| 1710 | + <type>Number</type> | |
| 1711 | + </value> | |
| 1712 | + <value> | |
| 1713 | + <name>down_out_mileage</name> | |
| 1714 | + <rename>down_out_mileage</rename> | |
| 1715 | + <default/> | |
| 1716 | + <type>Number</type> | |
| 1717 | + </value> | |
| 1718 | + </lookup> | |
| 1719 | + <cluster_schema/> | |
| 1720 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1721 | + <xloc>335</xloc> | |
| 1722 | + <yloc>763</yloc> | |
| 1723 | + <draw>Y</draw> | |
| 1724 | + </GUI> | |
| 1725 | + </step> | |
| 1726 | + | |
| 1727 | + <step> | |
| 1728 | + <name>查找线路进场里程时间</name> | |
| 1729 | + <type>DBLookup</type> | |
| 1730 | + <description/> | |
| 1731 | + <distribute>Y</distribute> | |
| 1732 | + <custom_distribution/> | |
| 1733 | + <copies>1</copies> | |
| 1734 | + <partitioning> | |
| 1735 | + <method>none</method> | |
| 1736 | + <schema_name/> | |
| 1737 | + </partitioning> | |
| 1738 | + <connection>bus_control_variable</connection> | |
| 1739 | + <cache>N</cache> | |
| 1740 | + <cache_load_all>N</cache_load_all> | |
| 1741 | + <cache_size>0</cache_size> | |
| 1742 | + <lookup> | |
| 1743 | + <schema/> | |
| 1744 | + <table>bsth_c_line_information</table> | |
| 1745 | + <orderby/> | |
| 1746 | + <fail_on_multiple>N</fail_on_multiple> | |
| 1747 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 1748 | + <key> | |
| 1749 | + <name>xlid</name> | |
| 1750 | + <field>line</field> | |
| 1751 | + <condition>=</condition> | |
| 1752 | + <name2/> | |
| 1753 | + </key> | |
| 1754 | + <value> | |
| 1755 | + <name>up_in_mileage</name> | |
| 1756 | + <rename>up_in_mileage</rename> | |
| 1757 | + <default/> | |
| 1758 | + <type>Number</type> | |
| 1759 | + </value> | |
| 1760 | + <value> | |
| 1761 | + <name>up_in_timer</name> | |
| 1762 | + <rename>up_in_timer</rename> | |
| 1763 | + <default/> | |
| 1764 | + <type>Number</type> | |
| 1765 | + </value> | |
| 1766 | + <value> | |
| 1767 | + <name>down_in_mileage</name> | |
| 1768 | + <rename>down_in_mileage</rename> | |
| 1769 | + <default/> | |
| 1770 | + <type>Number</type> | |
| 1771 | + </value> | |
| 1772 | + <value> | |
| 1773 | + <name>down_in_timer</name> | |
| 1774 | + <rename>down_in_timer</rename> | |
| 1775 | + <default/> | |
| 1776 | + <type>Number</type> | |
| 1777 | + </value> | |
| 1778 | + </lookup> | |
| 1779 | + <cluster_schema/> | |
| 1780 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1781 | + <xloc>553</xloc> | |
| 1782 | + <yloc>1004</yloc> | |
| 1783 | + <draw>Y</draw> | |
| 1784 | + </GUI> | |
| 1785 | + </step> | |
| 1786 | + | |
| 1787 | + <step> | |
| 1788 | + <name>查找终点站关联</name> | |
| 1789 | + <type>DBLookup</type> | |
| 1790 | + <description/> | |
| 1791 | + <distribute>Y</distribute> | |
| 1792 | + <custom_distribution/> | |
| 1793 | + <copies>1</copies> | |
| 1794 | + <partitioning> | |
| 1795 | + <method>none</method> | |
| 1796 | + <schema_name/> | |
| 1797 | + </partitioning> | |
| 1798 | + <connection>bus_control_variable</connection> | |
| 1799 | + <cache>N</cache> | |
| 1800 | + <cache_load_all>N</cache_load_all> | |
| 1801 | + <cache_size>0</cache_size> | |
| 1802 | + <lookup> | |
| 1803 | + <schema/> | |
| 1804 | + <table>bsth_c_stationroute</table> | |
| 1805 | + <orderby/> | |
| 1806 | + <fail_on_multiple>N</fail_on_multiple> | |
| 1807 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 1808 | + <key> | |
| 1809 | + <name>xlid</name> | |
| 1810 | + <field>line</field> | |
| 1811 | + <condition>=</condition> | |
| 1812 | + <name2/> | |
| 1813 | + </key> | |
| 1814 | + <key> | |
| 1815 | + <name>sxx</name> | |
| 1816 | + <field>directions</field> | |
| 1817 | + <condition>=</condition> | |
| 1818 | + <name2/> | |
| 1819 | + </key> | |
| 1820 | + <key> | |
| 1821 | + <name>endZdtype</name> | |
| 1822 | + <field>station_mark</field> | |
| 1823 | + <condition>=</condition> | |
| 1824 | + <name2/> | |
| 1825 | + </key> | |
| 1826 | + <key> | |
| 1827 | + <name>destory</name> | |
| 1828 | + <field>destroy</field> | |
| 1829 | + <condition>=</condition> | |
| 1830 | + <name2/> | |
| 1831 | + </key> | |
| 1832 | + <value> | |
| 1833 | + <name>station_name</name> | |
| 1834 | + <rename>zdzname</rename> | |
| 1835 | + <default/> | |
| 1836 | + <type>String</type> | |
| 1837 | + </value> | |
| 1838 | + <value> | |
| 1839 | + <name>station</name> | |
| 1840 | + <rename>zdzid</rename> | |
| 1841 | + <default/> | |
| 1842 | + <type>Integer</type> | |
| 1843 | + </value> | |
| 1844 | + </lookup> | |
| 1845 | + <cluster_schema/> | |
| 1846 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1847 | + <xloc>280</xloc> | |
| 1848 | + <yloc>404</yloc> | |
| 1849 | + <draw>Y</draw> | |
| 1850 | + </GUI> | |
| 1851 | + </step> | |
| 1852 | + | |
| 1853 | + <step> | |
| 1854 | + <name>查找起点站关联并确定上下行</name> | |
| 1855 | + <type>DBLookup</type> | |
| 1856 | + <description/> | |
| 1857 | + <distribute>Y</distribute> | |
| 1858 | + <custom_distribution/> | |
| 1859 | + <copies>1</copies> | |
| 1860 | + <partitioning> | |
| 1861 | + <method>none</method> | |
| 1862 | + <schema_name/> | |
| 1863 | + </partitioning> | |
| 1864 | + <connection>bus_control_variable</connection> | |
| 1865 | + <cache>N</cache> | |
| 1866 | + <cache_load_all>N</cache_load_all> | |
| 1867 | + <cache_size>0</cache_size> | |
| 1868 | + <lookup> | |
| 1869 | + <schema/> | |
| 1870 | + <table>bsth_c_stationroute</table> | |
| 1871 | + <orderby/> | |
| 1872 | + <fail_on_multiple>N</fail_on_multiple> | |
| 1873 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 1874 | + <key> | |
| 1875 | + <name>xlid</name> | |
| 1876 | + <field>line</field> | |
| 1877 | + <condition>=</condition> | |
| 1878 | + <name2/> | |
| 1879 | + </key> | |
| 1880 | + <key> | |
| 1881 | + <name>qdzname</name> | |
| 1882 | + <field>station_name</field> | |
| 1883 | + <condition>=</condition> | |
| 1884 | + <name2/> | |
| 1885 | + </key> | |
| 1886 | + <key> | |
| 1887 | + <name>sendZdtype</name> | |
| 1888 | + <field>station_mark</field> | |
| 1889 | + <condition>=</condition> | |
| 1890 | + <name2/> | |
| 1891 | + </key> | |
| 1892 | + <key> | |
| 1893 | + <name>destory</name> | |
| 1894 | + <field>destroy</field> | |
| 1895 | + <condition>=</condition> | |
| 1896 | + <name2/> | |
| 1897 | + </key> | |
| 1898 | + <value> | |
| 1899 | + <name>station</name> | |
| 1900 | + <rename>qdzid</rename> | |
| 1901 | + <default/> | |
| 1902 | + <type>Integer</type> | |
| 1903 | + </value> | |
| 1904 | + <value> | |
| 1905 | + <name>directions</name> | |
| 1906 | + <rename>sxx</rename> | |
| 1907 | + <default/> | |
| 1908 | + <type>Integer</type> | |
| 1909 | + </value> | |
| 1910 | + </lookup> | |
| 1911 | + <cluster_schema/> | |
| 1912 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1913 | + <xloc>430</xloc> | |
| 1914 | + <yloc>403</yloc> | |
| 1915 | + <draw>Y</draw> | |
| 1916 | + </GUI> | |
| 1917 | + </step> | |
| 1918 | + | |
| 1919 | + <step> | |
| 1920 | + <name>查找路牌关联</name> | |
| 1921 | + <type>DBLookup</type> | |
| 1922 | + <description/> | |
| 1923 | + <distribute>Y</distribute> | |
| 1924 | + <custom_distribution/> | |
| 1925 | + <copies>1</copies> | |
| 1926 | + <partitioning> | |
| 1927 | + <method>none</method> | |
| 1928 | + <schema_name/> | |
| 1929 | + </partitioning> | |
| 1930 | + <connection>bus_control_variable</connection> | |
| 1931 | + <cache>N</cache> | |
| 1932 | + <cache_load_all>N</cache_load_all> | |
| 1933 | + <cache_size>0</cache_size> | |
| 1934 | + <lookup> | |
| 1935 | + <schema/> | |
| 1936 | + <table>bsth_c_s_gbi</table> | |
| 1937 | + <orderby/> | |
| 1938 | + <fail_on_multiple>N</fail_on_multiple> | |
| 1939 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 1940 | + <key> | |
| 1941 | + <name>xlid</name> | |
| 1942 | + <field>xl</field> | |
| 1943 | + <condition>=</condition> | |
| 1944 | + <name2/> | |
| 1945 | + </key> | |
| 1946 | + <key> | |
| 1947 | + <name>lp</name> | |
| 1948 | + <field>lp_name</field> | |
| 1949 | + <condition>=</condition> | |
| 1950 | + <name2/> | |
| 1951 | + </key> | |
| 1952 | + <key> | |
| 1953 | + <name>iscanceled</name> | |
| 1954 | + <field>is_cancel</field> | |
| 1955 | + <condition>=</condition> | |
| 1956 | + <name2/> | |
| 1957 | + </key> | |
| 1958 | + <value> | |
| 1959 | + <name>id</name> | |
| 1960 | + <rename>lpid</rename> | |
| 1961 | + <default/> | |
| 1962 | + <type>Integer</type> | |
| 1963 | + </value> | |
| 1964 | + </lookup> | |
| 1965 | + <cluster_schema/> | |
| 1966 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1967 | + <xloc>1013</xloc> | |
| 1968 | + <yloc>265</yloc> | |
| 1969 | + <draw>Y</draw> | |
| 1970 | + </GUI> | |
| 1971 | + </step> | |
| 1972 | + | |
| 1973 | + <step> | |
| 1974 | + <name>查找进场班次上一个班次的线路方向</name> | |
| 1975 | + <type>DBLookup</type> | |
| 1976 | + <description/> | |
| 1977 | + <distribute>Y</distribute> | |
| 1978 | + <custom_distribution/> | |
| 1979 | + <copies>1</copies> | |
| 1980 | + <partitioning> | |
| 1981 | + <method>none</method> | |
| 1982 | + <schema_name/> | |
| 1983 | + </partitioning> | |
| 1984 | + <connection>bus_control_variable</connection> | |
| 1985 | + <cache>N</cache> | |
| 1986 | + <cache_load_all>N</cache_load_all> | |
| 1987 | + <cache_size>0</cache_size> | |
| 1988 | + <lookup> | |
| 1989 | + <schema/> | |
| 1990 | + <table>bsth_c_stationroute</table> | |
| 1991 | + <orderby/> | |
| 1992 | + <fail_on_multiple>N</fail_on_multiple> | |
| 1993 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 1994 | + <key> | |
| 1995 | + <name>xlid</name> | |
| 1996 | + <field>line</field> | |
| 1997 | + <condition>=</condition> | |
| 1998 | + <name2/> | |
| 1999 | + </key> | |
| 2000 | + <key> | |
| 2001 | + <name>startZdtype_calcu</name> | |
| 2002 | + <field>station_mark</field> | |
| 2003 | + <condition>=</condition> | |
| 2004 | + <name2/> | |
| 2005 | + </key> | |
| 2006 | + <key> | |
| 2007 | + <name>qdzname_calcu</name> | |
| 2008 | + <field>station_name</field> | |
| 2009 | + <condition>=</condition> | |
| 2010 | + <name2/> | |
| 2011 | + </key> | |
| 2012 | + <key> | |
| 2013 | + <name>destory</name> | |
| 2014 | + <field>destroy</field> | |
| 2015 | + <condition>=</condition> | |
| 2016 | + <name2/> | |
| 2017 | + </key> | |
| 2018 | + <value> | |
| 2019 | + <name>directions</name> | |
| 2020 | + <rename>sxx</rename> | |
| 2021 | + <default/> | |
| 2022 | + <type>String</type> | |
| 2023 | + </value> | |
| 2024 | + </lookup> | |
| 2025 | + <cluster_schema/> | |
| 2026 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2027 | + <xloc>548</xloc> | |
| 2028 | + <yloc>610</yloc> | |
| 2029 | + <draw>Y</draw> | |
| 2030 | + </GUI> | |
| 2031 | + </step> | |
| 2032 | + | |
| 2033 | + <step> | |
| 2034 | + <name>查找进场班次上一个班次的终点站,并作为进场班次的起点站</name> | |
| 2035 | + <type>DBLookup</type> | |
| 2036 | + <description/> | |
| 2037 | + <distribute>Y</distribute> | |
| 2038 | + <custom_distribution/> | |
| 2039 | + <copies>1</copies> | |
| 2040 | + <partitioning> | |
| 2041 | + <method>none</method> | |
| 2042 | + <schema_name/> | |
| 2043 | + </partitioning> | |
| 2044 | + <connection>bus_control_variable</connection> | |
| 2045 | + <cache>Y</cache> | |
| 2046 | + <cache_load_all>Y</cache_load_all> | |
| 2047 | + <cache_size>0</cache_size> | |
| 2048 | + <lookup> | |
| 2049 | + <schema/> | |
| 2050 | + <table>bsth_c_stationroute</table> | |
| 2051 | + <orderby/> | |
| 2052 | + <fail_on_multiple>N</fail_on_multiple> | |
| 2053 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 2054 | + <key> | |
| 2055 | + <name>xlid</name> | |
| 2056 | + <field>line</field> | |
| 2057 | + <condition>=</condition> | |
| 2058 | + <name2/> | |
| 2059 | + </key> | |
| 2060 | + <key> | |
| 2061 | + <name>endZdtype_calcu</name> | |
| 2062 | + <field>station_mark</field> | |
| 2063 | + <condition>=</condition> | |
| 2064 | + <name2/> | |
| 2065 | + </key> | |
| 2066 | + <key> | |
| 2067 | + <name>sxx</name> | |
| 2068 | + <field>directions</field> | |
| 2069 | + <condition>=</condition> | |
| 2070 | + <name2/> | |
| 2071 | + </key> | |
| 2072 | + <key> | |
| 2073 | + <name>destory</name> | |
| 2074 | + <field>destroy</field> | |
| 2075 | + <condition>=</condition> | |
| 2076 | + <name2/> | |
| 2077 | + </key> | |
| 2078 | + <value> | |
| 2079 | + <name>station_name</name> | |
| 2080 | + <rename>zdzname_calcu</rename> | |
| 2081 | + <default/> | |
| 2082 | + <type>Integer</type> | |
| 2083 | + </value> | |
| 2084 | + </lookup> | |
| 2085 | + <cluster_schema/> | |
| 2086 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2087 | + <xloc>550</xloc> | |
| 2088 | + <yloc>701</yloc> | |
| 2089 | + <draw>Y</draw> | |
| 2090 | + </GUI> | |
| 2091 | + </step> | |
| 2092 | + | |
| 2093 | + <step> | |
| 2094 | + <name>查找进场起点站关联确定上下行</name> | |
| 2095 | + <type>DBLookup</type> | |
| 2096 | + <description/> | |
| 2097 | + <distribute>Y</distribute> | |
| 2098 | + <custom_distribution/> | |
| 2099 | + <copies>1</copies> | |
| 2100 | + <partitioning> | |
| 2101 | + <method>none</method> | |
| 2102 | + <schema_name/> | |
| 2103 | + </partitioning> | |
| 2104 | + <connection>bus_control_variable</connection> | |
| 2105 | + <cache>N</cache> | |
| 2106 | + <cache_load_all>N</cache_load_all> | |
| 2107 | + <cache_size>0</cache_size> | |
| 2108 | + <lookup> | |
| 2109 | + <schema/> | |
| 2110 | + <table>bsth_c_stationroute</table> | |
| 2111 | + <orderby/> | |
| 2112 | + <fail_on_multiple>N</fail_on_multiple> | |
| 2113 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 2114 | + <key> | |
| 2115 | + <name>xlid</name> | |
| 2116 | + <field>line</field> | |
| 2117 | + <condition>=</condition> | |
| 2118 | + <name2/> | |
| 2119 | + </key> | |
| 2120 | + <key> | |
| 2121 | + <name>zdzname_calcu</name> | |
| 2122 | + <field>station_name</field> | |
| 2123 | + <condition>=</condition> | |
| 2124 | + <name2/> | |
| 2125 | + </key> | |
| 2126 | + <key> | |
| 2127 | + <name>startZdtype_calcu</name> | |
| 2128 | + <field>station_mark</field> | |
| 2129 | + <condition>=</condition> | |
| 2130 | + <name2/> | |
| 2131 | + </key> | |
| 2132 | + <key> | |
| 2133 | + <name>destory</name> | |
| 2134 | + <field>destroy</field> | |
| 2135 | + <condition>=</condition> | |
| 2136 | + <name2/> | |
| 2137 | + </key> | |
| 2138 | + <value> | |
| 2139 | + <name>directions</name> | |
| 2140 | + <rename>sxx2</rename> | |
| 2141 | + <default/> | |
| 2142 | + <type>Integer</type> | |
| 2143 | + </value> | |
| 2144 | + <value> | |
| 2145 | + <name>station</name> | |
| 2146 | + <rename>qdzid</rename> | |
| 2147 | + <default/> | |
| 2148 | + <type>Integer</type> | |
| 2149 | + </value> | |
| 2150 | + </lookup> | |
| 2151 | + <cluster_schema/> | |
| 2152 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2153 | + <xloc>551</xloc> | |
| 2154 | + <yloc>782</yloc> | |
| 2155 | + <draw>Y</draw> | |
| 2156 | + </GUI> | |
| 2157 | + </step> | |
| 2158 | + | |
| 2159 | + <step> | |
| 2160 | + <name>正常班次_处理数据</name> | |
| 2161 | + <type>ScriptValueMod</type> | |
| 2162 | + <description/> | |
| 2163 | + <distribute>Y</distribute> | |
| 2164 | + <custom_distribution/> | |
| 2165 | + <copies>1</copies> | |
| 2166 | + <partitioning> | |
| 2167 | + <method>none</method> | |
| 2168 | + <schema_name/> | |
| 2169 | + </partitioning> | |
| 2170 | + <compatible>N</compatible> | |
| 2171 | + <optimizationLevel>9</optimizationLevel> | |
| 2172 | + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 2173 | + <jsScript_name>Script 1</jsScript_name> | |
| 2174 | + <jsScript_script>//Script here

// 添加站点标识
var sendZdtype = 'B';
var endZdtype = 'E';

var destory = 0; // 未撤销flag</jsScript_script> | |
| 2175 | + </jsScript> </jsScripts> <fields> <field> <name>sendZdtype</name> | |
| 2176 | + <rename>sendZdtype</rename> | |
| 2177 | + <type>String</type> | |
| 2178 | + <length>-1</length> | |
| 2179 | + <precision>-1</precision> | |
| 2180 | + <replace>N</replace> | |
| 2181 | + </field> <field> <name>endZdtype</name> | |
| 2182 | + <rename>endZdtype</rename> | |
| 2183 | + <type>String</type> | |
| 2184 | + <length>-1</length> | |
| 2185 | + <precision>-1</precision> | |
| 2186 | + <replace>N</replace> | |
| 2187 | + </field> <field> <name>destory</name> | |
| 2188 | + <rename>destory</rename> | |
| 2189 | + <type>Integer</type> | |
| 2190 | + <length>-1</length> | |
| 2191 | + <precision>-1</precision> | |
| 2192 | + <replace>N</replace> | |
| 2193 | + </field> </fields> <cluster_schema/> | |
| 2194 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2195 | + <xloc>588</xloc> | |
| 2196 | + <yloc>403</yloc> | |
| 2197 | + <draw>Y</draw> | |
| 2198 | + </GUI> | |
| 2199 | + </step> | |
| 2200 | + | |
| 2201 | + <step> | |
| 2202 | + <name>正常班次数据</name> | |
| 2203 | + <type>Dummy</type> | |
| 2204 | + <description/> | |
| 2205 | + <distribute>Y</distribute> | |
| 2206 | + <custom_distribution/> | |
| 2207 | + <copies>1</copies> | |
| 2208 | + <partitioning> | |
| 2209 | + <method>none</method> | |
| 2210 | + <schema_name/> | |
| 2211 | + </partitioning> | |
| 2212 | + <cluster_schema/> | |
| 2213 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2214 | + <xloc>725</xloc> | |
| 2215 | + <yloc>404</yloc> | |
| 2216 | + <draw>Y</draw> | |
| 2217 | + </GUI> | |
| 2218 | + </step> | |
| 2219 | + | |
| 2220 | + <step> | |
| 2221 | + <name>添加发车顺序号</name> | |
| 2222 | + <type>GroupBy</type> | |
| 2223 | + <description/> | |
| 2224 | + <distribute>Y</distribute> | |
| 2225 | + <custom_distribution/> | |
| 2226 | + <copies>1</copies> | |
| 2227 | + <partitioning> | |
| 2228 | + <method>none</method> | |
| 2229 | + <schema_name/> | |
| 2230 | + </partitioning> | |
| 2231 | + <all_rows>Y</all_rows> | |
| 2232 | + <ignore_aggregate>N</ignore_aggregate> | |
| 2233 | + <field_ignore/> | |
| 2234 | + <directory>%%java.io.tmpdir%%</directory> | |
| 2235 | + <prefix>grp</prefix> | |
| 2236 | + <add_linenr>Y</add_linenr> | |
| 2237 | + <linenr_fieldname>fcno</linenr_fieldname> | |
| 2238 | + <give_back_row>N</give_back_row> | |
| 2239 | + <group> | |
| 2240 | + <field> | |
| 2241 | + <name>lp</name> | |
| 2242 | + </field> | |
| 2243 | + </group> | |
| 2244 | + <fields> | |
| 2245 | + </fields> | |
| 2246 | + <cluster_schema/> | |
| 2247 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2248 | + <xloc>442</xloc> | |
| 2249 | + <yloc>44</yloc> | |
| 2250 | + <draw>Y</draw> | |
| 2251 | + </GUI> | |
| 2252 | + </step> | |
| 2253 | + | |
| 2254 | + <step> | |
| 2255 | + <name>添加对应班次数</name> | |
| 2256 | + <type>GroupBy</type> | |
| 2257 | + <description/> | |
| 2258 | + <distribute>Y</distribute> | |
| 2259 | + <custom_distribution/> | |
| 2260 | + <copies>1</copies> | |
| 2261 | + <partitioning> | |
| 2262 | + <method>none</method> | |
| 2263 | + <schema_name/> | |
| 2264 | + </partitioning> | |
| 2265 | + <all_rows>Y</all_rows> | |
| 2266 | + <ignore_aggregate>N</ignore_aggregate> | |
| 2267 | + <field_ignore/> | |
| 2268 | + <directory>%%java.io.tmpdir%%</directory> | |
| 2269 | + <prefix>grp</prefix> | |
| 2270 | + <add_linenr>Y</add_linenr> | |
| 2271 | + <linenr_fieldname>bcs</linenr_fieldname> | |
| 2272 | + <give_back_row>N</give_back_row> | |
| 2273 | + <group> | |
| 2274 | + </group> | |
| 2275 | + <fields> | |
| 2276 | + </fields> | |
| 2277 | + <cluster_schema/> | |
| 2278 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2279 | + <xloc>692</xloc> | |
| 2280 | + <yloc>44</yloc> | |
| 2281 | + <draw>Y</draw> | |
| 2282 | + </GUI> | |
| 2283 | + </step> | |
| 2284 | + | |
| 2285 | + <step> | |
| 2286 | + <name>班次数据范式化</name> | |
| 2287 | + <type>Normaliser</type> | |
| 2288 | + <description/> | |
| 2289 | + <distribute>Y</distribute> | |
| 2290 | + <custom_distribution/> | |
| 2291 | + <copies>1</copies> | |
| 2292 | + <partitioning> | |
| 2293 | + <method>none</method> | |
| 2294 | + <schema_name/> | |
| 2295 | + </partitioning> | |
| 2296 | + <typefield>站点名称</typefield> | |
| 2297 | + <fields> </fields> <cluster_schema/> | |
| 2298 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2299 | + <xloc>248</xloc> | |
| 2300 | + <yloc>44</yloc> | |
| 2301 | + <draw>Y</draw> | |
| 2302 | + </GUI> | |
| 2303 | + </step> | |
| 2304 | + | |
| 2305 | + <step> | |
| 2306 | + <name>班次类型字典</name> | |
| 2307 | + <type>ValueMapper</type> | |
| 2308 | + <description/> | |
| 2309 | + <distribute>Y</distribute> | |
| 2310 | + <custom_distribution/> | |
| 2311 | + <copies>1</copies> | |
| 2312 | + <partitioning> | |
| 2313 | + <method>none</method> | |
| 2314 | + <schema_name/> | |
| 2315 | + </partitioning> | |
| 2316 | + <field_to_use>bctype</field_to_use> | |
| 2317 | + <target_field>bctype_code</target_field> | |
| 2318 | + <non_match_default>未知类型</non_match_default> | |
| 2319 | + <fields> | |
| 2320 | + <field> | |
| 2321 | + <source_value>正常班次</source_value> | |
| 2322 | + <target_value>normal</target_value> | |
| 2323 | + </field> | |
| 2324 | + <field> | |
| 2325 | + <source_value>出场</source_value> | |
| 2326 | + <target_value>out</target_value> | |
| 2327 | + </field> | |
| 2328 | + <field> | |
| 2329 | + <source_value>进场</source_value> | |
| 2330 | + <target_value>in</target_value> | |
| 2331 | + </field> | |
| 2332 | + <field> | |
| 2333 | + <source_value>加油</source_value> | |
| 2334 | + <target_value>oil</target_value> | |
| 2335 | + </field> | |
| 2336 | + <field> | |
| 2337 | + <source_value>临加</source_value> | |
| 2338 | + <target_value>temp</target_value> | |
| 2339 | + </field> | |
| 2340 | + <field> | |
| 2341 | + <source_value>区间</source_value> | |
| 2342 | + <target_value>region</target_value> | |
| 2343 | + </field> | |
| 2344 | + <field> | |
| 2345 | + <source_value>放空</source_value> | |
| 2346 | + <target_value>venting</target_value> | |
| 2347 | + </field> | |
| 2348 | + <field> | |
| 2349 | + <source_value>放大站</source_value> | |
| 2350 | + <target_value>major</target_value> | |
| 2351 | + </field> | |
| 2352 | + </fields> | |
| 2353 | + <cluster_schema/> | |
| 2354 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2355 | + <xloc>149</xloc> | |
| 2356 | + <yloc>491</yloc> | |
| 2357 | + <draw>Y</draw> | |
| 2358 | + </GUI> | |
| 2359 | + </step> | |
| 2360 | + | |
| 2361 | + <step> | |
| 2362 | + <name>班次类型字典 2</name> | |
| 2363 | + <type>ValueMapper</type> | |
| 2364 | + <description/> | |
| 2365 | + <distribute>Y</distribute> | |
| 2366 | + <custom_distribution/> | |
| 2367 | + <copies>1</copies> | |
| 2368 | + <partitioning> | |
| 2369 | + <method>none</method> | |
| 2370 | + <schema_name/> | |
| 2371 | + </partitioning> | |
| 2372 | + <field_to_use>bctype</field_to_use> | |
| 2373 | + <target_field>bctype_code</target_field> | |
| 2374 | + <non_match_default>未知类型</non_match_default> | |
| 2375 | + <fields> | |
| 2376 | + <field> | |
| 2377 | + <source_value>正常班次</source_value> | |
| 2378 | + <target_value>normal</target_value> | |
| 2379 | + </field> | |
| 2380 | + <field> | |
| 2381 | + <source_value>出场</source_value> | |
| 2382 | + <target_value>out</target_value> | |
| 2383 | + </field> | |
| 2384 | + <field> | |
| 2385 | + <source_value>进场</source_value> | |
| 2386 | + <target_value>in</target_value> | |
| 2387 | + </field> | |
| 2388 | + <field> | |
| 2389 | + <source_value>加油</source_value> | |
| 2390 | + <target_value>oil</target_value> | |
| 2391 | + </field> | |
| 2392 | + <field> | |
| 2393 | + <source_value>临加</source_value> | |
| 2394 | + <target_value>temp</target_value> | |
| 2395 | + </field> | |
| 2396 | + <field> | |
| 2397 | + <source_value>区间</source_value> | |
| 2398 | + <target_value>region</target_value> | |
| 2399 | + </field> | |
| 2400 | + <field> | |
| 2401 | + <source_value>放空</source_value> | |
| 2402 | + <target_value>venting</target_value> | |
| 2403 | + </field> | |
| 2404 | + <field> | |
| 2405 | + <source_value>放大站</source_value> | |
| 2406 | + <target_value>major</target_value> | |
| 2407 | + </field> | |
| 2408 | + </fields> | |
| 2409 | + <cluster_schema/> | |
| 2410 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2411 | + <xloc>333</xloc> | |
| 2412 | + <yloc>681</yloc> | |
| 2413 | + <draw>Y</draw> | |
| 2414 | + </GUI> | |
| 2415 | + </step> | |
| 2416 | + | |
| 2417 | + <step> | |
| 2418 | + <name>班次类型字典 3</name> | |
| 2419 | + <type>ValueMapper</type> | |
| 2420 | + <description/> | |
| 2421 | + <distribute>Y</distribute> | |
| 2422 | + <custom_distribution/> | |
| 2423 | + <copies>1</copies> | |
| 2424 | + <partitioning> | |
| 2425 | + <method>none</method> | |
| 2426 | + <schema_name/> | |
| 2427 | + </partitioning> | |
| 2428 | + <field_to_use>bctype</field_to_use> | |
| 2429 | + <target_field>bctype_code</target_field> | |
| 2430 | + <non_match_default>未知类型</non_match_default> | |
| 2431 | + <fields> | |
| 2432 | + <field> | |
| 2433 | + <source_value>正常班次</source_value> | |
| 2434 | + <target_value>normal</target_value> | |
| 2435 | + </field> | |
| 2436 | + <field> | |
| 2437 | + <source_value>出场</source_value> | |
| 2438 | + <target_value>out</target_value> | |
| 2439 | + </field> | |
| 2440 | + <field> | |
| 2441 | + <source_value>进场</source_value> | |
| 2442 | + <target_value>in</target_value> | |
| 2443 | + </field> | |
| 2444 | + <field> | |
| 2445 | + <source_value>加油</source_value> | |
| 2446 | + <target_value>oil</target_value> | |
| 2447 | + </field> | |
| 2448 | + <field> | |
| 2449 | + <source_value>临加</source_value> | |
| 2450 | + <target_value>temp</target_value> | |
| 2451 | + </field> | |
| 2452 | + <field> | |
| 2453 | + <source_value>区间</source_value> | |
| 2454 | + <target_value>region</target_value> | |
| 2455 | + </field> | |
| 2456 | + <field> | |
| 2457 | + <source_value>放空</source_value> | |
| 2458 | + <target_value>venting</target_value> | |
| 2459 | + </field> | |
| 2460 | + <field> | |
| 2461 | + <source_value>放大站</source_value> | |
| 2462 | + <target_value>major</target_value> | |
| 2463 | + </field> | |
| 2464 | + </fields> | |
| 2465 | + <cluster_schema/> | |
| 2466 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2467 | + <xloc>551</xloc> | |
| 2468 | + <yloc>928</yloc> | |
| 2469 | + <draw>Y</draw> | |
| 2470 | + </GUI> | |
| 2471 | + </step> | |
| 2472 | + | |
| 2473 | + <step> | |
| 2474 | + <name>类型修正</name> | |
| 2475 | + <type>SelectValues</type> | |
| 2476 | + <description/> | |
| 2477 | + <distribute>Y</distribute> | |
| 2478 | + <custom_distribution/> | |
| 2479 | + <copies>1</copies> | |
| 2480 | + <partitioning> | |
| 2481 | + <method>none</method> | |
| 2482 | + <schema_name/> | |
| 2483 | + </partitioning> | |
| 2484 | + <fields> <select_unspecified>N</select_unspecified> | |
| 2485 | + <meta> <name>jhlc</name> | |
| 2486 | + <rename>jhlc</rename> | |
| 2487 | + <type>Number</type> | |
| 2488 | + <length>-2</length> | |
| 2489 | + <precision>-2</precision> | |
| 2490 | + <conversion_mask/> | |
| 2491 | + <date_format_lenient>false</date_format_lenient> | |
| 2492 | + <date_format_locale/> | |
| 2493 | + <date_format_timezone/> | |
| 2494 | + <lenient_string_to_number>false</lenient_string_to_number> | |
| 2495 | + <encoding/> | |
| 2496 | + <decimal_symbol/> | |
| 2497 | + <grouping_symbol/> | |
| 2498 | + <currency_symbol/> | |
| 2499 | + <storage_type/> | |
| 2500 | + </meta> <meta> <name>bcsj</name> | |
| 2501 | + <rename>bcsj</rename> | |
| 2502 | + <type>Integer</type> | |
| 2503 | + <length>-2</length> | |
| 2504 | + <precision>-2</precision> | |
| 2505 | + <conversion_mask/> | |
| 2506 | + <date_format_lenient>false</date_format_lenient> | |
| 2507 | + <date_format_locale/> | |
| 2508 | + <date_format_timezone/> | |
| 2509 | + <lenient_string_to_number>false</lenient_string_to_number> | |
| 2510 | + <encoding/> | |
| 2511 | + <decimal_symbol/> | |
| 2512 | + <grouping_symbol/> | |
| 2513 | + <currency_symbol/> | |
| 2514 | + <storage_type/> | |
| 2515 | + </meta> </fields> <cluster_schema/> | |
| 2516 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2517 | + <xloc>146</xloc> | |
| 2518 | + <yloc>768</yloc> | |
| 2519 | + <draw>Y</draw> | |
| 2520 | + </GUI> | |
| 2521 | + </step> | |
| 2522 | + | |
| 2523 | + <step> | |
| 2524 | + <name>类型修正 2</name> | |
| 2525 | + <type>SelectValues</type> | |
| 2526 | + <description/> | |
| 2527 | + <distribute>Y</distribute> | |
| 2528 | + <custom_distribution/> | |
| 2529 | + <copies>1</copies> | |
| 2530 | + <partitioning> | |
| 2531 | + <method>none</method> | |
| 2532 | + <schema_name/> | |
| 2533 | + </partitioning> | |
| 2534 | + <fields> <select_unspecified>N</select_unspecified> | |
| 2535 | + <meta> <name>out_mileage</name> | |
| 2536 | + <rename>out_mileage</rename> | |
| 2537 | + <type>Number</type> | |
| 2538 | + <length>-2</length> | |
| 2539 | + <precision>-2</precision> | |
| 2540 | + <conversion_mask/> | |
| 2541 | + <date_format_lenient>false</date_format_lenient> | |
| 2542 | + <date_format_locale/> | |
| 2543 | + <date_format_timezone/> | |
| 2544 | + <lenient_string_to_number>false</lenient_string_to_number> | |
| 2545 | + <encoding/> | |
| 2546 | + <decimal_symbol/> | |
| 2547 | + <grouping_symbol/> | |
| 2548 | + <currency_symbol/> | |
| 2549 | + <storage_type/> | |
| 2550 | + </meta> <meta> <name>out_time</name> | |
| 2551 | + <rename>out_time</rename> | |
| 2552 | + <type>Integer</type> | |
| 2553 | + <length>-2</length> | |
| 2554 | + <precision>-2</precision> | |
| 2555 | + <conversion_mask/> | |
| 2556 | + <date_format_lenient>false</date_format_lenient> | |
| 2557 | + <date_format_locale/> | |
| 2558 | + <date_format_timezone/> | |
| 2559 | + <lenient_string_to_number>false</lenient_string_to_number> | |
| 2560 | + <encoding/> | |
| 2561 | + <decimal_symbol/> | |
| 2562 | + <grouping_symbol/> | |
| 2563 | + <currency_symbol/> | |
| 2564 | + <storage_type/> | |
| 2565 | + </meta> <meta> <name>sxx</name> | |
| 2566 | + <rename>sxx</rename> | |
| 2567 | + <type>Integer</type> | |
| 2568 | + <length>-2</length> | |
| 2569 | + <precision>-2</precision> | |
| 2570 | + <conversion_mask/> | |
| 2571 | + <date_format_lenient>false</date_format_lenient> | |
| 2572 | + <date_format_locale/> | |
| 2573 | + <date_format_timezone/> | |
| 2574 | + <lenient_string_to_number>false</lenient_string_to_number> | |
| 2575 | + <encoding/> | |
| 2576 | + <decimal_symbol/> | |
| 2577 | + <grouping_symbol/> | |
| 2578 | + <currency_symbol/> | |
| 2579 | + <storage_type/> | |
| 2580 | + </meta> </fields> <cluster_schema/> | |
| 2581 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2582 | + <xloc>338</xloc> | |
| 2583 | + <yloc>1008</yloc> | |
| 2584 | + <draw>Y</draw> | |
| 2585 | + </GUI> | |
| 2586 | + </step> | |
| 2587 | + | |
| 2588 | + <step> | |
| 2589 | + <name>类型修正 3</name> | |
| 2590 | + <type>SelectValues</type> | |
| 2591 | + <description/> | |
| 2592 | + <distribute>Y</distribute> | |
| 2593 | + <custom_distribution/> | |
| 2594 | + <copies>1</copies> | |
| 2595 | + <partitioning> | |
| 2596 | + <method>none</method> | |
| 2597 | + <schema_name/> | |
| 2598 | + </partitioning> | |
| 2599 | + <fields> <select_unspecified>N</select_unspecified> | |
| 2600 | + <meta> <name>parade_mileage</name> | |
| 2601 | + <rename>parade_mileage</rename> | |
| 2602 | + <type>Number</type> | |
| 2603 | + <length>-2</length> | |
| 2604 | + <precision>-2</precision> | |
| 2605 | + <conversion_mask/> | |
| 2606 | + <date_format_lenient>false</date_format_lenient> | |
| 2607 | + <date_format_locale/> | |
| 2608 | + <date_format_timezone/> | |
| 2609 | + <lenient_string_to_number>false</lenient_string_to_number> | |
| 2610 | + <encoding/> | |
| 2611 | + <decimal_symbol/> | |
| 2612 | + <grouping_symbol/> | |
| 2613 | + <currency_symbol/> | |
| 2614 | + <storage_type/> | |
| 2615 | + </meta> <meta> <name>parade_time</name> | |
| 2616 | + <rename>parade_time</rename> | |
| 2617 | + <type>Integer</type> | |
| 2618 | + <length>-2</length> | |
| 2619 | + <precision>-2</precision> | |
| 2620 | + <conversion_mask/> | |
| 2621 | + <date_format_lenient>false</date_format_lenient> | |
| 2622 | + <date_format_locale/> | |
| 2623 | + <date_format_timezone/> | |
| 2624 | + <lenient_string_to_number>false</lenient_string_to_number> | |
| 2625 | + <encoding/> | |
| 2626 | + <decimal_symbol/> | |
| 2627 | + <grouping_symbol/> | |
| 2628 | + <currency_symbol/> | |
| 2629 | + <storage_type/> | |
| 2630 | + </meta> <meta> <name>sxx2</name> | |
| 2631 | + <rename>sxx2</rename> | |
| 2632 | + <type>Integer</type> | |
| 2633 | + <length>-2</length> | |
| 2634 | + <precision>-2</precision> | |
| 2635 | + <conversion_mask/> | |
| 2636 | + <date_format_lenient>false</date_format_lenient> | |
| 2637 | + <date_format_locale/> | |
| 2638 | + <date_format_timezone/> | |
| 2639 | + <lenient_string_to_number>false</lenient_string_to_number> | |
| 2640 | + <encoding/> | |
| 2641 | + <decimal_symbol/> | |
| 2642 | + <grouping_symbol/> | |
| 2643 | + <currency_symbol/> | |
| 2644 | + <storage_type/> | |
| 2645 | + </meta> </fields> <cluster_schema/> | |
| 2646 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2647 | + <xloc>847</xloc> | |
| 2648 | + <yloc>1003</yloc> | |
| 2649 | + <draw>Y</draw> | |
| 2650 | + </GUI> | |
| 2651 | + </step> | |
| 2652 | + | |
| 2653 | + <step> | |
| 2654 | + <name>计算班次类型</name> | |
| 2655 | + <type>ValueMapper</type> | |
| 2656 | + <description/> | |
| 2657 | + <distribute>Y</distribute> | |
| 2658 | + <custom_distribution/> | |
| 2659 | + <copies>1</copies> | |
| 2660 | + <partitioning> | |
| 2661 | + <method>none</method> | |
| 2662 | + <schema_name/> | |
| 2663 | + </partitioning> | |
| 2664 | + <field_to_use>qdzname</field_to_use> | |
| 2665 | + <target_field>bctype</target_field> | |
| 2666 | + <non_match_default>正常班次</non_match_default> | |
| 2667 | + <fields> | |
| 2668 | + <field> | |
| 2669 | + <source_value>出场</source_value> | |
| 2670 | + <target_value>出场</target_value> | |
| 2671 | + </field> | |
| 2672 | + <field> | |
| 2673 | + <source_value>进场</source_value> | |
| 2674 | + <target_value>进场</target_value> | |
| 2675 | + </field> | |
| 2676 | + </fields> | |
| 2677 | + <cluster_schema/> | |
| 2678 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2679 | + <xloc>1014</xloc> | |
| 2680 | + <yloc>401</yloc> | |
| 2681 | + <draw>Y</draw> | |
| 2682 | + </GUI> | |
| 2683 | + </step> | |
| 2684 | + | |
| 2685 | + <step> | |
| 2686 | + <name>记录关联 (笛卡尔输出)</name> | |
| 2687 | + <type>JoinRows</type> | |
| 2688 | + <description/> | |
| 2689 | + <distribute>Y</distribute> | |
| 2690 | + <custom_distribution/> | |
| 2691 | + <copies>1</copies> | |
| 2692 | + <partitioning> | |
| 2693 | + <method>none</method> | |
| 2694 | + <schema_name/> | |
| 2695 | + </partitioning> | |
| 2696 | + <directory>%%java.io.tmpdir%%</directory> | |
| 2697 | + <prefix>out</prefix> | |
| 2698 | + <cache_size>500</cache_size> | |
| 2699 | + <main/> | |
| 2700 | + <compare> | |
| 2701 | +<condition> | |
| 2702 | + <negated>N</negated> | |
| 2703 | + <leftvalue/> | |
| 2704 | + <function>=</function> | |
| 2705 | + <rightvalue/> | |
| 2706 | + </condition> | |
| 2707 | + </compare> | |
| 2708 | + <cluster_schema/> | |
| 2709 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2710 | + <xloc>310</xloc> | |
| 2711 | + <yloc>133</yloc> | |
| 2712 | + <draw>Y</draw> | |
| 2713 | + </GUI> | |
| 2714 | + </step> | |
| 2715 | + | |
| 2716 | + <step> | |
| 2717 | + <name>过滤记录(发车时间为空)</name> | |
| 2718 | + <type>FilterRows</type> | |
| 2719 | + <description/> | |
| 2720 | + <distribute>Y</distribute> | |
| 2721 | + <custom_distribution/> | |
| 2722 | + <copies>1</copies> | |
| 2723 | + <partitioning> | |
| 2724 | + <method>none</method> | |
| 2725 | + <schema_name/> | |
| 2726 | + </partitioning> | |
| 2727 | +<send_true_to/> | |
| 2728 | +<send_false_to/> | |
| 2729 | + <compare> | |
| 2730 | +<condition> | |
| 2731 | + <negated>N</negated> | |
| 2732 | + <leftvalue>sendtime</leftvalue> | |
| 2733 | + <function>IS NOT NULL</function> | |
| 2734 | + <rightvalue/> | |
| 2735 | + </condition> | |
| 2736 | + </compare> | |
| 2737 | + <cluster_schema/> | |
| 2738 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2739 | + <xloc>571</xloc> | |
| 2740 | + <yloc>44</yloc> | |
| 2741 | + <draw>Y</draw> | |
| 2742 | + </GUI> | |
| 2743 | + </step> | |
| 2744 | + | |
| 2745 | + <step> | |
| 2746 | + <name>进场班次_确定起点站名字</name> | |
| 2747 | + <type>ScriptValueMod</type> | |
| 2748 | + <description/> | |
| 2749 | + <distribute>Y</distribute> | |
| 2750 | + <custom_distribution/> | |
| 2751 | + <copies>1</copies> | |
| 2752 | + <partitioning> | |
| 2753 | + <method>none</method> | |
| 2754 | + <schema_name/> | |
| 2755 | + </partitioning> | |
| 2756 | + <compatible>N</compatible> | |
| 2757 | + <optimizationLevel>9</optimizationLevel> | |
| 2758 | + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 2759 | + <jsScript_name>Script 1</jsScript_name> | |
| 2760 | + <jsScript_script>//Script here

// 添加站点标识
var cc_groups = qdzgroups.split(","); // 所有班次起点站数组
var qdzname_calcu = cc_groups[gno - 2]; // 进场班次的起点站是上一个班次的终点站,这里只有上一个班次的起点站,还需要计算
var startZdtype_calcu = 'B';
var endZdtype_calcu = 'E';

var destory = 0; // 未撤销flag</jsScript_script> | |
| 2761 | + </jsScript> </jsScripts> <fields> <field> <name>qdzname_calcu</name> | |
| 2762 | + <rename>qdzname_calcu</rename> | |
| 2763 | + <type>String</type> | |
| 2764 | + <length>-1</length> | |
| 2765 | + <precision>-1</precision> | |
| 2766 | + <replace>N</replace> | |
| 2767 | + </field> <field> <name>startZdtype_calcu</name> | |
| 2768 | + <rename>startZdtype_calcu</rename> | |
| 2769 | + <type>String</type> | |
| 2770 | + <length>-1</length> | |
| 2771 | + <precision>-1</precision> | |
| 2772 | + <replace>N</replace> | |
| 2773 | + </field> <field> <name>endZdtype_calcu</name> | |
| 2774 | + <rename>endZdtype_calcu</rename> | |
| 2775 | + <type>String</type> | |
| 2776 | + <length>-1</length> | |
| 2777 | + <precision>-1</precision> | |
| 2778 | + <replace>N</replace> | |
| 2779 | + </field> <field> <name>destory</name> | |
| 2780 | + <rename>destory</rename> | |
| 2781 | + <type>Integer</type> | |
| 2782 | + <length>-1</length> | |
| 2783 | + <precision>-1</precision> | |
| 2784 | + <replace>N</replace> | |
| 2785 | + </field> </fields> <cluster_schema/> | |
| 2786 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2787 | + <xloc>754</xloc> | |
| 2788 | + <yloc>610</yloc> | |
| 2789 | + <draw>Y</draw> | |
| 2790 | + </GUI> | |
| 2791 | + </step> | |
| 2792 | + | |
| 2793 | + <step> | |
| 2794 | + <name>进场班次数据</name> | |
| 2795 | + <type>Dummy</type> | |
| 2796 | + <description/> | |
| 2797 | + <distribute>Y</distribute> | |
| 2798 | + <custom_distribution/> | |
| 2799 | + <copies>1</copies> | |
| 2800 | + <partitioning> | |
| 2801 | + <method>none</method> | |
| 2802 | + <schema_name/> | |
| 2803 | + </partitioning> | |
| 2804 | + <cluster_schema/> | |
| 2805 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2806 | + <xloc>997</xloc> | |
| 2807 | + <yloc>606</yloc> | |
| 2808 | + <draw>Y</draw> | |
| 2809 | + </GUI> | |
| 2810 | + </step> | |
| 2811 | + | |
| 2812 | + <step_error_handling> | |
| 2813 | + <error> | |
| 2814 | + <source_step>插入/更新bsth_c_s_ttinfo_detail</source_step> | |
| 2815 | + <target_step/> | |
| 2816 | + <is_enabled>Y</is_enabled> | |
| 2817 | + <nr_valuename>c1</nr_valuename> | |
| 2818 | + <descriptions_valuename>c2</descriptions_valuename> | |
| 2819 | + <fields_valuename>c3</fields_valuename> | |
| 2820 | + <codes_valuename>c4</codes_valuename> | |
| 2821 | + <max_errors/> | |
| 2822 | + <max_pct_errors/> | |
| 2823 | + <min_pct_rows/> | |
| 2824 | + </error> | |
| 2825 | + </step_error_handling> | |
| 2826 | + <slave-step-copy-partition-distribution> | |
| 2827 | +</slave-step-copy-partition-distribution> | |
| 2828 | + <slave_transformation>N</slave_transformation> | |
| 2829 | + | |
| 2830 | +</transformation> | ... | ... |
src/main/resources/datatools/ktrs/ttinfodetailDataInput2.ktr
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<transformation> | |
| 3 | - <info> | |
| 4 | - <name>时刻表明细导出2</name> | |
| 5 | - <description>时刻表明细信息导入</description> | |
| 6 | - <extended_description>时刻表明细信息</extended_description> | |
| 7 | - <trans_version/> | |
| 8 | - <trans_type>Normal</trans_type> | |
| 9 | - <trans_status>0</trans_status> | |
| 10 | - <directory>/</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/06/30 12:21:57.536</created_date> | |
| 71 | - <modified_user>-</modified_user> | |
| 72 | - <modified_date>2016/06/30 12:21:57.536</modified_date> | |
| 73 | - <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA=</key_for_session_key> | |
| 74 | - <is_key_private>N</is_key_private> | |
| 75 | - </info> | |
| 76 | - <notepads> | |
| 77 | - <notepad> | |
| 78 | - <note>字典表对应(以后直接查找表 bsth_c_sys_dictionary)
类型 代码 名称
LineTrend 0 上行
LineTrend 1 下行
ScheduleType normal 正常班次
ScheduleType out 出场
ScheduleType in 进场
ScheduleType temp 临加
ScheduleType region 区间
ScheduleType venting 放空
ScheduleType major 放大站</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>因为时刻表输入格式不确定性,主要因为表结构是反范式化的,
所以需要外部动态指定愿数据,头三个step动态指定愿数据

</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>这里有些问题
在window2012的环境下,
MySql数据库查询中如果返回中文内容的字段,这个内容乱码
解决办法,就是数据库查询全部缓存,就不乱码
linux环境下没问题</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>出场班次,方向有时确定不准,
空的情况下设定为0(上行)</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>进场班次,方向有时确定不准,
空的情况下设定为0(上行)</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>bus_control_variable</name> | |
| 185 | - <server>${v_db_ip}</server> | |
| 186 | - <type>MYSQL</type> | |
| 187 | - <access>Native</access> | |
| 188 | - <database>${v_db_dname}</database> | |
| 189 | - <port>3306</port> | |
| 190 | - <username>${v_db_uname}</username> | |
| 191 | - <password>${v_db_pwd}</password> | |
| 192 | - <servername/> | |
| 193 | - <data_tablespace/> | |
| 194 | - <index_tablespace/> | |
| 195 | - <attributes> | |
| 196 | - <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute> | |
| 197 | - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 198 | - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 199 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 200 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 201 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 202 | - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 203 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 204 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 205 | - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute> | |
| 206 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 207 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 208 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 209 | - </attributes> | |
| 210 | - </connection> | |
| 211 | - <connection> | |
| 212 | - <name>bus_control_公司_201</name> | |
| 213 | - <server>localhost</server> | |
| 214 | - <type>MYSQL</type> | |
| 215 | - <access>Native</access> | |
| 216 | - <database>control</database> | |
| 217 | - <port>3306</port> | |
| 218 | - <username>root</username> | |
| 219 | - <password>Encrypted </password> | |
| 220 | - <servername/> | |
| 221 | - <data_tablespace/> | |
| 222 | - <index_tablespace/> | |
| 223 | - <attributes> | |
| 224 | - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 225 | - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 226 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 227 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 228 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 229 | - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 230 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 231 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 232 | - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute> | |
| 233 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 234 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 235 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 236 | - </attributes> | |
| 237 | - </connection> | |
| 238 | - <connection> | |
| 239 | - <name>bus_control_本机</name> | |
| 240 | - <server>localhost</server> | |
| 241 | - <type>MYSQL</type> | |
| 242 | - <access>Native</access> | |
| 243 | - <database>control</database> | |
| 244 | - <port>3306</port> | |
| 245 | - <username>root</username> | |
| 246 | - <password>Encrypted </password> | |
| 247 | - <servername/> | |
| 248 | - <data_tablespace/> | |
| 249 | - <index_tablespace/> | |
| 250 | - <attributes> | |
| 251 | - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 252 | - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 253 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 254 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 255 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 256 | - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 257 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 258 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 259 | - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 260 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 261 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 262 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 263 | - </attributes> | |
| 264 | - </connection> | |
| 265 | - <connection> | |
| 266 | - <name>xlab_mysql_youle</name> | |
| 267 | - <server>101.231.124.8</server> | |
| 268 | - <type>MYSQL</type> | |
| 269 | - <access>Native</access> | |
| 270 | - <database>xlab_youle</database> | |
| 271 | - <port>45687</port> | |
| 272 | - <username>xlab-youle</username> | |
| 273 | - <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password> | |
| 274 | - <servername/> | |
| 275 | - <data_tablespace/> | |
| 276 | - <index_tablespace/> | |
| 277 | - <attributes> | |
| 278 | - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 279 | - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 280 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 281 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 282 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 283 | - <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute> | |
| 284 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 285 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 286 | - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 287 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 288 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 289 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 290 | - </attributes> | |
| 291 | - </connection> | |
| 292 | - <connection> | |
| 293 | - <name>xlab_mysql_youle(本机)</name> | |
| 294 | - <server>localhost</server> | |
| 295 | - <type>MYSQL</type> | |
| 296 | - <access>Native</access> | |
| 297 | - <database>xlab_youle</database> | |
| 298 | - <port>3306</port> | |
| 299 | - <username>root</username> | |
| 300 | - <password>Encrypted </password> | |
| 301 | - <servername/> | |
| 302 | - <data_tablespace/> | |
| 303 | - <index_tablespace/> | |
| 304 | - <attributes> | |
| 305 | - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 306 | - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 307 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 308 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 309 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 310 | - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 311 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 312 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 313 | - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 314 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 315 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 316 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 317 | - </attributes> | |
| 318 | - </connection> | |
| 319 | - <connection> | |
| 320 | - <name>xlab_youle</name> | |
| 321 | - <server/> | |
| 322 | - <type>MYSQL</type> | |
| 323 | - <access>JNDI</access> | |
| 324 | - <database>xlab_youle</database> | |
| 325 | - <port>1521</port> | |
| 326 | - <username/> | |
| 327 | - <password>Encrypted </password> | |
| 328 | - <servername/> | |
| 329 | - <data_tablespace/> | |
| 330 | - <index_tablespace/> | |
| 331 | - <attributes> | |
| 332 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 333 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 334 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 335 | - <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | |
| 336 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 337 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 338 | - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 339 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 340 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 341 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 342 | - </attributes> | |
| 343 | - </connection> | |
| 344 | - <order> | |
| 345 | - <hop> <from>时刻表明细信息Excel输入</from><to>班次数据范式化</to><enabled>Y</enabled> </hop> | |
| 346 | - <hop> <from>添加发车顺序号</from><to>过滤记录(发车时间为空)</to><enabled>Y</enabled> </hop> | |
| 347 | - <hop> <from>过滤记录(发车时间为空)</from><to>添加对应班次数</to><enabled>Y</enabled> </hop> | |
| 348 | - <hop> <from>添加对应班次数</from><to>处理数据</to><enabled>Y</enabled> </hop> | |
| 349 | - <hop> <from>处理数据</from><to>分组各个路牌的站</to><enabled>Y</enabled> </hop> | |
| 350 | - <hop> <from>查找时刻表基础信息关联</from><to>查找路牌关联</to><enabled>Y</enabled> </hop> | |
| 351 | - <hop> <from>查找线路关联</from><to>查找时刻表基础信息关联</to><enabled>Y</enabled> </hop> | |
| 352 | - <hop> <from>上下行字典</from><to>班次类型字典</to><enabled>Y</enabled> </hop> | |
| 353 | - <hop> <from>上下行字典 2</from><to>班次类型字典 2</to><enabled>Y</enabled> </hop> | |
| 354 | - <hop> <from>上下行字典 3</from><to>班次类型字典 3</to><enabled>Y</enabled> </hop> | |
| 355 | - <hop> <from>匹配上下行正常班次里程时间</from><to>类型修正</to><enabled>Y</enabled> </hop> | |
| 356 | - <hop> <from>按照班次类型过滤数据1</from><to>按照班次类型过滤数据2</to><enabled>Y</enabled> </hop> | |
| 357 | - <hop> <from>按照班次类型过滤数据1</from><to>正常班次数据</to><enabled>Y</enabled> </hop> | |
| 358 | - <hop> <from>按照班次类型过滤数据2</from><to>出场班次数据</to><enabled>Y</enabled> </hop> | |
| 359 | - <hop> <from>按照班次类型过滤数据2</from><to>进场班次数据</to><enabled>Y</enabled> </hop> | |
| 360 | - <hop> <from>查找线路上下行里程时间</from><to>匹配上下行正常班次里程时间</to><enabled>Y</enabled> </hop> | |
| 361 | - <hop> <from>查找终点站关联</from><to>上下行字典</to><enabled>Y</enabled> </hop> | |
| 362 | - <hop> <from>查找起点站关联并确定上下行</from><to>查找终点站关联</to><enabled>Y</enabled> </hop> | |
| 363 | - <hop> <from>正常班次_处理数据</from><to>查找起点站关联并确定上下行</to><enabled>Y</enabled> </hop> | |
| 364 | - <hop> <from>正常班次数据</from><to>正常班次_处理数据</to><enabled>Y</enabled> </hop> | |
| 365 | - <hop> <from>班次类型字典</from><to>查找线路上下行里程时间</to><enabled>Y</enabled> </hop> | |
| 366 | - <hop> <from>班次类型字典 2</from><to>查找线路出场里程时间</to><enabled>Y</enabled> </hop> | |
| 367 | - <hop> <from>班次类型字典 3</from><to>查找线路进场里程时间</to><enabled>Y</enabled> </hop> | |
| 368 | - <hop> <from>查找路牌关联</from><to>计算班次类型</to><enabled>Y</enabled> </hop> | |
| 369 | - <hop> <from>计算班次类型</from><to>按照班次类型过滤数据1</to><enabled>Y</enabled> </hop> | |
| 370 | - <hop> <from>出场班次数据</from><to>查找停车场1</to><enabled>Y</enabled> </hop> | |
| 371 | - <hop> <from>查找停车场1</from><to>出场班次_确定终点站名字</to><enabled>Y</enabled> </hop> | |
| 372 | - <hop> <from>出场班次_确定终点站名字</from><to>查找出场终点站关联并确定上下行</to><enabled>Y</enabled> </hop> | |
| 373 | - <hop> <from>查找出场终点站关联并确定上下行</from><to>上下行字典 2</to><enabled>Y</enabled> </hop> | |
| 374 | - <hop> <from>进场班次数据</from><to>查找停车场2</to><enabled>Y</enabled> </hop> | |
| 375 | - <hop> <from>查找停车场2</from><to>进场班次_确定起点站名字</to><enabled>Y</enabled> </hop> | |
| 376 | - <hop> <from>进场班次_确定起点站名字</from><to>查找进场班次上一个班次的线路方向</to><enabled>Y</enabled> </hop> | |
| 377 | - <hop> <from>查找进场班次上一个班次的线路方向</from><to>查找进场班次上一个班次的终点站,并作为进场班次的起点站</to><enabled>Y</enabled> </hop> | |
| 378 | - <hop> <from>字段选择</from><to>添加发车顺序号</to><enabled>Y</enabled> </hop> | |
| 379 | - <hop> <from>分组各个路牌的站</from><to>查找线路关联</to><enabled>Y</enabled> </hop> | |
| 380 | - <hop> <from>增加时刻表名字,线路名字,停车场名字</from><to>记录关联 (笛卡尔输出)</to><enabled>Y</enabled> </hop> | |
| 381 | - <hop> <from>班次数据范式化</from><to>记录关联 (笛卡尔输出)</to><enabled>Y</enabled> </hop> | |
| 382 | - <hop> <from>记录关联 (笛卡尔输出)</from><to>字段选择</to><enabled>Y</enabled> </hop> | |
| 383 | - <hop> <from>类型修正</from><to>插入/更新bsth_c_s_ttinfo_detail</to><enabled>Y</enabled> </hop> | |
| 384 | - <hop> <from>查找进场班次上一个班次的终点站,并作为进场班次的起点站</from><to>查找进场起点站关联确定上下行</to><enabled>Y</enabled> </hop> | |
| 385 | - <hop> <from>查找进场起点站关联确定上下行</from><to>上下行字典 3</to><enabled>Y</enabled> </hop> | |
| 386 | - <hop> <from>查找线路出场里程时间</from><to>匹配出场班次里程时间</to><enabled>Y</enabled> </hop> | |
| 387 | - <hop> <from>查找线路进场里程时间</from><to>匹配进场班次里程时间</to><enabled>Y</enabled> </hop> | |
| 388 | - <hop> <from>匹配出场班次里程时间</from><to>上下行NULL判定</to><enabled>Y</enabled> </hop> | |
| 389 | - <hop> <from>上下行NULL判定</from><to>类型修正 2</to><enabled>Y</enabled> </hop> | |
| 390 | - <hop> <from>类型修正 2</from><to>插入/更新bsth_c_s_ttinfo_detail 2</to><enabled>Y</enabled> </hop> | |
| 391 | - <hop> <from>匹配进场班次里程时间</from><to>上下行判定 2</to><enabled>Y</enabled> </hop> | |
| 392 | - <hop> <from>上下行判定 2</from><to>类型修正 3</to><enabled>Y</enabled> </hop> | |
| 393 | - <hop> <from>类型修正 3</from><to>插入/更新bsth_c_s_ttinfo_detail 3</to><enabled>Y</enabled> </hop> | |
| 394 | - </order> | |
| 395 | - <step> | |
| 396 | - <name>上下行NULL判定</name> | |
| 397 | - <type>IfNull</type> | |
| 398 | - <description/> | |
| 399 | - <distribute>Y</distribute> | |
| 400 | - <custom_distribution/> | |
| 401 | - <copies>1</copies> | |
| 402 | - <partitioning> | |
| 403 | - <method>none</method> | |
| 404 | - <schema_name/> | |
| 405 | - </partitioning> | |
| 406 | - <replaceAllByValue/> | |
| 407 | - <replaceAllMask/> | |
| 408 | - <selectFields>Y</selectFields> | |
| 409 | - <selectValuesType>N</selectValuesType> | |
| 410 | - <setEmptyStringAll>N</setEmptyStringAll> | |
| 411 | - <valuetypes> | |
| 412 | - </valuetypes> | |
| 413 | - <fields> | |
| 414 | - <field> | |
| 415 | - <name>sxx</name> | |
| 416 | - <value>0</value> | |
| 417 | - <mask/> | |
| 418 | - <set_empty_string>N</set_empty_string> | |
| 419 | - </field> | |
| 420 | - </fields> | |
| 421 | - <cluster_schema/> | |
| 422 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 423 | - <xloc>335</xloc> | |
| 424 | - <yloc>938</yloc> | |
| 425 | - <draw>Y</draw> | |
| 426 | - </GUI> | |
| 427 | - </step> | |
| 428 | - | |
| 429 | - <step> | |
| 430 | - <name>上下行判定 2</name> | |
| 431 | - <type>IfNull</type> | |
| 432 | - <description/> | |
| 433 | - <distribute>Y</distribute> | |
| 434 | - <custom_distribution/> | |
| 435 | - <copies>1</copies> | |
| 436 | - <partitioning> | |
| 437 | - <method>none</method> | |
| 438 | - <schema_name/> | |
| 439 | - </partitioning> | |
| 440 | - <replaceAllByValue/> | |
| 441 | - <replaceAllMask/> | |
| 442 | - <selectFields>Y</selectFields> | |
| 443 | - <selectValuesType>N</selectValuesType> | |
| 444 | - <setEmptyStringAll>N</setEmptyStringAll> | |
| 445 | - <valuetypes> | |
| 446 | - </valuetypes> | |
| 447 | - <fields> | |
| 448 | - <field> | |
| 449 | - <name>sxx2</name> | |
| 450 | - <value>0</value> | |
| 451 | - <mask/> | |
| 452 | - <set_empty_string>N</set_empty_string> | |
| 453 | - </field> | |
| 454 | - </fields> | |
| 455 | - <cluster_schema/> | |
| 456 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 457 | - <xloc>804</xloc> | |
| 458 | - <yloc>1081</yloc> | |
| 459 | - <draw>Y</draw> | |
| 460 | - </GUI> | |
| 461 | - </step> | |
| 462 | - | |
| 463 | - <step> | |
| 464 | - <name>上下行字典</name> | |
| 465 | - <type>ValueMapper</type> | |
| 466 | - <description/> | |
| 467 | - <distribute>Y</distribute> | |
| 468 | - <custom_distribution/> | |
| 469 | - <copies>1</copies> | |
| 470 | - <partitioning> | |
| 471 | - <method>none</method> | |
| 472 | - <schema_name/> | |
| 473 | - </partitioning> | |
| 474 | - <field_to_use>sxx</field_to_use> | |
| 475 | - <target_field>sxx_desc</target_field> | |
| 476 | - <non_match_default/> | |
| 477 | - <fields> | |
| 478 | - <field> | |
| 479 | - <source_value>0</source_value> | |
| 480 | - <target_value>上行</target_value> | |
| 481 | - </field> | |
| 482 | - <field> | |
| 483 | - <source_value>1</source_value> | |
| 484 | - <target_value>下行</target_value> | |
| 485 | - </field> | |
| 486 | - </fields> | |
| 487 | - <cluster_schema/> | |
| 488 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 489 | - <xloc>147</xloc> | |
| 490 | - <yloc>403</yloc> | |
| 491 | - <draw>Y</draw> | |
| 492 | - </GUI> | |
| 493 | - </step> | |
| 494 | - | |
| 495 | - <step> | |
| 496 | - <name>上下行字典 2</name> | |
| 497 | - <type>ValueMapper</type> | |
| 498 | - <description/> | |
| 499 | - <distribute>Y</distribute> | |
| 500 | - <custom_distribution/> | |
| 501 | - <copies>1</copies> | |
| 502 | - <partitioning> | |
| 503 | - <method>none</method> | |
| 504 | - <schema_name/> | |
| 505 | - </partitioning> | |
| 506 | - <field_to_use>sxx</field_to_use> | |
| 507 | - <target_field>sxx_desc</target_field> | |
| 508 | - <non_match_default/> | |
| 509 | - <fields> | |
| 510 | - <field> | |
| 511 | - <source_value>0</source_value> | |
| 512 | - <target_value>上行</target_value> | |
| 513 | - </field> | |
| 514 | - <field> | |
| 515 | - <source_value>1</source_value> | |
| 516 | - <target_value>下行</target_value> | |
| 517 | - </field> | |
| 518 | - </fields> | |
| 519 | - <cluster_schema/> | |
| 520 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 521 | - <xloc>331</xloc> | |
| 522 | - <yloc>598</yloc> | |
| 523 | - <draw>Y</draw> | |
| 524 | - </GUI> | |
| 525 | - </step> | |
| 526 | - | |
| 527 | - <step> | |
| 528 | - <name>上下行字典 3</name> | |
| 529 | - <type>ValueMapper</type> | |
| 530 | - <description/> | |
| 531 | - <distribute>Y</distribute> | |
| 532 | - <custom_distribution/> | |
| 533 | - <copies>1</copies> | |
| 534 | - <partitioning> | |
| 535 | - <method>none</method> | |
| 536 | - <schema_name/> | |
| 537 | - </partitioning> | |
| 538 | - <field_to_use>sxx</field_to_use> | |
| 539 | - <target_field>sxx_desc</target_field> | |
| 540 | - <non_match_default/> | |
| 541 | - <fields> | |
| 542 | - <field> | |
| 543 | - <source_value>0</source_value> | |
| 544 | - <target_value>上行</target_value> | |
| 545 | - </field> | |
| 546 | - <field> | |
| 547 | - <source_value>1</source_value> | |
| 548 | - <target_value>下行</target_value> | |
| 549 | - </field> | |
| 550 | - </fields> | |
| 551 | - <cluster_schema/> | |
| 552 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 553 | - <xloc>553</xloc> | |
| 554 | - <yloc>859</yloc> | |
| 555 | - <draw>Y</draw> | |
| 556 | - </GUI> | |
| 557 | - </step> | |
| 558 | - | |
| 559 | - <step> | |
| 560 | - <name>出场班次_确定终点站名字</name> | |
| 561 | - <type>ScriptValueMod</type> | |
| 562 | - <description/> | |
| 563 | - <distribute>Y</distribute> | |
| 564 | - <custom_distribution/> | |
| 565 | - <copies>1</copies> | |
| 566 | - <partitioning> | |
| 567 | - <method>none</method> | |
| 568 | - <schema_name/> | |
| 569 | - </partitioning> | |
| 570 | - <compatible>N</compatible> | |
| 571 | - <optimizationLevel>9</optimizationLevel> | |
| 572 | - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 573 | - <jsScript_name>Script 1</jsScript_name> | |
| 574 | - <jsScript_script>//Script here

// 添加站点标识
var cc_groups = qdzgroups.split(","); // 所有班次起点站数组
var zdzname = cc_groups[gno]; // 出场班次的终点站是下个班次的起始站
var endZdtype = 'B';
// var endZdtype = 'E';

var destory = 0; // 未撤销flag</jsScript_script> | |
| 575 | - </jsScript> </jsScripts> <fields> <field> <name>zdzname</name> | |
| 576 | - <rename>zdzname</rename> | |
| 577 | - <type>String</type> | |
| 578 | - <length>-1</length> | |
| 579 | - <precision>-1</precision> | |
| 580 | - <replace>N</replace> | |
| 581 | - </field> <field> <name>endZdtype</name> | |
| 582 | - <rename>endZdtype</rename> | |
| 583 | - <type>String</type> | |
| 584 | - <length>-1</length> | |
| 585 | - <precision>-1</precision> | |
| 586 | - <replace>N</replace> | |
| 587 | - </field> <field> <name>destory</name> | |
| 588 | - <rename>destory</rename> | |
| 589 | - <type>Integer</type> | |
| 590 | - <length>-1</length> | |
| 591 | - <precision>-1</precision> | |
| 592 | - <replace>N</replace> | |
| 593 | - </field> </fields> <cluster_schema/> | |
| 594 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 595 | - <xloc>575</xloc> | |
| 596 | - <yloc>502</yloc> | |
| 597 | - <draw>Y</draw> | |
| 598 | - </GUI> | |
| 599 | - </step> | |
| 600 | - | |
| 601 | - <step> | |
| 602 | - <name>出场班次数据</name> | |
| 603 | - <type>Dummy</type> | |
| 604 | - <description/> | |
| 605 | - <distribute>Y</distribute> | |
| 606 | - <custom_distribution/> | |
| 607 | - <copies>1</copies> | |
| 608 | - <partitioning> | |
| 609 | - <method>none</method> | |
| 610 | - <schema_name/> | |
| 611 | - </partitioning> | |
| 612 | - <cluster_schema/> | |
| 613 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 614 | - <xloc>869</xloc> | |
| 615 | - <yloc>504</yloc> | |
| 616 | - <draw>Y</draw> | |
| 617 | - </GUI> | |
| 618 | - </step> | |
| 619 | - | |
| 620 | - <step> | |
| 621 | - <name>分组各个路牌的站</name> | |
| 622 | - <type>GroupBy</type> | |
| 623 | - <description/> | |
| 624 | - <distribute>Y</distribute> | |
| 625 | - <custom_distribution/> | |
| 626 | - <copies>1</copies> | |
| 627 | - <partitioning> | |
| 628 | - <method>none</method> | |
| 629 | - <schema_name/> | |
| 630 | - </partitioning> | |
| 631 | - <all_rows>Y</all_rows> | |
| 632 | - <ignore_aggregate>N</ignore_aggregate> | |
| 633 | - <field_ignore/> | |
| 634 | - <directory>%%java.io.tmpdir%%</directory> | |
| 635 | - <prefix>grp</prefix> | |
| 636 | - <add_linenr>Y</add_linenr> | |
| 637 | - <linenr_fieldname>gno</linenr_fieldname> | |
| 638 | - <give_back_row>N</give_back_row> | |
| 639 | - <group> | |
| 640 | - <field> | |
| 641 | - <name>lp</name> | |
| 642 | - </field> | |
| 643 | - </group> | |
| 644 | - <fields> | |
| 645 | - <field> | |
| 646 | - <aggregate>qdzgroups</aggregate> | |
| 647 | - <subject>qdzname</subject> | |
| 648 | - <type>CONCAT_STRING</type> | |
| 649 | - <valuefield>,</valuefield> | |
| 650 | - </field> | |
| 651 | - </fields> | |
| 652 | - <cluster_schema/> | |
| 653 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 654 | - <xloc>892</xloc> | |
| 655 | - <yloc>44</yloc> | |
| 656 | - <draw>Y</draw> | |
| 657 | - </GUI> | |
| 658 | - </step> | |
| 659 | - | |
| 660 | - <step> | |
| 661 | - <name>匹配上下行正常班次里程时间</name> | |
| 662 | - <type>ScriptValueMod</type> | |
| 663 | - <description/> | |
| 664 | - <distribute>Y</distribute> | |
| 665 | - <custom_distribution/> | |
| 666 | - <copies>1</copies> | |
| 667 | - <partitioning> | |
| 668 | - <method>none</method> | |
| 669 | - <schema_name/> | |
| 670 | - </partitioning> | |
| 671 | - <compatible>N</compatible> | |
| 672 | - <optimizationLevel>9</optimizationLevel> | |
| 673 | - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 674 | - <jsScript_name>Script 1</jsScript_name> | |
| 675 | - <jsScript_script>//Script here

var jhlc; // 计划里程
var bcsj; // 班次时间

if (sxx == 0) { // 上行
 jhlc = up_mileage;
 bcsj = up_travel_time;
} else { // sxx == 1 下行
 jhlc = down_mileage;
 bcsj = down_travel_time;
}</jsScript_script> | |
| 676 | - </jsScript> </jsScripts> <fields> <field> <name>jhlc</name> | |
| 677 | - <rename>jhlc</rename> | |
| 678 | - <type>String</type> | |
| 679 | - <length>-1</length> | |
| 680 | - <precision>-1</precision> | |
| 681 | - <replace>N</replace> | |
| 682 | - </field> <field> <name>bcsj</name> | |
| 683 | - <rename>bcsj</rename> | |
| 684 | - <type>String</type> | |
| 685 | - <length>-1</length> | |
| 686 | - <precision>-1</precision> | |
| 687 | - <replace>N</replace> | |
| 688 | - </field> </fields> <cluster_schema/> | |
| 689 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 690 | - <xloc>148</xloc> | |
| 691 | - <yloc>674</yloc> | |
| 692 | - <draw>Y</draw> | |
| 693 | - </GUI> | |
| 694 | - </step> | |
| 695 | - | |
| 696 | - <step> | |
| 697 | - <name>匹配出场班次里程时间</name> | |
| 698 | - <type>ScriptValueMod</type> | |
| 699 | - <description/> | |
| 700 | - <distribute>Y</distribute> | |
| 701 | - <custom_distribution/> | |
| 702 | - <copies>1</copies> | |
| 703 | - <partitioning> | |
| 704 | - <method>none</method> | |
| 705 | - <schema_name/> | |
| 706 | - </partitioning> | |
| 707 | - <compatible>N</compatible> | |
| 708 | - <optimizationLevel>9</optimizationLevel> | |
| 709 | - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 710 | - <jsScript_name>Script 1</jsScript_name> | |
| 711 | - <jsScript_script>//Script here

var out_mileage; // 出场计划里程
var out_time; // 出场计划时间

if (sxx == 0) { // 上行
 out_mileage = up_out_mileage;
 out_time = up_out_timer;
} else { // sxx == 1 下行
 out_mileage = down_out_mileage;
 out_time = down_out_timer;
}



</jsScript_script> | |
| 712 | - </jsScript> </jsScripts> <fields> <field> <name>out_mileage</name> | |
| 713 | - <rename>out_mileage</rename> | |
| 714 | - <type>String</type> | |
| 715 | - <length>-1</length> | |
| 716 | - <precision>-1</precision> | |
| 717 | - <replace>N</replace> | |
| 718 | - </field> <field> <name>out_time</name> | |
| 719 | - <rename>out_time</rename> | |
| 720 | - <type>String</type> | |
| 721 | - <length>-1</length> | |
| 722 | - <precision>-1</precision> | |
| 723 | - <replace>N</replace> | |
| 724 | - </field> </fields> <cluster_schema/> | |
| 725 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 726 | - <xloc>336</xloc> | |
| 727 | - <yloc>862</yloc> | |
| 728 | - <draw>Y</draw> | |
| 729 | - </GUI> | |
| 730 | - </step> | |
| 731 | - | |
| 732 | - <step> | |
| 733 | - <name>匹配进场班次里程时间</name> | |
| 734 | - <type>ScriptValueMod</type> | |
| 735 | - <description/> | |
| 736 | - <distribute>Y</distribute> | |
| 737 | - <custom_distribution/> | |
| 738 | - <copies>1</copies> | |
| 739 | - <partitioning> | |
| 740 | - <method>none</method> | |
| 741 | - <schema_name/> | |
| 742 | - </partitioning> | |
| 743 | - <compatible>N</compatible> | |
| 744 | - <optimizationLevel>9</optimizationLevel> | |
| 745 | - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 746 | - <jsScript_name>Script 1</jsScript_name> | |
| 747 | - <jsScript_script>//Script here

var parade_mileage; // 进场计划里程
var parade_time; // 进场计划时间

if (sxx2 == 0) { // 上行
 parade_mileage = up_in_mileage;
 parade_time = up_in_timer;
} else { // sxx == 1 下行
 parade_mileage = down_in_mileage;
 parade_time = down_in_timer;
}



</jsScript_script> | |
| 748 | - </jsScript> </jsScripts> <fields> <field> <name>parade_mileage</name> | |
| 749 | - <rename>parade_mileage</rename> | |
| 750 | - <type>String</type> | |
| 751 | - <length>-1</length> | |
| 752 | - <precision>-1</precision> | |
| 753 | - <replace>N</replace> | |
| 754 | - </field> <field> <name>parade_time</name> | |
| 755 | - <rename>parade_time</rename> | |
| 756 | - <type>String</type> | |
| 757 | - <length>-1</length> | |
| 758 | - <precision>-1</precision> | |
| 759 | - <replace>N</replace> | |
| 760 | - </field> </fields> <cluster_schema/> | |
| 761 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 762 | - <xloc>726</xloc> | |
| 763 | - <yloc>1005</yloc> | |
| 764 | - <draw>Y</draw> | |
| 765 | - </GUI> | |
| 766 | - </step> | |
| 767 | - | |
| 768 | - <step> | |
| 769 | - <name>增加时刻表名字,线路名字,停车场名字</name> | |
| 770 | - <type>DataGrid</type> | |
| 771 | - <description/> | |
| 772 | - <distribute>Y</distribute> | |
| 773 | - <custom_distribution/> | |
| 774 | - <copies>1</copies> | |
| 775 | - <partitioning> | |
| 776 | - <method>none</method> | |
| 777 | - <schema_name/> | |
| 778 | - </partitioning> | |
| 779 | - <fields> | |
| 780 | - </fields> | |
| 781 | - <data> | |
| 782 | - <line> </line> | |
| 783 | - </data> | |
| 784 | - <cluster_schema/> | |
| 785 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 786 | - <xloc>110</xloc> | |
| 787 | - <yloc>133</yloc> | |
| 788 | - <draw>Y</draw> | |
| 789 | - </GUI> | |
| 790 | - </step> | |
| 791 | - | |
| 792 | - <step> | |
| 793 | - <name>处理数据</name> | |
| 794 | - <type>ScriptValueMod</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 | - <compatible>N</compatible> | |
| 804 | - <optimizationLevel>9</optimizationLevel> | |
| 805 | - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 806 | - <jsScript_name>Script 1</jsScript_name> | |
| 807 | - <jsScript_script>//Script here

// 使用正则表达式去除站点名称中的数字
qdzname = qdzname.replace(/\d+/g,'');

// sendtime处理,hhmm,hh:mm,hh,mm
var sendtime_calcu;
if (sendtime.length == 5) { // 最长格式,包括分隔符,统一把分隔符替换成冒号
 sendtime_calcu = sendtime.substr(0, 2) + ":" + sendtime.substr(3, 2);
} else if (sendtime.length == 4) {
 if (sendtime.indexOf(":") > 0) { // 冒号分隔,无需修改
 sendtime_calcu = sendtime;
 } else if (sendtime.indexOf(",") > 0) { // 逗号分隔,改成冒号分隔
 sendtime_calcu = sendtime.substr(0, 1) + ":" + sendtime.substr(2, 2);
 } else { // 无分隔符,改成冒号分隔
 sendtime_calcu = sendtime.substr(0, 2) + ":" + sendtime.substr(2, 2);
 }
} else if (sendtime.length == 3) { // 无分隔符,改成冒号分隔
 sendtime_calcu = sendtime.substr(0, 1) + ":" + sendtime.substr(1, 2);
}

// 设置分班
var isfb = 0;

// 设置isCanceled
var iscanceled = 0;</jsScript_script> | |
| 808 | - </jsScript> </jsScripts> <fields> <field> <name>qdzname</name> | |
| 809 | - <rename>qdzname</rename> | |
| 810 | - <type>String</type> | |
| 811 | - <length>-1</length> | |
| 812 | - <precision>-1</precision> | |
| 813 | - <replace>Y</replace> | |
| 814 | - </field> <field> <name>isfb</name> | |
| 815 | - <rename>isfb</rename> | |
| 816 | - <type>Integer</type> | |
| 817 | - <length>-1</length> | |
| 818 | - <precision>-1</precision> | |
| 819 | - <replace>N</replace> | |
| 820 | - </field> <field> <name>iscanceled</name> | |
| 821 | - <rename>iscanceled</rename> | |
| 822 | - <type>Integer</type> | |
| 823 | - <length>-1</length> | |
| 824 | - <precision>-1</precision> | |
| 825 | - <replace>N</replace> | |
| 826 | - </field> <field> <name>sendtime_calcu</name> | |
| 827 | - <rename>sendtime_calcu</rename> | |
| 828 | - <type>String</type> | |
| 829 | - <length>-1</length> | |
| 830 | - <precision>-1</precision> | |
| 831 | - <replace>N</replace> | |
| 832 | - </field> </fields> <cluster_schema/> | |
| 833 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 834 | - <xloc>788</xloc> | |
| 835 | - <yloc>44</yloc> | |
| 836 | - <draw>Y</draw> | |
| 837 | - </GUI> | |
| 838 | - </step> | |
| 839 | - | |
| 840 | - <step> | |
| 841 | - <name>字段选择</name> | |
| 842 | - <type>SelectValues</type> | |
| 843 | - <description/> | |
| 844 | - <distribute>Y</distribute> | |
| 845 | - <custom_distribution/> | |
| 846 | - <copies>1</copies> | |
| 847 | - <partitioning> | |
| 848 | - <method>none</method> | |
| 849 | - <schema_name/> | |
| 850 | - </partitioning> | |
| 851 | - <fields> <field> <name>路牌</name> | |
| 852 | - <rename>lp</rename> | |
| 853 | - <length>-2</length> | |
| 854 | - <precision>-2</precision> | |
| 855 | - </field> <field> <name>站点名称</name> | |
| 856 | - <rename>qdzname</rename> | |
| 857 | - <length>-2</length> | |
| 858 | - <precision>-2</precision> | |
| 859 | - </field> <field> <name>发车时间</name> | |
| 860 | - <rename>sendtime</rename> | |
| 861 | - <length>-2</length> | |
| 862 | - <precision>-2</precision> | |
| 863 | - </field> <select_unspecified>Y</select_unspecified> | |
| 864 | - </fields> <cluster_schema/> | |
| 865 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 866 | - <xloc>444</xloc> | |
| 867 | - <yloc>131</yloc> | |
| 868 | - <draw>Y</draw> | |
| 869 | - </GUI> | |
| 870 | - </step> | |
| 871 | - | |
| 872 | - <step> | |
| 873 | - <name>按照班次类型过滤数据1</name> | |
| 874 | - <type>FilterRows</type> | |
| 875 | - <description/> | |
| 876 | - <distribute>Y</distribute> | |
| 877 | - <custom_distribution/> | |
| 878 | - <copies>1</copies> | |
| 879 | - <partitioning> | |
| 880 | - <method>none</method> | |
| 881 | - <schema_name/> | |
| 882 | - </partitioning> | |
| 883 | -<send_true_to>正常班次数据</send_true_to> | |
| 884 | -<send_false_to>按照班次类型过滤数据2</send_false_to> | |
| 885 | - <compare> | |
| 886 | -<condition> | |
| 887 | - <negated>N</negated> | |
| 888 | - <leftvalue>bctype</leftvalue> | |
| 889 | - <function>=</function> | |
| 890 | - <rightvalue/> | |
| 891 | - <value><name>constant</name><type>String</type><text>正常班次</text><length>-1</length><precision>-1</precision><isnull>N</isnull><mask/></value> </condition> | |
| 892 | - </compare> | |
| 893 | - <cluster_schema/> | |
| 894 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 895 | - <xloc>860</xloc> | |
| 896 | - <yloc>401</yloc> | |
| 897 | - <draw>Y</draw> | |
| 898 | - </GUI> | |
| 899 | - </step> | |
| 900 | - | |
| 901 | - <step> | |
| 902 | - <name>按照班次类型过滤数据2</name> | |
| 903 | - <type>FilterRows</type> | |
| 904 | - <description/> | |
| 905 | - <distribute>Y</distribute> | |
| 906 | - <custom_distribution/> | |
| 907 | - <copies>1</copies> | |
| 908 | - <partitioning> | |
| 909 | - <method>none</method> | |
| 910 | - <schema_name/> | |
| 911 | - </partitioning> | |
| 912 | -<send_true_to>出场班次数据</send_true_to> | |
| 913 | -<send_false_to>进场班次数据</send_false_to> | |
| 914 | - <compare> | |
| 915 | -<condition> | |
| 916 | - <negated>N</negated> | |
| 917 | - <leftvalue>bctype</leftvalue> | |
| 918 | - <function>=</function> | |
| 919 | - <rightvalue/> | |
| 920 | - <value><name>constant</name><type>String</type><text>出场</text><length>-1</length><precision>-1</precision><isnull>N</isnull><mask/></value> </condition> | |
| 921 | - </compare> | |
| 922 | - <cluster_schema/> | |
| 923 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 924 | - <xloc>995</xloc> | |
| 925 | - <yloc>503</yloc> | |
| 926 | - <draw>Y</draw> | |
| 927 | - </GUI> | |
| 928 | - </step> | |
| 929 | - | |
| 930 | - <step> | |
| 931 | - <name>插入/更新bsth_c_s_ttinfo_detail</name> | |
| 932 | - <type>InsertUpdate</type> | |
| 933 | - <description/> | |
| 934 | - <distribute>Y</distribute> | |
| 935 | - <custom_distribution/> | |
| 936 | - <copies>1</copies> | |
| 937 | - <partitioning> | |
| 938 | - <method>none</method> | |
| 939 | - <schema_name/> | |
| 940 | - </partitioning> | |
| 941 | - <connection>bus_control_variable</connection> | |
| 942 | - <commit>100</commit> | |
| 943 | - <update_bypassed>N</update_bypassed> | |
| 944 | - <lookup> | |
| 945 | - <schema/> | |
| 946 | - <table>bsth_c_s_ttinfo_detail</table> | |
| 947 | - <key> | |
| 948 | - <name>xlid</name> | |
| 949 | - <field>xl</field> | |
| 950 | - <condition>=</condition> | |
| 951 | - <name2/> | |
| 952 | - </key> | |
| 953 | - <key> | |
| 954 | - <name>ttid</name> | |
| 955 | - <field>ttinfo</field> | |
| 956 | - <condition>=</condition> | |
| 957 | - <name2/> | |
| 958 | - </key> | |
| 959 | - <key> | |
| 960 | - <name>lpid</name> | |
| 961 | - <field>lp</field> | |
| 962 | - <condition>=</condition> | |
| 963 | - <name2/> | |
| 964 | - </key> | |
| 965 | - <key> | |
| 966 | - <name>fcno</name> | |
| 967 | - <field>fcno</field> | |
| 968 | - <condition>=</condition> | |
| 969 | - <name2/> | |
| 970 | - </key> | |
| 971 | - <key> | |
| 972 | - <name>bcs</name> | |
| 973 | - <field>bcs</field> | |
| 974 | - <condition>=</condition> | |
| 975 | - <name2/> | |
| 976 | - </key> | |
| 977 | - <value> | |
| 978 | - <name>lp</name> | |
| 979 | - <rename>lpid</rename> | |
| 980 | - <update>Y</update> | |
| 981 | - </value> | |
| 982 | - <value> | |
| 983 | - <name>bc_type</name> | |
| 984 | - <rename>bctype_code</rename> | |
| 985 | - <update>Y</update> | |
| 986 | - </value> | |
| 987 | - <value> | |
| 988 | - <name>bcs</name> | |
| 989 | - <rename>bcs</rename> | |
| 990 | - <update>Y</update> | |
| 991 | - </value> | |
| 992 | - <value> | |
| 993 | - <name>bcsj</name> | |
| 994 | - <rename>bcsj</rename> | |
| 995 | - <update>Y</update> | |
| 996 | - </value> | |
| 997 | - <value> | |
| 998 | - <name>fcno</name> | |
| 999 | - <rename>fcno</rename> | |
| 1000 | - <update>Y</update> | |
| 1001 | - </value> | |
| 1002 | - <value> | |
| 1003 | - <name>jhlc</name> | |
| 1004 | - <rename>jhlc</rename> | |
| 1005 | - <update>Y</update> | |
| 1006 | - </value> | |
| 1007 | - <value> | |
| 1008 | - <name>fcsj</name> | |
| 1009 | - <rename>sendtime_calcu</rename> | |
| 1010 | - <update>Y</update> | |
| 1011 | - </value> | |
| 1012 | - <value> | |
| 1013 | - <name>ttinfo</name> | |
| 1014 | - <rename>ttid</rename> | |
| 1015 | - <update>Y</update> | |
| 1016 | - </value> | |
| 1017 | - <value> | |
| 1018 | - <name>xl</name> | |
| 1019 | - <rename>xlid</rename> | |
| 1020 | - <update>Y</update> | |
| 1021 | - </value> | |
| 1022 | - <value> | |
| 1023 | - <name>qdz</name> | |
| 1024 | - <rename>qdzid</rename> | |
| 1025 | - <update>Y</update> | |
| 1026 | - </value> | |
| 1027 | - <value> | |
| 1028 | - <name>zdz</name> | |
| 1029 | - <rename>zdzid</rename> | |
| 1030 | - <update>Y</update> | |
| 1031 | - </value> | |
| 1032 | - <value> | |
| 1033 | - <name>xl_dir</name> | |
| 1034 | - <rename>sxx</rename> | |
| 1035 | - <update>Y</update> | |
| 1036 | - </value> | |
| 1037 | - <value> | |
| 1038 | - <name>isfb</name> | |
| 1039 | - <rename>isfb</rename> | |
| 1040 | - <update>Y</update> | |
| 1041 | - </value> | |
| 1042 | - </lookup> | |
| 1043 | - <cluster_schema/> | |
| 1044 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1045 | - <xloc>143</xloc> | |
| 1046 | - <yloc>860</yloc> | |
| 1047 | - <draw>Y</draw> | |
| 1048 | - </GUI> | |
| 1049 | - </step> | |
| 1050 | - | |
| 1051 | - <step> | |
| 1052 | - <name>插入/更新bsth_c_s_ttinfo_detail 2</name> | |
| 1053 | - <type>InsertUpdate</type> | |
| 1054 | - <description/> | |
| 1055 | - <distribute>Y</distribute> | |
| 1056 | - <custom_distribution/> | |
| 1057 | - <copies>1</copies> | |
| 1058 | - <partitioning> | |
| 1059 | - <method>none</method> | |
| 1060 | - <schema_name/> | |
| 1061 | - </partitioning> | |
| 1062 | - <connection>bus_control_variable</connection> | |
| 1063 | - <commit>100</commit> | |
| 1064 | - <update_bypassed>N</update_bypassed> | |
| 1065 | - <lookup> | |
| 1066 | - <schema/> | |
| 1067 | - <table>bsth_c_s_ttinfo_detail</table> | |
| 1068 | - <key> | |
| 1069 | - <name>xlid</name> | |
| 1070 | - <field>xl</field> | |
| 1071 | - <condition>=</condition> | |
| 1072 | - <name2/> | |
| 1073 | - </key> | |
| 1074 | - <key> | |
| 1075 | - <name>ttid</name> | |
| 1076 | - <field>ttinfo</field> | |
| 1077 | - <condition>=</condition> | |
| 1078 | - <name2/> | |
| 1079 | - </key> | |
| 1080 | - <key> | |
| 1081 | - <name>lpid</name> | |
| 1082 | - <field>lp</field> | |
| 1083 | - <condition>=</condition> | |
| 1084 | - <name2/> | |
| 1085 | - </key> | |
| 1086 | - <key> | |
| 1087 | - <name>fcno</name> | |
| 1088 | - <field>fcno</field> | |
| 1089 | - <condition>=</condition> | |
| 1090 | - <name2/> | |
| 1091 | - </key> | |
| 1092 | - <key> | |
| 1093 | - <name>bcs</name> | |
| 1094 | - <field>bcs</field> | |
| 1095 | - <condition>=</condition> | |
| 1096 | - <name2/> | |
| 1097 | - </key> | |
| 1098 | - <value> | |
| 1099 | - <name>tcc</name> | |
| 1100 | - <rename>qdzid</rename> | |
| 1101 | - <update>Y</update> | |
| 1102 | - </value> | |
| 1103 | - <value> | |
| 1104 | - <name>zdz</name> | |
| 1105 | - <rename>zdzid</rename> | |
| 1106 | - <update>Y</update> | |
| 1107 | - </value> | |
| 1108 | - <value> | |
| 1109 | - <name>xl</name> | |
| 1110 | - <rename>xlid</rename> | |
| 1111 | - <update>Y</update> | |
| 1112 | - </value> | |
| 1113 | - <value> | |
| 1114 | - <name>ttinfo</name> | |
| 1115 | - <rename>ttid</rename> | |
| 1116 | - <update>Y</update> | |
| 1117 | - </value> | |
| 1118 | - <value> | |
| 1119 | - <name>xl_dir</name> | |
| 1120 | - <rename>sxx</rename> | |
| 1121 | - <update>Y</update> | |
| 1122 | - </value> | |
| 1123 | - <value> | |
| 1124 | - <name>lp</name> | |
| 1125 | - <rename>lpid</rename> | |
| 1126 | - <update>Y</update> | |
| 1127 | - </value> | |
| 1128 | - <value> | |
| 1129 | - <name>jhlc</name> | |
| 1130 | - <rename>out_mileage</rename> | |
| 1131 | - <update>Y</update> | |
| 1132 | - </value> | |
| 1133 | - <value> | |
| 1134 | - <name>fcsj</name> | |
| 1135 | - <rename>sendtime_calcu</rename> | |
| 1136 | - <update>Y</update> | |
| 1137 | - </value> | |
| 1138 | - <value> | |
| 1139 | - <name>bcsj</name> | |
| 1140 | - <rename>out_time</rename> | |
| 1141 | - <update>Y</update> | |
| 1142 | - </value> | |
| 1143 | - <value> | |
| 1144 | - <name>bcs</name> | |
| 1145 | - <rename>bcs</rename> | |
| 1146 | - <update>Y</update> | |
| 1147 | - </value> | |
| 1148 | - <value> | |
| 1149 | - <name>fcno</name> | |
| 1150 | - <rename>fcno</rename> | |
| 1151 | - <update>Y</update> | |
| 1152 | - </value> | |
| 1153 | - <value> | |
| 1154 | - <name>bc_type</name> | |
| 1155 | - <rename>bctype_code</rename> | |
| 1156 | - <update>Y</update> | |
| 1157 | - </value> | |
| 1158 | - <value> | |
| 1159 | - <name>isfb</name> | |
| 1160 | - <rename>isfb</rename> | |
| 1161 | - <update>Y</update> | |
| 1162 | - </value> | |
| 1163 | - </lookup> | |
| 1164 | - <cluster_schema/> | |
| 1165 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1166 | - <xloc>340</xloc> | |
| 1167 | - <yloc>1087</yloc> | |
| 1168 | - <draw>Y</draw> | |
| 1169 | - </GUI> | |
| 1170 | - </step> | |
| 1171 | - | |
| 1172 | - <step> | |
| 1173 | - <name>插入/更新bsth_c_s_ttinfo_detail 3</name> | |
| 1174 | - <type>InsertUpdate</type> | |
| 1175 | - <description/> | |
| 1176 | - <distribute>Y</distribute> | |
| 1177 | - <custom_distribution/> | |
| 1178 | - <copies>1</copies> | |
| 1179 | - <partitioning> | |
| 1180 | - <method>none</method> | |
| 1181 | - <schema_name/> | |
| 1182 | - </partitioning> | |
| 1183 | - <connection>bus_control_variable</connection> | |
| 1184 | - <commit>100</commit> | |
| 1185 | - <update_bypassed>N</update_bypassed> | |
| 1186 | - <lookup> | |
| 1187 | - <schema/> | |
| 1188 | - <table>bsth_c_s_ttinfo_detail</table> | |
| 1189 | - <key> | |
| 1190 | - <name>xlid</name> | |
| 1191 | - <field>xl</field> | |
| 1192 | - <condition>=</condition> | |
| 1193 | - <name2/> | |
| 1194 | - </key> | |
| 1195 | - <key> | |
| 1196 | - <name>ttid</name> | |
| 1197 | - <field>ttinfo</field> | |
| 1198 | - <condition>=</condition> | |
| 1199 | - <name2/> | |
| 1200 | - </key> | |
| 1201 | - <key> | |
| 1202 | - <name>lpid</name> | |
| 1203 | - <field>lp</field> | |
| 1204 | - <condition>=</condition> | |
| 1205 | - <name2/> | |
| 1206 | - </key> | |
| 1207 | - <key> | |
| 1208 | - <name>fcno</name> | |
| 1209 | - <field>fcno</field> | |
| 1210 | - <condition>=</condition> | |
| 1211 | - <name2/> | |
| 1212 | - </key> | |
| 1213 | - <key> | |
| 1214 | - <name>bcs</name> | |
| 1215 | - <field>bcs</field> | |
| 1216 | - <condition>=</condition> | |
| 1217 | - <name2/> | |
| 1218 | - </key> | |
| 1219 | - <value> | |
| 1220 | - <name>fcno</name> | |
| 1221 | - <rename>fcno</rename> | |
| 1222 | - <update>Y</update> | |
| 1223 | - </value> | |
| 1224 | - <value> | |
| 1225 | - <name>bcs</name> | |
| 1226 | - <rename>bcs</rename> | |
| 1227 | - <update>Y</update> | |
| 1228 | - </value> | |
| 1229 | - <value> | |
| 1230 | - <name>xl</name> | |
| 1231 | - <rename>xlid</rename> | |
| 1232 | - <update>Y</update> | |
| 1233 | - </value> | |
| 1234 | - <value> | |
| 1235 | - <name>ttinfo</name> | |
| 1236 | - <rename>ttid</rename> | |
| 1237 | - <update>Y</update> | |
| 1238 | - </value> | |
| 1239 | - <value> | |
| 1240 | - <name>lp</name> | |
| 1241 | - <rename>lpid</rename> | |
| 1242 | - <update>Y</update> | |
| 1243 | - </value> | |
| 1244 | - <value> | |
| 1245 | - <name>bc_type</name> | |
| 1246 | - <rename>bctype_code</rename> | |
| 1247 | - <update>Y</update> | |
| 1248 | - </value> | |
| 1249 | - <value> | |
| 1250 | - <name>bcsj</name> | |
| 1251 | - <rename>parade_time</rename> | |
| 1252 | - <update>Y</update> | |
| 1253 | - </value> | |
| 1254 | - <value> | |
| 1255 | - <name>jhlc</name> | |
| 1256 | - <rename>parade_mileage</rename> | |
| 1257 | - <update>Y</update> | |
| 1258 | - </value> | |
| 1259 | - <value> | |
| 1260 | - <name>fcsj</name> | |
| 1261 | - <rename>sendtime_calcu</rename> | |
| 1262 | - <update>Y</update> | |
| 1263 | - </value> | |
| 1264 | - <value> | |
| 1265 | - <name>xl_dir</name> | |
| 1266 | - <rename>sxx2</rename> | |
| 1267 | - <update>Y</update> | |
| 1268 | - </value> | |
| 1269 | - <value> | |
| 1270 | - <name>qdz</name> | |
| 1271 | - <rename>qdzid</rename> | |
| 1272 | - <update>Y</update> | |
| 1273 | - </value> | |
| 1274 | - <value> | |
| 1275 | - <name>tcc</name> | |
| 1276 | - <rename>zdzid</rename> | |
| 1277 | - <update>Y</update> | |
| 1278 | - </value> | |
| 1279 | - <value> | |
| 1280 | - <name>isfb</name> | |
| 1281 | - <rename>isfb</rename> | |
| 1282 | - <update>Y</update> | |
| 1283 | - </value> | |
| 1284 | - </lookup> | |
| 1285 | - <cluster_schema/> | |
| 1286 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1287 | - <xloc>845</xloc> | |
| 1288 | - <yloc>899</yloc> | |
| 1289 | - <draw>Y</draw> | |
| 1290 | - </GUI> | |
| 1291 | - </step> | |
| 1292 | - | |
| 1293 | - <step> | |
| 1294 | - <name>时刻表明细信息Excel输入</name> | |
| 1295 | - <type>ExcelInput</type> | |
| 1296 | - <description/> | |
| 1297 | - <distribute>N</distribute> | |
| 1298 | - <custom_distribution/> | |
| 1299 | - <copies>1</copies> | |
| 1300 | - <partitioning> | |
| 1301 | - <method>none</method> | |
| 1302 | - <schema_name/> | |
| 1303 | - </partitioning> | |
| 1304 | - <header>Y</header> | |
| 1305 | - <noempty>Y</noempty> | |
| 1306 | - <stoponempty>N</stoponempty> | |
| 1307 | - <filefield/> | |
| 1308 | - <sheetfield/> | |
| 1309 | - <sheetrownumfield/> | |
| 1310 | - <rownumfield/> | |
| 1311 | - <sheetfield/> | |
| 1312 | - <filefield/> | |
| 1313 | - <limit>0</limit> | |
| 1314 | - <encoding/> | |
| 1315 | - <add_to_result_filenames>Y</add_to_result_filenames> | |
| 1316 | - <accept_filenames>N</accept_filenames> | |
| 1317 | - <accept_field/> | |
| 1318 | - <accept_stepname/> | |
| 1319 | - <file> | |
| 1320 | - <name/> | |
| 1321 | - <filemask/> | |
| 1322 | - <exclude_filemask/> | |
| 1323 | - <file_required>N</file_required> | |
| 1324 | - <include_subfolders>N</include_subfolders> | |
| 1325 | - </file> | |
| 1326 | - <fields> | |
| 1327 | - </fields> | |
| 1328 | - <sheets> | |
| 1329 | - <sheet> | |
| 1330 | - <name/> | |
| 1331 | - <startrow>0</startrow> | |
| 1332 | - <startcol>0</startcol> | |
| 1333 | - </sheet> | |
| 1334 | - </sheets> | |
| 1335 | - <strict_types>N</strict_types> | |
| 1336 | - <error_ignored>N</error_ignored> | |
| 1337 | - <error_line_skipped>N</error_line_skipped> | |
| 1338 | - <bad_line_files_destination_directory/> | |
| 1339 | - <bad_line_files_extension>warning</bad_line_files_extension> | |
| 1340 | - <error_line_files_destination_directory/> | |
| 1341 | - <error_line_files_extension>error</error_line_files_extension> | |
| 1342 | - <line_number_files_destination_directory/> | |
| 1343 | - <line_number_files_extension>line</line_number_files_extension> | |
| 1344 | - <shortFileFieldName/> | |
| 1345 | - <pathFieldName/> | |
| 1346 | - <hiddenFieldName/> | |
| 1347 | - <lastModificationTimeFieldName/> | |
| 1348 | - <uriNameFieldName/> | |
| 1349 | - <rootUriNameFieldName/> | |
| 1350 | - <extensionFieldName/> | |
| 1351 | - <sizeFieldName/> | |
| 1352 | - <spreadsheet_type>JXL</spreadsheet_type> | |
| 1353 | - <cluster_schema/> | |
| 1354 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1355 | - <xloc>112</xloc> | |
| 1356 | - <yloc>44</yloc> | |
| 1357 | - <draw>Y</draw> | |
| 1358 | - </GUI> | |
| 1359 | - </step> | |
| 1360 | - | |
| 1361 | - <step> | |
| 1362 | - <name>查找停车场1</name> | |
| 1363 | - <type>DBLookup</type> | |
| 1364 | - <description/> | |
| 1365 | - <distribute>Y</distribute> | |
| 1366 | - <custom_distribution/> | |
| 1367 | - <copies>1</copies> | |
| 1368 | - <partitioning> | |
| 1369 | - <method>none</method> | |
| 1370 | - <schema_name/> | |
| 1371 | - </partitioning> | |
| 1372 | - <connection>bus_control_variable</connection> | |
| 1373 | - <cache>N</cache> | |
| 1374 | - <cache_load_all>N</cache_load_all> | |
| 1375 | - <cache_size>0</cache_size> | |
| 1376 | - <lookup> | |
| 1377 | - <schema/> | |
| 1378 | - <table>bsth_c_car_park</table> | |
| 1379 | - <orderby/> | |
| 1380 | - <fail_on_multiple>N</fail_on_multiple> | |
| 1381 | - <eat_row_on_failure>N</eat_row_on_failure> | |
| 1382 | - <key> | |
| 1383 | - <name>tccname_</name> | |
| 1384 | - <field>park_name</field> | |
| 1385 | - <condition>=</condition> | |
| 1386 | - <name2/> | |
| 1387 | - </key> | |
| 1388 | - <value> | |
| 1389 | - <name>id</name> | |
| 1390 | - <rename>qdzid</rename> | |
| 1391 | - <default/> | |
| 1392 | - <type>Integer</type> | |
| 1393 | - </value> | |
| 1394 | - </lookup> | |
| 1395 | - <cluster_schema/> | |
| 1396 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1397 | - <xloc>755</xloc> | |
| 1398 | - <yloc>504</yloc> | |
| 1399 | - <draw>Y</draw> | |
| 1400 | - </GUI> | |
| 1401 | - </step> | |
| 1402 | - | |
| 1403 | - <step> | |
| 1404 | - <name>查找停车场2</name> | |
| 1405 | - <type>DBLookup</type> | |
| 1406 | - <description/> | |
| 1407 | - <distribute>Y</distribute> | |
| 1408 | - <custom_distribution/> | |
| 1409 | - <copies>1</copies> | |
| 1410 | - <partitioning> | |
| 1411 | - <method>none</method> | |
| 1412 | - <schema_name/> | |
| 1413 | - </partitioning> | |
| 1414 | - <connection>bus_control_variable</connection> | |
| 1415 | - <cache>N</cache> | |
| 1416 | - <cache_load_all>N</cache_load_all> | |
| 1417 | - <cache_size>0</cache_size> | |
| 1418 | - <lookup> | |
| 1419 | - <schema/> | |
| 1420 | - <table>bsth_c_car_park</table> | |
| 1421 | - <orderby/> | |
| 1422 | - <fail_on_multiple>N</fail_on_multiple> | |
| 1423 | - <eat_row_on_failure>N</eat_row_on_failure> | |
| 1424 | - <key> | |
| 1425 | - <name>tccname_</name> | |
| 1426 | - <field>park_name</field> | |
| 1427 | - <condition>=</condition> | |
| 1428 | - <name2/> | |
| 1429 | - </key> | |
| 1430 | - <value> | |
| 1431 | - <name>id</name> | |
| 1432 | - <rename>zdzid</rename> | |
| 1433 | - <default/> | |
| 1434 | - <type>Integer</type> | |
| 1435 | - </value> | |
| 1436 | - </lookup> | |
| 1437 | - <cluster_schema/> | |
| 1438 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1439 | - <xloc>887</xloc> | |
| 1440 | - <yloc>608</yloc> | |
| 1441 | - <draw>Y</draw> | |
| 1442 | - </GUI> | |
| 1443 | - </step> | |
| 1444 | - | |
| 1445 | - <step> | |
| 1446 | - <name>查找出场终点站关联并确定上下行</name> | |
| 1447 | - <type>DBLookup</type> | |
| 1448 | - <description/> | |
| 1449 | - <distribute>Y</distribute> | |
| 1450 | - <custom_distribution/> | |
| 1451 | - <copies>1</copies> | |
| 1452 | - <partitioning> | |
| 1453 | - <method>none</method> | |
| 1454 | - <schema_name/> | |
| 1455 | - </partitioning> | |
| 1456 | - <connection>bus_control_variable</connection> | |
| 1457 | - <cache>N</cache> | |
| 1458 | - <cache_load_all>N</cache_load_all> | |
| 1459 | - <cache_size>0</cache_size> | |
| 1460 | - <lookup> | |
| 1461 | - <schema/> | |
| 1462 | - <table>bsth_c_stationroute</table> | |
| 1463 | - <orderby/> | |
| 1464 | - <fail_on_multiple>N</fail_on_multiple> | |
| 1465 | - <eat_row_on_failure>N</eat_row_on_failure> | |
| 1466 | - <key> | |
| 1467 | - <name>xlid</name> | |
| 1468 | - <field>line</field> | |
| 1469 | - <condition>=</condition> | |
| 1470 | - <name2/> | |
| 1471 | - </key> | |
| 1472 | - <key> | |
| 1473 | - <name>zdzname</name> | |
| 1474 | - <field>station_name</field> | |
| 1475 | - <condition>=</condition> | |
| 1476 | - <name2/> | |
| 1477 | - </key> | |
| 1478 | - <key> | |
| 1479 | - <name>endZdtype</name> | |
| 1480 | - <field>station_mark</field> | |
| 1481 | - <condition>=</condition> | |
| 1482 | - <name2/> | |
| 1483 | - </key> | |
| 1484 | - <key> | |
| 1485 | - <name>destory</name> | |
| 1486 | - <field>destroy</field> | |
| 1487 | - <condition>=</condition> | |
| 1488 | - <name2/> | |
| 1489 | - </key> | |
| 1490 | - <value> | |
| 1491 | - <name>station</name> | |
| 1492 | - <rename>zdzid</rename> | |
| 1493 | - <default/> | |
| 1494 | - <type>Integer</type> | |
| 1495 | - </value> | |
| 1496 | - <value> | |
| 1497 | - <name>directions</name> | |
| 1498 | - <rename>sxx</rename> | |
| 1499 | - <default/> | |
| 1500 | - <type>Integer</type> | |
| 1501 | - </value> | |
| 1502 | - </lookup> | |
| 1503 | - <cluster_schema/> | |
| 1504 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1505 | - <xloc>329</xloc> | |
| 1506 | - <yloc>505</yloc> | |
| 1507 | - <draw>Y</draw> | |
| 1508 | - </GUI> | |
| 1509 | - </step> | |
| 1510 | - | |
| 1511 | - <step> | |
| 1512 | - <name>查找时刻表基础信息关联</name> | |
| 1513 | - <type>DBLookup</type> | |
| 1514 | - <description/> | |
| 1515 | - <distribute>Y</distribute> | |
| 1516 | - <custom_distribution/> | |
| 1517 | - <copies>1</copies> | |
| 1518 | - <partitioning> | |
| 1519 | - <method>none</method> | |
| 1520 | - <schema_name/> | |
| 1521 | - </partitioning> | |
| 1522 | - <connection>bus_control_variable</connection> | |
| 1523 | - <cache>N</cache> | |
| 1524 | - <cache_load_all>N</cache_load_all> | |
| 1525 | - <cache_size>0</cache_size> | |
| 1526 | - <lookup> | |
| 1527 | - <schema/> | |
| 1528 | - <table>bsth_c_s_ttinfo</table> | |
| 1529 | - <orderby/> | |
| 1530 | - <fail_on_multiple>N</fail_on_multiple> | |
| 1531 | - <eat_row_on_failure>N</eat_row_on_failure> | |
| 1532 | - <key> | |
| 1533 | - <name>xlid</name> | |
| 1534 | - <field>xl</field> | |
| 1535 | - <condition>=</condition> | |
| 1536 | - <name2/> | |
| 1537 | - </key> | |
| 1538 | - <key> | |
| 1539 | - <name>ttinfoname_</name> | |
| 1540 | - <field>name</field> | |
| 1541 | - <condition>=</condition> | |
| 1542 | - <name2/> | |
| 1543 | - </key> | |
| 1544 | - <key> | |
| 1545 | - <name>iscanceled</name> | |
| 1546 | - <field>is_cancel</field> | |
| 1547 | - <condition>=</condition> | |
| 1548 | - <name2/> | |
| 1549 | - </key> | |
| 1550 | - <value> | |
| 1551 | - <name>id</name> | |
| 1552 | - <rename>ttid</rename> | |
| 1553 | - <default/> | |
| 1554 | - <type>Integer</type> | |
| 1555 | - </value> | |
| 1556 | - </lookup> | |
| 1557 | - <cluster_schema/> | |
| 1558 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1559 | - <xloc>1011</xloc> | |
| 1560 | - <yloc>134</yloc> | |
| 1561 | - <draw>Y</draw> | |
| 1562 | - </GUI> | |
| 1563 | - </step> | |
| 1564 | - | |
| 1565 | - <step> | |
| 1566 | - <name>查找线路上下行里程时间</name> | |
| 1567 | - <type>DBLookup</type> | |
| 1568 | - <description/> | |
| 1569 | - <distribute>Y</distribute> | |
| 1570 | - <custom_distribution/> | |
| 1571 | - <copies>1</copies> | |
| 1572 | - <partitioning> | |
| 1573 | - <method>none</method> | |
| 1574 | - <schema_name/> | |
| 1575 | - </partitioning> | |
| 1576 | - <connection>bus_control_variable</connection> | |
| 1577 | - <cache>N</cache> | |
| 1578 | - <cache_load_all>N</cache_load_all> | |
| 1579 | - <cache_size>0</cache_size> | |
| 1580 | - <lookup> | |
| 1581 | - <schema/> | |
| 1582 | - <table>bsth_c_line_information</table> | |
| 1583 | - <orderby/> | |
| 1584 | - <fail_on_multiple>N</fail_on_multiple> | |
| 1585 | - <eat_row_on_failure>N</eat_row_on_failure> | |
| 1586 | - <key> | |
| 1587 | - <name>xlid</name> | |
| 1588 | - <field>line</field> | |
| 1589 | - <condition>=</condition> | |
| 1590 | - <name2/> | |
| 1591 | - </key> | |
| 1592 | - <value> | |
| 1593 | - <name>up_mileage</name> | |
| 1594 | - <rename>up_mileage</rename> | |
| 1595 | - <default/> | |
| 1596 | - <type>Number</type> | |
| 1597 | - </value> | |
| 1598 | - <value> | |
| 1599 | - <name>down_mileage</name> | |
| 1600 | - <rename>down_mileage</rename> | |
| 1601 | - <default/> | |
| 1602 | - <type>Number</type> | |
| 1603 | - </value> | |
| 1604 | - <value> | |
| 1605 | - <name>up_travel_time</name> | |
| 1606 | - <rename>up_travel_time</rename> | |
| 1607 | - <default/> | |
| 1608 | - <type>Number</type> | |
| 1609 | - </value> | |
| 1610 | - <value> | |
| 1611 | - <name>down_travel_time</name> | |
| 1612 | - <rename>down_travel_time</rename> | |
| 1613 | - <default/> | |
| 1614 | - <type>Number</type> | |
| 1615 | - </value> | |
| 1616 | - </lookup> | |
| 1617 | - <cluster_schema/> | |
| 1618 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1619 | - <xloc>149</xloc> | |
| 1620 | - <yloc>581</yloc> | |
| 1621 | - <draw>Y</draw> | |
| 1622 | - </GUI> | |
| 1623 | - </step> | |
| 1624 | - | |
| 1625 | - <step> | |
| 1626 | - <name>查找线路关联</name> | |
| 1627 | - <type>DBLookup</type> | |
| 1628 | - <description/> | |
| 1629 | - <distribute>Y</distribute> | |
| 1630 | - <custom_distribution/> | |
| 1631 | - <copies>1</copies> | |
| 1632 | - <partitioning> | |
| 1633 | - <method>none</method> | |
| 1634 | - <schema_name/> | |
| 1635 | - </partitioning> | |
| 1636 | - <connection>bus_control_variable</connection> | |
| 1637 | - <cache>N</cache> | |
| 1638 | - <cache_load_all>N</cache_load_all> | |
| 1639 | - <cache_size>0</cache_size> | |
| 1640 | - <lookup> | |
| 1641 | - <schema/> | |
| 1642 | - <table>bsth_c_line</table> | |
| 1643 | - <orderby/> | |
| 1644 | - <fail_on_multiple>N</fail_on_multiple> | |
| 1645 | - <eat_row_on_failure>N</eat_row_on_failure> | |
| 1646 | - <key> | |
| 1647 | - <name>xlname_</name> | |
| 1648 | - <field>name</field> | |
| 1649 | - <condition>=</condition> | |
| 1650 | - <name2/> | |
| 1651 | - </key> | |
| 1652 | - <value> | |
| 1653 | - <name>id</name> | |
| 1654 | - <rename>xlid</rename> | |
| 1655 | - <default/> | |
| 1656 | - <type>Integer</type> | |
| 1657 | - </value> | |
| 1658 | - </lookup> | |
| 1659 | - <cluster_schema/> | |
| 1660 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1661 | - <xloc>1007</xloc> | |
| 1662 | - <yloc>43</yloc> | |
| 1663 | - <draw>Y</draw> | |
| 1664 | - </GUI> | |
| 1665 | - </step> | |
| 1666 | - | |
| 1667 | - <step> | |
| 1668 | - <name>查找线路出场里程时间</name> | |
| 1669 | - <type>DBLookup</type> | |
| 1670 | - <description/> | |
| 1671 | - <distribute>Y</distribute> | |
| 1672 | - <custom_distribution/> | |
| 1673 | - <copies>1</copies> | |
| 1674 | - <partitioning> | |
| 1675 | - <method>none</method> | |
| 1676 | - <schema_name/> | |
| 1677 | - </partitioning> | |
| 1678 | - <connection>bus_control_variable</connection> | |
| 1679 | - <cache>N</cache> | |
| 1680 | - <cache_load_all>N</cache_load_all> | |
| 1681 | - <cache_size>0</cache_size> | |
| 1682 | - <lookup> | |
| 1683 | - <schema/> | |
| 1684 | - <table>bsth_c_line_information</table> | |
| 1685 | - <orderby/> | |
| 1686 | - <fail_on_multiple>N</fail_on_multiple> | |
| 1687 | - <eat_row_on_failure>N</eat_row_on_failure> | |
| 1688 | - <key> | |
| 1689 | - <name>xlid</name> | |
| 1690 | - <field>line</field> | |
| 1691 | - <condition>=</condition> | |
| 1692 | - <name2/> | |
| 1693 | - </key> | |
| 1694 | - <value> | |
| 1695 | - <name>up_out_timer</name> | |
| 1696 | - <rename>up_out_timer</rename> | |
| 1697 | - <default/> | |
| 1698 | - <type>Number</type> | |
| 1699 | - </value> | |
| 1700 | - <value> | |
| 1701 | - <name>up_out_mileage</name> | |
| 1702 | - <rename>up_out_mileage</rename> | |
| 1703 | - <default/> | |
| 1704 | - <type>Number</type> | |
| 1705 | - </value> | |
| 1706 | - <value> | |
| 1707 | - <name>down_out_timer</name> | |
| 1708 | - <rename>down_out_timer</rename> | |
| 1709 | - <default/> | |
| 1710 | - <type>Number</type> | |
| 1711 | - </value> | |
| 1712 | - <value> | |
| 1713 | - <name>down_out_mileage</name> | |
| 1714 | - <rename>down_out_mileage</rename> | |
| 1715 | - <default/> | |
| 1716 | - <type>Number</type> | |
| 1717 | - </value> | |
| 1718 | - </lookup> | |
| 1719 | - <cluster_schema/> | |
| 1720 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1721 | - <xloc>335</xloc> | |
| 1722 | - <yloc>763</yloc> | |
| 1723 | - <draw>Y</draw> | |
| 1724 | - </GUI> | |
| 1725 | - </step> | |
| 1726 | - | |
| 1727 | - <step> | |
| 1728 | - <name>查找线路进场里程时间</name> | |
| 1729 | - <type>DBLookup</type> | |
| 1730 | - <description/> | |
| 1731 | - <distribute>Y</distribute> | |
| 1732 | - <custom_distribution/> | |
| 1733 | - <copies>1</copies> | |
| 1734 | - <partitioning> | |
| 1735 | - <method>none</method> | |
| 1736 | - <schema_name/> | |
| 1737 | - </partitioning> | |
| 1738 | - <connection>bus_control_variable</connection> | |
| 1739 | - <cache>N</cache> | |
| 1740 | - <cache_load_all>N</cache_load_all> | |
| 1741 | - <cache_size>0</cache_size> | |
| 1742 | - <lookup> | |
| 1743 | - <schema/> | |
| 1744 | - <table>bsth_c_line_information</table> | |
| 1745 | - <orderby/> | |
| 1746 | - <fail_on_multiple>N</fail_on_multiple> | |
| 1747 | - <eat_row_on_failure>N</eat_row_on_failure> | |
| 1748 | - <key> | |
| 1749 | - <name>xlid</name> | |
| 1750 | - <field>line</field> | |
| 1751 | - <condition>=</condition> | |
| 1752 | - <name2/> | |
| 1753 | - </key> | |
| 1754 | - <value> | |
| 1755 | - <name>up_in_mileage</name> | |
| 1756 | - <rename>up_in_mileage</rename> | |
| 1757 | - <default/> | |
| 1758 | - <type>Number</type> | |
| 1759 | - </value> | |
| 1760 | - <value> | |
| 1761 | - <name>up_in_timer</name> | |
| 1762 | - <rename>up_in_timer</rename> | |
| 1763 | - <default/> | |
| 1764 | - <type>Number</type> | |
| 1765 | - </value> | |
| 1766 | - <value> | |
| 1767 | - <name>down_in_mileage</name> | |
| 1768 | - <rename>down_in_mileage</rename> | |
| 1769 | - <default/> | |
| 1770 | - <type>Number</type> | |
| 1771 | - </value> | |
| 1772 | - <value> | |
| 1773 | - <name>down_in_timer</name> | |
| 1774 | - <rename>down_in_timer</rename> | |
| 1775 | - <default/> | |
| 1776 | - <type>Number</type> | |
| 1777 | - </value> | |
| 1778 | - </lookup> | |
| 1779 | - <cluster_schema/> | |
| 1780 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1781 | - <xloc>553</xloc> | |
| 1782 | - <yloc>1004</yloc> | |
| 1783 | - <draw>Y</draw> | |
| 1784 | - </GUI> | |
| 1785 | - </step> | |
| 1786 | - | |
| 1787 | - <step> | |
| 1788 | - <name>查找终点站关联</name> | |
| 1789 | - <type>DBLookup</type> | |
| 1790 | - <description/> | |
| 1791 | - <distribute>Y</distribute> | |
| 1792 | - <custom_distribution/> | |
| 1793 | - <copies>1</copies> | |
| 1794 | - <partitioning> | |
| 1795 | - <method>none</method> | |
| 1796 | - <schema_name/> | |
| 1797 | - </partitioning> | |
| 1798 | - <connection>bus_control_variable</connection> | |
| 1799 | - <cache>N</cache> | |
| 1800 | - <cache_load_all>N</cache_load_all> | |
| 1801 | - <cache_size>0</cache_size> | |
| 1802 | - <lookup> | |
| 1803 | - <schema/> | |
| 1804 | - <table>bsth_c_stationroute</table> | |
| 1805 | - <orderby/> | |
| 1806 | - <fail_on_multiple>N</fail_on_multiple> | |
| 1807 | - <eat_row_on_failure>N</eat_row_on_failure> | |
| 1808 | - <key> | |
| 1809 | - <name>xlid</name> | |
| 1810 | - <field>line</field> | |
| 1811 | - <condition>=</condition> | |
| 1812 | - <name2/> | |
| 1813 | - </key> | |
| 1814 | - <key> | |
| 1815 | - <name>sxx</name> | |
| 1816 | - <field>directions</field> | |
| 1817 | - <condition>=</condition> | |
| 1818 | - <name2/> | |
| 1819 | - </key> | |
| 1820 | - <key> | |
| 1821 | - <name>endZdtype</name> | |
| 1822 | - <field>station_mark</field> | |
| 1823 | - <condition>=</condition> | |
| 1824 | - <name2/> | |
| 1825 | - </key> | |
| 1826 | - <key> | |
| 1827 | - <name>destory</name> | |
| 1828 | - <field>destroy</field> | |
| 1829 | - <condition>=</condition> | |
| 1830 | - <name2/> | |
| 1831 | - </key> | |
| 1832 | - <value> | |
| 1833 | - <name>station_name</name> | |
| 1834 | - <rename>zdzname</rename> | |
| 1835 | - <default/> | |
| 1836 | - <type>String</type> | |
| 1837 | - </value> | |
| 1838 | - <value> | |
| 1839 | - <name>station</name> | |
| 1840 | - <rename>zdzid</rename> | |
| 1841 | - <default/> | |
| 1842 | - <type>Integer</type> | |
| 1843 | - </value> | |
| 1844 | - </lookup> | |
| 1845 | - <cluster_schema/> | |
| 1846 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1847 | - <xloc>280</xloc> | |
| 1848 | - <yloc>404</yloc> | |
| 1849 | - <draw>Y</draw> | |
| 1850 | - </GUI> | |
| 1851 | - </step> | |
| 1852 | - | |
| 1853 | - <step> | |
| 1854 | - <name>查找起点站关联并确定上下行</name> | |
| 1855 | - <type>DBLookup</type> | |
| 1856 | - <description/> | |
| 1857 | - <distribute>Y</distribute> | |
| 1858 | - <custom_distribution/> | |
| 1859 | - <copies>1</copies> | |
| 1860 | - <partitioning> | |
| 1861 | - <method>none</method> | |
| 1862 | - <schema_name/> | |
| 1863 | - </partitioning> | |
| 1864 | - <connection>bus_control_variable</connection> | |
| 1865 | - <cache>N</cache> | |
| 1866 | - <cache_load_all>N</cache_load_all> | |
| 1867 | - <cache_size>0</cache_size> | |
| 1868 | - <lookup> | |
| 1869 | - <schema/> | |
| 1870 | - <table>bsth_c_stationroute</table> | |
| 1871 | - <orderby/> | |
| 1872 | - <fail_on_multiple>N</fail_on_multiple> | |
| 1873 | - <eat_row_on_failure>N</eat_row_on_failure> | |
| 1874 | - <key> | |
| 1875 | - <name>xlid</name> | |
| 1876 | - <field>line</field> | |
| 1877 | - <condition>=</condition> | |
| 1878 | - <name2/> | |
| 1879 | - </key> | |
| 1880 | - <key> | |
| 1881 | - <name>qdzname</name> | |
| 1882 | - <field>station_name</field> | |
| 1883 | - <condition>=</condition> | |
| 1884 | - <name2/> | |
| 1885 | - </key> | |
| 1886 | - <key> | |
| 1887 | - <name>sendZdtype</name> | |
| 1888 | - <field>station_mark</field> | |
| 1889 | - <condition>=</condition> | |
| 1890 | - <name2/> | |
| 1891 | - </key> | |
| 1892 | - <key> | |
| 1893 | - <name>destory</name> | |
| 1894 | - <field>destroy</field> | |
| 1895 | - <condition>=</condition> | |
| 1896 | - <name2/> | |
| 1897 | - </key> | |
| 1898 | - <value> | |
| 1899 | - <name>station</name> | |
| 1900 | - <rename>qdzid</rename> | |
| 1901 | - <default/> | |
| 1902 | - <type>Integer</type> | |
| 1903 | - </value> | |
| 1904 | - <value> | |
| 1905 | - <name>directions</name> | |
| 1906 | - <rename>sxx</rename> | |
| 1907 | - <default/> | |
| 1908 | - <type>Integer</type> | |
| 1909 | - </value> | |
| 1910 | - </lookup> | |
| 1911 | - <cluster_schema/> | |
| 1912 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1913 | - <xloc>430</xloc> | |
| 1914 | - <yloc>403</yloc> | |
| 1915 | - <draw>Y</draw> | |
| 1916 | - </GUI> | |
| 1917 | - </step> | |
| 1918 | - | |
| 1919 | - <step> | |
| 1920 | - <name>查找路牌关联</name> | |
| 1921 | - <type>DBLookup</type> | |
| 1922 | - <description/> | |
| 1923 | - <distribute>Y</distribute> | |
| 1924 | - <custom_distribution/> | |
| 1925 | - <copies>1</copies> | |
| 1926 | - <partitioning> | |
| 1927 | - <method>none</method> | |
| 1928 | - <schema_name/> | |
| 1929 | - </partitioning> | |
| 1930 | - <connection>bus_control_variable</connection> | |
| 1931 | - <cache>N</cache> | |
| 1932 | - <cache_load_all>N</cache_load_all> | |
| 1933 | - <cache_size>0</cache_size> | |
| 1934 | - <lookup> | |
| 1935 | - <schema/> | |
| 1936 | - <table>bsth_c_s_gbi</table> | |
| 1937 | - <orderby/> | |
| 1938 | - <fail_on_multiple>N</fail_on_multiple> | |
| 1939 | - <eat_row_on_failure>N</eat_row_on_failure> | |
| 1940 | - <key> | |
| 1941 | - <name>xlid</name> | |
| 1942 | - <field>xl</field> | |
| 1943 | - <condition>=</condition> | |
| 1944 | - <name2/> | |
| 1945 | - </key> | |
| 1946 | - <key> | |
| 1947 | - <name>lp</name> | |
| 1948 | - <field>lp_name</field> | |
| 1949 | - <condition>=</condition> | |
| 1950 | - <name2/> | |
| 1951 | - </key> | |
| 1952 | - <key> | |
| 1953 | - <name>iscanceled</name> | |
| 1954 | - <field>is_cancel</field> | |
| 1955 | - <condition>=</condition> | |
| 1956 | - <name2/> | |
| 1957 | - </key> | |
| 1958 | - <value> | |
| 1959 | - <name>id</name> | |
| 1960 | - <rename>lpid</rename> | |
| 1961 | - <default/> | |
| 1962 | - <type>Integer</type> | |
| 1963 | - </value> | |
| 1964 | - </lookup> | |
| 1965 | - <cluster_schema/> | |
| 1966 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1967 | - <xloc>1013</xloc> | |
| 1968 | - <yloc>265</yloc> | |
| 1969 | - <draw>Y</draw> | |
| 1970 | - </GUI> | |
| 1971 | - </step> | |
| 1972 | - | |
| 1973 | - <step> | |
| 1974 | - <name>查找进场班次上一个班次的线路方向</name> | |
| 1975 | - <type>DBLookup</type> | |
| 1976 | - <description/> | |
| 1977 | - <distribute>Y</distribute> | |
| 1978 | - <custom_distribution/> | |
| 1979 | - <copies>1</copies> | |
| 1980 | - <partitioning> | |
| 1981 | - <method>none</method> | |
| 1982 | - <schema_name/> | |
| 1983 | - </partitioning> | |
| 1984 | - <connection>bus_control_variable</connection> | |
| 1985 | - <cache>N</cache> | |
| 1986 | - <cache_load_all>N</cache_load_all> | |
| 1987 | - <cache_size>0</cache_size> | |
| 1988 | - <lookup> | |
| 1989 | - <schema/> | |
| 1990 | - <table>bsth_c_stationroute</table> | |
| 1991 | - <orderby/> | |
| 1992 | - <fail_on_multiple>N</fail_on_multiple> | |
| 1993 | - <eat_row_on_failure>N</eat_row_on_failure> | |
| 1994 | - <key> | |
| 1995 | - <name>xlid</name> | |
| 1996 | - <field>line</field> | |
| 1997 | - <condition>=</condition> | |
| 1998 | - <name2/> | |
| 1999 | - </key> | |
| 2000 | - <key> | |
| 2001 | - <name>startZdtype_calcu</name> | |
| 2002 | - <field>station_mark</field> | |
| 2003 | - <condition>=</condition> | |
| 2004 | - <name2/> | |
| 2005 | - </key> | |
| 2006 | - <key> | |
| 2007 | - <name>qdzname_calcu</name> | |
| 2008 | - <field>station_name</field> | |
| 2009 | - <condition>=</condition> | |
| 2010 | - <name2/> | |
| 2011 | - </key> | |
| 2012 | - <key> | |
| 2013 | - <name>destory</name> | |
| 2014 | - <field>destroy</field> | |
| 2015 | - <condition>=</condition> | |
| 2016 | - <name2/> | |
| 2017 | - </key> | |
| 2018 | - <value> | |
| 2019 | - <name>directions</name> | |
| 2020 | - <rename>sxx</rename> | |
| 2021 | - <default/> | |
| 2022 | - <type>String</type> | |
| 2023 | - </value> | |
| 2024 | - </lookup> | |
| 2025 | - <cluster_schema/> | |
| 2026 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2027 | - <xloc>548</xloc> | |
| 2028 | - <yloc>610</yloc> | |
| 2029 | - <draw>Y</draw> | |
| 2030 | - </GUI> | |
| 2031 | - </step> | |
| 2032 | - | |
| 2033 | - <step> | |
| 2034 | - <name>查找进场班次上一个班次的终点站,并作为进场班次的起点站</name> | |
| 2035 | - <type>DBLookup</type> | |
| 2036 | - <description/> | |
| 2037 | - <distribute>Y</distribute> | |
| 2038 | - <custom_distribution/> | |
| 2039 | - <copies>1</copies> | |
| 2040 | - <partitioning> | |
| 2041 | - <method>none</method> | |
| 2042 | - <schema_name/> | |
| 2043 | - </partitioning> | |
| 2044 | - <connection>bus_control_variable</connection> | |
| 2045 | - <cache>Y</cache> | |
| 2046 | - <cache_load_all>Y</cache_load_all> | |
| 2047 | - <cache_size>0</cache_size> | |
| 2048 | - <lookup> | |
| 2049 | - <schema/> | |
| 2050 | - <table>bsth_c_stationroute</table> | |
| 2051 | - <orderby/> | |
| 2052 | - <fail_on_multiple>N</fail_on_multiple> | |
| 2053 | - <eat_row_on_failure>N</eat_row_on_failure> | |
| 2054 | - <key> | |
| 2055 | - <name>xlid</name> | |
| 2056 | - <field>line</field> | |
| 2057 | - <condition>=</condition> | |
| 2058 | - <name2/> | |
| 2059 | - </key> | |
| 2060 | - <key> | |
| 2061 | - <name>endZdtype_calcu</name> | |
| 2062 | - <field>station_mark</field> | |
| 2063 | - <condition>=</condition> | |
| 2064 | - <name2/> | |
| 2065 | - </key> | |
| 2066 | - <key> | |
| 2067 | - <name>sxx</name> | |
| 2068 | - <field>directions</field> | |
| 2069 | - <condition>=</condition> | |
| 2070 | - <name2/> | |
| 2071 | - </key> | |
| 2072 | - <key> | |
| 2073 | - <name>destory</name> | |
| 2074 | - <field>destroy</field> | |
| 2075 | - <condition>=</condition> | |
| 2076 | - <name2/> | |
| 2077 | - </key> | |
| 2078 | - <value> | |
| 2079 | - <name>station_name</name> | |
| 2080 | - <rename>zdzname_calcu</rename> | |
| 2081 | - <default/> | |
| 2082 | - <type>Integer</type> | |
| 2083 | - </value> | |
| 2084 | - </lookup> | |
| 2085 | - <cluster_schema/> | |
| 2086 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2087 | - <xloc>550</xloc> | |
| 2088 | - <yloc>701</yloc> | |
| 2089 | - <draw>Y</draw> | |
| 2090 | - </GUI> | |
| 2091 | - </step> | |
| 2092 | - | |
| 2093 | - <step> | |
| 2094 | - <name>查找进场起点站关联确定上下行</name> | |
| 2095 | - <type>DBLookup</type> | |
| 2096 | - <description/> | |
| 2097 | - <distribute>Y</distribute> | |
| 2098 | - <custom_distribution/> | |
| 2099 | - <copies>1</copies> | |
| 2100 | - <partitioning> | |
| 2101 | - <method>none</method> | |
| 2102 | - <schema_name/> | |
| 2103 | - </partitioning> | |
| 2104 | - <connection>bus_control_variable</connection> | |
| 2105 | - <cache>N</cache> | |
| 2106 | - <cache_load_all>N</cache_load_all> | |
| 2107 | - <cache_size>0</cache_size> | |
| 2108 | - <lookup> | |
| 2109 | - <schema/> | |
| 2110 | - <table>bsth_c_stationroute</table> | |
| 2111 | - <orderby/> | |
| 2112 | - <fail_on_multiple>N</fail_on_multiple> | |
| 2113 | - <eat_row_on_failure>N</eat_row_on_failure> | |
| 2114 | - <key> | |
| 2115 | - <name>xlid</name> | |
| 2116 | - <field>line</field> | |
| 2117 | - <condition>=</condition> | |
| 2118 | - <name2/> | |
| 2119 | - </key> | |
| 2120 | - <key> | |
| 2121 | - <name>zdzname_calcu</name> | |
| 2122 | - <field>station_name</field> | |
| 2123 | - <condition>=</condition> | |
| 2124 | - <name2/> | |
| 2125 | - </key> | |
| 2126 | - <key> | |
| 2127 | - <name>startZdtype_calcu</name> | |
| 2128 | - <field>station_mark</field> | |
| 2129 | - <condition>=</condition> | |
| 2130 | - <name2/> | |
| 2131 | - </key> | |
| 2132 | - <key> | |
| 2133 | - <name>destory</name> | |
| 2134 | - <field>destroy</field> | |
| 2135 | - <condition>=</condition> | |
| 2136 | - <name2/> | |
| 2137 | - </key> | |
| 2138 | - <value> | |
| 2139 | - <name>directions</name> | |
| 2140 | - <rename>sxx2</rename> | |
| 2141 | - <default/> | |
| 2142 | - <type>Integer</type> | |
| 2143 | - </value> | |
| 2144 | - <value> | |
| 2145 | - <name>station</name> | |
| 2146 | - <rename>qdzid</rename> | |
| 2147 | - <default/> | |
| 2148 | - <type>Integer</type> | |
| 2149 | - </value> | |
| 2150 | - </lookup> | |
| 2151 | - <cluster_schema/> | |
| 2152 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2153 | - <xloc>551</xloc> | |
| 2154 | - <yloc>782</yloc> | |
| 2155 | - <draw>Y</draw> | |
| 2156 | - </GUI> | |
| 2157 | - </step> | |
| 2158 | - | |
| 2159 | - <step> | |
| 2160 | - <name>正常班次_处理数据</name> | |
| 2161 | - <type>ScriptValueMod</type> | |
| 2162 | - <description/> | |
| 2163 | - <distribute>Y</distribute> | |
| 2164 | - <custom_distribution/> | |
| 2165 | - <copies>1</copies> | |
| 2166 | - <partitioning> | |
| 2167 | - <method>none</method> | |
| 2168 | - <schema_name/> | |
| 2169 | - </partitioning> | |
| 2170 | - <compatible>N</compatible> | |
| 2171 | - <optimizationLevel>9</optimizationLevel> | |
| 2172 | - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 2173 | - <jsScript_name>Script 1</jsScript_name> | |
| 2174 | - <jsScript_script>//Script here

// 添加站点标识
var sendZdtype = 'B';
var endZdtype = 'E';

var destory = 0; // 未撤销flag</jsScript_script> | |
| 2175 | - </jsScript> </jsScripts> <fields> <field> <name>sendZdtype</name> | |
| 2176 | - <rename>sendZdtype</rename> | |
| 2177 | - <type>String</type> | |
| 2178 | - <length>-1</length> | |
| 2179 | - <precision>-1</precision> | |
| 2180 | - <replace>N</replace> | |
| 2181 | - </field> <field> <name>endZdtype</name> | |
| 2182 | - <rename>endZdtype</rename> | |
| 2183 | - <type>String</type> | |
| 2184 | - <length>-1</length> | |
| 2185 | - <precision>-1</precision> | |
| 2186 | - <replace>N</replace> | |
| 2187 | - </field> <field> <name>destory</name> | |
| 2188 | - <rename>destory</rename> | |
| 2189 | - <type>Integer</type> | |
| 2190 | - <length>-1</length> | |
| 2191 | - <precision>-1</precision> | |
| 2192 | - <replace>N</replace> | |
| 2193 | - </field> </fields> <cluster_schema/> | |
| 2194 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2195 | - <xloc>588</xloc> | |
| 2196 | - <yloc>403</yloc> | |
| 2197 | - <draw>Y</draw> | |
| 2198 | - </GUI> | |
| 2199 | - </step> | |
| 2200 | - | |
| 2201 | - <step> | |
| 2202 | - <name>正常班次数据</name> | |
| 2203 | - <type>Dummy</type> | |
| 2204 | - <description/> | |
| 2205 | - <distribute>Y</distribute> | |
| 2206 | - <custom_distribution/> | |
| 2207 | - <copies>1</copies> | |
| 2208 | - <partitioning> | |
| 2209 | - <method>none</method> | |
| 2210 | - <schema_name/> | |
| 2211 | - </partitioning> | |
| 2212 | - <cluster_schema/> | |
| 2213 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2214 | - <xloc>725</xloc> | |
| 2215 | - <yloc>404</yloc> | |
| 2216 | - <draw>Y</draw> | |
| 2217 | - </GUI> | |
| 2218 | - </step> | |
| 2219 | - | |
| 2220 | - <step> | |
| 2221 | - <name>添加发车顺序号</name> | |
| 2222 | - <type>GroupBy</type> | |
| 2223 | - <description/> | |
| 2224 | - <distribute>Y</distribute> | |
| 2225 | - <custom_distribution/> | |
| 2226 | - <copies>1</copies> | |
| 2227 | - <partitioning> | |
| 2228 | - <method>none</method> | |
| 2229 | - <schema_name/> | |
| 2230 | - </partitioning> | |
| 2231 | - <all_rows>Y</all_rows> | |
| 2232 | - <ignore_aggregate>N</ignore_aggregate> | |
| 2233 | - <field_ignore/> | |
| 2234 | - <directory>%%java.io.tmpdir%%</directory> | |
| 2235 | - <prefix>grp</prefix> | |
| 2236 | - <add_linenr>Y</add_linenr> | |
| 2237 | - <linenr_fieldname>fcno</linenr_fieldname> | |
| 2238 | - <give_back_row>N</give_back_row> | |
| 2239 | - <group> | |
| 2240 | - <field> | |
| 2241 | - <name>lp</name> | |
| 2242 | - </field> | |
| 2243 | - </group> | |
| 2244 | - <fields> | |
| 2245 | - </fields> | |
| 2246 | - <cluster_schema/> | |
| 2247 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2248 | - <xloc>442</xloc> | |
| 2249 | - <yloc>44</yloc> | |
| 2250 | - <draw>Y</draw> | |
| 2251 | - </GUI> | |
| 2252 | - </step> | |
| 2253 | - | |
| 2254 | - <step> | |
| 2255 | - <name>添加对应班次数</name> | |
| 2256 | - <type>GroupBy</type> | |
| 2257 | - <description/> | |
| 2258 | - <distribute>Y</distribute> | |
| 2259 | - <custom_distribution/> | |
| 2260 | - <copies>1</copies> | |
| 2261 | - <partitioning> | |
| 2262 | - <method>none</method> | |
| 2263 | - <schema_name/> | |
| 2264 | - </partitioning> | |
| 2265 | - <all_rows>Y</all_rows> | |
| 2266 | - <ignore_aggregate>N</ignore_aggregate> | |
| 2267 | - <field_ignore/> | |
| 2268 | - <directory>%%java.io.tmpdir%%</directory> | |
| 2269 | - <prefix>grp</prefix> | |
| 2270 | - <add_linenr>Y</add_linenr> | |
| 2271 | - <linenr_fieldname>bcs</linenr_fieldname> | |
| 2272 | - <give_back_row>N</give_back_row> | |
| 2273 | - <group> | |
| 2274 | - </group> | |
| 2275 | - <fields> | |
| 2276 | - </fields> | |
| 2277 | - <cluster_schema/> | |
| 2278 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2279 | - <xloc>692</xloc> | |
| 2280 | - <yloc>44</yloc> | |
| 2281 | - <draw>Y</draw> | |
| 2282 | - </GUI> | |
| 2283 | - </step> | |
| 2284 | - | |
| 2285 | - <step> | |
| 2286 | - <name>班次数据范式化</name> | |
| 2287 | - <type>Normaliser</type> | |
| 2288 | - <description/> | |
| 2289 | - <distribute>Y</distribute> | |
| 2290 | - <custom_distribution/> | |
| 2291 | - <copies>1</copies> | |
| 2292 | - <partitioning> | |
| 2293 | - <method>none</method> | |
| 2294 | - <schema_name/> | |
| 2295 | - </partitioning> | |
| 2296 | - <typefield>站点名称</typefield> | |
| 2297 | - <fields> </fields> <cluster_schema/> | |
| 2298 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2299 | - <xloc>248</xloc> | |
| 2300 | - <yloc>44</yloc> | |
| 2301 | - <draw>Y</draw> | |
| 2302 | - </GUI> | |
| 2303 | - </step> | |
| 2304 | - | |
| 2305 | - <step> | |
| 2306 | - <name>班次类型字典</name> | |
| 2307 | - <type>ValueMapper</type> | |
| 2308 | - <description/> | |
| 2309 | - <distribute>Y</distribute> | |
| 2310 | - <custom_distribution/> | |
| 2311 | - <copies>1</copies> | |
| 2312 | - <partitioning> | |
| 2313 | - <method>none</method> | |
| 2314 | - <schema_name/> | |
| 2315 | - </partitioning> | |
| 2316 | - <field_to_use>bctype</field_to_use> | |
| 2317 | - <target_field>bctype_code</target_field> | |
| 2318 | - <non_match_default>未知类型</non_match_default> | |
| 2319 | - <fields> | |
| 2320 | - <field> | |
| 2321 | - <source_value>正常班次</source_value> | |
| 2322 | - <target_value>normal</target_value> | |
| 2323 | - </field> | |
| 2324 | - <field> | |
| 2325 | - <source_value>出场</source_value> | |
| 2326 | - <target_value>out</target_value> | |
| 2327 | - </field> | |
| 2328 | - <field> | |
| 2329 | - <source_value>进场</source_value> | |
| 2330 | - <target_value>in</target_value> | |
| 2331 | - </field> | |
| 2332 | - <field> | |
| 2333 | - <source_value>加油</source_value> | |
| 2334 | - <target_value>oil</target_value> | |
| 2335 | - </field> | |
| 2336 | - <field> | |
| 2337 | - <source_value>临加</source_value> | |
| 2338 | - <target_value>temp</target_value> | |
| 2339 | - </field> | |
| 2340 | - <field> | |
| 2341 | - <source_value>区间</source_value> | |
| 2342 | - <target_value>region</target_value> | |
| 2343 | - </field> | |
| 2344 | - <field> | |
| 2345 | - <source_value>放空</source_value> | |
| 2346 | - <target_value>venting</target_value> | |
| 2347 | - </field> | |
| 2348 | - <field> | |
| 2349 | - <source_value>放大站</source_value> | |
| 2350 | - <target_value>major</target_value> | |
| 2351 | - </field> | |
| 2352 | - </fields> | |
| 2353 | - <cluster_schema/> | |
| 2354 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2355 | - <xloc>149</xloc> | |
| 2356 | - <yloc>491</yloc> | |
| 2357 | - <draw>Y</draw> | |
| 2358 | - </GUI> | |
| 2359 | - </step> | |
| 2360 | - | |
| 2361 | - <step> | |
| 2362 | - <name>班次类型字典 2</name> | |
| 2363 | - <type>ValueMapper</type> | |
| 2364 | - <description/> | |
| 2365 | - <distribute>Y</distribute> | |
| 2366 | - <custom_distribution/> | |
| 2367 | - <copies>1</copies> | |
| 2368 | - <partitioning> | |
| 2369 | - <method>none</method> | |
| 2370 | - <schema_name/> | |
| 2371 | - </partitioning> | |
| 2372 | - <field_to_use>bctype</field_to_use> | |
| 2373 | - <target_field>bctype_code</target_field> | |
| 2374 | - <non_match_default>未知类型</non_match_default> | |
| 2375 | - <fields> | |
| 2376 | - <field> | |
| 2377 | - <source_value>正常班次</source_value> | |
| 2378 | - <target_value>normal</target_value> | |
| 2379 | - </field> | |
| 2380 | - <field> | |
| 2381 | - <source_value>出场</source_value> | |
| 2382 | - <target_value>out</target_value> | |
| 2383 | - </field> | |
| 2384 | - <field> | |
| 2385 | - <source_value>进场</source_value> | |
| 2386 | - <target_value>in</target_value> | |
| 2387 | - </field> | |
| 2388 | - <field> | |
| 2389 | - <source_value>加油</source_value> | |
| 2390 | - <target_value>oil</target_value> | |
| 2391 | - </field> | |
| 2392 | - <field> | |
| 2393 | - <source_value>临加</source_value> | |
| 2394 | - <target_value>temp</target_value> | |
| 2395 | - </field> | |
| 2396 | - <field> | |
| 2397 | - <source_value>区间</source_value> | |
| 2398 | - <target_value>region</target_value> | |
| 2399 | - </field> | |
| 2400 | - <field> | |
| 2401 | - <source_value>放空</source_value> | |
| 2402 | - <target_value>venting</target_value> | |
| 2403 | - </field> | |
| 2404 | - <field> | |
| 2405 | - <source_value>放大站</source_value> | |
| 2406 | - <target_value>major</target_value> | |
| 2407 | - </field> | |
| 2408 | - </fields> | |
| 2409 | - <cluster_schema/> | |
| 2410 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2411 | - <xloc>333</xloc> | |
| 2412 | - <yloc>681</yloc> | |
| 2413 | - <draw>Y</draw> | |
| 2414 | - </GUI> | |
| 2415 | - </step> | |
| 2416 | - | |
| 2417 | - <step> | |
| 2418 | - <name>班次类型字典 3</name> | |
| 2419 | - <type>ValueMapper</type> | |
| 2420 | - <description/> | |
| 2421 | - <distribute>Y</distribute> | |
| 2422 | - <custom_distribution/> | |
| 2423 | - <copies>1</copies> | |
| 2424 | - <partitioning> | |
| 2425 | - <method>none</method> | |
| 2426 | - <schema_name/> | |
| 2427 | - </partitioning> | |
| 2428 | - <field_to_use>bctype</field_to_use> | |
| 2429 | - <target_field>bctype_code</target_field> | |
| 2430 | - <non_match_default>未知类型</non_match_default> | |
| 2431 | - <fields> | |
| 2432 | - <field> | |
| 2433 | - <source_value>正常班次</source_value> | |
| 2434 | - <target_value>normal</target_value> | |
| 2435 | - </field> | |
| 2436 | - <field> | |
| 2437 | - <source_value>出场</source_value> | |
| 2438 | - <target_value>out</target_value> | |
| 2439 | - </field> | |
| 2440 | - <field> | |
| 2441 | - <source_value>进场</source_value> | |
| 2442 | - <target_value>in</target_value> | |
| 2443 | - </field> | |
| 2444 | - <field> | |
| 2445 | - <source_value>加油</source_value> | |
| 2446 | - <target_value>oil</target_value> | |
| 2447 | - </field> | |
| 2448 | - <field> | |
| 2449 | - <source_value>临加</source_value> | |
| 2450 | - <target_value>temp</target_value> | |
| 2451 | - </field> | |
| 2452 | - <field> | |
| 2453 | - <source_value>区间</source_value> | |
| 2454 | - <target_value>region</target_value> | |
| 2455 | - </field> | |
| 2456 | - <field> | |
| 2457 | - <source_value>放空</source_value> | |
| 2458 | - <target_value>venting</target_value> | |
| 2459 | - </field> | |
| 2460 | - <field> | |
| 2461 | - <source_value>放大站</source_value> | |
| 2462 | - <target_value>major</target_value> | |
| 2463 | - </field> | |
| 2464 | - </fields> | |
| 2465 | - <cluster_schema/> | |
| 2466 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2467 | - <xloc>551</xloc> | |
| 2468 | - <yloc>928</yloc> | |
| 2469 | - <draw>Y</draw> | |
| 2470 | - </GUI> | |
| 2471 | - </step> | |
| 2472 | - | |
| 2473 | - <step> | |
| 2474 | - <name>类型修正</name> | |
| 2475 | - <type>SelectValues</type> | |
| 2476 | - <description/> | |
| 2477 | - <distribute>Y</distribute> | |
| 2478 | - <custom_distribution/> | |
| 2479 | - <copies>1</copies> | |
| 2480 | - <partitioning> | |
| 2481 | - <method>none</method> | |
| 2482 | - <schema_name/> | |
| 2483 | - </partitioning> | |
| 2484 | - <fields> <select_unspecified>N</select_unspecified> | |
| 2485 | - <meta> <name>jhlc</name> | |
| 2486 | - <rename>jhlc</rename> | |
| 2487 | - <type>Number</type> | |
| 2488 | - <length>-2</length> | |
| 2489 | - <precision>-2</precision> | |
| 2490 | - <conversion_mask/> | |
| 2491 | - <date_format_lenient>false</date_format_lenient> | |
| 2492 | - <date_format_locale/> | |
| 2493 | - <date_format_timezone/> | |
| 2494 | - <lenient_string_to_number>false</lenient_string_to_number> | |
| 2495 | - <encoding/> | |
| 2496 | - <decimal_symbol/> | |
| 2497 | - <grouping_symbol/> | |
| 2498 | - <currency_symbol/> | |
| 2499 | - <storage_type/> | |
| 2500 | - </meta> <meta> <name>bcsj</name> | |
| 2501 | - <rename>bcsj</rename> | |
| 2502 | - <type>Integer</type> | |
| 2503 | - <length>-2</length> | |
| 2504 | - <precision>-2</precision> | |
| 2505 | - <conversion_mask/> | |
| 2506 | - <date_format_lenient>false</date_format_lenient> | |
| 2507 | - <date_format_locale/> | |
| 2508 | - <date_format_timezone/> | |
| 2509 | - <lenient_string_to_number>false</lenient_string_to_number> | |
| 2510 | - <encoding/> | |
| 2511 | - <decimal_symbol/> | |
| 2512 | - <grouping_symbol/> | |
| 2513 | - <currency_symbol/> | |
| 2514 | - <storage_type/> | |
| 2515 | - </meta> </fields> <cluster_schema/> | |
| 2516 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2517 | - <xloc>146</xloc> | |
| 2518 | - <yloc>768</yloc> | |
| 2519 | - <draw>Y</draw> | |
| 2520 | - </GUI> | |
| 2521 | - </step> | |
| 2522 | - | |
| 2523 | - <step> | |
| 2524 | - <name>类型修正 2</name> | |
| 2525 | - <type>SelectValues</type> | |
| 2526 | - <description/> | |
| 2527 | - <distribute>Y</distribute> | |
| 2528 | - <custom_distribution/> | |
| 2529 | - <copies>1</copies> | |
| 2530 | - <partitioning> | |
| 2531 | - <method>none</method> | |
| 2532 | - <schema_name/> | |
| 2533 | - </partitioning> | |
| 2534 | - <fields> <select_unspecified>N</select_unspecified> | |
| 2535 | - <meta> <name>out_mileage</name> | |
| 2536 | - <rename>out_mileage</rename> | |
| 2537 | - <type>Number</type> | |
| 2538 | - <length>-2</length> | |
| 2539 | - <precision>-2</precision> | |
| 2540 | - <conversion_mask/> | |
| 2541 | - <date_format_lenient>false</date_format_lenient> | |
| 2542 | - <date_format_locale/> | |
| 2543 | - <date_format_timezone/> | |
| 2544 | - <lenient_string_to_number>false</lenient_string_to_number> | |
| 2545 | - <encoding/> | |
| 2546 | - <decimal_symbol/> | |
| 2547 | - <grouping_symbol/> | |
| 2548 | - <currency_symbol/> | |
| 2549 | - <storage_type/> | |
| 2550 | - </meta> <meta> <name>out_time</name> | |
| 2551 | - <rename>out_time</rename> | |
| 2552 | - <type>Integer</type> | |
| 2553 | - <length>-2</length> | |
| 2554 | - <precision>-2</precision> | |
| 2555 | - <conversion_mask/> | |
| 2556 | - <date_format_lenient>false</date_format_lenient> | |
| 2557 | - <date_format_locale/> | |
| 2558 | - <date_format_timezone/> | |
| 2559 | - <lenient_string_to_number>false</lenient_string_to_number> | |
| 2560 | - <encoding/> | |
| 2561 | - <decimal_symbol/> | |
| 2562 | - <grouping_symbol/> | |
| 2563 | - <currency_symbol/> | |
| 2564 | - <storage_type/> | |
| 2565 | - </meta> <meta> <name>sxx</name> | |
| 2566 | - <rename>sxx</rename> | |
| 2567 | - <type>Integer</type> | |
| 2568 | - <length>-2</length> | |
| 2569 | - <precision>-2</precision> | |
| 2570 | - <conversion_mask/> | |
| 2571 | - <date_format_lenient>false</date_format_lenient> | |
| 2572 | - <date_format_locale/> | |
| 2573 | - <date_format_timezone/> | |
| 2574 | - <lenient_string_to_number>false</lenient_string_to_number> | |
| 2575 | - <encoding/> | |
| 2576 | - <decimal_symbol/> | |
| 2577 | - <grouping_symbol/> | |
| 2578 | - <currency_symbol/> | |
| 2579 | - <storage_type/> | |
| 2580 | - </meta> </fields> <cluster_schema/> | |
| 2581 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2582 | - <xloc>338</xloc> | |
| 2583 | - <yloc>1008</yloc> | |
| 2584 | - <draw>Y</draw> | |
| 2585 | - </GUI> | |
| 2586 | - </step> | |
| 2587 | - | |
| 2588 | - <step> | |
| 2589 | - <name>类型修正 3</name> | |
| 2590 | - <type>SelectValues</type> | |
| 2591 | - <description/> | |
| 2592 | - <distribute>Y</distribute> | |
| 2593 | - <custom_distribution/> | |
| 2594 | - <copies>1</copies> | |
| 2595 | - <partitioning> | |
| 2596 | - <method>none</method> | |
| 2597 | - <schema_name/> | |
| 2598 | - </partitioning> | |
| 2599 | - <fields> <select_unspecified>N</select_unspecified> | |
| 2600 | - <meta> <name>parade_mileage</name> | |
| 2601 | - <rename>parade_mileage</rename> | |
| 2602 | - <type>Number</type> | |
| 2603 | - <length>-2</length> | |
| 2604 | - <precision>-2</precision> | |
| 2605 | - <conversion_mask/> | |
| 2606 | - <date_format_lenient>false</date_format_lenient> | |
| 2607 | - <date_format_locale/> | |
| 2608 | - <date_format_timezone/> | |
| 2609 | - <lenient_string_to_number>false</lenient_string_to_number> | |
| 2610 | - <encoding/> | |
| 2611 | - <decimal_symbol/> | |
| 2612 | - <grouping_symbol/> | |
| 2613 | - <currency_symbol/> | |
| 2614 | - <storage_type/> | |
| 2615 | - </meta> <meta> <name>parade_time</name> | |
| 2616 | - <rename>parade_time</rename> | |
| 2617 | - <type>Integer</type> | |
| 2618 | - <length>-2</length> | |
| 2619 | - <precision>-2</precision> | |
| 2620 | - <conversion_mask/> | |
| 2621 | - <date_format_lenient>false</date_format_lenient> | |
| 2622 | - <date_format_locale/> | |
| 2623 | - <date_format_timezone/> | |
| 2624 | - <lenient_string_to_number>false</lenient_string_to_number> | |
| 2625 | - <encoding/> | |
| 2626 | - <decimal_symbol/> | |
| 2627 | - <grouping_symbol/> | |
| 2628 | - <currency_symbol/> | |
| 2629 | - <storage_type/> | |
| 2630 | - </meta> <meta> <name>sxx2</name> | |
| 2631 | - <rename>sxx2</rename> | |
| 2632 | - <type>Integer</type> | |
| 2633 | - <length>-2</length> | |
| 2634 | - <precision>-2</precision> | |
| 2635 | - <conversion_mask/> | |
| 2636 | - <date_format_lenient>false</date_format_lenient> | |
| 2637 | - <date_format_locale/> | |
| 2638 | - <date_format_timezone/> | |
| 2639 | - <lenient_string_to_number>false</lenient_string_to_number> | |
| 2640 | - <encoding/> | |
| 2641 | - <decimal_symbol/> | |
| 2642 | - <grouping_symbol/> | |
| 2643 | - <currency_symbol/> | |
| 2644 | - <storage_type/> | |
| 2645 | - </meta> </fields> <cluster_schema/> | |
| 2646 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2647 | - <xloc>847</xloc> | |
| 2648 | - <yloc>1003</yloc> | |
| 2649 | - <draw>Y</draw> | |
| 2650 | - </GUI> | |
| 2651 | - </step> | |
| 2652 | - | |
| 2653 | - <step> | |
| 2654 | - <name>计算班次类型</name> | |
| 2655 | - <type>ValueMapper</type> | |
| 2656 | - <description/> | |
| 2657 | - <distribute>Y</distribute> | |
| 2658 | - <custom_distribution/> | |
| 2659 | - <copies>1</copies> | |
| 2660 | - <partitioning> | |
| 2661 | - <method>none</method> | |
| 2662 | - <schema_name/> | |
| 2663 | - </partitioning> | |
| 2664 | - <field_to_use>qdzname</field_to_use> | |
| 2665 | - <target_field>bctype</target_field> | |
| 2666 | - <non_match_default>正常班次</non_match_default> | |
| 2667 | - <fields> | |
| 2668 | - <field> | |
| 2669 | - <source_value>出场</source_value> | |
| 2670 | - <target_value>出场</target_value> | |
| 2671 | - </field> | |
| 2672 | - <field> | |
| 2673 | - <source_value>进场</source_value> | |
| 2674 | - <target_value>进场</target_value> | |
| 2675 | - </field> | |
| 2676 | - </fields> | |
| 2677 | - <cluster_schema/> | |
| 2678 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2679 | - <xloc>1014</xloc> | |
| 2680 | - <yloc>401</yloc> | |
| 2681 | - <draw>Y</draw> | |
| 2682 | - </GUI> | |
| 2683 | - </step> | |
| 2684 | - | |
| 2685 | - <step> | |
| 2686 | - <name>记录关联 (笛卡尔输出)</name> | |
| 2687 | - <type>JoinRows</type> | |
| 2688 | - <description/> | |
| 2689 | - <distribute>Y</distribute> | |
| 2690 | - <custom_distribution/> | |
| 2691 | - <copies>1</copies> | |
| 2692 | - <partitioning> | |
| 2693 | - <method>none</method> | |
| 2694 | - <schema_name/> | |
| 2695 | - </partitioning> | |
| 2696 | - <directory>%%java.io.tmpdir%%</directory> | |
| 2697 | - <prefix>out</prefix> | |
| 2698 | - <cache_size>500</cache_size> | |
| 2699 | - <main/> | |
| 2700 | - <compare> | |
| 2701 | -<condition> | |
| 2702 | - <negated>N</negated> | |
| 2703 | - <leftvalue/> | |
| 2704 | - <function>=</function> | |
| 2705 | - <rightvalue/> | |
| 2706 | - </condition> | |
| 2707 | - </compare> | |
| 2708 | - <cluster_schema/> | |
| 2709 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2710 | - <xloc>310</xloc> | |
| 2711 | - <yloc>133</yloc> | |
| 2712 | - <draw>Y</draw> | |
| 2713 | - </GUI> | |
| 2714 | - </step> | |
| 2715 | - | |
| 2716 | - <step> | |
| 2717 | - <name>过滤记录(发车时间为空)</name> | |
| 2718 | - <type>FilterRows</type> | |
| 2719 | - <description/> | |
| 2720 | - <distribute>Y</distribute> | |
| 2721 | - <custom_distribution/> | |
| 2722 | - <copies>1</copies> | |
| 2723 | - <partitioning> | |
| 2724 | - <method>none</method> | |
| 2725 | - <schema_name/> | |
| 2726 | - </partitioning> | |
| 2727 | -<send_true_to/> | |
| 2728 | -<send_false_to/> | |
| 2729 | - <compare> | |
| 2730 | -<condition> | |
| 2731 | - <negated>N</negated> | |
| 2732 | - <leftvalue>sendtime</leftvalue> | |
| 2733 | - <function>IS NOT NULL</function> | |
| 2734 | - <rightvalue/> | |
| 2735 | - </condition> | |
| 2736 | - </compare> | |
| 2737 | - <cluster_schema/> | |
| 2738 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2739 | - <xloc>571</xloc> | |
| 2740 | - <yloc>44</yloc> | |
| 2741 | - <draw>Y</draw> | |
| 2742 | - </GUI> | |
| 2743 | - </step> | |
| 2744 | - | |
| 2745 | - <step> | |
| 2746 | - <name>进场班次_确定起点站名字</name> | |
| 2747 | - <type>ScriptValueMod</type> | |
| 2748 | - <description/> | |
| 2749 | - <distribute>Y</distribute> | |
| 2750 | - <custom_distribution/> | |
| 2751 | - <copies>1</copies> | |
| 2752 | - <partitioning> | |
| 2753 | - <method>none</method> | |
| 2754 | - <schema_name/> | |
| 2755 | - </partitioning> | |
| 2756 | - <compatible>N</compatible> | |
| 2757 | - <optimizationLevel>9</optimizationLevel> | |
| 2758 | - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 2759 | - <jsScript_name>Script 1</jsScript_name> | |
| 2760 | - <jsScript_script>//Script here

// 添加站点标识
var cc_groups = qdzgroups.split(","); // 所有班次起点站数组
var qdzname_calcu = cc_groups[gno - 2]; // 进场班次的起点站是上一个班次的终点站,这里只有上一个班次的起点站,还需要计算
var startZdtype_calcu = 'B';
var endZdtype_calcu = 'E';

var destory = 0; // 未撤销flag</jsScript_script> | |
| 2761 | - </jsScript> </jsScripts> <fields> <field> <name>qdzname_calcu</name> | |
| 2762 | - <rename>qdzname_calcu</rename> | |
| 2763 | - <type>String</type> | |
| 2764 | - <length>-1</length> | |
| 2765 | - <precision>-1</precision> | |
| 2766 | - <replace>N</replace> | |
| 2767 | - </field> <field> <name>startZdtype_calcu</name> | |
| 2768 | - <rename>startZdtype_calcu</rename> | |
| 2769 | - <type>String</type> | |
| 2770 | - <length>-1</length> | |
| 2771 | - <precision>-1</precision> | |
| 2772 | - <replace>N</replace> | |
| 2773 | - </field> <field> <name>endZdtype_calcu</name> | |
| 2774 | - <rename>endZdtype_calcu</rename> | |
| 2775 | - <type>String</type> | |
| 2776 | - <length>-1</length> | |
| 2777 | - <precision>-1</precision> | |
| 2778 | - <replace>N</replace> | |
| 2779 | - </field> <field> <name>destory</name> | |
| 2780 | - <rename>destory</rename> | |
| 2781 | - <type>Integer</type> | |
| 2782 | - <length>-1</length> | |
| 2783 | - <precision>-1</precision> | |
| 2784 | - <replace>N</replace> | |
| 2785 | - </field> </fields> <cluster_schema/> | |
| 2786 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2787 | - <xloc>754</xloc> | |
| 2788 | - <yloc>610</yloc> | |
| 2789 | - <draw>Y</draw> | |
| 2790 | - </GUI> | |
| 2791 | - </step> | |
| 2792 | - | |
| 2793 | - <step> | |
| 2794 | - <name>进场班次数据</name> | |
| 2795 | - <type>Dummy</type> | |
| 2796 | - <description/> | |
| 2797 | - <distribute>Y</distribute> | |
| 2798 | - <custom_distribution/> | |
| 2799 | - <copies>1</copies> | |
| 2800 | - <partitioning> | |
| 2801 | - <method>none</method> | |
| 2802 | - <schema_name/> | |
| 2803 | - </partitioning> | |
| 2804 | - <cluster_schema/> | |
| 2805 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2806 | - <xloc>997</xloc> | |
| 2807 | - <yloc>606</yloc> | |
| 2808 | - <draw>Y</draw> | |
| 2809 | - </GUI> | |
| 2810 | - </step> | |
| 2811 | - | |
| 2812 | - <step_error_handling> | |
| 2813 | - <error> | |
| 2814 | - <source_step>插入/更新bsth_c_s_ttinfo_detail</source_step> | |
| 2815 | - <target_step/> | |
| 2816 | - <is_enabled>Y</is_enabled> | |
| 2817 | - <nr_valuename>c1</nr_valuename> | |
| 2818 | - <descriptions_valuename>c2</descriptions_valuename> | |
| 2819 | - <fields_valuename>c3</fields_valuename> | |
| 2820 | - <codes_valuename>c4</codes_valuename> | |
| 2821 | - <max_errors/> | |
| 2822 | - <max_pct_errors/> | |
| 2823 | - <min_pct_rows/> | |
| 2824 | - </error> | |
| 2825 | - </step_error_handling> | |
| 2826 | - <slave-step-copy-partition-distribution> | |
| 2827 | -</slave-step-copy-partition-distribution> | |
| 2828 | - <slave_transformation>N</slave_transformation> | |
| 2829 | - | |
| 2830 | -</transformation> | |
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | +<transformation> | |
| 3 | + <info> | |
| 4 | + <name>时刻表明细导出2</name> | |
| 5 | + <description>时刻表明细信息导入</description> | |
| 6 | + <extended_description>时刻表明细信息</extended_description> | |
| 7 | + <trans_version/> | |
| 8 | + <trans_type>Normal</trans_type> | |
| 9 | + <trans_status>0</trans_status> | |
| 10 | + <directory>/</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/06/30 12:21:57.536</created_date> | |
| 71 | + <modified_user>-</modified_user> | |
| 72 | + <modified_date>2016/06/30 12:21:57.536</modified_date> | |
| 73 | + <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA=</key_for_session_key> | |
| 74 | + <is_key_private>N</is_key_private> | |
| 75 | + </info> | |
| 76 | + <notepads> | |
| 77 | + <notepad> | |
| 78 | + <note>字典表对应(以后直接查找表 bsth_c_sys_dictionary)
类型 代码 名称
LineTrend 0 上行
LineTrend 1 下行
ScheduleType normal 正常班次
ScheduleType out 出场
ScheduleType in 进场
ScheduleType temp 临加
ScheduleType region 区间
ScheduleType venting 放空
ScheduleType major 放大站</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>因为时刻表输入格式不确定性,主要因为表结构是反范式化的,
所以需要外部动态指定愿数据,头三个step动态指定愿数据

</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>这里有些问题
在window2012的环境下,
MySql数据库查询中如果返回中文内容的字段,这个内容乱码
解决办法,就是数据库查询全部缓存,就不乱码
linux环境下没问题</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>出场班次,方向有时确定不准,
空的情况下设定为0(上行)</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>进场班次,方向有时确定不准,
空的情况下设定为0(上行)</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>bus_control_variable</name> | |
| 185 | + <server>${v_db_ip}</server> | |
| 186 | + <type>MYSQL</type> | |
| 187 | + <access>Native</access> | |
| 188 | + <database>${v_db_dname}</database> | |
| 189 | + <port>3306</port> | |
| 190 | + <username>${v_db_uname}</username> | |
| 191 | + <password>${v_db_pwd}</password> | |
| 192 | + <servername/> | |
| 193 | + <data_tablespace/> | |
| 194 | + <index_tablespace/> | |
| 195 | + <attributes> | |
| 196 | + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute> | |
| 197 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 198 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 199 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 200 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 201 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 202 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 203 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 204 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 205 | + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute> | |
| 206 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 207 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 208 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 209 | + </attributes> | |
| 210 | + </connection> | |
| 211 | + <connection> | |
| 212 | + <name>bus_control_公司_201</name> | |
| 213 | + <server>localhost</server> | |
| 214 | + <type>MYSQL</type> | |
| 215 | + <access>Native</access> | |
| 216 | + <database>control</database> | |
| 217 | + <port>3306</port> | |
| 218 | + <username>root</username> | |
| 219 | + <password>Encrypted </password> | |
| 220 | + <servername/> | |
| 221 | + <data_tablespace/> | |
| 222 | + <index_tablespace/> | |
| 223 | + <attributes> | |
| 224 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 225 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 226 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 227 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 228 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 229 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 230 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 231 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 232 | + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute> | |
| 233 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 234 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 235 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 236 | + </attributes> | |
| 237 | + </connection> | |
| 238 | + <connection> | |
| 239 | + <name>bus_control_本机</name> | |
| 240 | + <server>localhost</server> | |
| 241 | + <type>MYSQL</type> | |
| 242 | + <access>Native</access> | |
| 243 | + <database>control</database> | |
| 244 | + <port>3306</port> | |
| 245 | + <username>root</username> | |
| 246 | + <password>Encrypted </password> | |
| 247 | + <servername/> | |
| 248 | + <data_tablespace/> | |
| 249 | + <index_tablespace/> | |
| 250 | + <attributes> | |
| 251 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 252 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 253 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 254 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 255 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 256 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 257 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 258 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 259 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 260 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 261 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 262 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 263 | + </attributes> | |
| 264 | + </connection> | |
| 265 | + <connection> | |
| 266 | + <name>xlab_mysql_youle</name> | |
| 267 | + <server>101.231.124.8</server> | |
| 268 | + <type>MYSQL</type> | |
| 269 | + <access>Native</access> | |
| 270 | + <database>xlab_youle</database> | |
| 271 | + <port>45687</port> | |
| 272 | + <username>xlab-youle</username> | |
| 273 | + <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password> | |
| 274 | + <servername/> | |
| 275 | + <data_tablespace/> | |
| 276 | + <index_tablespace/> | |
| 277 | + <attributes> | |
| 278 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 279 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 280 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 281 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 282 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 283 | + <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute> | |
| 284 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 285 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 286 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 287 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 288 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 289 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 290 | + </attributes> | |
| 291 | + </connection> | |
| 292 | + <connection> | |
| 293 | + <name>xlab_mysql_youle(本机)</name> | |
| 294 | + <server>localhost</server> | |
| 295 | + <type>MYSQL</type> | |
| 296 | + <access>Native</access> | |
| 297 | + <database>xlab_youle</database> | |
| 298 | + <port>3306</port> | |
| 299 | + <username>root</username> | |
| 300 | + <password>Encrypted </password> | |
| 301 | + <servername/> | |
| 302 | + <data_tablespace/> | |
| 303 | + <index_tablespace/> | |
| 304 | + <attributes> | |
| 305 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 306 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 307 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 308 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 309 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 310 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 311 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 312 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 313 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 314 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 315 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 316 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 317 | + </attributes> | |
| 318 | + </connection> | |
| 319 | + <connection> | |
| 320 | + <name>xlab_youle</name> | |
| 321 | + <server/> | |
| 322 | + <type>MYSQL</type> | |
| 323 | + <access>JNDI</access> | |
| 324 | + <database>xlab_youle</database> | |
| 325 | + <port>1521</port> | |
| 326 | + <username/> | |
| 327 | + <password>Encrypted </password> | |
| 328 | + <servername/> | |
| 329 | + <data_tablespace/> | |
| 330 | + <index_tablespace/> | |
| 331 | + <attributes> | |
| 332 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 333 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 334 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 335 | + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | |
| 336 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 337 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 338 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 339 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 340 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 341 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 342 | + </attributes> | |
| 343 | + </connection> | |
| 344 | + <order> | |
| 345 | + <hop> <from>时刻表明细信息Excel输入</from><to>班次数据范式化</to><enabled>Y</enabled> </hop> | |
| 346 | + <hop> <from>添加发车顺序号</from><to>过滤记录(发车时间为空)</to><enabled>Y</enabled> </hop> | |
| 347 | + <hop> <from>过滤记录(发车时间为空)</from><to>添加对应班次数</to><enabled>Y</enabled> </hop> | |
| 348 | + <hop> <from>添加对应班次数</from><to>处理数据</to><enabled>Y</enabled> </hop> | |
| 349 | + <hop> <from>处理数据</from><to>分组各个路牌的站</to><enabled>Y</enabled> </hop> | |
| 350 | + <hop> <from>查找时刻表基础信息关联</from><to>查找路牌关联</to><enabled>Y</enabled> </hop> | |
| 351 | + <hop> <from>查找线路关联</from><to>查找时刻表基础信息关联</to><enabled>Y</enabled> </hop> | |
| 352 | + <hop> <from>上下行字典</from><to>班次类型字典</to><enabled>Y</enabled> </hop> | |
| 353 | + <hop> <from>上下行字典 2</from><to>班次类型字典 2</to><enabled>Y</enabled> </hop> | |
| 354 | + <hop> <from>上下行字典 3</from><to>班次类型字典 3</to><enabled>Y</enabled> </hop> | |
| 355 | + <hop> <from>匹配上下行正常班次里程时间</from><to>类型修正</to><enabled>Y</enabled> </hop> | |
| 356 | + <hop> <from>按照班次类型过滤数据1</from><to>按照班次类型过滤数据2</to><enabled>Y</enabled> </hop> | |
| 357 | + <hop> <from>按照班次类型过滤数据1</from><to>正常班次数据</to><enabled>Y</enabled> </hop> | |
| 358 | + <hop> <from>按照班次类型过滤数据2</from><to>出场班次数据</to><enabled>Y</enabled> </hop> | |
| 359 | + <hop> <from>按照班次类型过滤数据2</from><to>进场班次数据</to><enabled>Y</enabled> </hop> | |
| 360 | + <hop> <from>查找线路上下行里程时间</from><to>匹配上下行正常班次里程时间</to><enabled>Y</enabled> </hop> | |
| 361 | + <hop> <from>查找终点站关联</from><to>上下行字典</to><enabled>Y</enabled> </hop> | |
| 362 | + <hop> <from>查找起点站关联并确定上下行</from><to>查找终点站关联</to><enabled>Y</enabled> </hop> | |
| 363 | + <hop> <from>正常班次_处理数据</from><to>查找起点站关联并确定上下行</to><enabled>Y</enabled> </hop> | |
| 364 | + <hop> <from>正常班次数据</from><to>正常班次_处理数据</to><enabled>Y</enabled> </hop> | |
| 365 | + <hop> <from>班次类型字典</from><to>查找线路上下行里程时间</to><enabled>Y</enabled> </hop> | |
| 366 | + <hop> <from>班次类型字典 2</from><to>查找线路出场里程时间</to><enabled>Y</enabled> </hop> | |
| 367 | + <hop> <from>班次类型字典 3</from><to>查找线路进场里程时间</to><enabled>Y</enabled> </hop> | |
| 368 | + <hop> <from>查找路牌关联</from><to>计算班次类型</to><enabled>Y</enabled> </hop> | |
| 369 | + <hop> <from>计算班次类型</from><to>按照班次类型过滤数据1</to><enabled>Y</enabled> </hop> | |
| 370 | + <hop> <from>出场班次数据</from><to>查找停车场1</to><enabled>Y</enabled> </hop> | |
| 371 | + <hop> <from>查找停车场1</from><to>出场班次_确定终点站名字</to><enabled>Y</enabled> </hop> | |
| 372 | + <hop> <from>出场班次_确定终点站名字</from><to>查找出场终点站关联并确定上下行</to><enabled>Y</enabled> </hop> | |
| 373 | + <hop> <from>查找出场终点站关联并确定上下行</from><to>上下行字典 2</to><enabled>Y</enabled> </hop> | |
| 374 | + <hop> <from>进场班次数据</from><to>查找停车场2</to><enabled>Y</enabled> </hop> | |
| 375 | + <hop> <from>查找停车场2</from><to>进场班次_确定起点站名字</to><enabled>Y</enabled> </hop> | |
| 376 | + <hop> <from>进场班次_确定起点站名字</from><to>查找进场班次上一个班次的线路方向</to><enabled>Y</enabled> </hop> | |
| 377 | + <hop> <from>查找进场班次上一个班次的线路方向</from><to>查找进场班次上一个班次的终点站,并作为进场班次的起点站</to><enabled>Y</enabled> </hop> | |
| 378 | + <hop> <from>字段选择</from><to>添加发车顺序号</to><enabled>Y</enabled> </hop> | |
| 379 | + <hop> <from>分组各个路牌的站</from><to>查找线路关联</to><enabled>Y</enabled> </hop> | |
| 380 | + <hop> <from>增加时刻表名字,线路名字,停车场名字</from><to>记录关联 (笛卡尔输出)</to><enabled>Y</enabled> </hop> | |
| 381 | + <hop> <from>班次数据范式化</from><to>记录关联 (笛卡尔输出)</to><enabled>Y</enabled> </hop> | |
| 382 | + <hop> <from>记录关联 (笛卡尔输出)</from><to>字段选择</to><enabled>Y</enabled> </hop> | |
| 383 | + <hop> <from>类型修正</from><to>插入/更新bsth_c_s_ttinfo_detail</to><enabled>Y</enabled> </hop> | |
| 384 | + <hop> <from>查找进场班次上一个班次的终点站,并作为进场班次的起点站</from><to>查找进场起点站关联确定上下行</to><enabled>Y</enabled> </hop> | |
| 385 | + <hop> <from>查找进场起点站关联确定上下行</from><to>上下行字典 3</to><enabled>Y</enabled> </hop> | |
| 386 | + <hop> <from>查找线路出场里程时间</from><to>匹配出场班次里程时间</to><enabled>Y</enabled> </hop> | |
| 387 | + <hop> <from>查找线路进场里程时间</from><to>匹配进场班次里程时间</to><enabled>Y</enabled> </hop> | |
| 388 | + <hop> <from>匹配出场班次里程时间</from><to>上下行NULL判定</to><enabled>Y</enabled> </hop> | |
| 389 | + <hop> <from>上下行NULL判定</from><to>类型修正 2</to><enabled>Y</enabled> </hop> | |
| 390 | + <hop> <from>类型修正 2</from><to>插入/更新bsth_c_s_ttinfo_detail 2</to><enabled>Y</enabled> </hop> | |
| 391 | + <hop> <from>匹配进场班次里程时间</from><to>上下行判定 2</to><enabled>Y</enabled> </hop> | |
| 392 | + <hop> <from>上下行判定 2</from><to>类型修正 3</to><enabled>Y</enabled> </hop> | |
| 393 | + <hop> <from>类型修正 3</from><to>插入/更新bsth_c_s_ttinfo_detail 3</to><enabled>Y</enabled> </hop> | |
| 394 | + </order> | |
| 395 | + <step> | |
| 396 | + <name>上下行NULL判定</name> | |
| 397 | + <type>IfNull</type> | |
| 398 | + <description/> | |
| 399 | + <distribute>Y</distribute> | |
| 400 | + <custom_distribution/> | |
| 401 | + <copies>1</copies> | |
| 402 | + <partitioning> | |
| 403 | + <method>none</method> | |
| 404 | + <schema_name/> | |
| 405 | + </partitioning> | |
| 406 | + <replaceAllByValue/> | |
| 407 | + <replaceAllMask/> | |
| 408 | + <selectFields>Y</selectFields> | |
| 409 | + <selectValuesType>N</selectValuesType> | |
| 410 | + <setEmptyStringAll>N</setEmptyStringAll> | |
| 411 | + <valuetypes> | |
| 412 | + </valuetypes> | |
| 413 | + <fields> | |
| 414 | + <field> | |
| 415 | + <name>sxx</name> | |
| 416 | + <value>0</value> | |
| 417 | + <mask/> | |
| 418 | + <set_empty_string>N</set_empty_string> | |
| 419 | + </field> | |
| 420 | + </fields> | |
| 421 | + <cluster_schema/> | |
| 422 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 423 | + <xloc>335</xloc> | |
| 424 | + <yloc>938</yloc> | |
| 425 | + <draw>Y</draw> | |
| 426 | + </GUI> | |
| 427 | + </step> | |
| 428 | + | |
| 429 | + <step> | |
| 430 | + <name>上下行判定 2</name> | |
| 431 | + <type>IfNull</type> | |
| 432 | + <description/> | |
| 433 | + <distribute>Y</distribute> | |
| 434 | + <custom_distribution/> | |
| 435 | + <copies>1</copies> | |
| 436 | + <partitioning> | |
| 437 | + <method>none</method> | |
| 438 | + <schema_name/> | |
| 439 | + </partitioning> | |
| 440 | + <replaceAllByValue/> | |
| 441 | + <replaceAllMask/> | |
| 442 | + <selectFields>Y</selectFields> | |
| 443 | + <selectValuesType>N</selectValuesType> | |
| 444 | + <setEmptyStringAll>N</setEmptyStringAll> | |
| 445 | + <valuetypes> | |
| 446 | + </valuetypes> | |
| 447 | + <fields> | |
| 448 | + <field> | |
| 449 | + <name>sxx2</name> | |
| 450 | + <value>0</value> | |
| 451 | + <mask/> | |
| 452 | + <set_empty_string>N</set_empty_string> | |
| 453 | + </field> | |
| 454 | + </fields> | |
| 455 | + <cluster_schema/> | |
| 456 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 457 | + <xloc>804</xloc> | |
| 458 | + <yloc>1081</yloc> | |
| 459 | + <draw>Y</draw> | |
| 460 | + </GUI> | |
| 461 | + </step> | |
| 462 | + | |
| 463 | + <step> | |
| 464 | + <name>上下行字典</name> | |
| 465 | + <type>ValueMapper</type> | |
| 466 | + <description/> | |
| 467 | + <distribute>Y</distribute> | |
| 468 | + <custom_distribution/> | |
| 469 | + <copies>1</copies> | |
| 470 | + <partitioning> | |
| 471 | + <method>none</method> | |
| 472 | + <schema_name/> | |
| 473 | + </partitioning> | |
| 474 | + <field_to_use>sxx</field_to_use> | |
| 475 | + <target_field>sxx_desc</target_field> | |
| 476 | + <non_match_default/> | |
| 477 | + <fields> | |
| 478 | + <field> | |
| 479 | + <source_value>0</source_value> | |
| 480 | + <target_value>上行</target_value> | |
| 481 | + </field> | |
| 482 | + <field> | |
| 483 | + <source_value>1</source_value> | |
| 484 | + <target_value>下行</target_value> | |
| 485 | + </field> | |
| 486 | + </fields> | |
| 487 | + <cluster_schema/> | |
| 488 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 489 | + <xloc>147</xloc> | |
| 490 | + <yloc>403</yloc> | |
| 491 | + <draw>Y</draw> | |
| 492 | + </GUI> | |
| 493 | + </step> | |
| 494 | + | |
| 495 | + <step> | |
| 496 | + <name>上下行字典 2</name> | |
| 497 | + <type>ValueMapper</type> | |
| 498 | + <description/> | |
| 499 | + <distribute>Y</distribute> | |
| 500 | + <custom_distribution/> | |
| 501 | + <copies>1</copies> | |
| 502 | + <partitioning> | |
| 503 | + <method>none</method> | |
| 504 | + <schema_name/> | |
| 505 | + </partitioning> | |
| 506 | + <field_to_use>sxx</field_to_use> | |
| 507 | + <target_field>sxx_desc</target_field> | |
| 508 | + <non_match_default/> | |
| 509 | + <fields> | |
| 510 | + <field> | |
| 511 | + <source_value>0</source_value> | |
| 512 | + <target_value>上行</target_value> | |
| 513 | + </field> | |
| 514 | + <field> | |
| 515 | + <source_value>1</source_value> | |
| 516 | + <target_value>下行</target_value> | |
| 517 | + </field> | |
| 518 | + </fields> | |
| 519 | + <cluster_schema/> | |
| 520 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 521 | + <xloc>331</xloc> | |
| 522 | + <yloc>598</yloc> | |
| 523 | + <draw>Y</draw> | |
| 524 | + </GUI> | |
| 525 | + </step> | |
| 526 | + | |
| 527 | + <step> | |
| 528 | + <name>上下行字典 3</name> | |
| 529 | + <type>ValueMapper</type> | |
| 530 | + <description/> | |
| 531 | + <distribute>Y</distribute> | |
| 532 | + <custom_distribution/> | |
| 533 | + <copies>1</copies> | |
| 534 | + <partitioning> | |
| 535 | + <method>none</method> | |
| 536 | + <schema_name/> | |
| 537 | + </partitioning> | |
| 538 | + <field_to_use>sxx</field_to_use> | |
| 539 | + <target_field>sxx_desc</target_field> | |
| 540 | + <non_match_default/> | |
| 541 | + <fields> | |
| 542 | + <field> | |
| 543 | + <source_value>0</source_value> | |
| 544 | + <target_value>上行</target_value> | |
| 545 | + </field> | |
| 546 | + <field> | |
| 547 | + <source_value>1</source_value> | |
| 548 | + <target_value>下行</target_value> | |
| 549 | + </field> | |
| 550 | + </fields> | |
| 551 | + <cluster_schema/> | |
| 552 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 553 | + <xloc>553</xloc> | |
| 554 | + <yloc>859</yloc> | |
| 555 | + <draw>Y</draw> | |
| 556 | + </GUI> | |
| 557 | + </step> | |
| 558 | + | |
| 559 | + <step> | |
| 560 | + <name>出场班次_确定终点站名字</name> | |
| 561 | + <type>ScriptValueMod</type> | |
| 562 | + <description/> | |
| 563 | + <distribute>Y</distribute> | |
| 564 | + <custom_distribution/> | |
| 565 | + <copies>1</copies> | |
| 566 | + <partitioning> | |
| 567 | + <method>none</method> | |
| 568 | + <schema_name/> | |
| 569 | + </partitioning> | |
| 570 | + <compatible>N</compatible> | |
| 571 | + <optimizationLevel>9</optimizationLevel> | |
| 572 | + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 573 | + <jsScript_name>Script 1</jsScript_name> | |
| 574 | + <jsScript_script>//Script here

// 添加站点标识
var cc_groups = qdzgroups.split(","); // 所有班次起点站数组
var zdzname = cc_groups[gno]; // 出场班次的终点站是下个班次的起始站
var endZdtype = 'B';
// var endZdtype = 'E';

var destory = 0; // 未撤销flag</jsScript_script> | |
| 575 | + </jsScript> </jsScripts> <fields> <field> <name>zdzname</name> | |
| 576 | + <rename>zdzname</rename> | |
| 577 | + <type>String</type> | |
| 578 | + <length>-1</length> | |
| 579 | + <precision>-1</precision> | |
| 580 | + <replace>N</replace> | |
| 581 | + </field> <field> <name>endZdtype</name> | |
| 582 | + <rename>endZdtype</rename> | |
| 583 | + <type>String</type> | |
| 584 | + <length>-1</length> | |
| 585 | + <precision>-1</precision> | |
| 586 | + <replace>N</replace> | |
| 587 | + </field> <field> <name>destory</name> | |
| 588 | + <rename>destory</rename> | |
| 589 | + <type>Integer</type> | |
| 590 | + <length>-1</length> | |
| 591 | + <precision>-1</precision> | |
| 592 | + <replace>N</replace> | |
| 593 | + </field> </fields> <cluster_schema/> | |
| 594 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 595 | + <xloc>575</xloc> | |
| 596 | + <yloc>502</yloc> | |
| 597 | + <draw>Y</draw> | |
| 598 | + </GUI> | |
| 599 | + </step> | |
| 600 | + | |
| 601 | + <step> | |
| 602 | + <name>出场班次数据</name> | |
| 603 | + <type>Dummy</type> | |
| 604 | + <description/> | |
| 605 | + <distribute>Y</distribute> | |
| 606 | + <custom_distribution/> | |
| 607 | + <copies>1</copies> | |
| 608 | + <partitioning> | |
| 609 | + <method>none</method> | |
| 610 | + <schema_name/> | |
| 611 | + </partitioning> | |
| 612 | + <cluster_schema/> | |
| 613 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 614 | + <xloc>869</xloc> | |
| 615 | + <yloc>504</yloc> | |
| 616 | + <draw>Y</draw> | |
| 617 | + </GUI> | |
| 618 | + </step> | |
| 619 | + | |
| 620 | + <step> | |
| 621 | + <name>分组各个路牌的站</name> | |
| 622 | + <type>GroupBy</type> | |
| 623 | + <description/> | |
| 624 | + <distribute>Y</distribute> | |
| 625 | + <custom_distribution/> | |
| 626 | + <copies>1</copies> | |
| 627 | + <partitioning> | |
| 628 | + <method>none</method> | |
| 629 | + <schema_name/> | |
| 630 | + </partitioning> | |
| 631 | + <all_rows>Y</all_rows> | |
| 632 | + <ignore_aggregate>N</ignore_aggregate> | |
| 633 | + <field_ignore/> | |
| 634 | + <directory>%%java.io.tmpdir%%</directory> | |
| 635 | + <prefix>grp</prefix> | |
| 636 | + <add_linenr>Y</add_linenr> | |
| 637 | + <linenr_fieldname>gno</linenr_fieldname> | |
| 638 | + <give_back_row>N</give_back_row> | |
| 639 | + <group> | |
| 640 | + <field> | |
| 641 | + <name>lp</name> | |
| 642 | + </field> | |
| 643 | + </group> | |
| 644 | + <fields> | |
| 645 | + <field> | |
| 646 | + <aggregate>qdzgroups</aggregate> | |
| 647 | + <subject>qdzname</subject> | |
| 648 | + <type>CONCAT_STRING</type> | |
| 649 | + <valuefield>,</valuefield> | |
| 650 | + </field> | |
| 651 | + </fields> | |
| 652 | + <cluster_schema/> | |
| 653 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 654 | + <xloc>892</xloc> | |
| 655 | + <yloc>44</yloc> | |
| 656 | + <draw>Y</draw> | |
| 657 | + </GUI> | |
| 658 | + </step> | |
| 659 | + | |
| 660 | + <step> | |
| 661 | + <name>匹配上下行正常班次里程时间</name> | |
| 662 | + <type>ScriptValueMod</type> | |
| 663 | + <description/> | |
| 664 | + <distribute>Y</distribute> | |
| 665 | + <custom_distribution/> | |
| 666 | + <copies>1</copies> | |
| 667 | + <partitioning> | |
| 668 | + <method>none</method> | |
| 669 | + <schema_name/> | |
| 670 | + </partitioning> | |
| 671 | + <compatible>N</compatible> | |
| 672 | + <optimizationLevel>9</optimizationLevel> | |
| 673 | + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 674 | + <jsScript_name>Script 1</jsScript_name> | |
| 675 | + <jsScript_script>//Script here

var jhlc; // 计划里程
var bcsj; // 班次时间

if (sxx == 0) { // 上行
 jhlc = up_mileage;
 bcsj = up_travel_time;
} else { // sxx == 1 下行
 jhlc = down_mileage;
 bcsj = down_travel_time;
}</jsScript_script> | |
| 676 | + </jsScript> </jsScripts> <fields> <field> <name>jhlc</name> | |
| 677 | + <rename>jhlc</rename> | |
| 678 | + <type>String</type> | |
| 679 | + <length>-1</length> | |
| 680 | + <precision>-1</precision> | |
| 681 | + <replace>N</replace> | |
| 682 | + </field> <field> <name>bcsj</name> | |
| 683 | + <rename>bcsj</rename> | |
| 684 | + <type>String</type> | |
| 685 | + <length>-1</length> | |
| 686 | + <precision>-1</precision> | |
| 687 | + <replace>N</replace> | |
| 688 | + </field> </fields> <cluster_schema/> | |
| 689 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 690 | + <xloc>148</xloc> | |
| 691 | + <yloc>674</yloc> | |
| 692 | + <draw>Y</draw> | |
| 693 | + </GUI> | |
| 694 | + </step> | |
| 695 | + | |
| 696 | + <step> | |
| 697 | + <name>匹配出场班次里程时间</name> | |
| 698 | + <type>ScriptValueMod</type> | |
| 699 | + <description/> | |
| 700 | + <distribute>Y</distribute> | |
| 701 | + <custom_distribution/> | |
| 702 | + <copies>1</copies> | |
| 703 | + <partitioning> | |
| 704 | + <method>none</method> | |
| 705 | + <schema_name/> | |
| 706 | + </partitioning> | |
| 707 | + <compatible>N</compatible> | |
| 708 | + <optimizationLevel>9</optimizationLevel> | |
| 709 | + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 710 | + <jsScript_name>Script 1</jsScript_name> | |
| 711 | + <jsScript_script>//Script here

var out_mileage; // 出场计划里程
var out_time; // 出场计划时间

if (sxx == 0) { // 上行
 out_mileage = up_out_mileage;
 out_time = up_out_timer;
} else { // sxx == 1 下行
 out_mileage = down_out_mileage;
 out_time = down_out_timer;
}



</jsScript_script> | |
| 712 | + </jsScript> </jsScripts> <fields> <field> <name>out_mileage</name> | |
| 713 | + <rename>out_mileage</rename> | |
| 714 | + <type>String</type> | |
| 715 | + <length>-1</length> | |
| 716 | + <precision>-1</precision> | |
| 717 | + <replace>N</replace> | |
| 718 | + </field> <field> <name>out_time</name> | |
| 719 | + <rename>out_time</rename> | |
| 720 | + <type>String</type> | |
| 721 | + <length>-1</length> | |
| 722 | + <precision>-1</precision> | |
| 723 | + <replace>N</replace> | |
| 724 | + </field> </fields> <cluster_schema/> | |
| 725 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 726 | + <xloc>336</xloc> | |
| 727 | + <yloc>862</yloc> | |
| 728 | + <draw>Y</draw> | |
| 729 | + </GUI> | |
| 730 | + </step> | |
| 731 | + | |
| 732 | + <step> | |
| 733 | + <name>匹配进场班次里程时间</name> | |
| 734 | + <type>ScriptValueMod</type> | |
| 735 | + <description/> | |
| 736 | + <distribute>Y</distribute> | |
| 737 | + <custom_distribution/> | |
| 738 | + <copies>1</copies> | |
| 739 | + <partitioning> | |
| 740 | + <method>none</method> | |
| 741 | + <schema_name/> | |
| 742 | + </partitioning> | |
| 743 | + <compatible>N</compatible> | |
| 744 | + <optimizationLevel>9</optimizationLevel> | |
| 745 | + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 746 | + <jsScript_name>Script 1</jsScript_name> | |
| 747 | + <jsScript_script>//Script here

var parade_mileage; // 进场计划里程
var parade_time; // 进场计划时间

if (sxx2 == 0) { // 上行
 parade_mileage = up_in_mileage;
 parade_time = up_in_timer;
} else { // sxx == 1 下行
 parade_mileage = down_in_mileage;
 parade_time = down_in_timer;
}



</jsScript_script> | |
| 748 | + </jsScript> </jsScripts> <fields> <field> <name>parade_mileage</name> | |
| 749 | + <rename>parade_mileage</rename> | |
| 750 | + <type>String</type> | |
| 751 | + <length>-1</length> | |
| 752 | + <precision>-1</precision> | |
| 753 | + <replace>N</replace> | |
| 754 | + </field> <field> <name>parade_time</name> | |
| 755 | + <rename>parade_time</rename> | |
| 756 | + <type>String</type> | |
| 757 | + <length>-1</length> | |
| 758 | + <precision>-1</precision> | |
| 759 | + <replace>N</replace> | |
| 760 | + </field> </fields> <cluster_schema/> | |
| 761 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 762 | + <xloc>726</xloc> | |
| 763 | + <yloc>1005</yloc> | |
| 764 | + <draw>Y</draw> | |
| 765 | + </GUI> | |
| 766 | + </step> | |
| 767 | + | |
| 768 | + <step> | |
| 769 | + <name>增加时刻表名字,线路名字,停车场名字</name> | |
| 770 | + <type>DataGrid</type> | |
| 771 | + <description/> | |
| 772 | + <distribute>Y</distribute> | |
| 773 | + <custom_distribution/> | |
| 774 | + <copies>1</copies> | |
| 775 | + <partitioning> | |
| 776 | + <method>none</method> | |
| 777 | + <schema_name/> | |
| 778 | + </partitioning> | |
| 779 | + <fields> | |
| 780 | + </fields> | |
| 781 | + <data> | |
| 782 | + <line> </line> | |
| 783 | + </data> | |
| 784 | + <cluster_schema/> | |
| 785 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 786 | + <xloc>110</xloc> | |
| 787 | + <yloc>133</yloc> | |
| 788 | + <draw>Y</draw> | |
| 789 | + </GUI> | |
| 790 | + </step> | |
| 791 | + | |
| 792 | + <step> | |
| 793 | + <name>处理数据</name> | |
| 794 | + <type>ScriptValueMod</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 | + <compatible>N</compatible> | |
| 804 | + <optimizationLevel>9</optimizationLevel> | |
| 805 | + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 806 | + <jsScript_name>Script 1</jsScript_name> | |
| 807 | + <jsScript_script>//Script here

// 使用正则表达式去除站点名称中的数字
qdzname = qdzname.replace(/\d+/g,'');

// sendtime处理,hhmm,hh:mm,hh,mm
var sendtime_calcu;
if (sendtime.length == 5) { // 最长格式,包括分隔符,统一把分隔符替换成冒号
 sendtime_calcu = sendtime.substr(0, 2) + ":" + sendtime.substr(3, 2);
} else if (sendtime.length == 4) {
 if (sendtime.indexOf(":") > 0) { // 冒号分隔,无需修改
 sendtime_calcu = sendtime;
 } else if (sendtime.indexOf(",") > 0) { // 逗号分隔,改成冒号分隔
 sendtime_calcu = sendtime.substr(0, 1) + ":" + sendtime.substr(2, 2);
 } else { // 无分隔符,改成冒号分隔
 sendtime_calcu = sendtime.substr(0, 2) + ":" + sendtime.substr(2, 2);
 }
} else if (sendtime.length == 3) { // 无分隔符,改成冒号分隔
 sendtime_calcu = sendtime.substr(0, 1) + ":" + sendtime.substr(1, 2);
}

// 设置分班
var isfb = 0;

// 设置isCanceled
var iscanceled = 0;</jsScript_script> | |
| 808 | + </jsScript> </jsScripts> <fields> <field> <name>qdzname</name> | |
| 809 | + <rename>qdzname</rename> | |
| 810 | + <type>String</type> | |
| 811 | + <length>-1</length> | |
| 812 | + <precision>-1</precision> | |
| 813 | + <replace>Y</replace> | |
| 814 | + </field> <field> <name>isfb</name> | |
| 815 | + <rename>isfb</rename> | |
| 816 | + <type>Integer</type> | |
| 817 | + <length>-1</length> | |
| 818 | + <precision>-1</precision> | |
| 819 | + <replace>N</replace> | |
| 820 | + </field> <field> <name>iscanceled</name> | |
| 821 | + <rename>iscanceled</rename> | |
| 822 | + <type>Integer</type> | |
| 823 | + <length>-1</length> | |
| 824 | + <precision>-1</precision> | |
| 825 | + <replace>N</replace> | |
| 826 | + </field> <field> <name>sendtime_calcu</name> | |
| 827 | + <rename>sendtime_calcu</rename> | |
| 828 | + <type>String</type> | |
| 829 | + <length>-1</length> | |
| 830 | + <precision>-1</precision> | |
| 831 | + <replace>N</replace> | |
| 832 | + </field> </fields> <cluster_schema/> | |
| 833 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 834 | + <xloc>788</xloc> | |
| 835 | + <yloc>44</yloc> | |
| 836 | + <draw>Y</draw> | |
| 837 | + </GUI> | |
| 838 | + </step> | |
| 839 | + | |
| 840 | + <step> | |
| 841 | + <name>字段选择</name> | |
| 842 | + <type>SelectValues</type> | |
| 843 | + <description/> | |
| 844 | + <distribute>Y</distribute> | |
| 845 | + <custom_distribution/> | |
| 846 | + <copies>1</copies> | |
| 847 | + <partitioning> | |
| 848 | + <method>none</method> | |
| 849 | + <schema_name/> | |
| 850 | + </partitioning> | |
| 851 | + <fields> <field> <name>路牌</name> | |
| 852 | + <rename>lp</rename> | |
| 853 | + <length>-2</length> | |
| 854 | + <precision>-2</precision> | |
| 855 | + </field> <field> <name>站点名称</name> | |
| 856 | + <rename>qdzname</rename> | |
| 857 | + <length>-2</length> | |
| 858 | + <precision>-2</precision> | |
| 859 | + </field> <field> <name>发车时间</name> | |
| 860 | + <rename>sendtime</rename> | |
| 861 | + <length>-2</length> | |
| 862 | + <precision>-2</precision> | |
| 863 | + </field> <select_unspecified>Y</select_unspecified> | |
| 864 | + </fields> <cluster_schema/> | |
| 865 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 866 | + <xloc>444</xloc> | |
| 867 | + <yloc>131</yloc> | |
| 868 | + <draw>Y</draw> | |
| 869 | + </GUI> | |
| 870 | + </step> | |
| 871 | + | |
| 872 | + <step> | |
| 873 | + <name>按照班次类型过滤数据1</name> | |
| 874 | + <type>FilterRows</type> | |
| 875 | + <description/> | |
| 876 | + <distribute>Y</distribute> | |
| 877 | + <custom_distribution/> | |
| 878 | + <copies>1</copies> | |
| 879 | + <partitioning> | |
| 880 | + <method>none</method> | |
| 881 | + <schema_name/> | |
| 882 | + </partitioning> | |
| 883 | +<send_true_to>正常班次数据</send_true_to> | |
| 884 | +<send_false_to>按照班次类型过滤数据2</send_false_to> | |
| 885 | + <compare> | |
| 886 | +<condition> | |
| 887 | + <negated>N</negated> | |
| 888 | + <leftvalue>bctype</leftvalue> | |
| 889 | + <function>=</function> | |
| 890 | + <rightvalue/> | |
| 891 | + <value><name>constant</name><type>String</type><text>正常班次</text><length>-1</length><precision>-1</precision><isnull>N</isnull><mask/></value> </condition> | |
| 892 | + </compare> | |
| 893 | + <cluster_schema/> | |
| 894 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 895 | + <xloc>860</xloc> | |
| 896 | + <yloc>401</yloc> | |
| 897 | + <draw>Y</draw> | |
| 898 | + </GUI> | |
| 899 | + </step> | |
| 900 | + | |
| 901 | + <step> | |
| 902 | + <name>按照班次类型过滤数据2</name> | |
| 903 | + <type>FilterRows</type> | |
| 904 | + <description/> | |
| 905 | + <distribute>Y</distribute> | |
| 906 | + <custom_distribution/> | |
| 907 | + <copies>1</copies> | |
| 908 | + <partitioning> | |
| 909 | + <method>none</method> | |
| 910 | + <schema_name/> | |
| 911 | + </partitioning> | |
| 912 | +<send_true_to>出场班次数据</send_true_to> | |
| 913 | +<send_false_to>进场班次数据</send_false_to> | |
| 914 | + <compare> | |
| 915 | +<condition> | |
| 916 | + <negated>N</negated> | |
| 917 | + <leftvalue>bctype</leftvalue> | |
| 918 | + <function>=</function> | |
| 919 | + <rightvalue/> | |
| 920 | + <value><name>constant</name><type>String</type><text>出场</text><length>-1</length><precision>-1</precision><isnull>N</isnull><mask/></value> </condition> | |
| 921 | + </compare> | |
| 922 | + <cluster_schema/> | |
| 923 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 924 | + <xloc>995</xloc> | |
| 925 | + <yloc>503</yloc> | |
| 926 | + <draw>Y</draw> | |
| 927 | + </GUI> | |
| 928 | + </step> | |
| 929 | + | |
| 930 | + <step> | |
| 931 | + <name>插入/更新bsth_c_s_ttinfo_detail</name> | |
| 932 | + <type>InsertUpdate</type> | |
| 933 | + <description/> | |
| 934 | + <distribute>Y</distribute> | |
| 935 | + <custom_distribution/> | |
| 936 | + <copies>1</copies> | |
| 937 | + <partitioning> | |
| 938 | + <method>none</method> | |
| 939 | + <schema_name/> | |
| 940 | + </partitioning> | |
| 941 | + <connection>bus_control_variable</connection> | |
| 942 | + <commit>100</commit> | |
| 943 | + <update_bypassed>N</update_bypassed> | |
| 944 | + <lookup> | |
| 945 | + <schema/> | |
| 946 | + <table>bsth_c_s_ttinfo_detail</table> | |
| 947 | + <key> | |
| 948 | + <name>xlid</name> | |
| 949 | + <field>xl</field> | |
| 950 | + <condition>=</condition> | |
| 951 | + <name2/> | |
| 952 | + </key> | |
| 953 | + <key> | |
| 954 | + <name>ttid</name> | |
| 955 | + <field>ttinfo</field> | |
| 956 | + <condition>=</condition> | |
| 957 | + <name2/> | |
| 958 | + </key> | |
| 959 | + <key> | |
| 960 | + <name>lpid</name> | |
| 961 | + <field>lp</field> | |
| 962 | + <condition>=</condition> | |
| 963 | + <name2/> | |
| 964 | + </key> | |
| 965 | + <key> | |
| 966 | + <name>fcno</name> | |
| 967 | + <field>fcno</field> | |
| 968 | + <condition>=</condition> | |
| 969 | + <name2/> | |
| 970 | + </key> | |
| 971 | + <key> | |
| 972 | + <name>bcs</name> | |
| 973 | + <field>bcs</field> | |
| 974 | + <condition>=</condition> | |
| 975 | + <name2/> | |
| 976 | + </key> | |
| 977 | + <value> | |
| 978 | + <name>lp</name> | |
| 979 | + <rename>lpid</rename> | |
| 980 | + <update>Y</update> | |
| 981 | + </value> | |
| 982 | + <value> | |
| 983 | + <name>bc_type</name> | |
| 984 | + <rename>bctype_code</rename> | |
| 985 | + <update>Y</update> | |
| 986 | + </value> | |
| 987 | + <value> | |
| 988 | + <name>bcs</name> | |
| 989 | + <rename>bcs</rename> | |
| 990 | + <update>Y</update> | |
| 991 | + </value> | |
| 992 | + <value> | |
| 993 | + <name>bcsj</name> | |
| 994 | + <rename>bcsj</rename> | |
| 995 | + <update>Y</update> | |
| 996 | + </value> | |
| 997 | + <value> | |
| 998 | + <name>fcno</name> | |
| 999 | + <rename>fcno</rename> | |
| 1000 | + <update>Y</update> | |
| 1001 | + </value> | |
| 1002 | + <value> | |
| 1003 | + <name>jhlc</name> | |
| 1004 | + <rename>jhlc</rename> | |
| 1005 | + <update>Y</update> | |
| 1006 | + </value> | |
| 1007 | + <value> | |
| 1008 | + <name>fcsj</name> | |
| 1009 | + <rename>sendtime_calcu</rename> | |
| 1010 | + <update>Y</update> | |
| 1011 | + </value> | |
| 1012 | + <value> | |
| 1013 | + <name>ttinfo</name> | |
| 1014 | + <rename>ttid</rename> | |
| 1015 | + <update>Y</update> | |
| 1016 | + </value> | |
| 1017 | + <value> | |
| 1018 | + <name>xl</name> | |
| 1019 | + <rename>xlid</rename> | |
| 1020 | + <update>Y</update> | |
| 1021 | + </value> | |
| 1022 | + <value> | |
| 1023 | + <name>qdz</name> | |
| 1024 | + <rename>qdzid</rename> | |
| 1025 | + <update>Y</update> | |
| 1026 | + </value> | |
| 1027 | + <value> | |
| 1028 | + <name>zdz</name> | |
| 1029 | + <rename>zdzid</rename> | |
| 1030 | + <update>Y</update> | |
| 1031 | + </value> | |
| 1032 | + <value> | |
| 1033 | + <name>xl_dir</name> | |
| 1034 | + <rename>sxx</rename> | |
| 1035 | + <update>Y</update> | |
| 1036 | + </value> | |
| 1037 | + <value> | |
| 1038 | + <name>isfb</name> | |
| 1039 | + <rename>isfb</rename> | |
| 1040 | + <update>Y</update> | |
| 1041 | + </value> | |
| 1042 | + </lookup> | |
| 1043 | + <cluster_schema/> | |
| 1044 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1045 | + <xloc>143</xloc> | |
| 1046 | + <yloc>860</yloc> | |
| 1047 | + <draw>Y</draw> | |
| 1048 | + </GUI> | |
| 1049 | + </step> | |
| 1050 | + | |
| 1051 | + <step> | |
| 1052 | + <name>插入/更新bsth_c_s_ttinfo_detail 2</name> | |
| 1053 | + <type>InsertUpdate</type> | |
| 1054 | + <description/> | |
| 1055 | + <distribute>Y</distribute> | |
| 1056 | + <custom_distribution/> | |
| 1057 | + <copies>1</copies> | |
| 1058 | + <partitioning> | |
| 1059 | + <method>none</method> | |
| 1060 | + <schema_name/> | |
| 1061 | + </partitioning> | |
| 1062 | + <connection>bus_control_variable</connection> | |
| 1063 | + <commit>100</commit> | |
| 1064 | + <update_bypassed>N</update_bypassed> | |
| 1065 | + <lookup> | |
| 1066 | + <schema/> | |
| 1067 | + <table>bsth_c_s_ttinfo_detail</table> | |
| 1068 | + <key> | |
| 1069 | + <name>xlid</name> | |
| 1070 | + <field>xl</field> | |
| 1071 | + <condition>=</condition> | |
| 1072 | + <name2/> | |
| 1073 | + </key> | |
| 1074 | + <key> | |
| 1075 | + <name>ttid</name> | |
| 1076 | + <field>ttinfo</field> | |
| 1077 | + <condition>=</condition> | |
| 1078 | + <name2/> | |
| 1079 | + </key> | |
| 1080 | + <key> | |
| 1081 | + <name>lpid</name> | |
| 1082 | + <field>lp</field> | |
| 1083 | + <condition>=</condition> | |
| 1084 | + <name2/> | |
| 1085 | + </key> | |
| 1086 | + <key> | |
| 1087 | + <name>fcno</name> | |
| 1088 | + <field>fcno</field> | |
| 1089 | + <condition>=</condition> | |
| 1090 | + <name2/> | |
| 1091 | + </key> | |
| 1092 | + <key> | |
| 1093 | + <name>bcs</name> | |
| 1094 | + <field>bcs</field> | |
| 1095 | + <condition>=</condition> | |
| 1096 | + <name2/> | |
| 1097 | + </key> | |
| 1098 | + <value> | |
| 1099 | + <name>tcc</name> | |
| 1100 | + <rename>qdzid</rename> | |
| 1101 | + <update>Y</update> | |
| 1102 | + </value> | |
| 1103 | + <value> | |
| 1104 | + <name>zdz</name> | |
| 1105 | + <rename>zdzid</rename> | |
| 1106 | + <update>Y</update> | |
| 1107 | + </value> | |
| 1108 | + <value> | |
| 1109 | + <name>xl</name> | |
| 1110 | + <rename>xlid</rename> | |
| 1111 | + <update>Y</update> | |
| 1112 | + </value> | |
| 1113 | + <value> | |
| 1114 | + <name>ttinfo</name> | |
| 1115 | + <rename>ttid</rename> | |
| 1116 | + <update>Y</update> | |
| 1117 | + </value> | |
| 1118 | + <value> | |
| 1119 | + <name>xl_dir</name> | |
| 1120 | + <rename>sxx</rename> | |
| 1121 | + <update>Y</update> | |
| 1122 | + </value> | |
| 1123 | + <value> | |
| 1124 | + <name>lp</name> | |
| 1125 | + <rename>lpid</rename> | |
| 1126 | + <update>Y</update> | |
| 1127 | + </value> | |
| 1128 | + <value> | |
| 1129 | + <name>jhlc</name> | |
| 1130 | + <rename>out_mileage</rename> | |
| 1131 | + <update>Y</update> | |
| 1132 | + </value> | |
| 1133 | + <value> | |
| 1134 | + <name>fcsj</name> | |
| 1135 | + <rename>sendtime_calcu</rename> | |
| 1136 | + <update>Y</update> | |
| 1137 | + </value> | |
| 1138 | + <value> | |
| 1139 | + <name>bcsj</name> | |
| 1140 | + <rename>out_time</rename> | |
| 1141 | + <update>Y</update> | |
| 1142 | + </value> | |
| 1143 | + <value> | |
| 1144 | + <name>bcs</name> | |
| 1145 | + <rename>bcs</rename> | |
| 1146 | + <update>Y</update> | |
| 1147 | + </value> | |
| 1148 | + <value> | |
| 1149 | + <name>fcno</name> | |
| 1150 | + <rename>fcno</rename> | |
| 1151 | + <update>Y</update> | |
| 1152 | + </value> | |
| 1153 | + <value> | |
| 1154 | + <name>bc_type</name> | |
| 1155 | + <rename>bctype_code</rename> | |
| 1156 | + <update>Y</update> | |
| 1157 | + </value> | |
| 1158 | + <value> | |
| 1159 | + <name>isfb</name> | |
| 1160 | + <rename>isfb</rename> | |
| 1161 | + <update>Y</update> | |
| 1162 | + </value> | |
| 1163 | + </lookup> | |
| 1164 | + <cluster_schema/> | |
| 1165 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1166 | + <xloc>340</xloc> | |
| 1167 | + <yloc>1087</yloc> | |
| 1168 | + <draw>Y</draw> | |
| 1169 | + </GUI> | |
| 1170 | + </step> | |
| 1171 | + | |
| 1172 | + <step> | |
| 1173 | + <name>插入/更新bsth_c_s_ttinfo_detail 3</name> | |
| 1174 | + <type>InsertUpdate</type> | |
| 1175 | + <description/> | |
| 1176 | + <distribute>Y</distribute> | |
| 1177 | + <custom_distribution/> | |
| 1178 | + <copies>1</copies> | |
| 1179 | + <partitioning> | |
| 1180 | + <method>none</method> | |
| 1181 | + <schema_name/> | |
| 1182 | + </partitioning> | |
| 1183 | + <connection>bus_control_variable</connection> | |
| 1184 | + <commit>100</commit> | |
| 1185 | + <update_bypassed>N</update_bypassed> | |
| 1186 | + <lookup> | |
| 1187 | + <schema/> | |
| 1188 | + <table>bsth_c_s_ttinfo_detail</table> | |
| 1189 | + <key> | |
| 1190 | + <name>xlid</name> | |
| 1191 | + <field>xl</field> | |
| 1192 | + <condition>=</condition> | |
| 1193 | + <name2/> | |
| 1194 | + </key> | |
| 1195 | + <key> | |
| 1196 | + <name>ttid</name> | |
| 1197 | + <field>ttinfo</field> | |
| 1198 | + <condition>=</condition> | |
| 1199 | + <name2/> | |
| 1200 | + </key> | |
| 1201 | + <key> | |
| 1202 | + <name>lpid</name> | |
| 1203 | + <field>lp</field> | |
| 1204 | + <condition>=</condition> | |
| 1205 | + <name2/> | |
| 1206 | + </key> | |
| 1207 | + <key> | |
| 1208 | + <name>fcno</name> | |
| 1209 | + <field>fcno</field> | |
| 1210 | + <condition>=</condition> | |
| 1211 | + <name2/> | |
| 1212 | + </key> | |
| 1213 | + <key> | |
| 1214 | + <name>bcs</name> | |
| 1215 | + <field>bcs</field> | |
| 1216 | + <condition>=</condition> | |
| 1217 | + <name2/> | |
| 1218 | + </key> | |
| 1219 | + <value> | |
| 1220 | + <name>fcno</name> | |
| 1221 | + <rename>fcno</rename> | |
| 1222 | + <update>Y</update> | |
| 1223 | + </value> | |
| 1224 | + <value> | |
| 1225 | + <name>bcs</name> | |
| 1226 | + <rename>bcs</rename> | |
| 1227 | + <update>Y</update> | |
| 1228 | + </value> | |
| 1229 | + <value> | |
| 1230 | + <name>xl</name> | |
| 1231 | + <rename>xlid</rename> | |
| 1232 | + <update>Y</update> | |
| 1233 | + </value> | |
| 1234 | + <value> | |
| 1235 | + <name>ttinfo</name> | |
| 1236 | + <rename>ttid</rename> | |
| 1237 | + <update>Y</update> | |
| 1238 | + </value> | |
| 1239 | + <value> | |
| 1240 | + <name>lp</name> | |
| 1241 | + <rename>lpid</rename> | |
| 1242 | + <update>Y</update> | |
| 1243 | + </value> | |
| 1244 | + <value> | |
| 1245 | + <name>bc_type</name> | |
| 1246 | + <rename>bctype_code</rename> | |
| 1247 | + <update>Y</update> | |
| 1248 | + </value> | |
| 1249 | + <value> | |
| 1250 | + <name>bcsj</name> | |
| 1251 | + <rename>parade_time</rename> | |
| 1252 | + <update>Y</update> | |
| 1253 | + </value> | |
| 1254 | + <value> | |
| 1255 | + <name>jhlc</name> | |
| 1256 | + <rename>parade_mileage</rename> | |
| 1257 | + <update>Y</update> | |
| 1258 | + </value> | |
| 1259 | + <value> | |
| 1260 | + <name>fcsj</name> | |
| 1261 | + <rename>sendtime_calcu</rename> | |
| 1262 | + <update>Y</update> | |
| 1263 | + </value> | |
| 1264 | + <value> | |
| 1265 | + <name>xl_dir</name> | |
| 1266 | + <rename>sxx2</rename> | |
| 1267 | + <update>Y</update> | |
| 1268 | + </value> | |
| 1269 | + <value> | |
| 1270 | + <name>qdz</name> | |
| 1271 | + <rename>qdzid</rename> | |
| 1272 | + <update>Y</update> | |
| 1273 | + </value> | |
| 1274 | + <value> | |
| 1275 | + <name>tcc</name> | |
| 1276 | + <rename>zdzid</rename> | |
| 1277 | + <update>Y</update> | |
| 1278 | + </value> | |
| 1279 | + <value> | |
| 1280 | + <name>isfb</name> | |
| 1281 | + <rename>isfb</rename> | |
| 1282 | + <update>Y</update> | |
| 1283 | + </value> | |
| 1284 | + </lookup> | |
| 1285 | + <cluster_schema/> | |
| 1286 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1287 | + <xloc>845</xloc> | |
| 1288 | + <yloc>899</yloc> | |
| 1289 | + <draw>Y</draw> | |
| 1290 | + </GUI> | |
| 1291 | + </step> | |
| 1292 | + | |
| 1293 | + <step> | |
| 1294 | + <name>时刻表明细信息Excel输入</name> | |
| 1295 | + <type>ExcelInput</type> | |
| 1296 | + <description/> | |
| 1297 | + <distribute>N</distribute> | |
| 1298 | + <custom_distribution/> | |
| 1299 | + <copies>1</copies> | |
| 1300 | + <partitioning> | |
| 1301 | + <method>none</method> | |
| 1302 | + <schema_name/> | |
| 1303 | + </partitioning> | |
| 1304 | + <header>Y</header> | |
| 1305 | + <noempty>Y</noempty> | |
| 1306 | + <stoponempty>N</stoponempty> | |
| 1307 | + <filefield/> | |
| 1308 | + <sheetfield/> | |
| 1309 | + <sheetrownumfield/> | |
| 1310 | + <rownumfield/> | |
| 1311 | + <sheetfield/> | |
| 1312 | + <filefield/> | |
| 1313 | + <limit>0</limit> | |
| 1314 | + <encoding/> | |
| 1315 | + <add_to_result_filenames>Y</add_to_result_filenames> | |
| 1316 | + <accept_filenames>N</accept_filenames> | |
| 1317 | + <accept_field/> | |
| 1318 | + <accept_stepname/> | |
| 1319 | + <file> | |
| 1320 | + <name/> | |
| 1321 | + <filemask/> | |
| 1322 | + <exclude_filemask/> | |
| 1323 | + <file_required>N</file_required> | |
| 1324 | + <include_subfolders>N</include_subfolders> | |
| 1325 | + </file> | |
| 1326 | + <fields> | |
| 1327 | + </fields> | |
| 1328 | + <sheets> | |
| 1329 | + <sheet> | |
| 1330 | + <name/> | |
| 1331 | + <startrow>0</startrow> | |
| 1332 | + <startcol>0</startcol> | |
| 1333 | + </sheet> | |
| 1334 | + </sheets> | |
| 1335 | + <strict_types>N</strict_types> | |
| 1336 | + <error_ignored>N</error_ignored> | |
| 1337 | + <error_line_skipped>N</error_line_skipped> | |
| 1338 | + <bad_line_files_destination_directory/> | |
| 1339 | + <bad_line_files_extension>warning</bad_line_files_extension> | |
| 1340 | + <error_line_files_destination_directory/> | |
| 1341 | + <error_line_files_extension>error</error_line_files_extension> | |
| 1342 | + <line_number_files_destination_directory/> | |
| 1343 | + <line_number_files_extension>line</line_number_files_extension> | |
| 1344 | + <shortFileFieldName/> | |
| 1345 | + <pathFieldName/> | |
| 1346 | + <hiddenFieldName/> | |
| 1347 | + <lastModificationTimeFieldName/> | |
| 1348 | + <uriNameFieldName/> | |
| 1349 | + <rootUriNameFieldName/> | |
| 1350 | + <extensionFieldName/> | |
| 1351 | + <sizeFieldName/> | |
| 1352 | + <spreadsheet_type>JXL</spreadsheet_type> | |
| 1353 | + <cluster_schema/> | |
| 1354 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1355 | + <xloc>112</xloc> | |
| 1356 | + <yloc>44</yloc> | |
| 1357 | + <draw>Y</draw> | |
| 1358 | + </GUI> | |
| 1359 | + </step> | |
| 1360 | + | |
| 1361 | + <step> | |
| 1362 | + <name>查找停车场1</name> | |
| 1363 | + <type>DBLookup</type> | |
| 1364 | + <description/> | |
| 1365 | + <distribute>Y</distribute> | |
| 1366 | + <custom_distribution/> | |
| 1367 | + <copies>1</copies> | |
| 1368 | + <partitioning> | |
| 1369 | + <method>none</method> | |
| 1370 | + <schema_name/> | |
| 1371 | + </partitioning> | |
| 1372 | + <connection>bus_control_variable</connection> | |
| 1373 | + <cache>N</cache> | |
| 1374 | + <cache_load_all>N</cache_load_all> | |
| 1375 | + <cache_size>0</cache_size> | |
| 1376 | + <lookup> | |
| 1377 | + <schema/> | |
| 1378 | + <table>bsth_c_car_park</table> | |
| 1379 | + <orderby/> | |
| 1380 | + <fail_on_multiple>N</fail_on_multiple> | |
| 1381 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 1382 | + <key> | |
| 1383 | + <name>tccname_</name> | |
| 1384 | + <field>park_name</field> | |
| 1385 | + <condition>=</condition> | |
| 1386 | + <name2/> | |
| 1387 | + </key> | |
| 1388 | + <value> | |
| 1389 | + <name>id</name> | |
| 1390 | + <rename>qdzid</rename> | |
| 1391 | + <default/> | |
| 1392 | + <type>Integer</type> | |
| 1393 | + </value> | |
| 1394 | + </lookup> | |
| 1395 | + <cluster_schema/> | |
| 1396 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1397 | + <xloc>755</xloc> | |
| 1398 | + <yloc>504</yloc> | |
| 1399 | + <draw>Y</draw> | |
| 1400 | + </GUI> | |
| 1401 | + </step> | |
| 1402 | + | |
| 1403 | + <step> | |
| 1404 | + <name>查找停车场2</name> | |
| 1405 | + <type>DBLookup</type> | |
| 1406 | + <description/> | |
| 1407 | + <distribute>Y</distribute> | |
| 1408 | + <custom_distribution/> | |
| 1409 | + <copies>1</copies> | |
| 1410 | + <partitioning> | |
| 1411 | + <method>none</method> | |
| 1412 | + <schema_name/> | |
| 1413 | + </partitioning> | |
| 1414 | + <connection>bus_control_variable</connection> | |
| 1415 | + <cache>N</cache> | |
| 1416 | + <cache_load_all>N</cache_load_all> | |
| 1417 | + <cache_size>0</cache_size> | |
| 1418 | + <lookup> | |
| 1419 | + <schema/> | |
| 1420 | + <table>bsth_c_car_park</table> | |
| 1421 | + <orderby/> | |
| 1422 | + <fail_on_multiple>N</fail_on_multiple> | |
| 1423 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 1424 | + <key> | |
| 1425 | + <name>tccname_</name> | |
| 1426 | + <field>park_name</field> | |
| 1427 | + <condition>=</condition> | |
| 1428 | + <name2/> | |
| 1429 | + </key> | |
| 1430 | + <value> | |
| 1431 | + <name>id</name> | |
| 1432 | + <rename>zdzid</rename> | |
| 1433 | + <default/> | |
| 1434 | + <type>Integer</type> | |
| 1435 | + </value> | |
| 1436 | + </lookup> | |
| 1437 | + <cluster_schema/> | |
| 1438 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1439 | + <xloc>887</xloc> | |
| 1440 | + <yloc>608</yloc> | |
| 1441 | + <draw>Y</draw> | |
| 1442 | + </GUI> | |
| 1443 | + </step> | |
| 1444 | + | |
| 1445 | + <step> | |
| 1446 | + <name>查找出场终点站关联并确定上下行</name> | |
| 1447 | + <type>DBLookup</type> | |
| 1448 | + <description/> | |
| 1449 | + <distribute>Y</distribute> | |
| 1450 | + <custom_distribution/> | |
| 1451 | + <copies>1</copies> | |
| 1452 | + <partitioning> | |
| 1453 | + <method>none</method> | |
| 1454 | + <schema_name/> | |
| 1455 | + </partitioning> | |
| 1456 | + <connection>bus_control_variable</connection> | |
| 1457 | + <cache>N</cache> | |
| 1458 | + <cache_load_all>N</cache_load_all> | |
| 1459 | + <cache_size>0</cache_size> | |
| 1460 | + <lookup> | |
| 1461 | + <schema/> | |
| 1462 | + <table>bsth_c_stationroute</table> | |
| 1463 | + <orderby/> | |
| 1464 | + <fail_on_multiple>N</fail_on_multiple> | |
| 1465 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 1466 | + <key> | |
| 1467 | + <name>xlid</name> | |
| 1468 | + <field>line</field> | |
| 1469 | + <condition>=</condition> | |
| 1470 | + <name2/> | |
| 1471 | + </key> | |
| 1472 | + <key> | |
| 1473 | + <name>zdzname</name> | |
| 1474 | + <field>station_name</field> | |
| 1475 | + <condition>=</condition> | |
| 1476 | + <name2/> | |
| 1477 | + </key> | |
| 1478 | + <key> | |
| 1479 | + <name>endZdtype</name> | |
| 1480 | + <field>station_mark</field> | |
| 1481 | + <condition>=</condition> | |
| 1482 | + <name2/> | |
| 1483 | + </key> | |
| 1484 | + <key> | |
| 1485 | + <name>destory</name> | |
| 1486 | + <field>destroy</field> | |
| 1487 | + <condition>=</condition> | |
| 1488 | + <name2/> | |
| 1489 | + </key> | |
| 1490 | + <value> | |
| 1491 | + <name>station</name> | |
| 1492 | + <rename>zdzid</rename> | |
| 1493 | + <default/> | |
| 1494 | + <type>Integer</type> | |
| 1495 | + </value> | |
| 1496 | + <value> | |
| 1497 | + <name>directions</name> | |
| 1498 | + <rename>sxx</rename> | |
| 1499 | + <default/> | |
| 1500 | + <type>Integer</type> | |
| 1501 | + </value> | |
| 1502 | + </lookup> | |
| 1503 | + <cluster_schema/> | |
| 1504 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1505 | + <xloc>329</xloc> | |
| 1506 | + <yloc>505</yloc> | |
| 1507 | + <draw>Y</draw> | |
| 1508 | + </GUI> | |
| 1509 | + </step> | |
| 1510 | + | |
| 1511 | + <step> | |
| 1512 | + <name>查找时刻表基础信息关联</name> | |
| 1513 | + <type>DBLookup</type> | |
| 1514 | + <description/> | |
| 1515 | + <distribute>Y</distribute> | |
| 1516 | + <custom_distribution/> | |
| 1517 | + <copies>1</copies> | |
| 1518 | + <partitioning> | |
| 1519 | + <method>none</method> | |
| 1520 | + <schema_name/> | |
| 1521 | + </partitioning> | |
| 1522 | + <connection>bus_control_variable</connection> | |
| 1523 | + <cache>N</cache> | |
| 1524 | + <cache_load_all>N</cache_load_all> | |
| 1525 | + <cache_size>0</cache_size> | |
| 1526 | + <lookup> | |
| 1527 | + <schema/> | |
| 1528 | + <table>bsth_c_s_ttinfo</table> | |
| 1529 | + <orderby/> | |
| 1530 | + <fail_on_multiple>N</fail_on_multiple> | |
| 1531 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 1532 | + <key> | |
| 1533 | + <name>xlid</name> | |
| 1534 | + <field>xl</field> | |
| 1535 | + <condition>=</condition> | |
| 1536 | + <name2/> | |
| 1537 | + </key> | |
| 1538 | + <key> | |
| 1539 | + <name>ttinfoname_</name> | |
| 1540 | + <field>name</field> | |
| 1541 | + <condition>=</condition> | |
| 1542 | + <name2/> | |
| 1543 | + </key> | |
| 1544 | + <key> | |
| 1545 | + <name>iscanceled</name> | |
| 1546 | + <field>is_cancel</field> | |
| 1547 | + <condition>=</condition> | |
| 1548 | + <name2/> | |
| 1549 | + </key> | |
| 1550 | + <value> | |
| 1551 | + <name>id</name> | |
| 1552 | + <rename>ttid</rename> | |
| 1553 | + <default/> | |
| 1554 | + <type>Integer</type> | |
| 1555 | + </value> | |
| 1556 | + </lookup> | |
| 1557 | + <cluster_schema/> | |
| 1558 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1559 | + <xloc>1011</xloc> | |
| 1560 | + <yloc>134</yloc> | |
| 1561 | + <draw>Y</draw> | |
| 1562 | + </GUI> | |
| 1563 | + </step> | |
| 1564 | + | |
| 1565 | + <step> | |
| 1566 | + <name>查找线路上下行里程时间</name> | |
| 1567 | + <type>DBLookup</type> | |
| 1568 | + <description/> | |
| 1569 | + <distribute>Y</distribute> | |
| 1570 | + <custom_distribution/> | |
| 1571 | + <copies>1</copies> | |
| 1572 | + <partitioning> | |
| 1573 | + <method>none</method> | |
| 1574 | + <schema_name/> | |
| 1575 | + </partitioning> | |
| 1576 | + <connection>bus_control_variable</connection> | |
| 1577 | + <cache>N</cache> | |
| 1578 | + <cache_load_all>N</cache_load_all> | |
| 1579 | + <cache_size>0</cache_size> | |
| 1580 | + <lookup> | |
| 1581 | + <schema/> | |
| 1582 | + <table>bsth_c_line_information</table> | |
| 1583 | + <orderby/> | |
| 1584 | + <fail_on_multiple>N</fail_on_multiple> | |
| 1585 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 1586 | + <key> | |
| 1587 | + <name>xlid</name> | |
| 1588 | + <field>line</field> | |
| 1589 | + <condition>=</condition> | |
| 1590 | + <name2/> | |
| 1591 | + </key> | |
| 1592 | + <value> | |
| 1593 | + <name>up_mileage</name> | |
| 1594 | + <rename>up_mileage</rename> | |
| 1595 | + <default/> | |
| 1596 | + <type>Number</type> | |
| 1597 | + </value> | |
| 1598 | + <value> | |
| 1599 | + <name>down_mileage</name> | |
| 1600 | + <rename>down_mileage</rename> | |
| 1601 | + <default/> | |
| 1602 | + <type>Number</type> | |
| 1603 | + </value> | |
| 1604 | + <value> | |
| 1605 | + <name>up_travel_time</name> | |
| 1606 | + <rename>up_travel_time</rename> | |
| 1607 | + <default/> | |
| 1608 | + <type>Number</type> | |
| 1609 | + </value> | |
| 1610 | + <value> | |
| 1611 | + <name>down_travel_time</name> | |
| 1612 | + <rename>down_travel_time</rename> | |
| 1613 | + <default/> | |
| 1614 | + <type>Number</type> | |
| 1615 | + </value> | |
| 1616 | + </lookup> | |
| 1617 | + <cluster_schema/> | |
| 1618 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1619 | + <xloc>149</xloc> | |
| 1620 | + <yloc>581</yloc> | |
| 1621 | + <draw>Y</draw> | |
| 1622 | + </GUI> | |
| 1623 | + </step> | |
| 1624 | + | |
| 1625 | + <step> | |
| 1626 | + <name>查找线路关联</name> | |
| 1627 | + <type>DBLookup</type> | |
| 1628 | + <description/> | |
| 1629 | + <distribute>Y</distribute> | |
| 1630 | + <custom_distribution/> | |
| 1631 | + <copies>1</copies> | |
| 1632 | + <partitioning> | |
| 1633 | + <method>none</method> | |
| 1634 | + <schema_name/> | |
| 1635 | + </partitioning> | |
| 1636 | + <connection>bus_control_variable</connection> | |
| 1637 | + <cache>N</cache> | |
| 1638 | + <cache_load_all>N</cache_load_all> | |
| 1639 | + <cache_size>0</cache_size> | |
| 1640 | + <lookup> | |
| 1641 | + <schema/> | |
| 1642 | + <table>bsth_c_line</table> | |
| 1643 | + <orderby/> | |
| 1644 | + <fail_on_multiple>N</fail_on_multiple> | |
| 1645 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 1646 | + <key> | |
| 1647 | + <name>xlname_</name> | |
| 1648 | + <field>name</field> | |
| 1649 | + <condition>=</condition> | |
| 1650 | + <name2/> | |
| 1651 | + </key> | |
| 1652 | + <value> | |
| 1653 | + <name>id</name> | |
| 1654 | + <rename>xlid</rename> | |
| 1655 | + <default/> | |
| 1656 | + <type>Integer</type> | |
| 1657 | + </value> | |
| 1658 | + </lookup> | |
| 1659 | + <cluster_schema/> | |
| 1660 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1661 | + <xloc>1007</xloc> | |
| 1662 | + <yloc>43</yloc> | |
| 1663 | + <draw>Y</draw> | |
| 1664 | + </GUI> | |
| 1665 | + </step> | |
| 1666 | + | |
| 1667 | + <step> | |
| 1668 | + <name>查找线路出场里程时间</name> | |
| 1669 | + <type>DBLookup</type> | |
| 1670 | + <description/> | |
| 1671 | + <distribute>Y</distribute> | |
| 1672 | + <custom_distribution/> | |
| 1673 | + <copies>1</copies> | |
| 1674 | + <partitioning> | |
| 1675 | + <method>none</method> | |
| 1676 | + <schema_name/> | |
| 1677 | + </partitioning> | |
| 1678 | + <connection>bus_control_variable</connection> | |
| 1679 | + <cache>N</cache> | |
| 1680 | + <cache_load_all>N</cache_load_all> | |
| 1681 | + <cache_size>0</cache_size> | |
| 1682 | + <lookup> | |
| 1683 | + <schema/> | |
| 1684 | + <table>bsth_c_line_information</table> | |
| 1685 | + <orderby/> | |
| 1686 | + <fail_on_multiple>N</fail_on_multiple> | |
| 1687 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 1688 | + <key> | |
| 1689 | + <name>xlid</name> | |
| 1690 | + <field>line</field> | |
| 1691 | + <condition>=</condition> | |
| 1692 | + <name2/> | |
| 1693 | + </key> | |
| 1694 | + <value> | |
| 1695 | + <name>up_out_timer</name> | |
| 1696 | + <rename>up_out_timer</rename> | |
| 1697 | + <default/> | |
| 1698 | + <type>Number</type> | |
| 1699 | + </value> | |
| 1700 | + <value> | |
| 1701 | + <name>up_out_mileage</name> | |
| 1702 | + <rename>up_out_mileage</rename> | |
| 1703 | + <default/> | |
| 1704 | + <type>Number</type> | |
| 1705 | + </value> | |
| 1706 | + <value> | |
| 1707 | + <name>down_out_timer</name> | |
| 1708 | + <rename>down_out_timer</rename> | |
| 1709 | + <default/> | |
| 1710 | + <type>Number</type> | |
| 1711 | + </value> | |
| 1712 | + <value> | |
| 1713 | + <name>down_out_mileage</name> | |
| 1714 | + <rename>down_out_mileage</rename> | |
| 1715 | + <default/> | |
| 1716 | + <type>Number</type> | |
| 1717 | + </value> | |
| 1718 | + </lookup> | |
| 1719 | + <cluster_schema/> | |
| 1720 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1721 | + <xloc>335</xloc> | |
| 1722 | + <yloc>763</yloc> | |
| 1723 | + <draw>Y</draw> | |
| 1724 | + </GUI> | |
| 1725 | + </step> | |
| 1726 | + | |
| 1727 | + <step> | |
| 1728 | + <name>查找线路进场里程时间</name> | |
| 1729 | + <type>DBLookup</type> | |
| 1730 | + <description/> | |
| 1731 | + <distribute>Y</distribute> | |
| 1732 | + <custom_distribution/> | |
| 1733 | + <copies>1</copies> | |
| 1734 | + <partitioning> | |
| 1735 | + <method>none</method> | |
| 1736 | + <schema_name/> | |
| 1737 | + </partitioning> | |
| 1738 | + <connection>bus_control_variable</connection> | |
| 1739 | + <cache>N</cache> | |
| 1740 | + <cache_load_all>N</cache_load_all> | |
| 1741 | + <cache_size>0</cache_size> | |
| 1742 | + <lookup> | |
| 1743 | + <schema/> | |
| 1744 | + <table>bsth_c_line_information</table> | |
| 1745 | + <orderby/> | |
| 1746 | + <fail_on_multiple>N</fail_on_multiple> | |
| 1747 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 1748 | + <key> | |
| 1749 | + <name>xlid</name> | |
| 1750 | + <field>line</field> | |
| 1751 | + <condition>=</condition> | |
| 1752 | + <name2/> | |
| 1753 | + </key> | |
| 1754 | + <value> | |
| 1755 | + <name>up_in_mileage</name> | |
| 1756 | + <rename>up_in_mileage</rename> | |
| 1757 | + <default/> | |
| 1758 | + <type>Number</type> | |
| 1759 | + </value> | |
| 1760 | + <value> | |
| 1761 | + <name>up_in_timer</name> | |
| 1762 | + <rename>up_in_timer</rename> | |
| 1763 | + <default/> | |
| 1764 | + <type>Number</type> | |
| 1765 | + </value> | |
| 1766 | + <value> | |
| 1767 | + <name>down_in_mileage</name> | |
| 1768 | + <rename>down_in_mileage</rename> | |
| 1769 | + <default/> | |
| 1770 | + <type>Number</type> | |
| 1771 | + </value> | |
| 1772 | + <value> | |
| 1773 | + <name>down_in_timer</name> | |
| 1774 | + <rename>down_in_timer</rename> | |
| 1775 | + <default/> | |
| 1776 | + <type>Number</type> | |
| 1777 | + </value> | |
| 1778 | + </lookup> | |
| 1779 | + <cluster_schema/> | |
| 1780 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1781 | + <xloc>553</xloc> | |
| 1782 | + <yloc>1004</yloc> | |
| 1783 | + <draw>Y</draw> | |
| 1784 | + </GUI> | |
| 1785 | + </step> | |
| 1786 | + | |
| 1787 | + <step> | |
| 1788 | + <name>查找终点站关联</name> | |
| 1789 | + <type>DBLookup</type> | |
| 1790 | + <description/> | |
| 1791 | + <distribute>Y</distribute> | |
| 1792 | + <custom_distribution/> | |
| 1793 | + <copies>1</copies> | |
| 1794 | + <partitioning> | |
| 1795 | + <method>none</method> | |
| 1796 | + <schema_name/> | |
| 1797 | + </partitioning> | |
| 1798 | + <connection>bus_control_variable</connection> | |
| 1799 | + <cache>N</cache> | |
| 1800 | + <cache_load_all>N</cache_load_all> | |
| 1801 | + <cache_size>0</cache_size> | |
| 1802 | + <lookup> | |
| 1803 | + <schema/> | |
| 1804 | + <table>bsth_c_stationroute</table> | |
| 1805 | + <orderby/> | |
| 1806 | + <fail_on_multiple>N</fail_on_multiple> | |
| 1807 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 1808 | + <key> | |
| 1809 | + <name>xlid</name> | |
| 1810 | + <field>line</field> | |
| 1811 | + <condition>=</condition> | |
| 1812 | + <name2/> | |
| 1813 | + </key> | |
| 1814 | + <key> | |
| 1815 | + <name>sxx</name> | |
| 1816 | + <field>directions</field> | |
| 1817 | + <condition>=</condition> | |
| 1818 | + <name2/> | |
| 1819 | + </key> | |
| 1820 | + <key> | |
| 1821 | + <name>endZdtype</name> | |
| 1822 | + <field>station_mark</field> | |
| 1823 | + <condition>=</condition> | |
| 1824 | + <name2/> | |
| 1825 | + </key> | |
| 1826 | + <key> | |
| 1827 | + <name>destory</name> | |
| 1828 | + <field>destroy</field> | |
| 1829 | + <condition>=</condition> | |
| 1830 | + <name2/> | |
| 1831 | + </key> | |
| 1832 | + <value> | |
| 1833 | + <name>station_name</name> | |
| 1834 | + <rename>zdzname</rename> | |
| 1835 | + <default/> | |
| 1836 | + <type>String</type> | |
| 1837 | + </value> | |
| 1838 | + <value> | |
| 1839 | + <name>station</name> | |
| 1840 | + <rename>zdzid</rename> | |
| 1841 | + <default/> | |
| 1842 | + <type>Integer</type> | |
| 1843 | + </value> | |
| 1844 | + </lookup> | |
| 1845 | + <cluster_schema/> | |
| 1846 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1847 | + <xloc>280</xloc> | |
| 1848 | + <yloc>404</yloc> | |
| 1849 | + <draw>Y</draw> | |
| 1850 | + </GUI> | |
| 1851 | + </step> | |
| 1852 | + | |
| 1853 | + <step> | |
| 1854 | + <name>查找起点站关联并确定上下行</name> | |
| 1855 | + <type>DBLookup</type> | |
| 1856 | + <description/> | |
| 1857 | + <distribute>Y</distribute> | |
| 1858 | + <custom_distribution/> | |
| 1859 | + <copies>1</copies> | |
| 1860 | + <partitioning> | |
| 1861 | + <method>none</method> | |
| 1862 | + <schema_name/> | |
| 1863 | + </partitioning> | |
| 1864 | + <connection>bus_control_variable</connection> | |
| 1865 | + <cache>N</cache> | |
| 1866 | + <cache_load_all>N</cache_load_all> | |
| 1867 | + <cache_size>0</cache_size> | |
| 1868 | + <lookup> | |
| 1869 | + <schema/> | |
| 1870 | + <table>bsth_c_stationroute</table> | |
| 1871 | + <orderby/> | |
| 1872 | + <fail_on_multiple>N</fail_on_multiple> | |
| 1873 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 1874 | + <key> | |
| 1875 | + <name>xlid</name> | |
| 1876 | + <field>line</field> | |
| 1877 | + <condition>=</condition> | |
| 1878 | + <name2/> | |
| 1879 | + </key> | |
| 1880 | + <key> | |
| 1881 | + <name>qdzname</name> | |
| 1882 | + <field>station_name</field> | |
| 1883 | + <condition>=</condition> | |
| 1884 | + <name2/> | |
| 1885 | + </key> | |
| 1886 | + <key> | |
| 1887 | + <name>sendZdtype</name> | |
| 1888 | + <field>station_mark</field> | |
| 1889 | + <condition>=</condition> | |
| 1890 | + <name2/> | |
| 1891 | + </key> | |
| 1892 | + <key> | |
| 1893 | + <name>destory</name> | |
| 1894 | + <field>destroy</field> | |
| 1895 | + <condition>=</condition> | |
| 1896 | + <name2/> | |
| 1897 | + </key> | |
| 1898 | + <value> | |
| 1899 | + <name>station</name> | |
| 1900 | + <rename>qdzid</rename> | |
| 1901 | + <default/> | |
| 1902 | + <type>Integer</type> | |
| 1903 | + </value> | |
| 1904 | + <value> | |
| 1905 | + <name>directions</name> | |
| 1906 | + <rename>sxx</rename> | |
| 1907 | + <default/> | |
| 1908 | + <type>Integer</type> | |
| 1909 | + </value> | |
| 1910 | + </lookup> | |
| 1911 | + <cluster_schema/> | |
| 1912 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1913 | + <xloc>430</xloc> | |
| 1914 | + <yloc>403</yloc> | |
| 1915 | + <draw>Y</draw> | |
| 1916 | + </GUI> | |
| 1917 | + </step> | |
| 1918 | + | |
| 1919 | + <step> | |
| 1920 | + <name>查找路牌关联</name> | |
| 1921 | + <type>DBLookup</type> | |
| 1922 | + <description/> | |
| 1923 | + <distribute>Y</distribute> | |
| 1924 | + <custom_distribution/> | |
| 1925 | + <copies>1</copies> | |
| 1926 | + <partitioning> | |
| 1927 | + <method>none</method> | |
| 1928 | + <schema_name/> | |
| 1929 | + </partitioning> | |
| 1930 | + <connection>bus_control_variable</connection> | |
| 1931 | + <cache>N</cache> | |
| 1932 | + <cache_load_all>N</cache_load_all> | |
| 1933 | + <cache_size>0</cache_size> | |
| 1934 | + <lookup> | |
| 1935 | + <schema/> | |
| 1936 | + <table>bsth_c_s_gbi</table> | |
| 1937 | + <orderby/> | |
| 1938 | + <fail_on_multiple>N</fail_on_multiple> | |
| 1939 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 1940 | + <key> | |
| 1941 | + <name>xlid</name> | |
| 1942 | + <field>xl</field> | |
| 1943 | + <condition>=</condition> | |
| 1944 | + <name2/> | |
| 1945 | + </key> | |
| 1946 | + <key> | |
| 1947 | + <name>lp</name> | |
| 1948 | + <field>lp_name</field> | |
| 1949 | + <condition>=</condition> | |
| 1950 | + <name2/> | |
| 1951 | + </key> | |
| 1952 | + <key> | |
| 1953 | + <name>iscanceled</name> | |
| 1954 | + <field>is_cancel</field> | |
| 1955 | + <condition>=</condition> | |
| 1956 | + <name2/> | |
| 1957 | + </key> | |
| 1958 | + <value> | |
| 1959 | + <name>id</name> | |
| 1960 | + <rename>lpid</rename> | |
| 1961 | + <default/> | |
| 1962 | + <type>Integer</type> | |
| 1963 | + </value> | |
| 1964 | + </lookup> | |
| 1965 | + <cluster_schema/> | |
| 1966 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1967 | + <xloc>1013</xloc> | |
| 1968 | + <yloc>265</yloc> | |
| 1969 | + <draw>Y</draw> | |
| 1970 | + </GUI> | |
| 1971 | + </step> | |
| 1972 | + | |
| 1973 | + <step> | |
| 1974 | + <name>查找进场班次上一个班次的线路方向</name> | |
| 1975 | + <type>DBLookup</type> | |
| 1976 | + <description/> | |
| 1977 | + <distribute>Y</distribute> | |
| 1978 | + <custom_distribution/> | |
| 1979 | + <copies>1</copies> | |
| 1980 | + <partitioning> | |
| 1981 | + <method>none</method> | |
| 1982 | + <schema_name/> | |
| 1983 | + </partitioning> | |
| 1984 | + <connection>bus_control_variable</connection> | |
| 1985 | + <cache>N</cache> | |
| 1986 | + <cache_load_all>N</cache_load_all> | |
| 1987 | + <cache_size>0</cache_size> | |
| 1988 | + <lookup> | |
| 1989 | + <schema/> | |
| 1990 | + <table>bsth_c_stationroute</table> | |
| 1991 | + <orderby/> | |
| 1992 | + <fail_on_multiple>N</fail_on_multiple> | |
| 1993 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 1994 | + <key> | |
| 1995 | + <name>xlid</name> | |
| 1996 | + <field>line</field> | |
| 1997 | + <condition>=</condition> | |
| 1998 | + <name2/> | |
| 1999 | + </key> | |
| 2000 | + <key> | |
| 2001 | + <name>startZdtype_calcu</name> | |
| 2002 | + <field>station_mark</field> | |
| 2003 | + <condition>=</condition> | |
| 2004 | + <name2/> | |
| 2005 | + </key> | |
| 2006 | + <key> | |
| 2007 | + <name>qdzname_calcu</name> | |
| 2008 | + <field>station_name</field> | |
| 2009 | + <condition>=</condition> | |
| 2010 | + <name2/> | |
| 2011 | + </key> | |
| 2012 | + <key> | |
| 2013 | + <name>destory</name> | |
| 2014 | + <field>destroy</field> | |
| 2015 | + <condition>=</condition> | |
| 2016 | + <name2/> | |
| 2017 | + </key> | |
| 2018 | + <value> | |
| 2019 | + <name>directions</name> | |
| 2020 | + <rename>sxx</rename> | |
| 2021 | + <default/> | |
| 2022 | + <type>String</type> | |
| 2023 | + </value> | |
| 2024 | + </lookup> | |
| 2025 | + <cluster_schema/> | |
| 2026 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2027 | + <xloc>548</xloc> | |
| 2028 | + <yloc>610</yloc> | |
| 2029 | + <draw>Y</draw> | |
| 2030 | + </GUI> | |
| 2031 | + </step> | |
| 2032 | + | |
| 2033 | + <step> | |
| 2034 | + <name>查找进场班次上一个班次的终点站,并作为进场班次的起点站</name> | |
| 2035 | + <type>DBLookup</type> | |
| 2036 | + <description/> | |
| 2037 | + <distribute>Y</distribute> | |
| 2038 | + <custom_distribution/> | |
| 2039 | + <copies>1</copies> | |
| 2040 | + <partitioning> | |
| 2041 | + <method>none</method> | |
| 2042 | + <schema_name/> | |
| 2043 | + </partitioning> | |
| 2044 | + <connection>bus_control_variable</connection> | |
| 2045 | + <cache>Y</cache> | |
| 2046 | + <cache_load_all>Y</cache_load_all> | |
| 2047 | + <cache_size>0</cache_size> | |
| 2048 | + <lookup> | |
| 2049 | + <schema/> | |
| 2050 | + <table>bsth_c_stationroute</table> | |
| 2051 | + <orderby/> | |
| 2052 | + <fail_on_multiple>N</fail_on_multiple> | |
| 2053 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 2054 | + <key> | |
| 2055 | + <name>xlid</name> | |
| 2056 | + <field>line</field> | |
| 2057 | + <condition>=</condition> | |
| 2058 | + <name2/> | |
| 2059 | + </key> | |
| 2060 | + <key> | |
| 2061 | + <name>endZdtype_calcu</name> | |
| 2062 | + <field>station_mark</field> | |
| 2063 | + <condition>=</condition> | |
| 2064 | + <name2/> | |
| 2065 | + </key> | |
| 2066 | + <key> | |
| 2067 | + <name>sxx</name> | |
| 2068 | + <field>directions</field> | |
| 2069 | + <condition>=</condition> | |
| 2070 | + <name2/> | |
| 2071 | + </key> | |
| 2072 | + <key> | |
| 2073 | + <name>destory</name> | |
| 2074 | + <field>destroy</field> | |
| 2075 | + <condition>=</condition> | |
| 2076 | + <name2/> | |
| 2077 | + </key> | |
| 2078 | + <value> | |
| 2079 | + <name>station_name</name> | |
| 2080 | + <rename>zdzname_calcu</rename> | |
| 2081 | + <default/> | |
| 2082 | + <type>Integer</type> | |
| 2083 | + </value> | |
| 2084 | + </lookup> | |
| 2085 | + <cluster_schema/> | |
| 2086 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2087 | + <xloc>550</xloc> | |
| 2088 | + <yloc>701</yloc> | |
| 2089 | + <draw>Y</draw> | |
| 2090 | + </GUI> | |
| 2091 | + </step> | |
| 2092 | + | |
| 2093 | + <step> | |
| 2094 | + <name>查找进场起点站关联确定上下行</name> | |
| 2095 | + <type>DBLookup</type> | |
| 2096 | + <description/> | |
| 2097 | + <distribute>Y</distribute> | |
| 2098 | + <custom_distribution/> | |
| 2099 | + <copies>1</copies> | |
| 2100 | + <partitioning> | |
| 2101 | + <method>none</method> | |
| 2102 | + <schema_name/> | |
| 2103 | + </partitioning> | |
| 2104 | + <connection>bus_control_variable</connection> | |
| 2105 | + <cache>N</cache> | |
| 2106 | + <cache_load_all>N</cache_load_all> | |
| 2107 | + <cache_size>0</cache_size> | |
| 2108 | + <lookup> | |
| 2109 | + <schema/> | |
| 2110 | + <table>bsth_c_stationroute</table> | |
| 2111 | + <orderby/> | |
| 2112 | + <fail_on_multiple>N</fail_on_multiple> | |
| 2113 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 2114 | + <key> | |
| 2115 | + <name>xlid</name> | |
| 2116 | + <field>line</field> | |
| 2117 | + <condition>=</condition> | |
| 2118 | + <name2/> | |
| 2119 | + </key> | |
| 2120 | + <key> | |
| 2121 | + <name>zdzname_calcu</name> | |
| 2122 | + <field>station_name</field> | |
| 2123 | + <condition>=</condition> | |
| 2124 | + <name2/> | |
| 2125 | + </key> | |
| 2126 | + <key> | |
| 2127 | + <name>startZdtype_calcu</name> | |
| 2128 | + <field>station_mark</field> | |
| 2129 | + <condition>=</condition> | |
| 2130 | + <name2/> | |
| 2131 | + </key> | |
| 2132 | + <key> | |
| 2133 | + <name>destory</name> | |
| 2134 | + <field>destroy</field> | |
| 2135 | + <condition>=</condition> | |
| 2136 | + <name2/> | |
| 2137 | + </key> | |
| 2138 | + <value> | |
| 2139 | + <name>directions</name> | |
| 2140 | + <rename>sxx2</rename> | |
| 2141 | + <default/> | |
| 2142 | + <type>Integer</type> | |
| 2143 | + </value> | |
| 2144 | + <value> | |
| 2145 | + <name>station</name> | |
| 2146 | + <rename>qdzid</rename> | |
| 2147 | + <default/> | |
| 2148 | + <type>Integer</type> | |
| 2149 | + </value> | |
| 2150 | + </lookup> | |
| 2151 | + <cluster_schema/> | |
| 2152 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2153 | + <xloc>551</xloc> | |
| 2154 | + <yloc>782</yloc> | |
| 2155 | + <draw>Y</draw> | |
| 2156 | + </GUI> | |
| 2157 | + </step> | |
| 2158 | + | |
| 2159 | + <step> | |
| 2160 | + <name>正常班次_处理数据</name> | |
| 2161 | + <type>ScriptValueMod</type> | |
| 2162 | + <description/> | |
| 2163 | + <distribute>Y</distribute> | |
| 2164 | + <custom_distribution/> | |
| 2165 | + <copies>1</copies> | |
| 2166 | + <partitioning> | |
| 2167 | + <method>none</method> | |
| 2168 | + <schema_name/> | |
| 2169 | + </partitioning> | |
| 2170 | + <compatible>N</compatible> | |
| 2171 | + <optimizationLevel>9</optimizationLevel> | |
| 2172 | + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 2173 | + <jsScript_name>Script 1</jsScript_name> | |
| 2174 | + <jsScript_script>//Script here

// 添加站点标识
var sendZdtype = 'B';
var endZdtype = 'E';

var destory = 0; // 未撤销flag</jsScript_script> | |
| 2175 | + </jsScript> </jsScripts> <fields> <field> <name>sendZdtype</name> | |
| 2176 | + <rename>sendZdtype</rename> | |
| 2177 | + <type>String</type> | |
| 2178 | + <length>-1</length> | |
| 2179 | + <precision>-1</precision> | |
| 2180 | + <replace>N</replace> | |
| 2181 | + </field> <field> <name>endZdtype</name> | |
| 2182 | + <rename>endZdtype</rename> | |
| 2183 | + <type>String</type> | |
| 2184 | + <length>-1</length> | |
| 2185 | + <precision>-1</precision> | |
| 2186 | + <replace>N</replace> | |
| 2187 | + </field> <field> <name>destory</name> | |
| 2188 | + <rename>destory</rename> | |
| 2189 | + <type>Integer</type> | |
| 2190 | + <length>-1</length> | |
| 2191 | + <precision>-1</precision> | |
| 2192 | + <replace>N</replace> | |
| 2193 | + </field> </fields> <cluster_schema/> | |
| 2194 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2195 | + <xloc>588</xloc> | |
| 2196 | + <yloc>403</yloc> | |
| 2197 | + <draw>Y</draw> | |
| 2198 | + </GUI> | |
| 2199 | + </step> | |
| 2200 | + | |
| 2201 | + <step> | |
| 2202 | + <name>正常班次数据</name> | |
| 2203 | + <type>Dummy</type> | |
| 2204 | + <description/> | |
| 2205 | + <distribute>Y</distribute> | |
| 2206 | + <custom_distribution/> | |
| 2207 | + <copies>1</copies> | |
| 2208 | + <partitioning> | |
| 2209 | + <method>none</method> | |
| 2210 | + <schema_name/> | |
| 2211 | + </partitioning> | |
| 2212 | + <cluster_schema/> | |
| 2213 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2214 | + <xloc>725</xloc> | |
| 2215 | + <yloc>404</yloc> | |
| 2216 | + <draw>Y</draw> | |
| 2217 | + </GUI> | |
| 2218 | + </step> | |
| 2219 | + | |
| 2220 | + <step> | |
| 2221 | + <name>添加发车顺序号</name> | |
| 2222 | + <type>GroupBy</type> | |
| 2223 | + <description/> | |
| 2224 | + <distribute>Y</distribute> | |
| 2225 | + <custom_distribution/> | |
| 2226 | + <copies>1</copies> | |
| 2227 | + <partitioning> | |
| 2228 | + <method>none</method> | |
| 2229 | + <schema_name/> | |
| 2230 | + </partitioning> | |
| 2231 | + <all_rows>Y</all_rows> | |
| 2232 | + <ignore_aggregate>N</ignore_aggregate> | |
| 2233 | + <field_ignore/> | |
| 2234 | + <directory>%%java.io.tmpdir%%</directory> | |
| 2235 | + <prefix>grp</prefix> | |
| 2236 | + <add_linenr>Y</add_linenr> | |
| 2237 | + <linenr_fieldname>fcno</linenr_fieldname> | |
| 2238 | + <give_back_row>N</give_back_row> | |
| 2239 | + <group> | |
| 2240 | + <field> | |
| 2241 | + <name>lp</name> | |
| 2242 | + </field> | |
| 2243 | + </group> | |
| 2244 | + <fields> | |
| 2245 | + </fields> | |
| 2246 | + <cluster_schema/> | |
| 2247 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2248 | + <xloc>442</xloc> | |
| 2249 | + <yloc>44</yloc> | |
| 2250 | + <draw>Y</draw> | |
| 2251 | + </GUI> | |
| 2252 | + </step> | |
| 2253 | + | |
| 2254 | + <step> | |
| 2255 | + <name>添加对应班次数</name> | |
| 2256 | + <type>GroupBy</type> | |
| 2257 | + <description/> | |
| 2258 | + <distribute>Y</distribute> | |
| 2259 | + <custom_distribution/> | |
| 2260 | + <copies>1</copies> | |
| 2261 | + <partitioning> | |
| 2262 | + <method>none</method> | |
| 2263 | + <schema_name/> | |
| 2264 | + </partitioning> | |
| 2265 | + <all_rows>Y</all_rows> | |
| 2266 | + <ignore_aggregate>N</ignore_aggregate> | |
| 2267 | + <field_ignore/> | |
| 2268 | + <directory>%%java.io.tmpdir%%</directory> | |
| 2269 | + <prefix>grp</prefix> | |
| 2270 | + <add_linenr>Y</add_linenr> | |
| 2271 | + <linenr_fieldname>bcs</linenr_fieldname> | |
| 2272 | + <give_back_row>N</give_back_row> | |
| 2273 | + <group> | |
| 2274 | + </group> | |
| 2275 | + <fields> | |
| 2276 | + </fields> | |
| 2277 | + <cluster_schema/> | |
| 2278 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2279 | + <xloc>692</xloc> | |
| 2280 | + <yloc>44</yloc> | |
| 2281 | + <draw>Y</draw> | |
| 2282 | + </GUI> | |
| 2283 | + </step> | |
| 2284 | + | |
| 2285 | + <step> | |
| 2286 | + <name>班次数据范式化</name> | |
| 2287 | + <type>Normaliser</type> | |
| 2288 | + <description/> | |
| 2289 | + <distribute>Y</distribute> | |
| 2290 | + <custom_distribution/> | |
| 2291 | + <copies>1</copies> | |
| 2292 | + <partitioning> | |
| 2293 | + <method>none</method> | |
| 2294 | + <schema_name/> | |
| 2295 | + </partitioning> | |
| 2296 | + <typefield>站点名称</typefield> | |
| 2297 | + <fields> </fields> <cluster_schema/> | |
| 2298 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2299 | + <xloc>248</xloc> | |
| 2300 | + <yloc>44</yloc> | |
| 2301 | + <draw>Y</draw> | |
| 2302 | + </GUI> | |
| 2303 | + </step> | |
| 2304 | + | |
| 2305 | + <step> | |
| 2306 | + <name>班次类型字典</name> | |
| 2307 | + <type>ValueMapper</type> | |
| 2308 | + <description/> | |
| 2309 | + <distribute>Y</distribute> | |
| 2310 | + <custom_distribution/> | |
| 2311 | + <copies>1</copies> | |
| 2312 | + <partitioning> | |
| 2313 | + <method>none</method> | |
| 2314 | + <schema_name/> | |
| 2315 | + </partitioning> | |
| 2316 | + <field_to_use>bctype</field_to_use> | |
| 2317 | + <target_field>bctype_code</target_field> | |
| 2318 | + <non_match_default>未知类型</non_match_default> | |
| 2319 | + <fields> | |
| 2320 | + <field> | |
| 2321 | + <source_value>正常班次</source_value> | |
| 2322 | + <target_value>normal</target_value> | |
| 2323 | + </field> | |
| 2324 | + <field> | |
| 2325 | + <source_value>出场</source_value> | |
| 2326 | + <target_value>out</target_value> | |
| 2327 | + </field> | |
| 2328 | + <field> | |
| 2329 | + <source_value>进场</source_value> | |
| 2330 | + <target_value>in</target_value> | |
| 2331 | + </field> | |
| 2332 | + <field> | |
| 2333 | + <source_value>加油</source_value> | |
| 2334 | + <target_value>oil</target_value> | |
| 2335 | + </field> | |
| 2336 | + <field> | |
| 2337 | + <source_value>临加</source_value> | |
| 2338 | + <target_value>temp</target_value> | |
| 2339 | + </field> | |
| 2340 | + <field> | |
| 2341 | + <source_value>区间</source_value> | |
| 2342 | + <target_value>region</target_value> | |
| 2343 | + </field> | |
| 2344 | + <field> | |
| 2345 | + <source_value>放空</source_value> | |
| 2346 | + <target_value>venting</target_value> | |
| 2347 | + </field> | |
| 2348 | + <field> | |
| 2349 | + <source_value>放大站</source_value> | |
| 2350 | + <target_value>major</target_value> | |
| 2351 | + </field> | |
| 2352 | + </fields> | |
| 2353 | + <cluster_schema/> | |
| 2354 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2355 | + <xloc>149</xloc> | |
| 2356 | + <yloc>491</yloc> | |
| 2357 | + <draw>Y</draw> | |
| 2358 | + </GUI> | |
| 2359 | + </step> | |
| 2360 | + | |
| 2361 | + <step> | |
| 2362 | + <name>班次类型字典 2</name> | |
| 2363 | + <type>ValueMapper</type> | |
| 2364 | + <description/> | |
| 2365 | + <distribute>Y</distribute> | |
| 2366 | + <custom_distribution/> | |
| 2367 | + <copies>1</copies> | |
| 2368 | + <partitioning> | |
| 2369 | + <method>none</method> | |
| 2370 | + <schema_name/> | |
| 2371 | + </partitioning> | |
| 2372 | + <field_to_use>bctype</field_to_use> | |
| 2373 | + <target_field>bctype_code</target_field> | |
| 2374 | + <non_match_default>未知类型</non_match_default> | |
| 2375 | + <fields> | |
| 2376 | + <field> | |
| 2377 | + <source_value>正常班次</source_value> | |
| 2378 | + <target_value>normal</target_value> | |
| 2379 | + </field> | |
| 2380 | + <field> | |
| 2381 | + <source_value>出场</source_value> | |
| 2382 | + <target_value>out</target_value> | |
| 2383 | + </field> | |
| 2384 | + <field> | |
| 2385 | + <source_value>进场</source_value> | |
| 2386 | + <target_value>in</target_value> | |
| 2387 | + </field> | |
| 2388 | + <field> | |
| 2389 | + <source_value>加油</source_value> | |
| 2390 | + <target_value>oil</target_value> | |
| 2391 | + </field> | |
| 2392 | + <field> | |
| 2393 | + <source_value>临加</source_value> | |
| 2394 | + <target_value>temp</target_value> | |
| 2395 | + </field> | |
| 2396 | + <field> | |
| 2397 | + <source_value>区间</source_value> | |
| 2398 | + <target_value>region</target_value> | |
| 2399 | + </field> | |
| 2400 | + <field> | |
| 2401 | + <source_value>放空</source_value> | |
| 2402 | + <target_value>venting</target_value> | |
| 2403 | + </field> | |
| 2404 | + <field> | |
| 2405 | + <source_value>放大站</source_value> | |
| 2406 | + <target_value>major</target_value> | |
| 2407 | + </field> | |
| 2408 | + </fields> | |
| 2409 | + <cluster_schema/> | |
| 2410 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2411 | + <xloc>333</xloc> | |
| 2412 | + <yloc>681</yloc> | |
| 2413 | + <draw>Y</draw> | |
| 2414 | + </GUI> | |
| 2415 | + </step> | |
| 2416 | + | |
| 2417 | + <step> | |
| 2418 | + <name>班次类型字典 3</name> | |
| 2419 | + <type>ValueMapper</type> | |
| 2420 | + <description/> | |
| 2421 | + <distribute>Y</distribute> | |
| 2422 | + <custom_distribution/> | |
| 2423 | + <copies>1</copies> | |
| 2424 | + <partitioning> | |
| 2425 | + <method>none</method> | |
| 2426 | + <schema_name/> | |
| 2427 | + </partitioning> | |
| 2428 | + <field_to_use>bctype</field_to_use> | |
| 2429 | + <target_field>bctype_code</target_field> | |
| 2430 | + <non_match_default>未知类型</non_match_default> | |
| 2431 | + <fields> | |
| 2432 | + <field> | |
| 2433 | + <source_value>正常班次</source_value> | |
| 2434 | + <target_value>normal</target_value> | |
| 2435 | + </field> | |
| 2436 | + <field> | |
| 2437 | + <source_value>出场</source_value> | |
| 2438 | + <target_value>out</target_value> | |
| 2439 | + </field> | |
| 2440 | + <field> | |
| 2441 | + <source_value>进场</source_value> | |
| 2442 | + <target_value>in</target_value> | |
| 2443 | + </field> | |
| 2444 | + <field> | |
| 2445 | + <source_value>加油</source_value> | |
| 2446 | + <target_value>oil</target_value> | |
| 2447 | + </field> | |
| 2448 | + <field> | |
| 2449 | + <source_value>临加</source_value> | |
| 2450 | + <target_value>temp</target_value> | |
| 2451 | + </field> | |
| 2452 | + <field> | |
| 2453 | + <source_value>区间</source_value> | |
| 2454 | + <target_value>region</target_value> | |
| 2455 | + </field> | |
| 2456 | + <field> | |
| 2457 | + <source_value>放空</source_value> | |
| 2458 | + <target_value>venting</target_value> | |
| 2459 | + </field> | |
| 2460 | + <field> | |
| 2461 | + <source_value>放大站</source_value> | |
| 2462 | + <target_value>major</target_value> | |
| 2463 | + </field> | |
| 2464 | + </fields> | |
| 2465 | + <cluster_schema/> | |
| 2466 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2467 | + <xloc>551</xloc> | |
| 2468 | + <yloc>928</yloc> | |
| 2469 | + <draw>Y</draw> | |
| 2470 | + </GUI> | |
| 2471 | + </step> | |
| 2472 | + | |
| 2473 | + <step> | |
| 2474 | + <name>类型修正</name> | |
| 2475 | + <type>SelectValues</type> | |
| 2476 | + <description/> | |
| 2477 | + <distribute>Y</distribute> | |
| 2478 | + <custom_distribution/> | |
| 2479 | + <copies>1</copies> | |
| 2480 | + <partitioning> | |
| 2481 | + <method>none</method> | |
| 2482 | + <schema_name/> | |
| 2483 | + </partitioning> | |
| 2484 | + <fields> <select_unspecified>N</select_unspecified> | |
| 2485 | + <meta> <name>jhlc</name> | |
| 2486 | + <rename>jhlc</rename> | |
| 2487 | + <type>Number</type> | |
| 2488 | + <length>-2</length> | |
| 2489 | + <precision>-2</precision> | |
| 2490 | + <conversion_mask/> | |
| 2491 | + <date_format_lenient>false</date_format_lenient> | |
| 2492 | + <date_format_locale/> | |
| 2493 | + <date_format_timezone/> | |
| 2494 | + <lenient_string_to_number>false</lenient_string_to_number> | |
| 2495 | + <encoding/> | |
| 2496 | + <decimal_symbol/> | |
| 2497 | + <grouping_symbol/> | |
| 2498 | + <currency_symbol/> | |
| 2499 | + <storage_type/> | |
| 2500 | + </meta> <meta> <name>bcsj</name> | |
| 2501 | + <rename>bcsj</rename> | |
| 2502 | + <type>Integer</type> | |
| 2503 | + <length>-2</length> | |
| 2504 | + <precision>-2</precision> | |
| 2505 | + <conversion_mask/> | |
| 2506 | + <date_format_lenient>false</date_format_lenient> | |
| 2507 | + <date_format_locale/> | |
| 2508 | + <date_format_timezone/> | |
| 2509 | + <lenient_string_to_number>false</lenient_string_to_number> | |
| 2510 | + <encoding/> | |
| 2511 | + <decimal_symbol/> | |
| 2512 | + <grouping_symbol/> | |
| 2513 | + <currency_symbol/> | |
| 2514 | + <storage_type/> | |
| 2515 | + </meta> </fields> <cluster_schema/> | |
| 2516 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2517 | + <xloc>146</xloc> | |
| 2518 | + <yloc>768</yloc> | |
| 2519 | + <draw>Y</draw> | |
| 2520 | + </GUI> | |
| 2521 | + </step> | |
| 2522 | + | |
| 2523 | + <step> | |
| 2524 | + <name>类型修正 2</name> | |
| 2525 | + <type>SelectValues</type> | |
| 2526 | + <description/> | |
| 2527 | + <distribute>Y</distribute> | |
| 2528 | + <custom_distribution/> | |
| 2529 | + <copies>1</copies> | |
| 2530 | + <partitioning> | |
| 2531 | + <method>none</method> | |
| 2532 | + <schema_name/> | |
| 2533 | + </partitioning> | |
| 2534 | + <fields> <select_unspecified>N</select_unspecified> | |
| 2535 | + <meta> <name>out_mileage</name> | |
| 2536 | + <rename>out_mileage</rename> | |
| 2537 | + <type>Number</type> | |
| 2538 | + <length>-2</length> | |
| 2539 | + <precision>-2</precision> | |
| 2540 | + <conversion_mask/> | |
| 2541 | + <date_format_lenient>false</date_format_lenient> | |
| 2542 | + <date_format_locale/> | |
| 2543 | + <date_format_timezone/> | |
| 2544 | + <lenient_string_to_number>false</lenient_string_to_number> | |
| 2545 | + <encoding/> | |
| 2546 | + <decimal_symbol/> | |
| 2547 | + <grouping_symbol/> | |
| 2548 | + <currency_symbol/> | |
| 2549 | + <storage_type/> | |
| 2550 | + </meta> <meta> <name>out_time</name> | |
| 2551 | + <rename>out_time</rename> | |
| 2552 | + <type>Integer</type> | |
| 2553 | + <length>-2</length> | |
| 2554 | + <precision>-2</precision> | |
| 2555 | + <conversion_mask/> | |
| 2556 | + <date_format_lenient>false</date_format_lenient> | |
| 2557 | + <date_format_locale/> | |
| 2558 | + <date_format_timezone/> | |
| 2559 | + <lenient_string_to_number>false</lenient_string_to_number> | |
| 2560 | + <encoding/> | |
| 2561 | + <decimal_symbol/> | |
| 2562 | + <grouping_symbol/> | |
| 2563 | + <currency_symbol/> | |
| 2564 | + <storage_type/> | |
| 2565 | + </meta> <meta> <name>sxx</name> | |
| 2566 | + <rename>sxx</rename> | |
| 2567 | + <type>Integer</type> | |
| 2568 | + <length>-2</length> | |
| 2569 | + <precision>-2</precision> | |
| 2570 | + <conversion_mask/> | |
| 2571 | + <date_format_lenient>false</date_format_lenient> | |
| 2572 | + <date_format_locale/> | |
| 2573 | + <date_format_timezone/> | |
| 2574 | + <lenient_string_to_number>false</lenient_string_to_number> | |
| 2575 | + <encoding/> | |
| 2576 | + <decimal_symbol/> | |
| 2577 | + <grouping_symbol/> | |
| 2578 | + <currency_symbol/> | |
| 2579 | + <storage_type/> | |
| 2580 | + </meta> </fields> <cluster_schema/> | |
| 2581 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2582 | + <xloc>338</xloc> | |
| 2583 | + <yloc>1008</yloc> | |
| 2584 | + <draw>Y</draw> | |
| 2585 | + </GUI> | |
| 2586 | + </step> | |
| 2587 | + | |
| 2588 | + <step> | |
| 2589 | + <name>类型修正 3</name> | |
| 2590 | + <type>SelectValues</type> | |
| 2591 | + <description/> | |
| 2592 | + <distribute>Y</distribute> | |
| 2593 | + <custom_distribution/> | |
| 2594 | + <copies>1</copies> | |
| 2595 | + <partitioning> | |
| 2596 | + <method>none</method> | |
| 2597 | + <schema_name/> | |
| 2598 | + </partitioning> | |
| 2599 | + <fields> <select_unspecified>N</select_unspecified> | |
| 2600 | + <meta> <name>parade_mileage</name> | |
| 2601 | + <rename>parade_mileage</rename> | |
| 2602 | + <type>Number</type> | |
| 2603 | + <length>-2</length> | |
| 2604 | + <precision>-2</precision> | |
| 2605 | + <conversion_mask/> | |
| 2606 | + <date_format_lenient>false</date_format_lenient> | |
| 2607 | + <date_format_locale/> | |
| 2608 | + <date_format_timezone/> | |
| 2609 | + <lenient_string_to_number>false</lenient_string_to_number> | |
| 2610 | + <encoding/> | |
| 2611 | + <decimal_symbol/> | |
| 2612 | + <grouping_symbol/> | |
| 2613 | + <currency_symbol/> | |
| 2614 | + <storage_type/> | |
| 2615 | + </meta> <meta> <name>parade_time</name> | |
| 2616 | + <rename>parade_time</rename> | |
| 2617 | + <type>Integer</type> | |
| 2618 | + <length>-2</length> | |
| 2619 | + <precision>-2</precision> | |
| 2620 | + <conversion_mask/> | |
| 2621 | + <date_format_lenient>false</date_format_lenient> | |
| 2622 | + <date_format_locale/> | |
| 2623 | + <date_format_timezone/> | |
| 2624 | + <lenient_string_to_number>false</lenient_string_to_number> | |
| 2625 | + <encoding/> | |
| 2626 | + <decimal_symbol/> | |
| 2627 | + <grouping_symbol/> | |
| 2628 | + <currency_symbol/> | |
| 2629 | + <storage_type/> | |
| 2630 | + </meta> <meta> <name>sxx2</name> | |
| 2631 | + <rename>sxx2</rename> | |
| 2632 | + <type>Integer</type> | |
| 2633 | + <length>-2</length> | |
| 2634 | + <precision>-2</precision> | |
| 2635 | + <conversion_mask/> | |
| 2636 | + <date_format_lenient>false</date_format_lenient> | |
| 2637 | + <date_format_locale/> | |
| 2638 | + <date_format_timezone/> | |
| 2639 | + <lenient_string_to_number>false</lenient_string_to_number> | |
| 2640 | + <encoding/> | |
| 2641 | + <decimal_symbol/> | |
| 2642 | + <grouping_symbol/> | |
| 2643 | + <currency_symbol/> | |
| 2644 | + <storage_type/> | |
| 2645 | + </meta> </fields> <cluster_schema/> | |
| 2646 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2647 | + <xloc>847</xloc> | |
| 2648 | + <yloc>1003</yloc> | |
| 2649 | + <draw>Y</draw> | |
| 2650 | + </GUI> | |
| 2651 | + </step> | |
| 2652 | + | |
| 2653 | + <step> | |
| 2654 | + <name>计算班次类型</name> | |
| 2655 | + <type>ValueMapper</type> | |
| 2656 | + <description/> | |
| 2657 | + <distribute>Y</distribute> | |
| 2658 | + <custom_distribution/> | |
| 2659 | + <copies>1</copies> | |
| 2660 | + <partitioning> | |
| 2661 | + <method>none</method> | |
| 2662 | + <schema_name/> | |
| 2663 | + </partitioning> | |
| 2664 | + <field_to_use>qdzname</field_to_use> | |
| 2665 | + <target_field>bctype</target_field> | |
| 2666 | + <non_match_default>正常班次</non_match_default> | |
| 2667 | + <fields> | |
| 2668 | + <field> | |
| 2669 | + <source_value>出场</source_value> | |
| 2670 | + <target_value>出场</target_value> | |
| 2671 | + </field> | |
| 2672 | + <field> | |
| 2673 | + <source_value>进场</source_value> | |
| 2674 | + <target_value>进场</target_value> | |
| 2675 | + </field> | |
| 2676 | + </fields> | |
| 2677 | + <cluster_schema/> | |
| 2678 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2679 | + <xloc>1014</xloc> | |
| 2680 | + <yloc>401</yloc> | |
| 2681 | + <draw>Y</draw> | |
| 2682 | + </GUI> | |
| 2683 | + </step> | |
| 2684 | + | |
| 2685 | + <step> | |
| 2686 | + <name>记录关联 (笛卡尔输出)</name> | |
| 2687 | + <type>JoinRows</type> | |
| 2688 | + <description/> | |
| 2689 | + <distribute>Y</distribute> | |
| 2690 | + <custom_distribution/> | |
| 2691 | + <copies>1</copies> | |
| 2692 | + <partitioning> | |
| 2693 | + <method>none</method> | |
| 2694 | + <schema_name/> | |
| 2695 | + </partitioning> | |
| 2696 | + <directory>%%java.io.tmpdir%%</directory> | |
| 2697 | + <prefix>out</prefix> | |
| 2698 | + <cache_size>500</cache_size> | |
| 2699 | + <main/> | |
| 2700 | + <compare> | |
| 2701 | +<condition> | |
| 2702 | + <negated>N</negated> | |
| 2703 | + <leftvalue/> | |
| 2704 | + <function>=</function> | |
| 2705 | + <rightvalue/> | |
| 2706 | + </condition> | |
| 2707 | + </compare> | |
| 2708 | + <cluster_schema/> | |
| 2709 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2710 | + <xloc>310</xloc> | |
| 2711 | + <yloc>133</yloc> | |
| 2712 | + <draw>Y</draw> | |
| 2713 | + </GUI> | |
| 2714 | + </step> | |
| 2715 | + | |
| 2716 | + <step> | |
| 2717 | + <name>过滤记录(发车时间为空)</name> | |
| 2718 | + <type>FilterRows</type> | |
| 2719 | + <description/> | |
| 2720 | + <distribute>Y</distribute> | |
| 2721 | + <custom_distribution/> | |
| 2722 | + <copies>1</copies> | |
| 2723 | + <partitioning> | |
| 2724 | + <method>none</method> | |
| 2725 | + <schema_name/> | |
| 2726 | + </partitioning> | |
| 2727 | +<send_true_to/> | |
| 2728 | +<send_false_to/> | |
| 2729 | + <compare> | |
| 2730 | +<condition> | |
| 2731 | + <negated>N</negated> | |
| 2732 | + <leftvalue>sendtime</leftvalue> | |
| 2733 | + <function>IS NOT NULL</function> | |
| 2734 | + <rightvalue/> | |
| 2735 | + </condition> | |
| 2736 | + </compare> | |
| 2737 | + <cluster_schema/> | |
| 2738 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2739 | + <xloc>571</xloc> | |
| 2740 | + <yloc>44</yloc> | |
| 2741 | + <draw>Y</draw> | |
| 2742 | + </GUI> | |
| 2743 | + </step> | |
| 2744 | + | |
| 2745 | + <step> | |
| 2746 | + <name>进场班次_确定起点站名字</name> | |
| 2747 | + <type>ScriptValueMod</type> | |
| 2748 | + <description/> | |
| 2749 | + <distribute>Y</distribute> | |
| 2750 | + <custom_distribution/> | |
| 2751 | + <copies>1</copies> | |
| 2752 | + <partitioning> | |
| 2753 | + <method>none</method> | |
| 2754 | + <schema_name/> | |
| 2755 | + </partitioning> | |
| 2756 | + <compatible>N</compatible> | |
| 2757 | + <optimizationLevel>9</optimizationLevel> | |
| 2758 | + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 2759 | + <jsScript_name>Script 1</jsScript_name> | |
| 2760 | + <jsScript_script>//Script here

// 添加站点标识
var cc_groups = qdzgroups.split(","); // 所有班次起点站数组
var qdzname_calcu = cc_groups[gno - 2]; // 进场班次的起点站是上一个班次的终点站,这里只有上一个班次的起点站,还需要计算
var startZdtype_calcu = 'B';
var endZdtype_calcu = 'E';

var destory = 0; // 未撤销flag</jsScript_script> | |
| 2761 | + </jsScript> </jsScripts> <fields> <field> <name>qdzname_calcu</name> | |
| 2762 | + <rename>qdzname_calcu</rename> | |
| 2763 | + <type>String</type> | |
| 2764 | + <length>-1</length> | |
| 2765 | + <precision>-1</precision> | |
| 2766 | + <replace>N</replace> | |
| 2767 | + </field> <field> <name>startZdtype_calcu</name> | |
| 2768 | + <rename>startZdtype_calcu</rename> | |
| 2769 | + <type>String</type> | |
| 2770 | + <length>-1</length> | |
| 2771 | + <precision>-1</precision> | |
| 2772 | + <replace>N</replace> | |
| 2773 | + </field> <field> <name>endZdtype_calcu</name> | |
| 2774 | + <rename>endZdtype_calcu</rename> | |
| 2775 | + <type>String</type> | |
| 2776 | + <length>-1</length> | |
| 2777 | + <precision>-1</precision> | |
| 2778 | + <replace>N</replace> | |
| 2779 | + </field> <field> <name>destory</name> | |
| 2780 | + <rename>destory</rename> | |
| 2781 | + <type>Integer</type> | |
| 2782 | + <length>-1</length> | |
| 2783 | + <precision>-1</precision> | |
| 2784 | + <replace>N</replace> | |
| 2785 | + </field> </fields> <cluster_schema/> | |
| 2786 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2787 | + <xloc>754</xloc> | |
| 2788 | + <yloc>610</yloc> | |
| 2789 | + <draw>Y</draw> | |
| 2790 | + </GUI> | |
| 2791 | + </step> | |
| 2792 | + | |
| 2793 | + <step> | |
| 2794 | + <name>进场班次数据</name> | |
| 2795 | + <type>Dummy</type> | |
| 2796 | + <description/> | |
| 2797 | + <distribute>Y</distribute> | |
| 2798 | + <custom_distribution/> | |
| 2799 | + <copies>1</copies> | |
| 2800 | + <partitioning> | |
| 2801 | + <method>none</method> | |
| 2802 | + <schema_name/> | |
| 2803 | + </partitioning> | |
| 2804 | + <cluster_schema/> | |
| 2805 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2806 | + <xloc>997</xloc> | |
| 2807 | + <yloc>606</yloc> | |
| 2808 | + <draw>Y</draw> | |
| 2809 | + </GUI> | |
| 2810 | + </step> | |
| 2811 | + | |
| 2812 | + <step_error_handling> | |
| 2813 | + <error> | |
| 2814 | + <source_step>插入/更新bsth_c_s_ttinfo_detail</source_step> | |
| 2815 | + <target_step/> | |
| 2816 | + <is_enabled>Y</is_enabled> | |
| 2817 | + <nr_valuename>c1</nr_valuename> | |
| 2818 | + <descriptions_valuename>c2</descriptions_valuename> | |
| 2819 | + <fields_valuename>c3</fields_valuename> | |
| 2820 | + <codes_valuename>c4</codes_valuename> | |
| 2821 | + <max_errors/> | |
| 2822 | + <max_pct_errors/> | |
| 2823 | + <min_pct_rows/> | |
| 2824 | + </error> | |
| 2825 | + </step_error_handling> | |
| 2826 | + <slave-step-copy-partition-distribution> | |
| 2827 | +</slave-step-copy-partition-distribution> | |
| 2828 | + <slave_transformation>N</slave_transformation> | |
| 2829 | + | |
| 2830 | +</transformation> | ... | ... |
src/main/resources/datatools/ktrs/ttinfodetailDataInputMetaData.ktr
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<transformation> | |
| 3 | - <info> | |
| 4 | - <name>时刻表明细导入元数据</name> | |
| 5 | - <description/> | |
| 6 | - <extended_description/> | |
| 7 | - <trans_version/> | |
| 8 | - <trans_type>Normal</trans_type> | |
| 9 | - <trans_status>0</trans_status> | |
| 10 | - <directory>/</directory> | |
| 11 | - <parameters> | |
| 12 | - <parameter> | |
| 13 | - <name>erroroutputdir</name> | |
| 14 | - <default_value>/Users/xu/resource/project_code/runtime_temp/bsth_control_u_d_files/erroroutput</default_value> | |
| 15 | - <description>ktr step配置的错误输出目录</description> | |
| 16 | - </parameter> | |
| 17 | - <parameter> | |
| 18 | - <name>excelfieldnames</name> | |
| 19 | - <default_value>路牌,出场,东川路地铁站1,塘泾路尚义路1,东川路地铁站2,塘泾路尚义路2,东川路地铁站3,塘泾路尚义路3,东川路地铁站4,塘泾路尚义路4,东川路地铁站5,塘泾路尚义路5,东川路地铁站6,塘泾路尚义路6,东川路地铁站7,塘泾路尚义路7,东川路地铁站8,塘泾路尚义路8,东川路地铁站9,塘泾路尚义路9,东川路地铁站10,塘泾路尚义路10,进场</default_value> | |
| 20 | - <description>时刻表excel输入字段名,以逗号连接</description> | |
| 21 | - </parameter> | |
| 22 | - <parameter> | |
| 23 | - <name>filepath</name> | |
| 24 | - <default_value>/Users/xu/resource/project_code/bsth_project/bsth_control_etl/闵行公交/闵行26路时刻表160630时刻表.xls</default_value> | |
| 25 | - <description>待处理导入的excel文件</description> | |
| 26 | - </parameter> | |
| 27 | - <parameter> | |
| 28 | - <name>injectktrfile</name> | |
| 29 | - <default_value>/Users/xu/resource/project_code/bsth_project/bsth_control/src/main/resources/datatools/ktrs/ttinfodetailDataInput.ktr</default_value> | |
| 30 | - <description>注入元数据的ktr文件</description> | |
| 31 | - </parameter> | |
| 32 | - <parameter> | |
| 33 | - <name>normalizefieldnames</name> | |
| 34 | - <default_value>出场,东川路地铁站1,塘泾路尚义路1,东川路地铁站2,塘泾路尚义路2,东川路地铁站3,塘泾路尚义路3,东川路地铁站4,塘泾路尚义路4,东川路地铁站5,塘泾路尚义路5,东川路地铁站6,塘泾路尚义路6,东川路地铁站7,塘泾路尚义路7,东川路地铁站8,塘泾路尚义路8,东川路地铁站9,塘泾路尚义路9,东川路地铁站10,塘泾路尚义路10,进场</default_value> | |
| 35 | - <description>数据范式化字段名,以逗号连接</description> | |
| 36 | - </parameter> | |
| 37 | - <parameter> | |
| 38 | - <name>sheetname</name> | |
| 39 | - <default_value>工作表1</default_value> | |
| 40 | - <description>xls sheet名字</description> | |
| 41 | - </parameter> | |
| 42 | - <parameter> | |
| 43 | - <name>tccname</name> | |
| 44 | - <default_value>东川路地铁站停车场</default_value> | |
| 45 | - <description>停车场名字</description> | |
| 46 | - </parameter> | |
| 47 | - <parameter> | |
| 48 | - <name>ttid</name> | |
| 49 | - <default_value>1</default_value> | |
| 50 | - <description>时刻表id</description> | |
| 51 | - </parameter> | |
| 52 | - <parameter> | |
| 53 | - <name>ttinfoname</name> | |
| 54 | - <default_value>表2</default_value> | |
| 55 | - <description>时刻表名称</description> | |
| 56 | - </parameter> | |
| 57 | - <parameter> | |
| 58 | - <name>xlname</name> | |
| 59 | - <default_value>闵行26路</default_value> | |
| 60 | - <description>线路名称</description> | |
| 61 | - </parameter> | |
| 62 | - </parameters> | |
| 63 | - <log> | |
| 64 | -<trans-log-table><connection/> | |
| 65 | -<schema/> | |
| 66 | -<table/> | |
| 67 | -<size_limit_lines/> | |
| 68 | -<interval/> | |
| 69 | -<timeout_days/> | |
| 70 | -<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> | |
| 71 | -<perf-log-table><connection/> | |
| 72 | -<schema/> | |
| 73 | -<table/> | |
| 74 | -<interval/> | |
| 75 | -<timeout_days/> | |
| 76 | -<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> | |
| 77 | -<channel-log-table><connection/> | |
| 78 | -<schema/> | |
| 79 | -<table/> | |
| 80 | -<timeout_days/> | |
| 81 | -<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> | |
| 82 | -<step-log-table><connection/> | |
| 83 | -<schema/> | |
| 84 | -<table/> | |
| 85 | -<timeout_days/> | |
| 86 | -<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> | |
| 87 | -<metrics-log-table><connection/> | |
| 88 | -<schema/> | |
| 89 | -<table/> | |
| 90 | -<timeout_days/> | |
| 91 | -<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> | |
| 92 | - </log> | |
| 93 | - <maxdate> | |
| 94 | - <connection/> | |
| 95 | - <table/> | |
| 96 | - <field/> | |
| 97 | - <offset>0.0</offset> | |
| 98 | - <maxdiff>0.0</maxdiff> | |
| 99 | - </maxdate> | |
| 100 | - <size_rowset>10000</size_rowset> | |
| 101 | - <sleep_time_empty>50</sleep_time_empty> | |
| 102 | - <sleep_time_full>50</sleep_time_full> | |
| 103 | - <unique_connections>N</unique_connections> | |
| 104 | - <feedback_shown>Y</feedback_shown> | |
| 105 | - <feedback_size>50000</feedback_size> | |
| 106 | - <using_thread_priorities>Y</using_thread_priorities> | |
| 107 | - <shared_objects_file/> | |
| 108 | - <capture_step_performance>N</capture_step_performance> | |
| 109 | - <step_performance_capturing_delay>1000</step_performance_capturing_delay> | |
| 110 | - <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit> | |
| 111 | - <dependencies> | |
| 112 | - </dependencies> | |
| 113 | - <partitionschemas> | |
| 114 | - </partitionschemas> | |
| 115 | - <slaveservers> | |
| 116 | - </slaveservers> | |
| 117 | - <clusterschemas> | |
| 118 | - </clusterschemas> | |
| 119 | - <created_user>-</created_user> | |
| 120 | - <created_date>2016/07/01 09:55:32.649</created_date> | |
| 121 | - <modified_user>-</modified_user> | |
| 122 | - <modified_date>2016/07/01 09:55:32.649</modified_date> | |
| 123 | - <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA=</key_for_session_key> | |
| 124 | - <is_key_private>N</is_key_private> | |
| 125 | - </info> | |
| 126 | - <notepads> | |
| 127 | - </notepads> | |
| 128 | - <connection> | |
| 129 | - <name>bus_control_variable</name> | |
| 130 | - <server>${v_db_ip}</server> | |
| 131 | - <type>MYSQL</type> | |
| 132 | - <access>Native</access> | |
| 133 | - <database>${v_db_dname}</database> | |
| 134 | - <port>3306</port> | |
| 135 | - <username>${v_db_uname}</username> | |
| 136 | - <password>${v_db_pwd}</password> | |
| 137 | - <servername/> | |
| 138 | - <data_tablespace/> | |
| 139 | - <index_tablespace/> | |
| 140 | - <attributes> | |
| 141 | - <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute> | |
| 142 | - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 143 | - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 144 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 145 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 146 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 147 | - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 148 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 149 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 150 | - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute> | |
| 151 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 152 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 153 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 154 | - </attributes> | |
| 155 | - </connection> | |
| 156 | - <connection> | |
| 157 | - <name>bus_control_公司_201</name> | |
| 158 | - <server>localhost</server> | |
| 159 | - <type>MYSQL</type> | |
| 160 | - <access>Native</access> | |
| 161 | - <database>control</database> | |
| 162 | - <port>3306</port> | |
| 163 | - <username>root</username> | |
| 164 | - <password>Encrypted </password> | |
| 165 | - <servername/> | |
| 166 | - <data_tablespace/> | |
| 167 | - <index_tablespace/> | |
| 168 | - <attributes> | |
| 169 | - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 170 | - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 171 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 172 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 173 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 174 | - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 175 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 176 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 177 | - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute> | |
| 178 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 179 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 180 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 181 | - </attributes> | |
| 182 | - </connection> | |
| 183 | - <connection> | |
| 184 | - <name>bus_control_本机</name> | |
| 185 | - <server>localhost</server> | |
| 186 | - <type>MYSQL</type> | |
| 187 | - <access>Native</access> | |
| 188 | - <database>control</database> | |
| 189 | - <port>3306</port> | |
| 190 | - <username>root</username> | |
| 191 | - <password>Encrypted </password> | |
| 192 | - <servername/> | |
| 193 | - <data_tablespace/> | |
| 194 | - <index_tablespace/> | |
| 195 | - <attributes> | |
| 196 | - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 197 | - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 198 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 199 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 200 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 201 | - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 202 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 203 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 204 | - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 205 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 206 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 207 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 208 | - </attributes> | |
| 209 | - </connection> | |
| 210 | - <connection> | |
| 211 | - <name>xlab_mysql_youle</name> | |
| 212 | - <server>101.231.124.8</server> | |
| 213 | - <type>MYSQL</type> | |
| 214 | - <access>Native</access> | |
| 215 | - <database>xlab_youle</database> | |
| 216 | - <port>45687</port> | |
| 217 | - <username>xlab-youle</username> | |
| 218 | - <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password> | |
| 219 | - <servername/> | |
| 220 | - <data_tablespace/> | |
| 221 | - <index_tablespace/> | |
| 222 | - <attributes> | |
| 223 | - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 224 | - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 225 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 226 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 227 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 228 | - <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute> | |
| 229 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 230 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 231 | - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 232 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 233 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 234 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 235 | - </attributes> | |
| 236 | - </connection> | |
| 237 | - <connection> | |
| 238 | - <name>xlab_mysql_youle(本机)</name> | |
| 239 | - <server>localhost</server> | |
| 240 | - <type>MYSQL</type> | |
| 241 | - <access>Native</access> | |
| 242 | - <database>xlab_youle</database> | |
| 243 | - <port>3306</port> | |
| 244 | - <username>root</username> | |
| 245 | - <password>Encrypted </password> | |
| 246 | - <servername/> | |
| 247 | - <data_tablespace/> | |
| 248 | - <index_tablespace/> | |
| 249 | - <attributes> | |
| 250 | - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 251 | - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 252 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 253 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 254 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 255 | - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 256 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 257 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 258 | - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 259 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 260 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 261 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 262 | - </attributes> | |
| 263 | - </connection> | |
| 264 | - <connection> | |
| 265 | - <name>xlab_youle</name> | |
| 266 | - <server/> | |
| 267 | - <type>MYSQL</type> | |
| 268 | - <access>JNDI</access> | |
| 269 | - <database>xlab_youle</database> | |
| 270 | - <port>1521</port> | |
| 271 | - <username/> | |
| 272 | - <password>Encrypted </password> | |
| 273 | - <servername/> | |
| 274 | - <data_tablespace/> | |
| 275 | - <index_tablespace/> | |
| 276 | - <attributes> | |
| 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>1521</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 | - <order> | |
| 290 | - <hop> <from>获取excel文件名</from><to>ETL元数据注入</to><enabled>Y</enabled> </hop> | |
| 291 | - <hop> <from>获取excel字段名字符串</from><to>逗号切分成字段名</to><enabled>Y</enabled> </hop> | |
| 292 | - <hop> <from>逗号切分成字段名</from><to>增加excel字段其他元数据</to><enabled>Y</enabled> </hop> | |
| 293 | - <hop> <from>增加excel字段其他元数据</from><to>ETL元数据注入</to><enabled>Y</enabled> </hop> | |
| 294 | - <hop> <from>获取normalize字段名字符串</from><to>逗号切分成字段名 2</to><enabled>Y</enabled> </hop> | |
| 295 | - <hop> <from>逗号切分成字段名 2</from><to>增加normalize元数据</to><enabled>Y</enabled> </hop> | |
| 296 | - <hop> <from>增加normalize元数据</from><to>ETL元数据注入</to><enabled>Y</enabled> </hop> | |
| 297 | - <hop> <from>获取线路名称</from><to>增加线路名称metadata</to><enabled>Y</enabled> </hop> | |
| 298 | - <hop> <from>增加线路名称metadata</from><to>替换线路名称</to><enabled>Y</enabled> </hop> | |
| 299 | - <hop> <from>替换线路名称</from><to>线路名称metadata字段</to><enabled>Y</enabled> </hop> | |
| 300 | - <hop> <from>获取停车场名称</from><to>增加停车场名称metadata</to><enabled>Y</enabled> </hop> | |
| 301 | - <hop> <from>增加停车场名称metadata</from><to>替换停车厂名字 </to><enabled>Y</enabled> </hop> | |
| 302 | - <hop> <from>替换停车厂名字 </from><to>停车场名称metadata字段</to><enabled>Y</enabled> </hop> | |
| 303 | - <hop> <from>获取时刻表名称</from><to>增加时刻表名称metadata</to><enabled>Y</enabled> </hop> | |
| 304 | - <hop> <from>增加时刻表名称metadata</from><to>替换时刻表名字</to><enabled>Y</enabled> </hop> | |
| 305 | - <hop> <from>替换时刻表名字</from><to>时刻表名称metadata字段</to><enabled>Y</enabled> </hop> | |
| 306 | - <hop> <from>线路名称metadata字段</from><to>合并增加常量数据metadata</to><enabled>Y</enabled> </hop> | |
| 307 | - <hop> <from>停车场名称metadata字段</from><to>合并增加常量数据metadata</to><enabled>Y</enabled> </hop> | |
| 308 | - <hop> <from>时刻表名称metadata字段</from><to>合并增加常量数据metadata</to><enabled>Y</enabled> </hop> | |
| 309 | - <hop> <from>合并增加常量数据metadata</from><to>ETL元数据注入</to><enabled>Y</enabled> </hop> | |
| 310 | - <hop> <from>获取时刻表id</from><to>删除之前的明细信息</to><enabled>Y</enabled> </hop> | |
| 311 | - </order> | |
| 312 | - <step> | |
| 313 | - <name>ETL元数据注入</name> | |
| 314 | - <type>MetaInject</type> | |
| 315 | - <description/> | |
| 316 | - <distribute>Y</distribute> | |
| 317 | - <custom_distribution/> | |
| 318 | - <copies>1</copies> | |
| 319 | - <partitioning> | |
| 320 | - <method>none</method> | |
| 321 | - <schema_name/> | |
| 322 | - </partitioning> | |
| 323 | - <specification_method>filename</specification_method> | |
| 324 | - <trans_object_id/> | |
| 325 | - <trans_name/> | |
| 326 | - <filename>${injectktrfile}</filename> | |
| 327 | - <directory_path/> | |
| 328 | - <source_step/> | |
| 329 | - <source_output_fields> </source_output_fields> <target_file/> | |
| 330 | - <no_execution>N</no_execution> | |
| 331 | - <stream_source_step/> | |
| 332 | - <stream_target_step/> | |
| 333 | - <mappings> <mapping> <target_step_name>Excel输入</target_step_name> | |
| 334 | - <target_attribute_key>FORMAT</target_attribute_key> | |
| 335 | - <target_detail>Y</target_detail> | |
| 336 | - <source_step>列拆分为多行</source_step> | |
| 337 | - <source_field>format</source_field> | |
| 338 | - </mapping> <mapping> <target_step_name>Excel输入</target_step_name> | |
| 339 | - <target_attribute_key>REPEAT</target_attribute_key> | |
| 340 | - <target_detail>Y</target_detail> | |
| 341 | - <source_step>列拆分为多行</source_step> | |
| 342 | - <source_field>repeat</source_field> | |
| 343 | - </mapping> <mapping> <target_step_name>时刻表明细信息Excel输入</target_step_name> | |
| 344 | - <target_attribute_key>TRIM_TYPE</target_attribute_key> | |
| 345 | - <target_detail>Y</target_detail> | |
| 346 | - <source_step>增加excel字段其他元数据</source_step> | |
| 347 | - <source_field>trim_type</source_field> | |
| 348 | - </mapping> <mapping> <target_step_name>时刻表明细信息Excel输入</target_step_name> | |
| 349 | - <target_attribute_key>FILENAME</target_attribute_key> | |
| 350 | - <target_detail>Y</target_detail> | |
| 351 | - <source_step>获取excel文件名</source_step> | |
| 352 | - <source_field>filepath_</source_field> | |
| 353 | - </mapping> <mapping> <target_step_name>时刻表明细信息Excel输入</target_step_name> | |
| 354 | - <target_attribute_key>PRECISION</target_attribute_key> | |
| 355 | - <target_detail>Y</target_detail> | |
| 356 | - <source_step>增加excel字段其他元数据</source_step> | |
| 357 | - <source_field>precision</source_field> | |
| 358 | - </mapping> <mapping> <target_step_name>Excel输入</target_step_name> | |
| 359 | - <target_attribute_key>TYPE</target_attribute_key> | |
| 360 | - <target_detail>Y</target_detail> | |
| 361 | - <source_step>列拆分为多行</source_step> | |
| 362 | - <source_field>type</source_field> | |
| 363 | - </mapping> <mapping> <target_step_name>增加时刻表名字,线路名字,停车场名字</target_step_name> | |
| 364 | - <target_attribute_key>DATA_VALUE</target_attribute_key> | |
| 365 | - <target_detail>Y</target_detail> | |
| 366 | - <source_step>合并增加常量数据metadata</source_step> | |
| 367 | - <source_field>col_value</source_field> | |
| 368 | - </mapping> <mapping> <target_step_name>Excel输入</target_step_name> | |
| 369 | - <target_attribute_key>LENGTH</target_attribute_key> | |
| 370 | - <target_detail>Y</target_detail> | |
| 371 | - <source_step>列拆分为多行</source_step> | |
| 372 | - <source_field>length</source_field> | |
| 373 | - </mapping> <mapping> <target_step_name>增加时刻表名字,线路名字,停车场名字</target_step_name> | |
| 374 | - <target_attribute_key>TYPE</target_attribute_key> | |
| 375 | - <target_detail>Y</target_detail> | |
| 376 | - <source_step>合并增加常量数据metadata</source_step> | |
| 377 | - <source_field>col_type</source_field> | |
| 378 | - </mapping> <mapping> <target_step_name>行转列</target_step_name> | |
| 379 | - <target_attribute_key>NAME</target_attribute_key> | |
| 380 | - <target_detail>Y</target_detail> | |
| 381 | - <source_step>列拆分为多行 2</source_step> | |
| 382 | - <source_field>fieldName</source_field> | |
| 383 | - </mapping> <mapping> <target_step_name>时刻表明细信息Excel输入</target_step_name> | |
| 384 | - <target_attribute_key>NAME</target_attribute_key> | |
| 385 | - <target_detail>Y</target_detail> | |
| 386 | - <source_step>增加excel字段其他元数据</source_step> | |
| 387 | - <source_field>fieldname</source_field> | |
| 388 | - </mapping> <mapping> <target_step_name>班次数据范式化</target_step_name> | |
| 389 | - <target_attribute_key>NAME</target_attribute_key> | |
| 390 | - <target_detail>Y</target_detail> | |
| 391 | - <source_step>增加normalize元数据</source_step> | |
| 392 | - <source_field>nfieldname</source_field> | |
| 393 | - </mapping> <mapping> <target_step_name>时刻表明细信息Excel输入</target_step_name> | |
| 394 | - <target_attribute_key>SHEET_NAME</target_attribute_key> | |
| 395 | - <target_detail>Y</target_detail> | |
| 396 | - <source_step>获取excel文件名</source_step> | |
| 397 | - <source_field>sheetname_</source_field> | |
| 398 | - </mapping> <mapping> <target_step_name>时刻表明细信息Excel输入</target_step_name> | |
| 399 | - <target_attribute_key>LENGTH</target_attribute_key> | |
| 400 | - <target_detail>Y</target_detail> | |
| 401 | - <source_step>增加excel字段其他元数据</source_step> | |
| 402 | - <source_field>length</source_field> | |
| 403 | - </mapping> <mapping> <target_step_name>增加时刻表名字,线路名字,停车场名字</target_step_name> | |
| 404 | - <target_attribute_key>NAME</target_attribute_key> | |
| 405 | - <target_detail>Y</target_detail> | |
| 406 | - <source_step>合并增加常量数据metadata</source_step> | |
| 407 | - <source_field>col_name</source_field> | |
| 408 | - </mapping> <mapping> <target_step_name>时刻表明细信息Excel输入</target_step_name> | |
| 409 | - <target_attribute_key>TYPE</target_attribute_key> | |
| 410 | - <target_detail>Y</target_detail> | |
| 411 | - <source_step>增加excel字段其他元数据</source_step> | |
| 412 | - <source_field>fieldtype</source_field> | |
| 413 | - </mapping> <mapping> <target_step_name>Excel输入</target_step_name> | |
| 414 | - <target_attribute_key>NAME</target_attribute_key> | |
| 415 | - <target_detail>Y</target_detail> | |
| 416 | - <source_step>列拆分为多行</source_step> | |
| 417 | - <source_field>fieldName</source_field> | |
| 418 | - </mapping> <mapping> <target_step_name>Excel输入</target_step_name> | |
| 419 | - <target_attribute_key>TRIM_TYPE</target_attribute_key> | |
| 420 | - <target_detail>Y</target_detail> | |
| 421 | - <source_step>列拆分为多行</source_step> | |
| 422 | - <source_field>trim_type</source_field> | |
| 423 | - </mapping> <mapping> <target_step_name>行转列</target_step_name> | |
| 424 | - <target_attribute_key>VALUE</target_attribute_key> | |
| 425 | - <target_detail>Y</target_detail> | |
| 426 | - <source_step>列拆分为多行 2</source_step> | |
| 427 | - <source_field>fieldName</source_field> | |
| 428 | - </mapping> <mapping> <target_step_name>时刻表明细信息Excel输入</target_step_name> | |
| 429 | - <target_attribute_key>REPEAT</target_attribute_key> | |
| 430 | - <target_detail>Y</target_detail> | |
| 431 | - <source_step>增加excel字段其他元数据</source_step> | |
| 432 | - <source_field>repeat</source_field> | |
| 433 | - </mapping> <mapping> <target_step_name>行转列</target_step_name> | |
| 434 | - <target_attribute_key>NORMALISED</target_attribute_key> | |
| 435 | - <target_detail>Y</target_detail> | |
| 436 | - <source_step>列拆分为多行 2</source_step> | |
| 437 | - <source_field>value</source_field> | |
| 438 | - </mapping> <mapping> <target_step_name>班次数据范式化</target_step_name> | |
| 439 | - <target_attribute_key>NORMALISED</target_attribute_key> | |
| 440 | - <target_detail>Y</target_detail> | |
| 441 | - <source_step>增加normalize元数据</source_step> | |
| 442 | - <source_field>valuefield</source_field> | |
| 443 | - </mapping> <mapping> <target_step_name>时刻表明细信息Excel输入</target_step_name> | |
| 444 | - <target_attribute_key>FORMAT</target_attribute_key> | |
| 445 | - <target_detail>Y</target_detail> | |
| 446 | - <source_step>增加excel字段其他元数据</source_step> | |
| 447 | - <source_field>format</source_field> | |
| 448 | - </mapping> <mapping> <target_step_name>班次数据范式化</target_step_name> | |
| 449 | - <target_attribute_key>VALUE</target_attribute_key> | |
| 450 | - <target_detail>Y</target_detail> | |
| 451 | - <source_step>增加normalize元数据</source_step> | |
| 452 | - <source_field>nfieldname</source_field> | |
| 453 | - </mapping> <mapping> <target_step_name>Excel输入</target_step_name> | |
| 454 | - <target_attribute_key>PRECISION</target_attribute_key> | |
| 455 | - <target_detail>Y</target_detail> | |
| 456 | - <source_step>列拆分为多行</source_step> | |
| 457 | - <source_field>precision</source_field> | |
| 458 | - </mapping> </mappings> <cluster_schema/> | |
| 459 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 460 | - <xloc>695</xloc> | |
| 461 | - <yloc>177</yloc> | |
| 462 | - <draw>Y</draw> | |
| 463 | - </GUI> | |
| 464 | - </step> | |
| 465 | - | |
| 466 | - <step> | |
| 467 | - <name>停车场名称metadata字段</name> | |
| 468 | - <type>SelectValues</type> | |
| 469 | - <description/> | |
| 470 | - <distribute>Y</distribute> | |
| 471 | - <custom_distribution/> | |
| 472 | - <copies>1</copies> | |
| 473 | - <partitioning> | |
| 474 | - <method>none</method> | |
| 475 | - <schema_name/> | |
| 476 | - </partitioning> | |
| 477 | - <fields> <field> <name>col_name</name> | |
| 478 | - <rename/> | |
| 479 | - <length>-2</length> | |
| 480 | - <precision>-2</precision> | |
| 481 | - </field> <field> <name>col_type</name> | |
| 482 | - <rename/> | |
| 483 | - <length>-2</length> | |
| 484 | - <precision>-2</precision> | |
| 485 | - </field> <field> <name>col_value</name> | |
| 486 | - <rename/> | |
| 487 | - <length>-2</length> | |
| 488 | - <precision>-2</precision> | |
| 489 | - </field> <select_unspecified>N</select_unspecified> | |
| 490 | - </fields> <cluster_schema/> | |
| 491 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 492 | - <xloc>490</xloc> | |
| 493 | - <yloc>429</yloc> | |
| 494 | - <draw>Y</draw> | |
| 495 | - </GUI> | |
| 496 | - </step> | |
| 497 | - | |
| 498 | - <step> | |
| 499 | - <name>删除之前的明细信息</name> | |
| 500 | - <type>ExecSQL</type> | |
| 501 | - <description/> | |
| 502 | - <distribute>Y</distribute> | |
| 503 | - <custom_distribution/> | |
| 504 | - <copies>1</copies> | |
| 505 | - <partitioning> | |
| 506 | - <method>none</method> | |
| 507 | - <schema_name/> | |
| 508 | - </partitioning> | |
| 509 | - <connection>bus_control_variable</connection> | |
| 510 | - <execute_each_row>Y</execute_each_row> | |
| 511 | - <single_statement>N</single_statement> | |
| 512 | - <replace_variables>N</replace_variables> | |
| 513 | - <quoteString>N</quoteString> | |
| 514 | - <sql>delete from bsth_c_s_ttinfo_detail where ttinfo = ?</sql> | |
| 515 | - <set_params>N</set_params> | |
| 516 | - <insert_field/> | |
| 517 | - <update_field/> | |
| 518 | - <delete_field/> | |
| 519 | - <read_field/> | |
| 520 | - <arguments> | |
| 521 | - <argument><name>ttid_</name></argument> | |
| 522 | - </arguments> | |
| 523 | - <cluster_schema/> | |
| 524 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 525 | - <xloc>627</xloc> | |
| 526 | - <yloc>26</yloc> | |
| 527 | - <draw>Y</draw> | |
| 528 | - </GUI> | |
| 529 | - </step> | |
| 530 | - | |
| 531 | - <step> | |
| 532 | - <name>合并增加常量数据metadata</name> | |
| 533 | - <type>Dummy</type> | |
| 534 | - <description/> | |
| 535 | - <distribute>Y</distribute> | |
| 536 | - <custom_distribution/> | |
| 537 | - <copies>1</copies> | |
| 538 | - <partitioning> | |
| 539 | - <method>none</method> | |
| 540 | - <schema_name/> | |
| 541 | - </partitioning> | |
| 542 | - <cluster_schema/> | |
| 543 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 544 | - <xloc>702</xloc> | |
| 545 | - <yloc>383</yloc> | |
| 546 | - <draw>Y</draw> | |
| 547 | - </GUI> | |
| 548 | - </step> | |
| 549 | - | |
| 550 | - <step> | |
| 551 | - <name>增加excel字段其他元数据</name> | |
| 552 | - <type>Constant</type> | |
| 553 | - <description/> | |
| 554 | - <distribute>Y</distribute> | |
| 555 | - <custom_distribution/> | |
| 556 | - <copies>1</copies> | |
| 557 | - <partitioning> | |
| 558 | - <method>none</method> | |
| 559 | - <schema_name/> | |
| 560 | - </partitioning> | |
| 561 | - <fields> | |
| 562 | - <field> | |
| 563 | - <name>fieldtype</name> | |
| 564 | - <type>String</type> | |
| 565 | - <format/> | |
| 566 | - <currency/> | |
| 567 | - <decimal/> | |
| 568 | - <group/> | |
| 569 | - <nullif>String</nullif> | |
| 570 | - <length>-1</length> | |
| 571 | - <precision>-1</precision> | |
| 572 | - <set_empty_string>N</set_empty_string> | |
| 573 | - </field> | |
| 574 | - <field> | |
| 575 | - <name>length</name> | |
| 576 | - <type>String</type> | |
| 577 | - <format/> | |
| 578 | - <currency/> | |
| 579 | - <decimal/> | |
| 580 | - <group/> | |
| 581 | - <nullif>-1</nullif> | |
| 582 | - <length>-1</length> | |
| 583 | - <precision>-1</precision> | |
| 584 | - <set_empty_string>N</set_empty_string> | |
| 585 | - </field> | |
| 586 | - <field> | |
| 587 | - <name>precision</name> | |
| 588 | - <type>String</type> | |
| 589 | - <format/> | |
| 590 | - <currency/> | |
| 591 | - <decimal/> | |
| 592 | - <group/> | |
| 593 | - <nullif>-1</nullif> | |
| 594 | - <length>-1</length> | |
| 595 | - <precision>-1</precision> | |
| 596 | - <set_empty_string>N</set_empty_string> | |
| 597 | - </field> | |
| 598 | - <field> | |
| 599 | - <name>trim_type</name> | |
| 600 | - <type>String</type> | |
| 601 | - <format/> | |
| 602 | - <currency/> | |
| 603 | - <decimal/> | |
| 604 | - <group/> | |
| 605 | - <nullif>none</nullif> | |
| 606 | - <length>-1</length> | |
| 607 | - <precision>-1</precision> | |
| 608 | - <set_empty_string>N</set_empty_string> | |
| 609 | - </field> | |
| 610 | - <field> | |
| 611 | - <name>repeat</name> | |
| 612 | - <type>String</type> | |
| 613 | - <format/> | |
| 614 | - <currency/> | |
| 615 | - <decimal/> | |
| 616 | - <group/> | |
| 617 | - <nullif>N</nullif> | |
| 618 | - <length>-1</length> | |
| 619 | - <precision>-1</precision> | |
| 620 | - <set_empty_string>N</set_empty_string> | |
| 621 | - </field> | |
| 622 | - <field> | |
| 623 | - <name>format</name> | |
| 624 | - <type>String</type> | |
| 625 | - <format/> | |
| 626 | - <currency/> | |
| 627 | - <decimal/> | |
| 628 | - <group/> | |
| 629 | - <nullif>#</nullif> | |
| 630 | - <length>-1</length> | |
| 631 | - <precision>-1</precision> | |
| 632 | - <set_empty_string>N</set_empty_string> | |
| 633 | - </field> | |
| 634 | - </fields> | |
| 635 | - <cluster_schema/> | |
| 636 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 637 | - <xloc>441</xloc> | |
| 638 | - <yloc>172</yloc> | |
| 639 | - <draw>Y</draw> | |
| 640 | - </GUI> | |
| 641 | - </step> | |
| 642 | - | |
| 643 | - <step> | |
| 644 | - <name>增加normalize元数据</name> | |
| 645 | - <type>Constant</type> | |
| 646 | - <description/> | |
| 647 | - <distribute>Y</distribute> | |
| 648 | - <custom_distribution/> | |
| 649 | - <copies>1</copies> | |
| 650 | - <partitioning> | |
| 651 | - <method>none</method> | |
| 652 | - <schema_name/> | |
| 653 | - </partitioning> | |
| 654 | - <fields> | |
| 655 | - <field> | |
| 656 | - <name>valuefield</name> | |
| 657 | - <type>String</type> | |
| 658 | - <format/> | |
| 659 | - <currency/> | |
| 660 | - <decimal/> | |
| 661 | - <group/> | |
| 662 | - <nullif>发车时间</nullif> | |
| 663 | - <length>-1</length> | |
| 664 | - <precision>-1</precision> | |
| 665 | - <set_empty_string>N</set_empty_string> | |
| 666 | - </field> | |
| 667 | - </fields> | |
| 668 | - <cluster_schema/> | |
| 669 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 670 | - <xloc>447</xloc> | |
| 671 | - <yloc>257</yloc> | |
| 672 | - <draw>Y</draw> | |
| 673 | - </GUI> | |
| 674 | - </step> | |
| 675 | - | |
| 676 | - <step> | |
| 677 | - <name>增加停车场名称metadata</name> | |
| 678 | - <type>Constant</type> | |
| 679 | - <description/> | |
| 680 | - <distribute>Y</distribute> | |
| 681 | - <custom_distribution/> | |
| 682 | - <copies>1</copies> | |
| 683 | - <partitioning> | |
| 684 | - <method>none</method> | |
| 685 | - <schema_name/> | |
| 686 | - </partitioning> | |
| 687 | - <fields> | |
| 688 | - <field> | |
| 689 | - <name>col_name</name> | |
| 690 | - <type>String</type> | |
| 691 | - <format/> | |
| 692 | - <currency/> | |
| 693 | - <decimal/> | |
| 694 | - <group/> | |
| 695 | - <nullif>tccname_</nullif> | |
| 696 | - <length>-1</length> | |
| 697 | - <precision>-1</precision> | |
| 698 | - <set_empty_string>N</set_empty_string> | |
| 699 | - </field> | |
| 700 | - <field> | |
| 701 | - <name>col_type</name> | |
| 702 | - <type>String</type> | |
| 703 | - <format/> | |
| 704 | - <currency/> | |
| 705 | - <decimal/> | |
| 706 | - <group/> | |
| 707 | - <nullif>String</nullif> | |
| 708 | - <length>-1</length> | |
| 709 | - <precision>-1</precision> | |
| 710 | - <set_empty_string>N</set_empty_string> | |
| 711 | - </field> | |
| 712 | - <field> | |
| 713 | - <name>col_value</name> | |
| 714 | - <type>String</type> | |
| 715 | - <format/> | |
| 716 | - <currency/> | |
| 717 | - <decimal/> | |
| 718 | - <group/> | |
| 719 | - <nullif>replace</nullif> | |
| 720 | - <length>-1</length> | |
| 721 | - <precision>-1</precision> | |
| 722 | - <set_empty_string>N</set_empty_string> | |
| 723 | - </field> | |
| 724 | - </fields> | |
| 725 | - <cluster_schema/> | |
| 726 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 727 | - <xloc>208</xloc> | |
| 728 | - <yloc>428</yloc> | |
| 729 | - <draw>Y</draw> | |
| 730 | - </GUI> | |
| 731 | - </step> | |
| 732 | - | |
| 733 | - <step> | |
| 734 | - <name>增加时刻表名称metadata</name> | |
| 735 | - <type>Constant</type> | |
| 736 | - <description/> | |
| 737 | - <distribute>Y</distribute> | |
| 738 | - <custom_distribution/> | |
| 739 | - <copies>1</copies> | |
| 740 | - <partitioning> | |
| 741 | - <method>none</method> | |
| 742 | - <schema_name/> | |
| 743 | - </partitioning> | |
| 744 | - <fields> | |
| 745 | - <field> | |
| 746 | - <name>col_name</name> | |
| 747 | - <type>String</type> | |
| 748 | - <format/> | |
| 749 | - <currency/> | |
| 750 | - <decimal/> | |
| 751 | - <group/> | |
| 752 | - <nullif>ttinfoname_</nullif> | |
| 753 | - <length>-1</length> | |
| 754 | - <precision>-1</precision> | |
| 755 | - <set_empty_string>N</set_empty_string> | |
| 756 | - </field> | |
| 757 | - <field> | |
| 758 | - <name>col_type</name> | |
| 759 | - <type>String</type> | |
| 760 | - <format/> | |
| 761 | - <currency/> | |
| 762 | - <decimal/> | |
| 763 | - <group/> | |
| 764 | - <nullif>String</nullif> | |
| 765 | - <length>-1</length> | |
| 766 | - <precision>-1</precision> | |
| 767 | - <set_empty_string>N</set_empty_string> | |
| 768 | - </field> | |
| 769 | - <field> | |
| 770 | - <name>col_value</name> | |
| 771 | - <type>String</type> | |
| 772 | - <format/> | |
| 773 | - <currency/> | |
| 774 | - <decimal/> | |
| 775 | - <group/> | |
| 776 | - <nullif>replace</nullif> | |
| 777 | - <length>-1</length> | |
| 778 | - <precision>-1</precision> | |
| 779 | - <set_empty_string>N</set_empty_string> | |
| 780 | - </field> | |
| 781 | - </fields> | |
| 782 | - <cluster_schema/> | |
| 783 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 784 | - <xloc>216</xloc> | |
| 785 | - <yloc>508</yloc> | |
| 786 | - <draw>Y</draw> | |
| 787 | - </GUI> | |
| 788 | - </step> | |
| 789 | - | |
| 790 | - <step> | |
| 791 | - <name>增加线路名称metadata</name> | |
| 792 | - <type>Constant</type> | |
| 793 | - <description/> | |
| 794 | - <distribute>Y</distribute> | |
| 795 | - <custom_distribution/> | |
| 796 | - <copies>1</copies> | |
| 797 | - <partitioning> | |
| 798 | - <method>none</method> | |
| 799 | - <schema_name/> | |
| 800 | - </partitioning> | |
| 801 | - <fields> | |
| 802 | - <field> | |
| 803 | - <name>col_name</name> | |
| 804 | - <type>String</type> | |
| 805 | - <format/> | |
| 806 | - <currency/> | |
| 807 | - <decimal/> | |
| 808 | - <group/> | |
| 809 | - <nullif>xlname_</nullif> | |
| 810 | - <length>-1</length> | |
| 811 | - <precision>-1</precision> | |
| 812 | - <set_empty_string>N</set_empty_string> | |
| 813 | - </field> | |
| 814 | - <field> | |
| 815 | - <name>col_type</name> | |
| 816 | - <type>String</type> | |
| 817 | - <format/> | |
| 818 | - <currency/> | |
| 819 | - <decimal/> | |
| 820 | - <group/> | |
| 821 | - <nullif>String</nullif> | |
| 822 | - <length>-1</length> | |
| 823 | - <precision>-1</precision> | |
| 824 | - <set_empty_string>N</set_empty_string> | |
| 825 | - </field> | |
| 826 | - <field> | |
| 827 | - <name>col_value</name> | |
| 828 | - <type>String</type> | |
| 829 | - <format/> | |
| 830 | - <currency/> | |
| 831 | - <decimal/> | |
| 832 | - <group/> | |
| 833 | - <nullif>replace</nullif> | |
| 834 | - <length>-1</length> | |
| 835 | - <precision>-1</precision> | |
| 836 | - <set_empty_string>N</set_empty_string> | |
| 837 | - </field> | |
| 838 | - </fields> | |
| 839 | - <cluster_schema/> | |
| 840 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 841 | - <xloc>202</xloc> | |
| 842 | - <yloc>351</yloc> | |
| 843 | - <draw>Y</draw> | |
| 844 | - </GUI> | |
| 845 | - </step> | |
| 846 | - | |
| 847 | - <step> | |
| 848 | - <name>时刻表名称metadata字段</name> | |
| 849 | - <type>SelectValues</type> | |
| 850 | - <description/> | |
| 851 | - <distribute>Y</distribute> | |
| 852 | - <custom_distribution/> | |
| 853 | - <copies>1</copies> | |
| 854 | - <partitioning> | |
| 855 | - <method>none</method> | |
| 856 | - <schema_name/> | |
| 857 | - </partitioning> | |
| 858 | - <fields> <field> <name>col_name</name> | |
| 859 | - <rename/> | |
| 860 | - <length>-2</length> | |
| 861 | - <precision>-2</precision> | |
| 862 | - </field> <field> <name>col_type</name> | |
| 863 | - <rename/> | |
| 864 | - <length>-2</length> | |
| 865 | - <precision>-2</precision> | |
| 866 | - </field> <field> <name>col_value</name> | |
| 867 | - <rename/> | |
| 868 | - <length>-2</length> | |
| 869 | - <precision>-2</precision> | |
| 870 | - </field> <select_unspecified>N</select_unspecified> | |
| 871 | - </fields> <cluster_schema/> | |
| 872 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 873 | - <xloc>496</xloc> | |
| 874 | - <yloc>508</yloc> | |
| 875 | - <draw>Y</draw> | |
| 876 | - </GUI> | |
| 877 | - </step> | |
| 878 | - | |
| 879 | - <step> | |
| 880 | - <name>替换停车厂名字 </name> | |
| 881 | - <type>SetValueField</type> | |
| 882 | - <description/> | |
| 883 | - <distribute>Y</distribute> | |
| 884 | - <custom_distribution/> | |
| 885 | - <copies>1</copies> | |
| 886 | - <partitioning> | |
| 887 | - <method>none</method> | |
| 888 | - <schema_name/> | |
| 889 | - </partitioning> | |
| 890 | - <fields> | |
| 891 | - <field> | |
| 892 | - <name>col_value</name> | |
| 893 | - <replaceby>tccname_</replaceby> | |
| 894 | - </field> | |
| 895 | - </fields> | |
| 896 | - <cluster_schema/> | |
| 897 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 898 | - <xloc>345</xloc> | |
| 899 | - <yloc>430</yloc> | |
| 900 | - <draw>Y</draw> | |
| 901 | - </GUI> | |
| 902 | - </step> | |
| 903 | - | |
| 904 | - <step> | |
| 905 | - <name>替换时刻表名字</name> | |
| 906 | - <type>SetValueField</type> | |
| 907 | - <description/> | |
| 908 | - <distribute>Y</distribute> | |
| 909 | - <custom_distribution/> | |
| 910 | - <copies>1</copies> | |
| 911 | - <partitioning> | |
| 912 | - <method>none</method> | |
| 913 | - <schema_name/> | |
| 914 | - </partitioning> | |
| 915 | - <fields> | |
| 916 | - <field> | |
| 917 | - <name>col_value</name> | |
| 918 | - <replaceby>ttinfoname_</replaceby> | |
| 919 | - </field> | |
| 920 | - </fields> | |
| 921 | - <cluster_schema/> | |
| 922 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 923 | - <xloc>354</xloc> | |
| 924 | - <yloc>509</yloc> | |
| 925 | - <draw>Y</draw> | |
| 926 | - </GUI> | |
| 927 | - </step> | |
| 928 | - | |
| 929 | - <step> | |
| 930 | - <name>替换线路名称</name> | |
| 931 | - <type>SetValueField</type> | |
| 932 | - <description/> | |
| 933 | - <distribute>Y</distribute> | |
| 934 | - <custom_distribution/> | |
| 935 | - <copies>1</copies> | |
| 936 | - <partitioning> | |
| 937 | - <method>none</method> | |
| 938 | - <schema_name/> | |
| 939 | - </partitioning> | |
| 940 | - <fields> | |
| 941 | - <field> | |
| 942 | - <name>col_value</name> | |
| 943 | - <replaceby>xlname_</replaceby> | |
| 944 | - </field> | |
| 945 | - </fields> | |
| 946 | - <cluster_schema/> | |
| 947 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 948 | - <xloc>340</xloc> | |
| 949 | - <yloc>352</yloc> | |
| 950 | - <draw>Y</draw> | |
| 951 | - </GUI> | |
| 952 | - </step> | |
| 953 | - | |
| 954 | - <step> | |
| 955 | - <name>线路名称metadata字段</name> | |
| 956 | - <type>SelectValues</type> | |
| 957 | - <description/> | |
| 958 | - <distribute>Y</distribute> | |
| 959 | - <custom_distribution/> | |
| 960 | - <copies>1</copies> | |
| 961 | - <partitioning> | |
| 962 | - <method>none</method> | |
| 963 | - <schema_name/> | |
| 964 | - </partitioning> | |
| 965 | - <fields> <field> <name>col_name</name> | |
| 966 | - <rename/> | |
| 967 | - <length>-2</length> | |
| 968 | - <precision>-2</precision> | |
| 969 | - </field> <field> <name>col_type</name> | |
| 970 | - <rename/> | |
| 971 | - <length>-2</length> | |
| 972 | - <precision>-2</precision> | |
| 973 | - </field> <field> <name>col_value</name> | |
| 974 | - <rename/> | |
| 975 | - <length>-2</length> | |
| 976 | - <precision>-2</precision> | |
| 977 | - </field> <select_unspecified>N</select_unspecified> | |
| 978 | - </fields> <cluster_schema/> | |
| 979 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 980 | - <xloc>487</xloc> | |
| 981 | - <yloc>353</yloc> | |
| 982 | - <draw>Y</draw> | |
| 983 | - </GUI> | |
| 984 | - </step> | |
| 985 | - | |
| 986 | - <step> | |
| 987 | - <name>获取excel字段名字符串</name> | |
| 988 | - <type>GetVariable</type> | |
| 989 | - <description/> | |
| 990 | - <distribute>Y</distribute> | |
| 991 | - <custom_distribution/> | |
| 992 | - <copies>1</copies> | |
| 993 | - <partitioning> | |
| 994 | - <method>none</method> | |
| 995 | - <schema_name/> | |
| 996 | - </partitioning> | |
| 997 | - <fields> | |
| 998 | - <field> | |
| 999 | - <name>fieldnames</name> | |
| 1000 | - <variable>${excelfieldnames}</variable> | |
| 1001 | - <type>String</type> | |
| 1002 | - <format/> | |
| 1003 | - <currency/> | |
| 1004 | - <decimal/> | |
| 1005 | - <group/> | |
| 1006 | - <length>-1</length> | |
| 1007 | - <precision>-1</precision> | |
| 1008 | - <trim_type>none</trim_type> | |
| 1009 | - </field> | |
| 1010 | - </fields> | |
| 1011 | - <cluster_schema/> | |
| 1012 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1013 | - <xloc>71</xloc> | |
| 1014 | - <yloc>163</yloc> | |
| 1015 | - <draw>Y</draw> | |
| 1016 | - </GUI> | |
| 1017 | - </step> | |
| 1018 | - | |
| 1019 | - <step> | |
| 1020 | - <name>获取excel文件名</name> | |
| 1021 | - <type>GetVariable</type> | |
| 1022 | - <description/> | |
| 1023 | - <distribute>Y</distribute> | |
| 1024 | - <custom_distribution/> | |
| 1025 | - <copies>1</copies> | |
| 1026 | - <partitioning> | |
| 1027 | - <method>none</method> | |
| 1028 | - <schema_name/> | |
| 1029 | - </partitioning> | |
| 1030 | - <fields> | |
| 1031 | - <field> | |
| 1032 | - <name>filepath_</name> | |
| 1033 | - <variable>${filepath}</variable> | |
| 1034 | - <type>String</type> | |
| 1035 | - <format/> | |
| 1036 | - <currency/> | |
| 1037 | - <decimal/> | |
| 1038 | - <group/> | |
| 1039 | - <length>-1</length> | |
| 1040 | - <precision>-1</precision> | |
| 1041 | - <trim_type>none</trim_type> | |
| 1042 | - </field> | |
| 1043 | - <field> | |
| 1044 | - <name>erroroutputdir_</name> | |
| 1045 | - <variable>${erroroutputdir}</variable> | |
| 1046 | - <type>String</type> | |
| 1047 | - <format/> | |
| 1048 | - <currency/> | |
| 1049 | - <decimal/> | |
| 1050 | - <group/> | |
| 1051 | - <length>-1</length> | |
| 1052 | - <precision>-1</precision> | |
| 1053 | - <trim_type>none</trim_type> | |
| 1054 | - </field> | |
| 1055 | - <field> | |
| 1056 | - <name>sheetname_</name> | |
| 1057 | - <variable>${sheetname}</variable> | |
| 1058 | - <type>String</type> | |
| 1059 | - <format/> | |
| 1060 | - <currency/> | |
| 1061 | - <decimal/> | |
| 1062 | - <group/> | |
| 1063 | - <length>-1</length> | |
| 1064 | - <precision>-1</precision> | |
| 1065 | - <trim_type>none</trim_type> | |
| 1066 | - </field> | |
| 1067 | - </fields> | |
| 1068 | - <cluster_schema/> | |
| 1069 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1070 | - <xloc>120</xloc> | |
| 1071 | - <yloc>62</yloc> | |
| 1072 | - <draw>Y</draw> | |
| 1073 | - </GUI> | |
| 1074 | - </step> | |
| 1075 | - | |
| 1076 | - <step> | |
| 1077 | - <name>获取normalize字段名字符串</name> | |
| 1078 | - <type>GetVariable</type> | |
| 1079 | - <description/> | |
| 1080 | - <distribute>Y</distribute> | |
| 1081 | - <custom_distribution/> | |
| 1082 | - <copies>1</copies> | |
| 1083 | - <partitioning> | |
| 1084 | - <method>none</method> | |
| 1085 | - <schema_name/> | |
| 1086 | - </partitioning> | |
| 1087 | - <fields> | |
| 1088 | - <field> | |
| 1089 | - <name>normalizefieldnames_</name> | |
| 1090 | - <variable>${normalizefieldnames}</variable> | |
| 1091 | - <type>String</type> | |
| 1092 | - <format/> | |
| 1093 | - <currency/> | |
| 1094 | - <decimal/> | |
| 1095 | - <group/> | |
| 1096 | - <length>-1</length> | |
| 1097 | - <precision>-1</precision> | |
| 1098 | - <trim_type>none</trim_type> | |
| 1099 | - </field> | |
| 1100 | - </fields> | |
| 1101 | - <cluster_schema/> | |
| 1102 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1103 | - <xloc>80</xloc> | |
| 1104 | - <yloc>261</yloc> | |
| 1105 | - <draw>Y</draw> | |
| 1106 | - </GUI> | |
| 1107 | - </step> | |
| 1108 | - | |
| 1109 | - <step> | |
| 1110 | - <name>获取停车场名称</name> | |
| 1111 | - <type>GetVariable</type> | |
| 1112 | - <description/> | |
| 1113 | - <distribute>Y</distribute> | |
| 1114 | - <custom_distribution/> | |
| 1115 | - <copies>1</copies> | |
| 1116 | - <partitioning> | |
| 1117 | - <method>none</method> | |
| 1118 | - <schema_name/> | |
| 1119 | - </partitioning> | |
| 1120 | - <fields> | |
| 1121 | - <field> | |
| 1122 | - <name>tccname_</name> | |
| 1123 | - <variable>${tccname}</variable> | |
| 1124 | - <type>String</type> | |
| 1125 | - <format/> | |
| 1126 | - <currency/> | |
| 1127 | - <decimal/> | |
| 1128 | - <group/> | |
| 1129 | - <length>-1</length> | |
| 1130 | - <precision>-1</precision> | |
| 1131 | - <trim_type>none</trim_type> | |
| 1132 | - </field> | |
| 1133 | - </fields> | |
| 1134 | - <cluster_schema/> | |
| 1135 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1136 | - <xloc>80</xloc> | |
| 1137 | - <yloc>430</yloc> | |
| 1138 | - <draw>Y</draw> | |
| 1139 | - </GUI> | |
| 1140 | - </step> | |
| 1141 | - | |
| 1142 | - <step> | |
| 1143 | - <name>获取时刻表id</name> | |
| 1144 | - <type>GetVariable</type> | |
| 1145 | - <description/> | |
| 1146 | - <distribute>Y</distribute> | |
| 1147 | - <custom_distribution/> | |
| 1148 | - <copies>1</copies> | |
| 1149 | - <partitioning> | |
| 1150 | - <method>none</method> | |
| 1151 | - <schema_name/> | |
| 1152 | - </partitioning> | |
| 1153 | - <fields> | |
| 1154 | - <field> | |
| 1155 | - <name>ttid_</name> | |
| 1156 | - <variable>${ttid}</variable> | |
| 1157 | - <type>Integer</type> | |
| 1158 | - <format/> | |
| 1159 | - <currency/> | |
| 1160 | - <decimal/> | |
| 1161 | - <group/> | |
| 1162 | - <length>-1</length> | |
| 1163 | - <precision>-1</precision> | |
| 1164 | - <trim_type>none</trim_type> | |
| 1165 | - </field> | |
| 1166 | - </fields> | |
| 1167 | - <cluster_schema/> | |
| 1168 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1169 | - <xloc>427</xloc> | |
| 1170 | - <yloc>26</yloc> | |
| 1171 | - <draw>Y</draw> | |
| 1172 | - </GUI> | |
| 1173 | - </step> | |
| 1174 | - | |
| 1175 | - <step> | |
| 1176 | - <name>获取时刻表名称</name> | |
| 1177 | - <type>GetVariable</type> | |
| 1178 | - <description/> | |
| 1179 | - <distribute>Y</distribute> | |
| 1180 | - <custom_distribution/> | |
| 1181 | - <copies>1</copies> | |
| 1182 | - <partitioning> | |
| 1183 | - <method>none</method> | |
| 1184 | - <schema_name/> | |
| 1185 | - </partitioning> | |
| 1186 | - <fields> | |
| 1187 | - <field> | |
| 1188 | - <name>ttinfoname_</name> | |
| 1189 | - <variable>${ttinfoname}</variable> | |
| 1190 | - <type>String</type> | |
| 1191 | - <format/> | |
| 1192 | - <currency/> | |
| 1193 | - <decimal/> | |
| 1194 | - <group/> | |
| 1195 | - <length>-1</length> | |
| 1196 | - <precision>-1</precision> | |
| 1197 | - <trim_type>none</trim_type> | |
| 1198 | - </field> | |
| 1199 | - </fields> | |
| 1200 | - <cluster_schema/> | |
| 1201 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1202 | - <xloc>82</xloc> | |
| 1203 | - <yloc>508</yloc> | |
| 1204 | - <draw>Y</draw> | |
| 1205 | - </GUI> | |
| 1206 | - </step> | |
| 1207 | - | |
| 1208 | - <step> | |
| 1209 | - <name>获取线路名称</name> | |
| 1210 | - <type>GetVariable</type> | |
| 1211 | - <description/> | |
| 1212 | - <distribute>Y</distribute> | |
| 1213 | - <custom_distribution/> | |
| 1214 | - <copies>1</copies> | |
| 1215 | - <partitioning> | |
| 1216 | - <method>none</method> | |
| 1217 | - <schema_name/> | |
| 1218 | - </partitioning> | |
| 1219 | - <fields> | |
| 1220 | - <field> | |
| 1221 | - <name>xlname_</name> | |
| 1222 | - <variable>${xlname}</variable> | |
| 1223 | - <type>String</type> | |
| 1224 | - <format/> | |
| 1225 | - <currency/> | |
| 1226 | - <decimal/> | |
| 1227 | - <group/> | |
| 1228 | - <length>-1</length> | |
| 1229 | - <precision>-1</precision> | |
| 1230 | - <trim_type>none</trim_type> | |
| 1231 | - </field> | |
| 1232 | - </fields> | |
| 1233 | - <cluster_schema/> | |
| 1234 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1235 | - <xloc>78</xloc> | |
| 1236 | - <yloc>351</yloc> | |
| 1237 | - <draw>Y</draw> | |
| 1238 | - </GUI> | |
| 1239 | - </step> | |
| 1240 | - | |
| 1241 | - <step> | |
| 1242 | - <name>逗号切分成字段名</name> | |
| 1243 | - <type>SplitFieldToRows3</type> | |
| 1244 | - <description/> | |
| 1245 | - <distribute>Y</distribute> | |
| 1246 | - <custom_distribution/> | |
| 1247 | - <copies>1</copies> | |
| 1248 | - <partitioning> | |
| 1249 | - <method>none</method> | |
| 1250 | - <schema_name/> | |
| 1251 | - </partitioning> | |
| 1252 | - <splitfield>fieldnames</splitfield> | |
| 1253 | - <delimiter>,</delimiter> | |
| 1254 | - <newfield>fieldname</newfield> | |
| 1255 | - <rownum>N</rownum> | |
| 1256 | - <rownum_field/> | |
| 1257 | - <resetrownumber>Y</resetrownumber> | |
| 1258 | - <delimiter_is_regex>N</delimiter_is_regex> | |
| 1259 | - <cluster_schema/> | |
| 1260 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1261 | - <xloc>261</xloc> | |
| 1262 | - <yloc>163</yloc> | |
| 1263 | - <draw>Y</draw> | |
| 1264 | - </GUI> | |
| 1265 | - </step> | |
| 1266 | - | |
| 1267 | - <step> | |
| 1268 | - <name>逗号切分成字段名 2</name> | |
| 1269 | - <type>SplitFieldToRows3</type> | |
| 1270 | - <description/> | |
| 1271 | - <distribute>Y</distribute> | |
| 1272 | - <custom_distribution/> | |
| 1273 | - <copies>1</copies> | |
| 1274 | - <partitioning> | |
| 1275 | - <method>none</method> | |
| 1276 | - <schema_name/> | |
| 1277 | - </partitioning> | |
| 1278 | - <splitfield>normalizefieldnames_</splitfield> | |
| 1279 | - <delimiter>,</delimiter> | |
| 1280 | - <newfield>nfieldname</newfield> | |
| 1281 | - <rownum>N</rownum> | |
| 1282 | - <rownum_field/> | |
| 1283 | - <resetrownumber>Y</resetrownumber> | |
| 1284 | - <delimiter_is_regex>N</delimiter_is_regex> | |
| 1285 | - <cluster_schema/> | |
| 1286 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1287 | - <xloc>263</xloc> | |
| 1288 | - <yloc>257</yloc> | |
| 1289 | - <draw>Y</draw> | |
| 1290 | - </GUI> | |
| 1291 | - </step> | |
| 1292 | - | |
| 1293 | - <step_error_handling> | |
| 1294 | - </step_error_handling> | |
| 1295 | - <slave-step-copy-partition-distribution> | |
| 1296 | -</slave-step-copy-partition-distribution> | |
| 1297 | - <slave_transformation>N</slave_transformation> | |
| 1298 | - | |
| 1299 | -</transformation> | |
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | +<transformation> | |
| 3 | + <info> | |
| 4 | + <name>时刻表明细导入元数据</name> | |
| 5 | + <description/> | |
| 6 | + <extended_description/> | |
| 7 | + <trans_version/> | |
| 8 | + <trans_type>Normal</trans_type> | |
| 9 | + <trans_status>0</trans_status> | |
| 10 | + <directory>/</directory> | |
| 11 | + <parameters> | |
| 12 | + <parameter> | |
| 13 | + <name>erroroutputdir</name> | |
| 14 | + <default_value>/Users/xu/resource/project_code/runtime_temp/bsth_control_u_d_files/erroroutput</default_value> | |
| 15 | + <description>ktr step配置的错误输出目录</description> | |
| 16 | + </parameter> | |
| 17 | + <parameter> | |
| 18 | + <name>excelfieldnames</name> | |
| 19 | + <default_value>路牌,出场,东川路地铁站1,塘泾路尚义路1,东川路地铁站2,塘泾路尚义路2,东川路地铁站3,塘泾路尚义路3,东川路地铁站4,塘泾路尚义路4,东川路地铁站5,塘泾路尚义路5,东川路地铁站6,塘泾路尚义路6,东川路地铁站7,塘泾路尚义路7,东川路地铁站8,塘泾路尚义路8,东川路地铁站9,塘泾路尚义路9,东川路地铁站10,塘泾路尚义路10,进场</default_value> | |
| 20 | + <description>时刻表excel输入字段名,以逗号连接</description> | |
| 21 | + </parameter> | |
| 22 | + <parameter> | |
| 23 | + <name>filepath</name> | |
| 24 | + <default_value>/Users/xu/resource/project_code/bsth_project/bsth_control_etl/闵行公交/闵行26路时刻表160630时刻表.xls</default_value> | |
| 25 | + <description>待处理导入的excel文件</description> | |
| 26 | + </parameter> | |
| 27 | + <parameter> | |
| 28 | + <name>injectktrfile</name> | |
| 29 | + <default_value>/Users/xu/resource/project_code/bsth_project/bsth_control/src/main/resources/datatools/ktrs/ttinfodetailDataInput.ktr</default_value> | |
| 30 | + <description>注入元数据的ktr文件</description> | |
| 31 | + </parameter> | |
| 32 | + <parameter> | |
| 33 | + <name>normalizefieldnames</name> | |
| 34 | + <default_value>出场,东川路地铁站1,塘泾路尚义路1,东川路地铁站2,塘泾路尚义路2,东川路地铁站3,塘泾路尚义路3,东川路地铁站4,塘泾路尚义路4,东川路地铁站5,塘泾路尚义路5,东川路地铁站6,塘泾路尚义路6,东川路地铁站7,塘泾路尚义路7,东川路地铁站8,塘泾路尚义路8,东川路地铁站9,塘泾路尚义路9,东川路地铁站10,塘泾路尚义路10,进场</default_value> | |
| 35 | + <description>数据范式化字段名,以逗号连接</description> | |
| 36 | + </parameter> | |
| 37 | + <parameter> | |
| 38 | + <name>sheetname</name> | |
| 39 | + <default_value>工作表1</default_value> | |
| 40 | + <description>xls sheet名字</description> | |
| 41 | + </parameter> | |
| 42 | + <parameter> | |
| 43 | + <name>tccname</name> | |
| 44 | + <default_value>东川路地铁站停车场</default_value> | |
| 45 | + <description>停车场名字</description> | |
| 46 | + </parameter> | |
| 47 | + <parameter> | |
| 48 | + <name>ttid</name> | |
| 49 | + <default_value>1</default_value> | |
| 50 | + <description>时刻表id</description> | |
| 51 | + </parameter> | |
| 52 | + <parameter> | |
| 53 | + <name>ttinfoname</name> | |
| 54 | + <default_value>表2</default_value> | |
| 55 | + <description>时刻表名称</description> | |
| 56 | + </parameter> | |
| 57 | + <parameter> | |
| 58 | + <name>xlname</name> | |
| 59 | + <default_value>闵行26路</default_value> | |
| 60 | + <description>线路名称</description> | |
| 61 | + </parameter> | |
| 62 | + </parameters> | |
| 63 | + <log> | |
| 64 | +<trans-log-table><connection/> | |
| 65 | +<schema/> | |
| 66 | +<table/> | |
| 67 | +<size_limit_lines/> | |
| 68 | +<interval/> | |
| 69 | +<timeout_days/> | |
| 70 | +<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> | |
| 71 | +<perf-log-table><connection/> | |
| 72 | +<schema/> | |
| 73 | +<table/> | |
| 74 | +<interval/> | |
| 75 | +<timeout_days/> | |
| 76 | +<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> | |
| 77 | +<channel-log-table><connection/> | |
| 78 | +<schema/> | |
| 79 | +<table/> | |
| 80 | +<timeout_days/> | |
| 81 | +<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> | |
| 82 | +<step-log-table><connection/> | |
| 83 | +<schema/> | |
| 84 | +<table/> | |
| 85 | +<timeout_days/> | |
| 86 | +<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> | |
| 87 | +<metrics-log-table><connection/> | |
| 88 | +<schema/> | |
| 89 | +<table/> | |
| 90 | +<timeout_days/> | |
| 91 | +<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> | |
| 92 | + </log> | |
| 93 | + <maxdate> | |
| 94 | + <connection/> | |
| 95 | + <table/> | |
| 96 | + <field/> | |
| 97 | + <offset>0.0</offset> | |
| 98 | + <maxdiff>0.0</maxdiff> | |
| 99 | + </maxdate> | |
| 100 | + <size_rowset>10000</size_rowset> | |
| 101 | + <sleep_time_empty>50</sleep_time_empty> | |
| 102 | + <sleep_time_full>50</sleep_time_full> | |
| 103 | + <unique_connections>N</unique_connections> | |
| 104 | + <feedback_shown>Y</feedback_shown> | |
| 105 | + <feedback_size>50000</feedback_size> | |
| 106 | + <using_thread_priorities>Y</using_thread_priorities> | |
| 107 | + <shared_objects_file/> | |
| 108 | + <capture_step_performance>N</capture_step_performance> | |
| 109 | + <step_performance_capturing_delay>1000</step_performance_capturing_delay> | |
| 110 | + <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit> | |
| 111 | + <dependencies> | |
| 112 | + </dependencies> | |
| 113 | + <partitionschemas> | |
| 114 | + </partitionschemas> | |
| 115 | + <slaveservers> | |
| 116 | + </slaveservers> | |
| 117 | + <clusterschemas> | |
| 118 | + </clusterschemas> | |
| 119 | + <created_user>-</created_user> | |
| 120 | + <created_date>2016/07/01 09:55:32.649</created_date> | |
| 121 | + <modified_user>-</modified_user> | |
| 122 | + <modified_date>2016/07/01 09:55:32.649</modified_date> | |
| 123 | + <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA=</key_for_session_key> | |
| 124 | + <is_key_private>N</is_key_private> | |
| 125 | + </info> | |
| 126 | + <notepads> | |
| 127 | + </notepads> | |
| 128 | + <connection> | |
| 129 | + <name>bus_control_variable</name> | |
| 130 | + <server>${v_db_ip}</server> | |
| 131 | + <type>MYSQL</type> | |
| 132 | + <access>Native</access> | |
| 133 | + <database>${v_db_dname}</database> | |
| 134 | + <port>3306</port> | |
| 135 | + <username>${v_db_uname}</username> | |
| 136 | + <password>${v_db_pwd}</password> | |
| 137 | + <servername/> | |
| 138 | + <data_tablespace/> | |
| 139 | + <index_tablespace/> | |
| 140 | + <attributes> | |
| 141 | + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute> | |
| 142 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 143 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 144 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 145 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 146 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 147 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 148 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 149 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 150 | + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute> | |
| 151 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 152 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 153 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 154 | + </attributes> | |
| 155 | + </connection> | |
| 156 | + <connection> | |
| 157 | + <name>bus_control_公司_201</name> | |
| 158 | + <server>localhost</server> | |
| 159 | + <type>MYSQL</type> | |
| 160 | + <access>Native</access> | |
| 161 | + <database>control</database> | |
| 162 | + <port>3306</port> | |
| 163 | + <username>root</username> | |
| 164 | + <password>Encrypted </password> | |
| 165 | + <servername/> | |
| 166 | + <data_tablespace/> | |
| 167 | + <index_tablespace/> | |
| 168 | + <attributes> | |
| 169 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 170 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 171 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 172 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 173 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 174 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 175 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 176 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 177 | + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute> | |
| 178 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 179 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 180 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 181 | + </attributes> | |
| 182 | + </connection> | |
| 183 | + <connection> | |
| 184 | + <name>bus_control_本机</name> | |
| 185 | + <server>localhost</server> | |
| 186 | + <type>MYSQL</type> | |
| 187 | + <access>Native</access> | |
| 188 | + <database>control</database> | |
| 189 | + <port>3306</port> | |
| 190 | + <username>root</username> | |
| 191 | + <password>Encrypted </password> | |
| 192 | + <servername/> | |
| 193 | + <data_tablespace/> | |
| 194 | + <index_tablespace/> | |
| 195 | + <attributes> | |
| 196 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 197 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 198 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 199 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 200 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 201 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 202 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 203 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 204 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 205 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 206 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 207 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 208 | + </attributes> | |
| 209 | + </connection> | |
| 210 | + <connection> | |
| 211 | + <name>xlab_mysql_youle</name> | |
| 212 | + <server>101.231.124.8</server> | |
| 213 | + <type>MYSQL</type> | |
| 214 | + <access>Native</access> | |
| 215 | + <database>xlab_youle</database> | |
| 216 | + <port>45687</port> | |
| 217 | + <username>xlab-youle</username> | |
| 218 | + <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password> | |
| 219 | + <servername/> | |
| 220 | + <data_tablespace/> | |
| 221 | + <index_tablespace/> | |
| 222 | + <attributes> | |
| 223 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 224 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 225 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 226 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 227 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 228 | + <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute> | |
| 229 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 230 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 231 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 232 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 233 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 234 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 235 | + </attributes> | |
| 236 | + </connection> | |
| 237 | + <connection> | |
| 238 | + <name>xlab_mysql_youle(本机)</name> | |
| 239 | + <server>localhost</server> | |
| 240 | + <type>MYSQL</type> | |
| 241 | + <access>Native</access> | |
| 242 | + <database>xlab_youle</database> | |
| 243 | + <port>3306</port> | |
| 244 | + <username>root</username> | |
| 245 | + <password>Encrypted </password> | |
| 246 | + <servername/> | |
| 247 | + <data_tablespace/> | |
| 248 | + <index_tablespace/> | |
| 249 | + <attributes> | |
| 250 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 251 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 252 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 253 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 254 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 255 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 256 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 257 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 258 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 259 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 260 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 261 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 262 | + </attributes> | |
| 263 | + </connection> | |
| 264 | + <connection> | |
| 265 | + <name>xlab_youle</name> | |
| 266 | + <server/> | |
| 267 | + <type>MYSQL</type> | |
| 268 | + <access>JNDI</access> | |
| 269 | + <database>xlab_youle</database> | |
| 270 | + <port>1521</port> | |
| 271 | + <username/> | |
| 272 | + <password>Encrypted </password> | |
| 273 | + <servername/> | |
| 274 | + <data_tablespace/> | |
| 275 | + <index_tablespace/> | |
| 276 | + <attributes> | |
| 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>1521</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 | + <order> | |
| 290 | + <hop> <from>获取excel文件名</from><to>ETL元数据注入</to><enabled>Y</enabled> </hop> | |
| 291 | + <hop> <from>获取excel字段名字符串</from><to>逗号切分成字段名</to><enabled>Y</enabled> </hop> | |
| 292 | + <hop> <from>逗号切分成字段名</from><to>增加excel字段其他元数据</to><enabled>Y</enabled> </hop> | |
| 293 | + <hop> <from>增加excel字段其他元数据</from><to>ETL元数据注入</to><enabled>Y</enabled> </hop> | |
| 294 | + <hop> <from>获取normalize字段名字符串</from><to>逗号切分成字段名 2</to><enabled>Y</enabled> </hop> | |
| 295 | + <hop> <from>逗号切分成字段名 2</from><to>增加normalize元数据</to><enabled>Y</enabled> </hop> | |
| 296 | + <hop> <from>增加normalize元数据</from><to>ETL元数据注入</to><enabled>Y</enabled> </hop> | |
| 297 | + <hop> <from>获取线路名称</from><to>增加线路名称metadata</to><enabled>Y</enabled> </hop> | |
| 298 | + <hop> <from>增加线路名称metadata</from><to>替换线路名称</to><enabled>Y</enabled> </hop> | |
| 299 | + <hop> <from>替换线路名称</from><to>线路名称metadata字段</to><enabled>Y</enabled> </hop> | |
| 300 | + <hop> <from>获取停车场名称</from><to>增加停车场名称metadata</to><enabled>Y</enabled> </hop> | |
| 301 | + <hop> <from>增加停车场名称metadata</from><to>替换停车厂名字 </to><enabled>Y</enabled> </hop> | |
| 302 | + <hop> <from>替换停车厂名字 </from><to>停车场名称metadata字段</to><enabled>Y</enabled> </hop> | |
| 303 | + <hop> <from>获取时刻表名称</from><to>增加时刻表名称metadata</to><enabled>Y</enabled> </hop> | |
| 304 | + <hop> <from>增加时刻表名称metadata</from><to>替换时刻表名字</to><enabled>Y</enabled> </hop> | |
| 305 | + <hop> <from>替换时刻表名字</from><to>时刻表名称metadata字段</to><enabled>Y</enabled> </hop> | |
| 306 | + <hop> <from>线路名称metadata字段</from><to>合并增加常量数据metadata</to><enabled>Y</enabled> </hop> | |
| 307 | + <hop> <from>停车场名称metadata字段</from><to>合并增加常量数据metadata</to><enabled>Y</enabled> </hop> | |
| 308 | + <hop> <from>时刻表名称metadata字段</from><to>合并增加常量数据metadata</to><enabled>Y</enabled> </hop> | |
| 309 | + <hop> <from>合并增加常量数据metadata</from><to>ETL元数据注入</to><enabled>Y</enabled> </hop> | |
| 310 | + <hop> <from>获取时刻表id</from><to>删除之前的明细信息</to><enabled>Y</enabled> </hop> | |
| 311 | + </order> | |
| 312 | + <step> | |
| 313 | + <name>ETL元数据注入</name> | |
| 314 | + <type>MetaInject</type> | |
| 315 | + <description/> | |
| 316 | + <distribute>Y</distribute> | |
| 317 | + <custom_distribution/> | |
| 318 | + <copies>1</copies> | |
| 319 | + <partitioning> | |
| 320 | + <method>none</method> | |
| 321 | + <schema_name/> | |
| 322 | + </partitioning> | |
| 323 | + <specification_method>filename</specification_method> | |
| 324 | + <trans_object_id/> | |
| 325 | + <trans_name/> | |
| 326 | + <filename>${injectktrfile}</filename> | |
| 327 | + <directory_path/> | |
| 328 | + <source_step/> | |
| 329 | + <source_output_fields> </source_output_fields> <target_file/> | |
| 330 | + <no_execution>N</no_execution> | |
| 331 | + <stream_source_step/> | |
| 332 | + <stream_target_step/> | |
| 333 | + <mappings> <mapping> <target_step_name>Excel输入</target_step_name> | |
| 334 | + <target_attribute_key>FORMAT</target_attribute_key> | |
| 335 | + <target_detail>Y</target_detail> | |
| 336 | + <source_step>列拆分为多行</source_step> | |
| 337 | + <source_field>format</source_field> | |
| 338 | + </mapping> <mapping> <target_step_name>Excel输入</target_step_name> | |
| 339 | + <target_attribute_key>REPEAT</target_attribute_key> | |
| 340 | + <target_detail>Y</target_detail> | |
| 341 | + <source_step>列拆分为多行</source_step> | |
| 342 | + <source_field>repeat</source_field> | |
| 343 | + </mapping> <mapping> <target_step_name>时刻表明细信息Excel输入</target_step_name> | |
| 344 | + <target_attribute_key>TRIM_TYPE</target_attribute_key> | |
| 345 | + <target_detail>Y</target_detail> | |
| 346 | + <source_step>增加excel字段其他元数据</source_step> | |
| 347 | + <source_field>trim_type</source_field> | |
| 348 | + </mapping> <mapping> <target_step_name>时刻表明细信息Excel输入</target_step_name> | |
| 349 | + <target_attribute_key>FILENAME</target_attribute_key> | |
| 350 | + <target_detail>Y</target_detail> | |
| 351 | + <source_step>获取excel文件名</source_step> | |
| 352 | + <source_field>filepath_</source_field> | |
| 353 | + </mapping> <mapping> <target_step_name>时刻表明细信息Excel输入</target_step_name> | |
| 354 | + <target_attribute_key>PRECISION</target_attribute_key> | |
| 355 | + <target_detail>Y</target_detail> | |
| 356 | + <source_step>增加excel字段其他元数据</source_step> | |
| 357 | + <source_field>precision</source_field> | |
| 358 | + </mapping> <mapping> <target_step_name>Excel输入</target_step_name> | |
| 359 | + <target_attribute_key>TYPE</target_attribute_key> | |
| 360 | + <target_detail>Y</target_detail> | |
| 361 | + <source_step>列拆分为多行</source_step> | |
| 362 | + <source_field>type</source_field> | |
| 363 | + </mapping> <mapping> <target_step_name>增加时刻表名字,线路名字,停车场名字</target_step_name> | |
| 364 | + <target_attribute_key>DATA_VALUE</target_attribute_key> | |
| 365 | + <target_detail>Y</target_detail> | |
| 366 | + <source_step>合并增加常量数据metadata</source_step> | |
| 367 | + <source_field>col_value</source_field> | |
| 368 | + </mapping> <mapping> <target_step_name>Excel输入</target_step_name> | |
| 369 | + <target_attribute_key>LENGTH</target_attribute_key> | |
| 370 | + <target_detail>Y</target_detail> | |
| 371 | + <source_step>列拆分为多行</source_step> | |
| 372 | + <source_field>length</source_field> | |
| 373 | + </mapping> <mapping> <target_step_name>增加时刻表名字,线路名字,停车场名字</target_step_name> | |
| 374 | + <target_attribute_key>TYPE</target_attribute_key> | |
| 375 | + <target_detail>Y</target_detail> | |
| 376 | + <source_step>合并增加常量数据metadata</source_step> | |
| 377 | + <source_field>col_type</source_field> | |
| 378 | + </mapping> <mapping> <target_step_name>行转列</target_step_name> | |
| 379 | + <target_attribute_key>NAME</target_attribute_key> | |
| 380 | + <target_detail>Y</target_detail> | |
| 381 | + <source_step>列拆分为多行 2</source_step> | |
| 382 | + <source_field>fieldName</source_field> | |
| 383 | + </mapping> <mapping> <target_step_name>时刻表明细信息Excel输入</target_step_name> | |
| 384 | + <target_attribute_key>NAME</target_attribute_key> | |
| 385 | + <target_detail>Y</target_detail> | |
| 386 | + <source_step>增加excel字段其他元数据</source_step> | |
| 387 | + <source_field>fieldname</source_field> | |
| 388 | + </mapping> <mapping> <target_step_name>班次数据范式化</target_step_name> | |
| 389 | + <target_attribute_key>NAME</target_attribute_key> | |
| 390 | + <target_detail>Y</target_detail> | |
| 391 | + <source_step>增加normalize元数据</source_step> | |
| 392 | + <source_field>nfieldname</source_field> | |
| 393 | + </mapping> <mapping> <target_step_name>时刻表明细信息Excel输入</target_step_name> | |
| 394 | + <target_attribute_key>SHEET_NAME</target_attribute_key> | |
| 395 | + <target_detail>Y</target_detail> | |
| 396 | + <source_step>获取excel文件名</source_step> | |
| 397 | + <source_field>sheetname_</source_field> | |
| 398 | + </mapping> <mapping> <target_step_name>时刻表明细信息Excel输入</target_step_name> | |
| 399 | + <target_attribute_key>LENGTH</target_attribute_key> | |
| 400 | + <target_detail>Y</target_detail> | |
| 401 | + <source_step>增加excel字段其他元数据</source_step> | |
| 402 | + <source_field>length</source_field> | |
| 403 | + </mapping> <mapping> <target_step_name>增加时刻表名字,线路名字,停车场名字</target_step_name> | |
| 404 | + <target_attribute_key>NAME</target_attribute_key> | |
| 405 | + <target_detail>Y</target_detail> | |
| 406 | + <source_step>合并增加常量数据metadata</source_step> | |
| 407 | + <source_field>col_name</source_field> | |
| 408 | + </mapping> <mapping> <target_step_name>时刻表明细信息Excel输入</target_step_name> | |
| 409 | + <target_attribute_key>TYPE</target_attribute_key> | |
| 410 | + <target_detail>Y</target_detail> | |
| 411 | + <source_step>增加excel字段其他元数据</source_step> | |
| 412 | + <source_field>fieldtype</source_field> | |
| 413 | + </mapping> <mapping> <target_step_name>Excel输入</target_step_name> | |
| 414 | + <target_attribute_key>NAME</target_attribute_key> | |
| 415 | + <target_detail>Y</target_detail> | |
| 416 | + <source_step>列拆分为多行</source_step> | |
| 417 | + <source_field>fieldName</source_field> | |
| 418 | + </mapping> <mapping> <target_step_name>Excel输入</target_step_name> | |
| 419 | + <target_attribute_key>TRIM_TYPE</target_attribute_key> | |
| 420 | + <target_detail>Y</target_detail> | |
| 421 | + <source_step>列拆分为多行</source_step> | |
| 422 | + <source_field>trim_type</source_field> | |
| 423 | + </mapping> <mapping> <target_step_name>行转列</target_step_name> | |
| 424 | + <target_attribute_key>VALUE</target_attribute_key> | |
| 425 | + <target_detail>Y</target_detail> | |
| 426 | + <source_step>列拆分为多行 2</source_step> | |
| 427 | + <source_field>fieldName</source_field> | |
| 428 | + </mapping> <mapping> <target_step_name>时刻表明细信息Excel输入</target_step_name> | |
| 429 | + <target_attribute_key>REPEAT</target_attribute_key> | |
| 430 | + <target_detail>Y</target_detail> | |
| 431 | + <source_step>增加excel字段其他元数据</source_step> | |
| 432 | + <source_field>repeat</source_field> | |
| 433 | + </mapping> <mapping> <target_step_name>行转列</target_step_name> | |
| 434 | + <target_attribute_key>NORMALISED</target_attribute_key> | |
| 435 | + <target_detail>Y</target_detail> | |
| 436 | + <source_step>列拆分为多行 2</source_step> | |
| 437 | + <source_field>value</source_field> | |
| 438 | + </mapping> <mapping> <target_step_name>班次数据范式化</target_step_name> | |
| 439 | + <target_attribute_key>NORMALISED</target_attribute_key> | |
| 440 | + <target_detail>Y</target_detail> | |
| 441 | + <source_step>增加normalize元数据</source_step> | |
| 442 | + <source_field>valuefield</source_field> | |
| 443 | + </mapping> <mapping> <target_step_name>时刻表明细信息Excel输入</target_step_name> | |
| 444 | + <target_attribute_key>FORMAT</target_attribute_key> | |
| 445 | + <target_detail>Y</target_detail> | |
| 446 | + <source_step>增加excel字段其他元数据</source_step> | |
| 447 | + <source_field>format</source_field> | |
| 448 | + </mapping> <mapping> <target_step_name>班次数据范式化</target_step_name> | |
| 449 | + <target_attribute_key>VALUE</target_attribute_key> | |
| 450 | + <target_detail>Y</target_detail> | |
| 451 | + <source_step>增加normalize元数据</source_step> | |
| 452 | + <source_field>nfieldname</source_field> | |
| 453 | + </mapping> <mapping> <target_step_name>Excel输入</target_step_name> | |
| 454 | + <target_attribute_key>PRECISION</target_attribute_key> | |
| 455 | + <target_detail>Y</target_detail> | |
| 456 | + <source_step>列拆分为多行</source_step> | |
| 457 | + <source_field>precision</source_field> | |
| 458 | + </mapping> </mappings> <cluster_schema/> | |
| 459 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 460 | + <xloc>695</xloc> | |
| 461 | + <yloc>177</yloc> | |
| 462 | + <draw>Y</draw> | |
| 463 | + </GUI> | |
| 464 | + </step> | |
| 465 | + | |
| 466 | + <step> | |
| 467 | + <name>停车场名称metadata字段</name> | |
| 468 | + <type>SelectValues</type> | |
| 469 | + <description/> | |
| 470 | + <distribute>Y</distribute> | |
| 471 | + <custom_distribution/> | |
| 472 | + <copies>1</copies> | |
| 473 | + <partitioning> | |
| 474 | + <method>none</method> | |
| 475 | + <schema_name/> | |
| 476 | + </partitioning> | |
| 477 | + <fields> <field> <name>col_name</name> | |
| 478 | + <rename/> | |
| 479 | + <length>-2</length> | |
| 480 | + <precision>-2</precision> | |
| 481 | + </field> <field> <name>col_type</name> | |
| 482 | + <rename/> | |
| 483 | + <length>-2</length> | |
| 484 | + <precision>-2</precision> | |
| 485 | + </field> <field> <name>col_value</name> | |
| 486 | + <rename/> | |
| 487 | + <length>-2</length> | |
| 488 | + <precision>-2</precision> | |
| 489 | + </field> <select_unspecified>N</select_unspecified> | |
| 490 | + </fields> <cluster_schema/> | |
| 491 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 492 | + <xloc>490</xloc> | |
| 493 | + <yloc>429</yloc> | |
| 494 | + <draw>Y</draw> | |
| 495 | + </GUI> | |
| 496 | + </step> | |
| 497 | + | |
| 498 | + <step> | |
| 499 | + <name>删除之前的明细信息</name> | |
| 500 | + <type>ExecSQL</type> | |
| 501 | + <description/> | |
| 502 | + <distribute>Y</distribute> | |
| 503 | + <custom_distribution/> | |
| 504 | + <copies>1</copies> | |
| 505 | + <partitioning> | |
| 506 | + <method>none</method> | |
| 507 | + <schema_name/> | |
| 508 | + </partitioning> | |
| 509 | + <connection>bus_control_variable</connection> | |
| 510 | + <execute_each_row>Y</execute_each_row> | |
| 511 | + <single_statement>N</single_statement> | |
| 512 | + <replace_variables>N</replace_variables> | |
| 513 | + <quoteString>N</quoteString> | |
| 514 | + <sql>delete from bsth_c_s_ttinfo_detail where ttinfo = ?</sql> | |
| 515 | + <set_params>N</set_params> | |
| 516 | + <insert_field/> | |
| 517 | + <update_field/> | |
| 518 | + <delete_field/> | |
| 519 | + <read_field/> | |
| 520 | + <arguments> | |
| 521 | + <argument><name>ttid_</name></argument> | |
| 522 | + </arguments> | |
| 523 | + <cluster_schema/> | |
| 524 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 525 | + <xloc>627</xloc> | |
| 526 | + <yloc>26</yloc> | |
| 527 | + <draw>Y</draw> | |
| 528 | + </GUI> | |
| 529 | + </step> | |
| 530 | + | |
| 531 | + <step> | |
| 532 | + <name>合并增加常量数据metadata</name> | |
| 533 | + <type>Dummy</type> | |
| 534 | + <description/> | |
| 535 | + <distribute>Y</distribute> | |
| 536 | + <custom_distribution/> | |
| 537 | + <copies>1</copies> | |
| 538 | + <partitioning> | |
| 539 | + <method>none</method> | |
| 540 | + <schema_name/> | |
| 541 | + </partitioning> | |
| 542 | + <cluster_schema/> | |
| 543 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 544 | + <xloc>702</xloc> | |
| 545 | + <yloc>383</yloc> | |
| 546 | + <draw>Y</draw> | |
| 547 | + </GUI> | |
| 548 | + </step> | |
| 549 | + | |
| 550 | + <step> | |
| 551 | + <name>增加excel字段其他元数据</name> | |
| 552 | + <type>Constant</type> | |
| 553 | + <description/> | |
| 554 | + <distribute>Y</distribute> | |
| 555 | + <custom_distribution/> | |
| 556 | + <copies>1</copies> | |
| 557 | + <partitioning> | |
| 558 | + <method>none</method> | |
| 559 | + <schema_name/> | |
| 560 | + </partitioning> | |
| 561 | + <fields> | |
| 562 | + <field> | |
| 563 | + <name>fieldtype</name> | |
| 564 | + <type>String</type> | |
| 565 | + <format/> | |
| 566 | + <currency/> | |
| 567 | + <decimal/> | |
| 568 | + <group/> | |
| 569 | + <nullif>String</nullif> | |
| 570 | + <length>-1</length> | |
| 571 | + <precision>-1</precision> | |
| 572 | + <set_empty_string>N</set_empty_string> | |
| 573 | + </field> | |
| 574 | + <field> | |
| 575 | + <name>length</name> | |
| 576 | + <type>String</type> | |
| 577 | + <format/> | |
| 578 | + <currency/> | |
| 579 | + <decimal/> | |
| 580 | + <group/> | |
| 581 | + <nullif>-1</nullif> | |
| 582 | + <length>-1</length> | |
| 583 | + <precision>-1</precision> | |
| 584 | + <set_empty_string>N</set_empty_string> | |
| 585 | + </field> | |
| 586 | + <field> | |
| 587 | + <name>precision</name> | |
| 588 | + <type>String</type> | |
| 589 | + <format/> | |
| 590 | + <currency/> | |
| 591 | + <decimal/> | |
| 592 | + <group/> | |
| 593 | + <nullif>-1</nullif> | |
| 594 | + <length>-1</length> | |
| 595 | + <precision>-1</precision> | |
| 596 | + <set_empty_string>N</set_empty_string> | |
| 597 | + </field> | |
| 598 | + <field> | |
| 599 | + <name>trim_type</name> | |
| 600 | + <type>String</type> | |
| 601 | + <format/> | |
| 602 | + <currency/> | |
| 603 | + <decimal/> | |
| 604 | + <group/> | |
| 605 | + <nullif>none</nullif> | |
| 606 | + <length>-1</length> | |
| 607 | + <precision>-1</precision> | |
| 608 | + <set_empty_string>N</set_empty_string> | |
| 609 | + </field> | |
| 610 | + <field> | |
| 611 | + <name>repeat</name> | |
| 612 | + <type>String</type> | |
| 613 | + <format/> | |
| 614 | + <currency/> | |
| 615 | + <decimal/> | |
| 616 | + <group/> | |
| 617 | + <nullif>N</nullif> | |
| 618 | + <length>-1</length> | |
| 619 | + <precision>-1</precision> | |
| 620 | + <set_empty_string>N</set_empty_string> | |
| 621 | + </field> | |
| 622 | + <field> | |
| 623 | + <name>format</name> | |
| 624 | + <type>String</type> | |
| 625 | + <format/> | |
| 626 | + <currency/> | |
| 627 | + <decimal/> | |
| 628 | + <group/> | |
| 629 | + <nullif>#</nullif> | |
| 630 | + <length>-1</length> | |
| 631 | + <precision>-1</precision> | |
| 632 | + <set_empty_string>N</set_empty_string> | |
| 633 | + </field> | |
| 634 | + </fields> | |
| 635 | + <cluster_schema/> | |
| 636 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 637 | + <xloc>441</xloc> | |
| 638 | + <yloc>172</yloc> | |
| 639 | + <draw>Y</draw> | |
| 640 | + </GUI> | |
| 641 | + </step> | |
| 642 | + | |
| 643 | + <step> | |
| 644 | + <name>增加normalize元数据</name> | |
| 645 | + <type>Constant</type> | |
| 646 | + <description/> | |
| 647 | + <distribute>Y</distribute> | |
| 648 | + <custom_distribution/> | |
| 649 | + <copies>1</copies> | |
| 650 | + <partitioning> | |
| 651 | + <method>none</method> | |
| 652 | + <schema_name/> | |
| 653 | + </partitioning> | |
| 654 | + <fields> | |
| 655 | + <field> | |
| 656 | + <name>valuefield</name> | |
| 657 | + <type>String</type> | |
| 658 | + <format/> | |
| 659 | + <currency/> | |
| 660 | + <decimal/> | |
| 661 | + <group/> | |
| 662 | + <nullif>发车时间</nullif> | |
| 663 | + <length>-1</length> | |
| 664 | + <precision>-1</precision> | |
| 665 | + <set_empty_string>N</set_empty_string> | |
| 666 | + </field> | |
| 667 | + </fields> | |
| 668 | + <cluster_schema/> | |
| 669 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 670 | + <xloc>447</xloc> | |
| 671 | + <yloc>257</yloc> | |
| 672 | + <draw>Y</draw> | |
| 673 | + </GUI> | |
| 674 | + </step> | |
| 675 | + | |
| 676 | + <step> | |
| 677 | + <name>增加停车场名称metadata</name> | |
| 678 | + <type>Constant</type> | |
| 679 | + <description/> | |
| 680 | + <distribute>Y</distribute> | |
| 681 | + <custom_distribution/> | |
| 682 | + <copies>1</copies> | |
| 683 | + <partitioning> | |
| 684 | + <method>none</method> | |
| 685 | + <schema_name/> | |
| 686 | + </partitioning> | |
| 687 | + <fields> | |
| 688 | + <field> | |
| 689 | + <name>col_name</name> | |
| 690 | + <type>String</type> | |
| 691 | + <format/> | |
| 692 | + <currency/> | |
| 693 | + <decimal/> | |
| 694 | + <group/> | |
| 695 | + <nullif>tccname_</nullif> | |
| 696 | + <length>-1</length> | |
| 697 | + <precision>-1</precision> | |
| 698 | + <set_empty_string>N</set_empty_string> | |
| 699 | + </field> | |
| 700 | + <field> | |
| 701 | + <name>col_type</name> | |
| 702 | + <type>String</type> | |
| 703 | + <format/> | |
| 704 | + <currency/> | |
| 705 | + <decimal/> | |
| 706 | + <group/> | |
| 707 | + <nullif>String</nullif> | |
| 708 | + <length>-1</length> | |
| 709 | + <precision>-1</precision> | |
| 710 | + <set_empty_string>N</set_empty_string> | |
| 711 | + </field> | |
| 712 | + <field> | |
| 713 | + <name>col_value</name> | |
| 714 | + <type>String</type> | |
| 715 | + <format/> | |
| 716 | + <currency/> | |
| 717 | + <decimal/> | |
| 718 | + <group/> | |
| 719 | + <nullif>replace</nullif> | |
| 720 | + <length>-1</length> | |
| 721 | + <precision>-1</precision> | |
| 722 | + <set_empty_string>N</set_empty_string> | |
| 723 | + </field> | |
| 724 | + </fields> | |
| 725 | + <cluster_schema/> | |
| 726 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 727 | + <xloc>208</xloc> | |
| 728 | + <yloc>428</yloc> | |
| 729 | + <draw>Y</draw> | |
| 730 | + </GUI> | |
| 731 | + </step> | |
| 732 | + | |
| 733 | + <step> | |
| 734 | + <name>增加时刻表名称metadata</name> | |
| 735 | + <type>Constant</type> | |
| 736 | + <description/> | |
| 737 | + <distribute>Y</distribute> | |
| 738 | + <custom_distribution/> | |
| 739 | + <copies>1</copies> | |
| 740 | + <partitioning> | |
| 741 | + <method>none</method> | |
| 742 | + <schema_name/> | |
| 743 | + </partitioning> | |
| 744 | + <fields> | |
| 745 | + <field> | |
| 746 | + <name>col_name</name> | |
| 747 | + <type>String</type> | |
| 748 | + <format/> | |
| 749 | + <currency/> | |
| 750 | + <decimal/> | |
| 751 | + <group/> | |
| 752 | + <nullif>ttinfoname_</nullif> | |
| 753 | + <length>-1</length> | |
| 754 | + <precision>-1</precision> | |
| 755 | + <set_empty_string>N</set_empty_string> | |
| 756 | + </field> | |
| 757 | + <field> | |
| 758 | + <name>col_type</name> | |
| 759 | + <type>String</type> | |
| 760 | + <format/> | |
| 761 | + <currency/> | |
| 762 | + <decimal/> | |
| 763 | + <group/> | |
| 764 | + <nullif>String</nullif> | |
| 765 | + <length>-1</length> | |
| 766 | + <precision>-1</precision> | |
| 767 | + <set_empty_string>N</set_empty_string> | |
| 768 | + </field> | |
| 769 | + <field> | |
| 770 | + <name>col_value</name> | |
| 771 | + <type>String</type> | |
| 772 | + <format/> | |
| 773 | + <currency/> | |
| 774 | + <decimal/> | |
| 775 | + <group/> | |
| 776 | + <nullif>replace</nullif> | |
| 777 | + <length>-1</length> | |
| 778 | + <precision>-1</precision> | |
| 779 | + <set_empty_string>N</set_empty_string> | |
| 780 | + </field> | |
| 781 | + </fields> | |
| 782 | + <cluster_schema/> | |
| 783 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 784 | + <xloc>216</xloc> | |
| 785 | + <yloc>508</yloc> | |
| 786 | + <draw>Y</draw> | |
| 787 | + </GUI> | |
| 788 | + </step> | |
| 789 | + | |
| 790 | + <step> | |
| 791 | + <name>增加线路名称metadata</name> | |
| 792 | + <type>Constant</type> | |
| 793 | + <description/> | |
| 794 | + <distribute>Y</distribute> | |
| 795 | + <custom_distribution/> | |
| 796 | + <copies>1</copies> | |
| 797 | + <partitioning> | |
| 798 | + <method>none</method> | |
| 799 | + <schema_name/> | |
| 800 | + </partitioning> | |
| 801 | + <fields> | |
| 802 | + <field> | |
| 803 | + <name>col_name</name> | |
| 804 | + <type>String</type> | |
| 805 | + <format/> | |
| 806 | + <currency/> | |
| 807 | + <decimal/> | |
| 808 | + <group/> | |
| 809 | + <nullif>xlname_</nullif> | |
| 810 | + <length>-1</length> | |
| 811 | + <precision>-1</precision> | |
| 812 | + <set_empty_string>N</set_empty_string> | |
| 813 | + </field> | |
| 814 | + <field> | |
| 815 | + <name>col_type</name> | |
| 816 | + <type>String</type> | |
| 817 | + <format/> | |
| 818 | + <currency/> | |
| 819 | + <decimal/> | |
| 820 | + <group/> | |
| 821 | + <nullif>String</nullif> | |
| 822 | + <length>-1</length> | |
| 823 | + <precision>-1</precision> | |
| 824 | + <set_empty_string>N</set_empty_string> | |
| 825 | + </field> | |
| 826 | + <field> | |
| 827 | + <name>col_value</name> | |
| 828 | + <type>String</type> | |
| 829 | + <format/> | |
| 830 | + <currency/> | |
| 831 | + <decimal/> | |
| 832 | + <group/> | |
| 833 | + <nullif>replace</nullif> | |
| 834 | + <length>-1</length> | |
| 835 | + <precision>-1</precision> | |
| 836 | + <set_empty_string>N</set_empty_string> | |
| 837 | + </field> | |
| 838 | + </fields> | |
| 839 | + <cluster_schema/> | |
| 840 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 841 | + <xloc>202</xloc> | |
| 842 | + <yloc>351</yloc> | |
| 843 | + <draw>Y</draw> | |
| 844 | + </GUI> | |
| 845 | + </step> | |
| 846 | + | |
| 847 | + <step> | |
| 848 | + <name>时刻表名称metadata字段</name> | |
| 849 | + <type>SelectValues</type> | |
| 850 | + <description/> | |
| 851 | + <distribute>Y</distribute> | |
| 852 | + <custom_distribution/> | |
| 853 | + <copies>1</copies> | |
| 854 | + <partitioning> | |
| 855 | + <method>none</method> | |
| 856 | + <schema_name/> | |
| 857 | + </partitioning> | |
| 858 | + <fields> <field> <name>col_name</name> | |
| 859 | + <rename/> | |
| 860 | + <length>-2</length> | |
| 861 | + <precision>-2</precision> | |
| 862 | + </field> <field> <name>col_type</name> | |
| 863 | + <rename/> | |
| 864 | + <length>-2</length> | |
| 865 | + <precision>-2</precision> | |
| 866 | + </field> <field> <name>col_value</name> | |
| 867 | + <rename/> | |
| 868 | + <length>-2</length> | |
| 869 | + <precision>-2</precision> | |
| 870 | + </field> <select_unspecified>N</select_unspecified> | |
| 871 | + </fields> <cluster_schema/> | |
| 872 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 873 | + <xloc>496</xloc> | |
| 874 | + <yloc>508</yloc> | |
| 875 | + <draw>Y</draw> | |
| 876 | + </GUI> | |
| 877 | + </step> | |
| 878 | + | |
| 879 | + <step> | |
| 880 | + <name>替换停车厂名字 </name> | |
| 881 | + <type>SetValueField</type> | |
| 882 | + <description/> | |
| 883 | + <distribute>Y</distribute> | |
| 884 | + <custom_distribution/> | |
| 885 | + <copies>1</copies> | |
| 886 | + <partitioning> | |
| 887 | + <method>none</method> | |
| 888 | + <schema_name/> | |
| 889 | + </partitioning> | |
| 890 | + <fields> | |
| 891 | + <field> | |
| 892 | + <name>col_value</name> | |
| 893 | + <replaceby>tccname_</replaceby> | |
| 894 | + </field> | |
| 895 | + </fields> | |
| 896 | + <cluster_schema/> | |
| 897 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 898 | + <xloc>345</xloc> | |
| 899 | + <yloc>430</yloc> | |
| 900 | + <draw>Y</draw> | |
| 901 | + </GUI> | |
| 902 | + </step> | |
| 903 | + | |
| 904 | + <step> | |
| 905 | + <name>替换时刻表名字</name> | |
| 906 | + <type>SetValueField</type> | |
| 907 | + <description/> | |
| 908 | + <distribute>Y</distribute> | |
| 909 | + <custom_distribution/> | |
| 910 | + <copies>1</copies> | |
| 911 | + <partitioning> | |
| 912 | + <method>none</method> | |
| 913 | + <schema_name/> | |
| 914 | + </partitioning> | |
| 915 | + <fields> | |
| 916 | + <field> | |
| 917 | + <name>col_value</name> | |
| 918 | + <replaceby>ttinfoname_</replaceby> | |
| 919 | + </field> | |
| 920 | + </fields> | |
| 921 | + <cluster_schema/> | |
| 922 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 923 | + <xloc>354</xloc> | |
| 924 | + <yloc>509</yloc> | |
| 925 | + <draw>Y</draw> | |
| 926 | + </GUI> | |
| 927 | + </step> | |
| 928 | + | |
| 929 | + <step> | |
| 930 | + <name>替换线路名称</name> | |
| 931 | + <type>SetValueField</type> | |
| 932 | + <description/> | |
| 933 | + <distribute>Y</distribute> | |
| 934 | + <custom_distribution/> | |
| 935 | + <copies>1</copies> | |
| 936 | + <partitioning> | |
| 937 | + <method>none</method> | |
| 938 | + <schema_name/> | |
| 939 | + </partitioning> | |
| 940 | + <fields> | |
| 941 | + <field> | |
| 942 | + <name>col_value</name> | |
| 943 | + <replaceby>xlname_</replaceby> | |
| 944 | + </field> | |
| 945 | + </fields> | |
| 946 | + <cluster_schema/> | |
| 947 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 948 | + <xloc>340</xloc> | |
| 949 | + <yloc>352</yloc> | |
| 950 | + <draw>Y</draw> | |
| 951 | + </GUI> | |
| 952 | + </step> | |
| 953 | + | |
| 954 | + <step> | |
| 955 | + <name>线路名称metadata字段</name> | |
| 956 | + <type>SelectValues</type> | |
| 957 | + <description/> | |
| 958 | + <distribute>Y</distribute> | |
| 959 | + <custom_distribution/> | |
| 960 | + <copies>1</copies> | |
| 961 | + <partitioning> | |
| 962 | + <method>none</method> | |
| 963 | + <schema_name/> | |
| 964 | + </partitioning> | |
| 965 | + <fields> <field> <name>col_name</name> | |
| 966 | + <rename/> | |
| 967 | + <length>-2</length> | |
| 968 | + <precision>-2</precision> | |
| 969 | + </field> <field> <name>col_type</name> | |
| 970 | + <rename/> | |
| 971 | + <length>-2</length> | |
| 972 | + <precision>-2</precision> | |
| 973 | + </field> <field> <name>col_value</name> | |
| 974 | + <rename/> | |
| 975 | + <length>-2</length> | |
| 976 | + <precision>-2</precision> | |
| 977 | + </field> <select_unspecified>N</select_unspecified> | |
| 978 | + </fields> <cluster_schema/> | |
| 979 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 980 | + <xloc>487</xloc> | |
| 981 | + <yloc>353</yloc> | |
| 982 | + <draw>Y</draw> | |
| 983 | + </GUI> | |
| 984 | + </step> | |
| 985 | + | |
| 986 | + <step> | |
| 987 | + <name>获取excel字段名字符串</name> | |
| 988 | + <type>GetVariable</type> | |
| 989 | + <description/> | |
| 990 | + <distribute>Y</distribute> | |
| 991 | + <custom_distribution/> | |
| 992 | + <copies>1</copies> | |
| 993 | + <partitioning> | |
| 994 | + <method>none</method> | |
| 995 | + <schema_name/> | |
| 996 | + </partitioning> | |
| 997 | + <fields> | |
| 998 | + <field> | |
| 999 | + <name>fieldnames</name> | |
| 1000 | + <variable>${excelfieldnames}</variable> | |
| 1001 | + <type>String</type> | |
| 1002 | + <format/> | |
| 1003 | + <currency/> | |
| 1004 | + <decimal/> | |
| 1005 | + <group/> | |
| 1006 | + <length>-1</length> | |
| 1007 | + <precision>-1</precision> | |
| 1008 | + <trim_type>none</trim_type> | |
| 1009 | + </field> | |
| 1010 | + </fields> | |
| 1011 | + <cluster_schema/> | |
| 1012 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1013 | + <xloc>71</xloc> | |
| 1014 | + <yloc>163</yloc> | |
| 1015 | + <draw>Y</draw> | |
| 1016 | + </GUI> | |
| 1017 | + </step> | |
| 1018 | + | |
| 1019 | + <step> | |
| 1020 | + <name>获取excel文件名</name> | |
| 1021 | + <type>GetVariable</type> | |
| 1022 | + <description/> | |
| 1023 | + <distribute>Y</distribute> | |
| 1024 | + <custom_distribution/> | |
| 1025 | + <copies>1</copies> | |
| 1026 | + <partitioning> | |
| 1027 | + <method>none</method> | |
| 1028 | + <schema_name/> | |
| 1029 | + </partitioning> | |
| 1030 | + <fields> | |
| 1031 | + <field> | |
| 1032 | + <name>filepath_</name> | |
| 1033 | + <variable>${filepath}</variable> | |
| 1034 | + <type>String</type> | |
| 1035 | + <format/> | |
| 1036 | + <currency/> | |
| 1037 | + <decimal/> | |
| 1038 | + <group/> | |
| 1039 | + <length>-1</length> | |
| 1040 | + <precision>-1</precision> | |
| 1041 | + <trim_type>none</trim_type> | |
| 1042 | + </field> | |
| 1043 | + <field> | |
| 1044 | + <name>erroroutputdir_</name> | |
| 1045 | + <variable>${erroroutputdir}</variable> | |
| 1046 | + <type>String</type> | |
| 1047 | + <format/> | |
| 1048 | + <currency/> | |
| 1049 | + <decimal/> | |
| 1050 | + <group/> | |
| 1051 | + <length>-1</length> | |
| 1052 | + <precision>-1</precision> | |
| 1053 | + <trim_type>none</trim_type> | |
| 1054 | + </field> | |
| 1055 | + <field> | |
| 1056 | + <name>sheetname_</name> | |
| 1057 | + <variable>${sheetname}</variable> | |
| 1058 | + <type>String</type> | |
| 1059 | + <format/> | |
| 1060 | + <currency/> | |
| 1061 | + <decimal/> | |
| 1062 | + <group/> | |
| 1063 | + <length>-1</length> | |
| 1064 | + <precision>-1</precision> | |
| 1065 | + <trim_type>none</trim_type> | |
| 1066 | + </field> | |
| 1067 | + </fields> | |
| 1068 | + <cluster_schema/> | |
| 1069 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1070 | + <xloc>120</xloc> | |
| 1071 | + <yloc>62</yloc> | |
| 1072 | + <draw>Y</draw> | |
| 1073 | + </GUI> | |
| 1074 | + </step> | |
| 1075 | + | |
| 1076 | + <step> | |
| 1077 | + <name>获取normalize字段名字符串</name> | |
| 1078 | + <type>GetVariable</type> | |
| 1079 | + <description/> | |
| 1080 | + <distribute>Y</distribute> | |
| 1081 | + <custom_distribution/> | |
| 1082 | + <copies>1</copies> | |
| 1083 | + <partitioning> | |
| 1084 | + <method>none</method> | |
| 1085 | + <schema_name/> | |
| 1086 | + </partitioning> | |
| 1087 | + <fields> | |
| 1088 | + <field> | |
| 1089 | + <name>normalizefieldnames_</name> | |
| 1090 | + <variable>${normalizefieldnames}</variable> | |
| 1091 | + <type>String</type> | |
| 1092 | + <format/> | |
| 1093 | + <currency/> | |
| 1094 | + <decimal/> | |
| 1095 | + <group/> | |
| 1096 | + <length>-1</length> | |
| 1097 | + <precision>-1</precision> | |
| 1098 | + <trim_type>none</trim_type> | |
| 1099 | + </field> | |
| 1100 | + </fields> | |
| 1101 | + <cluster_schema/> | |
| 1102 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1103 | + <xloc>80</xloc> | |
| 1104 | + <yloc>261</yloc> | |
| 1105 | + <draw>Y</draw> | |
| 1106 | + </GUI> | |
| 1107 | + </step> | |
| 1108 | + | |
| 1109 | + <step> | |
| 1110 | + <name>获取停车场名称</name> | |
| 1111 | + <type>GetVariable</type> | |
| 1112 | + <description/> | |
| 1113 | + <distribute>Y</distribute> | |
| 1114 | + <custom_distribution/> | |
| 1115 | + <copies>1</copies> | |
| 1116 | + <partitioning> | |
| 1117 | + <method>none</method> | |
| 1118 | + <schema_name/> | |
| 1119 | + </partitioning> | |
| 1120 | + <fields> | |
| 1121 | + <field> | |
| 1122 | + <name>tccname_</name> | |
| 1123 | + <variable>${tccname}</variable> | |
| 1124 | + <type>String</type> | |
| 1125 | + <format/> | |
| 1126 | + <currency/> | |
| 1127 | + <decimal/> | |
| 1128 | + <group/> | |
| 1129 | + <length>-1</length> | |
| 1130 | + <precision>-1</precision> | |
| 1131 | + <trim_type>none</trim_type> | |
| 1132 | + </field> | |
| 1133 | + </fields> | |
| 1134 | + <cluster_schema/> | |
| 1135 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1136 | + <xloc>80</xloc> | |
| 1137 | + <yloc>430</yloc> | |
| 1138 | + <draw>Y</draw> | |
| 1139 | + </GUI> | |
| 1140 | + </step> | |
| 1141 | + | |
| 1142 | + <step> | |
| 1143 | + <name>获取时刻表id</name> | |
| 1144 | + <type>GetVariable</type> | |
| 1145 | + <description/> | |
| 1146 | + <distribute>Y</distribute> | |
| 1147 | + <custom_distribution/> | |
| 1148 | + <copies>1</copies> | |
| 1149 | + <partitioning> | |
| 1150 | + <method>none</method> | |
| 1151 | + <schema_name/> | |
| 1152 | + </partitioning> | |
| 1153 | + <fields> | |
| 1154 | + <field> | |
| 1155 | + <name>ttid_</name> | |
| 1156 | + <variable>${ttid}</variable> | |
| 1157 | + <type>Integer</type> | |
| 1158 | + <format/> | |
| 1159 | + <currency/> | |
| 1160 | + <decimal/> | |
| 1161 | + <group/> | |
| 1162 | + <length>-1</length> | |
| 1163 | + <precision>-1</precision> | |
| 1164 | + <trim_type>none</trim_type> | |
| 1165 | + </field> | |
| 1166 | + </fields> | |
| 1167 | + <cluster_schema/> | |
| 1168 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1169 | + <xloc>427</xloc> | |
| 1170 | + <yloc>26</yloc> | |
| 1171 | + <draw>Y</draw> | |
| 1172 | + </GUI> | |
| 1173 | + </step> | |
| 1174 | + | |
| 1175 | + <step> | |
| 1176 | + <name>获取时刻表名称</name> | |
| 1177 | + <type>GetVariable</type> | |
| 1178 | + <description/> | |
| 1179 | + <distribute>Y</distribute> | |
| 1180 | + <custom_distribution/> | |
| 1181 | + <copies>1</copies> | |
| 1182 | + <partitioning> | |
| 1183 | + <method>none</method> | |
| 1184 | + <schema_name/> | |
| 1185 | + </partitioning> | |
| 1186 | + <fields> | |
| 1187 | + <field> | |
| 1188 | + <name>ttinfoname_</name> | |
| 1189 | + <variable>${ttinfoname}</variable> | |
| 1190 | + <type>String</type> | |
| 1191 | + <format/> | |
| 1192 | + <currency/> | |
| 1193 | + <decimal/> | |
| 1194 | + <group/> | |
| 1195 | + <length>-1</length> | |
| 1196 | + <precision>-1</precision> | |
| 1197 | + <trim_type>none</trim_type> | |
| 1198 | + </field> | |
| 1199 | + </fields> | |
| 1200 | + <cluster_schema/> | |
| 1201 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1202 | + <xloc>82</xloc> | |
| 1203 | + <yloc>508</yloc> | |
| 1204 | + <draw>Y</draw> | |
| 1205 | + </GUI> | |
| 1206 | + </step> | |
| 1207 | + | |
| 1208 | + <step> | |
| 1209 | + <name>获取线路名称</name> | |
| 1210 | + <type>GetVariable</type> | |
| 1211 | + <description/> | |
| 1212 | + <distribute>Y</distribute> | |
| 1213 | + <custom_distribution/> | |
| 1214 | + <copies>1</copies> | |
| 1215 | + <partitioning> | |
| 1216 | + <method>none</method> | |
| 1217 | + <schema_name/> | |
| 1218 | + </partitioning> | |
| 1219 | + <fields> | |
| 1220 | + <field> | |
| 1221 | + <name>xlname_</name> | |
| 1222 | + <variable>${xlname}</variable> | |
| 1223 | + <type>String</type> | |
| 1224 | + <format/> | |
| 1225 | + <currency/> | |
| 1226 | + <decimal/> | |
| 1227 | + <group/> | |
| 1228 | + <length>-1</length> | |
| 1229 | + <precision>-1</precision> | |
| 1230 | + <trim_type>none</trim_type> | |
| 1231 | + </field> | |
| 1232 | + </fields> | |
| 1233 | + <cluster_schema/> | |
| 1234 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1235 | + <xloc>78</xloc> | |
| 1236 | + <yloc>351</yloc> | |
| 1237 | + <draw>Y</draw> | |
| 1238 | + </GUI> | |
| 1239 | + </step> | |
| 1240 | + | |
| 1241 | + <step> | |
| 1242 | + <name>逗号切分成字段名</name> | |
| 1243 | + <type>SplitFieldToRows3</type> | |
| 1244 | + <description/> | |
| 1245 | + <distribute>Y</distribute> | |
| 1246 | + <custom_distribution/> | |
| 1247 | + <copies>1</copies> | |
| 1248 | + <partitioning> | |
| 1249 | + <method>none</method> | |
| 1250 | + <schema_name/> | |
| 1251 | + </partitioning> | |
| 1252 | + <splitfield>fieldnames</splitfield> | |
| 1253 | + <delimiter>,</delimiter> | |
| 1254 | + <newfield>fieldname</newfield> | |
| 1255 | + <rownum>N</rownum> | |
| 1256 | + <rownum_field/> | |
| 1257 | + <resetrownumber>Y</resetrownumber> | |
| 1258 | + <delimiter_is_regex>N</delimiter_is_regex> | |
| 1259 | + <cluster_schema/> | |
| 1260 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1261 | + <xloc>261</xloc> | |
| 1262 | + <yloc>163</yloc> | |
| 1263 | + <draw>Y</draw> | |
| 1264 | + </GUI> | |
| 1265 | + </step> | |
| 1266 | + | |
| 1267 | + <step> | |
| 1268 | + <name>逗号切分成字段名 2</name> | |
| 1269 | + <type>SplitFieldToRows3</type> | |
| 1270 | + <description/> | |
| 1271 | + <distribute>Y</distribute> | |
| 1272 | + <custom_distribution/> | |
| 1273 | + <copies>1</copies> | |
| 1274 | + <partitioning> | |
| 1275 | + <method>none</method> | |
| 1276 | + <schema_name/> | |
| 1277 | + </partitioning> | |
| 1278 | + <splitfield>normalizefieldnames_</splitfield> | |
| 1279 | + <delimiter>,</delimiter> | |
| 1280 | + <newfield>nfieldname</newfield> | |
| 1281 | + <rownum>N</rownum> | |
| 1282 | + <rownum_field/> | |
| 1283 | + <resetrownumber>Y</resetrownumber> | |
| 1284 | + <delimiter_is_regex>N</delimiter_is_regex> | |
| 1285 | + <cluster_schema/> | |
| 1286 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1287 | + <xloc>263</xloc> | |
| 1288 | + <yloc>257</yloc> | |
| 1289 | + <draw>Y</draw> | |
| 1290 | + </GUI> | |
| 1291 | + </step> | |
| 1292 | + | |
| 1293 | + <step_error_handling> | |
| 1294 | + </step_error_handling> | |
| 1295 | + <slave-step-copy-partition-distribution> | |
| 1296 | +</slave-step-copy-partition-distribution> | |
| 1297 | + <slave_transformation>N</slave_transformation> | |
| 1298 | + | |
| 1299 | +</transformation> | ... | ... |
src/main/resources/datatools/ktrs/ttinfodetailoutputforedit.ktr
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<transformation> | |
| 3 | - <info> | |
| 4 | - <name>ttinfodetailoutputforedit</name> | |
| 5 | - <description/> | |
| 6 | - <extended_description/> | |
| 7 | - <trans_version/> | |
| 8 | - <trans_type>Normal</trans_type> | |
| 9 | - <trans_status>0</trans_status> | |
| 10 | - <directory>/</directory> | |
| 11 | - <parameters> | |
| 12 | - <parameter> | |
| 13 | - <name>tempfilepath</name> | |
| 14 | - <default_value>/Users/xu/resource/project_code/runtime_temp/bsth_control_u_d_files/temp/test</default_value> | |
| 15 | - <description>默认输出的文件路径名</description> | |
| 16 | - </parameter> | |
| 17 | - <parameter> | |
| 18 | - <name>ttid</name> | |
| 19 | - <default_value>79</default_value> | |
| 20 | - <description>时刻表id</description> | |
| 21 | - </parameter> | |
| 22 | - <parameter> | |
| 23 | - <name>xlid</name> | |
| 24 | - <default_value>63020</default_value> | |
| 25 | - <description>线路id</description> | |
| 26 | - </parameter> | |
| 27 | - </parameters> | |
| 28 | - <log> | |
| 29 | -<trans-log-table><connection/> | |
| 30 | -<schema/> | |
| 31 | -<table/> | |
| 32 | -<size_limit_lines/> | |
| 33 | -<interval/> | |
| 34 | -<timeout_days/> | |
| 35 | -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STATUS</id><enabled>Y</enabled><name>STATUS</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name><subject/></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name><subject/></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name><subject/></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name><subject/></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name><subject/></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name><subject/></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>STARTDATE</id><enabled>Y</enabled><name>STARTDATE</name></field><field><id>ENDDATE</id><enabled>Y</enabled><name>ENDDATE</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>DEPDATE</id><enabled>Y</enabled><name>DEPDATE</name></field><field><id>REPLAYDATE</id><enabled>Y</enabled><name>REPLAYDATE</name></field><field><id>LOG_FIELD</id><enabled>Y</enabled><name>LOG_FIELD</name></field><field><id>EXECUTING_SERVER</id><enabled>N</enabled><name>EXECUTING_SERVER</name></field><field><id>EXECUTING_USER</id><enabled>N</enabled><name>EXECUTING_USER</name></field><field><id>CLIENT</id><enabled>N</enabled><name>CLIENT</name></field></trans-log-table> | |
| 36 | -<perf-log-table><connection/> | |
| 37 | -<schema/> | |
| 38 | -<table/> | |
| 39 | -<interval/> | |
| 40 | -<timeout_days/> | |
| 41 | -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>SEQ_NR</id><enabled>Y</enabled><name>SEQ_NR</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>INPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>INPUT_BUFFER_ROWS</name></field><field><id>OUTPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>OUTPUT_BUFFER_ROWS</name></field></perf-log-table> | |
| 42 | -<channel-log-table><connection/> | |
| 43 | -<schema/> | |
| 44 | -<table/> | |
| 45 | -<timeout_days/> | |
| 46 | -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>LOGGING_OBJECT_TYPE</id><enabled>Y</enabled><name>LOGGING_OBJECT_TYPE</name></field><field><id>OBJECT_NAME</id><enabled>Y</enabled><name>OBJECT_NAME</name></field><field><id>OBJECT_COPY</id><enabled>Y</enabled><name>OBJECT_COPY</name></field><field><id>REPOSITORY_DIRECTORY</id><enabled>Y</enabled><name>REPOSITORY_DIRECTORY</name></field><field><id>FILENAME</id><enabled>Y</enabled><name>FILENAME</name></field><field><id>OBJECT_ID</id><enabled>Y</enabled><name>OBJECT_ID</name></field><field><id>OBJECT_REVISION</id><enabled>Y</enabled><name>OBJECT_REVISION</name></field><field><id>PARENT_CHANNEL_ID</id><enabled>Y</enabled><name>PARENT_CHANNEL_ID</name></field><field><id>ROOT_CHANNEL_ID</id><enabled>Y</enabled><name>ROOT_CHANNEL_ID</name></field></channel-log-table> | |
| 47 | -<step-log-table><connection/> | |
| 48 | -<schema/> | |
| 49 | -<table/> | |
| 50 | -<timeout_days/> | |
| 51 | -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>LOG_FIELD</id><enabled>N</enabled><name>LOG_FIELD</name></field></step-log-table> | |
| 52 | -<metrics-log-table><connection/> | |
| 53 | -<schema/> | |
| 54 | -<table/> | |
| 55 | -<timeout_days/> | |
| 56 | -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>METRICS_DATE</id><enabled>Y</enabled><name>METRICS_DATE</name></field><field><id>METRICS_CODE</id><enabled>Y</enabled><name>METRICS_CODE</name></field><field><id>METRICS_DESCRIPTION</id><enabled>Y</enabled><name>METRICS_DESCRIPTION</name></field><field><id>METRICS_SUBJECT</id><enabled>Y</enabled><name>METRICS_SUBJECT</name></field><field><id>METRICS_TYPE</id><enabled>Y</enabled><name>METRICS_TYPE</name></field><field><id>METRICS_VALUE</id><enabled>Y</enabled><name>METRICS_VALUE</name></field></metrics-log-table> | |
| 57 | - </log> | |
| 58 | - <maxdate> | |
| 59 | - <connection/> | |
| 60 | - <table/> | |
| 61 | - <field/> | |
| 62 | - <offset>0.0</offset> | |
| 63 | - <maxdiff>0.0</maxdiff> | |
| 64 | - </maxdate> | |
| 65 | - <size_rowset>10000</size_rowset> | |
| 66 | - <sleep_time_empty>50</sleep_time_empty> | |
| 67 | - <sleep_time_full>50</sleep_time_full> | |
| 68 | - <unique_connections>N</unique_connections> | |
| 69 | - <feedback_shown>Y</feedback_shown> | |
| 70 | - <feedback_size>50000</feedback_size> | |
| 71 | - <using_thread_priorities>Y</using_thread_priorities> | |
| 72 | - <shared_objects_file/> | |
| 73 | - <capture_step_performance>N</capture_step_performance> | |
| 74 | - <step_performance_capturing_delay>1000</step_performance_capturing_delay> | |
| 75 | - <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit> | |
| 76 | - <dependencies> | |
| 77 | - </dependencies> | |
| 78 | - <partitionschemas> | |
| 79 | - </partitionschemas> | |
| 80 | - <slaveservers> | |
| 81 | - </slaveservers> | |
| 82 | - <clusterschemas> | |
| 83 | - </clusterschemas> | |
| 84 | - <created_user>-</created_user> | |
| 85 | - <created_date>2016/07/11 21:45:05.041</created_date> | |
| 86 | - <modified_user>-</modified_user> | |
| 87 | - <modified_date>2016/07/11 21:45:05.041</modified_date> | |
| 88 | - <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA=</key_for_session_key> | |
| 89 | - <is_key_private>N</is_key_private> | |
| 90 | - </info> | |
| 91 | - <notepads> | |
| 92 | - <notepad> | |
| 93 | - <note>这里有些问题
在window2012的环境下,
MySql数据库查询中如果返回中文内容的字段,这个内容乱码
解决办法,就是数据库查询全部缓存,就不乱码
linux环境下没问题</note> | |
| 94 | - <xloc>45</xloc> | |
| 95 | - <yloc>261</yloc> | |
| 96 | - <width>333</width> | |
| 97 | - <heigth>90</heigth> | |
| 98 | - <fontname>YaHei Consolas Hybrid</fontname> | |
| 99 | - <fontsize>12</fontsize> | |
| 100 | - <fontbold>N</fontbold> | |
| 101 | - <fontitalic>N</fontitalic> | |
| 102 | - <fontcolorred>0</fontcolorred> | |
| 103 | - <fontcolorgreen>0</fontcolorgreen> | |
| 104 | - <fontcolorblue>0</fontcolorblue> | |
| 105 | - <backgroundcolorred>255</backgroundcolorred> | |
| 106 | - <backgroundcolorgreen>205</backgroundcolorgreen> | |
| 107 | - <backgroundcolorblue>112</backgroundcolorblue> | |
| 108 | - <bordercolorred>100</bordercolorred> | |
| 109 | - <bordercolorgreen>100</bordercolorgreen> | |
| 110 | - <bordercolorblue>100</bordercolorblue> | |
| 111 | - <drawshadow>Y</drawshadow> | |
| 112 | - </notepad> | |
| 113 | - <notepad> | |
| 114 | - <note>此处转换excel有问题,
2003格式的xls最多256列,
这里明显超过,所以把所有内容合并成1列,
用,分隔</note> | |
| 115 | - <xloc>256</xloc> | |
| 116 | - <yloc>397</yloc> | |
| 117 | - <width>245</width> | |
| 118 | - <heigth>74</heigth> | |
| 119 | - <fontname>YaHei Consolas Hybrid</fontname> | |
| 120 | - <fontsize>12</fontsize> | |
| 121 | - <fontbold>N</fontbold> | |
| 122 | - <fontitalic>N</fontitalic> | |
| 123 | - <fontcolorred>0</fontcolorred> | |
| 124 | - <fontcolorgreen>0</fontcolorgreen> | |
| 125 | - <fontcolorblue>0</fontcolorblue> | |
| 126 | - <backgroundcolorred>255</backgroundcolorred> | |
| 127 | - <backgroundcolorgreen>205</backgroundcolorgreen> | |
| 128 | - <backgroundcolorblue>112</backgroundcolorblue> | |
| 129 | - <bordercolorred>100</bordercolorred> | |
| 130 | - <bordercolorgreen>100</bordercolorgreen> | |
| 131 | - <bordercolorblue>100</bordercolorblue> | |
| 132 | - <drawshadow>Y</drawshadow> | |
| 133 | - </notepad> | |
| 134 | - </notepads> | |
| 135 | - <connection> | |
| 136 | - <name>bus_control_variable</name> | |
| 137 | - <server>${v_db_ip}</server> | |
| 138 | - <type>MYSQL</type> | |
| 139 | - <access>Native</access> | |
| 140 | - <database>${v_db_dname}</database> | |
| 141 | - <port>3306</port> | |
| 142 | - <username>${v_db_uname}</username> | |
| 143 | - <password>${v_db_pwd}</password> | |
| 144 | - <servername/> | |
| 145 | - <data_tablespace/> | |
| 146 | - <index_tablespace/> | |
| 147 | - <attributes> | |
| 148 | - <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute> | |
| 149 | - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 150 | - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 151 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 152 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 153 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 154 | - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 155 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 156 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 157 | - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute> | |
| 158 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 159 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 160 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 161 | - </attributes> | |
| 162 | - </connection> | |
| 163 | - <connection> | |
| 164 | - <name>bus_control_公司_201</name> | |
| 165 | - <server>localhost</server> | |
| 166 | - <type>MYSQL</type> | |
| 167 | - <access>Native</access> | |
| 168 | - <database>control</database> | |
| 169 | - <port>3306</port> | |
| 170 | - <username>root</username> | |
| 171 | - <password>Encrypted </password> | |
| 172 | - <servername/> | |
| 173 | - <data_tablespace/> | |
| 174 | - <index_tablespace/> | |
| 175 | - <attributes> | |
| 176 | - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 177 | - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 178 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 179 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 180 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 181 | - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 182 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 183 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 184 | - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute> | |
| 185 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 186 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 187 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 188 | - </attributes> | |
| 189 | - </connection> | |
| 190 | - <connection> | |
| 191 | - <name>bus_control_本机</name> | |
| 192 | - <server>localhost</server> | |
| 193 | - <type>MYSQL</type> | |
| 194 | - <access>Native</access> | |
| 195 | - <database>control</database> | |
| 196 | - <port>3306</port> | |
| 197 | - <username>root</username> | |
| 198 | - <password>Encrypted </password> | |
| 199 | - <servername/> | |
| 200 | - <data_tablespace/> | |
| 201 | - <index_tablespace/> | |
| 202 | - <attributes> | |
| 203 | - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 204 | - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 205 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 206 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 207 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 208 | - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 209 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 210 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 211 | - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 212 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 213 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 214 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 215 | - </attributes> | |
| 216 | - </connection> | |
| 217 | - <connection> | |
| 218 | - <name>xlab_mysql_youle</name> | |
| 219 | - <server>101.231.124.8</server> | |
| 220 | - <type>MYSQL</type> | |
| 221 | - <access>Native</access> | |
| 222 | - <database>xlab_youle</database> | |
| 223 | - <port>45687</port> | |
| 224 | - <username>xlab-youle</username> | |
| 225 | - <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password> | |
| 226 | - <servername/> | |
| 227 | - <data_tablespace/> | |
| 228 | - <index_tablespace/> | |
| 229 | - <attributes> | |
| 230 | - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 231 | - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 232 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 233 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 234 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 235 | - <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute> | |
| 236 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 237 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 238 | - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 239 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 240 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 241 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 242 | - </attributes> | |
| 243 | - </connection> | |
| 244 | - <connection> | |
| 245 | - <name>xlab_mysql_youle(本机)</name> | |
| 246 | - <server>localhost</server> | |
| 247 | - <type>MYSQL</type> | |
| 248 | - <access>Native</access> | |
| 249 | - <database>xlab_youle</database> | |
| 250 | - <port>3306</port> | |
| 251 | - <username>root</username> | |
| 252 | - <password>Encrypted </password> | |
| 253 | - <servername/> | |
| 254 | - <data_tablespace/> | |
| 255 | - <index_tablespace/> | |
| 256 | - <attributes> | |
| 257 | - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 258 | - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 259 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 260 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 261 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 262 | - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 263 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 264 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 265 | - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 266 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 267 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 268 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 269 | - </attributes> | |
| 270 | - </connection> | |
| 271 | - <connection> | |
| 272 | - <name>xlab_youle</name> | |
| 273 | - <server/> | |
| 274 | - <type>MYSQL</type> | |
| 275 | - <access>JNDI</access> | |
| 276 | - <database>xlab_youle</database> | |
| 277 | - <port>1521</port> | |
| 278 | - <username/> | |
| 279 | - <password>Encrypted </password> | |
| 280 | - <servername/> | |
| 281 | - <data_tablespace/> | |
| 282 | - <index_tablespace/> | |
| 283 | - <attributes> | |
| 284 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 285 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 286 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 287 | - <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | |
| 288 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 289 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 290 | - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 291 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 292 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 293 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 294 | - </attributes> | |
| 295 | - </connection> | |
| 296 | - <order> | |
| 297 | - <hop> <from>表输入</from><to>过滤记录</to><enabled>Y</enabled> </hop> | |
| 298 | - <hop> <from>过滤记录</from><to>正常班次站点查询用数据</to><enabled>Y</enabled> </hop> | |
| 299 | - <hop> <from>过滤记录</from><to>进场出场班次查询用的数据</to><enabled>Y</enabled> </hop> | |
| 300 | - <hop> <from>正常班次站点查询用数据</from><to>查找起点站名称</to><enabled>Y</enabled> </hop> | |
| 301 | - <hop> <from>查找起点站名称</from><to>查找终点站名称</to><enabled>Y</enabled> </hop> | |
| 302 | - <hop> <from>查找终点站名称</from><to>字段选择</to><enabled>Y</enabled> </hop> | |
| 303 | - <hop> <from>进场出场班次查询用的数据</from><to>字段选择 2</to><enabled>Y</enabled> </hop> | |
| 304 | - <hop> <from>字段选择</from><to>排序记录</to><enabled>Y</enabled> </hop> | |
| 305 | - <hop> <from>字段选择 2</from><to>排序记录</to><enabled>Y</enabled> </hop> | |
| 306 | - <hop> <from>排序记录</from><to>计算发车站名</to><enabled>Y</enabled> </hop> | |
| 307 | - <hop> <from>列转行</from><to>去除字段</to><enabled>Y</enabled> </hop> | |
| 308 | - <hop> <from>去除字段</from><to>Excel输出</to><enabled>Y</enabled> </hop> | |
| 309 | - <hop> <from>获取变量</from><to>表输入</to><enabled>Y</enabled> </hop> | |
| 310 | - <hop> <from>计算发车站名</from><to>合并内容</to><enabled>Y</enabled> </hop> | |
| 311 | - <hop> <from>合并内容</from><to>列转行</to><enabled>Y</enabled> </hop> | |
| 312 | - <hop> <from>去除字段</from><to>文本文件输出</to><enabled>Y</enabled> </hop> | |
| 313 | - </order> | |
| 314 | - <step> | |
| 315 | - <name>Excel输出</name> | |
| 316 | - <type>ExcelOutput</type> | |
| 317 | - <description/> | |
| 318 | - <distribute>Y</distribute> | |
| 319 | - <custom_distribution/> | |
| 320 | - <copies>1</copies> | |
| 321 | - <partitioning> | |
| 322 | - <method>none</method> | |
| 323 | - <schema_name/> | |
| 324 | - </partitioning> | |
| 325 | - <header>Y</header> | |
| 326 | - <footer>N</footer> | |
| 327 | - <encoding/> | |
| 328 | - <append>N</append> | |
| 329 | - <add_to_result_filenames>Y</add_to_result_filenames> | |
| 330 | - <file> | |
| 331 | - <name>${tempfilepath}</name> | |
| 332 | - <extention>xls</extention> | |
| 333 | - <do_not_open_newfile_init>N</do_not_open_newfile_init> | |
| 334 | - <create_parent_folder>N</create_parent_folder> | |
| 335 | - <split>N</split> | |
| 336 | - <add_date>N</add_date> | |
| 337 | - <add_time>N</add_time> | |
| 338 | - <SpecifyFormat>N</SpecifyFormat> | |
| 339 | - <date_time_format/> | |
| 340 | - <sheetname>Sheet1</sheetname> | |
| 341 | - <autosizecolums>N</autosizecolums> | |
| 342 | - <nullisblank>N</nullisblank> | |
| 343 | - <protect_sheet>N</protect_sheet> | |
| 344 | - <password>Encrypted </password> | |
| 345 | - <splitevery>0</splitevery> | |
| 346 | - <usetempfiles>N</usetempfiles> | |
| 347 | - <tempdirectory/> | |
| 348 | - </file> | |
| 349 | - <template> | |
| 350 | - <enabled>N</enabled> | |
| 351 | - <append>N</append> | |
| 352 | - <filename>template.xls</filename> | |
| 353 | - </template> | |
| 354 | - <fields> | |
| 355 | - <field> | |
| 356 | - <name>lp</name> | |
| 357 | - <type>String</type> | |
| 358 | - <format/> | |
| 359 | - </field> | |
| 360 | - <field> | |
| 361 | - <name>fcno1</name> | |
| 362 | - <type>String</type> | |
| 363 | - <format/> | |
| 364 | - </field> | |
| 365 | - <field> | |
| 366 | - <name>fcno2</name> | |
| 367 | - <type>String</type> | |
| 368 | - <format/> | |
| 369 | - </field> | |
| 370 | - <field> | |
| 371 | - <name>fcno3</name> | |
| 372 | - <type>String</type> | |
| 373 | - <format/> | |
| 374 | - </field> | |
| 375 | - <field> | |
| 376 | - <name>fcno4</name> | |
| 377 | - <type>String</type> | |
| 378 | - <format/> | |
| 379 | - </field> | |
| 380 | - <field> | |
| 381 | - <name>fcno5</name> | |
| 382 | - <type>String</type> | |
| 383 | - <format/> | |
| 384 | - </field> | |
| 385 | - <field> | |
| 386 | - <name>fcno6</name> | |
| 387 | - <type>String</type> | |
| 388 | - <format/> | |
| 389 | - </field> | |
| 390 | - <field> | |
| 391 | - <name>fcno7</name> | |
| 392 | - <type>String</type> | |
| 393 | - <format/> | |
| 394 | - </field> | |
| 395 | - <field> | |
| 396 | - <name>fcno8</name> | |
| 397 | - <type>String</type> | |
| 398 | - <format/> | |
| 399 | - </field> | |
| 400 | - <field> | |
| 401 | - <name>fcno9</name> | |
| 402 | - <type>String</type> | |
| 403 | - <format/> | |
| 404 | - </field> | |
| 405 | - <field> | |
| 406 | - <name>fcno10</name> | |
| 407 | - <type>String</type> | |
| 408 | - <format/> | |
| 409 | - </field> | |
| 410 | - <field> | |
| 411 | - <name>fcno11</name> | |
| 412 | - <type>String</type> | |
| 413 | - <format/> | |
| 414 | - </field> | |
| 415 | - <field> | |
| 416 | - <name>fcno12</name> | |
| 417 | - <type>String</type> | |
| 418 | - <format/> | |
| 419 | - </field> | |
| 420 | - <field> | |
| 421 | - <name>fcno13</name> | |
| 422 | - <type>String</type> | |
| 423 | - <format/> | |
| 424 | - </field> | |
| 425 | - <field> | |
| 426 | - <name>fcno14</name> | |
| 427 | - <type>String</type> | |
| 428 | - <format/> | |
| 429 | - </field> | |
| 430 | - <field> | |
| 431 | - <name>fcno15</name> | |
| 432 | - <type>String</type> | |
| 433 | - <format/> | |
| 434 | - </field> | |
| 435 | - <field> | |
| 436 | - <name>fcno16</name> | |
| 437 | - <type>String</type> | |
| 438 | - <format/> | |
| 439 | - </field> | |
| 440 | - <field> | |
| 441 | - <name>fcno17</name> | |
| 442 | - <type>String</type> | |
| 443 | - <format/> | |
| 444 | - </field> | |
| 445 | - <field> | |
| 446 | - <name>fcno18</name> | |
| 447 | - <type>String</type> | |
| 448 | - <format/> | |
| 449 | - </field> | |
| 450 | - <field> | |
| 451 | - <name>fcno19</name> | |
| 452 | - <type>String</type> | |
| 453 | - <format/> | |
| 454 | - </field> | |
| 455 | - <field> | |
| 456 | - <name>fcno20</name> | |
| 457 | - <type>String</type> | |
| 458 | - <format/> | |
| 459 | - </field> | |
| 460 | - <field> | |
| 461 | - <name>fcno21</name> | |
| 462 | - <type>String</type> | |
| 463 | - <format/> | |
| 464 | - </field> | |
| 465 | - <field> | |
| 466 | - <name>fcno22</name> | |
| 467 | - <type>String</type> | |
| 468 | - <format/> | |
| 469 | - </field> | |
| 470 | - <field> | |
| 471 | - <name>fcno23</name> | |
| 472 | - <type>String</type> | |
| 473 | - <format/> | |
| 474 | - </field> | |
| 475 | - <field> | |
| 476 | - <name>fcno24</name> | |
| 477 | - <type>String</type> | |
| 478 | - <format/> | |
| 479 | - </field> | |
| 480 | - <field> | |
| 481 | - <name>fcno25</name> | |
| 482 | - <type>String</type> | |
| 483 | - <format/> | |
| 484 | - </field> | |
| 485 | - <field> | |
| 486 | - <name>fcno26</name> | |
| 487 | - <type>String</type> | |
| 488 | - <format/> | |
| 489 | - </field> | |
| 490 | - <field> | |
| 491 | - <name>fcno27</name> | |
| 492 | - <type>String</type> | |
| 493 | - <format/> | |
| 494 | - </field> | |
| 495 | - <field> | |
| 496 | - <name>fcno28</name> | |
| 497 | - <type>String</type> | |
| 498 | - <format/> | |
| 499 | - </field> | |
| 500 | - <field> | |
| 501 | - <name>fcno29</name> | |
| 502 | - <type>String</type> | |
| 503 | - <format/> | |
| 504 | - </field> | |
| 505 | - <field> | |
| 506 | - <name>fcno30</name> | |
| 507 | - <type>String</type> | |
| 508 | - <format/> | |
| 509 | - </field> | |
| 510 | - <field> | |
| 511 | - <name>fcno31</name> | |
| 512 | - <type>String</type> | |
| 513 | - <format/> | |
| 514 | - </field> | |
| 515 | - <field> | |
| 516 | - <name>fcno32</name> | |
| 517 | - <type>String</type> | |
| 518 | - <format/> | |
| 519 | - </field> | |
| 520 | - <field> | |
| 521 | - <name>fcno33</name> | |
| 522 | - <type>String</type> | |
| 523 | - <format/> | |
| 524 | - </field> | |
| 525 | - <field> | |
| 526 | - <name>fcno34</name> | |
| 527 | - <type>String</type> | |
| 528 | - <format/> | |
| 529 | - </field> | |
| 530 | - <field> | |
| 531 | - <name>fcno35</name> | |
| 532 | - <type>String</type> | |
| 533 | - <format/> | |
| 534 | - </field> | |
| 535 | - <field> | |
| 536 | - <name>fcno36</name> | |
| 537 | - <type>String</type> | |
| 538 | - <format/> | |
| 539 | - </field> | |
| 540 | - <field> | |
| 541 | - <name>fcno37</name> | |
| 542 | - <type>String</type> | |
| 543 | - <format/> | |
| 544 | - </field> | |
| 545 | - <field> | |
| 546 | - <name>fcno38</name> | |
| 547 | - <type>String</type> | |
| 548 | - <format/> | |
| 549 | - </field> | |
| 550 | - <field> | |
| 551 | - <name>fcno39</name> | |
| 552 | - <type>String</type> | |
| 553 | - <format/> | |
| 554 | - </field> | |
| 555 | - <field> | |
| 556 | - <name>fcno40</name> | |
| 557 | - <type>String</type> | |
| 558 | - <format/> | |
| 559 | - </field> | |
| 560 | - <field> | |
| 561 | - <name>fcno41</name> | |
| 562 | - <type>String</type> | |
| 563 | - <format/> | |
| 564 | - </field> | |
| 565 | - <field> | |
| 566 | - <name>fcno42</name> | |
| 567 | - <type>String</type> | |
| 568 | - <format/> | |
| 569 | - </field> | |
| 570 | - <field> | |
| 571 | - <name>fcno43</name> | |
| 572 | - <type>String</type> | |
| 573 | - <format/> | |
| 574 | - </field> | |
| 575 | - <field> | |
| 576 | - <name>fcno44</name> | |
| 577 | - <type>String</type> | |
| 578 | - <format/> | |
| 579 | - </field> | |
| 580 | - <field> | |
| 581 | - <name>fcno45</name> | |
| 582 | - <type>String</type> | |
| 583 | - <format/> | |
| 584 | - </field> | |
| 585 | - <field> | |
| 586 | - <name>fcno46</name> | |
| 587 | - <type>String</type> | |
| 588 | - <format/> | |
| 589 | - </field> | |
| 590 | - <field> | |
| 591 | - <name>fcno47</name> | |
| 592 | - <type>String</type> | |
| 593 | - <format/> | |
| 594 | - </field> | |
| 595 | - <field> | |
| 596 | - <name>fcno48</name> | |
| 597 | - <type>String</type> | |
| 598 | - <format/> | |
| 599 | - </field> | |
| 600 | - <field> | |
| 601 | - <name>fcno49</name> | |
| 602 | - <type>String</type> | |
| 603 | - <format/> | |
| 604 | - </field> | |
| 605 | - <field> | |
| 606 | - <name>fcno50</name> | |
| 607 | - <type>String</type> | |
| 608 | - <format/> | |
| 609 | - </field> | |
| 610 | - <field> | |
| 611 | - <name>fcno51</name> | |
| 612 | - <type>String</type> | |
| 613 | - <format/> | |
| 614 | - </field> | |
| 615 | - <field> | |
| 616 | - <name>fcno52</name> | |
| 617 | - <type>String</type> | |
| 618 | - <format/> | |
| 619 | - </field> | |
| 620 | - <field> | |
| 621 | - <name>fcno53</name> | |
| 622 | - <type>String</type> | |
| 623 | - <format/> | |
| 624 | - </field> | |
| 625 | - <field> | |
| 626 | - <name>fcno54</name> | |
| 627 | - <type>String</type> | |
| 628 | - <format/> | |
| 629 | - </field> | |
| 630 | - <field> | |
| 631 | - <name>fcno55</name> | |
| 632 | - <type>String</type> | |
| 633 | - <format/> | |
| 634 | - </field> | |
| 635 | - <field> | |
| 636 | - <name>fcno56</name> | |
| 637 | - <type>String</type> | |
| 638 | - <format/> | |
| 639 | - </field> | |
| 640 | - <field> | |
| 641 | - <name>fcno57</name> | |
| 642 | - <type>String</type> | |
| 643 | - <format/> | |
| 644 | - </field> | |
| 645 | - <field> | |
| 646 | - <name>fcno58</name> | |
| 647 | - <type>String</type> | |
| 648 | - <format/> | |
| 649 | - </field> | |
| 650 | - <field> | |
| 651 | - <name>fcno59</name> | |
| 652 | - <type>String</type> | |
| 653 | - <format/> | |
| 654 | - </field> | |
| 655 | - <field> | |
| 656 | - <name>fcno60</name> | |
| 657 | - <type>String</type> | |
| 658 | - <format/> | |
| 659 | - </field> | |
| 660 | - <field> | |
| 661 | - <name>fcno61</name> | |
| 662 | - <type>String</type> | |
| 663 | - <format/> | |
| 664 | - </field> | |
| 665 | - <field> | |
| 666 | - <name>fcno62</name> | |
| 667 | - <type>String</type> | |
| 668 | - <format/> | |
| 669 | - </field> | |
| 670 | - <field> | |
| 671 | - <name>fcno63</name> | |
| 672 | - <type>String</type> | |
| 673 | - <format/> | |
| 674 | - </field> | |
| 675 | - <field> | |
| 676 | - <name>fcno64</name> | |
| 677 | - <type>String</type> | |
| 678 | - <format/> | |
| 679 | - </field> | |
| 680 | - <field> | |
| 681 | - <name>fcno65</name> | |
| 682 | - <type>String</type> | |
| 683 | - <format/> | |
| 684 | - </field> | |
| 685 | - <field> | |
| 686 | - <name>fcno66</name> | |
| 687 | - <type>String</type> | |
| 688 | - <format/> | |
| 689 | - </field> | |
| 690 | - <field> | |
| 691 | - <name>fcno67</name> | |
| 692 | - <type>String</type> | |
| 693 | - <format/> | |
| 694 | - </field> | |
| 695 | - <field> | |
| 696 | - <name>fcno68</name> | |
| 697 | - <type>String</type> | |
| 698 | - <format/> | |
| 699 | - </field> | |
| 700 | - <field> | |
| 701 | - <name>fcno69</name> | |
| 702 | - <type>String</type> | |
| 703 | - <format/> | |
| 704 | - </field> | |
| 705 | - <field> | |
| 706 | - <name>fcno70</name> | |
| 707 | - <type>String</type> | |
| 708 | - <format/> | |
| 709 | - </field> | |
| 710 | - </fields> | |
| 711 | - <custom> | |
| 712 | - <header_font_name>arial</header_font_name> | |
| 713 | - <header_font_size>10</header_font_size> | |
| 714 | - <header_font_bold>N</header_font_bold> | |
| 715 | - <header_font_italic>N</header_font_italic> | |
| 716 | - <header_font_underline>no</header_font_underline> | |
| 717 | - <header_font_orientation>horizontal</header_font_orientation> | |
| 718 | - <header_font_color>black</header_font_color> | |
| 719 | - <header_background_color>none</header_background_color> | |
| 720 | - <header_row_height>255</header_row_height> | |
| 721 | - <header_alignment>left</header_alignment> | |
| 722 | - <header_image/> | |
| 723 | - <row_font_name>arial</row_font_name> | |
| 724 | - <row_font_size>10</row_font_size> | |
| 725 | - <row_font_color>black</row_font_color> | |
| 726 | - <row_background_color>none</row_background_color> | |
| 727 | - </custom> | |
| 728 | - <cluster_schema/> | |
| 729 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 730 | - <xloc>692</xloc> | |
| 731 | - <yloc>514</yloc> | |
| 732 | - <draw>Y</draw> | |
| 733 | - </GUI> | |
| 734 | - </step> | |
| 735 | - | |
| 736 | - <step> | |
| 737 | - <name>列转行</name> | |
| 738 | - <type>Denormaliser</type> | |
| 739 | - <description/> | |
| 740 | - <distribute>N</distribute> | |
| 741 | - <custom_distribution/> | |
| 742 | - <copies>1</copies> | |
| 743 | - <partitioning> | |
| 744 | - <method>none</method> | |
| 745 | - <schema_name/> | |
| 746 | - </partitioning> | |
| 747 | - <key_field>fcno</key_field> | |
| 748 | - <group> | |
| 749 | - <field> | |
| 750 | - <name>lp</name> | |
| 751 | - </field> | |
| 752 | - </group> | |
| 753 | - <fields> | |
| 754 | - <field> | |
| 755 | - <field_name>all_content</field_name> | |
| 756 | - <key_value>1</key_value> | |
| 757 | - <target_name>fcno1</target_name> | |
| 758 | - <target_type>String</target_type> | |
| 759 | - <target_format/> | |
| 760 | - <target_length>-1</target_length> | |
| 761 | - <target_precision>-1</target_precision> | |
| 762 | - <target_decimal_symbol/> | |
| 763 | - <target_grouping_symbol/> | |
| 764 | - <target_currency_symbol/> | |
| 765 | - <target_null_string/> | |
| 766 | - <target_aggregation_type>-</target_aggregation_type> | |
| 767 | - </field> | |
| 768 | - <field> | |
| 769 | - <field_name>all_content</field_name> | |
| 770 | - <key_value>2</key_value> | |
| 771 | - <target_name>fcno2</target_name> | |
| 772 | - <target_type>String</target_type> | |
| 773 | - <target_format/> | |
| 774 | - <target_length>-1</target_length> | |
| 775 | - <target_precision>-1</target_precision> | |
| 776 | - <target_decimal_symbol/> | |
| 777 | - <target_grouping_symbol/> | |
| 778 | - <target_currency_symbol/> | |
| 779 | - <target_null_string/> | |
| 780 | - <target_aggregation_type>-</target_aggregation_type> | |
| 781 | - </field> | |
| 782 | - <field> | |
| 783 | - <field_name>all_content</field_name> | |
| 784 | - <key_value>3</key_value> | |
| 785 | - <target_name>fcno3</target_name> | |
| 786 | - <target_type>String</target_type> | |
| 787 | - <target_format/> | |
| 788 | - <target_length>-1</target_length> | |
| 789 | - <target_precision>-1</target_precision> | |
| 790 | - <target_decimal_symbol/> | |
| 791 | - <target_grouping_symbol/> | |
| 792 | - <target_currency_symbol/> | |
| 793 | - <target_null_string/> | |
| 794 | - <target_aggregation_type>-</target_aggregation_type> | |
| 795 | - </field> | |
| 796 | - <field> | |
| 797 | - <field_name>all_content</field_name> | |
| 798 | - <key_value>4</key_value> | |
| 799 | - <target_name>fcno4</target_name> | |
| 800 | - <target_type>String</target_type> | |
| 801 | - <target_format/> | |
| 802 | - <target_length>-1</target_length> | |
| 803 | - <target_precision>-1</target_precision> | |
| 804 | - <target_decimal_symbol/> | |
| 805 | - <target_grouping_symbol/> | |
| 806 | - <target_currency_symbol/> | |
| 807 | - <target_null_string/> | |
| 808 | - <target_aggregation_type>-</target_aggregation_type> | |
| 809 | - </field> | |
| 810 | - <field> | |
| 811 | - <field_name>all_content</field_name> | |
| 812 | - <key_value>5</key_value> | |
| 813 | - <target_name>fcno5</target_name> | |
| 814 | - <target_type>String</target_type> | |
| 815 | - <target_format/> | |
| 816 | - <target_length>-1</target_length> | |
| 817 | - <target_precision>-1</target_precision> | |
| 818 | - <target_decimal_symbol/> | |
| 819 | - <target_grouping_symbol/> | |
| 820 | - <target_currency_symbol/> | |
| 821 | - <target_null_string/> | |
| 822 | - <target_aggregation_type>-</target_aggregation_type> | |
| 823 | - </field> | |
| 824 | - <field> | |
| 825 | - <field_name>all_content</field_name> | |
| 826 | - <key_value>6</key_value> | |
| 827 | - <target_name>fcno6</target_name> | |
| 828 | - <target_type>String</target_type> | |
| 829 | - <target_format/> | |
| 830 | - <target_length>-1</target_length> | |
| 831 | - <target_precision>-1</target_precision> | |
| 832 | - <target_decimal_symbol/> | |
| 833 | - <target_grouping_symbol/> | |
| 834 | - <target_currency_symbol/> | |
| 835 | - <target_null_string/> | |
| 836 | - <target_aggregation_type>-</target_aggregation_type> | |
| 837 | - </field> | |
| 838 | - <field> | |
| 839 | - <field_name>all_content</field_name> | |
| 840 | - <key_value>7</key_value> | |
| 841 | - <target_name>fcno7</target_name> | |
| 842 | - <target_type>String</target_type> | |
| 843 | - <target_format/> | |
| 844 | - <target_length>-1</target_length> | |
| 845 | - <target_precision>-1</target_precision> | |
| 846 | - <target_decimal_symbol/> | |
| 847 | - <target_grouping_symbol/> | |
| 848 | - <target_currency_symbol/> | |
| 849 | - <target_null_string/> | |
| 850 | - <target_aggregation_type>-</target_aggregation_type> | |
| 851 | - </field> | |
| 852 | - <field> | |
| 853 | - <field_name>all_content</field_name> | |
| 854 | - <key_value>8</key_value> | |
| 855 | - <target_name>fcno8</target_name> | |
| 856 | - <target_type>String</target_type> | |
| 857 | - <target_format/> | |
| 858 | - <target_length>-1</target_length> | |
| 859 | - <target_precision>-1</target_precision> | |
| 860 | - <target_decimal_symbol/> | |
| 861 | - <target_grouping_symbol/> | |
| 862 | - <target_currency_symbol/> | |
| 863 | - <target_null_string/> | |
| 864 | - <target_aggregation_type>-</target_aggregation_type> | |
| 865 | - </field> | |
| 866 | - <field> | |
| 867 | - <field_name>all_content</field_name> | |
| 868 | - <key_value>9</key_value> | |
| 869 | - <target_name>fcno9</target_name> | |
| 870 | - <target_type>String</target_type> | |
| 871 | - <target_format/> | |
| 872 | - <target_length>-1</target_length> | |
| 873 | - <target_precision>-1</target_precision> | |
| 874 | - <target_decimal_symbol/> | |
| 875 | - <target_grouping_symbol/> | |
| 876 | - <target_currency_symbol/> | |
| 877 | - <target_null_string/> | |
| 878 | - <target_aggregation_type>-</target_aggregation_type> | |
| 879 | - </field> | |
| 880 | - <field> | |
| 881 | - <field_name>all_content</field_name> | |
| 882 | - <key_value>10</key_value> | |
| 883 | - <target_name>fcno10</target_name> | |
| 884 | - <target_type>String</target_type> | |
| 885 | - <target_format/> | |
| 886 | - <target_length>-1</target_length> | |
| 887 | - <target_precision>-1</target_precision> | |
| 888 | - <target_decimal_symbol/> | |
| 889 | - <target_grouping_symbol/> | |
| 890 | - <target_currency_symbol/> | |
| 891 | - <target_null_string/> | |
| 892 | - <target_aggregation_type>-</target_aggregation_type> | |
| 893 | - </field> | |
| 894 | - <field> | |
| 895 | - <field_name>all_content</field_name> | |
| 896 | - <key_value>11</key_value> | |
| 897 | - <target_name>fcno11</target_name> | |
| 898 | - <target_type>String</target_type> | |
| 899 | - <target_format/> | |
| 900 | - <target_length>-1</target_length> | |
| 901 | - <target_precision>-1</target_precision> | |
| 902 | - <target_decimal_symbol/> | |
| 903 | - <target_grouping_symbol/> | |
| 904 | - <target_currency_symbol/> | |
| 905 | - <target_null_string/> | |
| 906 | - <target_aggregation_type>-</target_aggregation_type> | |
| 907 | - </field> | |
| 908 | - <field> | |
| 909 | - <field_name>all_content</field_name> | |
| 910 | - <key_value>12</key_value> | |
| 911 | - <target_name>fcno12</target_name> | |
| 912 | - <target_type>String</target_type> | |
| 913 | - <target_format/> | |
| 914 | - <target_length>-1</target_length> | |
| 915 | - <target_precision>-1</target_precision> | |
| 916 | - <target_decimal_symbol/> | |
| 917 | - <target_grouping_symbol/> | |
| 918 | - <target_currency_symbol/> | |
| 919 | - <target_null_string/> | |
| 920 | - <target_aggregation_type>-</target_aggregation_type> | |
| 921 | - </field> | |
| 922 | - <field> | |
| 923 | - <field_name>all_content</field_name> | |
| 924 | - <key_value>13</key_value> | |
| 925 | - <target_name>fcno13</target_name> | |
| 926 | - <target_type>String</target_type> | |
| 927 | - <target_format/> | |
| 928 | - <target_length>-1</target_length> | |
| 929 | - <target_precision>-1</target_precision> | |
| 930 | - <target_decimal_symbol/> | |
| 931 | - <target_grouping_symbol/> | |
| 932 | - <target_currency_symbol/> | |
| 933 | - <target_null_string/> | |
| 934 | - <target_aggregation_type>-</target_aggregation_type> | |
| 935 | - </field> | |
| 936 | - <field> | |
| 937 | - <field_name>all_content</field_name> | |
| 938 | - <key_value>14</key_value> | |
| 939 | - <target_name>fcno14</target_name> | |
| 940 | - <target_type>String</target_type> | |
| 941 | - <target_format/> | |
| 942 | - <target_length>-1</target_length> | |
| 943 | - <target_precision>-1</target_precision> | |
| 944 | - <target_decimal_symbol/> | |
| 945 | - <target_grouping_symbol/> | |
| 946 | - <target_currency_symbol/> | |
| 947 | - <target_null_string/> | |
| 948 | - <target_aggregation_type>-</target_aggregation_type> | |
| 949 | - </field> | |
| 950 | - <field> | |
| 951 | - <field_name>all_content</field_name> | |
| 952 | - <key_value>15</key_value> | |
| 953 | - <target_name>fcno15</target_name> | |
| 954 | - <target_type>String</target_type> | |
| 955 | - <target_format/> | |
| 956 | - <target_length>-1</target_length> | |
| 957 | - <target_precision>-1</target_precision> | |
| 958 | - <target_decimal_symbol/> | |
| 959 | - <target_grouping_symbol/> | |
| 960 | - <target_currency_symbol/> | |
| 961 | - <target_null_string/> | |
| 962 | - <target_aggregation_type>-</target_aggregation_type> | |
| 963 | - </field> | |
| 964 | - <field> | |
| 965 | - <field_name>all_content</field_name> | |
| 966 | - <key_value>16</key_value> | |
| 967 | - <target_name>fcno16</target_name> | |
| 968 | - <target_type>String</target_type> | |
| 969 | - <target_format/> | |
| 970 | - <target_length>-1</target_length> | |
| 971 | - <target_precision>-1</target_precision> | |
| 972 | - <target_decimal_symbol/> | |
| 973 | - <target_grouping_symbol/> | |
| 974 | - <target_currency_symbol/> | |
| 975 | - <target_null_string/> | |
| 976 | - <target_aggregation_type>-</target_aggregation_type> | |
| 977 | - </field> | |
| 978 | - <field> | |
| 979 | - <field_name>all_content</field_name> | |
| 980 | - <key_value>17</key_value> | |
| 981 | - <target_name>fcno17</target_name> | |
| 982 | - <target_type>String</target_type> | |
| 983 | - <target_format/> | |
| 984 | - <target_length>-1</target_length> | |
| 985 | - <target_precision>-1</target_precision> | |
| 986 | - <target_decimal_symbol/> | |
| 987 | - <target_grouping_symbol/> | |
| 988 | - <target_currency_symbol/> | |
| 989 | - <target_null_string/> | |
| 990 | - <target_aggregation_type>-</target_aggregation_type> | |
| 991 | - </field> | |
| 992 | - <field> | |
| 993 | - <field_name>all_content</field_name> | |
| 994 | - <key_value>18</key_value> | |
| 995 | - <target_name>fcno18</target_name> | |
| 996 | - <target_type>String</target_type> | |
| 997 | - <target_format/> | |
| 998 | - <target_length>-1</target_length> | |
| 999 | - <target_precision>-1</target_precision> | |
| 1000 | - <target_decimal_symbol/> | |
| 1001 | - <target_grouping_symbol/> | |
| 1002 | - <target_currency_symbol/> | |
| 1003 | - <target_null_string/> | |
| 1004 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1005 | - </field> | |
| 1006 | - <field> | |
| 1007 | - <field_name>all_content</field_name> | |
| 1008 | - <key_value>19</key_value> | |
| 1009 | - <target_name>fcno19</target_name> | |
| 1010 | - <target_type>String</target_type> | |
| 1011 | - <target_format/> | |
| 1012 | - <target_length>-1</target_length> | |
| 1013 | - <target_precision>-1</target_precision> | |
| 1014 | - <target_decimal_symbol/> | |
| 1015 | - <target_grouping_symbol/> | |
| 1016 | - <target_currency_symbol/> | |
| 1017 | - <target_null_string/> | |
| 1018 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1019 | - </field> | |
| 1020 | - <field> | |
| 1021 | - <field_name>all_content</field_name> | |
| 1022 | - <key_value>20</key_value> | |
| 1023 | - <target_name>fcno20</target_name> | |
| 1024 | - <target_type>String</target_type> | |
| 1025 | - <target_format/> | |
| 1026 | - <target_length>-1</target_length> | |
| 1027 | - <target_precision>-1</target_precision> | |
| 1028 | - <target_decimal_symbol/> | |
| 1029 | - <target_grouping_symbol/> | |
| 1030 | - <target_currency_symbol/> | |
| 1031 | - <target_null_string/> | |
| 1032 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1033 | - </field> | |
| 1034 | - <field> | |
| 1035 | - <field_name>all_content</field_name> | |
| 1036 | - <key_value>21</key_value> | |
| 1037 | - <target_name>fcno21</target_name> | |
| 1038 | - <target_type>String</target_type> | |
| 1039 | - <target_format/> | |
| 1040 | - <target_length>-1</target_length> | |
| 1041 | - <target_precision>-1</target_precision> | |
| 1042 | - <target_decimal_symbol/> | |
| 1043 | - <target_grouping_symbol/> | |
| 1044 | - <target_currency_symbol/> | |
| 1045 | - <target_null_string/> | |
| 1046 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1047 | - </field> | |
| 1048 | - <field> | |
| 1049 | - <field_name>all_content</field_name> | |
| 1050 | - <key_value>22</key_value> | |
| 1051 | - <target_name>fcno22</target_name> | |
| 1052 | - <target_type>String</target_type> | |
| 1053 | - <target_format/> | |
| 1054 | - <target_length>-1</target_length> | |
| 1055 | - <target_precision>-1</target_precision> | |
| 1056 | - <target_decimal_symbol/> | |
| 1057 | - <target_grouping_symbol/> | |
| 1058 | - <target_currency_symbol/> | |
| 1059 | - <target_null_string/> | |
| 1060 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1061 | - </field> | |
| 1062 | - <field> | |
| 1063 | - <field_name>all_content</field_name> | |
| 1064 | - <key_value>23</key_value> | |
| 1065 | - <target_name>fcno23</target_name> | |
| 1066 | - <target_type>String</target_type> | |
| 1067 | - <target_format/> | |
| 1068 | - <target_length>-1</target_length> | |
| 1069 | - <target_precision>-1</target_precision> | |
| 1070 | - <target_decimal_symbol/> | |
| 1071 | - <target_grouping_symbol/> | |
| 1072 | - <target_currency_symbol/> | |
| 1073 | - <target_null_string/> | |
| 1074 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1075 | - </field> | |
| 1076 | - <field> | |
| 1077 | - <field_name>all_content</field_name> | |
| 1078 | - <key_value>24</key_value> | |
| 1079 | - <target_name>fcno24</target_name> | |
| 1080 | - <target_type>String</target_type> | |
| 1081 | - <target_format/> | |
| 1082 | - <target_length>-1</target_length> | |
| 1083 | - <target_precision>-1</target_precision> | |
| 1084 | - <target_decimal_symbol/> | |
| 1085 | - <target_grouping_symbol/> | |
| 1086 | - <target_currency_symbol/> | |
| 1087 | - <target_null_string/> | |
| 1088 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1089 | - </field> | |
| 1090 | - <field> | |
| 1091 | - <field_name>all_content</field_name> | |
| 1092 | - <key_value>25</key_value> | |
| 1093 | - <target_name>fcno25</target_name> | |
| 1094 | - <target_type>String</target_type> | |
| 1095 | - <target_format/> | |
| 1096 | - <target_length>-1</target_length> | |
| 1097 | - <target_precision>-1</target_precision> | |
| 1098 | - <target_decimal_symbol/> | |
| 1099 | - <target_grouping_symbol/> | |
| 1100 | - <target_currency_symbol/> | |
| 1101 | - <target_null_string/> | |
| 1102 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1103 | - </field> | |
| 1104 | - <field> | |
| 1105 | - <field_name>all_content</field_name> | |
| 1106 | - <key_value>26</key_value> | |
| 1107 | - <target_name>fcno26</target_name> | |
| 1108 | - <target_type>String</target_type> | |
| 1109 | - <target_format/> | |
| 1110 | - <target_length>-1</target_length> | |
| 1111 | - <target_precision>-1</target_precision> | |
| 1112 | - <target_decimal_symbol/> | |
| 1113 | - <target_grouping_symbol/> | |
| 1114 | - <target_currency_symbol/> | |
| 1115 | - <target_null_string/> | |
| 1116 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1117 | - </field> | |
| 1118 | - <field> | |
| 1119 | - <field_name>all_content</field_name> | |
| 1120 | - <key_value>27</key_value> | |
| 1121 | - <target_name>fcno27</target_name> | |
| 1122 | - <target_type>String</target_type> | |
| 1123 | - <target_format/> | |
| 1124 | - <target_length>-1</target_length> | |
| 1125 | - <target_precision>-1</target_precision> | |
| 1126 | - <target_decimal_symbol/> | |
| 1127 | - <target_grouping_symbol/> | |
| 1128 | - <target_currency_symbol/> | |
| 1129 | - <target_null_string/> | |
| 1130 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1131 | - </field> | |
| 1132 | - <field> | |
| 1133 | - <field_name>all_content</field_name> | |
| 1134 | - <key_value>28</key_value> | |
| 1135 | - <target_name>fcno28</target_name> | |
| 1136 | - <target_type>String</target_type> | |
| 1137 | - <target_format/> | |
| 1138 | - <target_length>-1</target_length> | |
| 1139 | - <target_precision>-1</target_precision> | |
| 1140 | - <target_decimal_symbol/> | |
| 1141 | - <target_grouping_symbol/> | |
| 1142 | - <target_currency_symbol/> | |
| 1143 | - <target_null_string/> | |
| 1144 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1145 | - </field> | |
| 1146 | - <field> | |
| 1147 | - <field_name>all_content</field_name> | |
| 1148 | - <key_value>29</key_value> | |
| 1149 | - <target_name>fcno29</target_name> | |
| 1150 | - <target_type>String</target_type> | |
| 1151 | - <target_format/> | |
| 1152 | - <target_length>-1</target_length> | |
| 1153 | - <target_precision>-1</target_precision> | |
| 1154 | - <target_decimal_symbol/> | |
| 1155 | - <target_grouping_symbol/> | |
| 1156 | - <target_currency_symbol/> | |
| 1157 | - <target_null_string/> | |
| 1158 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1159 | - </field> | |
| 1160 | - <field> | |
| 1161 | - <field_name>all_content</field_name> | |
| 1162 | - <key_value>30</key_value> | |
| 1163 | - <target_name>fcno30</target_name> | |
| 1164 | - <target_type>String</target_type> | |
| 1165 | - <target_format/> | |
| 1166 | - <target_length>-1</target_length> | |
| 1167 | - <target_precision>-1</target_precision> | |
| 1168 | - <target_decimal_symbol/> | |
| 1169 | - <target_grouping_symbol/> | |
| 1170 | - <target_currency_symbol/> | |
| 1171 | - <target_null_string/> | |
| 1172 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1173 | - </field> | |
| 1174 | - <field> | |
| 1175 | - <field_name>all_content</field_name> | |
| 1176 | - <key_value>31</key_value> | |
| 1177 | - <target_name>fcno31</target_name> | |
| 1178 | - <target_type>String</target_type> | |
| 1179 | - <target_format/> | |
| 1180 | - <target_length>-1</target_length> | |
| 1181 | - <target_precision>-1</target_precision> | |
| 1182 | - <target_decimal_symbol/> | |
| 1183 | - <target_grouping_symbol/> | |
| 1184 | - <target_currency_symbol/> | |
| 1185 | - <target_null_string/> | |
| 1186 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1187 | - </field> | |
| 1188 | - <field> | |
| 1189 | - <field_name>all_content</field_name> | |
| 1190 | - <key_value>32</key_value> | |
| 1191 | - <target_name>fcno32</target_name> | |
| 1192 | - <target_type>String</target_type> | |
| 1193 | - <target_format/> | |
| 1194 | - <target_length>-1</target_length> | |
| 1195 | - <target_precision>-1</target_precision> | |
| 1196 | - <target_decimal_symbol/> | |
| 1197 | - <target_grouping_symbol/> | |
| 1198 | - <target_currency_symbol/> | |
| 1199 | - <target_null_string/> | |
| 1200 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1201 | - </field> | |
| 1202 | - <field> | |
| 1203 | - <field_name>all_content</field_name> | |
| 1204 | - <key_value>33</key_value> | |
| 1205 | - <target_name>fcno33</target_name> | |
| 1206 | - <target_type>String</target_type> | |
| 1207 | - <target_format/> | |
| 1208 | - <target_length>-1</target_length> | |
| 1209 | - <target_precision>-1</target_precision> | |
| 1210 | - <target_decimal_symbol/> | |
| 1211 | - <target_grouping_symbol/> | |
| 1212 | - <target_currency_symbol/> | |
| 1213 | - <target_null_string/> | |
| 1214 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1215 | - </field> | |
| 1216 | - <field> | |
| 1217 | - <field_name>all_content</field_name> | |
| 1218 | - <key_value>34</key_value> | |
| 1219 | - <target_name>fcno34</target_name> | |
| 1220 | - <target_type>String</target_type> | |
| 1221 | - <target_format/> | |
| 1222 | - <target_length>-1</target_length> | |
| 1223 | - <target_precision>-1</target_precision> | |
| 1224 | - <target_decimal_symbol/> | |
| 1225 | - <target_grouping_symbol/> | |
| 1226 | - <target_currency_symbol/> | |
| 1227 | - <target_null_string/> | |
| 1228 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1229 | - </field> | |
| 1230 | - <field> | |
| 1231 | - <field_name>all_content</field_name> | |
| 1232 | - <key_value>35</key_value> | |
| 1233 | - <target_name>fcno35</target_name> | |
| 1234 | - <target_type>String</target_type> | |
| 1235 | - <target_format/> | |
| 1236 | - <target_length>-1</target_length> | |
| 1237 | - <target_precision>-1</target_precision> | |
| 1238 | - <target_decimal_symbol/> | |
| 1239 | - <target_grouping_symbol/> | |
| 1240 | - <target_currency_symbol/> | |
| 1241 | - <target_null_string/> | |
| 1242 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1243 | - </field> | |
| 1244 | - <field> | |
| 1245 | - <field_name>all_content</field_name> | |
| 1246 | - <key_value>36</key_value> | |
| 1247 | - <target_name>fcno36</target_name> | |
| 1248 | - <target_type>String</target_type> | |
| 1249 | - <target_format/> | |
| 1250 | - <target_length>-1</target_length> | |
| 1251 | - <target_precision>-1</target_precision> | |
| 1252 | - <target_decimal_symbol/> | |
| 1253 | - <target_grouping_symbol/> | |
| 1254 | - <target_currency_symbol/> | |
| 1255 | - <target_null_string/> | |
| 1256 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1257 | - </field> | |
| 1258 | - <field> | |
| 1259 | - <field_name>all_content</field_name> | |
| 1260 | - <key_value>37</key_value> | |
| 1261 | - <target_name>fcno37</target_name> | |
| 1262 | - <target_type>String</target_type> | |
| 1263 | - <target_format/> | |
| 1264 | - <target_length>-1</target_length> | |
| 1265 | - <target_precision>-1</target_precision> | |
| 1266 | - <target_decimal_symbol/> | |
| 1267 | - <target_grouping_symbol/> | |
| 1268 | - <target_currency_symbol/> | |
| 1269 | - <target_null_string/> | |
| 1270 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1271 | - </field> | |
| 1272 | - <field> | |
| 1273 | - <field_name>all_content</field_name> | |
| 1274 | - <key_value>38</key_value> | |
| 1275 | - <target_name>fcno38</target_name> | |
| 1276 | - <target_type>String</target_type> | |
| 1277 | - <target_format/> | |
| 1278 | - <target_length>-1</target_length> | |
| 1279 | - <target_precision>-1</target_precision> | |
| 1280 | - <target_decimal_symbol/> | |
| 1281 | - <target_grouping_symbol/> | |
| 1282 | - <target_currency_symbol/> | |
| 1283 | - <target_null_string/> | |
| 1284 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1285 | - </field> | |
| 1286 | - <field> | |
| 1287 | - <field_name>all_content</field_name> | |
| 1288 | - <key_value>39</key_value> | |
| 1289 | - <target_name>fcno39</target_name> | |
| 1290 | - <target_type>String</target_type> | |
| 1291 | - <target_format/> | |
| 1292 | - <target_length>-1</target_length> | |
| 1293 | - <target_precision>-1</target_precision> | |
| 1294 | - <target_decimal_symbol/> | |
| 1295 | - <target_grouping_symbol/> | |
| 1296 | - <target_currency_symbol/> | |
| 1297 | - <target_null_string/> | |
| 1298 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1299 | - </field> | |
| 1300 | - <field> | |
| 1301 | - <field_name>all_content</field_name> | |
| 1302 | - <key_value>40</key_value> | |
| 1303 | - <target_name>fcno40</target_name> | |
| 1304 | - <target_type>String</target_type> | |
| 1305 | - <target_format/> | |
| 1306 | - <target_length>-1</target_length> | |
| 1307 | - <target_precision>-1</target_precision> | |
| 1308 | - <target_decimal_symbol/> | |
| 1309 | - <target_grouping_symbol/> | |
| 1310 | - <target_currency_symbol/> | |
| 1311 | - <target_null_string/> | |
| 1312 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1313 | - </field> | |
| 1314 | - <field> | |
| 1315 | - <field_name>all_content</field_name> | |
| 1316 | - <key_value>41</key_value> | |
| 1317 | - <target_name>fcno41</target_name> | |
| 1318 | - <target_type>String</target_type> | |
| 1319 | - <target_format/> | |
| 1320 | - <target_length>-1</target_length> | |
| 1321 | - <target_precision>-1</target_precision> | |
| 1322 | - <target_decimal_symbol/> | |
| 1323 | - <target_grouping_symbol/> | |
| 1324 | - <target_currency_symbol/> | |
| 1325 | - <target_null_string/> | |
| 1326 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1327 | - </field> | |
| 1328 | - <field> | |
| 1329 | - <field_name>all_content</field_name> | |
| 1330 | - <key_value>42</key_value> | |
| 1331 | - <target_name>fcno42</target_name> | |
| 1332 | - <target_type>String</target_type> | |
| 1333 | - <target_format/> | |
| 1334 | - <target_length>-1</target_length> | |
| 1335 | - <target_precision>-1</target_precision> | |
| 1336 | - <target_decimal_symbol/> | |
| 1337 | - <target_grouping_symbol/> | |
| 1338 | - <target_currency_symbol/> | |
| 1339 | - <target_null_string/> | |
| 1340 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1341 | - </field> | |
| 1342 | - <field> | |
| 1343 | - <field_name>all_content</field_name> | |
| 1344 | - <key_value>43</key_value> | |
| 1345 | - <target_name>fcno43</target_name> | |
| 1346 | - <target_type>String</target_type> | |
| 1347 | - <target_format/> | |
| 1348 | - <target_length>-1</target_length> | |
| 1349 | - <target_precision>-1</target_precision> | |
| 1350 | - <target_decimal_symbol/> | |
| 1351 | - <target_grouping_symbol/> | |
| 1352 | - <target_currency_symbol/> | |
| 1353 | - <target_null_string/> | |
| 1354 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1355 | - </field> | |
| 1356 | - <field> | |
| 1357 | - <field_name>all_content</field_name> | |
| 1358 | - <key_value>44</key_value> | |
| 1359 | - <target_name>fcno44</target_name> | |
| 1360 | - <target_type>String</target_type> | |
| 1361 | - <target_format/> | |
| 1362 | - <target_length>-1</target_length> | |
| 1363 | - <target_precision>-1</target_precision> | |
| 1364 | - <target_decimal_symbol/> | |
| 1365 | - <target_grouping_symbol/> | |
| 1366 | - <target_currency_symbol/> | |
| 1367 | - <target_null_string/> | |
| 1368 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1369 | - </field> | |
| 1370 | - <field> | |
| 1371 | - <field_name>all_content</field_name> | |
| 1372 | - <key_value>45</key_value> | |
| 1373 | - <target_name>fcno45</target_name> | |
| 1374 | - <target_type>String</target_type> | |
| 1375 | - <target_format/> | |
| 1376 | - <target_length>-1</target_length> | |
| 1377 | - <target_precision>-1</target_precision> | |
| 1378 | - <target_decimal_symbol/> | |
| 1379 | - <target_grouping_symbol/> | |
| 1380 | - <target_currency_symbol/> | |
| 1381 | - <target_null_string/> | |
| 1382 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1383 | - </field> | |
| 1384 | - <field> | |
| 1385 | - <field_name>all_content</field_name> | |
| 1386 | - <key_value>46</key_value> | |
| 1387 | - <target_name>fcno46</target_name> | |
| 1388 | - <target_type>String</target_type> | |
| 1389 | - <target_format/> | |
| 1390 | - <target_length>-1</target_length> | |
| 1391 | - <target_precision>-1</target_precision> | |
| 1392 | - <target_decimal_symbol/> | |
| 1393 | - <target_grouping_symbol/> | |
| 1394 | - <target_currency_symbol/> | |
| 1395 | - <target_null_string/> | |
| 1396 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1397 | - </field> | |
| 1398 | - <field> | |
| 1399 | - <field_name>all_content</field_name> | |
| 1400 | - <key_value>47</key_value> | |
| 1401 | - <target_name>fcno47</target_name> | |
| 1402 | - <target_type>String</target_type> | |
| 1403 | - <target_format/> | |
| 1404 | - <target_length>-1</target_length> | |
| 1405 | - <target_precision>-1</target_precision> | |
| 1406 | - <target_decimal_symbol/> | |
| 1407 | - <target_grouping_symbol/> | |
| 1408 | - <target_currency_symbol/> | |
| 1409 | - <target_null_string/> | |
| 1410 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1411 | - </field> | |
| 1412 | - <field> | |
| 1413 | - <field_name>all_content</field_name> | |
| 1414 | - <key_value>48</key_value> | |
| 1415 | - <target_name>fcno48</target_name> | |
| 1416 | - <target_type>String</target_type> | |
| 1417 | - <target_format/> | |
| 1418 | - <target_length>-1</target_length> | |
| 1419 | - <target_precision>-1</target_precision> | |
| 1420 | - <target_decimal_symbol/> | |
| 1421 | - <target_grouping_symbol/> | |
| 1422 | - <target_currency_symbol/> | |
| 1423 | - <target_null_string/> | |
| 1424 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1425 | - </field> | |
| 1426 | - <field> | |
| 1427 | - <field_name>all_content</field_name> | |
| 1428 | - <key_value>49</key_value> | |
| 1429 | - <target_name>fcno49</target_name> | |
| 1430 | - <target_type>String</target_type> | |
| 1431 | - <target_format/> | |
| 1432 | - <target_length>-1</target_length> | |
| 1433 | - <target_precision>-1</target_precision> | |
| 1434 | - <target_decimal_symbol/> | |
| 1435 | - <target_grouping_symbol/> | |
| 1436 | - <target_currency_symbol/> | |
| 1437 | - <target_null_string/> | |
| 1438 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1439 | - </field> | |
| 1440 | - <field> | |
| 1441 | - <field_name>all_content</field_name> | |
| 1442 | - <key_value>50</key_value> | |
| 1443 | - <target_name>fcno50</target_name> | |
| 1444 | - <target_type>String</target_type> | |
| 1445 | - <target_format/> | |
| 1446 | - <target_length>-1</target_length> | |
| 1447 | - <target_precision>-1</target_precision> | |
| 1448 | - <target_decimal_symbol/> | |
| 1449 | - <target_grouping_symbol/> | |
| 1450 | - <target_currency_symbol/> | |
| 1451 | - <target_null_string/> | |
| 1452 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1453 | - </field> | |
| 1454 | - <field> | |
| 1455 | - <field_name>all_content</field_name> | |
| 1456 | - <key_value>51</key_value> | |
| 1457 | - <target_name>fcno51</target_name> | |
| 1458 | - <target_type>String</target_type> | |
| 1459 | - <target_format/> | |
| 1460 | - <target_length>-1</target_length> | |
| 1461 | - <target_precision>-1</target_precision> | |
| 1462 | - <target_decimal_symbol/> | |
| 1463 | - <target_grouping_symbol/> | |
| 1464 | - <target_currency_symbol/> | |
| 1465 | - <target_null_string/> | |
| 1466 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1467 | - </field> | |
| 1468 | - <field> | |
| 1469 | - <field_name>all_content</field_name> | |
| 1470 | - <key_value>52</key_value> | |
| 1471 | - <target_name>fcno52</target_name> | |
| 1472 | - <target_type>String</target_type> | |
| 1473 | - <target_format/> | |
| 1474 | - <target_length>-1</target_length> | |
| 1475 | - <target_precision>-1</target_precision> | |
| 1476 | - <target_decimal_symbol/> | |
| 1477 | - <target_grouping_symbol/> | |
| 1478 | - <target_currency_symbol/> | |
| 1479 | - <target_null_string/> | |
| 1480 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1481 | - </field> | |
| 1482 | - <field> | |
| 1483 | - <field_name>all_content</field_name> | |
| 1484 | - <key_value>53</key_value> | |
| 1485 | - <target_name>fcno53</target_name> | |
| 1486 | - <target_type>String</target_type> | |
| 1487 | - <target_format/> | |
| 1488 | - <target_length>-1</target_length> | |
| 1489 | - <target_precision>-1</target_precision> | |
| 1490 | - <target_decimal_symbol/> | |
| 1491 | - <target_grouping_symbol/> | |
| 1492 | - <target_currency_symbol/> | |
| 1493 | - <target_null_string/> | |
| 1494 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1495 | - </field> | |
| 1496 | - <field> | |
| 1497 | - <field_name>all_content</field_name> | |
| 1498 | - <key_value>54</key_value> | |
| 1499 | - <target_name>fcno54</target_name> | |
| 1500 | - <target_type>String</target_type> | |
| 1501 | - <target_format/> | |
| 1502 | - <target_length>-1</target_length> | |
| 1503 | - <target_precision>-1</target_precision> | |
| 1504 | - <target_decimal_symbol/> | |
| 1505 | - <target_grouping_symbol/> | |
| 1506 | - <target_currency_symbol/> | |
| 1507 | - <target_null_string/> | |
| 1508 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1509 | - </field> | |
| 1510 | - <field> | |
| 1511 | - <field_name>all_content</field_name> | |
| 1512 | - <key_value>55</key_value> | |
| 1513 | - <target_name>fcno55</target_name> | |
| 1514 | - <target_type>String</target_type> | |
| 1515 | - <target_format/> | |
| 1516 | - <target_length>-1</target_length> | |
| 1517 | - <target_precision>-1</target_precision> | |
| 1518 | - <target_decimal_symbol/> | |
| 1519 | - <target_grouping_symbol/> | |
| 1520 | - <target_currency_symbol/> | |
| 1521 | - <target_null_string/> | |
| 1522 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1523 | - </field> | |
| 1524 | - <field> | |
| 1525 | - <field_name>all_content</field_name> | |
| 1526 | - <key_value>56</key_value> | |
| 1527 | - <target_name>fcno56</target_name> | |
| 1528 | - <target_type>String</target_type> | |
| 1529 | - <target_format/> | |
| 1530 | - <target_length>-1</target_length> | |
| 1531 | - <target_precision>-1</target_precision> | |
| 1532 | - <target_decimal_symbol/> | |
| 1533 | - <target_grouping_symbol/> | |
| 1534 | - <target_currency_symbol/> | |
| 1535 | - <target_null_string/> | |
| 1536 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1537 | - </field> | |
| 1538 | - <field> | |
| 1539 | - <field_name>all_content</field_name> | |
| 1540 | - <key_value>57</key_value> | |
| 1541 | - <target_name>fcno57</target_name> | |
| 1542 | - <target_type>String</target_type> | |
| 1543 | - <target_format/> | |
| 1544 | - <target_length>-1</target_length> | |
| 1545 | - <target_precision>-1</target_precision> | |
| 1546 | - <target_decimal_symbol/> | |
| 1547 | - <target_grouping_symbol/> | |
| 1548 | - <target_currency_symbol/> | |
| 1549 | - <target_null_string/> | |
| 1550 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1551 | - </field> | |
| 1552 | - <field> | |
| 1553 | - <field_name>all_content</field_name> | |
| 1554 | - <key_value>58</key_value> | |
| 1555 | - <target_name>fcno58</target_name> | |
| 1556 | - <target_type>String</target_type> | |
| 1557 | - <target_format/> | |
| 1558 | - <target_length>-1</target_length> | |
| 1559 | - <target_precision>-1</target_precision> | |
| 1560 | - <target_decimal_symbol/> | |
| 1561 | - <target_grouping_symbol/> | |
| 1562 | - <target_currency_symbol/> | |
| 1563 | - <target_null_string/> | |
| 1564 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1565 | - </field> | |
| 1566 | - <field> | |
| 1567 | - <field_name>all_content</field_name> | |
| 1568 | - <key_value>59</key_value> | |
| 1569 | - <target_name>fcno59</target_name> | |
| 1570 | - <target_type>String</target_type> | |
| 1571 | - <target_format/> | |
| 1572 | - <target_length>-1</target_length> | |
| 1573 | - <target_precision>-1</target_precision> | |
| 1574 | - <target_decimal_symbol/> | |
| 1575 | - <target_grouping_symbol/> | |
| 1576 | - <target_currency_symbol/> | |
| 1577 | - <target_null_string/> | |
| 1578 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1579 | - </field> | |
| 1580 | - <field> | |
| 1581 | - <field_name>all_content</field_name> | |
| 1582 | - <key_value>60</key_value> | |
| 1583 | - <target_name>fcno60</target_name> | |
| 1584 | - <target_type>String</target_type> | |
| 1585 | - <target_format/> | |
| 1586 | - <target_length>-1</target_length> | |
| 1587 | - <target_precision>-1</target_precision> | |
| 1588 | - <target_decimal_symbol/> | |
| 1589 | - <target_grouping_symbol/> | |
| 1590 | - <target_currency_symbol/> | |
| 1591 | - <target_null_string/> | |
| 1592 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1593 | - </field> | |
| 1594 | - <field> | |
| 1595 | - <field_name>all_content</field_name> | |
| 1596 | - <key_value>61</key_value> | |
| 1597 | - <target_name>fcno61</target_name> | |
| 1598 | - <target_type>String</target_type> | |
| 1599 | - <target_format/> | |
| 1600 | - <target_length>-1</target_length> | |
| 1601 | - <target_precision>-1</target_precision> | |
| 1602 | - <target_decimal_symbol/> | |
| 1603 | - <target_grouping_symbol/> | |
| 1604 | - <target_currency_symbol/> | |
| 1605 | - <target_null_string/> | |
| 1606 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1607 | - </field> | |
| 1608 | - <field> | |
| 1609 | - <field_name>all_content</field_name> | |
| 1610 | - <key_value>62</key_value> | |
| 1611 | - <target_name>fcno62</target_name> | |
| 1612 | - <target_type>String</target_type> | |
| 1613 | - <target_format/> | |
| 1614 | - <target_length>-1</target_length> | |
| 1615 | - <target_precision>-1</target_precision> | |
| 1616 | - <target_decimal_symbol/> | |
| 1617 | - <target_grouping_symbol/> | |
| 1618 | - <target_currency_symbol/> | |
| 1619 | - <target_null_string/> | |
| 1620 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1621 | - </field> | |
| 1622 | - <field> | |
| 1623 | - <field_name>all_content</field_name> | |
| 1624 | - <key_value>63</key_value> | |
| 1625 | - <target_name>fcno63</target_name> | |
| 1626 | - <target_type>String</target_type> | |
| 1627 | - <target_format/> | |
| 1628 | - <target_length>-1</target_length> | |
| 1629 | - <target_precision>-1</target_precision> | |
| 1630 | - <target_decimal_symbol/> | |
| 1631 | - <target_grouping_symbol/> | |
| 1632 | - <target_currency_symbol/> | |
| 1633 | - <target_null_string/> | |
| 1634 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1635 | - </field> | |
| 1636 | - <field> | |
| 1637 | - <field_name>all_content</field_name> | |
| 1638 | - <key_value>64</key_value> | |
| 1639 | - <target_name>fcno64</target_name> | |
| 1640 | - <target_type>String</target_type> | |
| 1641 | - <target_format/> | |
| 1642 | - <target_length>-1</target_length> | |
| 1643 | - <target_precision>-1</target_precision> | |
| 1644 | - <target_decimal_symbol/> | |
| 1645 | - <target_grouping_symbol/> | |
| 1646 | - <target_currency_symbol/> | |
| 1647 | - <target_null_string/> | |
| 1648 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1649 | - </field> | |
| 1650 | - <field> | |
| 1651 | - <field_name>all_content</field_name> | |
| 1652 | - <key_value>65</key_value> | |
| 1653 | - <target_name>fcno65</target_name> | |
| 1654 | - <target_type>String</target_type> | |
| 1655 | - <target_format/> | |
| 1656 | - <target_length>-1</target_length> | |
| 1657 | - <target_precision>-1</target_precision> | |
| 1658 | - <target_decimal_symbol/> | |
| 1659 | - <target_grouping_symbol/> | |
| 1660 | - <target_currency_symbol/> | |
| 1661 | - <target_null_string/> | |
| 1662 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1663 | - </field> | |
| 1664 | - <field> | |
| 1665 | - <field_name>all_content</field_name> | |
| 1666 | - <key_value>66</key_value> | |
| 1667 | - <target_name>fcno66</target_name> | |
| 1668 | - <target_type>String</target_type> | |
| 1669 | - <target_format/> | |
| 1670 | - <target_length>-1</target_length> | |
| 1671 | - <target_precision>-1</target_precision> | |
| 1672 | - <target_decimal_symbol/> | |
| 1673 | - <target_grouping_symbol/> | |
| 1674 | - <target_currency_symbol/> | |
| 1675 | - <target_null_string/> | |
| 1676 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1677 | - </field> | |
| 1678 | - <field> | |
| 1679 | - <field_name>all_content</field_name> | |
| 1680 | - <key_value>67</key_value> | |
| 1681 | - <target_name>fcno67</target_name> | |
| 1682 | - <target_type>String</target_type> | |
| 1683 | - <target_format/> | |
| 1684 | - <target_length>-1</target_length> | |
| 1685 | - <target_precision>-1</target_precision> | |
| 1686 | - <target_decimal_symbol/> | |
| 1687 | - <target_grouping_symbol/> | |
| 1688 | - <target_currency_symbol/> | |
| 1689 | - <target_null_string/> | |
| 1690 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1691 | - </field> | |
| 1692 | - <field> | |
| 1693 | - <field_name>all_content</field_name> | |
| 1694 | - <key_value>68</key_value> | |
| 1695 | - <target_name>fcno68</target_name> | |
| 1696 | - <target_type>String</target_type> | |
| 1697 | - <target_format/> | |
| 1698 | - <target_length>-1</target_length> | |
| 1699 | - <target_precision>-1</target_precision> | |
| 1700 | - <target_decimal_symbol/> | |
| 1701 | - <target_grouping_symbol/> | |
| 1702 | - <target_currency_symbol/> | |
| 1703 | - <target_null_string/> | |
| 1704 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1705 | - </field> | |
| 1706 | - <field> | |
| 1707 | - <field_name>all_content</field_name> | |
| 1708 | - <key_value>69</key_value> | |
| 1709 | - <target_name>fcno69</target_name> | |
| 1710 | - <target_type>String</target_type> | |
| 1711 | - <target_format/> | |
| 1712 | - <target_length>-1</target_length> | |
| 1713 | - <target_precision>-1</target_precision> | |
| 1714 | - <target_decimal_symbol/> | |
| 1715 | - <target_grouping_symbol/> | |
| 1716 | - <target_currency_symbol/> | |
| 1717 | - <target_null_string/> | |
| 1718 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1719 | - </field> | |
| 1720 | - <field> | |
| 1721 | - <field_name>all_content</field_name> | |
| 1722 | - <key_value>70</key_value> | |
| 1723 | - <target_name>fcno70</target_name> | |
| 1724 | - <target_type>String</target_type> | |
| 1725 | - <target_format/> | |
| 1726 | - <target_length>-1</target_length> | |
| 1727 | - <target_precision>-1</target_precision> | |
| 1728 | - <target_decimal_symbol/> | |
| 1729 | - <target_grouping_symbol/> | |
| 1730 | - <target_currency_symbol/> | |
| 1731 | - <target_null_string/> | |
| 1732 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1733 | - </field> | |
| 1734 | - </fields> | |
| 1735 | - <cluster_schema/> | |
| 1736 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1737 | - <xloc>690</xloc> | |
| 1738 | - <yloc>272</yloc> | |
| 1739 | - <draw>Y</draw> | |
| 1740 | - </GUI> | |
| 1741 | - </step> | |
| 1742 | - | |
| 1743 | - <step> | |
| 1744 | - <name>去除字段</name> | |
| 1745 | - <type>SelectValues</type> | |
| 1746 | - <description/> | |
| 1747 | - <distribute>N</distribute> | |
| 1748 | - <custom_distribution/> | |
| 1749 | - <copies>1</copies> | |
| 1750 | - <partitioning> | |
| 1751 | - <method>none</method> | |
| 1752 | - <schema_name/> | |
| 1753 | - </partitioning> | |
| 1754 | - <fields> <field> <name>lp</name> | |
| 1755 | - <rename/> | |
| 1756 | - <length>-2</length> | |
| 1757 | - <precision>-2</precision> | |
| 1758 | - </field> <field> <name>fcno1</name> | |
| 1759 | - <rename/> | |
| 1760 | - <length>-2</length> | |
| 1761 | - <precision>-2</precision> | |
| 1762 | - </field> <field> <name>fcno2</name> | |
| 1763 | - <rename/> | |
| 1764 | - <length>-2</length> | |
| 1765 | - <precision>-2</precision> | |
| 1766 | - </field> <field> <name>fcno3</name> | |
| 1767 | - <rename/> | |
| 1768 | - <length>-2</length> | |
| 1769 | - <precision>-2</precision> | |
| 1770 | - </field> <field> <name>fcno4</name> | |
| 1771 | - <rename/> | |
| 1772 | - <length>-2</length> | |
| 1773 | - <precision>-2</precision> | |
| 1774 | - </field> <field> <name>fcno5</name> | |
| 1775 | - <rename/> | |
| 1776 | - <length>-2</length> | |
| 1777 | - <precision>-2</precision> | |
| 1778 | - </field> <field> <name>fcno6</name> | |
| 1779 | - <rename/> | |
| 1780 | - <length>-2</length> | |
| 1781 | - <precision>-2</precision> | |
| 1782 | - </field> <field> <name>fcno7</name> | |
| 1783 | - <rename/> | |
| 1784 | - <length>-2</length> | |
| 1785 | - <precision>-2</precision> | |
| 1786 | - </field> <field> <name>fcno8</name> | |
| 1787 | - <rename/> | |
| 1788 | - <length>-2</length> | |
| 1789 | - <precision>-2</precision> | |
| 1790 | - </field> <field> <name>fcno9</name> | |
| 1791 | - <rename/> | |
| 1792 | - <length>-2</length> | |
| 1793 | - <precision>-2</precision> | |
| 1794 | - </field> <field> <name>fcno10</name> | |
| 1795 | - <rename/> | |
| 1796 | - <length>-2</length> | |
| 1797 | - <precision>-2</precision> | |
| 1798 | - </field> <field> <name>fcno11</name> | |
| 1799 | - <rename/> | |
| 1800 | - <length>-2</length> | |
| 1801 | - <precision>-2</precision> | |
| 1802 | - </field> <field> <name>fcno12</name> | |
| 1803 | - <rename/> | |
| 1804 | - <length>-2</length> | |
| 1805 | - <precision>-2</precision> | |
| 1806 | - </field> <field> <name>fcno13</name> | |
| 1807 | - <rename/> | |
| 1808 | - <length>-2</length> | |
| 1809 | - <precision>-2</precision> | |
| 1810 | - </field> <field> <name>fcno14</name> | |
| 1811 | - <rename/> | |
| 1812 | - <length>-2</length> | |
| 1813 | - <precision>-2</precision> | |
| 1814 | - </field> <field> <name>fcno15</name> | |
| 1815 | - <rename/> | |
| 1816 | - <length>-2</length> | |
| 1817 | - <precision>-2</precision> | |
| 1818 | - </field> <field> <name>fcno16</name> | |
| 1819 | - <rename/> | |
| 1820 | - <length>-2</length> | |
| 1821 | - <precision>-2</precision> | |
| 1822 | - </field> <field> <name>fcno17</name> | |
| 1823 | - <rename/> | |
| 1824 | - <length>-2</length> | |
| 1825 | - <precision>-2</precision> | |
| 1826 | - </field> <field> <name>fcno18</name> | |
| 1827 | - <rename/> | |
| 1828 | - <length>-2</length> | |
| 1829 | - <precision>-2</precision> | |
| 1830 | - </field> <field> <name>fcno19</name> | |
| 1831 | - <rename/> | |
| 1832 | - <length>-2</length> | |
| 1833 | - <precision>-2</precision> | |
| 1834 | - </field> <field> <name>fcno20</name> | |
| 1835 | - <rename/> | |
| 1836 | - <length>-2</length> | |
| 1837 | - <precision>-2</precision> | |
| 1838 | - </field> <field> <name>fcno21</name> | |
| 1839 | - <rename/> | |
| 1840 | - <length>-2</length> | |
| 1841 | - <precision>-2</precision> | |
| 1842 | - </field> <field> <name>fcno22</name> | |
| 1843 | - <rename/> | |
| 1844 | - <length>-2</length> | |
| 1845 | - <precision>-2</precision> | |
| 1846 | - </field> <field> <name>fcno23</name> | |
| 1847 | - <rename/> | |
| 1848 | - <length>-2</length> | |
| 1849 | - <precision>-2</precision> | |
| 1850 | - </field> <field> <name>fcno24</name> | |
| 1851 | - <rename/> | |
| 1852 | - <length>-2</length> | |
| 1853 | - <precision>-2</precision> | |
| 1854 | - </field> <field> <name>fcno25</name> | |
| 1855 | - <rename/> | |
| 1856 | - <length>-2</length> | |
| 1857 | - <precision>-2</precision> | |
| 1858 | - </field> <field> <name>fcno26</name> | |
| 1859 | - <rename/> | |
| 1860 | - <length>-2</length> | |
| 1861 | - <precision>-2</precision> | |
| 1862 | - </field> <field> <name>fcno27</name> | |
| 1863 | - <rename/> | |
| 1864 | - <length>-2</length> | |
| 1865 | - <precision>-2</precision> | |
| 1866 | - </field> <field> <name>fcno28</name> | |
| 1867 | - <rename/> | |
| 1868 | - <length>-2</length> | |
| 1869 | - <precision>-2</precision> | |
| 1870 | - </field> <field> <name>fcno29</name> | |
| 1871 | - <rename/> | |
| 1872 | - <length>-2</length> | |
| 1873 | - <precision>-2</precision> | |
| 1874 | - </field> <field> <name>fcno30</name> | |
| 1875 | - <rename/> | |
| 1876 | - <length>-2</length> | |
| 1877 | - <precision>-2</precision> | |
| 1878 | - </field> <field> <name>fcno31</name> | |
| 1879 | - <rename/> | |
| 1880 | - <length>-2</length> | |
| 1881 | - <precision>-2</precision> | |
| 1882 | - </field> <field> <name>fcno32</name> | |
| 1883 | - <rename/> | |
| 1884 | - <length>-2</length> | |
| 1885 | - <precision>-2</precision> | |
| 1886 | - </field> <field> <name>fcno33</name> | |
| 1887 | - <rename/> | |
| 1888 | - <length>-2</length> | |
| 1889 | - <precision>-2</precision> | |
| 1890 | - </field> <field> <name>fcno34</name> | |
| 1891 | - <rename/> | |
| 1892 | - <length>-2</length> | |
| 1893 | - <precision>-2</precision> | |
| 1894 | - </field> <field> <name>fcno35</name> | |
| 1895 | - <rename/> | |
| 1896 | - <length>-2</length> | |
| 1897 | - <precision>-2</precision> | |
| 1898 | - </field> <field> <name>fcno36</name> | |
| 1899 | - <rename/> | |
| 1900 | - <length>-2</length> | |
| 1901 | - <precision>-2</precision> | |
| 1902 | - </field> <field> <name>fcno37</name> | |
| 1903 | - <rename/> | |
| 1904 | - <length>-2</length> | |
| 1905 | - <precision>-2</precision> | |
| 1906 | - </field> <field> <name>fcno38</name> | |
| 1907 | - <rename/> | |
| 1908 | - <length>-2</length> | |
| 1909 | - <precision>-2</precision> | |
| 1910 | - </field> <field> <name>fcno39</name> | |
| 1911 | - <rename/> | |
| 1912 | - <length>-2</length> | |
| 1913 | - <precision>-2</precision> | |
| 1914 | - </field> <field> <name>fcno40</name> | |
| 1915 | - <rename/> | |
| 1916 | - <length>-2</length> | |
| 1917 | - <precision>-2</precision> | |
| 1918 | - </field> <field> <name>fcno41</name> | |
| 1919 | - <rename/> | |
| 1920 | - <length>-2</length> | |
| 1921 | - <precision>-2</precision> | |
| 1922 | - </field> <field> <name>fcno42</name> | |
| 1923 | - <rename/> | |
| 1924 | - <length>-2</length> | |
| 1925 | - <precision>-2</precision> | |
| 1926 | - </field> <field> <name>fcno43</name> | |
| 1927 | - <rename/> | |
| 1928 | - <length>-2</length> | |
| 1929 | - <precision>-2</precision> | |
| 1930 | - </field> <field> <name>fcno44</name> | |
| 1931 | - <rename/> | |
| 1932 | - <length>-2</length> | |
| 1933 | - <precision>-2</precision> | |
| 1934 | - </field> <field> <name>fcno45</name> | |
| 1935 | - <rename/> | |
| 1936 | - <length>-2</length> | |
| 1937 | - <precision>-2</precision> | |
| 1938 | - </field> <field> <name>fcno46</name> | |
| 1939 | - <rename/> | |
| 1940 | - <length>-2</length> | |
| 1941 | - <precision>-2</precision> | |
| 1942 | - </field> <field> <name>fcno47</name> | |
| 1943 | - <rename/> | |
| 1944 | - <length>-2</length> | |
| 1945 | - <precision>-2</precision> | |
| 1946 | - </field> <field> <name>fcno48</name> | |
| 1947 | - <rename/> | |
| 1948 | - <length>-2</length> | |
| 1949 | - <precision>-2</precision> | |
| 1950 | - </field> <field> <name>fcno49</name> | |
| 1951 | - <rename/> | |
| 1952 | - <length>-2</length> | |
| 1953 | - <precision>-2</precision> | |
| 1954 | - </field> <field> <name>fcno50</name> | |
| 1955 | - <rename/> | |
| 1956 | - <length>-2</length> | |
| 1957 | - <precision>-2</precision> | |
| 1958 | - </field> <field> <name>fcno51</name> | |
| 1959 | - <rename/> | |
| 1960 | - <length>-2</length> | |
| 1961 | - <precision>-2</precision> | |
| 1962 | - </field> <field> <name>fcno52</name> | |
| 1963 | - <rename/> | |
| 1964 | - <length>-2</length> | |
| 1965 | - <precision>-2</precision> | |
| 1966 | - </field> <field> <name>fcno53</name> | |
| 1967 | - <rename/> | |
| 1968 | - <length>-2</length> | |
| 1969 | - <precision>-2</precision> | |
| 1970 | - </field> <field> <name>fcno54</name> | |
| 1971 | - <rename/> | |
| 1972 | - <length>-2</length> | |
| 1973 | - <precision>-2</precision> | |
| 1974 | - </field> <field> <name>fcno55</name> | |
| 1975 | - <rename/> | |
| 1976 | - <length>-2</length> | |
| 1977 | - <precision>-2</precision> | |
| 1978 | - </field> <field> <name>fcno56</name> | |
| 1979 | - <rename/> | |
| 1980 | - <length>-2</length> | |
| 1981 | - <precision>-2</precision> | |
| 1982 | - </field> <field> <name>fcno57</name> | |
| 1983 | - <rename/> | |
| 1984 | - <length>-2</length> | |
| 1985 | - <precision>-2</precision> | |
| 1986 | - </field> <field> <name>fcno58</name> | |
| 1987 | - <rename/> | |
| 1988 | - <length>-2</length> | |
| 1989 | - <precision>-2</precision> | |
| 1990 | - </field> <field> <name>fcno59</name> | |
| 1991 | - <rename/> | |
| 1992 | - <length>-2</length> | |
| 1993 | - <precision>-2</precision> | |
| 1994 | - </field> <field> <name>fcno60</name> | |
| 1995 | - <rename/> | |
| 1996 | - <length>-2</length> | |
| 1997 | - <precision>-2</precision> | |
| 1998 | - </field> <field> <name>fcno61</name> | |
| 1999 | - <rename/> | |
| 2000 | - <length>-2</length> | |
| 2001 | - <precision>-2</precision> | |
| 2002 | - </field> <field> <name>fcno62</name> | |
| 2003 | - <rename/> | |
| 2004 | - <length>-2</length> | |
| 2005 | - <precision>-2</precision> | |
| 2006 | - </field> <field> <name>fcno63</name> | |
| 2007 | - <rename/> | |
| 2008 | - <length>-2</length> | |
| 2009 | - <precision>-2</precision> | |
| 2010 | - </field> <field> <name>fcno64</name> | |
| 2011 | - <rename/> | |
| 2012 | - <length>-2</length> | |
| 2013 | - <precision>-2</precision> | |
| 2014 | - </field> <field> <name>fcno65</name> | |
| 2015 | - <rename/> | |
| 2016 | - <length>-2</length> | |
| 2017 | - <precision>-2</precision> | |
| 2018 | - </field> <field> <name>fcno66</name> | |
| 2019 | - <rename/> | |
| 2020 | - <length>-2</length> | |
| 2021 | - <precision>-2</precision> | |
| 2022 | - </field> <field> <name>fcno67</name> | |
| 2023 | - <rename/> | |
| 2024 | - <length>-2</length> | |
| 2025 | - <precision>-2</precision> | |
| 2026 | - </field> <field> <name>fcno68</name> | |
| 2027 | - <rename/> | |
| 2028 | - <length>-2</length> | |
| 2029 | - <precision>-2</precision> | |
| 2030 | - </field> <field> <name>fcno69</name> | |
| 2031 | - <rename/> | |
| 2032 | - <length>-2</length> | |
| 2033 | - <precision>-2</precision> | |
| 2034 | - </field> <field> <name>fcno70</name> | |
| 2035 | - <rename/> | |
| 2036 | - <length>-2</length> | |
| 2037 | - <precision>-2</precision> | |
| 2038 | - </field> <select_unspecified>N</select_unspecified> | |
| 2039 | - </fields> <cluster_schema/> | |
| 2040 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2041 | - <xloc>691</xloc> | |
| 2042 | - <yloc>361</yloc> | |
| 2043 | - <draw>Y</draw> | |
| 2044 | - </GUI> | |
| 2045 | - </step> | |
| 2046 | - | |
| 2047 | - <step> | |
| 2048 | - <name>合并内容</name> | |
| 2049 | - <type>ScriptValueMod</type> | |
| 2050 | - <description/> | |
| 2051 | - <distribute>Y</distribute> | |
| 2052 | - <custom_distribution/> | |
| 2053 | - <copies>1</copies> | |
| 2054 | - <partitioning> | |
| 2055 | - <method>none</method> | |
| 2056 | - <schema_name/> | |
| 2057 | - </partitioning> | |
| 2058 | - <compatible>N</compatible> | |
| 2059 | - <optimizationLevel>9</optimizationLevel> | |
| 2060 | - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 2061 | - <jsScript_name>Script 1</jsScript_name> | |
| 2062 | - <jsScript_script>//Script here

// 顺序,id,fcsj,jhlc,zdname,bctype,xldir,isfb
var all_content_array = [];
var all_content = ""; 
all_content_array.push(id);
all_content_array.push(fcsj);
all_content_array.push(jhlc);
all_content_array.push(fczdName);
all_content_array.push(bc_type);
all_content_array.push(xl_dir);
all_content_array.push(isfb);
all_content_array.push(qdz || 'null');
all_content_array.push(zdz || 'null');
all_content_array.push(tcc || 'null');

all_content = all_content_array.join(","); // 逗号分隔</jsScript_script> | |
| 2063 | - </jsScript> </jsScripts> <fields> <field> <name>all_content</name> | |
| 2064 | - <rename>all_content</rename> | |
| 2065 | - <type>String</type> | |
| 2066 | - <length>-1</length> | |
| 2067 | - <precision>-1</precision> | |
| 2068 | - <replace>N</replace> | |
| 2069 | - </field> </fields> <cluster_schema/> | |
| 2070 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2071 | - <xloc>551</xloc> | |
| 2072 | - <yloc>366</yloc> | |
| 2073 | - <draw>Y</draw> | |
| 2074 | - </GUI> | |
| 2075 | - </step> | |
| 2076 | - | |
| 2077 | - <step> | |
| 2078 | - <name>字段选择</name> | |
| 2079 | - <type>SelectValues</type> | |
| 2080 | - <description/> | |
| 2081 | - <distribute>Y</distribute> | |
| 2082 | - <custom_distribution/> | |
| 2083 | - <copies>1</copies> | |
| 2084 | - <partitioning> | |
| 2085 | - <method>none</method> | |
| 2086 | - <schema_name/> | |
| 2087 | - </partitioning> | |
| 2088 | - <fields> <field> <name>id</name> | |
| 2089 | - <rename/> | |
| 2090 | - <length>-2</length> | |
| 2091 | - <precision>-2</precision> | |
| 2092 | - </field> <field> <name>lp</name> | |
| 2093 | - <rename/> | |
| 2094 | - <length>-2</length> | |
| 2095 | - <precision>-2</precision> | |
| 2096 | - </field> <field> <name>fcsj</name> | |
| 2097 | - <rename/> | |
| 2098 | - <length>-2</length> | |
| 2099 | - <precision>-2</precision> | |
| 2100 | - </field> <field> <name>fcno</name> | |
| 2101 | - <rename/> | |
| 2102 | - <length>-2</length> | |
| 2103 | - <precision>-2</precision> | |
| 2104 | - </field> <field> <name>bcs</name> | |
| 2105 | - <rename/> | |
| 2106 | - <length>-2</length> | |
| 2107 | - <precision>-2</precision> | |
| 2108 | - </field> <field> <name>bc_type</name> | |
| 2109 | - <rename/> | |
| 2110 | - <length>-2</length> | |
| 2111 | - <precision>-2</precision> | |
| 2112 | - </field> <field> <name>qdzName</name> | |
| 2113 | - <rename/> | |
| 2114 | - <length>-2</length> | |
| 2115 | - <precision>-2</precision> | |
| 2116 | - </field> <field> <name>zdzName</name> | |
| 2117 | - <rename/> | |
| 2118 | - <length>-2</length> | |
| 2119 | - <precision>-2</precision> | |
| 2120 | - </field> <field> <name>xl_dir</name> | |
| 2121 | - <rename/> | |
| 2122 | - <length>-2</length> | |
| 2123 | - <precision>-2</precision> | |
| 2124 | - </field> <field> <name>isfb</name> | |
| 2125 | - <rename/> | |
| 2126 | - <length>-2</length> | |
| 2127 | - <precision>-2</precision> | |
| 2128 | - </field> <field> <name>jhlc</name> | |
| 2129 | - <rename/> | |
| 2130 | - <length>-2</length> | |
| 2131 | - <precision>-2</precision> | |
| 2132 | - </field> <field> <name>qdz</name> | |
| 2133 | - <rename/> | |
| 2134 | - <length>-2</length> | |
| 2135 | - <precision>-2</precision> | |
| 2136 | - </field> <field> <name>zdz</name> | |
| 2137 | - <rename/> | |
| 2138 | - <length>-2</length> | |
| 2139 | - <precision>-2</precision> | |
| 2140 | - </field> <field> <name>tcc</name> | |
| 2141 | - <rename/> | |
| 2142 | - <length>-2</length> | |
| 2143 | - <precision>-2</precision> | |
| 2144 | - </field> <select_unspecified>N</select_unspecified> | |
| 2145 | - </fields> <cluster_schema/> | |
| 2146 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2147 | - <xloc>690</xloc> | |
| 2148 | - <yloc>188</yloc> | |
| 2149 | - <draw>Y</draw> | |
| 2150 | - </GUI> | |
| 2151 | - </step> | |
| 2152 | - | |
| 2153 | - <step> | |
| 2154 | - <name>字段选择 2</name> | |
| 2155 | - <type>SelectValues</type> | |
| 2156 | - <description/> | |
| 2157 | - <distribute>Y</distribute> | |
| 2158 | - <custom_distribution/> | |
| 2159 | - <copies>1</copies> | |
| 2160 | - <partitioning> | |
| 2161 | - <method>none</method> | |
| 2162 | - <schema_name/> | |
| 2163 | - </partitioning> | |
| 2164 | - <fields> <field> <name>id</name> | |
| 2165 | - <rename/> | |
| 2166 | - <length>-2</length> | |
| 2167 | - <precision>-2</precision> | |
| 2168 | - </field> <field> <name>lp</name> | |
| 2169 | - <rename/> | |
| 2170 | - <length>-2</length> | |
| 2171 | - <precision>-2</precision> | |
| 2172 | - </field> <field> <name>fcsj</name> | |
| 2173 | - <rename/> | |
| 2174 | - <length>-2</length> | |
| 2175 | - <precision>-2</precision> | |
| 2176 | - </field> <field> <name>fcno</name> | |
| 2177 | - <rename/> | |
| 2178 | - <length>-2</length> | |
| 2179 | - <precision>-2</precision> | |
| 2180 | - </field> <field> <name>bcs</name> | |
| 2181 | - <rename/> | |
| 2182 | - <length>-2</length> | |
| 2183 | - <precision>-2</precision> | |
| 2184 | - </field> <field> <name>bc_type</name> | |
| 2185 | - <rename/> | |
| 2186 | - <length>-2</length> | |
| 2187 | - <precision>-2</precision> | |
| 2188 | - </field> <field> <name>qdzName</name> | |
| 2189 | - <rename/> | |
| 2190 | - <length>-2</length> | |
| 2191 | - <precision>-2</precision> | |
| 2192 | - </field> <field> <name>zdzName</name> | |
| 2193 | - <rename/> | |
| 2194 | - <length>-2</length> | |
| 2195 | - <precision>-2</precision> | |
| 2196 | - </field> <field> <name>xl_dir</name> | |
| 2197 | - <rename/> | |
| 2198 | - <length>-2</length> | |
| 2199 | - <precision>-2</precision> | |
| 2200 | - </field> <field> <name>isfb</name> | |
| 2201 | - <rename/> | |
| 2202 | - <length>-2</length> | |
| 2203 | - <precision>-2</precision> | |
| 2204 | - </field> <field> <name>jhlc</name> | |
| 2205 | - <rename/> | |
| 2206 | - <length>-2</length> | |
| 2207 | - <precision>-2</precision> | |
| 2208 | - </field> <field> <name>qdz</name> | |
| 2209 | - <rename/> | |
| 2210 | - <length>-2</length> | |
| 2211 | - <precision>-2</precision> | |
| 2212 | - </field> <field> <name>zdz</name> | |
| 2213 | - <rename/> | |
| 2214 | - <length>-2</length> | |
| 2215 | - <precision>-2</precision> | |
| 2216 | - </field> <field> <name>tcc</name> | |
| 2217 | - <rename/> | |
| 2218 | - <length>-2</length> | |
| 2219 | - <precision>-2</precision> | |
| 2220 | - </field> <select_unspecified>N</select_unspecified> | |
| 2221 | - </fields> <cluster_schema/> | |
| 2222 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2223 | - <xloc>402</xloc> | |
| 2224 | - <yloc>189</yloc> | |
| 2225 | - <draw>Y</draw> | |
| 2226 | - </GUI> | |
| 2227 | - </step> | |
| 2228 | - | |
| 2229 | - <step> | |
| 2230 | - <name>排序记录</name> | |
| 2231 | - <type>SortRows</type> | |
| 2232 | - <description/> | |
| 2233 | - <distribute>Y</distribute> | |
| 2234 | - <custom_distribution/> | |
| 2235 | - <copies>1</copies> | |
| 2236 | - <partitioning> | |
| 2237 | - <method>none</method> | |
| 2238 | - <schema_name/> | |
| 2239 | - </partitioning> | |
| 2240 | - <directory>%%java.io.tmpdir%%</directory> | |
| 2241 | - <prefix>out</prefix> | |
| 2242 | - <sort_size>1000000</sort_size> | |
| 2243 | - <free_memory/> | |
| 2244 | - <compress>N</compress> | |
| 2245 | - <compress_variable/> | |
| 2246 | - <unique_rows>N</unique_rows> | |
| 2247 | - <fields> | |
| 2248 | - <field> | |
| 2249 | - <name>bcs</name> | |
| 2250 | - <ascending>Y</ascending> | |
| 2251 | - <case_sensitive>N</case_sensitive> | |
| 2252 | - <presorted>N</presorted> | |
| 2253 | - </field> | |
| 2254 | - </fields> | |
| 2255 | - <cluster_schema/> | |
| 2256 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2257 | - <xloc>549</xloc> | |
| 2258 | - <yloc>191</yloc> | |
| 2259 | - <draw>Y</draw> | |
| 2260 | - </GUI> | |
| 2261 | - </step> | |
| 2262 | - | |
| 2263 | - <step> | |
| 2264 | - <name>文本文件输出</name> | |
| 2265 | - <type>TextFileOutput</type> | |
| 2266 | - <description/> | |
| 2267 | - <distribute>Y</distribute> | |
| 2268 | - <custom_distribution/> | |
| 2269 | - <copies>1</copies> | |
| 2270 | - <partitioning> | |
| 2271 | - <method>none</method> | |
| 2272 | - <schema_name/> | |
| 2273 | - </partitioning> | |
| 2274 | - <separator>;</separator> | |
| 2275 | - <enclosure>"</enclosure> | |
| 2276 | - <enclosure_forced>N</enclosure_forced> | |
| 2277 | - <enclosure_fix_disabled>N</enclosure_fix_disabled> | |
| 2278 | - <header>Y</header> | |
| 2279 | - <footer>N</footer> | |
| 2280 | - <format>DOS</format> | |
| 2281 | - <compression>None</compression> | |
| 2282 | - <encoding>UTF-8</encoding> | |
| 2283 | - <endedLine/> | |
| 2284 | - <fileNameInField>N</fileNameInField> | |
| 2285 | - <fileNameField/> | |
| 2286 | - <create_parent_folder>Y</create_parent_folder> | |
| 2287 | - <file> | |
| 2288 | - <name>${tempfilepath}</name> | |
| 2289 | - <is_command>N</is_command> | |
| 2290 | - <servlet_output>N</servlet_output> | |
| 2291 | - <do_not_open_new_file_init>N</do_not_open_new_file_init> | |
| 2292 | - <extention>txt</extention> | |
| 2293 | - <append>N</append> | |
| 2294 | - <split>N</split> | |
| 2295 | - <haspartno>N</haspartno> | |
| 2296 | - <add_date>N</add_date> | |
| 2297 | - <add_time>N</add_time> | |
| 2298 | - <SpecifyFormat>N</SpecifyFormat> | |
| 2299 | - <date_time_format/> | |
| 2300 | - <add_to_result_filenames>Y</add_to_result_filenames> | |
| 2301 | - <pad>N</pad> | |
| 2302 | - <fast_dump>N</fast_dump> | |
| 2303 | - <splitevery>0</splitevery> | |
| 2304 | - </file> | |
| 2305 | - <fields> | |
| 2306 | - <field> | |
| 2307 | - <name>lp</name> | |
| 2308 | - <type>String</type> | |
| 2309 | - <format/> | |
| 2310 | - <currency/> | |
| 2311 | - <decimal/> | |
| 2312 | - <group/> | |
| 2313 | - <nullif/> | |
| 2314 | - <trim_type>none</trim_type> | |
| 2315 | - <length>255</length> | |
| 2316 | - <precision>-1</precision> | |
| 2317 | - </field> | |
| 2318 | - <field> | |
| 2319 | - <name>fcno1</name> | |
| 2320 | - <type>String</type> | |
| 2321 | - <format/> | |
| 2322 | - <currency/> | |
| 2323 | - <decimal/> | |
| 2324 | - <group/> | |
| 2325 | - <nullif/> | |
| 2326 | - <trim_type>none</trim_type> | |
| 2327 | - <length>-1</length> | |
| 2328 | - <precision>-1</precision> | |
| 2329 | - </field> | |
| 2330 | - <field> | |
| 2331 | - <name>fcno2</name> | |
| 2332 | - <type>String</type> | |
| 2333 | - <format/> | |
| 2334 | - <currency/> | |
| 2335 | - <decimal/> | |
| 2336 | - <group/> | |
| 2337 | - <nullif/> | |
| 2338 | - <trim_type>none</trim_type> | |
| 2339 | - <length>-1</length> | |
| 2340 | - <precision>-1</precision> | |
| 2341 | - </field> | |
| 2342 | - <field> | |
| 2343 | - <name>fcno3</name> | |
| 2344 | - <type>String</type> | |
| 2345 | - <format/> | |
| 2346 | - <currency/> | |
| 2347 | - <decimal/> | |
| 2348 | - <group/> | |
| 2349 | - <nullif/> | |
| 2350 | - <trim_type>none</trim_type> | |
| 2351 | - <length>-1</length> | |
| 2352 | - <precision>-1</precision> | |
| 2353 | - </field> | |
| 2354 | - <field> | |
| 2355 | - <name>fcno4</name> | |
| 2356 | - <type>String</type> | |
| 2357 | - <format/> | |
| 2358 | - <currency/> | |
| 2359 | - <decimal/> | |
| 2360 | - <group/> | |
| 2361 | - <nullif/> | |
| 2362 | - <trim_type>none</trim_type> | |
| 2363 | - <length>-1</length> | |
| 2364 | - <precision>-1</precision> | |
| 2365 | - </field> | |
| 2366 | - <field> | |
| 2367 | - <name>fcno5</name> | |
| 2368 | - <type>String</type> | |
| 2369 | - <format/> | |
| 2370 | - <currency/> | |
| 2371 | - <decimal/> | |
| 2372 | - <group/> | |
| 2373 | - <nullif/> | |
| 2374 | - <trim_type>none</trim_type> | |
| 2375 | - <length>-1</length> | |
| 2376 | - <precision>-1</precision> | |
| 2377 | - </field> | |
| 2378 | - <field> | |
| 2379 | - <name>fcno6</name> | |
| 2380 | - <type>String</type> | |
| 2381 | - <format/> | |
| 2382 | - <currency/> | |
| 2383 | - <decimal/> | |
| 2384 | - <group/> | |
| 2385 | - <nullif/> | |
| 2386 | - <trim_type>none</trim_type> | |
| 2387 | - <length>-1</length> | |
| 2388 | - <precision>-1</precision> | |
| 2389 | - </field> | |
| 2390 | - <field> | |
| 2391 | - <name>fcno7</name> | |
| 2392 | - <type>String</type> | |
| 2393 | - <format/> | |
| 2394 | - <currency/> | |
| 2395 | - <decimal/> | |
| 2396 | - <group/> | |
| 2397 | - <nullif/> | |
| 2398 | - <trim_type>none</trim_type> | |
| 2399 | - <length>-1</length> | |
| 2400 | - <precision>-1</precision> | |
| 2401 | - </field> | |
| 2402 | - <field> | |
| 2403 | - <name>fcno8</name> | |
| 2404 | - <type>String</type> | |
| 2405 | - <format/> | |
| 2406 | - <currency/> | |
| 2407 | - <decimal/> | |
| 2408 | - <group/> | |
| 2409 | - <nullif/> | |
| 2410 | - <trim_type>none</trim_type> | |
| 2411 | - <length>-1</length> | |
| 2412 | - <precision>-1</precision> | |
| 2413 | - </field> | |
| 2414 | - <field> | |
| 2415 | - <name>fcno9</name> | |
| 2416 | - <type>String</type> | |
| 2417 | - <format/> | |
| 2418 | - <currency/> | |
| 2419 | - <decimal/> | |
| 2420 | - <group/> | |
| 2421 | - <nullif/> | |
| 2422 | - <trim_type>none</trim_type> | |
| 2423 | - <length>-1</length> | |
| 2424 | - <precision>-1</precision> | |
| 2425 | - </field> | |
| 2426 | - <field> | |
| 2427 | - <name>fcno10</name> | |
| 2428 | - <type>String</type> | |
| 2429 | - <format/> | |
| 2430 | - <currency/> | |
| 2431 | - <decimal/> | |
| 2432 | - <group/> | |
| 2433 | - <nullif/> | |
| 2434 | - <trim_type>none</trim_type> | |
| 2435 | - <length>-1</length> | |
| 2436 | - <precision>-1</precision> | |
| 2437 | - </field> | |
| 2438 | - <field> | |
| 2439 | - <name>fcno11</name> | |
| 2440 | - <type>String</type> | |
| 2441 | - <format/> | |
| 2442 | - <currency/> | |
| 2443 | - <decimal/> | |
| 2444 | - <group/> | |
| 2445 | - <nullif/> | |
| 2446 | - <trim_type>none</trim_type> | |
| 2447 | - <length>-1</length> | |
| 2448 | - <precision>-1</precision> | |
| 2449 | - </field> | |
| 2450 | - <field> | |
| 2451 | - <name>fcno12</name> | |
| 2452 | - <type>String</type> | |
| 2453 | - <format/> | |
| 2454 | - <currency/> | |
| 2455 | - <decimal/> | |
| 2456 | - <group/> | |
| 2457 | - <nullif/> | |
| 2458 | - <trim_type>none</trim_type> | |
| 2459 | - <length>-1</length> | |
| 2460 | - <precision>-1</precision> | |
| 2461 | - </field> | |
| 2462 | - <field> | |
| 2463 | - <name>fcno13</name> | |
| 2464 | - <type>String</type> | |
| 2465 | - <format/> | |
| 2466 | - <currency/> | |
| 2467 | - <decimal/> | |
| 2468 | - <group/> | |
| 2469 | - <nullif/> | |
| 2470 | - <trim_type>none</trim_type> | |
| 2471 | - <length>-1</length> | |
| 2472 | - <precision>-1</precision> | |
| 2473 | - </field> | |
| 2474 | - <field> | |
| 2475 | - <name>fcno14</name> | |
| 2476 | - <type>String</type> | |
| 2477 | - <format/> | |
| 2478 | - <currency/> | |
| 2479 | - <decimal/> | |
| 2480 | - <group/> | |
| 2481 | - <nullif/> | |
| 2482 | - <trim_type>none</trim_type> | |
| 2483 | - <length>-1</length> | |
| 2484 | - <precision>-1</precision> | |
| 2485 | - </field> | |
| 2486 | - <field> | |
| 2487 | - <name>fcno15</name> | |
| 2488 | - <type>String</type> | |
| 2489 | - <format/> | |
| 2490 | - <currency/> | |
| 2491 | - <decimal/> | |
| 2492 | - <group/> | |
| 2493 | - <nullif/> | |
| 2494 | - <trim_type>none</trim_type> | |
| 2495 | - <length>-1</length> | |
| 2496 | - <precision>-1</precision> | |
| 2497 | - </field> | |
| 2498 | - <field> | |
| 2499 | - <name>fcno16</name> | |
| 2500 | - <type>String</type> | |
| 2501 | - <format/> | |
| 2502 | - <currency/> | |
| 2503 | - <decimal/> | |
| 2504 | - <group/> | |
| 2505 | - <nullif/> | |
| 2506 | - <trim_type>none</trim_type> | |
| 2507 | - <length>-1</length> | |
| 2508 | - <precision>-1</precision> | |
| 2509 | - </field> | |
| 2510 | - <field> | |
| 2511 | - <name>fcno17</name> | |
| 2512 | - <type>String</type> | |
| 2513 | - <format/> | |
| 2514 | - <currency/> | |
| 2515 | - <decimal/> | |
| 2516 | - <group/> | |
| 2517 | - <nullif/> | |
| 2518 | - <trim_type>none</trim_type> | |
| 2519 | - <length>-1</length> | |
| 2520 | - <precision>-1</precision> | |
| 2521 | - </field> | |
| 2522 | - <field> | |
| 2523 | - <name>fcno18</name> | |
| 2524 | - <type>String</type> | |
| 2525 | - <format/> | |
| 2526 | - <currency/> | |
| 2527 | - <decimal/> | |
| 2528 | - <group/> | |
| 2529 | - <nullif/> | |
| 2530 | - <trim_type>none</trim_type> | |
| 2531 | - <length>-1</length> | |
| 2532 | - <precision>-1</precision> | |
| 2533 | - </field> | |
| 2534 | - <field> | |
| 2535 | - <name>fcno19</name> | |
| 2536 | - <type>String</type> | |
| 2537 | - <format/> | |
| 2538 | - <currency/> | |
| 2539 | - <decimal/> | |
| 2540 | - <group/> | |
| 2541 | - <nullif/> | |
| 2542 | - <trim_type>none</trim_type> | |
| 2543 | - <length>-1</length> | |
| 2544 | - <precision>-1</precision> | |
| 2545 | - </field> | |
| 2546 | - <field> | |
| 2547 | - <name>fcno20</name> | |
| 2548 | - <type>String</type> | |
| 2549 | - <format/> | |
| 2550 | - <currency/> | |
| 2551 | - <decimal/> | |
| 2552 | - <group/> | |
| 2553 | - <nullif/> | |
| 2554 | - <trim_type>none</trim_type> | |
| 2555 | - <length>-1</length> | |
| 2556 | - <precision>-1</precision> | |
| 2557 | - </field> | |
| 2558 | - <field> | |
| 2559 | - <name>fcno21</name> | |
| 2560 | - <type>String</type> | |
| 2561 | - <format/> | |
| 2562 | - <currency/> | |
| 2563 | - <decimal/> | |
| 2564 | - <group/> | |
| 2565 | - <nullif/> | |
| 2566 | - <trim_type>none</trim_type> | |
| 2567 | - <length>-1</length> | |
| 2568 | - <precision>-1</precision> | |
| 2569 | - </field> | |
| 2570 | - <field> | |
| 2571 | - <name>fcno22</name> | |
| 2572 | - <type>String</type> | |
| 2573 | - <format/> | |
| 2574 | - <currency/> | |
| 2575 | - <decimal/> | |
| 2576 | - <group/> | |
| 2577 | - <nullif/> | |
| 2578 | - <trim_type>none</trim_type> | |
| 2579 | - <length>-1</length> | |
| 2580 | - <precision>-1</precision> | |
| 2581 | - </field> | |
| 2582 | - <field> | |
| 2583 | - <name>fcno23</name> | |
| 2584 | - <type>String</type> | |
| 2585 | - <format/> | |
| 2586 | - <currency/> | |
| 2587 | - <decimal/> | |
| 2588 | - <group/> | |
| 2589 | - <nullif/> | |
| 2590 | - <trim_type>none</trim_type> | |
| 2591 | - <length>-1</length> | |
| 2592 | - <precision>-1</precision> | |
| 2593 | - </field> | |
| 2594 | - <field> | |
| 2595 | - <name>fcno24</name> | |
| 2596 | - <type>String</type> | |
| 2597 | - <format/> | |
| 2598 | - <currency/> | |
| 2599 | - <decimal/> | |
| 2600 | - <group/> | |
| 2601 | - <nullif/> | |
| 2602 | - <trim_type>none</trim_type> | |
| 2603 | - <length>-1</length> | |
| 2604 | - <precision>-1</precision> | |
| 2605 | - </field> | |
| 2606 | - <field> | |
| 2607 | - <name>fcno25</name> | |
| 2608 | - <type>String</type> | |
| 2609 | - <format/> | |
| 2610 | - <currency/> | |
| 2611 | - <decimal/> | |
| 2612 | - <group/> | |
| 2613 | - <nullif/> | |
| 2614 | - <trim_type>none</trim_type> | |
| 2615 | - <length>-1</length> | |
| 2616 | - <precision>-1</precision> | |
| 2617 | - </field> | |
| 2618 | - <field> | |
| 2619 | - <name>fcno26</name> | |
| 2620 | - <type>String</type> | |
| 2621 | - <format/> | |
| 2622 | - <currency/> | |
| 2623 | - <decimal/> | |
| 2624 | - <group/> | |
| 2625 | - <nullif/> | |
| 2626 | - <trim_type>none</trim_type> | |
| 2627 | - <length>-1</length> | |
| 2628 | - <precision>-1</precision> | |
| 2629 | - </field> | |
| 2630 | - <field> | |
| 2631 | - <name>fcno27</name> | |
| 2632 | - <type>String</type> | |
| 2633 | - <format/> | |
| 2634 | - <currency/> | |
| 2635 | - <decimal/> | |
| 2636 | - <group/> | |
| 2637 | - <nullif/> | |
| 2638 | - <trim_type>none</trim_type> | |
| 2639 | - <length>-1</length> | |
| 2640 | - <precision>-1</precision> | |
| 2641 | - </field> | |
| 2642 | - <field> | |
| 2643 | - <name>fcno28</name> | |
| 2644 | - <type>String</type> | |
| 2645 | - <format/> | |
| 2646 | - <currency/> | |
| 2647 | - <decimal/> | |
| 2648 | - <group/> | |
| 2649 | - <nullif/> | |
| 2650 | - <trim_type>none</trim_type> | |
| 2651 | - <length>-1</length> | |
| 2652 | - <precision>-1</precision> | |
| 2653 | - </field> | |
| 2654 | - <field> | |
| 2655 | - <name>fcno29</name> | |
| 2656 | - <type>String</type> | |
| 2657 | - <format/> | |
| 2658 | - <currency/> | |
| 2659 | - <decimal/> | |
| 2660 | - <group/> | |
| 2661 | - <nullif/> | |
| 2662 | - <trim_type>none</trim_type> | |
| 2663 | - <length>-1</length> | |
| 2664 | - <precision>-1</precision> | |
| 2665 | - </field> | |
| 2666 | - <field> | |
| 2667 | - <name>fcno30</name> | |
| 2668 | - <type>String</type> | |
| 2669 | - <format/> | |
| 2670 | - <currency/> | |
| 2671 | - <decimal/> | |
| 2672 | - <group/> | |
| 2673 | - <nullif/> | |
| 2674 | - <trim_type>none</trim_type> | |
| 2675 | - <length>-1</length> | |
| 2676 | - <precision>-1</precision> | |
| 2677 | - </field> | |
| 2678 | - <field> | |
| 2679 | - <name>fcno31</name> | |
| 2680 | - <type>String</type> | |
| 2681 | - <format/> | |
| 2682 | - <currency/> | |
| 2683 | - <decimal/> | |
| 2684 | - <group/> | |
| 2685 | - <nullif/> | |
| 2686 | - <trim_type>none</trim_type> | |
| 2687 | - <length>-1</length> | |
| 2688 | - <precision>-1</precision> | |
| 2689 | - </field> | |
| 2690 | - <field> | |
| 2691 | - <name>fcno32</name> | |
| 2692 | - <type>String</type> | |
| 2693 | - <format/> | |
| 2694 | - <currency/> | |
| 2695 | - <decimal/> | |
| 2696 | - <group/> | |
| 2697 | - <nullif/> | |
| 2698 | - <trim_type>none</trim_type> | |
| 2699 | - <length>-1</length> | |
| 2700 | - <precision>-1</precision> | |
| 2701 | - </field> | |
| 2702 | - <field> | |
| 2703 | - <name>fcno33</name> | |
| 2704 | - <type>String</type> | |
| 2705 | - <format/> | |
| 2706 | - <currency/> | |
| 2707 | - <decimal/> | |
| 2708 | - <group/> | |
| 2709 | - <nullif/> | |
| 2710 | - <trim_type>none</trim_type> | |
| 2711 | - <length>-1</length> | |
| 2712 | - <precision>-1</precision> | |
| 2713 | - </field> | |
| 2714 | - <field> | |
| 2715 | - <name>fcno34</name> | |
| 2716 | - <type>String</type> | |
| 2717 | - <format/> | |
| 2718 | - <currency/> | |
| 2719 | - <decimal/> | |
| 2720 | - <group/> | |
| 2721 | - <nullif/> | |
| 2722 | - <trim_type>none</trim_type> | |
| 2723 | - <length>-1</length> | |
| 2724 | - <precision>-1</precision> | |
| 2725 | - </field> | |
| 2726 | - <field> | |
| 2727 | - <name>fcno35</name> | |
| 2728 | - <type>String</type> | |
| 2729 | - <format/> | |
| 2730 | - <currency/> | |
| 2731 | - <decimal/> | |
| 2732 | - <group/> | |
| 2733 | - <nullif/> | |
| 2734 | - <trim_type>none</trim_type> | |
| 2735 | - <length>-1</length> | |
| 2736 | - <precision>-1</precision> | |
| 2737 | - </field> | |
| 2738 | - <field> | |
| 2739 | - <name>fcno36</name> | |
| 2740 | - <type>String</type> | |
| 2741 | - <format/> | |
| 2742 | - <currency/> | |
| 2743 | - <decimal/> | |
| 2744 | - <group/> | |
| 2745 | - <nullif/> | |
| 2746 | - <trim_type>none</trim_type> | |
| 2747 | - <length>-1</length> | |
| 2748 | - <precision>-1</precision> | |
| 2749 | - </field> | |
| 2750 | - <field> | |
| 2751 | - <name>fcno37</name> | |
| 2752 | - <type>String</type> | |
| 2753 | - <format/> | |
| 2754 | - <currency/> | |
| 2755 | - <decimal/> | |
| 2756 | - <group/> | |
| 2757 | - <nullif/> | |
| 2758 | - <trim_type>none</trim_type> | |
| 2759 | - <length>-1</length> | |
| 2760 | - <precision>-1</precision> | |
| 2761 | - </field> | |
| 2762 | - <field> | |
| 2763 | - <name>fcno38</name> | |
| 2764 | - <type>String</type> | |
| 2765 | - <format/> | |
| 2766 | - <currency/> | |
| 2767 | - <decimal/> | |
| 2768 | - <group/> | |
| 2769 | - <nullif/> | |
| 2770 | - <trim_type>none</trim_type> | |
| 2771 | - <length>-1</length> | |
| 2772 | - <precision>-1</precision> | |
| 2773 | - </field> | |
| 2774 | - <field> | |
| 2775 | - <name>fcno39</name> | |
| 2776 | - <type>String</type> | |
| 2777 | - <format/> | |
| 2778 | - <currency/> | |
| 2779 | - <decimal/> | |
| 2780 | - <group/> | |
| 2781 | - <nullif/> | |
| 2782 | - <trim_type>none</trim_type> | |
| 2783 | - <length>-1</length> | |
| 2784 | - <precision>-1</precision> | |
| 2785 | - </field> | |
| 2786 | - <field> | |
| 2787 | - <name>fcno40</name> | |
| 2788 | - <type>String</type> | |
| 2789 | - <format/> | |
| 2790 | - <currency/> | |
| 2791 | - <decimal/> | |
| 2792 | - <group/> | |
| 2793 | - <nullif/> | |
| 2794 | - <trim_type>none</trim_type> | |
| 2795 | - <length>-1</length> | |
| 2796 | - <precision>-1</precision> | |
| 2797 | - </field> | |
| 2798 | - <field> | |
| 2799 | - <name>fcno41</name> | |
| 2800 | - <type>String</type> | |
| 2801 | - <format/> | |
| 2802 | - <currency/> | |
| 2803 | - <decimal/> | |
| 2804 | - <group/> | |
| 2805 | - <nullif/> | |
| 2806 | - <trim_type>none</trim_type> | |
| 2807 | - <length>-1</length> | |
| 2808 | - <precision>-1</precision> | |
| 2809 | - </field> | |
| 2810 | - <field> | |
| 2811 | - <name>fcno42</name> | |
| 2812 | - <type>String</type> | |
| 2813 | - <format/> | |
| 2814 | - <currency/> | |
| 2815 | - <decimal/> | |
| 2816 | - <group/> | |
| 2817 | - <nullif/> | |
| 2818 | - <trim_type>none</trim_type> | |
| 2819 | - <length>-1</length> | |
| 2820 | - <precision>-1</precision> | |
| 2821 | - </field> | |
| 2822 | - <field> | |
| 2823 | - <name>fcno43</name> | |
| 2824 | - <type>String</type> | |
| 2825 | - <format/> | |
| 2826 | - <currency/> | |
| 2827 | - <decimal/> | |
| 2828 | - <group/> | |
| 2829 | - <nullif/> | |
| 2830 | - <trim_type>none</trim_type> | |
| 2831 | - <length>-1</length> | |
| 2832 | - <precision>-1</precision> | |
| 2833 | - </field> | |
| 2834 | - <field> | |
| 2835 | - <name>fcno44</name> | |
| 2836 | - <type>String</type> | |
| 2837 | - <format/> | |
| 2838 | - <currency/> | |
| 2839 | - <decimal/> | |
| 2840 | - <group/> | |
| 2841 | - <nullif/> | |
| 2842 | - <trim_type>none</trim_type> | |
| 2843 | - <length>-1</length> | |
| 2844 | - <precision>-1</precision> | |
| 2845 | - </field> | |
| 2846 | - <field> | |
| 2847 | - <name>fcno45</name> | |
| 2848 | - <type>String</type> | |
| 2849 | - <format/> | |
| 2850 | - <currency/> | |
| 2851 | - <decimal/> | |
| 2852 | - <group/> | |
| 2853 | - <nullif/> | |
| 2854 | - <trim_type>none</trim_type> | |
| 2855 | - <length>-1</length> | |
| 2856 | - <precision>-1</precision> | |
| 2857 | - </field> | |
| 2858 | - <field> | |
| 2859 | - <name>fcno46</name> | |
| 2860 | - <type>String</type> | |
| 2861 | - <format/> | |
| 2862 | - <currency/> | |
| 2863 | - <decimal/> | |
| 2864 | - <group/> | |
| 2865 | - <nullif/> | |
| 2866 | - <trim_type>none</trim_type> | |
| 2867 | - <length>-1</length> | |
| 2868 | - <precision>-1</precision> | |
| 2869 | - </field> | |
| 2870 | - <field> | |
| 2871 | - <name>fcno47</name> | |
| 2872 | - <type>String</type> | |
| 2873 | - <format/> | |
| 2874 | - <currency/> | |
| 2875 | - <decimal/> | |
| 2876 | - <group/> | |
| 2877 | - <nullif/> | |
| 2878 | - <trim_type>none</trim_type> | |
| 2879 | - <length>-1</length> | |
| 2880 | - <precision>-1</precision> | |
| 2881 | - </field> | |
| 2882 | - <field> | |
| 2883 | - <name>fcno48</name> | |
| 2884 | - <type>String</type> | |
| 2885 | - <format/> | |
| 2886 | - <currency/> | |
| 2887 | - <decimal/> | |
| 2888 | - <group/> | |
| 2889 | - <nullif/> | |
| 2890 | - <trim_type>none</trim_type> | |
| 2891 | - <length>-1</length> | |
| 2892 | - <precision>-1</precision> | |
| 2893 | - </field> | |
| 2894 | - <field> | |
| 2895 | - <name>fcno49</name> | |
| 2896 | - <type>String</type> | |
| 2897 | - <format/> | |
| 2898 | - <currency/> | |
| 2899 | - <decimal/> | |
| 2900 | - <group/> | |
| 2901 | - <nullif/> | |
| 2902 | - <trim_type>none</trim_type> | |
| 2903 | - <length>-1</length> | |
| 2904 | - <precision>-1</precision> | |
| 2905 | - </field> | |
| 2906 | - <field> | |
| 2907 | - <name>fcno50</name> | |
| 2908 | - <type>String</type> | |
| 2909 | - <format/> | |
| 2910 | - <currency/> | |
| 2911 | - <decimal/> | |
| 2912 | - <group/> | |
| 2913 | - <nullif/> | |
| 2914 | - <trim_type>none</trim_type> | |
| 2915 | - <length>-1</length> | |
| 2916 | - <precision>-1</precision> | |
| 2917 | - </field> | |
| 2918 | - <field> | |
| 2919 | - <name>fcno51</name> | |
| 2920 | - <type>String</type> | |
| 2921 | - <format/> | |
| 2922 | - <currency/> | |
| 2923 | - <decimal/> | |
| 2924 | - <group/> | |
| 2925 | - <nullif/> | |
| 2926 | - <trim_type>none</trim_type> | |
| 2927 | - <length>-1</length> | |
| 2928 | - <precision>-1</precision> | |
| 2929 | - </field> | |
| 2930 | - <field> | |
| 2931 | - <name>fcno52</name> | |
| 2932 | - <type>String</type> | |
| 2933 | - <format/> | |
| 2934 | - <currency/> | |
| 2935 | - <decimal/> | |
| 2936 | - <group/> | |
| 2937 | - <nullif/> | |
| 2938 | - <trim_type>none</trim_type> | |
| 2939 | - <length>-1</length> | |
| 2940 | - <precision>-1</precision> | |
| 2941 | - </field> | |
| 2942 | - <field> | |
| 2943 | - <name>fcno53</name> | |
| 2944 | - <type>String</type> | |
| 2945 | - <format/> | |
| 2946 | - <currency/> | |
| 2947 | - <decimal/> | |
| 2948 | - <group/> | |
| 2949 | - <nullif/> | |
| 2950 | - <trim_type>none</trim_type> | |
| 2951 | - <length>-1</length> | |
| 2952 | - <precision>-1</precision> | |
| 2953 | - </field> | |
| 2954 | - <field> | |
| 2955 | - <name>fcno54</name> | |
| 2956 | - <type>String</type> | |
| 2957 | - <format/> | |
| 2958 | - <currency/> | |
| 2959 | - <decimal/> | |
| 2960 | - <group/> | |
| 2961 | - <nullif/> | |
| 2962 | - <trim_type>none</trim_type> | |
| 2963 | - <length>-1</length> | |
| 2964 | - <precision>-1</precision> | |
| 2965 | - </field> | |
| 2966 | - <field> | |
| 2967 | - <name>fcno55</name> | |
| 2968 | - <type>String</type> | |
| 2969 | - <format/> | |
| 2970 | - <currency/> | |
| 2971 | - <decimal/> | |
| 2972 | - <group/> | |
| 2973 | - <nullif/> | |
| 2974 | - <trim_type>none</trim_type> | |
| 2975 | - <length>-1</length> | |
| 2976 | - <precision>-1</precision> | |
| 2977 | - </field> | |
| 2978 | - <field> | |
| 2979 | - <name>fcno56</name> | |
| 2980 | - <type>String</type> | |
| 2981 | - <format/> | |
| 2982 | - <currency/> | |
| 2983 | - <decimal/> | |
| 2984 | - <group/> | |
| 2985 | - <nullif/> | |
| 2986 | - <trim_type>none</trim_type> | |
| 2987 | - <length>-1</length> | |
| 2988 | - <precision>-1</precision> | |
| 2989 | - </field> | |
| 2990 | - <field> | |
| 2991 | - <name>fcno57</name> | |
| 2992 | - <type>String</type> | |
| 2993 | - <format/> | |
| 2994 | - <currency/> | |
| 2995 | - <decimal/> | |
| 2996 | - <group/> | |
| 2997 | - <nullif/> | |
| 2998 | - <trim_type>none</trim_type> | |
| 2999 | - <length>-1</length> | |
| 3000 | - <precision>-1</precision> | |
| 3001 | - </field> | |
| 3002 | - <field> | |
| 3003 | - <name>fcno58</name> | |
| 3004 | - <type>String</type> | |
| 3005 | - <format/> | |
| 3006 | - <currency/> | |
| 3007 | - <decimal/> | |
| 3008 | - <group/> | |
| 3009 | - <nullif/> | |
| 3010 | - <trim_type>none</trim_type> | |
| 3011 | - <length>-1</length> | |
| 3012 | - <precision>-1</precision> | |
| 3013 | - </field> | |
| 3014 | - <field> | |
| 3015 | - <name>fcno59</name> | |
| 3016 | - <type>String</type> | |
| 3017 | - <format/> | |
| 3018 | - <currency/> | |
| 3019 | - <decimal/> | |
| 3020 | - <group/> | |
| 3021 | - <nullif/> | |
| 3022 | - <trim_type>none</trim_type> | |
| 3023 | - <length>-1</length> | |
| 3024 | - <precision>-1</precision> | |
| 3025 | - </field> | |
| 3026 | - <field> | |
| 3027 | - <name>fcno60</name> | |
| 3028 | - <type>String</type> | |
| 3029 | - <format/> | |
| 3030 | - <currency/> | |
| 3031 | - <decimal/> | |
| 3032 | - <group/> | |
| 3033 | - <nullif/> | |
| 3034 | - <trim_type>none</trim_type> | |
| 3035 | - <length>-1</length> | |
| 3036 | - <precision>-1</precision> | |
| 3037 | - </field> | |
| 3038 | - <field> | |
| 3039 | - <name>fcno61</name> | |
| 3040 | - <type>String</type> | |
| 3041 | - <format/> | |
| 3042 | - <currency/> | |
| 3043 | - <decimal/> | |
| 3044 | - <group/> | |
| 3045 | - <nullif/> | |
| 3046 | - <trim_type>none</trim_type> | |
| 3047 | - <length>-1</length> | |
| 3048 | - <precision>-1</precision> | |
| 3049 | - </field> | |
| 3050 | - <field> | |
| 3051 | - <name>fcno62</name> | |
| 3052 | - <type>String</type> | |
| 3053 | - <format/> | |
| 3054 | - <currency/> | |
| 3055 | - <decimal/> | |
| 3056 | - <group/> | |
| 3057 | - <nullif/> | |
| 3058 | - <trim_type>none</trim_type> | |
| 3059 | - <length>-1</length> | |
| 3060 | - <precision>-1</precision> | |
| 3061 | - </field> | |
| 3062 | - <field> | |
| 3063 | - <name>fcno63</name> | |
| 3064 | - <type>String</type> | |
| 3065 | - <format/> | |
| 3066 | - <currency/> | |
| 3067 | - <decimal/> | |
| 3068 | - <group/> | |
| 3069 | - <nullif/> | |
| 3070 | - <trim_type>none</trim_type> | |
| 3071 | - <length>-1</length> | |
| 3072 | - <precision>-1</precision> | |
| 3073 | - </field> | |
| 3074 | - <field> | |
| 3075 | - <name>fcno64</name> | |
| 3076 | - <type>String</type> | |
| 3077 | - <format/> | |
| 3078 | - <currency/> | |
| 3079 | - <decimal/> | |
| 3080 | - <group/> | |
| 3081 | - <nullif/> | |
| 3082 | - <trim_type>none</trim_type> | |
| 3083 | - <length>-1</length> | |
| 3084 | - <precision>-1</precision> | |
| 3085 | - </field> | |
| 3086 | - <field> | |
| 3087 | - <name>fcno65</name> | |
| 3088 | - <type>String</type> | |
| 3089 | - <format/> | |
| 3090 | - <currency/> | |
| 3091 | - <decimal/> | |
| 3092 | - <group/> | |
| 3093 | - <nullif/> | |
| 3094 | - <trim_type>none</trim_type> | |
| 3095 | - <length>-1</length> | |
| 3096 | - <precision>-1</precision> | |
| 3097 | - </field> | |
| 3098 | - <field> | |
| 3099 | - <name>fcno66</name> | |
| 3100 | - <type>String</type> | |
| 3101 | - <format/> | |
| 3102 | - <currency/> | |
| 3103 | - <decimal/> | |
| 3104 | - <group/> | |
| 3105 | - <nullif/> | |
| 3106 | - <trim_type>none</trim_type> | |
| 3107 | - <length>-1</length> | |
| 3108 | - <precision>-1</precision> | |
| 3109 | - </field> | |
| 3110 | - <field> | |
| 3111 | - <name>fcno67</name> | |
| 3112 | - <type>String</type> | |
| 3113 | - <format/> | |
| 3114 | - <currency/> | |
| 3115 | - <decimal/> | |
| 3116 | - <group/> | |
| 3117 | - <nullif/> | |
| 3118 | - <trim_type>none</trim_type> | |
| 3119 | - <length>-1</length> | |
| 3120 | - <precision>-1</precision> | |
| 3121 | - </field> | |
| 3122 | - <field> | |
| 3123 | - <name>fcno68</name> | |
| 3124 | - <type>String</type> | |
| 3125 | - <format/> | |
| 3126 | - <currency/> | |
| 3127 | - <decimal/> | |
| 3128 | - <group/> | |
| 3129 | - <nullif/> | |
| 3130 | - <trim_type>none</trim_type> | |
| 3131 | - <length>-1</length> | |
| 3132 | - <precision>-1</precision> | |
| 3133 | - </field> | |
| 3134 | - <field> | |
| 3135 | - <name>fcno69</name> | |
| 3136 | - <type>String</type> | |
| 3137 | - <format/> | |
| 3138 | - <currency/> | |
| 3139 | - <decimal/> | |
| 3140 | - <group/> | |
| 3141 | - <nullif/> | |
| 3142 | - <trim_type>none</trim_type> | |
| 3143 | - <length>-1</length> | |
| 3144 | - <precision>-1</precision> | |
| 3145 | - </field> | |
| 3146 | - <field> | |
| 3147 | - <name>fcno70</name> | |
| 3148 | - <type>String</type> | |
| 3149 | - <format/> | |
| 3150 | - <currency/> | |
| 3151 | - <decimal/> | |
| 3152 | - <group/> | |
| 3153 | - <nullif/> | |
| 3154 | - <trim_type>none</trim_type> | |
| 3155 | - <length>-1</length> | |
| 3156 | - <precision>-1</precision> | |
| 3157 | - </field> | |
| 3158 | - </fields> | |
| 3159 | - <cluster_schema/> | |
| 3160 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 3161 | - <xloc>880</xloc> | |
| 3162 | - <yloc>365</yloc> | |
| 3163 | - <draw>Y</draw> | |
| 3164 | - </GUI> | |
| 3165 | - </step> | |
| 3166 | - | |
| 3167 | - <step> | |
| 3168 | - <name>查找终点站名称</name> | |
| 3169 | - <type>DBLookup</type> | |
| 3170 | - <description/> | |
| 3171 | - <distribute>Y</distribute> | |
| 3172 | - <custom_distribution/> | |
| 3173 | - <copies>1</copies> | |
| 3174 | - <partitioning> | |
| 3175 | - <method>none</method> | |
| 3176 | - <schema_name/> | |
| 3177 | - </partitioning> | |
| 3178 | - <connection>bus_control_variable</connection> | |
| 3179 | - <cache>Y</cache> | |
| 3180 | - <cache_load_all>Y</cache_load_all> | |
| 3181 | - <cache_size>0</cache_size> | |
| 3182 | - <lookup> | |
| 3183 | - <schema/> | |
| 3184 | - <table>bsth_c_stationroute</table> | |
| 3185 | - <orderby/> | |
| 3186 | - <fail_on_multiple>N</fail_on_multiple> | |
| 3187 | - <eat_row_on_failure>N</eat_row_on_failure> | |
| 3188 | - <key> | |
| 3189 | - <name>xl</name> | |
| 3190 | - <field>line</field> | |
| 3191 | - <condition>=</condition> | |
| 3192 | - <name2/> | |
| 3193 | - </key> | |
| 3194 | - <key> | |
| 3195 | - <name>xl_dir</name> | |
| 3196 | - <field>directions</field> | |
| 3197 | - <condition>=</condition> | |
| 3198 | - <name2/> | |
| 3199 | - </key> | |
| 3200 | - <key> | |
| 3201 | - <name>endZdType</name> | |
| 3202 | - <field>station_mark</field> | |
| 3203 | - <condition>=</condition> | |
| 3204 | - <name2/> | |
| 3205 | - </key> | |
| 3206 | - <value> | |
| 3207 | - <name>station_name</name> | |
| 3208 | - <rename>zdzName</rename> | |
| 3209 | - <default/> | |
| 3210 | - <type>String</type> | |
| 3211 | - </value> | |
| 3212 | - </lookup> | |
| 3213 | - <cluster_schema/> | |
| 3214 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 3215 | - <xloc>688</xloc> | |
| 3216 | - <yloc>86</yloc> | |
| 3217 | - <draw>Y</draw> | |
| 3218 | - </GUI> | |
| 3219 | - </step> | |
| 3220 | - | |
| 3221 | - <step> | |
| 3222 | - <name>查找起点站名称</name> | |
| 3223 | - <type>DBLookup</type> | |
| 3224 | - <description/> | |
| 3225 | - <distribute>Y</distribute> | |
| 3226 | - <custom_distribution/> | |
| 3227 | - <copies>1</copies> | |
| 3228 | - <partitioning> | |
| 3229 | - <method>none</method> | |
| 3230 | - <schema_name/> | |
| 3231 | - </partitioning> | |
| 3232 | - <connection>bus_control_variable</connection> | |
| 3233 | - <cache>Y</cache> | |
| 3234 | - <cache_load_all>Y</cache_load_all> | |
| 3235 | - <cache_size>0</cache_size> | |
| 3236 | - <lookup> | |
| 3237 | - <schema/> | |
| 3238 | - <table>bsth_c_stationroute</table> | |
| 3239 | - <orderby/> | |
| 3240 | - <fail_on_multiple>N</fail_on_multiple> | |
| 3241 | - <eat_row_on_failure>N</eat_row_on_failure> | |
| 3242 | - <key> | |
| 3243 | - <name>xl</name> | |
| 3244 | - <field>line</field> | |
| 3245 | - <condition>=</condition> | |
| 3246 | - <name2/> | |
| 3247 | - </key> | |
| 3248 | - <key> | |
| 3249 | - <name>xl_dir</name> | |
| 3250 | - <field>directions</field> | |
| 3251 | - <condition>=</condition> | |
| 3252 | - <name2/> | |
| 3253 | - </key> | |
| 3254 | - <key> | |
| 3255 | - <name>startZdType</name> | |
| 3256 | - <field>station_mark</field> | |
| 3257 | - <condition>=</condition> | |
| 3258 | - <name2/> | |
| 3259 | - </key> | |
| 3260 | - <value> | |
| 3261 | - <name>station_name</name> | |
| 3262 | - <rename>qdzName</rename> | |
| 3263 | - <default/> | |
| 3264 | - <type>String</type> | |
| 3265 | - </value> | |
| 3266 | - </lookup> | |
| 3267 | - <cluster_schema/> | |
| 3268 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 3269 | - <xloc>553</xloc> | |
| 3270 | - <yloc>86</yloc> | |
| 3271 | - <draw>Y</draw> | |
| 3272 | - </GUI> | |
| 3273 | - </step> | |
| 3274 | - | |
| 3275 | - <step> | |
| 3276 | - <name>正常班次站点查询用数据</name> | |
| 3277 | - <type>ScriptValueMod</type> | |
| 3278 | - <description/> | |
| 3279 | - <distribute>Y</distribute> | |
| 3280 | - <custom_distribution/> | |
| 3281 | - <copies>1</copies> | |
| 3282 | - <partitioning> | |
| 3283 | - <method>none</method> | |
| 3284 | - <schema_name/> | |
| 3285 | - </partitioning> | |
| 3286 | - <compatible>N</compatible> | |
| 3287 | - <optimizationLevel>9</optimizationLevel> | |
| 3288 | - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 3289 | - <jsScript_name>Script 1</jsScript_name> | |
| 3290 | - <jsScript_script>//Script here

var startZdType = 'B'; // 起点站站点类型标识别
var endZdType = 'E'; // 终点站站点类型标识</jsScript_script> | |
| 3291 | - </jsScript> </jsScripts> <fields> <field> <name>startZdType</name> | |
| 3292 | - <rename>startZdType</rename> | |
| 3293 | - <type>String</type> | |
| 3294 | - <length>-1</length> | |
| 3295 | - <precision>-1</precision> | |
| 3296 | - <replace>N</replace> | |
| 3297 | - </field> <field> <name>endZdType</name> | |
| 3298 | - <rename>endZdType</rename> | |
| 3299 | - <type>String</type> | |
| 3300 | - <length>-1</length> | |
| 3301 | - <precision>-1</precision> | |
| 3302 | - <replace>N</replace> | |
| 3303 | - </field> </fields> <cluster_schema/> | |
| 3304 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 3305 | - <xloc>391</xloc> | |
| 3306 | - <yloc>87</yloc> | |
| 3307 | - <draw>Y</draw> | |
| 3308 | - </GUI> | |
| 3309 | - </step> | |
| 3310 | - | |
| 3311 | - <step> | |
| 3312 | - <name>获取变量</name> | |
| 3313 | - <type>GetVariable</type> | |
| 3314 | - <description/> | |
| 3315 | - <distribute>Y</distribute> | |
| 3316 | - <custom_distribution/> | |
| 3317 | - <copies>1</copies> | |
| 3318 | - <partitioning> | |
| 3319 | - <method>none</method> | |
| 3320 | - <schema_name/> | |
| 3321 | - </partitioning> | |
| 3322 | - <fields> | |
| 3323 | - <field> | |
| 3324 | - <name>xlid_</name> | |
| 3325 | - <variable>${xlid}</variable> | |
| 3326 | - <type>Integer</type> | |
| 3327 | - <format/> | |
| 3328 | - <currency/> | |
| 3329 | - <decimal/> | |
| 3330 | - <group/> | |
| 3331 | - <length>-1</length> | |
| 3332 | - <precision>-1</precision> | |
| 3333 | - <trim_type>none</trim_type> | |
| 3334 | - </field> | |
| 3335 | - <field> | |
| 3336 | - <name>ttid_</name> | |
| 3337 | - <variable>${ttid}</variable> | |
| 3338 | - <type>Number</type> | |
| 3339 | - <format/> | |
| 3340 | - <currency/> | |
| 3341 | - <decimal/> | |
| 3342 | - <group/> | |
| 3343 | - <length>-1</length> | |
| 3344 | - <precision>-1</precision> | |
| 3345 | - <trim_type>none</trim_type> | |
| 3346 | - </field> | |
| 3347 | - </fields> | |
| 3348 | - <cluster_schema/> | |
| 3349 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 3350 | - <xloc>45</xloc> | |
| 3351 | - <yloc>189</yloc> | |
| 3352 | - <draw>Y</draw> | |
| 3353 | - </GUI> | |
| 3354 | - </step> | |
| 3355 | - | |
| 3356 | - <step> | |
| 3357 | - <name>表输入</name> | |
| 3358 | - <type>TableInput</type> | |
| 3359 | - <description/> | |
| 3360 | - <distribute>Y</distribute> | |
| 3361 | - <custom_distribution/> | |
| 3362 | - <copies>1</copies> | |
| 3363 | - <partitioning> | |
| 3364 | - <method>none</method> | |
| 3365 | - <schema_name/> | |
| 3366 | - </partitioning> | |
| 3367 | - <connection>bus_control_variable</connection> | |
| 3368 | - <sql>select 
t.id as id
, g.lp_name as lp
, g.xl as xl
, qdz
, zdz
, tcc
, fcsj
, jhlc
, bc_type 
, bcs
, fcno
, xl_dir
, isfb
from bsth_c_s_ttinfo_detail t left join 
bsth_c_s_gbi g on t.lp = g.id 
where 
g.xl = ? and
t.ttinfo = ? 
order by t.bcs asc</sql> | |
| 3369 | - <limit>0</limit> | |
| 3370 | - <lookup>获取变量</lookup> | |
| 3371 | - <execute_each_row>N</execute_each_row> | |
| 3372 | - <variables_active>Y</variables_active> | |
| 3373 | - <lazy_conversion_active>N</lazy_conversion_active> | |
| 3374 | - <cluster_schema/> | |
| 3375 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 3376 | - <xloc>130</xloc> | |
| 3377 | - <yloc>85</yloc> | |
| 3378 | - <draw>Y</draw> | |
| 3379 | - </GUI> | |
| 3380 | - </step> | |
| 3381 | - | |
| 3382 | - <step> | |
| 3383 | - <name>计算发车站名</name> | |
| 3384 | - <type>ScriptValueMod</type> | |
| 3385 | - <description/> | |
| 3386 | - <distribute>Y</distribute> | |
| 3387 | - <custom_distribution/> | |
| 3388 | - <copies>1</copies> | |
| 3389 | - <partitioning> | |
| 3390 | - <method>none</method> | |
| 3391 | - <schema_name/> | |
| 3392 | - </partitioning> | |
| 3393 | - <compatible>N</compatible> | |
| 3394 | - <optimizationLevel>9</optimizationLevel> | |
| 3395 | - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 3396 | - <jsScript_name>Script 1</jsScript_name> | |
| 3397 | - <jsScript_script>//Script here

var fczdName = null; // 发车站点名字
if (bc_type == "in") {
 fczdName = "进场";
} else if (bc_type == "out") {
 fczdName = "出场";
} else {
 fczdName = qdzName;
}</jsScript_script> | |
| 3398 | - </jsScript> </jsScripts> <fields> <field> <name>fczdName</name> | |
| 3399 | - <rename>fczdName</rename> | |
| 3400 | - <type>String</type> | |
| 3401 | - <length>-1</length> | |
| 3402 | - <precision>-1</precision> | |
| 3403 | - <replace>N</replace> | |
| 3404 | - </field> </fields> <cluster_schema/> | |
| 3405 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 3406 | - <xloc>550</xloc> | |
| 3407 | - <yloc>276</yloc> | |
| 3408 | - <draw>Y</draw> | |
| 3409 | - </GUI> | |
| 3410 | - </step> | |
| 3411 | - | |
| 3412 | - <step> | |
| 3413 | - <name>过滤记录</name> | |
| 3414 | - <type>FilterRows</type> | |
| 3415 | - <description/> | |
| 3416 | - <distribute>Y</distribute> | |
| 3417 | - <custom_distribution/> | |
| 3418 | - <copies>1</copies> | |
| 3419 | - <partitioning> | |
| 3420 | - <method>none</method> | |
| 3421 | - <schema_name/> | |
| 3422 | - </partitioning> | |
| 3423 | -<send_true_to>正常班次站点查询用数据</send_true_to> | |
| 3424 | -<send_false_to>进场出场班次查询用的数据</send_false_to> | |
| 3425 | - <compare> | |
| 3426 | -<condition> | |
| 3427 | - <negated>N</negated> | |
| 3428 | - <leftvalue>bc_type</leftvalue> | |
| 3429 | - <function>=</function> | |
| 3430 | - <rightvalue/> | |
| 3431 | - <value><name>constant</name><type>String</type><text>normal</text><length>-1</length><precision>-1</precision><isnull>N</isnull><mask/></value> </condition> | |
| 3432 | - </compare> | |
| 3433 | - <cluster_schema/> | |
| 3434 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 3435 | - <xloc>248</xloc> | |
| 3436 | - <yloc>87</yloc> | |
| 3437 | - <draw>Y</draw> | |
| 3438 | - </GUI> | |
| 3439 | - </step> | |
| 3440 | - | |
| 3441 | - <step> | |
| 3442 | - <name>进场出场班次查询用的数据</name> | |
| 3443 | - <type>ScriptValueMod</type> | |
| 3444 | - <description/> | |
| 3445 | - <distribute>Y</distribute> | |
| 3446 | - <custom_distribution/> | |
| 3447 | - <copies>1</copies> | |
| 3448 | - <partitioning> | |
| 3449 | - <method>none</method> | |
| 3450 | - <schema_name/> | |
| 3451 | - </partitioning> | |
| 3452 | - <compatible>N</compatible> | |
| 3453 | - <optimizationLevel>9</optimizationLevel> | |
| 3454 | - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 3455 | - <jsScript_name>Script 1</jsScript_name> | |
| 3456 | - <jsScript_script>//Script here

var qdzName = null; // 起点站名字
var zdzName = null; // 终点站名字</jsScript_script> | |
| 3457 | - </jsScript> </jsScripts> <fields> <field> <name>qdzName</name> | |
| 3458 | - <rename>qdzName</rename> | |
| 3459 | - <type>String</type> | |
| 3460 | - <length>-1</length> | |
| 3461 | - <precision>-1</precision> | |
| 3462 | - <replace>N</replace> | |
| 3463 | - </field> <field> <name>zdzName</name> | |
| 3464 | - <rename>zdzName</rename> | |
| 3465 | - <type>String</type> | |
| 3466 | - <length>-1</length> | |
| 3467 | - <precision>-1</precision> | |
| 3468 | - <replace>N</replace> | |
| 3469 | - </field> </fields> <cluster_schema/> | |
| 3470 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 3471 | - <xloc>250</xloc> | |
| 3472 | - <yloc>188</yloc> | |
| 3473 | - <draw>Y</draw> | |
| 3474 | - </GUI> | |
| 3475 | - </step> | |
| 3476 | - | |
| 3477 | - <step_error_handling> | |
| 3478 | - </step_error_handling> | |
| 3479 | - <slave-step-copy-partition-distribution> | |
| 3480 | -</slave-step-copy-partition-distribution> | |
| 3481 | - <slave_transformation>N</slave_transformation> | |
| 3482 | - | |
| 3483 | -</transformation> | |
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | +<transformation> | |
| 3 | + <info> | |
| 4 | + <name>ttinfodetailoutputforedit</name> | |
| 5 | + <description/> | |
| 6 | + <extended_description/> | |
| 7 | + <trans_version/> | |
| 8 | + <trans_type>Normal</trans_type> | |
| 9 | + <trans_status>0</trans_status> | |
| 10 | + <directory>/</directory> | |
| 11 | + <parameters> | |
| 12 | + <parameter> | |
| 13 | + <name>tempfilepath</name> | |
| 14 | + <default_value>/Users/xu/resource/project_code/runtime_temp/bsth_control_u_d_files/temp/test</default_value> | |
| 15 | + <description>默认输出的文件路径名</description> | |
| 16 | + </parameter> | |
| 17 | + <parameter> | |
| 18 | + <name>ttid</name> | |
| 19 | + <default_value>79</default_value> | |
| 20 | + <description>时刻表id</description> | |
| 21 | + </parameter> | |
| 22 | + <parameter> | |
| 23 | + <name>xlid</name> | |
| 24 | + <default_value>63020</default_value> | |
| 25 | + <description>线路id</description> | |
| 26 | + </parameter> | |
| 27 | + </parameters> | |
| 28 | + <log> | |
| 29 | +<trans-log-table><connection/> | |
| 30 | +<schema/> | |
| 31 | +<table/> | |
| 32 | +<size_limit_lines/> | |
| 33 | +<interval/> | |
| 34 | +<timeout_days/> | |
| 35 | +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STATUS</id><enabled>Y</enabled><name>STATUS</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name><subject/></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name><subject/></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name><subject/></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name><subject/></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name><subject/></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name><subject/></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>STARTDATE</id><enabled>Y</enabled><name>STARTDATE</name></field><field><id>ENDDATE</id><enabled>Y</enabled><name>ENDDATE</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>DEPDATE</id><enabled>Y</enabled><name>DEPDATE</name></field><field><id>REPLAYDATE</id><enabled>Y</enabled><name>REPLAYDATE</name></field><field><id>LOG_FIELD</id><enabled>Y</enabled><name>LOG_FIELD</name></field><field><id>EXECUTING_SERVER</id><enabled>N</enabled><name>EXECUTING_SERVER</name></field><field><id>EXECUTING_USER</id><enabled>N</enabled><name>EXECUTING_USER</name></field><field><id>CLIENT</id><enabled>N</enabled><name>CLIENT</name></field></trans-log-table> | |
| 36 | +<perf-log-table><connection/> | |
| 37 | +<schema/> | |
| 38 | +<table/> | |
| 39 | +<interval/> | |
| 40 | +<timeout_days/> | |
| 41 | +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>SEQ_NR</id><enabled>Y</enabled><name>SEQ_NR</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>INPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>INPUT_BUFFER_ROWS</name></field><field><id>OUTPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>OUTPUT_BUFFER_ROWS</name></field></perf-log-table> | |
| 42 | +<channel-log-table><connection/> | |
| 43 | +<schema/> | |
| 44 | +<table/> | |
| 45 | +<timeout_days/> | |
| 46 | +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>LOGGING_OBJECT_TYPE</id><enabled>Y</enabled><name>LOGGING_OBJECT_TYPE</name></field><field><id>OBJECT_NAME</id><enabled>Y</enabled><name>OBJECT_NAME</name></field><field><id>OBJECT_COPY</id><enabled>Y</enabled><name>OBJECT_COPY</name></field><field><id>REPOSITORY_DIRECTORY</id><enabled>Y</enabled><name>REPOSITORY_DIRECTORY</name></field><field><id>FILENAME</id><enabled>Y</enabled><name>FILENAME</name></field><field><id>OBJECT_ID</id><enabled>Y</enabled><name>OBJECT_ID</name></field><field><id>OBJECT_REVISION</id><enabled>Y</enabled><name>OBJECT_REVISION</name></field><field><id>PARENT_CHANNEL_ID</id><enabled>Y</enabled><name>PARENT_CHANNEL_ID</name></field><field><id>ROOT_CHANNEL_ID</id><enabled>Y</enabled><name>ROOT_CHANNEL_ID</name></field></channel-log-table> | |
| 47 | +<step-log-table><connection/> | |
| 48 | +<schema/> | |
| 49 | +<table/> | |
| 50 | +<timeout_days/> | |
| 51 | +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>LOG_FIELD</id><enabled>N</enabled><name>LOG_FIELD</name></field></step-log-table> | |
| 52 | +<metrics-log-table><connection/> | |
| 53 | +<schema/> | |
| 54 | +<table/> | |
| 55 | +<timeout_days/> | |
| 56 | +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>METRICS_DATE</id><enabled>Y</enabled><name>METRICS_DATE</name></field><field><id>METRICS_CODE</id><enabled>Y</enabled><name>METRICS_CODE</name></field><field><id>METRICS_DESCRIPTION</id><enabled>Y</enabled><name>METRICS_DESCRIPTION</name></field><field><id>METRICS_SUBJECT</id><enabled>Y</enabled><name>METRICS_SUBJECT</name></field><field><id>METRICS_TYPE</id><enabled>Y</enabled><name>METRICS_TYPE</name></field><field><id>METRICS_VALUE</id><enabled>Y</enabled><name>METRICS_VALUE</name></field></metrics-log-table> | |
| 57 | + </log> | |
| 58 | + <maxdate> | |
| 59 | + <connection/> | |
| 60 | + <table/> | |
| 61 | + <field/> | |
| 62 | + <offset>0.0</offset> | |
| 63 | + <maxdiff>0.0</maxdiff> | |
| 64 | + </maxdate> | |
| 65 | + <size_rowset>10000</size_rowset> | |
| 66 | + <sleep_time_empty>50</sleep_time_empty> | |
| 67 | + <sleep_time_full>50</sleep_time_full> | |
| 68 | + <unique_connections>N</unique_connections> | |
| 69 | + <feedback_shown>Y</feedback_shown> | |
| 70 | + <feedback_size>50000</feedback_size> | |
| 71 | + <using_thread_priorities>Y</using_thread_priorities> | |
| 72 | + <shared_objects_file/> | |
| 73 | + <capture_step_performance>N</capture_step_performance> | |
| 74 | + <step_performance_capturing_delay>1000</step_performance_capturing_delay> | |
| 75 | + <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit> | |
| 76 | + <dependencies> | |
| 77 | + </dependencies> | |
| 78 | + <partitionschemas> | |
| 79 | + </partitionschemas> | |
| 80 | + <slaveservers> | |
| 81 | + </slaveservers> | |
| 82 | + <clusterschemas> | |
| 83 | + </clusterschemas> | |
| 84 | + <created_user>-</created_user> | |
| 85 | + <created_date>2016/07/11 21:45:05.041</created_date> | |
| 86 | + <modified_user>-</modified_user> | |
| 87 | + <modified_date>2016/07/11 21:45:05.041</modified_date> | |
| 88 | + <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA=</key_for_session_key> | |
| 89 | + <is_key_private>N</is_key_private> | |
| 90 | + </info> | |
| 91 | + <notepads> | |
| 92 | + <notepad> | |
| 93 | + <note>这里有些问题
在window2012的环境下,
MySql数据库查询中如果返回中文内容的字段,这个内容乱码
解决办法,就是数据库查询全部缓存,就不乱码
linux环境下没问题</note> | |
| 94 | + <xloc>45</xloc> | |
| 95 | + <yloc>261</yloc> | |
| 96 | + <width>333</width> | |
| 97 | + <heigth>90</heigth> | |
| 98 | + <fontname>YaHei Consolas Hybrid</fontname> | |
| 99 | + <fontsize>12</fontsize> | |
| 100 | + <fontbold>N</fontbold> | |
| 101 | + <fontitalic>N</fontitalic> | |
| 102 | + <fontcolorred>0</fontcolorred> | |
| 103 | + <fontcolorgreen>0</fontcolorgreen> | |
| 104 | + <fontcolorblue>0</fontcolorblue> | |
| 105 | + <backgroundcolorred>255</backgroundcolorred> | |
| 106 | + <backgroundcolorgreen>205</backgroundcolorgreen> | |
| 107 | + <backgroundcolorblue>112</backgroundcolorblue> | |
| 108 | + <bordercolorred>100</bordercolorred> | |
| 109 | + <bordercolorgreen>100</bordercolorgreen> | |
| 110 | + <bordercolorblue>100</bordercolorblue> | |
| 111 | + <drawshadow>Y</drawshadow> | |
| 112 | + </notepad> | |
| 113 | + <notepad> | |
| 114 | + <note>此处转换excel有问题,
2003格式的xls最多256列,
这里明显超过,所以把所有内容合并成1列,
用,分隔</note> | |
| 115 | + <xloc>256</xloc> | |
| 116 | + <yloc>397</yloc> | |
| 117 | + <width>245</width> | |
| 118 | + <heigth>74</heigth> | |
| 119 | + <fontname>YaHei Consolas Hybrid</fontname> | |
| 120 | + <fontsize>12</fontsize> | |
| 121 | + <fontbold>N</fontbold> | |
| 122 | + <fontitalic>N</fontitalic> | |
| 123 | + <fontcolorred>0</fontcolorred> | |
| 124 | + <fontcolorgreen>0</fontcolorgreen> | |
| 125 | + <fontcolorblue>0</fontcolorblue> | |
| 126 | + <backgroundcolorred>255</backgroundcolorred> | |
| 127 | + <backgroundcolorgreen>205</backgroundcolorgreen> | |
| 128 | + <backgroundcolorblue>112</backgroundcolorblue> | |
| 129 | + <bordercolorred>100</bordercolorred> | |
| 130 | + <bordercolorgreen>100</bordercolorgreen> | |
| 131 | + <bordercolorblue>100</bordercolorblue> | |
| 132 | + <drawshadow>Y</drawshadow> | |
| 133 | + </notepad> | |
| 134 | + </notepads> | |
| 135 | + <connection> | |
| 136 | + <name>bus_control_variable</name> | |
| 137 | + <server>${v_db_ip}</server> | |
| 138 | + <type>MYSQL</type> | |
| 139 | + <access>Native</access> | |
| 140 | + <database>${v_db_dname}</database> | |
| 141 | + <port>3306</port> | |
| 142 | + <username>${v_db_uname}</username> | |
| 143 | + <password>${v_db_pwd}</password> | |
| 144 | + <servername/> | |
| 145 | + <data_tablespace/> | |
| 146 | + <index_tablespace/> | |
| 147 | + <attributes> | |
| 148 | + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute> | |
| 149 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 150 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 151 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 152 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 153 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 154 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 155 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 156 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 157 | + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute> | |
| 158 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 159 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 160 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 161 | + </attributes> | |
| 162 | + </connection> | |
| 163 | + <connection> | |
| 164 | + <name>bus_control_公司_201</name> | |
| 165 | + <server>localhost</server> | |
| 166 | + <type>MYSQL</type> | |
| 167 | + <access>Native</access> | |
| 168 | + <database>control</database> | |
| 169 | + <port>3306</port> | |
| 170 | + <username>root</username> | |
| 171 | + <password>Encrypted </password> | |
| 172 | + <servername/> | |
| 173 | + <data_tablespace/> | |
| 174 | + <index_tablespace/> | |
| 175 | + <attributes> | |
| 176 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 177 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 178 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 179 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 180 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 181 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 182 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 183 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 184 | + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute> | |
| 185 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 186 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 187 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 188 | + </attributes> | |
| 189 | + </connection> | |
| 190 | + <connection> | |
| 191 | + <name>bus_control_本机</name> | |
| 192 | + <server>localhost</server> | |
| 193 | + <type>MYSQL</type> | |
| 194 | + <access>Native</access> | |
| 195 | + <database>control</database> | |
| 196 | + <port>3306</port> | |
| 197 | + <username>root</username> | |
| 198 | + <password>Encrypted </password> | |
| 199 | + <servername/> | |
| 200 | + <data_tablespace/> | |
| 201 | + <index_tablespace/> | |
| 202 | + <attributes> | |
| 203 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 204 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 205 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 206 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 207 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 208 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 209 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 210 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 211 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 212 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 213 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 214 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 215 | + </attributes> | |
| 216 | + </connection> | |
| 217 | + <connection> | |
| 218 | + <name>xlab_mysql_youle</name> | |
| 219 | + <server>101.231.124.8</server> | |
| 220 | + <type>MYSQL</type> | |
| 221 | + <access>Native</access> | |
| 222 | + <database>xlab_youle</database> | |
| 223 | + <port>45687</port> | |
| 224 | + <username>xlab-youle</username> | |
| 225 | + <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password> | |
| 226 | + <servername/> | |
| 227 | + <data_tablespace/> | |
| 228 | + <index_tablespace/> | |
| 229 | + <attributes> | |
| 230 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 231 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 232 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 233 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 234 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 235 | + <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute> | |
| 236 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 237 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 238 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 239 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 240 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 241 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 242 | + </attributes> | |
| 243 | + </connection> | |
| 244 | + <connection> | |
| 245 | + <name>xlab_mysql_youle(本机)</name> | |
| 246 | + <server>localhost</server> | |
| 247 | + <type>MYSQL</type> | |
| 248 | + <access>Native</access> | |
| 249 | + <database>xlab_youle</database> | |
| 250 | + <port>3306</port> | |
| 251 | + <username>root</username> | |
| 252 | + <password>Encrypted </password> | |
| 253 | + <servername/> | |
| 254 | + <data_tablespace/> | |
| 255 | + <index_tablespace/> | |
| 256 | + <attributes> | |
| 257 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 258 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 259 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 260 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 261 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 262 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 263 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 264 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 265 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 266 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 267 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 268 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 269 | + </attributes> | |
| 270 | + </connection> | |
| 271 | + <connection> | |
| 272 | + <name>xlab_youle</name> | |
| 273 | + <server/> | |
| 274 | + <type>MYSQL</type> | |
| 275 | + <access>JNDI</access> | |
| 276 | + <database>xlab_youle</database> | |
| 277 | + <port>1521</port> | |
| 278 | + <username/> | |
| 279 | + <password>Encrypted </password> | |
| 280 | + <servername/> | |
| 281 | + <data_tablespace/> | |
| 282 | + <index_tablespace/> | |
| 283 | + <attributes> | |
| 284 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 285 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 286 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 287 | + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | |
| 288 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 289 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 290 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 291 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 292 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 293 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 294 | + </attributes> | |
| 295 | + </connection> | |
| 296 | + <order> | |
| 297 | + <hop> <from>表输入</from><to>过滤记录</to><enabled>Y</enabled> </hop> | |
| 298 | + <hop> <from>过滤记录</from><to>正常班次站点查询用数据</to><enabled>Y</enabled> </hop> | |
| 299 | + <hop> <from>过滤记录</from><to>进场出场班次查询用的数据</to><enabled>Y</enabled> </hop> | |
| 300 | + <hop> <from>正常班次站点查询用数据</from><to>查找起点站名称</to><enabled>Y</enabled> </hop> | |
| 301 | + <hop> <from>查找起点站名称</from><to>查找终点站名称</to><enabled>Y</enabled> </hop> | |
| 302 | + <hop> <from>查找终点站名称</from><to>字段选择</to><enabled>Y</enabled> </hop> | |
| 303 | + <hop> <from>进场出场班次查询用的数据</from><to>字段选择 2</to><enabled>Y</enabled> </hop> | |
| 304 | + <hop> <from>字段选择</from><to>排序记录</to><enabled>Y</enabled> </hop> | |
| 305 | + <hop> <from>字段选择 2</from><to>排序记录</to><enabled>Y</enabled> </hop> | |
| 306 | + <hop> <from>排序记录</from><to>计算发车站名</to><enabled>Y</enabled> </hop> | |
| 307 | + <hop> <from>列转行</from><to>去除字段</to><enabled>Y</enabled> </hop> | |
| 308 | + <hop> <from>去除字段</from><to>Excel输出</to><enabled>Y</enabled> </hop> | |
| 309 | + <hop> <from>获取变量</from><to>表输入</to><enabled>Y</enabled> </hop> | |
| 310 | + <hop> <from>计算发车站名</from><to>合并内容</to><enabled>Y</enabled> </hop> | |
| 311 | + <hop> <from>合并内容</from><to>列转行</to><enabled>Y</enabled> </hop> | |
| 312 | + <hop> <from>去除字段</from><to>文本文件输出</to><enabled>Y</enabled> </hop> | |
| 313 | + </order> | |
| 314 | + <step> | |
| 315 | + <name>Excel输出</name> | |
| 316 | + <type>ExcelOutput</type> | |
| 317 | + <description/> | |
| 318 | + <distribute>Y</distribute> | |
| 319 | + <custom_distribution/> | |
| 320 | + <copies>1</copies> | |
| 321 | + <partitioning> | |
| 322 | + <method>none</method> | |
| 323 | + <schema_name/> | |
| 324 | + </partitioning> | |
| 325 | + <header>Y</header> | |
| 326 | + <footer>N</footer> | |
| 327 | + <encoding/> | |
| 328 | + <append>N</append> | |
| 329 | + <add_to_result_filenames>Y</add_to_result_filenames> | |
| 330 | + <file> | |
| 331 | + <name>${tempfilepath}</name> | |
| 332 | + <extention>xls</extention> | |
| 333 | + <do_not_open_newfile_init>N</do_not_open_newfile_init> | |
| 334 | + <create_parent_folder>N</create_parent_folder> | |
| 335 | + <split>N</split> | |
| 336 | + <add_date>N</add_date> | |
| 337 | + <add_time>N</add_time> | |
| 338 | + <SpecifyFormat>N</SpecifyFormat> | |
| 339 | + <date_time_format/> | |
| 340 | + <sheetname>Sheet1</sheetname> | |
| 341 | + <autosizecolums>N</autosizecolums> | |
| 342 | + <nullisblank>N</nullisblank> | |
| 343 | + <protect_sheet>N</protect_sheet> | |
| 344 | + <password>Encrypted </password> | |
| 345 | + <splitevery>0</splitevery> | |
| 346 | + <usetempfiles>N</usetempfiles> | |
| 347 | + <tempdirectory/> | |
| 348 | + </file> | |
| 349 | + <template> | |
| 350 | + <enabled>N</enabled> | |
| 351 | + <append>N</append> | |
| 352 | + <filename>template.xls</filename> | |
| 353 | + </template> | |
| 354 | + <fields> | |
| 355 | + <field> | |
| 356 | + <name>lp</name> | |
| 357 | + <type>String</type> | |
| 358 | + <format/> | |
| 359 | + </field> | |
| 360 | + <field> | |
| 361 | + <name>fcno1</name> | |
| 362 | + <type>String</type> | |
| 363 | + <format/> | |
| 364 | + </field> | |
| 365 | + <field> | |
| 366 | + <name>fcno2</name> | |
| 367 | + <type>String</type> | |
| 368 | + <format/> | |
| 369 | + </field> | |
| 370 | + <field> | |
| 371 | + <name>fcno3</name> | |
| 372 | + <type>String</type> | |
| 373 | + <format/> | |
| 374 | + </field> | |
| 375 | + <field> | |
| 376 | + <name>fcno4</name> | |
| 377 | + <type>String</type> | |
| 378 | + <format/> | |
| 379 | + </field> | |
| 380 | + <field> | |
| 381 | + <name>fcno5</name> | |
| 382 | + <type>String</type> | |
| 383 | + <format/> | |
| 384 | + </field> | |
| 385 | + <field> | |
| 386 | + <name>fcno6</name> | |
| 387 | + <type>String</type> | |
| 388 | + <format/> | |
| 389 | + </field> | |
| 390 | + <field> | |
| 391 | + <name>fcno7</name> | |
| 392 | + <type>String</type> | |
| 393 | + <format/> | |
| 394 | + </field> | |
| 395 | + <field> | |
| 396 | + <name>fcno8</name> | |
| 397 | + <type>String</type> | |
| 398 | + <format/> | |
| 399 | + </field> | |
| 400 | + <field> | |
| 401 | + <name>fcno9</name> | |
| 402 | + <type>String</type> | |
| 403 | + <format/> | |
| 404 | + </field> | |
| 405 | + <field> | |
| 406 | + <name>fcno10</name> | |
| 407 | + <type>String</type> | |
| 408 | + <format/> | |
| 409 | + </field> | |
| 410 | + <field> | |
| 411 | + <name>fcno11</name> | |
| 412 | + <type>String</type> | |
| 413 | + <format/> | |
| 414 | + </field> | |
| 415 | + <field> | |
| 416 | + <name>fcno12</name> | |
| 417 | + <type>String</type> | |
| 418 | + <format/> | |
| 419 | + </field> | |
| 420 | + <field> | |
| 421 | + <name>fcno13</name> | |
| 422 | + <type>String</type> | |
| 423 | + <format/> | |
| 424 | + </field> | |
| 425 | + <field> | |
| 426 | + <name>fcno14</name> | |
| 427 | + <type>String</type> | |
| 428 | + <format/> | |
| 429 | + </field> | |
| 430 | + <field> | |
| 431 | + <name>fcno15</name> | |
| 432 | + <type>String</type> | |
| 433 | + <format/> | |
| 434 | + </field> | |
| 435 | + <field> | |
| 436 | + <name>fcno16</name> | |
| 437 | + <type>String</type> | |
| 438 | + <format/> | |
| 439 | + </field> | |
| 440 | + <field> | |
| 441 | + <name>fcno17</name> | |
| 442 | + <type>String</type> | |
| 443 | + <format/> | |
| 444 | + </field> | |
| 445 | + <field> | |
| 446 | + <name>fcno18</name> | |
| 447 | + <type>String</type> | |
| 448 | + <format/> | |
| 449 | + </field> | |
| 450 | + <field> | |
| 451 | + <name>fcno19</name> | |
| 452 | + <type>String</type> | |
| 453 | + <format/> | |
| 454 | + </field> | |
| 455 | + <field> | |
| 456 | + <name>fcno20</name> | |
| 457 | + <type>String</type> | |
| 458 | + <format/> | |
| 459 | + </field> | |
| 460 | + <field> | |
| 461 | + <name>fcno21</name> | |
| 462 | + <type>String</type> | |
| 463 | + <format/> | |
| 464 | + </field> | |
| 465 | + <field> | |
| 466 | + <name>fcno22</name> | |
| 467 | + <type>String</type> | |
| 468 | + <format/> | |
| 469 | + </field> | |
| 470 | + <field> | |
| 471 | + <name>fcno23</name> | |
| 472 | + <type>String</type> | |
| 473 | + <format/> | |
| 474 | + </field> | |
| 475 | + <field> | |
| 476 | + <name>fcno24</name> | |
| 477 | + <type>String</type> | |
| 478 | + <format/> | |
| 479 | + </field> | |
| 480 | + <field> | |
| 481 | + <name>fcno25</name> | |
| 482 | + <type>String</type> | |
| 483 | + <format/> | |
| 484 | + </field> | |
| 485 | + <field> | |
| 486 | + <name>fcno26</name> | |
| 487 | + <type>String</type> | |
| 488 | + <format/> | |
| 489 | + </field> | |
| 490 | + <field> | |
| 491 | + <name>fcno27</name> | |
| 492 | + <type>String</type> | |
| 493 | + <format/> | |
| 494 | + </field> | |
| 495 | + <field> | |
| 496 | + <name>fcno28</name> | |
| 497 | + <type>String</type> | |
| 498 | + <format/> | |
| 499 | + </field> | |
| 500 | + <field> | |
| 501 | + <name>fcno29</name> | |
| 502 | + <type>String</type> | |
| 503 | + <format/> | |
| 504 | + </field> | |
| 505 | + <field> | |
| 506 | + <name>fcno30</name> | |
| 507 | + <type>String</type> | |
| 508 | + <format/> | |
| 509 | + </field> | |
| 510 | + <field> | |
| 511 | + <name>fcno31</name> | |
| 512 | + <type>String</type> | |
| 513 | + <format/> | |
| 514 | + </field> | |
| 515 | + <field> | |
| 516 | + <name>fcno32</name> | |
| 517 | + <type>String</type> | |
| 518 | + <format/> | |
| 519 | + </field> | |
| 520 | + <field> | |
| 521 | + <name>fcno33</name> | |
| 522 | + <type>String</type> | |
| 523 | + <format/> | |
| 524 | + </field> | |
| 525 | + <field> | |
| 526 | + <name>fcno34</name> | |
| 527 | + <type>String</type> | |
| 528 | + <format/> | |
| 529 | + </field> | |
| 530 | + <field> | |
| 531 | + <name>fcno35</name> | |
| 532 | + <type>String</type> | |
| 533 | + <format/> | |
| 534 | + </field> | |
| 535 | + <field> | |
| 536 | + <name>fcno36</name> | |
| 537 | + <type>String</type> | |
| 538 | + <format/> | |
| 539 | + </field> | |
| 540 | + <field> | |
| 541 | + <name>fcno37</name> | |
| 542 | + <type>String</type> | |
| 543 | + <format/> | |
| 544 | + </field> | |
| 545 | + <field> | |
| 546 | + <name>fcno38</name> | |
| 547 | + <type>String</type> | |
| 548 | + <format/> | |
| 549 | + </field> | |
| 550 | + <field> | |
| 551 | + <name>fcno39</name> | |
| 552 | + <type>String</type> | |
| 553 | + <format/> | |
| 554 | + </field> | |
| 555 | + <field> | |
| 556 | + <name>fcno40</name> | |
| 557 | + <type>String</type> | |
| 558 | + <format/> | |
| 559 | + </field> | |
| 560 | + <field> | |
| 561 | + <name>fcno41</name> | |
| 562 | + <type>String</type> | |
| 563 | + <format/> | |
| 564 | + </field> | |
| 565 | + <field> | |
| 566 | + <name>fcno42</name> | |
| 567 | + <type>String</type> | |
| 568 | + <format/> | |
| 569 | + </field> | |
| 570 | + <field> | |
| 571 | + <name>fcno43</name> | |
| 572 | + <type>String</type> | |
| 573 | + <format/> | |
| 574 | + </field> | |
| 575 | + <field> | |
| 576 | + <name>fcno44</name> | |
| 577 | + <type>String</type> | |
| 578 | + <format/> | |
| 579 | + </field> | |
| 580 | + <field> | |
| 581 | + <name>fcno45</name> | |
| 582 | + <type>String</type> | |
| 583 | + <format/> | |
| 584 | + </field> | |
| 585 | + <field> | |
| 586 | + <name>fcno46</name> | |
| 587 | + <type>String</type> | |
| 588 | + <format/> | |
| 589 | + </field> | |
| 590 | + <field> | |
| 591 | + <name>fcno47</name> | |
| 592 | + <type>String</type> | |
| 593 | + <format/> | |
| 594 | + </field> | |
| 595 | + <field> | |
| 596 | + <name>fcno48</name> | |
| 597 | + <type>String</type> | |
| 598 | + <format/> | |
| 599 | + </field> | |
| 600 | + <field> | |
| 601 | + <name>fcno49</name> | |
| 602 | + <type>String</type> | |
| 603 | + <format/> | |
| 604 | + </field> | |
| 605 | + <field> | |
| 606 | + <name>fcno50</name> | |
| 607 | + <type>String</type> | |
| 608 | + <format/> | |
| 609 | + </field> | |
| 610 | + <field> | |
| 611 | + <name>fcno51</name> | |
| 612 | + <type>String</type> | |
| 613 | + <format/> | |
| 614 | + </field> | |
| 615 | + <field> | |
| 616 | + <name>fcno52</name> | |
| 617 | + <type>String</type> | |
| 618 | + <format/> | |
| 619 | + </field> | |
| 620 | + <field> | |
| 621 | + <name>fcno53</name> | |
| 622 | + <type>String</type> | |
| 623 | + <format/> | |
| 624 | + </field> | |
| 625 | + <field> | |
| 626 | + <name>fcno54</name> | |
| 627 | + <type>String</type> | |
| 628 | + <format/> | |
| 629 | + </field> | |
| 630 | + <field> | |
| 631 | + <name>fcno55</name> | |
| 632 | + <type>String</type> | |
| 633 | + <format/> | |
| 634 | + </field> | |
| 635 | + <field> | |
| 636 | + <name>fcno56</name> | |
| 637 | + <type>String</type> | |
| 638 | + <format/> | |
| 639 | + </field> | |
| 640 | + <field> | |
| 641 | + <name>fcno57</name> | |
| 642 | + <type>String</type> | |
| 643 | + <format/> | |
| 644 | + </field> | |
| 645 | + <field> | |
| 646 | + <name>fcno58</name> | |
| 647 | + <type>String</type> | |
| 648 | + <format/> | |
| 649 | + </field> | |
| 650 | + <field> | |
| 651 | + <name>fcno59</name> | |
| 652 | + <type>String</type> | |
| 653 | + <format/> | |
| 654 | + </field> | |
| 655 | + <field> | |
| 656 | + <name>fcno60</name> | |
| 657 | + <type>String</type> | |
| 658 | + <format/> | |
| 659 | + </field> | |
| 660 | + <field> | |
| 661 | + <name>fcno61</name> | |
| 662 | + <type>String</type> | |
| 663 | + <format/> | |
| 664 | + </field> | |
| 665 | + <field> | |
| 666 | + <name>fcno62</name> | |
| 667 | + <type>String</type> | |
| 668 | + <format/> | |
| 669 | + </field> | |
| 670 | + <field> | |
| 671 | + <name>fcno63</name> | |
| 672 | + <type>String</type> | |
| 673 | + <format/> | |
| 674 | + </field> | |
| 675 | + <field> | |
| 676 | + <name>fcno64</name> | |
| 677 | + <type>String</type> | |
| 678 | + <format/> | |
| 679 | + </field> | |
| 680 | + <field> | |
| 681 | + <name>fcno65</name> | |
| 682 | + <type>String</type> | |
| 683 | + <format/> | |
| 684 | + </field> | |
| 685 | + <field> | |
| 686 | + <name>fcno66</name> | |
| 687 | + <type>String</type> | |
| 688 | + <format/> | |
| 689 | + </field> | |
| 690 | + <field> | |
| 691 | + <name>fcno67</name> | |
| 692 | + <type>String</type> | |
| 693 | + <format/> | |
| 694 | + </field> | |
| 695 | + <field> | |
| 696 | + <name>fcno68</name> | |
| 697 | + <type>String</type> | |
| 698 | + <format/> | |
| 699 | + </field> | |
| 700 | + <field> | |
| 701 | + <name>fcno69</name> | |
| 702 | + <type>String</type> | |
| 703 | + <format/> | |
| 704 | + </field> | |
| 705 | + <field> | |
| 706 | + <name>fcno70</name> | |
| 707 | + <type>String</type> | |
| 708 | + <format/> | |
| 709 | + </field> | |
| 710 | + </fields> | |
| 711 | + <custom> | |
| 712 | + <header_font_name>arial</header_font_name> | |
| 713 | + <header_font_size>10</header_font_size> | |
| 714 | + <header_font_bold>N</header_font_bold> | |
| 715 | + <header_font_italic>N</header_font_italic> | |
| 716 | + <header_font_underline>no</header_font_underline> | |
| 717 | + <header_font_orientation>horizontal</header_font_orientation> | |
| 718 | + <header_font_color>black</header_font_color> | |
| 719 | + <header_background_color>none</header_background_color> | |
| 720 | + <header_row_height>255</header_row_height> | |
| 721 | + <header_alignment>left</header_alignment> | |
| 722 | + <header_image/> | |
| 723 | + <row_font_name>arial</row_font_name> | |
| 724 | + <row_font_size>10</row_font_size> | |
| 725 | + <row_font_color>black</row_font_color> | |
| 726 | + <row_background_color>none</row_background_color> | |
| 727 | + </custom> | |
| 728 | + <cluster_schema/> | |
| 729 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 730 | + <xloc>692</xloc> | |
| 731 | + <yloc>514</yloc> | |
| 732 | + <draw>Y</draw> | |
| 733 | + </GUI> | |
| 734 | + </step> | |
| 735 | + | |
| 736 | + <step> | |
| 737 | + <name>列转行</name> | |
| 738 | + <type>Denormaliser</type> | |
| 739 | + <description/> | |
| 740 | + <distribute>N</distribute> | |
| 741 | + <custom_distribution/> | |
| 742 | + <copies>1</copies> | |
| 743 | + <partitioning> | |
| 744 | + <method>none</method> | |
| 745 | + <schema_name/> | |
| 746 | + </partitioning> | |
| 747 | + <key_field>fcno</key_field> | |
| 748 | + <group> | |
| 749 | + <field> | |
| 750 | + <name>lp</name> | |
| 751 | + </field> | |
| 752 | + </group> | |
| 753 | + <fields> | |
| 754 | + <field> | |
| 755 | + <field_name>all_content</field_name> | |
| 756 | + <key_value>1</key_value> | |
| 757 | + <target_name>fcno1</target_name> | |
| 758 | + <target_type>String</target_type> | |
| 759 | + <target_format/> | |
| 760 | + <target_length>-1</target_length> | |
| 761 | + <target_precision>-1</target_precision> | |
| 762 | + <target_decimal_symbol/> | |
| 763 | + <target_grouping_symbol/> | |
| 764 | + <target_currency_symbol/> | |
| 765 | + <target_null_string/> | |
| 766 | + <target_aggregation_type>-</target_aggregation_type> | |
| 767 | + </field> | |
| 768 | + <field> | |
| 769 | + <field_name>all_content</field_name> | |
| 770 | + <key_value>2</key_value> | |
| 771 | + <target_name>fcno2</target_name> | |
| 772 | + <target_type>String</target_type> | |
| 773 | + <target_format/> | |
| 774 | + <target_length>-1</target_length> | |
| 775 | + <target_precision>-1</target_precision> | |
| 776 | + <target_decimal_symbol/> | |
| 777 | + <target_grouping_symbol/> | |
| 778 | + <target_currency_symbol/> | |
| 779 | + <target_null_string/> | |
| 780 | + <target_aggregation_type>-</target_aggregation_type> | |
| 781 | + </field> | |
| 782 | + <field> | |
| 783 | + <field_name>all_content</field_name> | |
| 784 | + <key_value>3</key_value> | |
| 785 | + <target_name>fcno3</target_name> | |
| 786 | + <target_type>String</target_type> | |
| 787 | + <target_format/> | |
| 788 | + <target_length>-1</target_length> | |
| 789 | + <target_precision>-1</target_precision> | |
| 790 | + <target_decimal_symbol/> | |
| 791 | + <target_grouping_symbol/> | |
| 792 | + <target_currency_symbol/> | |
| 793 | + <target_null_string/> | |
| 794 | + <target_aggregation_type>-</target_aggregation_type> | |
| 795 | + </field> | |
| 796 | + <field> | |
| 797 | + <field_name>all_content</field_name> | |
| 798 | + <key_value>4</key_value> | |
| 799 | + <target_name>fcno4</target_name> | |
| 800 | + <target_type>String</target_type> | |
| 801 | + <target_format/> | |
| 802 | + <target_length>-1</target_length> | |
| 803 | + <target_precision>-1</target_precision> | |
| 804 | + <target_decimal_symbol/> | |
| 805 | + <target_grouping_symbol/> | |
| 806 | + <target_currency_symbol/> | |
| 807 | + <target_null_string/> | |
| 808 | + <target_aggregation_type>-</target_aggregation_type> | |
| 809 | + </field> | |
| 810 | + <field> | |
| 811 | + <field_name>all_content</field_name> | |
| 812 | + <key_value>5</key_value> | |
| 813 | + <target_name>fcno5</target_name> | |
| 814 | + <target_type>String</target_type> | |
| 815 | + <target_format/> | |
| 816 | + <target_length>-1</target_length> | |
| 817 | + <target_precision>-1</target_precision> | |
| 818 | + <target_decimal_symbol/> | |
| 819 | + <target_grouping_symbol/> | |
| 820 | + <target_currency_symbol/> | |
| 821 | + <target_null_string/> | |
| 822 | + <target_aggregation_type>-</target_aggregation_type> | |
| 823 | + </field> | |
| 824 | + <field> | |
| 825 | + <field_name>all_content</field_name> | |
| 826 | + <key_value>6</key_value> | |
| 827 | + <target_name>fcno6</target_name> | |
| 828 | + <target_type>String</target_type> | |
| 829 | + <target_format/> | |
| 830 | + <target_length>-1</target_length> | |
| 831 | + <target_precision>-1</target_precision> | |
| 832 | + <target_decimal_symbol/> | |
| 833 | + <target_grouping_symbol/> | |
| 834 | + <target_currency_symbol/> | |
| 835 | + <target_null_string/> | |
| 836 | + <target_aggregation_type>-</target_aggregation_type> | |
| 837 | + </field> | |
| 838 | + <field> | |
| 839 | + <field_name>all_content</field_name> | |
| 840 | + <key_value>7</key_value> | |
| 841 | + <target_name>fcno7</target_name> | |
| 842 | + <target_type>String</target_type> | |
| 843 | + <target_format/> | |
| 844 | + <target_length>-1</target_length> | |
| 845 | + <target_precision>-1</target_precision> | |
| 846 | + <target_decimal_symbol/> | |
| 847 | + <target_grouping_symbol/> | |
| 848 | + <target_currency_symbol/> | |
| 849 | + <target_null_string/> | |
| 850 | + <target_aggregation_type>-</target_aggregation_type> | |
| 851 | + </field> | |
| 852 | + <field> | |
| 853 | + <field_name>all_content</field_name> | |
| 854 | + <key_value>8</key_value> | |
| 855 | + <target_name>fcno8</target_name> | |
| 856 | + <target_type>String</target_type> | |
| 857 | + <target_format/> | |
| 858 | + <target_length>-1</target_length> | |
| 859 | + <target_precision>-1</target_precision> | |
| 860 | + <target_decimal_symbol/> | |
| 861 | + <target_grouping_symbol/> | |
| 862 | + <target_currency_symbol/> | |
| 863 | + <target_null_string/> | |
| 864 | + <target_aggregation_type>-</target_aggregation_type> | |
| 865 | + </field> | |
| 866 | + <field> | |
| 867 | + <field_name>all_content</field_name> | |
| 868 | + <key_value>9</key_value> | |
| 869 | + <target_name>fcno9</target_name> | |
| 870 | + <target_type>String</target_type> | |
| 871 | + <target_format/> | |
| 872 | + <target_length>-1</target_length> | |
| 873 | + <target_precision>-1</target_precision> | |
| 874 | + <target_decimal_symbol/> | |
| 875 | + <target_grouping_symbol/> | |
| 876 | + <target_currency_symbol/> | |
| 877 | + <target_null_string/> | |
| 878 | + <target_aggregation_type>-</target_aggregation_type> | |
| 879 | + </field> | |
| 880 | + <field> | |
| 881 | + <field_name>all_content</field_name> | |
| 882 | + <key_value>10</key_value> | |
| 883 | + <target_name>fcno10</target_name> | |
| 884 | + <target_type>String</target_type> | |
| 885 | + <target_format/> | |
| 886 | + <target_length>-1</target_length> | |
| 887 | + <target_precision>-1</target_precision> | |
| 888 | + <target_decimal_symbol/> | |
| 889 | + <target_grouping_symbol/> | |
| 890 | + <target_currency_symbol/> | |
| 891 | + <target_null_string/> | |
| 892 | + <target_aggregation_type>-</target_aggregation_type> | |
| 893 | + </field> | |
| 894 | + <field> | |
| 895 | + <field_name>all_content</field_name> | |
| 896 | + <key_value>11</key_value> | |
| 897 | + <target_name>fcno11</target_name> | |
| 898 | + <target_type>String</target_type> | |
| 899 | + <target_format/> | |
| 900 | + <target_length>-1</target_length> | |
| 901 | + <target_precision>-1</target_precision> | |
| 902 | + <target_decimal_symbol/> | |
| 903 | + <target_grouping_symbol/> | |
| 904 | + <target_currency_symbol/> | |
| 905 | + <target_null_string/> | |
| 906 | + <target_aggregation_type>-</target_aggregation_type> | |
| 907 | + </field> | |
| 908 | + <field> | |
| 909 | + <field_name>all_content</field_name> | |
| 910 | + <key_value>12</key_value> | |
| 911 | + <target_name>fcno12</target_name> | |
| 912 | + <target_type>String</target_type> | |
| 913 | + <target_format/> | |
| 914 | + <target_length>-1</target_length> | |
| 915 | + <target_precision>-1</target_precision> | |
| 916 | + <target_decimal_symbol/> | |
| 917 | + <target_grouping_symbol/> | |
| 918 | + <target_currency_symbol/> | |
| 919 | + <target_null_string/> | |
| 920 | + <target_aggregation_type>-</target_aggregation_type> | |
| 921 | + </field> | |
| 922 | + <field> | |
| 923 | + <field_name>all_content</field_name> | |
| 924 | + <key_value>13</key_value> | |
| 925 | + <target_name>fcno13</target_name> | |
| 926 | + <target_type>String</target_type> | |
| 927 | + <target_format/> | |
| 928 | + <target_length>-1</target_length> | |
| 929 | + <target_precision>-1</target_precision> | |
| 930 | + <target_decimal_symbol/> | |
| 931 | + <target_grouping_symbol/> | |
| 932 | + <target_currency_symbol/> | |
| 933 | + <target_null_string/> | |
| 934 | + <target_aggregation_type>-</target_aggregation_type> | |
| 935 | + </field> | |
| 936 | + <field> | |
| 937 | + <field_name>all_content</field_name> | |
| 938 | + <key_value>14</key_value> | |
| 939 | + <target_name>fcno14</target_name> | |
| 940 | + <target_type>String</target_type> | |
| 941 | + <target_format/> | |
| 942 | + <target_length>-1</target_length> | |
| 943 | + <target_precision>-1</target_precision> | |
| 944 | + <target_decimal_symbol/> | |
| 945 | + <target_grouping_symbol/> | |
| 946 | + <target_currency_symbol/> | |
| 947 | + <target_null_string/> | |
| 948 | + <target_aggregation_type>-</target_aggregation_type> | |
| 949 | + </field> | |
| 950 | + <field> | |
| 951 | + <field_name>all_content</field_name> | |
| 952 | + <key_value>15</key_value> | |
| 953 | + <target_name>fcno15</target_name> | |
| 954 | + <target_type>String</target_type> | |
| 955 | + <target_format/> | |
| 956 | + <target_length>-1</target_length> | |
| 957 | + <target_precision>-1</target_precision> | |
| 958 | + <target_decimal_symbol/> | |
| 959 | + <target_grouping_symbol/> | |
| 960 | + <target_currency_symbol/> | |
| 961 | + <target_null_string/> | |
| 962 | + <target_aggregation_type>-</target_aggregation_type> | |
| 963 | + </field> | |
| 964 | + <field> | |
| 965 | + <field_name>all_content</field_name> | |
| 966 | + <key_value>16</key_value> | |
| 967 | + <target_name>fcno16</target_name> | |
| 968 | + <target_type>String</target_type> | |
| 969 | + <target_format/> | |
| 970 | + <target_length>-1</target_length> | |
| 971 | + <target_precision>-1</target_precision> | |
| 972 | + <target_decimal_symbol/> | |
| 973 | + <target_grouping_symbol/> | |
| 974 | + <target_currency_symbol/> | |
| 975 | + <target_null_string/> | |
| 976 | + <target_aggregation_type>-</target_aggregation_type> | |
| 977 | + </field> | |
| 978 | + <field> | |
| 979 | + <field_name>all_content</field_name> | |
| 980 | + <key_value>17</key_value> | |
| 981 | + <target_name>fcno17</target_name> | |
| 982 | + <target_type>String</target_type> | |
| 983 | + <target_format/> | |
| 984 | + <target_length>-1</target_length> | |
| 985 | + <target_precision>-1</target_precision> | |
| 986 | + <target_decimal_symbol/> | |
| 987 | + <target_grouping_symbol/> | |
| 988 | + <target_currency_symbol/> | |
| 989 | + <target_null_string/> | |
| 990 | + <target_aggregation_type>-</target_aggregation_type> | |
| 991 | + </field> | |
| 992 | + <field> | |
| 993 | + <field_name>all_content</field_name> | |
| 994 | + <key_value>18</key_value> | |
| 995 | + <target_name>fcno18</target_name> | |
| 996 | + <target_type>String</target_type> | |
| 997 | + <target_format/> | |
| 998 | + <target_length>-1</target_length> | |
| 999 | + <target_precision>-1</target_precision> | |
| 1000 | + <target_decimal_symbol/> | |
| 1001 | + <target_grouping_symbol/> | |
| 1002 | + <target_currency_symbol/> | |
| 1003 | + <target_null_string/> | |
| 1004 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1005 | + </field> | |
| 1006 | + <field> | |
| 1007 | + <field_name>all_content</field_name> | |
| 1008 | + <key_value>19</key_value> | |
| 1009 | + <target_name>fcno19</target_name> | |
| 1010 | + <target_type>String</target_type> | |
| 1011 | + <target_format/> | |
| 1012 | + <target_length>-1</target_length> | |
| 1013 | + <target_precision>-1</target_precision> | |
| 1014 | + <target_decimal_symbol/> | |
| 1015 | + <target_grouping_symbol/> | |
| 1016 | + <target_currency_symbol/> | |
| 1017 | + <target_null_string/> | |
| 1018 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1019 | + </field> | |
| 1020 | + <field> | |
| 1021 | + <field_name>all_content</field_name> | |
| 1022 | + <key_value>20</key_value> | |
| 1023 | + <target_name>fcno20</target_name> | |
| 1024 | + <target_type>String</target_type> | |
| 1025 | + <target_format/> | |
| 1026 | + <target_length>-1</target_length> | |
| 1027 | + <target_precision>-1</target_precision> | |
| 1028 | + <target_decimal_symbol/> | |
| 1029 | + <target_grouping_symbol/> | |
| 1030 | + <target_currency_symbol/> | |
| 1031 | + <target_null_string/> | |
| 1032 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1033 | + </field> | |
| 1034 | + <field> | |
| 1035 | + <field_name>all_content</field_name> | |
| 1036 | + <key_value>21</key_value> | |
| 1037 | + <target_name>fcno21</target_name> | |
| 1038 | + <target_type>String</target_type> | |
| 1039 | + <target_format/> | |
| 1040 | + <target_length>-1</target_length> | |
| 1041 | + <target_precision>-1</target_precision> | |
| 1042 | + <target_decimal_symbol/> | |
| 1043 | + <target_grouping_symbol/> | |
| 1044 | + <target_currency_symbol/> | |
| 1045 | + <target_null_string/> | |
| 1046 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1047 | + </field> | |
| 1048 | + <field> | |
| 1049 | + <field_name>all_content</field_name> | |
| 1050 | + <key_value>22</key_value> | |
| 1051 | + <target_name>fcno22</target_name> | |
| 1052 | + <target_type>String</target_type> | |
| 1053 | + <target_format/> | |
| 1054 | + <target_length>-1</target_length> | |
| 1055 | + <target_precision>-1</target_precision> | |
| 1056 | + <target_decimal_symbol/> | |
| 1057 | + <target_grouping_symbol/> | |
| 1058 | + <target_currency_symbol/> | |
| 1059 | + <target_null_string/> | |
| 1060 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1061 | + </field> | |
| 1062 | + <field> | |
| 1063 | + <field_name>all_content</field_name> | |
| 1064 | + <key_value>23</key_value> | |
| 1065 | + <target_name>fcno23</target_name> | |
| 1066 | + <target_type>String</target_type> | |
| 1067 | + <target_format/> | |
| 1068 | + <target_length>-1</target_length> | |
| 1069 | + <target_precision>-1</target_precision> | |
| 1070 | + <target_decimal_symbol/> | |
| 1071 | + <target_grouping_symbol/> | |
| 1072 | + <target_currency_symbol/> | |
| 1073 | + <target_null_string/> | |
| 1074 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1075 | + </field> | |
| 1076 | + <field> | |
| 1077 | + <field_name>all_content</field_name> | |
| 1078 | + <key_value>24</key_value> | |
| 1079 | + <target_name>fcno24</target_name> | |
| 1080 | + <target_type>String</target_type> | |
| 1081 | + <target_format/> | |
| 1082 | + <target_length>-1</target_length> | |
| 1083 | + <target_precision>-1</target_precision> | |
| 1084 | + <target_decimal_symbol/> | |
| 1085 | + <target_grouping_symbol/> | |
| 1086 | + <target_currency_symbol/> | |
| 1087 | + <target_null_string/> | |
| 1088 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1089 | + </field> | |
| 1090 | + <field> | |
| 1091 | + <field_name>all_content</field_name> | |
| 1092 | + <key_value>25</key_value> | |
| 1093 | + <target_name>fcno25</target_name> | |
| 1094 | + <target_type>String</target_type> | |
| 1095 | + <target_format/> | |
| 1096 | + <target_length>-1</target_length> | |
| 1097 | + <target_precision>-1</target_precision> | |
| 1098 | + <target_decimal_symbol/> | |
| 1099 | + <target_grouping_symbol/> | |
| 1100 | + <target_currency_symbol/> | |
| 1101 | + <target_null_string/> | |
| 1102 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1103 | + </field> | |
| 1104 | + <field> | |
| 1105 | + <field_name>all_content</field_name> | |
| 1106 | + <key_value>26</key_value> | |
| 1107 | + <target_name>fcno26</target_name> | |
| 1108 | + <target_type>String</target_type> | |
| 1109 | + <target_format/> | |
| 1110 | + <target_length>-1</target_length> | |
| 1111 | + <target_precision>-1</target_precision> | |
| 1112 | + <target_decimal_symbol/> | |
| 1113 | + <target_grouping_symbol/> | |
| 1114 | + <target_currency_symbol/> | |
| 1115 | + <target_null_string/> | |
| 1116 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1117 | + </field> | |
| 1118 | + <field> | |
| 1119 | + <field_name>all_content</field_name> | |
| 1120 | + <key_value>27</key_value> | |
| 1121 | + <target_name>fcno27</target_name> | |
| 1122 | + <target_type>String</target_type> | |
| 1123 | + <target_format/> | |
| 1124 | + <target_length>-1</target_length> | |
| 1125 | + <target_precision>-1</target_precision> | |
| 1126 | + <target_decimal_symbol/> | |
| 1127 | + <target_grouping_symbol/> | |
| 1128 | + <target_currency_symbol/> | |
| 1129 | + <target_null_string/> | |
| 1130 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1131 | + </field> | |
| 1132 | + <field> | |
| 1133 | + <field_name>all_content</field_name> | |
| 1134 | + <key_value>28</key_value> | |
| 1135 | + <target_name>fcno28</target_name> | |
| 1136 | + <target_type>String</target_type> | |
| 1137 | + <target_format/> | |
| 1138 | + <target_length>-1</target_length> | |
| 1139 | + <target_precision>-1</target_precision> | |
| 1140 | + <target_decimal_symbol/> | |
| 1141 | + <target_grouping_symbol/> | |
| 1142 | + <target_currency_symbol/> | |
| 1143 | + <target_null_string/> | |
| 1144 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1145 | + </field> | |
| 1146 | + <field> | |
| 1147 | + <field_name>all_content</field_name> | |
| 1148 | + <key_value>29</key_value> | |
| 1149 | + <target_name>fcno29</target_name> | |
| 1150 | + <target_type>String</target_type> | |
| 1151 | + <target_format/> | |
| 1152 | + <target_length>-1</target_length> | |
| 1153 | + <target_precision>-1</target_precision> | |
| 1154 | + <target_decimal_symbol/> | |
| 1155 | + <target_grouping_symbol/> | |
| 1156 | + <target_currency_symbol/> | |
| 1157 | + <target_null_string/> | |
| 1158 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1159 | + </field> | |
| 1160 | + <field> | |
| 1161 | + <field_name>all_content</field_name> | |
| 1162 | + <key_value>30</key_value> | |
| 1163 | + <target_name>fcno30</target_name> | |
| 1164 | + <target_type>String</target_type> | |
| 1165 | + <target_format/> | |
| 1166 | + <target_length>-1</target_length> | |
| 1167 | + <target_precision>-1</target_precision> | |
| 1168 | + <target_decimal_symbol/> | |
| 1169 | + <target_grouping_symbol/> | |
| 1170 | + <target_currency_symbol/> | |
| 1171 | + <target_null_string/> | |
| 1172 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1173 | + </field> | |
| 1174 | + <field> | |
| 1175 | + <field_name>all_content</field_name> | |
| 1176 | + <key_value>31</key_value> | |
| 1177 | + <target_name>fcno31</target_name> | |
| 1178 | + <target_type>String</target_type> | |
| 1179 | + <target_format/> | |
| 1180 | + <target_length>-1</target_length> | |
| 1181 | + <target_precision>-1</target_precision> | |
| 1182 | + <target_decimal_symbol/> | |
| 1183 | + <target_grouping_symbol/> | |
| 1184 | + <target_currency_symbol/> | |
| 1185 | + <target_null_string/> | |
| 1186 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1187 | + </field> | |
| 1188 | + <field> | |
| 1189 | + <field_name>all_content</field_name> | |
| 1190 | + <key_value>32</key_value> | |
| 1191 | + <target_name>fcno32</target_name> | |
| 1192 | + <target_type>String</target_type> | |
| 1193 | + <target_format/> | |
| 1194 | + <target_length>-1</target_length> | |
| 1195 | + <target_precision>-1</target_precision> | |
| 1196 | + <target_decimal_symbol/> | |
| 1197 | + <target_grouping_symbol/> | |
| 1198 | + <target_currency_symbol/> | |
| 1199 | + <target_null_string/> | |
| 1200 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1201 | + </field> | |
| 1202 | + <field> | |
| 1203 | + <field_name>all_content</field_name> | |
| 1204 | + <key_value>33</key_value> | |
| 1205 | + <target_name>fcno33</target_name> | |
| 1206 | + <target_type>String</target_type> | |
| 1207 | + <target_format/> | |
| 1208 | + <target_length>-1</target_length> | |
| 1209 | + <target_precision>-1</target_precision> | |
| 1210 | + <target_decimal_symbol/> | |
| 1211 | + <target_grouping_symbol/> | |
| 1212 | + <target_currency_symbol/> | |
| 1213 | + <target_null_string/> | |
| 1214 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1215 | + </field> | |
| 1216 | + <field> | |
| 1217 | + <field_name>all_content</field_name> | |
| 1218 | + <key_value>34</key_value> | |
| 1219 | + <target_name>fcno34</target_name> | |
| 1220 | + <target_type>String</target_type> | |
| 1221 | + <target_format/> | |
| 1222 | + <target_length>-1</target_length> | |
| 1223 | + <target_precision>-1</target_precision> | |
| 1224 | + <target_decimal_symbol/> | |
| 1225 | + <target_grouping_symbol/> | |
| 1226 | + <target_currency_symbol/> | |
| 1227 | + <target_null_string/> | |
| 1228 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1229 | + </field> | |
| 1230 | + <field> | |
| 1231 | + <field_name>all_content</field_name> | |
| 1232 | + <key_value>35</key_value> | |
| 1233 | + <target_name>fcno35</target_name> | |
| 1234 | + <target_type>String</target_type> | |
| 1235 | + <target_format/> | |
| 1236 | + <target_length>-1</target_length> | |
| 1237 | + <target_precision>-1</target_precision> | |
| 1238 | + <target_decimal_symbol/> | |
| 1239 | + <target_grouping_symbol/> | |
| 1240 | + <target_currency_symbol/> | |
| 1241 | + <target_null_string/> | |
| 1242 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1243 | + </field> | |
| 1244 | + <field> | |
| 1245 | + <field_name>all_content</field_name> | |
| 1246 | + <key_value>36</key_value> | |
| 1247 | + <target_name>fcno36</target_name> | |
| 1248 | + <target_type>String</target_type> | |
| 1249 | + <target_format/> | |
| 1250 | + <target_length>-1</target_length> | |
| 1251 | + <target_precision>-1</target_precision> | |
| 1252 | + <target_decimal_symbol/> | |
| 1253 | + <target_grouping_symbol/> | |
| 1254 | + <target_currency_symbol/> | |
| 1255 | + <target_null_string/> | |
| 1256 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1257 | + </field> | |
| 1258 | + <field> | |
| 1259 | + <field_name>all_content</field_name> | |
| 1260 | + <key_value>37</key_value> | |
| 1261 | + <target_name>fcno37</target_name> | |
| 1262 | + <target_type>String</target_type> | |
| 1263 | + <target_format/> | |
| 1264 | + <target_length>-1</target_length> | |
| 1265 | + <target_precision>-1</target_precision> | |
| 1266 | + <target_decimal_symbol/> | |
| 1267 | + <target_grouping_symbol/> | |
| 1268 | + <target_currency_symbol/> | |
| 1269 | + <target_null_string/> | |
| 1270 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1271 | + </field> | |
| 1272 | + <field> | |
| 1273 | + <field_name>all_content</field_name> | |
| 1274 | + <key_value>38</key_value> | |
| 1275 | + <target_name>fcno38</target_name> | |
| 1276 | + <target_type>String</target_type> | |
| 1277 | + <target_format/> | |
| 1278 | + <target_length>-1</target_length> | |
| 1279 | + <target_precision>-1</target_precision> | |
| 1280 | + <target_decimal_symbol/> | |
| 1281 | + <target_grouping_symbol/> | |
| 1282 | + <target_currency_symbol/> | |
| 1283 | + <target_null_string/> | |
| 1284 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1285 | + </field> | |
| 1286 | + <field> | |
| 1287 | + <field_name>all_content</field_name> | |
| 1288 | + <key_value>39</key_value> | |
| 1289 | + <target_name>fcno39</target_name> | |
| 1290 | + <target_type>String</target_type> | |
| 1291 | + <target_format/> | |
| 1292 | + <target_length>-1</target_length> | |
| 1293 | + <target_precision>-1</target_precision> | |
| 1294 | + <target_decimal_symbol/> | |
| 1295 | + <target_grouping_symbol/> | |
| 1296 | + <target_currency_symbol/> | |
| 1297 | + <target_null_string/> | |
| 1298 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1299 | + </field> | |
| 1300 | + <field> | |
| 1301 | + <field_name>all_content</field_name> | |
| 1302 | + <key_value>40</key_value> | |
| 1303 | + <target_name>fcno40</target_name> | |
| 1304 | + <target_type>String</target_type> | |
| 1305 | + <target_format/> | |
| 1306 | + <target_length>-1</target_length> | |
| 1307 | + <target_precision>-1</target_precision> | |
| 1308 | + <target_decimal_symbol/> | |
| 1309 | + <target_grouping_symbol/> | |
| 1310 | + <target_currency_symbol/> | |
| 1311 | + <target_null_string/> | |
| 1312 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1313 | + </field> | |
| 1314 | + <field> | |
| 1315 | + <field_name>all_content</field_name> | |
| 1316 | + <key_value>41</key_value> | |
| 1317 | + <target_name>fcno41</target_name> | |
| 1318 | + <target_type>String</target_type> | |
| 1319 | + <target_format/> | |
| 1320 | + <target_length>-1</target_length> | |
| 1321 | + <target_precision>-1</target_precision> | |
| 1322 | + <target_decimal_symbol/> | |
| 1323 | + <target_grouping_symbol/> | |
| 1324 | + <target_currency_symbol/> | |
| 1325 | + <target_null_string/> | |
| 1326 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1327 | + </field> | |
| 1328 | + <field> | |
| 1329 | + <field_name>all_content</field_name> | |
| 1330 | + <key_value>42</key_value> | |
| 1331 | + <target_name>fcno42</target_name> | |
| 1332 | + <target_type>String</target_type> | |
| 1333 | + <target_format/> | |
| 1334 | + <target_length>-1</target_length> | |
| 1335 | + <target_precision>-1</target_precision> | |
| 1336 | + <target_decimal_symbol/> | |
| 1337 | + <target_grouping_symbol/> | |
| 1338 | + <target_currency_symbol/> | |
| 1339 | + <target_null_string/> | |
| 1340 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1341 | + </field> | |
| 1342 | + <field> | |
| 1343 | + <field_name>all_content</field_name> | |
| 1344 | + <key_value>43</key_value> | |
| 1345 | + <target_name>fcno43</target_name> | |
| 1346 | + <target_type>String</target_type> | |
| 1347 | + <target_format/> | |
| 1348 | + <target_length>-1</target_length> | |
| 1349 | + <target_precision>-1</target_precision> | |
| 1350 | + <target_decimal_symbol/> | |
| 1351 | + <target_grouping_symbol/> | |
| 1352 | + <target_currency_symbol/> | |
| 1353 | + <target_null_string/> | |
| 1354 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1355 | + </field> | |
| 1356 | + <field> | |
| 1357 | + <field_name>all_content</field_name> | |
| 1358 | + <key_value>44</key_value> | |
| 1359 | + <target_name>fcno44</target_name> | |
| 1360 | + <target_type>String</target_type> | |
| 1361 | + <target_format/> | |
| 1362 | + <target_length>-1</target_length> | |
| 1363 | + <target_precision>-1</target_precision> | |
| 1364 | + <target_decimal_symbol/> | |
| 1365 | + <target_grouping_symbol/> | |
| 1366 | + <target_currency_symbol/> | |
| 1367 | + <target_null_string/> | |
| 1368 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1369 | + </field> | |
| 1370 | + <field> | |
| 1371 | + <field_name>all_content</field_name> | |
| 1372 | + <key_value>45</key_value> | |
| 1373 | + <target_name>fcno45</target_name> | |
| 1374 | + <target_type>String</target_type> | |
| 1375 | + <target_format/> | |
| 1376 | + <target_length>-1</target_length> | |
| 1377 | + <target_precision>-1</target_precision> | |
| 1378 | + <target_decimal_symbol/> | |
| 1379 | + <target_grouping_symbol/> | |
| 1380 | + <target_currency_symbol/> | |
| 1381 | + <target_null_string/> | |
| 1382 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1383 | + </field> | |
| 1384 | + <field> | |
| 1385 | + <field_name>all_content</field_name> | |
| 1386 | + <key_value>46</key_value> | |
| 1387 | + <target_name>fcno46</target_name> | |
| 1388 | + <target_type>String</target_type> | |
| 1389 | + <target_format/> | |
| 1390 | + <target_length>-1</target_length> | |
| 1391 | + <target_precision>-1</target_precision> | |
| 1392 | + <target_decimal_symbol/> | |
| 1393 | + <target_grouping_symbol/> | |
| 1394 | + <target_currency_symbol/> | |
| 1395 | + <target_null_string/> | |
| 1396 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1397 | + </field> | |
| 1398 | + <field> | |
| 1399 | + <field_name>all_content</field_name> | |
| 1400 | + <key_value>47</key_value> | |
| 1401 | + <target_name>fcno47</target_name> | |
| 1402 | + <target_type>String</target_type> | |
| 1403 | + <target_format/> | |
| 1404 | + <target_length>-1</target_length> | |
| 1405 | + <target_precision>-1</target_precision> | |
| 1406 | + <target_decimal_symbol/> | |
| 1407 | + <target_grouping_symbol/> | |
| 1408 | + <target_currency_symbol/> | |
| 1409 | + <target_null_string/> | |
| 1410 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1411 | + </field> | |
| 1412 | + <field> | |
| 1413 | + <field_name>all_content</field_name> | |
| 1414 | + <key_value>48</key_value> | |
| 1415 | + <target_name>fcno48</target_name> | |
| 1416 | + <target_type>String</target_type> | |
| 1417 | + <target_format/> | |
| 1418 | + <target_length>-1</target_length> | |
| 1419 | + <target_precision>-1</target_precision> | |
| 1420 | + <target_decimal_symbol/> | |
| 1421 | + <target_grouping_symbol/> | |
| 1422 | + <target_currency_symbol/> | |
| 1423 | + <target_null_string/> | |
| 1424 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1425 | + </field> | |
| 1426 | + <field> | |
| 1427 | + <field_name>all_content</field_name> | |
| 1428 | + <key_value>49</key_value> | |
| 1429 | + <target_name>fcno49</target_name> | |
| 1430 | + <target_type>String</target_type> | |
| 1431 | + <target_format/> | |
| 1432 | + <target_length>-1</target_length> | |
| 1433 | + <target_precision>-1</target_precision> | |
| 1434 | + <target_decimal_symbol/> | |
| 1435 | + <target_grouping_symbol/> | |
| 1436 | + <target_currency_symbol/> | |
| 1437 | + <target_null_string/> | |
| 1438 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1439 | + </field> | |
| 1440 | + <field> | |
| 1441 | + <field_name>all_content</field_name> | |
| 1442 | + <key_value>50</key_value> | |
| 1443 | + <target_name>fcno50</target_name> | |
| 1444 | + <target_type>String</target_type> | |
| 1445 | + <target_format/> | |
| 1446 | + <target_length>-1</target_length> | |
| 1447 | + <target_precision>-1</target_precision> | |
| 1448 | + <target_decimal_symbol/> | |
| 1449 | + <target_grouping_symbol/> | |
| 1450 | + <target_currency_symbol/> | |
| 1451 | + <target_null_string/> | |
| 1452 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1453 | + </field> | |
| 1454 | + <field> | |
| 1455 | + <field_name>all_content</field_name> | |
| 1456 | + <key_value>51</key_value> | |
| 1457 | + <target_name>fcno51</target_name> | |
| 1458 | + <target_type>String</target_type> | |
| 1459 | + <target_format/> | |
| 1460 | + <target_length>-1</target_length> | |
| 1461 | + <target_precision>-1</target_precision> | |
| 1462 | + <target_decimal_symbol/> | |
| 1463 | + <target_grouping_symbol/> | |
| 1464 | + <target_currency_symbol/> | |
| 1465 | + <target_null_string/> | |
| 1466 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1467 | + </field> | |
| 1468 | + <field> | |
| 1469 | + <field_name>all_content</field_name> | |
| 1470 | + <key_value>52</key_value> | |
| 1471 | + <target_name>fcno52</target_name> | |
| 1472 | + <target_type>String</target_type> | |
| 1473 | + <target_format/> | |
| 1474 | + <target_length>-1</target_length> | |
| 1475 | + <target_precision>-1</target_precision> | |
| 1476 | + <target_decimal_symbol/> | |
| 1477 | + <target_grouping_symbol/> | |
| 1478 | + <target_currency_symbol/> | |
| 1479 | + <target_null_string/> | |
| 1480 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1481 | + </field> | |
| 1482 | + <field> | |
| 1483 | + <field_name>all_content</field_name> | |
| 1484 | + <key_value>53</key_value> | |
| 1485 | + <target_name>fcno53</target_name> | |
| 1486 | + <target_type>String</target_type> | |
| 1487 | + <target_format/> | |
| 1488 | + <target_length>-1</target_length> | |
| 1489 | + <target_precision>-1</target_precision> | |
| 1490 | + <target_decimal_symbol/> | |
| 1491 | + <target_grouping_symbol/> | |
| 1492 | + <target_currency_symbol/> | |
| 1493 | + <target_null_string/> | |
| 1494 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1495 | + </field> | |
| 1496 | + <field> | |
| 1497 | + <field_name>all_content</field_name> | |
| 1498 | + <key_value>54</key_value> | |
| 1499 | + <target_name>fcno54</target_name> | |
| 1500 | + <target_type>String</target_type> | |
| 1501 | + <target_format/> | |
| 1502 | + <target_length>-1</target_length> | |
| 1503 | + <target_precision>-1</target_precision> | |
| 1504 | + <target_decimal_symbol/> | |
| 1505 | + <target_grouping_symbol/> | |
| 1506 | + <target_currency_symbol/> | |
| 1507 | + <target_null_string/> | |
| 1508 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1509 | + </field> | |
| 1510 | + <field> | |
| 1511 | + <field_name>all_content</field_name> | |
| 1512 | + <key_value>55</key_value> | |
| 1513 | + <target_name>fcno55</target_name> | |
| 1514 | + <target_type>String</target_type> | |
| 1515 | + <target_format/> | |
| 1516 | + <target_length>-1</target_length> | |
| 1517 | + <target_precision>-1</target_precision> | |
| 1518 | + <target_decimal_symbol/> | |
| 1519 | + <target_grouping_symbol/> | |
| 1520 | + <target_currency_symbol/> | |
| 1521 | + <target_null_string/> | |
| 1522 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1523 | + </field> | |
| 1524 | + <field> | |
| 1525 | + <field_name>all_content</field_name> | |
| 1526 | + <key_value>56</key_value> | |
| 1527 | + <target_name>fcno56</target_name> | |
| 1528 | + <target_type>String</target_type> | |
| 1529 | + <target_format/> | |
| 1530 | + <target_length>-1</target_length> | |
| 1531 | + <target_precision>-1</target_precision> | |
| 1532 | + <target_decimal_symbol/> | |
| 1533 | + <target_grouping_symbol/> | |
| 1534 | + <target_currency_symbol/> | |
| 1535 | + <target_null_string/> | |
| 1536 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1537 | + </field> | |
| 1538 | + <field> | |
| 1539 | + <field_name>all_content</field_name> | |
| 1540 | + <key_value>57</key_value> | |
| 1541 | + <target_name>fcno57</target_name> | |
| 1542 | + <target_type>String</target_type> | |
| 1543 | + <target_format/> | |
| 1544 | + <target_length>-1</target_length> | |
| 1545 | + <target_precision>-1</target_precision> | |
| 1546 | + <target_decimal_symbol/> | |
| 1547 | + <target_grouping_symbol/> | |
| 1548 | + <target_currency_symbol/> | |
| 1549 | + <target_null_string/> | |
| 1550 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1551 | + </field> | |
| 1552 | + <field> | |
| 1553 | + <field_name>all_content</field_name> | |
| 1554 | + <key_value>58</key_value> | |
| 1555 | + <target_name>fcno58</target_name> | |
| 1556 | + <target_type>String</target_type> | |
| 1557 | + <target_format/> | |
| 1558 | + <target_length>-1</target_length> | |
| 1559 | + <target_precision>-1</target_precision> | |
| 1560 | + <target_decimal_symbol/> | |
| 1561 | + <target_grouping_symbol/> | |
| 1562 | + <target_currency_symbol/> | |
| 1563 | + <target_null_string/> | |
| 1564 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1565 | + </field> | |
| 1566 | + <field> | |
| 1567 | + <field_name>all_content</field_name> | |
| 1568 | + <key_value>59</key_value> | |
| 1569 | + <target_name>fcno59</target_name> | |
| 1570 | + <target_type>String</target_type> | |
| 1571 | + <target_format/> | |
| 1572 | + <target_length>-1</target_length> | |
| 1573 | + <target_precision>-1</target_precision> | |
| 1574 | + <target_decimal_symbol/> | |
| 1575 | + <target_grouping_symbol/> | |
| 1576 | + <target_currency_symbol/> | |
| 1577 | + <target_null_string/> | |
| 1578 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1579 | + </field> | |
| 1580 | + <field> | |
| 1581 | + <field_name>all_content</field_name> | |
| 1582 | + <key_value>60</key_value> | |
| 1583 | + <target_name>fcno60</target_name> | |
| 1584 | + <target_type>String</target_type> | |
| 1585 | + <target_format/> | |
| 1586 | + <target_length>-1</target_length> | |
| 1587 | + <target_precision>-1</target_precision> | |
| 1588 | + <target_decimal_symbol/> | |
| 1589 | + <target_grouping_symbol/> | |
| 1590 | + <target_currency_symbol/> | |
| 1591 | + <target_null_string/> | |
| 1592 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1593 | + </field> | |
| 1594 | + <field> | |
| 1595 | + <field_name>all_content</field_name> | |
| 1596 | + <key_value>61</key_value> | |
| 1597 | + <target_name>fcno61</target_name> | |
| 1598 | + <target_type>String</target_type> | |
| 1599 | + <target_format/> | |
| 1600 | + <target_length>-1</target_length> | |
| 1601 | + <target_precision>-1</target_precision> | |
| 1602 | + <target_decimal_symbol/> | |
| 1603 | + <target_grouping_symbol/> | |
| 1604 | + <target_currency_symbol/> | |
| 1605 | + <target_null_string/> | |
| 1606 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1607 | + </field> | |
| 1608 | + <field> | |
| 1609 | + <field_name>all_content</field_name> | |
| 1610 | + <key_value>62</key_value> | |
| 1611 | + <target_name>fcno62</target_name> | |
| 1612 | + <target_type>String</target_type> | |
| 1613 | + <target_format/> | |
| 1614 | + <target_length>-1</target_length> | |
| 1615 | + <target_precision>-1</target_precision> | |
| 1616 | + <target_decimal_symbol/> | |
| 1617 | + <target_grouping_symbol/> | |
| 1618 | + <target_currency_symbol/> | |
| 1619 | + <target_null_string/> | |
| 1620 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1621 | + </field> | |
| 1622 | + <field> | |
| 1623 | + <field_name>all_content</field_name> | |
| 1624 | + <key_value>63</key_value> | |
| 1625 | + <target_name>fcno63</target_name> | |
| 1626 | + <target_type>String</target_type> | |
| 1627 | + <target_format/> | |
| 1628 | + <target_length>-1</target_length> | |
| 1629 | + <target_precision>-1</target_precision> | |
| 1630 | + <target_decimal_symbol/> | |
| 1631 | + <target_grouping_symbol/> | |
| 1632 | + <target_currency_symbol/> | |
| 1633 | + <target_null_string/> | |
| 1634 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1635 | + </field> | |
| 1636 | + <field> | |
| 1637 | + <field_name>all_content</field_name> | |
| 1638 | + <key_value>64</key_value> | |
| 1639 | + <target_name>fcno64</target_name> | |
| 1640 | + <target_type>String</target_type> | |
| 1641 | + <target_format/> | |
| 1642 | + <target_length>-1</target_length> | |
| 1643 | + <target_precision>-1</target_precision> | |
| 1644 | + <target_decimal_symbol/> | |
| 1645 | + <target_grouping_symbol/> | |
| 1646 | + <target_currency_symbol/> | |
| 1647 | + <target_null_string/> | |
| 1648 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1649 | + </field> | |
| 1650 | + <field> | |
| 1651 | + <field_name>all_content</field_name> | |
| 1652 | + <key_value>65</key_value> | |
| 1653 | + <target_name>fcno65</target_name> | |
| 1654 | + <target_type>String</target_type> | |
| 1655 | + <target_format/> | |
| 1656 | + <target_length>-1</target_length> | |
| 1657 | + <target_precision>-1</target_precision> | |
| 1658 | + <target_decimal_symbol/> | |
| 1659 | + <target_grouping_symbol/> | |
| 1660 | + <target_currency_symbol/> | |
| 1661 | + <target_null_string/> | |
| 1662 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1663 | + </field> | |
| 1664 | + <field> | |
| 1665 | + <field_name>all_content</field_name> | |
| 1666 | + <key_value>66</key_value> | |
| 1667 | + <target_name>fcno66</target_name> | |
| 1668 | + <target_type>String</target_type> | |
| 1669 | + <target_format/> | |
| 1670 | + <target_length>-1</target_length> | |
| 1671 | + <target_precision>-1</target_precision> | |
| 1672 | + <target_decimal_symbol/> | |
| 1673 | + <target_grouping_symbol/> | |
| 1674 | + <target_currency_symbol/> | |
| 1675 | + <target_null_string/> | |
| 1676 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1677 | + </field> | |
| 1678 | + <field> | |
| 1679 | + <field_name>all_content</field_name> | |
| 1680 | + <key_value>67</key_value> | |
| 1681 | + <target_name>fcno67</target_name> | |
| 1682 | + <target_type>String</target_type> | |
| 1683 | + <target_format/> | |
| 1684 | + <target_length>-1</target_length> | |
| 1685 | + <target_precision>-1</target_precision> | |
| 1686 | + <target_decimal_symbol/> | |
| 1687 | + <target_grouping_symbol/> | |
| 1688 | + <target_currency_symbol/> | |
| 1689 | + <target_null_string/> | |
| 1690 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1691 | + </field> | |
| 1692 | + <field> | |
| 1693 | + <field_name>all_content</field_name> | |
| 1694 | + <key_value>68</key_value> | |
| 1695 | + <target_name>fcno68</target_name> | |
| 1696 | + <target_type>String</target_type> | |
| 1697 | + <target_format/> | |
| 1698 | + <target_length>-1</target_length> | |
| 1699 | + <target_precision>-1</target_precision> | |
| 1700 | + <target_decimal_symbol/> | |
| 1701 | + <target_grouping_symbol/> | |
| 1702 | + <target_currency_symbol/> | |
| 1703 | + <target_null_string/> | |
| 1704 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1705 | + </field> | |
| 1706 | + <field> | |
| 1707 | + <field_name>all_content</field_name> | |
| 1708 | + <key_value>69</key_value> | |
| 1709 | + <target_name>fcno69</target_name> | |
| 1710 | + <target_type>String</target_type> | |
| 1711 | + <target_format/> | |
| 1712 | + <target_length>-1</target_length> | |
| 1713 | + <target_precision>-1</target_precision> | |
| 1714 | + <target_decimal_symbol/> | |
| 1715 | + <target_grouping_symbol/> | |
| 1716 | + <target_currency_symbol/> | |
| 1717 | + <target_null_string/> | |
| 1718 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1719 | + </field> | |
| 1720 | + <field> | |
| 1721 | + <field_name>all_content</field_name> | |
| 1722 | + <key_value>70</key_value> | |
| 1723 | + <target_name>fcno70</target_name> | |
| 1724 | + <target_type>String</target_type> | |
| 1725 | + <target_format/> | |
| 1726 | + <target_length>-1</target_length> | |
| 1727 | + <target_precision>-1</target_precision> | |
| 1728 | + <target_decimal_symbol/> | |
| 1729 | + <target_grouping_symbol/> | |
| 1730 | + <target_currency_symbol/> | |
| 1731 | + <target_null_string/> | |
| 1732 | + <target_aggregation_type>-</target_aggregation_type> | |
| 1733 | + </field> | |
| 1734 | + </fields> | |
| 1735 | + <cluster_schema/> | |
| 1736 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1737 | + <xloc>690</xloc> | |
| 1738 | + <yloc>272</yloc> | |
| 1739 | + <draw>Y</draw> | |
| 1740 | + </GUI> | |
| 1741 | + </step> | |
| 1742 | + | |
| 1743 | + <step> | |
| 1744 | + <name>去除字段</name> | |
| 1745 | + <type>SelectValues</type> | |
| 1746 | + <description/> | |
| 1747 | + <distribute>N</distribute> | |
| 1748 | + <custom_distribution/> | |
| 1749 | + <copies>1</copies> | |
| 1750 | + <partitioning> | |
| 1751 | + <method>none</method> | |
| 1752 | + <schema_name/> | |
| 1753 | + </partitioning> | |
| 1754 | + <fields> <field> <name>lp</name> | |
| 1755 | + <rename/> | |
| 1756 | + <length>-2</length> | |
| 1757 | + <precision>-2</precision> | |
| 1758 | + </field> <field> <name>fcno1</name> | |
| 1759 | + <rename/> | |
| 1760 | + <length>-2</length> | |
| 1761 | + <precision>-2</precision> | |
| 1762 | + </field> <field> <name>fcno2</name> | |
| 1763 | + <rename/> | |
| 1764 | + <length>-2</length> | |
| 1765 | + <precision>-2</precision> | |
| 1766 | + </field> <field> <name>fcno3</name> | |
| 1767 | + <rename/> | |
| 1768 | + <length>-2</length> | |
| 1769 | + <precision>-2</precision> | |
| 1770 | + </field> <field> <name>fcno4</name> | |
| 1771 | + <rename/> | |
| 1772 | + <length>-2</length> | |
| 1773 | + <precision>-2</precision> | |
| 1774 | + </field> <field> <name>fcno5</name> | |
| 1775 | + <rename/> | |
| 1776 | + <length>-2</length> | |
| 1777 | + <precision>-2</precision> | |
| 1778 | + </field> <field> <name>fcno6</name> | |
| 1779 | + <rename/> | |
| 1780 | + <length>-2</length> | |
| 1781 | + <precision>-2</precision> | |
| 1782 | + </field> <field> <name>fcno7</name> | |
| 1783 | + <rename/> | |
| 1784 | + <length>-2</length> | |
| 1785 | + <precision>-2</precision> | |
| 1786 | + </field> <field> <name>fcno8</name> | |
| 1787 | + <rename/> | |
| 1788 | + <length>-2</length> | |
| 1789 | + <precision>-2</precision> | |
| 1790 | + </field> <field> <name>fcno9</name> | |
| 1791 | + <rename/> | |
| 1792 | + <length>-2</length> | |
| 1793 | + <precision>-2</precision> | |
| 1794 | + </field> <field> <name>fcno10</name> | |
| 1795 | + <rename/> | |
| 1796 | + <length>-2</length> | |
| 1797 | + <precision>-2</precision> | |
| 1798 | + </field> <field> <name>fcno11</name> | |
| 1799 | + <rename/> | |
| 1800 | + <length>-2</length> | |
| 1801 | + <precision>-2</precision> | |
| 1802 | + </field> <field> <name>fcno12</name> | |
| 1803 | + <rename/> | |
| 1804 | + <length>-2</length> | |
| 1805 | + <precision>-2</precision> | |
| 1806 | + </field> <field> <name>fcno13</name> | |
| 1807 | + <rename/> | |
| 1808 | + <length>-2</length> | |
| 1809 | + <precision>-2</precision> | |
| 1810 | + </field> <field> <name>fcno14</name> | |
| 1811 | + <rename/> | |
| 1812 | + <length>-2</length> | |
| 1813 | + <precision>-2</precision> | |
| 1814 | + </field> <field> <name>fcno15</name> | |
| 1815 | + <rename/> | |
| 1816 | + <length>-2</length> | |
| 1817 | + <precision>-2</precision> | |
| 1818 | + </field> <field> <name>fcno16</name> | |
| 1819 | + <rename/> | |
| 1820 | + <length>-2</length> | |
| 1821 | + <precision>-2</precision> | |
| 1822 | + </field> <field> <name>fcno17</name> | |
| 1823 | + <rename/> | |
| 1824 | + <length>-2</length> | |
| 1825 | + <precision>-2</precision> | |
| 1826 | + </field> <field> <name>fcno18</name> | |
| 1827 | + <rename/> | |
| 1828 | + <length>-2</length> | |
| 1829 | + <precision>-2</precision> | |
| 1830 | + </field> <field> <name>fcno19</name> | |
| 1831 | + <rename/> | |
| 1832 | + <length>-2</length> | |
| 1833 | + <precision>-2</precision> | |
| 1834 | + </field> <field> <name>fcno20</name> | |
| 1835 | + <rename/> | |
| 1836 | + <length>-2</length> | |
| 1837 | + <precision>-2</precision> | |
| 1838 | + </field> <field> <name>fcno21</name> | |
| 1839 | + <rename/> | |
| 1840 | + <length>-2</length> | |
| 1841 | + <precision>-2</precision> | |
| 1842 | + </field> <field> <name>fcno22</name> | |
| 1843 | + <rename/> | |
| 1844 | + <length>-2</length> | |
| 1845 | + <precision>-2</precision> | |
| 1846 | + </field> <field> <name>fcno23</name> | |
| 1847 | + <rename/> | |
| 1848 | + <length>-2</length> | |
| 1849 | + <precision>-2</precision> | |
| 1850 | + </field> <field> <name>fcno24</name> | |
| 1851 | + <rename/> | |
| 1852 | + <length>-2</length> | |
| 1853 | + <precision>-2</precision> | |
| 1854 | + </field> <field> <name>fcno25</name> | |
| 1855 | + <rename/> | |
| 1856 | + <length>-2</length> | |
| 1857 | + <precision>-2</precision> | |
| 1858 | + </field> <field> <name>fcno26</name> | |
| 1859 | + <rename/> | |
| 1860 | + <length>-2</length> | |
| 1861 | + <precision>-2</precision> | |
| 1862 | + </field> <field> <name>fcno27</name> | |
| 1863 | + <rename/> | |
| 1864 | + <length>-2</length> | |
| 1865 | + <precision>-2</precision> | |
| 1866 | + </field> <field> <name>fcno28</name> | |
| 1867 | + <rename/> | |
| 1868 | + <length>-2</length> | |
| 1869 | + <precision>-2</precision> | |
| 1870 | + </field> <field> <name>fcno29</name> | |
| 1871 | + <rename/> | |
| 1872 | + <length>-2</length> | |
| 1873 | + <precision>-2</precision> | |
| 1874 | + </field> <field> <name>fcno30</name> | |
| 1875 | + <rename/> | |
| 1876 | + <length>-2</length> | |
| 1877 | + <precision>-2</precision> | |
| 1878 | + </field> <field> <name>fcno31</name> | |
| 1879 | + <rename/> | |
| 1880 | + <length>-2</length> | |
| 1881 | + <precision>-2</precision> | |
| 1882 | + </field> <field> <name>fcno32</name> | |
| 1883 | + <rename/> | |
| 1884 | + <length>-2</length> | |
| 1885 | + <precision>-2</precision> | |
| 1886 | + </field> <field> <name>fcno33</name> | |
| 1887 | + <rename/> | |
| 1888 | + <length>-2</length> | |
| 1889 | + <precision>-2</precision> | |
| 1890 | + </field> <field> <name>fcno34</name> | |
| 1891 | + <rename/> | |
| 1892 | + <length>-2</length> | |
| 1893 | + <precision>-2</precision> | |
| 1894 | + </field> <field> <name>fcno35</name> | |
| 1895 | + <rename/> | |
| 1896 | + <length>-2</length> | |
| 1897 | + <precision>-2</precision> | |
| 1898 | + </field> <field> <name>fcno36</name> | |
| 1899 | + <rename/> | |
| 1900 | + <length>-2</length> | |
| 1901 | + <precision>-2</precision> | |
| 1902 | + </field> <field> <name>fcno37</name> | |
| 1903 | + <rename/> | |
| 1904 | + <length>-2</length> | |
| 1905 | + <precision>-2</precision> | |
| 1906 | + </field> <field> <name>fcno38</name> | |
| 1907 | + <rename/> | |
| 1908 | + <length>-2</length> | |
| 1909 | + <precision>-2</precision> | |
| 1910 | + </field> <field> <name>fcno39</name> | |
| 1911 | + <rename/> | |
| 1912 | + <length>-2</length> | |
| 1913 | + <precision>-2</precision> | |
| 1914 | + </field> <field> <name>fcno40</name> | |
| 1915 | + <rename/> | |
| 1916 | + <length>-2</length> | |
| 1917 | + <precision>-2</precision> | |
| 1918 | + </field> <field> <name>fcno41</name> | |
| 1919 | + <rename/> | |
| 1920 | + <length>-2</length> | |
| 1921 | + <precision>-2</precision> | |
| 1922 | + </field> <field> <name>fcno42</name> | |
| 1923 | + <rename/> | |
| 1924 | + <length>-2</length> | |
| 1925 | + <precision>-2</precision> | |
| 1926 | + </field> <field> <name>fcno43</name> | |
| 1927 | + <rename/> | |
| 1928 | + <length>-2</length> | |
| 1929 | + <precision>-2</precision> | |
| 1930 | + </field> <field> <name>fcno44</name> | |
| 1931 | + <rename/> | |
| 1932 | + <length>-2</length> | |
| 1933 | + <precision>-2</precision> | |
| 1934 | + </field> <field> <name>fcno45</name> | |
| 1935 | + <rename/> | |
| 1936 | + <length>-2</length> | |
| 1937 | + <precision>-2</precision> | |
| 1938 | + </field> <field> <name>fcno46</name> | |
| 1939 | + <rename/> | |
| 1940 | + <length>-2</length> | |
| 1941 | + <precision>-2</precision> | |
| 1942 | + </field> <field> <name>fcno47</name> | |
| 1943 | + <rename/> | |
| 1944 | + <length>-2</length> | |
| 1945 | + <precision>-2</precision> | |
| 1946 | + </field> <field> <name>fcno48</name> | |
| 1947 | + <rename/> | |
| 1948 | + <length>-2</length> | |
| 1949 | + <precision>-2</precision> | |
| 1950 | + </field> <field> <name>fcno49</name> | |
| 1951 | + <rename/> | |
| 1952 | + <length>-2</length> | |
| 1953 | + <precision>-2</precision> | |
| 1954 | + </field> <field> <name>fcno50</name> | |
| 1955 | + <rename/> | |
| 1956 | + <length>-2</length> | |
| 1957 | + <precision>-2</precision> | |
| 1958 | + </field> <field> <name>fcno51</name> | |
| 1959 | + <rename/> | |
| 1960 | + <length>-2</length> | |
| 1961 | + <precision>-2</precision> | |
| 1962 | + </field> <field> <name>fcno52</name> | |
| 1963 | + <rename/> | |
| 1964 | + <length>-2</length> | |
| 1965 | + <precision>-2</precision> | |
| 1966 | + </field> <field> <name>fcno53</name> | |
| 1967 | + <rename/> | |
| 1968 | + <length>-2</length> | |
| 1969 | + <precision>-2</precision> | |
| 1970 | + </field> <field> <name>fcno54</name> | |
| 1971 | + <rename/> | |
| 1972 | + <length>-2</length> | |
| 1973 | + <precision>-2</precision> | |
| 1974 | + </field> <field> <name>fcno55</name> | |
| 1975 | + <rename/> | |
| 1976 | + <length>-2</length> | |
| 1977 | + <precision>-2</precision> | |
| 1978 | + </field> <field> <name>fcno56</name> | |
| 1979 | + <rename/> | |
| 1980 | + <length>-2</length> | |
| 1981 | + <precision>-2</precision> | |
| 1982 | + </field> <field> <name>fcno57</name> | |
| 1983 | + <rename/> | |
| 1984 | + <length>-2</length> | |
| 1985 | + <precision>-2</precision> | |
| 1986 | + </field> <field> <name>fcno58</name> | |
| 1987 | + <rename/> | |
| 1988 | + <length>-2</length> | |
| 1989 | + <precision>-2</precision> | |
| 1990 | + </field> <field> <name>fcno59</name> | |
| 1991 | + <rename/> | |
| 1992 | + <length>-2</length> | |
| 1993 | + <precision>-2</precision> | |
| 1994 | + </field> <field> <name>fcno60</name> | |
| 1995 | + <rename/> | |
| 1996 | + <length>-2</length> | |
| 1997 | + <precision>-2</precision> | |
| 1998 | + </field> <field> <name>fcno61</name> | |
| 1999 | + <rename/> | |
| 2000 | + <length>-2</length> | |
| 2001 | + <precision>-2</precision> | |
| 2002 | + </field> <field> <name>fcno62</name> | |
| 2003 | + <rename/> | |
| 2004 | + <length>-2</length> | |
| 2005 | + <precision>-2</precision> | |
| 2006 | + </field> <field> <name>fcno63</name> | |
| 2007 | + <rename/> | |
| 2008 | + <length>-2</length> | |
| 2009 | + <precision>-2</precision> | |
| 2010 | + </field> <field> <name>fcno64</name> | |
| 2011 | + <rename/> | |
| 2012 | + <length>-2</length> | |
| 2013 | + <precision>-2</precision> | |
| 2014 | + </field> <field> <name>fcno65</name> | |
| 2015 | + <rename/> | |
| 2016 | + <length>-2</length> | |
| 2017 | + <precision>-2</precision> | |
| 2018 | + </field> <field> <name>fcno66</name> | |
| 2019 | + <rename/> | |
| 2020 | + <length>-2</length> | |
| 2021 | + <precision>-2</precision> | |
| 2022 | + </field> <field> <name>fcno67</name> | |
| 2023 | + <rename/> | |
| 2024 | + <length>-2</length> | |
| 2025 | + <precision>-2</precision> | |
| 2026 | + </field> <field> <name>fcno68</name> | |
| 2027 | + <rename/> | |
| 2028 | + <length>-2</length> | |
| 2029 | + <precision>-2</precision> | |
| 2030 | + </field> <field> <name>fcno69</name> | |
| 2031 | + <rename/> | |
| 2032 | + <length>-2</length> | |
| 2033 | + <precision>-2</precision> | |
| 2034 | + </field> <field> <name>fcno70</name> | |
| 2035 | + <rename/> | |
| 2036 | + <length>-2</length> | |
| 2037 | + <precision>-2</precision> | |
| 2038 | + </field> <select_unspecified>N</select_unspecified> | |
| 2039 | + </fields> <cluster_schema/> | |
| 2040 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2041 | + <xloc>691</xloc> | |
| 2042 | + <yloc>361</yloc> | |
| 2043 | + <draw>Y</draw> | |
| 2044 | + </GUI> | |
| 2045 | + </step> | |
| 2046 | + | |
| 2047 | + <step> | |
| 2048 | + <name>合并内容</name> | |
| 2049 | + <type>ScriptValueMod</type> | |
| 2050 | + <description/> | |
| 2051 | + <distribute>Y</distribute> | |
| 2052 | + <custom_distribution/> | |
| 2053 | + <copies>1</copies> | |
| 2054 | + <partitioning> | |
| 2055 | + <method>none</method> | |
| 2056 | + <schema_name/> | |
| 2057 | + </partitioning> | |
| 2058 | + <compatible>N</compatible> | |
| 2059 | + <optimizationLevel>9</optimizationLevel> | |
| 2060 | + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 2061 | + <jsScript_name>Script 1</jsScript_name> | |
| 2062 | + <jsScript_script>//Script here

// 顺序,id,fcsj,jhlc,zdname,bctype,xldir,isfb
var all_content_array = [];
var all_content = ""; 
all_content_array.push(id);
all_content_array.push(fcsj);
all_content_array.push(jhlc);
all_content_array.push(fczdName);
all_content_array.push(bc_type);
all_content_array.push(xl_dir);
all_content_array.push(isfb);
all_content_array.push(qdz || 'null');
all_content_array.push(zdz || 'null');
all_content_array.push(tcc || 'null');

all_content = all_content_array.join(","); // 逗号分隔</jsScript_script> | |
| 2063 | + </jsScript> </jsScripts> <fields> <field> <name>all_content</name> | |
| 2064 | + <rename>all_content</rename> | |
| 2065 | + <type>String</type> | |
| 2066 | + <length>-1</length> | |
| 2067 | + <precision>-1</precision> | |
| 2068 | + <replace>N</replace> | |
| 2069 | + </field> </fields> <cluster_schema/> | |
| 2070 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2071 | + <xloc>551</xloc> | |
| 2072 | + <yloc>366</yloc> | |
| 2073 | + <draw>Y</draw> | |
| 2074 | + </GUI> | |
| 2075 | + </step> | |
| 2076 | + | |
| 2077 | + <step> | |
| 2078 | + <name>字段选择</name> | |
| 2079 | + <type>SelectValues</type> | |
| 2080 | + <description/> | |
| 2081 | + <distribute>Y</distribute> | |
| 2082 | + <custom_distribution/> | |
| 2083 | + <copies>1</copies> | |
| 2084 | + <partitioning> | |
| 2085 | + <method>none</method> | |
| 2086 | + <schema_name/> | |
| 2087 | + </partitioning> | |
| 2088 | + <fields> <field> <name>id</name> | |
| 2089 | + <rename/> | |
| 2090 | + <length>-2</length> | |
| 2091 | + <precision>-2</precision> | |
| 2092 | + </field> <field> <name>lp</name> | |
| 2093 | + <rename/> | |
| 2094 | + <length>-2</length> | |
| 2095 | + <precision>-2</precision> | |
| 2096 | + </field> <field> <name>fcsj</name> | |
| 2097 | + <rename/> | |
| 2098 | + <length>-2</length> | |
| 2099 | + <precision>-2</precision> | |
| 2100 | + </field> <field> <name>fcno</name> | |
| 2101 | + <rename/> | |
| 2102 | + <length>-2</length> | |
| 2103 | + <precision>-2</precision> | |
| 2104 | + </field> <field> <name>bcs</name> | |
| 2105 | + <rename/> | |
| 2106 | + <length>-2</length> | |
| 2107 | + <precision>-2</precision> | |
| 2108 | + </field> <field> <name>bc_type</name> | |
| 2109 | + <rename/> | |
| 2110 | + <length>-2</length> | |
| 2111 | + <precision>-2</precision> | |
| 2112 | + </field> <field> <name>qdzName</name> | |
| 2113 | + <rename/> | |
| 2114 | + <length>-2</length> | |
| 2115 | + <precision>-2</precision> | |
| 2116 | + </field> <field> <name>zdzName</name> | |
| 2117 | + <rename/> | |
| 2118 | + <length>-2</length> | |
| 2119 | + <precision>-2</precision> | |
| 2120 | + </field> <field> <name>xl_dir</name> | |
| 2121 | + <rename/> | |
| 2122 | + <length>-2</length> | |
| 2123 | + <precision>-2</precision> | |
| 2124 | + </field> <field> <name>isfb</name> | |
| 2125 | + <rename/> | |
| 2126 | + <length>-2</length> | |
| 2127 | + <precision>-2</precision> | |
| 2128 | + </field> <field> <name>jhlc</name> | |
| 2129 | + <rename/> | |
| 2130 | + <length>-2</length> | |
| 2131 | + <precision>-2</precision> | |
| 2132 | + </field> <field> <name>qdz</name> | |
| 2133 | + <rename/> | |
| 2134 | + <length>-2</length> | |
| 2135 | + <precision>-2</precision> | |
| 2136 | + </field> <field> <name>zdz</name> | |
| 2137 | + <rename/> | |
| 2138 | + <length>-2</length> | |
| 2139 | + <precision>-2</precision> | |
| 2140 | + </field> <field> <name>tcc</name> | |
| 2141 | + <rename/> | |
| 2142 | + <length>-2</length> | |
| 2143 | + <precision>-2</precision> | |
| 2144 | + </field> <select_unspecified>N</select_unspecified> | |
| 2145 | + </fields> <cluster_schema/> | |
| 2146 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2147 | + <xloc>690</xloc> | |
| 2148 | + <yloc>188</yloc> | |
| 2149 | + <draw>Y</draw> | |
| 2150 | + </GUI> | |
| 2151 | + </step> | |
| 2152 | + | |
| 2153 | + <step> | |
| 2154 | + <name>字段选择 2</name> | |
| 2155 | + <type>SelectValues</type> | |
| 2156 | + <description/> | |
| 2157 | + <distribute>Y</distribute> | |
| 2158 | + <custom_distribution/> | |
| 2159 | + <copies>1</copies> | |
| 2160 | + <partitioning> | |
| 2161 | + <method>none</method> | |
| 2162 | + <schema_name/> | |
| 2163 | + </partitioning> | |
| 2164 | + <fields> <field> <name>id</name> | |
| 2165 | + <rename/> | |
| 2166 | + <length>-2</length> | |
| 2167 | + <precision>-2</precision> | |
| 2168 | + </field> <field> <name>lp</name> | |
| 2169 | + <rename/> | |
| 2170 | + <length>-2</length> | |
| 2171 | + <precision>-2</precision> | |
| 2172 | + </field> <field> <name>fcsj</name> | |
| 2173 | + <rename/> | |
| 2174 | + <length>-2</length> | |
| 2175 | + <precision>-2</precision> | |
| 2176 | + </field> <field> <name>fcno</name> | |
| 2177 | + <rename/> | |
| 2178 | + <length>-2</length> | |
| 2179 | + <precision>-2</precision> | |
| 2180 | + </field> <field> <name>bcs</name> | |
| 2181 | + <rename/> | |
| 2182 | + <length>-2</length> | |
| 2183 | + <precision>-2</precision> | |
| 2184 | + </field> <field> <name>bc_type</name> | |
| 2185 | + <rename/> | |
| 2186 | + <length>-2</length> | |
| 2187 | + <precision>-2</precision> | |
| 2188 | + </field> <field> <name>qdzName</name> | |
| 2189 | + <rename/> | |
| 2190 | + <length>-2</length> | |
| 2191 | + <precision>-2</precision> | |
| 2192 | + </field> <field> <name>zdzName</name> | |
| 2193 | + <rename/> | |
| 2194 | + <length>-2</length> | |
| 2195 | + <precision>-2</precision> | |
| 2196 | + </field> <field> <name>xl_dir</name> | |
| 2197 | + <rename/> | |
| 2198 | + <length>-2</length> | |
| 2199 | + <precision>-2</precision> | |
| 2200 | + </field> <field> <name>isfb</name> | |
| 2201 | + <rename/> | |
| 2202 | + <length>-2</length> | |
| 2203 | + <precision>-2</precision> | |
| 2204 | + </field> <field> <name>jhlc</name> | |
| 2205 | + <rename/> | |
| 2206 | + <length>-2</length> | |
| 2207 | + <precision>-2</precision> | |
| 2208 | + </field> <field> <name>qdz</name> | |
| 2209 | + <rename/> | |
| 2210 | + <length>-2</length> | |
| 2211 | + <precision>-2</precision> | |
| 2212 | + </field> <field> <name>zdz</name> | |
| 2213 | + <rename/> | |
| 2214 | + <length>-2</length> | |
| 2215 | + <precision>-2</precision> | |
| 2216 | + </field> <field> <name>tcc</name> | |
| 2217 | + <rename/> | |
| 2218 | + <length>-2</length> | |
| 2219 | + <precision>-2</precision> | |
| 2220 | + </field> <select_unspecified>N</select_unspecified> | |
| 2221 | + </fields> <cluster_schema/> | |
| 2222 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2223 | + <xloc>402</xloc> | |
| 2224 | + <yloc>189</yloc> | |
| 2225 | + <draw>Y</draw> | |
| 2226 | + </GUI> | |
| 2227 | + </step> | |
| 2228 | + | |
| 2229 | + <step> | |
| 2230 | + <name>排序记录</name> | |
| 2231 | + <type>SortRows</type> | |
| 2232 | + <description/> | |
| 2233 | + <distribute>Y</distribute> | |
| 2234 | + <custom_distribution/> | |
| 2235 | + <copies>1</copies> | |
| 2236 | + <partitioning> | |
| 2237 | + <method>none</method> | |
| 2238 | + <schema_name/> | |
| 2239 | + </partitioning> | |
| 2240 | + <directory>%%java.io.tmpdir%%</directory> | |
| 2241 | + <prefix>out</prefix> | |
| 2242 | + <sort_size>1000000</sort_size> | |
| 2243 | + <free_memory/> | |
| 2244 | + <compress>N</compress> | |
| 2245 | + <compress_variable/> | |
| 2246 | + <unique_rows>N</unique_rows> | |
| 2247 | + <fields> | |
| 2248 | + <field> | |
| 2249 | + <name>bcs</name> | |
| 2250 | + <ascending>Y</ascending> | |
| 2251 | + <case_sensitive>N</case_sensitive> | |
| 2252 | + <presorted>N</presorted> | |
| 2253 | + </field> | |
| 2254 | + </fields> | |
| 2255 | + <cluster_schema/> | |
| 2256 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2257 | + <xloc>549</xloc> | |
| 2258 | + <yloc>191</yloc> | |
| 2259 | + <draw>Y</draw> | |
| 2260 | + </GUI> | |
| 2261 | + </step> | |
| 2262 | + | |
| 2263 | + <step> | |
| 2264 | + <name>文本文件输出</name> | |
| 2265 | + <type>TextFileOutput</type> | |
| 2266 | + <description/> | |
| 2267 | + <distribute>Y</distribute> | |
| 2268 | + <custom_distribution/> | |
| 2269 | + <copies>1</copies> | |
| 2270 | + <partitioning> | |
| 2271 | + <method>none</method> | |
| 2272 | + <schema_name/> | |
| 2273 | + </partitioning> | |
| 2274 | + <separator>;</separator> | |
| 2275 | + <enclosure>"</enclosure> | |
| 2276 | + <enclosure_forced>N</enclosure_forced> | |
| 2277 | + <enclosure_fix_disabled>N</enclosure_fix_disabled> | |
| 2278 | + <header>Y</header> | |
| 2279 | + <footer>N</footer> | |
| 2280 | + <format>DOS</format> | |
| 2281 | + <compression>None</compression> | |
| 2282 | + <encoding>UTF-8</encoding> | |
| 2283 | + <endedLine/> | |
| 2284 | + <fileNameInField>N</fileNameInField> | |
| 2285 | + <fileNameField/> | |
| 2286 | + <create_parent_folder>Y</create_parent_folder> | |
| 2287 | + <file> | |
| 2288 | + <name>${tempfilepath}</name> | |
| 2289 | + <is_command>N</is_command> | |
| 2290 | + <servlet_output>N</servlet_output> | |
| 2291 | + <do_not_open_new_file_init>N</do_not_open_new_file_init> | |
| 2292 | + <extention>txt</extention> | |
| 2293 | + <append>N</append> | |
| 2294 | + <split>N</split> | |
| 2295 | + <haspartno>N</haspartno> | |
| 2296 | + <add_date>N</add_date> | |
| 2297 | + <add_time>N</add_time> | |
| 2298 | + <SpecifyFormat>N</SpecifyFormat> | |
| 2299 | + <date_time_format/> | |
| 2300 | + <add_to_result_filenames>Y</add_to_result_filenames> | |
| 2301 | + <pad>N</pad> | |
| 2302 | + <fast_dump>N</fast_dump> | |
| 2303 | + <splitevery>0</splitevery> | |
| 2304 | + </file> | |
| 2305 | + <fields> | |
| 2306 | + <field> | |
| 2307 | + <name>lp</name> | |
| 2308 | + <type>String</type> | |
| 2309 | + <format/> | |
| 2310 | + <currency/> | |
| 2311 | + <decimal/> | |
| 2312 | + <group/> | |
| 2313 | + <nullif/> | |
| 2314 | + <trim_type>none</trim_type> | |
| 2315 | + <length>255</length> | |
| 2316 | + <precision>-1</precision> | |
| 2317 | + </field> | |
| 2318 | + <field> | |
| 2319 | + <name>fcno1</name> | |
| 2320 | + <type>String</type> | |
| 2321 | + <format/> | |
| 2322 | + <currency/> | |
| 2323 | + <decimal/> | |
| 2324 | + <group/> | |
| 2325 | + <nullif/> | |
| 2326 | + <trim_type>none</trim_type> | |
| 2327 | + <length>-1</length> | |
| 2328 | + <precision>-1</precision> | |
| 2329 | + </field> | |
| 2330 | + <field> | |
| 2331 | + <name>fcno2</name> | |
| 2332 | + <type>String</type> | |
| 2333 | + <format/> | |
| 2334 | + <currency/> | |
| 2335 | + <decimal/> | |
| 2336 | + <group/> | |
| 2337 | + <nullif/> | |
| 2338 | + <trim_type>none</trim_type> | |
| 2339 | + <length>-1</length> | |
| 2340 | + <precision>-1</precision> | |
| 2341 | + </field> | |
| 2342 | + <field> | |
| 2343 | + <name>fcno3</name> | |
| 2344 | + <type>String</type> | |
| 2345 | + <format/> | |
| 2346 | + <currency/> | |
| 2347 | + <decimal/> | |
| 2348 | + <group/> | |
| 2349 | + <nullif/> | |
| 2350 | + <trim_type>none</trim_type> | |
| 2351 | + <length>-1</length> | |
| 2352 | + <precision>-1</precision> | |
| 2353 | + </field> | |
| 2354 | + <field> | |
| 2355 | + <name>fcno4</name> | |
| 2356 | + <type>String</type> | |
| 2357 | + <format/> | |
| 2358 | + <currency/> | |
| 2359 | + <decimal/> | |
| 2360 | + <group/> | |
| 2361 | + <nullif/> | |
| 2362 | + <trim_type>none</trim_type> | |
| 2363 | + <length>-1</length> | |
| 2364 | + <precision>-1</precision> | |
| 2365 | + </field> | |
| 2366 | + <field> | |
| 2367 | + <name>fcno5</name> | |
| 2368 | + <type>String</type> | |
| 2369 | + <format/> | |
| 2370 | + <currency/> | |
| 2371 | + <decimal/> | |
| 2372 | + <group/> | |
| 2373 | + <nullif/> | |
| 2374 | + <trim_type>none</trim_type> | |
| 2375 | + <length>-1</length> | |
| 2376 | + <precision>-1</precision> | |
| 2377 | + </field> | |
| 2378 | + <field> | |
| 2379 | + <name>fcno6</name> | |
| 2380 | + <type>String</type> | |
| 2381 | + <format/> | |
| 2382 | + <currency/> | |
| 2383 | + <decimal/> | |
| 2384 | + <group/> | |
| 2385 | + <nullif/> | |
| 2386 | + <trim_type>none</trim_type> | |
| 2387 | + <length>-1</length> | |
| 2388 | + <precision>-1</precision> | |
| 2389 | + </field> | |
| 2390 | + <field> | |
| 2391 | + <name>fcno7</name> | |
| 2392 | + <type>String</type> | |
| 2393 | + <format/> | |
| 2394 | + <currency/> | |
| 2395 | + <decimal/> | |
| 2396 | + <group/> | |
| 2397 | + <nullif/> | |
| 2398 | + <trim_type>none</trim_type> | |
| 2399 | + <length>-1</length> | |
| 2400 | + <precision>-1</precision> | |
| 2401 | + </field> | |
| 2402 | + <field> | |
| 2403 | + <name>fcno8</name> | |
| 2404 | + <type>String</type> | |
| 2405 | + <format/> | |
| 2406 | + <currency/> | |
| 2407 | + <decimal/> | |
| 2408 | + <group/> | |
| 2409 | + <nullif/> | |
| 2410 | + <trim_type>none</trim_type> | |
| 2411 | + <length>-1</length> | |
| 2412 | + <precision>-1</precision> | |
| 2413 | + </field> | |
| 2414 | + <field> | |
| 2415 | + <name>fcno9</name> | |
| 2416 | + <type>String</type> | |
| 2417 | + <format/> | |
| 2418 | + <currency/> | |
| 2419 | + <decimal/> | |
| 2420 | + <group/> | |
| 2421 | + <nullif/> | |
| 2422 | + <trim_type>none</trim_type> | |
| 2423 | + <length>-1</length> | |
| 2424 | + <precision>-1</precision> | |
| 2425 | + </field> | |
| 2426 | + <field> | |
| 2427 | + <name>fcno10</name> | |
| 2428 | + <type>String</type> | |
| 2429 | + <format/> | |
| 2430 | + <currency/> | |
| 2431 | + <decimal/> | |
| 2432 | + <group/> | |
| 2433 | + <nullif/> | |
| 2434 | + <trim_type>none</trim_type> | |
| 2435 | + <length>-1</length> | |
| 2436 | + <precision>-1</precision> | |
| 2437 | + </field> | |
| 2438 | + <field> | |
| 2439 | + <name>fcno11</name> | |
| 2440 | + <type>String</type> | |
| 2441 | + <format/> | |
| 2442 | + <currency/> | |
| 2443 | + <decimal/> | |
| 2444 | + <group/> | |
| 2445 | + <nullif/> | |
| 2446 | + <trim_type>none</trim_type> | |
| 2447 | + <length>-1</length> | |
| 2448 | + <precision>-1</precision> | |
| 2449 | + </field> | |
| 2450 | + <field> | |
| 2451 | + <name>fcno12</name> | |
| 2452 | + <type>String</type> | |
| 2453 | + <format/> | |
| 2454 | + <currency/> | |
| 2455 | + <decimal/> | |
| 2456 | + <group/> | |
| 2457 | + <nullif/> | |
| 2458 | + <trim_type>none</trim_type> | |
| 2459 | + <length>-1</length> | |
| 2460 | + <precision>-1</precision> | |
| 2461 | + </field> | |
| 2462 | + <field> | |
| 2463 | + <name>fcno13</name> | |
| 2464 | + <type>String</type> | |
| 2465 | + <format/> | |
| 2466 | + <currency/> | |
| 2467 | + <decimal/> | |
| 2468 | + <group/> | |
| 2469 | + <nullif/> | |
| 2470 | + <trim_type>none</trim_type> | |
| 2471 | + <length>-1</length> | |
| 2472 | + <precision>-1</precision> | |
| 2473 | + </field> | |
| 2474 | + <field> | |
| 2475 | + <name>fcno14</name> | |
| 2476 | + <type>String</type> | |
| 2477 | + <format/> | |
| 2478 | + <currency/> | |
| 2479 | + <decimal/> | |
| 2480 | + <group/> | |
| 2481 | + <nullif/> | |
| 2482 | + <trim_type>none</trim_type> | |
| 2483 | + <length>-1</length> | |
| 2484 | + <precision>-1</precision> | |
| 2485 | + </field> | |
| 2486 | + <field> | |
| 2487 | + <name>fcno15</name> | |
| 2488 | + <type>String</type> | |
| 2489 | + <format/> | |
| 2490 | + <currency/> | |
| 2491 | + <decimal/> | |
| 2492 | + <group/> | |
| 2493 | + <nullif/> | |
| 2494 | + <trim_type>none</trim_type> | |
| 2495 | + <length>-1</length> | |
| 2496 | + <precision>-1</precision> | |
| 2497 | + </field> | |
| 2498 | + <field> | |
| 2499 | + <name>fcno16</name> | |
| 2500 | + <type>String</type> | |
| 2501 | + <format/> | |
| 2502 | + <currency/> | |
| 2503 | + <decimal/> | |
| 2504 | + <group/> | |
| 2505 | + <nullif/> | |
| 2506 | + <trim_type>none</trim_type> | |
| 2507 | + <length>-1</length> | |
| 2508 | + <precision>-1</precision> | |
| 2509 | + </field> | |
| 2510 | + <field> | |
| 2511 | + <name>fcno17</name> | |
| 2512 | + <type>String</type> | |
| 2513 | + <format/> | |
| 2514 | + <currency/> | |
| 2515 | + <decimal/> | |
| 2516 | + <group/> | |
| 2517 | + <nullif/> | |
| 2518 | + <trim_type>none</trim_type> | |
| 2519 | + <length>-1</length> | |
| 2520 | + <precision>-1</precision> | |
| 2521 | + </field> | |
| 2522 | + <field> | |
| 2523 | + <name>fcno18</name> | |
| 2524 | + <type>String</type> | |
| 2525 | + <format/> | |
| 2526 | + <currency/> | |
| 2527 | + <decimal/> | |
| 2528 | + <group/> | |
| 2529 | + <nullif/> | |
| 2530 | + <trim_type>none</trim_type> | |
| 2531 | + <length>-1</length> | |
| 2532 | + <precision>-1</precision> | |
| 2533 | + </field> | |
| 2534 | + <field> | |
| 2535 | + <name>fcno19</name> | |
| 2536 | + <type>String</type> | |
| 2537 | + <format/> | |
| 2538 | + <currency/> | |
| 2539 | + <decimal/> | |
| 2540 | + <group/> | |
| 2541 | + <nullif/> | |
| 2542 | + <trim_type>none</trim_type> | |
| 2543 | + <length>-1</length> | |
| 2544 | + <precision>-1</precision> | |
| 2545 | + </field> | |
| 2546 | + <field> | |
| 2547 | + <name>fcno20</name> | |
| 2548 | + <type>String</type> | |
| 2549 | + <format/> | |
| 2550 | + <currency/> | |
| 2551 | + <decimal/> | |
| 2552 | + <group/> | |
| 2553 | + <nullif/> | |
| 2554 | + <trim_type>none</trim_type> | |
| 2555 | + <length>-1</length> | |
| 2556 | + <precision>-1</precision> | |
| 2557 | + </field> | |
| 2558 | + <field> | |
| 2559 | + <name>fcno21</name> | |
| 2560 | + <type>String</type> | |
| 2561 | + <format/> | |
| 2562 | + <currency/> | |
| 2563 | + <decimal/> | |
| 2564 | + <group/> | |
| 2565 | + <nullif/> | |
| 2566 | + <trim_type>none</trim_type> | |
| 2567 | + <length>-1</length> | |
| 2568 | + <precision>-1</precision> | |
| 2569 | + </field> | |
| 2570 | + <field> | |
| 2571 | + <name>fcno22</name> | |
| 2572 | + <type>String</type> | |
| 2573 | + <format/> | |
| 2574 | + <currency/> | |
| 2575 | + <decimal/> | |
| 2576 | + <group/> | |
| 2577 | + <nullif/> | |
| 2578 | + <trim_type>none</trim_type> | |
| 2579 | + <length>-1</length> | |
| 2580 | + <precision>-1</precision> | |
| 2581 | + </field> | |
| 2582 | + <field> | |
| 2583 | + <name>fcno23</name> | |
| 2584 | + <type>String</type> | |
| 2585 | + <format/> | |
| 2586 | + <currency/> | |
| 2587 | + <decimal/> | |
| 2588 | + <group/> | |
| 2589 | + <nullif/> | |
| 2590 | + <trim_type>none</trim_type> | |
| 2591 | + <length>-1</length> | |
| 2592 | + <precision>-1</precision> | |
| 2593 | + </field> | |
| 2594 | + <field> | |
| 2595 | + <name>fcno24</name> | |
| 2596 | + <type>String</type> | |
| 2597 | + <format/> | |
| 2598 | + <currency/> | |
| 2599 | + <decimal/> | |
| 2600 | + <group/> | |
| 2601 | + <nullif/> | |
| 2602 | + <trim_type>none</trim_type> | |
| 2603 | + <length>-1</length> | |
| 2604 | + <precision>-1</precision> | |
| 2605 | + </field> | |
| 2606 | + <field> | |
| 2607 | + <name>fcno25</name> | |
| 2608 | + <type>String</type> | |
| 2609 | + <format/> | |
| 2610 | + <currency/> | |
| 2611 | + <decimal/> | |
| 2612 | + <group/> | |
| 2613 | + <nullif/> | |
| 2614 | + <trim_type>none</trim_type> | |
| 2615 | + <length>-1</length> | |
| 2616 | + <precision>-1</precision> | |
| 2617 | + </field> | |
| 2618 | + <field> | |
| 2619 | + <name>fcno26</name> | |
| 2620 | + <type>String</type> | |
| 2621 | + <format/> | |
| 2622 | + <currency/> | |
| 2623 | + <decimal/> | |
| 2624 | + <group/> | |
| 2625 | + <nullif/> | |
| 2626 | + <trim_type>none</trim_type> | |
| 2627 | + <length>-1</length> | |
| 2628 | + <precision>-1</precision> | |
| 2629 | + </field> | |
| 2630 | + <field> | |
| 2631 | + <name>fcno27</name> | |
| 2632 | + <type>String</type> | |
| 2633 | + <format/> | |
| 2634 | + <currency/> | |
| 2635 | + <decimal/> | |
| 2636 | + <group/> | |
| 2637 | + <nullif/> | |
| 2638 | + <trim_type>none</trim_type> | |
| 2639 | + <length>-1</length> | |
| 2640 | + <precision>-1</precision> | |
| 2641 | + </field> | |
| 2642 | + <field> | |
| 2643 | + <name>fcno28</name> | |
| 2644 | + <type>String</type> | |
| 2645 | + <format/> | |
| 2646 | + <currency/> | |
| 2647 | + <decimal/> | |
| 2648 | + <group/> | |
| 2649 | + <nullif/> | |
| 2650 | + <trim_type>none</trim_type> | |
| 2651 | + <length>-1</length> | |
| 2652 | + <precision>-1</precision> | |
| 2653 | + </field> | |
| 2654 | + <field> | |
| 2655 | + <name>fcno29</name> | |
| 2656 | + <type>String</type> | |
| 2657 | + <format/> | |
| 2658 | + <currency/> | |
| 2659 | + <decimal/> | |
| 2660 | + <group/> | |
| 2661 | + <nullif/> | |
| 2662 | + <trim_type>none</trim_type> | |
| 2663 | + <length>-1</length> | |
| 2664 | + <precision>-1</precision> | |
| 2665 | + </field> | |
| 2666 | + <field> | |
| 2667 | + <name>fcno30</name> | |
| 2668 | + <type>String</type> | |
| 2669 | + <format/> | |
| 2670 | + <currency/> | |
| 2671 | + <decimal/> | |
| 2672 | + <group/> | |
| 2673 | + <nullif/> | |
| 2674 | + <trim_type>none</trim_type> | |
| 2675 | + <length>-1</length> | |
| 2676 | + <precision>-1</precision> | |
| 2677 | + </field> | |
| 2678 | + <field> | |
| 2679 | + <name>fcno31</name> | |
| 2680 | + <type>String</type> | |
| 2681 | + <format/> | |
| 2682 | + <currency/> | |
| 2683 | + <decimal/> | |
| 2684 | + <group/> | |
| 2685 | + <nullif/> | |
| 2686 | + <trim_type>none</trim_type> | |
| 2687 | + <length>-1</length> | |
| 2688 | + <precision>-1</precision> | |
| 2689 | + </field> | |
| 2690 | + <field> | |
| 2691 | + <name>fcno32</name> | |
| 2692 | + <type>String</type> | |
| 2693 | + <format/> | |
| 2694 | + <currency/> | |
| 2695 | + <decimal/> | |
| 2696 | + <group/> | |
| 2697 | + <nullif/> | |
| 2698 | + <trim_type>none</trim_type> | |
| 2699 | + <length>-1</length> | |
| 2700 | + <precision>-1</precision> | |
| 2701 | + </field> | |
| 2702 | + <field> | |
| 2703 | + <name>fcno33</name> | |
| 2704 | + <type>String</type> | |
| 2705 | + <format/> | |
| 2706 | + <currency/> | |
| 2707 | + <decimal/> | |
| 2708 | + <group/> | |
| 2709 | + <nullif/> | |
| 2710 | + <trim_type>none</trim_type> | |
| 2711 | + <length>-1</length> | |
| 2712 | + <precision>-1</precision> | |
| 2713 | + </field> | |
| 2714 | + <field> | |
| 2715 | + <name>fcno34</name> | |
| 2716 | + <type>String</type> | |
| 2717 | + <format/> | |
| 2718 | + <currency/> | |
| 2719 | + <decimal/> | |
| 2720 | + <group/> | |
| 2721 | + <nullif/> | |
| 2722 | + <trim_type>none</trim_type> | |
| 2723 | + <length>-1</length> | |
| 2724 | + <precision>-1</precision> | |
| 2725 | + </field> | |
| 2726 | + <field> | |
| 2727 | + <name>fcno35</name> | |
| 2728 | + <type>String</type> | |
| 2729 | + <format/> | |
| 2730 | + <currency/> | |
| 2731 | + <decimal/> | |
| 2732 | + <group/> | |
| 2733 | + <nullif/> | |
| 2734 | + <trim_type>none</trim_type> | |
| 2735 | + <length>-1</length> | |
| 2736 | + <precision>-1</precision> | |
| 2737 | + </field> | |
| 2738 | + <field> | |
| 2739 | + <name>fcno36</name> | |
| 2740 | + <type>String</type> | |
| 2741 | + <format/> | |
| 2742 | + <currency/> | |
| 2743 | + <decimal/> | |
| 2744 | + <group/> | |
| 2745 | + <nullif/> | |
| 2746 | + <trim_type>none</trim_type> | |
| 2747 | + <length>-1</length> | |
| 2748 | + <precision>-1</precision> | |
| 2749 | + </field> | |
| 2750 | + <field> | |
| 2751 | + <name>fcno37</name> | |
| 2752 | + <type>String</type> | |
| 2753 | + <format/> | |
| 2754 | + <currency/> | |
| 2755 | + <decimal/> | |
| 2756 | + <group/> | |
| 2757 | + <nullif/> | |
| 2758 | + <trim_type>none</trim_type> | |
| 2759 | + <length>-1</length> | |
| 2760 | + <precision>-1</precision> | |
| 2761 | + </field> | |
| 2762 | + <field> | |
| 2763 | + <name>fcno38</name> | |
| 2764 | + <type>String</type> | |
| 2765 | + <format/> | |
| 2766 | + <currency/> | |
| 2767 | + <decimal/> | |
| 2768 | + <group/> | |
| 2769 | + <nullif/> | |
| 2770 | + <trim_type>none</trim_type> | |
| 2771 | + <length>-1</length> | |
| 2772 | + <precision>-1</precision> | |
| 2773 | + </field> | |
| 2774 | + <field> | |
| 2775 | + <name>fcno39</name> | |
| 2776 | + <type>String</type> | |
| 2777 | + <format/> | |
| 2778 | + <currency/> | |
| 2779 | + <decimal/> | |
| 2780 | + <group/> | |
| 2781 | + <nullif/> | |
| 2782 | + <trim_type>none</trim_type> | |
| 2783 | + <length>-1</length> | |
| 2784 | + <precision>-1</precision> | |
| 2785 | + </field> | |
| 2786 | + <field> | |
| 2787 | + <name>fcno40</name> | |
| 2788 | + <type>String</type> | |
| 2789 | + <format/> | |
| 2790 | + <currency/> | |
| 2791 | + <decimal/> | |
| 2792 | + <group/> | |
| 2793 | + <nullif/> | |
| 2794 | + <trim_type>none</trim_type> | |
| 2795 | + <length>-1</length> | |
| 2796 | + <precision>-1</precision> | |
| 2797 | + </field> | |
| 2798 | + <field> | |
| 2799 | + <name>fcno41</name> | |
| 2800 | + <type>String</type> | |
| 2801 | + <format/> | |
| 2802 | + <currency/> | |
| 2803 | + <decimal/> | |
| 2804 | + <group/> | |
| 2805 | + <nullif/> | |
| 2806 | + <trim_type>none</trim_type> | |
| 2807 | + <length>-1</length> | |
| 2808 | + <precision>-1</precision> | |
| 2809 | + </field> | |
| 2810 | + <field> | |
| 2811 | + <name>fcno42</name> | |
| 2812 | + <type>String</type> | |
| 2813 | + <format/> | |
| 2814 | + <currency/> | |
| 2815 | + <decimal/> | |
| 2816 | + <group/> | |
| 2817 | + <nullif/> | |
| 2818 | + <trim_type>none</trim_type> | |
| 2819 | + <length>-1</length> | |
| 2820 | + <precision>-1</precision> | |
| 2821 | + </field> | |
| 2822 | + <field> | |
| 2823 | + <name>fcno43</name> | |
| 2824 | + <type>String</type> | |
| 2825 | + <format/> | |
| 2826 | + <currency/> | |
| 2827 | + <decimal/> | |
| 2828 | + <group/> | |
| 2829 | + <nullif/> | |
| 2830 | + <trim_type>none</trim_type> | |
| 2831 | + <length>-1</length> | |
| 2832 | + <precision>-1</precision> | |
| 2833 | + </field> | |
| 2834 | + <field> | |
| 2835 | + <name>fcno44</name> | |
| 2836 | + <type>String</type> | |
| 2837 | + <format/> | |
| 2838 | + <currency/> | |
| 2839 | + <decimal/> | |
| 2840 | + <group/> | |
| 2841 | + <nullif/> | |
| 2842 | + <trim_type>none</trim_type> | |
| 2843 | + <length>-1</length> | |
| 2844 | + <precision>-1</precision> | |
| 2845 | + </field> | |
| 2846 | + <field> | |
| 2847 | + <name>fcno45</name> | |
| 2848 | + <type>String</type> | |
| 2849 | + <format/> | |
| 2850 | + <currency/> | |
| 2851 | + <decimal/> | |
| 2852 | + <group/> | |
| 2853 | + <nullif/> | |
| 2854 | + <trim_type>none</trim_type> | |
| 2855 | + <length>-1</length> | |
| 2856 | + <precision>-1</precision> | |
| 2857 | + </field> | |
| 2858 | + <field> | |
| 2859 | + <name>fcno46</name> | |
| 2860 | + <type>String</type> | |
| 2861 | + <format/> | |
| 2862 | + <currency/> | |
| 2863 | + <decimal/> | |
| 2864 | + <group/> | |
| 2865 | + <nullif/> | |
| 2866 | + <trim_type>none</trim_type> | |
| 2867 | + <length>-1</length> | |
| 2868 | + <precision>-1</precision> | |
| 2869 | + </field> | |
| 2870 | + <field> | |
| 2871 | + <name>fcno47</name> | |
| 2872 | + <type>String</type> | |
| 2873 | + <format/> | |
| 2874 | + <currency/> | |
| 2875 | + <decimal/> | |
| 2876 | + <group/> | |
| 2877 | + <nullif/> | |
| 2878 | + <trim_type>none</trim_type> | |
| 2879 | + <length>-1</length> | |
| 2880 | + <precision>-1</precision> | |
| 2881 | + </field> | |
| 2882 | + <field> | |
| 2883 | + <name>fcno48</name> | |
| 2884 | + <type>String</type> | |
| 2885 | + <format/> | |
| 2886 | + <currency/> | |
| 2887 | + <decimal/> | |
| 2888 | + <group/> | |
| 2889 | + <nullif/> | |
| 2890 | + <trim_type>none</trim_type> | |
| 2891 | + <length>-1</length> | |
| 2892 | + <precision>-1</precision> | |
| 2893 | + </field> | |
| 2894 | + <field> | |
| 2895 | + <name>fcno49</name> | |
| 2896 | + <type>String</type> | |
| 2897 | + <format/> | |
| 2898 | + <currency/> | |
| 2899 | + <decimal/> | |
| 2900 | + <group/> | |
| 2901 | + <nullif/> | |
| 2902 | + <trim_type>none</trim_type> | |
| 2903 | + <length>-1</length> | |
| 2904 | + <precision>-1</precision> | |
| 2905 | + </field> | |
| 2906 | + <field> | |
| 2907 | + <name>fcno50</name> | |
| 2908 | + <type>String</type> | |
| 2909 | + <format/> | |
| 2910 | + <currency/> | |
| 2911 | + <decimal/> | |
| 2912 | + <group/> | |
| 2913 | + <nullif/> | |
| 2914 | + <trim_type>none</trim_type> | |
| 2915 | + <length>-1</length> | |
| 2916 | + <precision>-1</precision> | |
| 2917 | + </field> | |
| 2918 | + <field> | |
| 2919 | + <name>fcno51</name> | |
| 2920 | + <type>String</type> | |
| 2921 | + <format/> | |
| 2922 | + <currency/> | |
| 2923 | + <decimal/> | |
| 2924 | + <group/> | |
| 2925 | + <nullif/> | |
| 2926 | + <trim_type>none</trim_type> | |
| 2927 | + <length>-1</length> | |
| 2928 | + <precision>-1</precision> | |
| 2929 | + </field> | |
| 2930 | + <field> | |
| 2931 | + <name>fcno52</name> | |
| 2932 | + <type>String</type> | |
| 2933 | + <format/> | |
| 2934 | + <currency/> | |
| 2935 | + <decimal/> | |
| 2936 | + <group/> | |
| 2937 | + <nullif/> | |
| 2938 | + <trim_type>none</trim_type> | |
| 2939 | + <length>-1</length> | |
| 2940 | + <precision>-1</precision> | |
| 2941 | + </field> | |
| 2942 | + <field> | |
| 2943 | + <name>fcno53</name> | |
| 2944 | + <type>String</type> | |
| 2945 | + <format/> | |
| 2946 | + <currency/> | |
| 2947 | + <decimal/> | |
| 2948 | + <group/> | |
| 2949 | + <nullif/> | |
| 2950 | + <trim_type>none</trim_type> | |
| 2951 | + <length>-1</length> | |
| 2952 | + <precision>-1</precision> | |
| 2953 | + </field> | |
| 2954 | + <field> | |
| 2955 | + <name>fcno54</name> | |
| 2956 | + <type>String</type> | |
| 2957 | + <format/> | |
| 2958 | + <currency/> | |
| 2959 | + <decimal/> | |
| 2960 | + <group/> | |
| 2961 | + <nullif/> | |
| 2962 | + <trim_type>none</trim_type> | |
| 2963 | + <length>-1</length> | |
| 2964 | + <precision>-1</precision> | |
| 2965 | + </field> | |
| 2966 | + <field> | |
| 2967 | + <name>fcno55</name> | |
| 2968 | + <type>String</type> | |
| 2969 | + <format/> | |
| 2970 | + <currency/> | |
| 2971 | + <decimal/> | |
| 2972 | + <group/> | |
| 2973 | + <nullif/> | |
| 2974 | + <trim_type>none</trim_type> | |
| 2975 | + <length>-1</length> | |
| 2976 | + <precision>-1</precision> | |
| 2977 | + </field> | |
| 2978 | + <field> | |
| 2979 | + <name>fcno56</name> | |
| 2980 | + <type>String</type> | |
| 2981 | + <format/> | |
| 2982 | + <currency/> | |
| 2983 | + <decimal/> | |
| 2984 | + <group/> | |
| 2985 | + <nullif/> | |
| 2986 | + <trim_type>none</trim_type> | |
| 2987 | + <length>-1</length> | |
| 2988 | + <precision>-1</precision> | |
| 2989 | + </field> | |
| 2990 | + <field> | |
| 2991 | + <name>fcno57</name> | |
| 2992 | + <type>String</type> | |
| 2993 | + <format/> | |
| 2994 | + <currency/> | |
| 2995 | + <decimal/> | |
| 2996 | + <group/> | |
| 2997 | + <nullif/> | |
| 2998 | + <trim_type>none</trim_type> | |
| 2999 | + <length>-1</length> | |
| 3000 | + <precision>-1</precision> | |
| 3001 | + </field> | |
| 3002 | + <field> | |
| 3003 | + <name>fcno58</name> | |
| 3004 | + <type>String</type> | |
| 3005 | + <format/> | |
| 3006 | + <currency/> | |
| 3007 | + <decimal/> | |
| 3008 | + <group/> | |
| 3009 | + <nullif/> | |
| 3010 | + <trim_type>none</trim_type> | |
| 3011 | + <length>-1</length> | |
| 3012 | + <precision>-1</precision> | |
| 3013 | + </field> | |
| 3014 | + <field> | |
| 3015 | + <name>fcno59</name> | |
| 3016 | + <type>String</type> | |
| 3017 | + <format/> | |
| 3018 | + <currency/> | |
| 3019 | + <decimal/> | |
| 3020 | + <group/> | |
| 3021 | + <nullif/> | |
| 3022 | + <trim_type>none</trim_type> | |
| 3023 | + <length>-1</length> | |
| 3024 | + <precision>-1</precision> | |
| 3025 | + </field> | |
| 3026 | + <field> | |
| 3027 | + <name>fcno60</name> | |
| 3028 | + <type>String</type> | |
| 3029 | + <format/> | |
| 3030 | + <currency/> | |
| 3031 | + <decimal/> | |
| 3032 | + <group/> | |
| 3033 | + <nullif/> | |
| 3034 | + <trim_type>none</trim_type> | |
| 3035 | + <length>-1</length> | |
| 3036 | + <precision>-1</precision> | |
| 3037 | + </field> | |
| 3038 | + <field> | |
| 3039 | + <name>fcno61</name> | |
| 3040 | + <type>String</type> | |
| 3041 | + <format/> | |
| 3042 | + <currency/> | |
| 3043 | + <decimal/> | |
| 3044 | + <group/> | |
| 3045 | + <nullif/> | |
| 3046 | + <trim_type>none</trim_type> | |
| 3047 | + <length>-1</length> | |
| 3048 | + <precision>-1</precision> | |
| 3049 | + </field> | |
| 3050 | + <field> | |
| 3051 | + <name>fcno62</name> | |
| 3052 | + <type>String</type> | |
| 3053 | + <format/> | |
| 3054 | + <currency/> | |
| 3055 | + <decimal/> | |
| 3056 | + <group/> | |
| 3057 | + <nullif/> | |
| 3058 | + <trim_type>none</trim_type> | |
| 3059 | + <length>-1</length> | |
| 3060 | + <precision>-1</precision> | |
| 3061 | + </field> | |
| 3062 | + <field> | |
| 3063 | + <name>fcno63</name> | |
| 3064 | + <type>String</type> | |
| 3065 | + <format/> | |
| 3066 | + <currency/> | |
| 3067 | + <decimal/> | |
| 3068 | + <group/> | |
| 3069 | + <nullif/> | |
| 3070 | + <trim_type>none</trim_type> | |
| 3071 | + <length>-1</length> | |
| 3072 | + <precision>-1</precision> | |
| 3073 | + </field> | |
| 3074 | + <field> | |
| 3075 | + <name>fcno64</name> | |
| 3076 | + <type>String</type> | |
| 3077 | + <format/> | |
| 3078 | + <currency/> | |
| 3079 | + <decimal/> | |
| 3080 | + <group/> | |
| 3081 | + <nullif/> | |
| 3082 | + <trim_type>none</trim_type> | |
| 3083 | + <length>-1</length> | |
| 3084 | + <precision>-1</precision> | |
| 3085 | + </field> | |
| 3086 | + <field> | |
| 3087 | + <name>fcno65</name> | |
| 3088 | + <type>String</type> | |
| 3089 | + <format/> | |
| 3090 | + <currency/> | |
| 3091 | + <decimal/> | |
| 3092 | + <group/> | |
| 3093 | + <nullif/> | |
| 3094 | + <trim_type>none</trim_type> | |
| 3095 | + <length>-1</length> | |
| 3096 | + <precision>-1</precision> | |
| 3097 | + </field> | |
| 3098 | + <field> | |
| 3099 | + <name>fcno66</name> | |
| 3100 | + <type>String</type> | |
| 3101 | + <format/> | |
| 3102 | + <currency/> | |
| 3103 | + <decimal/> | |
| 3104 | + <group/> | |
| 3105 | + <nullif/> | |
| 3106 | + <trim_type>none</trim_type> | |
| 3107 | + <length>-1</length> | |
| 3108 | + <precision>-1</precision> | |
| 3109 | + </field> | |
| 3110 | + <field> | |
| 3111 | + <name>fcno67</name> | |
| 3112 | + <type>String</type> | |
| 3113 | + <format/> | |
| 3114 | + <currency/> | |
| 3115 | + <decimal/> | |
| 3116 | + <group/> | |
| 3117 | + <nullif/> | |
| 3118 | + <trim_type>none</trim_type> | |
| 3119 | + <length>-1</length> | |
| 3120 | + <precision>-1</precision> | |
| 3121 | + </field> | |
| 3122 | + <field> | |
| 3123 | + <name>fcno68</name> | |
| 3124 | + <type>String</type> | |
| 3125 | + <format/> | |
| 3126 | + <currency/> | |
| 3127 | + <decimal/> | |
| 3128 | + <group/> | |
| 3129 | + <nullif/> | |
| 3130 | + <trim_type>none</trim_type> | |
| 3131 | + <length>-1</length> | |
| 3132 | + <precision>-1</precision> | |
| 3133 | + </field> | |
| 3134 | + <field> | |
| 3135 | + <name>fcno69</name> | |
| 3136 | + <type>String</type> | |
| 3137 | + <format/> | |
| 3138 | + <currency/> | |
| 3139 | + <decimal/> | |
| 3140 | + <group/> | |
| 3141 | + <nullif/> | |
| 3142 | + <trim_type>none</trim_type> | |
| 3143 | + <length>-1</length> | |
| 3144 | + <precision>-1</precision> | |
| 3145 | + </field> | |
| 3146 | + <field> | |
| 3147 | + <name>fcno70</name> | |
| 3148 | + <type>String</type> | |
| 3149 | + <format/> | |
| 3150 | + <currency/> | |
| 3151 | + <decimal/> | |
| 3152 | + <group/> | |
| 3153 | + <nullif/> | |
| 3154 | + <trim_type>none</trim_type> | |
| 3155 | + <length>-1</length> | |
| 3156 | + <precision>-1</precision> | |
| 3157 | + </field> | |
| 3158 | + </fields> | |
| 3159 | + <cluster_schema/> | |
| 3160 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 3161 | + <xloc>880</xloc> | |
| 3162 | + <yloc>365</yloc> | |
| 3163 | + <draw>Y</draw> | |
| 3164 | + </GUI> | |
| 3165 | + </step> | |
| 3166 | + | |
| 3167 | + <step> | |
| 3168 | + <name>查找终点站名称</name> | |
| 3169 | + <type>DBLookup</type> | |
| 3170 | + <description/> | |
| 3171 | + <distribute>Y</distribute> | |
| 3172 | + <custom_distribution/> | |
| 3173 | + <copies>1</copies> | |
| 3174 | + <partitioning> | |
| 3175 | + <method>none</method> | |
| 3176 | + <schema_name/> | |
| 3177 | + </partitioning> | |
| 3178 | + <connection>bus_control_variable</connection> | |
| 3179 | + <cache>Y</cache> | |
| 3180 | + <cache_load_all>Y</cache_load_all> | |
| 3181 | + <cache_size>0</cache_size> | |
| 3182 | + <lookup> | |
| 3183 | + <schema/> | |
| 3184 | + <table>bsth_c_stationroute</table> | |
| 3185 | + <orderby/> | |
| 3186 | + <fail_on_multiple>N</fail_on_multiple> | |
| 3187 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 3188 | + <key> | |
| 3189 | + <name>xl</name> | |
| 3190 | + <field>line</field> | |
| 3191 | + <condition>=</condition> | |
| 3192 | + <name2/> | |
| 3193 | + </key> | |
| 3194 | + <key> | |
| 3195 | + <name>xl_dir</name> | |
| 3196 | + <field>directions</field> | |
| 3197 | + <condition>=</condition> | |
| 3198 | + <name2/> | |
| 3199 | + </key> | |
| 3200 | + <key> | |
| 3201 | + <name>endZdType</name> | |
| 3202 | + <field>station_mark</field> | |
| 3203 | + <condition>=</condition> | |
| 3204 | + <name2/> | |
| 3205 | + </key> | |
| 3206 | + <value> | |
| 3207 | + <name>station_name</name> | |
| 3208 | + <rename>zdzName</rename> | |
| 3209 | + <default/> | |
| 3210 | + <type>String</type> | |
| 3211 | + </value> | |
| 3212 | + </lookup> | |
| 3213 | + <cluster_schema/> | |
| 3214 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 3215 | + <xloc>688</xloc> | |
| 3216 | + <yloc>86</yloc> | |
| 3217 | + <draw>Y</draw> | |
| 3218 | + </GUI> | |
| 3219 | + </step> | |
| 3220 | + | |
| 3221 | + <step> | |
| 3222 | + <name>查找起点站名称</name> | |
| 3223 | + <type>DBLookup</type> | |
| 3224 | + <description/> | |
| 3225 | + <distribute>Y</distribute> | |
| 3226 | + <custom_distribution/> | |
| 3227 | + <copies>1</copies> | |
| 3228 | + <partitioning> | |
| 3229 | + <method>none</method> | |
| 3230 | + <schema_name/> | |
| 3231 | + </partitioning> | |
| 3232 | + <connection>bus_control_variable</connection> | |
| 3233 | + <cache>Y</cache> | |
| 3234 | + <cache_load_all>Y</cache_load_all> | |
| 3235 | + <cache_size>0</cache_size> | |
| 3236 | + <lookup> | |
| 3237 | + <schema/> | |
| 3238 | + <table>bsth_c_stationroute</table> | |
| 3239 | + <orderby/> | |
| 3240 | + <fail_on_multiple>N</fail_on_multiple> | |
| 3241 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 3242 | + <key> | |
| 3243 | + <name>xl</name> | |
| 3244 | + <field>line</field> | |
| 3245 | + <condition>=</condition> | |
| 3246 | + <name2/> | |
| 3247 | + </key> | |
| 3248 | + <key> | |
| 3249 | + <name>xl_dir</name> | |
| 3250 | + <field>directions</field> | |
| 3251 | + <condition>=</condition> | |
| 3252 | + <name2/> | |
| 3253 | + </key> | |
| 3254 | + <key> | |
| 3255 | + <name>startZdType</name> | |
| 3256 | + <field>station_mark</field> | |
| 3257 | + <condition>=</condition> | |
| 3258 | + <name2/> | |
| 3259 | + </key> | |
| 3260 | + <value> | |
| 3261 | + <name>station_name</name> | |
| 3262 | + <rename>qdzName</rename> | |
| 3263 | + <default/> | |
| 3264 | + <type>String</type> | |
| 3265 | + </value> | |
| 3266 | + </lookup> | |
| 3267 | + <cluster_schema/> | |
| 3268 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 3269 | + <xloc>553</xloc> | |
| 3270 | + <yloc>86</yloc> | |
| 3271 | + <draw>Y</draw> | |
| 3272 | + </GUI> | |
| 3273 | + </step> | |
| 3274 | + | |
| 3275 | + <step> | |
| 3276 | + <name>正常班次站点查询用数据</name> | |
| 3277 | + <type>ScriptValueMod</type> | |
| 3278 | + <description/> | |
| 3279 | + <distribute>Y</distribute> | |
| 3280 | + <custom_distribution/> | |
| 3281 | + <copies>1</copies> | |
| 3282 | + <partitioning> | |
| 3283 | + <method>none</method> | |
| 3284 | + <schema_name/> | |
| 3285 | + </partitioning> | |
| 3286 | + <compatible>N</compatible> | |
| 3287 | + <optimizationLevel>9</optimizationLevel> | |
| 3288 | + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 3289 | + <jsScript_name>Script 1</jsScript_name> | |
| 3290 | + <jsScript_script>//Script here

var startZdType = 'B'; // 起点站站点类型标识别
var endZdType = 'E'; // 终点站站点类型标识</jsScript_script> | |
| 3291 | + </jsScript> </jsScripts> <fields> <field> <name>startZdType</name> | |
| 3292 | + <rename>startZdType</rename> | |
| 3293 | + <type>String</type> | |
| 3294 | + <length>-1</length> | |
| 3295 | + <precision>-1</precision> | |
| 3296 | + <replace>N</replace> | |
| 3297 | + </field> <field> <name>endZdType</name> | |
| 3298 | + <rename>endZdType</rename> | |
| 3299 | + <type>String</type> | |
| 3300 | + <length>-1</length> | |
| 3301 | + <precision>-1</precision> | |
| 3302 | + <replace>N</replace> | |
| 3303 | + </field> </fields> <cluster_schema/> | |
| 3304 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 3305 | + <xloc>391</xloc> | |
| 3306 | + <yloc>87</yloc> | |
| 3307 | + <draw>Y</draw> | |
| 3308 | + </GUI> | |
| 3309 | + </step> | |
| 3310 | + | |
| 3311 | + <step> | |
| 3312 | + <name>获取变量</name> | |
| 3313 | + <type>GetVariable</type> | |
| 3314 | + <description/> | |
| 3315 | + <distribute>Y</distribute> | |
| 3316 | + <custom_distribution/> | |
| 3317 | + <copies>1</copies> | |
| 3318 | + <partitioning> | |
| 3319 | + <method>none</method> | |
| 3320 | + <schema_name/> | |
| 3321 | + </partitioning> | |
| 3322 | + <fields> | |
| 3323 | + <field> | |
| 3324 | + <name>xlid_</name> | |
| 3325 | + <variable>${xlid}</variable> | |
| 3326 | + <type>Integer</type> | |
| 3327 | + <format/> | |
| 3328 | + <currency/> | |
| 3329 | + <decimal/> | |
| 3330 | + <group/> | |
| 3331 | + <length>-1</length> | |
| 3332 | + <precision>-1</precision> | |
| 3333 | + <trim_type>none</trim_type> | |
| 3334 | + </field> | |
| 3335 | + <field> | |
| 3336 | + <name>ttid_</name> | |
| 3337 | + <variable>${ttid}</variable> | |
| 3338 | + <type>Number</type> | |
| 3339 | + <format/> | |
| 3340 | + <currency/> | |
| 3341 | + <decimal/> | |
| 3342 | + <group/> | |
| 3343 | + <length>-1</length> | |
| 3344 | + <precision>-1</precision> | |
| 3345 | + <trim_type>none</trim_type> | |
| 3346 | + </field> | |
| 3347 | + </fields> | |
| 3348 | + <cluster_schema/> | |
| 3349 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 3350 | + <xloc>45</xloc> | |
| 3351 | + <yloc>189</yloc> | |
| 3352 | + <draw>Y</draw> | |
| 3353 | + </GUI> | |
| 3354 | + </step> | |
| 3355 | + | |
| 3356 | + <step> | |
| 3357 | + <name>表输入</name> | |
| 3358 | + <type>TableInput</type> | |
| 3359 | + <description/> | |
| 3360 | + <distribute>Y</distribute> | |
| 3361 | + <custom_distribution/> | |
| 3362 | + <copies>1</copies> | |
| 3363 | + <partitioning> | |
| 3364 | + <method>none</method> | |
| 3365 | + <schema_name/> | |
| 3366 | + </partitioning> | |
| 3367 | + <connection>bus_control_variable</connection> | |
| 3368 | + <sql>select 
t.id as id
, g.lp_name as lp
, g.xl as xl
, qdz
, zdz
, tcc
, fcsj
, jhlc
, bc_type 
, bcs
, fcno
, xl_dir
, isfb
from bsth_c_s_ttinfo_detail t left join 
bsth_c_s_gbi g on t.lp = g.id 
where 
g.xl = ? and
t.ttinfo = ? 
order by t.bcs asc</sql> | |
| 3369 | + <limit>0</limit> | |
| 3370 | + <lookup>获取变量</lookup> | |
| 3371 | + <execute_each_row>N</execute_each_row> | |
| 3372 | + <variables_active>Y</variables_active> | |
| 3373 | + <lazy_conversion_active>N</lazy_conversion_active> | |
| 3374 | + <cluster_schema/> | |
| 3375 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 3376 | + <xloc>130</xloc> | |
| 3377 | + <yloc>85</yloc> | |
| 3378 | + <draw>Y</draw> | |
| 3379 | + </GUI> | |
| 3380 | + </step> | |
| 3381 | + | |
| 3382 | + <step> | |
| 3383 | + <name>计算发车站名</name> | |
| 3384 | + <type>ScriptValueMod</type> | |
| 3385 | + <description/> | |
| 3386 | + <distribute>Y</distribute> | |
| 3387 | + <custom_distribution/> | |
| 3388 | + <copies>1</copies> | |
| 3389 | + <partitioning> | |
| 3390 | + <method>none</method> | |
| 3391 | + <schema_name/> | |
| 3392 | + </partitioning> | |
| 3393 | + <compatible>N</compatible> | |
| 3394 | + <optimizationLevel>9</optimizationLevel> | |
| 3395 | + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 3396 | + <jsScript_name>Script 1</jsScript_name> | |
| 3397 | + <jsScript_script>//Script here

var fczdName = null; // 发车站点名字
if (bc_type == "in") {
 fczdName = "进场";
} else if (bc_type == "out") {
 fczdName = "出场";
} else {
 fczdName = qdzName;
}</jsScript_script> | |
| 3398 | + </jsScript> </jsScripts> <fields> <field> <name>fczdName</name> | |
| 3399 | + <rename>fczdName</rename> | |
| 3400 | + <type>String</type> | |
| 3401 | + <length>-1</length> | |
| 3402 | + <precision>-1</precision> | |
| 3403 | + <replace>N</replace> | |
| 3404 | + </field> </fields> <cluster_schema/> | |
| 3405 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 3406 | + <xloc>550</xloc> | |
| 3407 | + <yloc>276</yloc> | |
| 3408 | + <draw>Y</draw> | |
| 3409 | + </GUI> | |
| 3410 | + </step> | |
| 3411 | + | |
| 3412 | + <step> | |
| 3413 | + <name>过滤记录</name> | |
| 3414 | + <type>FilterRows</type> | |
| 3415 | + <description/> | |
| 3416 | + <distribute>Y</distribute> | |
| 3417 | + <custom_distribution/> | |
| 3418 | + <copies>1</copies> | |
| 3419 | + <partitioning> | |
| 3420 | + <method>none</method> | |
| 3421 | + <schema_name/> | |
| 3422 | + </partitioning> | |
| 3423 | +<send_true_to>正常班次站点查询用数据</send_true_to> | |
| 3424 | +<send_false_to>进场出场班次查询用的数据</send_false_to> | |
| 3425 | + <compare> | |
| 3426 | +<condition> | |
| 3427 | + <negated>N</negated> | |
| 3428 | + <leftvalue>bc_type</leftvalue> | |
| 3429 | + <function>=</function> | |
| 3430 | + <rightvalue/> | |
| 3431 | + <value><name>constant</name><type>String</type><text>normal</text><length>-1</length><precision>-1</precision><isnull>N</isnull><mask/></value> </condition> | |
| 3432 | + </compare> | |
| 3433 | + <cluster_schema/> | |
| 3434 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 3435 | + <xloc>248</xloc> | |
| 3436 | + <yloc>87</yloc> | |
| 3437 | + <draw>Y</draw> | |
| 3438 | + </GUI> | |
| 3439 | + </step> | |
| 3440 | + | |
| 3441 | + <step> | |
| 3442 | + <name>进场出场班次查询用的数据</name> | |
| 3443 | + <type>ScriptValueMod</type> | |
| 3444 | + <description/> | |
| 3445 | + <distribute>Y</distribute> | |
| 3446 | + <custom_distribution/> | |
| 3447 | + <copies>1</copies> | |
| 3448 | + <partitioning> | |
| 3449 | + <method>none</method> | |
| 3450 | + <schema_name/> | |
| 3451 | + </partitioning> | |
| 3452 | + <compatible>N</compatible> | |
| 3453 | + <optimizationLevel>9</optimizationLevel> | |
| 3454 | + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 3455 | + <jsScript_name>Script 1</jsScript_name> | |
| 3456 | + <jsScript_script>//Script here

var qdzName = null; // 起点站名字
var zdzName = null; // 终点站名字</jsScript_script> | |
| 3457 | + </jsScript> </jsScripts> <fields> <field> <name>qdzName</name> | |
| 3458 | + <rename>qdzName</rename> | |
| 3459 | + <type>String</type> | |
| 3460 | + <length>-1</length> | |
| 3461 | + <precision>-1</precision> | |
| 3462 | + <replace>N</replace> | |
| 3463 | + </field> <field> <name>zdzName</name> | |
| 3464 | + <rename>zdzName</rename> | |
| 3465 | + <type>String</type> | |
| 3466 | + <length>-1</length> | |
| 3467 | + <precision>-1</precision> | |
| 3468 | + <replace>N</replace> | |
| 3469 | + </field> </fields> <cluster_schema/> | |
| 3470 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 3471 | + <xloc>250</xloc> | |
| 3472 | + <yloc>188</yloc> | |
| 3473 | + <draw>Y</draw> | |
| 3474 | + </GUI> | |
| 3475 | + </step> | |
| 3476 | + | |
| 3477 | + <step_error_handling> | |
| 3478 | + </step_error_handling> | |
| 3479 | + <slave-step-copy-partition-distribution> | |
| 3480 | +</slave-step-copy-partition-distribution> | |
| 3481 | + <slave_transformation>N</slave_transformation> | |
| 3482 | + | |
| 3483 | +</transformation> | ... | ... |
src/main/resources/ms-jdbc.properties
| 1 | 1 | #ms.mysql.driver= com.mysql.jdbc.Driver |
| 2 | -#ms.mysql.url= jdbc:mysql://192.168.168.201:3306/ms?useUnicode=true&characterEncoding=utf-8&useSSL=false | |
| 2 | +#ms.mysql.url= jdbc:mysql://192.168.40.82:3306/ms?useUnicode=true&characterEncoding=utf-8&useSSL=false | |
| 3 | 3 | #ms.mysql.username= root |
| 4 | 4 | #ms.mysql.password= 123456 |
| 5 | 5 | |
| 6 | 6 | ms.mysql.driver= com.mysql.jdbc.Driver |
| 7 | -ms.mysql.url= jdbc:mysql://192.168.168.171:3306/ms?useUnicode=true&characterEncoding=utf-8 | |
| 7 | +ms.mysql.url= jdbc:mysql://192.168.168.201:3306/ms?useUnicode=true&characterEncoding=utf-8&useSSL=false | |
| 8 | 8 | ms.mysql.username= root |
| 9 | -ms.mysql.password= root2jsp | |
| 10 | 9 | \ No newline at end of file |
| 10 | +ms.mysql.password= 123456 | |
| 11 | 11 | \ No newline at end of file | ... | ... |
src/main/resources/rules/functions.drl
src/main/resources/rules/ttinfo2.drl
| 1 | -package com.bsth.service.schedule.ttinfo2; | |
| 2 | - | |
| 3 | -import org.joda.time.*; | |
| 4 | -import java.util.*; | |
| 5 | -import org.apache.commons.lang3.StringUtils; | |
| 6 | - | |
| 7 | -import com.bsth.service.schedule.rules.ttinfo2.Result; | |
| 8 | -import com.bsth.service.schedule.rules.ttinfo2.Result.StatInfo; | |
| 9 | -import com.bsth.service.schedule.rules.ttinfo2.CalcuParam; | |
| 10 | - | |
| 11 | -import com.bsth.entity.schedule.TTInfo; | |
| 12 | -import com.bsth.entity.schedule.TTInfoDetail; | |
| 13 | -import com.bsth.entity.Line; | |
| 14 | - | |
| 15 | -import com.bsth.service.LineService; | |
| 16 | -import com.bsth.service.schedule.TTInfoDetailService; | |
| 17 | - | |
| 18 | -import org.slf4j.Logger | |
| 19 | -import org.joda.time.format.DateTimeFormat | |
| 20 | -import java.lang.String | |
| 21 | -import java.lang.Object; | |
| 22 | - | |
| 23 | - | |
| 24 | -// 全局日志类(一般使用调用此规则的service类) | |
| 25 | -global Logger log; | |
| 26 | -global LineService lineService; | |
| 27 | -global TTInfoDetailService ttInfoDetailService; | |
| 28 | - | |
| 29 | -// 输出 | |
| 30 | -global Result rs; | |
| 31 | - | |
| 32 | -/* | |
| 33 | - 规则说明: | |
| 34 | - 1、找出指定线路,指定时间范围的时刻表 | |
| 35 | - 2、统计这些时刻表班次数据的情况 | |
| 36 | -*/ | |
| 37 | - | |
| 38 | -//-------------- 第一阶段、计算规则迭代数据(天数) ------------// | |
| 39 | -declare Calcu_iter_days_result | |
| 40 | - xlId: Integer // 线路Id | |
| 41 | - xlName: String // 线路名字 | |
| 42 | - | |
| 43 | - // 迭代数据 | |
| 44 | - calcu_day: Integer // 准备计算第几天 | |
| 45 | - calcu_weekday: Integer // 准备计算星期几(1到7) | |
| 46 | - calcu_date: DateTime // 准备计算的具体日期 | |
| 47 | - | |
| 48 | - // 范围数据 | |
| 49 | - calcu_days: Integer // 总共需要计算的天数 | |
| 50 | - calcu_start_date: DateTime // 开始计算日期 | |
| 51 | - calcu_end_date: DateTime // 结束计算日期 | |
| 52 | - | |
| 53 | - // 时刻表映射数据 | |
| 54 | - ttinfomap: Map // 指定时间段内,用的时刻表id映射 Map<Long, Long> | |
| 55 | -end | |
| 56 | - | |
| 57 | -rule "calcu_iter_days" | |
| 58 | - salience 1900 | |
| 59 | - when | |
| 60 | - CalcuParam( | |
| 61 | - $xlId: xlId, | |
| 62 | - $fromDate: fromDate, | |
| 63 | - $toDate: toDate, | |
| 64 | - $fromDate.isBefore($toDate) || $fromDate.isEqual($toDate) | |
| 65 | - ) | |
| 66 | - then | |
| 67 | - // 构造Calcu_iter_days_result对象,进行下一步计算 | |
| 68 | - Calcu_iter_days_result cidr = new Calcu_iter_days_result(); | |
| 69 | - Period p = new Period($fromDate, $toDate, PeriodType.days()); | |
| 70 | - | |
| 71 | - Line line = (Line) lineService.findById($xlId); | |
| 72 | - | |
| 73 | - cidr.setXlId($xlId); | |
| 74 | - cidr.setXlName(line.getName()); | |
| 75 | - | |
| 76 | - cidr.setCalcu_day(new Integer(1)); | |
| 77 | - cidr.setCalcu_weekday(Integer.valueOf($fromDate.getDayOfWeek())); | |
| 78 | - cidr.setCalcu_date($fromDate); | |
| 79 | - | |
| 80 | - cidr.setCalcu_days(Integer.valueOf(p.getDays() + 1)); | |
| 81 | - cidr.setCalcu_start_date($fromDate); | |
| 82 | - cidr.setCalcu_end_date($toDate); | |
| 83 | - | |
| 84 | - cidr.setTtinfomap(new HashMap()); | |
| 85 | - | |
| 86 | - log.info( | |
| 87 | - "线路={}-id={},开始时间={},结束时间={},总共计算的天数={},将从开始时间迭代", | |
| 88 | - cidr.getXlName(), | |
| 89 | - cidr.getXlId(), | |
| 90 | - cidr.getCalcu_start_date(), | |
| 91 | - cidr.getCalcu_end_date(), | |
| 92 | - cidr.getCalcu_days() | |
| 93 | - ); | |
| 94 | - | |
| 95 | - insert(cidr); | |
| 96 | -end | |
| 97 | - | |
| 98 | -//-------------- 第二阶段、包装时刻表实体类到内部对象 ------------// | |
| 99 | - | |
| 100 | -declare TTInfo_wrap | |
| 101 | - id: Long // 时刻表id | |
| 102 | - name: String // 时刻表名字 | |
| 103 | - weekdays: List // 周一到周日是否启用 List<Boolean> | |
| 104 | - specialDays: List // 特殊节假日 List<DateTime> | |
| 105 | - updateDate: DateTime // 最新修改时间 | |
| 106 | -end | |
| 107 | - | |
| 108 | -rule "TTInfo_wrap_result" | |
| 109 | - salience 900 | |
| 110 | - when | |
| 111 | - CalcuParam($xlId: xlId) | |
| 112 | - $ttinfo: TTInfo( | |
| 113 | - xl.id == $xlId, | |
| 114 | - isEnableDisTemplate == true, | |
| 115 | - isCancel == false | |
| 116 | - ) | |
| 117 | - then | |
| 118 | - TTInfo_wrap ttInfo_wrap = new TTInfo_wrap(); | |
| 119 | - ttInfo_wrap.setId($ttinfo.getId()); | |
| 120 | - ttInfo_wrap.setName($ttinfo.getName()); | |
| 121 | - ttInfo_wrap.setUpdateDate(new DateTime($ttinfo.getUpdateDate())); | |
| 122 | - ttInfo_wrap.setWeekdays(new ArrayList()); | |
| 123 | - ttInfo_wrap.setSpecialDays(new ArrayList()); | |
| 124 | - | |
| 125 | - String[] days = $ttinfo.getRule_days().split(","); | |
| 126 | - for (int i = 0; i < 7; i++) { | |
| 127 | - if ("1".equals(days[i])) { | |
| 128 | - ttInfo_wrap.getWeekdays().add(true); | |
| 129 | - } else { | |
| 130 | - ttInfo_wrap.getWeekdays().add(false); | |
| 131 | - } | |
| 132 | - } | |
| 133 | - | |
| 134 | - if (StringUtils.isNotEmpty($ttinfo.getSpecial_days())) { | |
| 135 | - String[] sdays = $ttinfo.getSpecial_days().split(","); | |
| 136 | - for (int i = 0; i < sdays.length; i++) { | |
| 137 | - ttInfo_wrap.getSpecialDays().add( | |
| 138 | - DateTimeFormat.forPattern( | |
| 139 | - "yyyy-MM-dd").parseDateTime(sdays[i])); | |
| 140 | - } | |
| 141 | - } | |
| 142 | - | |
| 143 | - log.info("时刻表={},id={},常规日期={},特殊日期={}", | |
| 144 | - ttInfo_wrap.getName(), | |
| 145 | - ttInfo_wrap.getId(), | |
| 146 | - ttInfo_wrap.getWeekdays(), | |
| 147 | - ttInfo_wrap.getSpecialDays()); | |
| 148 | - | |
| 149 | - insert(ttInfo_wrap); | |
| 150 | - | |
| 151 | -end | |
| 152 | - | |
| 153 | -//-------------- 第三阶段、时刻表的日期匹配 ------------// | |
| 154 | - | |
| 155 | -declare TTInfoDetails_wrap | |
| 156 | - ttInfoId: Long // 时刻表id | |
| 157 | - bcInfoList: List // 班次信息列表 List<TTInfoDetail> | |
| 158 | -end | |
| 159 | - | |
| 160 | -rule "Calcu_iter_days_special_day" // 特殊日期匹配 | |
| 161 | - salience 800 | |
| 162 | - when | |
| 163 | - $cid : Calcu_iter_days_result( | |
| 164 | - $calcu_date: calcu_date, | |
| 165 | - $calcu_day: calcu_day, | |
| 166 | - calcu_day <= calcu_days | |
| 167 | - ) | |
| 168 | - TTInfo_wrap( | |
| 169 | - $tid: id, | |
| 170 | - $tname: name, | |
| 171 | - specialDays contains $calcu_date | |
| 172 | - ) | |
| 173 | - then | |
| 174 | - // 更新迭代对象 | |
| 175 | - Integer new_calcu_day = Integer.valueOf($calcu_day + 1); | |
| 176 | - $cid.setCalcu_day(new_calcu_day); | |
| 177 | - DateTime new_calcu_date = $calcu_date.plusDays(1); | |
| 178 | - $cid.setCalcu_date(new_calcu_date); | |
| 179 | - $cid.setCalcu_weekday(Integer.valueOf(new_calcu_date.getDayOfWeek())); | |
| 180 | - | |
| 181 | - log.info("启用特殊日期时刻表:" + | |
| 182 | - "时刻表id={} 特殊日期={}", | |
| 183 | - $tid, $calcu_date); | |
| 184 | - | |
| 185 | - // 判定使用的时刻表 | |
| 186 | - if (!$cid.getTtinfomap().containsKey($tid)) { | |
| 187 | - $cid.getTtinfomap().put($tid, $tid); | |
| 188 | - StatInfo statInfo = new StatInfo(); | |
| 189 | - statInfo.setTtid($tid); | |
| 190 | - statInfo.setTtname($tname); | |
| 191 | - insert(statInfo); | |
| 192 | - | |
| 193 | - TTInfoDetails_wrap ttInfoDetails_wrap = new TTInfoDetails_wrap(); | |
| 194 | - ttInfoDetails_wrap.setTtInfoId($tid); | |
| 195 | - Map<String, Object> param = new HashMap<String, Object>(); | |
| 196 | - param.put("ttinfo.id_eq", $tid); | |
| 197 | - ttInfoDetails_wrap.setBcInfoList(ttInfoDetailService.list(param)); | |
| 198 | - insert(ttInfoDetails_wrap); | |
| 199 | - } | |
| 200 | - update($cid); | |
| 201 | - | |
| 202 | -end | |
| 203 | - | |
| 204 | -rule "Calcu_iter_days_normal_day" // 平日匹配 | |
| 205 | - salience 700 | |
| 206 | - when | |
| 207 | - $cid : Calcu_iter_days_result( | |
| 208 | - $calcu_date: calcu_date, | |
| 209 | - $calcu_weekday: calcu_weekday, | |
| 210 | - $calcu_day: calcu_day, | |
| 211 | - calcu_day <= calcu_days | |
| 212 | - ) | |
| 213 | - TTInfo_wrap( | |
| 214 | - $tid: id, | |
| 215 | - $tname: name, | |
| 216 | - specialDays not contains $calcu_date, | |
| 217 | - weekdays[$calcu_weekday - 1] == Boolean.TRUE | |
| 218 | - ) | |
| 219 | - then | |
| 220 | - // 更新迭代对象 | |
| 221 | - Integer new_calcu_day = Integer.valueOf($calcu_day + 1); | |
| 222 | - $cid.setCalcu_day(new_calcu_day); | |
| 223 | - DateTime new_calcu_date = $calcu_date.plusDays(1); | |
| 224 | - $cid.setCalcu_date(new_calcu_date); | |
| 225 | - $cid.setCalcu_weekday(Integer.valueOf(new_calcu_date.getDayOfWeek())); | |
| 226 | - | |
| 227 | - | |
| 228 | - log.info("启用常规日期时刻表:" + | |
| 229 | - "时刻表id={} 常规日期={} 星期几={}", | |
| 230 | - $tid, $calcu_date, $calcu_weekday); | |
| 231 | - | |
| 232 | - // 判定使用的时刻表 | |
| 233 | - if (!$cid.getTtinfomap().containsKey($tid)) { | |
| 234 | - $cid.getTtinfomap().put($tid, $tid); | |
| 235 | - StatInfo statInfo = new StatInfo(); | |
| 236 | - statInfo.setTtid($tid); | |
| 237 | - statInfo.setTtname($tname); | |
| 238 | - insert(statInfo); | |
| 239 | - | |
| 240 | - TTInfoDetails_wrap ttInfoDetails_wrap = new TTInfoDetails_wrap(); | |
| 241 | - ttInfoDetails_wrap.setTtInfoId($tid); | |
| 242 | - Map<String, Object> param = new HashMap<String, Object>(); | |
| 243 | - param.put("ttinfo.id_eq", $tid); | |
| 244 | - ttInfoDetails_wrap.setBcInfoList(ttInfoDetailService.list(param)); | |
| 245 | - insert(ttInfoDetails_wrap); | |
| 246 | - } | |
| 247 | - update($cid); | |
| 248 | - | |
| 249 | -end | |
| 250 | - | |
| 251 | -rule "Calcu_iter_days_other_day" // 都没有的情况下,匹配 | |
| 252 | - salience 500 | |
| 253 | - when | |
| 254 | - $cid : Calcu_iter_days_result( | |
| 255 | - $calcu_date: calcu_date, | |
| 256 | - $calcu_weekday: calcu_weekday, | |
| 257 | - $calcu_day: calcu_day, | |
| 258 | - calcu_day <= calcu_days | |
| 259 | - ) | |
| 260 | - TTInfo_wrap( | |
| 261 | - $tid: id, | |
| 262 | - $tname: name, | |
| 263 | - specialDays not contains $calcu_date, | |
| 264 | - weekdays[$calcu_weekday - 1] == false | |
| 265 | - ) | |
| 266 | - then | |
| 267 | - // 更新迭代对象 | |
| 268 | - Integer new_calcu_day = Integer.valueOf($calcu_day + 1); | |
| 269 | - $cid.setCalcu_day(new_calcu_day); | |
| 270 | - DateTime new_calcu_date = $calcu_date.plusDays(1); | |
| 271 | - $cid.setCalcu_date(new_calcu_date); | |
| 272 | - $cid.setCalcu_weekday(Integer.valueOf(new_calcu_date.getDayOfWeek())); | |
| 273 | - | |
| 274 | - log.info("启用默认日期时刻表:" + | |
| 275 | - "时刻表id={} 常规日期={} 星期几={}", | |
| 276 | - $tid, $calcu_date, $calcu_weekday); | |
| 277 | - | |
| 278 | - // 判定使用的时刻表 | |
| 279 | - if (!$cid.getTtinfomap().containsKey($tid)) { | |
| 280 | - $cid.getTtinfomap().put($tid, $tid); | |
| 281 | - StatInfo statInfo = new StatInfo(); | |
| 282 | - statInfo.setTtid($tid); | |
| 283 | - statInfo.setTtname($tname); | |
| 284 | - insert(statInfo); | |
| 285 | - | |
| 286 | - TTInfoDetails_wrap ttInfoDetails_wrap = new TTInfoDetails_wrap(); | |
| 287 | - ttInfoDetails_wrap.setTtInfoId($tid); | |
| 288 | - Map<String, Object> param = new HashMap<String, Object>(); | |
| 289 | - param.put("ttinfo.id_eq", $tid); | |
| 290 | - ttInfoDetails_wrap.setBcInfoList(ttInfoDetailService.list(param)); | |
| 291 | - insert(ttInfoDetails_wrap); | |
| 292 | - } | |
| 293 | - update($cid); | |
| 294 | - | |
| 295 | -end | |
| 296 | - | |
| 297 | -//-------------- 第四阶段、时刻表明细统计值 ------------// | |
| 298 | - | |
| 299 | -rule "statinfo_result" // 统计计算结果 | |
| 300 | - salience 300 | |
| 301 | - no-loop | |
| 302 | - when | |
| 303 | - $statInfo: StatInfo($tid: ttid) | |
| 304 | - $ttInfoDetails_wrap: TTInfoDetails_wrap(ttInfoId == $tid) | |
| 305 | - $allbc: Long() from accumulate (TTInfoDetail() from $ttInfoDetails_wrap.getBcInfoList(), count()) | |
| 306 | - $inbc: Long() from accumulate (TTInfoDetail(bcType == "in") from $ttInfoDetails_wrap.getBcInfoList(), count()) | |
| 307 | - $outbc: Long() from accumulate (TTInfoDetail(bcType == "out") from $ttInfoDetails_wrap.getBcInfoList(), count()) | |
| 308 | - $yybc: Long() from accumulate (TTInfoDetail(bcType != "out", bcType != "in") from $ttInfoDetails_wrap.getBcInfoList(), count()) | |
| 309 | - $errorbc: Long() from accumulate ($ttd: TTInfoDetail() from $ttInfoDetails_wrap.getBcInfoList(), ecount($ttd)) | |
| 310 | - then | |
| 311 | - log.info("时刻表={},id={},班次数={},进场={},出场={},营运={},错误={}", $statInfo.getTtname(), $statInfo.getTtid(), $allbc, $inbc, $outbc, $yybc, $errorbc); | |
| 312 | - | |
| 313 | - $statInfo.setAllbc($allbc); | |
| 314 | - $statInfo.setInbc($inbc); | |
| 315 | - $statInfo.setOutbc($outbc); | |
| 316 | - $statInfo.setYybc($yybc); | |
| 317 | - $statInfo.setErrorbc($errorbc); | |
| 318 | - | |
| 319 | - rs.getInfos().add($statInfo); | |
| 320 | - | |
| 321 | -end | |
| 322 | - | |
| 323 | - | |
| 324 | - | |
| 325 | - | |
| 326 | - | |
| 327 | - | |
| 328 | - | |
| 329 | - | |
| 330 | - | |
| 331 | - | |
| 332 | - | |
| 333 | - | |
| 334 | - | |
| 335 | - | |
| 336 | - | |
| 337 | - | |
| 1 | +package com.bsth.service.schedule.ttinfo2; | |
| 2 | + | |
| 3 | +import org.joda.time.*; | |
| 4 | +import java.util.*; | |
| 5 | +import org.apache.commons.lang3.StringUtils; | |
| 6 | + | |
| 7 | +import com.bsth.service.schedule.rules.ttinfo2.Result; | |
| 8 | +import com.bsth.service.schedule.rules.ttinfo2.Result.StatInfo; | |
| 9 | +import com.bsth.service.schedule.rules.ttinfo2.CalcuParam; | |
| 10 | + | |
| 11 | +import com.bsth.entity.schedule.TTInfo; | |
| 12 | +import com.bsth.entity.schedule.TTInfoDetail; | |
| 13 | +import com.bsth.entity.Line; | |
| 14 | + | |
| 15 | +import com.bsth.service.LineService; | |
| 16 | +import com.bsth.service.schedule.TTInfoDetailService; | |
| 17 | + | |
| 18 | +import org.slf4j.Logger | |
| 19 | +import org.joda.time.format.DateTimeFormat | |
| 20 | +import java.lang.String | |
| 21 | +import java.lang.Object; | |
| 22 | + | |
| 23 | + | |
| 24 | +// 全局日志类(一般使用调用此规则的service类) | |
| 25 | +global Logger log; | |
| 26 | +global LineService lineService; | |
| 27 | +global TTInfoDetailService ttInfoDetailService; | |
| 28 | + | |
| 29 | +// 输出 | |
| 30 | +global Result rs; | |
| 31 | + | |
| 32 | +/* | |
| 33 | + 规则说明: | |
| 34 | + 1、找出指定线路,指定时间范围的时刻表 | |
| 35 | + 2、统计这些时刻表班次数据的情况 | |
| 36 | +*/ | |
| 37 | + | |
| 38 | +//-------------- 第一阶段、计算规则迭代数据(天数) ------------// | |
| 39 | +declare Calcu_iter_days_result | |
| 40 | + xlId: Integer // 线路Id | |
| 41 | + xlName: String // 线路名字 | |
| 42 | + | |
| 43 | + // 迭代数据 | |
| 44 | + calcu_day: Integer // 准备计算第几天 | |
| 45 | + calcu_weekday: Integer // 准备计算星期几(1到7) | |
| 46 | + calcu_date: DateTime // 准备计算的具体日期 | |
| 47 | + | |
| 48 | + // 范围数据 | |
| 49 | + calcu_days: Integer // 总共需要计算的天数 | |
| 50 | + calcu_start_date: DateTime // 开始计算日期 | |
| 51 | + calcu_end_date: DateTime // 结束计算日期 | |
| 52 | + | |
| 53 | + // 时刻表映射数据 | |
| 54 | + ttinfomap: Map // 指定时间段内,用的时刻表id映射 Map<Long, Long> | |
| 55 | +end | |
| 56 | + | |
| 57 | +rule "calcu_iter_days" | |
| 58 | + salience 1900 | |
| 59 | + when | |
| 60 | + CalcuParam( | |
| 61 | + $xlId: xlId, | |
| 62 | + $fromDate: fromDate, | |
| 63 | + $toDate: toDate, | |
| 64 | + $fromDate.isBefore($toDate) || $fromDate.isEqual($toDate) | |
| 65 | + ) | |
| 66 | + then | |
| 67 | + // 构造Calcu_iter_days_result对象,进行下一步计算 | |
| 68 | + Calcu_iter_days_result cidr = new Calcu_iter_days_result(); | |
| 69 | + Period p = new Period($fromDate, $toDate, PeriodType.days()); | |
| 70 | + | |
| 71 | + Line line = (Line) lineService.findById($xlId); | |
| 72 | + | |
| 73 | + cidr.setXlId($xlId); | |
| 74 | + cidr.setXlName(line.getName()); | |
| 75 | + | |
| 76 | + cidr.setCalcu_day(new Integer(1)); | |
| 77 | + cidr.setCalcu_weekday(Integer.valueOf($fromDate.getDayOfWeek())); | |
| 78 | + cidr.setCalcu_date($fromDate); | |
| 79 | + | |
| 80 | + cidr.setCalcu_days(Integer.valueOf(p.getDays() + 1)); | |
| 81 | + cidr.setCalcu_start_date($fromDate); | |
| 82 | + cidr.setCalcu_end_date($toDate); | |
| 83 | + | |
| 84 | + cidr.setTtinfomap(new HashMap()); | |
| 85 | + | |
| 86 | + log.info( | |
| 87 | + "线路={}-id={},开始时间={},结束时间={},总共计算的天数={},将从开始时间迭代", | |
| 88 | + cidr.getXlName(), | |
| 89 | + cidr.getXlId(), | |
| 90 | + cidr.getCalcu_start_date(), | |
| 91 | + cidr.getCalcu_end_date(), | |
| 92 | + cidr.getCalcu_days() | |
| 93 | + ); | |
| 94 | + | |
| 95 | + insert(cidr); | |
| 96 | +end | |
| 97 | + | |
| 98 | +//-------------- 第二阶段、包装时刻表实体类到内部对象 ------------// | |
| 99 | + | |
| 100 | +declare TTInfo_wrap | |
| 101 | + id: Long // 时刻表id | |
| 102 | + name: String // 时刻表名字 | |
| 103 | + weekdays: List // 周一到周日是否启用 List<Boolean> | |
| 104 | + specialDays: List // 特殊节假日 List<DateTime> | |
| 105 | + updateDate: DateTime // 最新修改时间 | |
| 106 | +end | |
| 107 | + | |
| 108 | +rule "TTInfo_wrap_result" | |
| 109 | + salience 900 | |
| 110 | + when | |
| 111 | + CalcuParam($xlId: xlId) | |
| 112 | + $ttinfo: TTInfo( | |
| 113 | + xl.id == $xlId, | |
| 114 | + isEnableDisTemplate == true, | |
| 115 | + isCancel == false | |
| 116 | + ) | |
| 117 | + then | |
| 118 | + TTInfo_wrap ttInfo_wrap = new TTInfo_wrap(); | |
| 119 | + ttInfo_wrap.setId($ttinfo.getId()); | |
| 120 | + ttInfo_wrap.setName($ttinfo.getName()); | |
| 121 | + ttInfo_wrap.setUpdateDate(new DateTime($ttinfo.getUpdateDate())); | |
| 122 | + ttInfo_wrap.setWeekdays(new ArrayList()); | |
| 123 | + ttInfo_wrap.setSpecialDays(new ArrayList()); | |
| 124 | + | |
| 125 | + String[] days = $ttinfo.getRule_days().split(","); | |
| 126 | + for (int i = 0; i < 7; i++) { | |
| 127 | + if ("1".equals(days[i])) { | |
| 128 | + ttInfo_wrap.getWeekdays().add(true); | |
| 129 | + } else { | |
| 130 | + ttInfo_wrap.getWeekdays().add(false); | |
| 131 | + } | |
| 132 | + } | |
| 133 | + | |
| 134 | + if (StringUtils.isNotEmpty($ttinfo.getSpecial_days())) { | |
| 135 | + String[] sdays = $ttinfo.getSpecial_days().split(","); | |
| 136 | + for (int i = 0; i < sdays.length; i++) { | |
| 137 | + ttInfo_wrap.getSpecialDays().add( | |
| 138 | + DateTimeFormat.forPattern( | |
| 139 | + "yyyy-MM-dd").parseDateTime(sdays[i])); | |
| 140 | + } | |
| 141 | + } | |
| 142 | + | |
| 143 | + log.info("时刻表={},id={},常规日期={},特殊日期={}", | |
| 144 | + ttInfo_wrap.getName(), | |
| 145 | + ttInfo_wrap.getId(), | |
| 146 | + ttInfo_wrap.getWeekdays(), | |
| 147 | + ttInfo_wrap.getSpecialDays()); | |
| 148 | + | |
| 149 | + insert(ttInfo_wrap); | |
| 150 | + | |
| 151 | +end | |
| 152 | + | |
| 153 | +//-------------- 第三阶段、时刻表的日期匹配 ------------// | |
| 154 | + | |
| 155 | +declare TTInfoDetails_wrap | |
| 156 | + ttInfoId: Long // 时刻表id | |
| 157 | + bcInfoList: List // 班次信息列表 List<TTInfoDetail> | |
| 158 | +end | |
| 159 | + | |
| 160 | +rule "Calcu_iter_days_special_day" // 特殊日期匹配 | |
| 161 | + salience 800 | |
| 162 | + when | |
| 163 | + $cid : Calcu_iter_days_result( | |
| 164 | + $calcu_date: calcu_date, | |
| 165 | + $calcu_day: calcu_day, | |
| 166 | + calcu_day <= calcu_days | |
| 167 | + ) | |
| 168 | + TTInfo_wrap( | |
| 169 | + $tid: id, | |
| 170 | + $tname: name, | |
| 171 | + specialDays contains $calcu_date | |
| 172 | + ) | |
| 173 | + then | |
| 174 | + // 更新迭代对象 | |
| 175 | + Integer new_calcu_day = Integer.valueOf($calcu_day + 1); | |
| 176 | + $cid.setCalcu_day(new_calcu_day); | |
| 177 | + DateTime new_calcu_date = $calcu_date.plusDays(1); | |
| 178 | + $cid.setCalcu_date(new_calcu_date); | |
| 179 | + $cid.setCalcu_weekday(Integer.valueOf(new_calcu_date.getDayOfWeek())); | |
| 180 | + | |
| 181 | + log.info("启用特殊日期时刻表:" + | |
| 182 | + "时刻表id={} 特殊日期={}", | |
| 183 | + $tid, $calcu_date); | |
| 184 | + | |
| 185 | + // 判定使用的时刻表 | |
| 186 | + if (!$cid.getTtinfomap().containsKey($tid)) { | |
| 187 | + $cid.getTtinfomap().put($tid, $tid); | |
| 188 | + StatInfo statInfo = new StatInfo(); | |
| 189 | + statInfo.setTtid($tid); | |
| 190 | + statInfo.setTtname($tname); | |
| 191 | + insert(statInfo); | |
| 192 | + | |
| 193 | + TTInfoDetails_wrap ttInfoDetails_wrap = new TTInfoDetails_wrap(); | |
| 194 | + ttInfoDetails_wrap.setTtInfoId($tid); | |
| 195 | + Map<String, Object> param = new HashMap<String, Object>(); | |
| 196 | + param.put("ttinfo.id_eq", $tid); | |
| 197 | + ttInfoDetails_wrap.setBcInfoList(ttInfoDetailService.list(param)); | |
| 198 | + insert(ttInfoDetails_wrap); | |
| 199 | + } | |
| 200 | + update($cid); | |
| 201 | + | |
| 202 | +end | |
| 203 | + | |
| 204 | +rule "Calcu_iter_days_normal_day" // 平日匹配 | |
| 205 | + salience 700 | |
| 206 | + when | |
| 207 | + $cid : Calcu_iter_days_result( | |
| 208 | + $calcu_date: calcu_date, | |
| 209 | + $calcu_weekday: calcu_weekday, | |
| 210 | + $calcu_day: calcu_day, | |
| 211 | + calcu_day <= calcu_days | |
| 212 | + ) | |
| 213 | + TTInfo_wrap( | |
| 214 | + $tid: id, | |
| 215 | + $tname: name, | |
| 216 | + specialDays not contains $calcu_date, | |
| 217 | + weekdays[$calcu_weekday - 1] == Boolean.TRUE | |
| 218 | + ) | |
| 219 | + then | |
| 220 | + // 更新迭代对象 | |
| 221 | + Integer new_calcu_day = Integer.valueOf($calcu_day + 1); | |
| 222 | + $cid.setCalcu_day(new_calcu_day); | |
| 223 | + DateTime new_calcu_date = $calcu_date.plusDays(1); | |
| 224 | + $cid.setCalcu_date(new_calcu_date); | |
| 225 | + $cid.setCalcu_weekday(Integer.valueOf(new_calcu_date.getDayOfWeek())); | |
| 226 | + | |
| 227 | + | |
| 228 | + log.info("启用常规日期时刻表:" + | |
| 229 | + "时刻表id={} 常规日期={} 星期几={}", | |
| 230 | + $tid, $calcu_date, $calcu_weekday); | |
| 231 | + | |
| 232 | + // 判定使用的时刻表 | |
| 233 | + if (!$cid.getTtinfomap().containsKey($tid)) { | |
| 234 | + $cid.getTtinfomap().put($tid, $tid); | |
| 235 | + StatInfo statInfo = new StatInfo(); | |
| 236 | + statInfo.setTtid($tid); | |
| 237 | + statInfo.setTtname($tname); | |
| 238 | + insert(statInfo); | |
| 239 | + | |
| 240 | + TTInfoDetails_wrap ttInfoDetails_wrap = new TTInfoDetails_wrap(); | |
| 241 | + ttInfoDetails_wrap.setTtInfoId($tid); | |
| 242 | + Map<String, Object> param = new HashMap<String, Object>(); | |
| 243 | + param.put("ttinfo.id_eq", $tid); | |
| 244 | + ttInfoDetails_wrap.setBcInfoList(ttInfoDetailService.list(param)); | |
| 245 | + insert(ttInfoDetails_wrap); | |
| 246 | + } | |
| 247 | + update($cid); | |
| 248 | + | |
| 249 | +end | |
| 250 | + | |
| 251 | +rule "Calcu_iter_days_other_day" // 都没有的情况下,匹配 | |
| 252 | + salience 500 | |
| 253 | + when | |
| 254 | + $cid : Calcu_iter_days_result( | |
| 255 | + $calcu_date: calcu_date, | |
| 256 | + $calcu_weekday: calcu_weekday, | |
| 257 | + $calcu_day: calcu_day, | |
| 258 | + calcu_day <= calcu_days | |
| 259 | + ) | |
| 260 | + TTInfo_wrap( | |
| 261 | + $tid: id, | |
| 262 | + $tname: name, | |
| 263 | + specialDays not contains $calcu_date, | |
| 264 | + weekdays[$calcu_weekday - 1] == false | |
| 265 | + ) | |
| 266 | + then | |
| 267 | + // 更新迭代对象 | |
| 268 | + Integer new_calcu_day = Integer.valueOf($calcu_day + 1); | |
| 269 | + $cid.setCalcu_day(new_calcu_day); | |
| 270 | + DateTime new_calcu_date = $calcu_date.plusDays(1); | |
| 271 | + $cid.setCalcu_date(new_calcu_date); | |
| 272 | + $cid.setCalcu_weekday(Integer.valueOf(new_calcu_date.getDayOfWeek())); | |
| 273 | + | |
| 274 | + log.info("启用默认日期时刻表:" + | |
| 275 | + "时刻表id={} 常规日期={} 星期几={}", | |
| 276 | + $tid, $calcu_date, $calcu_weekday); | |
| 277 | + | |
| 278 | + // 判定使用的时刻表 | |
| 279 | + if (!$cid.getTtinfomap().containsKey($tid)) { | |
| 280 | + $cid.getTtinfomap().put($tid, $tid); | |
| 281 | + StatInfo statInfo = new StatInfo(); | |
| 282 | + statInfo.setTtid($tid); | |
| 283 | + statInfo.setTtname($tname); | |
| 284 | + insert(statInfo); | |
| 285 | + | |
| 286 | + TTInfoDetails_wrap ttInfoDetails_wrap = new TTInfoDetails_wrap(); | |
| 287 | + ttInfoDetails_wrap.setTtInfoId($tid); | |
| 288 | + Map<String, Object> param = new HashMap<String, Object>(); | |
| 289 | + param.put("ttinfo.id_eq", $tid); | |
| 290 | + ttInfoDetails_wrap.setBcInfoList(ttInfoDetailService.list(param)); | |
| 291 | + insert(ttInfoDetails_wrap); | |
| 292 | + } | |
| 293 | + update($cid); | |
| 294 | + | |
| 295 | +end | |
| 296 | + | |
| 297 | +//-------------- 第四阶段、时刻表明细统计值 ------------// | |
| 298 | + | |
| 299 | +rule "statinfo_result" // 统计计算结果 | |
| 300 | + salience 300 | |
| 301 | + no-loop | |
| 302 | + when | |
| 303 | + $statInfo: StatInfo($tid: ttid) | |
| 304 | + $ttInfoDetails_wrap: TTInfoDetails_wrap(ttInfoId == $tid) | |
| 305 | + $allbc: Long() from accumulate (TTInfoDetail() from $ttInfoDetails_wrap.getBcInfoList(), count()) | |
| 306 | + $inbc: Long() from accumulate (TTInfoDetail(bcType == "in") from $ttInfoDetails_wrap.getBcInfoList(), count()) | |
| 307 | + $outbc: Long() from accumulate (TTInfoDetail(bcType == "out") from $ttInfoDetails_wrap.getBcInfoList(), count()) | |
| 308 | + $yybc: Long() from accumulate (TTInfoDetail(bcType != "out", bcType != "in") from $ttInfoDetails_wrap.getBcInfoList(), count()) | |
| 309 | + $errorbc: Long() from accumulate ($ttd: TTInfoDetail() from $ttInfoDetails_wrap.getBcInfoList(), ecount($ttd)) | |
| 310 | + then | |
| 311 | + log.info("时刻表={},id={},班次数={},进场={},出场={},营运={},错误={}", $statInfo.getTtname(), $statInfo.getTtid(), $allbc, $inbc, $outbc, $yybc, $errorbc); | |
| 312 | + | |
| 313 | + $statInfo.setAllbc($allbc); | |
| 314 | + $statInfo.setInbc($inbc); | |
| 315 | + $statInfo.setOutbc($outbc); | |
| 316 | + $statInfo.setYybc($yybc); | |
| 317 | + $statInfo.setErrorbc($errorbc); | |
| 318 | + | |
| 319 | + rs.getInfos().add($statInfo); | |
| 320 | + | |
| 321 | +end | |
| 322 | + | |
| 323 | + | |
| 324 | + | |
| 325 | + | |
| 326 | + | |
| 327 | + | |
| 328 | + | |
| 329 | + | |
| 330 | + | |
| 331 | + | |
| 332 | + | |
| 333 | + | |
| 334 | + | |
| 335 | + | |
| 336 | + | |
| 337 | + | ... | ... |