Commit bc51f6e2405125956e650b86259ab6e8341f2742
1 parent
cbcffe02
update
Showing
21 changed files
with
6032 additions
and
5458 deletions
src/main/java/com/bsth/controller/schedule/CarConfigInfoController.java
| ... | ... | @@ -8,6 +8,7 @@ import org.springframework.beans.factory.annotation.Autowired; |
| 8 | 8 | import org.springframework.boot.context.properties.EnableConfigurationProperties; |
| 9 | 9 | import org.springframework.web.bind.annotation.*; |
| 10 | 10 | |
| 11 | +import java.util.List; | |
| 11 | 12 | import java.util.Map; |
| 12 | 13 | |
| 13 | 14 | /** |
| ... | ... | @@ -45,4 +46,9 @@ public class CarConfigInfoController extends BaseController<CarConfigInfo, Long> |
| 45 | 46 | public Map<String, Object> save(@RequestBody CarConfigInfo t){ |
| 46 | 47 | return baseService.save(t); |
| 47 | 48 | } |
| 49 | + | |
| 50 | + @RequestMapping(value = "/cars", method = RequestMethod.GET) | |
| 51 | + public List<Map<String, Object>> findCarConfigCars() { | |
| 52 | + return carConfigInfoRepository.findCarConfigCars(); | |
| 53 | + } | |
| 48 | 54 | } | ... | ... |
src/main/java/com/bsth/controller/schedule/TTInfoDetailController.java
| ... | ... | @@ -5,6 +5,7 @@ import com.bsth.controller.BaseController; |
| 5 | 5 | import com.bsth.entity.schedule.TTInfoDetail; |
| 6 | 6 | import com.bsth.service.schedule.TTInfoDetailServiceImpl; |
| 7 | 7 | import org.springframework.beans.factory.annotation.Autowired; |
| 8 | +import org.springframework.web.bind.annotation.PathVariable; | |
| 8 | 9 | import org.springframework.web.bind.annotation.RequestMapping; |
| 9 | 10 | import org.springframework.web.bind.annotation.RequestMethod; |
| 10 | 11 | import org.springframework.web.bind.annotation.RestController; |
| ... | ... | @@ -38,4 +39,10 @@ public class TTInfoDetailController extends BaseController<TTInfoDetail, Long> { |
| 38 | 39 | |
| 39 | 40 | return resultMap; |
| 40 | 41 | } |
| 42 | + | |
| 43 | + @RequestMapping(value = "/edit/{ttid}", method = RequestMethod.GET) | |
| 44 | + public Object getEditInfo(@PathVariable("ttid") Long ttid) throws Exception { | |
| 45 | + // TODO:返回类型需要修正 | |
| 46 | + return ttInfoDetailService.getEditInfo(ttid); | |
| 47 | + } | |
| 41 | 48 | } | ... | ... |
src/main/java/com/bsth/entity/schedule/SchedulePlanInfo.java
| ... | ... | @@ -152,6 +152,13 @@ public class SchedulePlanInfo { |
| 152 | 152 | EmployeeConfigInfo employeeConfigInfo, |
| 153 | 153 | SchedulePlan schedulePlan) { |
| 154 | 154 | |
| 155 | + // TODO:关联的公司名称 | |
| 156 | + // TODO:关联的公司编码 | |
| 157 | + // TODO:关联的分公司名称 | |
| 158 | + // TODO:关联的分公司编码 | |
| 159 | + // TODO:关联的出场顺序号 | |
| 160 | + | |
| 161 | + // 关联的排班计划 | |
| 155 | 162 | this.schedulePlan = schedulePlan; |
| 156 | 163 | |
| 157 | 164 | // 排班计划时间 |
| ... | ... | @@ -176,9 +183,11 @@ public class SchedulePlanInfo { |
| 176 | 183 | this.jGh = employeeConfigInfo.getJsy().getJobCode(); |
| 177 | 184 | this.jName = employeeConfigInfo.getJsy().getPersonnelName(); |
| 178 | 185 | // 关联的售票员 |
| 179 | - this.s = employeeConfigInfo.getSpy().getId(); | |
| 180 | - this.sGh = employeeConfigInfo.getSpy().getJobCode(); | |
| 181 | - this.sName = employeeConfigInfo.getSpy().getPersonnelName(); | |
| 186 | + if (employeeConfigInfo.getSpy() != null) { | |
| 187 | + this.s = employeeConfigInfo.getSpy().getId(); | |
| 188 | + this.sGh = employeeConfigInfo.getSpy().getJobCode(); | |
| 189 | + this.sName = employeeConfigInfo.getSpy().getPersonnelName(); | |
| 190 | + } | |
| 182 | 191 | |
| 183 | 192 | // 时刻明细数据 |
| 184 | 193 | this.xlDir = ttInfoDetail.getXlDir(); // 线路上下行 | ... | ... |
src/main/java/com/bsth/repository/schedule/CarConfigInfoRepository.java
| ... | ... | @@ -4,6 +4,7 @@ import com.bsth.entity.schedule.CarConfigInfo; |
| 4 | 4 | import com.bsth.repository.BaseRepository; |
| 5 | 5 | |
| 6 | 6 | import java.util.List; |
| 7 | +import java.util.Map; | |
| 7 | 8 | |
| 8 | 9 | import org.springframework.data.domain.Page; |
| 9 | 10 | import org.springframework.data.domain.Pageable; |
| ... | ... | @@ -38,4 +39,7 @@ public interface CarConfigInfoRepository extends BaseRepository<CarConfigInfo, L |
| 38 | 39 | @EntityGraph(value = "carConfigInfo_xl_cl", type = EntityGraph.EntityGraphType.FETCH) |
| 39 | 40 | @Query("select cc from CarConfigInfo cc where cc.xl.lineCode=?1") |
| 40 | 41 | List<CarConfigInfo> findBylineCode(String lineCode); |
| 42 | + | |
| 43 | + @Query("select new map(cc.cl.insideCode as nbbm, cc.id as id) from CarConfigInfo cc") | |
| 44 | + List<Map<String, Object>> findCarConfigCars(); | |
| 41 | 45 | } |
| 42 | 46 | \ No newline at end of file | ... | ... |
src/main/java/com/bsth/service/schedule/TTInfoDetailServiceImpl.java
| ... | ... | @@ -16,6 +16,7 @@ import org.springframework.web.multipart.MultipartFile; |
| 16 | 16 | |
| 17 | 17 | import java.io.File; |
| 18 | 18 | import java.util.ArrayList; |
| 19 | +import java.util.Date; | |
| 19 | 20 | import java.util.List; |
| 20 | 21 | |
| 21 | 22 | /** |
| ... | ... | @@ -30,6 +31,37 @@ public class TTInfoDetailServiceImpl extends BaseServiceImpl<TTInfoDetail, Long> |
| 30 | 31 | private DataToolsProperties dataToolsProperties; |
| 31 | 32 | |
| 32 | 33 | /** |
| 34 | + * 获取待编辑的数据。 | |
| 35 | + * @param ttid 时刻表id | |
| 36 | + * @return | |
| 37 | + */ | |
| 38 | + public Object getEditInfo(Long ttid) throws Exception { | |
| 39 | + // 1、使用ktr转换获取输出文件 | |
| 40 | + // 1.1、获取转换用ktr | |
| 41 | + File ktrFile = new File(this.getClass().getResource( | |
| 42 | + dataToolsProperties.getTtinfodetailForeditktr()).toURI()); | |
| 43 | + TransMeta transMeta = new TransMeta(ktrFile.getAbsolutePath()); | |
| 44 | + Trans trans = new Trans(transMeta); | |
| 45 | + // 1.2、设定命名参数,TODO:之后还要添加其他命名参数 | |
| 46 | + String outputFilePath = "ttinfodetail_" + (new Date()).getTime(); | |
| 47 | + trans.setParameterValue("tempfilepath", dataToolsProperties.getTransTempdir() + File.separator + outputFilePath); // 数据输出文件路径 | |
| 48 | + // 1.3、执行转换 | |
| 49 | + trans.execute(null); | |
| 50 | + // 1.4、等待转换结束 | |
| 51 | + trans.waitUntilFinished(); | |
| 52 | + | |
| 53 | + // 3、判定ktr错误数,注意这种错误代表部分数据错误,不会终止转换执行,一般设计ktr的时候,会有错误输出文件,TODO:以后考虑使用日志实时输出 | |
| 54 | + if (trans.getErrors() > 0) { | |
| 55 | + throw new Exception("转换数据部分错误,请查看相关错误输出文件!"); | |
| 56 | + } | |
| 57 | + | |
| 58 | + // TODO: | |
| 59 | + | |
| 60 | + | |
| 61 | + return new Object(); | |
| 62 | + } | |
| 63 | + | |
| 64 | + /** | |
| 33 | 65 | * 上传并导入数据,和DataImportExportService的同名方法有差别。 |
| 34 | 66 | * @param datafile form上传文件 |
| 35 | 67 | * @param xlmc 线路名称 | ... | ... |
src/main/java/com/bsth/service/schedule/utils/DataToolsProperties.java
| ... | ... | @@ -21,6 +21,9 @@ public class DataToolsProperties { |
| 21 | 21 | /** ktr转换文件,中配置的错误输出目录(根据不同的环境需要修正) */ |
| 22 | 22 | @NotNull |
| 23 | 23 | private String transErrordir; |
| 24 | + /** 临时输出文件目录 */ | |
| 25 | + @NotNull | |
| 26 | + private String transTempdir; | |
| 24 | 27 | |
| 25 | 28 | /** kettle配置文件路径 */ |
| 26 | 29 | @NotNull |
| ... | ... | @@ -60,6 +63,9 @@ public class DataToolsProperties { |
| 60 | 63 | /** 时刻表明细信息导入(元数据) */ |
| 61 | 64 | @NotNull |
| 62 | 65 | private String ttinfodetailMetadatainputktr; |
| 66 | + /** 时刻表明细编辑用数据(TODO:之后要换成元数据形式输入) */ | |
| 67 | + @NotNull | |
| 68 | + private String ttinfodetailForeditktr; | |
| 63 | 69 | /** 时刻表明细信息导入 */ |
| 64 | 70 | @NotNull |
| 65 | 71 | private String ttinfodetailDatainputktr; |
| ... | ... | @@ -185,4 +191,20 @@ public class DataToolsProperties { |
| 185 | 191 | public void setKettleProperties(String kettleProperties) { |
| 186 | 192 | this.kettleProperties = kettleProperties; |
| 187 | 193 | } |
| 194 | + | |
| 195 | + public String getTransTempdir() { | |
| 196 | + return transTempdir; | |
| 197 | + } | |
| 198 | + | |
| 199 | + public void setTransTempdir(String transTempdir) { | |
| 200 | + this.transTempdir = transTempdir; | |
| 201 | + } | |
| 202 | + | |
| 203 | + public String getTtinfodetailForeditktr() { | |
| 204 | + return ttinfodetailForeditktr; | |
| 205 | + } | |
| 206 | + | |
| 207 | + public void setTtinfodetailForeditktr(String ttinfodetailForeditktr) { | |
| 208 | + this.ttinfodetailForeditktr = ttinfodetailForeditktr; | |
| 209 | + } | |
| 188 | 210 | } | ... | ... |
src/main/resources/datatools/config.properties
| ... | ... | @@ -4,17 +4,19 @@ |
| 4 | 4 | datatools.fileupload_dir=/Users/xu/resource/project/bsth_control_u_d_files |
| 5 | 5 | # ktr转换文件,中配置的错误输出目录(根据不同的环境需要修正) |
| 6 | 6 | datatools.trans_errordir=/Users/xu/resource/project/bsth_control_u_d_files/erroroutput |
| 7 | +# 临时输出文件目录 | |
| 8 | +datatools.trans_tempdir=/Users/xu/resource/project/bsth_control_u_d_files/temp | |
| 7 | 9 | |
| 8 | 10 | #------------------- ktr主配置文件路径(类路径) ------------------ |
| 9 | 11 | datatools.kettle_properties=/datatools/kettle.properties |
| 10 | 12 | |
| 11 | 13 | ##------------------ ktr通用变量 ------------------ |
| 12 | 14 | #数据库ip地址 |
| 13 | -datatools.kvars_dbip=localhost | |
| 15 | +datatools.kvars_dbip=192.168.168.201 | |
| 14 | 16 | #数据库用户名 |
| 15 | 17 | datatools.kvars_dbuname=root |
| 16 | 18 | #数据库密码 |
| 17 | -datatools.kvars_dbpwd= | |
| 19 | +datatools.kvars_dbpwd=123456 | |
| 18 | 20 | |
| 19 | 21 | # 以下是封装数据导入导出逻辑的ktr转换文件,类路径,以后考虑放到数据库中 |
| 20 | 22 | # 测试temp的ktr转换文件 |
| ... | ... | @@ -29,6 +31,8 @@ datatools.guideboards_datainputktr=/datatools/ktrs/guideboardDataInput.ktr |
| 29 | 31 | datatools.ttinfo_datainputktr=/datatools/ktrs/ttinfoDataInput.ktr |
| 30 | 32 | # 时刻表明细信息导入(元数据) |
| 31 | 33 | datatools.ttinfodetail_metadatainputktr=/datatools/ktrs/ttinfodetailMetaData.ktr |
| 34 | +# 时刻表明细编辑用数据(TODO:之后要换成元数据形式输入) | |
| 35 | +datatools.ttinfodetail_foreditktr=/datatools/ktrs/ttinfodetailoutputforedit.ktr | |
| 32 | 36 | # 时刻表明细信息导入 |
| 33 | 37 | datatools.ttinfodetail_datainputktr=/datatools/ktrs/ttinfodetailDataInput.ktr |
| 34 | 38 | |
| ... | ... | @@ -37,4 +41,5 @@ datatools.carsconfig_datainputktr=/datatools/ktrs/carsConfigDataInput.ktr |
| 37 | 41 | # 人员配置信息导入 |
| 38 | 42 | datatools.employeesconfig_datainputktr=/datatools/ktrs/employeesConfigDataInput.ktr |
| 39 | 43 | |
| 40 | -# 排班规则信息导入 | |
| 41 | 44 | \ No newline at end of file |
| 45 | +# 排班规则信息导入 | |
| 46 | + | ... | ... |
src/main/resources/datatools/ktrs/carsConfigDataInput.ktr
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<transformation> | |
| 3 | - <info> | |
| 4 | - <name>carsConfigDataInput</name> | |
| 5 | - <description>车辆配置信息导入</description> | |
| 6 | - <extended_description>配车信息</extended_description> | |
| 7 | - <trans_version/> | |
| 8 | - <trans_type>Normal</trans_type> | |
| 9 | - <trans_status>0</trans_status> | |
| 10 | - <directory>/</directory> | |
| 11 | - <parameters> | |
| 12 | - <parameter> | |
| 13 | - <name>erroroutputdir</name> | |
| 14 | - <default_value/> | |
| 15 | - <description>ktr step配置的错误输出目录</description> | |
| 16 | - </parameter> | |
| 17 | - <parameter> | |
| 18 | - <name>filepath</name> | |
| 19 | - <default_value/> | |
| 20 | - <description>待处理导入的excel文件</description> | |
| 21 | - </parameter> | |
| 22 | - </parameters> | |
| 23 | - <log> | |
| 24 | -<trans-log-table><connection/> | |
| 25 | -<schema/> | |
| 26 | -<table/> | |
| 27 | -<size_limit_lines/> | |
| 28 | -<interval/> | |
| 29 | -<timeout_days/> | |
| 30 | -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STATUS</id><enabled>Y</enabled><name>STATUS</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name><subject/></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name><subject/></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name><subject/></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name><subject/></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name><subject/></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name><subject/></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>STARTDATE</id><enabled>Y</enabled><name>STARTDATE</name></field><field><id>ENDDATE</id><enabled>Y</enabled><name>ENDDATE</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>DEPDATE</id><enabled>Y</enabled><name>DEPDATE</name></field><field><id>REPLAYDATE</id><enabled>Y</enabled><name>REPLAYDATE</name></field><field><id>LOG_FIELD</id><enabled>Y</enabled><name>LOG_FIELD</name></field><field><id>EXECUTING_SERVER</id><enabled>N</enabled><name>EXECUTING_SERVER</name></field><field><id>EXECUTING_USER</id><enabled>N</enabled><name>EXECUTING_USER</name></field><field><id>CLIENT</id><enabled>N</enabled><name>CLIENT</name></field></trans-log-table> | |
| 31 | -<perf-log-table><connection/> | |
| 32 | -<schema/> | |
| 33 | -<table/> | |
| 34 | -<interval/> | |
| 35 | -<timeout_days/> | |
| 36 | -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>SEQ_NR</id><enabled>Y</enabled><name>SEQ_NR</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>INPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>INPUT_BUFFER_ROWS</name></field><field><id>OUTPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>OUTPUT_BUFFER_ROWS</name></field></perf-log-table> | |
| 37 | -<channel-log-table><connection/> | |
| 38 | -<schema/> | |
| 39 | -<table/> | |
| 40 | -<timeout_days/> | |
| 41 | -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>LOGGING_OBJECT_TYPE</id><enabled>Y</enabled><name>LOGGING_OBJECT_TYPE</name></field><field><id>OBJECT_NAME</id><enabled>Y</enabled><name>OBJECT_NAME</name></field><field><id>OBJECT_COPY</id><enabled>Y</enabled><name>OBJECT_COPY</name></field><field><id>REPOSITORY_DIRECTORY</id><enabled>Y</enabled><name>REPOSITORY_DIRECTORY</name></field><field><id>FILENAME</id><enabled>Y</enabled><name>FILENAME</name></field><field><id>OBJECT_ID</id><enabled>Y</enabled><name>OBJECT_ID</name></field><field><id>OBJECT_REVISION</id><enabled>Y</enabled><name>OBJECT_REVISION</name></field><field><id>PARENT_CHANNEL_ID</id><enabled>Y</enabled><name>PARENT_CHANNEL_ID</name></field><field><id>ROOT_CHANNEL_ID</id><enabled>Y</enabled><name>ROOT_CHANNEL_ID</name></field></channel-log-table> | |
| 42 | -<step-log-table><connection/> | |
| 43 | -<schema/> | |
| 44 | -<table/> | |
| 45 | -<timeout_days/> | |
| 46 | -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>LOG_FIELD</id><enabled>N</enabled><name>LOG_FIELD</name></field></step-log-table> | |
| 47 | -<metrics-log-table><connection/> | |
| 48 | -<schema/> | |
| 49 | -<table/> | |
| 50 | -<timeout_days/> | |
| 51 | -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>METRICS_DATE</id><enabled>Y</enabled><name>METRICS_DATE</name></field><field><id>METRICS_CODE</id><enabled>Y</enabled><name>METRICS_CODE</name></field><field><id>METRICS_DESCRIPTION</id><enabled>Y</enabled><name>METRICS_DESCRIPTION</name></field><field><id>METRICS_SUBJECT</id><enabled>Y</enabled><name>METRICS_SUBJECT</name></field><field><id>METRICS_TYPE</id><enabled>Y</enabled><name>METRICS_TYPE</name></field><field><id>METRICS_VALUE</id><enabled>Y</enabled><name>METRICS_VALUE</name></field></metrics-log-table> | |
| 52 | - </log> | |
| 53 | - <maxdate> | |
| 54 | - <connection/> | |
| 55 | - <table/> | |
| 56 | - <field/> | |
| 57 | - <offset>0.0</offset> | |
| 58 | - <maxdiff>0.0</maxdiff> | |
| 59 | - </maxdate> | |
| 60 | - <size_rowset>10000</size_rowset> | |
| 61 | - <sleep_time_empty>50</sleep_time_empty> | |
| 62 | - <sleep_time_full>50</sleep_time_full> | |
| 63 | - <unique_connections>N</unique_connections> | |
| 64 | - <feedback_shown>Y</feedback_shown> | |
| 65 | - <feedback_size>50000</feedback_size> | |
| 66 | - <using_thread_priorities>Y</using_thread_priorities> | |
| 67 | - <shared_objects_file/> | |
| 68 | - <capture_step_performance>N</capture_step_performance> | |
| 69 | - <step_performance_capturing_delay>1000</step_performance_capturing_delay> | |
| 70 | - <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit> | |
| 71 | - <dependencies> | |
| 72 | - </dependencies> | |
| 73 | - <partitionschemas> | |
| 74 | - </partitionschemas> | |
| 75 | - <slaveservers> | |
| 76 | - </slaveservers> | |
| 77 | - <clusterschemas> | |
| 78 | - </clusterschemas> | |
| 79 | - <created_user>-</created_user> | |
| 80 | - <created_date>2016/06/29 13:15:32.118</created_date> | |
| 81 | - <modified_user>-</modified_user> | |
| 82 | - <modified_date>2016/06/29 13:15:32.118</modified_date> | |
| 83 | - <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA=</key_for_session_key> | |
| 84 | - <is_key_private>N</is_key_private> | |
| 85 | - </info> | |
| 86 | - <notepads> | |
| 87 | - <notepad> | |
| 88 | - <note>配车分当前/历史/计划,历史配车有终止时间,然后是否切换基本都是1
是否切换 暂时不知道什么意思,当前配车都设置为0
终止时间 当前配车没有终止时间,这个估计要作为查询条件的
早班时间 没有暂时空着
末班时间 没有暂时空着</note> | |
| 89 | - <xloc>260</xloc> | |
| 90 | - <yloc>124</yloc> | |
| 91 | - <width>391</width> | |
| 92 | - <heigth>90</heigth> | |
| 93 | - <fontname>YaHei Consolas Hybrid</fontname> | |
| 94 | - <fontsize>12</fontsize> | |
| 95 | - <fontbold>N</fontbold> | |
| 96 | - <fontitalic>N</fontitalic> | |
| 97 | - <fontcolorred>0</fontcolorred> | |
| 98 | - <fontcolorgreen>0</fontcolorgreen> | |
| 99 | - <fontcolorblue>0</fontcolorblue> | |
| 100 | - <backgroundcolorred>255</backgroundcolorred> | |
| 101 | - <backgroundcolorgreen>205</backgroundcolorgreen> | |
| 102 | - <backgroundcolorblue>112</backgroundcolorblue> | |
| 103 | - <bordercolorred>100</bordercolorred> | |
| 104 | - <bordercolorgreen>100</bordercolorgreen> | |
| 105 | - <bordercolorblue>100</bordercolorblue> | |
| 106 | - <drawshadow>Y</drawshadow> | |
| 107 | - </notepad> | |
| 108 | - </notepads> | |
| 109 | - <connection> | |
| 110 | - <name>bus_control_variable</name> | |
| 111 | - <server>${v_db_ip}</server> | |
| 112 | - <type>MYSQL</type> | |
| 113 | - <access>Native</access> | |
| 114 | - <database>control</database> | |
| 115 | - <port>3306</port> | |
| 116 | - <username>${v_db_uname}</username> | |
| 117 | - <password>${v_db_pwd}</password> | |
| 118 | - <servername/> | |
| 119 | - <data_tablespace/> | |
| 120 | - <index_tablespace/> | |
| 121 | - <attributes> | |
| 122 | - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 123 | - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 124 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 125 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 126 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 127 | - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 128 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 129 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 130 | - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute> | |
| 131 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 132 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 133 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 134 | - </attributes> | |
| 135 | - </connection> | |
| 136 | - <connection> | |
| 137 | - <name>bus_control_公司_201</name> | |
| 138 | - <server>localhost</server> | |
| 139 | - <type>MYSQL</type> | |
| 140 | - <access>Native</access> | |
| 141 | - <database>control</database> | |
| 142 | - <port>3306</port> | |
| 143 | - <username>root</username> | |
| 144 | - <password>Encrypted </password> | |
| 145 | - <servername/> | |
| 146 | - <data_tablespace/> | |
| 147 | - <index_tablespace/> | |
| 148 | - <attributes> | |
| 149 | - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 150 | - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 151 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 152 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 153 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 154 | - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 155 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 156 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 157 | - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute> | |
| 158 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 159 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 160 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 161 | - </attributes> | |
| 162 | - </connection> | |
| 163 | - <connection> | |
| 164 | - <name>bus_control_本机</name> | |
| 165 | - <server>localhost</server> | |
| 166 | - <type>MYSQL</type> | |
| 167 | - <access>Native</access> | |
| 168 | - <database>control</database> | |
| 169 | - <port>3306</port> | |
| 170 | - <username>root</username> | |
| 171 | - <password>Encrypted </password> | |
| 172 | - <servername/> | |
| 173 | - <data_tablespace/> | |
| 174 | - <index_tablespace/> | |
| 175 | - <attributes> | |
| 176 | - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 177 | - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 178 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 179 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 180 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 181 | - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 182 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 183 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 184 | - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 185 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 186 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 187 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 188 | - </attributes> | |
| 189 | - </connection> | |
| 190 | - <connection> | |
| 191 | - <name>xlab_mysql_youle</name> | |
| 192 | - <server>101.231.124.8</server> | |
| 193 | - <type>MYSQL</type> | |
| 194 | - <access>Native</access> | |
| 195 | - <database>xlab_youle</database> | |
| 196 | - <port>45687</port> | |
| 197 | - <username>xlab-youle</username> | |
| 198 | - <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password> | |
| 199 | - <servername/> | |
| 200 | - <data_tablespace/> | |
| 201 | - <index_tablespace/> | |
| 202 | - <attributes> | |
| 203 | - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 204 | - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 205 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 206 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 207 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 208 | - <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute> | |
| 209 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 210 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 211 | - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 212 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 213 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 214 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 215 | - </attributes> | |
| 216 | - </connection> | |
| 217 | - <connection> | |
| 218 | - <name>xlab_mysql_youle(本机)</name> | |
| 219 | - <server>localhost</server> | |
| 220 | - <type>MYSQL</type> | |
| 221 | - <access>Native</access> | |
| 222 | - <database>xlab_youle</database> | |
| 223 | - <port>3306</port> | |
| 224 | - <username>root</username> | |
| 225 | - <password>Encrypted </password> | |
| 226 | - <servername/> | |
| 227 | - <data_tablespace/> | |
| 228 | - <index_tablespace/> | |
| 229 | - <attributes> | |
| 230 | - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 231 | - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 232 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 233 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 234 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 235 | - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 236 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 237 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 238 | - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 239 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 240 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 241 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 242 | - </attributes> | |
| 243 | - </connection> | |
| 244 | - <connection> | |
| 245 | - <name>xlab_youle</name> | |
| 246 | - <server/> | |
| 247 | - <type>MYSQL</type> | |
| 248 | - <access>JNDI</access> | |
| 249 | - <database>xlab_youle</database> | |
| 250 | - <port>1521</port> | |
| 251 | - <username/> | |
| 252 | - <password>Encrypted </password> | |
| 253 | - <servername/> | |
| 254 | - <data_tablespace/> | |
| 255 | - <index_tablespace/> | |
| 256 | - <attributes> | |
| 257 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 258 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 259 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 260 | - <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | |
| 261 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 262 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 263 | - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 264 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 265 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 266 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 267 | - </attributes> | |
| 268 | - </connection> | |
| 269 | - <order> | |
| 270 | - <hop> <from>原始系统导出的Excel输入</from><to>字段选择</to><enabled>Y</enabled> </hop> | |
| 271 | - <hop> <from>字段选择</from><to>查找线路关联</to><enabled>Y</enabled> </hop> | |
| 272 | - <hop> <from>插入/更新bsth_c_s_ccinfo</from><to>错误输出</to><enabled>Y</enabled> </hop> | |
| 273 | - <hop> <from>是否切换</from><to>插入/更新bsth_c_s_ccinfo</to><enabled>Y</enabled> </hop> | |
| 274 | - <hop> <from>查找线路关联</from><to>查找车辆关联</to><enabled>Y</enabled> </hop> | |
| 275 | - <hop> <from>查找车辆关联</from><to>是否切换</to><enabled>Y</enabled> </hop> | |
| 276 | - <hop> <from>获取变量</from><to>原始系统导出的Excel输入</to><enabled>Y</enabled> </hop> | |
| 277 | - </order> | |
| 278 | - <step> | |
| 279 | - <name>原始系统导出的Excel输入</name> | |
| 280 | - <type>ExcelInput</type> | |
| 281 | - <description/> | |
| 282 | - <distribute>Y</distribute> | |
| 283 | - <custom_distribution/> | |
| 284 | - <copies>1</copies> | |
| 285 | - <partitioning> | |
| 286 | - <method>none</method> | |
| 287 | - <schema_name/> | |
| 288 | - </partitioning> | |
| 289 | - <header>Y</header> | |
| 290 | - <noempty>Y</noempty> | |
| 291 | - <stoponempty>N</stoponempty> | |
| 292 | - <filefield/> | |
| 293 | - <sheetfield/> | |
| 294 | - <sheetrownumfield/> | |
| 295 | - <rownumfield/> | |
| 296 | - <sheetfield/> | |
| 297 | - <filefield/> | |
| 298 | - <limit>0</limit> | |
| 299 | - <encoding/> | |
| 300 | - <add_to_result_filenames>Y</add_to_result_filenames> | |
| 301 | - <accept_filenames>Y</accept_filenames> | |
| 302 | - <accept_field>filepath_</accept_field> | |
| 303 | - <accept_stepname>获取变量</accept_stepname> | |
| 304 | - <file> | |
| 305 | - <name/> | |
| 306 | - <filemask/> | |
| 307 | - <exclude_filemask/> | |
| 308 | - <file_required>N</file_required> | |
| 309 | - <include_subfolders>N</include_subfolders> | |
| 310 | - </file> | |
| 311 | - <fields> | |
| 312 | - <field> | |
| 313 | - <name>线路</name> | |
| 314 | - <type>String</type> | |
| 315 | - <length>-1</length> | |
| 316 | - <precision>-1</precision> | |
| 317 | - <trim_type>none</trim_type> | |
| 318 | - <repeat>N</repeat> | |
| 319 | - <format/> | |
| 320 | - <currency/> | |
| 321 | - <decimal/> | |
| 322 | - <group/> | |
| 323 | - </field> | |
| 324 | - <field> | |
| 325 | - <name>内部编码</name> | |
| 326 | - <type>String</type> | |
| 327 | - <length>-1</length> | |
| 328 | - <precision>-1</precision> | |
| 329 | - <trim_type>none</trim_type> | |
| 330 | - <repeat>N</repeat> | |
| 331 | - <format/> | |
| 332 | - <currency/> | |
| 333 | - <decimal/> | |
| 334 | - <group/> | |
| 335 | - </field> | |
| 336 | - <field> | |
| 337 | - <name>启用日期</name> | |
| 338 | - <type>String</type> | |
| 339 | - <length>-1</length> | |
| 340 | - <precision>-1</precision> | |
| 341 | - <trim_type>none</trim_type> | |
| 342 | - <repeat>N</repeat> | |
| 343 | - <format/> | |
| 344 | - <currency/> | |
| 345 | - <decimal/> | |
| 346 | - <group/> | |
| 347 | - </field> | |
| 348 | - <field> | |
| 349 | - <name>终结日期</name> | |
| 350 | - <type>String</type> | |
| 351 | - <length>-1</length> | |
| 352 | - <precision>-1</precision> | |
| 353 | - <trim_type>none</trim_type> | |
| 354 | - <repeat>N</repeat> | |
| 355 | - <format/> | |
| 356 | - <currency/> | |
| 357 | - <decimal/> | |
| 358 | - <group/> | |
| 359 | - </field> | |
| 360 | - <field> | |
| 361 | - <name>停车点</name> | |
| 362 | - <type>String</type> | |
| 363 | - <length>-1</length> | |
| 364 | - <precision>-1</precision> | |
| 365 | - <trim_type>none</trim_type> | |
| 366 | - <repeat>N</repeat> | |
| 367 | - <format/> | |
| 368 | - <currency/> | |
| 369 | - <decimal/> | |
| 370 | - <group/> | |
| 371 | - </field> | |
| 372 | - </fields> | |
| 373 | - <sheets> | |
| 374 | - <sheet> | |
| 375 | - <name>工作表1</name> | |
| 376 | - <startrow>0</startrow> | |
| 377 | - <startcol>0</startcol> | |
| 378 | - </sheet> | |
| 379 | - </sheets> | |
| 380 | - <strict_types>N</strict_types> | |
| 381 | - <error_ignored>N</error_ignored> | |
| 382 | - <error_line_skipped>N</error_line_skipped> | |
| 383 | - <bad_line_files_destination_directory/> | |
| 384 | - <bad_line_files_extension>warning</bad_line_files_extension> | |
| 385 | - <error_line_files_destination_directory/> | |
| 386 | - <error_line_files_extension>error</error_line_files_extension> | |
| 387 | - <line_number_files_destination_directory/> | |
| 388 | - <line_number_files_extension>line</line_number_files_extension> | |
| 389 | - <shortFileFieldName/> | |
| 390 | - <pathFieldName/> | |
| 391 | - <hiddenFieldName/> | |
| 392 | - <lastModificationTimeFieldName/> | |
| 393 | - <uriNameFieldName/> | |
| 394 | - <rootUriNameFieldName/> | |
| 395 | - <extensionFieldName/> | |
| 396 | - <sizeFieldName/> | |
| 397 | - <spreadsheet_type>JXL</spreadsheet_type> | |
| 398 | - <cluster_schema/> | |
| 399 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 400 | - <xloc>155</xloc> | |
| 401 | - <yloc>56</yloc> | |
| 402 | - <draw>Y</draw> | |
| 403 | - </GUI> | |
| 404 | - </step> | |
| 405 | - | |
| 406 | - <step> | |
| 407 | - <name>字段选择</name> | |
| 408 | - <type>SelectValues</type> | |
| 409 | - <description/> | |
| 410 | - <distribute>Y</distribute> | |
| 411 | - <custom_distribution/> | |
| 412 | - <copies>1</copies> | |
| 413 | - <partitioning> | |
| 414 | - <method>none</method> | |
| 415 | - <schema_name/> | |
| 416 | - </partitioning> | |
| 417 | - <fields> <field> <name>线路</name> | |
| 418 | - <rename>xl</rename> | |
| 419 | - <length>-2</length> | |
| 420 | - <precision>-2</precision> | |
| 421 | - </field> <field> <name>内部编码</name> | |
| 422 | - <rename>cl</rename> | |
| 423 | - <length>-2</length> | |
| 424 | - <precision>-2</precision> | |
| 425 | - </field> <field> <name>启用日期</name> | |
| 426 | - <rename>qyrq</rename> | |
| 427 | - <length>-2</length> | |
| 428 | - <precision>-2</precision> | |
| 429 | - </field> <field> <name>终结日期</name> | |
| 430 | - <rename>zzrq</rename> | |
| 431 | - <length>-2</length> | |
| 432 | - <precision>-2</precision> | |
| 433 | - </field> <field> <name>停车点</name> | |
| 434 | - <rename>tcd</rename> | |
| 435 | - <length>-2</length> | |
| 436 | - <precision>-2</precision> | |
| 437 | - </field> <select_unspecified>N</select_unspecified> | |
| 438 | - </fields> <cluster_schema/> | |
| 439 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 440 | - <xloc>306</xloc> | |
| 441 | - <yloc>56</yloc> | |
| 442 | - <draw>Y</draw> | |
| 443 | - </GUI> | |
| 444 | - </step> | |
| 445 | - | |
| 446 | - <step> | |
| 447 | - <name>插入/更新bsth_c_s_ccinfo</name> | |
| 448 | - <type>InsertUpdate</type> | |
| 449 | - <description/> | |
| 450 | - <distribute>Y</distribute> | |
| 451 | - <custom_distribution/> | |
| 452 | - <copies>1</copies> | |
| 453 | - <partitioning> | |
| 454 | - <method>none</method> | |
| 455 | - <schema_name/> | |
| 456 | - </partitioning> | |
| 457 | - <connection>bus_control_variable</connection> | |
| 458 | - <commit>100</commit> | |
| 459 | - <update_bypassed>N</update_bypassed> | |
| 460 | - <lookup> | |
| 461 | - <schema/> | |
| 462 | - <table>bsth_c_s_ccinfo</table> | |
| 463 | - <key> | |
| 464 | - <name>xlId</name> | |
| 465 | - <field>xl</field> | |
| 466 | - <condition>=</condition> | |
| 467 | - <name2/> | |
| 468 | - </key> | |
| 469 | - <key> | |
| 470 | - <name>clId</name> | |
| 471 | - <field>cl</field> | |
| 472 | - <condition>=</condition> | |
| 473 | - <name2/> | |
| 474 | - </key> | |
| 475 | - <value> | |
| 476 | - <name>xl</name> | |
| 477 | - <rename>xlId</rename> | |
| 478 | - <update>Y</update> | |
| 479 | - </value> | |
| 480 | - <value> | |
| 481 | - <name>cl</name> | |
| 482 | - <rename>clId</rename> | |
| 483 | - <update>Y</update> | |
| 484 | - </value> | |
| 485 | - <value> | |
| 486 | - <name>is_switch</name> | |
| 487 | - <rename>isswitch</rename> | |
| 488 | - <update>Y</update> | |
| 489 | - </value> | |
| 490 | - <value> | |
| 491 | - <name>tcd</name> | |
| 492 | - <rename>tcd</rename> | |
| 493 | - <update>Y</update> | |
| 494 | - </value> | |
| 495 | - <value> | |
| 496 | - <name>zzrq</name> | |
| 497 | - <rename>zzrq</rename> | |
| 498 | - <update>Y</update> | |
| 499 | - </value> | |
| 500 | - <value> | |
| 501 | - <name>qyrq</name> | |
| 502 | - <rename>qyrq</rename> | |
| 503 | - <update>Y</update> | |
| 504 | - </value> | |
| 505 | - </lookup> | |
| 506 | - <cluster_schema/> | |
| 507 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 508 | - <xloc>715</xloc> | |
| 509 | - <yloc>197</yloc> | |
| 510 | - <draw>Y</draw> | |
| 511 | - </GUI> | |
| 512 | - </step> | |
| 513 | - | |
| 514 | - <step> | |
| 515 | - <name>是否切换</name> | |
| 516 | - <type>Constant</type> | |
| 517 | - <description/> | |
| 518 | - <distribute>Y</distribute> | |
| 519 | - <custom_distribution/> | |
| 520 | - <copies>1</copies> | |
| 521 | - <partitioning> | |
| 522 | - <method>none</method> | |
| 523 | - <schema_name/> | |
| 524 | - </partitioning> | |
| 525 | - <fields> | |
| 526 | - <field> | |
| 527 | - <name>isswitch</name> | |
| 528 | - <type>Integer</type> | |
| 529 | - <format/> | |
| 530 | - <currency/> | |
| 531 | - <decimal/> | |
| 532 | - <group/> | |
| 533 | - <nullif>0</nullif> | |
| 534 | - <length>-1</length> | |
| 535 | - <precision>-1</precision> | |
| 536 | - <set_empty_string>N</set_empty_string> | |
| 537 | - </field> | |
| 538 | - </fields> | |
| 539 | - <cluster_schema/> | |
| 540 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 541 | - <xloc>713</xloc> | |
| 542 | - <yloc>54</yloc> | |
| 543 | - <draw>Y</draw> | |
| 544 | - </GUI> | |
| 545 | - </step> | |
| 546 | - | |
| 547 | - <step> | |
| 548 | - <name>查找线路关联</name> | |
| 549 | - <type>DBLookup</type> | |
| 550 | - <description/> | |
| 551 | - <distribute>Y</distribute> | |
| 552 | - <custom_distribution/> | |
| 553 | - <copies>1</copies> | |
| 554 | - <partitioning> | |
| 555 | - <method>none</method> | |
| 556 | - <schema_name/> | |
| 557 | - </partitioning> | |
| 558 | - <connection>bus_control_variable</connection> | |
| 559 | - <cache>N</cache> | |
| 560 | - <cache_load_all>N</cache_load_all> | |
| 561 | - <cache_size>0</cache_size> | |
| 562 | - <lookup> | |
| 563 | - <schema/> | |
| 564 | - <table>bsth_c_line</table> | |
| 565 | - <orderby/> | |
| 566 | - <fail_on_multiple>N</fail_on_multiple> | |
| 567 | - <eat_row_on_failure>N</eat_row_on_failure> | |
| 568 | - <key> | |
| 569 | - <name>xl</name> | |
| 570 | - <field>name</field> | |
| 571 | - <condition>=</condition> | |
| 572 | - <name2/> | |
| 573 | - </key> | |
| 574 | - <value> | |
| 575 | - <name>id</name> | |
| 576 | - <rename>xlId</rename> | |
| 577 | - <default/> | |
| 578 | - <type>Integer</type> | |
| 579 | - </value> | |
| 580 | - </lookup> | |
| 581 | - <cluster_schema/> | |
| 582 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 583 | - <xloc>439</xloc> | |
| 584 | - <yloc>56</yloc> | |
| 585 | - <draw>Y</draw> | |
| 586 | - </GUI> | |
| 587 | - </step> | |
| 588 | - | |
| 589 | - <step> | |
| 590 | - <name>查找车辆关联</name> | |
| 591 | - <type>DBLookup</type> | |
| 592 | - <description/> | |
| 593 | - <distribute>Y</distribute> | |
| 594 | - <custom_distribution/> | |
| 595 | - <copies>1</copies> | |
| 596 | - <partitioning> | |
| 597 | - <method>none</method> | |
| 598 | - <schema_name/> | |
| 599 | - </partitioning> | |
| 600 | - <connection>bus_control_variable</connection> | |
| 601 | - <cache>N</cache> | |
| 602 | - <cache_load_all>N</cache_load_all> | |
| 603 | - <cache_size>0</cache_size> | |
| 604 | - <lookup> | |
| 605 | - <schema/> | |
| 606 | - <table>bsth_c_cars</table> | |
| 607 | - <orderby/> | |
| 608 | - <fail_on_multiple>N</fail_on_multiple> | |
| 609 | - <eat_row_on_failure>N</eat_row_on_failure> | |
| 610 | - <key> | |
| 611 | - <name>cl</name> | |
| 612 | - <field>inside_code</field> | |
| 613 | - <condition>=</condition> | |
| 614 | - <name2/> | |
| 615 | - </key> | |
| 616 | - <value> | |
| 617 | - <name>id</name> | |
| 618 | - <rename>clId</rename> | |
| 619 | - <default/> | |
| 620 | - <type>Integer</type> | |
| 621 | - </value> | |
| 622 | - </lookup> | |
| 623 | - <cluster_schema/> | |
| 624 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 625 | - <xloc>579</xloc> | |
| 626 | - <yloc>55</yloc> | |
| 627 | - <draw>Y</draw> | |
| 628 | - </GUI> | |
| 629 | - </step> | |
| 630 | - | |
| 631 | - <step> | |
| 632 | - <name>获取变量</name> | |
| 633 | - <type>GetVariable</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 | - <fields> | |
| 643 | - <field> | |
| 644 | - <name>filepath_</name> | |
| 645 | - <variable>${filepath}</variable> | |
| 646 | - <type>String</type> | |
| 647 | - <format/> | |
| 648 | - <currency/> | |
| 649 | - <decimal/> | |
| 650 | - <group/> | |
| 651 | - <length>-1</length> | |
| 652 | - <precision>-1</precision> | |
| 653 | - <trim_type>none</trim_type> | |
| 654 | - </field> | |
| 655 | - <field> | |
| 656 | - <name>erroroutputdir_</name> | |
| 657 | - <variable>${erroroutputdir}</variable> | |
| 658 | - <type>String</type> | |
| 659 | - <format/> | |
| 660 | - <currency/> | |
| 661 | - <decimal/> | |
| 662 | - <group/> | |
| 663 | - <length>-1</length> | |
| 664 | - <precision>-1</precision> | |
| 665 | - <trim_type>none</trim_type> | |
| 666 | - </field> | |
| 667 | - </fields> | |
| 668 | - <cluster_schema/> | |
| 669 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 670 | - <xloc>156</xloc> | |
| 671 | - <yloc>150</yloc> | |
| 672 | - <draw>Y</draw> | |
| 673 | - </GUI> | |
| 674 | - </step> | |
| 675 | - | |
| 676 | - <step> | |
| 677 | - <name>错误输出</name> | |
| 678 | - <type>ExcelOutput</type> | |
| 679 | - <description/> | |
| 680 | - <distribute>Y</distribute> | |
| 681 | - <custom_distribution/> | |
| 682 | - <copies>1</copies> | |
| 683 | - <partitioning> | |
| 684 | - <method>none</method> | |
| 685 | - <schema_name/> | |
| 686 | - </partitioning> | |
| 687 | - <header>Y</header> | |
| 688 | - <footer>N</footer> | |
| 689 | - <encoding>UTF-8</encoding> | |
| 690 | - <append>N</append> | |
| 691 | - <add_to_result_filenames>Y</add_to_result_filenames> | |
| 692 | - <file> | |
| 693 | - <name>${erroroutputdir}/当前配车_错误</name> | |
| 694 | - <extention>xls</extention> | |
| 695 | - <do_not_open_newfile_init>N</do_not_open_newfile_init> | |
| 696 | - <create_parent_folder>N</create_parent_folder> | |
| 697 | - <split>N</split> | |
| 698 | - <add_date>N</add_date> | |
| 699 | - <add_time>N</add_time> | |
| 700 | - <SpecifyFormat>N</SpecifyFormat> | |
| 701 | - <date_time_format/> | |
| 702 | - <sheetname>Sheet1</sheetname> | |
| 703 | - <autosizecolums>N</autosizecolums> | |
| 704 | - <nullisblank>N</nullisblank> | |
| 705 | - <protect_sheet>N</protect_sheet> | |
| 706 | - <password>Encrypted </password> | |
| 707 | - <splitevery>0</splitevery> | |
| 708 | - <usetempfiles>N</usetempfiles> | |
| 709 | - <tempdirectory/> | |
| 710 | - </file> | |
| 711 | - <template> | |
| 712 | - <enabled>N</enabled> | |
| 713 | - <append>N</append> | |
| 714 | - <filename>template.xls</filename> | |
| 715 | - </template> | |
| 716 | - <fields> | |
| 717 | - <field> | |
| 718 | - <name>xl</name> | |
| 719 | - <type>String</type> | |
| 720 | - <format/> | |
| 721 | - </field> | |
| 722 | - <field> | |
| 723 | - <name>cl</name> | |
| 724 | - <type>String</type> | |
| 725 | - <format/> | |
| 726 | - </field> | |
| 727 | - <field> | |
| 728 | - <name>qyrq</name> | |
| 729 | - <type>String</type> | |
| 730 | - <format/> | |
| 731 | - </field> | |
| 732 | - <field> | |
| 733 | - <name>zzrq</name> | |
| 734 | - <type>String</type> | |
| 735 | - <format/> | |
| 736 | - </field> | |
| 737 | - <field> | |
| 738 | - <name>tcd</name> | |
| 739 | - <type>String</type> | |
| 740 | - <format/> | |
| 741 | - </field> | |
| 742 | - <field> | |
| 743 | - <name>xlId</name> | |
| 744 | - <type>Integer</type> | |
| 745 | - <format/> | |
| 746 | - </field> | |
| 747 | - <field> | |
| 748 | - <name>clId</name> | |
| 749 | - <type>Integer</type> | |
| 750 | - <format/> | |
| 751 | - </field> | |
| 752 | - <field> | |
| 753 | - <name>isswitch</name> | |
| 754 | - <type>Integer</type> | |
| 755 | - <format/> | |
| 756 | - </field> | |
| 757 | - <field> | |
| 758 | - <name>error_count</name> | |
| 759 | - <type>Integer</type> | |
| 760 | - <format/> | |
| 761 | - </field> | |
| 762 | - <field> | |
| 763 | - <name>error_desc</name> | |
| 764 | - <type>String</type> | |
| 765 | - <format/> | |
| 766 | - </field> | |
| 767 | - <field> | |
| 768 | - <name>error_column1</name> | |
| 769 | - <type>String</type> | |
| 770 | - <format/> | |
| 771 | - </field> | |
| 772 | - <field> | |
| 773 | - <name>error_column2</name> | |
| 774 | - <type>String</type> | |
| 775 | - <format/> | |
| 776 | - </field> | |
| 777 | - </fields> | |
| 778 | - <custom> | |
| 779 | - <header_font_name>arial</header_font_name> | |
| 780 | - <header_font_size>10</header_font_size> | |
| 781 | - <header_font_bold>N</header_font_bold> | |
| 782 | - <header_font_italic>N</header_font_italic> | |
| 783 | - <header_font_underline>no</header_font_underline> | |
| 784 | - <header_font_orientation>horizontal</header_font_orientation> | |
| 785 | - <header_font_color>black</header_font_color> | |
| 786 | - <header_background_color>none</header_background_color> | |
| 787 | - <header_row_height>255</header_row_height> | |
| 788 | - <header_alignment>left</header_alignment> | |
| 789 | - <header_image/> | |
| 790 | - <row_font_name>arial</row_font_name> | |
| 791 | - <row_font_size>10</row_font_size> | |
| 792 | - <row_font_color>black</row_font_color> | |
| 793 | - <row_background_color>none</row_background_color> | |
| 794 | - </custom> | |
| 795 | - <cluster_schema/> | |
| 796 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 797 | - <xloc>718</xloc> | |
| 798 | - <yloc>314</yloc> | |
| 799 | - <draw>Y</draw> | |
| 800 | - </GUI> | |
| 801 | - </step> | |
| 802 | - | |
| 803 | - <step_error_handling> | |
| 804 | - <error> | |
| 805 | - <source_step>插入/更新bsth_c_s_ccinfo</source_step> | |
| 806 | - <target_step>错误输出</target_step> | |
| 807 | - <is_enabled>Y</is_enabled> | |
| 808 | - <nr_valuename>error_count</nr_valuename> | |
| 809 | - <descriptions_valuename>error_desc</descriptions_valuename> | |
| 810 | - <fields_valuename>error_column1</fields_valuename> | |
| 811 | - <codes_valuename>error_column2</codes_valuename> | |
| 812 | - <max_errors/> | |
| 813 | - <max_pct_errors/> | |
| 814 | - <min_pct_rows/> | |
| 815 | - </error> | |
| 816 | - </step_error_handling> | |
| 817 | - <slave-step-copy-partition-distribution> | |
| 818 | -</slave-step-copy-partition-distribution> | |
| 819 | - <slave_transformation>N</slave_transformation> | |
| 820 | - | |
| 821 | -</transformation> | |
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | +<transformation> | |
| 3 | + <info> | |
| 4 | + <name>carsConfigDataInput</name> | |
| 5 | + <description>车辆配置信息导入</description> | |
| 6 | + <extended_description>配车信息</extended_description> | |
| 7 | + <trans_version/> | |
| 8 | + <trans_type>Normal</trans_type> | |
| 9 | + <trans_status>0</trans_status> | |
| 10 | + <directory>/</directory> | |
| 11 | + <parameters> | |
| 12 | + <parameter> | |
| 13 | + <name>erroroutputdir</name> | |
| 14 | + <default_value/> | |
| 15 | + <description>ktr step配置的错误输出目录</description> | |
| 16 | + </parameter> | |
| 17 | + <parameter> | |
| 18 | + <name>filepath</name> | |
| 19 | + <default_value/> | |
| 20 | + <description>待处理导入的excel文件</description> | |
| 21 | + </parameter> | |
| 22 | + </parameters> | |
| 23 | + <log> | |
| 24 | +<trans-log-table><connection/> | |
| 25 | +<schema/> | |
| 26 | +<table/> | |
| 27 | +<size_limit_lines/> | |
| 28 | +<interval/> | |
| 29 | +<timeout_days/> | |
| 30 | +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STATUS</id><enabled>Y</enabled><name>STATUS</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name><subject/></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name><subject/></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name><subject/></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name><subject/></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name><subject/></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name><subject/></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>STARTDATE</id><enabled>Y</enabled><name>STARTDATE</name></field><field><id>ENDDATE</id><enabled>Y</enabled><name>ENDDATE</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>DEPDATE</id><enabled>Y</enabled><name>DEPDATE</name></field><field><id>REPLAYDATE</id><enabled>Y</enabled><name>REPLAYDATE</name></field><field><id>LOG_FIELD</id><enabled>Y</enabled><name>LOG_FIELD</name></field><field><id>EXECUTING_SERVER</id><enabled>N</enabled><name>EXECUTING_SERVER</name></field><field><id>EXECUTING_USER</id><enabled>N</enabled><name>EXECUTING_USER</name></field><field><id>CLIENT</id><enabled>N</enabled><name>CLIENT</name></field></trans-log-table> | |
| 31 | +<perf-log-table><connection/> | |
| 32 | +<schema/> | |
| 33 | +<table/> | |
| 34 | +<interval/> | |
| 35 | +<timeout_days/> | |
| 36 | +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>SEQ_NR</id><enabled>Y</enabled><name>SEQ_NR</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>INPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>INPUT_BUFFER_ROWS</name></field><field><id>OUTPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>OUTPUT_BUFFER_ROWS</name></field></perf-log-table> | |
| 37 | +<channel-log-table><connection/> | |
| 38 | +<schema/> | |
| 39 | +<table/> | |
| 40 | +<timeout_days/> | |
| 41 | +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>LOGGING_OBJECT_TYPE</id><enabled>Y</enabled><name>LOGGING_OBJECT_TYPE</name></field><field><id>OBJECT_NAME</id><enabled>Y</enabled><name>OBJECT_NAME</name></field><field><id>OBJECT_COPY</id><enabled>Y</enabled><name>OBJECT_COPY</name></field><field><id>REPOSITORY_DIRECTORY</id><enabled>Y</enabled><name>REPOSITORY_DIRECTORY</name></field><field><id>FILENAME</id><enabled>Y</enabled><name>FILENAME</name></field><field><id>OBJECT_ID</id><enabled>Y</enabled><name>OBJECT_ID</name></field><field><id>OBJECT_REVISION</id><enabled>Y</enabled><name>OBJECT_REVISION</name></field><field><id>PARENT_CHANNEL_ID</id><enabled>Y</enabled><name>PARENT_CHANNEL_ID</name></field><field><id>ROOT_CHANNEL_ID</id><enabled>Y</enabled><name>ROOT_CHANNEL_ID</name></field></channel-log-table> | |
| 42 | +<step-log-table><connection/> | |
| 43 | +<schema/> | |
| 44 | +<table/> | |
| 45 | +<timeout_days/> | |
| 46 | +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>LOG_FIELD</id><enabled>N</enabled><name>LOG_FIELD</name></field></step-log-table> | |
| 47 | +<metrics-log-table><connection/> | |
| 48 | +<schema/> | |
| 49 | +<table/> | |
| 50 | +<timeout_days/> | |
| 51 | +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>METRICS_DATE</id><enabled>Y</enabled><name>METRICS_DATE</name></field><field><id>METRICS_CODE</id><enabled>Y</enabled><name>METRICS_CODE</name></field><field><id>METRICS_DESCRIPTION</id><enabled>Y</enabled><name>METRICS_DESCRIPTION</name></field><field><id>METRICS_SUBJECT</id><enabled>Y</enabled><name>METRICS_SUBJECT</name></field><field><id>METRICS_TYPE</id><enabled>Y</enabled><name>METRICS_TYPE</name></field><field><id>METRICS_VALUE</id><enabled>Y</enabled><name>METRICS_VALUE</name></field></metrics-log-table> | |
| 52 | + </log> | |
| 53 | + <maxdate> | |
| 54 | + <connection/> | |
| 55 | + <table/> | |
| 56 | + <field/> | |
| 57 | + <offset>0.0</offset> | |
| 58 | + <maxdiff>0.0</maxdiff> | |
| 59 | + </maxdate> | |
| 60 | + <size_rowset>10000</size_rowset> | |
| 61 | + <sleep_time_empty>50</sleep_time_empty> | |
| 62 | + <sleep_time_full>50</sleep_time_full> | |
| 63 | + <unique_connections>N</unique_connections> | |
| 64 | + <feedback_shown>Y</feedback_shown> | |
| 65 | + <feedback_size>50000</feedback_size> | |
| 66 | + <using_thread_priorities>Y</using_thread_priorities> | |
| 67 | + <shared_objects_file/> | |
| 68 | + <capture_step_performance>N</capture_step_performance> | |
| 69 | + <step_performance_capturing_delay>1000</step_performance_capturing_delay> | |
| 70 | + <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit> | |
| 71 | + <dependencies> | |
| 72 | + </dependencies> | |
| 73 | + <partitionschemas> | |
| 74 | + </partitionschemas> | |
| 75 | + <slaveservers> | |
| 76 | + </slaveservers> | |
| 77 | + <clusterschemas> | |
| 78 | + </clusterschemas> | |
| 79 | + <created_user>-</created_user> | |
| 80 | + <created_date>2016/06/29 13:15:32.118</created_date> | |
| 81 | + <modified_user>-</modified_user> | |
| 82 | + <modified_date>2016/06/29 13:15:32.118</modified_date> | |
| 83 | + <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA=</key_for_session_key> | |
| 84 | + <is_key_private>N</is_key_private> | |
| 85 | + </info> | |
| 86 | + <notepads> | |
| 87 | + <notepad> | |
| 88 | + <note>配车分当前/历史/计划,历史配车有终止时间,然后是否切换基本都是1
是否切换 暂时不知道什么意思,当前配车都设置为0
终止时间 当前配车没有终止时间,这个估计要作为查询条件的
早班时间 没有暂时空着
末班时间 没有暂时空着</note> | |
| 89 | + <xloc>260</xloc> | |
| 90 | + <yloc>124</yloc> | |
| 91 | + <width>391</width> | |
| 92 | + <heigth>90</heigth> | |
| 93 | + <fontname>YaHei Consolas Hybrid</fontname> | |
| 94 | + <fontsize>12</fontsize> | |
| 95 | + <fontbold>N</fontbold> | |
| 96 | + <fontitalic>N</fontitalic> | |
| 97 | + <fontcolorred>0</fontcolorred> | |
| 98 | + <fontcolorgreen>0</fontcolorgreen> | |
| 99 | + <fontcolorblue>0</fontcolorblue> | |
| 100 | + <backgroundcolorred>255</backgroundcolorred> | |
| 101 | + <backgroundcolorgreen>205</backgroundcolorgreen> | |
| 102 | + <backgroundcolorblue>112</backgroundcolorblue> | |
| 103 | + <bordercolorred>100</bordercolorred> | |
| 104 | + <bordercolorgreen>100</bordercolorgreen> | |
| 105 | + <bordercolorblue>100</bordercolorblue> | |
| 106 | + <drawshadow>Y</drawshadow> | |
| 107 | + </notepad> | |
| 108 | + </notepads> | |
| 109 | + <connection> | |
| 110 | + <name>bus_control_variable</name> | |
| 111 | + <server>${v_db_ip}</server> | |
| 112 | + <type>MYSQL</type> | |
| 113 | + <access>Native</access> | |
| 114 | + <database>control</database> | |
| 115 | + <port>3306</port> | |
| 116 | + <username>${v_db_uname}</username> | |
| 117 | + <password>${v_db_pwd}</password> | |
| 118 | + <servername/> | |
| 119 | + <data_tablespace/> | |
| 120 | + <index_tablespace/> | |
| 121 | + <attributes> | |
| 122 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 123 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 124 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 125 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 126 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 127 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 128 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 129 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 130 | + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute> | |
| 131 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 132 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 133 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 134 | + </attributes> | |
| 135 | + </connection> | |
| 136 | + <connection> | |
| 137 | + <name>bus_control_公司_201</name> | |
| 138 | + <server>localhost</server> | |
| 139 | + <type>MYSQL</type> | |
| 140 | + <access>Native</access> | |
| 141 | + <database>control</database> | |
| 142 | + <port>3306</port> | |
| 143 | + <username>root</username> | |
| 144 | + <password>Encrypted </password> | |
| 145 | + <servername/> | |
| 146 | + <data_tablespace/> | |
| 147 | + <index_tablespace/> | |
| 148 | + <attributes> | |
| 149 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 150 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 151 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 152 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 153 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 154 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 155 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 156 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 157 | + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute> | |
| 158 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 159 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 160 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 161 | + </attributes> | |
| 162 | + </connection> | |
| 163 | + <connection> | |
| 164 | + <name>bus_control_本机</name> | |
| 165 | + <server>localhost</server> | |
| 166 | + <type>MYSQL</type> | |
| 167 | + <access>Native</access> | |
| 168 | + <database>control</database> | |
| 169 | + <port>3306</port> | |
| 170 | + <username>root</username> | |
| 171 | + <password>Encrypted </password> | |
| 172 | + <servername/> | |
| 173 | + <data_tablespace/> | |
| 174 | + <index_tablespace/> | |
| 175 | + <attributes> | |
| 176 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 177 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 178 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 179 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 180 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 181 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 182 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 183 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 184 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 185 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 186 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 187 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 188 | + </attributes> | |
| 189 | + </connection> | |
| 190 | + <connection> | |
| 191 | + <name>xlab_mysql_youle</name> | |
| 192 | + <server>101.231.124.8</server> | |
| 193 | + <type>MYSQL</type> | |
| 194 | + <access>Native</access> | |
| 195 | + <database>xlab_youle</database> | |
| 196 | + <port>45687</port> | |
| 197 | + <username>xlab-youle</username> | |
| 198 | + <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password> | |
| 199 | + <servername/> | |
| 200 | + <data_tablespace/> | |
| 201 | + <index_tablespace/> | |
| 202 | + <attributes> | |
| 203 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 204 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 205 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 206 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 207 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 208 | + <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute> | |
| 209 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 210 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 211 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 212 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 213 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 214 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 215 | + </attributes> | |
| 216 | + </connection> | |
| 217 | + <connection> | |
| 218 | + <name>xlab_mysql_youle(本机)</name> | |
| 219 | + <server>localhost</server> | |
| 220 | + <type>MYSQL</type> | |
| 221 | + <access>Native</access> | |
| 222 | + <database>xlab_youle</database> | |
| 223 | + <port>3306</port> | |
| 224 | + <username>root</username> | |
| 225 | + <password>Encrypted </password> | |
| 226 | + <servername/> | |
| 227 | + <data_tablespace/> | |
| 228 | + <index_tablespace/> | |
| 229 | + <attributes> | |
| 230 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 231 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 232 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 233 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 234 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 235 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 236 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 237 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 238 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 239 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 240 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 241 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 242 | + </attributes> | |
| 243 | + </connection> | |
| 244 | + <connection> | |
| 245 | + <name>xlab_youle</name> | |
| 246 | + <server/> | |
| 247 | + <type>MYSQL</type> | |
| 248 | + <access>JNDI</access> | |
| 249 | + <database>xlab_youle</database> | |
| 250 | + <port>1521</port> | |
| 251 | + <username/> | |
| 252 | + <password>Encrypted </password> | |
| 253 | + <servername/> | |
| 254 | + <data_tablespace/> | |
| 255 | + <index_tablespace/> | |
| 256 | + <attributes> | |
| 257 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 258 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 259 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 260 | + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | |
| 261 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 262 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 263 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 264 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 265 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 266 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 267 | + </attributes> | |
| 268 | + </connection> | |
| 269 | + <order> | |
| 270 | + <hop> <from>原始系统导出的Excel输入</from><to>字段选择</to><enabled>Y</enabled> </hop> | |
| 271 | + <hop> <from>字段选择</from><to>查找线路关联</to><enabled>Y</enabled> </hop> | |
| 272 | + <hop> <from>插入/更新bsth_c_s_ccinfo</from><to>错误输出</to><enabled>Y</enabled> </hop> | |
| 273 | + <hop> <from>查找线路关联</from><to>查找车辆关联</to><enabled>Y</enabled> </hop> | |
| 274 | + <hop> <from>查找车辆关联</from><to>是否切换</to><enabled>Y</enabled> </hop> | |
| 275 | + <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>插入/更新bsth_c_s_ccinfo</to><enabled>Y</enabled> </hop> | |
| 278 | + </order> | |
| 279 | + <step> | |
| 280 | + <name>原始系统导出的Excel输入</name> | |
| 281 | + <type>ExcelInput</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 | + <header>Y</header> | |
| 291 | + <noempty>Y</noempty> | |
| 292 | + <stoponempty>N</stoponempty> | |
| 293 | + <filefield/> | |
| 294 | + <sheetfield/> | |
| 295 | + <sheetrownumfield/> | |
| 296 | + <rownumfield/> | |
| 297 | + <sheetfield/> | |
| 298 | + <filefield/> | |
| 299 | + <limit>0</limit> | |
| 300 | + <encoding/> | |
| 301 | + <add_to_result_filenames>Y</add_to_result_filenames> | |
| 302 | + <accept_filenames>Y</accept_filenames> | |
| 303 | + <accept_field>filepath_</accept_field> | |
| 304 | + <accept_stepname>获取变量</accept_stepname> | |
| 305 | + <file> | |
| 306 | + <name/> | |
| 307 | + <filemask/> | |
| 308 | + <exclude_filemask/> | |
| 309 | + <file_required>N</file_required> | |
| 310 | + <include_subfolders>N</include_subfolders> | |
| 311 | + </file> | |
| 312 | + <fields> | |
| 313 | + <field> | |
| 314 | + <name>线路</name> | |
| 315 | + <type>String</type> | |
| 316 | + <length>-1</length> | |
| 317 | + <precision>-1</precision> | |
| 318 | + <trim_type>none</trim_type> | |
| 319 | + <repeat>N</repeat> | |
| 320 | + <format/> | |
| 321 | + <currency/> | |
| 322 | + <decimal/> | |
| 323 | + <group/> | |
| 324 | + </field> | |
| 325 | + <field> | |
| 326 | + <name>内部编码</name> | |
| 327 | + <type>String</type> | |
| 328 | + <length>-1</length> | |
| 329 | + <precision>-1</precision> | |
| 330 | + <trim_type>none</trim_type> | |
| 331 | + <repeat>N</repeat> | |
| 332 | + <format/> | |
| 333 | + <currency/> | |
| 334 | + <decimal/> | |
| 335 | + <group/> | |
| 336 | + </field> | |
| 337 | + <field> | |
| 338 | + <name>启用日期</name> | |
| 339 | + <type>String</type> | |
| 340 | + <length>-1</length> | |
| 341 | + <precision>-1</precision> | |
| 342 | + <trim_type>none</trim_type> | |
| 343 | + <repeat>N</repeat> | |
| 344 | + <format/> | |
| 345 | + <currency/> | |
| 346 | + <decimal/> | |
| 347 | + <group/> | |
| 348 | + </field> | |
| 349 | + <field> | |
| 350 | + <name>终结日期</name> | |
| 351 | + <type>String</type> | |
| 352 | + <length>-1</length> | |
| 353 | + <precision>-1</precision> | |
| 354 | + <trim_type>none</trim_type> | |
| 355 | + <repeat>N</repeat> | |
| 356 | + <format/> | |
| 357 | + <currency/> | |
| 358 | + <decimal/> | |
| 359 | + <group/> | |
| 360 | + </field> | |
| 361 | + <field> | |
| 362 | + <name>停车点</name> | |
| 363 | + <type>String</type> | |
| 364 | + <length>-1</length> | |
| 365 | + <precision>-1</precision> | |
| 366 | + <trim_type>none</trim_type> | |
| 367 | + <repeat>N</repeat> | |
| 368 | + <format/> | |
| 369 | + <currency/> | |
| 370 | + <decimal/> | |
| 371 | + <group/> | |
| 372 | + </field> | |
| 373 | + </fields> | |
| 374 | + <sheets> | |
| 375 | + <sheet> | |
| 376 | + <name>工作表1</name> | |
| 377 | + <startrow>0</startrow> | |
| 378 | + <startcol>0</startcol> | |
| 379 | + </sheet> | |
| 380 | + </sheets> | |
| 381 | + <strict_types>N</strict_types> | |
| 382 | + <error_ignored>N</error_ignored> | |
| 383 | + <error_line_skipped>N</error_line_skipped> | |
| 384 | + <bad_line_files_destination_directory/> | |
| 385 | + <bad_line_files_extension>warning</bad_line_files_extension> | |
| 386 | + <error_line_files_destination_directory/> | |
| 387 | + <error_line_files_extension>error</error_line_files_extension> | |
| 388 | + <line_number_files_destination_directory/> | |
| 389 | + <line_number_files_extension>line</line_number_files_extension> | |
| 390 | + <shortFileFieldName/> | |
| 391 | + <pathFieldName/> | |
| 392 | + <hiddenFieldName/> | |
| 393 | + <lastModificationTimeFieldName/> | |
| 394 | + <uriNameFieldName/> | |
| 395 | + <rootUriNameFieldName/> | |
| 396 | + <extensionFieldName/> | |
| 397 | + <sizeFieldName/> | |
| 398 | + <spreadsheet_type>JXL</spreadsheet_type> | |
| 399 | + <cluster_schema/> | |
| 400 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 401 | + <xloc>155</xloc> | |
| 402 | + <yloc>56</yloc> | |
| 403 | + <draw>Y</draw> | |
| 404 | + </GUI> | |
| 405 | + </step> | |
| 406 | + | |
| 407 | + <step> | |
| 408 | + <name>字段选择</name> | |
| 409 | + <type>SelectValues</type> | |
| 410 | + <description/> | |
| 411 | + <distribute>Y</distribute> | |
| 412 | + <custom_distribution/> | |
| 413 | + <copies>1</copies> | |
| 414 | + <partitioning> | |
| 415 | + <method>none</method> | |
| 416 | + <schema_name/> | |
| 417 | + </partitioning> | |
| 418 | + <fields> <field> <name>线路</name> | |
| 419 | + <rename>xl</rename> | |
| 420 | + <length>-2</length> | |
| 421 | + <precision>-2</precision> | |
| 422 | + </field> <field> <name>内部编码</name> | |
| 423 | + <rename>cl</rename> | |
| 424 | + <length>-2</length> | |
| 425 | + <precision>-2</precision> | |
| 426 | + </field> <field> <name>启用日期</name> | |
| 427 | + <rename>qyrq</rename> | |
| 428 | + <length>-2</length> | |
| 429 | + <precision>-2</precision> | |
| 430 | + </field> <field> <name>终结日期</name> | |
| 431 | + <rename>zzrq</rename> | |
| 432 | + <length>-2</length> | |
| 433 | + <precision>-2</precision> | |
| 434 | + </field> <field> <name>停车点</name> | |
| 435 | + <rename>tcd</rename> | |
| 436 | + <length>-2</length> | |
| 437 | + <precision>-2</precision> | |
| 438 | + </field> <select_unspecified>N</select_unspecified> | |
| 439 | + </fields> <cluster_schema/> | |
| 440 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 441 | + <xloc>306</xloc> | |
| 442 | + <yloc>56</yloc> | |
| 443 | + <draw>Y</draw> | |
| 444 | + </GUI> | |
| 445 | + </step> | |
| 446 | + | |
| 447 | + <step> | |
| 448 | + <name>插入/更新bsth_c_s_ccinfo</name> | |
| 449 | + <type>InsertUpdate</type> | |
| 450 | + <description/> | |
| 451 | + <distribute>Y</distribute> | |
| 452 | + <custom_distribution/> | |
| 453 | + <copies>1</copies> | |
| 454 | + <partitioning> | |
| 455 | + <method>none</method> | |
| 456 | + <schema_name/> | |
| 457 | + </partitioning> | |
| 458 | + <connection>bus_control_variable</connection> | |
| 459 | + <commit>100</commit> | |
| 460 | + <update_bypassed>N</update_bypassed> | |
| 461 | + <lookup> | |
| 462 | + <schema/> | |
| 463 | + <table>bsth_c_s_ccinfo</table> | |
| 464 | + <key> | |
| 465 | + <name>xlId</name> | |
| 466 | + <field>xl</field> | |
| 467 | + <condition>=</condition> | |
| 468 | + <name2/> | |
| 469 | + </key> | |
| 470 | + <key> | |
| 471 | + <name>clId</name> | |
| 472 | + <field>cl</field> | |
| 473 | + <condition>=</condition> | |
| 474 | + <name2/> | |
| 475 | + </key> | |
| 476 | + <value> | |
| 477 | + <name>xl</name> | |
| 478 | + <rename>xlId</rename> | |
| 479 | + <update>Y</update> | |
| 480 | + </value> | |
| 481 | + <value> | |
| 482 | + <name>cl</name> | |
| 483 | + <rename>clId</rename> | |
| 484 | + <update>Y</update> | |
| 485 | + </value> | |
| 486 | + <value> | |
| 487 | + <name>is_switch</name> | |
| 488 | + <rename>isswitch</rename> | |
| 489 | + <update>Y</update> | |
| 490 | + </value> | |
| 491 | + <value> | |
| 492 | + <name>tcd</name> | |
| 493 | + <rename>tcd</rename> | |
| 494 | + <update>Y</update> | |
| 495 | + </value> | |
| 496 | + <value> | |
| 497 | + <name>zzrq</name> | |
| 498 | + <rename>zzrq</rename> | |
| 499 | + <update>Y</update> | |
| 500 | + </value> | |
| 501 | + <value> | |
| 502 | + <name>qyrq</name> | |
| 503 | + <rename>qyrq</rename> | |
| 504 | + <update>Y</update> | |
| 505 | + </value> | |
| 506 | + </lookup> | |
| 507 | + <cluster_schema/> | |
| 508 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 509 | + <xloc>715</xloc> | |
| 510 | + <yloc>197</yloc> | |
| 511 | + <draw>Y</draw> | |
| 512 | + </GUI> | |
| 513 | + </step> | |
| 514 | + | |
| 515 | + <step> | |
| 516 | + <name>是否切换</name> | |
| 517 | + <type>Constant</type> | |
| 518 | + <description/> | |
| 519 | + <distribute>Y</distribute> | |
| 520 | + <custom_distribution/> | |
| 521 | + <copies>1</copies> | |
| 522 | + <partitioning> | |
| 523 | + <method>none</method> | |
| 524 | + <schema_name/> | |
| 525 | + </partitioning> | |
| 526 | + <fields> | |
| 527 | + <field> | |
| 528 | + <name>isswitch</name> | |
| 529 | + <type>Integer</type> | |
| 530 | + <format/> | |
| 531 | + <currency/> | |
| 532 | + <decimal/> | |
| 533 | + <group/> | |
| 534 | + <nullif>0</nullif> | |
| 535 | + <length>-1</length> | |
| 536 | + <precision>-1</precision> | |
| 537 | + <set_empty_string>N</set_empty_string> | |
| 538 | + </field> | |
| 539 | + </fields> | |
| 540 | + <cluster_schema/> | |
| 541 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 542 | + <xloc>713</xloc> | |
| 543 | + <yloc>54</yloc> | |
| 544 | + <draw>Y</draw> | |
| 545 | + </GUI> | |
| 546 | + </step> | |
| 547 | + | |
| 548 | + <step> | |
| 549 | + <name>查找线路关联</name> | |
| 550 | + <type>DBLookup</type> | |
| 551 | + <description/> | |
| 552 | + <distribute>Y</distribute> | |
| 553 | + <custom_distribution/> | |
| 554 | + <copies>1</copies> | |
| 555 | + <partitioning> | |
| 556 | + <method>none</method> | |
| 557 | + <schema_name/> | |
| 558 | + </partitioning> | |
| 559 | + <connection>bus_control_variable</connection> | |
| 560 | + <cache>N</cache> | |
| 561 | + <cache_load_all>N</cache_load_all> | |
| 562 | + <cache_size>0</cache_size> | |
| 563 | + <lookup> | |
| 564 | + <schema/> | |
| 565 | + <table>bsth_c_line</table> | |
| 566 | + <orderby/> | |
| 567 | + <fail_on_multiple>N</fail_on_multiple> | |
| 568 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 569 | + <key> | |
| 570 | + <name>xl</name> | |
| 571 | + <field>name</field> | |
| 572 | + <condition>=</condition> | |
| 573 | + <name2/> | |
| 574 | + </key> | |
| 575 | + <value> | |
| 576 | + <name>id</name> | |
| 577 | + <rename>xlId</rename> | |
| 578 | + <default/> | |
| 579 | + <type>Integer</type> | |
| 580 | + </value> | |
| 581 | + </lookup> | |
| 582 | + <cluster_schema/> | |
| 583 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 584 | + <xloc>439</xloc> | |
| 585 | + <yloc>56</yloc> | |
| 586 | + <draw>Y</draw> | |
| 587 | + </GUI> | |
| 588 | + </step> | |
| 589 | + | |
| 590 | + <step> | |
| 591 | + <name>查找车辆关联</name> | |
| 592 | + <type>DBLookup</type> | |
| 593 | + <description/> | |
| 594 | + <distribute>Y</distribute> | |
| 595 | + <custom_distribution/> | |
| 596 | + <copies>1</copies> | |
| 597 | + <partitioning> | |
| 598 | + <method>none</method> | |
| 599 | + <schema_name/> | |
| 600 | + </partitioning> | |
| 601 | + <connection>bus_control_variable</connection> | |
| 602 | + <cache>N</cache> | |
| 603 | + <cache_load_all>N</cache_load_all> | |
| 604 | + <cache_size>0</cache_size> | |
| 605 | + <lookup> | |
| 606 | + <schema/> | |
| 607 | + <table>bsth_c_cars</table> | |
| 608 | + <orderby/> | |
| 609 | + <fail_on_multiple>N</fail_on_multiple> | |
| 610 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 611 | + <key> | |
| 612 | + <name>cl</name> | |
| 613 | + <field>inside_code</field> | |
| 614 | + <condition>=</condition> | |
| 615 | + <name2/> | |
| 616 | + </key> | |
| 617 | + <value> | |
| 618 | + <name>id</name> | |
| 619 | + <rename>clId</rename> | |
| 620 | + <default/> | |
| 621 | + <type>Integer</type> | |
| 622 | + </value> | |
| 623 | + </lookup> | |
| 624 | + <cluster_schema/> | |
| 625 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 626 | + <xloc>579</xloc> | |
| 627 | + <yloc>55</yloc> | |
| 628 | + <draw>Y</draw> | |
| 629 | + </GUI> | |
| 630 | + </step> | |
| 631 | + | |
| 632 | + <step> | |
| 633 | + <name>获取变量</name> | |
| 634 | + <type>GetVariable</type> | |
| 635 | + <description/> | |
| 636 | + <distribute>Y</distribute> | |
| 637 | + <custom_distribution/> | |
| 638 | + <copies>1</copies> | |
| 639 | + <partitioning> | |
| 640 | + <method>none</method> | |
| 641 | + <schema_name/> | |
| 642 | + </partitioning> | |
| 643 | + <fields> | |
| 644 | + <field> | |
| 645 | + <name>filepath_</name> | |
| 646 | + <variable>${filepath}</variable> | |
| 647 | + <type>String</type> | |
| 648 | + <format/> | |
| 649 | + <currency/> | |
| 650 | + <decimal/> | |
| 651 | + <group/> | |
| 652 | + <length>-1</length> | |
| 653 | + <precision>-1</precision> | |
| 654 | + <trim_type>none</trim_type> | |
| 655 | + </field> | |
| 656 | + <field> | |
| 657 | + <name>erroroutputdir_</name> | |
| 658 | + <variable>${erroroutputdir}</variable> | |
| 659 | + <type>String</type> | |
| 660 | + <format/> | |
| 661 | + <currency/> | |
| 662 | + <decimal/> | |
| 663 | + <group/> | |
| 664 | + <length>-1</length> | |
| 665 | + <precision>-1</precision> | |
| 666 | + <trim_type>none</trim_type> | |
| 667 | + </field> | |
| 668 | + </fields> | |
| 669 | + <cluster_schema/> | |
| 670 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 671 | + <xloc>156</xloc> | |
| 672 | + <yloc>150</yloc> | |
| 673 | + <draw>Y</draw> | |
| 674 | + </GUI> | |
| 675 | + </step> | |
| 676 | + | |
| 677 | + <step> | |
| 678 | + <name>错误输出</name> | |
| 679 | + <type>ExcelOutput</type> | |
| 680 | + <description/> | |
| 681 | + <distribute>Y</distribute> | |
| 682 | + <custom_distribution/> | |
| 683 | + <copies>1</copies> | |
| 684 | + <partitioning> | |
| 685 | + <method>none</method> | |
| 686 | + <schema_name/> | |
| 687 | + </partitioning> | |
| 688 | + <header>Y</header> | |
| 689 | + <footer>N</footer> | |
| 690 | + <encoding>UTF-8</encoding> | |
| 691 | + <append>N</append> | |
| 692 | + <add_to_result_filenames>Y</add_to_result_filenames> | |
| 693 | + <file> | |
| 694 | + <name>${erroroutputdir}/当前配车_错误</name> | |
| 695 | + <extention>xls</extention> | |
| 696 | + <do_not_open_newfile_init>N</do_not_open_newfile_init> | |
| 697 | + <create_parent_folder>N</create_parent_folder> | |
| 698 | + <split>N</split> | |
| 699 | + <add_date>N</add_date> | |
| 700 | + <add_time>N</add_time> | |
| 701 | + <SpecifyFormat>N</SpecifyFormat> | |
| 702 | + <date_time_format/> | |
| 703 | + <sheetname>Sheet1</sheetname> | |
| 704 | + <autosizecolums>N</autosizecolums> | |
| 705 | + <nullisblank>N</nullisblank> | |
| 706 | + <protect_sheet>N</protect_sheet> | |
| 707 | + <password>Encrypted </password> | |
| 708 | + <splitevery>0</splitevery> | |
| 709 | + <usetempfiles>N</usetempfiles> | |
| 710 | + <tempdirectory/> | |
| 711 | + </file> | |
| 712 | + <template> | |
| 713 | + <enabled>N</enabled> | |
| 714 | + <append>N</append> | |
| 715 | + <filename>template.xls</filename> | |
| 716 | + </template> | |
| 717 | + <fields> | |
| 718 | + <field> | |
| 719 | + <name>xl</name> | |
| 720 | + <type>String</type> | |
| 721 | + <format/> | |
| 722 | + </field> | |
| 723 | + <field> | |
| 724 | + <name>cl</name> | |
| 725 | + <type>String</type> | |
| 726 | + <format/> | |
| 727 | + </field> | |
| 728 | + <field> | |
| 729 | + <name>qyrq</name> | |
| 730 | + <type>String</type> | |
| 731 | + <format/> | |
| 732 | + </field> | |
| 733 | + <field> | |
| 734 | + <name>zzrq</name> | |
| 735 | + <type>String</type> | |
| 736 | + <format/> | |
| 737 | + </field> | |
| 738 | + <field> | |
| 739 | + <name>tcd</name> | |
| 740 | + <type>String</type> | |
| 741 | + <format/> | |
| 742 | + </field> | |
| 743 | + <field> | |
| 744 | + <name>xlId</name> | |
| 745 | + <type>Integer</type> | |
| 746 | + <format/> | |
| 747 | + </field> | |
| 748 | + <field> | |
| 749 | + <name>clId</name> | |
| 750 | + <type>Integer</type> | |
| 751 | + <format/> | |
| 752 | + </field> | |
| 753 | + <field> | |
| 754 | + <name>isswitch</name> | |
| 755 | + <type>Integer</type> | |
| 756 | + <format/> | |
| 757 | + </field> | |
| 758 | + <field> | |
| 759 | + <name>error_count</name> | |
| 760 | + <type>Integer</type> | |
| 761 | + <format/> | |
| 762 | + </field> | |
| 763 | + <field> | |
| 764 | + <name>error_desc</name> | |
| 765 | + <type>String</type> | |
| 766 | + <format/> | |
| 767 | + </field> | |
| 768 | + <field> | |
| 769 | + <name>error_column1</name> | |
| 770 | + <type>String</type> | |
| 771 | + <format/> | |
| 772 | + </field> | |
| 773 | + <field> | |
| 774 | + <name>error_column2</name> | |
| 775 | + <type>String</type> | |
| 776 | + <format/> | |
| 777 | + </field> | |
| 778 | + </fields> | |
| 779 | + <custom> | |
| 780 | + <header_font_name>arial</header_font_name> | |
| 781 | + <header_font_size>10</header_font_size> | |
| 782 | + <header_font_bold>N</header_font_bold> | |
| 783 | + <header_font_italic>N</header_font_italic> | |
| 784 | + <header_font_underline>no</header_font_underline> | |
| 785 | + <header_font_orientation>horizontal</header_font_orientation> | |
| 786 | + <header_font_color>black</header_font_color> | |
| 787 | + <header_background_color>none</header_background_color> | |
| 788 | + <header_row_height>255</header_row_height> | |
| 789 | + <header_alignment>left</header_alignment> | |
| 790 | + <header_image/> | |
| 791 | + <row_font_name>arial</row_font_name> | |
| 792 | + <row_font_size>10</row_font_size> | |
| 793 | + <row_font_color>black</row_font_color> | |
| 794 | + <row_background_color>none</row_background_color> | |
| 795 | + </custom> | |
| 796 | + <cluster_schema/> | |
| 797 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 798 | + <xloc>718</xloc> | |
| 799 | + <yloc>314</yloc> | |
| 800 | + <draw>Y</draw> | |
| 801 | + </GUI> | |
| 802 | + </step> | |
| 803 | + | |
| 804 | + <step> | |
| 805 | + <name>日期转换</name> | |
| 806 | + <type>SelectValues</type> | |
| 807 | + <description/> | |
| 808 | + <distribute>Y</distribute> | |
| 809 | + <custom_distribution/> | |
| 810 | + <copies>1</copies> | |
| 811 | + <partitioning> | |
| 812 | + <method>none</method> | |
| 813 | + <schema_name/> | |
| 814 | + </partitioning> | |
| 815 | + <fields> <select_unspecified>N</select_unspecified> | |
| 816 | + <meta> <name>qyrq</name> | |
| 817 | + <rename>qyrq</rename> | |
| 818 | + <type>Date</type> | |
| 819 | + <length>-2</length> | |
| 820 | + <precision>-2</precision> | |
| 821 | + <conversion_mask>yyyy-MM-dd</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> </fields> <cluster_schema/> | |
| 832 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 833 | + <xloc>913</xloc> | |
| 834 | + <yloc>54</yloc> | |
| 835 | + <draw>Y</draw> | |
| 836 | + </GUI> | |
| 837 | + </step> | |
| 838 | + | |
| 839 | + <step_error_handling> | |
| 840 | + <error> | |
| 841 | + <source_step>插入/更新bsth_c_s_ccinfo</source_step> | |
| 842 | + <target_step>错误输出</target_step> | |
| 843 | + <is_enabled>Y</is_enabled> | |
| 844 | + <nr_valuename>error_count</nr_valuename> | |
| 845 | + <descriptions_valuename>error_desc</descriptions_valuename> | |
| 846 | + <fields_valuename>error_column1</fields_valuename> | |
| 847 | + <codes_valuename>error_column2</codes_valuename> | |
| 848 | + <max_errors/> | |
| 849 | + <max_pct_errors/> | |
| 850 | + <min_pct_rows/> | |
| 851 | + </error> | |
| 852 | + </step_error_handling> | |
| 853 | + <slave-step-copy-partition-distribution> | |
| 854 | +</slave-step-copy-partition-distribution> | |
| 855 | + <slave_transformation>N</slave_transformation> | |
| 856 | + | |
| 857 | +</transformation> | ... | ... |
src/main/resources/datatools/ktrs/carsDataInput.ktr
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<transformation> | |
| 3 | - <info> | |
| 4 | - <name>carsDataInput</name> | |
| 5 | - <description>车辆信息导入</description> | |
| 6 | - <extended_description>车辆基础信息</extended_description> | |
| 7 | - <trans_version/> | |
| 8 | - <trans_type>Normal</trans_type> | |
| 9 | - <trans_status>0</trans_status> | |
| 10 | - <directory>/</directory> | |
| 11 | - <parameters> | |
| 12 | - <parameter> | |
| 13 | - <name>erroroutputdir</name> | |
| 14 | - <default_value/> | |
| 15 | - <description>ktr step配置的错误输出目录</description> | |
| 16 | - </parameter> | |
| 17 | - <parameter> | |
| 18 | - <name>filepath</name> | |
| 19 | - <default_value/> | |
| 20 | - <description>待处理导入的excel文件</description> | |
| 21 | - </parameter> | |
| 22 | - </parameters> | |
| 23 | - <log> | |
| 24 | -<trans-log-table><connection/> | |
| 25 | -<schema/> | |
| 26 | -<table/> | |
| 27 | -<size_limit_lines/> | |
| 28 | -<interval/> | |
| 29 | -<timeout_days/> | |
| 30 | -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STATUS</id><enabled>Y</enabled><name>STATUS</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name><subject/></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name><subject/></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name><subject/></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name><subject/></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name><subject/></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name><subject/></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>STARTDATE</id><enabled>Y</enabled><name>STARTDATE</name></field><field><id>ENDDATE</id><enabled>Y</enabled><name>ENDDATE</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>DEPDATE</id><enabled>Y</enabled><name>DEPDATE</name></field><field><id>REPLAYDATE</id><enabled>Y</enabled><name>REPLAYDATE</name></field><field><id>LOG_FIELD</id><enabled>Y</enabled><name>LOG_FIELD</name></field><field><id>EXECUTING_SERVER</id><enabled>N</enabled><name>EXECUTING_SERVER</name></field><field><id>EXECUTING_USER</id><enabled>N</enabled><name>EXECUTING_USER</name></field><field><id>CLIENT</id><enabled>N</enabled><name>CLIENT</name></field></trans-log-table> | |
| 31 | -<perf-log-table><connection/> | |
| 32 | -<schema/> | |
| 33 | -<table/> | |
| 34 | -<interval/> | |
| 35 | -<timeout_days/> | |
| 36 | -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>SEQ_NR</id><enabled>Y</enabled><name>SEQ_NR</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>INPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>INPUT_BUFFER_ROWS</name></field><field><id>OUTPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>OUTPUT_BUFFER_ROWS</name></field></perf-log-table> | |
| 37 | -<channel-log-table><connection/> | |
| 38 | -<schema/> | |
| 39 | -<table/> | |
| 40 | -<timeout_days/> | |
| 41 | -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>LOGGING_OBJECT_TYPE</id><enabled>Y</enabled><name>LOGGING_OBJECT_TYPE</name></field><field><id>OBJECT_NAME</id><enabled>Y</enabled><name>OBJECT_NAME</name></field><field><id>OBJECT_COPY</id><enabled>Y</enabled><name>OBJECT_COPY</name></field><field><id>REPOSITORY_DIRECTORY</id><enabled>Y</enabled><name>REPOSITORY_DIRECTORY</name></field><field><id>FILENAME</id><enabled>Y</enabled><name>FILENAME</name></field><field><id>OBJECT_ID</id><enabled>Y</enabled><name>OBJECT_ID</name></field><field><id>OBJECT_REVISION</id><enabled>Y</enabled><name>OBJECT_REVISION</name></field><field><id>PARENT_CHANNEL_ID</id><enabled>Y</enabled><name>PARENT_CHANNEL_ID</name></field><field><id>ROOT_CHANNEL_ID</id><enabled>Y</enabled><name>ROOT_CHANNEL_ID</name></field></channel-log-table> | |
| 42 | -<step-log-table><connection/> | |
| 43 | -<schema/> | |
| 44 | -<table/> | |
| 45 | -<timeout_days/> | |
| 46 | -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>LOG_FIELD</id><enabled>N</enabled><name>LOG_FIELD</name></field></step-log-table> | |
| 47 | -<metrics-log-table><connection/> | |
| 48 | -<schema/> | |
| 49 | -<table/> | |
| 50 | -<timeout_days/> | |
| 51 | -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>METRICS_DATE</id><enabled>Y</enabled><name>METRICS_DATE</name></field><field><id>METRICS_CODE</id><enabled>Y</enabled><name>METRICS_CODE</name></field><field><id>METRICS_DESCRIPTION</id><enabled>Y</enabled><name>METRICS_DESCRIPTION</name></field><field><id>METRICS_SUBJECT</id><enabled>Y</enabled><name>METRICS_SUBJECT</name></field><field><id>METRICS_TYPE</id><enabled>Y</enabled><name>METRICS_TYPE</name></field><field><id>METRICS_VALUE</id><enabled>Y</enabled><name>METRICS_VALUE</name></field></metrics-log-table> | |
| 52 | - </log> | |
| 53 | - <maxdate> | |
| 54 | - <connection/> | |
| 55 | - <table/> | |
| 56 | - <field/> | |
| 57 | - <offset>0.0</offset> | |
| 58 | - <maxdiff>0.0</maxdiff> | |
| 59 | - </maxdate> | |
| 60 | - <size_rowset>10000</size_rowset> | |
| 61 | - <sleep_time_empty>50</sleep_time_empty> | |
| 62 | - <sleep_time_full>50</sleep_time_full> | |
| 63 | - <unique_connections>N</unique_connections> | |
| 64 | - <feedback_shown>Y</feedback_shown> | |
| 65 | - <feedback_size>50000</feedback_size> | |
| 66 | - <using_thread_priorities>Y</using_thread_priorities> | |
| 67 | - <shared_objects_file/> | |
| 68 | - <capture_step_performance>N</capture_step_performance> | |
| 69 | - <step_performance_capturing_delay>1000</step_performance_capturing_delay> | |
| 70 | - <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit> | |
| 71 | - <dependencies> | |
| 72 | - </dependencies> | |
| 73 | - <partitionschemas> | |
| 74 | - </partitionschemas> | |
| 75 | - <slaveservers> | |
| 76 | - </slaveservers> | |
| 77 | - <clusterschemas> | |
| 78 | - </clusterschemas> | |
| 79 | - <created_user>-</created_user> | |
| 80 | - <created_date>2016/06/23 17:44:46.781</created_date> | |
| 81 | - <modified_user>-</modified_user> | |
| 82 | - <modified_date>2016/06/23 17:44:46.781</modified_date> | |
| 83 | - <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA=</key_for_session_key> | |
| 84 | - <is_key_private>N</is_key_private> | |
| 85 | - </info> | |
| 86 | - <notepads> | |
| 87 | - <notepad> | |
| 88 | - <note>原系统的导出表,有些数据是没有的,有些数据也有问题,如下
报废日期去掉
车辆编码,暂时用1代替
是否电车 没有
车辆序号 没有
是否切换 没有
线路名称(这里不做关联,只是登记的时候使用) 咩有</note> | |
| 89 | - <xloc>365</xloc> | |
| 90 | - <yloc>136</yloc> | |
| 91 | - <width>346</width> | |
| 92 | - <heigth>122</heigth> | |
| 93 | - <fontname>YaHei Consolas Hybrid</fontname> | |
| 94 | - <fontsize>12</fontsize> | |
| 95 | - <fontbold>N</fontbold> | |
| 96 | - <fontitalic>N</fontitalic> | |
| 97 | - <fontcolorred>0</fontcolorred> | |
| 98 | - <fontcolorgreen>0</fontcolorgreen> | |
| 99 | - <fontcolorblue>0</fontcolorblue> | |
| 100 | - <backgroundcolorred>255</backgroundcolorred> | |
| 101 | - <backgroundcolorgreen>205</backgroundcolorgreen> | |
| 102 | - <backgroundcolorblue>112</backgroundcolorblue> | |
| 103 | - <bordercolorred>100</bordercolorred> | |
| 104 | - <bordercolorgreen>100</bordercolorgreen> | |
| 105 | - <bordercolorblue>100</bordercolorblue> | |
| 106 | - <drawshadow>Y</drawshadow> | |
| 107 | - </notepad> | |
| 108 | - </notepads> | |
| 109 | - <connection> | |
| 110 | - <name>bus_control_variable</name> | |
| 111 | - <server>${v_db_ip}</server> | |
| 112 | - <type>MYSQL</type> | |
| 113 | - <access>Native</access> | |
| 114 | - <database>control</database> | |
| 115 | - <port>3306</port> | |
| 116 | - <username>${v_db_uname}</username> | |
| 117 | - <password>${v_db_pwd}</password> | |
| 118 | - <servername/> | |
| 119 | - <data_tablespace/> | |
| 120 | - <index_tablespace/> | |
| 121 | - <attributes> | |
| 122 | - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 123 | - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 124 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 125 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 126 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 127 | - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 128 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 129 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 130 | - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute> | |
| 131 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 132 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 133 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 134 | - </attributes> | |
| 135 | - </connection> | |
| 136 | - <connection> | |
| 137 | - <name>bus_control_公司_201</name> | |
| 138 | - <server>localhost</server> | |
| 139 | - <type>MYSQL</type> | |
| 140 | - <access>Native</access> | |
| 141 | - <database>control</database> | |
| 142 | - <port>3306</port> | |
| 143 | - <username>root</username> | |
| 144 | - <password>Encrypted </password> | |
| 145 | - <servername/> | |
| 146 | - <data_tablespace/> | |
| 147 | - <index_tablespace/> | |
| 148 | - <attributes> | |
| 149 | - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 150 | - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 151 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 152 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 153 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 154 | - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 155 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 156 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 157 | - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute> | |
| 158 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 159 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 160 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 161 | - </attributes> | |
| 162 | - </connection> | |
| 163 | - <connection> | |
| 164 | - <name>bus_control_本机</name> | |
| 165 | - <server>localhost</server> | |
| 166 | - <type>MYSQL</type> | |
| 167 | - <access>Native</access> | |
| 168 | - <database>control</database> | |
| 169 | - <port>3306</port> | |
| 170 | - <username>root</username> | |
| 171 | - <password>Encrypted </password> | |
| 172 | - <servername/> | |
| 173 | - <data_tablespace/> | |
| 174 | - <index_tablespace/> | |
| 175 | - <attributes> | |
| 176 | - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 177 | - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 178 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 179 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 180 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 181 | - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 182 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 183 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 184 | - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 185 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 186 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 187 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 188 | - </attributes> | |
| 189 | - </connection> | |
| 190 | - <connection> | |
| 191 | - <name>xlab_mysql_youle</name> | |
| 192 | - <server>101.231.124.8</server> | |
| 193 | - <type>MYSQL</type> | |
| 194 | - <access>Native</access> | |
| 195 | - <database>xlab_youle</database> | |
| 196 | - <port>45687</port> | |
| 197 | - <username>xlab-youle</username> | |
| 198 | - <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password> | |
| 199 | - <servername/> | |
| 200 | - <data_tablespace/> | |
| 201 | - <index_tablespace/> | |
| 202 | - <attributes> | |
| 203 | - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 204 | - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 205 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 206 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 207 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 208 | - <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute> | |
| 209 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 210 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 211 | - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 212 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 213 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 214 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 215 | - </attributes> | |
| 216 | - </connection> | |
| 217 | - <connection> | |
| 218 | - <name>xlab_mysql_youle(本机)</name> | |
| 219 | - <server>localhost</server> | |
| 220 | - <type>MYSQL</type> | |
| 221 | - <access>Native</access> | |
| 222 | - <database>xlab_youle</database> | |
| 223 | - <port>3306</port> | |
| 224 | - <username>root</username> | |
| 225 | - <password>Encrypted </password> | |
| 226 | - <servername/> | |
| 227 | - <data_tablespace/> | |
| 228 | - <index_tablespace/> | |
| 229 | - <attributes> | |
| 230 | - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 231 | - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 232 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 233 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 234 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 235 | - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 236 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 237 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 238 | - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 239 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 240 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 241 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 242 | - </attributes> | |
| 243 | - </connection> | |
| 244 | - <connection> | |
| 245 | - <name>xlab_youle</name> | |
| 246 | - <server/> | |
| 247 | - <type>MYSQL</type> | |
| 248 | - <access>JNDI</access> | |
| 249 | - <database>xlab_youle</database> | |
| 250 | - <port>1521</port> | |
| 251 | - <username/> | |
| 252 | - <password>Encrypted </password> | |
| 253 | - <servername/> | |
| 254 | - <data_tablespace/> | |
| 255 | - <index_tablespace/> | |
| 256 | - <attributes> | |
| 257 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 258 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 259 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 260 | - <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | |
| 261 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 262 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 263 | - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 264 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 265 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 266 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 267 | - </attributes> | |
| 268 | - </connection> | |
| 269 | - <order> | |
| 270 | - <hop> <from>原始系统导出的Excel输入</from><to>字段选择</to><enabled>Y</enabled> </hop> | |
| 271 | - <hop> <from>字段选择</from><to>是否空调车</to><enabled>Y</enabled> </hop> | |
| 272 | - <hop> <from>插入/更新bsth_c_cars</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>有无人售票</to><enabled>Y</enabled> </hop> | |
| 277 | - <hop> <from>有无人售票</from><to>是否有LED服务屏</to><enabled>Y</enabled> </hop> | |
| 278 | - <hop> <from>公交企业代码</from><to>插入/更新bsth_c_cars</to><enabled>Y</enabled> </hop> | |
| 279 | - <hop> <from>获取变量</from><to>原始系统导出的Excel输入</to><enabled>Y</enabled> </hop> | |
| 280 | - </order> | |
| 281 | - <step> | |
| 282 | - <name>公交企业代码</name> | |
| 283 | - <type>ValueMapper</type> | |
| 284 | - <description/> | |
| 285 | - <distribute>Y</distribute> | |
| 286 | - <custom_distribution/> | |
| 287 | - <copies>1</copies> | |
| 288 | - <partitioning> | |
| 289 | - <method>none</method> | |
| 290 | - <schema_name/> | |
| 291 | - </partitioning> | |
| 292 | - <field_to_use>company</field_to_use> | |
| 293 | - <target_field>businessCode</target_field> | |
| 294 | - <non_match_default/> | |
| 295 | - <fields> | |
| 296 | - <field> | |
| 297 | - <source_value>上南公司</source_value> | |
| 298 | - <target_value>55</target_value> | |
| 299 | - </field> | |
| 300 | - <field> | |
| 301 | - <source_value>金高公司</source_value> | |
| 302 | - <target_value>22</target_value> | |
| 303 | - </field> | |
| 304 | - <field> | |
| 305 | - <source_value>杨高公司</source_value> | |
| 306 | - <target_value>05</target_value> | |
| 307 | - </field> | |
| 308 | - <field> | |
| 309 | - <source_value>南汇公司</source_value> | |
| 310 | - <target_value>26</target_value> | |
| 311 | - </field> | |
| 312 | - <field> | |
| 313 | - <source_value>公交公司</source_value> | |
| 314 | - <target_value>88</target_value> | |
| 315 | - </field> | |
| 316 | - <field> | |
| 317 | - <source_value>闵行公交</source_value> | |
| 318 | - <target_value>77</target_value> | |
| 319 | - </field> | |
| 320 | - </fields> | |
| 321 | - <cluster_schema/> | |
| 322 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 323 | - <xloc>841</xloc> | |
| 324 | - <yloc>166</yloc> | |
| 325 | - <draw>Y</draw> | |
| 326 | - </GUI> | |
| 327 | - </step> | |
| 328 | - | |
| 329 | - <step> | |
| 330 | - <name>原始系统导出的Excel输入</name> | |
| 331 | - <type>ExcelInput</type> | |
| 332 | - <description/> | |
| 333 | - <distribute>Y</distribute> | |
| 334 | - <custom_distribution/> | |
| 335 | - <copies>1</copies> | |
| 336 | - <partitioning> | |
| 337 | - <method>none</method> | |
| 338 | - <schema_name/> | |
| 339 | - </partitioning> | |
| 340 | - <header>Y</header> | |
| 341 | - <noempty>Y</noempty> | |
| 342 | - <stoponempty>N</stoponempty> | |
| 343 | - <filefield/> | |
| 344 | - <sheetfield/> | |
| 345 | - <sheetrownumfield/> | |
| 346 | - <rownumfield/> | |
| 347 | - <sheetfield/> | |
| 348 | - <filefield/> | |
| 349 | - <limit>0</limit> | |
| 350 | - <encoding/> | |
| 351 | - <add_to_result_filenames>Y</add_to_result_filenames> | |
| 352 | - <accept_filenames>Y</accept_filenames> | |
| 353 | - <accept_field>filepath_</accept_field> | |
| 354 | - <accept_stepname>获取变量</accept_stepname> | |
| 355 | - <file> | |
| 356 | - <name/> | |
| 357 | - <filemask/> | |
| 358 | - <exclude_filemask/> | |
| 359 | - <file_required>N</file_required> | |
| 360 | - <include_subfolders>N</include_subfolders> | |
| 361 | - </file> | |
| 362 | - <fields> | |
| 363 | - <field> | |
| 364 | - <name>车牌号</name> | |
| 365 | - <type>String</type> | |
| 366 | - <length>-1</length> | |
| 367 | - <precision>-1</precision> | |
| 368 | - <trim_type>none</trim_type> | |
| 369 | - <repeat>N</repeat> | |
| 370 | - <format/> | |
| 371 | - <currency/> | |
| 372 | - <decimal/> | |
| 373 | - <group/> | |
| 374 | - </field> | |
| 375 | - <field> | |
| 376 | - <name>内部编码</name> | |
| 377 | - <type>String</type> | |
| 378 | - <length>-1</length> | |
| 379 | - <precision>-1</precision> | |
| 380 | - <trim_type>none</trim_type> | |
| 381 | - <repeat>N</repeat> | |
| 382 | - <format/> | |
| 383 | - <currency/> | |
| 384 | - <decimal/> | |
| 385 | - <group/> | |
| 386 | - </field> | |
| 387 | - <field> | |
| 388 | - <name>车辆编码</name> | |
| 389 | - <type>String</type> | |
| 390 | - <length>-1</length> | |
| 391 | - <precision>-1</precision> | |
| 392 | - <trim_type>none</trim_type> | |
| 393 | - <repeat>N</repeat> | |
| 394 | - <format/> | |
| 395 | - <currency/> | |
| 396 | - <decimal/> | |
| 397 | - <group/> | |
| 398 | - </field> | |
| 399 | - <field> | |
| 400 | - <name>车型类别</name> | |
| 401 | - <type>String</type> | |
| 402 | - <length>-1</length> | |
| 403 | - <precision>-1</precision> | |
| 404 | - <trim_type>none</trim_type> | |
| 405 | - <repeat>N</repeat> | |
| 406 | - <format/> | |
| 407 | - <currency/> | |
| 408 | - <decimal/> | |
| 409 | - <group/> | |
| 410 | - </field> | |
| 411 | - <field> | |
| 412 | - <name>座位数</name> | |
| 413 | - <type>String</type> | |
| 414 | - <length>-1</length> | |
| 415 | - <precision>-1</precision> | |
| 416 | - <trim_type>none</trim_type> | |
| 417 | - <repeat>N</repeat> | |
| 418 | - <format/> | |
| 419 | - <currency/> | |
| 420 | - <decimal/> | |
| 421 | - <group/> | |
| 422 | - </field> | |
| 423 | - <field> | |
| 424 | - <name>载客标准</name> | |
| 425 | - <type>String</type> | |
| 426 | - <length>-1</length> | |
| 427 | - <precision>-1</precision> | |
| 428 | - <trim_type>none</trim_type> | |
| 429 | - <repeat>N</repeat> | |
| 430 | - <format/> | |
| 431 | - <currency/> | |
| 432 | - <decimal/> | |
| 433 | - <group/> | |
| 434 | - </field> | |
| 435 | - <field> | |
| 436 | - <name>技术速度</name> | |
| 437 | - <type>String</type> | |
| 438 | - <length>-1</length> | |
| 439 | - <precision>-1</precision> | |
| 440 | - <trim_type>none</trim_type> | |
| 441 | - <repeat>N</repeat> | |
| 442 | - <format/> | |
| 443 | - <currency/> | |
| 444 | - <decimal/> | |
| 445 | - <group/> | |
| 446 | - </field> | |
| 447 | - <field> | |
| 448 | - <name>是否空调</name> | |
| 449 | - <type>String</type> | |
| 450 | - <length>-1</length> | |
| 451 | - <precision>-1</precision> | |
| 452 | - <trim_type>none</trim_type> | |
| 453 | - <repeat>N</repeat> | |
| 454 | - <format/> | |
| 455 | - <currency/> | |
| 456 | - <decimal/> | |
| 457 | - <group/> | |
| 458 | - </field> | |
| 459 | - <field> | |
| 460 | - <name>标准油耗(开空调)</name> | |
| 461 | - <type>String</type> | |
| 462 | - <length>-1</length> | |
| 463 | - <precision>-1</precision> | |
| 464 | - <trim_type>none</trim_type> | |
| 465 | - <repeat>N</repeat> | |
| 466 | - <format/> | |
| 467 | - <currency/> | |
| 468 | - <decimal/> | |
| 469 | - <group/> | |
| 470 | - </field> | |
| 471 | - <field> | |
| 472 | - <name>标准油耗(关空调)</name> | |
| 473 | - <type>String</type> | |
| 474 | - <length>-1</length> | |
| 475 | - <precision>-1</precision> | |
| 476 | - <trim_type>none</trim_type> | |
| 477 | - <repeat>N</repeat> | |
| 478 | - <format/> | |
| 479 | - <currency/> | |
| 480 | - <decimal/> | |
| 481 | - <group/> | |
| 482 | - </field> | |
| 483 | - <field> | |
| 484 | - <name>有无人售票</name> | |
| 485 | - <type>String</type> | |
| 486 | - <length>-1</length> | |
| 487 | - <precision>-1</precision> | |
| 488 | - <trim_type>none</trim_type> | |
| 489 | - <repeat>N</repeat> | |
| 490 | - <format/> | |
| 491 | - <currency/> | |
| 492 | - <decimal/> | |
| 493 | - <group/> | |
| 494 | - </field> | |
| 495 | - <field> | |
| 496 | - <name>是否有TV视频</name> | |
| 497 | - <type>String</type> | |
| 498 | - <length>-1</length> | |
| 499 | - <precision>-1</precision> | |
| 500 | - <trim_type>none</trim_type> | |
| 501 | - <repeat>N</repeat> | |
| 502 | - <format/> | |
| 503 | - <currency/> | |
| 504 | - <decimal/> | |
| 505 | - <group/> | |
| 506 | - </field> | |
| 507 | - <field> | |
| 508 | - <name>是否有LED服务屏</name> | |
| 509 | - <type>String</type> | |
| 510 | - <length>-1</length> | |
| 511 | - <precision>-1</precision> | |
| 512 | - <trim_type>none</trim_type> | |
| 513 | - <repeat>N</repeat> | |
| 514 | - <format/> | |
| 515 | - <currency/> | |
| 516 | - <decimal/> | |
| 517 | - <group/> | |
| 518 | - </field> | |
| 519 | - <field> | |
| 520 | - <name>运营状态</name> | |
| 521 | - <type>String</type> | |
| 522 | - <length>-1</length> | |
| 523 | - <precision>-1</precision> | |
| 524 | - <trim_type>none</trim_type> | |
| 525 | - <repeat>N</repeat> | |
| 526 | - <format/> | |
| 527 | - <currency/> | |
| 528 | - <decimal/> | |
| 529 | - <group/> | |
| 530 | - </field> | |
| 531 | - <field> | |
| 532 | - <name>启用日期</name> | |
| 533 | - <type>String</type> | |
| 534 | - <length>-1</length> | |
| 535 | - <precision>-1</precision> | |
| 536 | - <trim_type>none</trim_type> | |
| 537 | - <repeat>N</repeat> | |
| 538 | - <format/> | |
| 539 | - <currency/> | |
| 540 | - <decimal/> | |
| 541 | - <group/> | |
| 542 | - </field> | |
| 543 | - <field> | |
| 544 | - <name>取消日期</name> | |
| 545 | - <type>String</type> | |
| 546 | - <length>-1</length> | |
| 547 | - <precision>-1</precision> | |
| 548 | - <trim_type>none</trim_type> | |
| 549 | - <repeat>N</repeat> | |
| 550 | - <format/> | |
| 551 | - <currency/> | |
| 552 | - <decimal/> | |
| 553 | - <group/> | |
| 554 | - </field> | |
| 555 | - <field> | |
| 556 | - <name>报废号</name> | |
| 557 | - <type>String</type> | |
| 558 | - <length>-1</length> | |
| 559 | - <precision>-1</precision> | |
| 560 | - <trim_type>none</trim_type> | |
| 561 | - <repeat>N</repeat> | |
| 562 | - <format/> | |
| 563 | - <currency/> | |
| 564 | - <decimal/> | |
| 565 | - <group/> | |
| 566 | - </field> | |
| 567 | - <field> | |
| 568 | - <name>报废日期</name> | |
| 569 | - <type>String</type> | |
| 570 | - <length>-1</length> | |
| 571 | - <precision>-1</precision> | |
| 572 | - <trim_type>none</trim_type> | |
| 573 | - <repeat>N</repeat> | |
| 574 | - <format/> | |
| 575 | - <currency/> | |
| 576 | - <decimal/> | |
| 577 | - <group/> | |
| 578 | - </field> | |
| 579 | - <field> | |
| 580 | - <name>备注</name> | |
| 581 | - <type>String</type> | |
| 582 | - <length>-1</length> | |
| 583 | - <precision>-1</precision> | |
| 584 | - <trim_type>none</trim_type> | |
| 585 | - <repeat>N</repeat> | |
| 586 | - <format/> | |
| 587 | - <currency/> | |
| 588 | - <decimal/> | |
| 589 | - <group/> | |
| 590 | - </field> | |
| 591 | - <field> | |
| 592 | - <name>设备编号</name> | |
| 593 | - <type>String</type> | |
| 594 | - <length>-1</length> | |
| 595 | - <precision>-1</precision> | |
| 596 | - <trim_type>none</trim_type> | |
| 597 | - <repeat>N</repeat> | |
| 598 | - <format/> | |
| 599 | - <currency/> | |
| 600 | - <decimal/> | |
| 601 | - <group/> | |
| 602 | - </field> | |
| 603 | - <field> | |
| 604 | - <name>厂牌型号</name> | |
| 605 | - <type>String</type> | |
| 606 | - <length>-1</length> | |
| 607 | - <precision>-1</precision> | |
| 608 | - <trim_type>none</trim_type> | |
| 609 | - <repeat>N</repeat> | |
| 610 | - <format/> | |
| 611 | - <currency/> | |
| 612 | - <decimal/> | |
| 613 | - <group/> | |
| 614 | - </field> | |
| 615 | - <field> | |
| 616 | - <name>厂牌型号2</name> | |
| 617 | - <type>String</type> | |
| 618 | - <length>-1</length> | |
| 619 | - <precision>-1</precision> | |
| 620 | - <trim_type>none</trim_type> | |
| 621 | - <repeat>N</repeat> | |
| 622 | - <format/> | |
| 623 | - <currency/> | |
| 624 | - <decimal/> | |
| 625 | - <group/> | |
| 626 | - </field> | |
| 627 | - <field> | |
| 628 | - <name>车辆等级标准</name> | |
| 629 | - <type>String</type> | |
| 630 | - <length>-1</length> | |
| 631 | - <precision>-1</precision> | |
| 632 | - <trim_type>none</trim_type> | |
| 633 | - <repeat>N</repeat> | |
| 634 | - <format/> | |
| 635 | - <currency/> | |
| 636 | - <decimal/> | |
| 637 | - <group/> | |
| 638 | - </field> | |
| 639 | - <field> | |
| 640 | - <name>出厂排放标准</name> | |
| 641 | - <type>String</type> | |
| 642 | - <length>-1</length> | |
| 643 | - <precision>-1</precision> | |
| 644 | - <trim_type>none</trim_type> | |
| 645 | - <repeat>N</repeat> | |
| 646 | - <format/> | |
| 647 | - <currency/> | |
| 648 | - <decimal/> | |
| 649 | - <group/> | |
| 650 | - </field> | |
| 651 | - <field> | |
| 652 | - <name>发动机号码1</name> | |
| 653 | - <type>String</type> | |
| 654 | - <length>-1</length> | |
| 655 | - <precision>-1</precision> | |
| 656 | - <trim_type>none</trim_type> | |
| 657 | - <repeat>N</repeat> | |
| 658 | - <format/> | |
| 659 | - <currency/> | |
| 660 | - <decimal/> | |
| 661 | - <group/> | |
| 662 | - </field> | |
| 663 | - <field> | |
| 664 | - <name>发动机号码2</name> | |
| 665 | - <type>String</type> | |
| 666 | - <length>-1</length> | |
| 667 | - <precision>-1</precision> | |
| 668 | - <trim_type>none</trim_type> | |
| 669 | - <repeat>N</repeat> | |
| 670 | - <format/> | |
| 671 | - <currency/> | |
| 672 | - <decimal/> | |
| 673 | - <group/> | |
| 674 | - </field> | |
| 675 | - <field> | |
| 676 | - <name>车架号码1</name> | |
| 677 | - <type>String</type> | |
| 678 | - <length>-1</length> | |
| 679 | - <precision>-1</precision> | |
| 680 | - <trim_type>none</trim_type> | |
| 681 | - <repeat>N</repeat> | |
| 682 | - <format/> | |
| 683 | - <currency/> | |
| 684 | - <decimal/> | |
| 685 | - <group/> | |
| 686 | - </field> | |
| 687 | - <field> | |
| 688 | - <name>车架号码2</name> | |
| 689 | - <type>String</type> | |
| 690 | - <length>-1</length> | |
| 691 | - <precision>-1</precision> | |
| 692 | - <trim_type>none</trim_type> | |
| 693 | - <repeat>N</repeat> | |
| 694 | - <format/> | |
| 695 | - <currency/> | |
| 696 | - <decimal/> | |
| 697 | - <group/> | |
| 698 | - </field> | |
| 699 | - <field> | |
| 700 | - <name>车辆类型</name> | |
| 701 | - <type>String</type> | |
| 702 | - <length>-1</length> | |
| 703 | - <precision>-1</precision> | |
| 704 | - <trim_type>none</trim_type> | |
| 705 | - <repeat>N</repeat> | |
| 706 | - <format/> | |
| 707 | - <currency/> | |
| 708 | - <decimal/> | |
| 709 | - <group/> | |
| 710 | - </field> | |
| 711 | - <field> | |
| 712 | - <name>所属公司</name> | |
| 713 | - <type>String</type> | |
| 714 | - <length>-1</length> | |
| 715 | - <precision>-1</precision> | |
| 716 | - <trim_type>none</trim_type> | |
| 717 | - <repeat>N</repeat> | |
| 718 | - <format/> | |
| 719 | - <currency/> | |
| 720 | - <decimal/> | |
| 721 | - <group/> | |
| 722 | - </field> | |
| 723 | - <field> | |
| 724 | - <name>修改日期</name> | |
| 725 | - <type>String</type> | |
| 726 | - <length>-1</length> | |
| 727 | - <precision>-1</precision> | |
| 728 | - <trim_type>none</trim_type> | |
| 729 | - <repeat>N</repeat> | |
| 730 | - <format/> | |
| 731 | - <currency/> | |
| 732 | - <decimal/> | |
| 733 | - <group/> | |
| 734 | - </field> | |
| 735 | - <field> | |
| 736 | - <name>是否机动车</name> | |
| 737 | - <type>String</type> | |
| 738 | - <length>-1</length> | |
| 739 | - <precision>-1</precision> | |
| 740 | - <trim_type>none</trim_type> | |
| 741 | - <repeat>N</repeat> | |
| 742 | - <format/> | |
| 743 | - <currency/> | |
| 744 | - <decimal/> | |
| 745 | - <group/> | |
| 746 | - </field> | |
| 747 | - <field> | |
| 748 | - <name>视频编号</name> | |
| 749 | - <type>String</type> | |
| 750 | - <length>-1</length> | |
| 751 | - <precision>-1</precision> | |
| 752 | - <trim_type>none</trim_type> | |
| 753 | - <repeat>N</repeat> | |
| 754 | - <format/> | |
| 755 | - <currency/> | |
| 756 | - <decimal/> | |
| 757 | - <group/> | |
| 758 | - </field> | |
| 759 | - <field> | |
| 760 | - <name>设备供应厂商</name> | |
| 761 | - <type>String</type> | |
| 762 | - <length>-1</length> | |
| 763 | - <precision>-1</precision> | |
| 764 | - <trim_type>none</trim_type> | |
| 765 | - <repeat>N</repeat> | |
| 766 | - <format/> | |
| 767 | - <currency/> | |
| 768 | - <decimal/> | |
| 769 | - <group/> | |
| 770 | - </field> | |
| 771 | - <field> | |
| 772 | - <name>分公司</name> | |
| 773 | - <type>String</type> | |
| 774 | - <length>-1</length> | |
| 775 | - <precision>-1</precision> | |
| 776 | - <trim_type>none</trim_type> | |
| 777 | - <repeat>N</repeat> | |
| 778 | - <format/> | |
| 779 | - <currency/> | |
| 780 | - <decimal/> | |
| 781 | - <group/> | |
| 782 | - </field> | |
| 783 | - </fields> | |
| 784 | - <sheets> | |
| 785 | - <sheet> | |
| 786 | - <name>工作表1</name> | |
| 787 | - <startrow>0</startrow> | |
| 788 | - <startcol>0</startcol> | |
| 789 | - </sheet> | |
| 790 | - </sheets> | |
| 791 | - <strict_types>N</strict_types> | |
| 792 | - <error_ignored>N</error_ignored> | |
| 793 | - <error_line_skipped>N</error_line_skipped> | |
| 794 | - <bad_line_files_destination_directory/> | |
| 795 | - <bad_line_files_extension>warning</bad_line_files_extension> | |
| 796 | - <error_line_files_destination_directory/> | |
| 797 | - <error_line_files_extension>error</error_line_files_extension> | |
| 798 | - <line_number_files_destination_directory/> | |
| 799 | - <line_number_files_extension>line</line_number_files_extension> | |
| 800 | - <shortFileFieldName/> | |
| 801 | - <pathFieldName/> | |
| 802 | - <hiddenFieldName/> | |
| 803 | - <lastModificationTimeFieldName/> | |
| 804 | - <uriNameFieldName/> | |
| 805 | - <rootUriNameFieldName/> | |
| 806 | - <extensionFieldName/> | |
| 807 | - <sizeFieldName/> | |
| 808 | - <spreadsheet_type>JXL</spreadsheet_type> | |
| 809 | - <cluster_schema/> | |
| 810 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 811 | - <xloc>131</xloc> | |
| 812 | - <yloc>58</yloc> | |
| 813 | - <draw>Y</draw> | |
| 814 | - </GUI> | |
| 815 | - </step> | |
| 816 | - | |
| 817 | - <step> | |
| 818 | - <name>字段选择</name> | |
| 819 | - <type>SelectValues</type> | |
| 820 | - <description/> | |
| 821 | - <distribute>Y</distribute> | |
| 822 | - <custom_distribution/> | |
| 823 | - <copies>1</copies> | |
| 824 | - <partitioning> | |
| 825 | - <method>none</method> | |
| 826 | - <schema_name/> | |
| 827 | - </partitioning> | |
| 828 | - <fields> <field> <name>内部编码</name> | |
| 829 | - <rename>insideCode</rename> | |
| 830 | - <length>-2</length> | |
| 831 | - <precision>-2</precision> | |
| 832 | - </field> <field> <name>车辆编码</name> | |
| 833 | - <rename>carCode</rename> | |
| 834 | - <length>-2</length> | |
| 835 | - <precision>-2</precision> | |
| 836 | - </field> <field> <name>所属公司</name> | |
| 837 | - <rename>company</rename> | |
| 838 | - <length>-2</length> | |
| 839 | - <precision>-2</precision> | |
| 840 | - </field> <field> <name>分公司</name> | |
| 841 | - <rename>brancheCompany</rename> | |
| 842 | - <length>-2</length> | |
| 843 | - <precision>-2</precision> | |
| 844 | - </field> <field> <name>车牌号</name> | |
| 845 | - <rename>carPlate</rename> | |
| 846 | - <length>-2</length> | |
| 847 | - <precision>-2</precision> | |
| 848 | - </field> <field> <name>设备供应厂商</name> | |
| 849 | - <rename>supplierName</rename> | |
| 850 | - <length>-2</length> | |
| 851 | - <precision>-2</precision> | |
| 852 | - </field> <field> <name>设备编号</name> | |
| 853 | - <rename>equipmentCode</rename> | |
| 854 | - <length>-2</length> | |
| 855 | - <precision>-2</precision> | |
| 856 | - </field> <field> <name>车型类别</name> | |
| 857 | - <rename>carClass</rename> | |
| 858 | - <length>-2</length> | |
| 859 | - <precision>-2</precision> | |
| 860 | - </field> <field> <name>技术速度</name> | |
| 861 | - <rename>speed</rename> | |
| 862 | - <length>-2</length> | |
| 863 | - <precision>-2</precision> | |
| 864 | - </field> <field> <name>座位数</name> | |
| 865 | - <rename>carSeatnNumber</rename> | |
| 866 | - <length>-2</length> | |
| 867 | - <precision>-2</precision> | |
| 868 | - </field> <field> <name>载客标准</name> | |
| 869 | - <rename>carStandard</rename> | |
| 870 | - <length>-2</length> | |
| 871 | - <precision>-2</precision> | |
| 872 | - </field> <field> <name>标准油耗(开空调)</name> | |
| 873 | - <rename>kburnStandard</rename> | |
| 874 | - <length>-2</length> | |
| 875 | - <precision>-2</precision> | |
| 876 | - </field> <field> <name>标准油耗(关空调)</name> | |
| 877 | - <rename>gburnStandard</rename> | |
| 878 | - <length>-2</length> | |
| 879 | - <precision>-2</precision> | |
| 880 | - </field> <field> <name>报废号</name> | |
| 881 | - <rename>scrapCode</rename> | |
| 882 | - <length>-2</length> | |
| 883 | - <precision>-2</precision> | |
| 884 | - </field> <field> <name>厂牌型号</name> | |
| 885 | - <rename>makeCodeOne</rename> | |
| 886 | - <length>-2</length> | |
| 887 | - <precision>-2</precision> | |
| 888 | - </field> <field> <name>厂牌型号2</name> | |
| 889 | - <rename>makeCodeTwo</rename> | |
| 890 | - <length>-2</length> | |
| 891 | - <precision>-2</precision> | |
| 892 | - </field> <field> <name>车辆等级标准</name> | |
| 893 | - <rename>carGride</rename> | |
| 894 | - <length>-2</length> | |
| 895 | - <precision>-2</precision> | |
| 896 | - </field> <field> <name>出厂排放标准</name> | |
| 897 | - <rename>emissionsStandard</rename> | |
| 898 | - <length>-2</length> | |
| 899 | - <precision>-2</precision> | |
| 900 | - </field> <field> <name>发动机号码1</name> | |
| 901 | - <rename>engineCodeOne</rename> | |
| 902 | - <length>-2</length> | |
| 903 | - <precision>-2</precision> | |
| 904 | - </field> <field> <name>发动机号码2</name> | |
| 905 | - <rename>engineCodeTwo</rename> | |
| 906 | - <length>-2</length> | |
| 907 | - <precision>-2</precision> | |
| 908 | - </field> <field> <name>车架号码1</name> | |
| 909 | - <rename>carNumberOne</rename> | |
| 910 | - <length>-2</length> | |
| 911 | - <precision>-2</precision> | |
| 912 | - </field> <field> <name>车架号码2</name> | |
| 913 | - <rename>carNumberTwo</rename> | |
| 914 | - <length>-2</length> | |
| 915 | - <precision>-2</precision> | |
| 916 | - </field> <field> <name>启用日期</name> | |
| 917 | - <rename>openDate</rename> | |
| 918 | - <length>-2</length> | |
| 919 | - <precision>-2</precision> | |
| 920 | - </field> <field> <name>取消日期</name> | |
| 921 | - <rename>closeDate</rename> | |
| 922 | - <length>-2</length> | |
| 923 | - <precision>-2</precision> | |
| 924 | - </field> <field> <name>是否空调</name> | |
| 925 | - <rename>hvacCar</rename> | |
| 926 | - <length>-2</length> | |
| 927 | - <precision>-2</precision> | |
| 928 | - </field> <field> <name>有无人售票</name> | |
| 929 | - <rename>ticketType</rename> | |
| 930 | - <length>-2</length> | |
| 931 | - <precision>-2</precision> | |
| 932 | - </field> <field> <name>是否有LED服务屏</name> | |
| 933 | - <rename>ledScreen</rename> | |
| 934 | - <length>-2</length> | |
| 935 | - <precision>-2</precision> | |
| 936 | - </field> <field> <name>是否有TV视频</name> | |
| 937 | - <rename>tvVideoType</rename> | |
| 938 | - <length>-2</length> | |
| 939 | - <precision>-2</precision> | |
| 940 | - </field> <field> <name>车辆类型</name> | |
| 941 | - <rename>carType</rename> | |
| 942 | - <length>-2</length> | |
| 943 | - <precision>-2</precision> | |
| 944 | - </field> <field> <name>是否机动车</name> | |
| 945 | - <rename>vehicleStats</rename> | |
| 946 | - <length>-2</length> | |
| 947 | - <precision>-2</precision> | |
| 948 | - </field> <field> <name>运营状态</name> | |
| 949 | - <rename>operatorsState</rename> | |
| 950 | - <length>-2</length> | |
| 951 | - <precision>-2</precision> | |
| 952 | - </field> <field> <name>备注</name> | |
| 953 | - <rename>descriptions</rename> | |
| 954 | - <length>-2</length> | |
| 955 | - <precision>-2</precision> | |
| 956 | - </field> <field> <name>视频编号</name> | |
| 957 | - <rename>videoCode</rename> | |
| 958 | - <length>-2</length> | |
| 959 | - <precision>-2</precision> | |
| 960 | - </field> <select_unspecified>Y</select_unspecified> | |
| 961 | - </fields> <cluster_schema/> | |
| 962 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 963 | - <xloc>279</xloc> | |
| 964 | - <yloc>59</yloc> | |
| 965 | - <draw>Y</draw> | |
| 966 | - </GUI> | |
| 967 | - </step> | |
| 968 | - | |
| 969 | - <step> | |
| 970 | - <name>插入/更新bsth_c_cars</name> | |
| 971 | - <type>InsertUpdate</type> | |
| 972 | - <description/> | |
| 973 | - <distribute>Y</distribute> | |
| 974 | - <custom_distribution/> | |
| 975 | - <copies>1</copies> | |
| 976 | - <partitioning> | |
| 977 | - <method>none</method> | |
| 978 | - <schema_name/> | |
| 979 | - </partitioning> | |
| 980 | - <connection>bus_control_variable</connection> | |
| 981 | - <commit>1000</commit> | |
| 982 | - <update_bypassed>N</update_bypassed> | |
| 983 | - <lookup> | |
| 984 | - <schema/> | |
| 985 | - <table>bsth_c_cars</table> | |
| 986 | - <key> | |
| 987 | - <name>insideCode</name> | |
| 988 | - <field>inside_code</field> | |
| 989 | - <condition>=</condition> | |
| 990 | - <name2/> | |
| 991 | - </key> | |
| 992 | - <value> | |
| 993 | - <name>inside_code</name> | |
| 994 | - <rename>insideCode</rename> | |
| 995 | - <update>Y</update> | |
| 996 | - </value> | |
| 997 | - <value> | |
| 998 | - <name>company</name> | |
| 999 | - <rename>company</rename> | |
| 1000 | - <update>Y</update> | |
| 1001 | - </value> | |
| 1002 | - <value> | |
| 1003 | - <name>branche_company</name> | |
| 1004 | - <rename>brancheCompany</rename> | |
| 1005 | - <update>Y</update> | |
| 1006 | - </value> | |
| 1007 | - <value> | |
| 1008 | - <name>car_plate</name> | |
| 1009 | - <rename>carPlate</rename> | |
| 1010 | - <update>Y</update> | |
| 1011 | - </value> | |
| 1012 | - <value> | |
| 1013 | - <name>supplier_name</name> | |
| 1014 | - <rename>supplierName</rename> | |
| 1015 | - <update>Y</update> | |
| 1016 | - </value> | |
| 1017 | - <value> | |
| 1018 | - <name>equipment_code</name> | |
| 1019 | - <rename>equipmentCode</rename> | |
| 1020 | - <update>Y</update> | |
| 1021 | - </value> | |
| 1022 | - <value> | |
| 1023 | - <name>car_class</name> | |
| 1024 | - <rename>carClass</rename> | |
| 1025 | - <update>Y</update> | |
| 1026 | - </value> | |
| 1027 | - <value> | |
| 1028 | - <name>speed</name> | |
| 1029 | - <rename>speed</rename> | |
| 1030 | - <update>Y</update> | |
| 1031 | - </value> | |
| 1032 | - <value> | |
| 1033 | - <name>car_seatn_number</name> | |
| 1034 | - <rename>carSeatnNumber</rename> | |
| 1035 | - <update>Y</update> | |
| 1036 | - </value> | |
| 1037 | - <value> | |
| 1038 | - <name>car_standard</name> | |
| 1039 | - <rename>carStandard</rename> | |
| 1040 | - <update>Y</update> | |
| 1041 | - </value> | |
| 1042 | - <value> | |
| 1043 | - <name>car_code</name> | |
| 1044 | - <rename>carCode</rename> | |
| 1045 | - <update>Y</update> | |
| 1046 | - </value> | |
| 1047 | - <value> | |
| 1048 | - <name>kburn_standard</name> | |
| 1049 | - <rename>kburnStandard</rename> | |
| 1050 | - <update>Y</update> | |
| 1051 | - </value> | |
| 1052 | - <value> | |
| 1053 | - <name>gburn_standard</name> | |
| 1054 | - <rename>gburnStandard</rename> | |
| 1055 | - <update>Y</update> | |
| 1056 | - </value> | |
| 1057 | - <value> | |
| 1058 | - <name>scrap_code</name> | |
| 1059 | - <rename>scrapCode</rename> | |
| 1060 | - <update>Y</update> | |
| 1061 | - </value> | |
| 1062 | - <value> | |
| 1063 | - <name>make_code_one</name> | |
| 1064 | - <rename>makeCodeOne</rename> | |
| 1065 | - <update>Y</update> | |
| 1066 | - </value> | |
| 1067 | - <value> | |
| 1068 | - <name>make_code_two</name> | |
| 1069 | - <rename>makeCodeTwo</rename> | |
| 1070 | - <update>Y</update> | |
| 1071 | - </value> | |
| 1072 | - <value> | |
| 1073 | - <name>car_gride</name> | |
| 1074 | - <rename>carGride</rename> | |
| 1075 | - <update>Y</update> | |
| 1076 | - </value> | |
| 1077 | - <value> | |
| 1078 | - <name>emissions_standard</name> | |
| 1079 | - <rename>emissionsStandard</rename> | |
| 1080 | - <update>Y</update> | |
| 1081 | - </value> | |
| 1082 | - <value> | |
| 1083 | - <name>engine_code_one</name> | |
| 1084 | - <rename>engineCodeOne</rename> | |
| 1085 | - <update>Y</update> | |
| 1086 | - </value> | |
| 1087 | - <value> | |
| 1088 | - <name>engine_code_two</name> | |
| 1089 | - <rename>engineCodeTwo</rename> | |
| 1090 | - <update>Y</update> | |
| 1091 | - </value> | |
| 1092 | - <value> | |
| 1093 | - <name>car_number_one</name> | |
| 1094 | - <rename>carNumberOne</rename> | |
| 1095 | - <update>Y</update> | |
| 1096 | - </value> | |
| 1097 | - <value> | |
| 1098 | - <name>car_number_two</name> | |
| 1099 | - <rename>carNumberTwo</rename> | |
| 1100 | - <update>Y</update> | |
| 1101 | - </value> | |
| 1102 | - <value> | |
| 1103 | - <name>open_date</name> | |
| 1104 | - <rename>openDate</rename> | |
| 1105 | - <update>Y</update> | |
| 1106 | - </value> | |
| 1107 | - <value> | |
| 1108 | - <name>close_date</name> | |
| 1109 | - <rename>closeDate</rename> | |
| 1110 | - <update>Y</update> | |
| 1111 | - </value> | |
| 1112 | - <value> | |
| 1113 | - <name>hvac_car</name> | |
| 1114 | - <rename>hvacCar</rename> | |
| 1115 | - <update>Y</update> | |
| 1116 | - </value> | |
| 1117 | - <value> | |
| 1118 | - <name>ticket_type</name> | |
| 1119 | - <rename>ticketType</rename> | |
| 1120 | - <update>Y</update> | |
| 1121 | - </value> | |
| 1122 | - <value> | |
| 1123 | - <name>led_screen</name> | |
| 1124 | - <rename>ledScreen</rename> | |
| 1125 | - <update>Y</update> | |
| 1126 | - </value> | |
| 1127 | - <value> | |
| 1128 | - <name>tv_video_type</name> | |
| 1129 | - <rename>tvVideoType</rename> | |
| 1130 | - <update>Y</update> | |
| 1131 | - </value> | |
| 1132 | - <value> | |
| 1133 | - <name>car_type</name> | |
| 1134 | - <rename>carType</rename> | |
| 1135 | - <update>Y</update> | |
| 1136 | - </value> | |
| 1137 | - <value> | |
| 1138 | - <name>vehicle_stats</name> | |
| 1139 | - <rename>vehicleStats</rename> | |
| 1140 | - <update>Y</update> | |
| 1141 | - </value> | |
| 1142 | - <value> | |
| 1143 | - <name>operators_state</name> | |
| 1144 | - <rename>operatorsState</rename> | |
| 1145 | - <update>Y</update> | |
| 1146 | - </value> | |
| 1147 | - <value> | |
| 1148 | - <name>descriptions</name> | |
| 1149 | - <rename>descriptions</rename> | |
| 1150 | - <update>Y</update> | |
| 1151 | - </value> | |
| 1152 | - <value> | |
| 1153 | - <name>video_code</name> | |
| 1154 | - <rename>videoCode</rename> | |
| 1155 | - <update>Y</update> | |
| 1156 | - </value> | |
| 1157 | - <value> | |
| 1158 | - <name>business_code</name> | |
| 1159 | - <rename>businessCode</rename> | |
| 1160 | - <update>Y</update> | |
| 1161 | - </value> | |
| 1162 | - </lookup> | |
| 1163 | - <cluster_schema/> | |
| 1164 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1165 | - <xloc>842</xloc> | |
| 1166 | - <yloc>319</yloc> | |
| 1167 | - <draw>Y</draw> | |
| 1168 | - </GUI> | |
| 1169 | - </step> | |
| 1170 | - | |
| 1171 | - <step> | |
| 1172 | - <name>是否有LED服务屏</name> | |
| 1173 | - <type>ValueMapper</type> | |
| 1174 | - <description/> | |
| 1175 | - <distribute>Y</distribute> | |
| 1176 | - <custom_distribution/> | |
| 1177 | - <copies>1</copies> | |
| 1178 | - <partitioning> | |
| 1179 | - <method>none</method> | |
| 1180 | - <schema_name/> | |
| 1181 | - </partitioning> | |
| 1182 | - <field_to_use>ledScreen</field_to_use> | |
| 1183 | - <target_field/> | |
| 1184 | - <non_match_default/> | |
| 1185 | - <fields> | |
| 1186 | - <field> | |
| 1187 | - <source_value>是</source_value> | |
| 1188 | - <target_value>1</target_value> | |
| 1189 | - </field> | |
| 1190 | - <field> | |
| 1191 | - <source_value>否</source_value> | |
| 1192 | - <target_value>0</target_value> | |
| 1193 | - </field> | |
| 1194 | - </fields> | |
| 1195 | - <cluster_schema/> | |
| 1196 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1197 | - <xloc>590</xloc> | |
| 1198 | - <yloc>61</yloc> | |
| 1199 | - <draw>Y</draw> | |
| 1200 | - </GUI> | |
| 1201 | - </step> | |
| 1202 | - | |
| 1203 | - <step> | |
| 1204 | - <name>是否有TV视频</name> | |
| 1205 | - <type>ValueMapper</type> | |
| 1206 | - <description/> | |
| 1207 | - <distribute>Y</distribute> | |
| 1208 | - <custom_distribution/> | |
| 1209 | - <copies>1</copies> | |
| 1210 | - <partitioning> | |
| 1211 | - <method>none</method> | |
| 1212 | - <schema_name/> | |
| 1213 | - </partitioning> | |
| 1214 | - <field_to_use>tvVideoType</field_to_use> | |
| 1215 | - <target_field/> | |
| 1216 | - <non_match_default/> | |
| 1217 | - <fields> | |
| 1218 | - <field> | |
| 1219 | - <source_value>是</source_value> | |
| 1220 | - <target_value>1</target_value> | |
| 1221 | - </field> | |
| 1222 | - <field> | |
| 1223 | - <source_value>否</source_value> | |
| 1224 | - <target_value>0</target_value> | |
| 1225 | - </field> | |
| 1226 | - </fields> | |
| 1227 | - <cluster_schema/> | |
| 1228 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1229 | - <xloc>706</xloc> | |
| 1230 | - <yloc>61</yloc> | |
| 1231 | - <draw>Y</draw> | |
| 1232 | - </GUI> | |
| 1233 | - </step> | |
| 1234 | - | |
| 1235 | - <step> | |
| 1236 | - <name>是否的变成数字型</name> | |
| 1237 | - <type>SelectValues</type> | |
| 1238 | - <description/> | |
| 1239 | - <distribute>Y</distribute> | |
| 1240 | - <custom_distribution/> | |
| 1241 | - <copies>1</copies> | |
| 1242 | - <partitioning> | |
| 1243 | - <method>none</method> | |
| 1244 | - <schema_name/> | |
| 1245 | - </partitioning> | |
| 1246 | - <fields> <select_unspecified>N</select_unspecified> | |
| 1247 | - <meta> <name>hvacCar</name> | |
| 1248 | - <rename>hvacCar</rename> | |
| 1249 | - <type>Integer</type> | |
| 1250 | - <length>1</length> | |
| 1251 | - <precision>-2</precision> | |
| 1252 | - <conversion_mask/> | |
| 1253 | - <date_format_lenient>false</date_format_lenient> | |
| 1254 | - <date_format_locale/> | |
| 1255 | - <date_format_timezone/> | |
| 1256 | - <lenient_string_to_number>false</lenient_string_to_number> | |
| 1257 | - <encoding/> | |
| 1258 | - <decimal_symbol/> | |
| 1259 | - <grouping_symbol/> | |
| 1260 | - <currency_symbol/> | |
| 1261 | - <storage_type/> | |
| 1262 | - </meta> <meta> <name>ticketType</name> | |
| 1263 | - <rename>ticketType</rename> | |
| 1264 | - <type>Integer</type> | |
| 1265 | - <length>1</length> | |
| 1266 | - <precision>-2</precision> | |
| 1267 | - <conversion_mask/> | |
| 1268 | - <date_format_lenient>false</date_format_lenient> | |
| 1269 | - <date_format_locale/> | |
| 1270 | - <date_format_timezone/> | |
| 1271 | - <lenient_string_to_number>false</lenient_string_to_number> | |
| 1272 | - <encoding/> | |
| 1273 | - <decimal_symbol/> | |
| 1274 | - <grouping_symbol/> | |
| 1275 | - <currency_symbol/> | |
| 1276 | - <storage_type/> | |
| 1277 | - </meta> <meta> <name>ledScreen</name> | |
| 1278 | - <rename>ledScreen</rename> | |
| 1279 | - <type>Integer</type> | |
| 1280 | - <length>1</length> | |
| 1281 | - <precision>-2</precision> | |
| 1282 | - <conversion_mask/> | |
| 1283 | - <date_format_lenient>false</date_format_lenient> | |
| 1284 | - <date_format_locale/> | |
| 1285 | - <date_format_timezone/> | |
| 1286 | - <lenient_string_to_number>false</lenient_string_to_number> | |
| 1287 | - <encoding/> | |
| 1288 | - <decimal_symbol/> | |
| 1289 | - <grouping_symbol/> | |
| 1290 | - <currency_symbol/> | |
| 1291 | - <storage_type/> | |
| 1292 | - </meta> <meta> <name>tvVideoType</name> | |
| 1293 | - <rename>tvVideoType</rename> | |
| 1294 | - <type>Integer</type> | |
| 1295 | - <length>1</length> | |
| 1296 | - <precision>-2</precision> | |
| 1297 | - <conversion_mask/> | |
| 1298 | - <date_format_lenient>false</date_format_lenient> | |
| 1299 | - <date_format_locale/> | |
| 1300 | - <date_format_timezone/> | |
| 1301 | - <lenient_string_to_number>false</lenient_string_to_number> | |
| 1302 | - <encoding/> | |
| 1303 | - <decimal_symbol/> | |
| 1304 | - <grouping_symbol/> | |
| 1305 | - <currency_symbol/> | |
| 1306 | - <storage_type/> | |
| 1307 | - </meta> </fields> <cluster_schema/> | |
| 1308 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1309 | - <xloc>839</xloc> | |
| 1310 | - <yloc>61</yloc> | |
| 1311 | - <draw>Y</draw> | |
| 1312 | - </GUI> | |
| 1313 | - </step> | |
| 1314 | - | |
| 1315 | - <step> | |
| 1316 | - <name>是否空调车</name> | |
| 1317 | - <type>ValueMapper</type> | |
| 1318 | - <description/> | |
| 1319 | - <distribute>Y</distribute> | |
| 1320 | - <custom_distribution/> | |
| 1321 | - <copies>1</copies> | |
| 1322 | - <partitioning> | |
| 1323 | - <method>none</method> | |
| 1324 | - <schema_name/> | |
| 1325 | - </partitioning> | |
| 1326 | - <field_to_use>hvacCar</field_to_use> | |
| 1327 | - <target_field/> | |
| 1328 | - <non_match_default/> | |
| 1329 | - <fields> | |
| 1330 | - <field> | |
| 1331 | - <source_value>是</source_value> | |
| 1332 | - <target_value>1</target_value> | |
| 1333 | - </field> | |
| 1334 | - <field> | |
| 1335 | - <source_value>否</source_value> | |
| 1336 | - <target_value>0</target_value> | |
| 1337 | - </field> | |
| 1338 | - </fields> | |
| 1339 | - <cluster_schema/> | |
| 1340 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1341 | - <xloc>388</xloc> | |
| 1342 | - <yloc>61</yloc> | |
| 1343 | - <draw>Y</draw> | |
| 1344 | - </GUI> | |
| 1345 | - </step> | |
| 1346 | - | |
| 1347 | - <step> | |
| 1348 | - <name>有无人售票</name> | |
| 1349 | - <type>ValueMapper</type> | |
| 1350 | - <description/> | |
| 1351 | - <distribute>Y</distribute> | |
| 1352 | - <custom_distribution/> | |
| 1353 | - <copies>1</copies> | |
| 1354 | - <partitioning> | |
| 1355 | - <method>none</method> | |
| 1356 | - <schema_name/> | |
| 1357 | - </partitioning> | |
| 1358 | - <field_to_use>ticketType</field_to_use> | |
| 1359 | - <target_field/> | |
| 1360 | - <non_match_default/> | |
| 1361 | - <fields> | |
| 1362 | - <field> | |
| 1363 | - <source_value>是</source_value> | |
| 1364 | - <target_value>1</target_value> | |
| 1365 | - </field> | |
| 1366 | - <field> | |
| 1367 | - <source_value>否</source_value> | |
| 1368 | - <target_value>0</target_value> | |
| 1369 | - </field> | |
| 1370 | - </fields> | |
| 1371 | - <cluster_schema/> | |
| 1372 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1373 | - <xloc>485</xloc> | |
| 1374 | - <yloc>61</yloc> | |
| 1375 | - <draw>Y</draw> | |
| 1376 | - </GUI> | |
| 1377 | - </step> | |
| 1378 | - | |
| 1379 | - <step> | |
| 1380 | - <name>获取变量</name> | |
| 1381 | - <type>GetVariable</type> | |
| 1382 | - <description/> | |
| 1383 | - <distribute>Y</distribute> | |
| 1384 | - <custom_distribution/> | |
| 1385 | - <copies>1</copies> | |
| 1386 | - <partitioning> | |
| 1387 | - <method>none</method> | |
| 1388 | - <schema_name/> | |
| 1389 | - </partitioning> | |
| 1390 | - <fields> | |
| 1391 | - <field> | |
| 1392 | - <name>filepath_</name> | |
| 1393 | - <variable>${filepath}</variable> | |
| 1394 | - <type>String</type> | |
| 1395 | - <format/> | |
| 1396 | - <currency/> | |
| 1397 | - <decimal/> | |
| 1398 | - <group/> | |
| 1399 | - <length>-1</length> | |
| 1400 | - <precision>-1</precision> | |
| 1401 | - <trim_type>none</trim_type> | |
| 1402 | - </field> | |
| 1403 | - <field> | |
| 1404 | - <name>erroroutputdir_</name> | |
| 1405 | - <variable>${erroroutputdir}</variable> | |
| 1406 | - <type>String</type> | |
| 1407 | - <format/> | |
| 1408 | - <currency/> | |
| 1409 | - <decimal/> | |
| 1410 | - <group/> | |
| 1411 | - <length>-1</length> | |
| 1412 | - <precision>-1</precision> | |
| 1413 | - <trim_type>none</trim_type> | |
| 1414 | - </field> | |
| 1415 | - </fields> | |
| 1416 | - <cluster_schema/> | |
| 1417 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1418 | - <xloc>134</xloc> | |
| 1419 | - <yloc>183</yloc> | |
| 1420 | - <draw>Y</draw> | |
| 1421 | - </GUI> | |
| 1422 | - </step> | |
| 1423 | - | |
| 1424 | - <step> | |
| 1425 | - <name>错误输出</name> | |
| 1426 | - <type>ExcelOutput</type> | |
| 1427 | - <description/> | |
| 1428 | - <distribute>Y</distribute> | |
| 1429 | - <custom_distribution/> | |
| 1430 | - <copies>1</copies> | |
| 1431 | - <partitioning> | |
| 1432 | - <method>none</method> | |
| 1433 | - <schema_name/> | |
| 1434 | - </partitioning> | |
| 1435 | - <header>Y</header> | |
| 1436 | - <footer>N</footer> | |
| 1437 | - <encoding/> | |
| 1438 | - <append>N</append> | |
| 1439 | - <add_to_result_filenames>Y</add_to_result_filenames> | |
| 1440 | - <file> | |
| 1441 | - <name>${erroroutputdir}/车辆基础信息_错误</name> | |
| 1442 | - <extention>xls</extention> | |
| 1443 | - <do_not_open_newfile_init>N</do_not_open_newfile_init> | |
| 1444 | - <create_parent_folder>N</create_parent_folder> | |
| 1445 | - <split>N</split> | |
| 1446 | - <add_date>N</add_date> | |
| 1447 | - <add_time>N</add_time> | |
| 1448 | - <SpecifyFormat>N</SpecifyFormat> | |
| 1449 | - <date_time_format/> | |
| 1450 | - <sheetname>Sheet1</sheetname> | |
| 1451 | - <autosizecolums>N</autosizecolums> | |
| 1452 | - <nullisblank>N</nullisblank> | |
| 1453 | - <protect_sheet>N</protect_sheet> | |
| 1454 | - <password>Encrypted </password> | |
| 1455 | - <splitevery>0</splitevery> | |
| 1456 | - <usetempfiles>N</usetempfiles> | |
| 1457 | - <tempdirectory/> | |
| 1458 | - </file> | |
| 1459 | - <template> | |
| 1460 | - <enabled>N</enabled> | |
| 1461 | - <append>N</append> | |
| 1462 | - <filename>template.xls</filename> | |
| 1463 | - </template> | |
| 1464 | - <fields> | |
| 1465 | - <field> | |
| 1466 | - <name>insideCode</name> | |
| 1467 | - <type>String</type> | |
| 1468 | - <format/> | |
| 1469 | - </field> | |
| 1470 | - <field> | |
| 1471 | - <name>company</name> | |
| 1472 | - <type>String</type> | |
| 1473 | - <format/> | |
| 1474 | - </field> | |
| 1475 | - <field> | |
| 1476 | - <name>brancheCompany</name> | |
| 1477 | - <type>String</type> | |
| 1478 | - <format/> | |
| 1479 | - </field> | |
| 1480 | - <field> | |
| 1481 | - <name>carPlate</name> | |
| 1482 | - <type>String</type> | |
| 1483 | - <format/> | |
| 1484 | - </field> | |
| 1485 | - <field> | |
| 1486 | - <name>supplierName</name> | |
| 1487 | - <type>String</type> | |
| 1488 | - <format/> | |
| 1489 | - </field> | |
| 1490 | - <field> | |
| 1491 | - <name>equipmentCode</name> | |
| 1492 | - <type>String</type> | |
| 1493 | - <format/> | |
| 1494 | - </field> | |
| 1495 | - <field> | |
| 1496 | - <name>carClass</name> | |
| 1497 | - <type>String</type> | |
| 1498 | - <format/> | |
| 1499 | - </field> | |
| 1500 | - <field> | |
| 1501 | - <name>speed</name> | |
| 1502 | - <type>String</type> | |
| 1503 | - <format/> | |
| 1504 | - </field> | |
| 1505 | - <field> | |
| 1506 | - <name>carSeatnNumber</name> | |
| 1507 | - <type>String</type> | |
| 1508 | - <format/> | |
| 1509 | - </field> | |
| 1510 | - <field> | |
| 1511 | - <name>carStandard</name> | |
| 1512 | - <type>String</type> | |
| 1513 | - <format/> | |
| 1514 | - </field> | |
| 1515 | - <field> | |
| 1516 | - <name>kburnStandard</name> | |
| 1517 | - <type>String</type> | |
| 1518 | - <format/> | |
| 1519 | - </field> | |
| 1520 | - <field> | |
| 1521 | - <name>gburnStandard</name> | |
| 1522 | - <type>String</type> | |
| 1523 | - <format/> | |
| 1524 | - </field> | |
| 1525 | - <field> | |
| 1526 | - <name>scrapCode</name> | |
| 1527 | - <type>String</type> | |
| 1528 | - <format/> | |
| 1529 | - </field> | |
| 1530 | - <field> | |
| 1531 | - <name>makeCodeOne</name> | |
| 1532 | - <type>String</type> | |
| 1533 | - <format/> | |
| 1534 | - </field> | |
| 1535 | - <field> | |
| 1536 | - <name>makeCodeTwo</name> | |
| 1537 | - <type>String</type> | |
| 1538 | - <format/> | |
| 1539 | - </field> | |
| 1540 | - <field> | |
| 1541 | - <name>carGride</name> | |
| 1542 | - <type>String</type> | |
| 1543 | - <format/> | |
| 1544 | - </field> | |
| 1545 | - <field> | |
| 1546 | - <name>emissionsStandard</name> | |
| 1547 | - <type>String</type> | |
| 1548 | - <format/> | |
| 1549 | - </field> | |
| 1550 | - <field> | |
| 1551 | - <name>engineCodeOne</name> | |
| 1552 | - <type>String</type> | |
| 1553 | - <format/> | |
| 1554 | - </field> | |
| 1555 | - <field> | |
| 1556 | - <name>engineCodeTwo</name> | |
| 1557 | - <type>String</type> | |
| 1558 | - <format/> | |
| 1559 | - </field> | |
| 1560 | - <field> | |
| 1561 | - <name>carNumberOne</name> | |
| 1562 | - <type>String</type> | |
| 1563 | - <format/> | |
| 1564 | - </field> | |
| 1565 | - <field> | |
| 1566 | - <name>carNumberTwo</name> | |
| 1567 | - <type>String</type> | |
| 1568 | - <format/> | |
| 1569 | - </field> | |
| 1570 | - <field> | |
| 1571 | - <name>openDate</name> | |
| 1572 | - <type>String</type> | |
| 1573 | - <format/> | |
| 1574 | - </field> | |
| 1575 | - <field> | |
| 1576 | - <name>closeDate</name> | |
| 1577 | - <type>String</type> | |
| 1578 | - <format/> | |
| 1579 | - </field> | |
| 1580 | - <field> | |
| 1581 | - <name>hvacCar</name> | |
| 1582 | - <type>Integer</type> | |
| 1583 | - <format/> | |
| 1584 | - </field> | |
| 1585 | - <field> | |
| 1586 | - <name>ticketType</name> | |
| 1587 | - <type>Integer</type> | |
| 1588 | - <format/> | |
| 1589 | - </field> | |
| 1590 | - <field> | |
| 1591 | - <name>ledScreen</name> | |
| 1592 | - <type>Integer</type> | |
| 1593 | - <format/> | |
| 1594 | - </field> | |
| 1595 | - <field> | |
| 1596 | - <name>tvVideoType</name> | |
| 1597 | - <type>Integer</type> | |
| 1598 | - <format/> | |
| 1599 | - </field> | |
| 1600 | - <field> | |
| 1601 | - <name>carType</name> | |
| 1602 | - <type>String</type> | |
| 1603 | - <format/> | |
| 1604 | - </field> | |
| 1605 | - <field> | |
| 1606 | - <name>vehicleStats</name> | |
| 1607 | - <type>String</type> | |
| 1608 | - <format/> | |
| 1609 | - </field> | |
| 1610 | - <field> | |
| 1611 | - <name>operatorsState</name> | |
| 1612 | - <type>String</type> | |
| 1613 | - <format/> | |
| 1614 | - </field> | |
| 1615 | - <field> | |
| 1616 | - <name>descriptions</name> | |
| 1617 | - <type>String</type> | |
| 1618 | - <format/> | |
| 1619 | - </field> | |
| 1620 | - <field> | |
| 1621 | - <name>videoCode</name> | |
| 1622 | - <type>String</type> | |
| 1623 | - <format/> | |
| 1624 | - </field> | |
| 1625 | - <field> | |
| 1626 | - <name>businessCode</name> | |
| 1627 | - <type>String</type> | |
| 1628 | - <format/> | |
| 1629 | - </field> | |
| 1630 | - <field> | |
| 1631 | - <name>carCode</name> | |
| 1632 | - <type>String</type> | |
| 1633 | - <format/> | |
| 1634 | - </field> | |
| 1635 | - <field> | |
| 1636 | - <name>error_count</name> | |
| 1637 | - <type>Integer</type> | |
| 1638 | - <format/> | |
| 1639 | - </field> | |
| 1640 | - <field> | |
| 1641 | - <name>error_desc</name> | |
| 1642 | - <type>String</type> | |
| 1643 | - <format/> | |
| 1644 | - </field> | |
| 1645 | - <field> | |
| 1646 | - <name>error_column1</name> | |
| 1647 | - <type>String</type> | |
| 1648 | - <format/> | |
| 1649 | - </field> | |
| 1650 | - <field> | |
| 1651 | - <name>error_column2</name> | |
| 1652 | - <type>String</type> | |
| 1653 | - <format/> | |
| 1654 | - </field> | |
| 1655 | - </fields> | |
| 1656 | - <custom> | |
| 1657 | - <header_font_name>arial</header_font_name> | |
| 1658 | - <header_font_size>10</header_font_size> | |
| 1659 | - <header_font_bold>N</header_font_bold> | |
| 1660 | - <header_font_italic>N</header_font_italic> | |
| 1661 | - <header_font_underline>no</header_font_underline> | |
| 1662 | - <header_font_orientation>horizontal</header_font_orientation> | |
| 1663 | - <header_font_color>black</header_font_color> | |
| 1664 | - <header_background_color>none</header_background_color> | |
| 1665 | - <header_row_height>255</header_row_height> | |
| 1666 | - <header_alignment>left</header_alignment> | |
| 1667 | - <header_image/> | |
| 1668 | - <row_font_name>arial</row_font_name> | |
| 1669 | - <row_font_size>10</row_font_size> | |
| 1670 | - <row_font_color>black</row_font_color> | |
| 1671 | - <row_background_color>none</row_background_color> | |
| 1672 | - </custom> | |
| 1673 | - <cluster_schema/> | |
| 1674 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1675 | - <xloc>637</xloc> | |
| 1676 | - <yloc>320</yloc> | |
| 1677 | - <draw>Y</draw> | |
| 1678 | - </GUI> | |
| 1679 | - </step> | |
| 1680 | - | |
| 1681 | - <step_error_handling> | |
| 1682 | - <error> | |
| 1683 | - <source_step>插入/更新bsth_c_cars</source_step> | |
| 1684 | - <target_step>错误输出</target_step> | |
| 1685 | - <is_enabled>Y</is_enabled> | |
| 1686 | - <nr_valuename>error_count</nr_valuename> | |
| 1687 | - <descriptions_valuename>error_desc</descriptions_valuename> | |
| 1688 | - <fields_valuename>error_column1</fields_valuename> | |
| 1689 | - <codes_valuename>error_column2</codes_valuename> | |
| 1690 | - <max_errors/> | |
| 1691 | - <max_pct_errors/> | |
| 1692 | - <min_pct_rows/> | |
| 1693 | - </error> | |
| 1694 | - </step_error_handling> | |
| 1695 | - <slave-step-copy-partition-distribution> | |
| 1696 | -</slave-step-copy-partition-distribution> | |
| 1697 | - <slave_transformation>N</slave_transformation> | |
| 1698 | - | |
| 1699 | -</transformation> | |
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | +<transformation> | |
| 3 | + <info> | |
| 4 | + <name>carsDataInput</name> | |
| 5 | + <description>车辆信息导入</description> | |
| 6 | + <extended_description>车辆基础信息</extended_description> | |
| 7 | + <trans_version/> | |
| 8 | + <trans_type>Normal</trans_type> | |
| 9 | + <trans_status>0</trans_status> | |
| 10 | + <directory>/</directory> | |
| 11 | + <parameters> | |
| 12 | + <parameter> | |
| 13 | + <name>erroroutputdir</name> | |
| 14 | + <default_value/> | |
| 15 | + <description>ktr step配置的错误输出目录</description> | |
| 16 | + </parameter> | |
| 17 | + <parameter> | |
| 18 | + <name>filepath</name> | |
| 19 | + <default_value/> | |
| 20 | + <description>待处理导入的excel文件</description> | |
| 21 | + </parameter> | |
| 22 | + </parameters> | |
| 23 | + <log> | |
| 24 | +<trans-log-table><connection/> | |
| 25 | +<schema/> | |
| 26 | +<table/> | |
| 27 | +<size_limit_lines/> | |
| 28 | +<interval/> | |
| 29 | +<timeout_days/> | |
| 30 | +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STATUS</id><enabled>Y</enabled><name>STATUS</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name><subject/></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name><subject/></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name><subject/></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name><subject/></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name><subject/></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name><subject/></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>STARTDATE</id><enabled>Y</enabled><name>STARTDATE</name></field><field><id>ENDDATE</id><enabled>Y</enabled><name>ENDDATE</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>DEPDATE</id><enabled>Y</enabled><name>DEPDATE</name></field><field><id>REPLAYDATE</id><enabled>Y</enabled><name>REPLAYDATE</name></field><field><id>LOG_FIELD</id><enabled>Y</enabled><name>LOG_FIELD</name></field><field><id>EXECUTING_SERVER</id><enabled>N</enabled><name>EXECUTING_SERVER</name></field><field><id>EXECUTING_USER</id><enabled>N</enabled><name>EXECUTING_USER</name></field><field><id>CLIENT</id><enabled>N</enabled><name>CLIENT</name></field></trans-log-table> | |
| 31 | +<perf-log-table><connection/> | |
| 32 | +<schema/> | |
| 33 | +<table/> | |
| 34 | +<interval/> | |
| 35 | +<timeout_days/> | |
| 36 | +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>SEQ_NR</id><enabled>Y</enabled><name>SEQ_NR</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>INPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>INPUT_BUFFER_ROWS</name></field><field><id>OUTPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>OUTPUT_BUFFER_ROWS</name></field></perf-log-table> | |
| 37 | +<channel-log-table><connection/> | |
| 38 | +<schema/> | |
| 39 | +<table/> | |
| 40 | +<timeout_days/> | |
| 41 | +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>LOGGING_OBJECT_TYPE</id><enabled>Y</enabled><name>LOGGING_OBJECT_TYPE</name></field><field><id>OBJECT_NAME</id><enabled>Y</enabled><name>OBJECT_NAME</name></field><field><id>OBJECT_COPY</id><enabled>Y</enabled><name>OBJECT_COPY</name></field><field><id>REPOSITORY_DIRECTORY</id><enabled>Y</enabled><name>REPOSITORY_DIRECTORY</name></field><field><id>FILENAME</id><enabled>Y</enabled><name>FILENAME</name></field><field><id>OBJECT_ID</id><enabled>Y</enabled><name>OBJECT_ID</name></field><field><id>OBJECT_REVISION</id><enabled>Y</enabled><name>OBJECT_REVISION</name></field><field><id>PARENT_CHANNEL_ID</id><enabled>Y</enabled><name>PARENT_CHANNEL_ID</name></field><field><id>ROOT_CHANNEL_ID</id><enabled>Y</enabled><name>ROOT_CHANNEL_ID</name></field></channel-log-table> | |
| 42 | +<step-log-table><connection/> | |
| 43 | +<schema/> | |
| 44 | +<table/> | |
| 45 | +<timeout_days/> | |
| 46 | +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>LOG_FIELD</id><enabled>N</enabled><name>LOG_FIELD</name></field></step-log-table> | |
| 47 | +<metrics-log-table><connection/> | |
| 48 | +<schema/> | |
| 49 | +<table/> | |
| 50 | +<timeout_days/> | |
| 51 | +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>METRICS_DATE</id><enabled>Y</enabled><name>METRICS_DATE</name></field><field><id>METRICS_CODE</id><enabled>Y</enabled><name>METRICS_CODE</name></field><field><id>METRICS_DESCRIPTION</id><enabled>Y</enabled><name>METRICS_DESCRIPTION</name></field><field><id>METRICS_SUBJECT</id><enabled>Y</enabled><name>METRICS_SUBJECT</name></field><field><id>METRICS_TYPE</id><enabled>Y</enabled><name>METRICS_TYPE</name></field><field><id>METRICS_VALUE</id><enabled>Y</enabled><name>METRICS_VALUE</name></field></metrics-log-table> | |
| 52 | + </log> | |
| 53 | + <maxdate> | |
| 54 | + <connection/> | |
| 55 | + <table/> | |
| 56 | + <field/> | |
| 57 | + <offset>0.0</offset> | |
| 58 | + <maxdiff>0.0</maxdiff> | |
| 59 | + </maxdate> | |
| 60 | + <size_rowset>10000</size_rowset> | |
| 61 | + <sleep_time_empty>50</sleep_time_empty> | |
| 62 | + <sleep_time_full>50</sleep_time_full> | |
| 63 | + <unique_connections>N</unique_connections> | |
| 64 | + <feedback_shown>Y</feedback_shown> | |
| 65 | + <feedback_size>50000</feedback_size> | |
| 66 | + <using_thread_priorities>Y</using_thread_priorities> | |
| 67 | + <shared_objects_file/> | |
| 68 | + <capture_step_performance>N</capture_step_performance> | |
| 69 | + <step_performance_capturing_delay>1000</step_performance_capturing_delay> | |
| 70 | + <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit> | |
| 71 | + <dependencies> | |
| 72 | + </dependencies> | |
| 73 | + <partitionschemas> | |
| 74 | + </partitionschemas> | |
| 75 | + <slaveservers> | |
| 76 | + </slaveservers> | |
| 77 | + <clusterschemas> | |
| 78 | + </clusterschemas> | |
| 79 | + <created_user>-</created_user> | |
| 80 | + <created_date>2016/06/23 17:44:46.781</created_date> | |
| 81 | + <modified_user>-</modified_user> | |
| 82 | + <modified_date>2016/06/23 17:44:46.781</modified_date> | |
| 83 | + <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA=</key_for_session_key> | |
| 84 | + <is_key_private>N</is_key_private> | |
| 85 | + </info> | |
| 86 | + <notepads> | |
| 87 | + <notepad> | |
| 88 | + <note>原系统的导出表,有些数据是没有的,有些数据也有问题,如下
报废日期去掉
车辆编码,暂时用1代替
是否电车 没有
车辆序号 没有
是否切换 没有
线路名称(这里不做关联,只是登记的时候使用) 咩有</note> | |
| 89 | + <xloc>365</xloc> | |
| 90 | + <yloc>136</yloc> | |
| 91 | + <width>346</width> | |
| 92 | + <heigth>122</heigth> | |
| 93 | + <fontname>YaHei Consolas Hybrid</fontname> | |
| 94 | + <fontsize>12</fontsize> | |
| 95 | + <fontbold>N</fontbold> | |
| 96 | + <fontitalic>N</fontitalic> | |
| 97 | + <fontcolorred>0</fontcolorred> | |
| 98 | + <fontcolorgreen>0</fontcolorgreen> | |
| 99 | + <fontcolorblue>0</fontcolorblue> | |
| 100 | + <backgroundcolorred>255</backgroundcolorred> | |
| 101 | + <backgroundcolorgreen>205</backgroundcolorgreen> | |
| 102 | + <backgroundcolorblue>112</backgroundcolorblue> | |
| 103 | + <bordercolorred>100</bordercolorred> | |
| 104 | + <bordercolorgreen>100</bordercolorgreen> | |
| 105 | + <bordercolorblue>100</bordercolorblue> | |
| 106 | + <drawshadow>Y</drawshadow> | |
| 107 | + </notepad> | |
| 108 | + </notepads> | |
| 109 | + <connection> | |
| 110 | + <name>bus_control_variable</name> | |
| 111 | + <server>${v_db_ip}</server> | |
| 112 | + <type>MYSQL</type> | |
| 113 | + <access>Native</access> | |
| 114 | + <database>control</database> | |
| 115 | + <port>3306</port> | |
| 116 | + <username>${v_db_uname}</username> | |
| 117 | + <password>${v_db_pwd}</password> | |
| 118 | + <servername/> | |
| 119 | + <data_tablespace/> | |
| 120 | + <index_tablespace/> | |
| 121 | + <attributes> | |
| 122 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 123 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 124 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 125 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 126 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 127 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 128 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 129 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 130 | + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute> | |
| 131 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 132 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 133 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 134 | + </attributes> | |
| 135 | + </connection> | |
| 136 | + <connection> | |
| 137 | + <name>bus_control_公司_201</name> | |
| 138 | + <server>localhost</server> | |
| 139 | + <type>MYSQL</type> | |
| 140 | + <access>Native</access> | |
| 141 | + <database>control</database> | |
| 142 | + <port>3306</port> | |
| 143 | + <username>root</username> | |
| 144 | + <password>Encrypted </password> | |
| 145 | + <servername/> | |
| 146 | + <data_tablespace/> | |
| 147 | + <index_tablespace/> | |
| 148 | + <attributes> | |
| 149 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 150 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 151 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 152 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 153 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 154 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 155 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 156 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 157 | + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute> | |
| 158 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 159 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 160 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 161 | + </attributes> | |
| 162 | + </connection> | |
| 163 | + <connection> | |
| 164 | + <name>bus_control_本机</name> | |
| 165 | + <server>localhost</server> | |
| 166 | + <type>MYSQL</type> | |
| 167 | + <access>Native</access> | |
| 168 | + <database>control</database> | |
| 169 | + <port>3306</port> | |
| 170 | + <username>root</username> | |
| 171 | + <password>Encrypted </password> | |
| 172 | + <servername/> | |
| 173 | + <data_tablespace/> | |
| 174 | + <index_tablespace/> | |
| 175 | + <attributes> | |
| 176 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 177 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 178 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 179 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 180 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 181 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 182 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 183 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 184 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 185 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 186 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 187 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 188 | + </attributes> | |
| 189 | + </connection> | |
| 190 | + <connection> | |
| 191 | + <name>xlab_mysql_youle</name> | |
| 192 | + <server>101.231.124.8</server> | |
| 193 | + <type>MYSQL</type> | |
| 194 | + <access>Native</access> | |
| 195 | + <database>xlab_youle</database> | |
| 196 | + <port>45687</port> | |
| 197 | + <username>xlab-youle</username> | |
| 198 | + <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password> | |
| 199 | + <servername/> | |
| 200 | + <data_tablespace/> | |
| 201 | + <index_tablespace/> | |
| 202 | + <attributes> | |
| 203 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 204 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 205 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 206 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 207 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 208 | + <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute> | |
| 209 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 210 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 211 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 212 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 213 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 214 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 215 | + </attributes> | |
| 216 | + </connection> | |
| 217 | + <connection> | |
| 218 | + <name>xlab_mysql_youle(本机)</name> | |
| 219 | + <server>localhost</server> | |
| 220 | + <type>MYSQL</type> | |
| 221 | + <access>Native</access> | |
| 222 | + <database>xlab_youle</database> | |
| 223 | + <port>3306</port> | |
| 224 | + <username>root</username> | |
| 225 | + <password>Encrypted </password> | |
| 226 | + <servername/> | |
| 227 | + <data_tablespace/> | |
| 228 | + <index_tablespace/> | |
| 229 | + <attributes> | |
| 230 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 231 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 232 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 233 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 234 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 235 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 236 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 237 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 238 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 239 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 240 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 241 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 242 | + </attributes> | |
| 243 | + </connection> | |
| 244 | + <connection> | |
| 245 | + <name>xlab_youle</name> | |
| 246 | + <server/> | |
| 247 | + <type>MYSQL</type> | |
| 248 | + <access>JNDI</access> | |
| 249 | + <database>xlab_youle</database> | |
| 250 | + <port>1521</port> | |
| 251 | + <username/> | |
| 252 | + <password>Encrypted </password> | |
| 253 | + <servername/> | |
| 254 | + <data_tablespace/> | |
| 255 | + <index_tablespace/> | |
| 256 | + <attributes> | |
| 257 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 258 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 259 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 260 | + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | |
| 261 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 262 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 263 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 264 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 265 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 266 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 267 | + </attributes> | |
| 268 | + </connection> | |
| 269 | + <order> | |
| 270 | + <hop> <from>原始系统导出的Excel输入</from><to>字段选择</to><enabled>Y</enabled> </hop> | |
| 271 | + <hop> <from>字段选择</from><to>是否空调车</to><enabled>Y</enabled> </hop> | |
| 272 | + <hop> <from>插入/更新bsth_c_cars</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>有无人售票</to><enabled>Y</enabled> </hop> | |
| 277 | + <hop> <from>有无人售票</from><to>是否有LED服务屏</to><enabled>Y</enabled> </hop> | |
| 278 | + <hop> <from>公交企业代码</from><to>插入/更新bsth_c_cars</to><enabled>Y</enabled> </hop> | |
| 279 | + <hop> <from>获取变量</from><to>原始系统导出的Excel输入</to><enabled>Y</enabled> </hop> | |
| 280 | + </order> | |
| 281 | + <step> | |
| 282 | + <name>公交企业代码</name> | |
| 283 | + <type>ValueMapper</type> | |
| 284 | + <description/> | |
| 285 | + <distribute>Y</distribute> | |
| 286 | + <custom_distribution/> | |
| 287 | + <copies>1</copies> | |
| 288 | + <partitioning> | |
| 289 | + <method>none</method> | |
| 290 | + <schema_name/> | |
| 291 | + </partitioning> | |
| 292 | + <field_to_use>company</field_to_use> | |
| 293 | + <target_field>businessCode</target_field> | |
| 294 | + <non_match_default/> | |
| 295 | + <fields> | |
| 296 | + <field> | |
| 297 | + <source_value>上南公司</source_value> | |
| 298 | + <target_value>55</target_value> | |
| 299 | + </field> | |
| 300 | + <field> | |
| 301 | + <source_value>金高公司</source_value> | |
| 302 | + <target_value>22</target_value> | |
| 303 | + </field> | |
| 304 | + <field> | |
| 305 | + <source_value>杨高公司</source_value> | |
| 306 | + <target_value>05</target_value> | |
| 307 | + </field> | |
| 308 | + <field> | |
| 309 | + <source_value>南汇公司</source_value> | |
| 310 | + <target_value>26</target_value> | |
| 311 | + </field> | |
| 312 | + <field> | |
| 313 | + <source_value>公交公司</source_value> | |
| 314 | + <target_value>88</target_value> | |
| 315 | + </field> | |
| 316 | + <field> | |
| 317 | + <source_value>闵行公交</source_value> | |
| 318 | + <target_value>77</target_value> | |
| 319 | + </field> | |
| 320 | + </fields> | |
| 321 | + <cluster_schema/> | |
| 322 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 323 | + <xloc>841</xloc> | |
| 324 | + <yloc>166</yloc> | |
| 325 | + <draw>Y</draw> | |
| 326 | + </GUI> | |
| 327 | + </step> | |
| 328 | + | |
| 329 | + <step> | |
| 330 | + <name>原始系统导出的Excel输入</name> | |
| 331 | + <type>ExcelInput</type> | |
| 332 | + <description/> | |
| 333 | + <distribute>Y</distribute> | |
| 334 | + <custom_distribution/> | |
| 335 | + <copies>1</copies> | |
| 336 | + <partitioning> | |
| 337 | + <method>none</method> | |
| 338 | + <schema_name/> | |
| 339 | + </partitioning> | |
| 340 | + <header>Y</header> | |
| 341 | + <noempty>Y</noempty> | |
| 342 | + <stoponempty>N</stoponempty> | |
| 343 | + <filefield/> | |
| 344 | + <sheetfield/> | |
| 345 | + <sheetrownumfield/> | |
| 346 | + <rownumfield/> | |
| 347 | + <sheetfield/> | |
| 348 | + <filefield/> | |
| 349 | + <limit>0</limit> | |
| 350 | + <encoding/> | |
| 351 | + <add_to_result_filenames>Y</add_to_result_filenames> | |
| 352 | + <accept_filenames>Y</accept_filenames> | |
| 353 | + <accept_field>filepath_</accept_field> | |
| 354 | + <accept_stepname>获取变量</accept_stepname> | |
| 355 | + <file> | |
| 356 | + <name/> | |
| 357 | + <filemask/> | |
| 358 | + <exclude_filemask/> | |
| 359 | + <file_required>N</file_required> | |
| 360 | + <include_subfolders>N</include_subfolders> | |
| 361 | + </file> | |
| 362 | + <fields> | |
| 363 | + <field> | |
| 364 | + <name>车牌号</name> | |
| 365 | + <type>String</type> | |
| 366 | + <length>-1</length> | |
| 367 | + <precision>-1</precision> | |
| 368 | + <trim_type>none</trim_type> | |
| 369 | + <repeat>N</repeat> | |
| 370 | + <format/> | |
| 371 | + <currency/> | |
| 372 | + <decimal/> | |
| 373 | + <group/> | |
| 374 | + </field> | |
| 375 | + <field> | |
| 376 | + <name>内部编码</name> | |
| 377 | + <type>String</type> | |
| 378 | + <length>-1</length> | |
| 379 | + <precision>-1</precision> | |
| 380 | + <trim_type>none</trim_type> | |
| 381 | + <repeat>N</repeat> | |
| 382 | + <format/> | |
| 383 | + <currency/> | |
| 384 | + <decimal/> | |
| 385 | + <group/> | |
| 386 | + </field> | |
| 387 | + <field> | |
| 388 | + <name>车辆编码</name> | |
| 389 | + <type>String</type> | |
| 390 | + <length>-1</length> | |
| 391 | + <precision>-1</precision> | |
| 392 | + <trim_type>none</trim_type> | |
| 393 | + <repeat>N</repeat> | |
| 394 | + <format/> | |
| 395 | + <currency/> | |
| 396 | + <decimal/> | |
| 397 | + <group/> | |
| 398 | + </field> | |
| 399 | + <field> | |
| 400 | + <name>车型类别</name> | |
| 401 | + <type>String</type> | |
| 402 | + <length>-1</length> | |
| 403 | + <precision>-1</precision> | |
| 404 | + <trim_type>none</trim_type> | |
| 405 | + <repeat>N</repeat> | |
| 406 | + <format/> | |
| 407 | + <currency/> | |
| 408 | + <decimal/> | |
| 409 | + <group/> | |
| 410 | + </field> | |
| 411 | + <field> | |
| 412 | + <name>座位数</name> | |
| 413 | + <type>String</type> | |
| 414 | + <length>-1</length> | |
| 415 | + <precision>-1</precision> | |
| 416 | + <trim_type>none</trim_type> | |
| 417 | + <repeat>N</repeat> | |
| 418 | + <format/> | |
| 419 | + <currency/> | |
| 420 | + <decimal/> | |
| 421 | + <group/> | |
| 422 | + </field> | |
| 423 | + <field> | |
| 424 | + <name>载客标准</name> | |
| 425 | + <type>String</type> | |
| 426 | + <length>-1</length> | |
| 427 | + <precision>-1</precision> | |
| 428 | + <trim_type>none</trim_type> | |
| 429 | + <repeat>N</repeat> | |
| 430 | + <format/> | |
| 431 | + <currency/> | |
| 432 | + <decimal/> | |
| 433 | + <group/> | |
| 434 | + </field> | |
| 435 | + <field> | |
| 436 | + <name>技术速度</name> | |
| 437 | + <type>String</type> | |
| 438 | + <length>-1</length> | |
| 439 | + <precision>-1</precision> | |
| 440 | + <trim_type>none</trim_type> | |
| 441 | + <repeat>N</repeat> | |
| 442 | + <format/> | |
| 443 | + <currency/> | |
| 444 | + <decimal/> | |
| 445 | + <group/> | |
| 446 | + </field> | |
| 447 | + <field> | |
| 448 | + <name>是否空调</name> | |
| 449 | + <type>String</type> | |
| 450 | + <length>-1</length> | |
| 451 | + <precision>-1</precision> | |
| 452 | + <trim_type>none</trim_type> | |
| 453 | + <repeat>N</repeat> | |
| 454 | + <format/> | |
| 455 | + <currency/> | |
| 456 | + <decimal/> | |
| 457 | + <group/> | |
| 458 | + </field> | |
| 459 | + <field> | |
| 460 | + <name>标准油耗(开空调)</name> | |
| 461 | + <type>String</type> | |
| 462 | + <length>-1</length> | |
| 463 | + <precision>-1</precision> | |
| 464 | + <trim_type>none</trim_type> | |
| 465 | + <repeat>N</repeat> | |
| 466 | + <format/> | |
| 467 | + <currency/> | |
| 468 | + <decimal/> | |
| 469 | + <group/> | |
| 470 | + </field> | |
| 471 | + <field> | |
| 472 | + <name>标准油耗(关空调)</name> | |
| 473 | + <type>String</type> | |
| 474 | + <length>-1</length> | |
| 475 | + <precision>-1</precision> | |
| 476 | + <trim_type>none</trim_type> | |
| 477 | + <repeat>N</repeat> | |
| 478 | + <format/> | |
| 479 | + <currency/> | |
| 480 | + <decimal/> | |
| 481 | + <group/> | |
| 482 | + </field> | |
| 483 | + <field> | |
| 484 | + <name>有无人售票</name> | |
| 485 | + <type>String</type> | |
| 486 | + <length>-1</length> | |
| 487 | + <precision>-1</precision> | |
| 488 | + <trim_type>none</trim_type> | |
| 489 | + <repeat>N</repeat> | |
| 490 | + <format/> | |
| 491 | + <currency/> | |
| 492 | + <decimal/> | |
| 493 | + <group/> | |
| 494 | + </field> | |
| 495 | + <field> | |
| 496 | + <name>是否有TV视频</name> | |
| 497 | + <type>String</type> | |
| 498 | + <length>-1</length> | |
| 499 | + <precision>-1</precision> | |
| 500 | + <trim_type>none</trim_type> | |
| 501 | + <repeat>N</repeat> | |
| 502 | + <format/> | |
| 503 | + <currency/> | |
| 504 | + <decimal/> | |
| 505 | + <group/> | |
| 506 | + </field> | |
| 507 | + <field> | |
| 508 | + <name>是否有LED服务屏</name> | |
| 509 | + <type>String</type> | |
| 510 | + <length>-1</length> | |
| 511 | + <precision>-1</precision> | |
| 512 | + <trim_type>none</trim_type> | |
| 513 | + <repeat>N</repeat> | |
| 514 | + <format/> | |
| 515 | + <currency/> | |
| 516 | + <decimal/> | |
| 517 | + <group/> | |
| 518 | + </field> | |
| 519 | + <field> | |
| 520 | + <name>运营状态</name> | |
| 521 | + <type>String</type> | |
| 522 | + <length>-1</length> | |
| 523 | + <precision>-1</precision> | |
| 524 | + <trim_type>none</trim_type> | |
| 525 | + <repeat>N</repeat> | |
| 526 | + <format/> | |
| 527 | + <currency/> | |
| 528 | + <decimal/> | |
| 529 | + <group/> | |
| 530 | + </field> | |
| 531 | + <field> | |
| 532 | + <name>启用日期</name> | |
| 533 | + <type>String</type> | |
| 534 | + <length>-1</length> | |
| 535 | + <precision>-1</precision> | |
| 536 | + <trim_type>none</trim_type> | |
| 537 | + <repeat>N</repeat> | |
| 538 | + <format/> | |
| 539 | + <currency/> | |
| 540 | + <decimal/> | |
| 541 | + <group/> | |
| 542 | + </field> | |
| 543 | + <field> | |
| 544 | + <name>取消日期</name> | |
| 545 | + <type>String</type> | |
| 546 | + <length>-1</length> | |
| 547 | + <precision>-1</precision> | |
| 548 | + <trim_type>none</trim_type> | |
| 549 | + <repeat>N</repeat> | |
| 550 | + <format/> | |
| 551 | + <currency/> | |
| 552 | + <decimal/> | |
| 553 | + <group/> | |
| 554 | + </field> | |
| 555 | + <field> | |
| 556 | + <name>报废号</name> | |
| 557 | + <type>String</type> | |
| 558 | + <length>-1</length> | |
| 559 | + <precision>-1</precision> | |
| 560 | + <trim_type>none</trim_type> | |
| 561 | + <repeat>N</repeat> | |
| 562 | + <format/> | |
| 563 | + <currency/> | |
| 564 | + <decimal/> | |
| 565 | + <group/> | |
| 566 | + </field> | |
| 567 | + <field> | |
| 568 | + <name>报废日期</name> | |
| 569 | + <type>String</type> | |
| 570 | + <length>-1</length> | |
| 571 | + <precision>-1</precision> | |
| 572 | + <trim_type>none</trim_type> | |
| 573 | + <repeat>N</repeat> | |
| 574 | + <format/> | |
| 575 | + <currency/> | |
| 576 | + <decimal/> | |
| 577 | + <group/> | |
| 578 | + </field> | |
| 579 | + <field> | |
| 580 | + <name>备注</name> | |
| 581 | + <type>String</type> | |
| 582 | + <length>-1</length> | |
| 583 | + <precision>-1</precision> | |
| 584 | + <trim_type>none</trim_type> | |
| 585 | + <repeat>N</repeat> | |
| 586 | + <format/> | |
| 587 | + <currency/> | |
| 588 | + <decimal/> | |
| 589 | + <group/> | |
| 590 | + </field> | |
| 591 | + <field> | |
| 592 | + <name>设备编号</name> | |
| 593 | + <type>String</type> | |
| 594 | + <length>-1</length> | |
| 595 | + <precision>-1</precision> | |
| 596 | + <trim_type>none</trim_type> | |
| 597 | + <repeat>N</repeat> | |
| 598 | + <format/> | |
| 599 | + <currency/> | |
| 600 | + <decimal/> | |
| 601 | + <group/> | |
| 602 | + </field> | |
| 603 | + <field> | |
| 604 | + <name>厂牌型号</name> | |
| 605 | + <type>String</type> | |
| 606 | + <length>-1</length> | |
| 607 | + <precision>-1</precision> | |
| 608 | + <trim_type>none</trim_type> | |
| 609 | + <repeat>N</repeat> | |
| 610 | + <format/> | |
| 611 | + <currency/> | |
| 612 | + <decimal/> | |
| 613 | + <group/> | |
| 614 | + </field> | |
| 615 | + <field> | |
| 616 | + <name>厂牌型号2</name> | |
| 617 | + <type>String</type> | |
| 618 | + <length>-1</length> | |
| 619 | + <precision>-1</precision> | |
| 620 | + <trim_type>none</trim_type> | |
| 621 | + <repeat>N</repeat> | |
| 622 | + <format/> | |
| 623 | + <currency/> | |
| 624 | + <decimal/> | |
| 625 | + <group/> | |
| 626 | + </field> | |
| 627 | + <field> | |
| 628 | + <name>车辆等级标准</name> | |
| 629 | + <type>String</type> | |
| 630 | + <length>-1</length> | |
| 631 | + <precision>-1</precision> | |
| 632 | + <trim_type>none</trim_type> | |
| 633 | + <repeat>N</repeat> | |
| 634 | + <format/> | |
| 635 | + <currency/> | |
| 636 | + <decimal/> | |
| 637 | + <group/> | |
| 638 | + </field> | |
| 639 | + <field> | |
| 640 | + <name>出厂排放标准</name> | |
| 641 | + <type>String</type> | |
| 642 | + <length>-1</length> | |
| 643 | + <precision>-1</precision> | |
| 644 | + <trim_type>none</trim_type> | |
| 645 | + <repeat>N</repeat> | |
| 646 | + <format/> | |
| 647 | + <currency/> | |
| 648 | + <decimal/> | |
| 649 | + <group/> | |
| 650 | + </field> | |
| 651 | + <field> | |
| 652 | + <name>发动机号码1</name> | |
| 653 | + <type>String</type> | |
| 654 | + <length>-1</length> | |
| 655 | + <precision>-1</precision> | |
| 656 | + <trim_type>none</trim_type> | |
| 657 | + <repeat>N</repeat> | |
| 658 | + <format/> | |
| 659 | + <currency/> | |
| 660 | + <decimal/> | |
| 661 | + <group/> | |
| 662 | + </field> | |
| 663 | + <field> | |
| 664 | + <name>发动机号码2</name> | |
| 665 | + <type>String</type> | |
| 666 | + <length>-1</length> | |
| 667 | + <precision>-1</precision> | |
| 668 | + <trim_type>none</trim_type> | |
| 669 | + <repeat>N</repeat> | |
| 670 | + <format/> | |
| 671 | + <currency/> | |
| 672 | + <decimal/> | |
| 673 | + <group/> | |
| 674 | + </field> | |
| 675 | + <field> | |
| 676 | + <name>车架号码1</name> | |
| 677 | + <type>String</type> | |
| 678 | + <length>-1</length> | |
| 679 | + <precision>-1</precision> | |
| 680 | + <trim_type>none</trim_type> | |
| 681 | + <repeat>N</repeat> | |
| 682 | + <format/> | |
| 683 | + <currency/> | |
| 684 | + <decimal/> | |
| 685 | + <group/> | |
| 686 | + </field> | |
| 687 | + <field> | |
| 688 | + <name>车架号码2</name> | |
| 689 | + <type>String</type> | |
| 690 | + <length>-1</length> | |
| 691 | + <precision>-1</precision> | |
| 692 | + <trim_type>none</trim_type> | |
| 693 | + <repeat>N</repeat> | |
| 694 | + <format/> | |
| 695 | + <currency/> | |
| 696 | + <decimal/> | |
| 697 | + <group/> | |
| 698 | + </field> | |
| 699 | + <field> | |
| 700 | + <name>车辆类型</name> | |
| 701 | + <type>String</type> | |
| 702 | + <length>-1</length> | |
| 703 | + <precision>-1</precision> | |
| 704 | + <trim_type>none</trim_type> | |
| 705 | + <repeat>N</repeat> | |
| 706 | + <format/> | |
| 707 | + <currency/> | |
| 708 | + <decimal/> | |
| 709 | + <group/> | |
| 710 | + </field> | |
| 711 | + <field> | |
| 712 | + <name>所属公司</name> | |
| 713 | + <type>String</type> | |
| 714 | + <length>-1</length> | |
| 715 | + <precision>-1</precision> | |
| 716 | + <trim_type>none</trim_type> | |
| 717 | + <repeat>N</repeat> | |
| 718 | + <format/> | |
| 719 | + <currency/> | |
| 720 | + <decimal/> | |
| 721 | + <group/> | |
| 722 | + </field> | |
| 723 | + <field> | |
| 724 | + <name>修改日期</name> | |
| 725 | + <type>String</type> | |
| 726 | + <length>-1</length> | |
| 727 | + <precision>-1</precision> | |
| 728 | + <trim_type>none</trim_type> | |
| 729 | + <repeat>N</repeat> | |
| 730 | + <format/> | |
| 731 | + <currency/> | |
| 732 | + <decimal/> | |
| 733 | + <group/> | |
| 734 | + </field> | |
| 735 | + <field> | |
| 736 | + <name>是否机动车</name> | |
| 737 | + <type>String</type> | |
| 738 | + <length>-1</length> | |
| 739 | + <precision>-1</precision> | |
| 740 | + <trim_type>none</trim_type> | |
| 741 | + <repeat>N</repeat> | |
| 742 | + <format/> | |
| 743 | + <currency/> | |
| 744 | + <decimal/> | |
| 745 | + <group/> | |
| 746 | + </field> | |
| 747 | + <field> | |
| 748 | + <name>视频编号</name> | |
| 749 | + <type>String</type> | |
| 750 | + <length>-1</length> | |
| 751 | + <precision>-1</precision> | |
| 752 | + <trim_type>none</trim_type> | |
| 753 | + <repeat>N</repeat> | |
| 754 | + <format/> | |
| 755 | + <currency/> | |
| 756 | + <decimal/> | |
| 757 | + <group/> | |
| 758 | + </field> | |
| 759 | + <field> | |
| 760 | + <name>设备供应厂商</name> | |
| 761 | + <type>String</type> | |
| 762 | + <length>-1</length> | |
| 763 | + <precision>-1</precision> | |
| 764 | + <trim_type>none</trim_type> | |
| 765 | + <repeat>N</repeat> | |
| 766 | + <format/> | |
| 767 | + <currency/> | |
| 768 | + <decimal/> | |
| 769 | + <group/> | |
| 770 | + </field> | |
| 771 | + <field> | |
| 772 | + <name>分公司</name> | |
| 773 | + <type>String</type> | |
| 774 | + <length>-1</length> | |
| 775 | + <precision>-1</precision> | |
| 776 | + <trim_type>none</trim_type> | |
| 777 | + <repeat>N</repeat> | |
| 778 | + <format/> | |
| 779 | + <currency/> | |
| 780 | + <decimal/> | |
| 781 | + <group/> | |
| 782 | + </field> | |
| 783 | + </fields> | |
| 784 | + <sheets> | |
| 785 | + <sheet> | |
| 786 | + <name>工作表1</name> | |
| 787 | + <startrow>0</startrow> | |
| 788 | + <startcol>0</startcol> | |
| 789 | + </sheet> | |
| 790 | + </sheets> | |
| 791 | + <strict_types>N</strict_types> | |
| 792 | + <error_ignored>N</error_ignored> | |
| 793 | + <error_line_skipped>N</error_line_skipped> | |
| 794 | + <bad_line_files_destination_directory/> | |
| 795 | + <bad_line_files_extension>warning</bad_line_files_extension> | |
| 796 | + <error_line_files_destination_directory/> | |
| 797 | + <error_line_files_extension>error</error_line_files_extension> | |
| 798 | + <line_number_files_destination_directory/> | |
| 799 | + <line_number_files_extension>line</line_number_files_extension> | |
| 800 | + <shortFileFieldName/> | |
| 801 | + <pathFieldName/> | |
| 802 | + <hiddenFieldName/> | |
| 803 | + <lastModificationTimeFieldName/> | |
| 804 | + <uriNameFieldName/> | |
| 805 | + <rootUriNameFieldName/> | |
| 806 | + <extensionFieldName/> | |
| 807 | + <sizeFieldName/> | |
| 808 | + <spreadsheet_type>JXL</spreadsheet_type> | |
| 809 | + <cluster_schema/> | |
| 810 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 811 | + <xloc>131</xloc> | |
| 812 | + <yloc>58</yloc> | |
| 813 | + <draw>Y</draw> | |
| 814 | + </GUI> | |
| 815 | + </step> | |
| 816 | + | |
| 817 | + <step> | |
| 818 | + <name>字段选择</name> | |
| 819 | + <type>SelectValues</type> | |
| 820 | + <description/> | |
| 821 | + <distribute>Y</distribute> | |
| 822 | + <custom_distribution/> | |
| 823 | + <copies>1</copies> | |
| 824 | + <partitioning> | |
| 825 | + <method>none</method> | |
| 826 | + <schema_name/> | |
| 827 | + </partitioning> | |
| 828 | + <fields> <field> <name>内部编码</name> | |
| 829 | + <rename>insideCode</rename> | |
| 830 | + <length>-2</length> | |
| 831 | + <precision>-2</precision> | |
| 832 | + </field> <field> <name>车辆编码</name> | |
| 833 | + <rename>carCode</rename> | |
| 834 | + <length>-2</length> | |
| 835 | + <precision>-2</precision> | |
| 836 | + </field> <field> <name>所属公司</name> | |
| 837 | + <rename>company</rename> | |
| 838 | + <length>-2</length> | |
| 839 | + <precision>-2</precision> | |
| 840 | + </field> <field> <name>分公司</name> | |
| 841 | + <rename>brancheCompany</rename> | |
| 842 | + <length>-2</length> | |
| 843 | + <precision>-2</precision> | |
| 844 | + </field> <field> <name>车牌号</name> | |
| 845 | + <rename>carPlate</rename> | |
| 846 | + <length>-2</length> | |
| 847 | + <precision>-2</precision> | |
| 848 | + </field> <field> <name>设备供应厂商</name> | |
| 849 | + <rename>supplierName</rename> | |
| 850 | + <length>-2</length> | |
| 851 | + <precision>-2</precision> | |
| 852 | + </field> <field> <name>设备编号</name> | |
| 853 | + <rename>equipmentCode</rename> | |
| 854 | + <length>-2</length> | |
| 855 | + <precision>-2</precision> | |
| 856 | + </field> <field> <name>车型类别</name> | |
| 857 | + <rename>carClass</rename> | |
| 858 | + <length>-2</length> | |
| 859 | + <precision>-2</precision> | |
| 860 | + </field> <field> <name>技术速度</name> | |
| 861 | + <rename>speed</rename> | |
| 862 | + <length>-2</length> | |
| 863 | + <precision>-2</precision> | |
| 864 | + </field> <field> <name>座位数</name> | |
| 865 | + <rename>carSeatnNumber</rename> | |
| 866 | + <length>-2</length> | |
| 867 | + <precision>-2</precision> | |
| 868 | + </field> <field> <name>载客标准</name> | |
| 869 | + <rename>carStandard</rename> | |
| 870 | + <length>-2</length> | |
| 871 | + <precision>-2</precision> | |
| 872 | + </field> <field> <name>标准油耗(开空调)</name> | |
| 873 | + <rename>kburnStandard</rename> | |
| 874 | + <length>-2</length> | |
| 875 | + <precision>-2</precision> | |
| 876 | + </field> <field> <name>标准油耗(关空调)</name> | |
| 877 | + <rename>gburnStandard</rename> | |
| 878 | + <length>-2</length> | |
| 879 | + <precision>-2</precision> | |
| 880 | + </field> <field> <name>报废号</name> | |
| 881 | + <rename>scrapCode</rename> | |
| 882 | + <length>-2</length> | |
| 883 | + <precision>-2</precision> | |
| 884 | + </field> <field> <name>厂牌型号</name> | |
| 885 | + <rename>makeCodeOne</rename> | |
| 886 | + <length>-2</length> | |
| 887 | + <precision>-2</precision> | |
| 888 | + </field> <field> <name>厂牌型号2</name> | |
| 889 | + <rename>makeCodeTwo</rename> | |
| 890 | + <length>-2</length> | |
| 891 | + <precision>-2</precision> | |
| 892 | + </field> <field> <name>车辆等级标准</name> | |
| 893 | + <rename>carGride</rename> | |
| 894 | + <length>-2</length> | |
| 895 | + <precision>-2</precision> | |
| 896 | + </field> <field> <name>出厂排放标准</name> | |
| 897 | + <rename>emissionsStandard</rename> | |
| 898 | + <length>-2</length> | |
| 899 | + <precision>-2</precision> | |
| 900 | + </field> <field> <name>发动机号码1</name> | |
| 901 | + <rename>engineCodeOne</rename> | |
| 902 | + <length>-2</length> | |
| 903 | + <precision>-2</precision> | |
| 904 | + </field> <field> <name>发动机号码2</name> | |
| 905 | + <rename>engineCodeTwo</rename> | |
| 906 | + <length>-2</length> | |
| 907 | + <precision>-2</precision> | |
| 908 | + </field> <field> <name>车架号码1</name> | |
| 909 | + <rename>carNumberOne</rename> | |
| 910 | + <length>-2</length> | |
| 911 | + <precision>-2</precision> | |
| 912 | + </field> <field> <name>车架号码2</name> | |
| 913 | + <rename>carNumberTwo</rename> | |
| 914 | + <length>-2</length> | |
| 915 | + <precision>-2</precision> | |
| 916 | + </field> <field> <name>启用日期</name> | |
| 917 | + <rename>openDate</rename> | |
| 918 | + <length>-2</length> | |
| 919 | + <precision>-2</precision> | |
| 920 | + </field> <field> <name>取消日期</name> | |
| 921 | + <rename>closeDate</rename> | |
| 922 | + <length>-2</length> | |
| 923 | + <precision>-2</precision> | |
| 924 | + </field> <field> <name>是否空调</name> | |
| 925 | + <rename>hvacCar</rename> | |
| 926 | + <length>-2</length> | |
| 927 | + <precision>-2</precision> | |
| 928 | + </field> <field> <name>有无人售票</name> | |
| 929 | + <rename>ticketType</rename> | |
| 930 | + <length>-2</length> | |
| 931 | + <precision>-2</precision> | |
| 932 | + </field> <field> <name>是否有LED服务屏</name> | |
| 933 | + <rename>ledScreen</rename> | |
| 934 | + <length>-2</length> | |
| 935 | + <precision>-2</precision> | |
| 936 | + </field> <field> <name>是否有TV视频</name> | |
| 937 | + <rename>tvVideoType</rename> | |
| 938 | + <length>-2</length> | |
| 939 | + <precision>-2</precision> | |
| 940 | + </field> <field> <name>车辆类型</name> | |
| 941 | + <rename>carType</rename> | |
| 942 | + <length>-2</length> | |
| 943 | + <precision>-2</precision> | |
| 944 | + </field> <field> <name>是否机动车</name> | |
| 945 | + <rename>vehicleStats</rename> | |
| 946 | + <length>-2</length> | |
| 947 | + <precision>-2</precision> | |
| 948 | + </field> <field> <name>运营状态</name> | |
| 949 | + <rename>operatorsState</rename> | |
| 950 | + <length>-2</length> | |
| 951 | + <precision>-2</precision> | |
| 952 | + </field> <field> <name>备注</name> | |
| 953 | + <rename>descriptions</rename> | |
| 954 | + <length>-2</length> | |
| 955 | + <precision>-2</precision> | |
| 956 | + </field> <field> <name>视频编号</name> | |
| 957 | + <rename>videoCode</rename> | |
| 958 | + <length>-2</length> | |
| 959 | + <precision>-2</precision> | |
| 960 | + </field> <select_unspecified>Y</select_unspecified> | |
| 961 | + </fields> <cluster_schema/> | |
| 962 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 963 | + <xloc>279</xloc> | |
| 964 | + <yloc>59</yloc> | |
| 965 | + <draw>Y</draw> | |
| 966 | + </GUI> | |
| 967 | + </step> | |
| 968 | + | |
| 969 | + <step> | |
| 970 | + <name>插入/更新bsth_c_cars</name> | |
| 971 | + <type>InsertUpdate</type> | |
| 972 | + <description/> | |
| 973 | + <distribute>Y</distribute> | |
| 974 | + <custom_distribution/> | |
| 975 | + <copies>1</copies> | |
| 976 | + <partitioning> | |
| 977 | + <method>none</method> | |
| 978 | + <schema_name/> | |
| 979 | + </partitioning> | |
| 980 | + <connection>bus_control_variable</connection> | |
| 981 | + <commit>1000</commit> | |
| 982 | + <update_bypassed>N</update_bypassed> | |
| 983 | + <lookup> | |
| 984 | + <schema/> | |
| 985 | + <table>bsth_c_cars</table> | |
| 986 | + <key> | |
| 987 | + <name>insideCode</name> | |
| 988 | + <field>inside_code</field> | |
| 989 | + <condition>=</condition> | |
| 990 | + <name2/> | |
| 991 | + </key> | |
| 992 | + <value> | |
| 993 | + <name>inside_code</name> | |
| 994 | + <rename>insideCode</rename> | |
| 995 | + <update>Y</update> | |
| 996 | + </value> | |
| 997 | + <value> | |
| 998 | + <name>company</name> | |
| 999 | + <rename>company</rename> | |
| 1000 | + <update>Y</update> | |
| 1001 | + </value> | |
| 1002 | + <value> | |
| 1003 | + <name>branche_company</name> | |
| 1004 | + <rename>brancheCompany</rename> | |
| 1005 | + <update>Y</update> | |
| 1006 | + </value> | |
| 1007 | + <value> | |
| 1008 | + <name>car_plate</name> | |
| 1009 | + <rename>carPlate</rename> | |
| 1010 | + <update>Y</update> | |
| 1011 | + </value> | |
| 1012 | + <value> | |
| 1013 | + <name>supplier_name</name> | |
| 1014 | + <rename>supplierName</rename> | |
| 1015 | + <update>Y</update> | |
| 1016 | + </value> | |
| 1017 | + <value> | |
| 1018 | + <name>equipment_code</name> | |
| 1019 | + <rename>equipmentCode</rename> | |
| 1020 | + <update>Y</update> | |
| 1021 | + </value> | |
| 1022 | + <value> | |
| 1023 | + <name>car_class</name> | |
| 1024 | + <rename>carClass</rename> | |
| 1025 | + <update>Y</update> | |
| 1026 | + </value> | |
| 1027 | + <value> | |
| 1028 | + <name>speed</name> | |
| 1029 | + <rename>speed</rename> | |
| 1030 | + <update>Y</update> | |
| 1031 | + </value> | |
| 1032 | + <value> | |
| 1033 | + <name>car_seatn_number</name> | |
| 1034 | + <rename>carSeatnNumber</rename> | |
| 1035 | + <update>Y</update> | |
| 1036 | + </value> | |
| 1037 | + <value> | |
| 1038 | + <name>car_standard</name> | |
| 1039 | + <rename>carStandard</rename> | |
| 1040 | + <update>Y</update> | |
| 1041 | + </value> | |
| 1042 | + <value> | |
| 1043 | + <name>car_code</name> | |
| 1044 | + <rename>carCode</rename> | |
| 1045 | + <update>Y</update> | |
| 1046 | + </value> | |
| 1047 | + <value> | |
| 1048 | + <name>kburn_standard</name> | |
| 1049 | + <rename>kburnStandard</rename> | |
| 1050 | + <update>Y</update> | |
| 1051 | + </value> | |
| 1052 | + <value> | |
| 1053 | + <name>gburn_standard</name> | |
| 1054 | + <rename>gburnStandard</rename> | |
| 1055 | + <update>Y</update> | |
| 1056 | + </value> | |
| 1057 | + <value> | |
| 1058 | + <name>scrap_code</name> | |
| 1059 | + <rename>scrapCode</rename> | |
| 1060 | + <update>Y</update> | |
| 1061 | + </value> | |
| 1062 | + <value> | |
| 1063 | + <name>make_code_one</name> | |
| 1064 | + <rename>makeCodeOne</rename> | |
| 1065 | + <update>Y</update> | |
| 1066 | + </value> | |
| 1067 | + <value> | |
| 1068 | + <name>make_code_two</name> | |
| 1069 | + <rename>makeCodeTwo</rename> | |
| 1070 | + <update>Y</update> | |
| 1071 | + </value> | |
| 1072 | + <value> | |
| 1073 | + <name>car_gride</name> | |
| 1074 | + <rename>carGride</rename> | |
| 1075 | + <update>Y</update> | |
| 1076 | + </value> | |
| 1077 | + <value> | |
| 1078 | + <name>emissions_standard</name> | |
| 1079 | + <rename>emissionsStandard</rename> | |
| 1080 | + <update>Y</update> | |
| 1081 | + </value> | |
| 1082 | + <value> | |
| 1083 | + <name>engine_code_one</name> | |
| 1084 | + <rename>engineCodeOne</rename> | |
| 1085 | + <update>Y</update> | |
| 1086 | + </value> | |
| 1087 | + <value> | |
| 1088 | + <name>engine_code_two</name> | |
| 1089 | + <rename>engineCodeTwo</rename> | |
| 1090 | + <update>Y</update> | |
| 1091 | + </value> | |
| 1092 | + <value> | |
| 1093 | + <name>car_number_one</name> | |
| 1094 | + <rename>carNumberOne</rename> | |
| 1095 | + <update>Y</update> | |
| 1096 | + </value> | |
| 1097 | + <value> | |
| 1098 | + <name>car_number_two</name> | |
| 1099 | + <rename>carNumberTwo</rename> | |
| 1100 | + <update>Y</update> | |
| 1101 | + </value> | |
| 1102 | + <value> | |
| 1103 | + <name>open_date</name> | |
| 1104 | + <rename>openDate</rename> | |
| 1105 | + <update>Y</update> | |
| 1106 | + </value> | |
| 1107 | + <value> | |
| 1108 | + <name>close_date</name> | |
| 1109 | + <rename>closeDate</rename> | |
| 1110 | + <update>Y</update> | |
| 1111 | + </value> | |
| 1112 | + <value> | |
| 1113 | + <name>hvac_car</name> | |
| 1114 | + <rename>hvacCar</rename> | |
| 1115 | + <update>Y</update> | |
| 1116 | + </value> | |
| 1117 | + <value> | |
| 1118 | + <name>ticket_type</name> | |
| 1119 | + <rename>ticketType</rename> | |
| 1120 | + <update>Y</update> | |
| 1121 | + </value> | |
| 1122 | + <value> | |
| 1123 | + <name>led_screen</name> | |
| 1124 | + <rename>ledScreen</rename> | |
| 1125 | + <update>Y</update> | |
| 1126 | + </value> | |
| 1127 | + <value> | |
| 1128 | + <name>tv_video_type</name> | |
| 1129 | + <rename>tvVideoType</rename> | |
| 1130 | + <update>Y</update> | |
| 1131 | + </value> | |
| 1132 | + <value> | |
| 1133 | + <name>car_type</name> | |
| 1134 | + <rename>carType</rename> | |
| 1135 | + <update>Y</update> | |
| 1136 | + </value> | |
| 1137 | + <value> | |
| 1138 | + <name>vehicle_stats</name> | |
| 1139 | + <rename>vehicleStats</rename> | |
| 1140 | + <update>Y</update> | |
| 1141 | + </value> | |
| 1142 | + <value> | |
| 1143 | + <name>operators_state</name> | |
| 1144 | + <rename>operatorsState</rename> | |
| 1145 | + <update>Y</update> | |
| 1146 | + </value> | |
| 1147 | + <value> | |
| 1148 | + <name>descriptions</name> | |
| 1149 | + <rename>descriptions</rename> | |
| 1150 | + <update>Y</update> | |
| 1151 | + </value> | |
| 1152 | + <value> | |
| 1153 | + <name>video_code</name> | |
| 1154 | + <rename>videoCode</rename> | |
| 1155 | + <update>Y</update> | |
| 1156 | + </value> | |
| 1157 | + <value> | |
| 1158 | + <name>business_code</name> | |
| 1159 | + <rename>businessCode</rename> | |
| 1160 | + <update>Y</update> | |
| 1161 | + </value> | |
| 1162 | + </lookup> | |
| 1163 | + <cluster_schema/> | |
| 1164 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1165 | + <xloc>842</xloc> | |
| 1166 | + <yloc>319</yloc> | |
| 1167 | + <draw>Y</draw> | |
| 1168 | + </GUI> | |
| 1169 | + </step> | |
| 1170 | + | |
| 1171 | + <step> | |
| 1172 | + <name>是否有LED服务屏</name> | |
| 1173 | + <type>ValueMapper</type> | |
| 1174 | + <description/> | |
| 1175 | + <distribute>Y</distribute> | |
| 1176 | + <custom_distribution/> | |
| 1177 | + <copies>1</copies> | |
| 1178 | + <partitioning> | |
| 1179 | + <method>none</method> | |
| 1180 | + <schema_name/> | |
| 1181 | + </partitioning> | |
| 1182 | + <field_to_use>ledScreen</field_to_use> | |
| 1183 | + <target_field/> | |
| 1184 | + <non_match_default/> | |
| 1185 | + <fields> | |
| 1186 | + <field> | |
| 1187 | + <source_value>是</source_value> | |
| 1188 | + <target_value>1</target_value> | |
| 1189 | + </field> | |
| 1190 | + <field> | |
| 1191 | + <source_value>否</source_value> | |
| 1192 | + <target_value>0</target_value> | |
| 1193 | + </field> | |
| 1194 | + </fields> | |
| 1195 | + <cluster_schema/> | |
| 1196 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1197 | + <xloc>590</xloc> | |
| 1198 | + <yloc>61</yloc> | |
| 1199 | + <draw>Y</draw> | |
| 1200 | + </GUI> | |
| 1201 | + </step> | |
| 1202 | + | |
| 1203 | + <step> | |
| 1204 | + <name>是否有TV视频</name> | |
| 1205 | + <type>ValueMapper</type> | |
| 1206 | + <description/> | |
| 1207 | + <distribute>Y</distribute> | |
| 1208 | + <custom_distribution/> | |
| 1209 | + <copies>1</copies> | |
| 1210 | + <partitioning> | |
| 1211 | + <method>none</method> | |
| 1212 | + <schema_name/> | |
| 1213 | + </partitioning> | |
| 1214 | + <field_to_use>tvVideoType</field_to_use> | |
| 1215 | + <target_field/> | |
| 1216 | + <non_match_default/> | |
| 1217 | + <fields> | |
| 1218 | + <field> | |
| 1219 | + <source_value>是</source_value> | |
| 1220 | + <target_value>1</target_value> | |
| 1221 | + </field> | |
| 1222 | + <field> | |
| 1223 | + <source_value>否</source_value> | |
| 1224 | + <target_value>0</target_value> | |
| 1225 | + </field> | |
| 1226 | + </fields> | |
| 1227 | + <cluster_schema/> | |
| 1228 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1229 | + <xloc>706</xloc> | |
| 1230 | + <yloc>61</yloc> | |
| 1231 | + <draw>Y</draw> | |
| 1232 | + </GUI> | |
| 1233 | + </step> | |
| 1234 | + | |
| 1235 | + <step> | |
| 1236 | + <name>是否的变成数字型</name> | |
| 1237 | + <type>SelectValues</type> | |
| 1238 | + <description/> | |
| 1239 | + <distribute>Y</distribute> | |
| 1240 | + <custom_distribution/> | |
| 1241 | + <copies>1</copies> | |
| 1242 | + <partitioning> | |
| 1243 | + <method>none</method> | |
| 1244 | + <schema_name/> | |
| 1245 | + </partitioning> | |
| 1246 | + <fields> <select_unspecified>N</select_unspecified> | |
| 1247 | + <meta> <name>hvacCar</name> | |
| 1248 | + <rename>hvacCar</rename> | |
| 1249 | + <type>Integer</type> | |
| 1250 | + <length>1</length> | |
| 1251 | + <precision>-2</precision> | |
| 1252 | + <conversion_mask/> | |
| 1253 | + <date_format_lenient>false</date_format_lenient> | |
| 1254 | + <date_format_locale/> | |
| 1255 | + <date_format_timezone/> | |
| 1256 | + <lenient_string_to_number>false</lenient_string_to_number> | |
| 1257 | + <encoding/> | |
| 1258 | + <decimal_symbol/> | |
| 1259 | + <grouping_symbol/> | |
| 1260 | + <currency_symbol/> | |
| 1261 | + <storage_type/> | |
| 1262 | + </meta> <meta> <name>ticketType</name> | |
| 1263 | + <rename>ticketType</rename> | |
| 1264 | + <type>Integer</type> | |
| 1265 | + <length>1</length> | |
| 1266 | + <precision>-2</precision> | |
| 1267 | + <conversion_mask/> | |
| 1268 | + <date_format_lenient>false</date_format_lenient> | |
| 1269 | + <date_format_locale/> | |
| 1270 | + <date_format_timezone/> | |
| 1271 | + <lenient_string_to_number>false</lenient_string_to_number> | |
| 1272 | + <encoding/> | |
| 1273 | + <decimal_symbol/> | |
| 1274 | + <grouping_symbol/> | |
| 1275 | + <currency_symbol/> | |
| 1276 | + <storage_type/> | |
| 1277 | + </meta> <meta> <name>ledScreen</name> | |
| 1278 | + <rename>ledScreen</rename> | |
| 1279 | + <type>Integer</type> | |
| 1280 | + <length>1</length> | |
| 1281 | + <precision>-2</precision> | |
| 1282 | + <conversion_mask/> | |
| 1283 | + <date_format_lenient>false</date_format_lenient> | |
| 1284 | + <date_format_locale/> | |
| 1285 | + <date_format_timezone/> | |
| 1286 | + <lenient_string_to_number>false</lenient_string_to_number> | |
| 1287 | + <encoding/> | |
| 1288 | + <decimal_symbol/> | |
| 1289 | + <grouping_symbol/> | |
| 1290 | + <currency_symbol/> | |
| 1291 | + <storage_type/> | |
| 1292 | + </meta> <meta> <name>tvVideoType</name> | |
| 1293 | + <rename>tvVideoType</rename> | |
| 1294 | + <type>Integer</type> | |
| 1295 | + <length>1</length> | |
| 1296 | + <precision>-2</precision> | |
| 1297 | + <conversion_mask/> | |
| 1298 | + <date_format_lenient>false</date_format_lenient> | |
| 1299 | + <date_format_locale/> | |
| 1300 | + <date_format_timezone/> | |
| 1301 | + <lenient_string_to_number>false</lenient_string_to_number> | |
| 1302 | + <encoding/> | |
| 1303 | + <decimal_symbol/> | |
| 1304 | + <grouping_symbol/> | |
| 1305 | + <currency_symbol/> | |
| 1306 | + <storage_type/> | |
| 1307 | + </meta> </fields> <cluster_schema/> | |
| 1308 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1309 | + <xloc>839</xloc> | |
| 1310 | + <yloc>61</yloc> | |
| 1311 | + <draw>Y</draw> | |
| 1312 | + </GUI> | |
| 1313 | + </step> | |
| 1314 | + | |
| 1315 | + <step> | |
| 1316 | + <name>是否空调车</name> | |
| 1317 | + <type>ValueMapper</type> | |
| 1318 | + <description/> | |
| 1319 | + <distribute>Y</distribute> | |
| 1320 | + <custom_distribution/> | |
| 1321 | + <copies>1</copies> | |
| 1322 | + <partitioning> | |
| 1323 | + <method>none</method> | |
| 1324 | + <schema_name/> | |
| 1325 | + </partitioning> | |
| 1326 | + <field_to_use>hvacCar</field_to_use> | |
| 1327 | + <target_field/> | |
| 1328 | + <non_match_default/> | |
| 1329 | + <fields> | |
| 1330 | + <field> | |
| 1331 | + <source_value>是</source_value> | |
| 1332 | + <target_value>1</target_value> | |
| 1333 | + </field> | |
| 1334 | + <field> | |
| 1335 | + <source_value>否</source_value> | |
| 1336 | + <target_value>0</target_value> | |
| 1337 | + </field> | |
| 1338 | + </fields> | |
| 1339 | + <cluster_schema/> | |
| 1340 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1341 | + <xloc>388</xloc> | |
| 1342 | + <yloc>61</yloc> | |
| 1343 | + <draw>Y</draw> | |
| 1344 | + </GUI> | |
| 1345 | + </step> | |
| 1346 | + | |
| 1347 | + <step> | |
| 1348 | + <name>有无人售票</name> | |
| 1349 | + <type>ValueMapper</type> | |
| 1350 | + <description/> | |
| 1351 | + <distribute>Y</distribute> | |
| 1352 | + <custom_distribution/> | |
| 1353 | + <copies>1</copies> | |
| 1354 | + <partitioning> | |
| 1355 | + <method>none</method> | |
| 1356 | + <schema_name/> | |
| 1357 | + </partitioning> | |
| 1358 | + <field_to_use>ticketType</field_to_use> | |
| 1359 | + <target_field/> | |
| 1360 | + <non_match_default/> | |
| 1361 | + <fields> | |
| 1362 | + <field> | |
| 1363 | + <source_value>是</source_value> | |
| 1364 | + <target_value>1</target_value> | |
| 1365 | + </field> | |
| 1366 | + <field> | |
| 1367 | + <source_value>否</source_value> | |
| 1368 | + <target_value>0</target_value> | |
| 1369 | + </field> | |
| 1370 | + </fields> | |
| 1371 | + <cluster_schema/> | |
| 1372 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1373 | + <xloc>485</xloc> | |
| 1374 | + <yloc>61</yloc> | |
| 1375 | + <draw>Y</draw> | |
| 1376 | + </GUI> | |
| 1377 | + </step> | |
| 1378 | + | |
| 1379 | + <step> | |
| 1380 | + <name>获取变量</name> | |
| 1381 | + <type>GetVariable</type> | |
| 1382 | + <description/> | |
| 1383 | + <distribute>Y</distribute> | |
| 1384 | + <custom_distribution/> | |
| 1385 | + <copies>1</copies> | |
| 1386 | + <partitioning> | |
| 1387 | + <method>none</method> | |
| 1388 | + <schema_name/> | |
| 1389 | + </partitioning> | |
| 1390 | + <fields> | |
| 1391 | + <field> | |
| 1392 | + <name>filepath_</name> | |
| 1393 | + <variable>${filepath}</variable> | |
| 1394 | + <type>String</type> | |
| 1395 | + <format/> | |
| 1396 | + <currency/> | |
| 1397 | + <decimal/> | |
| 1398 | + <group/> | |
| 1399 | + <length>-1</length> | |
| 1400 | + <precision>-1</precision> | |
| 1401 | + <trim_type>none</trim_type> | |
| 1402 | + </field> | |
| 1403 | + <field> | |
| 1404 | + <name>erroroutputdir_</name> | |
| 1405 | + <variable>${erroroutputdir}</variable> | |
| 1406 | + <type>String</type> | |
| 1407 | + <format/> | |
| 1408 | + <currency/> | |
| 1409 | + <decimal/> | |
| 1410 | + <group/> | |
| 1411 | + <length>-1</length> | |
| 1412 | + <precision>-1</precision> | |
| 1413 | + <trim_type>none</trim_type> | |
| 1414 | + </field> | |
| 1415 | + </fields> | |
| 1416 | + <cluster_schema/> | |
| 1417 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1418 | + <xloc>134</xloc> | |
| 1419 | + <yloc>183</yloc> | |
| 1420 | + <draw>Y</draw> | |
| 1421 | + </GUI> | |
| 1422 | + </step> | |
| 1423 | + | |
| 1424 | + <step> | |
| 1425 | + <name>错误输出</name> | |
| 1426 | + <type>ExcelOutput</type> | |
| 1427 | + <description/> | |
| 1428 | + <distribute>Y</distribute> | |
| 1429 | + <custom_distribution/> | |
| 1430 | + <copies>1</copies> | |
| 1431 | + <partitioning> | |
| 1432 | + <method>none</method> | |
| 1433 | + <schema_name/> | |
| 1434 | + </partitioning> | |
| 1435 | + <header>Y</header> | |
| 1436 | + <footer>N</footer> | |
| 1437 | + <encoding/> | |
| 1438 | + <append>N</append> | |
| 1439 | + <add_to_result_filenames>Y</add_to_result_filenames> | |
| 1440 | + <file> | |
| 1441 | + <name>${erroroutputdir}/车辆基础信息_错误</name> | |
| 1442 | + <extention>xls</extention> | |
| 1443 | + <do_not_open_newfile_init>N</do_not_open_newfile_init> | |
| 1444 | + <create_parent_folder>N</create_parent_folder> | |
| 1445 | + <split>N</split> | |
| 1446 | + <add_date>N</add_date> | |
| 1447 | + <add_time>N</add_time> | |
| 1448 | + <SpecifyFormat>N</SpecifyFormat> | |
| 1449 | + <date_time_format/> | |
| 1450 | + <sheetname>Sheet1</sheetname> | |
| 1451 | + <autosizecolums>N</autosizecolums> | |
| 1452 | + <nullisblank>N</nullisblank> | |
| 1453 | + <protect_sheet>N</protect_sheet> | |
| 1454 | + <password>Encrypted </password> | |
| 1455 | + <splitevery>0</splitevery> | |
| 1456 | + <usetempfiles>N</usetempfiles> | |
| 1457 | + <tempdirectory/> | |
| 1458 | + </file> | |
| 1459 | + <template> | |
| 1460 | + <enabled>N</enabled> | |
| 1461 | + <append>N</append> | |
| 1462 | + <filename>template.xls</filename> | |
| 1463 | + </template> | |
| 1464 | + <fields> | |
| 1465 | + <field> | |
| 1466 | + <name>insideCode</name> | |
| 1467 | + <type>String</type> | |
| 1468 | + <format/> | |
| 1469 | + </field> | |
| 1470 | + <field> | |
| 1471 | + <name>company</name> | |
| 1472 | + <type>String</type> | |
| 1473 | + <format/> | |
| 1474 | + </field> | |
| 1475 | + <field> | |
| 1476 | + <name>brancheCompany</name> | |
| 1477 | + <type>String</type> | |
| 1478 | + <format/> | |
| 1479 | + </field> | |
| 1480 | + <field> | |
| 1481 | + <name>carPlate</name> | |
| 1482 | + <type>String</type> | |
| 1483 | + <format/> | |
| 1484 | + </field> | |
| 1485 | + <field> | |
| 1486 | + <name>supplierName</name> | |
| 1487 | + <type>String</type> | |
| 1488 | + <format/> | |
| 1489 | + </field> | |
| 1490 | + <field> | |
| 1491 | + <name>equipmentCode</name> | |
| 1492 | + <type>String</type> | |
| 1493 | + <format/> | |
| 1494 | + </field> | |
| 1495 | + <field> | |
| 1496 | + <name>carClass</name> | |
| 1497 | + <type>String</type> | |
| 1498 | + <format/> | |
| 1499 | + </field> | |
| 1500 | + <field> | |
| 1501 | + <name>speed</name> | |
| 1502 | + <type>String</type> | |
| 1503 | + <format/> | |
| 1504 | + </field> | |
| 1505 | + <field> | |
| 1506 | + <name>carSeatnNumber</name> | |
| 1507 | + <type>String</type> | |
| 1508 | + <format/> | |
| 1509 | + </field> | |
| 1510 | + <field> | |
| 1511 | + <name>carStandard</name> | |
| 1512 | + <type>String</type> | |
| 1513 | + <format/> | |
| 1514 | + </field> | |
| 1515 | + <field> | |
| 1516 | + <name>kburnStandard</name> | |
| 1517 | + <type>String</type> | |
| 1518 | + <format/> | |
| 1519 | + </field> | |
| 1520 | + <field> | |
| 1521 | + <name>gburnStandard</name> | |
| 1522 | + <type>String</type> | |
| 1523 | + <format/> | |
| 1524 | + </field> | |
| 1525 | + <field> | |
| 1526 | + <name>scrapCode</name> | |
| 1527 | + <type>String</type> | |
| 1528 | + <format/> | |
| 1529 | + </field> | |
| 1530 | + <field> | |
| 1531 | + <name>makeCodeOne</name> | |
| 1532 | + <type>String</type> | |
| 1533 | + <format/> | |
| 1534 | + </field> | |
| 1535 | + <field> | |
| 1536 | + <name>makeCodeTwo</name> | |
| 1537 | + <type>String</type> | |
| 1538 | + <format/> | |
| 1539 | + </field> | |
| 1540 | + <field> | |
| 1541 | + <name>carGride</name> | |
| 1542 | + <type>String</type> | |
| 1543 | + <format/> | |
| 1544 | + </field> | |
| 1545 | + <field> | |
| 1546 | + <name>emissionsStandard</name> | |
| 1547 | + <type>String</type> | |
| 1548 | + <format/> | |
| 1549 | + </field> | |
| 1550 | + <field> | |
| 1551 | + <name>engineCodeOne</name> | |
| 1552 | + <type>String</type> | |
| 1553 | + <format/> | |
| 1554 | + </field> | |
| 1555 | + <field> | |
| 1556 | + <name>engineCodeTwo</name> | |
| 1557 | + <type>String</type> | |
| 1558 | + <format/> | |
| 1559 | + </field> | |
| 1560 | + <field> | |
| 1561 | + <name>carNumberOne</name> | |
| 1562 | + <type>String</type> | |
| 1563 | + <format/> | |
| 1564 | + </field> | |
| 1565 | + <field> | |
| 1566 | + <name>carNumberTwo</name> | |
| 1567 | + <type>String</type> | |
| 1568 | + <format/> | |
| 1569 | + </field> | |
| 1570 | + <field> | |
| 1571 | + <name>openDate</name> | |
| 1572 | + <type>String</type> | |
| 1573 | + <format/> | |
| 1574 | + </field> | |
| 1575 | + <field> | |
| 1576 | + <name>closeDate</name> | |
| 1577 | + <type>String</type> | |
| 1578 | + <format/> | |
| 1579 | + </field> | |
| 1580 | + <field> | |
| 1581 | + <name>hvacCar</name> | |
| 1582 | + <type>Integer</type> | |
| 1583 | + <format/> | |
| 1584 | + </field> | |
| 1585 | + <field> | |
| 1586 | + <name>ticketType</name> | |
| 1587 | + <type>Integer</type> | |
| 1588 | + <format/> | |
| 1589 | + </field> | |
| 1590 | + <field> | |
| 1591 | + <name>ledScreen</name> | |
| 1592 | + <type>Integer</type> | |
| 1593 | + <format/> | |
| 1594 | + </field> | |
| 1595 | + <field> | |
| 1596 | + <name>tvVideoType</name> | |
| 1597 | + <type>Integer</type> | |
| 1598 | + <format/> | |
| 1599 | + </field> | |
| 1600 | + <field> | |
| 1601 | + <name>carType</name> | |
| 1602 | + <type>String</type> | |
| 1603 | + <format/> | |
| 1604 | + </field> | |
| 1605 | + <field> | |
| 1606 | + <name>vehicleStats</name> | |
| 1607 | + <type>String</type> | |
| 1608 | + <format/> | |
| 1609 | + </field> | |
| 1610 | + <field> | |
| 1611 | + <name>operatorsState</name> | |
| 1612 | + <type>String</type> | |
| 1613 | + <format/> | |
| 1614 | + </field> | |
| 1615 | + <field> | |
| 1616 | + <name>descriptions</name> | |
| 1617 | + <type>String</type> | |
| 1618 | + <format/> | |
| 1619 | + </field> | |
| 1620 | + <field> | |
| 1621 | + <name>videoCode</name> | |
| 1622 | + <type>String</type> | |
| 1623 | + <format/> | |
| 1624 | + </field> | |
| 1625 | + <field> | |
| 1626 | + <name>businessCode</name> | |
| 1627 | + <type>String</type> | |
| 1628 | + <format/> | |
| 1629 | + </field> | |
| 1630 | + <field> | |
| 1631 | + <name>carCode</name> | |
| 1632 | + <type>String</type> | |
| 1633 | + <format/> | |
| 1634 | + </field> | |
| 1635 | + <field> | |
| 1636 | + <name>error_count</name> | |
| 1637 | + <type>Integer</type> | |
| 1638 | + <format/> | |
| 1639 | + </field> | |
| 1640 | + <field> | |
| 1641 | + <name>error_desc</name> | |
| 1642 | + <type>String</type> | |
| 1643 | + <format/> | |
| 1644 | + </field> | |
| 1645 | + <field> | |
| 1646 | + <name>error_column1</name> | |
| 1647 | + <type>String</type> | |
| 1648 | + <format/> | |
| 1649 | + </field> | |
| 1650 | + <field> | |
| 1651 | + <name>error_column2</name> | |
| 1652 | + <type>String</type> | |
| 1653 | + <format/> | |
| 1654 | + </field> | |
| 1655 | + </fields> | |
| 1656 | + <custom> | |
| 1657 | + <header_font_name>arial</header_font_name> | |
| 1658 | + <header_font_size>10</header_font_size> | |
| 1659 | + <header_font_bold>N</header_font_bold> | |
| 1660 | + <header_font_italic>N</header_font_italic> | |
| 1661 | + <header_font_underline>no</header_font_underline> | |
| 1662 | + <header_font_orientation>horizontal</header_font_orientation> | |
| 1663 | + <header_font_color>black</header_font_color> | |
| 1664 | + <header_background_color>none</header_background_color> | |
| 1665 | + <header_row_height>255</header_row_height> | |
| 1666 | + <header_alignment>left</header_alignment> | |
| 1667 | + <header_image/> | |
| 1668 | + <row_font_name>arial</row_font_name> | |
| 1669 | + <row_font_size>10</row_font_size> | |
| 1670 | + <row_font_color>black</row_font_color> | |
| 1671 | + <row_background_color>none</row_background_color> | |
| 1672 | + </custom> | |
| 1673 | + <cluster_schema/> | |
| 1674 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1675 | + <xloc>637</xloc> | |
| 1676 | + <yloc>320</yloc> | |
| 1677 | + <draw>Y</draw> | |
| 1678 | + </GUI> | |
| 1679 | + </step> | |
| 1680 | + | |
| 1681 | + <step_error_handling> | |
| 1682 | + <error> | |
| 1683 | + <source_step>插入/更新bsth_c_cars</source_step> | |
| 1684 | + <target_step>错误输出</target_step> | |
| 1685 | + <is_enabled>Y</is_enabled> | |
| 1686 | + <nr_valuename>error_count</nr_valuename> | |
| 1687 | + <descriptions_valuename>error_desc</descriptions_valuename> | |
| 1688 | + <fields_valuename>error_column1</fields_valuename> | |
| 1689 | + <codes_valuename>error_column2</codes_valuename> | |
| 1690 | + <max_errors/> | |
| 1691 | + <max_pct_errors/> | |
| 1692 | + <min_pct_rows/> | |
| 1693 | + </error> | |
| 1694 | + </step_error_handling> | |
| 1695 | + <slave-step-copy-partition-distribution> | |
| 1696 | +</slave-step-copy-partition-distribution> | |
| 1697 | + <slave_transformation>N</slave_transformation> | |
| 1698 | + | |
| 1699 | +</transformation> | ... | ... |
src/main/resources/datatools/ktrs/ttinfoDataInput.ktr
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<transformation> | |
| 3 | - <info> | |
| 4 | - <name>ttinfoDataInput</name> | |
| 5 | - <description>时刻表基础信息导入</description> | |
| 6 | - <extended_description>时刻表基础信息</extended_description> | |
| 7 | - <trans_version/> | |
| 8 | - <trans_type>Normal</trans_type> | |
| 9 | - <trans_status>0</trans_status> | |
| 10 | - <directory>/</directory> | |
| 11 | - <parameters> | |
| 12 | - <parameter> | |
| 13 | - <name>erroroutputdir</name> | |
| 14 | - <default_value/> | |
| 15 | - <description>ktr step配置的错误输出目录</description> | |
| 16 | - </parameter> | |
| 17 | - <parameter> | |
| 18 | - <name>filepath</name> | |
| 19 | - <default_value/> | |
| 20 | - <description>待处理导入的excel文件</description> | |
| 21 | - </parameter> | |
| 22 | - </parameters> | |
| 23 | - <log> | |
| 24 | -<trans-log-table><connection/> | |
| 25 | -<schema/> | |
| 26 | -<table/> | |
| 27 | -<size_limit_lines/> | |
| 28 | -<interval/> | |
| 29 | -<timeout_days/> | |
| 30 | -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STATUS</id><enabled>Y</enabled><name>STATUS</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name><subject/></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name><subject/></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name><subject/></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name><subject/></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name><subject/></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name><subject/></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>STARTDATE</id><enabled>Y</enabled><name>STARTDATE</name></field><field><id>ENDDATE</id><enabled>Y</enabled><name>ENDDATE</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>DEPDATE</id><enabled>Y</enabled><name>DEPDATE</name></field><field><id>REPLAYDATE</id><enabled>Y</enabled><name>REPLAYDATE</name></field><field><id>LOG_FIELD</id><enabled>Y</enabled><name>LOG_FIELD</name></field><field><id>EXECUTING_SERVER</id><enabled>N</enabled><name>EXECUTING_SERVER</name></field><field><id>EXECUTING_USER</id><enabled>N</enabled><name>EXECUTING_USER</name></field><field><id>CLIENT</id><enabled>N</enabled><name>CLIENT</name></field></trans-log-table> | |
| 31 | -<perf-log-table><connection/> | |
| 32 | -<schema/> | |
| 33 | -<table/> | |
| 34 | -<interval/> | |
| 35 | -<timeout_days/> | |
| 36 | -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>SEQ_NR</id><enabled>Y</enabled><name>SEQ_NR</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>INPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>INPUT_BUFFER_ROWS</name></field><field><id>OUTPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>OUTPUT_BUFFER_ROWS</name></field></perf-log-table> | |
| 37 | -<channel-log-table><connection/> | |
| 38 | -<schema/> | |
| 39 | -<table/> | |
| 40 | -<timeout_days/> | |
| 41 | -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>LOGGING_OBJECT_TYPE</id><enabled>Y</enabled><name>LOGGING_OBJECT_TYPE</name></field><field><id>OBJECT_NAME</id><enabled>Y</enabled><name>OBJECT_NAME</name></field><field><id>OBJECT_COPY</id><enabled>Y</enabled><name>OBJECT_COPY</name></field><field><id>REPOSITORY_DIRECTORY</id><enabled>Y</enabled><name>REPOSITORY_DIRECTORY</name></field><field><id>FILENAME</id><enabled>Y</enabled><name>FILENAME</name></field><field><id>OBJECT_ID</id><enabled>Y</enabled><name>OBJECT_ID</name></field><field><id>OBJECT_REVISION</id><enabled>Y</enabled><name>OBJECT_REVISION</name></field><field><id>PARENT_CHANNEL_ID</id><enabled>Y</enabled><name>PARENT_CHANNEL_ID</name></field><field><id>ROOT_CHANNEL_ID</id><enabled>Y</enabled><name>ROOT_CHANNEL_ID</name></field></channel-log-table> | |
| 42 | -<step-log-table><connection/> | |
| 43 | -<schema/> | |
| 44 | -<table/> | |
| 45 | -<timeout_days/> | |
| 46 | -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>LOG_FIELD</id><enabled>N</enabled><name>LOG_FIELD</name></field></step-log-table> | |
| 47 | -<metrics-log-table><connection/> | |
| 48 | -<schema/> | |
| 49 | -<table/> | |
| 50 | -<timeout_days/> | |
| 51 | -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>METRICS_DATE</id><enabled>Y</enabled><name>METRICS_DATE</name></field><field><id>METRICS_CODE</id><enabled>Y</enabled><name>METRICS_CODE</name></field><field><id>METRICS_DESCRIPTION</id><enabled>Y</enabled><name>METRICS_DESCRIPTION</name></field><field><id>METRICS_SUBJECT</id><enabled>Y</enabled><name>METRICS_SUBJECT</name></field><field><id>METRICS_TYPE</id><enabled>Y</enabled><name>METRICS_TYPE</name></field><field><id>METRICS_VALUE</id><enabled>Y</enabled><name>METRICS_VALUE</name></field></metrics-log-table> | |
| 52 | - </log> | |
| 53 | - <maxdate> | |
| 54 | - <connection/> | |
| 55 | - <table/> | |
| 56 | - <field/> | |
| 57 | - <offset>0.0</offset> | |
| 58 | - <maxdiff>0.0</maxdiff> | |
| 59 | - </maxdate> | |
| 60 | - <size_rowset>10000</size_rowset> | |
| 61 | - <sleep_time_empty>50</sleep_time_empty> | |
| 62 | - <sleep_time_full>50</sleep_time_full> | |
| 63 | - <unique_connections>N</unique_connections> | |
| 64 | - <feedback_shown>Y</feedback_shown> | |
| 65 | - <feedback_size>50000</feedback_size> | |
| 66 | - <using_thread_priorities>Y</using_thread_priorities> | |
| 67 | - <shared_objects_file/> | |
| 68 | - <capture_step_performance>N</capture_step_performance> | |
| 69 | - <step_performance_capturing_delay>1000</step_performance_capturing_delay> | |
| 70 | - <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit> | |
| 71 | - <dependencies> | |
| 72 | - </dependencies> | |
| 73 | - <partitionschemas> | |
| 74 | - </partitionschemas> | |
| 75 | - <slaveservers> | |
| 76 | - </slaveservers> | |
| 77 | - <clusterschemas> | |
| 78 | - </clusterschemas> | |
| 79 | - <created_user>-</created_user> | |
| 80 | - <created_date>2016/06/30 09:35:41.558</created_date> | |
| 81 | - <modified_user>-</modified_user> | |
| 82 | - <modified_date>2016/06/30 09:35:41.558</modified_date> | |
| 83 | - <key_for_session_key/> | |
| 84 | - <is_key_private>N</is_key_private> | |
| 85 | - </info> | |
| 86 | - <notepads> | |
| 87 | - <notepad> | |
| 88 | - <note>有些字段没有输入,不太明白,以后再补
模版类型 分时刻表/间隔式两种,暂时空着
是否启用调度模版 暂时空着
还有就是 分别在,圈后圈 暂时没有</note> | |
| 89 | - <xloc>429</xloc> | |
| 90 | - <yloc>144</yloc> | |
| 91 | - <width>240</width> | |
| 92 | - <heigth>74</heigth> | |
| 93 | - <fontname>YaHei Consolas Hybrid</fontname> | |
| 94 | - <fontsize>12</fontsize> | |
| 95 | - <fontbold>N</fontbold> | |
| 96 | - <fontitalic>N</fontitalic> | |
| 97 | - <fontcolorred>0</fontcolorred> | |
| 98 | - <fontcolorgreen>0</fontcolorgreen> | |
| 99 | - <fontcolorblue>0</fontcolorblue> | |
| 100 | - <backgroundcolorred>255</backgroundcolorred> | |
| 101 | - <backgroundcolorgreen>205</backgroundcolorgreen> | |
| 102 | - <backgroundcolorblue>112</backgroundcolorblue> | |
| 103 | - <bordercolorred>100</bordercolorred> | |
| 104 | - <bordercolorgreen>100</bordercolorgreen> | |
| 105 | - <bordercolorblue>100</bordercolorblue> | |
| 106 | - <drawshadow>Y</drawshadow> | |
| 107 | - </notepad> | |
| 108 | - </notepads> | |
| 109 | - <connection> | |
| 110 | - <name>bus_control_公司_201</name> | |
| 111 | - <server>192.168.168.201</server> | |
| 112 | - <type>MYSQL</type> | |
| 113 | - <access>Native</access> | |
| 114 | - <database>control</database> | |
| 115 | - <port>3306</port> | |
| 116 | - <username>root</username> | |
| 117 | - <password>Encrypted 2be98afc86aa7f2e4cb79ff228dc6fa8c</password> | |
| 118 | - <servername/> | |
| 119 | - <data_tablespace/> | |
| 120 | - <index_tablespace/> | |
| 121 | - <attributes> | |
| 122 | - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 123 | - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 124 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 125 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 126 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 127 | - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 128 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 129 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 130 | - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 131 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 132 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 133 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 134 | - </attributes> | |
| 135 | - </connection> | |
| 136 | - <connection> | |
| 137 | - <name>xlab_mysql_youle</name> | |
| 138 | - <server>101.231.124.8</server> | |
| 139 | - <type>MYSQL</type> | |
| 140 | - <access>Native</access> | |
| 141 | - <database>xlab_youle</database> | |
| 142 | - <port>45687</port> | |
| 143 | - <username>xlab-youle</username> | |
| 144 | - <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password> | |
| 145 | - <servername/> | |
| 146 | - <data_tablespace/> | |
| 147 | - <index_tablespace/> | |
| 148 | - <attributes> | |
| 149 | - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 150 | - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 151 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 152 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 153 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 154 | - <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute> | |
| 155 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 156 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 157 | - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 158 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 159 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 160 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 161 | - </attributes> | |
| 162 | - </connection> | |
| 163 | - <connection> | |
| 164 | - <name>xlab_mysql_youle(本机)</name> | |
| 165 | - <server>localhost</server> | |
| 166 | - <type>MYSQL</type> | |
| 167 | - <access>Native</access> | |
| 168 | - <database>xlab_youle</database> | |
| 169 | - <port>3306</port> | |
| 170 | - <username>root</username> | |
| 171 | - <password>Encrypted </password> | |
| 172 | - <servername/> | |
| 173 | - <data_tablespace/> | |
| 174 | - <index_tablespace/> | |
| 175 | - <attributes> | |
| 176 | - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 177 | - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 178 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 179 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 180 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 181 | - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 182 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 183 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 184 | - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 185 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 186 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 187 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 188 | - </attributes> | |
| 189 | - </connection> | |
| 190 | - <connection> | |
| 191 | - <name>xlab_youle</name> | |
| 192 | - <server/> | |
| 193 | - <type>MYSQL</type> | |
| 194 | - <access>JNDI</access> | |
| 195 | - <database>xlab_youle</database> | |
| 196 | - <port>1521</port> | |
| 197 | - <username/> | |
| 198 | - <password>Encrypted </password> | |
| 199 | - <servername/> | |
| 200 | - <data_tablespace/> | |
| 201 | - <index_tablespace/> | |
| 202 | - <attributes> | |
| 203 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 204 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 205 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 206 | - <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | |
| 207 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 208 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 209 | - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 210 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 211 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 212 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 213 | - </attributes> | |
| 214 | - </connection> | |
| 215 | - <order> | |
| 216 | - <hop> <from>插入/更新bsth_c_s_ttinfo</from><to>错误输出</to><enabled>Y</enabled> </hop> | |
| 217 | - <hop> <from>查找线路关联</from><to>插入/更新bsth_c_s_ttinfo</to><enabled>Y</enabled> </hop> | |
| 218 | - <hop> <from>时刻表基础数据Excel输入</from><to>字段选择</to><enabled>Y</enabled> </hop> | |
| 219 | - <hop> <from>字段选择</from><to>线路上下行值映射</to><enabled>Y</enabled> </hop> | |
| 220 | - <hop> <from>线路上下行值映射</from><to>查找线路关联</to><enabled>Y</enabled> </hop> | |
| 221 | - <hop> <from>获取变量</from><to>时刻表基础数据Excel输入</to><enabled>Y</enabled> </hop> | |
| 222 | - </order> | |
| 223 | - <step> | |
| 224 | - <name>插入/更新bsth_c_s_ttinfo</name> | |
| 225 | - <type>InsertUpdate</type> | |
| 226 | - <description/> | |
| 227 | - <distribute>Y</distribute> | |
| 228 | - <custom_distribution/> | |
| 229 | - <copies>1</copies> | |
| 230 | - <partitioning> | |
| 231 | - <method>none</method> | |
| 232 | - <schema_name/> | |
| 233 | - </partitioning> | |
| 234 | - <connection>bus_control_公司_201</connection> | |
| 235 | - <commit>100</commit> | |
| 236 | - <update_bypassed>N</update_bypassed> | |
| 237 | - <lookup> | |
| 238 | - <schema/> | |
| 239 | - <table>bsth_c_s_ttinfo</table> | |
| 240 | - <key> | |
| 241 | - <name>xlid</name> | |
| 242 | - <field>xl</field> | |
| 243 | - <condition>=</condition> | |
| 244 | - <name2/> | |
| 245 | - </key> | |
| 246 | - <key> | |
| 247 | - <name>name</name> | |
| 248 | - <field>name</field> | |
| 249 | - <condition>=</condition> | |
| 250 | - <name2/> | |
| 251 | - </key> | |
| 252 | - <value> | |
| 253 | - <name>name</name> | |
| 254 | - <rename>name</rename> | |
| 255 | - <update>Y</update> | |
| 256 | - </value> | |
| 257 | - <value> | |
| 258 | - <name>xl_dir</name> | |
| 259 | - <rename>xlDir</rename> | |
| 260 | - <update>Y</update> | |
| 261 | - </value> | |
| 262 | - <value> | |
| 263 | - <name>qyrq</name> | |
| 264 | - <rename>qyrq</rename> | |
| 265 | - <update>Y</update> | |
| 266 | - </value> | |
| 267 | - <value> | |
| 268 | - <name>lp_count</name> | |
| 269 | - <rename>lpCount</rename> | |
| 270 | - <update>Y</update> | |
| 271 | - </value> | |
| 272 | - <value> | |
| 273 | - <name>loop_count</name> | |
| 274 | - <rename>loopCount</rename> | |
| 275 | - <update>Y</update> | |
| 276 | - </value> | |
| 277 | - <value> | |
| 278 | - <name>rule_days</name> | |
| 279 | - <rename>rule_days</rename> | |
| 280 | - <update>Y</update> | |
| 281 | - </value> | |
| 282 | - <value> | |
| 283 | - <name>special_days</name> | |
| 284 | - <rename>special_days</rename> | |
| 285 | - <update>Y</update> | |
| 286 | - </value> | |
| 287 | - <value> | |
| 288 | - <name>xl</name> | |
| 289 | - <rename>xlid</rename> | |
| 290 | - <update>Y</update> | |
| 291 | - </value> | |
| 292 | - </lookup> | |
| 293 | - <cluster_schema/> | |
| 294 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 295 | - <xloc>799</xloc> | |
| 296 | - <yloc>71</yloc> | |
| 297 | - <draw>Y</draw> | |
| 298 | - </GUI> | |
| 299 | - </step> | |
| 300 | - | |
| 301 | - <step> | |
| 302 | - <name>查找线路关联</name> | |
| 303 | - <type>DBLookup</type> | |
| 304 | - <description/> | |
| 305 | - <distribute>Y</distribute> | |
| 306 | - <custom_distribution/> | |
| 307 | - <copies>1</copies> | |
| 308 | - <partitioning> | |
| 309 | - <method>none</method> | |
| 310 | - <schema_name/> | |
| 311 | - </partitioning> | |
| 312 | - <connection>bus_control_公司_201</connection> | |
| 313 | - <cache>N</cache> | |
| 314 | - <cache_load_all>N</cache_load_all> | |
| 315 | - <cache_size>0</cache_size> | |
| 316 | - <lookup> | |
| 317 | - <schema/> | |
| 318 | - <table>bsth_c_line</table> | |
| 319 | - <orderby/> | |
| 320 | - <fail_on_multiple>N</fail_on_multiple> | |
| 321 | - <eat_row_on_failure>N</eat_row_on_failure> | |
| 322 | - <key> | |
| 323 | - <name>xlName</name> | |
| 324 | - <field>name</field> | |
| 325 | - <condition>=</condition> | |
| 326 | - <name2/> | |
| 327 | - </key> | |
| 328 | - <value> | |
| 329 | - <name>id</name> | |
| 330 | - <rename>xlid</rename> | |
| 331 | - <default/> | |
| 332 | - <type>Integer</type> | |
| 333 | - </value> | |
| 334 | - </lookup> | |
| 335 | - <cluster_schema/> | |
| 336 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 337 | - <xloc>599</xloc> | |
| 338 | - <yloc>71</yloc> | |
| 339 | - <draw>Y</draw> | |
| 340 | - </GUI> | |
| 341 | - </step> | |
| 342 | - | |
| 343 | - <step> | |
| 344 | - <name>错误输出</name> | |
| 345 | - <type>ExcelOutput</type> | |
| 346 | - <description/> | |
| 347 | - <distribute>Y</distribute> | |
| 348 | - <custom_distribution/> | |
| 349 | - <copies>1</copies> | |
| 350 | - <partitioning> | |
| 351 | - <method>none</method> | |
| 352 | - <schema_name/> | |
| 353 | - </partitioning> | |
| 354 | - <header>Y</header> | |
| 355 | - <footer>N</footer> | |
| 356 | - <encoding>UTF-8</encoding> | |
| 357 | - <append>N</append> | |
| 358 | - <add_to_result_filenames>Y</add_to_result_filenames> | |
| 359 | - <file> | |
| 360 | - <name>${erroroutputdir}/时刻表基础信息_错误</name> | |
| 361 | - <extention>xls</extention> | |
| 362 | - <do_not_open_newfile_init>N</do_not_open_newfile_init> | |
| 363 | - <create_parent_folder>N</create_parent_folder> | |
| 364 | - <split>N</split> | |
| 365 | - <add_date>N</add_date> | |
| 366 | - <add_time>N</add_time> | |
| 367 | - <SpecifyFormat>N</SpecifyFormat> | |
| 368 | - <date_time_format/> | |
| 369 | - <sheetname>Sheet1</sheetname> | |
| 370 | - <autosizecolums>N</autosizecolums> | |
| 371 | - <nullisblank>N</nullisblank> | |
| 372 | - <protect_sheet>N</protect_sheet> | |
| 373 | - <password>Encrypted </password> | |
| 374 | - <splitevery>0</splitevery> | |
| 375 | - <usetempfiles>N</usetempfiles> | |
| 376 | - <tempdirectory/> | |
| 377 | - </file> | |
| 378 | - <template> | |
| 379 | - <enabled>N</enabled> | |
| 380 | - <append>N</append> | |
| 381 | - <filename>template.xls</filename> | |
| 382 | - </template> | |
| 383 | - <fields> | |
| 384 | - <field> | |
| 385 | - <name>xlName</name> | |
| 386 | - <type>String</type> | |
| 387 | - <format/> | |
| 388 | - </field> | |
| 389 | - <field> | |
| 390 | - <name>name</name> | |
| 391 | - <type>String</type> | |
| 392 | - <format/> | |
| 393 | - </field> | |
| 394 | - <field> | |
| 395 | - <name>xlDir</name> | |
| 396 | - <type>String</type> | |
| 397 | - <format/> | |
| 398 | - </field> | |
| 399 | - <field> | |
| 400 | - <name>qyrq</name> | |
| 401 | - <type>Date</type> | |
| 402 | - <format/> | |
| 403 | - </field> | |
| 404 | - <field> | |
| 405 | - <name>lpCount</name> | |
| 406 | - <type>Integer</type> | |
| 407 | - <format/> | |
| 408 | - </field> | |
| 409 | - <field> | |
| 410 | - <name>loopCount</name> | |
| 411 | - <type>Integer</type> | |
| 412 | - <format/> | |
| 413 | - </field> | |
| 414 | - <field> | |
| 415 | - <name>rule_days</name> | |
| 416 | - <type>String</type> | |
| 417 | - <format/> | |
| 418 | - </field> | |
| 419 | - <field> | |
| 420 | - <name>special_days</name> | |
| 421 | - <type>String</type> | |
| 422 | - <format/> | |
| 423 | - </field> | |
| 424 | - <field> | |
| 425 | - <name>xlid</name> | |
| 426 | - <type>Integer</type> | |
| 427 | - <format/> | |
| 428 | - </field> | |
| 429 | - <field> | |
| 430 | - <name>error_count</name> | |
| 431 | - <type>Integer</type> | |
| 432 | - <format/> | |
| 433 | - </field> | |
| 434 | - <field> | |
| 435 | - <name>error_desc</name> | |
| 436 | - <type>String</type> | |
| 437 | - <format/> | |
| 438 | - </field> | |
| 439 | - <field> | |
| 440 | - <name>error_column1</name> | |
| 441 | - <type>String</type> | |
| 442 | - <format/> | |
| 443 | - </field> | |
| 444 | - <field> | |
| 445 | - <name>error_column2</name> | |
| 446 | - <type>String</type> | |
| 447 | - <format/> | |
| 448 | - </field> | |
| 449 | - </fields> | |
| 450 | - <custom> | |
| 451 | - <header_font_name>arial</header_font_name> | |
| 452 | - <header_font_size>10</header_font_size> | |
| 453 | - <header_font_bold>N</header_font_bold> | |
| 454 | - <header_font_italic>N</header_font_italic> | |
| 455 | - <header_font_underline>no</header_font_underline> | |
| 456 | - <header_font_orientation>horizontal</header_font_orientation> | |
| 457 | - <header_font_color>black</header_font_color> | |
| 458 | - <header_background_color>none</header_background_color> | |
| 459 | - <header_row_height>255</header_row_height> | |
| 460 | - <header_alignment>left</header_alignment> | |
| 461 | - <header_image/> | |
| 462 | - <row_font_name>arial</row_font_name> | |
| 463 | - <row_font_size>10</row_font_size> | |
| 464 | - <row_font_color>black</row_font_color> | |
| 465 | - <row_background_color>none</row_background_color> | |
| 466 | - </custom> | |
| 467 | - <cluster_schema/> | |
| 468 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 469 | - <xloc>799</xloc> | |
| 470 | - <yloc>184</yloc> | |
| 471 | - <draw>Y</draw> | |
| 472 | - </GUI> | |
| 473 | - </step> | |
| 474 | - | |
| 475 | - <step> | |
| 476 | - <name>时刻表基础数据Excel输入</name> | |
| 477 | - <type>ExcelInput</type> | |
| 478 | - <description/> | |
| 479 | - <distribute>Y</distribute> | |
| 480 | - <custom_distribution/> | |
| 481 | - <copies>1</copies> | |
| 482 | - <partitioning> | |
| 483 | - <method>none</method> | |
| 484 | - <schema_name/> | |
| 485 | - </partitioning> | |
| 486 | - <header>Y</header> | |
| 487 | - <noempty>Y</noempty> | |
| 488 | - <stoponempty>N</stoponempty> | |
| 489 | - <filefield/> | |
| 490 | - <sheetfield/> | |
| 491 | - <sheetrownumfield/> | |
| 492 | - <rownumfield/> | |
| 493 | - <sheetfield/> | |
| 494 | - <filefield/> | |
| 495 | - <limit>0</limit> | |
| 496 | - <encoding/> | |
| 497 | - <add_to_result_filenames>Y</add_to_result_filenames> | |
| 498 | - <accept_filenames>Y</accept_filenames> | |
| 499 | - <accept_field>filepath_</accept_field> | |
| 500 | - <accept_stepname>获取变量</accept_stepname> | |
| 501 | - <file> | |
| 502 | - <name/> | |
| 503 | - <filemask/> | |
| 504 | - <exclude_filemask/> | |
| 505 | - <file_required>N</file_required> | |
| 506 | - <include_subfolders>N</include_subfolders> | |
| 507 | - </file> | |
| 508 | - <fields> | |
| 509 | - <field> | |
| 510 | - <name>线路名称</name> | |
| 511 | - <type>String</type> | |
| 512 | - <length>-1</length> | |
| 513 | - <precision>-1</precision> | |
| 514 | - <trim_type>none</trim_type> | |
| 515 | - <repeat>N</repeat> | |
| 516 | - <format/> | |
| 517 | - <currency/> | |
| 518 | - <decimal/> | |
| 519 | - <group/> | |
| 520 | - </field> | |
| 521 | - <field> | |
| 522 | - <name>时刻表名称</name> | |
| 523 | - <type>String</type> | |
| 524 | - <length>-1</length> | |
| 525 | - <precision>-1</precision> | |
| 526 | - <trim_type>none</trim_type> | |
| 527 | - <repeat>N</repeat> | |
| 528 | - <format/> | |
| 529 | - <currency/> | |
| 530 | - <decimal/> | |
| 531 | - <group/> | |
| 532 | - </field> | |
| 533 | - <field> | |
| 534 | - <name>线路上下行</name> | |
| 535 | - <type>String</type> | |
| 536 | - <length>-1</length> | |
| 537 | - <precision>-1</precision> | |
| 538 | - <trim_type>none</trim_type> | |
| 539 | - <repeat>N</repeat> | |
| 540 | - <format/> | |
| 541 | - <currency/> | |
| 542 | - <decimal/> | |
| 543 | - <group/> | |
| 544 | - </field> | |
| 545 | - <field> | |
| 546 | - <name>启用日期</name> | |
| 547 | - <type>String</type> | |
| 548 | - <length>-1</length> | |
| 549 | - <precision>-1</precision> | |
| 550 | - <trim_type>none</trim_type> | |
| 551 | - <repeat>N</repeat> | |
| 552 | - <format/> | |
| 553 | - <currency/> | |
| 554 | - <decimal/> | |
| 555 | - <group/> | |
| 556 | - </field> | |
| 557 | - <field> | |
| 558 | - <name>路牌数</name> | |
| 559 | - <type>String</type> | |
| 560 | - <length>-1</length> | |
| 561 | - <precision>-1</precision> | |
| 562 | - <trim_type>none</trim_type> | |
| 563 | - <repeat>N</repeat> | |
| 564 | - <format>#</format> | |
| 565 | - <currency/> | |
| 566 | - <decimal/> | |
| 567 | - <group/> | |
| 568 | - </field> | |
| 569 | - <field> | |
| 570 | - <name>圈数</name> | |
| 571 | - <type>String</type> | |
| 572 | - <length>-1</length> | |
| 573 | - <precision>-1</precision> | |
| 574 | - <trim_type>none</trim_type> | |
| 575 | - <repeat>N</repeat> | |
| 576 | - <format>#</format> | |
| 577 | - <currency/> | |
| 578 | - <decimal/> | |
| 579 | - <group/> | |
| 580 | - </field> | |
| 581 | - <field> | |
| 582 | - <name>常规有效日</name> | |
| 583 | - <type>String</type> | |
| 584 | - <length>-1</length> | |
| 585 | - <precision>-1</precision> | |
| 586 | - <trim_type>none</trim_type> | |
| 587 | - <repeat>N</repeat> | |
| 588 | - <format/> | |
| 589 | - <currency/> | |
| 590 | - <decimal/> | |
| 591 | - <group/> | |
| 592 | - </field> | |
| 593 | - <field> | |
| 594 | - <name>特殊有效日</name> | |
| 595 | - <type>String</type> | |
| 596 | - <length>-1</length> | |
| 597 | - <precision>-1</precision> | |
| 598 | - <trim_type>none</trim_type> | |
| 599 | - <repeat>N</repeat> | |
| 600 | - <format/> | |
| 601 | - <currency/> | |
| 602 | - <decimal/> | |
| 603 | - <group/> | |
| 604 | - </field> | |
| 605 | - </fields> | |
| 606 | - <sheets> | |
| 607 | - <sheet> | |
| 608 | - <name>工作表1</name> | |
| 609 | - <startrow>0</startrow> | |
| 610 | - <startcol>0</startcol> | |
| 611 | - </sheet> | |
| 612 | - </sheets> | |
| 613 | - <strict_types>N</strict_types> | |
| 614 | - <error_ignored>N</error_ignored> | |
| 615 | - <error_line_skipped>N</error_line_skipped> | |
| 616 | - <bad_line_files_destination_directory/> | |
| 617 | - <bad_line_files_extension>warning</bad_line_files_extension> | |
| 618 | - <error_line_files_destination_directory/> | |
| 619 | - <error_line_files_extension>error</error_line_files_extension> | |
| 620 | - <line_number_files_destination_directory/> | |
| 621 | - <line_number_files_extension>line</line_number_files_extension> | |
| 622 | - <shortFileFieldName/> | |
| 623 | - <pathFieldName/> | |
| 624 | - <hiddenFieldName/> | |
| 625 | - <lastModificationTimeFieldName/> | |
| 626 | - <uriNameFieldName/> | |
| 627 | - <rootUriNameFieldName/> | |
| 628 | - <extensionFieldName/> | |
| 629 | - <sizeFieldName/> | |
| 630 | - <spreadsheet_type>JXL</spreadsheet_type> | |
| 631 | - <cluster_schema/> | |
| 632 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 633 | - <xloc>158</xloc> | |
| 634 | - <yloc>77</yloc> | |
| 635 | - <draw>Y</draw> | |
| 636 | - </GUI> | |
| 637 | - </step> | |
| 638 | - | |
| 639 | - <step> | |
| 640 | - <name>字段选择</name> | |
| 641 | - <type>SelectValues</type> | |
| 642 | - <description/> | |
| 643 | - <distribute>Y</distribute> | |
| 644 | - <custom_distribution/> | |
| 645 | - <copies>1</copies> | |
| 646 | - <partitioning> | |
| 647 | - <method>none</method> | |
| 648 | - <schema_name/> | |
| 649 | - </partitioning> | |
| 650 | - <fields> <field> <name>线路名称</name> | |
| 651 | - <rename>xlName</rename> | |
| 652 | - <length>-2</length> | |
| 653 | - <precision>-2</precision> | |
| 654 | - </field> <field> <name>时刻表名称</name> | |
| 655 | - <rename>name</rename> | |
| 656 | - <length>-2</length> | |
| 657 | - <precision>-2</precision> | |
| 658 | - </field> <field> <name>线路上下行</name> | |
| 659 | - <rename>xlDir</rename> | |
| 660 | - <length>-2</length> | |
| 661 | - <precision>-2</precision> | |
| 662 | - </field> <field> <name>启用日期</name> | |
| 663 | - <rename>qyrq</rename> | |
| 664 | - <length>-2</length> | |
| 665 | - <precision>-2</precision> | |
| 666 | - </field> <field> <name>路牌数</name> | |
| 667 | - <rename>lpCount</rename> | |
| 668 | - <length>-2</length> | |
| 669 | - <precision>-2</precision> | |
| 670 | - </field> <field> <name>圈数</name> | |
| 671 | - <rename>loopCount</rename> | |
| 672 | - <length>-2</length> | |
| 673 | - <precision>-2</precision> | |
| 674 | - </field> <field> <name>常规有效日</name> | |
| 675 | - <rename>rule_days</rename> | |
| 676 | - <length>-2</length> | |
| 677 | - <precision>-2</precision> | |
| 678 | - </field> <field> <name>特殊有效日</name> | |
| 679 | - <rename>special_days</rename> | |
| 680 | - <length>-2</length> | |
| 681 | - <precision>-2</precision> | |
| 682 | - </field> <select_unspecified>N</select_unspecified> | |
| 683 | - </fields> <cluster_schema/> | |
| 684 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 685 | - <xloc>323</xloc> | |
| 686 | - <yloc>75</yloc> | |
| 687 | - <draw>Y</draw> | |
| 688 | - </GUI> | |
| 689 | - </step> | |
| 690 | - | |
| 691 | - <step> | |
| 692 | - <name>线路上下行值映射</name> | |
| 693 | - <type>ValueMapper</type> | |
| 694 | - <description/> | |
| 695 | - <distribute>Y</distribute> | |
| 696 | - <custom_distribution/> | |
| 697 | - <copies>1</copies> | |
| 698 | - <partitioning> | |
| 699 | - <method>none</method> | |
| 700 | - <schema_name/> | |
| 701 | - </partitioning> | |
| 702 | - <field_to_use>xlDir</field_to_use> | |
| 703 | - <target_field/> | |
| 704 | - <non_match_default/> | |
| 705 | - <fields> | |
| 706 | - <field> | |
| 707 | - <source_value>上行</source_value> | |
| 708 | - <target_value>0</target_value> | |
| 709 | - </field> | |
| 710 | - <field> | |
| 711 | - <source_value>下行</source_value> | |
| 712 | - <target_value>1</target_value> | |
| 713 | - </field> | |
| 714 | - <field> | |
| 715 | - <source_value>上下行</source_value> | |
| 716 | - <target_value>2</target_value> | |
| 717 | - </field> | |
| 718 | - </fields> | |
| 719 | - <cluster_schema/> | |
| 720 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 721 | - <xloc>460</xloc> | |
| 722 | - <yloc>74</yloc> | |
| 723 | - <draw>Y</draw> | |
| 724 | - </GUI> | |
| 725 | - </step> | |
| 726 | - | |
| 727 | - <step> | |
| 728 | - <name>获取变量</name> | |
| 729 | - <type>GetVariable</type> | |
| 730 | - <description/> | |
| 731 | - <distribute>Y</distribute> | |
| 732 | - <custom_distribution/> | |
| 733 | - <copies>1</copies> | |
| 734 | - <partitioning> | |
| 735 | - <method>none</method> | |
| 736 | - <schema_name/> | |
| 737 | - </partitioning> | |
| 738 | - <fields> | |
| 739 | - <field> | |
| 740 | - <name>filepath_</name> | |
| 741 | - <variable>${filepath}</variable> | |
| 742 | - <type>String</type> | |
| 743 | - <format/> | |
| 744 | - <currency/> | |
| 745 | - <decimal/> | |
| 746 | - <group/> | |
| 747 | - <length>-1</length> | |
| 748 | - <precision>-1</precision> | |
| 749 | - <trim_type>none</trim_type> | |
| 750 | - </field> | |
| 751 | - <field> | |
| 752 | - <name>erroroutputdir_</name> | |
| 753 | - <variable>${erroroutputdir}</variable> | |
| 754 | - <type>String</type> | |
| 755 | - <format/> | |
| 756 | - <currency/> | |
| 757 | - <decimal/> | |
| 758 | - <group/> | |
| 759 | - <length>-1</length> | |
| 760 | - <precision>-1</precision> | |
| 761 | - <trim_type>none</trim_type> | |
| 762 | - </field> | |
| 763 | - </fields> | |
| 764 | - <cluster_schema/> | |
| 765 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 766 | - <xloc>162</xloc> | |
| 767 | - <yloc>191</yloc> | |
| 768 | - <draw>Y</draw> | |
| 769 | - </GUI> | |
| 770 | - </step> | |
| 771 | - | |
| 772 | - <step_error_handling> | |
| 773 | - <error> | |
| 774 | - <source_step>插入/更新bsth_c_s_ttinfo</source_step> | |
| 775 | - <target_step>错误输出</target_step> | |
| 776 | - <is_enabled>Y</is_enabled> | |
| 777 | - <nr_valuename>error_count</nr_valuename> | |
| 778 | - <descriptions_valuename>error_desc</descriptions_valuename> | |
| 779 | - <fields_valuename>error_column1</fields_valuename> | |
| 780 | - <codes_valuename>error_column2</codes_valuename> | |
| 781 | - <max_errors/> | |
| 782 | - <max_pct_errors/> | |
| 783 | - <min_pct_rows/> | |
| 784 | - </error> | |
| 785 | - </step_error_handling> | |
| 786 | - <slave-step-copy-partition-distribution> | |
| 787 | -</slave-step-copy-partition-distribution> | |
| 788 | - <slave_transformation>N</slave_transformation> | |
| 789 | - | |
| 790 | -</transformation> | |
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | +<transformation> | |
| 3 | + <info> | |
| 4 | + <name>ttinfoDataInput</name> | |
| 5 | + <description>时刻表基础信息导入</description> | |
| 6 | + <extended_description>时刻表基础信息</extended_description> | |
| 7 | + <trans_version/> | |
| 8 | + <trans_type>Normal</trans_type> | |
| 9 | + <trans_status>0</trans_status> | |
| 10 | + <directory>/</directory> | |
| 11 | + <parameters> | |
| 12 | + <parameter> | |
| 13 | + <name>erroroutputdir</name> | |
| 14 | + <default_value/> | |
| 15 | + <description>ktr step配置的错误输出目录</description> | |
| 16 | + </parameter> | |
| 17 | + <parameter> | |
| 18 | + <name>filepath</name> | |
| 19 | + <default_value/> | |
| 20 | + <description>待处理导入的excel文件</description> | |
| 21 | + </parameter> | |
| 22 | + </parameters> | |
| 23 | + <log> | |
| 24 | +<trans-log-table><connection/> | |
| 25 | +<schema/> | |
| 26 | +<table/> | |
| 27 | +<size_limit_lines/> | |
| 28 | +<interval/> | |
| 29 | +<timeout_days/> | |
| 30 | +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STATUS</id><enabled>Y</enabled><name>STATUS</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name><subject/></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name><subject/></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name><subject/></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name><subject/></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name><subject/></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name><subject/></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>STARTDATE</id><enabled>Y</enabled><name>STARTDATE</name></field><field><id>ENDDATE</id><enabled>Y</enabled><name>ENDDATE</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>DEPDATE</id><enabled>Y</enabled><name>DEPDATE</name></field><field><id>REPLAYDATE</id><enabled>Y</enabled><name>REPLAYDATE</name></field><field><id>LOG_FIELD</id><enabled>Y</enabled><name>LOG_FIELD</name></field><field><id>EXECUTING_SERVER</id><enabled>N</enabled><name>EXECUTING_SERVER</name></field><field><id>EXECUTING_USER</id><enabled>N</enabled><name>EXECUTING_USER</name></field><field><id>CLIENT</id><enabled>N</enabled><name>CLIENT</name></field></trans-log-table> | |
| 31 | +<perf-log-table><connection/> | |
| 32 | +<schema/> | |
| 33 | +<table/> | |
| 34 | +<interval/> | |
| 35 | +<timeout_days/> | |
| 36 | +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>SEQ_NR</id><enabled>Y</enabled><name>SEQ_NR</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>INPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>INPUT_BUFFER_ROWS</name></field><field><id>OUTPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>OUTPUT_BUFFER_ROWS</name></field></perf-log-table> | |
| 37 | +<channel-log-table><connection/> | |
| 38 | +<schema/> | |
| 39 | +<table/> | |
| 40 | +<timeout_days/> | |
| 41 | +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>LOGGING_OBJECT_TYPE</id><enabled>Y</enabled><name>LOGGING_OBJECT_TYPE</name></field><field><id>OBJECT_NAME</id><enabled>Y</enabled><name>OBJECT_NAME</name></field><field><id>OBJECT_COPY</id><enabled>Y</enabled><name>OBJECT_COPY</name></field><field><id>REPOSITORY_DIRECTORY</id><enabled>Y</enabled><name>REPOSITORY_DIRECTORY</name></field><field><id>FILENAME</id><enabled>Y</enabled><name>FILENAME</name></field><field><id>OBJECT_ID</id><enabled>Y</enabled><name>OBJECT_ID</name></field><field><id>OBJECT_REVISION</id><enabled>Y</enabled><name>OBJECT_REVISION</name></field><field><id>PARENT_CHANNEL_ID</id><enabled>Y</enabled><name>PARENT_CHANNEL_ID</name></field><field><id>ROOT_CHANNEL_ID</id><enabled>Y</enabled><name>ROOT_CHANNEL_ID</name></field></channel-log-table> | |
| 42 | +<step-log-table><connection/> | |
| 43 | +<schema/> | |
| 44 | +<table/> | |
| 45 | +<timeout_days/> | |
| 46 | +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>LOG_FIELD</id><enabled>N</enabled><name>LOG_FIELD</name></field></step-log-table> | |
| 47 | +<metrics-log-table><connection/> | |
| 48 | +<schema/> | |
| 49 | +<table/> | |
| 50 | +<timeout_days/> | |
| 51 | +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>METRICS_DATE</id><enabled>Y</enabled><name>METRICS_DATE</name></field><field><id>METRICS_CODE</id><enabled>Y</enabled><name>METRICS_CODE</name></field><field><id>METRICS_DESCRIPTION</id><enabled>Y</enabled><name>METRICS_DESCRIPTION</name></field><field><id>METRICS_SUBJECT</id><enabled>Y</enabled><name>METRICS_SUBJECT</name></field><field><id>METRICS_TYPE</id><enabled>Y</enabled><name>METRICS_TYPE</name></field><field><id>METRICS_VALUE</id><enabled>Y</enabled><name>METRICS_VALUE</name></field></metrics-log-table> | |
| 52 | + </log> | |
| 53 | + <maxdate> | |
| 54 | + <connection/> | |
| 55 | + <table/> | |
| 56 | + <field/> | |
| 57 | + <offset>0.0</offset> | |
| 58 | + <maxdiff>0.0</maxdiff> | |
| 59 | + </maxdate> | |
| 60 | + <size_rowset>10000</size_rowset> | |
| 61 | + <sleep_time_empty>50</sleep_time_empty> | |
| 62 | + <sleep_time_full>50</sleep_time_full> | |
| 63 | + <unique_connections>N</unique_connections> | |
| 64 | + <feedback_shown>Y</feedback_shown> | |
| 65 | + <feedback_size>50000</feedback_size> | |
| 66 | + <using_thread_priorities>Y</using_thread_priorities> | |
| 67 | + <shared_objects_file/> | |
| 68 | + <capture_step_performance>N</capture_step_performance> | |
| 69 | + <step_performance_capturing_delay>1000</step_performance_capturing_delay> | |
| 70 | + <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit> | |
| 71 | + <dependencies> | |
| 72 | + </dependencies> | |
| 73 | + <partitionschemas> | |
| 74 | + </partitionschemas> | |
| 75 | + <slaveservers> | |
| 76 | + </slaveservers> | |
| 77 | + <clusterschemas> | |
| 78 | + </clusterschemas> | |
| 79 | + <created_user>-</created_user> | |
| 80 | + <created_date>2016/06/30 09:35:41.558</created_date> | |
| 81 | + <modified_user>-</modified_user> | |
| 82 | + <modified_date>2016/06/30 09:35:41.558</modified_date> | |
| 83 | + <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA=</key_for_session_key> | |
| 84 | + <is_key_private>N</is_key_private> | |
| 85 | + </info> | |
| 86 | + <notepads> | |
| 87 | + <notepad> | |
| 88 | + <note>有些字段没有输入,不太明白,以后再补
模版类型 分时刻表/间隔式两种,暂时空着
是否启用调度模版 暂时空着
还有就是 分别在,圈后圈 暂时没有</note> | |
| 89 | + <xloc>429</xloc> | |
| 90 | + <yloc>144</yloc> | |
| 91 | + <width>240</width> | |
| 92 | + <heigth>74</heigth> | |
| 93 | + <fontname>YaHei Consolas Hybrid</fontname> | |
| 94 | + <fontsize>12</fontsize> | |
| 95 | + <fontbold>N</fontbold> | |
| 96 | + <fontitalic>N</fontitalic> | |
| 97 | + <fontcolorred>0</fontcolorred> | |
| 98 | + <fontcolorgreen>0</fontcolorgreen> | |
| 99 | + <fontcolorblue>0</fontcolorblue> | |
| 100 | + <backgroundcolorred>255</backgroundcolorred> | |
| 101 | + <backgroundcolorgreen>205</backgroundcolorgreen> | |
| 102 | + <backgroundcolorblue>112</backgroundcolorblue> | |
| 103 | + <bordercolorred>100</bordercolorred> | |
| 104 | + <bordercolorgreen>100</bordercolorgreen> | |
| 105 | + <bordercolorblue>100</bordercolorblue> | |
| 106 | + <drawshadow>Y</drawshadow> | |
| 107 | + </notepad> | |
| 108 | + </notepads> | |
| 109 | + <connection> | |
| 110 | + <name>bus_control_variable</name> | |
| 111 | + <server>${v_db_ip}</server> | |
| 112 | + <type>MYSQL</type> | |
| 113 | + <access>Native</access> | |
| 114 | + <database>control</database> | |
| 115 | + <port>3306</port> | |
| 116 | + <username>${v_db_uname}</username> | |
| 117 | + <password>${v_db_pwd}</password> | |
| 118 | + <servername/> | |
| 119 | + <data_tablespace/> | |
| 120 | + <index_tablespace/> | |
| 121 | + <attributes> | |
| 122 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 123 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 124 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 125 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 126 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 127 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 128 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 129 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 130 | + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute> | |
| 131 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 132 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 133 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 134 | + </attributes> | |
| 135 | + </connection> | |
| 136 | + <connection> | |
| 137 | + <name>bus_control_公司_201</name> | |
| 138 | + <server>localhost</server> | |
| 139 | + <type>MYSQL</type> | |
| 140 | + <access>Native</access> | |
| 141 | + <database>control</database> | |
| 142 | + <port>3306</port> | |
| 143 | + <username>root</username> | |
| 144 | + <password>Encrypted </password> | |
| 145 | + <servername/> | |
| 146 | + <data_tablespace/> | |
| 147 | + <index_tablespace/> | |
| 148 | + <attributes> | |
| 149 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 150 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 151 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 152 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 153 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 154 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 155 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 156 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 157 | + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute> | |
| 158 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 159 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 160 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 161 | + </attributes> | |
| 162 | + </connection> | |
| 163 | + <connection> | |
| 164 | + <name>bus_control_本机</name> | |
| 165 | + <server>localhost</server> | |
| 166 | + <type>MYSQL</type> | |
| 167 | + <access>Native</access> | |
| 168 | + <database>control</database> | |
| 169 | + <port>3306</port> | |
| 170 | + <username>root</username> | |
| 171 | + <password>Encrypted </password> | |
| 172 | + <servername/> | |
| 173 | + <data_tablespace/> | |
| 174 | + <index_tablespace/> | |
| 175 | + <attributes> | |
| 176 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 177 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 178 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 179 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 180 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 181 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 182 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 183 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 184 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 185 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 186 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 187 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 188 | + </attributes> | |
| 189 | + </connection> | |
| 190 | + <connection> | |
| 191 | + <name>xlab_mysql_youle</name> | |
| 192 | + <server>101.231.124.8</server> | |
| 193 | + <type>MYSQL</type> | |
| 194 | + <access>Native</access> | |
| 195 | + <database>xlab_youle</database> | |
| 196 | + <port>45687</port> | |
| 197 | + <username>xlab-youle</username> | |
| 198 | + <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password> | |
| 199 | + <servername/> | |
| 200 | + <data_tablespace/> | |
| 201 | + <index_tablespace/> | |
| 202 | + <attributes> | |
| 203 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 204 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 205 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 206 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 207 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 208 | + <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute> | |
| 209 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 210 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 211 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 212 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 213 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 214 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 215 | + </attributes> | |
| 216 | + </connection> | |
| 217 | + <connection> | |
| 218 | + <name>xlab_mysql_youle(本机)</name> | |
| 219 | + <server>localhost</server> | |
| 220 | + <type>MYSQL</type> | |
| 221 | + <access>Native</access> | |
| 222 | + <database>xlab_youle</database> | |
| 223 | + <port>3306</port> | |
| 224 | + <username>root</username> | |
| 225 | + <password>Encrypted </password> | |
| 226 | + <servername/> | |
| 227 | + <data_tablespace/> | |
| 228 | + <index_tablespace/> | |
| 229 | + <attributes> | |
| 230 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 231 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 232 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 233 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 234 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 235 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 236 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 237 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 238 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 239 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 240 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 241 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 242 | + </attributes> | |
| 243 | + </connection> | |
| 244 | + <connection> | |
| 245 | + <name>xlab_youle</name> | |
| 246 | + <server/> | |
| 247 | + <type>MYSQL</type> | |
| 248 | + <access>JNDI</access> | |
| 249 | + <database>xlab_youle</database> | |
| 250 | + <port>1521</port> | |
| 251 | + <username/> | |
| 252 | + <password>Encrypted </password> | |
| 253 | + <servername/> | |
| 254 | + <data_tablespace/> | |
| 255 | + <index_tablespace/> | |
| 256 | + <attributes> | |
| 257 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 258 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 259 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 260 | + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | |
| 261 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 262 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 263 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 264 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 265 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 266 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 267 | + </attributes> | |
| 268 | + </connection> | |
| 269 | + <order> | |
| 270 | + <hop> <from>插入/更新bsth_c_s_ttinfo</from><to>错误输出</to><enabled>Y</enabled> </hop> | |
| 271 | + <hop> <from>查找线路关联</from><to>插入/更新bsth_c_s_ttinfo</to><enabled>Y</enabled> </hop> | |
| 272 | + <hop> <from>时刻表基础数据Excel输入</from><to>字段选择</to><enabled>Y</enabled> </hop> | |
| 273 | + <hop> <from>字段选择</from><to>线路上下行值映射</to><enabled>Y</enabled> </hop> | |
| 274 | + <hop> <from>线路上下行值映射</from><to>查找线路关联</to><enabled>Y</enabled> </hop> | |
| 275 | + <hop> <from>获取变量</from><to>时刻表基础数据Excel输入</to><enabled>Y</enabled> </hop> | |
| 276 | + </order> | |
| 277 | + <step> | |
| 278 | + <name>字段选择</name> | |
| 279 | + <type>SelectValues</type> | |
| 280 | + <description/> | |
| 281 | + <distribute>Y</distribute> | |
| 282 | + <custom_distribution/> | |
| 283 | + <copies>1</copies> | |
| 284 | + <partitioning> | |
| 285 | + <method>none</method> | |
| 286 | + <schema_name/> | |
| 287 | + </partitioning> | |
| 288 | + <fields> <field> <name>线路名称</name> | |
| 289 | + <rename>xlName</rename> | |
| 290 | + <length>-2</length> | |
| 291 | + <precision>-2</precision> | |
| 292 | + </field> <field> <name>时刻表名称</name> | |
| 293 | + <rename>name</rename> | |
| 294 | + <length>-2</length> | |
| 295 | + <precision>-2</precision> | |
| 296 | + </field> <field> <name>线路上下行</name> | |
| 297 | + <rename>xlDir</rename> | |
| 298 | + <length>-2</length> | |
| 299 | + <precision>-2</precision> | |
| 300 | + </field> <field> <name>启用日期</name> | |
| 301 | + <rename>qyrq</rename> | |
| 302 | + <length>-2</length> | |
| 303 | + <precision>-2</precision> | |
| 304 | + </field> <field> <name>路牌数</name> | |
| 305 | + <rename>lpCount</rename> | |
| 306 | + <length>-2</length> | |
| 307 | + <precision>-2</precision> | |
| 308 | + </field> <field> <name>圈数</name> | |
| 309 | + <rename>loopCount</rename> | |
| 310 | + <length>-2</length> | |
| 311 | + <precision>-2</precision> | |
| 312 | + </field> <field> <name>常规有效日</name> | |
| 313 | + <rename>rule_days</rename> | |
| 314 | + <length>-2</length> | |
| 315 | + <precision>-2</precision> | |
| 316 | + </field> <field> <name>特殊有效日</name> | |
| 317 | + <rename>special_days</rename> | |
| 318 | + <length>-2</length> | |
| 319 | + <precision>-2</precision> | |
| 320 | + </field> <select_unspecified>N</select_unspecified> | |
| 321 | + </fields> <cluster_schema/> | |
| 322 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 323 | + <xloc>323</xloc> | |
| 324 | + <yloc>75</yloc> | |
| 325 | + <draw>Y</draw> | |
| 326 | + </GUI> | |
| 327 | + </step> | |
| 328 | + | |
| 329 | + <step> | |
| 330 | + <name>插入/更新bsth_c_s_ttinfo</name> | |
| 331 | + <type>InsertUpdate</type> | |
| 332 | + <description/> | |
| 333 | + <distribute>Y</distribute> | |
| 334 | + <custom_distribution/> | |
| 335 | + <copies>1</copies> | |
| 336 | + <partitioning> | |
| 337 | + <method>none</method> | |
| 338 | + <schema_name/> | |
| 339 | + </partitioning> | |
| 340 | + <connection>bus_control_variable</connection> | |
| 341 | + <commit>100</commit> | |
| 342 | + <update_bypassed>N</update_bypassed> | |
| 343 | + <lookup> | |
| 344 | + <schema/> | |
| 345 | + <table>bsth_c_s_ttinfo</table> | |
| 346 | + <key> | |
| 347 | + <name>xlid</name> | |
| 348 | + <field>xl</field> | |
| 349 | + <condition>=</condition> | |
| 350 | + <name2/> | |
| 351 | + </key> | |
| 352 | + <key> | |
| 353 | + <name>name</name> | |
| 354 | + <field>name</field> | |
| 355 | + <condition>=</condition> | |
| 356 | + <name2/> | |
| 357 | + </key> | |
| 358 | + <value> | |
| 359 | + <name>name</name> | |
| 360 | + <rename>name</rename> | |
| 361 | + <update>Y</update> | |
| 362 | + </value> | |
| 363 | + <value> | |
| 364 | + <name>xl_dir</name> | |
| 365 | + <rename>xlDir</rename> | |
| 366 | + <update>Y</update> | |
| 367 | + </value> | |
| 368 | + <value> | |
| 369 | + <name>qyrq</name> | |
| 370 | + <rename>qyrq</rename> | |
| 371 | + <update>Y</update> | |
| 372 | + </value> | |
| 373 | + <value> | |
| 374 | + <name>lp_count</name> | |
| 375 | + <rename>lpCount</rename> | |
| 376 | + <update>Y</update> | |
| 377 | + </value> | |
| 378 | + <value> | |
| 379 | + <name>loop_count</name> | |
| 380 | + <rename>loopCount</rename> | |
| 381 | + <update>Y</update> | |
| 382 | + </value> | |
| 383 | + <value> | |
| 384 | + <name>rule_days</name> | |
| 385 | + <rename>rule_days</rename> | |
| 386 | + <update>Y</update> | |
| 387 | + </value> | |
| 388 | + <value> | |
| 389 | + <name>special_days</name> | |
| 390 | + <rename>special_days</rename> | |
| 391 | + <update>Y</update> | |
| 392 | + </value> | |
| 393 | + <value> | |
| 394 | + <name>xl</name> | |
| 395 | + <rename>xlid</rename> | |
| 396 | + <update>Y</update> | |
| 397 | + </value> | |
| 398 | + </lookup> | |
| 399 | + <cluster_schema/> | |
| 400 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 401 | + <xloc>799</xloc> | |
| 402 | + <yloc>71</yloc> | |
| 403 | + <draw>Y</draw> | |
| 404 | + </GUI> | |
| 405 | + </step> | |
| 406 | + | |
| 407 | + <step> | |
| 408 | + <name>时刻表基础数据Excel输入</name> | |
| 409 | + <type>ExcelInput</type> | |
| 410 | + <description/> | |
| 411 | + <distribute>Y</distribute> | |
| 412 | + <custom_distribution/> | |
| 413 | + <copies>1</copies> | |
| 414 | + <partitioning> | |
| 415 | + <method>none</method> | |
| 416 | + <schema_name/> | |
| 417 | + </partitioning> | |
| 418 | + <header>Y</header> | |
| 419 | + <noempty>Y</noempty> | |
| 420 | + <stoponempty>N</stoponempty> | |
| 421 | + <filefield/> | |
| 422 | + <sheetfield/> | |
| 423 | + <sheetrownumfield/> | |
| 424 | + <rownumfield/> | |
| 425 | + <sheetfield/> | |
| 426 | + <filefield/> | |
| 427 | + <limit>0</limit> | |
| 428 | + <encoding/> | |
| 429 | + <add_to_result_filenames>Y</add_to_result_filenames> | |
| 430 | + <accept_filenames>Y</accept_filenames> | |
| 431 | + <accept_field>filepath_</accept_field> | |
| 432 | + <accept_stepname>获取变量</accept_stepname> | |
| 433 | + <file> | |
| 434 | + <name/> | |
| 435 | + <filemask/> | |
| 436 | + <exclude_filemask/> | |
| 437 | + <file_required>N</file_required> | |
| 438 | + <include_subfolders>N</include_subfolders> | |
| 439 | + </file> | |
| 440 | + <fields> | |
| 441 | + <field> | |
| 442 | + <name>线路名称</name> | |
| 443 | + <type>String</type> | |
| 444 | + <length>-1</length> | |
| 445 | + <precision>-1</precision> | |
| 446 | + <trim_type>none</trim_type> | |
| 447 | + <repeat>N</repeat> | |
| 448 | + <format/> | |
| 449 | + <currency/> | |
| 450 | + <decimal/> | |
| 451 | + <group/> | |
| 452 | + </field> | |
| 453 | + <field> | |
| 454 | + <name>时刻表名称</name> | |
| 455 | + <type>String</type> | |
| 456 | + <length>-1</length> | |
| 457 | + <precision>-1</precision> | |
| 458 | + <trim_type>none</trim_type> | |
| 459 | + <repeat>N</repeat> | |
| 460 | + <format/> | |
| 461 | + <currency/> | |
| 462 | + <decimal/> | |
| 463 | + <group/> | |
| 464 | + </field> | |
| 465 | + <field> | |
| 466 | + <name>线路上下行</name> | |
| 467 | + <type>String</type> | |
| 468 | + <length>-1</length> | |
| 469 | + <precision>-1</precision> | |
| 470 | + <trim_type>none</trim_type> | |
| 471 | + <repeat>N</repeat> | |
| 472 | + <format/> | |
| 473 | + <currency/> | |
| 474 | + <decimal/> | |
| 475 | + <group/> | |
| 476 | + </field> | |
| 477 | + <field> | |
| 478 | + <name>启用日期</name> | |
| 479 | + <type>String</type> | |
| 480 | + <length>-1</length> | |
| 481 | + <precision>-1</precision> | |
| 482 | + <trim_type>none</trim_type> | |
| 483 | + <repeat>N</repeat> | |
| 484 | + <format/> | |
| 485 | + <currency/> | |
| 486 | + <decimal/> | |
| 487 | + <group/> | |
| 488 | + </field> | |
| 489 | + <field> | |
| 490 | + <name>路牌数</name> | |
| 491 | + <type>String</type> | |
| 492 | + <length>-1</length> | |
| 493 | + <precision>-1</precision> | |
| 494 | + <trim_type>none</trim_type> | |
| 495 | + <repeat>N</repeat> | |
| 496 | + <format>#</format> | |
| 497 | + <currency/> | |
| 498 | + <decimal/> | |
| 499 | + <group/> | |
| 500 | + </field> | |
| 501 | + <field> | |
| 502 | + <name>圈数</name> | |
| 503 | + <type>String</type> | |
| 504 | + <length>-1</length> | |
| 505 | + <precision>-1</precision> | |
| 506 | + <trim_type>none</trim_type> | |
| 507 | + <repeat>N</repeat> | |
| 508 | + <format>#</format> | |
| 509 | + <currency/> | |
| 510 | + <decimal/> | |
| 511 | + <group/> | |
| 512 | + </field> | |
| 513 | + <field> | |
| 514 | + <name>常规有效日</name> | |
| 515 | + <type>String</type> | |
| 516 | + <length>-1</length> | |
| 517 | + <precision>-1</precision> | |
| 518 | + <trim_type>none</trim_type> | |
| 519 | + <repeat>N</repeat> | |
| 520 | + <format/> | |
| 521 | + <currency/> | |
| 522 | + <decimal/> | |
| 523 | + <group/> | |
| 524 | + </field> | |
| 525 | + <field> | |
| 526 | + <name>特殊有效日</name> | |
| 527 | + <type>String</type> | |
| 528 | + <length>-1</length> | |
| 529 | + <precision>-1</precision> | |
| 530 | + <trim_type>none</trim_type> | |
| 531 | + <repeat>N</repeat> | |
| 532 | + <format/> | |
| 533 | + <currency/> | |
| 534 | + <decimal/> | |
| 535 | + <group/> | |
| 536 | + </field> | |
| 537 | + </fields> | |
| 538 | + <sheets> | |
| 539 | + <sheet> | |
| 540 | + <name>工作表1</name> | |
| 541 | + <startrow>0</startrow> | |
| 542 | + <startcol>0</startcol> | |
| 543 | + </sheet> | |
| 544 | + </sheets> | |
| 545 | + <strict_types>N</strict_types> | |
| 546 | + <error_ignored>N</error_ignored> | |
| 547 | + <error_line_skipped>N</error_line_skipped> | |
| 548 | + <bad_line_files_destination_directory/> | |
| 549 | + <bad_line_files_extension>warning</bad_line_files_extension> | |
| 550 | + <error_line_files_destination_directory/> | |
| 551 | + <error_line_files_extension>error</error_line_files_extension> | |
| 552 | + <line_number_files_destination_directory/> | |
| 553 | + <line_number_files_extension>line</line_number_files_extension> | |
| 554 | + <shortFileFieldName/> | |
| 555 | + <pathFieldName/> | |
| 556 | + <hiddenFieldName/> | |
| 557 | + <lastModificationTimeFieldName/> | |
| 558 | + <uriNameFieldName/> | |
| 559 | + <rootUriNameFieldName/> | |
| 560 | + <extensionFieldName/> | |
| 561 | + <sizeFieldName/> | |
| 562 | + <spreadsheet_type>JXL</spreadsheet_type> | |
| 563 | + <cluster_schema/> | |
| 564 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 565 | + <xloc>158</xloc> | |
| 566 | + <yloc>77</yloc> | |
| 567 | + <draw>Y</draw> | |
| 568 | + </GUI> | |
| 569 | + </step> | |
| 570 | + | |
| 571 | + <step> | |
| 572 | + <name>查找线路关联</name> | |
| 573 | + <type>DBLookup</type> | |
| 574 | + <description/> | |
| 575 | + <distribute>Y</distribute> | |
| 576 | + <custom_distribution/> | |
| 577 | + <copies>1</copies> | |
| 578 | + <partitioning> | |
| 579 | + <method>none</method> | |
| 580 | + <schema_name/> | |
| 581 | + </partitioning> | |
| 582 | + <connection>bus_control_variable</connection> | |
| 583 | + <cache>N</cache> | |
| 584 | + <cache_load_all>N</cache_load_all> | |
| 585 | + <cache_size>0</cache_size> | |
| 586 | + <lookup> | |
| 587 | + <schema/> | |
| 588 | + <table>bsth_c_line</table> | |
| 589 | + <orderby/> | |
| 590 | + <fail_on_multiple>N</fail_on_multiple> | |
| 591 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 592 | + <key> | |
| 593 | + <name>xlName</name> | |
| 594 | + <field>name</field> | |
| 595 | + <condition>=</condition> | |
| 596 | + <name2/> | |
| 597 | + </key> | |
| 598 | + <value> | |
| 599 | + <name>id</name> | |
| 600 | + <rename>xlid</rename> | |
| 601 | + <default/> | |
| 602 | + <type>Integer</type> | |
| 603 | + </value> | |
| 604 | + </lookup> | |
| 605 | + <cluster_schema/> | |
| 606 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 607 | + <xloc>599</xloc> | |
| 608 | + <yloc>71</yloc> | |
| 609 | + <draw>Y</draw> | |
| 610 | + </GUI> | |
| 611 | + </step> | |
| 612 | + | |
| 613 | + <step> | |
| 614 | + <name>线路上下行值映射</name> | |
| 615 | + <type>ValueMapper</type> | |
| 616 | + <description/> | |
| 617 | + <distribute>Y</distribute> | |
| 618 | + <custom_distribution/> | |
| 619 | + <copies>1</copies> | |
| 620 | + <partitioning> | |
| 621 | + <method>none</method> | |
| 622 | + <schema_name/> | |
| 623 | + </partitioning> | |
| 624 | + <field_to_use>xlDir</field_to_use> | |
| 625 | + <target_field/> | |
| 626 | + <non_match_default/> | |
| 627 | + <fields> | |
| 628 | + <field> | |
| 629 | + <source_value>上行</source_value> | |
| 630 | + <target_value>0</target_value> | |
| 631 | + </field> | |
| 632 | + <field> | |
| 633 | + <source_value>下行</source_value> | |
| 634 | + <target_value>1</target_value> | |
| 635 | + </field> | |
| 636 | + <field> | |
| 637 | + <source_value>上下行</source_value> | |
| 638 | + <target_value>2</target_value> | |
| 639 | + </field> | |
| 640 | + </fields> | |
| 641 | + <cluster_schema/> | |
| 642 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 643 | + <xloc>460</xloc> | |
| 644 | + <yloc>74</yloc> | |
| 645 | + <draw>Y</draw> | |
| 646 | + </GUI> | |
| 647 | + </step> | |
| 648 | + | |
| 649 | + <step> | |
| 650 | + <name>获取变量</name> | |
| 651 | + <type>GetVariable</type> | |
| 652 | + <description/> | |
| 653 | + <distribute>Y</distribute> | |
| 654 | + <custom_distribution/> | |
| 655 | + <copies>1</copies> | |
| 656 | + <partitioning> | |
| 657 | + <method>none</method> | |
| 658 | + <schema_name/> | |
| 659 | + </partitioning> | |
| 660 | + <fields> | |
| 661 | + <field> | |
| 662 | + <name>filepath_</name> | |
| 663 | + <variable>${filepath}</variable> | |
| 664 | + <type>String</type> | |
| 665 | + <format/> | |
| 666 | + <currency/> | |
| 667 | + <decimal/> | |
| 668 | + <group/> | |
| 669 | + <length>-1</length> | |
| 670 | + <precision>-1</precision> | |
| 671 | + <trim_type>none</trim_type> | |
| 672 | + </field> | |
| 673 | + <field> | |
| 674 | + <name>erroroutputdir_</name> | |
| 675 | + <variable>${erroroutputdir}</variable> | |
| 676 | + <type>String</type> | |
| 677 | + <format/> | |
| 678 | + <currency/> | |
| 679 | + <decimal/> | |
| 680 | + <group/> | |
| 681 | + <length>-1</length> | |
| 682 | + <precision>-1</precision> | |
| 683 | + <trim_type>none</trim_type> | |
| 684 | + </field> | |
| 685 | + </fields> | |
| 686 | + <cluster_schema/> | |
| 687 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 688 | + <xloc>162</xloc> | |
| 689 | + <yloc>191</yloc> | |
| 690 | + <draw>Y</draw> | |
| 691 | + </GUI> | |
| 692 | + </step> | |
| 693 | + | |
| 694 | + <step> | |
| 695 | + <name>错误输出</name> | |
| 696 | + <type>ExcelOutput</type> | |
| 697 | + <description/> | |
| 698 | + <distribute>Y</distribute> | |
| 699 | + <custom_distribution/> | |
| 700 | + <copies>1</copies> | |
| 701 | + <partitioning> | |
| 702 | + <method>none</method> | |
| 703 | + <schema_name/> | |
| 704 | + </partitioning> | |
| 705 | + <header>Y</header> | |
| 706 | + <footer>N</footer> | |
| 707 | + <encoding>UTF-8</encoding> | |
| 708 | + <append>N</append> | |
| 709 | + <add_to_result_filenames>Y</add_to_result_filenames> | |
| 710 | + <file> | |
| 711 | + <name>${erroroutputdir}/时刻表基础信息_错误</name> | |
| 712 | + <extention>xls</extention> | |
| 713 | + <do_not_open_newfile_init>N</do_not_open_newfile_init> | |
| 714 | + <create_parent_folder>N</create_parent_folder> | |
| 715 | + <split>N</split> | |
| 716 | + <add_date>N</add_date> | |
| 717 | + <add_time>N</add_time> | |
| 718 | + <SpecifyFormat>N</SpecifyFormat> | |
| 719 | + <date_time_format/> | |
| 720 | + <sheetname>Sheet1</sheetname> | |
| 721 | + <autosizecolums>N</autosizecolums> | |
| 722 | + <nullisblank>N</nullisblank> | |
| 723 | + <protect_sheet>N</protect_sheet> | |
| 724 | + <password>Encrypted </password> | |
| 725 | + <splitevery>0</splitevery> | |
| 726 | + <usetempfiles>N</usetempfiles> | |
| 727 | + <tempdirectory/> | |
| 728 | + </file> | |
| 729 | + <template> | |
| 730 | + <enabled>N</enabled> | |
| 731 | + <append>N</append> | |
| 732 | + <filename>template.xls</filename> | |
| 733 | + </template> | |
| 734 | + <fields> | |
| 735 | + <field> | |
| 736 | + <name>xlName</name> | |
| 737 | + <type>String</type> | |
| 738 | + <format/> | |
| 739 | + </field> | |
| 740 | + <field> | |
| 741 | + <name>name</name> | |
| 742 | + <type>String</type> | |
| 743 | + <format/> | |
| 744 | + </field> | |
| 745 | + <field> | |
| 746 | + <name>xlDir</name> | |
| 747 | + <type>String</type> | |
| 748 | + <format/> | |
| 749 | + </field> | |
| 750 | + <field> | |
| 751 | + <name>qyrq</name> | |
| 752 | + <type>Date</type> | |
| 753 | + <format/> | |
| 754 | + </field> | |
| 755 | + <field> | |
| 756 | + <name>lpCount</name> | |
| 757 | + <type>Integer</type> | |
| 758 | + <format/> | |
| 759 | + </field> | |
| 760 | + <field> | |
| 761 | + <name>loopCount</name> | |
| 762 | + <type>Integer</type> | |
| 763 | + <format/> | |
| 764 | + </field> | |
| 765 | + <field> | |
| 766 | + <name>rule_days</name> | |
| 767 | + <type>String</type> | |
| 768 | + <format/> | |
| 769 | + </field> | |
| 770 | + <field> | |
| 771 | + <name>special_days</name> | |
| 772 | + <type>String</type> | |
| 773 | + <format/> | |
| 774 | + </field> | |
| 775 | + <field> | |
| 776 | + <name>xlid</name> | |
| 777 | + <type>Integer</type> | |
| 778 | + <format/> | |
| 779 | + </field> | |
| 780 | + <field> | |
| 781 | + <name>error_count</name> | |
| 782 | + <type>Integer</type> | |
| 783 | + <format/> | |
| 784 | + </field> | |
| 785 | + <field> | |
| 786 | + <name>error_desc</name> | |
| 787 | + <type>String</type> | |
| 788 | + <format/> | |
| 789 | + </field> | |
| 790 | + <field> | |
| 791 | + <name>error_column1</name> | |
| 792 | + <type>String</type> | |
| 793 | + <format/> | |
| 794 | + </field> | |
| 795 | + <field> | |
| 796 | + <name>error_column2</name> | |
| 797 | + <type>String</type> | |
| 798 | + <format/> | |
| 799 | + </field> | |
| 800 | + </fields> | |
| 801 | + <custom> | |
| 802 | + <header_font_name>arial</header_font_name> | |
| 803 | + <header_font_size>10</header_font_size> | |
| 804 | + <header_font_bold>N</header_font_bold> | |
| 805 | + <header_font_italic>N</header_font_italic> | |
| 806 | + <header_font_underline>no</header_font_underline> | |
| 807 | + <header_font_orientation>horizontal</header_font_orientation> | |
| 808 | + <header_font_color>black</header_font_color> | |
| 809 | + <header_background_color>none</header_background_color> | |
| 810 | + <header_row_height>255</header_row_height> | |
| 811 | + <header_alignment>left</header_alignment> | |
| 812 | + <header_image/> | |
| 813 | + <row_font_name>arial</row_font_name> | |
| 814 | + <row_font_size>10</row_font_size> | |
| 815 | + <row_font_color>black</row_font_color> | |
| 816 | + <row_background_color>none</row_background_color> | |
| 817 | + </custom> | |
| 818 | + <cluster_schema/> | |
| 819 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 820 | + <xloc>799</xloc> | |
| 821 | + <yloc>184</yloc> | |
| 822 | + <draw>Y</draw> | |
| 823 | + </GUI> | |
| 824 | + </step> | |
| 825 | + | |
| 826 | + <step_error_handling> | |
| 827 | + <error> | |
| 828 | + <source_step>插入/更新bsth_c_s_ttinfo</source_step> | |
| 829 | + <target_step>错误输出</target_step> | |
| 830 | + <is_enabled>Y</is_enabled> | |
| 831 | + <nr_valuename>error_count</nr_valuename> | |
| 832 | + <descriptions_valuename>error_desc</descriptions_valuename> | |
| 833 | + <fields_valuename>error_column1</fields_valuename> | |
| 834 | + <codes_valuename>error_column2</codes_valuename> | |
| 835 | + <max_errors/> | |
| 836 | + <max_pct_errors/> | |
| 837 | + <min_pct_rows/> | |
| 838 | + </error> | |
| 839 | + </step_error_handling> | |
| 840 | + <slave-step-copy-partition-distribution> | |
| 841 | +</slave-step-copy-partition-distribution> | |
| 842 | + <slave_transformation>N</slave_transformation> | |
| 843 | + | |
| 844 | +</transformation> | ... | ... |
src/main/resources/datatools/ktrs/ttinfodetailDataInput.ktr
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<transformation> | |
| 3 | - <info> | |
| 4 | - <name>ttinfodetailDataInput</name> | |
| 5 | - <description>时刻表明细信息导入</description> | |
| 6 | - <extended_description>时刻表明细信息</extended_description> | |
| 7 | - <trans_version/> | |
| 8 | - <trans_type>Normal</trans_type> | |
| 9 | - <trans_status>0</trans_status> | |
| 10 | - <directory>/</directory> | |
| 11 | - <parameters> | |
| 12 | - </parameters> | |
| 13 | - <log> | |
| 14 | -<trans-log-table><connection/> | |
| 15 | -<schema/> | |
| 16 | -<table/> | |
| 17 | -<size_limit_lines/> | |
| 18 | -<interval/> | |
| 19 | -<timeout_days/> | |
| 20 | -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STATUS</id><enabled>Y</enabled><name>STATUS</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name><subject/></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name><subject/></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name><subject/></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name><subject/></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name><subject/></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name><subject/></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>STARTDATE</id><enabled>Y</enabled><name>STARTDATE</name></field><field><id>ENDDATE</id><enabled>Y</enabled><name>ENDDATE</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>DEPDATE</id><enabled>Y</enabled><name>DEPDATE</name></field><field><id>REPLAYDATE</id><enabled>Y</enabled><name>REPLAYDATE</name></field><field><id>LOG_FIELD</id><enabled>Y</enabled><name>LOG_FIELD</name></field><field><id>EXECUTING_SERVER</id><enabled>N</enabled><name>EXECUTING_SERVER</name></field><field><id>EXECUTING_USER</id><enabled>N</enabled><name>EXECUTING_USER</name></field><field><id>CLIENT</id><enabled>N</enabled><name>CLIENT</name></field></trans-log-table> | |
| 21 | -<perf-log-table><connection/> | |
| 22 | -<schema/> | |
| 23 | -<table/> | |
| 24 | -<interval/> | |
| 25 | -<timeout_days/> | |
| 26 | -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>SEQ_NR</id><enabled>Y</enabled><name>SEQ_NR</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>INPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>INPUT_BUFFER_ROWS</name></field><field><id>OUTPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>OUTPUT_BUFFER_ROWS</name></field></perf-log-table> | |
| 27 | -<channel-log-table><connection/> | |
| 28 | -<schema/> | |
| 29 | -<table/> | |
| 30 | -<timeout_days/> | |
| 31 | -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>LOGGING_OBJECT_TYPE</id><enabled>Y</enabled><name>LOGGING_OBJECT_TYPE</name></field><field><id>OBJECT_NAME</id><enabled>Y</enabled><name>OBJECT_NAME</name></field><field><id>OBJECT_COPY</id><enabled>Y</enabled><name>OBJECT_COPY</name></field><field><id>REPOSITORY_DIRECTORY</id><enabled>Y</enabled><name>REPOSITORY_DIRECTORY</name></field><field><id>FILENAME</id><enabled>Y</enabled><name>FILENAME</name></field><field><id>OBJECT_ID</id><enabled>Y</enabled><name>OBJECT_ID</name></field><field><id>OBJECT_REVISION</id><enabled>Y</enabled><name>OBJECT_REVISION</name></field><field><id>PARENT_CHANNEL_ID</id><enabled>Y</enabled><name>PARENT_CHANNEL_ID</name></field><field><id>ROOT_CHANNEL_ID</id><enabled>Y</enabled><name>ROOT_CHANNEL_ID</name></field></channel-log-table> | |
| 32 | -<step-log-table><connection/> | |
| 33 | -<schema/> | |
| 34 | -<table/> | |
| 35 | -<timeout_days/> | |
| 36 | -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>LOG_FIELD</id><enabled>N</enabled><name>LOG_FIELD</name></field></step-log-table> | |
| 37 | -<metrics-log-table><connection/> | |
| 38 | -<schema/> | |
| 39 | -<table/> | |
| 40 | -<timeout_days/> | |
| 41 | -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>METRICS_DATE</id><enabled>Y</enabled><name>METRICS_DATE</name></field><field><id>METRICS_CODE</id><enabled>Y</enabled><name>METRICS_CODE</name></field><field><id>METRICS_DESCRIPTION</id><enabled>Y</enabled><name>METRICS_DESCRIPTION</name></field><field><id>METRICS_SUBJECT</id><enabled>Y</enabled><name>METRICS_SUBJECT</name></field><field><id>METRICS_TYPE</id><enabled>Y</enabled><name>METRICS_TYPE</name></field><field><id>METRICS_VALUE</id><enabled>Y</enabled><name>METRICS_VALUE</name></field></metrics-log-table> | |
| 42 | - </log> | |
| 43 | - <maxdate> | |
| 44 | - <connection/> | |
| 45 | - <table/> | |
| 46 | - <field/> | |
| 47 | - <offset>0.0</offset> | |
| 48 | - <maxdiff>0.0</maxdiff> | |
| 49 | - </maxdate> | |
| 50 | - <size_rowset>10000</size_rowset> | |
| 51 | - <sleep_time_empty>50</sleep_time_empty> | |
| 52 | - <sleep_time_full>50</sleep_time_full> | |
| 53 | - <unique_connections>N</unique_connections> | |
| 54 | - <feedback_shown>Y</feedback_shown> | |
| 55 | - <feedback_size>50000</feedback_size> | |
| 56 | - <using_thread_priorities>Y</using_thread_priorities> | |
| 57 | - <shared_objects_file/> | |
| 58 | - <capture_step_performance>N</capture_step_performance> | |
| 59 | - <step_performance_capturing_delay>1000</step_performance_capturing_delay> | |
| 60 | - <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit> | |
| 61 | - <dependencies> | |
| 62 | - </dependencies> | |
| 63 | - <partitionschemas> | |
| 64 | - </partitionschemas> | |
| 65 | - <slaveservers> | |
| 66 | - </slaveservers> | |
| 67 | - <clusterschemas> | |
| 68 | - </clusterschemas> | |
| 69 | - <created_user>-</created_user> | |
| 70 | - <created_date>2016/06/30 12:21:57.536</created_date> | |
| 71 | - <modified_user>-</modified_user> | |
| 72 | - <modified_date>2016/06/30 12:21:57.536</modified_date> | |
| 73 | - <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA=</key_for_session_key> | |
| 74 | - <is_key_private>N</is_key_private> | |
| 75 | - </info> | |
| 76 | - <notepads> | |
| 77 | - <notepad> | |
| 78 | - <note>字典表对应(以后直接查找表 bsth_c_sys_dictionary)
类型 代码 名称
LineTrend 0 上行
LineTrend 1 下行
ScheduleType normal 正常班次
ScheduleType out 出场
ScheduleType in 进场
ScheduleType temp 临加
ScheduleType region 区间
ScheduleType venting 放空
ScheduleType major 放大站</note> | |
| 79 | - <xloc>606</xloc> | |
| 80 | - <yloc>129</yloc> | |
| 81 | - <width>332</width> | |
| 82 | - <heigth>186</heigth> | |
| 83 | - <fontname>YaHei Consolas Hybrid</fontname> | |
| 84 | - <fontsize>12</fontsize> | |
| 85 | - <fontbold>N</fontbold> | |
| 86 | - <fontitalic>N</fontitalic> | |
| 87 | - <fontcolorred>0</fontcolorred> | |
| 88 | - <fontcolorgreen>0</fontcolorgreen> | |
| 89 | - <fontcolorblue>0</fontcolorblue> | |
| 90 | - <backgroundcolorred>255</backgroundcolorred> | |
| 91 | - <backgroundcolorgreen>205</backgroundcolorgreen> | |
| 92 | - <backgroundcolorblue>112</backgroundcolorblue> | |
| 93 | - <bordercolorred>100</bordercolorred> | |
| 94 | - <bordercolorgreen>100</bordercolorgreen> | |
| 95 | - <bordercolorblue>100</bordercolorblue> | |
| 96 | - <drawshadow>Y</drawshadow> | |
| 97 | - </notepad> | |
| 98 | - <notepad> | |
| 99 | - <note>因为时刻表输入格式不确定性,主要因为表结构是反范式化的,
所以需要外部动态指定愿数据,头三个step动态指定愿数据
</note> | |
| 100 | - <xloc>64</xloc> | |
| 101 | - <yloc>224</yloc> | |
| 102 | - <width>346</width> | |
| 103 | - <heigth>58</heigth> | |
| 104 | - <fontname>YaHei Consolas Hybrid</fontname> | |
| 105 | - <fontsize>12</fontsize> | |
| 106 | - <fontbold>N</fontbold> | |
| 107 | - <fontitalic>N</fontitalic> | |
| 108 | - <fontcolorred>0</fontcolorred> | |
| 109 | - <fontcolorgreen>0</fontcolorgreen> | |
| 110 | - <fontcolorblue>0</fontcolorblue> | |
| 111 | - <backgroundcolorred>255</backgroundcolorred> | |
| 112 | - <backgroundcolorgreen>205</backgroundcolorgreen> | |
| 113 | - <backgroundcolorblue>112</backgroundcolorblue> | |
| 114 | - <bordercolorred>100</bordercolorred> | |
| 115 | - <bordercolorgreen>100</bordercolorgreen> | |
| 116 | - <bordercolorblue>100</bordercolorblue> | |
| 117 | - <drawshadow>Y</drawshadow> | |
| 118 | - </notepad> | |
| 119 | - </notepads> | |
| 120 | - <connection> | |
| 121 | - <name>bus_control_公司_201</name> | |
| 122 | - <server>localhost</server> | |
| 123 | - <type>MYSQL</type> | |
| 124 | - <access>Native</access> | |
| 125 | - <database>control</database> | |
| 126 | - <port>3306</port> | |
| 127 | - <username>root</username> | |
| 128 | - <password>Encrypted </password> | |
| 129 | - <servername/> | |
| 130 | - <data_tablespace/> | |
| 131 | - <index_tablespace/> | |
| 132 | - <attributes> | |
| 133 | - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 134 | - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 135 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 136 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 137 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 138 | - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 139 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 140 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 141 | - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute> | |
| 142 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 143 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 144 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 145 | - </attributes> | |
| 146 | - </connection> | |
| 147 | - <connection> | |
| 148 | - <name>bus_control_variable</name> | |
| 149 | - <server>${v_db_ip}</server> | |
| 150 | - <type>MYSQL</type> | |
| 151 | - <access>Native</access> | |
| 152 | - <database>control</database> | |
| 153 | - <port>3306</port> | |
| 154 | - <username>${v_db_uname}</username> | |
| 155 | - <password>${v_db_pwd}</password> | |
| 156 | - <servername/> | |
| 157 | - <data_tablespace/> | |
| 158 | - <index_tablespace/> | |
| 159 | - <attributes> | |
| 160 | - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 161 | - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 162 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 163 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 164 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 165 | - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 166 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 167 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 168 | - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute> | |
| 169 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 170 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 171 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 172 | - </attributes> | |
| 173 | - </connection> | |
| 174 | - <connection> | |
| 175 | - <name>bus_control_本机</name> | |
| 176 | - <server>localhost</server> | |
| 177 | - <type>MYSQL</type> | |
| 178 | - <access>Native</access> | |
| 179 | - <database>control</database> | |
| 180 | - <port>3306</port> | |
| 181 | - <username>root</username> | |
| 182 | - <password>Encrypted </password> | |
| 183 | - <servername/> | |
| 184 | - <data_tablespace/> | |
| 185 | - <index_tablespace/> | |
| 186 | - <attributes> | |
| 187 | - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 188 | - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 189 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 190 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 191 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 192 | - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 193 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 194 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 195 | - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 196 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 197 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 198 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 199 | - </attributes> | |
| 200 | - </connection> | |
| 201 | - <connection> | |
| 202 | - <name>xlab_mysql_youle</name> | |
| 203 | - <server>101.231.124.8</server> | |
| 204 | - <type>MYSQL</type> | |
| 205 | - <access>Native</access> | |
| 206 | - <database>xlab_youle</database> | |
| 207 | - <port>45687</port> | |
| 208 | - <username>xlab-youle</username> | |
| 209 | - <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password> | |
| 210 | - <servername/> | |
| 211 | - <data_tablespace/> | |
| 212 | - <index_tablespace/> | |
| 213 | - <attributes> | |
| 214 | - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 215 | - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 216 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 217 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 218 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 219 | - <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute> | |
| 220 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 221 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 222 | - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 223 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 224 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 225 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 226 | - </attributes> | |
| 227 | - </connection> | |
| 228 | - <connection> | |
| 229 | - <name>xlab_mysql_youle(本机)</name> | |
| 230 | - <server>localhost</server> | |
| 231 | - <type>MYSQL</type> | |
| 232 | - <access>Native</access> | |
| 233 | - <database>xlab_youle</database> | |
| 234 | - <port>3306</port> | |
| 235 | - <username>root</username> | |
| 236 | - <password>Encrypted </password> | |
| 237 | - <servername/> | |
| 238 | - <data_tablespace/> | |
| 239 | - <index_tablespace/> | |
| 240 | - <attributes> | |
| 241 | - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 242 | - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 243 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 244 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 245 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 246 | - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 247 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 248 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 249 | - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 250 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 251 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 252 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 253 | - </attributes> | |
| 254 | - </connection> | |
| 255 | - <connection> | |
| 256 | - <name>xlab_youle</name> | |
| 257 | - <server/> | |
| 258 | - <type>MYSQL</type> | |
| 259 | - <access>JNDI</access> | |
| 260 | - <database>xlab_youle</database> | |
| 261 | - <port>1521</port> | |
| 262 | - <username/> | |
| 263 | - <password>Encrypted </password> | |
| 264 | - <servername/> | |
| 265 | - <data_tablespace/> | |
| 266 | - <index_tablespace/> | |
| 267 | - <attributes> | |
| 268 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 269 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 270 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 271 | - <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | |
| 272 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 273 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 274 | - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 275 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 276 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 277 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 278 | - </attributes> | |
| 279 | - </connection> | |
| 280 | - <order> | |
| 281 | - <hop> <from>时刻表明细信息Excel输入</from><to>班次数据范式化</to><enabled>Y</enabled> </hop> | |
| 282 | - <hop> <from>添加发车顺序号</from><to>过滤记录(发车时间为空)</to><enabled>Y</enabled> </hop> | |
| 283 | - <hop> <from>过滤记录(发车时间为空)</from><to>添加对应班次数</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>查找路牌关联</to><enabled>Y</enabled> </hop> | |
| 287 | - <hop> <from>查找线路关联</from><to>查找时刻表基础信息关联</to><enabled>Y</enabled> </hop> | |
| 288 | - <hop> <from>上下行字典</from><to>班次类型字典</to><enabled>Y</enabled> </hop> | |
| 289 | - <hop> <from>上下行字典 2</from><to>班次类型字典 2</to><enabled>Y</enabled> </hop> | |
| 290 | - <hop> <from>上下行字典 3</from><to>班次类型字典 3</to><enabled>Y</enabled> </hop> | |
| 291 | - <hop> <from>匹配上下行班次里程时间</from><to>类型修正</to><enabled>Y</enabled> </hop> | |
| 292 | - <hop> <from>按照班次类型过滤数据1</from><to>按照班次类型过滤数据2</to><enabled>Y</enabled> </hop> | |
| 293 | - <hop> <from>按照班次类型过滤数据1</from><to>正常班次数据</to><enabled>Y</enabled> </hop> | |
| 294 | - <hop> <from>按照班次类型过滤数据2</from><to>出场班次数据</to><enabled>Y</enabled> </hop> | |
| 295 | - <hop> <from>按照班次类型过滤数据2</from><to>进场班次数据</to><enabled>Y</enabled> </hop> | |
| 296 | - <hop> <from>查找线路上下行里程时间</from><to>匹配上下行班次里程时间</to><enabled>Y</enabled> </hop> | |
| 297 | - <hop> <from>查找终点站关联</from><to>上下行字典</to><enabled>Y</enabled> </hop> | |
| 298 | - <hop> <from>查找起点站关联并确定上下行</from><to>查找终点站关联</to><enabled>Y</enabled> </hop> | |
| 299 | - <hop> <from>正常班次_处理数据</from><to>查找起点站关联并确定上下行</to><enabled>Y</enabled> </hop> | |
| 300 | - <hop> <from>正常班次数据</from><to>正常班次_处理数据</to><enabled>Y</enabled> </hop> | |
| 301 | - <hop> <from>班次类型字典</from><to>查找线路上下行里程时间</to><enabled>Y</enabled> </hop> | |
| 302 | - <hop> <from>班次类型字典 2</from><to>查找线路出场里程时间</to><enabled>Y</enabled> </hop> | |
| 303 | - <hop> <from>班次类型字典 3</from><to>查找线路进场里程时间</to><enabled>Y</enabled> </hop> | |
| 304 | - <hop> <from>查找路牌关联</from><to>计算班次类型</to><enabled>Y</enabled> </hop> | |
| 305 | - <hop> <from>计算班次类型</from><to>按照班次类型过滤数据1</to><enabled>Y</enabled> </hop> | |
| 306 | - <hop> <from>出场班次数据</from><to>查找停车场1</to><enabled>Y</enabled> </hop> | |
| 307 | - <hop> <from>查找停车场1</from><to>出场班次_确定终点站名字</to><enabled>Y</enabled> </hop> | |
| 308 | - <hop> <from>出场班次_确定终点站名字</from><to>查找出场终点站关联并确定上下行</to><enabled>Y</enabled> </hop> | |
| 309 | - <hop> <from>查找出场终点站关联并确定上下行</from><to>上下行字典 2</to><enabled>Y</enabled> </hop> | |
| 310 | - <hop> <from>进场班次数据</from><to>查找停车场2</to><enabled>Y</enabled> </hop> | |
| 311 | - <hop> <from>查找停车场2</from><to>进场班次_确定起点站名字</to><enabled>Y</enabled> </hop> | |
| 312 | - <hop> <from>进场班次_确定起点站名字</from><to>查找进场班次上一个班次的线路方向</to><enabled>Y</enabled> </hop> | |
| 313 | - <hop> <from>查找进场班次上一个班次的线路方向</from><to>查找进场班次上一个班次的终点站,并作为进场班次的起点站</to><enabled>Y</enabled> </hop> | |
| 314 | - <hop> <from>查找进场班次上一个班次的终点站,并作为进场班次的起点站</from><to>上下行字典 3</to><enabled>Y</enabled> </hop> | |
| 315 | - <hop> <from>字段选择</from><to>添加发车顺序号</to><enabled>Y</enabled> </hop> | |
| 316 | - <hop> <from>分组各个路牌的站</from><to>查找线路关联</to><enabled>Y</enabled> </hop> | |
| 317 | - <hop> <from>增加时刻表名字,线路名字,停车场名字</from><to>记录关联 (笛卡尔输出)</to><enabled>Y</enabled> </hop> | |
| 318 | - <hop> <from>班次数据范式化</from><to>记录关联 (笛卡尔输出)</to><enabled>Y</enabled> </hop> | |
| 319 | - <hop> <from>记录关联 (笛卡尔输出)</from><to>字段选择</to><enabled>Y</enabled> </hop> | |
| 320 | - </order> | |
| 321 | - <step> | |
| 322 | - <name>上下行字典</name> | |
| 323 | - <type>ValueMapper</type> | |
| 324 | - <description/> | |
| 325 | - <distribute>Y</distribute> | |
| 326 | - <custom_distribution/> | |
| 327 | - <copies>1</copies> | |
| 328 | - <partitioning> | |
| 329 | - <method>none</method> | |
| 330 | - <schema_name/> | |
| 331 | - </partitioning> | |
| 332 | - <field_to_use>sxx</field_to_use> | |
| 333 | - <target_field>sxx_desc</target_field> | |
| 334 | - <non_match_default/> | |
| 335 | - <fields> | |
| 336 | - <field> | |
| 337 | - <source_value>0</source_value> | |
| 338 | - <target_value>上行</target_value> | |
| 339 | - </field> | |
| 340 | - <field> | |
| 341 | - <source_value>1</source_value> | |
| 342 | - <target_value>下行</target_value> | |
| 343 | - </field> | |
| 344 | - </fields> | |
| 345 | - <cluster_schema/> | |
| 346 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 347 | - <xloc>147</xloc> | |
| 348 | - <yloc>403</yloc> | |
| 349 | - <draw>Y</draw> | |
| 350 | - </GUI> | |
| 351 | - </step> | |
| 352 | - | |
| 353 | - <step> | |
| 354 | - <name>上下行字典 2</name> | |
| 355 | - <type>ValueMapper</type> | |
| 356 | - <description/> | |
| 357 | - <distribute>Y</distribute> | |
| 358 | - <custom_distribution/> | |
| 359 | - <copies>1</copies> | |
| 360 | - <partitioning> | |
| 361 | - <method>none</method> | |
| 362 | - <schema_name/> | |
| 363 | - </partitioning> | |
| 364 | - <field_to_use>sxx</field_to_use> | |
| 365 | - <target_field>sxx_desc</target_field> | |
| 366 | - <non_match_default/> | |
| 367 | - <fields> | |
| 368 | - <field> | |
| 369 | - <source_value>0</source_value> | |
| 370 | - <target_value>上行</target_value> | |
| 371 | - </field> | |
| 372 | - <field> | |
| 373 | - <source_value>1</source_value> | |
| 374 | - <target_value>下行</target_value> | |
| 375 | - </field> | |
| 376 | - </fields> | |
| 377 | - <cluster_schema/> | |
| 378 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 379 | - <xloc>331</xloc> | |
| 380 | - <yloc>598</yloc> | |
| 381 | - <draw>Y</draw> | |
| 382 | - </GUI> | |
| 383 | - </step> | |
| 384 | - | |
| 385 | - <step> | |
| 386 | - <name>上下行字典 3</name> | |
| 387 | - <type>ValueMapper</type> | |
| 388 | - <description/> | |
| 389 | - <distribute>Y</distribute> | |
| 390 | - <custom_distribution/> | |
| 391 | - <copies>1</copies> | |
| 392 | - <partitioning> | |
| 393 | - <method>none</method> | |
| 394 | - <schema_name/> | |
| 395 | - </partitioning> | |
| 396 | - <field_to_use>sxx</field_to_use> | |
| 397 | - <target_field>sxx_desc</target_field> | |
| 398 | - <non_match_default/> | |
| 399 | - <fields> | |
| 400 | - <field> | |
| 401 | - <source_value>0</source_value> | |
| 402 | - <target_value>上行</target_value> | |
| 403 | - </field> | |
| 404 | - <field> | |
| 405 | - <source_value>1</source_value> | |
| 406 | - <target_value>下行</target_value> | |
| 407 | - </field> | |
| 408 | - </fields> | |
| 409 | - <cluster_schema/> | |
| 410 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 411 | - <xloc>550</xloc> | |
| 412 | - <yloc>775</yloc> | |
| 413 | - <draw>Y</draw> | |
| 414 | - </GUI> | |
| 415 | - </step> | |
| 416 | - | |
| 417 | - <step> | |
| 418 | - <name>出场班次_确定终点站名字</name> | |
| 419 | - <type>ScriptValueMod</type> | |
| 420 | - <description/> | |
| 421 | - <distribute>Y</distribute> | |
| 422 | - <custom_distribution/> | |
| 423 | - <copies>1</copies> | |
| 424 | - <partitioning> | |
| 425 | - <method>none</method> | |
| 426 | - <schema_name/> | |
| 427 | - </partitioning> | |
| 428 | - <compatible>N</compatible> | |
| 429 | - <optimizationLevel>9</optimizationLevel> | |
| 430 | - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 431 | - <jsScript_name>Script 1</jsScript_name> | |
| 432 | - <jsScript_script>//Script here

// 添加站点标识
var cc_groups = qdzgroups.split(","); // 所有班次起点站数组
var zdzname = cc_groups[gno]; // 出场班次的终点站是下个班次的起始站
var endZdtype = 'B';</jsScript_script> | |
| 433 | - </jsScript> </jsScripts> <fields> <field> <name>zdzname</name> | |
| 434 | - <rename>zdzname</rename> | |
| 435 | - <type>String</type> | |
| 436 | - <length>-1</length> | |
| 437 | - <precision>-1</precision> | |
| 438 | - <replace>N</replace> | |
| 439 | - </field> <field> <name>endZdtype</name> | |
| 440 | - <rename>endZdtype</rename> | |
| 441 | - <type>String</type> | |
| 442 | - <length>-1</length> | |
| 443 | - <precision>-1</precision> | |
| 444 | - <replace>N</replace> | |
| 445 | - </field> </fields> <cluster_schema/> | |
| 446 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 447 | - <xloc>575</xloc> | |
| 448 | - <yloc>502</yloc> | |
| 449 | - <draw>Y</draw> | |
| 450 | - </GUI> | |
| 451 | - </step> | |
| 452 | - | |
| 453 | - <step> | |
| 454 | - <name>出场班次数据</name> | |
| 455 | - <type>Dummy</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 | - <cluster_schema/> | |
| 465 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 466 | - <xloc>869</xloc> | |
| 467 | - <yloc>504</yloc> | |
| 468 | - <draw>Y</draw> | |
| 469 | - </GUI> | |
| 470 | - </step> | |
| 471 | - | |
| 472 | - <step> | |
| 473 | - <name>分组各个路牌的站</name> | |
| 474 | - <type>GroupBy</type> | |
| 475 | - <description/> | |
| 476 | - <distribute>Y</distribute> | |
| 477 | - <custom_distribution/> | |
| 478 | - <copies>1</copies> | |
| 479 | - <partitioning> | |
| 480 | - <method>none</method> | |
| 481 | - <schema_name/> | |
| 482 | - </partitioning> | |
| 483 | - <all_rows>Y</all_rows> | |
| 484 | - <ignore_aggregate>N</ignore_aggregate> | |
| 485 | - <field_ignore/> | |
| 486 | - <directory>%%java.io.tmpdir%%</directory> | |
| 487 | - <prefix>grp</prefix> | |
| 488 | - <add_linenr>Y</add_linenr> | |
| 489 | - <linenr_fieldname>gno</linenr_fieldname> | |
| 490 | - <give_back_row>N</give_back_row> | |
| 491 | - <group> | |
| 492 | - <field> | |
| 493 | - <name>lp</name> | |
| 494 | - </field> | |
| 495 | - </group> | |
| 496 | - <fields> | |
| 497 | - <field> | |
| 498 | - <aggregate>qdzgroups</aggregate> | |
| 499 | - <subject>qdzname</subject> | |
| 500 | - <type>CONCAT_STRING</type> | |
| 501 | - <valuefield>,</valuefield> | |
| 502 | - </field> | |
| 503 | - </fields> | |
| 504 | - <cluster_schema/> | |
| 505 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 506 | - <xloc>892</xloc> | |
| 507 | - <yloc>44</yloc> | |
| 508 | - <draw>Y</draw> | |
| 509 | - </GUI> | |
| 510 | - </step> | |
| 511 | - | |
| 512 | - <step> | |
| 513 | - <name>匹配上下行班次里程时间</name> | |
| 514 | - <type>ScriptValueMod</type> | |
| 515 | - <description/> | |
| 516 | - <distribute>Y</distribute> | |
| 517 | - <custom_distribution/> | |
| 518 | - <copies>1</copies> | |
| 519 | - <partitioning> | |
| 520 | - <method>none</method> | |
| 521 | - <schema_name/> | |
| 522 | - </partitioning> | |
| 523 | - <compatible>N</compatible> | |
| 524 | - <optimizationLevel>9</optimizationLevel> | |
| 525 | - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 526 | - <jsScript_name>Script 1</jsScript_name> | |
| 527 | - <jsScript_script>//Script here

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

if (sxx == 0) { // 上行
 jhlc = up_mileage;
 bcsj = up_travel_time;
} else { // sxx == 1 下行
 jhlc = down_mileage;
 bcsj = down_travel_time;
}</jsScript_script> | |
| 528 | - </jsScript> </jsScripts> <fields> <field> <name>jhlc</name> | |
| 529 | - <rename>jhlc</rename> | |
| 530 | - <type>String</type> | |
| 531 | - <length>-1</length> | |
| 532 | - <precision>-1</precision> | |
| 533 | - <replace>N</replace> | |
| 534 | - </field> <field> <name>bcsj</name> | |
| 535 | - <rename>bcsj</rename> | |
| 536 | - <type>String</type> | |
| 537 | - <length>-1</length> | |
| 538 | - <precision>-1</precision> | |
| 539 | - <replace>N</replace> | |
| 540 | - </field> </fields> <cluster_schema/> | |
| 541 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 542 | - <xloc>148</xloc> | |
| 543 | - <yloc>674</yloc> | |
| 544 | - <draw>Y</draw> | |
| 545 | - </GUI> | |
| 546 | - </step> | |
| 547 | - | |
| 548 | - <step> | |
| 549 | - <name>增加时刻表名字,线路名字,停车场名字</name> | |
| 550 | - <type>DataGrid</type> | |
| 551 | - <description/> | |
| 552 | - <distribute>Y</distribute> | |
| 553 | - <custom_distribution/> | |
| 554 | - <copies>1</copies> | |
| 555 | - <partitioning> | |
| 556 | - <method>none</method> | |
| 557 | - <schema_name/> | |
| 558 | - </partitioning> | |
| 559 | - <fields> | |
| 560 | - </fields> | |
| 561 | - <data> | |
| 562 | - <line> </line> | |
| 563 | - </data> | |
| 564 | - <cluster_schema/> | |
| 565 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 566 | - <xloc>110</xloc> | |
| 567 | - <yloc>133</yloc> | |
| 568 | - <draw>Y</draw> | |
| 569 | - </GUI> | |
| 570 | - </step> | |
| 571 | - | |
| 572 | - <step> | |
| 573 | - <name>处理数据</name> | |
| 574 | - <type>ScriptValueMod</type> | |
| 575 | - <description/> | |
| 576 | - <distribute>Y</distribute> | |
| 577 | - <custom_distribution/> | |
| 578 | - <copies>1</copies> | |
| 579 | - <partitioning> | |
| 580 | - <method>none</method> | |
| 581 | - <schema_name/> | |
| 582 | - </partitioning> | |
| 583 | - <compatible>N</compatible> | |
| 584 | - <optimizationLevel>9</optimizationLevel> | |
| 585 | - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 586 | - <jsScript_name>Script 1</jsScript_name> | |
| 587 | - <jsScript_script>//Script here

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

</jsScript_script> | |
| 588 | - </jsScript> </jsScripts> <fields> <field> <name>qdzname</name> | |
| 589 | - <rename>qdzname</rename> | |
| 590 | - <type>String</type> | |
| 591 | - <length>-1</length> | |
| 592 | - <precision>-1</precision> | |
| 593 | - <replace>Y</replace> | |
| 594 | - </field> </fields> <cluster_schema/> | |
| 595 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 596 | - <xloc>788</xloc> | |
| 597 | - <yloc>44</yloc> | |
| 598 | - <draw>Y</draw> | |
| 599 | - </GUI> | |
| 600 | - </step> | |
| 601 | - | |
| 602 | - <step> | |
| 603 | - <name>字段选择</name> | |
| 604 | - <type>SelectValues</type> | |
| 605 | - <description/> | |
| 606 | - <distribute>Y</distribute> | |
| 607 | - <custom_distribution/> | |
| 608 | - <copies>1</copies> | |
| 609 | - <partitioning> | |
| 610 | - <method>none</method> | |
| 611 | - <schema_name/> | |
| 612 | - </partitioning> | |
| 613 | - <fields> <field> <name>路牌</name> | |
| 614 | - <rename>lp</rename> | |
| 615 | - <length>-2</length> | |
| 616 | - <precision>-2</precision> | |
| 617 | - </field> <field> <name>站点名称</name> | |
| 618 | - <rename>qdzname</rename> | |
| 619 | - <length>-2</length> | |
| 620 | - <precision>-2</precision> | |
| 621 | - </field> <field> <name>发车时间</name> | |
| 622 | - <rename>sendtime</rename> | |
| 623 | - <length>-2</length> | |
| 624 | - <precision>-2</precision> | |
| 625 | - </field> <select_unspecified>Y</select_unspecified> | |
| 626 | - </fields> <cluster_schema/> | |
| 627 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 628 | - <xloc>444</xloc> | |
| 629 | - <yloc>131</yloc> | |
| 630 | - <draw>Y</draw> | |
| 631 | - </GUI> | |
| 632 | - </step> | |
| 633 | - | |
| 634 | - <step> | |
| 635 | - <name>按照班次类型过滤数据1</name> | |
| 636 | - <type>FilterRows</type> | |
| 637 | - <description/> | |
| 638 | - <distribute>Y</distribute> | |
| 639 | - <custom_distribution/> | |
| 640 | - <copies>1</copies> | |
| 641 | - <partitioning> | |
| 642 | - <method>none</method> | |
| 643 | - <schema_name/> | |
| 644 | - </partitioning> | |
| 645 | -<send_true_to>正常班次数据</send_true_to> | |
| 646 | -<send_false_to>按照班次类型过滤数据2</send_false_to> | |
| 647 | - <compare> | |
| 648 | -<condition> | |
| 649 | - <negated>N</negated> | |
| 650 | - <leftvalue>bctype</leftvalue> | |
| 651 | - <function>=</function> | |
| 652 | - <rightvalue/> | |
| 653 | - <value><name>constant</name><type>String</type><text>正常班次</text><length>-1</length><precision>-1</precision><isnull>N</isnull><mask/></value> </condition> | |
| 654 | - </compare> | |
| 655 | - <cluster_schema/> | |
| 656 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 657 | - <xloc>868</xloc> | |
| 658 | - <yloc>404</yloc> | |
| 659 | - <draw>Y</draw> | |
| 660 | - </GUI> | |
| 661 | - </step> | |
| 662 | - | |
| 663 | - <step> | |
| 664 | - <name>按照班次类型过滤数据2</name> | |
| 665 | - <type>FilterRows</type> | |
| 666 | - <description/> | |
| 667 | - <distribute>Y</distribute> | |
| 668 | - <custom_distribution/> | |
| 669 | - <copies>1</copies> | |
| 670 | - <partitioning> | |
| 671 | - <method>none</method> | |
| 672 | - <schema_name/> | |
| 673 | - </partitioning> | |
| 674 | -<send_true_to>出场班次数据</send_true_to> | |
| 675 | -<send_false_to>进场班次数据</send_false_to> | |
| 676 | - <compare> | |
| 677 | -<condition> | |
| 678 | - <negated>N</negated> | |
| 679 | - <leftvalue>bctype</leftvalue> | |
| 680 | - <function>=</function> | |
| 681 | - <rightvalue/> | |
| 682 | - <value><name>constant</name><type>String</type><text>出场</text><length>-1</length><precision>-1</precision><isnull>N</isnull><mask/></value> </condition> | |
| 683 | - </compare> | |
| 684 | - <cluster_schema/> | |
| 685 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 686 | - <xloc>995</xloc> | |
| 687 | - <yloc>503</yloc> | |
| 688 | - <draw>Y</draw> | |
| 689 | - </GUI> | |
| 690 | - </step> | |
| 691 | - | |
| 692 | - <step> | |
| 693 | - <name>时刻表明细信息Excel输入</name> | |
| 694 | - <type>ExcelInput</type> | |
| 695 | - <description/> | |
| 696 | - <distribute>Y</distribute> | |
| 697 | - <custom_distribution/> | |
| 698 | - <copies>1</copies> | |
| 699 | - <partitioning> | |
| 700 | - <method>none</method> | |
| 701 | - <schema_name/> | |
| 702 | - </partitioning> | |
| 703 | - <header>Y</header> | |
| 704 | - <noempty>Y</noempty> | |
| 705 | - <stoponempty>N</stoponempty> | |
| 706 | - <filefield/> | |
| 707 | - <sheetfield/> | |
| 708 | - <sheetrownumfield/> | |
| 709 | - <rownumfield/> | |
| 710 | - <sheetfield/> | |
| 711 | - <filefield/> | |
| 712 | - <limit>0</limit> | |
| 713 | - <encoding/> | |
| 714 | - <add_to_result_filenames>Y</add_to_result_filenames> | |
| 715 | - <accept_filenames>N</accept_filenames> | |
| 716 | - <accept_field/> | |
| 717 | - <accept_stepname/> | |
| 718 | - <file> | |
| 719 | - <name/> | |
| 720 | - <filemask/> | |
| 721 | - <exclude_filemask/> | |
| 722 | - <file_required>N</file_required> | |
| 723 | - <include_subfolders>N</include_subfolders> | |
| 724 | - </file> | |
| 725 | - <fields> | |
| 726 | - </fields> | |
| 727 | - <sheets> | |
| 728 | - <sheet> | |
| 729 | - <name>工作表1</name> | |
| 730 | - <startrow>0</startrow> | |
| 731 | - <startcol>0</startcol> | |
| 732 | - </sheet> | |
| 733 | - </sheets> | |
| 734 | - <strict_types>N</strict_types> | |
| 735 | - <error_ignored>N</error_ignored> | |
| 736 | - <error_line_skipped>N</error_line_skipped> | |
| 737 | - <bad_line_files_destination_directory/> | |
| 738 | - <bad_line_files_extension>warning</bad_line_files_extension> | |
| 739 | - <error_line_files_destination_directory/> | |
| 740 | - <error_line_files_extension>error</error_line_files_extension> | |
| 741 | - <line_number_files_destination_directory/> | |
| 742 | - <line_number_files_extension>line</line_number_files_extension> | |
| 743 | - <shortFileFieldName/> | |
| 744 | - <pathFieldName/> | |
| 745 | - <hiddenFieldName/> | |
| 746 | - <lastModificationTimeFieldName/> | |
| 747 | - <uriNameFieldName/> | |
| 748 | - <rootUriNameFieldName/> | |
| 749 | - <extensionFieldName/> | |
| 750 | - <sizeFieldName/> | |
| 751 | - <spreadsheet_type>JXL</spreadsheet_type> | |
| 752 | - <cluster_schema/> | |
| 753 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 754 | - <xloc>112</xloc> | |
| 755 | - <yloc>44</yloc> | |
| 756 | - <draw>Y</draw> | |
| 757 | - </GUI> | |
| 758 | - </step> | |
| 759 | - | |
| 760 | - <step> | |
| 761 | - <name>查找停车场1</name> | |
| 762 | - <type>DBLookup</type> | |
| 763 | - <description/> | |
| 764 | - <distribute>Y</distribute> | |
| 765 | - <custom_distribution/> | |
| 766 | - <copies>1</copies> | |
| 767 | - <partitioning> | |
| 768 | - <method>none</method> | |
| 769 | - <schema_name/> | |
| 770 | - </partitioning> | |
| 771 | - <connection>bus_control_variable</connection> | |
| 772 | - <cache>N</cache> | |
| 773 | - <cache_load_all>N</cache_load_all> | |
| 774 | - <cache_size>0</cache_size> | |
| 775 | - <lookup> | |
| 776 | - <schema/> | |
| 777 | - <table>bsth_c_car_park</table> | |
| 778 | - <orderby/> | |
| 779 | - <fail_on_multiple>N</fail_on_multiple> | |
| 780 | - <eat_row_on_failure>N</eat_row_on_failure> | |
| 781 | - <key> | |
| 782 | - <name>tccname_</name> | |
| 783 | - <field>park_name</field> | |
| 784 | - <condition>=</condition> | |
| 785 | - <name2/> | |
| 786 | - </key> | |
| 787 | - <value> | |
| 788 | - <name>id</name> | |
| 789 | - <rename>qdzid</rename> | |
| 790 | - <default/> | |
| 791 | - <type>Integer</type> | |
| 792 | - </value> | |
| 793 | - </lookup> | |
| 794 | - <cluster_schema/> | |
| 795 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 796 | - <xloc>755</xloc> | |
| 797 | - <yloc>504</yloc> | |
| 798 | - <draw>Y</draw> | |
| 799 | - </GUI> | |
| 800 | - </step> | |
| 801 | - | |
| 802 | - <step> | |
| 803 | - <name>查找停车场2</name> | |
| 804 | - <type>DBLookup</type> | |
| 805 | - <description/> | |
| 806 | - <distribute>Y</distribute> | |
| 807 | - <custom_distribution/> | |
| 808 | - <copies>1</copies> | |
| 809 | - <partitioning> | |
| 810 | - <method>none</method> | |
| 811 | - <schema_name/> | |
| 812 | - </partitioning> | |
| 813 | - <connection>bus_control_variable</connection> | |
| 814 | - <cache>N</cache> | |
| 815 | - <cache_load_all>N</cache_load_all> | |
| 816 | - <cache_size>0</cache_size> | |
| 817 | - <lookup> | |
| 818 | - <schema/> | |
| 819 | - <table>bsth_c_car_park</table> | |
| 820 | - <orderby/> | |
| 821 | - <fail_on_multiple>N</fail_on_multiple> | |
| 822 | - <eat_row_on_failure>N</eat_row_on_failure> | |
| 823 | - <key> | |
| 824 | - <name>tccname_</name> | |
| 825 | - <field>park_name</field> | |
| 826 | - <condition>=</condition> | |
| 827 | - <name2/> | |
| 828 | - </key> | |
| 829 | - <value> | |
| 830 | - <name>id</name> | |
| 831 | - <rename>zdzid</rename> | |
| 832 | - <default/> | |
| 833 | - <type>Integer</type> | |
| 834 | - </value> | |
| 835 | - </lookup> | |
| 836 | - <cluster_schema/> | |
| 837 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 838 | - <xloc>887</xloc> | |
| 839 | - <yloc>608</yloc> | |
| 840 | - <draw>Y</draw> | |
| 841 | - </GUI> | |
| 842 | - </step> | |
| 843 | - | |
| 844 | - <step> | |
| 845 | - <name>查找出场终点站关联并确定上下行</name> | |
| 846 | - <type>DBLookup</type> | |
| 847 | - <description/> | |
| 848 | - <distribute>Y</distribute> | |
| 849 | - <custom_distribution/> | |
| 850 | - <copies>1</copies> | |
| 851 | - <partitioning> | |
| 852 | - <method>none</method> | |
| 853 | - <schema_name/> | |
| 854 | - </partitioning> | |
| 855 | - <connection>bus_control_variable</connection> | |
| 856 | - <cache>N</cache> | |
| 857 | - <cache_load_all>N</cache_load_all> | |
| 858 | - <cache_size>0</cache_size> | |
| 859 | - <lookup> | |
| 860 | - <schema/> | |
| 861 | - <table>bsth_c_stationroute</table> | |
| 862 | - <orderby/> | |
| 863 | - <fail_on_multiple>N</fail_on_multiple> | |
| 864 | - <eat_row_on_failure>N</eat_row_on_failure> | |
| 865 | - <key> | |
| 866 | - <name>xlid</name> | |
| 867 | - <field>line</field> | |
| 868 | - <condition>=</condition> | |
| 869 | - <name2/> | |
| 870 | - </key> | |
| 871 | - <key> | |
| 872 | - <name>zdzname</name> | |
| 873 | - <field>station_name</field> | |
| 874 | - <condition>=</condition> | |
| 875 | - <name2/> | |
| 876 | - </key> | |
| 877 | - <key> | |
| 878 | - <name>endZdtype</name> | |
| 879 | - <field>station_mark</field> | |
| 880 | - <condition>=</condition> | |
| 881 | - <name2/> | |
| 882 | - </key> | |
| 883 | - <value> | |
| 884 | - <name>station</name> | |
| 885 | - <rename>zdzid</rename> | |
| 886 | - <default/> | |
| 887 | - <type>Integer</type> | |
| 888 | - </value> | |
| 889 | - <value> | |
| 890 | - <name>directions</name> | |
| 891 | - <rename>sxx</rename> | |
| 892 | - <default/> | |
| 893 | - <type>Integer</type> | |
| 894 | - </value> | |
| 895 | - </lookup> | |
| 896 | - <cluster_schema/> | |
| 897 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 898 | - <xloc>329</xloc> | |
| 899 | - <yloc>505</yloc> | |
| 900 | - <draw>Y</draw> | |
| 901 | - </GUI> | |
| 902 | - </step> | |
| 903 | - | |
| 904 | - <step> | |
| 905 | - <name>查找时刻表基础信息关联</name> | |
| 906 | - <type>DBLookup</type> | |
| 907 | - <description/> | |
| 908 | - <distribute>Y</distribute> | |
| 909 | - <custom_distribution/> | |
| 910 | - <copies>1</copies> | |
| 911 | - <partitioning> | |
| 912 | - <method>none</method> | |
| 913 | - <schema_name/> | |
| 914 | - </partitioning> | |
| 915 | - <connection>bus_control_variable</connection> | |
| 916 | - <cache>N</cache> | |
| 917 | - <cache_load_all>N</cache_load_all> | |
| 918 | - <cache_size>0</cache_size> | |
| 919 | - <lookup> | |
| 920 | - <schema/> | |
| 921 | - <table>bsth_c_s_ttinfo</table> | |
| 922 | - <orderby/> | |
| 923 | - <fail_on_multiple>N</fail_on_multiple> | |
| 924 | - <eat_row_on_failure>N</eat_row_on_failure> | |
| 925 | - <key> | |
| 926 | - <name>xlid</name> | |
| 927 | - <field>xl</field> | |
| 928 | - <condition>=</condition> | |
| 929 | - <name2/> | |
| 930 | - </key> | |
| 931 | - <key> | |
| 932 | - <name>ttinfoname_</name> | |
| 933 | - <field>name</field> | |
| 934 | - <condition>=</condition> | |
| 935 | - <name2/> | |
| 936 | - </key> | |
| 937 | - <value> | |
| 938 | - <name>id</name> | |
| 939 | - <rename>ttid</rename> | |
| 940 | - <default/> | |
| 941 | - <type>Integer</type> | |
| 942 | - </value> | |
| 943 | - </lookup> | |
| 944 | - <cluster_schema/> | |
| 945 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 946 | - <xloc>1011</xloc> | |
| 947 | - <yloc>134</yloc> | |
| 948 | - <draw>Y</draw> | |
| 949 | - </GUI> | |
| 950 | - </step> | |
| 951 | - | |
| 952 | - <step> | |
| 953 | - <name>查找线路上下行里程时间</name> | |
| 954 | - <type>DBLookup</type> | |
| 955 | - <description/> | |
| 956 | - <distribute>Y</distribute> | |
| 957 | - <custom_distribution/> | |
| 958 | - <copies>1</copies> | |
| 959 | - <partitioning> | |
| 960 | - <method>none</method> | |
| 961 | - <schema_name/> | |
| 962 | - </partitioning> | |
| 963 | - <connection>bus_control_variable</connection> | |
| 964 | - <cache>N</cache> | |
| 965 | - <cache_load_all>N</cache_load_all> | |
| 966 | - <cache_size>0</cache_size> | |
| 967 | - <lookup> | |
| 968 | - <schema/> | |
| 969 | - <table>bsth_c_line_information</table> | |
| 970 | - <orderby/> | |
| 971 | - <fail_on_multiple>N</fail_on_multiple> | |
| 972 | - <eat_row_on_failure>N</eat_row_on_failure> | |
| 973 | - <key> | |
| 974 | - <name>xlid</name> | |
| 975 | - <field>line</field> | |
| 976 | - <condition>=</condition> | |
| 977 | - <name2/> | |
| 978 | - </key> | |
| 979 | - <value> | |
| 980 | - <name>up_mileage</name> | |
| 981 | - <rename>up_mileage</rename> | |
| 982 | - <default/> | |
| 983 | - <type>Number</type> | |
| 984 | - </value> | |
| 985 | - <value> | |
| 986 | - <name>down_mileage</name> | |
| 987 | - <rename>down_mileage</rename> | |
| 988 | - <default/> | |
| 989 | - <type>Number</type> | |
| 990 | - </value> | |
| 991 | - <value> | |
| 992 | - <name>up_travel_time</name> | |
| 993 | - <rename>up_travel_time</rename> | |
| 994 | - <default/> | |
| 995 | - <type>Number</type> | |
| 996 | - </value> | |
| 997 | - <value> | |
| 998 | - <name>down_travel_time</name> | |
| 999 | - <rename>down_travel_time</rename> | |
| 1000 | - <default/> | |
| 1001 | - <type>Number</type> | |
| 1002 | - </value> | |
| 1003 | - </lookup> | |
| 1004 | - <cluster_schema/> | |
| 1005 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1006 | - <xloc>149</xloc> | |
| 1007 | - <yloc>581</yloc> | |
| 1008 | - <draw>Y</draw> | |
| 1009 | - </GUI> | |
| 1010 | - </step> | |
| 1011 | - | |
| 1012 | - <step> | |
| 1013 | - <name>查找线路关联</name> | |
| 1014 | - <type>DBLookup</type> | |
| 1015 | - <description/> | |
| 1016 | - <distribute>Y</distribute> | |
| 1017 | - <custom_distribution/> | |
| 1018 | - <copies>1</copies> | |
| 1019 | - <partitioning> | |
| 1020 | - <method>none</method> | |
| 1021 | - <schema_name/> | |
| 1022 | - </partitioning> | |
| 1023 | - <connection>bus_control_variable</connection> | |
| 1024 | - <cache>N</cache> | |
| 1025 | - <cache_load_all>N</cache_load_all> | |
| 1026 | - <cache_size>0</cache_size> | |
| 1027 | - <lookup> | |
| 1028 | - <schema/> | |
| 1029 | - <table>bsth_c_line</table> | |
| 1030 | - <orderby/> | |
| 1031 | - <fail_on_multiple>N</fail_on_multiple> | |
| 1032 | - <eat_row_on_failure>N</eat_row_on_failure> | |
| 1033 | - <key> | |
| 1034 | - <name>xlname_</name> | |
| 1035 | - <field>name</field> | |
| 1036 | - <condition>=</condition> | |
| 1037 | - <name2/> | |
| 1038 | - </key> | |
| 1039 | - <value> | |
| 1040 | - <name>id</name> | |
| 1041 | - <rename>xlid</rename> | |
| 1042 | - <default/> | |
| 1043 | - <type>Integer</type> | |
| 1044 | - </value> | |
| 1045 | - </lookup> | |
| 1046 | - <cluster_schema/> | |
| 1047 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1048 | - <xloc>1007</xloc> | |
| 1049 | - <yloc>43</yloc> | |
| 1050 | - <draw>Y</draw> | |
| 1051 | - </GUI> | |
| 1052 | - </step> | |
| 1053 | - | |
| 1054 | - <step> | |
| 1055 | - <name>查找线路出场里程时间</name> | |
| 1056 | - <type>DBLookup</type> | |
| 1057 | - <description/> | |
| 1058 | - <distribute>Y</distribute> | |
| 1059 | - <custom_distribution/> | |
| 1060 | - <copies>1</copies> | |
| 1061 | - <partitioning> | |
| 1062 | - <method>none</method> | |
| 1063 | - <schema_name/> | |
| 1064 | - </partitioning> | |
| 1065 | - <connection>bus_control_variable</connection> | |
| 1066 | - <cache>N</cache> | |
| 1067 | - <cache_load_all>N</cache_load_all> | |
| 1068 | - <cache_size>0</cache_size> | |
| 1069 | - <lookup> | |
| 1070 | - <schema/> | |
| 1071 | - <table>bsth_c_line_information</table> | |
| 1072 | - <orderby/> | |
| 1073 | - <fail_on_multiple>N</fail_on_multiple> | |
| 1074 | - <eat_row_on_failure>N</eat_row_on_failure> | |
| 1075 | - <key> | |
| 1076 | - <name>xlid</name> | |
| 1077 | - <field>line</field> | |
| 1078 | - <condition>=</condition> | |
| 1079 | - <name2/> | |
| 1080 | - </key> | |
| 1081 | - <value> | |
| 1082 | - <name>out_mileage</name> | |
| 1083 | - <rename>out_mileage</rename> | |
| 1084 | - <default/> | |
| 1085 | - <type>Number</type> | |
| 1086 | - </value> | |
| 1087 | - <value> | |
| 1088 | - <name>out_time</name> | |
| 1089 | - <rename>out_time</rename> | |
| 1090 | - <default/> | |
| 1091 | - <type>Number</type> | |
| 1092 | - </value> | |
| 1093 | - </lookup> | |
| 1094 | - <cluster_schema/> | |
| 1095 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1096 | - <xloc>335</xloc> | |
| 1097 | - <yloc>763</yloc> | |
| 1098 | - <draw>Y</draw> | |
| 1099 | - </GUI> | |
| 1100 | - </step> | |
| 1101 | - | |
| 1102 | - <step> | |
| 1103 | - <name>查找线路进场里程时间</name> | |
| 1104 | - <type>DBLookup</type> | |
| 1105 | - <description/> | |
| 1106 | - <distribute>Y</distribute> | |
| 1107 | - <custom_distribution/> | |
| 1108 | - <copies>1</copies> | |
| 1109 | - <partitioning> | |
| 1110 | - <method>none</method> | |
| 1111 | - <schema_name/> | |
| 1112 | - </partitioning> | |
| 1113 | - <connection>bus_control_variable</connection> | |
| 1114 | - <cache>N</cache> | |
| 1115 | - <cache_load_all>N</cache_load_all> | |
| 1116 | - <cache_size>0</cache_size> | |
| 1117 | - <lookup> | |
| 1118 | - <schema/> | |
| 1119 | - <table>bsth_c_line_information</table> | |
| 1120 | - <orderby/> | |
| 1121 | - <fail_on_multiple>N</fail_on_multiple> | |
| 1122 | - <eat_row_on_failure>N</eat_row_on_failure> | |
| 1123 | - <key> | |
| 1124 | - <name>xlid</name> | |
| 1125 | - <field>line</field> | |
| 1126 | - <condition>=</condition> | |
| 1127 | - <name2/> | |
| 1128 | - </key> | |
| 1129 | - <value> | |
| 1130 | - <name>parade_mileage</name> | |
| 1131 | - <rename>parade_mileage</rename> | |
| 1132 | - <default/> | |
| 1133 | - <type>Number</type> | |
| 1134 | - </value> | |
| 1135 | - <value> | |
| 1136 | - <name>parade_time</name> | |
| 1137 | - <rename>parade_time</rename> | |
| 1138 | - <default/> | |
| 1139 | - <type>Number</type> | |
| 1140 | - </value> | |
| 1141 | - </lookup> | |
| 1142 | - <cluster_schema/> | |
| 1143 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1144 | - <xloc>550</xloc> | |
| 1145 | - <yloc>920</yloc> | |
| 1146 | - <draw>Y</draw> | |
| 1147 | - </GUI> | |
| 1148 | - </step> | |
| 1149 | - | |
| 1150 | - <step> | |
| 1151 | - <name>查找终点站关联</name> | |
| 1152 | - <type>DBLookup</type> | |
| 1153 | - <description/> | |
| 1154 | - <distribute>Y</distribute> | |
| 1155 | - <custom_distribution/> | |
| 1156 | - <copies>1</copies> | |
| 1157 | - <partitioning> | |
| 1158 | - <method>none</method> | |
| 1159 | - <schema_name/> | |
| 1160 | - </partitioning> | |
| 1161 | - <connection>bus_control_variable</connection> | |
| 1162 | - <cache>N</cache> | |
| 1163 | - <cache_load_all>N</cache_load_all> | |
| 1164 | - <cache_size>0</cache_size> | |
| 1165 | - <lookup> | |
| 1166 | - <schema/> | |
| 1167 | - <table>bsth_c_stationroute</table> | |
| 1168 | - <orderby/> | |
| 1169 | - <fail_on_multiple>N</fail_on_multiple> | |
| 1170 | - <eat_row_on_failure>N</eat_row_on_failure> | |
| 1171 | - <key> | |
| 1172 | - <name>xlid</name> | |
| 1173 | - <field>line</field> | |
| 1174 | - <condition>=</condition> | |
| 1175 | - <name2/> | |
| 1176 | - </key> | |
| 1177 | - <key> | |
| 1178 | - <name>sxx</name> | |
| 1179 | - <field>directions</field> | |
| 1180 | - <condition>=</condition> | |
| 1181 | - <name2/> | |
| 1182 | - </key> | |
| 1183 | - <key> | |
| 1184 | - <name>endZdtype</name> | |
| 1185 | - <field>station_mark</field> | |
| 1186 | - <condition>=</condition> | |
| 1187 | - <name2/> | |
| 1188 | - </key> | |
| 1189 | - <value> | |
| 1190 | - <name>station_name</name> | |
| 1191 | - <rename>zdzname</rename> | |
| 1192 | - <default/> | |
| 1193 | - <type>String</type> | |
| 1194 | - </value> | |
| 1195 | - <value> | |
| 1196 | - <name>station</name> | |
| 1197 | - <rename>zdzid</rename> | |
| 1198 | - <default/> | |
| 1199 | - <type>Integer</type> | |
| 1200 | - </value> | |
| 1201 | - </lookup> | |
| 1202 | - <cluster_schema/> | |
| 1203 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1204 | - <xloc>280</xloc> | |
| 1205 | - <yloc>404</yloc> | |
| 1206 | - <draw>Y</draw> | |
| 1207 | - </GUI> | |
| 1208 | - </step> | |
| 1209 | - | |
| 1210 | - <step> | |
| 1211 | - <name>查找起点站关联并确定上下行</name> | |
| 1212 | - <type>DBLookup</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 | - <connection>bus_control_variable</connection> | |
| 1222 | - <cache>N</cache> | |
| 1223 | - <cache_load_all>N</cache_load_all> | |
| 1224 | - <cache_size>0</cache_size> | |
| 1225 | - <lookup> | |
| 1226 | - <schema/> | |
| 1227 | - <table>bsth_c_stationroute</table> | |
| 1228 | - <orderby/> | |
| 1229 | - <fail_on_multiple>N</fail_on_multiple> | |
| 1230 | - <eat_row_on_failure>N</eat_row_on_failure> | |
| 1231 | - <key> | |
| 1232 | - <name>xlid</name> | |
| 1233 | - <field>line</field> | |
| 1234 | - <condition>=</condition> | |
| 1235 | - <name2/> | |
| 1236 | - </key> | |
| 1237 | - <key> | |
| 1238 | - <name>qdzname</name> | |
| 1239 | - <field>station_name</field> | |
| 1240 | - <condition>=</condition> | |
| 1241 | - <name2/> | |
| 1242 | - </key> | |
| 1243 | - <key> | |
| 1244 | - <name>sendZdtype</name> | |
| 1245 | - <field>station_mark</field> | |
| 1246 | - <condition>=</condition> | |
| 1247 | - <name2/> | |
| 1248 | - </key> | |
| 1249 | - <value> | |
| 1250 | - <name>station</name> | |
| 1251 | - <rename>qdzid</rename> | |
| 1252 | - <default/> | |
| 1253 | - <type>Integer</type> | |
| 1254 | - </value> | |
| 1255 | - <value> | |
| 1256 | - <name>directions</name> | |
| 1257 | - <rename>sxx</rename> | |
| 1258 | - <default/> | |
| 1259 | - <type>Integer</type> | |
| 1260 | - </value> | |
| 1261 | - </lookup> | |
| 1262 | - <cluster_schema/> | |
| 1263 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1264 | - <xloc>430</xloc> | |
| 1265 | - <yloc>403</yloc> | |
| 1266 | - <draw>Y</draw> | |
| 1267 | - </GUI> | |
| 1268 | - </step> | |
| 1269 | - | |
| 1270 | - <step> | |
| 1271 | - <name>查找路牌关联</name> | |
| 1272 | - <type>DBLookup</type> | |
| 1273 | - <description/> | |
| 1274 | - <distribute>Y</distribute> | |
| 1275 | - <custom_distribution/> | |
| 1276 | - <copies>1</copies> | |
| 1277 | - <partitioning> | |
| 1278 | - <method>none</method> | |
| 1279 | - <schema_name/> | |
| 1280 | - </partitioning> | |
| 1281 | - <connection>bus_control_variable</connection> | |
| 1282 | - <cache>N</cache> | |
| 1283 | - <cache_load_all>N</cache_load_all> | |
| 1284 | - <cache_size>0</cache_size> | |
| 1285 | - <lookup> | |
| 1286 | - <schema/> | |
| 1287 | - <table>bsth_c_s_gbi</table> | |
| 1288 | - <orderby/> | |
| 1289 | - <fail_on_multiple>N</fail_on_multiple> | |
| 1290 | - <eat_row_on_failure>N</eat_row_on_failure> | |
| 1291 | - <key> | |
| 1292 | - <name>xlid</name> | |
| 1293 | - <field>xl</field> | |
| 1294 | - <condition>=</condition> | |
| 1295 | - <name2/> | |
| 1296 | - </key> | |
| 1297 | - <key> | |
| 1298 | - <name>lp</name> | |
| 1299 | - <field>lp_name</field> | |
| 1300 | - <condition>=</condition> | |
| 1301 | - <name2/> | |
| 1302 | - </key> | |
| 1303 | - <value> | |
| 1304 | - <name>id</name> | |
| 1305 | - <rename>lpid</rename> | |
| 1306 | - <default/> | |
| 1307 | - <type>Integer</type> | |
| 1308 | - </value> | |
| 1309 | - </lookup> | |
| 1310 | - <cluster_schema/> | |
| 1311 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1312 | - <xloc>1013</xloc> | |
| 1313 | - <yloc>265</yloc> | |
| 1314 | - <draw>Y</draw> | |
| 1315 | - </GUI> | |
| 1316 | - </step> | |
| 1317 | - | |
| 1318 | - <step> | |
| 1319 | - <name>查找进场班次上一个班次的线路方向</name> | |
| 1320 | - <type>DBLookup</type> | |
| 1321 | - <description/> | |
| 1322 | - <distribute>Y</distribute> | |
| 1323 | - <custom_distribution/> | |
| 1324 | - <copies>1</copies> | |
| 1325 | - <partitioning> | |
| 1326 | - <method>none</method> | |
| 1327 | - <schema_name/> | |
| 1328 | - </partitioning> | |
| 1329 | - <connection>bus_control_variable</connection> | |
| 1330 | - <cache>N</cache> | |
| 1331 | - <cache_load_all>N</cache_load_all> | |
| 1332 | - <cache_size>0</cache_size> | |
| 1333 | - <lookup> | |
| 1334 | - <schema/> | |
| 1335 | - <table>bsth_c_stationroute</table> | |
| 1336 | - <orderby/> | |
| 1337 | - <fail_on_multiple>N</fail_on_multiple> | |
| 1338 | - <eat_row_on_failure>N</eat_row_on_failure> | |
| 1339 | - <key> | |
| 1340 | - <name>xlid</name> | |
| 1341 | - <field>line</field> | |
| 1342 | - <condition>=</condition> | |
| 1343 | - <name2/> | |
| 1344 | - </key> | |
| 1345 | - <key> | |
| 1346 | - <name>startZdtype_calcu</name> | |
| 1347 | - <field>station_mark</field> | |
| 1348 | - <condition>=</condition> | |
| 1349 | - <name2/> | |
| 1350 | - </key> | |
| 1351 | - <key> | |
| 1352 | - <name>qdzname_calcu</name> | |
| 1353 | - <field>station_name</field> | |
| 1354 | - <condition>=</condition> | |
| 1355 | - <name2/> | |
| 1356 | - </key> | |
| 1357 | - <value> | |
| 1358 | - <name>directions</name> | |
| 1359 | - <rename>sxx</rename> | |
| 1360 | - <default/> | |
| 1361 | - <type>String</type> | |
| 1362 | - </value> | |
| 1363 | - </lookup> | |
| 1364 | - <cluster_schema/> | |
| 1365 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1366 | - <xloc>548</xloc> | |
| 1367 | - <yloc>610</yloc> | |
| 1368 | - <draw>Y</draw> | |
| 1369 | - </GUI> | |
| 1370 | - </step> | |
| 1371 | - | |
| 1372 | - <step> | |
| 1373 | - <name>查找进场班次上一个班次的终点站,并作为进场班次的起点站</name> | |
| 1374 | - <type>DBLookup</type> | |
| 1375 | - <description/> | |
| 1376 | - <distribute>Y</distribute> | |
| 1377 | - <custom_distribution/> | |
| 1378 | - <copies>1</copies> | |
| 1379 | - <partitioning> | |
| 1380 | - <method>none</method> | |
| 1381 | - <schema_name/> | |
| 1382 | - </partitioning> | |
| 1383 | - <connection>bus_control_variable</connection> | |
| 1384 | - <cache>N</cache> | |
| 1385 | - <cache_load_all>N</cache_load_all> | |
| 1386 | - <cache_size>0</cache_size> | |
| 1387 | - <lookup> | |
| 1388 | - <schema/> | |
| 1389 | - <table>bsth_c_stationroute</table> | |
| 1390 | - <orderby/> | |
| 1391 | - <fail_on_multiple>N</fail_on_multiple> | |
| 1392 | - <eat_row_on_failure>N</eat_row_on_failure> | |
| 1393 | - <key> | |
| 1394 | - <name>xlid</name> | |
| 1395 | - <field>line</field> | |
| 1396 | - <condition>=</condition> | |
| 1397 | - <name2/> | |
| 1398 | - </key> | |
| 1399 | - <key> | |
| 1400 | - <name>endZdtype_calcu</name> | |
| 1401 | - <field>station_mark</field> | |
| 1402 | - <condition>=</condition> | |
| 1403 | - <name2/> | |
| 1404 | - </key> | |
| 1405 | - <key> | |
| 1406 | - <name>sxx</name> | |
| 1407 | - <field>directions</field> | |
| 1408 | - <condition>=</condition> | |
| 1409 | - <name2/> | |
| 1410 | - </key> | |
| 1411 | - <value> | |
| 1412 | - <name>station</name> | |
| 1413 | - <rename>qdzid</rename> | |
| 1414 | - <default/> | |
| 1415 | - <type>Integer</type> | |
| 1416 | - </value> | |
| 1417 | - </lookup> | |
| 1418 | - <cluster_schema/> | |
| 1419 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1420 | - <xloc>550</xloc> | |
| 1421 | - <yloc>701</yloc> | |
| 1422 | - <draw>Y</draw> | |
| 1423 | - </GUI> | |
| 1424 | - </step> | |
| 1425 | - | |
| 1426 | - <step> | |
| 1427 | - <name>正常班次_处理数据</name> | |
| 1428 | - <type>ScriptValueMod</type> | |
| 1429 | - <description/> | |
| 1430 | - <distribute>Y</distribute> | |
| 1431 | - <custom_distribution/> | |
| 1432 | - <copies>1</copies> | |
| 1433 | - <partitioning> | |
| 1434 | - <method>none</method> | |
| 1435 | - <schema_name/> | |
| 1436 | - </partitioning> | |
| 1437 | - <compatible>N</compatible> | |
| 1438 | - <optimizationLevel>9</optimizationLevel> | |
| 1439 | - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 1440 | - <jsScript_name>Script 1</jsScript_name> | |
| 1441 | - <jsScript_script>//Script here

// 添加站点标识
var sendZdtype = 'B';
var endZdtype = 'E';
</jsScript_script> | |
| 1442 | - </jsScript> </jsScripts> <fields> <field> <name>sendZdtype</name> | |
| 1443 | - <rename>sendZdtype</rename> | |
| 1444 | - <type>String</type> | |
| 1445 | - <length>-1</length> | |
| 1446 | - <precision>-1</precision> | |
| 1447 | - <replace>N</replace> | |
| 1448 | - </field> <field> <name>endZdtype</name> | |
| 1449 | - <rename>endZdtype</rename> | |
| 1450 | - <type>String</type> | |
| 1451 | - <length>-1</length> | |
| 1452 | - <precision>-1</precision> | |
| 1453 | - <replace>N</replace> | |
| 1454 | - </field> </fields> <cluster_schema/> | |
| 1455 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1456 | - <xloc>588</xloc> | |
| 1457 | - <yloc>403</yloc> | |
| 1458 | - <draw>Y</draw> | |
| 1459 | - </GUI> | |
| 1460 | - </step> | |
| 1461 | - | |
| 1462 | - <step> | |
| 1463 | - <name>正常班次数据</name> | |
| 1464 | - <type>Dummy</type> | |
| 1465 | - <description/> | |
| 1466 | - <distribute>Y</distribute> | |
| 1467 | - <custom_distribution/> | |
| 1468 | - <copies>1</copies> | |
| 1469 | - <partitioning> | |
| 1470 | - <method>none</method> | |
| 1471 | - <schema_name/> | |
| 1472 | - </partitioning> | |
| 1473 | - <cluster_schema/> | |
| 1474 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1475 | - <xloc>725</xloc> | |
| 1476 | - <yloc>404</yloc> | |
| 1477 | - <draw>Y</draw> | |
| 1478 | - </GUI> | |
| 1479 | - </step> | |
| 1480 | - | |
| 1481 | - <step> | |
| 1482 | - <name>添加发车顺序号</name> | |
| 1483 | - <type>GroupBy</type> | |
| 1484 | - <description/> | |
| 1485 | - <distribute>Y</distribute> | |
| 1486 | - <custom_distribution/> | |
| 1487 | - <copies>1</copies> | |
| 1488 | - <partitioning> | |
| 1489 | - <method>none</method> | |
| 1490 | - <schema_name/> | |
| 1491 | - </partitioning> | |
| 1492 | - <all_rows>Y</all_rows> | |
| 1493 | - <ignore_aggregate>N</ignore_aggregate> | |
| 1494 | - <field_ignore/> | |
| 1495 | - <directory>%%java.io.tmpdir%%</directory> | |
| 1496 | - <prefix>grp</prefix> | |
| 1497 | - <add_linenr>Y</add_linenr> | |
| 1498 | - <linenr_fieldname>fcno</linenr_fieldname> | |
| 1499 | - <give_back_row>N</give_back_row> | |
| 1500 | - <group> | |
| 1501 | - <field> | |
| 1502 | - <name>lp</name> | |
| 1503 | - </field> | |
| 1504 | - </group> | |
| 1505 | - <fields> | |
| 1506 | - </fields> | |
| 1507 | - <cluster_schema/> | |
| 1508 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1509 | - <xloc>442</xloc> | |
| 1510 | - <yloc>44</yloc> | |
| 1511 | - <draw>Y</draw> | |
| 1512 | - </GUI> | |
| 1513 | - </step> | |
| 1514 | - | |
| 1515 | - <step> | |
| 1516 | - <name>添加对应班次数</name> | |
| 1517 | - <type>GroupBy</type> | |
| 1518 | - <description/> | |
| 1519 | - <distribute>Y</distribute> | |
| 1520 | - <custom_distribution/> | |
| 1521 | - <copies>1</copies> | |
| 1522 | - <partitioning> | |
| 1523 | - <method>none</method> | |
| 1524 | - <schema_name/> | |
| 1525 | - </partitioning> | |
| 1526 | - <all_rows>Y</all_rows> | |
| 1527 | - <ignore_aggregate>N</ignore_aggregate> | |
| 1528 | - <field_ignore/> | |
| 1529 | - <directory>%%java.io.tmpdir%%</directory> | |
| 1530 | - <prefix>grp</prefix> | |
| 1531 | - <add_linenr>Y</add_linenr> | |
| 1532 | - <linenr_fieldname>bcs</linenr_fieldname> | |
| 1533 | - <give_back_row>N</give_back_row> | |
| 1534 | - <group> | |
| 1535 | - </group> | |
| 1536 | - <fields> | |
| 1537 | - </fields> | |
| 1538 | - <cluster_schema/> | |
| 1539 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1540 | - <xloc>692</xloc> | |
| 1541 | - <yloc>44</yloc> | |
| 1542 | - <draw>Y</draw> | |
| 1543 | - </GUI> | |
| 1544 | - </step> | |
| 1545 | - | |
| 1546 | - <step> | |
| 1547 | - <name>班次数据范式化</name> | |
| 1548 | - <type>Normaliser</type> | |
| 1549 | - <description/> | |
| 1550 | - <distribute>Y</distribute> | |
| 1551 | - <custom_distribution/> | |
| 1552 | - <copies>1</copies> | |
| 1553 | - <partitioning> | |
| 1554 | - <method>none</method> | |
| 1555 | - <schema_name/> | |
| 1556 | - </partitioning> | |
| 1557 | - <typefield>站点名称</typefield> | |
| 1558 | - <fields> </fields> <cluster_schema/> | |
| 1559 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1560 | - <xloc>248</xloc> | |
| 1561 | - <yloc>44</yloc> | |
| 1562 | - <draw>Y</draw> | |
| 1563 | - </GUI> | |
| 1564 | - </step> | |
| 1565 | - | |
| 1566 | - <step> | |
| 1567 | - <name>班次类型字典</name> | |
| 1568 | - <type>ValueMapper</type> | |
| 1569 | - <description/> | |
| 1570 | - <distribute>Y</distribute> | |
| 1571 | - <custom_distribution/> | |
| 1572 | - <copies>1</copies> | |
| 1573 | - <partitioning> | |
| 1574 | - <method>none</method> | |
| 1575 | - <schema_name/> | |
| 1576 | - </partitioning> | |
| 1577 | - <field_to_use>bctype</field_to_use> | |
| 1578 | - <target_field>bctype_code</target_field> | |
| 1579 | - <non_match_default>未知类型</non_match_default> | |
| 1580 | - <fields> | |
| 1581 | - <field> | |
| 1582 | - <source_value>正常班次</source_value> | |
| 1583 | - <target_value>normal</target_value> | |
| 1584 | - </field> | |
| 1585 | - <field> | |
| 1586 | - <source_value>出场</source_value> | |
| 1587 | - <target_value>out</target_value> | |
| 1588 | - </field> | |
| 1589 | - <field> | |
| 1590 | - <source_value>进场</source_value> | |
| 1591 | - <target_value>in</target_value> | |
| 1592 | - </field> | |
| 1593 | - <field> | |
| 1594 | - <source_value>加油</source_value> | |
| 1595 | - <target_value>oil</target_value> | |
| 1596 | - </field> | |
| 1597 | - <field> | |
| 1598 | - <source_value>临加</source_value> | |
| 1599 | - <target_value>temp</target_value> | |
| 1600 | - </field> | |
| 1601 | - <field> | |
| 1602 | - <source_value>区间</source_value> | |
| 1603 | - <target_value>region</target_value> | |
| 1604 | - </field> | |
| 1605 | - <field> | |
| 1606 | - <source_value>放空</source_value> | |
| 1607 | - <target_value>venting</target_value> | |
| 1608 | - </field> | |
| 1609 | - <field> | |
| 1610 | - <source_value>放大站</source_value> | |
| 1611 | - <target_value>major</target_value> | |
| 1612 | - </field> | |
| 1613 | - </fields> | |
| 1614 | - <cluster_schema/> | |
| 1615 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1616 | - <xloc>149</xloc> | |
| 1617 | - <yloc>491</yloc> | |
| 1618 | - <draw>Y</draw> | |
| 1619 | - </GUI> | |
| 1620 | - </step> | |
| 1621 | - | |
| 1622 | - <step> | |
| 1623 | - <name>班次类型字典 2</name> | |
| 1624 | - <type>ValueMapper</type> | |
| 1625 | - <description/> | |
| 1626 | - <distribute>Y</distribute> | |
| 1627 | - <custom_distribution/> | |
| 1628 | - <copies>1</copies> | |
| 1629 | - <partitioning> | |
| 1630 | - <method>none</method> | |
| 1631 | - <schema_name/> | |
| 1632 | - </partitioning> | |
| 1633 | - <field_to_use>bctype</field_to_use> | |
| 1634 | - <target_field>bctype_code</target_field> | |
| 1635 | - <non_match_default>未知类型</non_match_default> | |
| 1636 | - <fields> | |
| 1637 | - <field> | |
| 1638 | - <source_value>正常班次</source_value> | |
| 1639 | - <target_value>normal</target_value> | |
| 1640 | - </field> | |
| 1641 | - <field> | |
| 1642 | - <source_value>出场</source_value> | |
| 1643 | - <target_value>out</target_value> | |
| 1644 | - </field> | |
| 1645 | - <field> | |
| 1646 | - <source_value>进场</source_value> | |
| 1647 | - <target_value>in</target_value> | |
| 1648 | - </field> | |
| 1649 | - <field> | |
| 1650 | - <source_value>加油</source_value> | |
| 1651 | - <target_value>oil</target_value> | |
| 1652 | - </field> | |
| 1653 | - <field> | |
| 1654 | - <source_value>临加</source_value> | |
| 1655 | - <target_value>temp</target_value> | |
| 1656 | - </field> | |
| 1657 | - <field> | |
| 1658 | - <source_value>区间</source_value> | |
| 1659 | - <target_value>region</target_value> | |
| 1660 | - </field> | |
| 1661 | - <field> | |
| 1662 | - <source_value>放空</source_value> | |
| 1663 | - <target_value>venting</target_value> | |
| 1664 | - </field> | |
| 1665 | - <field> | |
| 1666 | - <source_value>放大站</source_value> | |
| 1667 | - <target_value>major</target_value> | |
| 1668 | - </field> | |
| 1669 | - </fields> | |
| 1670 | - <cluster_schema/> | |
| 1671 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1672 | - <xloc>333</xloc> | |
| 1673 | - <yloc>681</yloc> | |
| 1674 | - <draw>Y</draw> | |
| 1675 | - </GUI> | |
| 1676 | - </step> | |
| 1677 | - | |
| 1678 | - <step> | |
| 1679 | - <name>班次类型字典 3</name> | |
| 1680 | - <type>ValueMapper</type> | |
| 1681 | - <description/> | |
| 1682 | - <distribute>Y</distribute> | |
| 1683 | - <custom_distribution/> | |
| 1684 | - <copies>1</copies> | |
| 1685 | - <partitioning> | |
| 1686 | - <method>none</method> | |
| 1687 | - <schema_name/> | |
| 1688 | - </partitioning> | |
| 1689 | - <field_to_use>bctype</field_to_use> | |
| 1690 | - <target_field>bctype_code</target_field> | |
| 1691 | - <non_match_default>未知类型</non_match_default> | |
| 1692 | - <fields> | |
| 1693 | - <field> | |
| 1694 | - <source_value>正常班次</source_value> | |
| 1695 | - <target_value>normal</target_value> | |
| 1696 | - </field> | |
| 1697 | - <field> | |
| 1698 | - <source_value>出场</source_value> | |
| 1699 | - <target_value>out</target_value> | |
| 1700 | - </field> | |
| 1701 | - <field> | |
| 1702 | - <source_value>进场</source_value> | |
| 1703 | - <target_value>in</target_value> | |
| 1704 | - </field> | |
| 1705 | - <field> | |
| 1706 | - <source_value>加油</source_value> | |
| 1707 | - <target_value>oil</target_value> | |
| 1708 | - </field> | |
| 1709 | - <field> | |
| 1710 | - <source_value>临加</source_value> | |
| 1711 | - <target_value>temp</target_value> | |
| 1712 | - </field> | |
| 1713 | - <field> | |
| 1714 | - <source_value>区间</source_value> | |
| 1715 | - <target_value>region</target_value> | |
| 1716 | - </field> | |
| 1717 | - <field> | |
| 1718 | - <source_value>放空</source_value> | |
| 1719 | - <target_value>venting</target_value> | |
| 1720 | - </field> | |
| 1721 | - <field> | |
| 1722 | - <source_value>放大站</source_value> | |
| 1723 | - <target_value>major</target_value> | |
| 1724 | - </field> | |
| 1725 | - </fields> | |
| 1726 | - <cluster_schema/> | |
| 1727 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1728 | - <xloc>548</xloc> | |
| 1729 | - <yloc>844</yloc> | |
| 1730 | - <draw>Y</draw> | |
| 1731 | - </GUI> | |
| 1732 | - </step> | |
| 1733 | - | |
| 1734 | - <step> | |
| 1735 | - <name>类型修正</name> | |
| 1736 | - <type>SelectValues</type> | |
| 1737 | - <description/> | |
| 1738 | - <distribute>Y</distribute> | |
| 1739 | - <custom_distribution/> | |
| 1740 | - <copies>1</copies> | |
| 1741 | - <partitioning> | |
| 1742 | - <method>none</method> | |
| 1743 | - <schema_name/> | |
| 1744 | - </partitioning> | |
| 1745 | - <fields> <select_unspecified>N</select_unspecified> | |
| 1746 | - <meta> <name>jhlc</name> | |
| 1747 | - <rename>jhlc</rename> | |
| 1748 | - <type>Number</type> | |
| 1749 | - <length>-2</length> | |
| 1750 | - <precision>-2</precision> | |
| 1751 | - <conversion_mask/> | |
| 1752 | - <date_format_lenient>false</date_format_lenient> | |
| 1753 | - <date_format_locale/> | |
| 1754 | - <date_format_timezone/> | |
| 1755 | - <lenient_string_to_number>false</lenient_string_to_number> | |
| 1756 | - <encoding/> | |
| 1757 | - <decimal_symbol/> | |
| 1758 | - <grouping_symbol/> | |
| 1759 | - <currency_symbol/> | |
| 1760 | - <storage_type/> | |
| 1761 | - </meta> <meta> <name>bcsj</name> | |
| 1762 | - <rename>bcsj</rename> | |
| 1763 | - <type>Integer</type> | |
| 1764 | - <length>-2</length> | |
| 1765 | - <precision>-2</precision> | |
| 1766 | - <conversion_mask/> | |
| 1767 | - <date_format_lenient>false</date_format_lenient> | |
| 1768 | - <date_format_locale/> | |
| 1769 | - <date_format_timezone/> | |
| 1770 | - <lenient_string_to_number>false</lenient_string_to_number> | |
| 1771 | - <encoding/> | |
| 1772 | - <decimal_symbol/> | |
| 1773 | - <grouping_symbol/> | |
| 1774 | - <currency_symbol/> | |
| 1775 | - <storage_type/> | |
| 1776 | - </meta> </fields> <cluster_schema/> | |
| 1777 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1778 | - <xloc>146</xloc> | |
| 1779 | - <yloc>768</yloc> | |
| 1780 | - <draw>Y</draw> | |
| 1781 | - </GUI> | |
| 1782 | - </step> | |
| 1783 | - | |
| 1784 | - <step> | |
| 1785 | - <name>计算班次类型</name> | |
| 1786 | - <type>ValueMapper</type> | |
| 1787 | - <description/> | |
| 1788 | - <distribute>Y</distribute> | |
| 1789 | - <custom_distribution/> | |
| 1790 | - <copies>1</copies> | |
| 1791 | - <partitioning> | |
| 1792 | - <method>none</method> | |
| 1793 | - <schema_name/> | |
| 1794 | - </partitioning> | |
| 1795 | - <field_to_use>qdzname</field_to_use> | |
| 1796 | - <target_field>bctype</target_field> | |
| 1797 | - <non_match_default>正常班次</non_match_default> | |
| 1798 | - <fields> | |
| 1799 | - <field> | |
| 1800 | - <source_value>出场</source_value> | |
| 1801 | - <target_value>出场</target_value> | |
| 1802 | - </field> | |
| 1803 | - <field> | |
| 1804 | - <source_value>进场</source_value> | |
| 1805 | - <target_value>进场</target_value> | |
| 1806 | - </field> | |
| 1807 | - </fields> | |
| 1808 | - <cluster_schema/> | |
| 1809 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1810 | - <xloc>1014</xloc> | |
| 1811 | - <yloc>401</yloc> | |
| 1812 | - <draw>Y</draw> | |
| 1813 | - </GUI> | |
| 1814 | - </step> | |
| 1815 | - | |
| 1816 | - <step> | |
| 1817 | - <name>记录关联 (笛卡尔输出)</name> | |
| 1818 | - <type>JoinRows</type> | |
| 1819 | - <description/> | |
| 1820 | - <distribute>Y</distribute> | |
| 1821 | - <custom_distribution/> | |
| 1822 | - <copies>1</copies> | |
| 1823 | - <partitioning> | |
| 1824 | - <method>none</method> | |
| 1825 | - <schema_name/> | |
| 1826 | - </partitioning> | |
| 1827 | - <directory>%%java.io.tmpdir%%</directory> | |
| 1828 | - <prefix>out</prefix> | |
| 1829 | - <cache_size>500</cache_size> | |
| 1830 | - <main/> | |
| 1831 | - <compare> | |
| 1832 | -<condition> | |
| 1833 | - <negated>N</negated> | |
| 1834 | - <leftvalue/> | |
| 1835 | - <function>=</function> | |
| 1836 | - <rightvalue/> | |
| 1837 | - </condition> | |
| 1838 | - </compare> | |
| 1839 | - <cluster_schema/> | |
| 1840 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1841 | - <xloc>310</xloc> | |
| 1842 | - <yloc>133</yloc> | |
| 1843 | - <draw>Y</draw> | |
| 1844 | - </GUI> | |
| 1845 | - </step> | |
| 1846 | - | |
| 1847 | - <step> | |
| 1848 | - <name>过滤记录(发车时间为空)</name> | |
| 1849 | - <type>FilterRows</type> | |
| 1850 | - <description/> | |
| 1851 | - <distribute>Y</distribute> | |
| 1852 | - <custom_distribution/> | |
| 1853 | - <copies>1</copies> | |
| 1854 | - <partitioning> | |
| 1855 | - <method>none</method> | |
| 1856 | - <schema_name/> | |
| 1857 | - </partitioning> | |
| 1858 | -<send_true_to/> | |
| 1859 | -<send_false_to/> | |
| 1860 | - <compare> | |
| 1861 | -<condition> | |
| 1862 | - <negated>N</negated> | |
| 1863 | - <leftvalue>sendtime</leftvalue> | |
| 1864 | - <function>IS NOT NULL</function> | |
| 1865 | - <rightvalue/> | |
| 1866 | - </condition> | |
| 1867 | - </compare> | |
| 1868 | - <cluster_schema/> | |
| 1869 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1870 | - <xloc>571</xloc> | |
| 1871 | - <yloc>44</yloc> | |
| 1872 | - <draw>Y</draw> | |
| 1873 | - </GUI> | |
| 1874 | - </step> | |
| 1875 | - | |
| 1876 | - <step> | |
| 1877 | - <name>进场班次_确定起点站名字</name> | |
| 1878 | - <type>ScriptValueMod</type> | |
| 1879 | - <description/> | |
| 1880 | - <distribute>Y</distribute> | |
| 1881 | - <custom_distribution/> | |
| 1882 | - <copies>1</copies> | |
| 1883 | - <partitioning> | |
| 1884 | - <method>none</method> | |
| 1885 | - <schema_name/> | |
| 1886 | - </partitioning> | |
| 1887 | - <compatible>N</compatible> | |
| 1888 | - <optimizationLevel>9</optimizationLevel> | |
| 1889 | - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 1890 | - <jsScript_name>Script 1</jsScript_name> | |
| 1891 | - <jsScript_script>//Script here

// 添加站点标识
var cc_groups = qdzgroups.split(","); // 所有班次起点站数组
var qdzname_calcu = cc_groups[gno - 2]; // 进场班次的起点站是上一个班次的终点站,这里只有上一个班次的起点站,还需要计算
var startZdtype_calcu = 'B';
var endZdtype_calcu = 'E';</jsScript_script> | |
| 1892 | - </jsScript> </jsScripts> <fields> <field> <name>qdzname_calcu</name> | |
| 1893 | - <rename>qdzname_calcu</rename> | |
| 1894 | - <type>String</type> | |
| 1895 | - <length>-1</length> | |
| 1896 | - <precision>-1</precision> | |
| 1897 | - <replace>N</replace> | |
| 1898 | - </field> <field> <name>startZdtype_calcu</name> | |
| 1899 | - <rename>startZdtype_calcu</rename> | |
| 1900 | - <type>String</type> | |
| 1901 | - <length>-1</length> | |
| 1902 | - <precision>-1</precision> | |
| 1903 | - <replace>N</replace> | |
| 1904 | - </field> <field> <name>endZdtype_calcu</name> | |
| 1905 | - <rename>endZdtype_calcu</rename> | |
| 1906 | - <type>String</type> | |
| 1907 | - <length>-1</length> | |
| 1908 | - <precision>-1</precision> | |
| 1909 | - <replace>N</replace> | |
| 1910 | - </field> </fields> <cluster_schema/> | |
| 1911 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1912 | - <xloc>754</xloc> | |
| 1913 | - <yloc>610</yloc> | |
| 1914 | - <draw>Y</draw> | |
| 1915 | - </GUI> | |
| 1916 | - </step> | |
| 1917 | - | |
| 1918 | - <step> | |
| 1919 | - <name>进场班次数据</name> | |
| 1920 | - <type>Dummy</type> | |
| 1921 | - <description/> | |
| 1922 | - <distribute>Y</distribute> | |
| 1923 | - <custom_distribution/> | |
| 1924 | - <copies>1</copies> | |
| 1925 | - <partitioning> | |
| 1926 | - <method>none</method> | |
| 1927 | - <schema_name/> | |
| 1928 | - </partitioning> | |
| 1929 | - <cluster_schema/> | |
| 1930 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1931 | - <xloc>997</xloc> | |
| 1932 | - <yloc>606</yloc> | |
| 1933 | - <draw>Y</draw> | |
| 1934 | - </GUI> | |
| 1935 | - </step> | |
| 1936 | - | |
| 1937 | - <step_error_handling> | |
| 1938 | - </step_error_handling> | |
| 1939 | - <slave-step-copy-partition-distribution> | |
| 1940 | -</slave-step-copy-partition-distribution> | |
| 1941 | - <slave_transformation>N</slave_transformation> | |
| 1942 | - | |
| 1943 | -</transformation> | |
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | +<transformation> | |
| 3 | + <info> | |
| 4 | + <name>ttinfodetailDataInput</name> | |
| 5 | + <description>时刻表明细信息导入</description> | |
| 6 | + <extended_description>时刻表明细信息</extended_description> | |
| 7 | + <trans_version/> | |
| 8 | + <trans_type>Normal</trans_type> | |
| 9 | + <trans_status>0</trans_status> | |
| 10 | + <directory>/</directory> | |
| 11 | + <parameters> | |
| 12 | + </parameters> | |
| 13 | + <log> | |
| 14 | +<trans-log-table><connection/> | |
| 15 | +<schema/> | |
| 16 | +<table/> | |
| 17 | +<size_limit_lines/> | |
| 18 | +<interval/> | |
| 19 | +<timeout_days/> | |
| 20 | +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STATUS</id><enabled>Y</enabled><name>STATUS</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name><subject/></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name><subject/></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name><subject/></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name><subject/></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name><subject/></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name><subject/></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>STARTDATE</id><enabled>Y</enabled><name>STARTDATE</name></field><field><id>ENDDATE</id><enabled>Y</enabled><name>ENDDATE</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>DEPDATE</id><enabled>Y</enabled><name>DEPDATE</name></field><field><id>REPLAYDATE</id><enabled>Y</enabled><name>REPLAYDATE</name></field><field><id>LOG_FIELD</id><enabled>Y</enabled><name>LOG_FIELD</name></field><field><id>EXECUTING_SERVER</id><enabled>N</enabled><name>EXECUTING_SERVER</name></field><field><id>EXECUTING_USER</id><enabled>N</enabled><name>EXECUTING_USER</name></field><field><id>CLIENT</id><enabled>N</enabled><name>CLIENT</name></field></trans-log-table> | |
| 21 | +<perf-log-table><connection/> | |
| 22 | +<schema/> | |
| 23 | +<table/> | |
| 24 | +<interval/> | |
| 25 | +<timeout_days/> | |
| 26 | +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>SEQ_NR</id><enabled>Y</enabled><name>SEQ_NR</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>INPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>INPUT_BUFFER_ROWS</name></field><field><id>OUTPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>OUTPUT_BUFFER_ROWS</name></field></perf-log-table> | |
| 27 | +<channel-log-table><connection/> | |
| 28 | +<schema/> | |
| 29 | +<table/> | |
| 30 | +<timeout_days/> | |
| 31 | +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>LOGGING_OBJECT_TYPE</id><enabled>Y</enabled><name>LOGGING_OBJECT_TYPE</name></field><field><id>OBJECT_NAME</id><enabled>Y</enabled><name>OBJECT_NAME</name></field><field><id>OBJECT_COPY</id><enabled>Y</enabled><name>OBJECT_COPY</name></field><field><id>REPOSITORY_DIRECTORY</id><enabled>Y</enabled><name>REPOSITORY_DIRECTORY</name></field><field><id>FILENAME</id><enabled>Y</enabled><name>FILENAME</name></field><field><id>OBJECT_ID</id><enabled>Y</enabled><name>OBJECT_ID</name></field><field><id>OBJECT_REVISION</id><enabled>Y</enabled><name>OBJECT_REVISION</name></field><field><id>PARENT_CHANNEL_ID</id><enabled>Y</enabled><name>PARENT_CHANNEL_ID</name></field><field><id>ROOT_CHANNEL_ID</id><enabled>Y</enabled><name>ROOT_CHANNEL_ID</name></field></channel-log-table> | |
| 32 | +<step-log-table><connection/> | |
| 33 | +<schema/> | |
| 34 | +<table/> | |
| 35 | +<timeout_days/> | |
| 36 | +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>LOG_FIELD</id><enabled>N</enabled><name>LOG_FIELD</name></field></step-log-table> | |
| 37 | +<metrics-log-table><connection/> | |
| 38 | +<schema/> | |
| 39 | +<table/> | |
| 40 | +<timeout_days/> | |
| 41 | +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>METRICS_DATE</id><enabled>Y</enabled><name>METRICS_DATE</name></field><field><id>METRICS_CODE</id><enabled>Y</enabled><name>METRICS_CODE</name></field><field><id>METRICS_DESCRIPTION</id><enabled>Y</enabled><name>METRICS_DESCRIPTION</name></field><field><id>METRICS_SUBJECT</id><enabled>Y</enabled><name>METRICS_SUBJECT</name></field><field><id>METRICS_TYPE</id><enabled>Y</enabled><name>METRICS_TYPE</name></field><field><id>METRICS_VALUE</id><enabled>Y</enabled><name>METRICS_VALUE</name></field></metrics-log-table> | |
| 42 | + </log> | |
| 43 | + <maxdate> | |
| 44 | + <connection/> | |
| 45 | + <table/> | |
| 46 | + <field/> | |
| 47 | + <offset>0.0</offset> | |
| 48 | + <maxdiff>0.0</maxdiff> | |
| 49 | + </maxdate> | |
| 50 | + <size_rowset>10000</size_rowset> | |
| 51 | + <sleep_time_empty>50</sleep_time_empty> | |
| 52 | + <sleep_time_full>50</sleep_time_full> | |
| 53 | + <unique_connections>N</unique_connections> | |
| 54 | + <feedback_shown>Y</feedback_shown> | |
| 55 | + <feedback_size>50000</feedback_size> | |
| 56 | + <using_thread_priorities>Y</using_thread_priorities> | |
| 57 | + <shared_objects_file/> | |
| 58 | + <capture_step_performance>N</capture_step_performance> | |
| 59 | + <step_performance_capturing_delay>1000</step_performance_capturing_delay> | |
| 60 | + <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit> | |
| 61 | + <dependencies> | |
| 62 | + </dependencies> | |
| 63 | + <partitionschemas> | |
| 64 | + </partitionschemas> | |
| 65 | + <slaveservers> | |
| 66 | + </slaveservers> | |
| 67 | + <clusterschemas> | |
| 68 | + </clusterschemas> | |
| 69 | + <created_user>-</created_user> | |
| 70 | + <created_date>2016/06/30 12:21:57.536</created_date> | |
| 71 | + <modified_user>-</modified_user> | |
| 72 | + <modified_date>2016/06/30 12:21:57.536</modified_date> | |
| 73 | + <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA=</key_for_session_key> | |
| 74 | + <is_key_private>N</is_key_private> | |
| 75 | + </info> | |
| 76 | + <notepads> | |
| 77 | + <notepad> | |
| 78 | + <note>字典表对应(以后直接查找表 bsth_c_sys_dictionary)
类型 代码 名称
LineTrend 0 上行
LineTrend 1 下行
ScheduleType normal 正常班次
ScheduleType out 出场
ScheduleType in 进场
ScheduleType temp 临加
ScheduleType region 区间
ScheduleType venting 放空
ScheduleType major 放大站</note> | |
| 79 | + <xloc>606</xloc> | |
| 80 | + <yloc>129</yloc> | |
| 81 | + <width>332</width> | |
| 82 | + <heigth>186</heigth> | |
| 83 | + <fontname>YaHei Consolas Hybrid</fontname> | |
| 84 | + <fontsize>12</fontsize> | |
| 85 | + <fontbold>N</fontbold> | |
| 86 | + <fontitalic>N</fontitalic> | |
| 87 | + <fontcolorred>0</fontcolorred> | |
| 88 | + <fontcolorgreen>0</fontcolorgreen> | |
| 89 | + <fontcolorblue>0</fontcolorblue> | |
| 90 | + <backgroundcolorred>255</backgroundcolorred> | |
| 91 | + <backgroundcolorgreen>205</backgroundcolorgreen> | |
| 92 | + <backgroundcolorblue>112</backgroundcolorblue> | |
| 93 | + <bordercolorred>100</bordercolorred> | |
| 94 | + <bordercolorgreen>100</bordercolorgreen> | |
| 95 | + <bordercolorblue>100</bordercolorblue> | |
| 96 | + <drawshadow>Y</drawshadow> | |
| 97 | + </notepad> | |
| 98 | + <notepad> | |
| 99 | + <note>因为时刻表输入格式不确定性,主要因为表结构是反范式化的,
所以需要外部动态指定愿数据,头三个step动态指定愿数据
</note> | |
| 100 | + <xloc>64</xloc> | |
| 101 | + <yloc>224</yloc> | |
| 102 | + <width>346</width> | |
| 103 | + <heigth>58</heigth> | |
| 104 | + <fontname>YaHei Consolas Hybrid</fontname> | |
| 105 | + <fontsize>12</fontsize> | |
| 106 | + <fontbold>N</fontbold> | |
| 107 | + <fontitalic>N</fontitalic> | |
| 108 | + <fontcolorred>0</fontcolorred> | |
| 109 | + <fontcolorgreen>0</fontcolorgreen> | |
| 110 | + <fontcolorblue>0</fontcolorblue> | |
| 111 | + <backgroundcolorred>255</backgroundcolorred> | |
| 112 | + <backgroundcolorgreen>205</backgroundcolorgreen> | |
| 113 | + <backgroundcolorblue>112</backgroundcolorblue> | |
| 114 | + <bordercolorred>100</bordercolorred> | |
| 115 | + <bordercolorgreen>100</bordercolorgreen> | |
| 116 | + <bordercolorblue>100</bordercolorblue> | |
| 117 | + <drawshadow>Y</drawshadow> | |
| 118 | + </notepad> | |
| 119 | + </notepads> | |
| 120 | + <connection> | |
| 121 | + <name>bus_control_variable</name> | |
| 122 | + <server>${v_db_ip}</server> | |
| 123 | + <type>MYSQL</type> | |
| 124 | + <access>Native</access> | |
| 125 | + <database>control</database> | |
| 126 | + <port>3306</port> | |
| 127 | + <username>${v_db_uname}</username> | |
| 128 | + <password>${v_db_pwd}</password> | |
| 129 | + <servername/> | |
| 130 | + <data_tablespace/> | |
| 131 | + <index_tablespace/> | |
| 132 | + <attributes> | |
| 133 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 134 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 135 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 136 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 137 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 138 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 139 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 140 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 141 | + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute> | |
| 142 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 143 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 144 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 145 | + </attributes> | |
| 146 | + </connection> | |
| 147 | + <connection> | |
| 148 | + <name>bus_control_公司_201</name> | |
| 149 | + <server>localhost</server> | |
| 150 | + <type>MYSQL</type> | |
| 151 | + <access>Native</access> | |
| 152 | + <database>control</database> | |
| 153 | + <port>3306</port> | |
| 154 | + <username>root</username> | |
| 155 | + <password>Encrypted </password> | |
| 156 | + <servername/> | |
| 157 | + <data_tablespace/> | |
| 158 | + <index_tablespace/> | |
| 159 | + <attributes> | |
| 160 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 161 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 162 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 163 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 164 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 165 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 166 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 167 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 168 | + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute> | |
| 169 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 170 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 171 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 172 | + </attributes> | |
| 173 | + </connection> | |
| 174 | + <connection> | |
| 175 | + <name>bus_control_本机</name> | |
| 176 | + <server>localhost</server> | |
| 177 | + <type>MYSQL</type> | |
| 178 | + <access>Native</access> | |
| 179 | + <database>control</database> | |
| 180 | + <port>3306</port> | |
| 181 | + <username>root</username> | |
| 182 | + <password>Encrypted </password> | |
| 183 | + <servername/> | |
| 184 | + <data_tablespace/> | |
| 185 | + <index_tablespace/> | |
| 186 | + <attributes> | |
| 187 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 188 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 189 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 190 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 191 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 192 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 193 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 194 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 195 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 196 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 197 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 198 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 199 | + </attributes> | |
| 200 | + </connection> | |
| 201 | + <connection> | |
| 202 | + <name>xlab_mysql_youle</name> | |
| 203 | + <server>101.231.124.8</server> | |
| 204 | + <type>MYSQL</type> | |
| 205 | + <access>Native</access> | |
| 206 | + <database>xlab_youle</database> | |
| 207 | + <port>45687</port> | |
| 208 | + <username>xlab-youle</username> | |
| 209 | + <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password> | |
| 210 | + <servername/> | |
| 211 | + <data_tablespace/> | |
| 212 | + <index_tablespace/> | |
| 213 | + <attributes> | |
| 214 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 215 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 216 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 217 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 218 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 219 | + <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute> | |
| 220 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 221 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 222 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 223 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 224 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 225 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 226 | + </attributes> | |
| 227 | + </connection> | |
| 228 | + <connection> | |
| 229 | + <name>xlab_mysql_youle(本机)</name> | |
| 230 | + <server>localhost</server> | |
| 231 | + <type>MYSQL</type> | |
| 232 | + <access>Native</access> | |
| 233 | + <database>xlab_youle</database> | |
| 234 | + <port>3306</port> | |
| 235 | + <username>root</username> | |
| 236 | + <password>Encrypted </password> | |
| 237 | + <servername/> | |
| 238 | + <data_tablespace/> | |
| 239 | + <index_tablespace/> | |
| 240 | + <attributes> | |
| 241 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 242 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 243 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 244 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 245 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 246 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 247 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 248 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 249 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 250 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 251 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 252 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 253 | + </attributes> | |
| 254 | + </connection> | |
| 255 | + <connection> | |
| 256 | + <name>xlab_youle</name> | |
| 257 | + <server/> | |
| 258 | + <type>MYSQL</type> | |
| 259 | + <access>JNDI</access> | |
| 260 | + <database>xlab_youle</database> | |
| 261 | + <port>1521</port> | |
| 262 | + <username/> | |
| 263 | + <password>Encrypted </password> | |
| 264 | + <servername/> | |
| 265 | + <data_tablespace/> | |
| 266 | + <index_tablespace/> | |
| 267 | + <attributes> | |
| 268 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 269 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 270 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 271 | + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | |
| 272 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 273 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 274 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 275 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 276 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 277 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 278 | + </attributes> | |
| 279 | + </connection> | |
| 280 | + <order> | |
| 281 | + <hop> <from>时刻表明细信息Excel输入</from><to>班次数据范式化</to><enabled>Y</enabled> </hop> | |
| 282 | + <hop> <from>添加发车顺序号</from><to>过滤记录(发车时间为空)</to><enabled>Y</enabled> </hop> | |
| 283 | + <hop> <from>过滤记录(发车时间为空)</from><to>添加对应班次数</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>查找路牌关联</to><enabled>Y</enabled> </hop> | |
| 287 | + <hop> <from>查找线路关联</from><to>查找时刻表基础信息关联</to><enabled>Y</enabled> </hop> | |
| 288 | + <hop> <from>上下行字典</from><to>班次类型字典</to><enabled>Y</enabled> </hop> | |
| 289 | + <hop> <from>上下行字典 2</from><to>班次类型字典 2</to><enabled>Y</enabled> </hop> | |
| 290 | + <hop> <from>上下行字典 3</from><to>班次类型字典 3</to><enabled>Y</enabled> </hop> | |
| 291 | + <hop> <from>匹配上下行班次里程时间</from><to>类型修正</to><enabled>Y</enabled> </hop> | |
| 292 | + <hop> <from>按照班次类型过滤数据1</from><to>按照班次类型过滤数据2</to><enabled>Y</enabled> </hop> | |
| 293 | + <hop> <from>按照班次类型过滤数据1</from><to>正常班次数据</to><enabled>Y</enabled> </hop> | |
| 294 | + <hop> <from>按照班次类型过滤数据2</from><to>出场班次数据</to><enabled>Y</enabled> </hop> | |
| 295 | + <hop> <from>按照班次类型过滤数据2</from><to>进场班次数据</to><enabled>Y</enabled> </hop> | |
| 296 | + <hop> <from>查找线路上下行里程时间</from><to>匹配上下行班次里程时间</to><enabled>Y</enabled> </hop> | |
| 297 | + <hop> <from>查找终点站关联</from><to>上下行字典</to><enabled>Y</enabled> </hop> | |
| 298 | + <hop> <from>查找起点站关联并确定上下行</from><to>查找终点站关联</to><enabled>Y</enabled> </hop> | |
| 299 | + <hop> <from>正常班次_处理数据</from><to>查找起点站关联并确定上下行</to><enabled>Y</enabled> </hop> | |
| 300 | + <hop> <from>正常班次数据</from><to>正常班次_处理数据</to><enabled>Y</enabled> </hop> | |
| 301 | + <hop> <from>班次类型字典</from><to>查找线路上下行里程时间</to><enabled>Y</enabled> </hop> | |
| 302 | + <hop> <from>班次类型字典 2</from><to>查找线路出场里程时间</to><enabled>Y</enabled> </hop> | |
| 303 | + <hop> <from>班次类型字典 3</from><to>查找线路进场里程时间</to><enabled>Y</enabled> </hop> | |
| 304 | + <hop> <from>查找路牌关联</from><to>计算班次类型</to><enabled>Y</enabled> </hop> | |
| 305 | + <hop> <from>计算班次类型</from><to>按照班次类型过滤数据1</to><enabled>Y</enabled> </hop> | |
| 306 | + <hop> <from>出场班次数据</from><to>查找停车场1</to><enabled>Y</enabled> </hop> | |
| 307 | + <hop> <from>查找停车场1</from><to>出场班次_确定终点站名字</to><enabled>Y</enabled> </hop> | |
| 308 | + <hop> <from>出场班次_确定终点站名字</from><to>查找出场终点站关联并确定上下行</to><enabled>Y</enabled> </hop> | |
| 309 | + <hop> <from>查找出场终点站关联并确定上下行</from><to>上下行字典 2</to><enabled>Y</enabled> </hop> | |
| 310 | + <hop> <from>进场班次数据</from><to>查找停车场2</to><enabled>Y</enabled> </hop> | |
| 311 | + <hop> <from>查找停车场2</from><to>进场班次_确定起点站名字</to><enabled>Y</enabled> </hop> | |
| 312 | + <hop> <from>进场班次_确定起点站名字</from><to>查找进场班次上一个班次的线路方向</to><enabled>Y</enabled> </hop> | |
| 313 | + <hop> <from>查找进场班次上一个班次的线路方向</from><to>查找进场班次上一个班次的终点站,并作为进场班次的起点站</to><enabled>Y</enabled> </hop> | |
| 314 | + <hop> <from>查找进场班次上一个班次的终点站,并作为进场班次的起点站</from><to>上下行字典 3</to><enabled>Y</enabled> </hop> | |
| 315 | + <hop> <from>字段选择</from><to>添加发车顺序号</to><enabled>Y</enabled> </hop> | |
| 316 | + <hop> <from>分组各个路牌的站</from><to>查找线路关联</to><enabled>Y</enabled> </hop> | |
| 317 | + <hop> <from>增加时刻表名字,线路名字,停车场名字</from><to>记录关联 (笛卡尔输出)</to><enabled>Y</enabled> </hop> | |
| 318 | + <hop> <from>班次数据范式化</from><to>记录关联 (笛卡尔输出)</to><enabled>Y</enabled> </hop> | |
| 319 | + <hop> <from>记录关联 (笛卡尔输出)</from><to>字段选择</to><enabled>Y</enabled> </hop> | |
| 320 | + <hop> <from>类型修正</from><to>插入/更新bsth_c_s_ttinfo_detail</to><enabled>Y</enabled> </hop> | |
| 321 | + <hop> <from>查找线路出场里程时间</from><to>插入/更新bsth_c_s_ttinfo_detail 2</to><enabled>Y</enabled> </hop> | |
| 322 | + <hop> <from>查找线路进场里程时间</from><to>插入/更新bsth_c_s_ttinfo_detail 3</to><enabled>Y</enabled> </hop> | |
| 323 | + </order> | |
| 324 | + <step> | |
| 325 | + <name>上下行字典</name> | |
| 326 | + <type>ValueMapper</type> | |
| 327 | + <description/> | |
| 328 | + <distribute>Y</distribute> | |
| 329 | + <custom_distribution/> | |
| 330 | + <copies>1</copies> | |
| 331 | + <partitioning> | |
| 332 | + <method>none</method> | |
| 333 | + <schema_name/> | |
| 334 | + </partitioning> | |
| 335 | + <field_to_use>sxx</field_to_use> | |
| 336 | + <target_field>sxx_desc</target_field> | |
| 337 | + <non_match_default/> | |
| 338 | + <fields> | |
| 339 | + <field> | |
| 340 | + <source_value>0</source_value> | |
| 341 | + <target_value>上行</target_value> | |
| 342 | + </field> | |
| 343 | + <field> | |
| 344 | + <source_value>1</source_value> | |
| 345 | + <target_value>下行</target_value> | |
| 346 | + </field> | |
| 347 | + </fields> | |
| 348 | + <cluster_schema/> | |
| 349 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 350 | + <xloc>147</xloc> | |
| 351 | + <yloc>403</yloc> | |
| 352 | + <draw>Y</draw> | |
| 353 | + </GUI> | |
| 354 | + </step> | |
| 355 | + | |
| 356 | + <step> | |
| 357 | + <name>上下行字典 2</name> | |
| 358 | + <type>ValueMapper</type> | |
| 359 | + <description/> | |
| 360 | + <distribute>Y</distribute> | |
| 361 | + <custom_distribution/> | |
| 362 | + <copies>1</copies> | |
| 363 | + <partitioning> | |
| 364 | + <method>none</method> | |
| 365 | + <schema_name/> | |
| 366 | + </partitioning> | |
| 367 | + <field_to_use>sxx</field_to_use> | |
| 368 | + <target_field>sxx_desc</target_field> | |
| 369 | + <non_match_default/> | |
| 370 | + <fields> | |
| 371 | + <field> | |
| 372 | + <source_value>0</source_value> | |
| 373 | + <target_value>上行</target_value> | |
| 374 | + </field> | |
| 375 | + <field> | |
| 376 | + <source_value>1</source_value> | |
| 377 | + <target_value>下行</target_value> | |
| 378 | + </field> | |
| 379 | + </fields> | |
| 380 | + <cluster_schema/> | |
| 381 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 382 | + <xloc>331</xloc> | |
| 383 | + <yloc>598</yloc> | |
| 384 | + <draw>Y</draw> | |
| 385 | + </GUI> | |
| 386 | + </step> | |
| 387 | + | |
| 388 | + <step> | |
| 389 | + <name>上下行字典 3</name> | |
| 390 | + <type>ValueMapper</type> | |
| 391 | + <description/> | |
| 392 | + <distribute>Y</distribute> | |
| 393 | + <custom_distribution/> | |
| 394 | + <copies>1</copies> | |
| 395 | + <partitioning> | |
| 396 | + <method>none</method> | |
| 397 | + <schema_name/> | |
| 398 | + </partitioning> | |
| 399 | + <field_to_use>sxx</field_to_use> | |
| 400 | + <target_field>sxx_desc</target_field> | |
| 401 | + <non_match_default/> | |
| 402 | + <fields> | |
| 403 | + <field> | |
| 404 | + <source_value>0</source_value> | |
| 405 | + <target_value>上行</target_value> | |
| 406 | + </field> | |
| 407 | + <field> | |
| 408 | + <source_value>1</source_value> | |
| 409 | + <target_value>下行</target_value> | |
| 410 | + </field> | |
| 411 | + </fields> | |
| 412 | + <cluster_schema/> | |
| 413 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 414 | + <xloc>550</xloc> | |
| 415 | + <yloc>775</yloc> | |
| 416 | + <draw>Y</draw> | |
| 417 | + </GUI> | |
| 418 | + </step> | |
| 419 | + | |
| 420 | + <step> | |
| 421 | + <name>出场班次_确定终点站名字</name> | |
| 422 | + <type>ScriptValueMod</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 | + <compatible>N</compatible> | |
| 432 | + <optimizationLevel>9</optimizationLevel> | |
| 433 | + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 434 | + <jsScript_name>Script 1</jsScript_name> | |
| 435 | + <jsScript_script>//Script here

// 添加站点标识
var cc_groups = qdzgroups.split(","); // 所有班次起点站数组
var zdzname = cc_groups[gno]; // 出场班次的终点站是下个班次的起始站
var endZdtype = 'B';</jsScript_script> | |
| 436 | + </jsScript> </jsScripts> <fields> <field> <name>zdzname</name> | |
| 437 | + <rename>zdzname</rename> | |
| 438 | + <type>String</type> | |
| 439 | + <length>-1</length> | |
| 440 | + <precision>-1</precision> | |
| 441 | + <replace>N</replace> | |
| 442 | + </field> <field> <name>endZdtype</name> | |
| 443 | + <rename>endZdtype</rename> | |
| 444 | + <type>String</type> | |
| 445 | + <length>-1</length> | |
| 446 | + <precision>-1</precision> | |
| 447 | + <replace>N</replace> | |
| 448 | + </field> </fields> <cluster_schema/> | |
| 449 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 450 | + <xloc>575</xloc> | |
| 451 | + <yloc>502</yloc> | |
| 452 | + <draw>Y</draw> | |
| 453 | + </GUI> | |
| 454 | + </step> | |
| 455 | + | |
| 456 | + <step> | |
| 457 | + <name>出场班次数据</name> | |
| 458 | + <type>Dummy</type> | |
| 459 | + <description/> | |
| 460 | + <distribute>Y</distribute> | |
| 461 | + <custom_distribution/> | |
| 462 | + <copies>1</copies> | |
| 463 | + <partitioning> | |
| 464 | + <method>none</method> | |
| 465 | + <schema_name/> | |
| 466 | + </partitioning> | |
| 467 | + <cluster_schema/> | |
| 468 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 469 | + <xloc>869</xloc> | |
| 470 | + <yloc>504</yloc> | |
| 471 | + <draw>Y</draw> | |
| 472 | + </GUI> | |
| 473 | + </step> | |
| 474 | + | |
| 475 | + <step> | |
| 476 | + <name>分组各个路牌的站</name> | |
| 477 | + <type>GroupBy</type> | |
| 478 | + <description/> | |
| 479 | + <distribute>Y</distribute> | |
| 480 | + <custom_distribution/> | |
| 481 | + <copies>1</copies> | |
| 482 | + <partitioning> | |
| 483 | + <method>none</method> | |
| 484 | + <schema_name/> | |
| 485 | + </partitioning> | |
| 486 | + <all_rows>Y</all_rows> | |
| 487 | + <ignore_aggregate>N</ignore_aggregate> | |
| 488 | + <field_ignore/> | |
| 489 | + <directory>%%java.io.tmpdir%%</directory> | |
| 490 | + <prefix>grp</prefix> | |
| 491 | + <add_linenr>Y</add_linenr> | |
| 492 | + <linenr_fieldname>gno</linenr_fieldname> | |
| 493 | + <give_back_row>N</give_back_row> | |
| 494 | + <group> | |
| 495 | + <field> | |
| 496 | + <name>lp</name> | |
| 497 | + </field> | |
| 498 | + </group> | |
| 499 | + <fields> | |
| 500 | + <field> | |
| 501 | + <aggregate>qdzgroups</aggregate> | |
| 502 | + <subject>qdzname</subject> | |
| 503 | + <type>CONCAT_STRING</type> | |
| 504 | + <valuefield>,</valuefield> | |
| 505 | + </field> | |
| 506 | + </fields> | |
| 507 | + <cluster_schema/> | |
| 508 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 509 | + <xloc>892</xloc> | |
| 510 | + <yloc>44</yloc> | |
| 511 | + <draw>Y</draw> | |
| 512 | + </GUI> | |
| 513 | + </step> | |
| 514 | + | |
| 515 | + <step> | |
| 516 | + <name>匹配上下行班次里程时间</name> | |
| 517 | + <type>ScriptValueMod</type> | |
| 518 | + <description/> | |
| 519 | + <distribute>Y</distribute> | |
| 520 | + <custom_distribution/> | |
| 521 | + <copies>1</copies> | |
| 522 | + <partitioning> | |
| 523 | + <method>none</method> | |
| 524 | + <schema_name/> | |
| 525 | + </partitioning> | |
| 526 | + <compatible>N</compatible> | |
| 527 | + <optimizationLevel>9</optimizationLevel> | |
| 528 | + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 529 | + <jsScript_name>Script 1</jsScript_name> | |
| 530 | + <jsScript_script>//Script here

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

if (sxx == 0) { // 上行
 jhlc = up_mileage;
 bcsj = up_travel_time;
} else { // sxx == 1 下行
 jhlc = down_mileage;
 bcsj = down_travel_time;
}</jsScript_script> | |
| 531 | + </jsScript> </jsScripts> <fields> <field> <name>jhlc</name> | |
| 532 | + <rename>jhlc</rename> | |
| 533 | + <type>String</type> | |
| 534 | + <length>-1</length> | |
| 535 | + <precision>-1</precision> | |
| 536 | + <replace>N</replace> | |
| 537 | + </field> <field> <name>bcsj</name> | |
| 538 | + <rename>bcsj</rename> | |
| 539 | + <type>String</type> | |
| 540 | + <length>-1</length> | |
| 541 | + <precision>-1</precision> | |
| 542 | + <replace>N</replace> | |
| 543 | + </field> </fields> <cluster_schema/> | |
| 544 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 545 | + <xloc>148</xloc> | |
| 546 | + <yloc>674</yloc> | |
| 547 | + <draw>Y</draw> | |
| 548 | + </GUI> | |
| 549 | + </step> | |
| 550 | + | |
| 551 | + <step> | |
| 552 | + <name>增加时刻表名字,线路名字,停车场名字</name> | |
| 553 | + <type>DataGrid</type> | |
| 554 | + <description/> | |
| 555 | + <distribute>Y</distribute> | |
| 556 | + <custom_distribution/> | |
| 557 | + <copies>1</copies> | |
| 558 | + <partitioning> | |
| 559 | + <method>none</method> | |
| 560 | + <schema_name/> | |
| 561 | + </partitioning> | |
| 562 | + <fields> | |
| 563 | + </fields> | |
| 564 | + <data> | |
| 565 | + <line> </line> | |
| 566 | + </data> | |
| 567 | + <cluster_schema/> | |
| 568 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 569 | + <xloc>110</xloc> | |
| 570 | + <yloc>133</yloc> | |
| 571 | + <draw>Y</draw> | |
| 572 | + </GUI> | |
| 573 | + </step> | |
| 574 | + | |
| 575 | + <step> | |
| 576 | + <name>处理数据</name> | |
| 577 | + <type>ScriptValueMod</type> | |
| 578 | + <description/> | |
| 579 | + <distribute>Y</distribute> | |
| 580 | + <custom_distribution/> | |
| 581 | + <copies>1</copies> | |
| 582 | + <partitioning> | |
| 583 | + <method>none</method> | |
| 584 | + <schema_name/> | |
| 585 | + </partitioning> | |
| 586 | + <compatible>N</compatible> | |
| 587 | + <optimizationLevel>9</optimizationLevel> | |
| 588 | + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 589 | + <jsScript_name>Script 1</jsScript_name> | |
| 590 | + <jsScript_script>//Script here

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

</jsScript_script> | |
| 591 | + </jsScript> </jsScripts> <fields> <field> <name>qdzname</name> | |
| 592 | + <rename>qdzname</rename> | |
| 593 | + <type>String</type> | |
| 594 | + <length>-1</length> | |
| 595 | + <precision>-1</precision> | |
| 596 | + <replace>Y</replace> | |
| 597 | + </field> </fields> <cluster_schema/> | |
| 598 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 599 | + <xloc>788</xloc> | |
| 600 | + <yloc>44</yloc> | |
| 601 | + <draw>Y</draw> | |
| 602 | + </GUI> | |
| 603 | + </step> | |
| 604 | + | |
| 605 | + <step> | |
| 606 | + <name>字段选择</name> | |
| 607 | + <type>SelectValues</type> | |
| 608 | + <description/> | |
| 609 | + <distribute>Y</distribute> | |
| 610 | + <custom_distribution/> | |
| 611 | + <copies>1</copies> | |
| 612 | + <partitioning> | |
| 613 | + <method>none</method> | |
| 614 | + <schema_name/> | |
| 615 | + </partitioning> | |
| 616 | + <fields> <field> <name>路牌</name> | |
| 617 | + <rename>lp</rename> | |
| 618 | + <length>-2</length> | |
| 619 | + <precision>-2</precision> | |
| 620 | + </field> <field> <name>站点名称</name> | |
| 621 | + <rename>qdzname</rename> | |
| 622 | + <length>-2</length> | |
| 623 | + <precision>-2</precision> | |
| 624 | + </field> <field> <name>发车时间</name> | |
| 625 | + <rename>sendtime</rename> | |
| 626 | + <length>-2</length> | |
| 627 | + <precision>-2</precision> | |
| 628 | + </field> <select_unspecified>Y</select_unspecified> | |
| 629 | + </fields> <cluster_schema/> | |
| 630 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 631 | + <xloc>444</xloc> | |
| 632 | + <yloc>131</yloc> | |
| 633 | + <draw>Y</draw> | |
| 634 | + </GUI> | |
| 635 | + </step> | |
| 636 | + | |
| 637 | + <step> | |
| 638 | + <name>按照班次类型过滤数据1</name> | |
| 639 | + <type>FilterRows</type> | |
| 640 | + <description/> | |
| 641 | + <distribute>Y</distribute> | |
| 642 | + <custom_distribution/> | |
| 643 | + <copies>1</copies> | |
| 644 | + <partitioning> | |
| 645 | + <method>none</method> | |
| 646 | + <schema_name/> | |
| 647 | + </partitioning> | |
| 648 | +<send_true_to>正常班次数据</send_true_to> | |
| 649 | +<send_false_to>按照班次类型过滤数据2</send_false_to> | |
| 650 | + <compare> | |
| 651 | +<condition> | |
| 652 | + <negated>N</negated> | |
| 653 | + <leftvalue>bctype</leftvalue> | |
| 654 | + <function>=</function> | |
| 655 | + <rightvalue/> | |
| 656 | + <value><name>constant</name><type>String</type><text>正常班次</text><length>-1</length><precision>-1</precision><isnull>N</isnull><mask/></value> </condition> | |
| 657 | + </compare> | |
| 658 | + <cluster_schema/> | |
| 659 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 660 | + <xloc>868</xloc> | |
| 661 | + <yloc>404</yloc> | |
| 662 | + <draw>Y</draw> | |
| 663 | + </GUI> | |
| 664 | + </step> | |
| 665 | + | |
| 666 | + <step> | |
| 667 | + <name>按照班次类型过滤数据2</name> | |
| 668 | + <type>FilterRows</type> | |
| 669 | + <description/> | |
| 670 | + <distribute>Y</distribute> | |
| 671 | + <custom_distribution/> | |
| 672 | + <copies>1</copies> | |
| 673 | + <partitioning> | |
| 674 | + <method>none</method> | |
| 675 | + <schema_name/> | |
| 676 | + </partitioning> | |
| 677 | +<send_true_to>出场班次数据</send_true_to> | |
| 678 | +<send_false_to>进场班次数据</send_false_to> | |
| 679 | + <compare> | |
| 680 | +<condition> | |
| 681 | + <negated>N</negated> | |
| 682 | + <leftvalue>bctype</leftvalue> | |
| 683 | + <function>=</function> | |
| 684 | + <rightvalue/> | |
| 685 | + <value><name>constant</name><type>String</type><text>出场</text><length>-1</length><precision>-1</precision><isnull>N</isnull><mask/></value> </condition> | |
| 686 | + </compare> | |
| 687 | + <cluster_schema/> | |
| 688 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 689 | + <xloc>995</xloc> | |
| 690 | + <yloc>503</yloc> | |
| 691 | + <draw>Y</draw> | |
| 692 | + </GUI> | |
| 693 | + </step> | |
| 694 | + | |
| 695 | + <step> | |
| 696 | + <name>时刻表明细信息Excel输入</name> | |
| 697 | + <type>ExcelInput</type> | |
| 698 | + <description/> | |
| 699 | + <distribute>Y</distribute> | |
| 700 | + <custom_distribution/> | |
| 701 | + <copies>1</copies> | |
| 702 | + <partitioning> | |
| 703 | + <method>none</method> | |
| 704 | + <schema_name/> | |
| 705 | + </partitioning> | |
| 706 | + <header>Y</header> | |
| 707 | + <noempty>Y</noempty> | |
| 708 | + <stoponempty>N</stoponempty> | |
| 709 | + <filefield/> | |
| 710 | + <sheetfield/> | |
| 711 | + <sheetrownumfield/> | |
| 712 | + <rownumfield/> | |
| 713 | + <sheetfield/> | |
| 714 | + <filefield/> | |
| 715 | + <limit>0</limit> | |
| 716 | + <encoding/> | |
| 717 | + <add_to_result_filenames>Y</add_to_result_filenames> | |
| 718 | + <accept_filenames>N</accept_filenames> | |
| 719 | + <accept_field/> | |
| 720 | + <accept_stepname/> | |
| 721 | + <file> | |
| 722 | + <name/> | |
| 723 | + <filemask/> | |
| 724 | + <exclude_filemask/> | |
| 725 | + <file_required>N</file_required> | |
| 726 | + <include_subfolders>N</include_subfolders> | |
| 727 | + </file> | |
| 728 | + <fields> | |
| 729 | + </fields> | |
| 730 | + <sheets> | |
| 731 | + <sheet> | |
| 732 | + <name>工作表1</name> | |
| 733 | + <startrow>0</startrow> | |
| 734 | + <startcol>0</startcol> | |
| 735 | + </sheet> | |
| 736 | + </sheets> | |
| 737 | + <strict_types>N</strict_types> | |
| 738 | + <error_ignored>N</error_ignored> | |
| 739 | + <error_line_skipped>N</error_line_skipped> | |
| 740 | + <bad_line_files_destination_directory/> | |
| 741 | + <bad_line_files_extension>warning</bad_line_files_extension> | |
| 742 | + <error_line_files_destination_directory/> | |
| 743 | + <error_line_files_extension>error</error_line_files_extension> | |
| 744 | + <line_number_files_destination_directory/> | |
| 745 | + <line_number_files_extension>line</line_number_files_extension> | |
| 746 | + <shortFileFieldName/> | |
| 747 | + <pathFieldName/> | |
| 748 | + <hiddenFieldName/> | |
| 749 | + <lastModificationTimeFieldName/> | |
| 750 | + <uriNameFieldName/> | |
| 751 | + <rootUriNameFieldName/> | |
| 752 | + <extensionFieldName/> | |
| 753 | + <sizeFieldName/> | |
| 754 | + <spreadsheet_type>JXL</spreadsheet_type> | |
| 755 | + <cluster_schema/> | |
| 756 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 757 | + <xloc>112</xloc> | |
| 758 | + <yloc>44</yloc> | |
| 759 | + <draw>Y</draw> | |
| 760 | + </GUI> | |
| 761 | + </step> | |
| 762 | + | |
| 763 | + <step> | |
| 764 | + <name>查找停车场1</name> | |
| 765 | + <type>DBLookup</type> | |
| 766 | + <description/> | |
| 767 | + <distribute>Y</distribute> | |
| 768 | + <custom_distribution/> | |
| 769 | + <copies>1</copies> | |
| 770 | + <partitioning> | |
| 771 | + <method>none</method> | |
| 772 | + <schema_name/> | |
| 773 | + </partitioning> | |
| 774 | + <connection>bus_control_variable</connection> | |
| 775 | + <cache>N</cache> | |
| 776 | + <cache_load_all>N</cache_load_all> | |
| 777 | + <cache_size>0</cache_size> | |
| 778 | + <lookup> | |
| 779 | + <schema/> | |
| 780 | + <table>bsth_c_car_park</table> | |
| 781 | + <orderby/> | |
| 782 | + <fail_on_multiple>N</fail_on_multiple> | |
| 783 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 784 | + <key> | |
| 785 | + <name>tccname_</name> | |
| 786 | + <field>park_name</field> | |
| 787 | + <condition>=</condition> | |
| 788 | + <name2/> | |
| 789 | + </key> | |
| 790 | + <value> | |
| 791 | + <name>id</name> | |
| 792 | + <rename>qdzid</rename> | |
| 793 | + <default/> | |
| 794 | + <type>Integer</type> | |
| 795 | + </value> | |
| 796 | + </lookup> | |
| 797 | + <cluster_schema/> | |
| 798 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 799 | + <xloc>755</xloc> | |
| 800 | + <yloc>504</yloc> | |
| 801 | + <draw>Y</draw> | |
| 802 | + </GUI> | |
| 803 | + </step> | |
| 804 | + | |
| 805 | + <step> | |
| 806 | + <name>查找停车场2</name> | |
| 807 | + <type>DBLookup</type> | |
| 808 | + <description/> | |
| 809 | + <distribute>Y</distribute> | |
| 810 | + <custom_distribution/> | |
| 811 | + <copies>1</copies> | |
| 812 | + <partitioning> | |
| 813 | + <method>none</method> | |
| 814 | + <schema_name/> | |
| 815 | + </partitioning> | |
| 816 | + <connection>bus_control_variable</connection> | |
| 817 | + <cache>N</cache> | |
| 818 | + <cache_load_all>N</cache_load_all> | |
| 819 | + <cache_size>0</cache_size> | |
| 820 | + <lookup> | |
| 821 | + <schema/> | |
| 822 | + <table>bsth_c_car_park</table> | |
| 823 | + <orderby/> | |
| 824 | + <fail_on_multiple>N</fail_on_multiple> | |
| 825 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 826 | + <key> | |
| 827 | + <name>tccname_</name> | |
| 828 | + <field>park_name</field> | |
| 829 | + <condition>=</condition> | |
| 830 | + <name2/> | |
| 831 | + </key> | |
| 832 | + <value> | |
| 833 | + <name>id</name> | |
| 834 | + <rename>zdzid</rename> | |
| 835 | + <default/> | |
| 836 | + <type>Integer</type> | |
| 837 | + </value> | |
| 838 | + </lookup> | |
| 839 | + <cluster_schema/> | |
| 840 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 841 | + <xloc>887</xloc> | |
| 842 | + <yloc>608</yloc> | |
| 843 | + <draw>Y</draw> | |
| 844 | + </GUI> | |
| 845 | + </step> | |
| 846 | + | |
| 847 | + <step> | |
| 848 | + <name>查找出场终点站关联并确定上下行</name> | |
| 849 | + <type>DBLookup</type> | |
| 850 | + <description/> | |
| 851 | + <distribute>Y</distribute> | |
| 852 | + <custom_distribution/> | |
| 853 | + <copies>1</copies> | |
| 854 | + <partitioning> | |
| 855 | + <method>none</method> | |
| 856 | + <schema_name/> | |
| 857 | + </partitioning> | |
| 858 | + <connection>bus_control_variable</connection> | |
| 859 | + <cache>N</cache> | |
| 860 | + <cache_load_all>N</cache_load_all> | |
| 861 | + <cache_size>0</cache_size> | |
| 862 | + <lookup> | |
| 863 | + <schema/> | |
| 864 | + <table>bsth_c_stationroute</table> | |
| 865 | + <orderby/> | |
| 866 | + <fail_on_multiple>N</fail_on_multiple> | |
| 867 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 868 | + <key> | |
| 869 | + <name>xlid</name> | |
| 870 | + <field>line</field> | |
| 871 | + <condition>=</condition> | |
| 872 | + <name2/> | |
| 873 | + </key> | |
| 874 | + <key> | |
| 875 | + <name>zdzname</name> | |
| 876 | + <field>station_name</field> | |
| 877 | + <condition>=</condition> | |
| 878 | + <name2/> | |
| 879 | + </key> | |
| 880 | + <key> | |
| 881 | + <name>endZdtype</name> | |
| 882 | + <field>station_mark</field> | |
| 883 | + <condition>=</condition> | |
| 884 | + <name2/> | |
| 885 | + </key> | |
| 886 | + <value> | |
| 887 | + <name>station</name> | |
| 888 | + <rename>zdzid</rename> | |
| 889 | + <default/> | |
| 890 | + <type>Integer</type> | |
| 891 | + </value> | |
| 892 | + <value> | |
| 893 | + <name>directions</name> | |
| 894 | + <rename>sxx</rename> | |
| 895 | + <default/> | |
| 896 | + <type>Integer</type> | |
| 897 | + </value> | |
| 898 | + </lookup> | |
| 899 | + <cluster_schema/> | |
| 900 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 901 | + <xloc>329</xloc> | |
| 902 | + <yloc>505</yloc> | |
| 903 | + <draw>Y</draw> | |
| 904 | + </GUI> | |
| 905 | + </step> | |
| 906 | + | |
| 907 | + <step> | |
| 908 | + <name>查找时刻表基础信息关联</name> | |
| 909 | + <type>DBLookup</type> | |
| 910 | + <description/> | |
| 911 | + <distribute>Y</distribute> | |
| 912 | + <custom_distribution/> | |
| 913 | + <copies>1</copies> | |
| 914 | + <partitioning> | |
| 915 | + <method>none</method> | |
| 916 | + <schema_name/> | |
| 917 | + </partitioning> | |
| 918 | + <connection>bus_control_variable</connection> | |
| 919 | + <cache>N</cache> | |
| 920 | + <cache_load_all>N</cache_load_all> | |
| 921 | + <cache_size>0</cache_size> | |
| 922 | + <lookup> | |
| 923 | + <schema/> | |
| 924 | + <table>bsth_c_s_ttinfo</table> | |
| 925 | + <orderby/> | |
| 926 | + <fail_on_multiple>N</fail_on_multiple> | |
| 927 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 928 | + <key> | |
| 929 | + <name>xlid</name> | |
| 930 | + <field>xl</field> | |
| 931 | + <condition>=</condition> | |
| 932 | + <name2/> | |
| 933 | + </key> | |
| 934 | + <key> | |
| 935 | + <name>ttinfoname_</name> | |
| 936 | + <field>name</field> | |
| 937 | + <condition>=</condition> | |
| 938 | + <name2/> | |
| 939 | + </key> | |
| 940 | + <value> | |
| 941 | + <name>id</name> | |
| 942 | + <rename>ttid</rename> | |
| 943 | + <default/> | |
| 944 | + <type>Integer</type> | |
| 945 | + </value> | |
| 946 | + </lookup> | |
| 947 | + <cluster_schema/> | |
| 948 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 949 | + <xloc>1011</xloc> | |
| 950 | + <yloc>134</yloc> | |
| 951 | + <draw>Y</draw> | |
| 952 | + </GUI> | |
| 953 | + </step> | |
| 954 | + | |
| 955 | + <step> | |
| 956 | + <name>查找线路上下行里程时间</name> | |
| 957 | + <type>DBLookup</type> | |
| 958 | + <description/> | |
| 959 | + <distribute>Y</distribute> | |
| 960 | + <custom_distribution/> | |
| 961 | + <copies>1</copies> | |
| 962 | + <partitioning> | |
| 963 | + <method>none</method> | |
| 964 | + <schema_name/> | |
| 965 | + </partitioning> | |
| 966 | + <connection>bus_control_variable</connection> | |
| 967 | + <cache>N</cache> | |
| 968 | + <cache_load_all>N</cache_load_all> | |
| 969 | + <cache_size>0</cache_size> | |
| 970 | + <lookup> | |
| 971 | + <schema/> | |
| 972 | + <table>bsth_c_line_information</table> | |
| 973 | + <orderby/> | |
| 974 | + <fail_on_multiple>N</fail_on_multiple> | |
| 975 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 976 | + <key> | |
| 977 | + <name>xlid</name> | |
| 978 | + <field>line</field> | |
| 979 | + <condition>=</condition> | |
| 980 | + <name2/> | |
| 981 | + </key> | |
| 982 | + <value> | |
| 983 | + <name>up_mileage</name> | |
| 984 | + <rename>up_mileage</rename> | |
| 985 | + <default/> | |
| 986 | + <type>Number</type> | |
| 987 | + </value> | |
| 988 | + <value> | |
| 989 | + <name>down_mileage</name> | |
| 990 | + <rename>down_mileage</rename> | |
| 991 | + <default/> | |
| 992 | + <type>Number</type> | |
| 993 | + </value> | |
| 994 | + <value> | |
| 995 | + <name>up_travel_time</name> | |
| 996 | + <rename>up_travel_time</rename> | |
| 997 | + <default/> | |
| 998 | + <type>Number</type> | |
| 999 | + </value> | |
| 1000 | + <value> | |
| 1001 | + <name>down_travel_time</name> | |
| 1002 | + <rename>down_travel_time</rename> | |
| 1003 | + <default/> | |
| 1004 | + <type>Number</type> | |
| 1005 | + </value> | |
| 1006 | + </lookup> | |
| 1007 | + <cluster_schema/> | |
| 1008 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1009 | + <xloc>149</xloc> | |
| 1010 | + <yloc>581</yloc> | |
| 1011 | + <draw>Y</draw> | |
| 1012 | + </GUI> | |
| 1013 | + </step> | |
| 1014 | + | |
| 1015 | + <step> | |
| 1016 | + <name>查找线路关联</name> | |
| 1017 | + <type>DBLookup</type> | |
| 1018 | + <description/> | |
| 1019 | + <distribute>Y</distribute> | |
| 1020 | + <custom_distribution/> | |
| 1021 | + <copies>1</copies> | |
| 1022 | + <partitioning> | |
| 1023 | + <method>none</method> | |
| 1024 | + <schema_name/> | |
| 1025 | + </partitioning> | |
| 1026 | + <connection>bus_control_variable</connection> | |
| 1027 | + <cache>N</cache> | |
| 1028 | + <cache_load_all>N</cache_load_all> | |
| 1029 | + <cache_size>0</cache_size> | |
| 1030 | + <lookup> | |
| 1031 | + <schema/> | |
| 1032 | + <table>bsth_c_line</table> | |
| 1033 | + <orderby/> | |
| 1034 | + <fail_on_multiple>N</fail_on_multiple> | |
| 1035 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 1036 | + <key> | |
| 1037 | + <name>xlname_</name> | |
| 1038 | + <field>name</field> | |
| 1039 | + <condition>=</condition> | |
| 1040 | + <name2/> | |
| 1041 | + </key> | |
| 1042 | + <value> | |
| 1043 | + <name>id</name> | |
| 1044 | + <rename>xlid</rename> | |
| 1045 | + <default/> | |
| 1046 | + <type>Integer</type> | |
| 1047 | + </value> | |
| 1048 | + </lookup> | |
| 1049 | + <cluster_schema/> | |
| 1050 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1051 | + <xloc>1007</xloc> | |
| 1052 | + <yloc>43</yloc> | |
| 1053 | + <draw>Y</draw> | |
| 1054 | + </GUI> | |
| 1055 | + </step> | |
| 1056 | + | |
| 1057 | + <step> | |
| 1058 | + <name>查找线路出场里程时间</name> | |
| 1059 | + <type>DBLookup</type> | |
| 1060 | + <description/> | |
| 1061 | + <distribute>Y</distribute> | |
| 1062 | + <custom_distribution/> | |
| 1063 | + <copies>1</copies> | |
| 1064 | + <partitioning> | |
| 1065 | + <method>none</method> | |
| 1066 | + <schema_name/> | |
| 1067 | + </partitioning> | |
| 1068 | + <connection>bus_control_variable</connection> | |
| 1069 | + <cache>N</cache> | |
| 1070 | + <cache_load_all>N</cache_load_all> | |
| 1071 | + <cache_size>0</cache_size> | |
| 1072 | + <lookup> | |
| 1073 | + <schema/> | |
| 1074 | + <table>bsth_c_line_information</table> | |
| 1075 | + <orderby/> | |
| 1076 | + <fail_on_multiple>N</fail_on_multiple> | |
| 1077 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 1078 | + <key> | |
| 1079 | + <name>xlid</name> | |
| 1080 | + <field>line</field> | |
| 1081 | + <condition>=</condition> | |
| 1082 | + <name2/> | |
| 1083 | + </key> | |
| 1084 | + <value> | |
| 1085 | + <name>out_mileage</name> | |
| 1086 | + <rename>out_mileage</rename> | |
| 1087 | + <default/> | |
| 1088 | + <type>Number</type> | |
| 1089 | + </value> | |
| 1090 | + <value> | |
| 1091 | + <name>out_time</name> | |
| 1092 | + <rename>out_time</rename> | |
| 1093 | + <default/> | |
| 1094 | + <type>Number</type> | |
| 1095 | + </value> | |
| 1096 | + </lookup> | |
| 1097 | + <cluster_schema/> | |
| 1098 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1099 | + <xloc>335</xloc> | |
| 1100 | + <yloc>763</yloc> | |
| 1101 | + <draw>Y</draw> | |
| 1102 | + </GUI> | |
| 1103 | + </step> | |
| 1104 | + | |
| 1105 | + <step> | |
| 1106 | + <name>查找线路进场里程时间</name> | |
| 1107 | + <type>DBLookup</type> | |
| 1108 | + <description/> | |
| 1109 | + <distribute>Y</distribute> | |
| 1110 | + <custom_distribution/> | |
| 1111 | + <copies>1</copies> | |
| 1112 | + <partitioning> | |
| 1113 | + <method>none</method> | |
| 1114 | + <schema_name/> | |
| 1115 | + </partitioning> | |
| 1116 | + <connection>bus_control_variable</connection> | |
| 1117 | + <cache>N</cache> | |
| 1118 | + <cache_load_all>N</cache_load_all> | |
| 1119 | + <cache_size>0</cache_size> | |
| 1120 | + <lookup> | |
| 1121 | + <schema/> | |
| 1122 | + <table>bsth_c_line_information</table> | |
| 1123 | + <orderby/> | |
| 1124 | + <fail_on_multiple>N</fail_on_multiple> | |
| 1125 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 1126 | + <key> | |
| 1127 | + <name>xlid</name> | |
| 1128 | + <field>line</field> | |
| 1129 | + <condition>=</condition> | |
| 1130 | + <name2/> | |
| 1131 | + </key> | |
| 1132 | + <value> | |
| 1133 | + <name>parade_mileage</name> | |
| 1134 | + <rename>parade_mileage</rename> | |
| 1135 | + <default/> | |
| 1136 | + <type>Number</type> | |
| 1137 | + </value> | |
| 1138 | + <value> | |
| 1139 | + <name>parade_time</name> | |
| 1140 | + <rename>parade_time</rename> | |
| 1141 | + <default/> | |
| 1142 | + <type>Number</type> | |
| 1143 | + </value> | |
| 1144 | + </lookup> | |
| 1145 | + <cluster_schema/> | |
| 1146 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1147 | + <xloc>550</xloc> | |
| 1148 | + <yloc>920</yloc> | |
| 1149 | + <draw>Y</draw> | |
| 1150 | + </GUI> | |
| 1151 | + </step> | |
| 1152 | + | |
| 1153 | + <step> | |
| 1154 | + <name>查找终点站关联</name> | |
| 1155 | + <type>DBLookup</type> | |
| 1156 | + <description/> | |
| 1157 | + <distribute>Y</distribute> | |
| 1158 | + <custom_distribution/> | |
| 1159 | + <copies>1</copies> | |
| 1160 | + <partitioning> | |
| 1161 | + <method>none</method> | |
| 1162 | + <schema_name/> | |
| 1163 | + </partitioning> | |
| 1164 | + <connection>bus_control_variable</connection> | |
| 1165 | + <cache>N</cache> | |
| 1166 | + <cache_load_all>N</cache_load_all> | |
| 1167 | + <cache_size>0</cache_size> | |
| 1168 | + <lookup> | |
| 1169 | + <schema/> | |
| 1170 | + <table>bsth_c_stationroute</table> | |
| 1171 | + <orderby/> | |
| 1172 | + <fail_on_multiple>N</fail_on_multiple> | |
| 1173 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 1174 | + <key> | |
| 1175 | + <name>xlid</name> | |
| 1176 | + <field>line</field> | |
| 1177 | + <condition>=</condition> | |
| 1178 | + <name2/> | |
| 1179 | + </key> | |
| 1180 | + <key> | |
| 1181 | + <name>sxx</name> | |
| 1182 | + <field>directions</field> | |
| 1183 | + <condition>=</condition> | |
| 1184 | + <name2/> | |
| 1185 | + </key> | |
| 1186 | + <key> | |
| 1187 | + <name>endZdtype</name> | |
| 1188 | + <field>station_mark</field> | |
| 1189 | + <condition>=</condition> | |
| 1190 | + <name2/> | |
| 1191 | + </key> | |
| 1192 | + <value> | |
| 1193 | + <name>station_name</name> | |
| 1194 | + <rename>zdzname</rename> | |
| 1195 | + <default/> | |
| 1196 | + <type>String</type> | |
| 1197 | + </value> | |
| 1198 | + <value> | |
| 1199 | + <name>station</name> | |
| 1200 | + <rename>zdzid</rename> | |
| 1201 | + <default/> | |
| 1202 | + <type>Integer</type> | |
| 1203 | + </value> | |
| 1204 | + </lookup> | |
| 1205 | + <cluster_schema/> | |
| 1206 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1207 | + <xloc>280</xloc> | |
| 1208 | + <yloc>404</yloc> | |
| 1209 | + <draw>Y</draw> | |
| 1210 | + </GUI> | |
| 1211 | + </step> | |
| 1212 | + | |
| 1213 | + <step> | |
| 1214 | + <name>查找起点站关联并确定上下行</name> | |
| 1215 | + <type>DBLookup</type> | |
| 1216 | + <description/> | |
| 1217 | + <distribute>Y</distribute> | |
| 1218 | + <custom_distribution/> | |
| 1219 | + <copies>1</copies> | |
| 1220 | + <partitioning> | |
| 1221 | + <method>none</method> | |
| 1222 | + <schema_name/> | |
| 1223 | + </partitioning> | |
| 1224 | + <connection>bus_control_variable</connection> | |
| 1225 | + <cache>N</cache> | |
| 1226 | + <cache_load_all>N</cache_load_all> | |
| 1227 | + <cache_size>0</cache_size> | |
| 1228 | + <lookup> | |
| 1229 | + <schema/> | |
| 1230 | + <table>bsth_c_stationroute</table> | |
| 1231 | + <orderby/> | |
| 1232 | + <fail_on_multiple>N</fail_on_multiple> | |
| 1233 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 1234 | + <key> | |
| 1235 | + <name>xlid</name> | |
| 1236 | + <field>line</field> | |
| 1237 | + <condition>=</condition> | |
| 1238 | + <name2/> | |
| 1239 | + </key> | |
| 1240 | + <key> | |
| 1241 | + <name>qdzname</name> | |
| 1242 | + <field>station_name</field> | |
| 1243 | + <condition>=</condition> | |
| 1244 | + <name2/> | |
| 1245 | + </key> | |
| 1246 | + <key> | |
| 1247 | + <name>sendZdtype</name> | |
| 1248 | + <field>station_mark</field> | |
| 1249 | + <condition>=</condition> | |
| 1250 | + <name2/> | |
| 1251 | + </key> | |
| 1252 | + <value> | |
| 1253 | + <name>station</name> | |
| 1254 | + <rename>qdzid</rename> | |
| 1255 | + <default/> | |
| 1256 | + <type>Integer</type> | |
| 1257 | + </value> | |
| 1258 | + <value> | |
| 1259 | + <name>directions</name> | |
| 1260 | + <rename>sxx</rename> | |
| 1261 | + <default/> | |
| 1262 | + <type>Integer</type> | |
| 1263 | + </value> | |
| 1264 | + </lookup> | |
| 1265 | + <cluster_schema/> | |
| 1266 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1267 | + <xloc>430</xloc> | |
| 1268 | + <yloc>403</yloc> | |
| 1269 | + <draw>Y</draw> | |
| 1270 | + </GUI> | |
| 1271 | + </step> | |
| 1272 | + | |
| 1273 | + <step> | |
| 1274 | + <name>查找路牌关联</name> | |
| 1275 | + <type>DBLookup</type> | |
| 1276 | + <description/> | |
| 1277 | + <distribute>Y</distribute> | |
| 1278 | + <custom_distribution/> | |
| 1279 | + <copies>1</copies> | |
| 1280 | + <partitioning> | |
| 1281 | + <method>none</method> | |
| 1282 | + <schema_name/> | |
| 1283 | + </partitioning> | |
| 1284 | + <connection>bus_control_variable</connection> | |
| 1285 | + <cache>N</cache> | |
| 1286 | + <cache_load_all>N</cache_load_all> | |
| 1287 | + <cache_size>0</cache_size> | |
| 1288 | + <lookup> | |
| 1289 | + <schema/> | |
| 1290 | + <table>bsth_c_s_gbi</table> | |
| 1291 | + <orderby/> | |
| 1292 | + <fail_on_multiple>N</fail_on_multiple> | |
| 1293 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 1294 | + <key> | |
| 1295 | + <name>xlid</name> | |
| 1296 | + <field>xl</field> | |
| 1297 | + <condition>=</condition> | |
| 1298 | + <name2/> | |
| 1299 | + </key> | |
| 1300 | + <key> | |
| 1301 | + <name>lp</name> | |
| 1302 | + <field>lp_name</field> | |
| 1303 | + <condition>=</condition> | |
| 1304 | + <name2/> | |
| 1305 | + </key> | |
| 1306 | + <value> | |
| 1307 | + <name>id</name> | |
| 1308 | + <rename>lpid</rename> | |
| 1309 | + <default/> | |
| 1310 | + <type>Integer</type> | |
| 1311 | + </value> | |
| 1312 | + </lookup> | |
| 1313 | + <cluster_schema/> | |
| 1314 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1315 | + <xloc>1013</xloc> | |
| 1316 | + <yloc>265</yloc> | |
| 1317 | + <draw>Y</draw> | |
| 1318 | + </GUI> | |
| 1319 | + </step> | |
| 1320 | + | |
| 1321 | + <step> | |
| 1322 | + <name>查找进场班次上一个班次的线路方向</name> | |
| 1323 | + <type>DBLookup</type> | |
| 1324 | + <description/> | |
| 1325 | + <distribute>Y</distribute> | |
| 1326 | + <custom_distribution/> | |
| 1327 | + <copies>1</copies> | |
| 1328 | + <partitioning> | |
| 1329 | + <method>none</method> | |
| 1330 | + <schema_name/> | |
| 1331 | + </partitioning> | |
| 1332 | + <connection>bus_control_variable</connection> | |
| 1333 | + <cache>N</cache> | |
| 1334 | + <cache_load_all>N</cache_load_all> | |
| 1335 | + <cache_size>0</cache_size> | |
| 1336 | + <lookup> | |
| 1337 | + <schema/> | |
| 1338 | + <table>bsth_c_stationroute</table> | |
| 1339 | + <orderby/> | |
| 1340 | + <fail_on_multiple>N</fail_on_multiple> | |
| 1341 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 1342 | + <key> | |
| 1343 | + <name>xlid</name> | |
| 1344 | + <field>line</field> | |
| 1345 | + <condition>=</condition> | |
| 1346 | + <name2/> | |
| 1347 | + </key> | |
| 1348 | + <key> | |
| 1349 | + <name>startZdtype_calcu</name> | |
| 1350 | + <field>station_mark</field> | |
| 1351 | + <condition>=</condition> | |
| 1352 | + <name2/> | |
| 1353 | + </key> | |
| 1354 | + <key> | |
| 1355 | + <name>qdzname_calcu</name> | |
| 1356 | + <field>station_name</field> | |
| 1357 | + <condition>=</condition> | |
| 1358 | + <name2/> | |
| 1359 | + </key> | |
| 1360 | + <value> | |
| 1361 | + <name>directions</name> | |
| 1362 | + <rename>sxx</rename> | |
| 1363 | + <default/> | |
| 1364 | + <type>String</type> | |
| 1365 | + </value> | |
| 1366 | + </lookup> | |
| 1367 | + <cluster_schema/> | |
| 1368 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1369 | + <xloc>548</xloc> | |
| 1370 | + <yloc>610</yloc> | |
| 1371 | + <draw>Y</draw> | |
| 1372 | + </GUI> | |
| 1373 | + </step> | |
| 1374 | + | |
| 1375 | + <step> | |
| 1376 | + <name>查找进场班次上一个班次的终点站,并作为进场班次的起点站</name> | |
| 1377 | + <type>DBLookup</type> | |
| 1378 | + <description/> | |
| 1379 | + <distribute>Y</distribute> | |
| 1380 | + <custom_distribution/> | |
| 1381 | + <copies>1</copies> | |
| 1382 | + <partitioning> | |
| 1383 | + <method>none</method> | |
| 1384 | + <schema_name/> | |
| 1385 | + </partitioning> | |
| 1386 | + <connection>bus_control_variable</connection> | |
| 1387 | + <cache>N</cache> | |
| 1388 | + <cache_load_all>N</cache_load_all> | |
| 1389 | + <cache_size>0</cache_size> | |
| 1390 | + <lookup> | |
| 1391 | + <schema/> | |
| 1392 | + <table>bsth_c_stationroute</table> | |
| 1393 | + <orderby/> | |
| 1394 | + <fail_on_multiple>N</fail_on_multiple> | |
| 1395 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 1396 | + <key> | |
| 1397 | + <name>xlid</name> | |
| 1398 | + <field>line</field> | |
| 1399 | + <condition>=</condition> | |
| 1400 | + <name2/> | |
| 1401 | + </key> | |
| 1402 | + <key> | |
| 1403 | + <name>endZdtype_calcu</name> | |
| 1404 | + <field>station_mark</field> | |
| 1405 | + <condition>=</condition> | |
| 1406 | + <name2/> | |
| 1407 | + </key> | |
| 1408 | + <key> | |
| 1409 | + <name>sxx</name> | |
| 1410 | + <field>directions</field> | |
| 1411 | + <condition>=</condition> | |
| 1412 | + <name2/> | |
| 1413 | + </key> | |
| 1414 | + <value> | |
| 1415 | + <name>station</name> | |
| 1416 | + <rename>qdzid</rename> | |
| 1417 | + <default/> | |
| 1418 | + <type>Integer</type> | |
| 1419 | + </value> | |
| 1420 | + </lookup> | |
| 1421 | + <cluster_schema/> | |
| 1422 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1423 | + <xloc>550</xloc> | |
| 1424 | + <yloc>701</yloc> | |
| 1425 | + <draw>Y</draw> | |
| 1426 | + </GUI> | |
| 1427 | + </step> | |
| 1428 | + | |
| 1429 | + <step> | |
| 1430 | + <name>正常班次_处理数据</name> | |
| 1431 | + <type>ScriptValueMod</type> | |
| 1432 | + <description/> | |
| 1433 | + <distribute>Y</distribute> | |
| 1434 | + <custom_distribution/> | |
| 1435 | + <copies>1</copies> | |
| 1436 | + <partitioning> | |
| 1437 | + <method>none</method> | |
| 1438 | + <schema_name/> | |
| 1439 | + </partitioning> | |
| 1440 | + <compatible>N</compatible> | |
| 1441 | + <optimizationLevel>9</optimizationLevel> | |
| 1442 | + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 1443 | + <jsScript_name>Script 1</jsScript_name> | |
| 1444 | + <jsScript_script>//Script here

// 添加站点标识
var sendZdtype = 'B';
var endZdtype = 'E';
</jsScript_script> | |
| 1445 | + </jsScript> </jsScripts> <fields> <field> <name>sendZdtype</name> | |
| 1446 | + <rename>sendZdtype</rename> | |
| 1447 | + <type>String</type> | |
| 1448 | + <length>-1</length> | |
| 1449 | + <precision>-1</precision> | |
| 1450 | + <replace>N</replace> | |
| 1451 | + </field> <field> <name>endZdtype</name> | |
| 1452 | + <rename>endZdtype</rename> | |
| 1453 | + <type>String</type> | |
| 1454 | + <length>-1</length> | |
| 1455 | + <precision>-1</precision> | |
| 1456 | + <replace>N</replace> | |
| 1457 | + </field> </fields> <cluster_schema/> | |
| 1458 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1459 | + <xloc>588</xloc> | |
| 1460 | + <yloc>403</yloc> | |
| 1461 | + <draw>Y</draw> | |
| 1462 | + </GUI> | |
| 1463 | + </step> | |
| 1464 | + | |
| 1465 | + <step> | |
| 1466 | + <name>正常班次数据</name> | |
| 1467 | + <type>Dummy</type> | |
| 1468 | + <description/> | |
| 1469 | + <distribute>Y</distribute> | |
| 1470 | + <custom_distribution/> | |
| 1471 | + <copies>1</copies> | |
| 1472 | + <partitioning> | |
| 1473 | + <method>none</method> | |
| 1474 | + <schema_name/> | |
| 1475 | + </partitioning> | |
| 1476 | + <cluster_schema/> | |
| 1477 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1478 | + <xloc>725</xloc> | |
| 1479 | + <yloc>404</yloc> | |
| 1480 | + <draw>Y</draw> | |
| 1481 | + </GUI> | |
| 1482 | + </step> | |
| 1483 | + | |
| 1484 | + <step> | |
| 1485 | + <name>添加发车顺序号</name> | |
| 1486 | + <type>GroupBy</type> | |
| 1487 | + <description/> | |
| 1488 | + <distribute>Y</distribute> | |
| 1489 | + <custom_distribution/> | |
| 1490 | + <copies>1</copies> | |
| 1491 | + <partitioning> | |
| 1492 | + <method>none</method> | |
| 1493 | + <schema_name/> | |
| 1494 | + </partitioning> | |
| 1495 | + <all_rows>Y</all_rows> | |
| 1496 | + <ignore_aggregate>N</ignore_aggregate> | |
| 1497 | + <field_ignore/> | |
| 1498 | + <directory>%%java.io.tmpdir%%</directory> | |
| 1499 | + <prefix>grp</prefix> | |
| 1500 | + <add_linenr>Y</add_linenr> | |
| 1501 | + <linenr_fieldname>fcno</linenr_fieldname> | |
| 1502 | + <give_back_row>N</give_back_row> | |
| 1503 | + <group> | |
| 1504 | + <field> | |
| 1505 | + <name>lp</name> | |
| 1506 | + </field> | |
| 1507 | + </group> | |
| 1508 | + <fields> | |
| 1509 | + </fields> | |
| 1510 | + <cluster_schema/> | |
| 1511 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1512 | + <xloc>442</xloc> | |
| 1513 | + <yloc>44</yloc> | |
| 1514 | + <draw>Y</draw> | |
| 1515 | + </GUI> | |
| 1516 | + </step> | |
| 1517 | + | |
| 1518 | + <step> | |
| 1519 | + <name>添加对应班次数</name> | |
| 1520 | + <type>GroupBy</type> | |
| 1521 | + <description/> | |
| 1522 | + <distribute>Y</distribute> | |
| 1523 | + <custom_distribution/> | |
| 1524 | + <copies>1</copies> | |
| 1525 | + <partitioning> | |
| 1526 | + <method>none</method> | |
| 1527 | + <schema_name/> | |
| 1528 | + </partitioning> | |
| 1529 | + <all_rows>Y</all_rows> | |
| 1530 | + <ignore_aggregate>N</ignore_aggregate> | |
| 1531 | + <field_ignore/> | |
| 1532 | + <directory>%%java.io.tmpdir%%</directory> | |
| 1533 | + <prefix>grp</prefix> | |
| 1534 | + <add_linenr>Y</add_linenr> | |
| 1535 | + <linenr_fieldname>bcs</linenr_fieldname> | |
| 1536 | + <give_back_row>N</give_back_row> | |
| 1537 | + <group> | |
| 1538 | + </group> | |
| 1539 | + <fields> | |
| 1540 | + </fields> | |
| 1541 | + <cluster_schema/> | |
| 1542 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1543 | + <xloc>692</xloc> | |
| 1544 | + <yloc>44</yloc> | |
| 1545 | + <draw>Y</draw> | |
| 1546 | + </GUI> | |
| 1547 | + </step> | |
| 1548 | + | |
| 1549 | + <step> | |
| 1550 | + <name>班次数据范式化</name> | |
| 1551 | + <type>Normaliser</type> | |
| 1552 | + <description/> | |
| 1553 | + <distribute>Y</distribute> | |
| 1554 | + <custom_distribution/> | |
| 1555 | + <copies>1</copies> | |
| 1556 | + <partitioning> | |
| 1557 | + <method>none</method> | |
| 1558 | + <schema_name/> | |
| 1559 | + </partitioning> | |
| 1560 | + <typefield>站点名称</typefield> | |
| 1561 | + <fields> </fields> <cluster_schema/> | |
| 1562 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1563 | + <xloc>248</xloc> | |
| 1564 | + <yloc>44</yloc> | |
| 1565 | + <draw>Y</draw> | |
| 1566 | + </GUI> | |
| 1567 | + </step> | |
| 1568 | + | |
| 1569 | + <step> | |
| 1570 | + <name>班次类型字典</name> | |
| 1571 | + <type>ValueMapper</type> | |
| 1572 | + <description/> | |
| 1573 | + <distribute>Y</distribute> | |
| 1574 | + <custom_distribution/> | |
| 1575 | + <copies>1</copies> | |
| 1576 | + <partitioning> | |
| 1577 | + <method>none</method> | |
| 1578 | + <schema_name/> | |
| 1579 | + </partitioning> | |
| 1580 | + <field_to_use>bctype</field_to_use> | |
| 1581 | + <target_field>bctype_code</target_field> | |
| 1582 | + <non_match_default>未知类型</non_match_default> | |
| 1583 | + <fields> | |
| 1584 | + <field> | |
| 1585 | + <source_value>正常班次</source_value> | |
| 1586 | + <target_value>normal</target_value> | |
| 1587 | + </field> | |
| 1588 | + <field> | |
| 1589 | + <source_value>出场</source_value> | |
| 1590 | + <target_value>out</target_value> | |
| 1591 | + </field> | |
| 1592 | + <field> | |
| 1593 | + <source_value>进场</source_value> | |
| 1594 | + <target_value>in</target_value> | |
| 1595 | + </field> | |
| 1596 | + <field> | |
| 1597 | + <source_value>加油</source_value> | |
| 1598 | + <target_value>oil</target_value> | |
| 1599 | + </field> | |
| 1600 | + <field> | |
| 1601 | + <source_value>临加</source_value> | |
| 1602 | + <target_value>temp</target_value> | |
| 1603 | + </field> | |
| 1604 | + <field> | |
| 1605 | + <source_value>区间</source_value> | |
| 1606 | + <target_value>region</target_value> | |
| 1607 | + </field> | |
| 1608 | + <field> | |
| 1609 | + <source_value>放空</source_value> | |
| 1610 | + <target_value>venting</target_value> | |
| 1611 | + </field> | |
| 1612 | + <field> | |
| 1613 | + <source_value>放大站</source_value> | |
| 1614 | + <target_value>major</target_value> | |
| 1615 | + </field> | |
| 1616 | + </fields> | |
| 1617 | + <cluster_schema/> | |
| 1618 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1619 | + <xloc>149</xloc> | |
| 1620 | + <yloc>491</yloc> | |
| 1621 | + <draw>Y</draw> | |
| 1622 | + </GUI> | |
| 1623 | + </step> | |
| 1624 | + | |
| 1625 | + <step> | |
| 1626 | + <name>班次类型字典 2</name> | |
| 1627 | + <type>ValueMapper</type> | |
| 1628 | + <description/> | |
| 1629 | + <distribute>Y</distribute> | |
| 1630 | + <custom_distribution/> | |
| 1631 | + <copies>1</copies> | |
| 1632 | + <partitioning> | |
| 1633 | + <method>none</method> | |
| 1634 | + <schema_name/> | |
| 1635 | + </partitioning> | |
| 1636 | + <field_to_use>bctype</field_to_use> | |
| 1637 | + <target_field>bctype_code</target_field> | |
| 1638 | + <non_match_default>未知类型</non_match_default> | |
| 1639 | + <fields> | |
| 1640 | + <field> | |
| 1641 | + <source_value>正常班次</source_value> | |
| 1642 | + <target_value>normal</target_value> | |
| 1643 | + </field> | |
| 1644 | + <field> | |
| 1645 | + <source_value>出场</source_value> | |
| 1646 | + <target_value>out</target_value> | |
| 1647 | + </field> | |
| 1648 | + <field> | |
| 1649 | + <source_value>进场</source_value> | |
| 1650 | + <target_value>in</target_value> | |
| 1651 | + </field> | |
| 1652 | + <field> | |
| 1653 | + <source_value>加油</source_value> | |
| 1654 | + <target_value>oil</target_value> | |
| 1655 | + </field> | |
| 1656 | + <field> | |
| 1657 | + <source_value>临加</source_value> | |
| 1658 | + <target_value>temp</target_value> | |
| 1659 | + </field> | |
| 1660 | + <field> | |
| 1661 | + <source_value>区间</source_value> | |
| 1662 | + <target_value>region</target_value> | |
| 1663 | + </field> | |
| 1664 | + <field> | |
| 1665 | + <source_value>放空</source_value> | |
| 1666 | + <target_value>venting</target_value> | |
| 1667 | + </field> | |
| 1668 | + <field> | |
| 1669 | + <source_value>放大站</source_value> | |
| 1670 | + <target_value>major</target_value> | |
| 1671 | + </field> | |
| 1672 | + </fields> | |
| 1673 | + <cluster_schema/> | |
| 1674 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1675 | + <xloc>333</xloc> | |
| 1676 | + <yloc>681</yloc> | |
| 1677 | + <draw>Y</draw> | |
| 1678 | + </GUI> | |
| 1679 | + </step> | |
| 1680 | + | |
| 1681 | + <step> | |
| 1682 | + <name>班次类型字典 3</name> | |
| 1683 | + <type>ValueMapper</type> | |
| 1684 | + <description/> | |
| 1685 | + <distribute>Y</distribute> | |
| 1686 | + <custom_distribution/> | |
| 1687 | + <copies>1</copies> | |
| 1688 | + <partitioning> | |
| 1689 | + <method>none</method> | |
| 1690 | + <schema_name/> | |
| 1691 | + </partitioning> | |
| 1692 | + <field_to_use>bctype</field_to_use> | |
| 1693 | + <target_field>bctype_code</target_field> | |
| 1694 | + <non_match_default>未知类型</non_match_default> | |
| 1695 | + <fields> | |
| 1696 | + <field> | |
| 1697 | + <source_value>正常班次</source_value> | |
| 1698 | + <target_value>normal</target_value> | |
| 1699 | + </field> | |
| 1700 | + <field> | |
| 1701 | + <source_value>出场</source_value> | |
| 1702 | + <target_value>out</target_value> | |
| 1703 | + </field> | |
| 1704 | + <field> | |
| 1705 | + <source_value>进场</source_value> | |
| 1706 | + <target_value>in</target_value> | |
| 1707 | + </field> | |
| 1708 | + <field> | |
| 1709 | + <source_value>加油</source_value> | |
| 1710 | + <target_value>oil</target_value> | |
| 1711 | + </field> | |
| 1712 | + <field> | |
| 1713 | + <source_value>临加</source_value> | |
| 1714 | + <target_value>temp</target_value> | |
| 1715 | + </field> | |
| 1716 | + <field> | |
| 1717 | + <source_value>区间</source_value> | |
| 1718 | + <target_value>region</target_value> | |
| 1719 | + </field> | |
| 1720 | + <field> | |
| 1721 | + <source_value>放空</source_value> | |
| 1722 | + <target_value>venting</target_value> | |
| 1723 | + </field> | |
| 1724 | + <field> | |
| 1725 | + <source_value>放大站</source_value> | |
| 1726 | + <target_value>major</target_value> | |
| 1727 | + </field> | |
| 1728 | + </fields> | |
| 1729 | + <cluster_schema/> | |
| 1730 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1731 | + <xloc>548</xloc> | |
| 1732 | + <yloc>844</yloc> | |
| 1733 | + <draw>Y</draw> | |
| 1734 | + </GUI> | |
| 1735 | + </step> | |
| 1736 | + | |
| 1737 | + <step> | |
| 1738 | + <name>类型修正</name> | |
| 1739 | + <type>SelectValues</type> | |
| 1740 | + <description/> | |
| 1741 | + <distribute>Y</distribute> | |
| 1742 | + <custom_distribution/> | |
| 1743 | + <copies>1</copies> | |
| 1744 | + <partitioning> | |
| 1745 | + <method>none</method> | |
| 1746 | + <schema_name/> | |
| 1747 | + </partitioning> | |
| 1748 | + <fields> <select_unspecified>N</select_unspecified> | |
| 1749 | + <meta> <name>jhlc</name> | |
| 1750 | + <rename>jhlc</rename> | |
| 1751 | + <type>Number</type> | |
| 1752 | + <length>-2</length> | |
| 1753 | + <precision>-2</precision> | |
| 1754 | + <conversion_mask/> | |
| 1755 | + <date_format_lenient>false</date_format_lenient> | |
| 1756 | + <date_format_locale/> | |
| 1757 | + <date_format_timezone/> | |
| 1758 | + <lenient_string_to_number>false</lenient_string_to_number> | |
| 1759 | + <encoding/> | |
| 1760 | + <decimal_symbol/> | |
| 1761 | + <grouping_symbol/> | |
| 1762 | + <currency_symbol/> | |
| 1763 | + <storage_type/> | |
| 1764 | + </meta> <meta> <name>bcsj</name> | |
| 1765 | + <rename>bcsj</rename> | |
| 1766 | + <type>Integer</type> | |
| 1767 | + <length>-2</length> | |
| 1768 | + <precision>-2</precision> | |
| 1769 | + <conversion_mask/> | |
| 1770 | + <date_format_lenient>false</date_format_lenient> | |
| 1771 | + <date_format_locale/> | |
| 1772 | + <date_format_timezone/> | |
| 1773 | + <lenient_string_to_number>false</lenient_string_to_number> | |
| 1774 | + <encoding/> | |
| 1775 | + <decimal_symbol/> | |
| 1776 | + <grouping_symbol/> | |
| 1777 | + <currency_symbol/> | |
| 1778 | + <storage_type/> | |
| 1779 | + </meta> </fields> <cluster_schema/> | |
| 1780 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1781 | + <xloc>146</xloc> | |
| 1782 | + <yloc>768</yloc> | |
| 1783 | + <draw>Y</draw> | |
| 1784 | + </GUI> | |
| 1785 | + </step> | |
| 1786 | + | |
| 1787 | + <step> | |
| 1788 | + <name>计算班次类型</name> | |
| 1789 | + <type>ValueMapper</type> | |
| 1790 | + <description/> | |
| 1791 | + <distribute>Y</distribute> | |
| 1792 | + <custom_distribution/> | |
| 1793 | + <copies>1</copies> | |
| 1794 | + <partitioning> | |
| 1795 | + <method>none</method> | |
| 1796 | + <schema_name/> | |
| 1797 | + </partitioning> | |
| 1798 | + <field_to_use>qdzname</field_to_use> | |
| 1799 | + <target_field>bctype</target_field> | |
| 1800 | + <non_match_default>正常班次</non_match_default> | |
| 1801 | + <fields> | |
| 1802 | + <field> | |
| 1803 | + <source_value>出场</source_value> | |
| 1804 | + <target_value>出场</target_value> | |
| 1805 | + </field> | |
| 1806 | + <field> | |
| 1807 | + <source_value>进场</source_value> | |
| 1808 | + <target_value>进场</target_value> | |
| 1809 | + </field> | |
| 1810 | + </fields> | |
| 1811 | + <cluster_schema/> | |
| 1812 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1813 | + <xloc>1014</xloc> | |
| 1814 | + <yloc>401</yloc> | |
| 1815 | + <draw>Y</draw> | |
| 1816 | + </GUI> | |
| 1817 | + </step> | |
| 1818 | + | |
| 1819 | + <step> | |
| 1820 | + <name>记录关联 (笛卡尔输出)</name> | |
| 1821 | + <type>JoinRows</type> | |
| 1822 | + <description/> | |
| 1823 | + <distribute>Y</distribute> | |
| 1824 | + <custom_distribution/> | |
| 1825 | + <copies>1</copies> | |
| 1826 | + <partitioning> | |
| 1827 | + <method>none</method> | |
| 1828 | + <schema_name/> | |
| 1829 | + </partitioning> | |
| 1830 | + <directory>%%java.io.tmpdir%%</directory> | |
| 1831 | + <prefix>out</prefix> | |
| 1832 | + <cache_size>500</cache_size> | |
| 1833 | + <main/> | |
| 1834 | + <compare> | |
| 1835 | +<condition> | |
| 1836 | + <negated>N</negated> | |
| 1837 | + <leftvalue/> | |
| 1838 | + <function>=</function> | |
| 1839 | + <rightvalue/> | |
| 1840 | + </condition> | |
| 1841 | + </compare> | |
| 1842 | + <cluster_schema/> | |
| 1843 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1844 | + <xloc>310</xloc> | |
| 1845 | + <yloc>133</yloc> | |
| 1846 | + <draw>Y</draw> | |
| 1847 | + </GUI> | |
| 1848 | + </step> | |
| 1849 | + | |
| 1850 | + <step> | |
| 1851 | + <name>过滤记录(发车时间为空)</name> | |
| 1852 | + <type>FilterRows</type> | |
| 1853 | + <description/> | |
| 1854 | + <distribute>Y</distribute> | |
| 1855 | + <custom_distribution/> | |
| 1856 | + <copies>1</copies> | |
| 1857 | + <partitioning> | |
| 1858 | + <method>none</method> | |
| 1859 | + <schema_name/> | |
| 1860 | + </partitioning> | |
| 1861 | +<send_true_to/> | |
| 1862 | +<send_false_to/> | |
| 1863 | + <compare> | |
| 1864 | +<condition> | |
| 1865 | + <negated>N</negated> | |
| 1866 | + <leftvalue>sendtime</leftvalue> | |
| 1867 | + <function>IS NOT NULL</function> | |
| 1868 | + <rightvalue/> | |
| 1869 | + </condition> | |
| 1870 | + </compare> | |
| 1871 | + <cluster_schema/> | |
| 1872 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1873 | + <xloc>571</xloc> | |
| 1874 | + <yloc>44</yloc> | |
| 1875 | + <draw>Y</draw> | |
| 1876 | + </GUI> | |
| 1877 | + </step> | |
| 1878 | + | |
| 1879 | + <step> | |
| 1880 | + <name>进场班次_确定起点站名字</name> | |
| 1881 | + <type>ScriptValueMod</type> | |
| 1882 | + <description/> | |
| 1883 | + <distribute>Y</distribute> | |
| 1884 | + <custom_distribution/> | |
| 1885 | + <copies>1</copies> | |
| 1886 | + <partitioning> | |
| 1887 | + <method>none</method> | |
| 1888 | + <schema_name/> | |
| 1889 | + </partitioning> | |
| 1890 | + <compatible>N</compatible> | |
| 1891 | + <optimizationLevel>9</optimizationLevel> | |
| 1892 | + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 1893 | + <jsScript_name>Script 1</jsScript_name> | |
| 1894 | + <jsScript_script>//Script here

// 添加站点标识
var cc_groups = qdzgroups.split(","); // 所有班次起点站数组
var qdzname_calcu = cc_groups[gno - 2]; // 进场班次的起点站是上一个班次的终点站,这里只有上一个班次的起点站,还需要计算
var startZdtype_calcu = 'B';
var endZdtype_calcu = 'E';</jsScript_script> | |
| 1895 | + </jsScript> </jsScripts> <fields> <field> <name>qdzname_calcu</name> | |
| 1896 | + <rename>qdzname_calcu</rename> | |
| 1897 | + <type>String</type> | |
| 1898 | + <length>-1</length> | |
| 1899 | + <precision>-1</precision> | |
| 1900 | + <replace>N</replace> | |
| 1901 | + </field> <field> <name>startZdtype_calcu</name> | |
| 1902 | + <rename>startZdtype_calcu</rename> | |
| 1903 | + <type>String</type> | |
| 1904 | + <length>-1</length> | |
| 1905 | + <precision>-1</precision> | |
| 1906 | + <replace>N</replace> | |
| 1907 | + </field> <field> <name>endZdtype_calcu</name> | |
| 1908 | + <rename>endZdtype_calcu</rename> | |
| 1909 | + <type>String</type> | |
| 1910 | + <length>-1</length> | |
| 1911 | + <precision>-1</precision> | |
| 1912 | + <replace>N</replace> | |
| 1913 | + </field> </fields> <cluster_schema/> | |
| 1914 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1915 | + <xloc>754</xloc> | |
| 1916 | + <yloc>610</yloc> | |
| 1917 | + <draw>Y</draw> | |
| 1918 | + </GUI> | |
| 1919 | + </step> | |
| 1920 | + | |
| 1921 | + <step> | |
| 1922 | + <name>进场班次数据</name> | |
| 1923 | + <type>Dummy</type> | |
| 1924 | + <description/> | |
| 1925 | + <distribute>Y</distribute> | |
| 1926 | + <custom_distribution/> | |
| 1927 | + <copies>1</copies> | |
| 1928 | + <partitioning> | |
| 1929 | + <method>none</method> | |
| 1930 | + <schema_name/> | |
| 1931 | + </partitioning> | |
| 1932 | + <cluster_schema/> | |
| 1933 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1934 | + <xloc>997</xloc> | |
| 1935 | + <yloc>606</yloc> | |
| 1936 | + <draw>Y</draw> | |
| 1937 | + </GUI> | |
| 1938 | + </step> | |
| 1939 | + | |
| 1940 | + <step> | |
| 1941 | + <name>插入/更新bsth_c_s_ttinfo_detail</name> | |
| 1942 | + <type>InsertUpdate</type> | |
| 1943 | + <description/> | |
| 1944 | + <distribute>Y</distribute> | |
| 1945 | + <custom_distribution/> | |
| 1946 | + <copies>1</copies> | |
| 1947 | + <partitioning> | |
| 1948 | + <method>none</method> | |
| 1949 | + <schema_name/> | |
| 1950 | + </partitioning> | |
| 1951 | + <connection>bus_control_variable</connection> | |
| 1952 | + <commit>100</commit> | |
| 1953 | + <update_bypassed>N</update_bypassed> | |
| 1954 | + <lookup> | |
| 1955 | + <schema/> | |
| 1956 | + <table>bsth_c_s_ttinfo_detail</table> | |
| 1957 | + <key> | |
| 1958 | + <name>xlid</name> | |
| 1959 | + <field>xl</field> | |
| 1960 | + <condition>=</condition> | |
| 1961 | + <name2/> | |
| 1962 | + </key> | |
| 1963 | + <key> | |
| 1964 | + <name>ttid</name> | |
| 1965 | + <field>ttinfo</field> | |
| 1966 | + <condition>=</condition> | |
| 1967 | + <name2/> | |
| 1968 | + </key> | |
| 1969 | + <key> | |
| 1970 | + <name>lpid</name> | |
| 1971 | + <field>lp</field> | |
| 1972 | + <condition>=</condition> | |
| 1973 | + <name2/> | |
| 1974 | + </key> | |
| 1975 | + <key> | |
| 1976 | + <name>fcno</name> | |
| 1977 | + <field>fcno</field> | |
| 1978 | + <condition>=</condition> | |
| 1979 | + <name2/> | |
| 1980 | + </key> | |
| 1981 | + <key> | |
| 1982 | + <name>bcs</name> | |
| 1983 | + <field>bcs</field> | |
| 1984 | + <condition>=</condition> | |
| 1985 | + <name2/> | |
| 1986 | + </key> | |
| 1987 | + <value> | |
| 1988 | + <name>lp</name> | |
| 1989 | + <rename>lpid</rename> | |
| 1990 | + <update>Y</update> | |
| 1991 | + </value> | |
| 1992 | + <value> | |
| 1993 | + <name>bc_type</name> | |
| 1994 | + <rename>bctype_code</rename> | |
| 1995 | + <update>Y</update> | |
| 1996 | + </value> | |
| 1997 | + <value> | |
| 1998 | + <name>bcs</name> | |
| 1999 | + <rename>bcs</rename> | |
| 2000 | + <update>Y</update> | |
| 2001 | + </value> | |
| 2002 | + <value> | |
| 2003 | + <name>bcsj</name> | |
| 2004 | + <rename>bcsj</rename> | |
| 2005 | + <update>Y</update> | |
| 2006 | + </value> | |
| 2007 | + <value> | |
| 2008 | + <name>fcno</name> | |
| 2009 | + <rename>fcno</rename> | |
| 2010 | + <update>Y</update> | |
| 2011 | + </value> | |
| 2012 | + <value> | |
| 2013 | + <name>jhlc</name> | |
| 2014 | + <rename>jhlc</rename> | |
| 2015 | + <update>Y</update> | |
| 2016 | + </value> | |
| 2017 | + <value> | |
| 2018 | + <name>fcsj</name> | |
| 2019 | + <rename>sendtime</rename> | |
| 2020 | + <update>Y</update> | |
| 2021 | + </value> | |
| 2022 | + <value> | |
| 2023 | + <name>ttinfo</name> | |
| 2024 | + <rename>ttid</rename> | |
| 2025 | + <update>Y</update> | |
| 2026 | + </value> | |
| 2027 | + <value> | |
| 2028 | + <name>xl</name> | |
| 2029 | + <rename>xlid</rename> | |
| 2030 | + <update>Y</update> | |
| 2031 | + </value> | |
| 2032 | + <value> | |
| 2033 | + <name>qdz</name> | |
| 2034 | + <rename>qdzid</rename> | |
| 2035 | + <update>Y</update> | |
| 2036 | + </value> | |
| 2037 | + <value> | |
| 2038 | + <name>zdz</name> | |
| 2039 | + <rename>zdzid</rename> | |
| 2040 | + <update>Y</update> | |
| 2041 | + </value> | |
| 2042 | + <value> | |
| 2043 | + <name>xl_dir</name> | |
| 2044 | + <rename>sxx</rename> | |
| 2045 | + <update>Y</update> | |
| 2046 | + </value> | |
| 2047 | + </lookup> | |
| 2048 | + <cluster_schema/> | |
| 2049 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2050 | + <xloc>143</xloc> | |
| 2051 | + <yloc>860</yloc> | |
| 2052 | + <draw>Y</draw> | |
| 2053 | + </GUI> | |
| 2054 | + </step> | |
| 2055 | + | |
| 2056 | + <step> | |
| 2057 | + <name>插入/更新bsth_c_s_ttinfo_detail 2</name> | |
| 2058 | + <type>InsertUpdate</type> | |
| 2059 | + <description/> | |
| 2060 | + <distribute>Y</distribute> | |
| 2061 | + <custom_distribution/> | |
| 2062 | + <copies>1</copies> | |
| 2063 | + <partitioning> | |
| 2064 | + <method>none</method> | |
| 2065 | + <schema_name/> | |
| 2066 | + </partitioning> | |
| 2067 | + <connection>bus_control_variable</connection> | |
| 2068 | + <commit>100</commit> | |
| 2069 | + <update_bypassed>N</update_bypassed> | |
| 2070 | + <lookup> | |
| 2071 | + <schema/> | |
| 2072 | + <table>bsth_c_s_ttinfo_detail</table> | |
| 2073 | + <key> | |
| 2074 | + <name>xlid</name> | |
| 2075 | + <field>xl</field> | |
| 2076 | + <condition>=</condition> | |
| 2077 | + <name2/> | |
| 2078 | + </key> | |
| 2079 | + <key> | |
| 2080 | + <name>ttid</name> | |
| 2081 | + <field>ttinfo</field> | |
| 2082 | + <condition>=</condition> | |
| 2083 | + <name2/> | |
| 2084 | + </key> | |
| 2085 | + <key> | |
| 2086 | + <name>lpid</name> | |
| 2087 | + <field>lp</field> | |
| 2088 | + <condition>=</condition> | |
| 2089 | + <name2/> | |
| 2090 | + </key> | |
| 2091 | + <key> | |
| 2092 | + <name>fcno</name> | |
| 2093 | + <field>fcno</field> | |
| 2094 | + <condition>=</condition> | |
| 2095 | + <name2/> | |
| 2096 | + </key> | |
| 2097 | + <key> | |
| 2098 | + <name>bcs</name> | |
| 2099 | + <field>bcs</field> | |
| 2100 | + <condition>=</condition> | |
| 2101 | + <name2/> | |
| 2102 | + </key> | |
| 2103 | + <value> | |
| 2104 | + <name>tcc</name> | |
| 2105 | + <rename>qdzid</rename> | |
| 2106 | + <update>Y</update> | |
| 2107 | + </value> | |
| 2108 | + <value> | |
| 2109 | + <name>zdz</name> | |
| 2110 | + <rename>zdzid</rename> | |
| 2111 | + <update>Y</update> | |
| 2112 | + </value> | |
| 2113 | + <value> | |
| 2114 | + <name>xl</name> | |
| 2115 | + <rename>xlid</rename> | |
| 2116 | + <update>Y</update> | |
| 2117 | + </value> | |
| 2118 | + <value> | |
| 2119 | + <name>ttinfo</name> | |
| 2120 | + <rename>ttid</rename> | |
| 2121 | + <update>Y</update> | |
| 2122 | + </value> | |
| 2123 | + <value> | |
| 2124 | + <name>xl_dir</name> | |
| 2125 | + <rename>sxx</rename> | |
| 2126 | + <update>Y</update> | |
| 2127 | + </value> | |
| 2128 | + <value> | |
| 2129 | + <name>lp</name> | |
| 2130 | + <rename>lpid</rename> | |
| 2131 | + <update>Y</update> | |
| 2132 | + </value> | |
| 2133 | + <value> | |
| 2134 | + <name>jhlc</name> | |
| 2135 | + <rename>out_mileage</rename> | |
| 2136 | + <update>Y</update> | |
| 2137 | + </value> | |
| 2138 | + <value> | |
| 2139 | + <name>fcsj</name> | |
| 2140 | + <rename>sendtime</rename> | |
| 2141 | + <update>Y</update> | |
| 2142 | + </value> | |
| 2143 | + <value> | |
| 2144 | + <name>bcsj</name> | |
| 2145 | + <rename>out_time</rename> | |
| 2146 | + <update>Y</update> | |
| 2147 | + </value> | |
| 2148 | + <value> | |
| 2149 | + <name>bcs</name> | |
| 2150 | + <rename>bcs</rename> | |
| 2151 | + <update>Y</update> | |
| 2152 | + </value> | |
| 2153 | + <value> | |
| 2154 | + <name>fcno</name> | |
| 2155 | + <rename>fcno</rename> | |
| 2156 | + <update>Y</update> | |
| 2157 | + </value> | |
| 2158 | + <value> | |
| 2159 | + <name>bc_type</name> | |
| 2160 | + <rename>bctype_code</rename> | |
| 2161 | + <update>Y</update> | |
| 2162 | + </value> | |
| 2163 | + </lookup> | |
| 2164 | + <cluster_schema/> | |
| 2165 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2166 | + <xloc>340</xloc> | |
| 2167 | + <yloc>890</yloc> | |
| 2168 | + <draw>Y</draw> | |
| 2169 | + </GUI> | |
| 2170 | + </step> | |
| 2171 | + | |
| 2172 | + <step> | |
| 2173 | + <name>插入/更新bsth_c_s_ttinfo_detail 3</name> | |
| 2174 | + <type>InsertUpdate</type> | |
| 2175 | + <description/> | |
| 2176 | + <distribute>Y</distribute> | |
| 2177 | + <custom_distribution/> | |
| 2178 | + <copies>1</copies> | |
| 2179 | + <partitioning> | |
| 2180 | + <method>none</method> | |
| 2181 | + <schema_name/> | |
| 2182 | + </partitioning> | |
| 2183 | + <connection>bus_control_variable</connection> | |
| 2184 | + <commit>100</commit> | |
| 2185 | + <update_bypassed>N</update_bypassed> | |
| 2186 | + <lookup> | |
| 2187 | + <schema/> | |
| 2188 | + <table>bsth_c_s_ttinfo_detail</table> | |
| 2189 | + <key> | |
| 2190 | + <name>xlid</name> | |
| 2191 | + <field>xl</field> | |
| 2192 | + <condition>=</condition> | |
| 2193 | + <name2/> | |
| 2194 | + </key> | |
| 2195 | + <key> | |
| 2196 | + <name>ttid</name> | |
| 2197 | + <field>ttinfo</field> | |
| 2198 | + <condition>=</condition> | |
| 2199 | + <name2/> | |
| 2200 | + </key> | |
| 2201 | + <key> | |
| 2202 | + <name>lpid</name> | |
| 2203 | + <field>lp</field> | |
| 2204 | + <condition>=</condition> | |
| 2205 | + <name2/> | |
| 2206 | + </key> | |
| 2207 | + <key> | |
| 2208 | + <name>fcno</name> | |
| 2209 | + <field>fcno</field> | |
| 2210 | + <condition>=</condition> | |
| 2211 | + <name2/> | |
| 2212 | + </key> | |
| 2213 | + <key> | |
| 2214 | + <name>bcs</name> | |
| 2215 | + <field>bcs</field> | |
| 2216 | + <condition>=</condition> | |
| 2217 | + <name2/> | |
| 2218 | + </key> | |
| 2219 | + <value> | |
| 2220 | + <name>fcno</name> | |
| 2221 | + <rename>fcno</rename> | |
| 2222 | + <update>Y</update> | |
| 2223 | + </value> | |
| 2224 | + <value> | |
| 2225 | + <name>bcs</name> | |
| 2226 | + <rename>bcs</rename> | |
| 2227 | + <update>Y</update> | |
| 2228 | + </value> | |
| 2229 | + <value> | |
| 2230 | + <name>xl</name> | |
| 2231 | + <rename>xlid</rename> | |
| 2232 | + <update>Y</update> | |
| 2233 | + </value> | |
| 2234 | + <value> | |
| 2235 | + <name>ttinfo</name> | |
| 2236 | + <rename>ttid</rename> | |
| 2237 | + <update>Y</update> | |
| 2238 | + </value> | |
| 2239 | + <value> | |
| 2240 | + <name>lp</name> | |
| 2241 | + <rename>lpid</rename> | |
| 2242 | + <update>Y</update> | |
| 2243 | + </value> | |
| 2244 | + <value> | |
| 2245 | + <name>bc_type</name> | |
| 2246 | + <rename>bctype_code</rename> | |
| 2247 | + <update>Y</update> | |
| 2248 | + </value> | |
| 2249 | + <value> | |
| 2250 | + <name>bcsj</name> | |
| 2251 | + <rename>parade_time</rename> | |
| 2252 | + <update>Y</update> | |
| 2253 | + </value> | |
| 2254 | + <value> | |
| 2255 | + <name>jhlc</name> | |
| 2256 | + <rename>parade_mileage</rename> | |
| 2257 | + <update>Y</update> | |
| 2258 | + </value> | |
| 2259 | + <value> | |
| 2260 | + <name>fcsj</name> | |
| 2261 | + <rename>sendtime</rename> | |
| 2262 | + <update>Y</update> | |
| 2263 | + </value> | |
| 2264 | + <value> | |
| 2265 | + <name>xl_dir</name> | |
| 2266 | + <rename>sxx</rename> | |
| 2267 | + <update>Y</update> | |
| 2268 | + </value> | |
| 2269 | + <value> | |
| 2270 | + <name>qdz</name> | |
| 2271 | + <rename>qdzid</rename> | |
| 2272 | + <update>Y</update> | |
| 2273 | + </value> | |
| 2274 | + <value> | |
| 2275 | + <name>tcc</name> | |
| 2276 | + <rename>zdzid</rename> | |
| 2277 | + <update>Y</update> | |
| 2278 | + </value> | |
| 2279 | + </lookup> | |
| 2280 | + <cluster_schema/> | |
| 2281 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2282 | + <xloc>770</xloc> | |
| 2283 | + <yloc>923</yloc> | |
| 2284 | + <draw>Y</draw> | |
| 2285 | + </GUI> | |
| 2286 | + </step> | |
| 2287 | + | |
| 2288 | + <step_error_handling> | |
| 2289 | + </step_error_handling> | |
| 2290 | + <slave-step-copy-partition-distribution> | |
| 2291 | +</slave-step-copy-partition-distribution> | |
| 2292 | + <slave_transformation>N</slave_transformation> | |
| 2293 | + | |
| 2294 | +</transformation> | ... | ... |
src/main/resources/static/pages/scheduleApp/module/core/scheduleRuleManage/detail.html
| ... | ... | @@ -53,7 +53,7 @@ |
| 53 | 53 | <label class="col-md-2 control-label">车辆*:</label> |
| 54 | 54 | <div class="col-md-3"> |
| 55 | 55 | <input type="text" class="form-control" name="cl" |
| 56 | - ng-model="ctrl.scheduleRuleManageForDetail.cl.insideCode" readonly/> | |
| 56 | + ng-model="ctrl.scheduleRuleManageForDetail.carConfigInfo.cl.insideCode" readonly/> | |
| 57 | 57 | </div> |
| 58 | 58 | </div> |
| 59 | 59 | ... | ... |
src/main/resources/static/pages/scheduleApp/module/core/scheduleRuleManage/edit.html
| ... | ... | @@ -64,10 +64,10 @@ |
| 64 | 64 | <sa-Select2 model="ctrl.scheduleRuleManageForSave" |
| 65 | 65 | name="cl" |
| 66 | 66 | required="true" |
| 67 | - type="cl" | |
| 67 | + type="ccl" | |
| 68 | 68 | modelcolname1="cl_id" |
| 69 | 69 | datacolname1="id" |
| 70 | - showcolname="insideCode" | |
| 70 | + showcolname="nbbm" | |
| 71 | 71 | placeholder="请输拼音..."> |
| 72 | 72 | </sa-Select2> |
| 73 | 73 | </div> | ... | ... |
src/main/resources/static/pages/scheduleApp/module/core/scheduleRuleManage/form.html
| ... | ... | @@ -64,10 +64,10 @@ |
| 64 | 64 | <sa-Select2 model="ctrl.scheduleRuleManageForSave" |
| 65 | 65 | name="cl" |
| 66 | 66 | required="true" |
| 67 | - type="cl" | |
| 67 | + type="ccl" | |
| 68 | 68 | modelcolname1="cl_id" |
| 69 | 69 | datacolname1="id" |
| 70 | - showcolname="insideCode" | |
| 70 | + showcolname="nbbm" | |
| 71 | 71 | placeholder="请输拼音..."> |
| 72 | 72 | </sa-Select2> |
| 73 | 73 | </div> | ... | ... |
src/main/resources/static/pages/scheduleApp/module/core/scheduleRuleManage/list.html
| 1 | 1 | <div ng-controller="ScheduleRuleManageListCtrl as ctrl"> |
| 2 | - <table class="table table-striped table-bordered table-hover table-checkable order-column"> | |
| 3 | - <thead> | |
| 4 | - <tr role="row" class="heading"> | |
| 5 | - <th>序号</th> | |
| 6 | - <th>线路</th> | |
| 7 | - <th>修改时间</th> | |
| 8 | - <th>启用日期</th> | |
| 9 | - <th>车辆</th> | |
| 10 | - <th>翻版模式</th> | |
| 11 | - <th>起始路牌</th> | |
| 12 | - <th>路牌范围</th> | |
| 13 | - <th>起始人员</th> | |
| 14 | - <th>人员范围</th> | |
| 15 | - <th width="14%">操作</th> | |
| 16 | - </tr> | |
| 17 | - <tr role="row" class="filter"> | |
| 18 | - <td></td> | |
| 19 | - <td> | |
| 20 | - <div style="width: 150px"> | |
| 2 | + <div style="width: 100%; height: 100%; overflow: auto"> | |
| 3 | + <table class="fixTable table table-striped table-bordered table-hover table-checkable order-column"> | |
| 4 | + <thead> | |
| 5 | + <tr role="row" class="heading"> | |
| 6 | + <th style="width: 40pt;">序号</th> | |
| 7 | + <th style="width: 115pt;">线路</th> | |
| 8 | + <th style="width: 115pt;">修改时间</th> | |
| 9 | + <th style="width: 70pt;">启用日期</th> | |
| 10 | + <th>车辆</th> | |
| 11 | + <th>翻版模式</th> | |
| 12 | + <th>起始路牌</th> | |
| 13 | + <th>路牌范围</th> | |
| 14 | + <th>起始人员</th> | |
| 15 | + <th>人员范围</th> | |
| 16 | + <th style="width: 115pt;">操作</th> | |
| 17 | + </tr> | |
| 18 | + <tr role="row" class="filter"> | |
| 19 | + <td></td> | |
| 20 | + <td> | |
| 21 | 21 | <sa-Select2 model="ctrl.searchCondition()" |
| 22 | 22 | type="xl" |
| 23 | 23 | modelcolname1="xl.id_eq" |
| ... | ... | @@ -25,79 +25,70 @@ |
| 25 | 25 | showcolname="name" |
| 26 | 26 | placeholder="请输拼音..."> |
| 27 | 27 | </sa-Select2> |
| 28 | - </div> | |
| 29 | - </td> | |
| 30 | - <td></td> | |
| 31 | - <td></td> | |
| 32 | - <td> | |
| 33 | - <div style="width: 150px"> | |
| 34 | - <sa-Select2 model="ctrl.searchCondition()" | |
| 35 | - type="cl" | |
| 36 | - modelcolname1="cl.id_eq" | |
| 37 | - datacolname1="id" | |
| 38 | - showcolname="insideCode" | |
| 39 | - placeholder="请输拼音..."> | |
| 40 | - </sa-Select2> | |
| 41 | - </div> | |
| 42 | - </td> | |
| 43 | - <td></td> | |
| 44 | - <td></td> | |
| 45 | - <td></td> | |
| 46 | - <td></td> | |
| 47 | - <td></td> | |
| 48 | - <td> | |
| 49 | - <button class="btn btn-sm green btn-outline filter-submit margin-bottom" | |
| 50 | - ng-click="ctrl.pageChanaged()"> | |
| 51 | - <i class="fa fa-search"></i> 搜索</button> | |
| 28 | + </td> | |
| 29 | + <td></td> | |
| 30 | + <td></td> | |
| 31 | + <td></td> | |
| 32 | + <td></td> | |
| 33 | + <td></td> | |
| 34 | + <td></td> | |
| 35 | + <td></td> | |
| 36 | + <td></td> | |
| 37 | + <td> | |
| 38 | + <button class="btn btn-sm green btn-outline filter-submit margin-bottom" | |
| 39 | + ng-click="ctrl.pageChanaged()"> | |
| 40 | + <i class="fa fa-search"></i> 搜索</button> | |
| 41 | + | |
| 42 | + <button class="btn btn-sm red btn-outline filter-cancel" | |
| 43 | + ng-click="ctrl.resetSearchCondition()"> | |
| 44 | + <i class="fa fa-times"></i> 重置</button> | |
| 45 | + </td> | |
| 52 | 46 | |
| 53 | - <button class="btn btn-sm red btn-outline filter-cancel" | |
| 54 | - ng-click="ctrl.resetSearchCondition()"> | |
| 55 | - <i class="fa fa-times"></i> 重置</button> | |
| 56 | - </td> | |
| 47 | + </tr> | |
| 48 | + </thead> | |
| 49 | + <tbody> | |
| 50 | + <tr ng-repeat="info in ctrl.pageInfo.infos" class="odd gradeX"> | |
| 51 | + <td> | |
| 52 | + <span ng-bind="$index + 1"></span> | |
| 53 | + </td> | |
| 54 | + <td> | |
| 55 | + <span ng-bind="info.xl.name"></span> | |
| 56 | + </td> | |
| 57 | + <td> | |
| 58 | + <span ng-bind="info.updateDate | date: 'yyyy-MM-dd HH:mm:ss'"></span> | |
| 59 | + </td> | |
| 60 | + <td> | |
| 61 | + <span ng-bind="info.qyrq | date: 'yyyy-MM-dd '"></span> | |
| 62 | + </td> | |
| 63 | + <td> | |
| 64 | + <span ng-bind="info.carConfigInfo.cl.insideCode"></span> | |
| 65 | + </td> | |
| 66 | + <td> | |
| 67 | + <span ng-bind="info.fbgs"></span> | |
| 68 | + </td> | |
| 69 | + <td> | |
| 70 | + <span ng-bind="info.lpStart"></span> | |
| 71 | + </td> | |
| 72 | + <td> | |
| 73 | + <span ng-bind="info.lpNames"></span> | |
| 74 | + </td> | |
| 75 | + <td> | |
| 76 | + <span ng-bind="info.ryStart"></span> | |
| 77 | + </td> | |
| 78 | + <td> | |
| 79 | + <span ng-bind="info.ryDbbms"></span> | |
| 80 | + </td> | |
| 81 | + <td> | |
| 82 | + <!--<a href="details.html?lineId={{obj.id}}" class="btn default blue-stripe btn-sm"> 详细 </a>--> | |
| 83 | + <!--<a href="edit.html?lineId={{obj.id}}" class="btn default blue-stripe btn-sm"> 修改 </a>--> | |
| 84 | + <a ui-sref="scheduleRuleManage_detail({id : info.id})" class="btn default blue-stripe btn-sm"> 详细 </a> | |
| 85 | + <a ui-sref="scheduleRuleManage_edit({id : info.id})" class="btn default blue-stripe btn-sm"> 修改 </a> | |
| 86 | + </td> | |
| 87 | + </tr> | |
| 88 | + </tbody> | |
| 89 | + </table> | |
| 90 | + </div> | |
| 57 | 91 | |
| 58 | - </tr> | |
| 59 | - </thead> | |
| 60 | - <tbody> | |
| 61 | - <tr ng-repeat="info in ctrl.pageInfo.infos" class="odd gradeX"> | |
| 62 | - <td> | |
| 63 | - <span ng-bind="$index + 1"></span> | |
| 64 | - </td> | |
| 65 | - <td> | |
| 66 | - <span ng-bind="info.xl.name"></span> | |
| 67 | - </td> | |
| 68 | - <td> | |
| 69 | - <span ng-bind="info.updateDate | date: 'yyyy-MM-dd HH:mm:ss'"></span> | |
| 70 | - </td> | |
| 71 | - <td> | |
| 72 | - <span ng-bind="info.qyrq | date: 'yyyy-MM-dd '"></span> | |
| 73 | - </td> | |
| 74 | - <td> | |
| 75 | - <span ng-bind="info.cl.insideCode"></span> | |
| 76 | - </td> | |
| 77 | - <td> | |
| 78 | - <span ng-bind="info.fbgs"></span> | |
| 79 | - </td> | |
| 80 | - <td> | |
| 81 | - <span ng-bind="info.lpStart"></span> | |
| 82 | - </td> | |
| 83 | - <td> | |
| 84 | - <span ng-bind="info.lpNames"></span> | |
| 85 | - </td> | |
| 86 | - <td> | |
| 87 | - <span ng-bind="info.ryStart"></span> | |
| 88 | - </td> | |
| 89 | - <td> | |
| 90 | - <span ng-bind="info.ryDbbms"></span> | |
| 91 | - </td> | |
| 92 | - <td> | |
| 93 | - <!--<a href="details.html?lineId={{obj.id}}" class="btn default blue-stripe btn-sm"> 详细 </a>--> | |
| 94 | - <!--<a href="edit.html?lineId={{obj.id}}" class="btn default blue-stripe btn-sm"> 修改 </a>--> | |
| 95 | - <a ui-sref="scheduleRuleManage_detail({id : info.id})" class="btn default blue-stripe btn-sm"> 详细 </a> | |
| 96 | - <a ui-sref="scheduleRuleManage_edit({id : info.id})" class="btn default blue-stripe btn-sm"> 修改 </a> | |
| 97 | - </td> | |
| 98 | - </tr> | |
| 99 | - </tbody> | |
| 100 | - </table> | |
| 101 | 92 | |
| 102 | 93 | <div style="text-align: right;"> |
| 103 | 94 | <uib-pagination total-items="ctrl.pageInfo.totalItems" | ... | ... |
src/main/resources/static/pages/scheduleApp/module/core/scheduleRuleManage/scheduleRuleManage.js
| ... | ... | @@ -168,8 +168,8 @@ angular.module('ScheduleApp').controller('ScheduleRuleManageFormCtrl', ['Schedul |
| 168 | 168 | self.scheduleRuleManageForSave["xl"] = {}; |
| 169 | 169 | self.scheduleRuleManageForSave.xl["id"] = self.scheduleRuleManageForSave["xl_id"]; |
| 170 | 170 | delete self.scheduleRuleManageForSave["xl_id"]; |
| 171 | - self.scheduleRuleManageForSave["cl"] = {}; | |
| 172 | - self.scheduleRuleManageForSave.cl["id"] = self.scheduleRuleManageForSave["cl_id"]; | |
| 171 | + self.scheduleRuleManageForSave["carConfigInfo"] = {}; | |
| 172 | + self.scheduleRuleManageForSave.carConfigInfo["id"] = self.scheduleRuleManageForSave["cl_id"]; | |
| 173 | 173 | delete self.scheduleRuleManageForSave["cl_id"]; |
| 174 | 174 | |
| 175 | 175 | scheduleRuleManageService.saveDetail(self.scheduleRuleManageForSave).then( | ... | ... |
src/main/resources/static/pages/scheduleApp/module/core/timeTableManage/list.html
| ... | ... | @@ -65,7 +65,7 @@ |
| 65 | 65 | <span ng-bind="info.updateDate | date: 'yyyy-MM-dd HH:mm:ss'"></span> |
| 66 | 66 | </td> |
| 67 | 67 | <td> |
| 68 | - <a ui-sref="timeTableDetailInfoManage" class="btn default blue-stripe btn-sm"> 编辑 </a> | |
| 68 | + <a ui-sref="timeTableDetailInfoManage({ttid : info.id})" class="btn default blue-stripe btn-sm"> 编辑 </a> | |
| 69 | 69 | <a ng-click="ctrl.importData($index)" class="btn default blue-stripe btn-sm"> 导入 </a> |
| 70 | 70 | <a href="javascript:" class="btn default blue-stripe btn-sm"> 导出 </a> |
| 71 | 71 | <a href="javascript:" class="btn default blue-stripe btn-sm"> 模版 </a> | ... | ... |
src/main/resources/static/pages/scheduleApp/module/core/timeTableManage/timeTableDetailManage.js
| 1 | -angular.module('ScheduleApp').controller('TimeTableDetailManageCtrl', [function() { | |
| 1 | + | |
| 2 | +angular.module('ScheduleApp').factory('TimeTableDetailManageService', ['TimeTableDetailManageService_g', function(service) { | |
| 3 | + | |
| 4 | + return { | |
| 5 | + /** | |
| 6 | + * 获取明细信息。 | |
| 7 | + * @param id 车辆id | |
| 8 | + * @return 返回一个 promise | |
| 9 | + */ | |
| 10 | + getDetail: function(id) { | |
| 11 | + var params = {id: id}; | |
| 12 | + return service.rest.get(params).$promise; | |
| 13 | + }, | |
| 14 | + /** | |
| 15 | + * 保存信息。 | |
| 16 | + * @param obj 车辆详细信息 | |
| 17 | + * @return 返回一个 promise | |
| 18 | + */ | |
| 19 | + saveDetail: function(obj) { | |
| 20 | + return service.rest.save(obj).$promise; | |
| 21 | + }, | |
| 22 | + /** | |
| 23 | + * 获取编辑用的时刻表明细数据。 | |
| 24 | + * @param ttid 时刻表id | |
| 25 | + */ | |
| 26 | + getEditInfo: function(ttid) { | |
| 27 | + var params = {ttid : ttid}; | |
| 28 | + return service.edit.list(params).$promise; | |
| 29 | + } | |
| 30 | + }; | |
| 31 | + | |
| 32 | +}]); | |
| 33 | + | |
| 34 | +angular.module('ScheduleApp').controller('TimeTableDetailManageCtrl', ['TimeTableDetailManageService', '$stateParams', function(timeTableDetailManageService, $stateParams) { | |
| 2 | 35 | var self = this; |
| 36 | + var ttid = $stateParams.ttid; // 获取传过来的时刻表id | |
| 37 | + | |
| 38 | + // 载入待编辑的时刻表明细数据 | |
| 39 | + timeTableDetailManageService.getEditInfo(ttid).then( | |
| 40 | + function(result) { | |
| 41 | + // TODO;获取数据待展示 | |
| 42 | + alert(result); | |
| 43 | + }, | |
| 44 | + function(result) { | |
| 45 | + alert("出错啦!"); | |
| 46 | + } | |
| 47 | + ); | |
| 48 | + | |
| 49 | + | |
| 3 | 50 | |
| 51 | + // TODO: | |
| 4 | 52 | |
| 5 | 53 | // 模拟799路的时刻信息 |
| 6 | 54 | self.detailHeads = [ |
| ... | ... | @@ -73,4 +121,52 @@ angular.module('ScheduleApp').controller('TimeTableDetailManageCtrl', [function( |
| 73 | 121 | |
| 74 | 122 | |
| 75 | 123 | |
| 124 | +}]); | |
| 125 | + | |
| 126 | +angular.module('ScheduleApp').controller('TimeTableDetailManageFormCtrl', ['TimeTableDetailManageService', '$stateParams', '$state', function(timeTableDetailManageService, $stateParams, $state) { | |
| 127 | + var self = this; | |
| 128 | + | |
| 129 | + // 欲保存的busInfo信息,绑定 | |
| 130 | + self.TimeTableDetailForSave = {}; | |
| 131 | + | |
| 132 | + // 获取传过来的id,有的话就是修改,获取一遍数据 | |
| 133 | + var id = $stateParams.id; | |
| 134 | + if (id) { | |
| 135 | + self.TimeTableDetailForSave.id = id; | |
| 136 | + timeTableDetailManageService.getDetail(id).then( | |
| 137 | + function(result) { | |
| 138 | + var key; | |
| 139 | + for (key in result) { | |
| 140 | + self.TimeTableDetailForSave[key] = result[key]; | |
| 141 | + } | |
| 142 | + }, | |
| 143 | + function(result) { | |
| 144 | + alert("出错啦!"); | |
| 145 | + } | |
| 146 | + ); | |
| 147 | + } | |
| 148 | + | |
| 149 | + // 提交方法 | |
| 150 | + self.submit = function() { | |
| 151 | + console.log(self.TimeTableDetailForSave); | |
| 152 | + //if (self.busInfoForSave) { | |
| 153 | + // delete $stateParams.id; | |
| 154 | + //} | |
| 155 | + timeTableDetailManageService.saveDetail(self.TimeTableDetailForSave).then( | |
| 156 | + function(result) { | |
| 157 | + // TODO:弹出框方式以后改 | |
| 158 | + if (result.status == 'SUCCESS') { | |
| 159 | + alert("保存成功!"); | |
| 160 | + //$state.go("busInfoManage"); | |
| 161 | + } else { | |
| 162 | + alert("保存异常!"); | |
| 163 | + } | |
| 164 | + }, | |
| 165 | + function(result) { | |
| 166 | + // TODO:弹出框方式以后改 | |
| 167 | + alert("出错啦!"); | |
| 168 | + } | |
| 169 | + ); | |
| 170 | + }; | |
| 171 | + | |
| 76 | 172 | }]); |
| 77 | 173 | \ No newline at end of file | ... | ... |
src/main/resources/static/pages/scheduleApp/module/core/timeTableManage/timeTableInfoManage.js deleted
100644 → 0
| 1 | -angular.module('ScheduleApp').controller('TimeTableInfoManageCtrl', [function() { | |
| 2 | - var self = this; | |
| 3 | - | |
| 4 | - | |
| 5 | - // 模拟799路的时刻信息 | |
| 6 | - self.detailHeads = [ | |
| 7 | - '路牌', '出场', | |
| 8 | - '华高新村1', '陆家嘴地铁站1', '华高新村2', '陆家嘴地铁站2', | |
| 9 | - '华高新村3', '陆家嘴地铁站3', '华高新村4', '陆家嘴地铁站4', | |
| 10 | - '华高新村5', '陆家嘴地铁站5', '华高新村6', '陆家嘴地铁站6', | |
| 11 | - '华高新村7', '陆家嘴地铁站7', '华高新村8', '陆家嘴地铁站8', | |
| 12 | - '进场', '空驶班次数/里程', '运营班次数/里程' | |
| 13 | - ]; | |
| 14 | - | |
| 15 | - self.detailInfos = [ | |
| 16 | - ['1', '07:01', '', '', '07:11', '08:01', '09:22', '10:12', '11:34', '12:24', '13:34', '14:24', '15:42', '16:32', '18:00', '18:50', '', '', '19:46', '2/1.6', '12/198'], | |
| 17 | - ['2', '06:51', '07:01', '07:51', '09:12', '10:02', '11:22', '12:12', '13:22', '14:12', '15:36', '16:26', '17:55', '18:45', '20:05', '20:55', '', '', '21:51', '2/1.6', '14/231'], | |
| 18 | - ['3', '05:56', '06:06', '06:56', '08:05', '08:55', '10:34', '11:24', '12:20', '', '', '17:01', '17:11', '18:01', '19:10', '19:58', '21:16', '22:08', '23:04', '4/3.2', '12/198'], | |
| 19 | - ['4', '06:20', '06:30', '07:20', '08:20', '09:10', '11:02', '08:38', '12:46', '13:36', '12:57', '15:44', '17:20', '18:10', '19:24', '20:14', '', '', '21:10', '2/1.6', '14/231'], | |
| 20 | - ['5', '07:21', '', '', '07:31', '08:21', '09:46', '10:36', '11:58', '12:48', '13:36', '14:46', '16:06', '16:56', '18:18', '19:08', '', '', '20:04', '2/1.6', '12/198'], | |
| 21 | - ['6', '06:36', '06:46', '07:36', '08:40', '09:30', '10:58', '11:48', '12:58', '13:48', '15:18', '16:08', '17:40', '18:30', '19:48', '20:38', '21:50', '22:49', '23:45', '2/1.6', '16/264'], | |
| 22 | - ['7', '07:30', '', '', '07:40', '08:31', '09:58', '10:48', '12:10', '13:00', '13:56', '16:20', '16:30', '17:20', '18:30', '19:20', '20:41', '21:31', '22:27', '4/3.2', '12/198'], | |
| 23 | - ['8', '07:46', '', '', '07:56', '08:46', '10:22', '11:12', '12:34', '13:24', '14:20', '16:38', '16:48', '17:38', '18:49', '19:38', '21:00', '21:50', '22:46', '4/3.2', '12/198'], | |
| 24 | - ['9', '07:38', '', '', '07:48', '08:38', '10:10', '10:00', '12:22', '13:12', '14:30', '15:20', '16:44', '17:34', '18:42', '19:32', '', '', '20:28', '2/1.6', '12/198'], | |
| 25 | - ['10', '06:46', '06:56', '07:46', '09:00', '09:50', '11:10', '12:00', '13:10', '14:00', '15:24', '16:14', '17:45', '18:35', '19:56', '20:46', '22:00', '23:00', '23:56', '2/1.6', '16/264'], | |
| 26 | - ['+1', '05:10', '05:20', '06:10', '07:21', '08:11', '09:07', '', '', '', '', '15:44', '15:54', '16:44', '18:12', '19:02', '20:23', '21:13', '22:09', '4/3.2', '10/165'], | |
| 27 | - ['+2', '05:30', '05:40', '06:30', '07:44', '08:34', '09:30', '', '', '', '', '16:29', '16:39', '17:29', '18:36', '19:26', '20:50', '21:40', '22:36', '4/3.2', '10/165'], | |
| 28 | - ['+3', '05:30', '', '06:00', '07:16', '08:06', '09:02', '', '', '', '', '15:38', '15:48', '16:38', '18:06', '18:56', '20:14', '21:04', '22:00', '4/14.95', '9/149'], | |
| 29 | - ['+4', '05:48', '05:58', '06:48', '08:00', '08:50', '09:46', '', '', '', '', '16:52', '17:02', '17:52', '19:03', '19:50', '21:08', '21:59', '22:54', '4/3.2', '10/165'], | |
| 30 | - ['+5', '05:40', '05:50', '06:40', '07:52', '08:42', '09:38', '', '', '14:26', '14:36', '15:26', '16:53', '17:43', '18:56', '19:44', '', '', '20:40', '4/3.2', '10/165'], | |
| 31 | - ['+6', '06:31', '06:41', '07:31', '08:31', '09:21', '10:17', '', '', '14:56', '15:06', '15:56', '17:30', '18:20', '19:32', '20:22', '21:32', '22:27', '23:23', '4/3.2', '12/198'], | |
| 32 | - ['+7', '05:20', '05:30', '06:20', '07:36', '08:26', '09:22', '', '', '', '', '16:08', '16:18', '17:08', '18:24', '19:14', '20:32', '21:22', '22:18', '4/3.2', '10/165'], | |
| 33 | - ['+8', '06:04', '06:14', '07:04', '08:10', '09:00', '09:56', '', '', '', '', '17:05', '17:15', '18:05', '19:17', '20:06', '21:24', '22:17', '23:13', '4/3.2', '10/165'], | |
| 34 | - ['+9', '06:41', '06:51', '07:41', '08:50', '09:40', '10:36', '', '', '15:02', '15:12', '16:02', '17:35', '18:25', '19:40', '20:30', '21:40', '22:38', '23:34', '4/3.2', '12/198'], | |
| 35 | - ['+10', '07:16', '', '', '07:26', '08:16', '09:34', '10:24', '11:46', '12:36', '13:46', '14:36', '16:00', '16:50', '', '', '', '', '17:46', '2/1.6', '10/165'], | |
| 36 | - ['+20', '06:12', '06:22', '07:12', '08:15', '09:05', '10:01', '', '', '14:50', '15:00', '15:50', '17:25', '18:15', '', '', '', '', '19:11', '4/3.2', '8/132'], | |
| 37 | - ['+21', '06:26', '06:36', '07:26', '08:25', '09:15', '10:11', '', '', '15:20', '15:30', '16:20', '17:50', '18:40', '', '', '', '', '19:36', '4/3.2', '8/132'], | |
| 38 | - ['+22', '06:56', '07:06', '07:56', '08:52', '', '', '', '', '14:38', '14:48', '15:38', '17:06', '17:56', '', '', '', '', '18:52', '4/3.2', '6/99'], | |
| 39 | - ['机1', '13:56', '', '', '', '', '', '', '', '', '14:06', '14:56', '16:12', '17:02', '', '', '', '', '17:58', '2/1.6', '4/66'], | |
| 40 | - ['机2', '14:04', '', '', '', '', '', '', '', '', '14:14', '15:04', '16:24', '17:14', '', '', '', '', '18:10', '2/1.6', '4/66'], | |
| 41 | - ['机3', '14:12', '', '', '', '', '', '', '', '', '14:22', '15:12', '16:35', '17:25', '', '', '', '', '18:21', '2/1.6', '4/66'], | |
| 42 | - ['机4', '14:32', '', '', '', '', '', '', '', '', '14:42', '15:32', '16:57', '17:47', '', '', '', '', '18:43', '2/1.6', '4/66'] | |
| 43 | - | |
| 44 | - ] | |
| 45 | - | |
| 46 | - | |
| 47 | - | |
| 48 | - | |
| 49 | - | |
| 50 | - | |
| 51 | - | |
| 52 | - | |
| 53 | - | |
| 54 | - | |
| 55 | - | |
| 56 | - | |
| 57 | - | |
| 58 | - | |
| 59 | - | |
| 60 | - | |
| 61 | - | |
| 62 | - | |
| 63 | - | |
| 64 | - | |
| 65 | - | |
| 66 | - | |
| 67 | - | |
| 68 | - | |
| 69 | - | |
| 70 | - | |
| 71 | - | |
| 72 | - | |
| 73 | - | |
| 74 | - | |
| 75 | - | |
| 76 | - }]); | |
| 77 | 0 | \ No newline at end of file |
src/main/resources/static/pages/scheduleApp/module/core/timeTableManage/timeTableManage.js
| ... | ... | @@ -38,7 +38,7 @@ angular.module('ScheduleApp').factory('TimeTableManageService', ['TimeTableManag |
| 38 | 38 | getPage: function() { |
| 39 | 39 | var params = currentSearchCondition; // 查询条件 |
| 40 | 40 | params.page = currentPageNo - 1; // 服务端页码从0开始 |
| 41 | - return service.list(params).$promise; | |
| 41 | + return service.rest.list(params).$promise; | |
| 42 | 42 | }, |
| 43 | 43 | /** |
| 44 | 44 | * 获取明细信息。 |
| ... | ... | @@ -47,7 +47,7 @@ angular.module('ScheduleApp').factory('TimeTableManageService', ['TimeTableManag |
| 47 | 47 | */ |
| 48 | 48 | getDetail: function(id) { |
| 49 | 49 | var params = {id: id}; |
| 50 | - return service.get(params).$promise; | |
| 50 | + return service.rest.get(params).$promise; | |
| 51 | 51 | }, |
| 52 | 52 | /** |
| 53 | 53 | * 保存信息。 |
| ... | ... | @@ -55,7 +55,7 @@ angular.module('ScheduleApp').factory('TimeTableManageService', ['TimeTableManag |
| 55 | 55 | * @return 返回一个 promise |
| 56 | 56 | */ |
| 57 | 57 | saveDetail: function(obj) { |
| 58 | - return service.save(obj).$promise; | |
| 58 | + return service.rest.save(obj).$promise; | |
| 59 | 59 | } |
| 60 | 60 | }; |
| 61 | 61 | |
| ... | ... | @@ -189,7 +189,7 @@ angular.module('ScheduleApp').controller('TimeTableManageListCtrl', ['TimeTableM |
| 189 | 189 | // 时刻表名称 |
| 190 | 190 | var ttinfoname = self.pageInfo.infos[$index]["name"]; |
| 191 | 191 | // 停车场名称(TODO:暂时写死) |
| 192 | - var tccname = "东靖路高行停车场"; | |
| 192 | + var tccname = "江南旅游服务有限公司浦西停车保养场"; | |
| 193 | 193 | |
| 194 | 194 | // large方式弹出模态对话框 |
| 195 | 195 | var modalInstance = $uibModal.open({ | ... | ... |
src/main/resources/static/pages/scheduleApp/module/main.js
| ... | ... | @@ -583,7 +583,7 @@ ScheduleApp.config(['$stateProvider', '$urlRouterProvider', function($stateProvi |
| 583 | 583 | } |
| 584 | 584 | }) |
| 585 | 585 | .state("timeTableDetailInfoManage", { |
| 586 | - url: '/timeTableDetailInfoManage', | |
| 586 | + url: '/timeTableDetailInfoManage/:ttid', | |
| 587 | 587 | views: { |
| 588 | 588 | "": {templateUrl: 'pages/scheduleApp/module/core/timeTableManage/detail_info.html'} |
| 589 | 589 | }, |
| ... | ... | @@ -990,30 +990,56 @@ angular.module('ScheduleApp').factory('ScheduleRuleManageService_g', ['$resource |
| 990 | 990 | |
| 991 | 991 | // 时刻表管理service |
| 992 | 992 | angular.module('ScheduleApp').factory('TimeTableManageService_g', ['$resource', function($resource) { |
| 993 | - // TODO:之后返回两个$resource,包含 时刻表和时刻表明细 | |
| 994 | - | |
| 995 | - | |
| 996 | - return $resource( | |
| 997 | - '/tic/:id', | |
| 998 | - {order: 'createDate', direction: 'DESC', id: '@id_route'}, // TODO:以后需要根据属性对象的属性查询 | |
| 999 | - { | |
| 1000 | - list: { | |
| 1001 | - method: 'GET', | |
| 1002 | - params: { | |
| 1003 | - page: 0 | |
| 993 | + return { | |
| 994 | + rest: $resource( | |
| 995 | + '/tic/:id', | |
| 996 | + {order: 'createDate', direction: 'DESC', id: '@id_route'}, | |
| 997 | + { | |
| 998 | + list: { | |
| 999 | + method: 'GET', | |
| 1000 | + params: { | |
| 1001 | + page: 0 | |
| 1002 | + } | |
| 1003 | + }, | |
| 1004 | + get: { | |
| 1005 | + method: 'GET' | |
| 1006 | + }, | |
| 1007 | + save: { | |
| 1008 | + method: 'POST' | |
| 1004 | 1009 | } |
| 1005 | - }, | |
| 1006 | - get: { | |
| 1007 | - method: 'GET' | |
| 1008 | - }, | |
| 1009 | - save: { | |
| 1010 | - method: 'POST' | |
| 1011 | 1010 | } |
| 1012 | - } | |
| 1013 | - ); | |
| 1011 | + ) | |
| 1012 | + }; | |
| 1013 | +}]); | |
| 1014 | +// 时刻表明细管理service | |
| 1015 | +angular.module('ScheduleApp').factory('TimeTableDetailManageService_g', ['$resource', function($resource) { | |
| 1016 | + return { | |
| 1017 | + rest: $resource( | |
| 1018 | + '/tidc/:id', | |
| 1019 | + {order: 'createDate', direction: 'DESC', id: '@id_route'}, | |
| 1020 | + { | |
| 1021 | + get: { | |
| 1022 | + method: 'GET' | |
| 1023 | + }, | |
| 1024 | + save: { | |
| 1025 | + method: 'POST' | |
| 1026 | + } | |
| 1027 | + } | |
| 1028 | + ), | |
| 1029 | + edit: $resource( | |
| 1030 | + '/tidc/edit/:ttid', | |
| 1031 | + {}, | |
| 1032 | + { | |
| 1033 | + list: { | |
| 1034 | + method: 'GET' | |
| 1035 | + } | |
| 1036 | + } | |
| 1037 | + ) | |
| 1038 | + }; | |
| 1014 | 1039 | }]); |
| 1015 | 1040 | |
| 1016 | 1041 | |
| 1042 | + | |
| 1017 | 1043 | // 排班计划管理service |
| 1018 | 1044 | angular.module('ScheduleApp').factory('SchedulePlanManageService_g', ['$resource', function($resource) { |
| 1019 | 1045 | return { |
| ... | ... | @@ -1422,6 +1448,17 @@ angular.module('ScheduleApp').factory('$$SearchInfoService_g', ['$resource', fun |
| 1422 | 1448 | isArray: true |
| 1423 | 1449 | } |
| 1424 | 1450 | } |
| 1451 | + ), | |
| 1452 | + ccl: $resource( | |
| 1453 | + '/cci/cars', | |
| 1454 | + {}, | |
| 1455 | + { | |
| 1456 | + list: { | |
| 1457 | + method: 'GET', | |
| 1458 | + isArray: true | |
| 1459 | + } | |
| 1460 | + } | |
| 1461 | + | |
| 1425 | 1462 | ) |
| 1426 | 1463 | } |
| 1427 | 1464 | }]); | ... | ... |