Commit 3a74f9349a8bec9a576bb783b6f8cc5337362557
Merge branch 'minhang' of
http://222.66.0.204:8090/panzhaov5/bsth_control into minhang
Showing
14 changed files
with
714 additions
and
3534 deletions
Too many changes to show.
To preserve performance only 14 of 21 files are displayed.
src/main/java/com/bsth/entity/schedule/temp/SchedulePlanRuleResult.java
0 → 100644
| 1 | +package com.bsth.entity.schedule.temp; | |
| 2 | + | |
| 3 | +import com.bsth.entity.schedule.SchedulePlan; | |
| 4 | + | |
| 5 | +import javax.persistence.Entity; | |
| 6 | +import javax.persistence.GeneratedValue; | |
| 7 | +import javax.persistence.Id; | |
| 8 | +import javax.persistence.Table; | |
| 9 | +import java.util.Date; | |
| 10 | + | |
| 11 | +/** | |
| 12 | + * 排班的中间结果数据,记录每次排班后规则的变化。 | |
| 13 | + */ | |
| 14 | +@Entity | |
| 15 | +@Table(name = "bsth_c_s_sp_rule_rst") | |
| 16 | +public class SchedulePlanRuleResult { | |
| 17 | + /** 主键Id */ | |
| 18 | + @Id | |
| 19 | + @GeneratedValue | |
| 20 | + private Long id; | |
| 21 | + | |
| 22 | + /** 线路id */ | |
| 23 | + private String xlId; | |
| 24 | + /** 线路名字 */ | |
| 25 | + private String xlName; | |
| 26 | + | |
| 27 | + /** 排班规则id */ | |
| 28 | + private String ruleId; | |
| 29 | + /** 车辆配置id */ | |
| 30 | + private String ccId; | |
| 31 | + /** 车辆自编号 */ | |
| 32 | + private String ccZbh; | |
| 33 | + | |
| 34 | + /** 路牌id列表字符串 */ | |
| 35 | + private String gids; | |
| 36 | + /** 路牌名字列表字符串 */ | |
| 37 | + private String gnames; | |
| 38 | + /** 翻到哪个路牌索引 */ | |
| 39 | + private String gidindex; | |
| 40 | + /** 人员配置id列表字符串 */ | |
| 41 | + private String ecids; | |
| 42 | + /** 人员配置搭班编码列表字符串 */ | |
| 43 | + private String ecdbbms; | |
| 44 | + /** 翻到哪个人员配置索引 */ | |
| 45 | + private String ecindex; | |
| 46 | + | |
| 47 | + /** 时刻表id */ | |
| 48 | + private String ttinfoId; | |
| 49 | + /** 时刻表名字 */ | |
| 50 | + private String ttinfoName; | |
| 51 | + | |
| 52 | + /** 排班日期 */ | |
| 53 | + private Date scheduleDate; | |
| 54 | + | |
| 55 | + /** 操作人员id */ | |
| 56 | + private String sysuserId; | |
| 57 | + /** 操作人员姓名 */ | |
| 58 | + private String sysuserName; | |
| 59 | + /** 操作时间 */ | |
| 60 | + private Date createDate; | |
| 61 | + | |
| 62 | + public SchedulePlanRuleResult() { | |
| 63 | + | |
| 64 | + } | |
| 65 | + public SchedulePlanRuleResult(SchedulePlan schedulePlan) { | |
| 66 | + this.sysuserId = schedulePlan.getCreateBy().getId().toString(); | |
| 67 | + this.sysuserName = schedulePlan.getCreateBy().getName(); | |
| 68 | +// this.createDate = schedulePlan.getCreateDate(); | |
| 69 | + this.createDate = new Date(); | |
| 70 | + } | |
| 71 | + | |
| 72 | + public Long getId() { | |
| 73 | + return id; | |
| 74 | + } | |
| 75 | + | |
| 76 | + public void setId(Long id) { | |
| 77 | + this.id = id; | |
| 78 | + } | |
| 79 | + | |
| 80 | + public String getRuleId() { | |
| 81 | + return ruleId; | |
| 82 | + } | |
| 83 | + | |
| 84 | + public void setRuleId(String ruleId) { | |
| 85 | + this.ruleId = ruleId; | |
| 86 | + } | |
| 87 | + | |
| 88 | + public String getCcId() { | |
| 89 | + return ccId; | |
| 90 | + } | |
| 91 | + | |
| 92 | + public void setCcId(String ccId) { | |
| 93 | + this.ccId = ccId; | |
| 94 | + } | |
| 95 | + | |
| 96 | + public String getCcZbh() { | |
| 97 | + return ccZbh; | |
| 98 | + } | |
| 99 | + | |
| 100 | + public void setCcZbh(String ccZbh) { | |
| 101 | + this.ccZbh = ccZbh; | |
| 102 | + } | |
| 103 | + | |
| 104 | + public String getGids() { | |
| 105 | + return gids; | |
| 106 | + } | |
| 107 | + | |
| 108 | + public void setGids(String gids) { | |
| 109 | + this.gids = gids; | |
| 110 | + } | |
| 111 | + | |
| 112 | + public String getGnames() { | |
| 113 | + return gnames; | |
| 114 | + } | |
| 115 | + | |
| 116 | + public void setGnames(String gnames) { | |
| 117 | + this.gnames = gnames; | |
| 118 | + } | |
| 119 | + | |
| 120 | + public String getGidindex() { | |
| 121 | + return gidindex; | |
| 122 | + } | |
| 123 | + | |
| 124 | + public void setGidindex(String gidindex) { | |
| 125 | + this.gidindex = gidindex; | |
| 126 | + } | |
| 127 | + | |
| 128 | + public String getEcids() { | |
| 129 | + return ecids; | |
| 130 | + } | |
| 131 | + | |
| 132 | + public void setEcids(String ecids) { | |
| 133 | + this.ecids = ecids; | |
| 134 | + } | |
| 135 | + | |
| 136 | + public String getEcdbbms() { | |
| 137 | + return ecdbbms; | |
| 138 | + } | |
| 139 | + | |
| 140 | + public void setEcdbbms(String ecdbbms) { | |
| 141 | + this.ecdbbms = ecdbbms; | |
| 142 | + } | |
| 143 | + | |
| 144 | + public String getEcindex() { | |
| 145 | + return ecindex; | |
| 146 | + } | |
| 147 | + | |
| 148 | + public void setEcindex(String ecindex) { | |
| 149 | + this.ecindex = ecindex; | |
| 150 | + } | |
| 151 | + | |
| 152 | + public Date getScheduleDate() { | |
| 153 | + return scheduleDate; | |
| 154 | + } | |
| 155 | + | |
| 156 | + public void setScheduleDate(Date scheduleDate) { | |
| 157 | + this.scheduleDate = scheduleDate; | |
| 158 | + } | |
| 159 | + | |
| 160 | + public String getSysuserId() { | |
| 161 | + return sysuserId; | |
| 162 | + } | |
| 163 | + | |
| 164 | + public void setSysuserId(String sysuserId) { | |
| 165 | + this.sysuserId = sysuserId; | |
| 166 | + } | |
| 167 | + | |
| 168 | + public String getSysuserName() { | |
| 169 | + return sysuserName; | |
| 170 | + } | |
| 171 | + | |
| 172 | + public void setSysuserName(String sysuserName) { | |
| 173 | + this.sysuserName = sysuserName; | |
| 174 | + } | |
| 175 | + | |
| 176 | + public Date getCreateDate() { | |
| 177 | + return createDate; | |
| 178 | + } | |
| 179 | + | |
| 180 | + public void setCreateDate(Date createDate) { | |
| 181 | + this.createDate = createDate; | |
| 182 | + } | |
| 183 | + | |
| 184 | + public String getXlId() { | |
| 185 | + return xlId; | |
| 186 | + } | |
| 187 | + | |
| 188 | + public void setXlId(String xlId) { | |
| 189 | + this.xlId = xlId; | |
| 190 | + } | |
| 191 | + | |
| 192 | + public String getXlName() { | |
| 193 | + return xlName; | |
| 194 | + } | |
| 195 | + | |
| 196 | + public void setXlName(String xlName) { | |
| 197 | + this.xlName = xlName; | |
| 198 | + } | |
| 199 | + | |
| 200 | + public String getTtinfoId() { | |
| 201 | + return ttinfoId; | |
| 202 | + } | |
| 203 | + | |
| 204 | + public void setTtinfoId(String ttinfoId) { | |
| 205 | + this.ttinfoId = ttinfoId; | |
| 206 | + } | |
| 207 | + | |
| 208 | + public String getTtinfoName() { | |
| 209 | + return ttinfoName; | |
| 210 | + } | |
| 211 | + | |
| 212 | + public void setTtinfoName(String ttinfoName) { | |
| 213 | + this.ttinfoName = ttinfoName; | |
| 214 | + } | |
| 215 | +} | ... | ... |
src/main/java/com/bsth/repository/schedule/SchedulePlanRuleResultRepository.java
0 → 100644
| 1 | +package com.bsth.repository.schedule; | |
| 2 | + | |
| 3 | +import com.bsth.entity.schedule.temp.SchedulePlanRuleResult; | |
| 4 | +import com.bsth.repository.BaseRepository; | |
| 5 | +import org.springframework.data.jpa.repository.Modifying; | |
| 6 | +import org.springframework.data.jpa.repository.Query; | |
| 7 | +import org.springframework.stereotype.Repository; | |
| 8 | + | |
| 9 | +import java.util.Date; | |
| 10 | +import java.util.List; | |
| 11 | + | |
| 12 | +/** | |
| 13 | + * Created by xu on 17/3/29. | |
| 14 | + */ | |
| 15 | +@Repository | |
| 16 | +public interface SchedulePlanRuleResultRepository extends BaseRepository<SchedulePlanRuleResult, Long> { | |
| 17 | + | |
| 18 | + @Query("select t from SchedulePlanRuleResult t " + | |
| 19 | + "where not exists (select 1 from SchedulePlanRuleResult " + | |
| 20 | + "where createDate > t.createDate and scheduleDate < ?2 ) " + | |
| 21 | + "and t.xlId = ?1 and t.scheduleDate < ?2") | |
| 22 | + List<SchedulePlanRuleResult> findLastByXl(String xlid, Date from); | |
| 23 | + | |
| 24 | +// @Modifying | |
| 25 | +// @Query("delete from SchedulePlanRuleResult t " + | |
| 26 | +// "where t.xlId = ?1 and t.scheduleDate >= ?2 and t.scheduleDate <= ?3") | |
| 27 | +// void deleteByXlAndDate(String xlid, Date from, Date to); | |
| 28 | +} | ... | ... |
src/main/java/com/bsth/service/schedule/SchedulePlanRuleResultService.java
0 → 100644
src/main/java/com/bsth/service/schedule/impl/SchedulePlanRuleResultServiceImpl.java
0 → 100644
| 1 | +package com.bsth.service.schedule.impl; | |
| 2 | + | |
| 3 | +import com.bsth.entity.schedule.temp.SchedulePlanRuleResult; | |
| 4 | +import com.bsth.service.schedule.SchedulePlanRuleResultService; | |
| 5 | +import org.springframework.stereotype.Service; | |
| 6 | + | |
| 7 | +/** | |
| 8 | + * Created by xu on 17/3/29. | |
| 9 | + */ | |
| 10 | +@Service | |
| 11 | +public class SchedulePlanRuleResultServiceImpl extends BServiceImpl<SchedulePlanRuleResult, Long> implements SchedulePlanRuleResultService { | |
| 12 | +} | ... | ... |
src/main/java/com/bsth/service/schedule/impl/SchedulePlanServiceImpl.java
| ... | ... | @@ -6,6 +6,7 @@ import com.bsth.entity.schedule.rule.ScheduleRule1Flat; |
| 6 | 6 | import com.bsth.repository.BusinessRepository; |
| 7 | 7 | import com.bsth.repository.LineRepository; |
| 8 | 8 | import com.bsth.repository.schedule.*; |
| 9 | +import com.bsth.service.schedule.SchedulePlanRuleResultService; | |
| 9 | 10 | import com.bsth.service.schedule.SchedulePlanService; |
| 10 | 11 | import com.bsth.service.schedule.rules.plan.PlanCalcuParam_input; |
| 11 | 12 | import com.bsth.service.schedule.rules.plan.PlanResult; |
| ... | ... | @@ -51,6 +52,10 @@ public class SchedulePlanServiceImpl extends BServiceImpl<SchedulePlan, Long> im |
| 51 | 52 | private EmployeeConfigInfoRepository employeeConfigInfoRepository; |
| 52 | 53 | @Autowired |
| 53 | 54 | private BusinessRepository businessRepository; |
| 55 | + @Autowired | |
| 56 | + private SchedulePlanRuleResultService schedulePlanRuleResultService; | |
| 57 | + @Autowired | |
| 58 | + private SchedulePlanRuleResultRepository schedulePlanRuleResultRepository; | |
| 54 | 59 | |
| 55 | 60 | /** 日志记录器 */ |
| 56 | 61 | private Logger logger = LoggerFactory.getLogger(SchedulePlanServiceImpl.class); |
| ... | ... | @@ -84,6 +89,7 @@ public class SchedulePlanServiceImpl extends BServiceImpl<SchedulePlan, Long> im |
| 84 | 89 | // 设置gloable对象,在drl中通过别名使用 |
| 85 | 90 | session.setGlobal("scheduleResult", scheduleResults_output); |
| 86 | 91 | session.setGlobal("log", logger); // 设置日志 |
| 92 | + session.setGlobal("schedulePlanRuleResultRepository", schedulePlanRuleResultRepository); | |
| 87 | 93 | |
| 88 | 94 | // 载入数据 |
| 89 | 95 | session.insert(scheduleCalcuParam_input); |
| ... | ... | @@ -229,6 +235,8 @@ public class SchedulePlanServiceImpl extends BServiceImpl<SchedulePlan, Long> im |
| 229 | 235 | schedulePlan.getSchedulePlanInfoList().addAll(planResult.getSchedulePlanInfos()); |
| 230 | 236 | super.save(schedulePlan); |
| 231 | 237 | |
| 238 | + schedulePlanRuleResultService.bulkSave(scheduleResults_output.getSchedulePlanRuleResults()); | |
| 239 | + | |
| 232 | 240 | return new SchedulePlan(); |
| 233 | 241 | } |
| 234 | 242 | ... | ... |
src/main/java/com/bsth/service/schedule/rules/shiftloop/ScheduleCalcuParam_input.java
| ... | ... | @@ -12,11 +12,20 @@ public class ScheduleCalcuParam_input { |
| 12 | 12 | /** 结束计算日期 */ |
| 13 | 13 | private DateTime toDate; |
| 14 | 14 | |
| 15 | + /** 线路Id */ | |
| 16 | + private String xlId; | |
| 17 | + | |
| 18 | + /** 排班计划实体 */ | |
| 19 | + private SchedulePlan schedulePlan; | |
| 20 | + | |
| 15 | 21 | public ScheduleCalcuParam_input() {} |
| 16 | 22 | |
| 17 | 23 | public ScheduleCalcuParam_input(SchedulePlan schedulePlan) { |
| 18 | 24 | this.fromDate = new DateTime((schedulePlan.getScheduleFromTime())); |
| 19 | 25 | this.toDate = new DateTime((schedulePlan.getScheduleToTime())); |
| 26 | + | |
| 27 | + this.schedulePlan = schedulePlan; | |
| 28 | + this.xlId = String.valueOf(schedulePlan.getXl().getId()); | |
| 20 | 29 | } |
| 21 | 30 | |
| 22 | 31 | public DateTime getFromDate() { |
| ... | ... | @@ -35,4 +44,19 @@ public class ScheduleCalcuParam_input { |
| 35 | 44 | this.toDate = toDate; |
| 36 | 45 | } |
| 37 | 46 | |
| 47 | + public SchedulePlan getSchedulePlan() { | |
| 48 | + return schedulePlan; | |
| 49 | + } | |
| 50 | + | |
| 51 | + public void setSchedulePlan(SchedulePlan schedulePlan) { | |
| 52 | + this.schedulePlan = schedulePlan; | |
| 53 | + } | |
| 54 | + | |
| 55 | + public String getXlId() { | |
| 56 | + return xlId; | |
| 57 | + } | |
| 58 | + | |
| 59 | + public void setXlId(String xlId) { | |
| 60 | + this.xlId = xlId; | |
| 61 | + } | |
| 38 | 62 | } | ... | ... |
src/main/java/com/bsth/service/schedule/rules/shiftloop/ScheduleResults_output.java
| 1 | 1 | package com.bsth.service.schedule.rules.shiftloop; |
| 2 | 2 | |
| 3 | +import com.bsth.entity.schedule.temp.SchedulePlanRuleResult; | |
| 3 | 4 | import org.apache.commons.lang3.StringUtils; |
| 4 | 5 | |
| 5 | 6 | import java.util.*; |
| ... | ... | @@ -11,6 +12,17 @@ public class ScheduleResults_output { |
| 11 | 12 | /** 输出列表 */ |
| 12 | 13 | private List<ScheduleResult_output> results = new ArrayList<>(); |
| 13 | 14 | |
| 15 | + /** 排班规则结果保存数据 */ | |
| 16 | + private List<SchedulePlanRuleResult> schedulePlanRuleResults = new ArrayList<>(); | |
| 17 | + | |
| 18 | + public List<SchedulePlanRuleResult> getSchedulePlanRuleResults() { | |
| 19 | + return schedulePlanRuleResults; | |
| 20 | + } | |
| 21 | + | |
| 22 | + public void setSchedulePlanRuleResults(List<SchedulePlanRuleResult> schedulePlanRuleResults) { | |
| 23 | + this.schedulePlanRuleResults = schedulePlanRuleResults; | |
| 24 | + } | |
| 25 | + | |
| 14 | 26 | public List<ScheduleResult_output> getResults() { |
| 15 | 27 | return results; |
| 16 | 28 | } | ... | ... |
src/main/java/com/bsth/service/schedule/rules/shiftloop/ScheduleRule_input.java
| ... | ... | @@ -36,6 +36,9 @@ public class ScheduleRule_input { |
| 36 | 36 | /** 车辆翻版(周一到周日是否启用) */ |
| 37 | 37 | private List<Boolean> weekdays = new ArrayList<>(); |
| 38 | 38 | |
| 39 | + /** 关联的原始规则 */ | |
| 40 | + private ScheduleRule1Flat self; | |
| 41 | + | |
| 39 | 42 | public ScheduleRule_input() {} |
| 40 | 43 | |
| 41 | 44 | public ScheduleRule_input(ScheduleRule1Flat scheduleRule1Flat) { |
| ... | ... | @@ -74,6 +77,8 @@ public class ScheduleRule_input { |
| 74 | 77 | weekdays.add(false); |
| 75 | 78 | } |
| 76 | 79 | } |
| 80 | + | |
| 81 | + this.self = scheduleRule1Flat; | |
| 77 | 82 | } |
| 78 | 83 | |
| 79 | 84 | public String getRuleId() { |
| ... | ... | @@ -147,4 +152,12 @@ public class ScheduleRule_input { |
| 147 | 152 | public void setXlId(String xlId) { |
| 148 | 153 | this.xlId = xlId; |
| 149 | 154 | } |
| 155 | + | |
| 156 | + public ScheduleRule1Flat getSelf() { | |
| 157 | + return self; | |
| 158 | + } | |
| 159 | + | |
| 160 | + public void setSelf(ScheduleRule1Flat self) { | |
| 161 | + this.self = self; | |
| 162 | + } | |
| 150 | 163 | } | ... | ... |
src/main/java/com/bsth/service/schedule/rules/ttinfo/LpInfoResult_output.java
| ... | ... | @@ -14,6 +14,8 @@ public class LpInfoResult_output { |
| 14 | 14 | private String xlId; |
| 15 | 15 | /** 时刻表Id */ |
| 16 | 16 | private String ttInfoId; |
| 17 | + /** 时刻表名字 */ | |
| 18 | + private String ttInfoName; | |
| 17 | 19 | |
| 18 | 20 | public DateTime getDateTime() { |
| 19 | 21 | return dateTime; |
| ... | ... | @@ -46,4 +48,12 @@ public class LpInfoResult_output { |
| 46 | 48 | public void setTtInfoId(String ttInfoId) { |
| 47 | 49 | this.ttInfoId = ttInfoId; |
| 48 | 50 | } |
| 51 | + | |
| 52 | + public String getTtInfoName() { | |
| 53 | + return ttInfoName; | |
| 54 | + } | |
| 55 | + | |
| 56 | + public void setTtInfoName(String ttInfoName) { | |
| 57 | + this.ttInfoName = ttInfoName; | |
| 58 | + } | |
| 49 | 59 | } | ... | ... |
src/main/java/com/bsth/service/schedule/rules/ttinfo/LpInfoResultsFunction.java
| ... | ... | @@ -66,6 +66,7 @@ public class LpInfoResultsFunction implements AccumulateFunction { |
| 66 | 66 | lpInfoResult_output.setLpId(String.valueOf(ttInfoDetail.getLp().getId())); |
| 67 | 67 | lpInfoResult_output.setXlId(String.valueOf(ttInfoDetail.getXl().getId())); |
| 68 | 68 | lpInfoResult_output.setTtInfoId(String.valueOf(ttInfoDetail.getTtinfo().getId())); |
| 69 | + lpInfoResult_output.setTtInfoName(ttInfoDetail.getTtinfo().getName()); | |
| 69 | 70 | |
| 70 | 71 | lpInfoResultsData.lpInfoResult_outputMap.put( |
| 71 | 72 | ttInfoDetail.getLp().getId(), | ... | ... |
src/main/resources/datatools/ktrs/carsDataInput.ktr
| ... | ... | @@ -84,27 +84,6 @@ |
| 84 | 84 | <is_key_private>N</is_key_private> |
| 85 | 85 | </info> |
| 86 | 86 | <notepads> |
| 87 | - <notepad> | |
| 88 | - <note>原系统的导出表,有些数据是没有的,有些数据也有问题,如下
报废日期去掉
车辆编码,暂时用1代替
是否电车 没有
车辆序号 没有
是否切换 没有
线路名称(这里不做关联,只是登记的时候使用) 咩有

字典
是与否truefalseType 是 1
是与否truefalseType 否 0


供应商名称snames 巴士拓华 1
供应商名称snames 博康 2

营运状态yyztType 营运 1
营运状态yyztType 停运 2
营运状态yyztType 挂失 3
营运状态yyztType 迁出(过户) 4
营运状态yyztType 迁出(转籍) 5
营运状态yyztType 报废 6
营运状态yyztType 歇业 7
营运状态yyztType 注销 8
营运状态yyztType 测试 9
营运状态yyztType 其他 10

机动车类型jdcType 非机动车 1
机动车类型jdcType 机动一队 2
机动车类型jdcType 机动二队 3
机动车类型jdcType 机动三队 4
机动车类型jdcType 备车 5
机动车类型jdcType 抢修车 6

车辆类型carType 营运车 1
车辆类型carType 包车 2
车辆类型carType 学校班车 3
车辆类型carType 公司班车 4
车辆类型carType 待报废车 5
车辆类型carType 备车 6
车辆类型carType 测试设备 7



</note> | |
| 89 | - <xloc>45</xloc> | |
| 90 | - <yloc>254</yloc> | |
| 91 | - <width>346</width> | |
| 92 | - <heigth>730</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 | 87 | </notepads> |
| 109 | 88 | <connection> |
| 110 | 89 | <name>bus_control_variable</name> |
| ... | ... | @@ -268,98 +247,11 @@ |
| 268 | 247 | </attributes> |
| 269 | 248 | </connection> |
| 270 | 249 | <order> |
| 271 | - <hop> <from>原始系统导出的Excel输入</from><to>字段选择</to><enabled>Y</enabled> </hop> | |
| 272 | - <hop> <from>字段选择</from><to>是否空调车</to><enabled>Y</enabled> </hop> | |
| 273 | - <hop> <from>是否有LED服务屏</from><to>是否有TV视频</to><enabled>Y</enabled> </hop> | |
| 274 | - <hop> <from>是否有TV视频</from><to>是否的变成数字型</to><enabled>Y</enabled> </hop> | |
| 275 | - <hop> <from>是否空调车</from><to>有无人售票</to><enabled>Y</enabled> </hop> | |
| 276 | - <hop> <from>有无人售票</from><to>是否有LED服务屏</to><enabled>Y</enabled> </hop> | |
| 277 | 250 | <hop> <from>获取变量</from><to>原始系统导出的Excel输入</to><enabled>Y</enabled> </hop> |
| 278 | - <hop> <from>供应商名称</from><to>营运状态</to><enabled>Y</enabled> </hop> | |
| 279 | 251 | <hop> <from>插入/更新bsth_c_cars 2</from><to>错误输出 2</to><enabled>Y</enabled> </hop> |
| 280 | - <hop> <from>机动车类型</from><to>车辆类型</to><enabled>Y</enabled> </hop> | |
| 281 | - <hop> <from>营运状态</from><to>机动车类型</to><enabled>Y</enabled> </hop> | |
| 282 | - <hop> <from>车辆类型</from><to>车辆编码</to><enabled>Y</enabled> </hop> | |
| 283 | - <hop> <from>车辆编码</from><to>插入/更新bsth_c_cars 2</to><enabled>Y</enabled> </hop> | |
| 284 | - <hop> <from>是否的变成数字型</from><to>公交企业代码查询</to><enabled>Y</enabled> </hop> | |
| 285 | - <hop> <from>公交企业代码查询</from><to>供应商名称</to><enabled>Y</enabled> </hop> | |
| 286 | - <hop> <from>是否的变成数字型</from><to>错误输出 2 2</to><enabled>Y</enabled> </hop> | |
| 252 | + <hop> <from>原始系统导出的Excel输入</from><to>插入/更新bsth_c_cars 2</to><enabled>Y</enabled> </hop> | |
| 287 | 253 | </order> |
| 288 | 254 | <step> |
| 289 | - <name>供应商名称</name> | |
| 290 | - <type>ValueMapper</type> | |
| 291 | - <description/> | |
| 292 | - <distribute>Y</distribute> | |
| 293 | - <custom_distribution/> | |
| 294 | - <copies>1</copies> | |
| 295 | - <partitioning> | |
| 296 | - <method>none</method> | |
| 297 | - <schema_name/> | |
| 298 | - </partitioning> | |
| 299 | - <field_to_use>supplierName</field_to_use> | |
| 300 | - <target_field/> | |
| 301 | - <non_match_default/> | |
| 302 | - <fields> | |
| 303 | - <field> | |
| 304 | - <source_value>巴士拓华</source_value> | |
| 305 | - <target_value>1</target_value> | |
| 306 | - </field> | |
| 307 | - <field> | |
| 308 | - <source_value>博康</source_value> | |
| 309 | - <target_value>2</target_value> | |
| 310 | - </field> | |
| 311 | - </fields> | |
| 312 | - <cluster_schema/> | |
| 313 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 314 | - <xloc>709</xloc> | |
| 315 | - <yloc>172</yloc> | |
| 316 | - <draw>Y</draw> | |
| 317 | - </GUI> | |
| 318 | - </step> | |
| 319 | - | |
| 320 | - <step> | |
| 321 | - <name>公交企业代码查询</name> | |
| 322 | - <type>DBLookup</type> | |
| 323 | - <description/> | |
| 324 | - <distribute>Y</distribute> | |
| 325 | - <custom_distribution/> | |
| 326 | - <copies>1</copies> | |
| 327 | - <partitioning> | |
| 328 | - <method>none</method> | |
| 329 | - <schema_name/> | |
| 330 | - </partitioning> | |
| 331 | - <connection>bus_control_variable</connection> | |
| 332 | - <cache>N</cache> | |
| 333 | - <cache_load_all>N</cache_load_all> | |
| 334 | - <cache_size>0</cache_size> | |
| 335 | - <lookup> | |
| 336 | - <schema/> | |
| 337 | - <table>bsth_c_business</table> | |
| 338 | - <orderby/> | |
| 339 | - <fail_on_multiple>N</fail_on_multiple> | |
| 340 | - <eat_row_on_failure>N</eat_row_on_failure> | |
| 341 | - <key> | |
| 342 | - <name>company</name> | |
| 343 | - <field>business_name</field> | |
| 344 | - <condition>=</condition> | |
| 345 | - <name2/> | |
| 346 | - </key> | |
| 347 | - <value> | |
| 348 | - <name>business_code</name> | |
| 349 | - <rename>businessCode</rename> | |
| 350 | - <default/> | |
| 351 | - <type>String</type> | |
| 352 | - </value> | |
| 353 | - </lookup> | |
| 354 | - <cluster_schema/> | |
| 355 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 356 | - <xloc>839</xloc> | |
| 357 | - <yloc>169</yloc> | |
| 358 | - <draw>Y</draw> | |
| 359 | - </GUI> | |
| 360 | - </step> | |
| 361 | - | |
| 362 | - <step> | |
| 363 | 255 | <name>原始系统导出的Excel输入</name> |
| 364 | 256 | <type>ExcelInput</type> |
| 365 | 257 | <description/> |
| ... | ... | @@ -418,7 +310,7 @@ |
| 418 | 310 | <group/> |
| 419 | 311 | </field> |
| 420 | 312 | <field> |
| 421 | - <name>车辆编码</name> | |
| 313 | + <name>所属公司</name> | |
| 422 | 314 | <type>String</type> |
| 423 | 315 | <length>-1</length> |
| 424 | 316 | <precision>-1</precision> |
| ... | ... | @@ -430,7 +322,7 @@ |
| 430 | 322 | <group/> |
| 431 | 323 | </field> |
| 432 | 324 | <field> |
| 433 | - <name>车型类别</name> | |
| 325 | + <name>所属公司代码</name> | |
| 434 | 326 | <type>String</type> |
| 435 | 327 | <length>-1</length> |
| 436 | 328 | <precision>-1</precision> |
| ... | ... | @@ -442,7 +334,7 @@ |
| 442 | 334 | <group/> |
| 443 | 335 | </field> |
| 444 | 336 | <field> |
| 445 | - <name>座位数</name> | |
| 337 | + <name>所属分公司</name> | |
| 446 | 338 | <type>String</type> |
| 447 | 339 | <length>-1</length> |
| 448 | 340 | <precision>-1</precision> |
| ... | ... | @@ -454,7 +346,7 @@ |
| 454 | 346 | <group/> |
| 455 | 347 | </field> |
| 456 | 348 | <field> |
| 457 | - <name>载客标准</name> | |
| 349 | + <name>所属分公司代码</name> | |
| 458 | 350 | <type>String</type> |
| 459 | 351 | <length>-1</length> |
| 460 | 352 | <precision>-1</precision> |
| ... | ... | @@ -466,7 +358,7 @@ |
| 466 | 358 | <group/> |
| 467 | 359 | </field> |
| 468 | 360 | <field> |
| 469 | - <name>技术速度</name> | |
| 361 | + <name>供应商名称</name> | |
| 470 | 362 | <type>String</type> |
| 471 | 363 | <length>-1</length> |
| 472 | 364 | <precision>-1</precision> |
| ... | ... | @@ -478,7 +370,7 @@ |
| 478 | 370 | <group/> |
| 479 | 371 | </field> |
| 480 | 372 | <field> |
| 481 | - <name>是否空调</name> | |
| 373 | + <name>设备终端号</name> | |
| 482 | 374 | <type>String</type> |
| 483 | 375 | <length>-1</length> |
| 484 | 376 | <precision>-1</precision> |
| ... | ... | @@ -489,1644 +381,246 @@ |
| 489 | 381 | <decimal/> |
| 490 | 382 | <group/> |
| 491 | 383 | </field> |
| 384 | + </fields> | |
| 385 | + <sheets> | |
| 386 | + <sheet> | |
| 387 | + <name>工作表1</name> | |
| 388 | + <startrow>0</startrow> | |
| 389 | + <startcol>0</startcol> | |
| 390 | + </sheet> | |
| 391 | + </sheets> | |
| 392 | + <strict_types>N</strict_types> | |
| 393 | + <error_ignored>N</error_ignored> | |
| 394 | + <error_line_skipped>N</error_line_skipped> | |
| 395 | + <bad_line_files_destination_directory/> | |
| 396 | + <bad_line_files_extension>warning</bad_line_files_extension> | |
| 397 | + <error_line_files_destination_directory/> | |
| 398 | + <error_line_files_extension>error</error_line_files_extension> | |
| 399 | + <line_number_files_destination_directory/> | |
| 400 | + <line_number_files_extension>line</line_number_files_extension> | |
| 401 | + <shortFileFieldName/> | |
| 402 | + <pathFieldName/> | |
| 403 | + <hiddenFieldName/> | |
| 404 | + <lastModificationTimeFieldName/> | |
| 405 | + <uriNameFieldName/> | |
| 406 | + <rootUriNameFieldName/> | |
| 407 | + <extensionFieldName/> | |
| 408 | + <sizeFieldName/> | |
| 409 | + <spreadsheet_type>JXL</spreadsheet_type> | |
| 410 | + <cluster_schema/> | |
| 411 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 412 | + <xloc>131</xloc> | |
| 413 | + <yloc>58</yloc> | |
| 414 | + <draw>Y</draw> | |
| 415 | + </GUI> | |
| 416 | + </step> | |
| 417 | + | |
| 418 | + <step> | |
| 419 | + <name>插入/更新bsth_c_cars 2</name> | |
| 420 | + <type>InsertUpdate</type> | |
| 421 | + <description/> | |
| 422 | + <distribute>Y</distribute> | |
| 423 | + <custom_distribution/> | |
| 424 | + <copies>1</copies> | |
| 425 | + <partitioning> | |
| 426 | + <method>none</method> | |
| 427 | + <schema_name/> | |
| 428 | + </partitioning> | |
| 429 | + <connection>bus_control_variable</connection> | |
| 430 | + <commit>1000</commit> | |
| 431 | + <update_bypassed>N</update_bypassed> | |
| 432 | + <lookup> | |
| 433 | + <schema/> | |
| 434 | + <table>bsth_c_cars</table> | |
| 435 | + <key> | |
| 436 | + <name>所属公司代码</name> | |
| 437 | + <field>business_code</field> | |
| 438 | + <condition>=</condition> | |
| 439 | + <name2/> | |
| 440 | + </key> | |
| 441 | + <key> | |
| 442 | + <name>内部编码</name> | |
| 443 | + <field>inside_code</field> | |
| 444 | + <condition>=</condition> | |
| 445 | + <name2/> | |
| 446 | + </key> | |
| 447 | + <value> | |
| 448 | + <name>car_gride</name> | |
| 449 | + <rename>车牌号</rename> | |
| 450 | + <update>Y</update> | |
| 451 | + </value> | |
| 452 | + <value> | |
| 453 | + <name>inside_code</name> | |
| 454 | + <rename>内部编码</rename> | |
| 455 | + <update>Y</update> | |
| 456 | + </value> | |
| 457 | + <value> | |
| 458 | + <name>car_code</name> | |
| 459 | + <rename>内部编码</rename> | |
| 460 | + <update>Y</update> | |
| 461 | + </value> | |
| 462 | + <value> | |
| 463 | + <name>company</name> | |
| 464 | + <rename>所属公司</rename> | |
| 465 | + <update>Y</update> | |
| 466 | + </value> | |
| 467 | + <value> | |
| 468 | + <name>business_code</name> | |
| 469 | + <rename>所属公司代码</rename> | |
| 470 | + <update>Y</update> | |
| 471 | + </value> | |
| 472 | + <value> | |
| 473 | + <name>branche_company</name> | |
| 474 | + <rename>所属分公司</rename> | |
| 475 | + <update>Y</update> | |
| 476 | + </value> | |
| 477 | + <value> | |
| 478 | + <name>branche_company_code</name> | |
| 479 | + <rename>所属分公司代码</rename> | |
| 480 | + <update>Y</update> | |
| 481 | + </value> | |
| 482 | + <value> | |
| 483 | + <name>supplier_name</name> | |
| 484 | + <rename>供应商名称</rename> | |
| 485 | + <update>Y</update> | |
| 486 | + </value> | |
| 487 | + <value> | |
| 488 | + <name>equipment_code</name> | |
| 489 | + <rename>设备终端号</rename> | |
| 490 | + <update>Y</update> | |
| 491 | + </value> | |
| 492 | + </lookup> | |
| 493 | + <cluster_schema/> | |
| 494 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 495 | + <xloc>516</xloc> | |
| 496 | + <yloc>138</yloc> | |
| 497 | + <draw>Y</draw> | |
| 498 | + </GUI> | |
| 499 | + </step> | |
| 500 | + | |
| 501 | + <step> | |
| 502 | + <name>获取变量</name> | |
| 503 | + <type>GetVariable</type> | |
| 504 | + <description/> | |
| 505 | + <distribute>Y</distribute> | |
| 506 | + <custom_distribution/> | |
| 507 | + <copies>1</copies> | |
| 508 | + <partitioning> | |
| 509 | + <method>none</method> | |
| 510 | + <schema_name/> | |
| 511 | + </partitioning> | |
| 512 | + <fields> | |
| 492 | 513 | <field> |
| 493 | - <name>标准油耗(开空调)</name> | |
| 514 | + <name>filepath_</name> | |
| 515 | + <variable>${filepath}</variable> | |
| 494 | 516 | <type>String</type> |
| 495 | - <length>-1</length> | |
| 496 | - <precision>-1</precision> | |
| 497 | - <trim_type>none</trim_type> | |
| 498 | - <repeat>N</repeat> | |
| 499 | 517 | <format/> |
| 500 | 518 | <currency/> |
| 501 | 519 | <decimal/> |
| 502 | 520 | <group/> |
| 503 | - </field> | |
| 504 | - <field> | |
| 505 | - <name>标准油耗(关空调)</name> | |
| 506 | - <type>String</type> | |
| 507 | 521 | <length>-1</length> |
| 508 | 522 | <precision>-1</precision> |
| 509 | 523 | <trim_type>none</trim_type> |
| 510 | - <repeat>N</repeat> | |
| 511 | - <format/> | |
| 512 | - <currency/> | |
| 513 | - <decimal/> | |
| 514 | - <group/> | |
| 515 | 524 | </field> |
| 516 | 525 | <field> |
| 517 | - <name>有无人售票</name> | |
| 526 | + <name>erroroutputdir_</name> | |
| 527 | + <variable>${erroroutputdir}</variable> | |
| 518 | 528 | <type>String</type> |
| 519 | - <length>-1</length> | |
| 520 | - <precision>-1</precision> | |
| 521 | - <trim_type>none</trim_type> | |
| 522 | - <repeat>N</repeat> | |
| 523 | 529 | <format/> |
| 524 | 530 | <currency/> |
| 525 | 531 | <decimal/> |
| 526 | 532 | <group/> |
| 527 | - </field> | |
| 528 | - <field> | |
| 529 | - <name>是否有TV视频</name> | |
| 530 | - <type>String</type> | |
| 531 | 533 | <length>-1</length> |
| 532 | 534 | <precision>-1</precision> |
| 533 | 535 | <trim_type>none</trim_type> |
| 534 | - <repeat>N</repeat> | |
| 536 | + </field> | |
| 537 | + </fields> | |
| 538 | + <cluster_schema/> | |
| 539 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 540 | + <xloc>134</xloc> | |
| 541 | + <yloc>183</yloc> | |
| 542 | + <draw>Y</draw> | |
| 543 | + </GUI> | |
| 544 | + </step> | |
| 545 | + | |
| 546 | + <step> | |
| 547 | + <name>错误输出 2</name> | |
| 548 | + <type>ExcelOutput</type> | |
| 549 | + <description/> | |
| 550 | + <distribute>Y</distribute> | |
| 551 | + <custom_distribution/> | |
| 552 | + <copies>1</copies> | |
| 553 | + <partitioning> | |
| 554 | + <method>none</method> | |
| 555 | + <schema_name/> | |
| 556 | + </partitioning> | |
| 557 | + <header>Y</header> | |
| 558 | + <footer>N</footer> | |
| 559 | + <encoding/> | |
| 560 | + <append>N</append> | |
| 561 | + <add_to_result_filenames>Y</add_to_result_filenames> | |
| 562 | + <file> | |
| 563 | + <name>${erroroutputdir}/车辆基础信息_错误</name> | |
| 564 | + <extention>xls</extention> | |
| 565 | + <do_not_open_newfile_init>N</do_not_open_newfile_init> | |
| 566 | + <create_parent_folder>N</create_parent_folder> | |
| 567 | + <split>N</split> | |
| 568 | + <add_date>N</add_date> | |
| 569 | + <add_time>N</add_time> | |
| 570 | + <SpecifyFormat>N</SpecifyFormat> | |
| 571 | + <date_time_format/> | |
| 572 | + <sheetname>Sheet1</sheetname> | |
| 573 | + <autosizecolums>N</autosizecolums> | |
| 574 | + <nullisblank>N</nullisblank> | |
| 575 | + <protect_sheet>N</protect_sheet> | |
| 576 | + <password>Encrypted </password> | |
| 577 | + <splitevery>0</splitevery> | |
| 578 | + <usetempfiles>N</usetempfiles> | |
| 579 | + <tempdirectory/> | |
| 580 | + </file> | |
| 581 | + <template> | |
| 582 | + <enabled>N</enabled> | |
| 583 | + <append>N</append> | |
| 584 | + <filename>template.xls</filename> | |
| 585 | + </template> | |
| 586 | + <fields> | |
| 587 | + <field> | |
| 588 | + <name>车牌号</name> | |
| 589 | + <type>String</type> | |
| 535 | 590 | <format/> |
| 536 | - <currency/> | |
| 537 | - <decimal/> | |
| 538 | - <group/> | |
| 539 | 591 | </field> |
| 540 | 592 | <field> |
| 541 | - <name>是否有LED服务屏</name> | |
| 593 | + <name>内部编码</name> | |
| 542 | 594 | <type>String</type> |
| 543 | - <length>-1</length> | |
| 544 | - <precision>-1</precision> | |
| 545 | - <trim_type>none</trim_type> | |
| 546 | - <repeat>N</repeat> | |
| 547 | 595 | <format/> |
| 548 | - <currency/> | |
| 549 | - <decimal/> | |
| 550 | - <group/> | |
| 551 | 596 | </field> |
| 552 | 597 | <field> |
| 553 | - <name>运营状态</name> | |
| 554 | - <type>String</type> | |
| 555 | - <length>-1</length> | |
| 556 | - <precision>-1</precision> | |
| 557 | - <trim_type>none</trim_type> | |
| 558 | - <repeat>N</repeat> | |
| 559 | - <format/> | |
| 560 | - <currency/> | |
| 561 | - <decimal/> | |
| 562 | - <group/> | |
| 563 | - </field> | |
| 564 | - <field> | |
| 565 | - <name>启用日期</name> | |
| 566 | - <type>String</type> | |
| 567 | - <length>-1</length> | |
| 568 | - <precision>-1</precision> | |
| 569 | - <trim_type>none</trim_type> | |
| 570 | - <repeat>N</repeat> | |
| 571 | - <format/> | |
| 572 | - <currency/> | |
| 573 | - <decimal/> | |
| 574 | - <group/> | |
| 575 | - </field> | |
| 576 | - <field> | |
| 577 | - <name>取消日期</name> | |
| 578 | - <type>String</type> | |
| 579 | - <length>-1</length> | |
| 580 | - <precision>-1</precision> | |
| 581 | - <trim_type>none</trim_type> | |
| 582 | - <repeat>N</repeat> | |
| 583 | - <format/> | |
| 584 | - <currency/> | |
| 585 | - <decimal/> | |
| 586 | - <group/> | |
| 587 | - </field> | |
| 588 | - <field> | |
| 589 | - <name>报废号</name> | |
| 590 | - <type>String</type> | |
| 591 | - <length>-1</length> | |
| 592 | - <precision>-1</precision> | |
| 593 | - <trim_type>none</trim_type> | |
| 594 | - <repeat>N</repeat> | |
| 595 | - <format/> | |
| 596 | - <currency/> | |
| 597 | - <decimal/> | |
| 598 | - <group/> | |
| 599 | - </field> | |
| 600 | - <field> | |
| 601 | - <name>报废日期</name> | |
| 602 | - <type>String</type> | |
| 603 | - <length>-1</length> | |
| 604 | - <precision>-1</precision> | |
| 605 | - <trim_type>none</trim_type> | |
| 606 | - <repeat>N</repeat> | |
| 607 | - <format/> | |
| 608 | - <currency/> | |
| 609 | - <decimal/> | |
| 610 | - <group/> | |
| 611 | - </field> | |
| 612 | - <field> | |
| 613 | - <name>备注</name> | |
| 614 | - <type>String</type> | |
| 615 | - <length>-1</length> | |
| 616 | - <precision>-1</precision> | |
| 617 | - <trim_type>none</trim_type> | |
| 618 | - <repeat>N</repeat> | |
| 619 | - <format/> | |
| 620 | - <currency/> | |
| 621 | - <decimal/> | |
| 622 | - <group/> | |
| 623 | - </field> | |
| 624 | - <field> | |
| 625 | - <name>设备编号</name> | |
| 626 | - <type>String</type> | |
| 627 | - <length>-1</length> | |
| 628 | - <precision>-1</precision> | |
| 629 | - <trim_type>none</trim_type> | |
| 630 | - <repeat>N</repeat> | |
| 631 | - <format/> | |
| 632 | - <currency/> | |
| 633 | - <decimal/> | |
| 634 | - <group/> | |
| 635 | - </field> | |
| 636 | - <field> | |
| 637 | - <name>厂牌型号</name> | |
| 638 | - <type>String</type> | |
| 639 | - <length>-1</length> | |
| 640 | - <precision>-1</precision> | |
| 641 | - <trim_type>none</trim_type> | |
| 642 | - <repeat>N</repeat> | |
| 643 | - <format/> | |
| 644 | - <currency/> | |
| 645 | - <decimal/> | |
| 646 | - <group/> | |
| 647 | - </field> | |
| 648 | - <field> | |
| 649 | - <name>厂牌型号2</name> | |
| 650 | - <type>String</type> | |
| 651 | - <length>-1</length> | |
| 652 | - <precision>-1</precision> | |
| 653 | - <trim_type>none</trim_type> | |
| 654 | - <repeat>N</repeat> | |
| 655 | - <format/> | |
| 656 | - <currency/> | |
| 657 | - <decimal/> | |
| 658 | - <group/> | |
| 659 | - </field> | |
| 660 | - <field> | |
| 661 | - <name>车辆等级标准</name> | |
| 662 | - <type>String</type> | |
| 663 | - <length>-1</length> | |
| 664 | - <precision>-1</precision> | |
| 665 | - <trim_type>none</trim_type> | |
| 666 | - <repeat>N</repeat> | |
| 667 | - <format/> | |
| 668 | - <currency/> | |
| 669 | - <decimal/> | |
| 670 | - <group/> | |
| 671 | - </field> | |
| 672 | - <field> | |
| 673 | - <name>出厂排放标准</name> | |
| 674 | - <type>String</type> | |
| 675 | - <length>-1</length> | |
| 676 | - <precision>-1</precision> | |
| 677 | - <trim_type>none</trim_type> | |
| 678 | - <repeat>N</repeat> | |
| 679 | - <format/> | |
| 680 | - <currency/> | |
| 681 | - <decimal/> | |
| 682 | - <group/> | |
| 683 | - </field> | |
| 684 | - <field> | |
| 685 | - <name>发动机号码1</name> | |
| 686 | - <type>String</type> | |
| 687 | - <length>-1</length> | |
| 688 | - <precision>-1</precision> | |
| 689 | - <trim_type>none</trim_type> | |
| 690 | - <repeat>N</repeat> | |
| 691 | - <format/> | |
| 692 | - <currency/> | |
| 693 | - <decimal/> | |
| 694 | - <group/> | |
| 695 | - </field> | |
| 696 | - <field> | |
| 697 | - <name>发动机号码2</name> | |
| 698 | - <type>String</type> | |
| 699 | - <length>-1</length> | |
| 700 | - <precision>-1</precision> | |
| 701 | - <trim_type>none</trim_type> | |
| 702 | - <repeat>N</repeat> | |
| 703 | - <format/> | |
| 704 | - <currency/> | |
| 705 | - <decimal/> | |
| 706 | - <group/> | |
| 707 | - </field> | |
| 708 | - <field> | |
| 709 | - <name>车架号码1</name> | |
| 710 | - <type>String</type> | |
| 711 | - <length>-1</length> | |
| 712 | - <precision>-1</precision> | |
| 713 | - <trim_type>none</trim_type> | |
| 714 | - <repeat>N</repeat> | |
| 715 | - <format/> | |
| 716 | - <currency/> | |
| 717 | - <decimal/> | |
| 718 | - <group/> | |
| 719 | - </field> | |
| 720 | - <field> | |
| 721 | - <name>车架号码2</name> | |
| 722 | - <type>String</type> | |
| 723 | - <length>-1</length> | |
| 724 | - <precision>-1</precision> | |
| 725 | - <trim_type>none</trim_type> | |
| 726 | - <repeat>N</repeat> | |
| 727 | - <format/> | |
| 728 | - <currency/> | |
| 729 | - <decimal/> | |
| 730 | - <group/> | |
| 731 | - </field> | |
| 732 | - <field> | |
| 733 | - <name>车辆类型</name> | |
| 734 | - <type>String</type> | |
| 735 | - <length>-1</length> | |
| 736 | - <precision>-1</precision> | |
| 737 | - <trim_type>none</trim_type> | |
| 738 | - <repeat>N</repeat> | |
| 739 | - <format/> | |
| 740 | - <currency/> | |
| 741 | - <decimal/> | |
| 742 | - <group/> | |
| 743 | - </field> | |
| 744 | - <field> | |
| 745 | - <name>所属公司</name> | |
| 746 | - <type>String</type> | |
| 747 | - <length>-1</length> | |
| 748 | - <precision>-1</precision> | |
| 749 | - <trim_type>none</trim_type> | |
| 750 | - <repeat>N</repeat> | |
| 751 | - <format/> | |
| 752 | - <currency/> | |
| 753 | - <decimal/> | |
| 754 | - <group/> | |
| 755 | - </field> | |
| 756 | - <field> | |
| 757 | - <name>修改日期</name> | |
| 758 | - <type>String</type> | |
| 759 | - <length>-1</length> | |
| 760 | - <precision>-1</precision> | |
| 761 | - <trim_type>none</trim_type> | |
| 762 | - <repeat>N</repeat> | |
| 763 | - <format/> | |
| 764 | - <currency/> | |
| 765 | - <decimal/> | |
| 766 | - <group/> | |
| 767 | - </field> | |
| 768 | - <field> | |
| 769 | - <name>是否机动车</name> | |
| 770 | - <type>String</type> | |
| 771 | - <length>-1</length> | |
| 772 | - <precision>-1</precision> | |
| 773 | - <trim_type>none</trim_type> | |
| 774 | - <repeat>N</repeat> | |
| 775 | - <format/> | |
| 776 | - <currency/> | |
| 777 | - <decimal/> | |
| 778 | - <group/> | |
| 779 | - </field> | |
| 780 | - <field> | |
| 781 | - <name>视频编号</name> | |
| 782 | - <type>String</type> | |
| 783 | - <length>-1</length> | |
| 784 | - <precision>-1</precision> | |
| 785 | - <trim_type>none</trim_type> | |
| 786 | - <repeat>N</repeat> | |
| 787 | - <format/> | |
| 788 | - <currency/> | |
| 789 | - <decimal/> | |
| 790 | - <group/> | |
| 791 | - </field> | |
| 792 | - <field> | |
| 793 | - <name>设备供应厂商</name> | |
| 794 | - <type>String</type> | |
| 795 | - <length>-1</length> | |
| 796 | - <precision>-1</precision> | |
| 797 | - <trim_type>none</trim_type> | |
| 798 | - <repeat>N</repeat> | |
| 799 | - <format/> | |
| 800 | - <currency/> | |
| 801 | - <decimal/> | |
| 802 | - <group/> | |
| 803 | - </field> | |
| 804 | - <field> | |
| 805 | - <name>分公司</name> | |
| 806 | - <type>String</type> | |
| 807 | - <length>-1</length> | |
| 808 | - <precision>-1</precision> | |
| 809 | - <trim_type>none</trim_type> | |
| 810 | - <repeat>N</repeat> | |
| 811 | - <format/> | |
| 812 | - <currency/> | |
| 813 | - <decimal/> | |
| 814 | - <group/> | |
| 815 | - </field> | |
| 816 | - </fields> | |
| 817 | - <sheets> | |
| 818 | - <sheet> | |
| 819 | - <name>工作表1</name> | |
| 820 | - <startrow>0</startrow> | |
| 821 | - <startcol>0</startcol> | |
| 822 | - </sheet> | |
| 823 | - </sheets> | |
| 824 | - <strict_types>N</strict_types> | |
| 825 | - <error_ignored>N</error_ignored> | |
| 826 | - <error_line_skipped>N</error_line_skipped> | |
| 827 | - <bad_line_files_destination_directory/> | |
| 828 | - <bad_line_files_extension>warning</bad_line_files_extension> | |
| 829 | - <error_line_files_destination_directory/> | |
| 830 | - <error_line_files_extension>error</error_line_files_extension> | |
| 831 | - <line_number_files_destination_directory/> | |
| 832 | - <line_number_files_extension>line</line_number_files_extension> | |
| 833 | - <shortFileFieldName/> | |
| 834 | - <pathFieldName/> | |
| 835 | - <hiddenFieldName/> | |
| 836 | - <lastModificationTimeFieldName/> | |
| 837 | - <uriNameFieldName/> | |
| 838 | - <rootUriNameFieldName/> | |
| 839 | - <extensionFieldName/> | |
| 840 | - <sizeFieldName/> | |
| 841 | - <spreadsheet_type>JXL</spreadsheet_type> | |
| 842 | - <cluster_schema/> | |
| 843 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 844 | - <xloc>131</xloc> | |
| 845 | - <yloc>58</yloc> | |
| 846 | - <draw>Y</draw> | |
| 847 | - </GUI> | |
| 848 | - </step> | |
| 849 | - | |
| 850 | - <step> | |
| 851 | - <name>字段选择</name> | |
| 852 | - <type>SelectValues</type> | |
| 853 | - <description/> | |
| 854 | - <distribute>Y</distribute> | |
| 855 | - <custom_distribution/> | |
| 856 | - <copies>1</copies> | |
| 857 | - <partitioning> | |
| 858 | - <method>none</method> | |
| 859 | - <schema_name/> | |
| 860 | - </partitioning> | |
| 861 | - <fields> <field> <name>内部编码</name> | |
| 862 | - <rename>insideCode</rename> | |
| 863 | - <length>-2</length> | |
| 864 | - <precision>-2</precision> | |
| 865 | - </field> <field> <name>车辆编码</name> | |
| 866 | - <rename>carCode</rename> | |
| 867 | - <length>-2</length> | |
| 868 | - <precision>-2</precision> | |
| 869 | - </field> <field> <name>所属公司</name> | |
| 870 | - <rename>company</rename> | |
| 871 | - <length>-2</length> | |
| 872 | - <precision>-2</precision> | |
| 873 | - </field> <field> <name>分公司</name> | |
| 874 | - <rename>brancheCompany</rename> | |
| 875 | - <length>-2</length> | |
| 876 | - <precision>-2</precision> | |
| 877 | - </field> <field> <name>车牌号</name> | |
| 878 | - <rename>carPlate</rename> | |
| 879 | - <length>-2</length> | |
| 880 | - <precision>-2</precision> | |
| 881 | - </field> <field> <name>设备供应厂商</name> | |
| 882 | - <rename>supplierName</rename> | |
| 883 | - <length>-2</length> | |
| 884 | - <precision>-2</precision> | |
| 885 | - </field> <field> <name>设备编号</name> | |
| 886 | - <rename>equipmentCode</rename> | |
| 887 | - <length>-2</length> | |
| 888 | - <precision>-2</precision> | |
| 889 | - </field> <field> <name>车型类别</name> | |
| 890 | - <rename>carClass</rename> | |
| 891 | - <length>-2</length> | |
| 892 | - <precision>-2</precision> | |
| 893 | - </field> <field> <name>技术速度</name> | |
| 894 | - <rename>speed</rename> | |
| 895 | - <length>-2</length> | |
| 896 | - <precision>-2</precision> | |
| 897 | - </field> <field> <name>座位数</name> | |
| 898 | - <rename>carSeatnNumber</rename> | |
| 899 | - <length>-2</length> | |
| 900 | - <precision>-2</precision> | |
| 901 | - </field> <field> <name>载客标准</name> | |
| 902 | - <rename>carStandard</rename> | |
| 903 | - <length>-2</length> | |
| 904 | - <precision>-2</precision> | |
| 905 | - </field> <field> <name>标准油耗(开空调)</name> | |
| 906 | - <rename>kburnStandard</rename> | |
| 907 | - <length>-2</length> | |
| 908 | - <precision>-2</precision> | |
| 909 | - </field> <field> <name>标准油耗(关空调)</name> | |
| 910 | - <rename>gburnStandard</rename> | |
| 911 | - <length>-2</length> | |
| 912 | - <precision>-2</precision> | |
| 913 | - </field> <field> <name>报废号</name> | |
| 914 | - <rename>scrapCode</rename> | |
| 915 | - <length>-2</length> | |
| 916 | - <precision>-2</precision> | |
| 917 | - </field> <field> <name>厂牌型号</name> | |
| 918 | - <rename>makeCodeOne</rename> | |
| 919 | - <length>-2</length> | |
| 920 | - <precision>-2</precision> | |
| 921 | - </field> <field> <name>厂牌型号2</name> | |
| 922 | - <rename>makeCodeTwo</rename> | |
| 923 | - <length>-2</length> | |
| 924 | - <precision>-2</precision> | |
| 925 | - </field> <field> <name>车辆等级标准</name> | |
| 926 | - <rename>carGride</rename> | |
| 927 | - <length>-2</length> | |
| 928 | - <precision>-2</precision> | |
| 929 | - </field> <field> <name>出厂排放标准</name> | |
| 930 | - <rename>emissionsStandard</rename> | |
| 931 | - <length>-2</length> | |
| 932 | - <precision>-2</precision> | |
| 933 | - </field> <field> <name>发动机号码1</name> | |
| 934 | - <rename>engineCodeOne</rename> | |
| 935 | - <length>-2</length> | |
| 936 | - <precision>-2</precision> | |
| 937 | - </field> <field> <name>发动机号码2</name> | |
| 938 | - <rename>engineCodeTwo</rename> | |
| 939 | - <length>-2</length> | |
| 940 | - <precision>-2</precision> | |
| 941 | - </field> <field> <name>车架号码1</name> | |
| 942 | - <rename>carNumberOne</rename> | |
| 943 | - <length>-2</length> | |
| 944 | - <precision>-2</precision> | |
| 945 | - </field> <field> <name>车架号码2</name> | |
| 946 | - <rename>carNumberTwo</rename> | |
| 947 | - <length>-2</length> | |
| 948 | - <precision>-2</precision> | |
| 949 | - </field> <field> <name>启用日期</name> | |
| 950 | - <rename>openDate</rename> | |
| 951 | - <length>-2</length> | |
| 952 | - <precision>-2</precision> | |
| 953 | - </field> <field> <name>取消日期</name> | |
| 954 | - <rename>closeDate</rename> | |
| 955 | - <length>-2</length> | |
| 956 | - <precision>-2</precision> | |
| 957 | - </field> <field> <name>是否空调</name> | |
| 958 | - <rename>hvacCar</rename> | |
| 959 | - <length>-2</length> | |
| 960 | - <precision>-2</precision> | |
| 961 | - </field> <field> <name>有无人售票</name> | |
| 962 | - <rename>ticketType</rename> | |
| 963 | - <length>-2</length> | |
| 964 | - <precision>-2</precision> | |
| 965 | - </field> <field> <name>是否有LED服务屏</name> | |
| 966 | - <rename>ledScreen</rename> | |
| 967 | - <length>-2</length> | |
| 968 | - <precision>-2</precision> | |
| 969 | - </field> <field> <name>是否有TV视频</name> | |
| 970 | - <rename>tvVideoType</rename> | |
| 971 | - <length>-2</length> | |
| 972 | - <precision>-2</precision> | |
| 973 | - </field> <field> <name>车辆类型</name> | |
| 974 | - <rename>carType</rename> | |
| 975 | - <length>-2</length> | |
| 976 | - <precision>-2</precision> | |
| 977 | - </field> <field> <name>是否机动车</name> | |
| 978 | - <rename>vehicleStats</rename> | |
| 979 | - <length>-2</length> | |
| 980 | - <precision>-2</precision> | |
| 981 | - </field> <field> <name>运营状态</name> | |
| 982 | - <rename>operatorsState</rename> | |
| 983 | - <length>-2</length> | |
| 984 | - <precision>-2</precision> | |
| 985 | - </field> <field> <name>备注</name> | |
| 986 | - <rename>descriptions</rename> | |
| 987 | - <length>-2</length> | |
| 988 | - <precision>-2</precision> | |
| 989 | - </field> <field> <name>视频编号</name> | |
| 990 | - <rename>videoCode</rename> | |
| 991 | - <length>-2</length> | |
| 992 | - <precision>-2</precision> | |
| 993 | - </field> <select_unspecified>Y</select_unspecified> | |
| 994 | - </fields> <cluster_schema/> | |
| 995 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 996 | - <xloc>279</xloc> | |
| 997 | - <yloc>59</yloc> | |
| 998 | - <draw>Y</draw> | |
| 999 | - </GUI> | |
| 1000 | - </step> | |
| 1001 | - | |
| 1002 | - <step> | |
| 1003 | - <name>插入/更新bsth_c_cars 2</name> | |
| 1004 | - <type>InsertUpdate</type> | |
| 1005 | - <description/> | |
| 1006 | - <distribute>Y</distribute> | |
| 1007 | - <custom_distribution/> | |
| 1008 | - <copies>1</copies> | |
| 1009 | - <partitioning> | |
| 1010 | - <method>none</method> | |
| 1011 | - <schema_name/> | |
| 1012 | - </partitioning> | |
| 1013 | - <connection>bus_control_variable</connection> | |
| 1014 | - <commit>1000</commit> | |
| 1015 | - <update_bypassed>N</update_bypassed> | |
| 1016 | - <lookup> | |
| 1017 | - <schema/> | |
| 1018 | - <table>bsth_c_cars</table> | |
| 1019 | - <key> | |
| 1020 | - <name>businessCode</name> | |
| 1021 | - <field>business_code</field> | |
| 1022 | - <condition>=</condition> | |
| 1023 | - <name2/> | |
| 1024 | - </key> | |
| 1025 | - <key> | |
| 1026 | - <name>insideCode</name> | |
| 1027 | - <field>inside_code</field> | |
| 1028 | - <condition>=</condition> | |
| 1029 | - <name2/> | |
| 1030 | - </key> | |
| 1031 | - <value> | |
| 1032 | - <name>inside_code</name> | |
| 1033 | - <rename>insideCode</rename> | |
| 1034 | - <update>Y</update> | |
| 1035 | - </value> | |
| 1036 | - <value> | |
| 1037 | - <name>company</name> | |
| 1038 | - <rename>company</rename> | |
| 1039 | - <update>Y</update> | |
| 1040 | - </value> | |
| 1041 | - <value> | |
| 1042 | - <name>branche_company</name> | |
| 1043 | - <rename>brancheCompany</rename> | |
| 1044 | - <update>Y</update> | |
| 1045 | - </value> | |
| 1046 | - <value> | |
| 1047 | - <name>car_plate</name> | |
| 1048 | - <rename>carPlate</rename> | |
| 1049 | - <update>Y</update> | |
| 1050 | - </value> | |
| 1051 | - <value> | |
| 1052 | - <name>supplier_name</name> | |
| 1053 | - <rename>supplierName</rename> | |
| 1054 | - <update>Y</update> | |
| 1055 | - </value> | |
| 1056 | - <value> | |
| 1057 | - <name>equipment_code</name> | |
| 1058 | - <rename>equipmentCode</rename> | |
| 1059 | - <update>Y</update> | |
| 1060 | - </value> | |
| 1061 | - <value> | |
| 1062 | - <name>car_class</name> | |
| 1063 | - <rename>carClass</rename> | |
| 1064 | - <update>Y</update> | |
| 1065 | - </value> | |
| 1066 | - <value> | |
| 1067 | - <name>speed</name> | |
| 1068 | - <rename>speed</rename> | |
| 1069 | - <update>Y</update> | |
| 1070 | - </value> | |
| 1071 | - <value> | |
| 1072 | - <name>car_seatn_number</name> | |
| 1073 | - <rename>carSeatnNumber</rename> | |
| 1074 | - <update>Y</update> | |
| 1075 | - </value> | |
| 1076 | - <value> | |
| 1077 | - <name>car_standard</name> | |
| 1078 | - <rename>carStandard</rename> | |
| 1079 | - <update>Y</update> | |
| 1080 | - </value> | |
| 1081 | - <value> | |
| 1082 | - <name>car_code</name> | |
| 1083 | - <rename>carCode</rename> | |
| 1084 | - <update>Y</update> | |
| 1085 | - </value> | |
| 1086 | - <value> | |
| 1087 | - <name>kburn_standard</name> | |
| 1088 | - <rename>kburnStandard</rename> | |
| 1089 | - <update>Y</update> | |
| 1090 | - </value> | |
| 1091 | - <value> | |
| 1092 | - <name>gburn_standard</name> | |
| 1093 | - <rename>gburnStandard</rename> | |
| 1094 | - <update>Y</update> | |
| 1095 | - </value> | |
| 1096 | - <value> | |
| 1097 | - <name>scrap_code</name> | |
| 1098 | - <rename>scrapCode</rename> | |
| 1099 | - <update>Y</update> | |
| 1100 | - </value> | |
| 1101 | - <value> | |
| 1102 | - <name>make_code_one</name> | |
| 1103 | - <rename>makeCodeOne</rename> | |
| 1104 | - <update>Y</update> | |
| 1105 | - </value> | |
| 1106 | - <value> | |
| 1107 | - <name>make_code_two</name> | |
| 1108 | - <rename>makeCodeTwo</rename> | |
| 1109 | - <update>Y</update> | |
| 1110 | - </value> | |
| 1111 | - <value> | |
| 1112 | - <name>car_gride</name> | |
| 1113 | - <rename>carGride</rename> | |
| 1114 | - <update>Y</update> | |
| 1115 | - </value> | |
| 1116 | - <value> | |
| 1117 | - <name>emissions_standard</name> | |
| 1118 | - <rename>emissionsStandard</rename> | |
| 1119 | - <update>Y</update> | |
| 1120 | - </value> | |
| 1121 | - <value> | |
| 1122 | - <name>engine_code_one</name> | |
| 1123 | - <rename>engineCodeOne</rename> | |
| 1124 | - <update>Y</update> | |
| 1125 | - </value> | |
| 1126 | - <value> | |
| 1127 | - <name>engine_code_two</name> | |
| 1128 | - <rename>engineCodeTwo</rename> | |
| 1129 | - <update>Y</update> | |
| 1130 | - </value> | |
| 1131 | - <value> | |
| 1132 | - <name>car_number_one</name> | |
| 1133 | - <rename>carNumberOne</rename> | |
| 1134 | - <update>Y</update> | |
| 1135 | - </value> | |
| 1136 | - <value> | |
| 1137 | - <name>car_number_two</name> | |
| 1138 | - <rename>carNumberTwo</rename> | |
| 1139 | - <update>Y</update> | |
| 1140 | - </value> | |
| 1141 | - <value> | |
| 1142 | - <name>open_date</name> | |
| 1143 | - <rename>openDate</rename> | |
| 1144 | - <update>Y</update> | |
| 1145 | - </value> | |
| 1146 | - <value> | |
| 1147 | - <name>close_date</name> | |
| 1148 | - <rename>closeDate</rename> | |
| 1149 | - <update>Y</update> | |
| 1150 | - </value> | |
| 1151 | - <value> | |
| 1152 | - <name>hvac_car</name> | |
| 1153 | - <rename>hvacCar</rename> | |
| 1154 | - <update>Y</update> | |
| 1155 | - </value> | |
| 1156 | - <value> | |
| 1157 | - <name>ticket_type</name> | |
| 1158 | - <rename>ticketType</rename> | |
| 1159 | - <update>Y</update> | |
| 1160 | - </value> | |
| 1161 | - <value> | |
| 1162 | - <name>led_screen</name> | |
| 1163 | - <rename>ledScreen</rename> | |
| 1164 | - <update>Y</update> | |
| 1165 | - </value> | |
| 1166 | - <value> | |
| 1167 | - <name>tv_video_type</name> | |
| 1168 | - <rename>tvVideoType</rename> | |
| 1169 | - <update>Y</update> | |
| 1170 | - </value> | |
| 1171 | - <value> | |
| 1172 | - <name>car_type</name> | |
| 1173 | - <rename>carType</rename> | |
| 1174 | - <update>Y</update> | |
| 1175 | - </value> | |
| 1176 | - <value> | |
| 1177 | - <name>vehicle_stats</name> | |
| 1178 | - <rename>vehicleStats</rename> | |
| 1179 | - <update>Y</update> | |
| 1180 | - </value> | |
| 1181 | - <value> | |
| 1182 | - <name>operators_state</name> | |
| 1183 | - <rename>operatorsState</rename> | |
| 1184 | - <update>Y</update> | |
| 1185 | - </value> | |
| 1186 | - <value> | |
| 1187 | - <name>descriptions</name> | |
| 1188 | - <rename>descriptions</rename> | |
| 1189 | - <update>Y</update> | |
| 1190 | - </value> | |
| 1191 | - <value> | |
| 1192 | - <name>video_code</name> | |
| 1193 | - <rename>videoCode</rename> | |
| 1194 | - <update>Y</update> | |
| 1195 | - </value> | |
| 1196 | - <value> | |
| 1197 | - <name>business_code</name> | |
| 1198 | - <rename>businessCode</rename> | |
| 1199 | - <update>Y</update> | |
| 1200 | - </value> | |
| 1201 | - </lookup> | |
| 1202 | - <cluster_schema/> | |
| 1203 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1204 | - <xloc>821</xloc> | |
| 1205 | - <yloc>362</yloc> | |
| 1206 | - <draw>Y</draw> | |
| 1207 | - </GUI> | |
| 1208 | - </step> | |
| 1209 | - | |
| 1210 | - <step> | |
| 1211 | - <name>是否有LED服务屏</name> | |
| 1212 | - <type>ValueMapper</type> | |
| 1213 | - <description/> | |
| 1214 | - <distribute>Y</distribute> | |
| 1215 | - <custom_distribution/> | |
| 1216 | - <copies>1</copies> | |
| 1217 | - <partitioning> | |
| 1218 | - <method>none</method> | |
| 1219 | - <schema_name/> | |
| 1220 | - </partitioning> | |
| 1221 | - <field_to_use>ledScreen</field_to_use> | |
| 1222 | - <target_field/> | |
| 1223 | - <non_match_default/> | |
| 1224 | - <fields> | |
| 1225 | - <field> | |
| 1226 | - <source_value>是</source_value> | |
| 1227 | - <target_value>1</target_value> | |
| 1228 | - </field> | |
| 1229 | - <field> | |
| 1230 | - <source_value>否</source_value> | |
| 1231 | - <target_value>0</target_value> | |
| 1232 | - </field> | |
| 1233 | - </fields> | |
| 1234 | - <cluster_schema/> | |
| 1235 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1236 | - <xloc>590</xloc> | |
| 1237 | - <yloc>61</yloc> | |
| 1238 | - <draw>Y</draw> | |
| 1239 | - </GUI> | |
| 1240 | - </step> | |
| 1241 | - | |
| 1242 | - <step> | |
| 1243 | - <name>是否有TV视频</name> | |
| 1244 | - <type>ValueMapper</type> | |
| 1245 | - <description/> | |
| 1246 | - <distribute>Y</distribute> | |
| 1247 | - <custom_distribution/> | |
| 1248 | - <copies>1</copies> | |
| 1249 | - <partitioning> | |
| 1250 | - <method>none</method> | |
| 1251 | - <schema_name/> | |
| 1252 | - </partitioning> | |
| 1253 | - <field_to_use>tvVideoType</field_to_use> | |
| 1254 | - <target_field/> | |
| 1255 | - <non_match_default/> | |
| 1256 | - <fields> | |
| 1257 | - <field> | |
| 1258 | - <source_value>是</source_value> | |
| 1259 | - <target_value>1</target_value> | |
| 1260 | - </field> | |
| 1261 | - <field> | |
| 1262 | - <source_value>否</source_value> | |
| 1263 | - <target_value>0</target_value> | |
| 1264 | - </field> | |
| 1265 | - </fields> | |
| 1266 | - <cluster_schema/> | |
| 1267 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1268 | - <xloc>706</xloc> | |
| 1269 | - <yloc>61</yloc> | |
| 1270 | - <draw>Y</draw> | |
| 1271 | - </GUI> | |
| 1272 | - </step> | |
| 1273 | - | |
| 1274 | - <step> | |
| 1275 | - <name>是否的变成数字型</name> | |
| 1276 | - <type>SelectValues</type> | |
| 1277 | - <description/> | |
| 1278 | - <distribute>Y</distribute> | |
| 1279 | - <custom_distribution/> | |
| 1280 | - <copies>1</copies> | |
| 1281 | - <partitioning> | |
| 1282 | - <method>none</method> | |
| 1283 | - <schema_name/> | |
| 1284 | - </partitioning> | |
| 1285 | - <fields> <select_unspecified>N</select_unspecified> | |
| 1286 | - <meta> <name>hvacCar</name> | |
| 1287 | - <rename>hvacCar</rename> | |
| 1288 | - <type>Integer</type> | |
| 1289 | - <length>1</length> | |
| 1290 | - <precision>-2</precision> | |
| 1291 | - <conversion_mask/> | |
| 1292 | - <date_format_lenient>false</date_format_lenient> | |
| 1293 | - <date_format_locale/> | |
| 1294 | - <date_format_timezone/> | |
| 1295 | - <lenient_string_to_number>false</lenient_string_to_number> | |
| 1296 | - <encoding/> | |
| 1297 | - <decimal_symbol/> | |
| 1298 | - <grouping_symbol/> | |
| 1299 | - <currency_symbol/> | |
| 1300 | - <storage_type/> | |
| 1301 | - </meta> <meta> <name>ticketType</name> | |
| 1302 | - <rename>ticketType</rename> | |
| 1303 | - <type>Integer</type> | |
| 1304 | - <length>1</length> | |
| 1305 | - <precision>-2</precision> | |
| 1306 | - <conversion_mask/> | |
| 1307 | - <date_format_lenient>false</date_format_lenient> | |
| 1308 | - <date_format_locale/> | |
| 1309 | - <date_format_timezone/> | |
| 1310 | - <lenient_string_to_number>false</lenient_string_to_number> | |
| 1311 | - <encoding/> | |
| 1312 | - <decimal_symbol/> | |
| 1313 | - <grouping_symbol/> | |
| 1314 | - <currency_symbol/> | |
| 1315 | - <storage_type/> | |
| 1316 | - </meta> <meta> <name>ledScreen</name> | |
| 1317 | - <rename>ledScreen</rename> | |
| 1318 | - <type>Integer</type> | |
| 1319 | - <length>1</length> | |
| 1320 | - <precision>-2</precision> | |
| 1321 | - <conversion_mask/> | |
| 1322 | - <date_format_lenient>false</date_format_lenient> | |
| 1323 | - <date_format_locale/> | |
| 1324 | - <date_format_timezone/> | |
| 1325 | - <lenient_string_to_number>false</lenient_string_to_number> | |
| 1326 | - <encoding/> | |
| 1327 | - <decimal_symbol/> | |
| 1328 | - <grouping_symbol/> | |
| 1329 | - <currency_symbol/> | |
| 1330 | - <storage_type/> | |
| 1331 | - </meta> <meta> <name>tvVideoType</name> | |
| 1332 | - <rename>tvVideoType</rename> | |
| 1333 | - <type>Integer</type> | |
| 1334 | - <length>1</length> | |
| 1335 | - <precision>-2</precision> | |
| 1336 | - <conversion_mask/> | |
| 1337 | - <date_format_lenient>false</date_format_lenient> | |
| 1338 | - <date_format_locale/> | |
| 1339 | - <date_format_timezone/> | |
| 1340 | - <lenient_string_to_number>false</lenient_string_to_number> | |
| 1341 | - <encoding/> | |
| 1342 | - <decimal_symbol/> | |
| 1343 | - <grouping_symbol/> | |
| 1344 | - <currency_symbol/> | |
| 1345 | - <storage_type/> | |
| 1346 | - </meta> </fields> <cluster_schema/> | |
| 1347 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1348 | - <xloc>839</xloc> | |
| 1349 | - <yloc>61</yloc> | |
| 1350 | - <draw>Y</draw> | |
| 1351 | - </GUI> | |
| 1352 | - </step> | |
| 1353 | - | |
| 1354 | - <step> | |
| 1355 | - <name>是否空调车</name> | |
| 1356 | - <type>ValueMapper</type> | |
| 1357 | - <description/> | |
| 1358 | - <distribute>Y</distribute> | |
| 1359 | - <custom_distribution/> | |
| 1360 | - <copies>1</copies> | |
| 1361 | - <partitioning> | |
| 1362 | - <method>none</method> | |
| 1363 | - <schema_name/> | |
| 1364 | - </partitioning> | |
| 1365 | - <field_to_use>hvacCar</field_to_use> | |
| 1366 | - <target_field/> | |
| 1367 | - <non_match_default/> | |
| 1368 | - <fields> | |
| 1369 | - <field> | |
| 1370 | - <source_value>是</source_value> | |
| 1371 | - <target_value>1</target_value> | |
| 1372 | - </field> | |
| 1373 | - <field> | |
| 1374 | - <source_value>否</source_value> | |
| 1375 | - <target_value>0</target_value> | |
| 1376 | - </field> | |
| 1377 | - </fields> | |
| 1378 | - <cluster_schema/> | |
| 1379 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1380 | - <xloc>388</xloc> | |
| 1381 | - <yloc>61</yloc> | |
| 1382 | - <draw>Y</draw> | |
| 1383 | - </GUI> | |
| 1384 | - </step> | |
| 1385 | - | |
| 1386 | - <step> | |
| 1387 | - <name>有无人售票</name> | |
| 1388 | - <type>ValueMapper</type> | |
| 1389 | - <description/> | |
| 1390 | - <distribute>Y</distribute> | |
| 1391 | - <custom_distribution/> | |
| 1392 | - <copies>1</copies> | |
| 1393 | - <partitioning> | |
| 1394 | - <method>none</method> | |
| 1395 | - <schema_name/> | |
| 1396 | - </partitioning> | |
| 1397 | - <field_to_use>ticketType</field_to_use> | |
| 1398 | - <target_field/> | |
| 1399 | - <non_match_default/> | |
| 1400 | - <fields> | |
| 1401 | - <field> | |
| 1402 | - <source_value>是</source_value> | |
| 1403 | - <target_value>1</target_value> | |
| 1404 | - </field> | |
| 1405 | - <field> | |
| 1406 | - <source_value>否</source_value> | |
| 1407 | - <target_value>0</target_value> | |
| 1408 | - </field> | |
| 1409 | - </fields> | |
| 1410 | - <cluster_schema/> | |
| 1411 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1412 | - <xloc>485</xloc> | |
| 1413 | - <yloc>61</yloc> | |
| 1414 | - <draw>Y</draw> | |
| 1415 | - </GUI> | |
| 1416 | - </step> | |
| 1417 | - | |
| 1418 | - <step> | |
| 1419 | - <name>机动车类型</name> | |
| 1420 | - <type>ValueMapper</type> | |
| 1421 | - <description/> | |
| 1422 | - <distribute>Y</distribute> | |
| 1423 | - <custom_distribution/> | |
| 1424 | - <copies>1</copies> | |
| 1425 | - <partitioning> | |
| 1426 | - <method>none</method> | |
| 1427 | - <schema_name/> | |
| 1428 | - </partitioning> | |
| 1429 | - <field_to_use>vehicleStats</field_to_use> | |
| 1430 | - <target_field/> | |
| 1431 | - <non_match_default/> | |
| 1432 | - <fields> | |
| 1433 | - <field> | |
| 1434 | - <source_value>非机动车</source_value> | |
| 1435 | - <target_value>1</target_value> | |
| 1436 | - </field> | |
| 1437 | - <field> | |
| 1438 | - <source_value>机动一队</source_value> | |
| 1439 | - <target_value>2</target_value> | |
| 1440 | - </field> | |
| 1441 | - <field> | |
| 1442 | - <source_value>机动二队</source_value> | |
| 1443 | - <target_value>3</target_value> | |
| 1444 | - </field> | |
| 1445 | - <field> | |
| 1446 | - <source_value>机动三队</source_value> | |
| 1447 | - <target_value>4</target_value> | |
| 1448 | - </field> | |
| 1449 | - <field> | |
| 1450 | - <source_value>备车</source_value> | |
| 1451 | - <target_value>5</target_value> | |
| 1452 | - </field> | |
| 1453 | - <field> | |
| 1454 | - <source_value>抢修车</source_value> | |
| 1455 | - <target_value>6</target_value> | |
| 1456 | - </field> | |
| 1457 | - </fields> | |
| 1458 | - <cluster_schema/> | |
| 1459 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1460 | - <xloc>519</xloc> | |
| 1461 | - <yloc>174</yloc> | |
| 1462 | - <draw>Y</draw> | |
| 1463 | - </GUI> | |
| 1464 | - </step> | |
| 1465 | - | |
| 1466 | - <step> | |
| 1467 | - <name>获取变量</name> | |
| 1468 | - <type>GetVariable</type> | |
| 1469 | - <description/> | |
| 1470 | - <distribute>Y</distribute> | |
| 1471 | - <custom_distribution/> | |
| 1472 | - <copies>1</copies> | |
| 1473 | - <partitioning> | |
| 1474 | - <method>none</method> | |
| 1475 | - <schema_name/> | |
| 1476 | - </partitioning> | |
| 1477 | - <fields> | |
| 1478 | - <field> | |
| 1479 | - <name>filepath_</name> | |
| 1480 | - <variable>${filepath}</variable> | |
| 1481 | - <type>String</type> | |
| 1482 | - <format/> | |
| 1483 | - <currency/> | |
| 1484 | - <decimal/> | |
| 1485 | - <group/> | |
| 1486 | - <length>-1</length> | |
| 1487 | - <precision>-1</precision> | |
| 1488 | - <trim_type>none</trim_type> | |
| 1489 | - </field> | |
| 1490 | - <field> | |
| 1491 | - <name>erroroutputdir_</name> | |
| 1492 | - <variable>${erroroutputdir}</variable> | |
| 1493 | - <type>String</type> | |
| 1494 | - <format/> | |
| 1495 | - <currency/> | |
| 1496 | - <decimal/> | |
| 1497 | - <group/> | |
| 1498 | - <length>-1</length> | |
| 1499 | - <precision>-1</precision> | |
| 1500 | - <trim_type>none</trim_type> | |
| 1501 | - </field> | |
| 1502 | - </fields> | |
| 1503 | - <cluster_schema/> | |
| 1504 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1505 | - <xloc>134</xloc> | |
| 1506 | - <yloc>183</yloc> | |
| 1507 | - <draw>Y</draw> | |
| 1508 | - </GUI> | |
| 1509 | - </step> | |
| 1510 | - | |
| 1511 | - <step> | |
| 1512 | - <name>营运状态</name> | |
| 1513 | - <type>ValueMapper</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 | - <field_to_use>operatorsState</field_to_use> | |
| 1523 | - <target_field/> | |
| 1524 | - <non_match_default/> | |
| 1525 | - <fields> | |
| 1526 | - <field> | |
| 1527 | - <source_value>营运</source_value> | |
| 1528 | - <target_value>1</target_value> | |
| 1529 | - </field> | |
| 1530 | - <field> | |
| 1531 | - <source_value>停运</source_value> | |
| 1532 | - <target_value>2</target_value> | |
| 1533 | - </field> | |
| 1534 | - <field> | |
| 1535 | - <source_value>挂失</source_value> | |
| 1536 | - <target_value>3</target_value> | |
| 1537 | - </field> | |
| 1538 | - <field> | |
| 1539 | - <source_value>迁出(过户)</source_value> | |
| 1540 | - <target_value>4</target_value> | |
| 1541 | - </field> | |
| 1542 | - <field> | |
| 1543 | - <source_value>迁出(转籍)</source_value> | |
| 1544 | - <target_value>5</target_value> | |
| 1545 | - </field> | |
| 1546 | - <field> | |
| 1547 | - <source_value>报废</source_value> | |
| 1548 | - <target_value>6</target_value> | |
| 1549 | - </field> | |
| 1550 | - <field> | |
| 1551 | - <source_value>歇业</source_value> | |
| 1552 | - <target_value>7</target_value> | |
| 1553 | - </field> | |
| 1554 | - <field> | |
| 1555 | - <source_value>注销</source_value> | |
| 1556 | - <target_value>8</target_value> | |
| 1557 | - </field> | |
| 1558 | - <field> | |
| 1559 | - <source_value>测试</source_value> | |
| 1560 | - <target_value>9</target_value> | |
| 1561 | - </field> | |
| 1562 | - <field> | |
| 1563 | - <source_value>其他</source_value> | |
| 1564 | - <target_value>10</target_value> | |
| 1565 | - </field> | |
| 1566 | - </fields> | |
| 1567 | - <cluster_schema/> | |
| 1568 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1569 | - <xloc>615</xloc> | |
| 1570 | - <yloc>173</yloc> | |
| 1571 | - <draw>Y</draw> | |
| 1572 | - </GUI> | |
| 1573 | - </step> | |
| 1574 | - | |
| 1575 | - <step> | |
| 1576 | - <name>车辆类型</name> | |
| 1577 | - <type>ValueMapper</type> | |
| 1578 | - <description/> | |
| 1579 | - <distribute>Y</distribute> | |
| 1580 | - <custom_distribution/> | |
| 1581 | - <copies>1</copies> | |
| 1582 | - <partitioning> | |
| 1583 | - <method>none</method> | |
| 1584 | - <schema_name/> | |
| 1585 | - </partitioning> | |
| 1586 | - <field_to_use>carType</field_to_use> | |
| 1587 | - <target_field/> | |
| 1588 | - <non_match_default/> | |
| 1589 | - <fields> | |
| 1590 | - <field> | |
| 1591 | - <source_value>营运车</source_value> | |
| 1592 | - <target_value>1</target_value> | |
| 1593 | - </field> | |
| 1594 | - <field> | |
| 1595 | - <source_value>包车</source_value> | |
| 1596 | - <target_value>2</target_value> | |
| 1597 | - </field> | |
| 1598 | - <field> | |
| 1599 | - <source_value>学校班车</source_value> | |
| 1600 | - <target_value>3</target_value> | |
| 1601 | - </field> | |
| 1602 | - <field> | |
| 1603 | - <source_value>公司班车</source_value> | |
| 1604 | - <target_value>4</target_value> | |
| 1605 | - </field> | |
| 1606 | - <field> | |
| 1607 | - <source_value>待报废车</source_value> | |
| 1608 | - <target_value>5</target_value> | |
| 1609 | - </field> | |
| 1610 | - <field> | |
| 1611 | - <source_value>备车</source_value> | |
| 1612 | - <target_value>6</target_value> | |
| 1613 | - </field> | |
| 1614 | - <field> | |
| 1615 | - <source_value>测试设备</source_value> | |
| 1616 | - <target_value>7</target_value> | |
| 1617 | - </field> | |
| 1618 | - </fields> | |
| 1619 | - <cluster_schema/> | |
| 1620 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1621 | - <xloc>521</xloc> | |
| 1622 | - <yloc>275</yloc> | |
| 1623 | - <draw>Y</draw> | |
| 1624 | - </GUI> | |
| 1625 | - </step> | |
| 1626 | - | |
| 1627 | - <step> | |
| 1628 | - <name>车辆编码</name> | |
| 1629 | - <type>Constant</type> | |
| 1630 | - <description/> | |
| 1631 | - <distribute>Y</distribute> | |
| 1632 | - <custom_distribution/> | |
| 1633 | - <copies>1</copies> | |
| 1634 | - <partitioning> | |
| 1635 | - <method>none</method> | |
| 1636 | - <schema_name/> | |
| 1637 | - </partitioning> | |
| 1638 | - <fields> | |
| 1639 | - <field> | |
| 1640 | - <name>carCode</name> | |
| 1641 | - <type>String</type> | |
| 1642 | - <format/> | |
| 1643 | - <currency/> | |
| 1644 | - <decimal/> | |
| 1645 | - <group/> | |
| 1646 | - <nullif>1</nullif> | |
| 1647 | - <length>-1</length> | |
| 1648 | - <precision>-1</precision> | |
| 1649 | - <set_empty_string>N</set_empty_string> | |
| 1650 | - </field> | |
| 1651 | - </fields> | |
| 1652 | - <cluster_schema/> | |
| 1653 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1654 | - <xloc>820</xloc> | |
| 1655 | - <yloc>272</yloc> | |
| 1656 | - <draw>Y</draw> | |
| 1657 | - </GUI> | |
| 1658 | - </step> | |
| 1659 | - | |
| 1660 | - <step> | |
| 1661 | - <name>错误输出 2</name> | |
| 1662 | - <type>ExcelOutput</type> | |
| 1663 | - <description/> | |
| 1664 | - <distribute>Y</distribute> | |
| 1665 | - <custom_distribution/> | |
| 1666 | - <copies>1</copies> | |
| 1667 | - <partitioning> | |
| 1668 | - <method>none</method> | |
| 1669 | - <schema_name/> | |
| 1670 | - </partitioning> | |
| 1671 | - <header>Y</header> | |
| 1672 | - <footer>N</footer> | |
| 1673 | - <encoding/> | |
| 1674 | - <append>N</append> | |
| 1675 | - <add_to_result_filenames>Y</add_to_result_filenames> | |
| 1676 | - <file> | |
| 1677 | - <name>${erroroutputdir}/车辆基础信息_错误</name> | |
| 1678 | - <extention>xls</extention> | |
| 1679 | - <do_not_open_newfile_init>N</do_not_open_newfile_init> | |
| 1680 | - <create_parent_folder>N</create_parent_folder> | |
| 1681 | - <split>N</split> | |
| 1682 | - <add_date>N</add_date> | |
| 1683 | - <add_time>N</add_time> | |
| 1684 | - <SpecifyFormat>N</SpecifyFormat> | |
| 1685 | - <date_time_format/> | |
| 1686 | - <sheetname>Sheet1</sheetname> | |
| 1687 | - <autosizecolums>N</autosizecolums> | |
| 1688 | - <nullisblank>N</nullisblank> | |
| 1689 | - <protect_sheet>N</protect_sheet> | |
| 1690 | - <password>Encrypted </password> | |
| 1691 | - <splitevery>0</splitevery> | |
| 1692 | - <usetempfiles>N</usetempfiles> | |
| 1693 | - <tempdirectory/> | |
| 1694 | - </file> | |
| 1695 | - <template> | |
| 1696 | - <enabled>N</enabled> | |
| 1697 | - <append>N</append> | |
| 1698 | - <filename>template.xls</filename> | |
| 1699 | - </template> | |
| 1700 | - <fields> | |
| 1701 | - <field> | |
| 1702 | - <name>insideCode</name> | |
| 1703 | - <type>String</type> | |
| 1704 | - <format/> | |
| 1705 | - </field> | |
| 1706 | - <field> | |
| 1707 | - <name>company</name> | |
| 1708 | - <type>String</type> | |
| 1709 | - <format/> | |
| 1710 | - </field> | |
| 1711 | - <field> | |
| 1712 | - <name>brancheCompany</name> | |
| 1713 | - <type>String</type> | |
| 1714 | - <format/> | |
| 1715 | - </field> | |
| 1716 | - <field> | |
| 1717 | - <name>carPlate</name> | |
| 1718 | - <type>String</type> | |
| 1719 | - <format/> | |
| 1720 | - </field> | |
| 1721 | - <field> | |
| 1722 | - <name>supplierName</name> | |
| 1723 | - <type>String</type> | |
| 1724 | - <format/> | |
| 1725 | - </field> | |
| 1726 | - <field> | |
| 1727 | - <name>equipmentCode</name> | |
| 1728 | - <type>String</type> | |
| 1729 | - <format/> | |
| 1730 | - </field> | |
| 1731 | - <field> | |
| 1732 | - <name>carClass</name> | |
| 1733 | - <type>String</type> | |
| 1734 | - <format/> | |
| 1735 | - </field> | |
| 1736 | - <field> | |
| 1737 | - <name>speed</name> | |
| 1738 | - <type>String</type> | |
| 1739 | - <format/> | |
| 1740 | - </field> | |
| 1741 | - <field> | |
| 1742 | - <name>carSeatnNumber</name> | |
| 1743 | - <type>String</type> | |
| 1744 | - <format/> | |
| 1745 | - </field> | |
| 1746 | - <field> | |
| 1747 | - <name>carStandard</name> | |
| 1748 | - <type>String</type> | |
| 1749 | - <format/> | |
| 1750 | - </field> | |
| 1751 | - <field> | |
| 1752 | - <name>kburnStandard</name> | |
| 1753 | - <type>String</type> | |
| 1754 | - <format/> | |
| 1755 | - </field> | |
| 1756 | - <field> | |
| 1757 | - <name>gburnStandard</name> | |
| 1758 | - <type>String</type> | |
| 1759 | - <format/> | |
| 1760 | - </field> | |
| 1761 | - <field> | |
| 1762 | - <name>scrapCode</name> | |
| 1763 | - <type>String</type> | |
| 1764 | - <format/> | |
| 1765 | - </field> | |
| 1766 | - <field> | |
| 1767 | - <name>makeCodeOne</name> | |
| 1768 | - <type>String</type> | |
| 1769 | - <format/> | |
| 1770 | - </field> | |
| 1771 | - <field> | |
| 1772 | - <name>makeCodeTwo</name> | |
| 1773 | - <type>String</type> | |
| 1774 | - <format/> | |
| 1775 | - </field> | |
| 1776 | - <field> | |
| 1777 | - <name>carGride</name> | |
| 1778 | - <type>String</type> | |
| 1779 | - <format/> | |
| 1780 | - </field> | |
| 1781 | - <field> | |
| 1782 | - <name>emissionsStandard</name> | |
| 1783 | - <type>String</type> | |
| 1784 | - <format/> | |
| 1785 | - </field> | |
| 1786 | - <field> | |
| 1787 | - <name>engineCodeOne</name> | |
| 1788 | - <type>String</type> | |
| 1789 | - <format/> | |
| 1790 | - </field> | |
| 1791 | - <field> | |
| 1792 | - <name>engineCodeTwo</name> | |
| 1793 | - <type>String</type> | |
| 1794 | - <format/> | |
| 1795 | - </field> | |
| 1796 | - <field> | |
| 1797 | - <name>carNumberOne</name> | |
| 1798 | - <type>String</type> | |
| 1799 | - <format/> | |
| 1800 | - </field> | |
| 1801 | - <field> | |
| 1802 | - <name>carNumberTwo</name> | |
| 1803 | - <type>String</type> | |
| 1804 | - <format/> | |
| 1805 | - </field> | |
| 1806 | - <field> | |
| 1807 | - <name>openDate</name> | |
| 1808 | - <type>String</type> | |
| 1809 | - <format/> | |
| 1810 | - </field> | |
| 1811 | - <field> | |
| 1812 | - <name>closeDate</name> | |
| 1813 | - <type>String</type> | |
| 1814 | - <format/> | |
| 1815 | - </field> | |
| 1816 | - <field> | |
| 1817 | - <name>hvacCar</name> | |
| 1818 | - <type>Integer</type> | |
| 1819 | - <format/> | |
| 1820 | - </field> | |
| 1821 | - <field> | |
| 1822 | - <name>ticketType</name> | |
| 1823 | - <type>Integer</type> | |
| 1824 | - <format/> | |
| 1825 | - </field> | |
| 1826 | - <field> | |
| 1827 | - <name>ledScreen</name> | |
| 1828 | - <type>Integer</type> | |
| 1829 | - <format/> | |
| 1830 | - </field> | |
| 1831 | - <field> | |
| 1832 | - <name>tvVideoType</name> | |
| 1833 | - <type>Integer</type> | |
| 1834 | - <format/> | |
| 1835 | - </field> | |
| 1836 | - <field> | |
| 1837 | - <name>carType</name> | |
| 1838 | - <type>String</type> | |
| 1839 | - <format/> | |
| 1840 | - </field> | |
| 1841 | - <field> | |
| 1842 | - <name>vehicleStats</name> | |
| 1843 | - <type>String</type> | |
| 1844 | - <format/> | |
| 1845 | - </field> | |
| 1846 | - <field> | |
| 1847 | - <name>operatorsState</name> | |
| 1848 | - <type>String</type> | |
| 1849 | - <format/> | |
| 1850 | - </field> | |
| 1851 | - <field> | |
| 1852 | - <name>descriptions</name> | |
| 1853 | - <type>String</type> | |
| 1854 | - <format/> | |
| 1855 | - </field> | |
| 1856 | - <field> | |
| 1857 | - <name>videoCode</name> | |
| 1858 | - <type>String</type> | |
| 1859 | - <format/> | |
| 1860 | - </field> | |
| 1861 | - <field> | |
| 1862 | - <name>businessCode</name> | |
| 1863 | - <type>String</type> | |
| 1864 | - <format/> | |
| 1865 | - </field> | |
| 1866 | - <field> | |
| 1867 | - <name>carCode</name> | |
| 1868 | - <type>String</type> | |
| 1869 | - <format/> | |
| 1870 | - </field> | |
| 1871 | - <field> | |
| 1872 | - <name>error_count</name> | |
| 1873 | - <type>Integer</type> | |
| 1874 | - <format/> | |
| 1875 | - </field> | |
| 1876 | - <field> | |
| 1877 | - <name>error_desc</name> | |
| 1878 | - <type>String</type> | |
| 1879 | - <format/> | |
| 1880 | - </field> | |
| 1881 | - <field> | |
| 1882 | - <name>error_column1</name> | |
| 1883 | - <type>String</type> | |
| 1884 | - <format/> | |
| 1885 | - </field> | |
| 1886 | - <field> | |
| 1887 | - <name>error_column2</name> | |
| 1888 | - <type>String</type> | |
| 1889 | - <format/> | |
| 1890 | - </field> | |
| 1891 | - </fields> | |
| 1892 | - <custom> | |
| 1893 | - <header_font_name>arial</header_font_name> | |
| 1894 | - <header_font_size>10</header_font_size> | |
| 1895 | - <header_font_bold>N</header_font_bold> | |
| 1896 | - <header_font_italic>N</header_font_italic> | |
| 1897 | - <header_font_underline>no</header_font_underline> | |
| 1898 | - <header_font_orientation>horizontal</header_font_orientation> | |
| 1899 | - <header_font_color>black</header_font_color> | |
| 1900 | - <header_background_color>none</header_background_color> | |
| 1901 | - <header_row_height>255</header_row_height> | |
| 1902 | - <header_alignment>left</header_alignment> | |
| 1903 | - <header_image/> | |
| 1904 | - <row_font_name>arial</row_font_name> | |
| 1905 | - <row_font_size>10</row_font_size> | |
| 1906 | - <row_font_color>black</row_font_color> | |
| 1907 | - <row_background_color>none</row_background_color> | |
| 1908 | - </custom> | |
| 1909 | - <cluster_schema/> | |
| 1910 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1911 | - <xloc>633</xloc> | |
| 1912 | - <yloc>364</yloc> | |
| 1913 | - <draw>Y</draw> | |
| 1914 | - </GUI> | |
| 1915 | - </step> | |
| 1916 | - | |
| 1917 | - <step> | |
| 1918 | - <name>错误输出 2 2</name> | |
| 1919 | - <type>ExcelOutput</type> | |
| 1920 | - <description/> | |
| 1921 | - <distribute>Y</distribute> | |
| 1922 | - <custom_distribution/> | |
| 1923 | - <copies>1</copies> | |
| 1924 | - <partitioning> | |
| 1925 | - <method>none</method> | |
| 1926 | - <schema_name/> | |
| 1927 | - </partitioning> | |
| 1928 | - <header>Y</header> | |
| 1929 | - <footer>N</footer> | |
| 1930 | - <encoding/> | |
| 1931 | - <append>N</append> | |
| 1932 | - <add_to_result_filenames>Y</add_to_result_filenames> | |
| 1933 | - <file> | |
| 1934 | - <name>${erroroutputdir}/车辆基础信息_错误2</name> | |
| 1935 | - <extention>xls</extention> | |
| 1936 | - <do_not_open_newfile_init>N</do_not_open_newfile_init> | |
| 1937 | - <create_parent_folder>N</create_parent_folder> | |
| 1938 | - <split>N</split> | |
| 1939 | - <add_date>N</add_date> | |
| 1940 | - <add_time>N</add_time> | |
| 1941 | - <SpecifyFormat>N</SpecifyFormat> | |
| 1942 | - <date_time_format/> | |
| 1943 | - <sheetname>Sheet1</sheetname> | |
| 1944 | - <autosizecolums>N</autosizecolums> | |
| 1945 | - <nullisblank>N</nullisblank> | |
| 1946 | - <protect_sheet>N</protect_sheet> | |
| 1947 | - <password>Encrypted </password> | |
| 1948 | - <splitevery>0</splitevery> | |
| 1949 | - <usetempfiles>N</usetempfiles> | |
| 1950 | - <tempdirectory/> | |
| 1951 | - </file> | |
| 1952 | - <template> | |
| 1953 | - <enabled>N</enabled> | |
| 1954 | - <append>N</append> | |
| 1955 | - <filename>template.xls</filename> | |
| 1956 | - </template> | |
| 1957 | - <fields> | |
| 1958 | - <field> | |
| 1959 | - <name>insideCode</name> | |
| 1960 | - <type>String</type> | |
| 1961 | - <format/> | |
| 1962 | - </field> | |
| 1963 | - <field> | |
| 1964 | - <name>carCode</name> | |
| 1965 | - <type>String</type> | |
| 1966 | - <format/> | |
| 1967 | - </field> | |
| 1968 | - <field> | |
| 1969 | - <name>company</name> | |
| 1970 | - <type>String</type> | |
| 1971 | - <format/> | |
| 1972 | - </field> | |
| 1973 | - <field> | |
| 1974 | - <name>brancheCompany</name> | |
| 1975 | - <type>String</type> | |
| 1976 | - <format/> | |
| 1977 | - </field> | |
| 1978 | - <field> | |
| 1979 | - <name>carPlate</name> | |
| 1980 | - <type>String</type> | |
| 1981 | - <format/> | |
| 1982 | - </field> | |
| 1983 | - <field> | |
| 1984 | - <name>supplierName</name> | |
| 1985 | - <type>String</type> | |
| 1986 | - <format/> | |
| 1987 | - </field> | |
| 1988 | - <field> | |
| 1989 | - <name>equipmentCode</name> | |
| 1990 | - <type>String</type> | |
| 1991 | - <format/> | |
| 1992 | - </field> | |
| 1993 | - <field> | |
| 1994 | - <name>carClass</name> | |
| 1995 | - <type>String</type> | |
| 1996 | - <format/> | |
| 1997 | - </field> | |
| 1998 | - <field> | |
| 1999 | - <name>speed</name> | |
| 2000 | - <type>String</type> | |
| 2001 | - <format/> | |
| 2002 | - </field> | |
| 2003 | - <field> | |
| 2004 | - <name>carSeatnNumber</name> | |
| 2005 | - <type>String</type> | |
| 2006 | - <format/> | |
| 2007 | - </field> | |
| 2008 | - <field> | |
| 2009 | - <name>carStandard</name> | |
| 2010 | - <type>String</type> | |
| 2011 | - <format/> | |
| 2012 | - </field> | |
| 2013 | - <field> | |
| 2014 | - <name>kburnStandard</name> | |
| 2015 | - <type>String</type> | |
| 2016 | - <format/> | |
| 2017 | - </field> | |
| 2018 | - <field> | |
| 2019 | - <name>gburnStandard</name> | |
| 2020 | - <type>String</type> | |
| 2021 | - <format/> | |
| 2022 | - </field> | |
| 2023 | - <field> | |
| 2024 | - <name>scrapCode</name> | |
| 2025 | - <type>String</type> | |
| 2026 | - <format/> | |
| 2027 | - </field> | |
| 2028 | - <field> | |
| 2029 | - <name>makeCodeOne</name> | |
| 2030 | - <type>String</type> | |
| 2031 | - <format/> | |
| 2032 | - </field> | |
| 2033 | - <field> | |
| 2034 | - <name>makeCodeTwo</name> | |
| 2035 | - <type>String</type> | |
| 2036 | - <format/> | |
| 2037 | - </field> | |
| 2038 | - <field> | |
| 2039 | - <name>carGride</name> | |
| 2040 | - <type>String</type> | |
| 2041 | - <format/> | |
| 2042 | - </field> | |
| 2043 | - <field> | |
| 2044 | - <name>emissionsStandard</name> | |
| 2045 | - <type>String</type> | |
| 2046 | - <format/> | |
| 2047 | - </field> | |
| 2048 | - <field> | |
| 2049 | - <name>engineCodeOne</name> | |
| 2050 | - <type>String</type> | |
| 2051 | - <format/> | |
| 2052 | - </field> | |
| 2053 | - <field> | |
| 2054 | - <name>engineCodeTwo</name> | |
| 2055 | - <type>String</type> | |
| 2056 | - <format/> | |
| 2057 | - </field> | |
| 2058 | - <field> | |
| 2059 | - <name>carNumberOne</name> | |
| 2060 | - <type>String</type> | |
| 2061 | - <format/> | |
| 2062 | - </field> | |
| 2063 | - <field> | |
| 2064 | - <name>carNumberTwo</name> | |
| 2065 | - <type>String</type> | |
| 2066 | - <format/> | |
| 2067 | - </field> | |
| 2068 | - <field> | |
| 2069 | - <name>openDate</name> | |
| 2070 | - <type>String</type> | |
| 2071 | - <format/> | |
| 2072 | - </field> | |
| 2073 | - <field> | |
| 2074 | - <name>closeDate</name> | |
| 2075 | - <type>String</type> | |
| 2076 | - <format/> | |
| 2077 | - </field> | |
| 2078 | - <field> | |
| 2079 | - <name>hvacCar</name> | |
| 2080 | - <type>String</type> | |
| 2081 | - <format/> | |
| 2082 | - </field> | |
| 2083 | - <field> | |
| 2084 | - <name>ticketType</name> | |
| 2085 | - <type>String</type> | |
| 2086 | - <format/> | |
| 2087 | - </field> | |
| 2088 | - <field> | |
| 2089 | - <name>ledScreen</name> | |
| 2090 | - <type>String</type> | |
| 2091 | - <format/> | |
| 2092 | - </field> | |
| 2093 | - <field> | |
| 2094 | - <name>tvVideoType</name> | |
| 2095 | - <type>String</type> | |
| 2096 | - <format/> | |
| 2097 | - </field> | |
| 2098 | - <field> | |
| 2099 | - <name>carType</name> | |
| 2100 | - <type>String</type> | |
| 2101 | - <format/> | |
| 2102 | - </field> | |
| 2103 | - <field> | |
| 2104 | - <name>vehicleStats</name> | |
| 598 | + <name>所属公司</name> | |
| 2105 | 599 | <type>String</type> |
| 2106 | 600 | <format/> |
| 2107 | 601 | </field> |
| 2108 | 602 | <field> |
| 2109 | - <name>operatorsState</name> | |
| 603 | + <name>所属公司代码</name> | |
| 2110 | 604 | <type>String</type> |
| 2111 | 605 | <format/> |
| 2112 | 606 | </field> |
| 2113 | 607 | <field> |
| 2114 | - <name>descriptions</name> | |
| 608 | + <name>所属分公司</name> | |
| 2115 | 609 | <type>String</type> |
| 2116 | 610 | <format/> |
| 2117 | 611 | </field> |
| 2118 | 612 | <field> |
| 2119 | - <name>videoCode</name> | |
| 613 | + <name>所属分公司代码</name> | |
| 2120 | 614 | <type>String</type> |
| 2121 | 615 | <format/> |
| 2122 | 616 | </field> |
| 2123 | 617 | <field> |
| 2124 | - <name>修改日期</name> | |
| 618 | + <name>供应商名称</name> | |
| 2125 | 619 | <type>String</type> |
| 2126 | 620 | <format/> |
| 2127 | 621 | </field> |
| 2128 | 622 | <field> |
| 2129 | - <name>报废日期</name> | |
| 623 | + <name>设备终端号</name> | |
| 2130 | 624 | <type>String</type> |
| 2131 | 625 | <format/> |
| 2132 | 626 | </field> |
| ... | ... | @@ -2170,8 +664,8 @@ |
| 2170 | 664 | </custom> |
| 2171 | 665 | <cluster_schema/> |
| 2172 | 666 | <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> |
| 2173 | - <xloc>971</xloc> | |
| 2174 | - <yloc>63</yloc> | |
| 667 | + <xloc>328</xloc> | |
| 668 | + <yloc>140</yloc> | |
| 2175 | 669 | <draw>Y</draw> |
| 2176 | 670 | </GUI> |
| 2177 | 671 | </step> |
| ... | ... | @@ -2189,18 +683,6 @@ |
| 2189 | 683 | <max_pct_errors/> |
| 2190 | 684 | <min_pct_rows/> |
| 2191 | 685 | </error> |
| 2192 | - <error> | |
| 2193 | - <source_step>是否的变成数字型</source_step> | |
| 2194 | - <target_step>错误输出 2 2</target_step> | |
| 2195 | - <is_enabled>Y</is_enabled> | |
| 2196 | - <nr_valuename>error_count</nr_valuename> | |
| 2197 | - <descriptions_valuename>error_desc</descriptions_valuename> | |
| 2198 | - <fields_valuename>error_column1</fields_valuename> | |
| 2199 | - <codes_valuename>error_column2</codes_valuename> | |
| 2200 | - <max_errors/> | |
| 2201 | - <max_pct_errors/> | |
| 2202 | - <min_pct_rows/> | |
| 2203 | - </error> | |
| 2204 | 686 | </step_error_handling> |
| 2205 | 687 | <slave-step-copy-partition-distribution> |
| 2206 | 688 | </slave-step-copy-partition-distribution> | ... | ... |
src/main/resources/datatools/ktrs/carsDataOutput.ktr
| ... | ... | @@ -242,20 +242,8 @@ |
| 242 | 242 | </attributes> |
| 243 | 243 | </connection> |
| 244 | 244 | <order> |
| 245 | - <hop> <from>是否有LED服务屏</from><to>是否有TV视频</to><enabled>Y</enabled> </hop> | |
| 246 | - <hop> <from>是否空调车</from><to>有无人售票</to><enabled>Y</enabled> </hop> | |
| 247 | - <hop> <from>有无人售票</from><to>是否有LED服务屏</to><enabled>Y</enabled> </hop> | |
| 248 | - <hop> <from>表输入</from><to>是否空调车</to><enabled>Y</enabled> </hop> | |
| 249 | - <hop> <from>是否有TV视频</from><to>供应商名称</to><enabled>Y</enabled> </hop> | |
| 250 | - <hop> <from>供应商名称</from><to>营运状态标识</to><enabled>Y</enabled> </hop> | |
| 251 | - <hop> <from>营运状态标识</from><to>营运状态查询</to><enabled>Y</enabled> </hop> | |
| 252 | - <hop> <from>营运状态查询</from><to>机动车类型标识</to><enabled>Y</enabled> </hop> | |
| 253 | - <hop> <from>机动车类型标识</from><to>机动车类型查询</to><enabled>Y</enabled> </hop> | |
| 254 | - <hop> <from>机动车类型查询</from><to>车辆类型标识</to><enabled>Y</enabled> </hop> | |
| 255 | - <hop> <from>车辆类型标识</from><to>车辆类型查询</to><enabled>Y</enabled> </hop> | |
| 256 | - <hop> <from>车辆类型查询</from><to>字段选择</to><enabled>Y</enabled> </hop> | |
| 257 | - <hop> <from>字段选择</from><to>字段选择 2</to><enabled>Y</enabled> </hop> | |
| 258 | - <hop> <from>字段选择 2</from><to>Excel输出</to><enabled>Y</enabled> </hop> | |
| 245 | + <hop> <from>表输入</from><to>字段选择</to><enabled>Y</enabled> </hop> | |
| 246 | + <hop> <from>字段选择</from><to>Excel输出</to><enabled>Y</enabled> </hop> | |
| 259 | 247 | </order> |
| 260 | 248 | <step> |
| 261 | 249 | <name>Excel输出</name> |
| ... | ... | @@ -309,167 +297,27 @@ |
| 309 | 297 | <format/> |
| 310 | 298 | </field> |
| 311 | 299 | <field> |
| 312 | - <name>车辆编码</name> | |
| 313 | - <type>String</type> | |
| 314 | - <format/> | |
| 315 | - </field> | |
| 316 | - <field> | |
| 317 | - <name>车型类别</name> | |
| 318 | - <type>String</type> | |
| 319 | - <format/> | |
| 320 | - </field> | |
| 321 | - <field> | |
| 322 | - <name>座位数</name> | |
| 323 | - <type>String</type> | |
| 324 | - <format/> | |
| 325 | - </field> | |
| 326 | - <field> | |
| 327 | - <name>载客标准</name> | |
| 328 | - <type>String</type> | |
| 329 | - <format/> | |
| 330 | - </field> | |
| 331 | - <field> | |
| 332 | - <name>技术速度</name> | |
| 333 | - <type>String</type> | |
| 334 | - <format/> | |
| 335 | - </field> | |
| 336 | - <field> | |
| 337 | - <name>是否空调</name> | |
| 338 | - <type>String</type> | |
| 339 | - <format/> | |
| 340 | - </field> | |
| 341 | - <field> | |
| 342 | - <name>标准油耗(开空调)</name> | |
| 343 | - <type>String</type> | |
| 344 | - <format/> | |
| 345 | - </field> | |
| 346 | - <field> | |
| 347 | - <name>标准油耗(关空调)</name> | |
| 348 | - <type>String</type> | |
| 349 | - <format/> | |
| 350 | - </field> | |
| 351 | - <field> | |
| 352 | - <name>有无人售票</name> | |
| 353 | - <type>String</type> | |
| 354 | - <format/> | |
| 355 | - </field> | |
| 356 | - <field> | |
| 357 | - <name>是否有TV视频</name> | |
| 358 | - <type>String</type> | |
| 359 | - <format/> | |
| 360 | - </field> | |
| 361 | - <field> | |
| 362 | - <name>是否有LED服务屏</name> | |
| 363 | - <type>String</type> | |
| 364 | - <format/> | |
| 365 | - </field> | |
| 366 | - <field> | |
| 367 | - <name>运营状态</name> | |
| 368 | - <type>String</type> | |
| 369 | - <format/> | |
| 370 | - </field> | |
| 371 | - <field> | |
| 372 | - <name>启用日期</name> | |
| 373 | - <type>String</type> | |
| 374 | - <format/> | |
| 375 | - </field> | |
| 376 | - <field> | |
| 377 | - <name>取消日期</name> | |
| 378 | - <type>String</type> | |
| 379 | - <format/> | |
| 380 | - </field> | |
| 381 | - <field> | |
| 382 | - <name>报废号</name> | |
| 383 | - <type>String</type> | |
| 384 | - <format/> | |
| 385 | - </field> | |
| 386 | - <field> | |
| 387 | - <name>报废日期</name> | |
| 388 | - <type>String</type> | |
| 389 | - <format/> | |
| 390 | - </field> | |
| 391 | - <field> | |
| 392 | - <name>备注</name> | |
| 393 | - <type>String</type> | |
| 394 | - <format/> | |
| 395 | - </field> | |
| 396 | - <field> | |
| 397 | - <name>设备编号</name> | |
| 398 | - <type>String</type> | |
| 399 | - <format/> | |
| 400 | - </field> | |
| 401 | - <field> | |
| 402 | - <name>厂牌型号</name> | |
| 403 | - <type>String</type> | |
| 404 | - <format/> | |
| 405 | - </field> | |
| 406 | - <field> | |
| 407 | - <name>厂牌型号2</name> | |
| 408 | - <type>String</type> | |
| 409 | - <format/> | |
| 410 | - </field> | |
| 411 | - <field> | |
| 412 | - <name>车辆等级标准</name> | |
| 413 | - <type>String</type> | |
| 414 | - <format/> | |
| 415 | - </field> | |
| 416 | - <field> | |
| 417 | - <name>出厂排放标准</name> | |
| 418 | - <type>String</type> | |
| 419 | - <format/> | |
| 420 | - </field> | |
| 421 | - <field> | |
| 422 | - <name>发动机号码1</name> | |
| 423 | - <type>String</type> | |
| 424 | - <format/> | |
| 425 | - </field> | |
| 426 | - <field> | |
| 427 | - <name>发动机号码2</name> | |
| 428 | - <type>String</type> | |
| 429 | - <format/> | |
| 430 | - </field> | |
| 431 | - <field> | |
| 432 | - <name>车架号码1</name> | |
| 433 | - <type>String</type> | |
| 434 | - <format/> | |
| 435 | - </field> | |
| 436 | - <field> | |
| 437 | - <name>车架号码2</name> | |
| 438 | - <type>String</type> | |
| 439 | - <format/> | |
| 440 | - </field> | |
| 441 | - <field> | |
| 442 | - <name>车辆类型</name> | |
| 443 | - <type>String</type> | |
| 444 | - <format/> | |
| 445 | - </field> | |
| 446 | - <field> | |
| 447 | 300 | <name>所属公司</name> |
| 448 | 301 | <type>String</type> |
| 449 | 302 | <format/> |
| 450 | 303 | </field> |
| 451 | 304 | <field> |
| 452 | - <name>修改日期</name> | |
| 453 | - <type>String</type> | |
| 454 | - <format/> | |
| 455 | - </field> | |
| 456 | - <field> | |
| 457 | - <name>是否机动车</name> | |
| 305 | + <name>所属公司代码</name> | |
| 458 | 306 | <type>String</type> |
| 459 | 307 | <format/> |
| 460 | 308 | </field> |
| 461 | 309 | <field> |
| 462 | - <name>视频编号</name> | |
| 310 | + <name>所属分公司</name> | |
| 463 | 311 | <type>String</type> |
| 464 | 312 | <format/> |
| 465 | 313 | </field> |
| 466 | 314 | <field> |
| 467 | - <name>设备供应厂商</name> | |
| 315 | + <name>所属分公司代码</name> | |
| 468 | 316 | <type>String</type> |
| 469 | 317 | <format/> |
| 470 | 318 | </field> |
| 471 | 319 | <field> |
| 472 | - <name>分公司</name> | |
| 320 | + <name>设备终端号</name> | |
| 473 | 321 | <type>String</type> |
| 474 | 322 | <format/> |
| 475 | 323 | </field> |
| ... | ... | @@ -493,40 +341,8 @@ |
| 493 | 341 | </custom> |
| 494 | 342 | <cluster_schema/> |
| 495 | 343 | <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> |
| 496 | - <xloc>574</xloc> | |
| 497 | - <yloc>270</yloc> | |
| 498 | - <draw>Y</draw> | |
| 499 | - </GUI> | |
| 500 | - </step> | |
| 501 | - | |
| 502 | - <step> | |
| 503 | - <name>供应商名称</name> | |
| 504 | - <type>ValueMapper</type> | |
| 505 | - <description/> | |
| 506 | - <distribute>Y</distribute> | |
| 507 | - <custom_distribution/> | |
| 508 | - <copies>1</copies> | |
| 509 | - <partitioning> | |
| 510 | - <method>none</method> | |
| 511 | - <schema_name/> | |
| 512 | - </partitioning> | |
| 513 | - <field_to_use>supplier_name</field_to_use> | |
| 514 | - <target_field>supplier_name_str</target_field> | |
| 515 | - <non_match_default/> | |
| 516 | - <fields> | |
| 517 | - <field> | |
| 518 | - <source_value>1</source_value> | |
| 519 | - <target_value>巴士拓华</target_value> | |
| 520 | - </field> | |
| 521 | - <field> | |
| 522 | - <source_value>2</source_value> | |
| 523 | - <target_value>博康</target_value> | |
| 524 | - </field> | |
| 525 | - </fields> | |
| 526 | - <cluster_schema/> | |
| 527 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 528 | - <xloc>449</xloc> | |
| 529 | - <yloc>68</yloc> | |
| 344 | + <xloc>282</xloc> | |
| 345 | + <yloc>169</yloc> | |
| 530 | 346 | <draw>Y</draw> |
| 531 | 347 | </GUI> |
| 532 | 348 | </step> |
| ... | ... | @@ -542,986 +358,43 @@ |
| 542 | 358 | <method>none</method> |
| 543 | 359 | <schema_name/> |
| 544 | 360 | </partitioning> |
| 545 | - <fields> <select_unspecified>N</select_unspecified> | |
| 546 | - <meta> <name>car_plate</name> | |
| 361 | + <fields> <field> <name>car_plate</name> | |
| 547 | 362 | <rename>车牌号</rename> |
| 548 | - <type>String</type> | |
| 549 | 363 | <length>-2</length> |
| 550 | 364 | <precision>-2</precision> |
| 551 | - <conversion_mask/> | |
| 552 | - <date_format_lenient>false</date_format_lenient> | |
| 553 | - <date_format_locale/> | |
| 554 | - <date_format_timezone/> | |
| 555 | - <lenient_string_to_number>false</lenient_string_to_number> | |
| 556 | - <encoding/> | |
| 557 | - <decimal_symbol/> | |
| 558 | - <grouping_symbol/> | |
| 559 | - <currency_symbol/> | |
| 560 | - <storage_type/> | |
| 561 | - </meta> <meta> <name>inside_code</name> | |
| 365 | + </field> <field> <name>inside_code</name> | |
| 562 | 366 | <rename>内部编码</rename> |
| 563 | - <type>String</type> | |
| 564 | - <length>-2</length> | |
| 565 | - <precision>-2</precision> | |
| 566 | - <conversion_mask/> | |
| 567 | - <date_format_lenient>false</date_format_lenient> | |
| 568 | - <date_format_locale/> | |
| 569 | - <date_format_timezone/> | |
| 570 | - <lenient_string_to_number>false</lenient_string_to_number> | |
| 571 | - <encoding/> | |
| 572 | - <decimal_symbol/> | |
| 573 | - <grouping_symbol/> | |
| 574 | - <currency_symbol/> | |
| 575 | - <storage_type/> | |
| 576 | - </meta> <meta> <name>car_code</name> | |
| 577 | - <rename>车辆编码</rename> | |
| 578 | - <type>String</type> | |
| 579 | - <length>-2</length> | |
| 580 | - <precision>-2</precision> | |
| 581 | - <conversion_mask/> | |
| 582 | - <date_format_lenient>false</date_format_lenient> | |
| 583 | - <date_format_locale/> | |
| 584 | - <date_format_timezone/> | |
| 585 | - <lenient_string_to_number>false</lenient_string_to_number> | |
| 586 | - <encoding/> | |
| 587 | - <decimal_symbol/> | |
| 588 | - <grouping_symbol/> | |
| 589 | - <currency_symbol/> | |
| 590 | - <storage_type/> | |
| 591 | - </meta> <meta> <name>car_class</name> | |
| 592 | - <rename>车型类别</rename> | |
| 593 | - <type>String</type> | |
| 594 | - <length>-2</length> | |
| 595 | - <precision>-2</precision> | |
| 596 | - <conversion_mask/> | |
| 597 | - <date_format_lenient>false</date_format_lenient> | |
| 598 | - <date_format_locale/> | |
| 599 | - <date_format_timezone/> | |
| 600 | - <lenient_string_to_number>false</lenient_string_to_number> | |
| 601 | - <encoding/> | |
| 602 | - <decimal_symbol/> | |
| 603 | - <grouping_symbol/> | |
| 604 | - <currency_symbol/> | |
| 605 | - <storage_type/> | |
| 606 | - </meta> <meta> <name>car_seatn_number</name> | |
| 607 | - <rename>座位数</rename> | |
| 608 | - <type>String</type> | |
| 609 | - <length>-2</length> | |
| 610 | - <precision>-2</precision> | |
| 611 | - <conversion_mask/> | |
| 612 | - <date_format_lenient>false</date_format_lenient> | |
| 613 | - <date_format_locale/> | |
| 614 | - <date_format_timezone/> | |
| 615 | - <lenient_string_to_number>false</lenient_string_to_number> | |
| 616 | - <encoding/> | |
| 617 | - <decimal_symbol/> | |
| 618 | - <grouping_symbol/> | |
| 619 | - <currency_symbol/> | |
| 620 | - <storage_type/> | |
| 621 | - </meta> <meta> <name>car_standard</name> | |
| 622 | - <rename>载客标准</rename> | |
| 623 | - <type>String</type> | |
| 624 | - <length>-2</length> | |
| 625 | - <precision>-2</precision> | |
| 626 | - <conversion_mask/> | |
| 627 | - <date_format_lenient>false</date_format_lenient> | |
| 628 | - <date_format_locale/> | |
| 629 | - <date_format_timezone/> | |
| 630 | - <lenient_string_to_number>false</lenient_string_to_number> | |
| 631 | - <encoding/> | |
| 632 | - <decimal_symbol/> | |
| 633 | - <grouping_symbol/> | |
| 634 | - <currency_symbol/> | |
| 635 | - <storage_type/> | |
| 636 | - </meta> <meta> <name>speed</name> | |
| 637 | - <rename>技术速度</rename> | |
| 638 | - <type>String</type> | |
| 639 | - <length>-2</length> | |
| 640 | - <precision>-2</precision> | |
| 641 | - <conversion_mask/> | |
| 642 | - <date_format_lenient>false</date_format_lenient> | |
| 643 | - <date_format_locale/> | |
| 644 | - <date_format_timezone/> | |
| 645 | - <lenient_string_to_number>false</lenient_string_to_number> | |
| 646 | - <encoding/> | |
| 647 | - <decimal_symbol/> | |
| 648 | - <grouping_symbol/> | |
| 649 | - <currency_symbol/> | |
| 650 | - <storage_type/> | |
| 651 | - </meta> <meta> <name>hvac_car_str</name> | |
| 652 | - <rename>是否空调</rename> | |
| 653 | - <type>String</type> | |
| 654 | - <length>-2</length> | |
| 655 | - <precision>-2</precision> | |
| 656 | - <conversion_mask/> | |
| 657 | - <date_format_lenient>false</date_format_lenient> | |
| 658 | - <date_format_locale/> | |
| 659 | - <date_format_timezone/> | |
| 660 | - <lenient_string_to_number>false</lenient_string_to_number> | |
| 661 | - <encoding/> | |
| 662 | - <decimal_symbol/> | |
| 663 | - <grouping_symbol/> | |
| 664 | - <currency_symbol/> | |
| 665 | - <storage_type/> | |
| 666 | - </meta> <meta> <name>kburn_standard</name> | |
| 667 | - <rename>标准油耗(开空调)</rename> | |
| 668 | - <type>String</type> | |
| 669 | - <length>-2</length> | |
| 670 | - <precision>-2</precision> | |
| 671 | - <conversion_mask/> | |
| 672 | - <date_format_lenient>false</date_format_lenient> | |
| 673 | - <date_format_locale/> | |
| 674 | - <date_format_timezone/> | |
| 675 | - <lenient_string_to_number>false</lenient_string_to_number> | |
| 676 | - <encoding/> | |
| 677 | - <decimal_symbol/> | |
| 678 | - <grouping_symbol/> | |
| 679 | - <currency_symbol/> | |
| 680 | - <storage_type/> | |
| 681 | - </meta> <meta> <name>gburn_standard</name> | |
| 682 | - <rename>标准油耗(关空调)</rename> | |
| 683 | - <type>String</type> | |
| 684 | - <length>-2</length> | |
| 685 | - <precision>-2</precision> | |
| 686 | - <conversion_mask/> | |
| 687 | - <date_format_lenient>false</date_format_lenient> | |
| 688 | - <date_format_locale/> | |
| 689 | - <date_format_timezone/> | |
| 690 | - <lenient_string_to_number>false</lenient_string_to_number> | |
| 691 | - <encoding/> | |
| 692 | - <decimal_symbol/> | |
| 693 | - <grouping_symbol/> | |
| 694 | - <currency_symbol/> | |
| 695 | - <storage_type/> | |
| 696 | - </meta> <meta> <name>ticket_type_str</name> | |
| 697 | - <rename>有无人售票</rename> | |
| 698 | - <type>String</type> | |
| 699 | - <length>-2</length> | |
| 700 | - <precision>-2</precision> | |
| 701 | - <conversion_mask/> | |
| 702 | - <date_format_lenient>false</date_format_lenient> | |
| 703 | - <date_format_locale/> | |
| 704 | - <date_format_timezone/> | |
| 705 | - <lenient_string_to_number>false</lenient_string_to_number> | |
| 706 | - <encoding/> | |
| 707 | - <decimal_symbol/> | |
| 708 | - <grouping_symbol/> | |
| 709 | - <currency_symbol/> | |
| 710 | - <storage_type/> | |
| 711 | - </meta> <meta> <name>tv_video_type_str</name> | |
| 712 | - <rename>是否有TV视频</rename> | |
| 713 | - <type>String</type> | |
| 714 | - <length>-2</length> | |
| 715 | - <precision>-2</precision> | |
| 716 | - <conversion_mask/> | |
| 717 | - <date_format_lenient>false</date_format_lenient> | |
| 718 | - <date_format_locale/> | |
| 719 | - <date_format_timezone/> | |
| 720 | - <lenient_string_to_number>false</lenient_string_to_number> | |
| 721 | - <encoding/> | |
| 722 | - <decimal_symbol/> | |
| 723 | - <grouping_symbol/> | |
| 724 | - <currency_symbol/> | |
| 725 | - <storage_type/> | |
| 726 | - </meta> <meta> <name>led_screen_str</name> | |
| 727 | - <rename>是否有LED服务屏</rename> | |
| 728 | - <type>String</type> | |
| 729 | - <length>-2</length> | |
| 730 | - <precision>-2</precision> | |
| 731 | - <conversion_mask/> | |
| 732 | - <date_format_lenient>false</date_format_lenient> | |
| 733 | - <date_format_locale/> | |
| 734 | - <date_format_timezone/> | |
| 735 | - <lenient_string_to_number>false</lenient_string_to_number> | |
| 736 | - <encoding/> | |
| 737 | - <decimal_symbol/> | |
| 738 | - <grouping_symbol/> | |
| 739 | - <currency_symbol/> | |
| 740 | - <storage_type/> | |
| 741 | - </meta> <meta> <name>operators_state_str</name> | |
| 742 | - <rename>运营状态</rename> | |
| 743 | - <type>String</type> | |
| 744 | - <length>-2</length> | |
| 745 | - <precision>-2</precision> | |
| 746 | - <conversion_mask/> | |
| 747 | - <date_format_lenient>false</date_format_lenient> | |
| 748 | - <date_format_locale/> | |
| 749 | - <date_format_timezone/> | |
| 750 | - <lenient_string_to_number>false</lenient_string_to_number> | |
| 751 | - <encoding/> | |
| 752 | - <decimal_symbol/> | |
| 753 | - <grouping_symbol/> | |
| 754 | - <currency_symbol/> | |
| 755 | - <storage_type/> | |
| 756 | - </meta> <meta> <name>open_date</name> | |
| 757 | - <rename>启用日期</rename> | |
| 758 | - <type>String</type> | |
| 759 | - <length>-2</length> | |
| 760 | - <precision>-2</precision> | |
| 761 | - <conversion_mask>yyyy-MM-dd</conversion_mask> | |
| 762 | - <date_format_lenient>false</date_format_lenient> | |
| 763 | - <date_format_locale/> | |
| 764 | - <date_format_timezone/> | |
| 765 | - <lenient_string_to_number>false</lenient_string_to_number> | |
| 766 | - <encoding/> | |
| 767 | - <decimal_symbol/> | |
| 768 | - <grouping_symbol/> | |
| 769 | - <currency_symbol/> | |
| 770 | - <storage_type/> | |
| 771 | - </meta> <meta> <name>close_date</name> | |
| 772 | - <rename>取消日期</rename> | |
| 773 | - <type>String</type> | |
| 774 | - <length>-2</length> | |
| 775 | - <precision>-2</precision> | |
| 776 | - <conversion_mask>yyyy-MM-dd</conversion_mask> | |
| 777 | - <date_format_lenient>false</date_format_lenient> | |
| 778 | - <date_format_locale/> | |
| 779 | - <date_format_timezone/> | |
| 780 | - <lenient_string_to_number>false</lenient_string_to_number> | |
| 781 | - <encoding/> | |
| 782 | - <decimal_symbol/> | |
| 783 | - <grouping_symbol/> | |
| 784 | - <currency_symbol/> | |
| 785 | - <storage_type/> | |
| 786 | - </meta> <meta> <name>scrap_code</name> | |
| 787 | - <rename>报废号</rename> | |
| 788 | - <type>String</type> | |
| 789 | - <length>-2</length> | |
| 790 | - <precision>-2</precision> | |
| 791 | - <conversion_mask/> | |
| 792 | - <date_format_lenient>false</date_format_lenient> | |
| 793 | - <date_format_locale/> | |
| 794 | - <date_format_timezone/> | |
| 795 | - <lenient_string_to_number>false</lenient_string_to_number> | |
| 796 | - <encoding/> | |
| 797 | - <decimal_symbol/> | |
| 798 | - <grouping_symbol/> | |
| 799 | - <currency_symbol/> | |
| 800 | - <storage_type/> | |
| 801 | - </meta> <meta> <name>scrap_date</name> | |
| 802 | - <rename>报废日期</rename> | |
| 803 | - <type>String</type> | |
| 804 | - <length>-2</length> | |
| 805 | - <precision>-2</precision> | |
| 806 | - <conversion_mask>yyyy-MM-dd</conversion_mask> | |
| 807 | - <date_format_lenient>false</date_format_lenient> | |
| 808 | - <date_format_locale/> | |
| 809 | - <date_format_timezone/> | |
| 810 | - <lenient_string_to_number>false</lenient_string_to_number> | |
| 811 | - <encoding/> | |
| 812 | - <decimal_symbol/> | |
| 813 | - <grouping_symbol/> | |
| 814 | - <currency_symbol/> | |
| 815 | - <storage_type/> | |
| 816 | - </meta> <meta> <name>descriptions</name> | |
| 817 | - <rename>备注</rename> | |
| 818 | - <type>String</type> | |
| 819 | - <length>-2</length> | |
| 820 | - <precision>-2</precision> | |
| 821 | - <conversion_mask/> | |
| 822 | - <date_format_lenient>false</date_format_lenient> | |
| 823 | - <date_format_locale/> | |
| 824 | - <date_format_timezone/> | |
| 825 | - <lenient_string_to_number>false</lenient_string_to_number> | |
| 826 | - <encoding/> | |
| 827 | - <decimal_symbol/> | |
| 828 | - <grouping_symbol/> | |
| 829 | - <currency_symbol/> | |
| 830 | - <storage_type/> | |
| 831 | - </meta> <meta> <name>equipment_code</name> | |
| 832 | - <rename>设备编号</rename> | |
| 833 | - <type>String</type> | |
| 834 | - <length>-2</length> | |
| 835 | - <precision>-2</precision> | |
| 836 | - <conversion_mask/> | |
| 837 | - <date_format_lenient>false</date_format_lenient> | |
| 838 | - <date_format_locale/> | |
| 839 | - <date_format_timezone/> | |
| 840 | - <lenient_string_to_number>false</lenient_string_to_number> | |
| 841 | - <encoding/> | |
| 842 | - <decimal_symbol/> | |
| 843 | - <grouping_symbol/> | |
| 844 | - <currency_symbol/> | |
| 845 | - <storage_type/> | |
| 846 | - </meta> <meta> <name>make_code_one</name> | |
| 847 | - <rename>厂牌型号</rename> | |
| 848 | - <type>String</type> | |
| 849 | - <length>-2</length> | |
| 850 | - <precision>-2</precision> | |
| 851 | - <conversion_mask/> | |
| 852 | - <date_format_lenient>false</date_format_lenient> | |
| 853 | - <date_format_locale/> | |
| 854 | - <date_format_timezone/> | |
| 855 | - <lenient_string_to_number>false</lenient_string_to_number> | |
| 856 | - <encoding/> | |
| 857 | - <decimal_symbol/> | |
| 858 | - <grouping_symbol/> | |
| 859 | - <currency_symbol/> | |
| 860 | - <storage_type/> | |
| 861 | - </meta> <meta> <name>make_code_two</name> | |
| 862 | - <rename>厂牌型号2</rename> | |
| 863 | - <type>String</type> | |
| 864 | - <length>-2</length> | |
| 865 | - <precision>-2</precision> | |
| 866 | - <conversion_mask/> | |
| 867 | - <date_format_lenient>false</date_format_lenient> | |
| 868 | - <date_format_locale/> | |
| 869 | - <date_format_timezone/> | |
| 870 | - <lenient_string_to_number>false</lenient_string_to_number> | |
| 871 | - <encoding/> | |
| 872 | - <decimal_symbol/> | |
| 873 | - <grouping_symbol/> | |
| 874 | - <currency_symbol/> | |
| 875 | - <storage_type/> | |
| 876 | - </meta> <meta> <name>car_gride</name> | |
| 877 | - <rename>车辆等级标准</rename> | |
| 878 | - <type>String</type> | |
| 879 | - <length>-2</length> | |
| 880 | - <precision>-2</precision> | |
| 881 | - <conversion_mask/> | |
| 882 | - <date_format_lenient>false</date_format_lenient> | |
| 883 | - <date_format_locale/> | |
| 884 | - <date_format_timezone/> | |
| 885 | - <lenient_string_to_number>false</lenient_string_to_number> | |
| 886 | - <encoding/> | |
| 887 | - <decimal_symbol/> | |
| 888 | - <grouping_symbol/> | |
| 889 | - <currency_symbol/> | |
| 890 | - <storage_type/> | |
| 891 | - </meta> <meta> <name>emissions_standard</name> | |
| 892 | - <rename>出厂排放标准</rename> | |
| 893 | - <type>String</type> | |
| 894 | - <length>-2</length> | |
| 895 | - <precision>-2</precision> | |
| 896 | - <conversion_mask/> | |
| 897 | - <date_format_lenient>false</date_format_lenient> | |
| 898 | - <date_format_locale/> | |
| 899 | - <date_format_timezone/> | |
| 900 | - <lenient_string_to_number>false</lenient_string_to_number> | |
| 901 | - <encoding/> | |
| 902 | - <decimal_symbol/> | |
| 903 | - <grouping_symbol/> | |
| 904 | - <currency_symbol/> | |
| 905 | - <storage_type/> | |
| 906 | - </meta> <meta> <name>engine_code_one</name> | |
| 907 | - <rename>发动机号码1</rename> | |
| 908 | - <type>String</type> | |
| 909 | - <length>-2</length> | |
| 910 | - <precision>-2</precision> | |
| 911 | - <conversion_mask/> | |
| 912 | - <date_format_lenient>false</date_format_lenient> | |
| 913 | - <date_format_locale/> | |
| 914 | - <date_format_timezone/> | |
| 915 | - <lenient_string_to_number>false</lenient_string_to_number> | |
| 916 | - <encoding/> | |
| 917 | - <decimal_symbol/> | |
| 918 | - <grouping_symbol/> | |
| 919 | - <currency_symbol/> | |
| 920 | - <storage_type/> | |
| 921 | - </meta> <meta> <name>engine_code_two</name> | |
| 922 | - <rename>发动机号码2</rename> | |
| 923 | - <type>String</type> | |
| 924 | - <length>-2</length> | |
| 925 | - <precision>-2</precision> | |
| 926 | - <conversion_mask/> | |
| 927 | - <date_format_lenient>false</date_format_lenient> | |
| 928 | - <date_format_locale/> | |
| 929 | - <date_format_timezone/> | |
| 930 | - <lenient_string_to_number>false</lenient_string_to_number> | |
| 931 | - <encoding/> | |
| 932 | - <decimal_symbol/> | |
| 933 | - <grouping_symbol/> | |
| 934 | - <currency_symbol/> | |
| 935 | - <storage_type/> | |
| 936 | - </meta> <meta> <name>car_number_one</name> | |
| 937 | - <rename>车架号码1</rename> | |
| 938 | - <type>String</type> | |
| 939 | - <length>-2</length> | |
| 940 | - <precision>-2</precision> | |
| 941 | - <conversion_mask/> | |
| 942 | - <date_format_lenient>false</date_format_lenient> | |
| 943 | - <date_format_locale/> | |
| 944 | - <date_format_timezone/> | |
| 945 | - <lenient_string_to_number>false</lenient_string_to_number> | |
| 946 | - <encoding/> | |
| 947 | - <decimal_symbol/> | |
| 948 | - <grouping_symbol/> | |
| 949 | - <currency_symbol/> | |
| 950 | - <storage_type/> | |
| 951 | - </meta> <meta> <name>car_number_two</name> | |
| 952 | - <rename>车架号码2</rename> | |
| 953 | - <type>String</type> | |
| 954 | - <length>-2</length> | |
| 955 | - <precision>-2</precision> | |
| 956 | - <conversion_mask/> | |
| 957 | - <date_format_lenient>false</date_format_lenient> | |
| 958 | - <date_format_locale/> | |
| 959 | - <date_format_timezone/> | |
| 960 | - <lenient_string_to_number>false</lenient_string_to_number> | |
| 961 | - <encoding/> | |
| 962 | - <decimal_symbol/> | |
| 963 | - <grouping_symbol/> | |
| 964 | - <currency_symbol/> | |
| 965 | - <storage_type/> | |
| 966 | - </meta> <meta> <name>car_type_str</name> | |
| 967 | - <rename>车辆类型</rename> | |
| 968 | - <type>String</type> | |
| 969 | 367 | <length>-2</length> |
| 970 | 368 | <precision>-2</precision> |
| 971 | - <conversion_mask/> | |
| 972 | - <date_format_lenient>false</date_format_lenient> | |
| 973 | - <date_format_locale/> | |
| 974 | - <date_format_timezone/> | |
| 975 | - <lenient_string_to_number>false</lenient_string_to_number> | |
| 976 | - <encoding/> | |
| 977 | - <decimal_symbol/> | |
| 978 | - <grouping_symbol/> | |
| 979 | - <currency_symbol/> | |
| 980 | - <storage_type/> | |
| 981 | - </meta> <meta> <name>company</name> | |
| 369 | + </field> <field> <name>company</name> | |
| 982 | 370 | <rename>所属公司</rename> |
| 983 | - <type>String</type> | |
| 984 | 371 | <length>-2</length> |
| 985 | 372 | <precision>-2</precision> |
| 986 | - <conversion_mask/> | |
| 987 | - <date_format_lenient>false</date_format_lenient> | |
| 988 | - <date_format_locale/> | |
| 989 | - <date_format_timezone/> | |
| 990 | - <lenient_string_to_number>false</lenient_string_to_number> | |
| 991 | - <encoding/> | |
| 992 | - <decimal_symbol/> | |
| 993 | - <grouping_symbol/> | |
| 994 | - <currency_symbol/> | |
| 995 | - <storage_type/> | |
| 996 | - </meta> <meta> <name>update_date</name> | |
| 997 | - <rename>修改日期</rename> | |
| 998 | - <type>String</type> | |
| 373 | + </field> <field> <name>business_code</name> | |
| 374 | + <rename>所属公司代码</rename> | |
| 999 | 375 | <length>-2</length> |
| 1000 | 376 | <precision>-2</precision> |
| 1001 | - <conversion_mask>yyyy-MM-dd HH:mm:ss</conversion_mask> | |
| 1002 | - <date_format_lenient>false</date_format_lenient> | |
| 1003 | - <date_format_locale/> | |
| 1004 | - <date_format_timezone/> | |
| 1005 | - <lenient_string_to_number>false</lenient_string_to_number> | |
| 1006 | - <encoding/> | |
| 1007 | - <decimal_symbol/> | |
| 1008 | - <grouping_symbol/> | |
| 1009 | - <currency_symbol/> | |
| 1010 | - <storage_type/> | |
| 1011 | - </meta> <meta> <name>vehicle_stats_str</name> | |
| 1012 | - <rename>是否机动车</rename> | |
| 1013 | - <type>String</type> | |
| 377 | + </field> <field> <name>branche_company</name> | |
| 378 | + <rename>所属分公司</rename> | |
| 1014 | 379 | <length>-2</length> |
| 1015 | 380 | <precision>-2</precision> |
| 1016 | - <conversion_mask/> | |
| 1017 | - <date_format_lenient>false</date_format_lenient> | |
| 1018 | - <date_format_locale/> | |
| 1019 | - <date_format_timezone/> | |
| 1020 | - <lenient_string_to_number>false</lenient_string_to_number> | |
| 1021 | - <encoding/> | |
| 1022 | - <decimal_symbol/> | |
| 1023 | - <grouping_symbol/> | |
| 1024 | - <currency_symbol/> | |
| 1025 | - <storage_type/> | |
| 1026 | - </meta> <meta> <name>video_code</name> | |
| 1027 | - <rename>视频编号</rename> | |
| 1028 | - <type>String</type> | |
| 381 | + </field> <field> <name>branche_company_code</name> | |
| 382 | + <rename>所属分公司代码</rename> | |
| 1029 | 383 | <length>-2</length> |
| 1030 | 384 | <precision>-2</precision> |
| 1031 | - <conversion_mask/> | |
| 1032 | - <date_format_lenient>false</date_format_lenient> | |
| 1033 | - <date_format_locale/> | |
| 1034 | - <date_format_timezone/> | |
| 1035 | - <lenient_string_to_number>false</lenient_string_to_number> | |
| 1036 | - <encoding/> | |
| 1037 | - <decimal_symbol/> | |
| 1038 | - <grouping_symbol/> | |
| 1039 | - <currency_symbol/> | |
| 1040 | - <storage_type/> | |
| 1041 | - </meta> <meta> <name>supplier_name_str</name> | |
| 385 | + </field> <field> <name>supplier_name</name> | |
| 1042 | 386 | <rename>设备供应厂商</rename> |
| 1043 | - <type>String</type> | |
| 1044 | - <length>-2</length> | |
| 1045 | - <precision>-2</precision> | |
| 1046 | - <conversion_mask/> | |
| 1047 | - <date_format_lenient>false</date_format_lenient> | |
| 1048 | - <date_format_locale/> | |
| 1049 | - <date_format_timezone/> | |
| 1050 | - <lenient_string_to_number>false</lenient_string_to_number> | |
| 1051 | - <encoding/> | |
| 1052 | - <decimal_symbol/> | |
| 1053 | - <grouping_symbol/> | |
| 1054 | - <currency_symbol/> | |
| 1055 | - <storage_type/> | |
| 1056 | - </meta> <meta> <name>branche_company</name> | |
| 1057 | - <rename>分公司</rename> | |
| 1058 | - <type>String</type> | |
| 1059 | - <length>-2</length> | |
| 1060 | - <precision>-2</precision> | |
| 1061 | - <conversion_mask/> | |
| 1062 | - <date_format_lenient>false</date_format_lenient> | |
| 1063 | - <date_format_locale/> | |
| 1064 | - <date_format_timezone/> | |
| 1065 | - <lenient_string_to_number>false</lenient_string_to_number> | |
| 1066 | - <encoding/> | |
| 1067 | - <decimal_symbol/> | |
| 1068 | - <grouping_symbol/> | |
| 1069 | - <currency_symbol/> | |
| 1070 | - <storage_type/> | |
| 1071 | - </meta> </fields> <cluster_schema/> | |
| 1072 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1073 | - <xloc>808</xloc> | |
| 1074 | - <yloc>267</yloc> | |
| 1075 | - <draw>Y</draw> | |
| 1076 | - </GUI> | |
| 1077 | - </step> | |
| 1078 | - | |
| 1079 | - <step> | |
| 1080 | - <name>字段选择 2</name> | |
| 1081 | - <type>SelectValues</type> | |
| 1082 | - <description/> | |
| 1083 | - <distribute>Y</distribute> | |
| 1084 | - <custom_distribution/> | |
| 1085 | - <copies>1</copies> | |
| 1086 | - <partitioning> | |
| 1087 | - <method>none</method> | |
| 1088 | - <schema_name/> | |
| 1089 | - </partitioning> | |
| 1090 | - <fields> <field> <name>车牌号</name> | |
| 1091 | - <rename/> | |
| 1092 | - <length>-2</length> | |
| 1093 | - <precision>-2</precision> | |
| 1094 | - </field> <field> <name>内部编码</name> | |
| 1095 | - <rename/> | |
| 1096 | - <length>-2</length> | |
| 1097 | - <precision>-2</precision> | |
| 1098 | - </field> <field> <name>车辆编码</name> | |
| 1099 | - <rename/> | |
| 1100 | - <length>-2</length> | |
| 1101 | - <precision>-2</precision> | |
| 1102 | - </field> <field> <name>车型类别</name> | |
| 1103 | - <rename/> | |
| 1104 | - <length>-2</length> | |
| 1105 | - <precision>-2</precision> | |
| 1106 | - </field> <field> <name>座位数</name> | |
| 1107 | - <rename/> | |
| 1108 | - <length>-2</length> | |
| 1109 | - <precision>-2</precision> | |
| 1110 | - </field> <field> <name>载客标准</name> | |
| 1111 | - <rename/> | |
| 1112 | - <length>-2</length> | |
| 1113 | - <precision>-2</precision> | |
| 1114 | - </field> <field> <name>技术速度</name> | |
| 1115 | - <rename/> | |
| 1116 | 387 | <length>-2</length> |
| 1117 | 388 | <precision>-2</precision> |
| 1118 | - </field> <field> <name>是否空调</name> | |
| 1119 | - <rename/> | |
| 1120 | - <length>-2</length> | |
| 1121 | - <precision>-2</precision> | |
| 1122 | - </field> <field> <name>标准油耗(开空调)</name> | |
| 1123 | - <rename/> | |
| 1124 | - <length>-2</length> | |
| 1125 | - <precision>-2</precision> | |
| 1126 | - </field> <field> <name>标准油耗(关空调)</name> | |
| 1127 | - <rename/> | |
| 1128 | - <length>-2</length> | |
| 1129 | - <precision>-2</precision> | |
| 1130 | - </field> <field> <name>有无人售票</name> | |
| 1131 | - <rename/> | |
| 1132 | - <length>-2</length> | |
| 1133 | - <precision>-2</precision> | |
| 1134 | - </field> <field> <name>是否有TV视频</name> | |
| 1135 | - <rename/> | |
| 1136 | - <length>-2</length> | |
| 1137 | - <precision>-2</precision> | |
| 1138 | - </field> <field> <name>是否有LED服务屏</name> | |
| 1139 | - <rename/> | |
| 1140 | - <length>-2</length> | |
| 1141 | - <precision>-2</precision> | |
| 1142 | - </field> <field> <name>运营状态</name> | |
| 1143 | - <rename/> | |
| 1144 | - <length>-2</length> | |
| 1145 | - <precision>-2</precision> | |
| 1146 | - </field> <field> <name>启用日期</name> | |
| 1147 | - <rename/> | |
| 1148 | - <length>-2</length> | |
| 1149 | - <precision>-2</precision> | |
| 1150 | - </field> <field> <name>取消日期</name> | |
| 1151 | - <rename/> | |
| 1152 | - <length>-2</length> | |
| 1153 | - <precision>-2</precision> | |
| 1154 | - </field> <field> <name>报废号</name> | |
| 1155 | - <rename/> | |
| 1156 | - <length>-2</length> | |
| 1157 | - <precision>-2</precision> | |
| 1158 | - </field> <field> <name>报废日期</name> | |
| 1159 | - <rename/> | |
| 1160 | - <length>-2</length> | |
| 1161 | - <precision>-2</precision> | |
| 1162 | - </field> <field> <name>备注</name> | |
| 1163 | - <rename/> | |
| 1164 | - <length>-2</length> | |
| 1165 | - <precision>-2</precision> | |
| 1166 | - </field> <field> <name>设备编号</name> | |
| 1167 | - <rename/> | |
| 1168 | - <length>-2</length> | |
| 1169 | - <precision>-2</precision> | |
| 1170 | - </field> <field> <name>厂牌型号</name> | |
| 1171 | - <rename/> | |
| 1172 | - <length>-2</length> | |
| 1173 | - <precision>-2</precision> | |
| 1174 | - </field> <field> <name>厂牌型号2</name> | |
| 1175 | - <rename/> | |
| 1176 | - <length>-2</length> | |
| 1177 | - <precision>-2</precision> | |
| 1178 | - </field> <field> <name>车辆等级标准</name> | |
| 1179 | - <rename/> | |
| 1180 | - <length>-2</length> | |
| 1181 | - <precision>-2</precision> | |
| 1182 | - </field> <field> <name>出厂排放标准</name> | |
| 1183 | - <rename/> | |
| 1184 | - <length>-2</length> | |
| 1185 | - <precision>-2</precision> | |
| 1186 | - </field> <field> <name>发动机号码1</name> | |
| 1187 | - <rename/> | |
| 1188 | - <length>-2</length> | |
| 1189 | - <precision>-2</precision> | |
| 1190 | - </field> <field> <name>发动机号码2</name> | |
| 1191 | - <rename/> | |
| 1192 | - <length>-2</length> | |
| 1193 | - <precision>-2</precision> | |
| 1194 | - </field> <field> <name>车架号码1</name> | |
| 1195 | - <rename/> | |
| 1196 | - <length>-2</length> | |
| 1197 | - <precision>-2</precision> | |
| 1198 | - </field> <field> <name>车架号码2</name> | |
| 1199 | - <rename/> | |
| 1200 | - <length>-2</length> | |
| 1201 | - <precision>-2</precision> | |
| 1202 | - </field> <field> <name>车辆类型</name> | |
| 1203 | - <rename/> | |
| 1204 | - <length>-2</length> | |
| 1205 | - <precision>-2</precision> | |
| 1206 | - </field> <field> <name>所属公司</name> | |
| 1207 | - <rename/> | |
| 1208 | - <length>-2</length> | |
| 1209 | - <precision>-2</precision> | |
| 1210 | - </field> <field> <name>修改日期</name> | |
| 1211 | - <rename/> | |
| 1212 | - <length>-2</length> | |
| 1213 | - <precision>-2</precision> | |
| 1214 | - </field> <field> <name>是否机动车</name> | |
| 1215 | - <rename/> | |
| 1216 | - <length>-2</length> | |
| 1217 | - <precision>-2</precision> | |
| 1218 | - </field> <field> <name>视频编号</name> | |
| 1219 | - <rename/> | |
| 1220 | - <length>-2</length> | |
| 1221 | - <precision>-2</precision> | |
| 1222 | - </field> <field> <name>设备供应厂商</name> | |
| 1223 | - <rename/> | |
| 1224 | - <length>-2</length> | |
| 1225 | - <precision>-2</precision> | |
| 1226 | - </field> <field> <name>分公司</name> | |
| 1227 | - <rename/> | |
| 389 | + </field> <field> <name>equipment_code</name> | |
| 390 | + <rename>设备终端号</rename> | |
| 1228 | 391 | <length>-2</length> |
| 1229 | 392 | <precision>-2</precision> |
| 1230 | 393 | </field> <select_unspecified>N</select_unspecified> |
| 1231 | 394 | </fields> <cluster_schema/> |
| 1232 | 395 | <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> |
| 1233 | - <xloc>687</xloc> | |
| 1234 | - <yloc>268</yloc> | |
| 1235 | - <draw>Y</draw> | |
| 1236 | - </GUI> | |
| 1237 | - </step> | |
| 1238 | - | |
| 1239 | - <step> | |
| 1240 | - <name>是否有LED服务屏</name> | |
| 1241 | - <type>ValueMapper</type> | |
| 1242 | - <description/> | |
| 1243 | - <distribute>Y</distribute> | |
| 1244 | - <custom_distribution/> | |
| 1245 | - <copies>1</copies> | |
| 1246 | - <partitioning> | |
| 1247 | - <method>none</method> | |
| 1248 | - <schema_name/> | |
| 1249 | - </partitioning> | |
| 1250 | - <field_to_use>led_screen</field_to_use> | |
| 1251 | - <target_field>led_screen_str</target_field> | |
| 1252 | - <non_match_default/> | |
| 1253 | - <fields> | |
| 1254 | - <field> | |
| 1255 | - <source_value>1</source_value> | |
| 1256 | - <target_value>是</target_value> | |
| 1257 | - </field> | |
| 1258 | - <field> | |
| 1259 | - <source_value>0</source_value> | |
| 1260 | - <target_value>否</target_value> | |
| 1261 | - </field> | |
| 1262 | - </fields> | |
| 1263 | - <cluster_schema/> | |
| 1264 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1265 | - <xloc>324</xloc> | |
| 1266 | - <yloc>68</yloc> | |
| 1267 | - <draw>Y</draw> | |
| 1268 | - </GUI> | |
| 1269 | - </step> | |
| 1270 | - | |
| 1271 | - <step> | |
| 1272 | - <name>是否有TV视频</name> | |
| 1273 | - <type>ValueMapper</type> | |
| 1274 | - <description/> | |
| 1275 | - <distribute>Y</distribute> | |
| 1276 | - <custom_distribution/> | |
| 1277 | - <copies>1</copies> | |
| 1278 | - <partitioning> | |
| 1279 | - <method>none</method> | |
| 1280 | - <schema_name/> | |
| 1281 | - </partitioning> | |
| 1282 | - <field_to_use>tv_video_type</field_to_use> | |
| 1283 | - <target_field>tv_video_type_str</target_field> | |
| 1284 | - <non_match_default/> | |
| 1285 | - <fields> | |
| 1286 | - <field> | |
| 1287 | - <source_value>1</source_value> | |
| 1288 | - <target_value>是</target_value> | |
| 1289 | - </field> | |
| 1290 | - <field> | |
| 1291 | - <source_value>0</source_value> | |
| 1292 | - <target_value>否</target_value> | |
| 1293 | - </field> | |
| 1294 | - </fields> | |
| 1295 | - <cluster_schema/> | |
| 1296 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1297 | - <xloc>325</xloc> | |
| 1298 | - <yloc>158</yloc> | |
| 1299 | - <draw>Y</draw> | |
| 1300 | - </GUI> | |
| 1301 | - </step> | |
| 1302 | - | |
| 1303 | - <step> | |
| 1304 | - <name>是否空调车</name> | |
| 1305 | - <type>ValueMapper</type> | |
| 1306 | - <description/> | |
| 1307 | - <distribute>Y</distribute> | |
| 1308 | - <custom_distribution/> | |
| 1309 | - <copies>1</copies> | |
| 1310 | - <partitioning> | |
| 1311 | - <method>none</method> | |
| 1312 | - <schema_name/> | |
| 1313 | - </partitioning> | |
| 1314 | - <field_to_use>hvac_car</field_to_use> | |
| 1315 | - <target_field>hvac_car_str</target_field> | |
| 1316 | - <non_match_default/> | |
| 1317 | - <fields> | |
| 1318 | - <field> | |
| 1319 | - <source_value>1</source_value> | |
| 1320 | - <target_value>是</target_value> | |
| 1321 | - </field> | |
| 1322 | - <field> | |
| 1323 | - <source_value>0</source_value> | |
| 1324 | - <target_value>否</target_value> | |
| 1325 | - </field> | |
| 1326 | - </fields> | |
| 1327 | - <cluster_schema/> | |
| 1328 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1329 | - <xloc>209</xloc> | |
| 1330 | - <yloc>68</yloc> | |
| 1331 | - <draw>Y</draw> | |
| 1332 | - </GUI> | |
| 1333 | - </step> | |
| 1334 | - | |
| 1335 | - <step> | |
| 1336 | - <name>有无人售票</name> | |
| 1337 | - <type>ValueMapper</type> | |
| 1338 | - <description/> | |
| 1339 | - <distribute>Y</distribute> | |
| 1340 | - <custom_distribution/> | |
| 1341 | - <copies>1</copies> | |
| 1342 | - <partitioning> | |
| 1343 | - <method>none</method> | |
| 1344 | - <schema_name/> | |
| 1345 | - </partitioning> | |
| 1346 | - <field_to_use>ticket_type</field_to_use> | |
| 1347 | - <target_field>ticket_type_str</target_field> | |
| 1348 | - <non_match_default/> | |
| 1349 | - <fields> | |
| 1350 | - <field> | |
| 1351 | - <source_value>1</source_value> | |
| 1352 | - <target_value>是</target_value> | |
| 1353 | - </field> | |
| 1354 | - <field> | |
| 1355 | - <source_value>0</source_value> | |
| 1356 | - <target_value>否</target_value> | |
| 1357 | - </field> | |
| 1358 | - </fields> | |
| 1359 | - <cluster_schema/> | |
| 1360 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1361 | - <xloc>208</xloc> | |
| 1362 | - <yloc>157</yloc> | |
| 1363 | - <draw>Y</draw> | |
| 1364 | - </GUI> | |
| 1365 | - </step> | |
| 1366 | - | |
| 1367 | - <step> | |
| 1368 | - <name>机动车类型查询</name> | |
| 1369 | - <type>DBLookup</type> | |
| 1370 | - <description/> | |
| 1371 | - <distribute>Y</distribute> | |
| 1372 | - <custom_distribution/> | |
| 1373 | - <copies>1</copies> | |
| 1374 | - <partitioning> | |
| 1375 | - <method>none</method> | |
| 1376 | - <schema_name/> | |
| 1377 | - </partitioning> | |
| 1378 | - <connection>bus_control_variable</connection> | |
| 1379 | - <cache>N</cache> | |
| 1380 | - <cache_load_all>N</cache_load_all> | |
| 1381 | - <cache_size>0</cache_size> | |
| 1382 | - <lookup> | |
| 1383 | - <schema/> | |
| 1384 | - <table>bsth_c_sys_dictionary</table> | |
| 1385 | - <orderby/> | |
| 1386 | - <fail_on_multiple>N</fail_on_multiple> | |
| 1387 | - <eat_row_on_failure>N</eat_row_on_failure> | |
| 1388 | - <key> | |
| 1389 | - <name>jdcType</name> | |
| 1390 | - <field>d_group</field> | |
| 1391 | - <condition>=</condition> | |
| 1392 | - <name2/> | |
| 1393 | - </key> | |
| 1394 | - <key> | |
| 1395 | - <name>vehicle_stats</name> | |
| 1396 | - <field>d_code</field> | |
| 1397 | - <condition>=</condition> | |
| 1398 | - <name2/> | |
| 1399 | - </key> | |
| 1400 | - <value> | |
| 1401 | - <name>d_name</name> | |
| 1402 | - <rename>vehicle_stats_str</rename> | |
| 1403 | - <default/> | |
| 1404 | - <type>String</type> | |
| 1405 | - </value> | |
| 1406 | - </lookup> | |
| 1407 | - <cluster_schema/> | |
| 1408 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1409 | - <xloc>676</xloc> | |
| 1410 | - <yloc>162</yloc> | |
| 1411 | - <draw>Y</draw> | |
| 1412 | - </GUI> | |
| 1413 | - </step> | |
| 1414 | - | |
| 1415 | - <step> | |
| 1416 | - <name>机动车类型标识</name> | |
| 1417 | - <type>Constant</type> | |
| 1418 | - <description/> | |
| 1419 | - <distribute>Y</distribute> | |
| 1420 | - <custom_distribution/> | |
| 1421 | - <copies>1</copies> | |
| 1422 | - <partitioning> | |
| 1423 | - <method>none</method> | |
| 1424 | - <schema_name/> | |
| 1425 | - </partitioning> | |
| 1426 | - <fields> | |
| 1427 | - <field> | |
| 1428 | - <name>jdcType</name> | |
| 1429 | - <type>String</type> | |
| 1430 | - <format/> | |
| 1431 | - <currency/> | |
| 1432 | - <decimal/> | |
| 1433 | - <group/> | |
| 1434 | - <nullif>jdcType</nullif> | |
| 1435 | - <length>-1</length> | |
| 1436 | - <precision>-1</precision> | |
| 1437 | - <set_empty_string>N</set_empty_string> | |
| 1438 | - </field> | |
| 1439 | - </fields> | |
| 1440 | - <cluster_schema/> | |
| 1441 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1442 | - <xloc>672</xloc> | |
| 1443 | - <yloc>68</yloc> | |
| 1444 | - <draw>Y</draw> | |
| 1445 | - </GUI> | |
| 1446 | - </step> | |
| 1447 | - | |
| 1448 | - <step> | |
| 1449 | - <name>营运状态查询</name> | |
| 1450 | - <type>DBLookup</type> | |
| 1451 | - <description/> | |
| 1452 | - <distribute>Y</distribute> | |
| 1453 | - <custom_distribution/> | |
| 1454 | - <copies>1</copies> | |
| 1455 | - <partitioning> | |
| 1456 | - <method>none</method> | |
| 1457 | - <schema_name/> | |
| 1458 | - </partitioning> | |
| 1459 | - <connection>bus_control_variable</connection> | |
| 1460 | - <cache>N</cache> | |
| 1461 | - <cache_load_all>N</cache_load_all> | |
| 1462 | - <cache_size>0</cache_size> | |
| 1463 | - <lookup> | |
| 1464 | - <schema/> | |
| 1465 | - <table>bsth_c_sys_dictionary</table> | |
| 1466 | - <orderby/> | |
| 1467 | - <fail_on_multiple>N</fail_on_multiple> | |
| 1468 | - <eat_row_on_failure>N</eat_row_on_failure> | |
| 1469 | - <key> | |
| 1470 | - <name>yyztType</name> | |
| 1471 | - <field>d_group</field> | |
| 1472 | - <condition>=</condition> | |
| 1473 | - <name2/> | |
| 1474 | - </key> | |
| 1475 | - <key> | |
| 1476 | - <name>operators_state</name> | |
| 1477 | - <field>d_code</field> | |
| 1478 | - <condition>=</condition> | |
| 1479 | - <name2/> | |
| 1480 | - </key> | |
| 1481 | - <value> | |
| 1482 | - <name>d_name</name> | |
| 1483 | - <rename>operators_state_str</rename> | |
| 1484 | - <default/> | |
| 1485 | - <type>String</type> | |
| 1486 | - </value> | |
| 1487 | - </lookup> | |
| 1488 | - <cluster_schema/> | |
| 1489 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1490 | - <xloc>558</xloc> | |
| 1491 | - <yloc>162</yloc> | |
| 1492 | - <draw>Y</draw> | |
| 1493 | - </GUI> | |
| 1494 | - </step> | |
| 1495 | - | |
| 1496 | - <step> | |
| 1497 | - <name>营运状态标识</name> | |
| 1498 | - <type>Constant</type> | |
| 1499 | - <description/> | |
| 1500 | - <distribute>Y</distribute> | |
| 1501 | - <custom_distribution/> | |
| 1502 | - <copies>1</copies> | |
| 1503 | - <partitioning> | |
| 1504 | - <method>none</method> | |
| 1505 | - <schema_name/> | |
| 1506 | - </partitioning> | |
| 1507 | - <fields> | |
| 1508 | - <field> | |
| 1509 | - <name>yyztType</name> | |
| 1510 | - <type>String</type> | |
| 1511 | - <format/> | |
| 1512 | - <currency/> | |
| 1513 | - <decimal/> | |
| 1514 | - <group/> | |
| 1515 | - <nullif>yyztType</nullif> | |
| 1516 | - <length>-1</length> | |
| 1517 | - <precision>-1</precision> | |
| 1518 | - <set_empty_string>N</set_empty_string> | |
| 1519 | - </field> | |
| 1520 | - </fields> | |
| 1521 | - <cluster_schema/> | |
| 1522 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1523 | - <xloc>555</xloc> | |
| 1524 | - <yloc>69</yloc> | |
| 396 | + <xloc>280</xloc> | |
| 397 | + <yloc>67</yloc> | |
| 1525 | 398 | <draw>Y</draw> |
| 1526 | 399 | </GUI> |
| 1527 | 400 | </step> |
| ... | ... | @@ -1552,87 +425,6 @@ |
| 1552 | 425 | </GUI> |
| 1553 | 426 | </step> |
| 1554 | 427 | |
| 1555 | - <step> | |
| 1556 | - <name>车辆类型查询</name> | |
| 1557 | - <type>DBLookup</type> | |
| 1558 | - <description/> | |
| 1559 | - <distribute>Y</distribute> | |
| 1560 | - <custom_distribution/> | |
| 1561 | - <copies>1</copies> | |
| 1562 | - <partitioning> | |
| 1563 | - <method>none</method> | |
| 1564 | - <schema_name/> | |
| 1565 | - </partitioning> | |
| 1566 | - <connection>bus_control_variable</connection> | |
| 1567 | - <cache>N</cache> | |
| 1568 | - <cache_load_all>N</cache_load_all> | |
| 1569 | - <cache_size>0</cache_size> | |
| 1570 | - <lookup> | |
| 1571 | - <schema/> | |
| 1572 | - <table>bsth_c_sys_dictionary</table> | |
| 1573 | - <orderby/> | |
| 1574 | - <fail_on_multiple>N</fail_on_multiple> | |
| 1575 | - <eat_row_on_failure>N</eat_row_on_failure> | |
| 1576 | - <key> | |
| 1577 | - <name>carType</name> | |
| 1578 | - <field>d_group</field> | |
| 1579 | - <condition>=</condition> | |
| 1580 | - <name2/> | |
| 1581 | - </key> | |
| 1582 | - <key> | |
| 1583 | - <name>car_type</name> | |
| 1584 | - <field>d_code</field> | |
| 1585 | - <condition>=</condition> | |
| 1586 | - <name2/> | |
| 1587 | - </key> | |
| 1588 | - <value> | |
| 1589 | - <name>d_name</name> | |
| 1590 | - <rename>car_type_str</rename> | |
| 1591 | - <default/> | |
| 1592 | - <type>String</type> | |
| 1593 | - </value> | |
| 1594 | - </lookup> | |
| 1595 | - <cluster_schema/> | |
| 1596 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1597 | - <xloc>803</xloc> | |
| 1598 | - <yloc>163</yloc> | |
| 1599 | - <draw>Y</draw> | |
| 1600 | - </GUI> | |
| 1601 | - </step> | |
| 1602 | - | |
| 1603 | - <step> | |
| 1604 | - <name>车辆类型标识</name> | |
| 1605 | - <type>Constant</type> | |
| 1606 | - <description/> | |
| 1607 | - <distribute>Y</distribute> | |
| 1608 | - <custom_distribution/> | |
| 1609 | - <copies>1</copies> | |
| 1610 | - <partitioning> | |
| 1611 | - <method>none</method> | |
| 1612 | - <schema_name/> | |
| 1613 | - </partitioning> | |
| 1614 | - <fields> | |
| 1615 | - <field> | |
| 1616 | - <name>carType</name> | |
| 1617 | - <type>String</type> | |
| 1618 | - <format/> | |
| 1619 | - <currency/> | |
| 1620 | - <decimal/> | |
| 1621 | - <group/> | |
| 1622 | - <nullif>carType</nullif> | |
| 1623 | - <length>-1</length> | |
| 1624 | - <precision>-1</precision> | |
| 1625 | - <set_empty_string>N</set_empty_string> | |
| 1626 | - </field> | |
| 1627 | - </fields> | |
| 1628 | - <cluster_schema/> | |
| 1629 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1630 | - <xloc>800</xloc> | |
| 1631 | - <yloc>70</yloc> | |
| 1632 | - <draw>Y</draw> | |
| 1633 | - </GUI> | |
| 1634 | - </step> | |
| 1635 | - | |
| 1636 | 428 | <step_error_handling> |
| 1637 | 429 | </step_error_handling> |
| 1638 | 430 | <slave-step-copy-partition-distribution> | ... | ... |
src/main/resources/datatools/ktrs/employeesDataInput.ktr
| ... | ... | @@ -84,27 +84,6 @@ |
| 84 | 84 | <is_key_private>N</is_key_private> |
| 85 | 85 | </info> |
| 86 | 86 | <notepads> |
| 87 | - <notepad> | |
| 88 | - <note>原系统导出的表,有些字段是没有的,
人员编码 暂时没有空着
照片地址 暂时没有空着
线路编号 暂时没有空着
联系电话 暂时没有空着


字典
性别sexType 男性 1
性别sexType 女性 2


工种gzType 公共汽电车驾驶员 1
工种gzType 公共汽电车调度员 2
工种gzType 公共汽电车售票员 3
工种gzType 站员 4
工种gzType 管理员 5
工种gzType 安检员 6
工种gzType 机务 7
工种gzType 引导员 8
工种gzType 乘务员 9
工种gzType 车队长(线长、主 10
工种gzType 公司管理人员 11
工种gzType 警消人员 12
工种gzType 票务人员 13
工种gzType 其他服务人员 14</note> | |
| 89 | - <xloc>200</xloc> | |
| 90 | - <yloc>160</yloc> | |
| 91 | - <width>214</width> | |
| 92 | - <heigth>426</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 | 87 | </notepads> |
| 109 | 88 | <connection> |
| 110 | 89 | <name>bus_control_variable</name> |
| ... | ... | @@ -268,57 +247,13 @@ |
| 268 | 247 | </attributes> |
| 269 | 248 | </connection> |
| 270 | 249 | <order> |
| 271 | - <hop> <from>原始系统导出的Excel输入</from><to>字段选择</to><enabled>Y</enabled> </hop> | |
| 272 | - <hop> <from>字段选择</from><to>性别代码</to><enabled>Y</enabled> </hop> | |
| 273 | 250 | <hop> <from>插入/更新bsth_c_personnel</from><to>错误输出</to><enabled>Y</enabled> </hop> |
| 274 | - <hop> <from>工种</from><to>插入/更新bsth_c_personnel</to><enabled>Y</enabled> </hop> | |
| 275 | 251 | <hop> <from>获取变量</from><to>原始系统导出的Excel输入</to><enabled>Y</enabled> </hop> |
| 276 | - <hop> <from>性别代码</from><to>公交企业代码查询</to><enabled>Y</enabled> </hop> | |
| 277 | - <hop> <from>公交企业代码查询</from><to>工种</to><enabled>Y</enabled> </hop> | |
| 252 | + <hop> <from>原始系统导出的Excel输入</from><to>过滤记录</to><enabled>Y</enabled> </hop> | |
| 253 | + <hop> <from>过滤记录</from><to>JavaScript代码</to><enabled>Y</enabled> </hop> | |
| 254 | + <hop> <from>JavaScript代码</from><to>插入/更新bsth_c_personnel</to><enabled>Y</enabled> </hop> | |
| 278 | 255 | </order> |
| 279 | 256 | <step> |
| 280 | - <name>公交企业代码查询</name> | |
| 281 | - <type>DBLookup</type> | |
| 282 | - <description/> | |
| 283 | - <distribute>Y</distribute> | |
| 284 | - <custom_distribution/> | |
| 285 | - <copies>1</copies> | |
| 286 | - <partitioning> | |
| 287 | - <method>none</method> | |
| 288 | - <schema_name/> | |
| 289 | - </partitioning> | |
| 290 | - <connection>bus_control_variable</connection> | |
| 291 | - <cache>N</cache> | |
| 292 | - <cache_load_all>N</cache_load_all> | |
| 293 | - <cache_size>0</cache_size> | |
| 294 | - <lookup> | |
| 295 | - <schema/> | |
| 296 | - <table>bsth_c_business</table> | |
| 297 | - <orderby/> | |
| 298 | - <fail_on_multiple>N</fail_on_multiple> | |
| 299 | - <eat_row_on_failure>N</eat_row_on_failure> | |
| 300 | - <key> | |
| 301 | - <name>company</name> | |
| 302 | - <field>business_name</field> | |
| 303 | - <condition>=</condition> | |
| 304 | - <name2/> | |
| 305 | - </key> | |
| 306 | - <value> | |
| 307 | - <name>business_code</name> | |
| 308 | - <rename>companyCode</rename> | |
| 309 | - <default/> | |
| 310 | - <type>String</type> | |
| 311 | - </value> | |
| 312 | - </lookup> | |
| 313 | - <cluster_schema/> | |
| 314 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 315 | - <xloc>544</xloc> | |
| 316 | - <yloc>59</yloc> | |
| 317 | - <draw>Y</draw> | |
| 318 | - </GUI> | |
| 319 | - </step> | |
| 320 | - | |
| 321 | - <step> | |
| 322 | 257 | <name>原始系统导出的Excel输入</name> |
| 323 | 258 | <type>ExcelInput</type> |
| 324 | 259 | <description/> |
| ... | ... | @@ -377,18 +312,6 @@ |
| 377 | 312 | <group/> |
| 378 | 313 | </field> |
| 379 | 314 | <field> |
| 380 | - <name>性别</name> | |
| 381 | - <type>String</type> | |
| 382 | - <length>-1</length> | |
| 383 | - <precision>-1</precision> | |
| 384 | - <trim_type>none</trim_type> | |
| 385 | - <repeat>N</repeat> | |
| 386 | - <format/> | |
| 387 | - <currency/> | |
| 388 | - <decimal/> | |
| 389 | - <group/> | |
| 390 | - </field> | |
| 391 | - <field> | |
| 392 | 315 | <name>所属公司</name> |
| 393 | 316 | <type>String</type> |
| 394 | 317 | <length>-1</length> |
| ... | ... | @@ -401,7 +324,7 @@ |
| 401 | 324 | <group/> |
| 402 | 325 | </field> |
| 403 | 326 | <field> |
| 404 | - <name>所属分公司</name> | |
| 327 | + <name>所属公司代码</name> | |
| 405 | 328 | <type>String</type> |
| 406 | 329 | <length>-1</length> |
| 407 | 330 | <precision>-1</precision> |
| ... | ... | @@ -413,31 +336,7 @@ |
| 413 | 336 | <group/> |
| 414 | 337 | </field> |
| 415 | 338 | <field> |
| 416 | - <name>一卡通号</name> | |
| 417 | - <type>String</type> | |
| 418 | - <length>-1</length> | |
| 419 | - <precision>-1</precision> | |
| 420 | - <trim_type>none</trim_type> | |
| 421 | - <repeat>N</repeat> | |
| 422 | - <format/> | |
| 423 | - <currency/> | |
| 424 | - <decimal/> | |
| 425 | - <group/> | |
| 426 | - </field> | |
| 427 | - <field> | |
| 428 | - <name>运营服务证号</name> | |
| 429 | - <type>String</type> | |
| 430 | - <length>-1</length> | |
| 431 | - <precision>-1</precision> | |
| 432 | - <trim_type>none</trim_type> | |
| 433 | - <repeat>N</repeat> | |
| 434 | - <format/> | |
| 435 | - <currency/> | |
| 436 | - <decimal/> | |
| 437 | - <group/> | |
| 438 | - </field> | |
| 439 | - <field> | |
| 440 | - <name>岗位</name> | |
| 339 | + <name>所属分公司</name> | |
| 441 | 340 | <type>String</type> |
| 442 | 341 | <length>-1</length> |
| 443 | 342 | <precision>-1</precision> |
| ... | ... | @@ -449,7 +348,7 @@ |
| 449 | 348 | <group/> |
| 450 | 349 | </field> |
| 451 | 350 | <field> |
| 452 | - <name>备注</name> | |
| 351 | + <name>所属分公司代码</name> | |
| 453 | 352 | <type>String</type> |
| 454 | 353 | <length>-1</length> |
| 455 | 354 | <precision>-1</precision> |
| ... | ... | @@ -495,174 +394,6 @@ |
| 495 | 394 | </step> |
| 496 | 395 | |
| 497 | 396 | <step> |
| 498 | - <name>字段选择</name> | |
| 499 | - <type>SelectValues</type> | |
| 500 | - <description/> | |
| 501 | - <distribute>Y</distribute> | |
| 502 | - <custom_distribution/> | |
| 503 | - <copies>1</copies> | |
| 504 | - <partitioning> | |
| 505 | - <method>none</method> | |
| 506 | - <schema_name/> | |
| 507 | - </partitioning> | |
| 508 | - <fields> <field> <name>姓名</name> | |
| 509 | - <rename>personnelName</rename> | |
| 510 | - <length>-2</length> | |
| 511 | - <precision>-2</precision> | |
| 512 | - </field> <field> <name>工号</name> | |
| 513 | - <rename>jobCode</rename> | |
| 514 | - <length>-2</length> | |
| 515 | - <precision>-2</precision> | |
| 516 | - </field> <field> <name>性别</name> | |
| 517 | - <rename>personnelType</rename> | |
| 518 | - <length>-2</length> | |
| 519 | - <precision>-2</precision> | |
| 520 | - </field> <field> <name>所属公司</name> | |
| 521 | - <rename>company</rename> | |
| 522 | - <length>-2</length> | |
| 523 | - <precision>-2</precision> | |
| 524 | - </field> <field> <name>所属分公司</name> | |
| 525 | - <rename>brancheCompany</rename> | |
| 526 | - <length>-2</length> | |
| 527 | - <precision>-2</precision> | |
| 528 | - </field> <field> <name>一卡通号</name> | |
| 529 | - <rename>icCardCode</rename> | |
| 530 | - <length>-2</length> | |
| 531 | - <precision>-2</precision> | |
| 532 | - </field> <field> <name>运营服务证号</name> | |
| 533 | - <rename>papersCode</rename> | |
| 534 | - <length>-2</length> | |
| 535 | - <precision>-2</precision> | |
| 536 | - </field> <field> <name>岗位</name> | |
| 537 | - <rename>posts</rename> | |
| 538 | - <length>-2</length> | |
| 539 | - <precision>-2</precision> | |
| 540 | - </field> <field> <name>备注</name> | |
| 541 | - <rename>descriptions</rename> | |
| 542 | - <length>-2</length> | |
| 543 | - <precision>-2</precision> | |
| 544 | - </field> <select_unspecified>N</select_unspecified> | |
| 545 | - </fields> <cluster_schema/> | |
| 546 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 547 | - <xloc>286</xloc> | |
| 548 | - <yloc>58</yloc> | |
| 549 | - <draw>Y</draw> | |
| 550 | - </GUI> | |
| 551 | - </step> | |
| 552 | - | |
| 553 | - <step> | |
| 554 | - <name>工种</name> | |
| 555 | - <type>ValueMapper</type> | |
| 556 | - <description/> | |
| 557 | - <distribute>Y</distribute> | |
| 558 | - <custom_distribution/> | |
| 559 | - <copies>1</copies> | |
| 560 | - <partitioning> | |
| 561 | - <method>none</method> | |
| 562 | - <schema_name/> | |
| 563 | - </partitioning> | |
| 564 | - <field_to_use>posts</field_to_use> | |
| 565 | - <target_field/> | |
| 566 | - <non_match_default/> | |
| 567 | - <fields> | |
| 568 | - <field> | |
| 569 | - <source_value>公共汽电车驾驶员</source_value> | |
| 570 | - <target_value>1</target_value> | |
| 571 | - </field> | |
| 572 | - <field> | |
| 573 | - <source_value>公共汽电车调度员</source_value> | |
| 574 | - <target_value>2</target_value> | |
| 575 | - </field> | |
| 576 | - <field> | |
| 577 | - <source_value>公共汽电车售票员</source_value> | |
| 578 | - <target_value>3</target_value> | |
| 579 | - </field> | |
| 580 | - <field> | |
| 581 | - <source_value>站员</source_value> | |
| 582 | - <target_value>4</target_value> | |
| 583 | - </field> | |
| 584 | - <field> | |
| 585 | - <source_value>管理员</source_value> | |
| 586 | - <target_value>5</target_value> | |
| 587 | - </field> | |
| 588 | - <field> | |
| 589 | - <source_value>安检员</source_value> | |
| 590 | - <target_value>6</target_value> | |
| 591 | - </field> | |
| 592 | - <field> | |
| 593 | - <source_value>机务</source_value> | |
| 594 | - <target_value>7</target_value> | |
| 595 | - </field> | |
| 596 | - <field> | |
| 597 | - <source_value>引导员</source_value> | |
| 598 | - <target_value>8</target_value> | |
| 599 | - </field> | |
| 600 | - <field> | |
| 601 | - <source_value>乘务员</source_value> | |
| 602 | - <target_value>9</target_value> | |
| 603 | - </field> | |
| 604 | - <field> | |
| 605 | - <source_value>车队长(线长、主</source_value> | |
| 606 | - <target_value>10</target_value> | |
| 607 | - </field> | |
| 608 | - <field> | |
| 609 | - <source_value>公司管理人员</source_value> | |
| 610 | - <target_value>11</target_value> | |
| 611 | - </field> | |
| 612 | - <field> | |
| 613 | - <source_value>警消人员</source_value> | |
| 614 | - <target_value>12</target_value> | |
| 615 | - </field> | |
| 616 | - <field> | |
| 617 | - <source_value>票务人员</source_value> | |
| 618 | - <target_value>13</target_value> | |
| 619 | - </field> | |
| 620 | - <field> | |
| 621 | - <source_value>其他服务人员</source_value> | |
| 622 | - <target_value>14</target_value> | |
| 623 | - </field> | |
| 624 | - </fields> | |
| 625 | - <cluster_schema/> | |
| 626 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 627 | - <xloc>543</xloc> | |
| 628 | - <yloc>152</yloc> | |
| 629 | - <draw>Y</draw> | |
| 630 | - </GUI> | |
| 631 | - </step> | |
| 632 | - | |
| 633 | - <step> | |
| 634 | - <name>性别代码</name> | |
| 635 | - <type>ValueMapper</type> | |
| 636 | - <description/> | |
| 637 | - <distribute>Y</distribute> | |
| 638 | - <custom_distribution/> | |
| 639 | - <copies>1</copies> | |
| 640 | - <partitioning> | |
| 641 | - <method>none</method> | |
| 642 | - <schema_name/> | |
| 643 | - </partitioning> | |
| 644 | - <field_to_use>personnelType</field_to_use> | |
| 645 | - <target_field>personnelCode</target_field> | |
| 646 | - <non_match_default/> | |
| 647 | - <fields> | |
| 648 | - <field> | |
| 649 | - <source_value>男性</source_value> | |
| 650 | - <target_value>1</target_value> | |
| 651 | - </field> | |
| 652 | - <field> | |
| 653 | - <source_value>女性</source_value> | |
| 654 | - <target_value>2</target_value> | |
| 655 | - </field> | |
| 656 | - </fields> | |
| 657 | - <cluster_schema/> | |
| 658 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 659 | - <xloc>413</xloc> | |
| 660 | - <yloc>58</yloc> | |
| 661 | - <draw>Y</draw> | |
| 662 | - </GUI> | |
| 663 | - </step> | |
| 664 | - | |
| 665 | - <step> | |
| 666 | 397 | <name>插入/更新bsth_c_personnel</name> |
| 667 | 398 | <type>InsertUpdate</type> |
| 668 | 399 | <description/> |
| ... | ... | @@ -680,122 +411,57 @@ |
| 680 | 411 | <schema/> |
| 681 | 412 | <table>bsth_c_personnel</table> |
| 682 | 413 | <key> |
| 683 | - <name>companyCode</name> | |
| 414 | + <name>所属公司代码</name> | |
| 684 | 415 | <field>company_code</field> |
| 685 | 416 | <condition>=</condition> |
| 686 | 417 | <name2/> |
| 687 | 418 | </key> |
| 688 | 419 | <key> |
| 689 | - <name>jobCode</name> | |
| 420 | + <name>gh_calcu</name> | |
| 690 | 421 | <field>job_code</field> |
| 691 | 422 | <condition>=</condition> |
| 692 | 423 | <name2/> |
| 693 | 424 | </key> |
| 694 | 425 | <value> |
| 695 | 426 | <name>personnel_name</name> |
| 696 | - <rename>personnelName</rename> | |
| 697 | - <update>Y</update> | |
| 698 | - </value> | |
| 699 | - <value> | |
| 700 | - <name>job_code</name> | |
| 701 | - <rename>jobCode</rename> | |
| 702 | - <update>Y</update> | |
| 703 | - </value> | |
| 704 | - <value> | |
| 705 | - <name>personnel_type</name> | |
| 706 | - <rename>personnelCode</rename> | |
| 427 | + <rename>姓名</rename> | |
| 707 | 428 | <update>Y</update> |
| 708 | 429 | </value> |
| 709 | 430 | <value> |
| 710 | 431 | <name>company</name> |
| 711 | - <rename>company</rename> | |
| 712 | - <update>Y</update> | |
| 713 | - </value> | |
| 714 | - <value> | |
| 715 | - <name>branche_company</name> | |
| 716 | - <rename>brancheCompany</rename> | |
| 717 | - <update>Y</update> | |
| 718 | - </value> | |
| 719 | - <value> | |
| 720 | - <name>ic_card_code</name> | |
| 721 | - <rename>icCardCode</rename> | |
| 432 | + <rename>所属公司</rename> | |
| 722 | 433 | <update>Y</update> |
| 723 | 434 | </value> |
| 724 | 435 | <value> |
| 725 | - <name>papers_code</name> | |
| 726 | - <rename>papersCode</rename> | |
| 436 | + <name>company_code</name> | |
| 437 | + <rename>所属公司代码</rename> | |
| 727 | 438 | <update>Y</update> |
| 728 | 439 | </value> |
| 729 | 440 | <value> |
| 730 | - <name>posts</name> | |
| 731 | - <rename>posts</rename> | |
| 441 | + <name>branche_company</name> | |
| 442 | + <rename>所属分公司</rename> | |
| 732 | 443 | <update>Y</update> |
| 733 | 444 | </value> |
| 734 | 445 | <value> |
| 735 | - <name>descriptions</name> | |
| 736 | - <rename>descriptions</rename> | |
| 446 | + <name>branche_company_code</name> | |
| 447 | + <rename>所属分公司代码</rename> | |
| 737 | 448 | <update>Y</update> |
| 738 | 449 | </value> |
| 739 | 450 | <value> |
| 740 | - <name>company_code</name> | |
| 741 | - <rename>companyCode</rename> | |
| 451 | + <name>job_code</name> | |
| 452 | + <rename>gh_calcu</rename> | |
| 742 | 453 | <update>Y</update> |
| 743 | 454 | </value> |
| 744 | 455 | </lookup> |
| 745 | 456 | <cluster_schema/> |
| 746 | 457 | <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> |
| 747 | - <xloc>713</xloc> | |
| 458 | + <xloc>576</xloc> | |
| 748 | 459 | <yloc>56</yloc> |
| 749 | 460 | <draw>Y</draw> |
| 750 | 461 | </GUI> |
| 751 | 462 | </step> |
| 752 | 463 | |
| 753 | 464 | <step> |
| 754 | - <name>获取变量</name> | |
| 755 | - <type>GetVariable</type> | |
| 756 | - <description/> | |
| 757 | - <distribute>Y</distribute> | |
| 758 | - <custom_distribution/> | |
| 759 | - <copies>1</copies> | |
| 760 | - <partitioning> | |
| 761 | - <method>none</method> | |
| 762 | - <schema_name/> | |
| 763 | - </partitioning> | |
| 764 | - <fields> | |
| 765 | - <field> | |
| 766 | - <name>filepath_</name> | |
| 767 | - <variable>${filepath}</variable> | |
| 768 | - <type>String</type> | |
| 769 | - <format/> | |
| 770 | - <currency/> | |
| 771 | - <decimal/> | |
| 772 | - <group/> | |
| 773 | - <length>-1</length> | |
| 774 | - <precision>-1</precision> | |
| 775 | - <trim_type>none</trim_type> | |
| 776 | - </field> | |
| 777 | - <field> | |
| 778 | - <name>erroroutputdir_</name> | |
| 779 | - <variable>${erroroutputdir}</variable> | |
| 780 | - <type>String</type> | |
| 781 | - <format/> | |
| 782 | - <currency/> | |
| 783 | - <decimal/> | |
| 784 | - <group/> | |
| 785 | - <length>-1</length> | |
| 786 | - <precision>-1</precision> | |
| 787 | - <trim_type>none</trim_type> | |
| 788 | - </field> | |
| 789 | - </fields> | |
| 790 | - <cluster_schema/> | |
| 791 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 792 | - <xloc>90</xloc> | |
| 793 | - <yloc>148</yloc> | |
| 794 | - <draw>Y</draw> | |
| 795 | - </GUI> | |
| 796 | - </step> | |
| 797 | - | |
| 798 | - <step> | |
| 799 | 465 | <name>错误输出</name> |
| 800 | 466 | <type>ExcelOutput</type> |
| 801 | 467 | <description/> |
| ... | ... | @@ -837,52 +503,37 @@ |
| 837 | 503 | </template> |
| 838 | 504 | <fields> |
| 839 | 505 | <field> |
| 840 | - <name>personnelName</name> | |
| 841 | - <type>String</type> | |
| 842 | - <format/> | |
| 843 | - </field> | |
| 844 | - <field> | |
| 845 | - <name>jobCode</name> | |
| 846 | - <type>String</type> | |
| 847 | - <format/> | |
| 848 | - </field> | |
| 849 | - <field> | |
| 850 | - <name>personnelType</name> | |
| 851 | - <type>String</type> | |
| 852 | - <format/> | |
| 853 | - </field> | |
| 854 | - <field> | |
| 855 | - <name>company</name> | |
| 506 | + <name>姓名</name> | |
| 856 | 507 | <type>String</type> |
| 857 | 508 | <format/> |
| 858 | 509 | </field> |
| 859 | 510 | <field> |
| 860 | - <name>brancheCompany</name> | |
| 511 | + <name>工号</name> | |
| 861 | 512 | <type>String</type> |
| 862 | 513 | <format/> |
| 863 | 514 | </field> |
| 864 | 515 | <field> |
| 865 | - <name>icCardCode</name> | |
| 516 | + <name>所属公司</name> | |
| 866 | 517 | <type>String</type> |
| 867 | 518 | <format/> |
| 868 | 519 | </field> |
| 869 | 520 | <field> |
| 870 | - <name>papersCode</name> | |
| 521 | + <name>所属公司代码</name> | |
| 871 | 522 | <type>String</type> |
| 872 | 523 | <format/> |
| 873 | 524 | </field> |
| 874 | 525 | <field> |
| 875 | - <name>posts</name> | |
| 526 | + <name>所属分公司</name> | |
| 876 | 527 | <type>String</type> |
| 877 | 528 | <format/> |
| 878 | 529 | </field> |
| 879 | 530 | <field> |
| 880 | - <name>descriptions</name> | |
| 531 | + <name>所属分公司代码</name> | |
| 881 | 532 | <type>String</type> |
| 882 | 533 | <format/> |
| 883 | 534 | </field> |
| 884 | 535 | <field> |
| 885 | - <name>companyCode</name> | |
| 536 | + <name>gh_calcu</name> | |
| 886 | 537 | <type>String</type> |
| 887 | 538 | <format/> |
| 888 | 539 | </field> |
| ... | ... | @@ -926,12 +577,128 @@ |
| 926 | 577 | </custom> |
| 927 | 578 | <cluster_schema/> |
| 928 | 579 | <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> |
| 929 | - <xloc>715</xloc> | |
| 580 | + <xloc>578</xloc> | |
| 930 | 581 | <yloc>223</yloc> |
| 931 | 582 | <draw>Y</draw> |
| 932 | 583 | </GUI> |
| 933 | 584 | </step> |
| 934 | 585 | |
| 586 | + <step> | |
| 587 | + <name>获取变量</name> | |
| 588 | + <type>GetVariable</type> | |
| 589 | + <description/> | |
| 590 | + <distribute>Y</distribute> | |
| 591 | + <custom_distribution/> | |
| 592 | + <copies>1</copies> | |
| 593 | + <partitioning> | |
| 594 | + <method>none</method> | |
| 595 | + <schema_name/> | |
| 596 | + </partitioning> | |
| 597 | + <fields> | |
| 598 | + <field> | |
| 599 | + <name>filepath_</name> | |
| 600 | + <variable>${filepath}</variable> | |
| 601 | + <type>String</type> | |
| 602 | + <format/> | |
| 603 | + <currency/> | |
| 604 | + <decimal/> | |
| 605 | + <group/> | |
| 606 | + <length>-1</length> | |
| 607 | + <precision>-1</precision> | |
| 608 | + <trim_type>none</trim_type> | |
| 609 | + </field> | |
| 610 | + <field> | |
| 611 | + <name>erroroutputdir_</name> | |
| 612 | + <variable>${erroroutputdir}</variable> | |
| 613 | + <type>String</type> | |
| 614 | + <format/> | |
| 615 | + <currency/> | |
| 616 | + <decimal/> | |
| 617 | + <group/> | |
| 618 | + <length>-1</length> | |
| 619 | + <precision>-1</precision> | |
| 620 | + <trim_type>none</trim_type> | |
| 621 | + </field> | |
| 622 | + </fields> | |
| 623 | + <cluster_schema/> | |
| 624 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 625 | + <xloc>90</xloc> | |
| 626 | + <yloc>148</yloc> | |
| 627 | + <draw>Y</draw> | |
| 628 | + </GUI> | |
| 629 | + </step> | |
| 630 | + | |
| 631 | + <step> | |
| 632 | + <name>过滤记录</name> | |
| 633 | + <type>FilterRows</type> | |
| 634 | + <description/> | |
| 635 | + <distribute>Y</distribute> | |
| 636 | + <custom_distribution/> | |
| 637 | + <copies>1</copies> | |
| 638 | + <partitioning> | |
| 639 | + <method>none</method> | |
| 640 | + <schema_name/> | |
| 641 | + </partitioning> | |
| 642 | +<send_true_to/> | |
| 643 | +<send_false_to/> | |
| 644 | + <compare> | |
| 645 | +<condition> | |
| 646 | + <negated>N</negated> | |
| 647 | + <conditions> | |
| 648 | + <condition> | |
| 649 | + <negated>N</negated> | |
| 650 | + <leftvalue>工号</leftvalue> | |
| 651 | + <function>IS NOT NULL</function> | |
| 652 | + <rightvalue/> | |
| 653 | + </condition> | |
| 654 | + <condition> | |
| 655 | + <negated>N</negated> | |
| 656 | + <operator>AND</operator> | |
| 657 | + <leftvalue>所属公司代码</leftvalue> | |
| 658 | + <function>IS NOT NULL</function> | |
| 659 | + <rightvalue/> | |
| 660 | + </condition> | |
| 661 | + </conditions> | |
| 662 | + </condition> | |
| 663 | + </compare> | |
| 664 | + <cluster_schema/> | |
| 665 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 666 | + <xloc>358</xloc> | |
| 667 | + <yloc>57</yloc> | |
| 668 | + <draw>Y</draw> | |
| 669 | + </GUI> | |
| 670 | + </step> | |
| 671 | + | |
| 672 | + <step> | |
| 673 | + <name>JavaScript代码</name> | |
| 674 | + <type>ScriptValueMod</type> | |
| 675 | + <description/> | |
| 676 | + <distribute>Y</distribute> | |
| 677 | + <custom_distribution/> | |
| 678 | + <copies>1</copies> | |
| 679 | + <partitioning> | |
| 680 | + <method>none</method> | |
| 681 | + <schema_name/> | |
| 682 | + </partitioning> | |
| 683 | + <compatible>N</compatible> | |
| 684 | + <optimizationLevel>9</optimizationLevel> | |
| 685 | + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 686 | + <jsScript_name>Script 1</jsScript_name> | |
| 687 | + <jsScript_script>//Script here

var gh_calcu = 所属公司代码 + "-" + 工号;</jsScript_script> | |
| 688 | + </jsScript> </jsScripts> <fields> <field> <name>gh_calcu</name> | |
| 689 | + <rename>gh_calcu</rename> | |
| 690 | + <type>String</type> | |
| 691 | + <length>-1</length> | |
| 692 | + <precision>-1</precision> | |
| 693 | + <replace>N</replace> | |
| 694 | + </field> </fields> <cluster_schema/> | |
| 695 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 696 | + <xloc>362</xloc> | |
| 697 | + <yloc>190</yloc> | |
| 698 | + <draw>Y</draw> | |
| 699 | + </GUI> | |
| 700 | + </step> | |
| 701 | + | |
| 935 | 702 | <step_error_handling> |
| 936 | 703 | <error> |
| 937 | 704 | <source_step>插入/更新bsth_c_personnel</source_step> | ... | ... |
src/main/resources/datatools/ktrs/employeesDataOutput.ktr
| ... | ... | @@ -242,12 +242,8 @@ |
| 242 | 242 | </attributes> |
| 243 | 243 | </connection> |
| 244 | 244 | <order> |
| 245 | - <hop> <from>表输入</from><to>性别标识</to><enabled>Y</enabled> </hop> | |
| 246 | - <hop> <from>性别标识</from><to>性别标识查询</to><enabled>Y</enabled> </hop> | |
| 247 | - <hop> <from>性别标识查询</from><to>工种标识</to><enabled>Y</enabled> </hop> | |
| 248 | - <hop> <from>工种标识</from><to>工种标识查询</to><enabled>Y</enabled> </hop> | |
| 249 | - <hop> <from>工种标识查询</from><to>字段选择</to><enabled>Y</enabled> </hop> | |
| 250 | 245 | <hop> <from>字段选择</from><to>Excel输出</to><enabled>Y</enabled> </hop> |
| 246 | + <hop> <from>表输入</from><to>字段选择</to><enabled>Y</enabled> </hop> | |
| 251 | 247 | </order> |
| 252 | 248 | <step> |
| 253 | 249 | <name>Excel输出</name> |
| ... | ... | @@ -301,37 +297,22 @@ |
| 301 | 297 | <format/> |
| 302 | 298 | </field> |
| 303 | 299 | <field> |
| 304 | - <name>性别</name> | |
| 305 | - <type>String</type> | |
| 306 | - <format/> | |
| 307 | - </field> | |
| 308 | - <field> | |
| 309 | 300 | <name>所属公司</name> |
| 310 | 301 | <type>String</type> |
| 311 | 302 | <format/> |
| 312 | 303 | </field> |
| 313 | 304 | <field> |
| 314 | - <name>所属分公司</name> | |
| 315 | - <type>String</type> | |
| 316 | - <format/> | |
| 317 | - </field> | |
| 318 | - <field> | |
| 319 | - <name>一卡通号</name> | |
| 320 | - <type>String</type> | |
| 321 | - <format/> | |
| 322 | - </field> | |
| 323 | - <field> | |
| 324 | - <name>运营服务证号</name> | |
| 305 | + <name>所属公司代码</name> | |
| 325 | 306 | <type>String</type> |
| 326 | 307 | <format/> |
| 327 | 308 | </field> |
| 328 | 309 | <field> |
| 329 | - <name>岗位</name> | |
| 310 | + <name>所属分公司</name> | |
| 330 | 311 | <type>String</type> |
| 331 | 312 | <format/> |
| 332 | 313 | </field> |
| 333 | 314 | <field> |
| 334 | - <name>备注</name> | |
| 315 | + <name>所属分公司代码</name> | |
| 335 | 316 | <type>String</type> |
| 336 | 317 | <format/> |
| 337 | 318 | </field> |
| ... | ... | @@ -355,8 +336,8 @@ |
| 355 | 336 | </custom> |
| 356 | 337 | <cluster_schema/> |
| 357 | 338 | <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> |
| 358 | - <xloc>695</xloc> | |
| 359 | - <yloc>180</yloc> | |
| 339 | + <xloc>346</xloc> | |
| 340 | + <yloc>66</yloc> | |
| 360 | 341 | <draw>Y</draw> |
| 361 | 342 | </GUI> |
| 362 | 343 | </step> |
| ... | ... | @@ -380,201 +361,27 @@ |
| 380 | 361 | <rename>工号</rename> |
| 381 | 362 | <length>-2</length> |
| 382 | 363 | <precision>-2</precision> |
| 383 | - </field> <field> <name>personnel_type_str</name> | |
| 384 | - <rename>性别</rename> | |
| 385 | - <length>-2</length> | |
| 386 | - <precision>-2</precision> | |
| 387 | 364 | </field> <field> <name>company</name> |
| 388 | 365 | <rename>所属公司</rename> |
| 389 | 366 | <length>-2</length> |
| 390 | 367 | <precision>-2</precision> |
| 391 | - </field> <field> <name>branche_company</name> | |
| 392 | - <rename>所属分公司</rename> | |
| 368 | + </field> <field> <name>company_code</name> | |
| 369 | + <rename>所属公司代码</rename> | |
| 393 | 370 | <length>-2</length> |
| 394 | 371 | <precision>-2</precision> |
| 395 | - </field> <field> <name>ic_card_code</name> | |
| 396 | - <rename>一卡通号</rename> | |
| 397 | - <length>-2</length> | |
| 398 | - <precision>-2</precision> | |
| 399 | - </field> <field> <name>papers_code</name> | |
| 400 | - <rename>运营服务证号</rename> | |
| 401 | - <length>-2</length> | |
| 402 | - <precision>-2</precision> | |
| 403 | - </field> <field> <name>posts_str</name> | |
| 404 | - <rename>岗位</rename> | |
| 372 | + </field> <field> <name>branche_company</name> | |
| 373 | + <rename>所属分公司</rename> | |
| 405 | 374 | <length>-2</length> |
| 406 | 375 | <precision>-2</precision> |
| 407 | - </field> <field> <name>descriptions</name> | |
| 408 | - <rename>备注</rename> | |
| 376 | + </field> <field> <name>branche_company_code</name> | |
| 377 | + <rename>所属分公司代码</rename> | |
| 409 | 378 | <length>-2</length> |
| 410 | 379 | <precision>-2</precision> |
| 411 | 380 | </field> <select_unspecified>N</select_unspecified> |
| 412 | 381 | </fields> <cluster_schema/> |
| 413 | 382 | <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> |
| 414 | - <xloc>631</xloc> | |
| 415 | - <yloc>76</yloc> | |
| 416 | - <draw>Y</draw> | |
| 417 | - </GUI> | |
| 418 | - </step> | |
| 419 | - | |
| 420 | - <step> | |
| 421 | - <name>工种标识</name> | |
| 422 | - <type>Constant</type> | |
| 423 | - <description/> | |
| 424 | - <distribute>Y</distribute> | |
| 425 | - <custom_distribution/> | |
| 426 | - <copies>1</copies> | |
| 427 | - <partitioning> | |
| 428 | - <method>none</method> | |
| 429 | - <schema_name/> | |
| 430 | - </partitioning> | |
| 431 | - <fields> | |
| 432 | - <field> | |
| 433 | - <name>gzType</name> | |
| 434 | - <type>String</type> | |
| 435 | - <format/> | |
| 436 | - <currency/> | |
| 437 | - <decimal/> | |
| 438 | - <group/> | |
| 439 | - <nullif>gzType</nullif> | |
| 440 | - <length>-1</length> | |
| 441 | - <precision>-1</precision> | |
| 442 | - <set_empty_string>N</set_empty_string> | |
| 443 | - </field> | |
| 444 | - </fields> | |
| 445 | - <cluster_schema/> | |
| 446 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 447 | - <xloc>418</xloc> | |
| 448 | - <yloc>73</yloc> | |
| 449 | - <draw>Y</draw> | |
| 450 | - </GUI> | |
| 451 | - </step> | |
| 452 | - | |
| 453 | - <step> | |
| 454 | - <name>工种标识查询</name> | |
| 455 | - <type>DBLookup</type> | |
| 456 | - <description/> | |
| 457 | - <distribute>Y</distribute> | |
| 458 | - <custom_distribution/> | |
| 459 | - <copies>1</copies> | |
| 460 | - <partitioning> | |
| 461 | - <method>none</method> | |
| 462 | - <schema_name/> | |
| 463 | - </partitioning> | |
| 464 | - <connection>bus_control_variable</connection> | |
| 465 | - <cache>N</cache> | |
| 466 | - <cache_load_all>N</cache_load_all> | |
| 467 | - <cache_size>0</cache_size> | |
| 468 | - <lookup> | |
| 469 | - <schema/> | |
| 470 | - <table>bsth_c_sys_dictionary</table> | |
| 471 | - <orderby/> | |
| 472 | - <fail_on_multiple>N</fail_on_multiple> | |
| 473 | - <eat_row_on_failure>N</eat_row_on_failure> | |
| 474 | - <key> | |
| 475 | - <name>gzType</name> | |
| 476 | - <field>d_group</field> | |
| 477 | - <condition>=</condition> | |
| 478 | - <name2/> | |
| 479 | - </key> | |
| 480 | - <key> | |
| 481 | - <name>posts</name> | |
| 482 | - <field>d_code</field> | |
| 483 | - <condition>=</condition> | |
| 484 | - <name2/> | |
| 485 | - </key> | |
| 486 | - <value> | |
| 487 | - <name>d_name</name> | |
| 488 | - <rename>posts_str</rename> | |
| 489 | - <default/> | |
| 490 | - <type>String</type> | |
| 491 | - </value> | |
| 492 | - </lookup> | |
| 493 | - <cluster_schema/> | |
| 494 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 495 | - <xloc>509</xloc> | |
| 496 | - <yloc>75</yloc> | |
| 497 | - <draw>Y</draw> | |
| 498 | - </GUI> | |
| 499 | - </step> | |
| 500 | - | |
| 501 | - <step> | |
| 502 | - <name>性别标识</name> | |
| 503 | - <type>Constant</type> | |
| 504 | - <description/> | |
| 505 | - <distribute>Y</distribute> | |
| 506 | - <custom_distribution/> | |
| 507 | - <copies>1</copies> | |
| 508 | - <partitioning> | |
| 509 | - <method>none</method> | |
| 510 | - <schema_name/> | |
| 511 | - </partitioning> | |
| 512 | - <fields> | |
| 513 | - <field> | |
| 514 | - <name>sexType</name> | |
| 515 | - <type>String</type> | |
| 516 | - <format/> | |
| 517 | - <currency/> | |
| 518 | - <decimal/> | |
| 519 | - <group/> | |
| 520 | - <nullif>sexType</nullif> | |
| 521 | - <length>-1</length> | |
| 522 | - <precision>-1</precision> | |
| 523 | - <set_empty_string>N</set_empty_string> | |
| 524 | - </field> | |
| 525 | - </fields> | |
| 526 | - <cluster_schema/> | |
| 527 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 528 | - <xloc>220</xloc> | |
| 529 | - <yloc>69</yloc> | |
| 530 | - <draw>Y</draw> | |
| 531 | - </GUI> | |
| 532 | - </step> | |
| 533 | - | |
| 534 | - <step> | |
| 535 | - <name>性别标识查询</name> | |
| 536 | - <type>DBLookup</type> | |
| 537 | - <description/> | |
| 538 | - <distribute>Y</distribute> | |
| 539 | - <custom_distribution/> | |
| 540 | - <copies>1</copies> | |
| 541 | - <partitioning> | |
| 542 | - <method>none</method> | |
| 543 | - <schema_name/> | |
| 544 | - </partitioning> | |
| 545 | - <connection>bus_control_variable</connection> | |
| 546 | - <cache>N</cache> | |
| 547 | - <cache_load_all>N</cache_load_all> | |
| 548 | - <cache_size>0</cache_size> | |
| 549 | - <lookup> | |
| 550 | - <schema/> | |
| 551 | - <table>bsth_c_sys_dictionary</table> | |
| 552 | - <orderby/> | |
| 553 | - <fail_on_multiple>N</fail_on_multiple> | |
| 554 | - <eat_row_on_failure>N</eat_row_on_failure> | |
| 555 | - <key> | |
| 556 | - <name>sexType</name> | |
| 557 | - <field>d_group</field> | |
| 558 | - <condition>=</condition> | |
| 559 | - <name2/> | |
| 560 | - </key> | |
| 561 | - <key> | |
| 562 | - <name>personnel_type</name> | |
| 563 | - <field>d_code</field> | |
| 564 | - <condition>=</condition> | |
| 565 | - <name2/> | |
| 566 | - </key> | |
| 567 | - <value> | |
| 568 | - <name>d_name</name> | |
| 569 | - <rename>personnel_type_str</rename> | |
| 570 | - <default/> | |
| 571 | - <type>String</type> | |
| 572 | - </value> | |
| 573 | - </lookup> | |
| 574 | - <cluster_schema/> | |
| 575 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 576 | - <xloc>316</xloc> | |
| 577 | - <yloc>71</yloc> | |
| 383 | + <xloc>221</xloc> | |
| 384 | + <yloc>66</yloc> | |
| 578 | 385 | <draw>Y</draw> |
| 579 | 386 | </GUI> |
| 580 | 387 | </step> | ... | ... |