Commit 8609c7c4f09ba3d5c87b6b3076f37a72ab049568

Authored by 潘钊
2 parents 1a0396f8 95726202

Too many changes to show.

To preserve performance only 11 of 24 files are displayed.

src/main/java/com/bsth/controller/BaseController.java
... ... @@ -14,8 +14,8 @@ import org.springframework.web.bind.annotation.RequestMethod;
14 14 import org.springframework.web.bind.annotation.RequestParam;
15 15 import org.springframework.web.multipart.MultipartFile;
16 16  
17   -import java.io.File;
18   -import java.io.Serializable;
  17 +import javax.servlet.http.HttpServletResponse;
  18 +import java.io.*;
19 19 import java.util.HashMap;
20 20 import java.util.Map;
21 21  
... ... @@ -51,7 +51,7 @@ public class BaseController<T, ID extends Serializable> {
51 51 @RequestParam(defaultValue = "10") int size,
52 52 @RequestParam(defaultValue = "id") String order,
53 53 @RequestParam(defaultValue = "DESC") String direction){
54   -
  54 +
55 55 Direction d;
56 56  
57 57 if(null != direction && direction.equals("ASC"))
... ... @@ -141,6 +141,66 @@ public class BaseController<T, ID extends Serializable> {
141 141 }
142 142  
143 143 /**
  144 + * 使用ktr导出数据。
  145 + * @param response
  146 + * @throws Exception
  147 + */
  148 + @RequestMapping(value = "/dataExport", method = RequestMethod.GET)
  149 + public void dataExport(HttpServletResponse response) throws Exception {
  150 + // 1、使用ktr转换获取输出文件
  151 + File ktrfile = new File(this.getClass().getResource(getDataExportKtrClasspath()).toURI());
  152 + File outputfile = dataImportExportService.fileDataOutput(
  153 + getDataExportFilename(),
  154 + ktrfile);
  155 +
  156 + System.out.println(outputfile.getName());
  157 + String filePath = outputfile.getAbsolutePath();
  158 + String fp[] = filePath.split(File.separator);
  159 + String fileName = fp[fp.length - 1];
  160 +
  161 + // TODO:使用ktr获取导出数据
  162 +
  163 + response.setHeader("conent-type", "application/octet-stream");
  164 + response.setContentType("application/octet-stream");
  165 + response.setHeader("Content-Disposition", "attachment; filename=" + "东东");
  166 +
  167 + OutputStream os = response.getOutputStream();
  168 + BufferedOutputStream bos = new BufferedOutputStream(os);
  169 +
  170 + InputStream is = null;
  171 +
  172 + is = new FileInputStream(filePath);
  173 + BufferedInputStream bis = new BufferedInputStream(is);
  174 +
  175 + int length = 0;
  176 + byte[] temp = new byte[1 * 1024 * 10];
  177 +
  178 + while ((length = bis.read(temp)) != -1) {
  179 + bos.write(temp, 0, length);
  180 + }
  181 + bos.flush();
  182 + bis.close();
  183 + bos.close();
  184 + is.close();
  185 + }
  186 +
  187 + /**
  188 + * @return 数据导出的ktr转换文件类路径。
  189 + */
  190 + protected String getDataExportKtrClasspath() {
  191 + // 默认返回异常,子类如果要使用导出功能,必须覆写此方法,指定ktr文件类路径
  192 + throw new RuntimeException("必须override,并指定ktr classpath");
  193 + }
  194 +
  195 + /**
  196 + * @return 导出文件名。
  197 + */
  198 + protected String getDataExportFilename() {
  199 + // 默认返回异常,子类如果要使用导出功能,必须覆写此方法,指定导出的文件路径名
  200 + throw new RuntimeException("必须override,并指定导出文件名");
  201 + }
  202 +
  203 + /**
144 204 * @return 数据导入的ktr转换文件类路径。
145 205 */
146 206 protected String getDataImportKtrClasspath() {
... ...
src/main/java/com/bsth/controller/CarsController.java
... ... @@ -48,4 +48,14 @@ public class CarsController extends BaseController<Cars, Integer> {
48 48 protected String getDataImportKtrClasspath() {
49 49 return dataToolsProperties.getCarsDatainputktr();
50 50 }
  51 +
  52 + @Override
  53 + protected String getDataExportKtrClasspath() {
  54 + return dataToolsProperties.getCarsDataoutputktr();
  55 + }
  56 +
  57 + @Override
  58 + protected String getDataExportFilename() {
  59 + return "车辆基础数据";
  60 + }
51 61 }
... ...
src/main/java/com/bsth/controller/PersonnelController.java
... ... @@ -48,4 +48,14 @@ public class PersonnelController extends BaseController<Personnel, Integer> {
48 48 protected String getDataImportKtrClasspath() {
49 49 return dataToolsProperties.getEmployeesDatainputktr();
50 50 }
  51 +
  52 + @Override
  53 + protected String getDataExportKtrClasspath() {
  54 + return dataToolsProperties.getEmployeesDataoutputktr();
  55 + }
  56 +
  57 + @Override
  58 + protected String getDataExportFilename() {
  59 + return "人员基础信息";
  60 + }
51 61 }
... ...
src/main/java/com/bsth/service/schedule/utils/DataImportExportService.java
... ... @@ -23,4 +23,13 @@ public interface DataImportExportService {
23 23 * @throws Exception
24 24 */
25 25 void fileDataImport(MultipartFile datafile, File ktrFile) throws Exception;
  26 +
  27 + /**
  28 + * 数据导出。
  29 + * @param fileName 文件名
  30 + * @param ktrFile 导出的逻辑ktr文件
  31 + * @return 导出的文件
  32 + * @throws Exception
  33 + */
  34 + File fileDataOutput(String fileName, File ktrFile) throws Exception;
26 35 }
... ...
src/main/java/com/bsth/service/schedule/utils/DataImportExportServiceImpl.java
1 1 package com.bsth.service.schedule.utils;
2 2  
3 3 import com.google.common.io.Files;
  4 +import org.joda.time.DateTime;
4 5 import org.pentaho.di.core.KettleEnvironment;
5 6 import org.pentaho.di.core.util.EnvUtil;
6 7 import org.pentaho.di.trans.Trans;
... ... @@ -67,6 +68,7 @@ public class DataImportExportServiceImpl implements DataImportExportService, Ini
67 68 kvars.put("v_db_ip", dataToolsProperties.getKvarsDbip());
68 69 kvars.put("v_db_uname", dataToolsProperties.getKvarsDbuname());
69 70 kvars.put("v_db_pwd", dataToolsProperties.getKvarsDbpwd());
  71 + kvars.put("v_db_dname", dataToolsProperties.getKvarsDbdname());
70 72 EnvUtil.applyKettleProperties(kvars, true);
71 73 KettleEnvironment.init();
72 74 }
... ... @@ -106,4 +108,27 @@ public class DataImportExportServiceImpl implements DataImportExportService, Ini
106 108 throw new Exception("转换数据部分错误,请查看相关错误输出文件!");
107 109 }
108 110 }
  111 +
  112 + @Override
  113 + public File fileDataOutput(String fileName, File ktrFile) throws Exception {
  114 + // 初始化转换,元数据,转换对象
  115 + TransMeta transMeta = new TransMeta(ktrFile.getAbsolutePath());
  116 + Trans trans = new Trans(transMeta);
  117 + // 设定命名参数
  118 + String filepath = dataToolsProperties.getFileoutputDir() +
  119 + File.separator +
  120 + fileName +
  121 + new DateTime().toString("yyyyMMddHHmmss") + ".xls";
  122 + trans.setParameterValue("filepath", filepath);
  123 + // 执行转换
  124 + trans.execute(null);
  125 + // 等待转换结束
  126 + trans.waitUntilFinished();
  127 +
  128 + if (trans.getErrors() > 0) {
  129 + throw new Exception("转换数据部分错误,请查看相关错误输出文件!");
  130 + }
  131 +
  132 + return new File(filepath);
  133 + }
