Commit c49536a5bb4ecb6795963eb85a26150f8ddbff58
Merge branch 'master' of 192.168.168.201:panzhaov5/bsth_control
Showing
8 changed files
with
948 additions
and
827 deletions
Too many changes to show.
To preserve performance only 8 of 21 files are displayed.
src/main/java/com/bsth/controller/schedule/CarConfigInfoController.java
| @@ -8,6 +8,7 @@ import org.springframework.beans.factory.annotation.Autowired; | @@ -8,6 +8,7 @@ import org.springframework.beans.factory.annotation.Autowired; | ||
| 8 | import org.springframework.boot.context.properties.EnableConfigurationProperties; | 8 | import org.springframework.boot.context.properties.EnableConfigurationProperties; |
| 9 | import org.springframework.web.bind.annotation.*; | 9 | import org.springframework.web.bind.annotation.*; |
| 10 | 10 | ||
| 11 | +import java.util.List; | ||
| 11 | import java.util.Map; | 12 | import java.util.Map; |
| 12 | 13 | ||
| 13 | /** | 14 | /** |
| @@ -45,4 +46,9 @@ public class CarConfigInfoController extends BaseController<CarConfigInfo, Long> | @@ -45,4 +46,9 @@ public class CarConfigInfoController extends BaseController<CarConfigInfo, Long> | ||
| 45 | public Map<String, Object> save(@RequestBody CarConfigInfo t){ | 46 | public Map<String, Object> save(@RequestBody CarConfigInfo t){ |
| 46 | return baseService.save(t); | 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,6 +5,7 @@ import com.bsth.controller.BaseController; | ||
| 5 | import com.bsth.entity.schedule.TTInfoDetail; | 5 | import com.bsth.entity.schedule.TTInfoDetail; |
| 6 | import com.bsth.service.schedule.TTInfoDetailServiceImpl; | 6 | import com.bsth.service.schedule.TTInfoDetailServiceImpl; |
| 7 | import org.springframework.beans.factory.annotation.Autowired; | 7 | import org.springframework.beans.factory.annotation.Autowired; |
| 8 | +import org.springframework.web.bind.annotation.PathVariable; | ||
| 8 | import org.springframework.web.bind.annotation.RequestMapping; | 9 | import org.springframework.web.bind.annotation.RequestMapping; |
| 9 | import org.springframework.web.bind.annotation.RequestMethod; | 10 | import org.springframework.web.bind.annotation.RequestMethod; |
| 10 | import org.springframework.web.bind.annotation.RestController; | 11 | import org.springframework.web.bind.annotation.RestController; |
| @@ -38,4 +39,10 @@ public class TTInfoDetailController extends BaseController<TTInfoDetail, Long> { | @@ -38,4 +39,10 @@ public class TTInfoDetailController extends BaseController<TTInfoDetail, Long> { | ||
| 38 | 39 | ||
| 39 | return resultMap; | 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,6 +152,13 @@ public class SchedulePlanInfo { | ||
| 152 | EmployeeConfigInfo employeeConfigInfo, | 152 | EmployeeConfigInfo employeeConfigInfo, |
| 153 | SchedulePlan schedulePlan) { | 153 | SchedulePlan schedulePlan) { |
| 154 | 154 | ||
| 155 | + // TODO:关联的公司名称 | ||
| 156 | + // TODO:关联的公司编码 | ||
| 157 | + // TODO:关联的分公司名称 | ||
| 158 | + // TODO:关联的分公司编码 | ||
| 159 | + // TODO:关联的出场顺序号 | ||
| 160 | + | ||
| 161 | + // 关联的排班计划 | ||
| 155 | this.schedulePlan = schedulePlan; | 162 | this.schedulePlan = schedulePlan; |
| 156 | 163 | ||
| 157 | // 排班计划时间 | 164 | // 排班计划时间 |
| @@ -176,9 +183,11 @@ public class SchedulePlanInfo { | @@ -176,9 +183,11 @@ public class SchedulePlanInfo { | ||
| 176 | this.jGh = employeeConfigInfo.getJsy().getJobCode(); | 183 | this.jGh = employeeConfigInfo.getJsy().getJobCode(); |
| 177 | this.jName = employeeConfigInfo.getJsy().getPersonnelName(); | 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 | this.xlDir = ttInfoDetail.getXlDir(); // 线路上下行 | 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,6 +4,7 @@ import com.bsth.entity.schedule.CarConfigInfo; | ||
| 4 | import com.bsth.repository.BaseRepository; | 4 | import com.bsth.repository.BaseRepository; |
| 5 | 5 | ||
| 6 | import java.util.List; | 6 | import java.util.List; |
| 7 | +import java.util.Map; | ||
| 7 | 8 | ||
| 8 | import org.springframework.data.domain.Page; | 9 | import org.springframework.data.domain.Page; |
| 9 | import org.springframework.data.domain.Pageable; | 10 | import org.springframework.data.domain.Pageable; |
| @@ -38,4 +39,7 @@ public interface CarConfigInfoRepository extends BaseRepository<CarConfigInfo, L | @@ -38,4 +39,7 @@ public interface CarConfigInfoRepository extends BaseRepository<CarConfigInfo, L | ||
| 38 | @EntityGraph(value = "carConfigInfo_xl_cl", type = EntityGraph.EntityGraphType.FETCH) | 39 | @EntityGraph(value = "carConfigInfo_xl_cl", type = EntityGraph.EntityGraphType.FETCH) |
| 39 | @Query("select cc from CarConfigInfo cc where cc.xl.lineCode=?1") | 40 | @Query("select cc from CarConfigInfo cc where cc.xl.lineCode=?1") |
| 40 | List<CarConfigInfo> findBylineCode(String lineCode); | 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 | \ No newline at end of file | 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,6 +16,7 @@ import org.springframework.web.multipart.MultipartFile; | ||
| 16 | 16 | ||
| 17 | import java.io.File; | 17 | import java.io.File; |
| 18 | import java.util.ArrayList; | 18 | import java.util.ArrayList; |
| 19 | +import java.util.Date; | ||
| 19 | import java.util.List; | 20 | import java.util.List; |
| 20 | 21 | ||
| 21 | /** | 22 | /** |
| @@ -30,6 +31,37 @@ public class TTInfoDetailServiceImpl extends BaseServiceImpl<TTInfoDetail, Long> | @@ -30,6 +31,37 @@ public class TTInfoDetailServiceImpl extends BaseServiceImpl<TTInfoDetail, Long> | ||
| 30 | private DataToolsProperties dataToolsProperties; | 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 | * 上传并导入数据,和DataImportExportService的同名方法有差别。 | 65 | * 上传并导入数据,和DataImportExportService的同名方法有差别。 |
| 34 | * @param datafile form上传文件 | 66 | * @param datafile form上传文件 |
| 35 | * @param xlmc 线路名称 | 67 | * @param xlmc 线路名称 |
src/main/java/com/bsth/service/schedule/utils/DataToolsProperties.java
| @@ -21,6 +21,9 @@ public class DataToolsProperties { | @@ -21,6 +21,9 @@ public class DataToolsProperties { | ||
| 21 | /** ktr转换文件,中配置的错误输出目录(根据不同的环境需要修正) */ | 21 | /** ktr转换文件,中配置的错误输出目录(根据不同的环境需要修正) */ |
| 22 | @NotNull | 22 | @NotNull |
| 23 | private String transErrordir; | 23 | private String transErrordir; |
| 24 | + /** 临时输出文件目录 */ | ||
| 25 | + @NotNull | ||
| 26 | + private String transTempdir; | ||
| 24 | 27 | ||
| 25 | /** kettle配置文件路径 */ | 28 | /** kettle配置文件路径 */ |
| 26 | @NotNull | 29 | @NotNull |
| @@ -60,6 +63,9 @@ public class DataToolsProperties { | @@ -60,6 +63,9 @@ public class DataToolsProperties { | ||
| 60 | /** 时刻表明细信息导入(元数据) */ | 63 | /** 时刻表明细信息导入(元数据) */ |
| 61 | @NotNull | 64 | @NotNull |
| 62 | private String ttinfodetailMetadatainputktr; | 65 | private String ttinfodetailMetadatainputktr; |
| 66 | + /** 时刻表明细编辑用数据(TODO:之后要换成元数据形式输入) */ | ||
| 67 | + @NotNull | ||
| 68 | + private String ttinfodetailForeditktr; | ||
| 63 | /** 时刻表明细信息导入 */ | 69 | /** 时刻表明细信息导入 */ |
| 64 | @NotNull | 70 | @NotNull |
| 65 | private String ttinfodetailDatainputktr; | 71 | private String ttinfodetailDatainputktr; |
| @@ -185,4 +191,20 @@ public class DataToolsProperties { | @@ -185,4 +191,20 @@ public class DataToolsProperties { | ||
| 185 | public void setKettleProperties(String kettleProperties) { | 191 | public void setKettleProperties(String kettleProperties) { |
| 186 | this.kettleProperties = kettleProperties; | 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,17 +4,19 @@ | ||
| 4 | datatools.fileupload_dir=/Users/xu/resource/project/bsth_control_u_d_files | 4 | datatools.fileupload_dir=/Users/xu/resource/project/bsth_control_u_d_files |
| 5 | # ktr转换文件,中配置的错误输出目录(根据不同的环境需要修正) | 5 | # ktr转换文件,中配置的错误输出目录(根据不同的环境需要修正) |
| 6 | datatools.trans_errordir=/Users/xu/resource/project/bsth_control_u_d_files/erroroutput | 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 | #------------------- ktr主配置文件路径(类路径) ------------------ | 10 | #------------------- ktr主配置文件路径(类路径) ------------------ |
| 9 | datatools.kettle_properties=/datatools/kettle.properties | 11 | datatools.kettle_properties=/datatools/kettle.properties |
| 10 | 12 | ||
| 11 | ##------------------ ktr通用变量 ------------------ | 13 | ##------------------ ktr通用变量 ------------------ |
| 12 | #数据库ip地址 | 14 | #数据库ip地址 |
| 13 | -datatools.kvars_dbip=localhost | 15 | +datatools.kvars_dbip=192.168.168.201 |
| 14 | #数据库用户名 | 16 | #数据库用户名 |
| 15 | datatools.kvars_dbuname=root | 17 | datatools.kvars_dbuname=root |
| 16 | #数据库密码 | 18 | #数据库密码 |
| 17 | -datatools.kvars_dbpwd= | 19 | +datatools.kvars_dbpwd=123456 |
| 18 | 20 | ||
| 19 | # 以下是封装数据导入导出逻辑的ktr转换文件,类路径,以后考虑放到数据库中 | 21 | # 以下是封装数据导入导出逻辑的ktr转换文件,类路径,以后考虑放到数据库中 |
| 20 | # 测试temp的ktr转换文件 | 22 | # 测试temp的ktr转换文件 |
| @@ -29,6 +31,8 @@ datatools.guideboards_datainputktr=/datatools/ktrs/guideboardDataInput.ktr | @@ -29,6 +31,8 @@ datatools.guideboards_datainputktr=/datatools/ktrs/guideboardDataInput.ktr | ||
| 29 | datatools.ttinfo_datainputktr=/datatools/ktrs/ttinfoDataInput.ktr | 31 | datatools.ttinfo_datainputktr=/datatools/ktrs/ttinfoDataInput.ktr |
| 30 | # 时刻表明细信息导入(元数据) | 32 | # 时刻表明细信息导入(元数据) |
| 31 | datatools.ttinfodetail_metadatainputktr=/datatools/ktrs/ttinfodetailMetaData.ktr | 33 | datatools.ttinfodetail_metadatainputktr=/datatools/ktrs/ttinfodetailMetaData.ktr |
| 34 | +# 时刻表明细编辑用数据(TODO:之后要换成元数据形式输入) | ||
| 35 | +datatools.ttinfodetail_foreditktr=/datatools/ktrs/ttinfodetailoutputforedit.ktr | ||
| 32 | # 时刻表明细信息导入 | 36 | # 时刻表明细信息导入 |
| 33 | datatools.ttinfodetail_datainputktr=/datatools/ktrs/ttinfodetailDataInput.ktr | 37 | datatools.ttinfodetail_datainputktr=/datatools/ktrs/ttinfodetailDataInput.ktr |
| 34 | 38 | ||
| @@ -37,4 +41,5 @@ datatools.carsconfig_datainputktr=/datatools/ktrs/carsConfigDataInput.ktr | @@ -37,4 +41,5 @@ datatools.carsconfig_datainputktr=/datatools/ktrs/carsConfigDataInput.ktr | ||
| 37 | # 人员配置信息导入 | 41 | # 人员配置信息导入 |
| 38 | datatools.employeesconfig_datainputktr=/datatools/ktrs/employeesConfigDataInput.ktr | 42 | datatools.employeesconfig_datainputktr=/datatools/ktrs/employeesConfigDataInput.ktr |
| 39 | 43 | ||
| 40 | -# 排班规则信息导入 | ||
| 41 | \ No newline at end of file | 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> |