109 134 }
... ...
src/main/java/com/bsth/service/schedule/utils/DataToolsProperties.java
... ... @@ -17,6 +17,9 @@ public class DataToolsProperties {
17 17 /** 上传文件目录配置(根据不同的环境需要修正) */
18 18 @NotNull
19 19 private String fileuploadDir;
  20 + /** 导出数据文件目录配置(根据不同的环境需要修正) */
  21 + @NotNull
  22 + private String fileoutputDir;
20 23  
21 24 /** ktr转换文件,中配置的错误输出目录(根据不同的环境需要修正) */
22 25 @NotNull
... ... @@ -38,7 +41,10 @@ public class DataToolsProperties {
38 41 /** ktr通用变量-数据库密码 */
39 42 @NotNull
40 43 private String kvarsDbpwd;
  44 + /** ktr通用变量-数据库库名 */
  45 + private String kvarsDbdname;
41 46  
  47 + /**------------------------- 导入数据ktr --------------------------*/
42 48 /** 测试temp的ktr转换文件 */
43 49 @NotNull
44 50 private String tempDatainputktr;
... ... @@ -70,6 +76,14 @@ public class DataToolsProperties {
70 76 @NotNull
71 77 private String ttinfodetailDatainputktr;
72 78  
  79 + /**------------------------- 导出数据ktr --------------------------*/
  80 + /** 车辆信息导出ktr转换 */
  81 + @NotNull
  82 + private String carsDataoutputktr;
  83 + /** 人员信息导出ktr转换 */
  84 + @NotNull
  85 + private String employeesDataoutputktr;
  86 +
73 87 // TODO:
74 88  
75 89 public String getFileuploadDir() {
... ... @@ -207,4 +221,36 @@ public class DataToolsProperties {
207 221 public void setTtinfodetailForeditktr(String ttinfodetailForeditktr) {
208 222 this.ttinfodetailForeditktr = ttinfodetailForeditktr;
209 223 }
  224 +
  225 + public String getFileoutputDir() {
  226 + return fileoutputDir;
  227 + }
  228 +
  229 + public void setFileoutputDir(String fileoutputDir) {
  230 + this.fileoutputDir = fileoutputDir;
  231 + }
  232 +
  233 + public String getCarsDataoutputktr() {
  234 + return carsDataoutputktr;
  235 + }
  236 +
  237 + public void setCarsDataoutputktr(String carsDataoutputktr) {
  238 + this.carsDataoutputktr = carsDataoutputktr;
  239 + }
  240 +
  241 + public String getEmployeesDataoutputktr() {
  242 + return employeesDataoutputktr;
  243 + }
  244 +
  245 + public void setEmployeesDataoutputktr(String employeesDataoutputktr) {
  246 + this.employeesDataoutputktr = employeesDataoutputktr;
  247 + }
  248 +
  249 + public String getKvarsDbdname() {
  250 + return kvarsDbdname;
  251 + }
  252 +
  253 + public void setKvarsDbdname(String kvarsDbdname) {
  254 + this.kvarsDbdname = kvarsDbdname;
  255 + }
210 256 }
... ...
src/main/resources/datatools/config-dev.properties
1 1 # 配置数据导入导出用到的配置信息
2 2  
3   -# 上传文件目录配置(根据不同的环境需要修正)
4   -datatools.fileupload_dir=/Users/xu/resource/project/bsth_control_u_d_files
5   -# ktr转换文件,中配置的错误输出目录(根据不同的环境需要修正)
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
9   -
10   -#------------------- ktr主配置文件路径(类路径) ------------------
  3 +# 1、kettle配置文件路径(类路径)
11 4 datatools.kettle_properties=/datatools/kettle.properties
12   -
13   -##------------------ ktr通用变量 ------------------
  5 +# 2、ktr文件通用配置变量(数据库连接,根据不同的环境需要修正)
14 6 #数据库ip地址
15 7 datatools.kvars_dbip=127.0.0.1
16 8 #数据库用户名
17 9 datatools.kvars_dbuname=root
18 10 #数据库密码
19 11 datatools.kvars_dbpwd=
  12 +#数据库库名
  13 +datatools.kvars_dbdname=control
  14 +
  15 +# 3、上传数据配置信息
  16 +# 上传文件目录配置(根据不同的环境需要修正)
  17 +datatools.fileupload_dir=/Users/xu/resource/project/bsth_control_u_d_files
  18 +# ktr转换文件,中配置的错误输出目录(根据不同的环境需要修正)
  19 +datatools.trans_errordir=/Users/xu/resource/project/bsth_control_u_d_files/erroroutput
  20 +# 临时输出文件目录
  21 +datatools.trans_tempdir=/Users/xu/resource/project/bsth_control_u_d_files/temp
20 22  
21   -# 以下是封装数据导入导出逻辑的ktr转换文件,类路径,以后考虑放到数据库中
  23 +##---------------------------- 导入数据ktr ----------------------------##
22 24 # 测试temp的ktr转换文件
23 25 datatools.temp_datainputktr=/datatools/ktrs/test.ktr
24 26 # 车辆信息导入ktr转换
... ... @@ -41,5 +43,25 @@ datatools.carsconfig_datainputktr=/datatools/ktrs/carsConfigDataInput.ktr
41 43 # 人员配置信息导入
42 44 datatools.employeesconfig_datainputktr=/datatools/ktrs/employeesConfigDataInput.ktr
43 45  
44   -# 排班规则信息导入
  46 +# TODO:排班规则信息导入
  47 +
  48 +
  49 +# 4、数据导出配置信息
  50 +# 导出数据文件目录配置(根据不同的环境需要修正)
  51 +datatools.fileoutput_dir=/Users/xu/resource/project/bsth_control_u_d_files
  52 +
  53 +##---------------------------- 导出数据ktr -----------------------------##
  54 +# 车辆信息导出ktr转换
  55 +datatools.cars_dataoutputktr=/datatools/ktrs/carsDataOutput.ktr
  56 +# 人员信息导出ktr转换
  57 +datatools.employees_dataoutputktr=/datatools/ktrs/employeesDataOutput.ktr
  58 +
  59 +# TODO:
  60 +
  61 +
  62 +
  63 +
  64 +
  65 +
  66 +
45 67  
... ...
src/main/resources/datatools/config-prod.properties
1 1 # 配置数据导入导出用到的配置信息
2 2  
3   -# 上传文件目录配置(根据不同的环境需要修正)
4   -datatools.fileupload_dir=/opt/bsth_control_u_d_files
5   -# ktr转换文件,中配置的错误输出目录(根据不同的环境需要修正)
6   -datatools.trans_errordir=/opt/bsth_control_u_d_files/erroroutput
7   -# 临时输出文件目录
8   -datatools.trans_tempdir=/opt/bsth_control_u_d_files/temp
9   -
10   -#------------------- ktr主配置文件路径(类路径) ------------------
  3 +# 1、kettle配置文件路径(类路径)
11 4 datatools.kettle_properties=/datatools/kettle.properties
12   -
13   -##------------------ ktr通用变量 ------------------
  5 +# 2、ktr文件通用配置变量(数据库连接,根据不同的环境需要修正)
14 6 #数据库ip地址
15 7 datatools.kvars_dbip=192.168.168.171
16 8 #数据库用户名
17 9 datatools.kvars_dbuname=root
18 10 #数据库密码
19 11 datatools.kvars_dbpwd=root2jsp
  12 +#数据库库名
  13 +datatools.kvars_dbdname=control
  14 +
  15 +# 3、上传数据配置信息
  16 +# 上传文件目录配置(根据不同的环境需要修正)
  17 +datatools.fileupload_dir=/opt/bsth_control_u_d_files
  18 +# ktr转换文件,中配置的错误输出目录(根据不同的环境需要修正)
  19 +datatools.trans_errordir=/opt/bsth_control_u_d_files/erroroutput
  20 +# 临时输出文件目录
  21 +datatools.trans_tempdir=/opt/bsth_control_u_d_files/temp
20 22  
21   -# 以下是封装数据导入导出逻辑的ktr转换文件,类路径,以后考虑放到数据库中
  23 +##---------------------------- 导入数据ktr ----------------------------##
22 24 # 测试temp的ktr转换文件
23 25 datatools.temp_datainputktr=/datatools/ktrs/test.ktr
24 26 # 车辆信息导入ktr转换
... ... @@ -41,5 +43,29 @@ datatools.carsconfig_datainputktr=/datatools/ktrs/carsConfigDataInput.ktr
41 43 # 人员配置信息导入
42 44 datatools.employeesconfig_datainputktr=/datatools/ktrs/employeesConfigDataInput.ktr
43 45  
44   -# 排班规则信息导入
  46 +# TODO:排班规则信息导入
  47 +
  48 +
  49 +# 4、数据导出配置信息
  50 +# 导出数据文件目录配置(根据不同的环境需要修正)
  51 +datatools.fileoutput_dir=/opt/bsth_control_u_d_files
  52 +
  53 +##---------------------------- 导出数据ktr -----------------------------##
  54 +# 车辆信息导出ktr转换
  55 +datatools.cars_dataoutputktr=/datatools/ktrs/carsDataOutput.ktr
  56 +# 人员信息导出ktr转换
  57 +datatools.employees_dataoutputktr=/datatools/ktrs/employeesDataOutput.ktr
  58 +
  59 +# TODO:
  60 +
  61 +
  62 +
  63 +
  64 +
  65 +
  66 +
  67 +
  68 +
  69 +
  70 +
45 71  
... ...
src/main/resources/datatools/ktrs/carsDataInput.ktr
... ... @@ -85,11 +85,11 @@
85 85 </info>
86 86 <notepads>
87 87 <notepad>
88   - <note>&#x539f;&#x7cfb;&#x7edf;&#x7684;&#x5bfc;&#x51fa;&#x8868;&#xff0c;&#x6709;&#x4e9b;&#x6570;&#x636e;&#x662f;&#x6ca1;&#x6709;&#x7684;&#xff0c;&#x6709;&#x4e9b;&#x6570;&#x636e;&#x4e5f;&#x6709;&#x95ee;&#x9898;&#xff0c;&#x5982;&#x4e0b;&#xa;&#x62a5;&#x5e9f;&#x65e5;&#x671f;&#x53bb;&#x6389;&#xa;&#x8f66;&#x8f86;&#x7f16;&#x7801;&#xff0c;&#x6682;&#x65f6;&#x7528;1&#x4ee3;&#x66ff;&#xa;&#x662f;&#x5426;&#x7535;&#x8f66; &#x6ca1;&#x6709;&#xa;&#x8f66;&#x8f86;&#x5e8f;&#x53f7; &#x6ca1;&#x6709;&#xa;&#x662f;&#x5426;&#x5207;&#x6362; &#x6ca1;&#x6709;&#xa;&#x7ebf;&#x8def;&#x540d;&#x79f0;&#xff08;&#x8fd9;&#x91cc;&#x4e0d;&#x505a;&#x5173;&#x8054;&#xff0c;&#x53ea;&#x662f;&#x767b;&#x8bb0;&#x7684;&#x65f6;&#x5019;&#x4f7f;&#x7528;&#xff09; &#x54a9;&#x6709;</note>
89   - <xloc>365</xloc>
90   - <yloc>136</yloc>
  88 + <note>&#x539f;&#x7cfb;&#x7edf;&#x7684;&#x5bfc;&#x51fa;&#x8868;&#xff0c;&#x6709;&#x4e9b;&#x6570;&#x636e;&#x662f;&#x6ca1;&#x6709;&#x7684;&#xff0c;&#x6709;&#x4e9b;&#x6570;&#x636e;&#x4e5f;&#x6709;&#x95ee;&#x9898;&#xff0c;&#x5982;&#x4e0b;&#xa;&#x62a5;&#x5e9f;&#x65e5;&#x671f;&#x53bb;&#x6389;&#xa;&#x8f66;&#x8f86;&#x7f16;&#x7801;&#xff0c;&#x6682;&#x65f6;&#x7528;1&#x4ee3;&#x66ff;&#xa;&#x662f;&#x5426;&#x7535;&#x8f66; &#x6ca1;&#x6709;&#xa;&#x8f66;&#x8f86;&#x5e8f;&#x53f7; &#x6ca1;&#x6709;&#xa;&#x662f;&#x5426;&#x5207;&#x6362; &#x6ca1;&#x6709;&#xa;&#x7ebf;&#x8def;&#x540d;&#x79f0;&#xff08;&#x8fd9;&#x91cc;&#x4e0d;&#x505a;&#x5173;&#x8054;&#xff0c;&#x53ea;&#x662f;&#x767b;&#x8bb0;&#x7684;&#x65f6;&#x5019;&#x4f7f;&#x7528;&#xff09; &#x54a9;&#x6709;&#xa;&#xa;&#x5b57;&#x5178;&#xa;&#x662f;&#x4e0e;&#x5426;truefalseType &#x662f; 1&#xa;&#x662f;&#x4e0e;&#x5426;truefalseType &#x5426; 0&#xa;&#xa;&#x4f9b;&#x5e94;&#x5546;&#x540d;&#x79f0;snames &#x5df4;&#x58eb;&#x62d3;&#x534e; 1&#xa;&#x4f9b;&#x5e94;&#x5546;&#x540d;&#x79f0;snames &#x535a;&#x5eb7; 2&#xa;&#xa;&#x8425;&#x8fd0;&#x72b6;&#x6001;yyztType &#x8425;&#x8fd0; 1&#xa;&#x8425;&#x8fd0;&#x72b6;&#x6001;yyztType &#x505c;&#x8fd0; 2&#xa;&#x8425;&#x8fd0;&#x72b6;&#x6001;yyztType &#x6302;&#x5931; 3&#xa;&#x8425;&#x8fd0;&#x72b6;&#x6001;yyztType &#x8fc1;&#x51fa;&#xff08;&#x8fc7;&#x6237;&#xff09; 4&#xa;&#x8425;&#x8fd0;&#x72b6;&#x6001;yyztType &#x8fc1;&#x51fa;&#xff08;&#x8f6c;&#x7c4d;&#xff09; 5&#xa;&#x8425;&#x8fd0;&#x72b6;&#x6001;yyztType &#x62a5;&#x5e9f; 6&#xa;&#x8425;&#x8fd0;&#x72b6;&#x6001;yyztType &#x6b47;&#x4e1a; 7&#xa;&#x8425;&#x8fd0;&#x72b6;&#x6001;yyztType &#x6ce8;&#x9500; 8&#xa;&#x8425;&#x8fd0;&#x72b6;&#x6001;yyztType &#x6d4b;&#x8bd5; 9&#xa;&#x8425;&#x8fd0;&#x72b6;&#x6001;yyztType &#x5176;&#x4ed6; 10&#xa;&#xa;&#x673a;&#x52a8;&#x8f66;&#x7c7b;&#x578b;jdcType &#x975e;&#x673a;&#x52a8;&#x8f66; 1&#xa;&#x673a;&#x52a8;&#x8f66;&#x7c7b;&#x578b;jdcType &#x673a;&#x52a8;&#x4e00;&#x961f; 2&#xa;&#x673a;&#x52a8;&#x8f66;&#x7c7b;&#x578b;jdcType &#x673a;&#x52a8;&#x4e8c;&#x961f; 3&#xa;&#x673a;&#x52a8;&#x8f66;&#x7c7b;&#x578b;jdcType &#x673a;&#x52a8;&#x4e09;&#x961f; 4&#xa;&#x673a;&#x52a8;&#x8f66;&#x7c7b;&#x578b;jdcType &#x5907;&#x8f66; 5&#xa;&#x673a;&#x52a8;&#x8f66;&#x7c7b;&#x578b;jdcType &#x62a2;&#x4fee;&#x8f66; 6&#xa;&#xa;&#x8f66;&#x8f86;&#x7c7b;&#x578b;carType &#x8425;&#x8fd0;&#x8f66; 1&#xa;&#x8f66;&#x8f86;&#x7c7b;&#x578b;carType &#x5305;&#x8f66; 2&#xa;&#x8f66;&#x8f86;&#x7c7b;&#x578b;carType &#x5b66;&#x6821;&#x73ed;&#x8f66; 3&#xa;&#x8f66;&#x8f86;&#x7c7b;&#x578b;carType &#x516c;&#x53f8;&#x73ed;&#x8f66; 4&#xa;&#x8f66;&#x8f86;&#x7c7b;&#x578b;carType &#x5f85;&#x62a5;&#x5e9f;&#x8f66; 5&#xa;&#x8f66;&#x8f86;&#x7c7b;&#x578b;carType &#x5907;&#x8f66; 6&#xa;&#x8f66;&#x8f86;&#x7c7b;&#x578b;carType &#x6d4b;&#x8bd5;&#x8bbe;&#x5907; 7&#xa;&#xa;&#xa;&#xa;</note>
  89 + <xloc>45</xloc>
  90 + <yloc>254</yloc>
91 91 <width>346</width>
92   - <heigth>122</heigth>
  92 + <heigth>714</heigth>
93 93 <fontname>YaHei Consolas Hybrid</fontname>
94 94 <fontsize>12</fontsize>
95 95 <fontbold>N</fontbold>
... ... @@ -111,7 +111,7 @@
111 111 <server>&#x24;&#x7b;v_db_ip&#x7d;</server>
112 112 <type>MYSQL</type>
113 113 <access>Native</access>
114   - <database>control</database>
  114 + <database>&#x24;&#x7b;v_db_dname&#x7d;</database>
115 115 <port>3306</port>
116 116 <username>&#x24;&#x7b;v_db_uname&#x7d;</username>
117 117 <password>&#x24;&#x7b;v_db_pwd&#x7d;</password>
... ... @@ -269,17 +269,23 @@
269 269 <order>
270 270 <hop> <from>&#x539f;&#x59cb;&#x7cfb;&#x7edf;&#x5bfc;&#x51fa;&#x7684;Excel&#x8f93;&#x5165;</from><to>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</to><enabled>Y</enabled> </hop>
271 271 <hop> <from>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</from><to>&#x662f;&#x5426;&#x7a7a;&#x8c03;&#x8f66;</to><enabled>Y</enabled> </hop>
272   - <hop> <from>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_cars</from><to>&#x9519;&#x8bef;&#x8f93;&#x51fa;</to><enabled>Y</enabled> </hop>
273 272 <hop> <from>&#x662f;&#x5426;&#x6709;LED&#x670d;&#x52a1;&#x5c4f;</from><to>&#x662f;&#x5426;&#x6709;TV&#x89c6;&#x9891;</to><enabled>Y</enabled> </hop>
274 273 <hop> <from>&#x662f;&#x5426;&#x6709;TV&#x89c6;&#x9891;</from><to>&#x662f;&#x5426;&#x7684;&#x53d8;&#x6210;&#x6570;&#x5b57;&#x578b;</to><enabled>Y</enabled> </hop>
275   - <hop> <from>&#x662f;&#x5426;&#x7684;&#x53d8;&#x6210;&#x6570;&#x5b57;&#x578b;</from><to>&#x516c;&#x4ea4;&#x4f01;&#x4e1a;&#x4ee3;&#x7801;</to><enabled>Y</enabled> </hop>
276 274 <hop> <from>&#x662f;&#x5426;&#x7a7a;&#x8c03;&#x8f66;</from><to>&#x6709;&#x65e0;&#x4eba;&#x552e;&#x7968;</to><enabled>Y</enabled> </hop>
277 275 <hop> <from>&#x6709;&#x65e0;&#x4eba;&#x552e;&#x7968;</from><to>&#x662f;&#x5426;&#x6709;LED&#x670d;&#x52a1;&#x5c4f;</to><enabled>Y</enabled> </hop>
278   - <hop> <from>&#x516c;&#x4ea4;&#x4f01;&#x4e1a;&#x4ee3;&#x7801;</from><to>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_cars</to><enabled>Y</enabled> </hop>
279 276 <hop> <from>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</from><to>&#x539f;&#x59cb;&#x7cfb;&#x7edf;&#x5bfc;&#x51fa;&#x7684;Excel&#x8f93;&#x5165;</to><enabled>Y</enabled> </hop>
  277 + <hop> <from>&#x4f9b;&#x5e94;&#x5546;&#x540d;&#x79f0;</from><to>&#x8425;&#x8fd0;&#x72b6;&#x6001;</to><enabled>Y</enabled> </hop>
  278 + <hop> <from>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_cars 2</from><to>&#x9519;&#x8bef;&#x8f93;&#x51fa; 2</to><enabled>Y</enabled> </hop>
  279 + <hop> <from>&#x673a;&#x52a8;&#x8f66;&#x7c7b;&#x578b;</from><to>&#x8f66;&#x8f86;&#x7c7b;&#x578b;</to><enabled>Y</enabled> </hop>
  280 + <hop> <from>&#x8425;&#x8fd0;&#x72b6;&#x6001;</from><to>&#x673a;&#x52a8;&#x8f66;&#x7c7b;&#x578b;</to><enabled>Y</enabled> </hop>
  281 + <hop> <from>&#x8f66;&#x8f86;&#x7c7b;&#x578b;</from><to>&#x8f66;&#x8f86;&#x7f16;&#x7801;</to><enabled>Y</enabled> </hop>
  282 + <hop> <from>&#x8f66;&#x8f86;&#x7f16;&#x7801;</from><to>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_cars 2</to><enabled>Y</enabled> </hop>
  283 + <hop> <from>&#x662f;&#x5426;&#x7684;&#x53d8;&#x6210;&#x6570;&#x5b57;&#x578b;</from><to>&#x516c;&#x4ea4;&#x4f01;&#x4e1a;&#x4ee3;&#x7801;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>
  284 + <hop> <from>&#x516c;&#x4ea4;&#x4f01;&#x4e1a;&#x4ee3;&#x7801;&#x67e5;&#x8be2;</from><to>&#x4f9b;&#x5e94;&#x5546;&#x540d;&#x79f0;</to><enabled>Y</enabled> </hop>
  285 + <hop> <from>&#x662f;&#x5426;&#x7684;&#x53d8;&#x6210;&#x6570;&#x5b57;&#x578b;</from><to>&#x9519;&#x8bef;&#x8f93;&#x51fa; 2 2</to><enabled>Y</enabled> </hop>
280 286 </order>
281 287 <step>
282   - <name>&#x516c;&#x4ea4;&#x4f01;&#x4e1a;&#x4ee3;&#x7801;</name>
  288 + <name>&#x4f9b;&#x5e94;&#x5546;&#x540d;&#x79f0;</name>
283 289 <type>ValueMapper</type>
284 290 <description/>
285 291 <distribute>Y</distribute>
... ... @@ -289,39 +295,65 @@
289 295 <method>none</method>
290 296 <schema_name/>
291 297 </partitioning>
292   - <field_to_use>company</field_to_use>
293   - <target_field>businessCode</target_field>
  298 + <field_to_use>supplierName</field_to_use>
  299 + <target_field/>
294 300 <non_match_default/>
295 301 <fields>
296 302 <field>
297   - <source_value>&#x4e0a;&#x5357;&#x516c;&#x53f8;</source_value>
298   - <target_value>55</target_value>
299   - </field>
300   - <field>
301   - <source_value>&#x91d1;&#x9ad8;&#x516c;&#x53f8;</source_value>
302   - <target_value>22</target_value>
303   - </field>
304   - <field>
305   - <source_value>&#x6768;&#x9ad8;&#x516c;&#x53f8;</source_value>
306   - <target_value>05</target_value>
307   - </field>
308   - <field>
309   - <source_value>&#x5357;&#x6c47;&#x516c;&#x53f8;</source_value>
310   - <target_value>26</target_value>
311   - </field>
312   - <field>
313   - <source_value>&#x516c;&#x4ea4;&#x516c;&#x53f8;</source_value>
314   - <target_value>88</target_value>
  303 + <source_value>&#x5df4;&#x58eb;&#x62d3;&#x534e;</source_value>
  304 + <target_value>1</target_value>
315 305 </field>
316 306 <field>
317   - <source_value>&#x95f5;&#x884c;&#x516c;&#x4ea4;</source_value>
318   - <target_value>77</target_value>
  307 + <source_value>&#x535a;&#x5eb7;</source_value>
  308 + <target_value>2</target_value>
319 309 </field>
320 310 </fields>
321 311 <cluster_schema/>
322 312 <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
323   - <xloc>841</xloc>
324   - <yloc>166</yloc>
  313 + <xloc>709</xloc>
  314 + <yloc>172</yloc>
  315 + <draw>Y</draw>
  316 + </GUI>
  317 + </step>
  318 +
  319 + <step>
  320 + <name>&#x516c;&#x4ea4;&#x4f01;&#x4e1a;&#x4ee3;&#x7801;&#x67e5;&#x8be2;</name>
  321 + <type>DBLookup</type>
  322 + <description/>
  323 + <distribute>Y</distribute>
  324 + <custom_distribution/>
  325 + <copies>1</copies>
  326 + <partitioning>
  327 + <method>none</method>
  328 + <schema_name/>
  329 + </partitioning>
  330 + <connection>bus_control_variable</connection>
  331 + <cache>N</cache>
  332 + <cache_load_all>N</cache_load_all>
  333 + <cache_size>0</cache_size>
  334 + <lookup>
  335 + <schema/>
  336 + <table>bsth_c_business</table>
  337 + <orderby/>
  338 + <fail_on_multiple>N</fail_on_multiple>
  339 + <eat_row_on_failure>N</eat_row_on_failure>
  340 + <key>
  341 + <name>company</name>
  342 + <field>business_name</field>
  343 + <condition>&#x3d;</condition>
  344 + <name2/>
  345 + </key>
  346 + <value>
  347 + <name>business_code</name>
  348 + <rename>businessCode</rename>
  349 + <default/>
  350 + <type>String</type>
  351 + </value>
  352 + </lookup>
  353 + <cluster_schema/>
  354 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  355 + <xloc>839</xloc>
  356 + <yloc>169</yloc>
325 357 <draw>Y</draw>
326 358 </GUI>
327 359 </step>
... ... @@ -967,7 +999,7 @@
967 999 </step>
968 1000  
969 1001 <step>
970   - <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_cars</name>
  1002 + <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_cars 2</name>
971 1003 <type>InsertUpdate</type>
972 1004 <description/>
973 1005 <distribute>Y</distribute>
... ... @@ -1162,8 +1194,8 @@
1162 1194 </lookup>
1163 1195 <cluster_schema/>
1164 1196 <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
1165   - <xloc>842</xloc>
1166   - <yloc>319</yloc>
  1197 + <xloc>821</xloc>
  1198 + <yloc>362</yloc>
1167 1199 <draw>Y</draw>
1168 1200 </GUI>
1169 1201 </step>
... ... @@ -1377,6 +1409,54 @@
1377 1409 </step>
1378 1410  
1379 1411 <step>
  1412 + <name>&#x673a;&#x52a8;&#x8f66;&#x7c7b;&#x578b;</name>
  1413 + <type>ValueMapper</type>
  1414 + <description/>
  1415 + <distribute>Y</distribute>
  1416 + <custom_distribution/>
  1417 + <copies>1</copies>
  1418 + <partitioning>
  1419 + <method>none</method>
  1420 + <schema_name/>
  1421 + </partitioning>
  1422 + <field_to_use>vehicleStats</field_to_use>
  1423 + <target_field/>
  1424 + <non_match_default/>
  1425 + <fields>
  1426 + <field>
  1427 + <source_value>&#x975e;&#x673a;&#x52a8;&#x8f66;</source_value>
  1428 + <target_value>1</target_value>
  1429 + </field>
  1430 + <field>
  1431 + <source_value>&#x673a;&#x52a8;&#x4e00;&#x961f;</source_value>
  1432 + <target_value>2</target_value>
  1433 + </field>
  1434 + <field>
  1435 + <source_value>&#x673a;&#x52a8;&#x4e8c;&#x961f;</source_value>
  1436 + <target_value>3</target_value>
  1437 + </field>
  1438 + <field>
  1439 + <source_value>&#x673a;&#x52a8;&#x4e09;&#x961f;</source_value>
  1440 + <target_value>4</target_value>
  1441 + </field>
  1442 + <field>
  1443 + <source_value>&#x5907;&#x8f66;</source_value>
  1444 + <target_value>5</target_value>
  1445 + </field>
  1446 + <field>
  1447 + <source_value>&#x62a2;&#x4fee;&#x8f66;</source_value>
  1448 + <target_value>6</target_value>
  1449 + </field>
  1450 + </fields>
  1451 + <cluster_schema/>
  1452 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1453 + <xloc>519</xloc>
  1454 + <yloc>174</yloc>
  1455 + <draw>Y</draw>
  1456 + </GUI>
  1457 + </step>
  1458 +
  1459 + <step>
1380 1460 <name>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</name>
1381 1461 <type>GetVariable</type>
1382 1462 <description/>
... ... @@ -1422,7 +1502,156 @@
1422 1502 </step>
1423 1503  
1424 1504 <step>
1425   - <name>&#x9519;&#x8bef;&#x8f93;&#x51fa;</name>
  1505 + <name>&#x8425;&#x8fd0;&#x72b6;&#x6001;</name>
  1506 + <type>ValueMapper</type>
  1507 + <description/>
  1508 + <distribute>Y</distribute>
  1509 + <custom_distribution/>
  1510 + <copies>1</copies>
  1511 + <partitioning>
  1512 + <method>none</method>
  1513 + <schema_name/>
  1514 + </partitioning>
  1515 + <field_to_use>operatorsState</field_to_use>
  1516 + <target_field/>
  1517 + <non_match_default/>
  1518 + <fields>
  1519 + <field>
  1520 + <source_value>&#x8425;&#x8fd0;</source_value>
  1521 + <target_value>1</target_value>
  1522 + </field>
  1523 + <field>
  1524 + <source_value>&#x505c;&#x8fd0;</source_value>
  1525 + <target_value>2</target_value>
  1526 + </field>
  1527 + <field>
  1528 + <source_value>&#x6302;&#x5931;</source_value>
  1529 + <target_value>3</target_value>
  1530 + </field>
  1531 + <field>
  1532 + <source_value>&#x8fc1;&#x51fa;&#xff08;&#x8fc7;&#x6237;&#xff09;</source_value>
  1533 + <target_value>4</target_value>
  1534 + </field>
  1535 + <field>
  1536 + <source_value>&#x8fc1;&#x51fa;&#xff08;&#x8f6c;&#x7c4d;&#xff09;</source_value>
  1537 + <target_value>5</target_value>
  1538 + </field>
  1539 + <field>
  1540 + <source_value>&#x62a5;&#x5e9f;</source_value>
  1541 + <target_value>6</target_value>
  1542 + </field>
  1543 + <field>
  1544 + <source_value>&#x6b47;&#x4e1a;</source_value>
  1545 + <target_value>7</target_value>
  1546 + </field>
  1547 + <field>
  1548 + <source_value>&#x6ce8;&#x9500;</source_value>
  1549 + <target_value>8</target_value>
  1550 + </field>
  1551 + <field>
  1552 + <source_value>&#x6d4b;&#x8bd5;</source_value>
  1553 + <target_value>9</target_value>
  1554 + </field>
  1555 + <field>
  1556 + <source_value>&#x5176;&#x4ed6;</source_value>
  1557 + <target_value>10</target_value>
  1558 + </field>
  1559 + </fields>
  1560 + <cluster_schema/>
  1561 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1562 + <xloc>615</xloc>
  1563 + <yloc>173</yloc>
  1564 + <draw>Y</draw>
  1565 + </GUI>
  1566 + </step>
  1567 +
  1568 + <step>
  1569 + <name>&#x8f66;&#x8f86;&#x7c7b;&#x578b;</name>
  1570 + <type>ValueMapper</type>
  1571 + <description/>
  1572 + <distribute>Y</distribute>
  1573 + <custom_distribution/>
  1574 + <copies>1</copies>
  1575 + <partitioning>
  1576 + <method>none</method>
  1577 + <schema_name/>
  1578 + </partitioning>
  1579 + <field_to_use>carType</field_to_use>
  1580 + <target_field/>
  1581 + <non_match_default/>
  1582 + <fields>
  1583 + <field>
  1584 + <source_value>&#x8425;&#x8fd0;&#x8f66;</source_value>
  1585 + <target_value>1</target_value>
  1586 + </field>
  1587 + <field>
  1588 + <source_value>&#x5305;&#x8f66;</source_value>
  1589 + <target_value>2</target_value>
  1590 + </field>
  1591 + <field>
  1592 + <source_value>&#x5b66;&#x6821;&#x73ed;&#x8f66;</source_value>
  1593 + <target_value>3</target_value>
  1594 + </field>
  1595 + <field>
  1596 + <source_value>&#x516c;&#x53f8;&#x73ed;&#x8f66;</source_value>
  1597 + <target_value>4</target_value>
  1598 + </field>
  1599 + <field>
  1600 + <source_value>&#x5f85;&#x62a5;&#x5e9f;&#x8f66;</source_value>
  1601 + <target_value>5</target_value>
  1602 + </field>
  1603 + <field>
  1604 + <source_value>&#x5907;&#x8f66;</source_value>
  1605 + <target_value>6</target_value>
  1606 + </field>
  1607 + <field>
  1608 + <source_value>&#x6d4b;&#x8bd5;&#x8bbe;&#x5907;</source_value>
  1609 + <target_value>7</target_value>
  1610 + </field>
  1611 + </fields>
  1612 + <cluster_schema/>
  1613 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1614 + <xloc>521</xloc>
  1615 + <yloc>275</yloc>
  1616 + <draw>Y</draw>
  1617 + </GUI>
  1618 + </step>
  1619 +
  1620 + <step>
  1621 + <name>&#x8f66;&#x8f86;&#x7f16;&#x7801;</name>
  1622 + <type>Constant</type>
  1623 + <description/>
  1624 + <distribute>Y</distribute>
  1625 + <custom_distribution/>
  1626 + <copies>1</copies>
  1627 + <partitioning>
  1628 + <method>none</method>
  1629 + <schema_name/>
  1630 + </partitioning>
  1631 + <fields>
  1632 + <field>
  1633 + <name>carCode</name>
  1634 + <type>String</type>
  1635 + <format/>
  1636 + <currency/>
  1637 + <decimal/>
  1638 + <group/>
  1639 + <nullif>1</nullif>
  1640 + <length>-1</length>
  1641 + <precision>-1</precision>
  1642 + <set_empty_string>N</set_empty_string>
  1643 + </field>
  1644 + </fields>
  1645 + <cluster_schema/>
  1646 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1647 + <xloc>820</xloc>
  1648 + <yloc>272</yloc>
  1649 + <draw>Y</draw>
  1650 + </GUI>
  1651 + </step>
  1652 +
  1653 + <step>
  1654 + <name>&#x9519;&#x8bef;&#x8f93;&#x51fa; 2</name>
1426 1655 <type>ExcelOutput</type>
1427 1656 <description/>
1428 1657 <distribute>Y</distribute>
... ... @@ -1672,16 +1901,290 @@
1672 1901 </custom>
1673 1902 <cluster_schema/>
1674 1903 <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
1675   - <xloc>637</xloc>
1676   - <yloc>320</yloc>
  1904 + <xloc>633</xloc>
  1905 + <yloc>364</yloc>
  1906 + <draw>Y</draw>
  1907 + </GUI>
  1908 + </step>
  1909 +
  1910 + <step>
  1911 + <name>&#x9519;&#x8bef;&#x8f93;&#x51fa; 2 2</name>
  1912 + <type>ExcelOutput</type>
  1913 + <description/>
  1914 + <distribute>Y</distribute>
  1915 + <custom_distribution/>
  1916 + <copies>1</copies>
  1917 + <partitioning>
  1918 + <method>none</method>
  1919 + <schema_name/>
  1920 + </partitioning>
  1921 + <header>Y</header>
  1922 + <footer>N</footer>
  1923 + <encoding/>
  1924 + <append>N</append>
  1925 + <add_to_result_filenames>Y</add_to_result_filenames>
  1926 + <file>
  1927 + <name>&#x24;&#x7b;erroroutputdir&#x7d;&#x2f;&#x8f66;&#x8f86;&#x57fa;&#x7840;&#x4fe1;&#x606f;_&#x9519;&#x8bef;2</name>
  1928 + <extention>xls</extention>
  1929 + <do_not_open_newfile_init>N</do_not_open_newfile_init>
  1930 + <create_parent_folder>N</create_parent_folder>
  1931 + <split>N</split>
  1932 + <add_date>N</add_date>
  1933 + <add_time>N</add_time>
  1934 + <SpecifyFormat>N</SpecifyFormat>
  1935 + <date_time_format/>
  1936 + <sheetname>Sheet1</sheetname>
  1937 + <autosizecolums>N</autosizecolums>
  1938 + <nullisblank>N</nullisblank>
  1939 + <protect_sheet>N</protect_sheet>
  1940 + <password>Encrypted </password>
  1941 + <splitevery>0</splitevery>
  1942 + <usetempfiles>N</usetempfiles>
  1943 + <tempdirectory/>
  1944 + </file>
  1945 + <template>
  1946 + <enabled>N</enabled>
  1947 + <append>N</append>
  1948 + <filename>template.xls</filename>
  1949 + </template>
  1950 + <fields>
  1951 + <field>
  1952 + <name>insideCode</name>
  1953 + <type>String</type>
  1954 + <format/>
  1955 + </field>
  1956 + <field>
  1957 + <name>carCode</name>
  1958 + <type>String</type>
  1959 + <format/>
  1960 + </field>
  1961 + <field>
  1962 + <name>company</name>
  1963 + <type>String</type>
  1964 + <format/>
  1965 + </field>
  1966 + <field>
  1967 + <name>brancheCompany</name>
  1968 + <type>String</type>
  1969 + <format/>
  1970 + </field>
  1971 + <field>
  1972 + <name>carPlate</name>
  1973 + <type>String</type>
  1974 + <format/>
  1975 + </field>
  1976 + <field>
  1977 + <name>supplierName</name>
  1978 + <type>String</type>
  1979 + <format/>
  1980 + </field>
  1981 + <field>
  1982 + <name>equipmentCode</name>
  1983 + <type>String</type>
  1984 + <format/>
  1985 + </field>
  1986 + <field>
  1987 + <name>carClass</name>
  1988 + <type>String</type>
  1989 + <format/>
  1990 + </field>
  1991 + <field>
  1992 + <name>speed</name>
  1993 + <type>String</type>
  1994 + <format/>
  1995 + </field>
  1996 + <field>
  1997 + <name>carSeatnNumber</name>
  1998 + <type>String</type>
  1999 + <format/>
  2000 + </field>
  2001 + <field>
  2002 + <name>carStandard</name>
  2003 + <type>String</type>
  2004 + <format/>
  2005 + </field>
  2006 + <field>
  2007 + <name>kburnStandard</name>
  2008 + <type>String</type>
  2009 + <format/>
  2010 + </field>
  2011 + <field>
  2012 + <name>gburnStandard</name>
  2013 + <type>String</type>
  2014 + <format/>
  2015 + </field>
  2016 + <field>
  2017 + <name>scrapCode</name>
  2018 + <type>String</type>
  2019 + <format/>
  2020 + </field>
  2021 + <field>
  2022 + <name>makeCodeOne</name>
  2023 + <type>String</type>
  2024 + <format/>
  2025 + </field>
  2026 + <field>
  2027 + <name>makeCodeTwo</name>
  2028 + <type>String</type>
  2029 + <format/>
  2030 + </field>
  2031 + <field>
  2032 + <name>carGride</name>
  2033 + <type>String</type>
  2034 + <format/>
  2035 + </field>
  2036 + <field>
  2037 + <name>emissionsStandard</name>
  2038 + <type>String</type>
  2039 + <format/>
  2040 + </field>
  2041 + <field>
  2042 + <name>engineCodeOne</name>
  2043 + <type>String</type>
  2044 + <format/>
  2045 + </field>
  2046 + <field>
  2047 + <name>engineCodeTwo</name>
  2048 + <type>String</type>
  2049 + <format/>
  2050 + </field>
  2051 + <field>
  2052 + <name>carNumberOne</name>
  2053 + <type>String</type>
  2054 + <format/>
  2055 + </field>
  2056 + <field>
  2057 + <name>carNumberTwo</name>
  2058 + <type>String</type>
  2059 + <format/>
  2060 + </field>
  2061 + <field>
  2062 + <name>openDate</name>
  2063 + <type>String</type>
  2064 + <format/>
  2065 + </field>
  2066 + <field>
  2067 + <name>closeDate</name>
  2068 + <type>String</type>
  2069 + <format/>
  2070 + </field>
  2071 + <field>
  2072 + <name>hvacCar</name>
  2073 + <type>String</type>
  2074 + <format/>
  2075 + </field>
  2076 + <field>
  2077 + <name>ticketType</name>
  2078 + <type>String</type>
  2079 + <format/>
  2080 + </field>
  2081 + <field>
  2082 + <name>ledScreen</name>
  2083 + <type>String</type>
  2084 + <format/>
  2085 + </field>
  2086 + <field>
  2087 + <name>tvVideoType</name>
  2088 + <type>String</type>
  2089 + <format/>
  2090 + </field>
  2091 + <field>
  2092 + <name>carType</name>
  2093 + <type>String</type>
  2094 + <format/>
  2095 + </field>
  2096 + <field>
  2097 + <name>vehicleStats</name>
  2098 + <type>String</type>
  2099 + <format/>
  2100 + </field>
  2101 + <field>
  2102 + <name>operatorsState</name>
  2103 + <type>String</type>
  2104 + <format/>
  2105 + </field>
  2106 + <field>
  2107 + <name>descriptions</name>
  2108 + <type>String</type>
  2109 + <format/>
  2110 + </field>
  2111 + <field>
  2112 + <name>videoCode</name>
  2113 + <type>String</type>
  2114 + <format/>
  2115 + </field>
  2116 + <field>
  2117 + <name>&#x4fee;&#x6539;&#x65e5;&#x671f;</name>
  2118 + <type>String</type>
  2119 + <format/>
  2120 + </field>
  2121 + <field>
  2122 + <name>&#x62a5;&#x5e9f;&#x65e5;&#x671f;</name>
  2123 + <type>String</type>
  2124 + <format/>
  2125 + </field>
  2126 + <field>
  2127 + <name>error_count</name>
  2128 + <type>Integer</type>
  2129 + <format/>
  2130 + </field>
  2131 + <field>
  2132 + <name>error_desc</name>
  2133 + <type>String</type>
  2134 + <format/>
  2135 + </field>
  2136 + <field>
  2137 + <name>error_column1</name>
  2138 + <type>String</type>
  2139 + <format/>
  2140 + </field>
  2141 + <field>
  2142 + <name>error_column2</name>
  2143 + <type>String</type>
  2144 + <format/>
  2145 + </field>
  2146 + </fields>
  2147 + <custom>
  2148 + <header_font_name>arial</header_font_name>
  2149 + <header_font_size>10</header_font_size>
  2150 + <header_font_bold>N</header_font_bold>
  2151 + <header_font_italic>N</header_font_italic>
  2152 + <header_font_underline>no</header_font_underline>
  2153 + <header_font_orientation>horizontal</header_font_orientation>
  2154 + <header_font_color>black</header_font_color>
  2155 + <header_background_color>none</header_background_color>
  2156 + <header_row_height>255</header_row_height>
  2157 + <header_alignment>left</header_alignment>
  2158 + <header_image/>
  2159 + <row_font_name>arial</row_font_name>
  2160 + <row_font_size>10</row_font_size>
  2161 + <row_font_color>black</row_font_color>
  2162 + <row_background_color>none</row_background_color>
  2163 + </custom>
  2164 + <cluster_schema/>
  2165 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2166 + <xloc>971</xloc>
  2167 + <yloc>63</yloc>
1677 2168 <draw>Y</draw>
1678 2169 </GUI>
1679 2170 </step>
1680 2171  
1681 2172 <step_error_handling>
1682 2173 <error>
1683   - <source_step>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_cars</source_step>
1684   - <target_step>&#x9519;&#x8bef;&#x8f93;&#x51fa;</target_step>
  2174 + <source_step>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_cars 2</source_step>
  2175 + <target_step>&#x9519;&#x8bef;&#x8f93;&#x51fa; 2</target_step>
  2176 + <is_enabled>Y</is_enabled>
  2177 + <nr_valuename>error_count</nr_valuename>
  2178 + <descriptions_valuename>error_desc</descriptions_valuename>
  2179 + <fields_valuename>error_column1</fields_valuename>
  2180 + <codes_valuename>error_column2</codes_valuename>
  2181 + <max_errors/>
  2182 + <max_pct_errors/>
  2183 + <min_pct_rows/>
  2184 + </error>
  2185 + <error>
  2186 + <source_step>&#x662f;&#x5426;&#x7684;&#x53d8;&#x6210;&#x6570;&#x5b57;&#x578b;</source_step>
  2187 + <target_step>&#x9519;&#x8bef;&#x8f93;&#x51fa; 2 2</target_step>
1685 2188 <is_enabled>Y</is_enabled>
1686 2189 <nr_valuename>error_count</nr_valuename>
1687 2190 <descriptions_valuename>error_desc</descriptions_valuename>
... ...
src/main/resources/datatools/ktrs/carsDataOutput.ktr 0 → 100644
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<transformation>
  3 + <info>
  4 + <name>carsDataOutput</name>
  5 + <description>&#x8f66;&#x8f86;&#x4fe1;&#x606f;&#x5bfc;&#x51fa;</description>
  6 + <extended_description>&#x8f66;&#x8f86;&#x57fa;&#x7840;&#x4fe1;&#x606f;</extended_description>
  7 + <trans_version/>
  8 + <trans_type>Normal</trans_type>
  9 + <trans_status>0</trans_status>
  10 + <directory>&#x2f;</directory>
  11 + <parameters>
  12 + <parameter>
  13 + <name>filepath</name>
  14 + <default_value/>
  15 + <description>excel&#x6587;&#x4ef6;&#x8def;&#x5f84;</description>
  16 + </parameter>
  17 + </parameters>
  18 + <log>
  19 +<trans-log-table><connection/>
  20 +<schema/>
  21 +<table/>
  22 +<size_limit_lines/>
  23 +<interval/>
  24 +<timeout_days/>
  25 +<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>
  26 +<perf-log-table><connection/>
  27 +<schema/>
  28 +<table/>
  29 +<interval/>
  30 +<timeout_days/>
  31 +<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>
  32 +<channel-log-table><connection/>
  33 +<schema/>
  34 +<table/>
  35 +<timeout_days/>
  36 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>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>
  37 +<step-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>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>
  42 +<metrics-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>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>
  47 + </log>
  48 + <maxdate>
  49 + <connection/>
  50 + <table/>
  51 + <field/>
  52 + <offset>0.0</offset>
  53 + <maxdiff>0.0</maxdiff>
  54 + </maxdate>
  55 + <size_rowset>10000</size_rowset>
  56 + <sleep_time_empty>50</sleep_time_empty>
  57 + <sleep_time_full>50</sleep_time_full>
  58 + <unique_connections>N</unique_connections>
  59 + <feedback_shown>Y</feedback_shown>
  60 + <feedback_size>50000</feedback_size>
  61 + <using_thread_priorities>Y</using_thread_priorities>
  62 + <shared_objects_file/>
  63 + <capture_step_performance>N</capture_step_performance>
  64 + <step_performance_capturing_delay>1000</step_performance_capturing_delay>
  65 + <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit>
  66 + <dependencies>
  67 + </dependencies>
  68 + <partitionschemas>
  69 + </partitionschemas>
  70 + <slaveservers>
  71 + </slaveservers>
  72 + <clusterschemas>
  73 + </clusterschemas>
  74 + <created_user>-</created_user>
  75 + <created_date>2016&#x2f;08&#x2f;05 16&#x3a;42&#x3a;22.753</created_date>
  76 + <modified_user>-</modified_user>
  77 + <modified_date>2016&#x2f;08&#x2f;05 16&#x3a;42&#x3a;22.753</modified_date>
  78 + <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA&#x3d;</key_for_session_key>
  79 + <is_key_private>N</is_key_private>
  80 + </info>
  81 + <notepads>
  82 + </notepads>
  83 + <connection>
  84 + <name>bus_control_variable</name>
  85 + <server>&#x24;&#x7b;v_db_ip&#x7d;</server>
  86 + <type>MYSQL</type>
  87 + <access>Native</access>
  88 + <database>&#x24;&#x7b;v_db_dname&#x7d;</database>
  89 + <port>3306</port>
  90 + <username>&#x24;&#x7b;v_db_uname&#x7d;</username>
  91 + <password>&#x24;&#x7b;v_db_pwd&#x7d;</password>
  92 + <servername/>
  93 + <data_tablespace/>
  94 + <index_tablespace/>
  95 + <attributes>
  96 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  97 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  98 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  99 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  100 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  101 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  102 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  103 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  104 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  105 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  106 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  107 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  108 + </attributes>
  109 + </connection>
  110 + <connection>
  111 + <name>bus_control_&#x516c;&#x53f8;_201</name>
  112 + <server>localhost</server>
  113 + <type>MYSQL</type>
  114 + <access>Native</access>
  115 + <database>control</database>
  116 + <port>3306</port>
  117 + <username>root</username>
  118 + <password>Encrypted </password>
  119 + <servername/>
  120 + <data_tablespace/>
  121 + <index_tablespace/>
  122 + <attributes>
  123 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  124 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  125 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  126 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  127 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  128 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  129 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  130 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  131 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  132 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  133 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  134 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  135 + </attributes>
  136 + </connection>
  137 + <connection>
  138 + <name>bus_control_&#x672c;&#x673a;</name>
  139 + <server>localhost</server>
  140 + <type>MYSQL</type>
  141 + <access>Native</access>
  142 + <database>control</database>
  143 + <port>3306</port>
  144 + <username>root</username>
  145 + <password>Encrypted </password>
  146 + <servername/>
  147 + <data_tablespace/>
  148 + <index_tablespace/>
  149 + <attributes>
  150 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  151 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  152 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  153 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  154 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  155 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  156 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  157 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  158 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  159 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  160 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  161 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  162 + </attributes>
  163 + </connection>
  164 + <connection>
  165 + <name>xlab_mysql_youle</name>
  166 + <server>101.231.124.8</server>
  167 + <type>MYSQL</type>
  168 + <access>Native</access>
  169 + <database>xlab_youle</database>
  170 + <port>45687</port>
  171 + <username>xlab-youle</username>
  172 + <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password>
  173 + <servername/>
  174 + <data_tablespace/>
  175 + <index_tablespace/>
  176 + <attributes>
  177 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  178 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  179 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  180 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  181 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  182 + <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute>
  183 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  184 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  185 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  186 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  187 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  188 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  189 + </attributes>
  190 + </connection>
  191 + <connection>
  192 + <name>xlab_mysql_youle&#xff08;&#x672c;&#x673a;&#xff09;</name>
  193 + <server>localhost</server>
  194 + <type>MYSQL</type>
  195 + <access>Native</access>
  196 + <database>xlab_youle</database>
  197 + <port>3306</port>
  198 + <username>root</username>
  199 + <password>Encrypted </password>
  200 + <servername/>
  201 + <data_tablespace/>
  202 + <index_tablespace/>
  203 + <attributes>
  204 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  205 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  206 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  207 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  208 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  209 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  210 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  211 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  212 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  213 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  214 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  215 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  216 + </attributes>
  217 + </connection>
  218 + <connection>
  219 + <name>xlab_youle</name>
  220 + <server/>
  221 + <type>MYSQL</type>
  222 + <access>JNDI</access>
  223 + <database>xlab_youle</database>
  224 + <port>1521</port>
  225 + <username/>
  226 + <password>Encrypted </password>
  227 + <servername/>
  228 + <data_tablespace/>
  229 + <index_tablespace/>
  230 + <attributes>
  231 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  232 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  233 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  234 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  235 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  236 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  237 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  238 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  239 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  240 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  241 + </attributes>
  242 + </connection>
  243 + <order>
  244 + <hop> <from>&#x662f;&#x5426;&#x6709;LED&#x670d;&#x52a1;&#x5c4f;</from><to>&#x662f;&#x5426;&#x6709;TV&#x89c6;&#x9891;</to><enabled>Y</enabled> </hop>
  245 + <hop> <from>&#x662f;&#x5426;&#x7a7a;&#x8c03;&#x8f66;</from><to>&#x6709;&#x65e0;&#x4eba;&#x552e;&#x7968;</to><enabled>Y</enabled> </hop>
  246 + <hop> <from>&#x6709;&#x65e0;&#x4eba;&#x552e;&#x7968;</from><to>&#x662f;&#x5426;&#x6709;LED&#x670d;&#x52a1;&#x5c4f;</to><enabled>Y</enabled> </hop>
  247 + <hop> <from>&#x8868;&#x8f93;&#x5165;</from><to>&#x662f;&#x5426;&#x7a7a;&#x8c03;&#x8f66;</to><enabled>Y</enabled> </hop>
  248 + <hop> <from>&#x662f;&#x5426;&#x6709;TV&#x89c6;&#x9891;</from><to>&#x4f9b;&#x5e94;&#x5546;&#x540d;&#x79f0;</to><enabled>Y</enabled> </hop>
  249 + <hop> <from>&#x4f9b;&#x5e94;&#x5546;&#x540d;&#x79f0;</from><to>&#x8425;&#x8fd0;&#x72b6;&#x6001;&#x6807;&#x8bc6;</to><enabled>Y</enabled> </hop>
  250 + <hop> <from>&#x8425;&#x8fd0;&#x72b6;&#x6001;&#x6807;&#x8bc6;</from><to>&#x8425;&#x8fd0;&#x72b6;&#x6001;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>
  251 + <hop> <from>&#x8425;&#x8fd0;&#x72b6;&#x6001;&#x67e5;&#x8be2;</from><to>&#x673a;&#x52a8;&#x8f66;&#x7c7b;&#x578b;&#x6807;&#x8bc6;</to><enabled>Y</enabled> </hop>
  252 + <hop> <from>&#x673a;&#x52a8;&#x8f66;&#x7c7b;&#x578b;&#x6807;&#x8bc6;</from><to>&#x673a;&#x52a8;&#x8f66;&#x7c7b;&#x578b;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>
  253 + <hop> <from>&#x673a;&#x52a8;&#x8f66;&#x7c7b;&#x578b;&#x67e5;&#x8be2;</from><to>&#x8f66;&#x8f86;&#x7c7b;&#x578b;&#x6807;&#x8bc6;</to><enabled>Y</enabled> </hop>
  254 + <hop> <from>&#x8f66;&#x8f86;&#x7c7b;&#x578b;&#x6807;&#x8bc6;</from><to>&#x8f66;&#x8f86;&#x7c7b;&#x578b;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>
  255 + <hop> <from>&#x8f66;&#x8f86;&#x7c7b;&#x578b;&#x67e5;&#x8be2;</from><to>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</to><enabled>Y</enabled> </hop>
  256 + <hop> <from>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</from><to>&#x5b57;&#x6bb5;&#x9009;&#x62e9; 2</to><enabled>Y</enabled> </hop>
  257 + <hop> <from>&#x5b57;&#x6bb5;&#x9009;&#x62e9; 2</from><to>Excel&#x8f93;&#x51fa;</to><enabled>Y</enabled> </hop>
  258 + </order>
  259 + <step>
  260 + <name>Excel&#x8f93;&#x51fa;</name>
  261 + <type>ExcelOutput</type>
  262 + <description/>
  263 + <distribute>Y</distribute>
  264 + <custom_distribution/>
  265 + <copies>1</copies>
  266 + <partitioning>
  267 + <method>none</method>
  268 + <schema_name/>
  269 + </partitioning>
  270 + <header>Y</header>
  271 + <footer>N</footer>
  272 + <encoding/>
  273 + <append>N</append>
  274 + <add_to_result_filenames>Y</add_to_result_filenames>
  275 + <file>
  276 + <name>&#x24;&#x7b;filepath&#x7d;</name>
  277 + <extention/>
  278 + <do_not_open_newfile_init>N</do_not_open_newfile_init>
  279 + <create_parent_folder>N</create_parent_folder>
  280 + <split>N</split>
  281 + <add_date>N</add_date>
  282 + <add_time>N</add_time>
  283 + <SpecifyFormat>N</SpecifyFormat>
  284 + <date_time_format>yyyyMMddHHmmss</date_time_format>
  285 + <sheetname>&#x5de5;&#x4f5c;&#x8868;1</sheetname>
  286 + <autosizecolums>N</autosizecolums>
  287 + <nullisblank>N</nullisblank>
  288 + <protect_sheet>N</protect_sheet>
  289 + <password>Encrypted </password>
  290 + <splitevery>0</splitevery>
  291 + <usetempfiles>N</usetempfiles>
  292 + <tempdirectory/>
  293 + </file>
  294 + <template>
  295 + <enabled>N</enabled>
  296 + <append>N</append>
  297 + <filename>template.xls</filename>
  298 + </template>
  299 + <fields>
  300 + <field>
  301 + <name>&#x8f66;&#x724c;&#x53f7;</name>
  302 + <type>String</type>
  303 + <format/>
  304 + </field>
  305 + <field>
  306 + <name>&#x5185;&#x90e8;&#x7f16;&#x7801;</name>
  307 + <type>String</type>
  308 + <format/>
  309 + </field>
  310 + <field>
  311 + <name>&#x8f66;&#x8f86;&#x7f16;&#x7801;</name>
  312 + <type>String</type>
  313 + <format/>
  314 + </field>
  315 + <field>
  316 + <name>&#x8f66;&#x578b;&#x7c7b;&#x522b;</name>
  317 + <type>String</type>
  318 + <format/>
  319 + </field>
  320 + <field>
  321 + <name>&#x5ea7;&#x4f4d;&#x6570;</name>
  322 + <type>String</type>
  323 + <format/>
  324 + </field>
  325 + <field>
  326 + <name>&#x8f7d;&#x5ba2;&#x6807;&#x51c6;</name>
  327 + <type>String</type>
  328 + <format/>
  329 + </field>
  330 + <field>
  331 + <name>&#x6280;&#x672f;&#x901f;&#x5ea6;</name>
  332 + <type>String</type>
  333 + <format/>
  334 + </field>
  335 + <field>
  336 + <name>&#x662f;&#x5426;&#x7a7a;&#x8c03;</name>
  337 + <type>String</type>
  338 + <format/>
  339 + </field>
  340 + <field>
  341 + <name>&#x6807;&#x51c6;&#x6cb9;&#x8017;&#x28;&#x5f00;&#x7a7a;&#x8c03;&#x29;</name>
  342 + <type>String</type>
  343 + <format/>
  344 + </field>
  345 + <field>
  346 + <name>&#x6807;&#x51c6;&#x6cb9;&#x8017;&#x28;&#x5173;&#x7a7a;&#x8c03;&#x29;</name>
  347 + <type>String</type>
  348 + <format/>
  349 + </field>
  350 + <field>
  351 + <name>&#x6709;&#x65e0;&#x4eba;&#x552e;&#x7968;</name>
  352 + <type>String</type>
  353 + <format/>
  354 + </field>
  355 + <field>
  356 + <name>&#x662f;&#x5426;&#x6709;TV&#x89c6;&#x9891;</name>
  357 + <type>String</type>
  358 + <format/>
  359 + </field>
  360 + <field>
  361 + <name>&#x662f;&#x5426;&#x6709;LED&#x670d;&#x52a1;&#x5c4f;</name>
  362 + <type>String</type>
  363 + <format/>
  364 + </field>
  365 + <field>
  366 + <name>&#x8fd0;&#x8425;&#x72b6;&#x6001;</name>
  367 + <type>String</type>
  368 + <format/>
  369 + </field>
  370 + <field>
  371 + <name>&#x542f;&#x7528;&#x65e5;&#x671f;</name>
  372 + <type>String</type>
  373 + <format/>
  374 + </field>
  375 + <field>
  376 + <name>&#x53d6;&#x6d88;&#x65e5;&#x671f;</name>
  377 + <type>String</type>
  378 + <format/>
  379 + </field>
  380 + <field>
  381 + <name>&#x62a5;&#x5e9f;&#x53f7;</name>
  382 + <type>String</type>
  383 + <format/>
  384 + </field>
  385 + <field>
  386 + <name>&#x62a5;&#x5e9f;&#x65e5;&#x671f;</name>
  387 + <type>String</type>
  388 + <format/>
  389 + </field>
  390 + <field>
  391 + <name>&#x5907;&#x6ce8;</name>
  392 + <type>String</type>
  393 + <format/>
  394 + </field>
  395 + <field>
  396 + <name>&#x8bbe;&#x5907;&#x7f16;&#x53f7;</name>
  397 + <type>String</type>
  398 + <format/>
  399 + </field>
  400 + <field>
  401 + <name>&#x5382;&#x724c;&#x578b;&#x53f7;</name>
  402 + <type>String</type>
  403 + <format/>
  404 + </field>
  405 + <field>
  406 + <name>&#x5382;&#x724c;&#x578b;&#x53f7;2</name>
  407 + <type>String</type>
  408 + <format/>
  409 + </field>
  410 + <field>
  411 + <name>&#x8f66;&#x8f86;&#x7b49;&#x7ea7;&#x6807;&#x51c6;</name>
  412 + <type>String</type>
  413 + <format/>
  414 + </field>
  415 + <field>
  416 + <name>&#x51fa;&#x5382;&#x6392;&#x653e;&#x6807;&#x51c6;</name>
  417 + <type>String</type>
  418 + <format/>
  419 + </field>
  420 + <field>
  421 + <name>&#x53d1;&#x52a8;&#x673a;&#x53f7;&#x7801;1</name>
  422 + <type>String</type>
  423 + <format/>
  424 + </field>
  425 + <field>
  426 + <name>&#x53d1;&#x52a8;&#x673a;&#x53f7;&#x7801;2</name>
  427 + <type>String</type>
  428 + <format/>
  429 + </field>
  430 + <field>
  431 + <name>&#x8f66;&#x67b6;&#x53f7;&#x7801;1</name>
  432 + <type>String</type>
  433 + <format/>
  434 + </field>
  435 + <field>
  436 + <name>&#x8f66;&#x67b6;&#x53f7;&#x7801;2</name>
  437 + <type>String</type>
  438 + <format/>
  439 + </field>
  440 + <field>
  441 + <name>&#x8f66;&#x8f86;&#x7c7b;&#x578b;</name>
  442 + <type>String</type>
  443 + <format/>
  444 + </field>
  445 + <field>
  446 + <name>&#x6240;&#x5c5e;&#x516c;&#x53f8;</name>
  447 + <type>String</type>
  448 + <format/>
  449 + </field>
  450 + <field>
  451 + <name>&#x4fee;&#x6539;&#x65e5;&#x671f;</name>
  452 + <type>String</type>
  453 + <format/>
  454 + </field>
  455 + <field>
  456 + <name>&#x662f;&#x5426;&#x673a;&#x52a8;&#x8f66;</name>
  457 + <type>String</type>
  458 + <format/>
  459 + </field>
  460 + <field>
  461 + <name>&#x89c6;&#x9891;&#x7f16;&#x53f7;</name>
  462 + <type>String</type>
  463 + <format/>
  464 + </field>
  465 + <field>
  466 + <name>&#x8bbe;&#x5907;&#x4f9b;&#x5e94;&#x5382;&#x5546;</name>
  467 + <type>String</type>
  468 + <format/>
  469 + </field>
  470 + <field>
  471 + <name>&#x5206;&#x516c;&#x53f8;</name>
  472 + <type>String</type>
  473 + <format/>
  474 + </field>
  475 + </fields>
  476 + <custom>
  477 + <header_font_name>arial</header_font_name>
  478 + <header_font_size>10</header_font_size>
  479 + <header_font_bold>N</header_font_bold>
  480 + <header_font_italic>N</header_font_italic>
  481 + <header_font_underline>no</header_font_underline>
  482 + <header_font_orientation>horizontal</header_font_orientation>
  483 + <header_font_color>black</header_font_color>
  484 + <header_background_color>none</header_background_color>
  485 + <header_row_height>255</header_row_height>
  486 + <header_alignment>left</header_alignment>
  487 + <header_image/>
  488 + <row_font_name>arial</row_font_name>
  489 + <row_font_size>10</row_font_size>
  490 + <row_font_color>black</row_font_color>
  491 + <row_background_color>none</row_background_color>
  492 + </custom>
  493 + <cluster_schema/>
  494 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  495 + <xloc>574</xloc>
  496 + <yloc>270</yloc>
  497 + <draw>Y</draw>
  498 + </GUI>
  499 + </step>
  500 +
  501 + <step>
  502 + <name>&#x4f9b;&#x5e94;&#x5546;&#x540d;&#x79f0;</name>
  503 + <type>ValueMapper</type>
  504 + <description/>
  505 + <distribute>Y</distribute>
  506 + <custom_distribution/>
  507 + <copies>1</copies>
  508 + <partitioning>
  509 + <method>none</method>
  510 + <schema_name/>
  511 + </partitioning>
  512 + <field_to_use>supplier_name</field_to_use>
  513 + <target_field>supplier_name_str</target_field>
  514 + <non_match_default/>
  515 + <fields>
  516 + <field>
  517 + <source_value>1</source_value>
  518 + <target_value>&#x5df4;&#x58eb;&#x62d3;&#x534e;</target_value>
  519 + </field>
  520 + <field>
  521 + <source_value>2</source_value>
  522 + <target_value>&#x535a;&#x5eb7;</target_value>
  523 + </field>
  524 + </fields>
  525 + <cluster_schema/>
  526 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  527 + <xloc>449</xloc>
  528 + <yloc>68</yloc>
  529 + <draw>Y</draw>
  530 + </GUI>
  531 + </step>
  532 +
  533 + <step>
  534 + <name>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</name>
  535 + <type>SelectValues</type>
  536 + <description/>
  537 + <distribute>Y</distribute>
  538 + <custom_distribution/>
  539 + <copies>1</copies>
  540 + <partitioning>
  541 + <method>none</method>
  542 + <schema_name/>
  543 + </partitioning>
  544 + <fields> <select_unspecified>N</select_unspecified>
  545 + <meta> <name>car_plate</name>
  546 + <rename>&#x8f66;&#x724c;&#x53f7;</rename>
  547 + <type>String</type>
  548 + <length>-2</length>
  549 + <precision>-2</precision>
  550 + <conversion_mask/>
  551 + <date_format_lenient>false</date_format_lenient>
  552 + <date_format_locale/>
  553 + <date_format_timezone/>
  554 + <lenient_string_to_number>false</lenient_string_to_number>
  555 + <encoding/>
  556 + <decimal_symbol/>
  557 + <grouping_symbol/>
  558 + <currency_symbol/>
  559 + <storage_type/>
  560 + </meta> <meta> <name>inside_code</name>
  561 + <rename>&#x5185;&#x90e8;&#x7f16;&#x7801;</rename>
  562 + <type>String</type>
  563 + <length>-2</length>
  564 + <precision>-2</precision>
  565 + <conversion_mask/>
  566 + <date_format_lenient>false</date_format_lenient>
  567 + <date_format_locale/>
  568 + <date_format_timezone/>
  569 + <lenient_string_to_number>false</lenient_string_to_number>
  570 + <encoding/>
  571 + <decimal_symbol/>
  572 + <grouping_symbol/>
  573 + <currency_symbol/>
  574 + <storage_type/>
  575 + </meta> <meta> <name>car_code</name>
  576 + <rename>&#x8f66;&#x8f86;&#x7f16;&#x7801;</rename>
  577 + <type>String</type>
  578 + <length>-2</length>
  579 + <precision>-2</precision>
  580 + <conversion_mask/>
  581 + <date_format_lenient>false</date_format_lenient>
  582 + <date_format_locale/>
  583 + <date_format_timezone/>
  584 + <lenient_string_to_number>false</lenient_string_to_number>
  585 + <encoding/>
  586 + <decimal_symbol/>
  587 + <grouping_symbol/>
  588 + <currency_symbol/>
  589 + <storage_type/>
  590 + </meta> <meta> <name>car_class</name>
  591 + <rename>&#x8f66;&#x578b;&#x7c7b;&#x522b;</rename>
  592 + <type>String</type>
  593 + <length>-2</length>
  594 + <precision>-2</precision>
  595 + <conversion_mask/>
  596 + <date_format_lenient>false</date_format_lenient>
  597 + <date_format_locale/>
  598 + <date_format_timezone/>
  599 + <lenient_string_to_number>false</lenient_string_to_number>
  600 + <encoding/>
  601 + <decimal_symbol/>
  602 + <grouping_symbol/>
  603 + <currency_symbol/>
  604 + <storage_type/>
  605 + </meta> <meta> <name>car_seatn_number</name>
  606 + <rename>&#x5ea7;&#x4f4d;&#x6570;</rename>
  607 + <type>String</type>
  608 + <length>-2</length>
  609 + <precision>-2</precision>
  610 + <conversion_mask/>
  611 + <date_format_lenient>false</date_format_lenient>
  612 + <date_format_locale/>
  613 + <date_format_timezone/>
  614 + <lenient_string_to_number>false</lenient_string_to_number>
  615 + <encoding/>
  616 + <decimal_symbol/>
  617 + <grouping_symbol/>
  618 + <currency_symbol/>
  619 + <storage_type/>
  620 + </meta> <meta> <name>car_standard</name>
  621 + <rename>&#x8f7d;&#x5ba2;&#x6807;&#x51c6;</rename>
  622 + <type>String</type>
  623 + <length>-2</length>
  624 + <precision>-2</precision>
  625 + <conversion_mask/>
  626 + <date_format_lenient>false</date_format_lenient>
  627 + <date_format_locale/>
  628 + <date_format_timezone/>
  629 + <lenient_string_to_number>false</lenient_string_to_number>
  630 + <encoding/>
  631 + <decimal_symbol/>
  632 + <grouping_symbol/>
  633 + <currency_symbol/>
  634 + <storage_type/>
  635 + </meta> <meta> <name>speed</name>
  636 + <rename>&#x6280;&#x672f;&#x901f;&#x5ea6;</rename>
  637 + <type>String</type>
  638 + <length>-2</length>
  639 + <precision>-2</precision>
  640 + <conversion_mask/>
  641 + <date_format_lenient>false</date_format_lenient>
  642 + <date_format_locale/>
  643 + <date_format_timezone/>
  644 + <lenient_string_to_number>false</lenient_string_to_number>
  645 + <encoding/>
  646 + <decimal_symbol/>
  647 + <grouping_symbol/>
  648 + <currency_symbol/>
  649 + <storage_type/>
  650 + </meta> <meta> <name>hvac_car_str</name>
  651 + <rename>&#x662f;&#x5426;&#x7a7a;&#x8c03;</rename>
  652 + <type>String</type>
  653 + <length>-2</length>
  654 + <precision>-2</precision>
  655 + <conversion_mask/>
  656 + <date_format_lenient>false</date_format_lenient>
  657 + <date_format_locale/>
  658 + <date_format_timezone/>
  659 + <lenient_string_to_number>false</lenient_string_to_number>
  660 + <encoding/>
  661 + <decimal_symbol/>
  662 + <grouping_symbol/>
  663 + <currency_symbol/>
  664 + <storage_type/>
  665 + </meta> <meta> <name>kburn_standard</name>
  666 + <rename>&#x6807;&#x51c6;&#x6cb9;&#x8017;&#x28;&#x5f00;&#x7a7a;&#x8c03;&#x29;</rename>
  667 + <type>String</type>
  668 + <length>-2</length>
  669 + <precision>-2</precision>
  670 + <conversion_mask/>
  671 + <date_format_lenient>false</date_format_lenient>
  672 + <date_format_locale/>
  673 + <date_format_timezone/>
  674 + <lenient_string_to_number>false</lenient_string_to_number>
  675 + <encoding/>
  676 + <decimal_symbol/>
  677 + <grouping_symbol/>
  678 + <currency_symbol/>
  679 + <storage_type/>
  680 + </meta> <meta> <name>gburn_standard</name>
  681 + <rename>&#x6807;&#x51c6;&#x6cb9;&#x8017;&#x28;&#x5173;&#x7a7a;&#x8c03;&#x29;</rename>
  682 + <type>String</type>
  683 + <length>-2</length>
  684 + <precision>-2</precision>
  685 + <conversion_mask/>
  686 + <date_format_lenient>false</date_format_lenient>
  687 + <date_format_locale/>
  688 + <date_format_timezone/>
  689 + <lenient_string_to_number>false</lenient_string_to_number>
  690 + <encoding/>
  691 + <decimal_symbol/>
  692 + <grouping_symbol/>
  693 + <currency_symbol/>
  694 + <storage_type/>
  695 + </meta> <meta> <name>ticket_type_str</name>
  696 + <rename>&#x6709;&#x65e0;&#x4eba;&#x552e;&#x7968;</rename>
  697 + <type>String</type>
  698 + <length>-2</length>
  699 + <precision>-2</precision>
  700 + <conversion_mask/>
  701 + <date_format_lenient>false</date_format_lenient>
  702 + <date_format_locale/>
  703 + <date_format_timezone/>
  704 + <lenient_string_to_number>false</lenient_string_to_number>
  705 + <encoding/>
  706 + <decimal_symbol/>
  707 + <grouping_symbol/>
  708 + <currency_symbol/>
  709 + <storage_type/>
  710 + </meta> <meta> <name>tv_video_type_str</name>
  711 + <rename>&#x662f;&#x5426;&#x6709;TV&#x89c6;&#x9891;</rename>
  712 + <type>String</type>
  713 + <length>-2</length>
  714 + <precision>-2</precision>
  715 + <conversion_mask/>
  716 + <date_format_lenient>false</date_format_lenient>
  717 + <date_format_locale/>
  718 + <date_format_timezone/>
  719 + <lenient_string_to_number>false</lenient_string_to_number>
  720 + <encoding/>
  721 + <decimal_symbol/>
  722 + <grouping_symbol/>
  723 + <currency_symbol/>
  724 + <storage_type/>
  725 + </meta> <meta> <name>led_screen_str</name>
  726 + <rename>&#x662f;&#x5426;&#x6709;LED&#x670d;&#x52a1;&#x5c4f;</rename>
  727 + <type>String</type>
  728 + <length>-2</length>
  729 + <precision>-2</precision>
  730 + <conversion_mask/>
  731 + <date_format_lenient>false</date_format_lenient>
  732 + <date_format_locale/>
  733 + <date_format_timezone/>
  734 + <lenient_string_to_number>false</lenient_string_to_number>
  735 + <encoding/>
  736 + <decimal_symbol/>
  737 + <grouping_symbol/>
  738 + <currency_symbol/>
  739 + <storage_type/>
  740 + </meta> <meta> <name>operators_state_str</name>
  741 + <rename>&#x8fd0;&#x8425;&#x72b6;&#x6001;</rename>
  742 + <type>String</type>
  743 + <length>-2</length>
  744 + <precision>-2</precision>
  745 + <conversion_mask/>
  746 + <date_format_lenient>false</date_format_lenient>
  747 + <date_format_locale/>
  748 + <date_format_timezone/>
  749 + <lenient_string_to_number>false</lenient_string_to_number>
  750 + <encoding/>
  751 + <decimal_symbol/>
  752 + <grouping_symbol/>
  753 + <currency_symbol/>
  754 + <storage_type/>
  755 + </meta> <meta> <name>open_date</name>
  756 + <rename>&#x542f;&#x7528;&#x65e5;&#x671f;</rename>
  757 + <type>String</type>
  758 + <length>-2</length>
  759 + <precision>-2</precision>
  760 + <conversion_mask>yyyy-MM-dd</conversion_mask>
  761 + <date_format_lenient>false</date_format_lenient>
  762 + <date_format_locale/>
  763 + <date_format_timezone/>
  764 + <lenient_string_to_number>false</lenient_string_to_number>
  765 + <encoding/>
  766 + <decimal_symbol/>
  767 + <grouping_symbol/>
  768 + <currency_symbol/>
  769 + <storage_type/>
  770 + </meta> <meta> <name>close_date</name>
  771 + <rename>&#x53d6;&#x6d88;&#x65e5;&#x671f;</rename>
  772 + <type>String</type>
  773 + <length>-2</length>
  774 + <precision>-2</precision>
  775 + <conversion_mask>yyyy-MM-dd</conversion_mask>
  776 + <date_format_lenient>false</date_format_lenient>
  777 + <date_format_locale/>
  778 + <date_format_timezone/>
  779 + <lenient_string_to_number>false</lenient_string_to_number>
  780 + <encoding/>
  781 + <decimal_symbol/>
  782 + <grouping_symbol/>
  783 + <currency_symbol/>
  784 + <storage_type/>
  785 + </meta> <meta> <name>scrap_code</name>
  786 + <rename>&#x62a5;&#x5e9f;&#x53f7;</rename>
  787 + <type>String</type>
  788 + <length>-2</length>
  789 + <precision>-2</precision>
  790 + <conversion_mask/>
  791 + <date_format_lenient>false</date_format_lenient>
  792 + <date_format_locale/>
  793 + <date_format_timezone/>
  794 + <lenient_string_to_number>false</lenient_string_to_number>
  795 + <encoding/>
  796 + <decimal_symbol/>
  797 + <grouping_symbol/>
  798 + <currency_symbol/>
  799 + <storage_type/>
  800 + </meta> <meta> <name>scrap_date</name>
  801 + <rename>&#x62a5;&#x5e9f;&#x65e5;&#x671f;</rename>
  802 + <type>String</type>
  803 + <length>-2</length>
  804 + <precision>-2</precision>
  805 + <conversion_mask>yyyy-MM-dd</conversion_mask>
  806 + <date_format_lenient>false</date_format_lenient>
  807 + <date_format_locale/>
  808 + <date_format_timezone/>
  809 + <lenient_string_to_number>false</lenient_string_to_number>
  810 + <encoding/>
  811 + <decimal_symbol/>
  812 + <grouping_symbol/>
  813 + <currency_symbol/>
  814 + <storage_type/>
  815 + </meta> <meta> <name>descriptions</name>
  816 + <rename>&#x5907;&#x6ce8;</rename>
  817 + <type>String</type>
  818 + <length>-2</length>
  819 + <precision>-2</precision>
  820 + <conversion_mask/>
  821 + <date_format_lenient>false</date_format_lenient>
  822 + <date_format_locale/>
  823 + <date_format_timezone/>
  824 + <lenient_string_to_number>false</lenient_string_to_number>
  825 + <encoding/>
  826 + <decimal_symbol/>
  827 + <grouping_symbol/>
  828 + <currency_symbol/>
  829 + <storage_type/>
  830 + </meta> <meta> <name>equipment_code</name>
  831 + <rename>&#x8bbe;&#x5907;&#x7f16;&#x53f7;</rename>
  832 + <type>String</type>
  833 + <length>-2</length>
  834 + <precision>-2</precision>
  835 + <conversion_mask/>
  836 + <date_format_lenient>false</date_format_lenient>
  837 + <date_format_locale/>
  838 + <date_format_timezone/>
  839 + <lenient_string_to_number>false</lenient_string_to_number>
  840 + <encoding/>
  841 + <decimal_symbol/>
  842 + <grouping_symbol/>
  843 + <currency_symbol/>
  844 + <storage_type/>
  845 + </meta> <meta> <name>make_code_one</name>
  846 + <rename>&#x5382;&#x724c;&#x578b;&#x53f7;</rename>
  847 + <type>String</type>
  848 + <length>-2</length>
  849 + <precision>-2</precision>
  850 + <conversion_mask/>
  851 + <date_format_lenient>false</date_format_lenient>
  852 + <date_format_locale/>
  853 + <date_format_timezone/>
  854 + <lenient_string_to_number>false</lenient_string_to_number>
  855 + <encoding/>
  856 + <decimal_symbol/>
  857 + <grouping_symbol/>
  858 + <currency_symbol/>
  859 + <storage_type/>
  860 + </meta> <meta> <name>make_code_two</name>
  861 + <rename>&#x5382;&#x724c;&#x578b;&#x53f7;2</rename>
  862 + <type>String</type>
  863 + <length>-2</length>
  864 + <precision>-2</precision>
  865 + <conversion_mask/>
  866 + <date_format_lenient>false</date_format_lenient>
  867 + <date_format_locale/>
  868 + <date_format_timezone/>
  869 + <lenient_string_to_number>false</lenient_string_to_number>
  870 + <encoding/>
  871 + <decimal_symbol/>
  872 + <grouping_symbol/>
  873 + <currency_symbol/>
  874 + <storage_type/>
  875 + </meta> <meta> <name>car_gride</name>
  876 + <rename>&#x8f66;&#x8f86;&#x7b49;&#x7ea7;&#x6807;&#x51c6;</rename>
  877 + <type>String</type>
  878 + <length>-2</length>
  879 + <precision>-2</precision>
  880 + <conversion_mask/>
  881 + <date_format_lenient>false</date_format_lenient>
  882 + <date_format_locale/>
  883 + <date_format_timezone/>
  884 + <lenient_string_to_number>false</lenient_string_to_number>
  885 + <encoding/>
  886 + <decimal_symbol/>
  887 + <grouping_symbol/>
  888 + <currency_symbol/>
  889 + <storage_type/>
  890 + </meta> <meta> <name>emissions_standard</name>
  891 + <rename>&#x51fa;&#x5382;&#x6392;&#x653e;&#x6807;&#x51c6;</rename>
  892 + <type>String</type>
  893 + <length>-2</length>
  894 + <precision>-2</precision>
  895 + <conversion_mask/>
  896 + <date_format_lenient>false</date_format_lenient>
  897 + <date_format_locale/>
  898 + <date_format_timezone/>
  899 + <lenient_string_to_number>false</lenient_string_to_number>
  900 + <encoding/>
  901 + <decimal_symbol/>
  902 + <grouping_symbol/>
  903 + <currency_symbol/>
  904 + <storage_type/>
  905 + </meta> <meta> <name>engine_code_one</name>
  906 + <rename>&#x53d1;&#x52a8;&#x673a;&#x53f7;&#x7801;1</rename>
  907 + <type>String</type>
  908 + <length>-2</length>
  909 + <precision>-2</precision>
  910 + <conversion_mask/>
  911 + <date_format_lenient>false</date_format_lenient>
  912 + <date_format_locale/>
  913 + <date_format_timezone/>
  914 + <lenient_string_to_number>false</lenient_string_to_number>
  915 + <encoding/>
  916 + <decimal_symbol/>
  917 + <grouping_symbol/>
  918 + <currency_symbol/>
  919 + <storage_type/>
  920 + </meta> <meta> <name>engine_code_two</name>
  921 + <rename>&#x53d1;&#x52a8;&#x673a;&#x53f7;&#x7801;2</rename>
  922 + <type>String</type>
  923 + <length>-2</length>
  924 + <precision>-2</precision>
  925 + <conversion_mask/>
  926 + <date_format_lenient>false</date_format_lenient>
  927 + <date_format_locale/>
  928 + <date_format_timezone/>
  929 + <lenient_string_to_number>false</lenient_string_to_number>
  930 + <encoding/>
  931 + <decimal_symbol/>
  932 + <grouping_symbol/>
  933 + <currency_symbol/>
  934 + <storage_type/>
  935 + </meta> <meta> <name>car_number_one</name>
  936 + <rename>&#x8f66;&#x67b6;&#x53f7;&#x7801;1</rename>
  937 + <type>String</type>
  938 + <length>-2</length>
  939 + <precision>-2</precision>
  940 + <conversion_mask/>
  941 + <date_format_lenient>false</date_format_lenient>
  942 + <date_format_locale/>
  943 + <date_format_timezone/>
  944 + <lenient_string_to_number>false</lenient_string_to_number>
  945 + <encoding/>
  946 + <decimal_symbol/>
  947 + <grouping_symbol/>
  948 + <currency_symbol/>
  949 + <storage_type/>
  950 + </meta> <meta> <name>car_number_two</name>
  951 + <rename>&#x8f66;&#x67b6;&#x53f7;&#x7801;2</rename>
  952 + <type>String</type>
  953 + <length>-2</length>
  954 + <precision>-2</precision>
  955 + <conversion_mask/>
  956 + <date_format_lenient>false</date_format_lenient>
  957 + <date_format_locale/>
  958 + <date_format_timezone/>
  959 + <lenient_string_to_number>false</lenient_string_to_number>
  960 + <encoding/>
  961 + <decimal_symbol/>
  962 + <grouping_symbol/>
  963 + <currency_symbol/>
  964 + <storage_type/>
  965 + </meta> <meta> <name>car_type_str</name>
  966 + <rename>&#x8f66;&#x8f86;&#x7c7b;&#x578b;</rename>
  967 + <type>String</type>
  968 + <length>-2</length>
  969 + <precision>-2</precision>
  970 + <conversion_mask/>
  971 + <date_format_lenient>false</date_format_lenient>
  972 + <date_format_locale/>
  973 + <date_format_timezone/>
  974 + <lenient_string_to_number>false</lenient_string_to_number>
  975 + <encoding/>
  976 + <decimal_symbol/>
  977 + <grouping_symbol/>
  978 + <currency_symbol/>
  979 + <storage_type/>
  980 + </meta> <meta> <name>company</name>
  981 + <rename>&#x6240;&#x5c5e;&#x516c;&#x53f8;</rename>
  982 + <type>String</type>
  983 + <length>-2</length>
  984 + <precision>-2</precision>
  985 + <conversion_mask/>
  986 + <date_format_lenient>false</date_format_lenient>
  987 + <date_format_locale/>
  988 + <date_format_timezone/>
  989 + <lenient_string_to_number>false</lenient_string_to_number>
  990 + <encoding/>
  991 + <decimal_symbol/>
  992 + <grouping_symbol/>
  993 + <currency_symbol/>
  994 + <storage_type/>
  995 + </meta> <meta> <name>update_date</name>
  996 + <rename>&#x4fee;&#x6539;&#x65e5;&#x671f;</rename>
  997 + <type>String</type>
  998 + <length>-2</length>
  999 + <precision>-2</precision>
  1000 + <conversion_mask>yyyy-MM-dd HH&#x3a;mm&#x3a;ss</conversion_mask>
  1001 + <date_format_lenient>false</date_format_lenient>
  1002 + <date_format_locale/>
  1003 + <date_format_timezone/>
  1004 + <lenient_string_to_number>false</lenient_string_to_number>
  1005 + <encoding/>
  1006 + <decimal_symbol/>
  1007 + <grouping_symbol/>
  1008 + <currency_symbol/>
  1009 + <storage_type/>
  1010 + </meta> <meta> <name>vehicle_stats_str</name>
  1011 + <rename>&#x662f;&#x5426;&#x673a;&#x52a8;&#x8f66;</rename>
  1012 + <type>String</type>
  1013 + <length>-2</length>
  1014 + <precision>-2</precision>
  1015 + <conversion_mask/>
  1016 + <date_format_lenient>false</date_format_lenient>
  1017 + <date_format_locale/>
  1018 + <date_format_timezone/>
  1019 + <lenient_string_to_number>false</lenient_string_to_number>
  1020 + <encoding/>
  1021 + <decimal_symbol/>
  1022 + <grouping_symbol/>
  1023 + <currency_symbol/>
  1024 + <storage_type/>
  1025 + </meta> <meta> <name>video_code</name>
  1026 + <rename>&#x89c6;&#x9891;&#x7f16;&#x53f7;</rename>
  1027 + <type>String</type>
  1028 + <length>-2</length>
  1029 + <precision>-2</precision>
  1030 + <conversion_mask/>
  1031 + <date_format_lenient>false</date_format_lenient>
  1032 + <date_format_locale/>
  1033 + <date_format_timezone/>
  1034 + <lenient_string_to_number>false</lenient_string_to_number>
  1035 + <encoding/>
  1036 + <decimal_symbol/>
  1037 + <grouping_symbol/>
  1038 + <currency_symbol/>
  1039 + <storage_type/>
  1040 + </meta> <meta> <name>supplier_name_str</name>
  1041 + <rename>&#x8bbe;&#x5907;&#x4f9b;&#x5e94;&#x5382;&#x5546;</rename>
  1042 + <type>String</type>
  1043 + <length>-2</length>
  1044 + <precision>-2</precision>
  1045 + <conversion_mask/>
  1046 + <date_format_lenient>false</date_format_lenient>
  1047 + <date_format_locale/>
  1048 + <date_format_timezone/>
  1049 + <lenient_string_to_number>false</lenient_string_to_number>
  1050 + <encoding/>
  1051 + <decimal_symbol/>
  1052 + <grouping_symbol/>
  1053 + <currency_symbol/>
  1054 + <storage_type/>
  1055 + </meta> <meta> <name>branche_company</name>
  1056 + <rename>&#x5206;&#x516c;&#x53f8;</rename>
  1057 + <type>String</type>
  1058 + <length>-2</length>
  1059 + <precision>-2</precision>
  1060 + <conversion_mask/>
  1061 + <date_format_lenient>false</date_format_lenient>
  1062 + <date_format_locale/>
  1063 + <date_format_timezone/>
  1064 + <lenient_string_to_number>false</lenient_string_to_number>
  1065 + <encoding/>
  1066 + <decimal_symbol/>
  1067 + <grouping_symbol/>
  1068 + <currency_symbol/>
  1069 + <storage_type/>
  1070 + </meta> </fields> <cluster_schema/>
  1071 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1072 + <xloc>808</xloc>
  1073 + <yloc>267</yloc>
  1074 + <draw>Y</draw>
  1075 + </GUI>
  1076 + </step>
  1077 +
  1078 + <step>
  1079 + <name>&#x5b57;&#x6bb5;&#x9009;&#x62e9; 2</name>
  1080 + <type>SelectValues</type>
  1081 + <description/>
  1082 + <distribute>Y</distribute>
  1083 + <custom_distribution/>
  1084 + <copies>1</copies>
  1085 + <partitioning>
  1086 + <method>none</method>
  1087 + <schema_name/>
  1088 + </partitioning>
  1089 + <fields> <field> <name>&#x8f66;&#x724c;&#x53f7;</name>
  1090 + <rename/>
  1091 + <length>-2</length>
  1092 + <precision>-2</precision>
  1093 + </field> <field> <name>&#x5185;&#x90e8;&#x7f16;&#x7801;</name>
  1094 + <rename/>
  1095 + <length>-2</length>
  1096 + <precision>-2</precision>
  1097 + </field> <field> <name>&#x8f66;&#x8f86;&#x7f16;&#x7801;</name>
  1098 + <rename/>
  1099 + <length>-2</length>
  1100 + <precision>-2</precision>
  1101 + </field> <field> <name>&#x8f66;&#x578b;&#x7c7b;&#x522b;</name>
  1102 + <rename/>
  1103 + <length>-2</length>
  1104 + <precision>-2</precision>
  1105 + </field> <field> <name>&#x5ea7;&#x4f4d;&#x6570;</name>
  1106 + <rename/>
  1107 + <length>-2</length>
  1108 + <precision>-2</precision>
  1109 + </field> <field> <name>&#x8f7d;&#x5ba2;&#x6807;&#x51c6;</name>
  1110 + <rename/>
  1111 + <length>-2</length>
  1112 + <precision>-2</precision>
  1113 + </field> <field> <name>&#x6280;&#x672f;&#x901f;&#x5ea6;</name>
  1114 + <rename/>
  1115 + <length>-2</length>
  1116 + <precision>-2</precision>
  1117 + </field> <field> <name>&#x662f;&#x5426;&#x7a7a;&#x8c03;</name>
  1118 + <rename/>
  1119 + <length>-2</length>
  1120 + <precision>-2</precision>
  1121 + </field> <field> <name>&#x6807;&#x51c6;&#x6cb9;&#x8017;&#x28;&#x5f00;&#x7a7a;&#x8c03;&#x29;</name>
  1122 + <rename/>
  1123 + <length>-2</length>
  1124 + <precision>-2</precision>
  1125 + </field> <field> <name>&#x6807;&#x51c6;&#x6cb9;&#x8017;&#x28;&#x5173;&#x7a7a;&#x8c03;&#x29;</name>
  1126 + <rename/>
  1127 + <length>-2</length>
  1128 + <precision>-2</precision>
  1129 + </field> <field> <name>&#x6709;&#x65e0;&#x4eba;&#x552e;&#x7968;</name>
  1130 + <rename/>
  1131 + <length>-2</length>
  1132 + <precision>-2</precision>
  1133 + </field> <field> <name>&#x662f;&#x5426;&#x6709;TV&#x89c6;&#x9891;</name>
  1134 + <rename/>
  1135 + <length>-2</length>
  1136 + <precision>-2</precision>
  1137 + </field> <field> <name>&#x662f;&#x5426;&#x6709;LED&#x670d;&#x52a1;&#x5c4f;</name>
  1138 + <rename/>
  1139 + <length>-2</length>
  1140 + <precision>-2</precision>
  1141 + </field> <field> <name>&#x8fd0;&#x8425;&#x72b6;&#x6001;</name>
  1142 + <rename/>
  1143 + <length>-2</length>
  1144 + <precision>-2</precision>
  1145 + </field> <field> <name>&#x542f;&#x7528;&#x65e5;&#x671f;</name>
  1146 + <rename/>
  1147 + <length>-2</length>
  1148 + <precision>-2</precision>
  1149 + </field> <field> <name>&#x53d6;&#x6d88;&#x65e5;&#x671f;</name>
  1150 + <rename/>
  1151 + <length>-2</length>
  1152 + <precision>-2</precision>
  1153 + </field> <field> <name>&#x62a5;&#x5e9f;&#x53f7;</name>
  1154 + <rename/>
  1155 + <length>-2</length>
  1156 + <precision>-2</precision>
  1157 + </field> <field> <name>&#x62a5;&#x5e9f;&#x65e5;&#x671f;</name>
  1158 + <rename/>
  1159 + <length>-2</length>
  1160 + <precision>-2</precision>
  1161 + </field> <field> <name>&#x5907;&#x6ce8;</name>
  1162 + <rename/>
  1163 + <length>-2</length>
  1164 + <precision>-2</precision>
  1165 + </field> <field> <name>&#x8bbe;&#x5907;&#x7f16;&#x53f7;</name>
  1166 + <rename/>
  1167 + <length>-2</length>
  1168 + <precision>-2</precision>
  1169 + </field> <field> <name>&#x5382;&#x724c;&#x578b;&#x53f7;</name>
  1170 + <rename/>
  1171 + <length>-2</length>
  1172 + <precision>-2</precision>
  1173 + </field> <field> <name>&#x5382;&#x724c;&#x578b;&#x53f7;2</name>
  1174 + <rename/>
  1175 + <length>-2</length>
  1176 + <precision>-2</precision>
  1177 + </field> <field> <name>&#x8f66;&#x8f86;&#x7b49;&#x7ea7;&#x6807;&#x51c6;</name>
  1178 + <rename/>
  1179 + <length>-2</length>
  1180 + <precision>-2</precision>
  1181 + </field> <field> <name>&#x51fa;&#x5382;&#x6392;&#x653e;&#x6807;&#x51c6;</name>
  1182 + <rename/>
  1183 + <length>-2</length>
  1184 + <precision>-2</precision>
  1185 + </field> <field> <name>&#x53d1;&#x52a8;&#x673a;&#x53f7;&#x7801;1</name>
  1186 + <rename/>
  1187 + <length>-2</length>
  1188 + <precision>-2</precision>
  1189 + </field> <field> <name>&#x53d1;&#x52a8;&#x673a;&#x53f7;&#x7801;2</name>
  1190 + <rename/>
  1191 + <length>-2</length>
  1192 + <precision>-2</precision>
  1193 + </field> <field> <name>&#x8f66;&#x67b6;&#x53f7;&#x7801;1</name>
  1194 + <rename/>
  1195 + <length>-2</length>
  1196 + <precision>-2</precision>
  1197 + </field> <field> <name>&#x8f66;&#x67b6;&#x53f7;&#x7801;2</name>
  1198 + <rename/>
  1199 + <length>-2</length>
  1200 + <precision>-2</precision>
  1201 + </field> <field> <name>&#x8f66;&#x8f86;&#x7c7b;&#x578b;</name>
  1202 + <rename/>
  1203 + <length>-2</length>
  1204 + <precision>-2</precision>
  1205 + </field> <field> <name>&#x6240;&#x5c5e;&#x516c;&#x53f8;</name>
  1206 + <rename/>
  1207 + <length>-2</length>
  1208 + <precision>-2</precision>
  1209 + </field> <field> <name>&#x4fee;&#x6539;&#x65e5;&#x671f;</name>
  1210 + <rename/>
  1211 + <length>-2</length>
  1212 + <precision>-2</precision>
  1213 + </field> <field> <name>&#x662f;&#x5426;&#x673a;&#x52a8;&#x8f66;</name>
  1214 + <rename/>
  1215 + <length>-2</length>
  1216 + <precision>-2</precision>
  1217 + </field> <field> <name>&#x89c6;&#x9891;&#x7f16;&#x53f7;</name>
  1218 + <rename/>
  1219 + <length>-2</length>
  1220 + <precision>-2</precision>
  1221 + </field> <field> <name>&#x8bbe;&#x5907;&#x4f9b;&#x5e94;&#x5382;&#x5546;</name>
  1222 + <rename/>
  1223 + <length>-2</length>
  1224 + <precision>-2</precision>
  1225 + </field> <field> <name>&#x5206;&#x516c;&#x53f8;</name>
  1226 + <rename/>
  1227 + <length>-2</length>
  1228 + <precision>-2</precision>
  1229 + </field> <select_unspecified>N</select_unspecified>
  1230 + </fields> <cluster_schema/>
  1231 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1232 + <xloc>687</xloc>
  1233 + <yloc>268</yloc>
  1234 + <draw>Y</draw>
  1235 + </GUI>
  1236 + </step>
  1237 +
  1238 + <step>
  1239 + <name>&#x662f;&#x5426;&#x6709;LED&#x670d;&#x52a1;&#x5c4f;</name>
  1240 + <type>ValueMapper</type>
  1241 + <description/>
  1242 + <distribute>Y</distribute>
  1243 + <custom_distribution/>
  1244 + <copies>1</copies>
  1245 + <partitioning>
  1246 + <method>none</method>
  1247 + <schema_name/>
  1248 + </partitioning>
  1249 + <field_to_use>led_screen</field_to_use>
  1250 + <target_field>led_screen_str</target_field>
  1251 + <non_match_default/>
  1252 + <fields>
  1253 + <field>
  1254 + <source_value>1</source_value>
  1255 + <target_value>&#x662f;</target_value>
  1256 + </field>
  1257 + <field>
  1258 + <source_value>0</source_value>
  1259 + <target_value>&#x5426;</target_value>
  1260 + </field>
  1261 + </fields>
  1262 + <cluster_schema/>
  1263 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1264 + <xloc>324</xloc>
  1265 + <yloc>68</yloc>
  1266 + <draw>Y</draw>
  1267 + </GUI>
  1268 + </step>
  1269 +
  1270 + <step>
  1271 + <name>&#x662f;&#x5426;&#x6709;TV&#x89c6;&#x9891;</name>
  1272 + <type>ValueMapper</type>
  1273 + <description/>
  1274 + <distribute>Y</distribute>
  1275 + <custom_distribution/>
  1276 + <copies>1</copies>
  1277 + <partitioning>
  1278 + <method>none</method>
  1279 + <schema_name/>
  1280 + </partitioning>
  1281 + <field_to_use>tv_video_type</field_to_use>
  1282 + <target_field>tv_video_type_str</target_field>
  1283 + <non_match_default/>
  1284 + <fields>
  1285 + <field>
  1286 + <source_value>1</source_value>
  1287 + <target_value>&#x662f;</target_value>
  1288 + </field>
  1289 + <field>
  1290 + <source_value>0</source_value>
  1291 + <target_value>&#x5426;</target_value>
  1292 + </field>
  1293 + </fields>
  1294 + <cluster_schema/>
  1295 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1296 + <xloc>325</xloc>
  1297 + <yloc>158</yloc>
  1298 + <draw>Y</draw>
  1299 + </GUI>
  1300 + </step>
  1301 +
  1302 + <step>
  1303 + <name>&#x662f;&#x5426;&#x7a7a;&#x8c03;&#x8f66;</name>
  1304 + <type>ValueMapper</type>
  1305 + <description/>
  1306 + <distribute>Y</distribute>
  1307 + <custom_distribution/>
  1308 + <copies>1</copies>
  1309 + <partitioning>
  1310 + <method>none</method>
  1311 + <schema_name/>
  1312 + </partitioning>
  1313 + <field_to_use>hvac_car</field_to_use>
  1314 + <target_field>hvac_car_str</target_field>
  1315 + <non_match_default/>
  1316 + <fields>
  1317 + <field>
  1318 + <source_value>1</source_value>
  1319 + <target_value>&#x662f;</target_value>
  1320 + </field>
  1321 + <field>
  1322 + <source_value>0</source_value>
  1323 + <target_value>&#x5426;</target_value>
  1324 + </field>
  1325 + </fields>
  1326 + <cluster_schema/>
  1327 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1328 + <xloc>209</xloc>
  1329 + <yloc>68</yloc>
  1330 + <draw>Y</draw>
  1331 + </GUI>
  1332 + </step>
  1333 +
  1334 + <step>
  1335 + <name>&#x6709;&#x65e0;&#x4eba;&#x552e;&#x7968;</name>
  1336 + <type>ValueMapper</type>
  1337 + <description/>
  1338 + <distribute>Y</distribute>
  1339 + <custom_distribution/>
  1340 + <copies>1</copies>
  1341 + <partitioning>
  1342 + <method>none</method>
  1343 + <schema_name/>
  1344 + </partitioning>
  1345 + <field_to_use>ticket_type</field_to_use>
  1346 + <target_field>ticket_type_str</target_field>
  1347 + <non_match_default/>
  1348 + <fields>
  1349 + <field>
  1350 + <source_value>1</source_value>
  1351 + <target_value>&#x662f;</target_value>
  1352 + </field>
  1353 + <field>
  1354 + <source_value>0</source_value>
  1355 + <target_value>&#x5426;</target_value>
  1356 + </field>
  1357 + </fields>
  1358 + <cluster_schema/>
  1359 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1360 + <xloc>206</xloc>
  1361 + <yloc>154</yloc>
  1362 + <draw>Y</draw>
  1363 + </GUI>
  1364 + </step>
  1365 +
  1366 + <step>
  1367 + <name>&#x673a;&#x52a8;&#x8f66;&#x7c7b;&#x578b;&#x67e5;&#x8be2;</name>
  1368 + <type>DBLookup</type>
  1369 + <description/>
  1370 + <distribute>Y</distribute>
  1371 + <custom_distribution/>
  1372 + <copies>1</copies>
  1373 + <partitioning>
  1374 + <method>none</method>
  1375 + <schema_name/>
  1376 + </partitioning>
  1377 + <connection>bus_control_variable</connection>
  1378 + <cache>N</cache>
  1379 + <cache_load_all>N</cache_load_all>
  1380 + <cache_size>0</cache_size>
  1381 + <lookup>
  1382 + <schema/>
  1383 + <table>bsth_c_sys_dictionary</table>
  1384 + <orderby/>
  1385 + <fail_on_multiple>N</fail_on_multiple>
  1386 + <eat_row_on_failure>N</eat_row_on_failure>
  1387 + <key>
  1388 + <name>jdcType</name>
  1389 + <field>d_group</field>
  1390 + <condition>&#x3d;</condition>
  1391 + <name2/>
  1392 + </key>
  1393 + <key>
  1394 + <name>vehicle_stats</name>
  1395 + <field>d_code</field>
  1396 + <condition>&#x3d;</condition>
  1397 + <name2/>
  1398 + </key>
  1399 + <value>
  1400 + <name>d_name</name>
  1401 + <rename>vehicle_stats_str</rename>
  1402 + <default/>
  1403 + <type>String</type>
  1404 + </value>
  1405 + </lookup>
  1406 + <cluster_schema/>
  1407 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1408 + <xloc>676</xloc>
  1409 + <yloc>162</yloc>
  1410 + <draw>Y</draw>
  1411 + </GUI>
  1412 + </step>
  1413 +
  1414 + <step>
  1415 + <name>&#x673a;&#x52a8;&#x8f66;&#x7c7b;&#x578b;&#x6807;&#x8bc6;</name>
  1416 + <type>Constant</type>
  1417 + <description/>
  1418 + <distribute>Y</distribute>
  1419 + <custom_distribution/>
  1420 + <copies>1</copies>
  1421 + <partitioning>
  1422 + <method>none</method>
  1423 + <schema_name/>
  1424 + </partitioning>
  1425 + <fields>
  1426 + <field>
  1427 + <name>jdcType</name>
  1428 + <type>String</type>
  1429 + <format/>
  1430 + <currency/>
  1431 + <decimal/>
  1432 + <group/>
  1433 + <nullif>jdcType</nullif>
  1434 + <length>-1</length>
  1435 + <precision>-1</precision>
  1436 + <set_empty_string>N</set_empty_string>
  1437 + </field>
  1438 + </fields>
  1439 + <cluster_schema/>
  1440 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1441 + <xloc>672</xloc>
  1442 + <yloc>68</yloc>
  1443 + <draw>Y</draw>
  1444 + </GUI>
  1445 + </step>
  1446 +
  1447 + <step>
  1448 + <name>&#x8425;&#x8fd0;&#x72b6;&#x6001;&#x67e5;&#x8be2;</name>
  1449 + <type>DBLookup</type>
  1450 + <description/>
  1451 + <distribute>Y</distribute>
  1452 + <custom_distribution/>
  1453 + <copies>1</copies>
  1454 + <partitioning>
  1455 + <method>none</method>
  1456 + <schema_name/>
  1457 + </partitioning>
  1458 + <connection>bus_control_variable</connection>
  1459 + <cache>N</cache>
  1460 + <cache_load_all>N</cache_load_all>
  1461 + <cache_size>0</cache_size>
  1462 + <lookup>
  1463 + <schema/>
  1464 + <table>bsth_c_sys_dictionary</table>
  1465 + <orderby/>
  1466 + <fail_on_multiple>N</fail_on_multiple>
  1467 + <eat_row_on_failure>N</eat_row_on_failure>
  1468 + <key>
  1469 + <name>yyztType</name>
  1470 + <field>d_group</field>
  1471 + <condition>&#x3d;</condition>
  1472 + <name2/>
  1473 + </key>
  1474 + <key>
  1475 + <name>operators_state</name>
  1476 + <field>d_code</field>
  1477 + <condition>&#x3d;</condition>
  1478 + <name2/>
  1479 + </key>
  1480 + <value>
  1481 + <name>d_name</name>
  1482 + <rename>operators_state_str</rename>
  1483 + <default/>
  1484 + <type>String</type>
  1485 + </value>
  1486 + </lookup>
  1487 + <cluster_schema/>
  1488 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1489 + <xloc>558</xloc>
  1490 + <yloc>162</yloc>
  1491 + <draw>Y</draw>
  1492 + </GUI>
  1493 + </step>
  1494 +
  1495 + <step>
  1496 + <name>&#x8425;&#x8fd0;&#x72b6;&#x6001;&#x6807;&#x8bc6;</name>
  1497 + <type>Constant</type>
  1498 + <description/>
  1499 + <distribute>Y</distribute>
  1500 + <custom_distribution/>
  1501 + <copies>1</copies>
  1502 + <partitioning>
  1503 + <method>none</method>
  1504 + <schema_name/>
  1505 + </partitioning>
  1506 + <fields>
  1507 + <field>
  1508 + <name>yyztType</name>
  1509 + <type>String</type>
  1510 + <format/>
  1511 + <currency/>
  1512 + <decimal/>
  1513 + <group/>
  1514 + <nullif>yyztType</nullif>
  1515 + <length>-1</length>
  1516 + <precision>-1</precision>
  1517 + <set_empty_string>N</set_empty_string>
  1518 + </field>
  1519 + </fields>
  1520 + <cluster_schema/>
  1521 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1522 + <xloc>555</xloc>
  1523 + <yloc>69</yloc>
  1524 + <draw>Y</draw>
  1525 + </GUI>
  1526 + </step>
  1527 +
  1528 + <step>
  1529 + <name>&#x8868;&#x8f93;&#x5165;</name>
  1530 + <type>TableInput</type>
  1531 + <description/>
  1532 + <distribute>Y</distribute>
  1533 + <custom_distribution/>
  1534 + <copies>1</copies>
  1535 + <partitioning>
  1536 + <method>none</method>
  1537 + <schema_name/>
  1538 + </partitioning>
  1539 + <connection>bus_control_variable</connection>
  1540 + <sql>SELECT &#x2a; FROM bsth_c_cars&#x3b;</sql>
  1541 + <limit>0</limit>
  1542 + <lookup/>
  1543 + <execute_each_row>N</execute_each_row>
  1544 + <variables_active>N</variables_active>
  1545 + <lazy_conversion_active>N</lazy_conversion_active>
  1546 + <cluster_schema/>
  1547 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1548 + <xloc>105</xloc>
  1549 + <yloc>67</yloc>
  1550 + <draw>Y</draw>
  1551 + </GUI>
  1552 + </step>
  1553 +
  1554 + <step>
  1555 + <name>&#x8f66;&#x8f86;&#x7c7b;&#x578b;&#x67e5;&#x8be2;</name>
  1556 + <type>DBLookup</type>
  1557 + <description/>
  1558 + <distribute>Y</distribute>
  1559 + <custom_distribution/>
  1560 + <copies>1</copies>
  1561 + <partitioning>
  1562 + <method>none</method>
  1563 + <schema_name/>
  1564 + </partitioning>
  1565 + <connection>bus_control_variable</connection>
  1566 + <cache>N</cache>
  1567 + <cache_load_all>N</cache_load_all>
  1568 + <cache_size>0</cache_size>
  1569 + <lookup>
  1570 + <schema/>
  1571 + <table>bsth_c_sys_dictionary</table>
  1572 + <orderby/>
  1573 + <fail_on_multiple>N</fail_on_multiple>
  1574 + <eat_row_on_failure>N</eat_row_on_failure>
  1575 + <key>
  1576 + <name>carType</name>
  1577 + <field>d_group</field>
  1578 + <condition>&#x3d;</condition>
  1579 + <name2/>
  1580 + </key>
  1581 + <key>
  1582 + <name>car_type</name>
  1583 + <field>d_code</field>
  1584 + <condition>&#x3d;</condition>
  1585 + <name2/>
  1586 + </key>
  1587 + <value>
  1588 + <name>d_name</name>
  1589 + <rename>car_type_str</rename>
  1590 + <default/>
  1591 + <type>String</type>
  1592 + </value>
  1593 + </lookup>
  1594 + <cluster_schema/>
  1595 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1596 + <xloc>803</xloc>
  1597 + <yloc>163</yloc>
  1598 + <draw>Y</draw>
  1599 + </GUI>
  1600 + </step>
  1601 +
  1602 + <step>
  1603 + <name>&#x8f66;&#x8f86;&#x7c7b;&#x578b;&#x6807;&#x8bc6;</name>
  1604 + <type>Constant</type>
  1605 + <description/>
  1606 + <distribute>Y</distribute>
  1607 + <custom_distribution/>
  1608 + <copies>1</copies>
  1609 + <partitioning>
  1610 + <method>none</method>
  1611 + <schema_name/>
  1612 + </partitioning>
  1613 + <fields>
  1614 + <field>
  1615 + <name>carType</name>
  1616 + <type>String</type>
  1617 + <format/>
  1618 + <currency/>
  1619 + <decimal/>
  1620 + <group/>
  1621 + <nullif>carType</nullif>
  1622 + <length>-1</length>
  1623 + <precision>-1</precision>
  1624 + <set_empty_string>N</set_empty_string>
  1625 + </field>
  1626 + </fields>
  1627 + <cluster_schema/>
  1628 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1629 + <xloc>800</xloc>
  1630 + <yloc>70</yloc>
  1631 + <draw>Y</draw>
  1632 + </GUI>
  1633 + </step>
  1634 +
  1635 + <step_error_handling>
  1636 + </step_error_handling>
  1637 + <slave-step-copy-partition-distribution>
  1638 +</slave-step-copy-partition-distribution>
  1639 + <slave_transformation>N</slave_transformation>
  1640 +
  1641 +</transformation>
... ...
src/main/resources/datatools/ktrs/employeesDataInput.ktr
1   -<?xml version="1.0" encoding="UTF-8"?>
2   -<transformation>
3   - <info>
4   - <name>employeesDataInput</name>
5   - <description>&#x4eba;&#x5458;&#x57fa;&#x7840;&#x4fe1;&#x606f;&#x5bfc;&#x5165;</description>
6   - <extended_description>&#x4eba;&#x5458;&#x57fa;&#x7840;&#x4fe1;&#x606f;</extended_description>
7   - <trans_version/>
8   - <trans_type>Normal</trans_type>
9   - <trans_status>0</trans_status>
10   - <directory>&#x2f;</directory>
11   - <parameters>
12   - <parameter>
13   - <name>erroroutputdir</name>
14   - <default_value/>
15   - <description>ktr step&#x914d;&#x7f6e;&#x7684;&#x9519;&#x8bef;&#x8f93;&#x51fa;&#x76ee;&#x5f55;</description>
16   - </parameter>
17   - <parameter>
18   - <name>filepath</name>
19   - <default_value/>
20   - <description>&#x5f85;&#x5904;&#x7406;&#x5bfc;&#x5165;&#x7684;excel&#x6587;&#x4ef6;</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&#x2f;06&#x2f;29 10&#x3a;18&#x3a;56.974</created_date>
81   - <modified_user>-</modified_user>
82   - <modified_date>2016&#x2f;06&#x2f;29 10&#x3a;18&#x3a;56.974</modified_date>
83   - <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA&#x3d;</key_for_session_key>
84   - <is_key_private>N</is_key_private>
85   - </info>
86   - <notepads>
87   - <notepad>
88   - <note>&#x539f;&#x7cfb;&#x7edf;&#x5bfc;&#x51fa;&#x7684;&#x8868;&#xff0c;&#x6709;&#x4e9b;&#x5b57;&#x6bb5;&#x662f;&#x6ca1;&#x6709;&#x7684;&#xff0c;&#xa;&#x4eba;&#x5458;&#x7f16;&#x7801; &#x6682;&#x65f6;&#x6ca1;&#x6709;&#x7a7a;&#x7740;&#xa;&#x7167;&#x7247;&#x5730;&#x5740; &#x6682;&#x65f6;&#x6ca1;&#x6709;&#x7a7a;&#x7740;&#xa;&#x7ebf;&#x8def;&#x7f16;&#x53f7; &#x6682;&#x65f6;&#x6ca1;&#x6709;&#x7a7a;&#x7740;&#xa;&#x8054;&#x7cfb;&#x7535;&#x8bdd; &#x6682;&#x65f6;&#x6ca1;&#x6709;&#x7a7a;&#x7740;&#xa;&#xa;&#x5b57;&#x5178;&#xa;&#x6027;&#x522b;sexType &#x7537;&#x6027; 1&#xa;&#x6027;&#x522b;sexType &#x5973;&#x6027; 2&#xa;&#xa;&#x5de5;&#x79cd;gzType &#x516c;&#x5171;&#x6c7d;&#x7535;&#x8f66;&#x9a7e;&#x9a76;&#x5458; 1&#xa;&#x5de5;&#x79cd;gzType &#x516c;&#x5171;&#x6c7d;&#x7535;&#x8f66;&#x8c03;&#x5ea6;&#x5458; 2&#xa;&#x5de5;&#x79cd;gzType &#x516c;&#x5171;&#x6c7d;&#x7535;&#x8f66;&#x552e;&#x7968;&#x5458; 3&#xa;&#x5de5;&#x79cd;gzType &#x7ad9;&#x5458; 4&#xa;&#x5de5;&#x79cd;gzType &#x7ba1;&#x7406;&#x5458; 5&#xa;&#x5de5;&#x79cd;gzType &#x5b89;&#x68c0;&#x5458; 6&#xa;&#x5de5;&#x79cd;gzType &#x673a;&#x52a1; 7&#xa;&#x5de5;&#x79cd;gzType &#x5f15;&#x5bfc;&#x5458; 8&#xa;&#x5de5;&#x79cd;gzType &#x4e58;&#x52a1;&#x5458; 9&#xa;&#x5de5;&#x79cd;gzType &#x8f66;&#x961f;&#x957f;&#xff08;&#x7ebf;&#x957f;&#x3001;&#x4e3b; 10&#xa;&#x5de5;&#x79cd;gzType &#x516c;&#x53f8;&#x7ba1;&#x7406;&#x4eba;&#x5458; 11&#xa;&#x5de5;&#x79cd;gzType &#x8b66;&#x6d88;&#x4eba;&#x5458; 12&#xa;&#x5de5;&#x79cd;gzType &#x7968;&#x52a1;&#x4eba;&#x5458; 13&#xa;&#x5de5;&#x79cd;gzType &#x5176;&#x4ed6;&#x670d;&#x52a1;&#x4eba;&#x5458; 14</note>
89   - <xloc>288</xloc>
90   - <yloc>139</yloc>
91   - <width>214</width>
92   - <heigth>394</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>&#x24;&#x7b;v_db_ip&#x7d;</server>
112   - <type>MYSQL</type>
113   - <access>Native</access>
114   - <database>control</database>
115   - <port>3306</port>
116   - <username>&#x24;&#x7b;v_db_uname&#x7d;</username>
117   - <password>&#x24;&#x7b;v_db_pwd&#x7d;</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_&#x516c;&#x53f8;_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_&#x672c;&#x673a;</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&#xff08;&#x672c;&#x673a;&#xff09;</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>&#x516c;&#x4ea4;&#x4f01;&#x4e1a;&#x4ee3;&#x7801;</from><to>&#x503c;&#x6620;&#x5c04;</to><enabled>Y</enabled> </hop>
271   - <hop> <from>&#x539f;&#x59cb;&#x7cfb;&#x7edf;&#x5bfc;&#x51fa;&#x7684;Excel&#x8f93;&#x5165;</from><to>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</to><enabled>Y</enabled> </hop>
272   - <hop> <from>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</from><to>&#x6027;&#x522b;&#x4ee3;&#x7801;</to><enabled>Y</enabled> </hop>
273   - <hop> <from>&#x6027;&#x522b;&#x4ee3;&#x7801;</from><to>&#x516c;&#x4ea4;&#x4f01;&#x4e1a;&#x4ee3;&#x7801;</to><enabled>Y</enabled> </hop>
274   - <hop> <from>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_personnel</from><to>&#x9519;&#x8bef;&#x8f93;&#x51fa;</to><enabled>Y</enabled> </hop>
275   - <hop> <from>&#x503c;&#x6620;&#x5c04;</from><to>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_personnel</to><enabled>Y</enabled> </hop>
276   - <hop> <from>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</from><to>&#x539f;&#x59cb;&#x7cfb;&#x7edf;&#x5bfc;&#x51fa;&#x7684;Excel&#x8f93;&#x5165;</to><enabled>Y</enabled> </hop>
277   - </order>
278   - <step>
279   - <name>&#x503c;&#x6620;&#x5c04;</name>
280   - <type>ValueMapper</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   - <field_to_use>posts</field_to_use>
290   - <target_field/>
291   - <non_match_default/>
292   - <fields>
293   - <field>
294   - <source_value>&#x516c;&#x5171;&#x6c7d;&#x7535;&#x8f66;&#x9a7e;&#x9a76;&#x5458;</source_value>
295   - <target_value>1</target_value>
296   - </field>
297   - <field>
298   - <source_value>&#x516c;&#x5171;&#x6c7d;&#x7535;&#x8f66;&#x8c03;&#x5ea6;&#x5458;</source_value>
299   - <target_value>2</target_value>
300   - </field>
301   - <field>
302   - <source_value>&#x516c;&#x5171;&#x6c7d;&#x7535;&#x8f66;&#x552e;&#x7968;&#x5458;</source_value>
303   - <target_value>3</target_value>
304   - </field>
305   - <field>
306   - <source_value>&#x7ad9;&#x5458;</source_value>
307   - <target_value>4</target_value>
308   - </field>
309   - <field>
310   - <source_value>&#x7ba1;&#x7406;&#x5458;</source_value>
311   - <target_value>5</target_value>
312   - </field>
313   - <field>
314   - <source_value>&#x5b89;&#x68c0;&#x5458;</source_value>
315   - <target_value>6</target_value>
316   - </field>
317   - <field>
318   - <source_value>&#x673a;&#x52a1;</source_value>
319   - <target_value>7</target_value>
320   - </field>
321   - <field>
322   - <source_value>&#x5f15;&#x5bfc;&#x5458;</source_value>
323   - <target_value>8</target_value>
324   - </field>
325   - <field>
326   - <source_value>&#x4e58;&#x52a1;&#x5458;</source_value>
327   - <target_value>9</target_value>
328   - </field>
329   - <field>
330   - <source_value>&#x8f66;&#x961f;&#x957f;&#xff08;&#x7ebf;&#x957f;&#x3001;&#x4e3b;</source_value>
331   - <target_value>10</target_value>
332   - </field>
333   - <field>
334   - <source_value>&#x516c;&#x53f8;&#x7ba1;&#x7406;&#x4eba;&#x5458;</source_value>
335   - <target_value>11</target_value>
336   - </field>
337   - <field>
338   - <source_value>&#x8b66;&#x6d88;&#x4eba;&#x5458;</source_value>
339   - <target_value>12</target_value>
340   - </field>
341   - <field>
342   - <source_value>&#x7968;&#x52a1;&#x4eba;&#x5458;</source_value>
343   - <target_value>13</target_value>
344   - </field>
345   - <field>
346   - <source_value>&#x5176;&#x4ed6;&#x670d;&#x52a1;&#x4eba;&#x5458;</source_value>
347   - <target_value>14</target_value>
348   - </field>
349   - </fields>
350   - <cluster_schema/>
351   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
352   - <xloc>543</xloc>
353   - <yloc>152</yloc>
354   - <draw>Y</draw>
355   - </GUI>
356   - </step>
357   -
358   - <step>
359   - <name>&#x516c;&#x4ea4;&#x4f01;&#x4e1a;&#x4ee3;&#x7801;</name>
360   - <type>ValueMapper</type>
361   - <description/>
362   - <distribute>Y</distribute>
363   - <custom_distribution/>
364   - <copies>1</copies>
365   - <partitioning>
366   - <method>none</method>
367   - <schema_name/>
368   - </partitioning>
369   - <field_to_use>company</field_to_use>
370   - <target_field>companyCode</target_field>
371   - <non_match_default/>
372   - <fields>
373   - <field>
374   - <source_value>&#x4e0a;&#x5357;&#x516c;&#x53f8;</source_value>
375   - <target_value>55</target_value>
376   - </field>
377   - <field>
378   - <source_value>&#x91d1;&#x9ad8;&#x516c;&#x53f8;</source_value>
379   - <target_value>22</target_value>
380   - </field>
381   - <field>
382   - <source_value>&#x6768;&#x9ad8;&#x516c;&#x53f8;</source_value>
383   - <target_value>05</target_value>
384   - </field>
385   - <field>
386   - <source_value>&#x5357;&#x6c47;&#x516c;&#x53f8;</source_value>
387   - <target_value>26</target_value>
388   - </field>
389   - <field>
390   - <source_value>&#x516c;&#x4ea4;&#x516c;&#x53f8;</source_value>
391   - <target_value>88</target_value>
392   - </field>
393   - <field>
394   - <source_value>&#x95f5;&#x884c;&#x516c;&#x4ea4;</source_value>
395   - <target_value>77</target_value>
396   - </field>
397   - </fields>
398   - <cluster_schema/>
399   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
400   - <xloc>539</xloc>
401   - <yloc>56</yloc>
402   - <draw>Y</draw>
403   - </GUI>
404   - </step>
405   -
406   - <step>
407   - <name>&#x539f;&#x59cb;&#x7cfb;&#x7edf;&#x5bfc;&#x51fa;&#x7684;Excel&#x8f93;&#x5165;</name>
408   - <type>ExcelInput</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   - <header>Y</header>
418   - <noempty>Y</noempty>
419   - <stoponempty>N</stoponempty>
420   - <filefield/>
421   - <sheetfield/>
422   - <sheetrownumfield/>
423   - <rownumfield/>
424   - <sheetfield/>
425   - <filefield/>
426   - <limit>0</limit>
427   - <encoding/>
428   - <add_to_result_filenames>Y</add_to_result_filenames>
429   - <accept_filenames>Y</accept_filenames>
430   - <accept_field>filepath_</accept_field>
431   - <accept_stepname>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</accept_stepname>
432   - <file>
433   - <name/>
434   - <filemask/>
435   - <exclude_filemask/>
436   - <file_required>N</file_required>
437   - <include_subfolders>N</include_subfolders>
438   - </file>
439   - <fields>
440   - <field>
441   - <name>&#x59d3;&#x540d;</name>
442   - <type>String</type>
443   - <length>-1</length>
444   - <precision>-1</precision>
445   - <trim_type>none</trim_type>
446   - <repeat>N</repeat>
447   - <format/>
448   - <currency/>
449   - <decimal/>
450   - <group/>
451   - </field>
452   - <field>
453   - <name>&#x5de5;&#x53f7;</name>
454   - <type>String</type>
455   - <length>-1</length>
456   - <precision>-1</precision>
457   - <trim_type>none</trim_type>
458   - <repeat>N</repeat>
459   - <format/>
460   - <currency/>
461   - <decimal/>
462   - <group/>
463   - </field>
464   - <field>
465   - <name>&#x6027;&#x522b;</name>
466   - <type>String</type>
467   - <length>-1</length>
468   - <precision>-1</precision>
469   - <trim_type>none</trim_type>
470   - <repeat>N</repeat>
471   - <format/>
472   - <currency/>
473   - <decimal/>
474   - <group/>
475   - </field>
476   - <field>
477   - <name>&#x6240;&#x5c5e;&#x516c;&#x53f8;</name>
478   - <type>String</type>
479   - <length>-1</length>
480   - <precision>-1</precision>
481   - <trim_type>none</trim_type>
482   - <repeat>N</repeat>
483   - <format/>
484   - <currency/>
485   - <decimal/>
486   - <group/>
487   - </field>
488   - <field>
489   - <name>&#x6240;&#x5c5e;&#x5206;&#x516c;&#x53f8;</name>
490   - <type>String</type>
491   - <length>-1</length>
492   - <precision>-1</precision>
493   - <trim_type>none</trim_type>
494   - <repeat>N</repeat>
495   - <format/>
496   - <currency/>
497   - <decimal/>
498   - <group/>
499   - </field>
500   - <field>
501   - <name>&#x4e00;&#x5361;&#x901a;&#x53f7;</name>
502   - <type>String</type>
503   - <length>-1</length>
504   - <precision>-1</precision>
505   - <trim_type>none</trim_type>
506   - <repeat>N</repeat>
507   - <format/>
508   - <currency/>
509   - <decimal/>
510   - <group/>
511   - </field>
512   - <field>
513   - <name>&#x8fd0;&#x8425;&#x670d;&#x52a1;&#x8bc1;&#x53f7;</name>
514   - <type>String</type>
515   - <length>-1</length>
516   - <precision>-1</precision>
517   - <trim_type>none</trim_type>
518   - <repeat>N</repeat>
519   - <format/>
520   - <currency/>
521   - <decimal/>
522   - <group/>
523   - </field>
524   - <field>
525   - <name>&#x5c97;&#x4f4d;</name>
526   - <type>String</type>
527   - <length>-1</length>
528   - <precision>-1</precision>
529   - <trim_type>none</trim_type>
530   - <repeat>N</repeat>
531   - <format/>
532   - <currency/>
533   - <decimal/>
534   - <group/>
535   - </field>
536   - <field>
537   - <name>&#x5907;&#x6ce8;</name>
538   - <type>String</type>
539   - <length>-1</length>
540   - <precision>-1</precision>
541   - <trim_type>none</trim_type>
542   - <repeat>N</repeat>
543   - <format/>
544   - <currency/>
545   - <decimal/>
546   - <group/>
547   - </field>
548   - </fields>
549   - <sheets>
550   - <sheet>
551   - <name>&#x5de5;&#x4f5c;&#x8868;1</name>
552   - <startrow>0</startrow>
553   - <startcol>0</startcol>
554   - </sheet>
555   - </sheets>
556   - <strict_types>N</strict_types>
557   - <error_ignored>N</error_ignored>
558   - <error_line_skipped>N</error_line_skipped>
559   - <bad_line_files_destination_directory/>
560   - <bad_line_files_extension>warning</bad_line_files_extension>
561   - <error_line_files_destination_directory/>
562   - <error_line_files_extension>error</error_line_files_extension>
563   - <line_number_files_destination_directory/>
564   - <line_number_files_extension>line</line_number_files_extension>
565   - <shortFileFieldName/>
566   - <pathFieldName/>
567   - <hiddenFieldName/>
568   - <lastModificationTimeFieldName/>
569   - <uriNameFieldName/>
570   - <rootUriNameFieldName/>
571   - <extensionFieldName/>
572   - <sizeFieldName/>
573   - <spreadsheet_type>JXL</spreadsheet_type>
574   - <cluster_schema/>
575   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
576   - <xloc>158</xloc>
577   - <yloc>57</yloc>
578   - <draw>Y</draw>
579   - </GUI>
580   - </step>
581   -
582   - <step>
583   - <name>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</name>
584   - <type>SelectValues</type>
585   - <description/>
586   - <distribute>Y</distribute>
587   - <custom_distribution/>
588   - <copies>1</copies>
589   - <partitioning>
590   - <method>none</method>
591   - <schema_name/>
592   - </partitioning>
593   - <fields> <field> <name>&#x59d3;&#x540d;</name>
594   - <rename>personnelName</rename>
595   - <length>-2</length>
596   - <precision>-2</precision>
597   - </field> <field> <name>&#x5de5;&#x53f7;</name>
598   - <rename>jobCode</rename>
599   - <length>-2</length>
600   - <precision>-2</precision>
601   - </field> <field> <name>&#x6027;&#x522b;</name>
602   - <rename>personnelType</rename>
603   - <length>-2</length>
604   - <precision>-2</precision>
605   - </field> <field> <name>&#x6240;&#x5c5e;&#x516c;&#x53f8;</name>
606   - <rename>company</rename>
607   - <length>-2</length>
608   - <precision>-2</precision>
609   - </field> <field> <name>&#x6240;&#x5c5e;&#x5206;&#x516c;&#x53f8;</name>
610   - <rename>brancheCompany</rename>
611   - <length>-2</length>
612   - <precision>-2</precision>
613   - </field> <field> <name>&#x4e00;&#x5361;&#x901a;&#x53f7;</name>
614   - <rename>icCardCode</rename>
615   - <length>-2</length>
616   - <precision>-2</precision>
617   - </field> <field> <name>&#x8fd0;&#x8425;&#x670d;&#x52a1;&#x8bc1;&#x53f7;</name>
618   - <rename>papersCode</rename>
619   - <length>-2</length>
620   - <precision>-2</precision>
621   - </field> <field> <name>&#x5c97;&#x4f4d;</name>
622   - <rename>posts</rename>
623   - <length>-2</length>
624   - <precision>-2</precision>
625   - </field> <field> <name>&#x5907;&#x6ce8;</name>
626   - <rename>descriptions</rename>
627   - <length>-2</length>
628   - <precision>-2</precision>
629   - </field> <select_unspecified>N</select_unspecified>
630   - </fields> <cluster_schema/>
631   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
632   - <xloc>286</xloc>
633   - <yloc>58</yloc>
634   - <draw>Y</draw>
635   - </GUI>
636   - </step>
637   -
638   - <step>
639   - <name>&#x6027;&#x522b;&#x4ee3;&#x7801;</name>
640   - <type>ValueMapper</type>
641   - <description/>
642   - <distribute>Y</distribute>
643   - <custom_distribution/>
644   - <copies>1</copies>
645   - <partitioning>
646   - <method>none</method>
647   - <schema_name/>
648   - </partitioning>
649   - <field_to_use>personnelType</field_to_use>
650   - <target_field>personnelCode</target_field>
651   - <non_match_default/>
652   - <fields>
653   - <field>
654   - <source_value>&#x7537;&#x6027;</source_value>
655   - <target_value>1</target_value>
656   - </field>
657   - <field>
658   - <source_value>&#x5973;&#x6027;</source_value>
659   - <target_value>2</target_value>
660   - </field>
661   - </fields>
662   - <cluster_schema/>
663   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
664   - <xloc>413</xloc>
665   - <yloc>58</yloc>
666   - <draw>Y</draw>
667   - </GUI>
668   - </step>
669   -
670   - <step>
671   - <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_personnel</name>
672   - <type>InsertUpdate</type>
673   - <description/>
674   - <distribute>Y</distribute>
675   - <custom_distribution/>
676   - <copies>1</copies>
677   - <partitioning>
678   - <method>none</method>
679   - <schema_name/>
680   - </partitioning>
681   - <connection>bus_control_variable</connection>
682   - <commit>5000</commit>
683   - <update_bypassed>N</update_bypassed>
684   - <lookup>
685   - <schema/>
686   - <table>bsth_c_personnel</table>
687   - <key>
688   - <name>jobCode</name>
689   - <field>job_code</field>
690   - <condition>&#x3d;</condition>
691   - <name2/>
692   - </key>
693   - <key>
694   - <name>companyCode</name>
695   - <field>company_code</field>
696   - <condition>&#x3d;</condition>
697   - <name2/>
698   - </key>
699   - <value>
700   - <name>personnel_name</name>
701   - <rename>personnelName</rename>
702   - <update>Y</update>
703   - </value>
704   - <value>
705   - <name>job_code</name>
706   - <rename>jobCode</rename>
707   - <update>Y</update>
708   - </value>
709   - <value>
710   - <name>personnel_type</name>
711   - <rename>personnelCode</rename>
712   - <update>Y</update>
713   - </value>
714   - <value>
715   - <name>company</name>
716   - <rename>company</rename>
717   - <update>Y</update>
718   - </value>
719   - <value>
720   - <name>branche_company</name>
721   - <rename>brancheCompany</rename>
722   - <update>Y</update>
723   - </value>
724   - <value>
725   - <name>ic_card_code</name>
726   - <rename>icCardCode</rename>
727   - <update>Y</update>
728   - </value>
729   - <value>
730   - <name>papers_code</name>
731   - <rename>papersCode</rename>
732   - <update>Y</update>
733   - </value>
734   - <value>
735   - <name>posts</name>
736   - <rename>posts</rename>
737   - <update>Y</update>
738   - </value>
739   - <value>
740   - <name>descriptions</name>
741   - <rename>descriptions</rename>
742   - <update>Y</update>
743   - </value>
744   - <value>
745   - <name>company_code</name>
746   - <rename>companyCode</rename>
747   - <update>Y</update>
748   - </value>
749   - </lookup>
750   - <cluster_schema/>
751   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
752   - <xloc>713</xloc>
753   - <yloc>56</yloc>
754   - <draw>Y</draw>
755   - </GUI>
756   - </step>
757   -
758   - <step>
759   - <name>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</name>
760   - <type>GetVariable</type>
761   - <description/>
762   - <distribute>Y</distribute>
763   - <custom_distribution/>
764   - <copies>1</copies>
765   - <partitioning>
766   - <method>none</method>
767   - <schema_name/>
768   - </partitioning>
769   - <fields>
770   - <field>
771   - <name>filepath_</name>
772   - <variable>&#x24;&#x7b;filepath&#x7d;</variable>
773   - <type>String</type>
774   - <format/>
775   - <currency/>
776   - <decimal/>
777   - <group/>
778   - <length>-1</length>
779   - <precision>-1</precision>
780   - <trim_type>none</trim_type>
781   - </field>
782   - <field>
783   - <name>erroroutputdir_</name>
784   - <variable>&#x24;&#x7b;erroroutputdir&#x7d;</variable>
785   - <type>String</type>
786   - <format/>
787   - <currency/>
788   - <decimal/>
789   - <group/>
790   - <length>-1</length>
791   - <precision>-1</precision>
792   - <trim_type>none</trim_type>
793   - </field>
794   - </fields>
795   - <cluster_schema/>
796   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
797   - <xloc>90</xloc>
798   - <yloc>148</yloc>
799   - <draw>Y</draw>
800   - </GUI>
801   - </step>
802   -
803   - <step>
804   - <name>&#x9519;&#x8bef;&#x8f93;&#x51fa;</name>
805   - <type>ExcelOutput</type>
806   - <description/>
807   - <distribute>Y</distribute>
808   - <custom_distribution/>
809   - <copies>1</copies>
810   - <partitioning>
811   - <method>none</method>
812   - <schema_name/>
813   - </partitioning>
814   - <header>Y</header>
815   - <footer>N</footer>
816   - <encoding>UTF-8</encoding>
817   - <append>N</append>
818   - <add_to_result_filenames>Y</add_to_result_filenames>
819   - <file>
820   - <name>&#x24;&#x7b;erroroutputdir&#x7d;&#x2f;&#x4eba;&#x5458;&#x57fa;&#x7840;&#x4fe1;&#x606f;_&#x9519;&#x8bef;</name>
821   - <extention>xls</extention>
822   - <do_not_open_newfile_init>N</do_not_open_newfile_init>
823   - <create_parent_folder>N</create_parent_folder>
824   - <split>N</split>
825   - <add_date>N</add_date>
826   - <add_time>N</add_time>
827   - <SpecifyFormat>N</SpecifyFormat>
828   - <date_time_format/>
829   - <sheetname>Sheet1</sheetname>
830   - <autosizecolums>N</autosizecolums>
831   - <nullisblank>N</nullisblank>
832   - <protect_sheet>N</protect_sheet>
833   - <password>Encrypted </password>
834   - <splitevery>0</splitevery>
835   - <usetempfiles>N</usetempfiles>
836   - <tempdirectory/>
837   - </file>
838   - <template>
839   - <enabled>N</enabled>
840   - <append>N</append>
841   - <filename>template.xls</filename>
842   - </template>
843   - <fields>
844   - <field>
845   - <name>personnelName</name>
846   - <type>String</type>
847   - <format/>
848   - </field>
849   - <field>
850   - <name>jobCode</name>
851   - <type>String</type>
852   - <format/>
853   - </field>
854   - <field>
855   - <name>personnelType</name>
856   - <type>String</type>
857   - <format/>
858   - </field>
859   - <field>
860   - <name>company</name>
861   - <type>String</type>
862   - <format/>
863   - </field>
864   - <field>
865   - <name>brancheCompany</name>
866   - <type>String</type>
867   - <format/>
868   - </field>
869   - <field>
870   - <name>icCardCode</name>
871   - <type>String</type>
872   - <format/>
873   - </field>
874   - <field>
875   - <name>papersCode</name>
876   - <type>String</type>
877   - <format/>
878   - </field>
879   - <field>
880   - <name>posts</name>
881   - <type>String</type>
882   - <format/>
883   - </field>
884   - <field>
885   - <name>descriptions</name>
886   - <type>String</type>
887   - <format/>
888   - </field>
889   - <field>
890   - <name>companyCode</name>
891   - <type>String</type>
892   - <format/>
893   - </field>
894   - <field>
895   - <name>error_count</name>
896   - <type>Integer</type>
897   - <format/>
898   - </field>
899   - <field>
900   - <name>error_desc</name>
901   - <type>String</type>
902   - <format/>
903   - </field>
904   - <field>
905   - <name>error_column1</name>
906   - <type>String</type>
907   - <format/>
908   - </field>
909   - <field>
910   - <name>error_column2</name>
911   - <type>String</type>
912   - <format/>
913   - </field>
914   - </fields>
915   - <custom>
916   - <header_font_name>arial</header_font_name>
917   - <header_font_size>10</header_font_size>
918   - <header_font_bold>N</header_font_bold>
919   - <header_font_italic>N</header_font_italic>
920   - <header_font_underline>no</header_font_underline>
921   - <header_font_orientation>horizontal</header_font_orientation>
922   - <header_font_color>black</header_font_color>
923   - <header_background_color>none</header_background_color>
924   - <header_row_height>255</header_row_height>
925   - <header_alignment>left</header_alignment>
926   - <header_image/>
927   - <row_font_name>arial</row_font_name>
928   - <row_font_size>10</row_font_size>
929   - <row_font_color>black</row_font_color>
930   - <row_background_color>none</row_background_color>
931   - </custom>
932   - <cluster_schema/>
933   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
934   - <xloc>715</xloc>
935   - <yloc>223</yloc>
936   - <draw>Y</draw>
937   - </GUI>
938   - </step>
939   -
940   - <step_error_handling>
941   - <error>
942   - <source_step>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_personnel</source_step>
943   - <target_step>&#x9519;&#x8bef;&#x8f93;&#x51fa;</target_step>
944   - <is_enabled>Y</is_enabled>
945   - <nr_valuename>error_count</nr_valuename>
946   - <descriptions_valuename>error_desc</descriptions_valuename>
947   - <fields_valuename>error_column1</fields_valuename>
948   - <codes_valuename>error_column2</codes_valuename>
949   - <max_errors/>
950   - <max_pct_errors/>
951   - <min_pct_rows/>
952   - </error>
953   - </step_error_handling>
954   - <slave-step-copy-partition-distribution>
955   -</slave-step-copy-partition-distribution>
956   - <slave_transformation>N</slave_transformation>
957   -
958   -</transformation>
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<transformation>
  3 + <info>
  4 + <name>employeesDataInput</name>
  5 + <description>&#x4eba;&#x5458;&#x57fa;&#x7840;&#x4fe1;&#x606f;&#x5bfc;&#x5165;</description>
  6 + <extended_description>&#x4eba;&#x5458;&#x57fa;&#x7840;&#x4fe1;&#x606f;</extended_description>
  7 + <trans_version/>
  8 + <trans_type>Normal</trans_type>
  9 + <trans_status>0</trans_status>
  10 + <directory>&#x2f;</directory>
  11 + <parameters>
  12 + <parameter>
  13 + <name>erroroutputdir</name>
  14 + <default_value/>
  15 + <description>ktr step&#x914d;&#x7f6e;&#x7684;&#x9519;&#x8bef;&#x8f93;&#x51fa;&#x76ee;&#x5f55;</description>
  16 + </parameter>
  17 + <parameter>
  18 + <name>filepath</name>
  19 + <default_value/>
  20 + <description>&#x5f85;&#x5904;&#x7406;&#x5bfc;&#x5165;&#x7684;excel&#x6587;&#x4ef6;</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&#x2f;06&#x2f;29 10&#x3a;18&#x3a;56.974</created_date>
  81 + <modified_user>-</modified_user>
  82 + <modified_date>2016&#x2f;06&#x2f;29 10&#x3a;18&#x3a;56.974</modified_date>
  83 + <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA&#x3d;</key_for_session_key>
  84 + <is_key_private>N</is_key_private>
  85 + </info>
  86 + <notepads>
  87 + <notepad>
  88 + <note>&#x539f;&#x7cfb;&#x7edf;&#x5bfc;&#x51fa;&#x7684;&#x8868;&#xff0c;&#x6709;&#x4e9b;&#x5b57;&#x6bb5;&#x662f;&#x6ca1;&#x6709;&#x7684;&#xff0c;&#xa;&#x4eba;&#x5458;&#x7f16;&#x7801; &#x6682;&#x65f6;&#x6ca1;&#x6709;&#x7a7a;&#x7740;&#xa;&#x7167;&#x7247;&#x5730;&#x5740; &#x6682;&#x65f6;&#x6ca1;&#x6709;&#x7a7a;&#x7740;&#xa;&#x7ebf;&#x8def;&#x7f16;&#x53f7; &#x6682;&#x65f6;&#x6ca1;&#x6709;&#x7a7a;&#x7740;&#xa;&#x8054;&#x7cfb;&#x7535;&#x8bdd; &#x6682;&#x65f6;&#x6ca1;&#x6709;&#x7a7a;&#x7740;&#xa;&#xa;&#x5b57;&#x5178;&#xa;&#x6027;&#x522b;sexType &#x7537;&#x6027; 1&#xa;&#x6027;&#x522b;sexType &#x5973;&#x6027; 2&#xa;&#xa;&#x5de5;&#x79cd;gzType &#x516c;&#x5171;&#x6c7d;&#x7535;&#x8f66;&#x9a7e;&#x9a76;&#x5458; 1&#xa;&#x5de5;&#x79cd;gzType &#x516c;&#x5171;&#x6c7d;&#x7535;&#x8f66;&#x8c03;&#x5ea6;&#x5458; 2&#xa;&#x5de5;&#x79cd;gzType &#x516c;&#x5171;&#x6c7d;&#x7535;&#x8f66;&#x552e;&#x7968;&#x5458; 3&#xa;&#x5de5;&#x79cd;gzType &#x7ad9;&#x5458; 4&#xa;&#x5de5;&#x79cd;gzType &#x7ba1;&#x7406;&#x5458; 5&#xa;&#x5de5;&#x79cd;gzType &#x5b89;&#x68c0;&#x5458; 6&#xa;&#x5de5;&#x79cd;gzType &#x673a;&#x52a1; 7&#xa;&#x5de5;&#x79cd;gzType &#x5f15;&#x5bfc;&#x5458; 8&#xa;&#x5de5;&#x79cd;gzType &#x4e58;&#x52a1;&#x5458; 9&#xa;&#x5de5;&#x79cd;gzType &#x8f66;&#x961f;&#x957f;&#xff08;&#x7ebf;&#x957f;&#x3001;&#x4e3b; 10&#xa;&#x5de5;&#x79cd;gzType &#x516c;&#x53f8;&#x7ba1;&#x7406;&#x4eba;&#x5458; 11&#xa;&#x5de5;&#x79cd;gzType &#x8b66;&#x6d88;&#x4eba;&#x5458; 12&#xa;&#x5de5;&#x79cd;gzType &#x7968;&#x52a1;&#x4eba;&#x5458; 13&#xa;&#x5de5;&#x79cd;gzType &#x5176;&#x4ed6;&#x670d;&#x52a1;&#x4eba;&#x5458; 14</note>
  89 + <xloc>200</xloc>
  90 + <yloc>160</yloc>
  91 + <width>214</width>
  92 + <heigth>394</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>&#x24;&#x7b;v_db_ip&#x7d;</server>
  112 + <type>MYSQL</type>
  113 + <access>Native</access>
  114 + <database>control</database>
  115 + <port>3306</port>
  116 + <username>&#x24;&#x7b;v_db_uname&#x7d;</username>
  117 + <password>&#x24;&#x7b;v_db_pwd&#x7d;</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_&#x516c;&#x53f8;_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_&#x672c;&#x673a;</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&#xff08;&#x672c;&#x673a;&#xff09;</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>&#x539f;&#x59cb;&#x7cfb;&#x7edf;&#x5bfc;&#x51fa;&#x7684;Excel&#x8f93;&#x5165;</from><to>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</to><enabled>Y</enabled> </hop>
  271 + <hop> <from>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</from><to>&#x6027;&#x522b;&#x4ee3;&#x7801;</to><enabled>Y</enabled> </hop>
  272 + <hop> <from>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_personnel</from><to>&#x9519;&#x8bef;&#x8f93;&#x51fa;</to><enabled>Y</enabled> </hop>
  273 + <hop> <from>&#x5de5;&#x79cd;</from><to>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_personnel</to><enabled>Y</enabled> </hop>
  274 + <hop> <from>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</from><to>&#x539f;&#x59cb;&#x7cfb;&#x7edf;&#x5bfc;&#x51fa;&#x7684;Excel&#x8f93;&#x5165;</to><enabled>Y</enabled> </hop>
  275 + <hop> <from>&#x6027;&#x522b;&#x4ee3;&#x7801;</from><to>&#x516c;&#x4ea4;&#x4f01;&#x4e1a;&#x4ee3;&#x7801;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>
  276 + <hop> <from>&#x516c;&#x4ea4;&#x4f01;&#x4e1a;&#x4ee3;&#x7801;&#x67e5;&#x8be2;</from><to>&#x5de5;&#x79cd;</to><enabled>Y</enabled> </hop>
  277 + </order>
  278 + <step>
  279 + <name>&#x5de5;&#x79cd;</name>
  280 + <type>ValueMapper</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 + <field_to_use>posts</field_to_use>
  290 + <target_field/>
  291 + <non_match_default/>
  292 + <fields>
  293 + <field>
  294 + <source_value>&#x516c;&#x5171;&#x6c7d;&#x7535;&#x8f66;&#x9a7e;&#x9a76;&#x5458;</source_value>
  295 + <target_value>1</target_value>
  296 + </field>
  297 + <field>
  298 + <source_value>&#x516c;&#x5171;&#x6c7d;&#x7535;&#x8f66;&#x8c03;&#x5ea6;&#x5458;</source_value>
  299 + <target_value>2</target_value>
  300 + </field>
  301 + <field>
  302 + <source_value>&#x516c;&#x5171;&#x6c7d;&#x7535;&#x8f66;&#x552e;&#x7968;&#x5458;</source_value>
  303 + <target_value>3</target_value>
  304 + </field>
  305 + <field>
  306 + <source_value>&#x7ad9;&#x5458;</source_value>
  307 + <target_value>4</target_value>
  308 + </field>
  309 + <field>
  310 + <source_value>&#x7ba1;&#x7406;&#x5458;</source_value>
  311 + <target_value>5</target_value>
  312 + </field>
  313 + <field>
  314 + <source_value>&#x5b89;&#x68c0;&#x5458;</source_value>
  315 + <target_value>6</target_value>
  316 + </field>
  317 + <field>
  318 + <source_value>&#x673a;&#x52a1;</source_value>
  319 + <target_value>7</target_value>
  320 + </field>
  321 + <field>
  322 + <source_value>&#x5f15;&#x5bfc;&#x5458;</source_value>
  323 + <target_value>8</target_value>
  324 + </field>
  325 + <field>
  326 + <source_value>&#x4e58;&#x52a1;&#x5458;</source_value>
  327 + <target_value>9</target_value>
  328 + </field>
  329 + <field>
  330 + <source_value>&#x8f66;&#x961f;&#x957f;&#xff08;&#x7ebf;&#x957f;&#x3001;&#x4e3b;</source_value>
  331 + <target_value>10</target_value>
  332 + </field>
  333 + <field>
  334 + <source_value>&#x516c;&#x53f8;&#x7ba1;&#x7406;&#x4eba;&#x5458;</source_value>
  335 + <target_value>11</target_value>
  336 + </field>
  337 + <field>
  338 + <source_value>&#x8b66;&#x6d88;&#x4eba;&#x5458;</source_value>
  339 + <target_value>12</target_value>
  340 + </field>
  341 + <field>
  342 + <source_value>&#x7968;&#x52a1;&#x4eba;&#x5458;</source_value>
  343 + <target_value>13</target_value>
  344 + </field>
  345 + <field>
  346 + <source_value>&#x5176;&#x4ed6;&#x670d;&#x52a1;&#x4eba;&#x5458;</source_value>
  347 + <target_value>14</target_value>
  348 + </field>
  349 + </fields>
  350 + <cluster_schema/>
  351 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  352 + <xloc>543</xloc>
  353 + <yloc>152</yloc>
  354 + <draw>Y</draw>
  355 + </GUI>
  356 + </step>
  357 +
  358 + <step>
  359 + <name>&#x539f;&#x59cb;&#x7cfb;&#x7edf;&#x5bfc;&#x51fa;&#x7684;Excel&#x8f93;&#x5165;</name>
  360 + <type>ExcelInput</type>
  361 + <description/>
  362 + <distribute>Y</distribute>
  363 + <custom_distribution/>
  364 + <copies>1</copies>
  365 + <partitioning>
  366 + <method>none</method>
  367 + <schema_name/>
  368 + </partitioning>
  369 + <header>Y</header>
  370 + <noempty>Y</noempty>
  371 + <stoponempty>N</stoponempty>
  372 + <filefield/>
  373 + <sheetfield/>
  374 + <sheetrownumfield/>
  375 + <rownumfield/>
  376 + <sheetfield/>
  377 + <filefield/>
  378 + <limit>0</limit>
  379 + <encoding/>
  380 + <add_to_result_filenames>Y</add_to_result_filenames>
  381 + <accept_filenames>Y</accept_filenames>
  382 + <accept_field>filepath_</accept_field>
  383 + <accept_stepname>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</accept_stepname>
  384 + <file>
  385 + <name/>
  386 + <filemask/>
  387 + <exclude_filemask/>
  388 + <file_required>N</file_required>
  389 + <include_subfolders>N</include_subfolders>
  390 + </file>
  391 + <fields>
  392 + <field>
  393 + <name>&#x59d3;&#x540d;</name>
  394 + <type>String</type>
  395 + <length>-1</length>
  396 + <precision>-1</precision>
  397 + <trim_type>none</trim_type>
  398 + <repeat>N</repeat>
  399 + <format/>
  400 + <currency/>
  401 + <decimal/>
  402 + <group/>
  403 + </field>
  404 + <field>
  405 + <name>&#x5de5;&#x53f7;</name>
  406 + <type>String</type>
  407 + <length>-1</length>
  408 + <precision>-1</precision>
  409 + <trim_type>none</trim_type>
  410 + <repeat>N</repeat>
  411 + <format/>
  412 + <currency/>
  413 + <decimal/>
  414 + <group/>
  415 + </field>
  416 + <field>
  417 + <name>&#x6027;&#x522b;</name>
  418 + <type>String</type>
  419 + <length>-1</length>
  420 + <precision>-1</precision>
  421 + <trim_type>none</trim_type>
  422 + <repeat>N</repeat>
  423 + <format/>
  424 + <currency/>
  425 + <decimal/>
  426 + <group/>
  427 + </field>
  428 + <field>
  429 + <name>&#x6240;&#x5c5e;&#x516c;&#x53f8;</name>
  430 + <type>String</type>
  431 + <length>-1</length>
  432 + <precision>-1</precision>
  433 + <trim_type>none</trim_type>
  434 + <repeat>N</repeat>
  435 + <format/>
  436 + <currency/>
  437 + <decimal/>
  438 + <group/>
  439 + </field>
  440 + <field>
  441 + <name>&#x6240;&#x5c5e;&#x5206;&#x516c;&#x53f8;</name>
  442 + <type>String</type>
  443 + <length>-1</length>
  444 + <precision>-1</precision>
  445 + <trim_type>none</trim_type>
  446 + <repeat>N</repeat>
  447 + <format/>
  448 + <currency/>
  449 + <decimal/>
  450 + <group/>
  451 + </field>
  452 + <field>
  453 + <name>&#x4e00;&#x5361;&#x901a;&#x53f7;</name>
  454 + <type>String</type>
  455 + <length>-1</length>
  456 + <precision>-1</precision>
  457 + <trim_type>none</trim_type>
  458 + <repeat>N</repeat>
  459 + <format/>
  460 + <currency/>
  461 + <decimal/>
  462 + <group/>
  463 + </field>
  464 + <field>
  465 + <name>&#x8fd0;&#x8425;&#x670d;&#x52a1;&#x8bc1;&#x53f7;</name>
  466 + <type>String</type>
  467 + <length>-1</length>
  468 + <precision>-1</precision>
  469 + <trim_type>none</trim_type>
  470 + <repeat>N</repeat>
  471 + <format/>
  472 + <currency/>
  473 + <decimal/>
  474 + <group/>
  475 + </field>
  476 + <field>
  477 + <name>&#x5c97;&#x4f4d;</name>
  478 + <type>String</type>
  479 + <length>-1</length>
  480 + <precision>-1</precision>
  481 + <trim_type>none</trim_type>
  482 + <repeat>N</repeat>
  483 + <format/>
  484 + <currency/>
  485 + <decimal/>
  486 + <group/>
  487 + </field>
  488 + <field>
  489 + <name>&#x5907;&#x6ce8;</name>
  490 + <type>String</type>
  491 + <length>-1</length>
  492 + <precision>-1</precision>
  493 + <trim_type>none</trim_type>
  494 + <repeat>N</repeat>
  495 + <format/>
  496 + <currency/>
  497 + <decimal/>
  498 + <group/>
  499 + </field>
  500 + </fields>
  501 + <sheets>
  502 + <sheet>
  503 + <name>&#x5de5;&#x4f5c;&#x8868;1</name>
  504 + <startrow>0</startrow>
  505 + <startcol>0</startcol>
  506 + </sheet>
  507 + </sheets>
  508 + <strict_types>N</strict_types>
  509 + <error_ignored>N</error_ignored>
  510 + <error_line_skipped>N</error_line_skipped>
  511 + <bad_line_files_destination_directory/>
  512 + <bad_line_files_extension>warning</bad_line_files_extension>
  513 + <error_line_files_destination_directory/>
  514 + <error_line_files_extension>error</error_line_files_extension>
  515 + <line_number_files_destination_directory/>
  516 + <line_number_files_extension>line</line_number_files_extension>
  517 + <shortFileFieldName/>
  518 + <pathFieldName/>
  519 + <hiddenFieldName/>
  520 + <lastModificationTimeFieldName/>
  521 + <uriNameFieldName/>
  522 + <rootUriNameFieldName/>
  523 + <extensionFieldName/>
  524 + <sizeFieldName/>
  525 + <spreadsheet_type>JXL</spreadsheet_type>
  526 + <cluster_schema/>
  527 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  528 + <xloc>158</xloc>
  529 + <yloc>57</yloc>
  530 + <draw>Y</draw>
  531 + </GUI>
  532 + </step>
  533 +
  534 + <step>
  535 + <name>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</name>
  536 + <type>SelectValues</type>
  537 + <description/>
  538 + <distribute>Y</distribute>
  539 + <custom_distribution/>
  540 + <copies>1</copies>
  541 + <partitioning>
  542 + <method>none</method>
  543 + <schema_name/>
  544 + </partitioning>
  545 + <fields> <field> <name>&#x59d3;&#x540d;</name>
  546 + <rename>personnelName</rename>
  547 + <length>-2</length>
  548 + <precision>-2</precision>
  549 + </field> <field> <name>&#x5de5;&#x53f7;</name>
  550 + <rename>jobCode</rename>
  551 + <length>-2</length>
  552 + <precision>-2</precision>
  553 + </field> <field> <name>&#x6027;&#x522b;</name>
  554 + <rename>personnelType</rename>
  555 + <length>-2</length>
  556 + <precision>-2</precision>
  557 + </field> <field> <name>&#x6240;&#x5c5e;&#x516c;&#x53f8;</name>
  558 + <rename>company</rename>
  559 + <length>-2</length>
  560 + <precision>-2</precision>
  561 + </field> <field> <name>&#x6240;&#x5c5e;&#x5206;&#x516c;&#x53f8;</name>
  562 + <rename>brancheCompany</rename>
  563 + <length>-2</length>
  564 + <precision>-2</precision>
  565 + </field> <field> <name>&#x4e00;&#x5361;&#x901a;&#x53f7;</name>
  566 + <rename>icCardCode</rename>
  567 + <length>-2</length>
  568 + <precision>-2</precision>
  569 + </field> <field> <name>&#x8fd0;&#x8425;&#x670d;&#x52a1;&#x8bc1;&#x53f7;</name>
  570 + <rename>papersCode</rename>
  571 + <length>-2</length>
  572 + <precision>-2</precision>
  573 + </field> <field> <name>&#x5c97;&#x4f4d;</name>
  574 + <rename>posts</rename>
  575 + <length>-2</length>
  576 + <precision>-2</precision>
  577 + </field> <field> <name>&#x5907;&#x6ce8;</name>
  578 + <rename>descriptions</rename>
  579 + <length>-2</length>
  580 + <precision>-2</precision>
  581 + </field> <select_unspecified>N</select_unspecified>
  582 + </fields> <cluster_schema/>
  583 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  584 + <xloc>286</xloc>
  585 + <yloc>58</yloc>
  586 + <draw>Y</draw>
  587 + </GUI>
  588 + </step>
  589 +
  590 + <step>
  591 + <name>&#x6027;&#x522b;&#x4ee3;&#x7801;</name>
  592 + <type>ValueMapper</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 + <field_to_use>personnelType</field_to_use>
  602 + <target_field>personnelCode</target_field>
  603 + <non_match_default/>
  604 + <fields>
  605 + <field>
  606 + <source_value>&#x7537;&#x6027;</source_value>
  607 + <target_value>1</target_value>
  608 + </field>
  609 + <field>
  610 + <source_value>&#x5973;&#x6027;</source_value>
  611 + <target_value>2</target_value>
  612 + </field>
  613 + </fields>
  614 + <cluster_schema/>
  615 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  616 + <xloc>413</xloc>
  617 + <yloc>58</yloc>
  618 + <draw>Y</draw>
  619 + </GUI>
  620 + </step>
  621 +
  622 + <step>
  623 + <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_personnel</name>
  624 + <type>InsertUpdate</type>
  625 + <description/>
  626 + <distribute>Y</distribute>
  627 + <custom_distribution/>
  628 + <copies>1</copies>
  629 + <partitioning>
  630 + <method>none</method>
  631 + <schema_name/>
  632 + </partitioning>
  633 + <connection>bus_control_variable</connection>
  634 + <commit>5000</commit>
  635 + <update_bypassed>N</update_bypassed>
  636 + <lookup>
  637 + <schema/>
  638 + <table>bsth_c_personnel</table>
  639 + <key>
  640 + <name>jobCode</name>
  641 + <field>job_code</field>
  642 + <condition>&#x3d;</condition>
  643 + <name2/>
  644 + </key>
  645 + <key>
  646 + <name>companyCode</name>
  647 + <field>company_code</field>
  648 + <condition>&#x3d;</condition>
  649 + <name2/>
  650 + </key>
  651 + <value>
  652 + <name>personnel_name</name>
  653 + <rename>personnelName</rename>
  654 + <update>Y</update>
  655 + </value>
  656 + <value>
  657 + <name>job_code</name>
  658 + <rename>jobCode</rename>
  659 + <update>Y</update>
  660 + </value>
  661 + <value>
  662 + <name>personnel_type</name>
  663 + <rename>personnelCode</rename>
  664 + <update>Y</update>
  665 + </value>
  666 + <value>
  667 + <name>company</name>
  668 + <rename>company</rename>
  669 + <update>Y</update>
  670 + </value>
  671 + <value>
  672 + <name>branche_company</name>
  673 + <rename>brancheCompany</rename>
  674 + <update>Y</update>
  675 + </value>
  676 + <value>
  677 + <name>ic_card_code</name>
  678 + <rename>icCardCode</rename>
  679 + <update>Y</update>
  680 + </value>
  681 + <value>
  682 + <name>papers_code</name>
  683 + <rename>papersCode</rename>
  684 + <update>Y</update>
  685 + </value>
  686 + <value>
  687 + <name>posts</name>
  688 + <rename>posts</rename>
  689 + <update>Y</update>
  690 + </value>
  691 + <value>
  692 + <name>descriptions</name>
  693 + <rename>descriptions</rename>
  694 + <update>Y</update>
  695 + </value>
  696 + <value>
  697 + <name>company_code</name>
  698 + <rename>companyCode</rename>
  699 + <update>Y</update>
  700 + </value>
  701 + </lookup>
  702 + <cluster_schema/>
  703 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  704 + <xloc>713</xloc>
  705 + <yloc>56</yloc>
  706 + <draw>Y</draw>
  707 + </GUI>
  708 + </step>
  709 +
  710 + <step>
  711 + <name>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</name>
  712 + <type>GetVariable</type>
  713 + <description/>
  714 + <distribute>Y</distribute>
  715 + <custom_distribution/>
  716 + <copies>1</copies>
  717 + <partitioning>
  718 + <method>none</method>
  719 + <schema_name/>
  720 + </partitioning>
  721 + <fields>
  722 + <field>
  723 + <name>filepath_</name>
  724 + <variable>&#x24;&#x7b;filepath&#x7d;</variable>
  725 + <type>String</type>
  726 + <format/>
  727 + <currency/>
  728 + <decimal/>
  729 + <group/>
  730 + <length>-1</length>
  731 + <precision>-1</precision>
  732 + <trim_type>none</trim_type>
  733 + </field>
  734 + <field>
  735 + <name>erroroutputdir_</name>
  736 + <variable>&#x24;&#x7b;erroroutputdir&#x7d;</variable>
  737 + <type>String</type>
  738 + <format/>
  739 + <currency/>
  740 + <decimal/>
  741 + <group/>
  742 + <length>-1</length>
  743 + <precision>-1</precision>
  744 + <trim_type>none</trim_type>
  745 + </field>
  746 + </fields>
  747 + <cluster_schema/>
  748 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  749 + <xloc>90</xloc>
  750 + <yloc>148</yloc>
  751 + <draw>Y</draw>
  752 + </GUI>
  753 + </step>
  754 +
  755 + <step>
  756 + <name>&#x9519;&#x8bef;&#x8f93;&#x51fa;</name>
  757 + <type>ExcelOutput</type>
  758 + <description/>
  759 + <distribute>Y</distribute>
  760 + <custom_distribution/>
  761 + <copies>1</copies>
  762 + <partitioning>
  763 + <method>none</method>
  764 + <schema_name/>
  765 + </partitioning>
  766 + <header>Y</header>
  767 + <footer>N</footer>
  768 + <encoding>UTF-8</encoding>
  769 + <append>N</append>
  770 + <add_to_result_filenames>Y</add_to_result_filenames>
  771 + <file>
  772 + <name>&#x24;&#x7b;erroroutputdir&#x7d;&#x2f;&#x4eba;&#x5458;&#x57fa;&#x7840;&#x4fe1;&#x606f;_&#x9519;&#x8bef;</name>
  773 + <extention>xls</extention>
  774 + <do_not_open_newfile_init>N</do_not_open_newfile_init>
  775 + <create_parent_folder>N</create_parent_folder>
  776 + <split>N</split>
  777 + <add_date>N</add_date>
  778 + <add_time>N</add_time>
  779 + <SpecifyFormat>N</SpecifyFormat>
  780 + <date_time_format/>
  781 + <sheetname>Sheet1</sheetname>
  782 + <autosizecolums>N</autosizecolums>
  783 + <nullisblank>N</nullisblank>
  784 + <protect_sheet>N</protect_sheet>
  785 + <password>Encrypted </password>
  786 + <splitevery>0</splitevery>
  787 + <usetempfiles>N</usetempfiles>
  788 + <tempdirectory/>
  789 + </file>
  790 + <template>
  791 + <enabled>N</enabled>
  792 + <append>N</append>
  793 + <filename>template.xls</filename>
  794 + </template>
  795 + <fields>
  796 + <field>
  797 + <name>personnelName</name>
  798 + <type>String</type>
  799 + <format/>
  800 + </field>
  801 + <field>
  802 + <name>jobCode</name>
  803 + <type>String</type>
  804 + <format/>
  805 + </field>
  806 + <field>
  807 + <name>personnelType</name>
  808 + <type>String</type>
  809 + <format/>
  810 + </field>
  811 + <field>
  812 + <name>company</name>
  813 + <type>String</type>
  814 + <format/>
  815 + </field>
  816 + <field>
  817 + <name>brancheCompany</name>
  818 + <type>String</type>
  819 + <format/>
  820 + </field>
  821 + <field>
  822 + <name>icCardCode</name>
  823 + <type>String</type>
  824 + <format/>
  825 + </field>
  826 + <field>
  827 + <name>papersCode</name>
  828 + <type>String</type>
  829 + <format/>
  830 + </field>
  831 + <field>
  832 + <name>posts</name>
  833 + <type>String</type>
  834 + <format/>
  835 + </field>
  836 + <field>
  837 + <name>descriptions</name>
  838 + <type>String</type>
  839 + <format/>
  840 + </field>
  841 + <field>
  842 + <name>companyCode</name>
  843 + <type>String</type>
  844 + <format/>
  845 + </field>
  846 + <field>
  847 + <name>error_count</name>
  848 + <type>Integer</type>
  849 + <format/>
  850 + </field>
  851 + <field>
  852 + <name>error_desc</name>
  853 + <type>String</type>
  854 + <format/>
  855 + </field>
  856 + <field>
  857 + <name>error_column1</name>
  858 + <type>String</type>
  859 + <format/>
  860 + </field>
  861 + <field>
  862 + <name>error_column2</name>
  863 + <type>String</type>
  864 + <format/>
  865 + </field>
  866 + </fields>
  867 + <custom>
  868 + <header_font_name>arial</header_font_name>
  869 + <header_font_size>10</header_font_size>
  870 + <header_font_bold>N</header_font_bold>
  871 + <header_font_italic>N</header_font_italic>
  872 + <header_font_underline>no</header_font_underline>
  873 + <header_font_orientation>horizontal</header_font_orientation>
  874 + <header_font_color>black</header_font_color>
  875 + <header_background_color>none</header_background_color>
  876 + <header_row_height>255</header_row_height>
  877 + <header_alignment>left</header_alignment>
  878 + <header_image/>
  879 + <row_font_name>arial</row_font_name>
  880 + <row_font_size>10</row_font_size>
  881 + <row_font_color>black</row_font_color>
  882 + <row_background_color>none</row_background_color>
  883 + </custom>
  884 + <cluster_schema/>
  885 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  886 + <xloc>715</xloc>
  887 + <yloc>223</yloc>
  888 + <draw>Y</draw>
  889 + </GUI>
  890 + </step>
  891 +
  892 + <step>
  893 + <name>&#x516c;&#x4ea4;&#x4f01;&#x4e1a;&#x4ee3;&#x7801;&#x67e5;&#x8be2;</name>
  894 + <type>DBLookup</type>
  895 + <description/>
  896 + <distribute>Y</distribute>
  897 + <custom_distribution/>
  898 + <copies>1</copies>
  899 + <partitioning>
  900 + <method>none</method>
  901 + <schema_name/>
  902 + </partitioning>
  903 + <connection>bus_control_variable</connection>
  904 + <cache>N</cache>
  905 + <cache_load_all>N</cache_load_all>
  906 + <cache_size>0</cache_size>
  907 + <lookup>
  908 + <schema/>
  909 + <table>bsth_c_business</table>
  910 + <orderby/>
  911 + <fail_on_multiple>N</fail_on_multiple>
  912 + <eat_row_on_failure>N</eat_row_on_failure>
  913 + <key>
  914 + <name>company</name>
  915 + <field>business_name</field>
  916 + <condition>&#x3d;</condition>
  917 + <name2/>
  918 + </key>
  919 + <value>
  920 + <name>business_code</name>
  921 + <rename>companyCode</rename>
  922 + <default/>
  923 + <type>String</type>
  924 + </value>
  925 + </lookup>
  926 + <cluster_schema/>
  927 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  928 + <xloc>544</xloc>
  929 + <yloc>59</yloc>
  930 + <draw>Y</draw>
  931 + </GUI>
  932 + </step>
  933 +
  934 + <step_error_handling>
  935 + <error>
  936 + <source_step>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_personnel</source_step>
  937 + <target_step>&#x9519;&#x8bef;&#x8f93;&#x51fa;</target_step>
  938 + <is_enabled>Y</is_enabled>
  939 + <nr_valuename>error_count</nr_valuename>
  940 + <descriptions_valuename>error_desc</descriptions_valuename>
  941 + <fields_valuename>error_column1</fields_valuename>
  942 + <codes_valuename>error_column2</codes_valuename>
  943 + <max_errors/>
  944 + <max_pct_errors/>
  945 + <min_pct_rows/>
  946 + </error>
  947 + </step_error_handling>
  948 + <slave-step-copy-partition-distribution>
  949 +</slave-step-copy-partition-distribution>
  950 + <slave_transformation>N</slave_transformation>
  951 +
  952 +</transformation>
... ...