Commit 9f3136991f2c380d81217f8cb2c23f42e6b970e6

Authored by youxiw2000
2 parents 18a930fd 4b0b9936

Merge branch 'pudong_jdk8' of 192.168.168.201:panzhaov5/bsth_control into pudong_jdk8

Showing 26 changed files with 2334 additions and 2505 deletions

Too many changes to show.

To preserve performance only 26 of 58 files are displayed.

@@ -388,16 +388,6 @@ @@ -388,16 +388,6 @@
388 <version>1.7.7</version> 388 <version>1.7.7</version>
389 </dependency> 389 </dependency>
390 390
391 - <!-- web服务依赖 -->  
392 - <dependency>  
393 - <groupId>org.springframework.boot</groupId>  
394 - <artifactId>spring-boot-starter-web-services</artifactId>  
395 - </dependency>  
396 - <dependency>  
397 - <groupId>wsdl4j</groupId>  
398 - <artifactId>wsdl4j</artifactId>  
399 - </dependency>  
400 -  
401 <dependency> 391 <dependency>
402 <groupId>org.projectlombok</groupId> 392 <groupId>org.projectlombok</groupId>
403 <artifactId>lombok</artifactId> 393 <artifactId>lombok</artifactId>
@@ -446,26 +436,6 @@ @@ -446,26 +436,6 @@
446 <groupId>org.springframework.boot</groupId> 436 <groupId>org.springframework.boot</groupId>
447 <artifactId>spring-boot-maven-plugin</artifactId> 437 <artifactId>spring-boot-maven-plugin</artifactId>
448 </plugin> 438 </plugin>
449 - <plugin>  
450 - <groupId>org.codehaus.mojo</groupId>  
451 - <artifactId>jaxb2-maven-plugin</artifactId>  
452 - <version>1.6</version>  
453 - <executions>  
454 - <execution>  
455 - <id>xjc</id>  
456 - <phase>none</phase>  
457 - <goals>  
458 - <goal>xjc</goal>  
459 - </goals>  
460 - </execution>  
461 - </executions>  
462 - <configuration>  
463 - <schemaDirectory>${project.basedir}/src/main/resources/xsd/</schemaDirectory>  
464 - <outputDirectory>${project.basedir}/src/main/java</outputDirectory>  
465 - <clearOutputDir>false</clearOutputDir>  
466 - <encoding>utf-8</encoding>  
467 - </configuration>  
468 - </plugin>  
469 </plugins> 439 </plugins>
470 <resources> 440 <resources>
471 <resource> 441 <resource>
src/main/java/com/bsth/common/Constants.java
@@ -23,8 +23,6 @@ public class Constants { @@ -23,8 +23,6 @@ public class Constants {
23 23
24 // springboot manage health的检测url 24 // springboot manage health的检测url
25 public static final String ACTUATOR_MANAGEMENT_HEALTH = "/manage/health"; 25 public static final String ACTUATOR_MANAGEMENT_HEALTH = "/manage/health";
26 - // web服务url  
27 - public static final String WEBSERVICE_URL = "/ws/**";  
28 // 车辆数据同步url 26 // 车辆数据同步url
29 public static final String VEHICLE_DATA_SYNC_URL = "/dataSync/vehicle/api/**"; 27 public static final String VEHICLE_DATA_SYNC_URL = "/dataSync/vehicle/api/**";
30 28
src/main/java/com/bsth/controller/schedule/core/legacy/EmployeeConfigInfoController.java
@@ -14,7 +14,11 @@ import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean @@ -14,7 +14,11 @@ import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean
14 import org.springframework.web.bind.annotation.*; 14 import org.springframework.web.bind.annotation.*;
15 15
16 import javax.servlet.http.HttpServletRequest; 16 import javax.servlet.http.HttpServletRequest;
  17 +import javax.servlet.http.HttpServletResponse;
17 import javax.servlet.http.HttpSession; 18 import javax.servlet.http.HttpSession;
  19 +import java.io.OutputStream;
  20 +import java.io.PrintWriter;
  21 +import java.net.URLEncoder;
18 import java.util.HashMap; 22 import java.util.HashMap;
19 import java.util.List; 23 import java.util.List;
20 import java.util.Map; 24 import java.util.Map;
@@ -71,7 +75,29 @@ public class EmployeeConfigInfoController extends BController&lt;EmployeeConfigInfo @@ -71,7 +75,29 @@ public class EmployeeConfigInfoController extends BController&lt;EmployeeConfigInfo
71 } 75 }
72 76
73 return rtn; 77 return rtn;
  78 + }
  79 + @GetMapping(value = "/validate_get_destroy_info/download")
  80 + public void exportValidateGetDestroyInfo(
  81 + HttpServletRequest request,
  82 + HttpServletResponse response) throws Exception {
  83 + // 流输出导出文件
  84 + response.setHeader("content-type", "application/octet-stream");
  85 + response.setHeader("Content-Disposition", "attachment; filename=" + URLEncoder.encode("人员配置停用信息.txt", "UTF-8"));
  86 + response.setContentType("application/octet-stream");
  87 +
  88 + try (
  89 + OutputStream os = response.getOutputStream();
  90 + PrintWriter printWriter = new PrintWriter(os);
  91 + ) {
  92 + HttpSession session = request.getSession();
  93 + List<CompanyAuthority> cmyAuths = (List<CompanyAuthority>) session.getAttribute(Constants.COMPANY_AUTHORITYS);
  94 + List<String> infos = this.employeeConfigInfoService.validate_get_destroy_info(cmyAuths);
  95 + for (String info : infos) {
  96 + printWriter.println(info);
  97 + }
  98 + printWriter.flush();
74 99
  100 + }
75 } 101 }
76 102
77 @RequestMapping(value = "/validate_jsy_destroy", method = RequestMethod.GET) 103 @RequestMapping(value = "/validate_jsy_destroy", method = RequestMethod.GET)
src/main/java/com/bsth/controller/schedule/datasync/VehicleDataSyncController.java
@@ -6,11 +6,13 @@ import com.bsth.controller.schedule.datasync.request.VehicleDataSyncTaskRequest; @@ -6,11 +6,13 @@ import com.bsth.controller.schedule.datasync.request.VehicleDataSyncTaskRequest;
6 import com.bsth.entity.schedule.datasync.VehicleDataSyncTask; 6 import com.bsth.entity.schedule.datasync.VehicleDataSyncTask;
7 import com.bsth.entity.schedule.datasync.VehicleDataSyncTaskTypeEnum; 7 import com.bsth.entity.schedule.datasync.VehicleDataSyncTaskTypeEnum;
8 import com.bsth.service.schedule.datasync.VehicleDataSyncTaskService; 8 import com.bsth.service.schedule.datasync.VehicleDataSyncTaskService;
  9 +import com.bsth.service.schedule.utils.MyStringUtils;
9 import org.springframework.beans.factory.annotation.Autowired; 10 import org.springframework.beans.factory.annotation.Autowired;
10 import org.springframework.web.bind.annotation.*; 11 import org.springframework.web.bind.annotation.*;
11 12
12 import javax.servlet.http.HttpServletResponse; 13 import javax.servlet.http.HttpServletResponse;
13 import java.io.*; 14 import java.io.*;
  15 +import java.net.URLEncoder;
14 import java.util.Date; 16 import java.util.Date;
15 17
16 @RestController 18 @RestController
@@ -116,7 +118,12 @@ public class VehicleDataSyncController extends BController&lt;VehicleDataSyncTask, @@ -116,7 +118,12 @@ public class VehicleDataSyncController extends BController&lt;VehicleDataSyncTask,
116 private void responseStreamFile(HttpServletResponse response, File file) throws IOException { 118 private void responseStreamFile(HttpServletResponse response, File file) throws IOException {
117 // 流输出导出文件 119 // 流输出导出文件
118 response.setHeader("content-type", "application/octet-stream"); 120 response.setHeader("content-type", "application/octet-stream");
119 - response.setHeader("Content-Disposition", "attachment; filename=" + file.getName()); 121 + String fileName = file.getName();
  122 + if (MyStringUtils.isContainChinese(fileName)) {
  123 + response.setHeader("Content-Disposition", "attachment; filename*=" + URLEncoder.encode(fileName, "UTF-8"));
  124 + } else {
  125 + response.setHeader("Content-Disposition", "attachment; filename=" + fileName);
  126 + }
120 response.setContentType("application/octet-stream"); 127 response.setContentType("application/octet-stream");
121 128
122 try ( 129 try (
src/main/java/com/bsth/entity/schedule/batch/VehicleDataSync.java deleted 100644 → 0
1 -package com.bsth.entity.schedule.batch;  
2 -  
3 -import javax.persistence.*;  
4 -import java.io.Serializable;  
5 -import java.util.Date;  
6 -  
7 -/**  
8 - * 车辆数据同步数据。  
9 - */  
10 -@Entity  
11 -@Table(name = "bsth_c_cars_sync")  
12 -public class VehicleDataSync implements Serializable {  
13 - /** 主健Id */  
14 - @Id  
15 - @GeneratedValue(strategy = GenerationType.IDENTITY)  
16 - private Long id;  
17 -  
18 - //--------------- 标识车辆的数据(自编号和车牌号) ---------------//  
19 - /** 自编号/内部编号 */  
20 - private String idenZbh;  
21 - /** 车牌号 */  
22 - private String idenCph;  
23 -  
24 - //--------------- 更新的数据 ------------//  
25 - /** 更新 公司代码 */  
26 - private String updateGsdm;  
27 - /** 更新 公司名称 */  
28 - private String updateGsmc;  
29 - /** 更新 分公司代码 */  
30 - private String updateFgsdm;  
31 - /** 更新 分公司名称 */  
32 - private String updateFgsmc;  
33 - /** 是否报废 */  
34 - private Boolean updateSfbf;  
35 - /** 报废日期 */  
36 - private Date updateBfd;  
37 -  
38 - // TODO:后续再添加  
39 -  
40 - //--------------- 时间,状态数据 ------------//  
41 - /** 创建时间 */  
42 - @Column(nullable = false)  
43 - private Date createDate;  
44 - /** 更新时间 */  
45 - @Column(nullable = false)  
46 - private Date updateDate;  
47 - /** 同步状态 */  
48 - @Column(nullable = false)  
49 - @Convert(converter = VehicleDataSyncStatusEnumConverter.class)  
50 - private VehicleDataSyncStatusEnum status;  
51 -  
52 - public Long getId() {  
53 - return id;  
54 - }  
55 -  
56 - public void setId(Long id) {  
57 - this.id = id;  
58 - }  
59 -  
60 - public String getIdenZbh() {  
61 - return idenZbh;  
62 - }  
63 -  
64 - public void setIdenZbh(String idenZbh) {  
65 - this.idenZbh = idenZbh;  
66 - }  
67 -  
68 - public String getIdenCph() {  
69 - return idenCph;  
70 - }  
71 -  
72 - public void setIdenCph(String idenCph) {  
73 - this.idenCph = idenCph;  
74 - }  
75 -  
76 - public String getUpdateGsdm() {  
77 - return updateGsdm;  
78 - }  
79 -  
80 - public void setUpdateGsdm(String updateGsdm) {  
81 - this.updateGsdm = updateGsdm;  
82 - }  
83 -  
84 - public String getUpdateGsmc() {  
85 - return updateGsmc;  
86 - }  
87 -  
88 - public void setUpdateGsmc(String updateGsmc) {  
89 - this.updateGsmc = updateGsmc;  
90 - }  
91 -  
92 - public Date getCreateDate() {  
93 - return createDate;  
94 - }  
95 -  
96 - public void setCreateDate(Date createDate) {  
97 - this.createDate = createDate;  
98 - }  
99 -  
100 - public Date getUpdateDate() {  
101 - return updateDate;  
102 - }  
103 -  
104 - public void setUpdateDate(Date updateDate) {  
105 - this.updateDate = updateDate;  
106 - }  
107 -  
108 - public VehicleDataSyncStatusEnum getStatus() {  
109 - return status;  
110 - }  
111 -  
112 - public void setStatus(VehicleDataSyncStatusEnum status) {  
113 - this.status = status;  
114 - }  
115 -  
116 - public Boolean getUpdateSfbf() {  
117 - return updateSfbf;  
118 - }  
119 -  
120 - public void setUpdateSfbf(Boolean updateSfbf) {  
121 - this.updateSfbf = updateSfbf;  
122 - }  
123 -  
124 - public Date getUpdateBfd() {  
125 - return updateBfd;  
126 - }  
127 -  
128 - public void setUpdateBfd(Date updateBfd) {  
129 - this.updateBfd = updateBfd;  
130 - }  
131 -  
132 - public String getUpdateFgsdm() {  
133 - return updateFgsdm;  
134 - }  
135 -  
136 - public void setUpdateFgsdm(String updateFgsdm) {  
137 - this.updateFgsdm = updateFgsdm;  
138 - }  
139 -  
140 - public String getUpdateFgsmc() {  
141 - return updateFgsmc;  
142 - }  
143 -  
144 - public void setUpdateFgsmc(String updateFgsmc) {  
145 - this.updateFgsmc = updateFgsmc;  
146 - }  
147 -}  
148 \ No newline at end of file 0 \ No newline at end of file
src/main/java/com/bsth/entity/schedule/batch/VehicleDataSyncStat.java deleted 100644 → 0
1 -package com.bsth.entity.schedule.batch;  
2 -  
3 -import javax.persistence.*;  
4 -import java.io.Serializable;  
5 -import java.util.Date;  
6 -  
7 -/**  
8 - * 车辆数据同步数据统计。  
9 - */  
10 -@Entity  
11 -@Table(name = "bsth_c_cars_sync_stat")  
12 -public class VehicleDataSyncStat implements Serializable {  
13 - /** 主健Id */  
14 - @Id  
15 - @GeneratedValue(strategy = GenerationType.IDENTITY)  
16 - private Long id;  
17 -  
18 - /** job实例Id */  
19 - @Column(nullable = false)  
20 - private Long jobId;  
21 - /** job名字 */  
22 - @Column(nullable = false)  
23 - private String jobName;  
24 - /** job执行Id */  
25 - @Column(nullable = false, unique = true)  
26 - private Long jobExecutionId;  
27 -  
28 - /** 待同步的车辆数据ids(同步状态=SYNCING) */  
29 - @Column(length = 2000)  
30 - private String syncDataPrepareIds;  
31 - /** 待同步的车辆数据自编号s(同步状态=SYNCING) */  
32 - @Column(length = 2000)  
33 - private String syncDataPrepareZbhs;  
34 -  
35 - /** 待同步的车辆count */  
36 - private Integer syncDataPrepareCount;  
37 - /** 同步成功的车辆count */  
38 - private Integer syncDataSuccessCount;  
39 -  
40 - /** 退出step执行Id */  
41 - private Long exitStepExecutionId;  
42 - /** 退出异常stack信息 */  
43 - @Column(length = 2500)  
44 - private String exitStackTrace;  
45 -  
46 - /** 同步状态 */  
47 - @Column(nullable = false)  
48 - @Convert(converter = VehicleDataSyncStatusEnumConverter.class)  
49 - private VehicleDataSyncStatusEnum status;  
50 -  
51 - /** job执行开始时间 */  
52 - @Column(nullable = false)  
53 - private Date startDate;  
54 - /** job执行结束时间 */  
55 - private Date endDate;  
56 -  
57 - public Long getId() {  
58 - return id;  
59 - }  
60 -  
61 - public void setId(Long id) {  
62 - this.id = id;  
63 - }  
64 -  
65 - public Long getJobId() {  
66 - return jobId;  
67 - }  
68 -  
69 - public void setJobId(Long jobId) {  
70 - this.jobId = jobId;  
71 - }  
72 -  
73 - public String getJobName() {  
74 - return jobName;  
75 - }  
76 -  
77 - public void setJobName(String jobName) {  
78 - this.jobName = jobName;  
79 - }  
80 -  
81 - public Long getJobExecutionId() {  
82 - return jobExecutionId;  
83 - }  
84 -  
85 - public void setJobExecutionId(Long jobExecutionId) {  
86 - this.jobExecutionId = jobExecutionId;  
87 - }  
88 -  
89 - public String getSyncDataPrepareIds() {  
90 - return syncDataPrepareIds;  
91 - }  
92 -  
93 - public void setSyncDataPrepareIds(String syncDataPrepareIds) {  
94 - this.syncDataPrepareIds = syncDataPrepareIds;  
95 - }  
96 -  
97 - public String getSyncDataPrepareZbhs() {  
98 - return syncDataPrepareZbhs;  
99 - }  
100 -  
101 - public void setSyncDataPrepareZbhs(String syncDataPrepareZbhs) {  
102 - this.syncDataPrepareZbhs = syncDataPrepareZbhs;  
103 - }  
104 -  
105 - public Integer getSyncDataPrepareCount() {  
106 - return syncDataPrepareCount;  
107 - }  
108 -  
109 - public void setSyncDataPrepareCount(Integer syncDataPrepareCount) {  
110 - this.syncDataPrepareCount = syncDataPrepareCount;  
111 - }  
112 -  
113 - public Integer getSyncDataSuccessCount() {  
114 - return syncDataSuccessCount;  
115 - }  
116 -  
117 - public void setSyncDataSuccessCount(Integer syncDataSuccessCount) {  
118 - this.syncDataSuccessCount = syncDataSuccessCount;  
119 - }  
120 -  
121 - public Long getExitStepExecutionId() {  
122 - return exitStepExecutionId;  
123 - }  
124 -  
125 - public void setExitStepExecutionId(Long exitStepExecutionId) {  
126 - this.exitStepExecutionId = exitStepExecutionId;  
127 - }  
128 -  
129 - public String getExitStackTrace() {  
130 - return exitStackTrace;  
131 - }  
132 -  
133 - public void setExitStackTrace(String exitStackTrace) {  
134 - this.exitStackTrace = exitStackTrace;  
135 - }  
136 -  
137 - public VehicleDataSyncStatusEnum getStatus() {  
138 - return status;  
139 - }  
140 -  
141 - public void setStatus(VehicleDataSyncStatusEnum status) {  
142 - this.status = status;  
143 - }  
144 -  
145 - public Date getStartDate() {  
146 - return startDate;  
147 - }  
148 -  
149 - public void setStartDate(Date startDate) {  
150 - this.startDate = startDate;  
151 - }  
152 -  
153 - public Date getEndDate() {  
154 - return endDate;  
155 - }  
156 -  
157 - public void setEndDate(Date endDate) {  
158 - this.endDate = endDate;  
159 - }  
160 -}  
src/main/java/com/bsth/entity/schedule/batch/VehicleDataSyncStatusEnum.java deleted 100644 → 0
1 -package com.bsth.entity.schedule.batch;  
2 -  
3 -import com.fasterxml.jackson.annotation.JsonCreator;  
4 -import com.fasterxml.jackson.annotation.JsonValue;  
5 -import org.springframework.util.StringUtils;  
6 -  
7 -import java.util.HashMap;  
8 -import java.util.Map;  
9 -  
10 -/**  
11 - * 车辆数据同步状态enum。  
12 - */  
13 -public enum VehicleDataSyncStatusEnum {  
14 - PREPARE("准备"),  
15 - SYNCING("同步中"),  
16 - SUCCESS("成功"),  
17 - FAILURE("失败");  
18 -  
19 - public static Map<String, VehicleDataSyncStatusEnum> enumMap =  
20 - new HashMap<String, VehicleDataSyncStatusEnum>() {{  
21 - put("准备", PREPARE);  
22 - put("同步中", SYNCING);  
23 - put("成功", SUCCESS);  
24 - put("失败", FAILURE);  
25 - }};  
26 -  
27 - /** 字典描述(对应数据库的字典) */  
28 - private String dicDesc;  
29 -  
30 - @JsonCreator  
31 - VehicleDataSyncStatusEnum(String dicDesc) {  
32 - this.dicDesc = dicDesc;  
33 - }  
34 -  
35 - public static VehicleDataSyncStatusEnum fromDicDesc(String dicDesc) {  
36 - if (StringUtils.isEmpty(dicDesc)) {  
37 - throw new RuntimeException("车辆数据同步状态描述不能为空!");  
38 - } else if (enumMap.get(dicDesc) == null) {  
39 - throw new RuntimeException("车辆数据同步状态未定义:" + dicDesc);  
40 - }  
41 - return enumMap.get(dicDesc);  
42 - }  
43 -  
44 - @JsonValue  
45 - public String getDicDesc() {  
46 - return dicDesc;  
47 - }  
48 -  
49 - public void setDicDesc(String dicDesc) {  
50 - this.dicDesc = dicDesc;  
51 - }  
52 -  
53 - @Override  
54 - public String toString() {  
55 - return dicDesc;  
56 - }  
57 -}  
src/main/java/com/bsth/entity/schedule/batch/VehicleDataSyncStatusEnumConverter.java deleted 100644 → 0
1 -package com.bsth.entity.schedule.batch;  
2 -  
3 -import javax.persistence.AttributeConverter;  
4 -import javax.persistence.Convert;  
5 -  
6 -@Convert  
7 -public class VehicleDataSyncStatusEnumConverter implements AttributeConverter<VehicleDataSyncStatusEnum, String> {  
8 - @Override  
9 - public String convertToDatabaseColumn(VehicleDataSyncStatusEnum vehicleDataSyncStatusEnum) {  
10 - return vehicleDataSyncStatusEnum.getDicDesc();  
11 - }  
12 -  
13 - @Override  
14 - public VehicleDataSyncStatusEnum convertToEntityAttribute(String s) {  
15 - return VehicleDataSyncStatusEnum.fromDicDesc(s);  
16 - }  
17 -}  
src/main/java/com/bsth/filter/BaseFilter.java
@@ -18,7 +18,7 @@ public abstract class BaseFilter implements Filter { @@ -18,7 +18,7 @@ public abstract class BaseFilter implements Filter {
18 */ 18 */
19 private String[] whiteListURLs = { Constants.LOGIN_PAGE,Constants.CAPTCHA, Constants.SERVICE_INTERFACE, 19 private String[] whiteListURLs = { Constants.LOGIN_PAGE,Constants.CAPTCHA, Constants.SERVICE_INTERFACE,
20 Constants.ASSETS_URL, Constants.FAVICON_URL, Constants.METRONIC_URL, Constants.LOGIN, Constants.LOGIN_FAILURE, Constants.UPSTREAM_URL, Constants.XD_CHILD_PAGES, Constants.XD_REAL_GPS, Constants.UP_RFID_URL, Constants.STATION_AND_SECTION_COUNT, Constants.ACTUATOR_MANAGEMENT_HEALTH, 20 Constants.ASSETS_URL, Constants.FAVICON_URL, Constants.METRONIC_URL, Constants.LOGIN, Constants.LOGIN_FAILURE, Constants.UPSTREAM_URL, Constants.XD_CHILD_PAGES, Constants.XD_REAL_GPS, Constants.UP_RFID_URL, Constants.STATION_AND_SECTION_COUNT, Constants.ACTUATOR_MANAGEMENT_HEALTH,
21 - Constants.WEBSERVICE_URL, Constants.VEHICLE_DATA_SYNC_URL }; 21 + Constants.VEHICLE_DATA_SYNC_URL };
22 22
23 @Override 23 @Override
24 public void destroy() { 24 public void destroy() {
src/main/java/com/bsth/repository/schedule/batch/VehicleDataSyncRepo.java deleted 100644 → 0
1 -package com.bsth.repository.schedule.batch;  
2 -  
3 -import com.bsth.entity.schedule.batch.VehicleDataSync;  
4 -import com.bsth.repository.BaseRepository;  
5 -import org.springframework.stereotype.Repository;  
6 -  
7 -@Repository  
8 -public interface VehicleDataSyncRepo extends BaseRepository<VehicleDataSync, Long> {  
9 -}  
src/main/java/com/bsth/repository/schedule/batch/VehicleDataSyncStatRepo.java deleted 100644 → 0
1 -package com.bsth.repository.schedule.batch;  
2 -  
3 -import com.bsth.entity.schedule.batch.VehicleDataSyncStat;  
4 -import com.bsth.repository.BaseRepository;  
5 -import org.springframework.stereotype.Repository;  
6 -  
7 -@Repository  
8 -public interface VehicleDataSyncStatRepo extends BaseRepository<VehicleDataSyncStat, Long> {  
9 -  
10 -}  
src/main/java/com/bsth/security/filter/LoginInterceptor.java
@@ -34,7 +34,7 @@ public class LoginInterceptor implements Filter { @@ -34,7 +34,7 @@ public class LoginInterceptor implements Filter {
34 */ 34 */
35 private String[] whiteListURLs = { Constants.LOGIN_PAGE,Constants.CAPTCHA, Constants.SERVICE_INTERFACE, 35 private String[] whiteListURLs = { Constants.LOGIN_PAGE,Constants.CAPTCHA, Constants.SERVICE_INTERFACE,
36 Constants.ASSETS_URL, Constants.FAVICON_URL, Constants.METRONIC_URL, Constants.LOGIN, Constants.LOGIN_FAILURE, Constants.UPSTREAM_URL, Constants.XD_CHILD_PAGES, Constants.UP_RFID_URL,Constants.STATION_AND_SECTION_COUNT, 36 Constants.ASSETS_URL, Constants.FAVICON_URL, Constants.METRONIC_URL, Constants.LOGIN, Constants.LOGIN_FAILURE, Constants.UPSTREAM_URL, Constants.XD_CHILD_PAGES, Constants.UP_RFID_URL,Constants.STATION_AND_SECTION_COUNT,
37 - Constants.WEBSERVICE_URL, Constants.VEHICLE_DATA_SYNC_URL }; 37 + Constants.VEHICLE_DATA_SYNC_URL };
38 38
39 39
40 @Override 40 @Override
src/main/java/com/bsth/service/schedule/batch/VehicleDataSyncService.java deleted 100644 → 0
1 -package com.bsth.service.schedule.batch;  
2 -  
3 -import com.bsth.entity.schedule.batch.VehicleDataSync;  
4 -import com.bsth.service.schedule.BService;  
5 -  
6 -public interface VehicleDataSyncService extends BService<VehicleDataSync, Long> {  
7 -}  
src/main/java/com/bsth/service/schedule/batch/VehicleDataSyncServiceImpl.java deleted 100644 → 0
1 -package com.bsth.service.schedule.batch;  
2 -  
3 -import com.bsth.control_v2.plan_module.common.exception.PlanModuleException;  
4 -import com.bsth.entity.schedule.batch.VehicleDataSync;  
5 -import com.bsth.service.schedule.impl.BServiceImpl;  
6 -import org.springframework.stereotype.Service;  
7 -  
8 -@Service  
9 -public class VehicleDataSyncServiceImpl extends BServiceImpl<VehicleDataSync, Long> implements VehicleDataSyncService {  
10 - @Override  
11 - public void delete(Long aLong) {  
12 - throw new PlanModuleException("不支持delete方法!");  
13 - }  
14 -}  
src/main/java/com/bsth/service/schedule/batch/VehicleDataSyncStatService.java deleted 100644 → 0
1 -package com.bsth.service.schedule.batch;  
2 -  
3 -import com.bsth.entity.schedule.batch.VehicleDataSyncStat;  
4 -import com.bsth.service.schedule.BService;  
5 -  
6 -public interface VehicleDataSyncStatService extends BService<VehicleDataSyncStat, Long> {  
7 -}  
src/main/java/com/bsth/service/schedule/batch/VehicleDataSyncStatServiceImpl.java deleted 100644 → 0
1 -package com.bsth.service.schedule.batch;  
2 -  
3 -import com.bsth.control_v2.plan_module.common.exception.PlanModuleException;  
4 -import com.bsth.entity.schedule.batch.VehicleDataSyncStat;  
5 -import com.bsth.service.schedule.impl.BServiceImpl;  
6 -import org.springframework.stereotype.Service;  
7 -  
8 -@Service  
9 -public class VehicleDataSyncStatServiceImpl extends BServiceImpl<VehicleDataSyncStat, Long> implements VehicleDataSyncStatService {  
10 - @Override  
11 - public VehicleDataSyncStat save(VehicleDataSyncStat vehicleDataSyncStat) {  
12 - throw new PlanModuleException("不支持save方法!");  
13 - }  
14 -  
15 - @Override  
16 - public void delete(Long aLong) {  
17 - throw new PlanModuleException("不支持delete方法!");  
18 - }  
19 -}  
src/main/java/com/bsth/service/schedule/batch/webservice/VehicleSyncEndpoint.java deleted 100644 → 0
1 -package com.bsth.service.schedule.batch.webservice;  
2 -  
3 -import com.bsth.entity.schedule.batch.VehicleDataSync;  
4 -import com.bsth.entity.schedule.batch.VehicleDataSyncStatusEnum;  
5 -import com.bsth.service.schedule.batch.VehicleDataSyncService;  
6 -import com.bsth.service.schedule.batch.webservice.vehiclesync.AddVehicleDataSyncRequest;  
7 -import com.bsth.service.schedule.batch.webservice.vehiclesync.AddVehicleDataSyncResponse;  
8 -import org.springframework.beans.factory.annotation.Autowired;  
9 -import org.springframework.ws.server.endpoint.annotation.Endpoint;  
10 -import org.springframework.ws.server.endpoint.annotation.PayloadRoot;  
11 -import org.springframework.ws.server.endpoint.annotation.RequestPayload;  
12 -import org.springframework.ws.server.endpoint.annotation.ResponsePayload;  
13 -  
14 -import java.util.Date;  
15 -  
16 -@Endpoint  
17 -public class VehicleSyncEndpoint {  
18 - /** 名字空间uri */  
19 - private static final String NAMESPACE_URI = "http://bsth.com/service/schedule/batch/webservice/vehicleSync";  
20 -  
21 - @Autowired  
22 - private VehicleDataSyncService vehicleDataSyncService;  
23 - @PayloadRoot(namespace = NAMESPACE_URI, localPart = "addVehicleDataSyncRequest")  
24 - @ResponsePayload  
25 - public AddVehicleDataSyncResponse addVehicleDataSync(  
26 - @RequestPayload AddVehicleDataSyncRequest addVehicleDataSyncRequest) {  
27 - AddVehicleDataSyncResponse addVehicleDataSyncResponse = new AddVehicleDataSyncResponse();  
28 - try {  
29 - // 创建车辆同步数据  
30 - VehicleDataSync vehicleDataSync = new VehicleDataSync();  
31 - vehicleDataSync.setIdenZbh(addVehicleDataSyncRequest.getIdenZbh());  
32 - vehicleDataSync.setIdenCph(addVehicleDataSyncRequest.getIdenCph());  
33 - vehicleDataSync.setUpdateGsmc(addVehicleDataSyncRequest.getUpdateGsmc());  
34 - vehicleDataSync.setUpdateFgsmc(addVehicleDataSyncRequest.getUpdateFgsmc());  
35 - vehicleDataSync.setUpdateSfbf(addVehicleDataSyncRequest.isUpdateSfbf());  
36 -  
37 - vehicleDataSync.setStatus(VehicleDataSyncStatusEnum.PREPARE);  
38 - vehicleDataSync.setCreateDate(new Date());  
39 - vehicleDataSync.setUpdateDate(new Date());  
40 - vehicleDataSyncService.save(vehicleDataSync);  
41 -  
42 - addVehicleDataSyncResponse.setSuccess(true);  
43 - addVehicleDataSyncResponse.setMessage("OK!");  
44 - } catch (Exception exp) {  
45 - exp.printStackTrace();  
46 - addVehicleDataSyncResponse.setSuccess(false);  
47 - addVehicleDataSyncResponse.setMessage(exp.getMessage());  
48 - }  
49 -  
50 - return addVehicleDataSyncResponse;  
51 - }  
52 -}  
src/main/java/com/bsth/service/schedule/batch/webservice/WebServiceConfig.java deleted 100644 → 0
1 -package com.bsth.service.schedule.batch.webservice;  
2 -  
3 -import org.springframework.boot.web.servlet.ServletRegistrationBean;  
4 -import org.springframework.context.ApplicationContext;  
5 -import org.springframework.context.annotation.Bean;  
6 -import org.springframework.context.annotation.Configuration;  
7 -import org.springframework.core.io.ClassPathResource;  
8 -import org.springframework.ws.config.annotation.EnableWs;  
9 -import org.springframework.ws.config.annotation.WsConfigurerAdapter;  
10 -import org.springframework.ws.transport.http.MessageDispatcherServlet;  
11 -import org.springframework.ws.wsdl.wsdl11.DefaultWsdl11Definition;  
12 -import org.springframework.xml.xsd.SimpleXsdSchema;  
13 -import org.springframework.xml.xsd.XsdSchema;  
14 -  
15 -@EnableWs  
16 -@Configuration  
17 -public class WebServiceConfig extends WsConfigurerAdapter {  
18 - @Bean  
19 - public ServletRegistrationBean messageDispatcherServlet(ApplicationContext applicationContext) {  
20 - MessageDispatcherServlet servlet = new MessageDispatcherServlet();  
21 - servlet.setApplicationContext(applicationContext);  
22 - servlet.setTransformWsdlLocations(true);  
23 - return new ServletRegistrationBean(servlet, "/ws/*");  
24 - }  
25 -  
26 - @Bean(name="vehicleSync")  
27 - public DefaultWsdl11Definition vehicleSyncWsdl11Definition(XsdSchema vehicleSyncSchema) {  
28 - DefaultWsdl11Definition wsdl11Definition = new DefaultWsdl11Definition();  
29 - wsdl11Definition.setPortTypeName("vehicleSyncPort");  
30 - wsdl11Definition.setLocationUri("/ws");  
31 - wsdl11Definition.setTargetNamespace("http://bsth.com/service/schedule/batch/webservice/vehicleSync");  
32 - wsdl11Definition.setSchema(vehicleSyncSchema);  
33 - return wsdl11Definition;  
34 - }  
35 -  
36 - @Bean  
37 - public XsdSchema vehicleSyncSchema() {  
38 - return new SimpleXsdSchema(new ClassPathResource("/xsd/vehicleSync.xsd"));  
39 - }  
40 -  
41 -  
42 -}  
src/main/java/com/bsth/service/schedule/batch/webservice/vehiclesync/AddVehicleDataSyncRequest.java deleted 100644 → 0
1 -//  
2 -// 此文件是由 JavaTM Architecture for XML Binding (JAXB) 引用实现 v2.2.7 生成的  
3 -// 请访问 <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>  
4 -// 在重新编译源模式时, 对此文件的所有修改都将丢失。  
5 -// 生成时间: 2020.06.23 时间 03:15:37 PM CST  
6 -//  
7 -  
8 -  
9 -package com.bsth.service.schedule.batch.webservice.vehiclesync;  
10 -  
11 -import javax.xml.bind.annotation.XmlAccessType;  
12 -import javax.xml.bind.annotation.XmlAccessorType;  
13 -import javax.xml.bind.annotation.XmlElement;  
14 -import javax.xml.bind.annotation.XmlRootElement;  
15 -import javax.xml.bind.annotation.XmlType;  
16 -  
17 -  
18 -/**  
19 - * <p>anonymous complex type的 Java 类。  
20 - *  
21 - * <p>以下模式片段指定包含在此类中的预期内容。  
22 - *  
23 - * <pre>  
24 - * &lt;complexType>  
25 - * &lt;complexContent>  
26 - * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">  
27 - * &lt;sequence>  
28 - * &lt;element name="idenZbh" type="{http://www.w3.org/2001/XMLSchema}string"/>  
29 - * &lt;element name="idenCph" type="{http://www.w3.org/2001/XMLSchema}string"/>  
30 - * &lt;element name="updateGsmc" type="{http://www.w3.org/2001/XMLSchema}string"/>  
31 - * &lt;element name="updateFgsmc" type="{http://www.w3.org/2001/XMLSchema}string"/>  
32 - * &lt;element name="updateSfbf" type="{http://www.w3.org/2001/XMLSchema}boolean"/>  
33 - * &lt;/sequence>  
34 - * &lt;/restriction>  
35 - * &lt;/complexContent>  
36 - * &lt;/complexType>  
37 - * </pre>  
38 - *  
39 - *  
40 - */  
41 -@XmlAccessorType(XmlAccessType.FIELD)  
42 -@XmlType(name = "", propOrder = {  
43 - "idenZbh",  
44 - "idenCph",  
45 - "updateGsmc",  
46 - "updateFgsmc",  
47 - "updateSfbf"  
48 -})  
49 -@XmlRootElement(name = "addVehicleDataSyncRequest")  
50 -public class AddVehicleDataSyncRequest {  
51 -  
52 - @XmlElement(required = true)  
53 - protected String idenZbh;  
54 - @XmlElement(required = true)  
55 - protected String idenCph;  
56 - @XmlElement(required = true)  
57 - protected String updateGsmc;  
58 - @XmlElement(required = true)  
59 - protected String updateFgsmc;  
60 - protected boolean updateSfbf;  
61 -  
62 - /**  
63 - * 获取idenZbh属性的值。  
64 - *  
65 - * @return  
66 - * possible object is  
67 - * {@link String }  
68 - *  
69 - */  
70 - public String getIdenZbh() {  
71 - return idenZbh;  
72 - }  
73 -  
74 - /**  
75 - * 设置idenZbh属性的值。  
76 - *  
77 - * @param value  
78 - * allowed object is  
79 - * {@link String }  
80 - *  
81 - */  
82 - public void setIdenZbh(String value) {  
83 - this.idenZbh = value;  
84 - }  
85 -  
86 - /**  
87 - * 获取idenCph属性的值。  
88 - *  
89 - * @return  
90 - * possible object is  
91 - * {@link String }  
92 - *  
93 - */  
94 - public String getIdenCph() {  
95 - return idenCph;  
96 - }  
97 -  
98 - /**  
99 - * 设置idenCph属性的值。  
100 - *  
101 - * @param value  
102 - * allowed object is  
103 - * {@link String }  
104 - *  
105 - */  
106 - public void setIdenCph(String value) {  
107 - this.idenCph = value;  
108 - }  
109 -  
110 - /**  
111 - * 获取updateGsmc属性的值。  
112 - *  
113 - * @return  
114 - * possible object is  
115 - * {@link String }  
116 - *  
117 - */  
118 - public String getUpdateGsmc() {  
119 - return updateGsmc;  
120 - }  
121 -  
122 - /**  
123 - * 设置updateGsmc属性的值。  
124 - *  
125 - * @param value  
126 - * allowed object is  
127 - * {@link String }  
128 - *  
129 - */  
130 - public void setUpdateGsmc(String value) {  
131 - this.updateGsmc = value;  
132 - }  
133 -  
134 - /**  
135 - * 获取updateFgsmc属性的值。  
136 - *  
137 - * @return  
138 - * possible object is  
139 - * {@link String }  
140 - *  
141 - */  
142 - public String getUpdateFgsmc() {  
143 - return updateFgsmc;  
144 - }  
145 -  
146 - /**  
147 - * 设置updateFgsmc属性的值。  
148 - *  
149 - * @param value  
150 - * allowed object is  
151 - * {@link String }  
152 - *  
153 - */  
154 - public void setUpdateFgsmc(String value) {  
155 - this.updateFgsmc = value;  
156 - }  
157 -  
158 - /**  
159 - * 获取updateSfbf属性的值。  
160 - *  
161 - */  
162 - public boolean isUpdateSfbf() {  
163 - return updateSfbf;  
164 - }  
165 -  
166 - /**  
167 - * 设置updateSfbf属性的值。  
168 - *  
169 - */  
170 - public void setUpdateSfbf(boolean value) {  
171 - this.updateSfbf = value;  
172 - }  
173 -  
174 -}  
src/main/java/com/bsth/service/schedule/batch/webservice/vehiclesync/AddVehicleDataSyncResponse.java deleted 100644 → 0
1 -//  
2 -// 此文件是由 JavaTM Architecture for XML Binding (JAXB) 引用实现 v2.2.7 生成的  
3 -// 请访问 <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>  
4 -// 在重新编译源模式时, 对此文件的所有修改都将丢失。  
5 -// 生成时间: 2020.06.23 时间 03:15:37 PM CST  
6 -//  
7 -  
8 -  
9 -package com.bsth.service.schedule.batch.webservice.vehiclesync;  
10 -  
11 -import javax.xml.bind.annotation.XmlAccessType;  
12 -import javax.xml.bind.annotation.XmlAccessorType;  
13 -import javax.xml.bind.annotation.XmlElement;  
14 -import javax.xml.bind.annotation.XmlRootElement;  
15 -import javax.xml.bind.annotation.XmlType;  
16 -  
17 -  
18 -/**  
19 - * <p>anonymous complex type的 Java 类。  
20 - *  
21 - * <p>以下模式片段指定包含在此类中的预期内容。  
22 - *  
23 - * <pre>  
24 - * &lt;complexType>  
25 - * &lt;complexContent>  
26 - * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">  
27 - * &lt;sequence>  
28 - * &lt;element name="success" type="{http://www.w3.org/2001/XMLSchema}boolean"/>  
29 - * &lt;element name="message" type="{http://www.w3.org/2001/XMLSchema}string"/>  
30 - * &lt;/sequence>  
31 - * &lt;/restriction>  
32 - * &lt;/complexContent>  
33 - * &lt;/complexType>  
34 - * </pre>  
35 - *  
36 - *  
37 - */  
38 -@XmlAccessorType(XmlAccessType.FIELD)  
39 -@XmlType(name = "", propOrder = {  
40 - "success",  
41 - "message"  
42 -})  
43 -@XmlRootElement(name = "addVehicleDataSyncResponse")  
44 -public class AddVehicleDataSyncResponse {  
45 -  
46 - protected boolean success;  
47 - @XmlElement(required = true)  
48 - protected String message;  
49 -  
50 - /**  
51 - * 获取success属性的值。  
52 - *  
53 - */  
54 - public boolean isSuccess() {  
55 - return success;  
56 - }  
57 -  
58 - /**  
59 - * 设置success属性的值。  
60 - *  
61 - */  
62 - public void setSuccess(boolean value) {  
63 - this.success = value;  
64 - }  
65 -  
66 - /**  
67 - * 获取message属性的值。  
68 - *  
69 - * @return  
70 - * possible object is  
71 - * {@link String }  
72 - *  
73 - */  
74 - public String getMessage() {  
75 - return message;  
76 - }  
77 -  
78 - /**  
79 - * 设置message属性的值。  
80 - *  
81 - * @param value  
82 - * allowed object is  
83 - * {@link String }  
84 - *  
85 - */  
86 - public void setMessage(String value) {  
87 - this.message = value;  
88 - }  
89 -  
90 -}  
src/main/java/com/bsth/service/schedule/batch/webservice/vehiclesync/ObjectFactory.java deleted 100644 → 0
1 -//  
2 -// 此文件是由 JavaTM Architecture for XML Binding (JAXB) 引用实现 v2.2.7 生成的  
3 -// 请访问 <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>  
4 -// 在重新编译源模式时, 对此文件的所有修改都将丢失。  
5 -// 生成时间: 2020.06.23 时间 03:15:37 PM CST  
6 -//  
7 -  
8 -  
9 -package com.bsth.service.schedule.batch.webservice.vehiclesync;  
10 -  
11 -import javax.xml.bind.annotation.XmlRegistry;  
12 -  
13 -  
14 -/**  
15 - * This object contains factory methods for each  
16 - * Java content interface and Java element interface  
17 - * generated in the com.bsth.service.schedule.batch.webservice.vehiclesync package.  
18 - * <p>An ObjectFactory allows you to programatically  
19 - * construct new instances of the Java representation  
20 - * for XML content. The Java representation of XML  
21 - * content can consist of schema derived interfaces  
22 - * and classes representing the binding of schema  
23 - * type definitions, element declarations and model  
24 - * groups. Factory methods for each of these are  
25 - * provided in this class.  
26 - *  
27 - */  
28 -@XmlRegistry  
29 -public class ObjectFactory {  
30 -  
31 -  
32 - /**  
33 - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: com.bsth.service.schedule.batch.webservice.vehiclesync  
34 - *  
35 - */  
36 - public ObjectFactory() {  
37 - }  
38 -  
39 - /**  
40 - * Create an instance of {@link AddVehicleDataSyncResponse }  
41 - *  
42 - */  
43 - public AddVehicleDataSyncResponse createAddVehicleDataSyncResponse() {  
44 - return new AddVehicleDataSyncResponse();  
45 - }  
46 -  
47 - /**  
48 - * Create an instance of {@link AddVehicleDataSyncRequest }  
49 - *  
50 - */  
51 - public AddVehicleDataSyncRequest createAddVehicleDataSyncRequest() {  
52 - return new AddVehicleDataSyncRequest();  
53 - }  
54 -  
55 -}  
src/main/java/com/bsth/service/schedule/batch/webservice/vehiclesync/package-info.java deleted 100644 → 0
1 -//  
2 -// 此文件是由 JavaTM Architecture for XML Binding (JAXB) 引用实现 v2.2.7 生成的  
3 -// 请访问 <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>  
4 -// 在重新编译源模式时, 对此文件的所有修改都将丢失。  
5 -// 生成时间: 2020.06.23 时间 03:15:37 PM CST  
6 -//  
7 -  
8 -@javax.xml.bind.annotation.XmlSchema(namespace = "http://bsth.com/service/schedule/batch/webservice/vehicleSync", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED)  
9 -package com.bsth.service.schedule.batch.webservice.vehiclesync;  
src/main/java/com/bsth/service/schedule/utils/MyStringUtils.java 0 → 100644
  1 +package com.bsth.service.schedule.utils;
  2 +
  3 +import org.springframework.util.Assert;
  4 +
  5 +import java.util.regex.Matcher;
  6 +import java.util.regex.Pattern;
  7 +
  8 +/**
  9 + * 字符串工具类。
  10 + */
  11 +public class MyStringUtils {
  12 + /**
  13 + * 字符串是否包含中文
  14 + *
  15 + * @param str 待校验字符串
  16 + * @return true 包含中文字符 false 不包含中文字符
  17 + */
  18 + public static boolean isContainChinese(String str) {
  19 + Assert.hasText(str, "字符串为空!");
  20 +
  21 + Pattern p = Pattern.compile("[\u4E00-\u9FA5|\\!|\\,|\\。|\\(|\\)|\\《|\\》|\\“|\\”|\\?|\\:|\\;|\\【|\\】]");
  22 + Matcher m = p.matcher(str);
  23 + if (m.find()) {
  24 + return true;
  25 + }
  26 + return false;
  27 + }
  28 +}
src/main/resources/application-test.properties
1 server.port=9088 1 server.port=9088
2 2
3 -# dubbo服务化使用开关flag 3 +# dubbo锟斤拷锟斤拷使锟矫匡拷锟斤拷flag
4 dubbo.use=false 4 dubbo.use=false
5 5
6 #JPA 6 #JPA
@@ -28,6 +28,7 @@ spring.datasource.hikari.max-lifetime= 1800000 @@ -28,6 +28,7 @@ spring.datasource.hikari.max-lifetime= 1800000
28 spring.datasource.hikari.connection-timeout= 3000 28 spring.datasource.hikari.connection-timeout= 3000
29 spring.datasource.hikari.connection-test-query= SELECT 1 29 spring.datasource.hikari.connection-test-query= SELECT 1
30 spring.datasource.hikari.validation-timeout= 3000 30 spring.datasource.hikari.validation-timeout= 3000
  31 +spring.datasource.hikari.register-mbeans=true
31 32
32 ## gps client data 33 ## gps client data
33 http.gps.real.cache.url= http://10.10.150.24:12580/realGps/all 34 http.gps.real.cache.url= http://10.10.150.24:12580/realGps/all
@@ -36,4 +37,4 @@ http.gps.real.url= http://10.10.200.79:8080/transport_server/rtgps/ @@ -36,4 +37,4 @@ http.gps.real.url= http://10.10.200.79:8080/transport_server/rtgps/
36 ## gateway send directive 37 ## gateway send directive
37 #http.send.directive = http://10.10.200.79:8080/transport_server/message/ 38 #http.send.directive = http://10.10.200.79:8080/transport_server/message/
38 ## rfid data 39 ## rfid data
39 -http.rfid.url= http://10.10.200.82:9000/rfid  
40 \ No newline at end of file 40 \ No newline at end of file
  41 +http.rfid.url= http://10.10.200.82:9000/rfid
src/main/resources/datatools/ktrs/carsConfigDataInput.ktr
1 -<?xml version="1.0" encoding="UTF-8"?>  
2 -<transformation>  
3 - <info>  
4 - <name>&#x8f66;&#x8f86;&#x914d;&#x7f6e;&#x4fe1;&#x606f;&#x5bfc;&#x5165;</name>  
5 - <description>&#x8f66;&#x8f86;&#x914d;&#x7f6e;&#x4fe1;&#x606f;&#x5bfc;&#x5165;</description>  
6 - <extended_description>&#x914d;&#x8f66;&#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 13&#x3a;15&#x3a;32.118</created_date>  
81 - <modified_user>-</modified_user>  
82 - <modified_date>2016&#x2f;06&#x2f;29 13&#x3a;15&#x3a;32.118</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>&#x8fd9;&#x91cc;&#x6709;&#x4e9b;&#x95ee;&#x9898;&#xa;&#x5728;window2012&#x7684;&#x73af;&#x5883;&#x4e0b;&#xff0c;&#xa;MySql&#x6570;&#x636e;&#x5e93;&#x67e5;&#x8be2;&#x4e2d;&#x5982;&#x679c;&#x8fd4;&#x56de;&#x4e2d;&#x6587;&#x5185;&#x5bb9;&#x7684;&#x5b57;&#x6bb5;&#xff0c;&#x8fd9;&#x4e2a;&#x5185;&#x5bb9;&#x4e71;&#x7801;&#xa;&#x89e3;&#x51b3;&#x529e;&#x6cd5;&#xff0c;&#x5c31;&#x662f;&#x6570;&#x636e;&#x5e93;&#x67e5;&#x8be2;&#x5168;&#x90e8;&#x7f13;&#x5b58;&#xff0c;&#x5c31;&#x4e0d;&#x4e71;&#x7801;&#xa;linux&#x73af;&#x5883;&#x4e0b;&#x6ca1;&#x95ee;&#x9898;&#xa;</note>  
89 - <xloc>40</xloc>  
90 - <yloc>238</yloc>  
91 - <width>333</width>  
92 - <heigth>106</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>&#x24;&#x7b;v_db_dname&#x7d;</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.characterEncoding</code><attribute>utf8</attribute></attribute>  
123 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
124 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
125 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
126 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
127 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
128 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
129 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
130 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
131 - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>  
132 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
133 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
134 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
135 - </attributes>  
136 - </connection>  
137 - <connection>  
138 - <name>bus_control_&#x516c;&#x53f8;_201</name>  
139 - <server>localhost</server>  
140 - <type>MYSQL</type>  
141 - <access>Native</access>  
142 - <database>control</database>  
143 - <port>3306</port>  
144 - <username>root</username>  
145 - <password>Encrypted </password>  
146 - <servername/>  
147 - <data_tablespace/>  
148 - <index_tablespace/>  
149 - <attributes>  
150 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
151 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
152 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
153 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
154 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
155 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
156 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
157 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
158 - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>  
159 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
160 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
161 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
162 - </attributes>  
163 - </connection>  
164 - <connection>  
165 - <name>bus_control_&#x672c;&#x673a;</name>  
166 - <server>localhost</server>  
167 - <type>MYSQL</type>  
168 - <access>Native</access>  
169 - <database>control</database>  
170 - <port>3306</port>  
171 - <username>root</username>  
172 - <password>Encrypted </password>  
173 - <servername/>  
174 - <data_tablespace/>  
175 - <index_tablespace/>  
176 - <attributes>  
177 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
178 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
179 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
180 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
181 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
182 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
183 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
184 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
185 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
186 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
187 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
188 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
189 - </attributes>  
190 - </connection>  
191 - <connection>  
192 - <name>xlab_mysql_youle</name>  
193 - <server>101.231.124.8</server>  
194 - <type>MYSQL</type>  
195 - <access>Native</access>  
196 - <database>xlab_youle</database>  
197 - <port>45687</port>  
198 - <username>xlab-youle</username>  
199 - <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password>  
200 - <servername/>  
201 - <data_tablespace/>  
202 - <index_tablespace/>  
203 - <attributes>  
204 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
205 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
206 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
207 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
208 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
209 - <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute>  
210 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
211 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
212 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
213 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>  
214 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>  
215 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
216 - </attributes>  
217 - </connection>  
218 - <connection>  
219 - <name>xlab_mysql_youle&#xff08;&#x672c;&#x673a;&#xff09;</name>  
220 - <server>localhost</server>  
221 - <type>MYSQL</type>  
222 - <access>Native</access>  
223 - <database>xlab_youle</database>  
224 - <port>3306</port>  
225 - <username>root</username>  
226 - <password>Encrypted </password>  
227 - <servername/>  
228 - <data_tablespace/>  
229 - <index_tablespace/>  
230 - <attributes>  
231 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
232 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
233 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
234 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
235 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
236 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
237 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
238 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
239 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
240 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>  
241 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>  
242 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
243 - </attributes>  
244 - </connection>  
245 - <connection>  
246 - <name>xlab_youle</name>  
247 - <server/>  
248 - <type>MYSQL</type>  
249 - <access>JNDI</access>  
250 - <database>xlab_youle</database>  
251 - <port>1521</port>  
252 - <username/>  
253 - <password>Encrypted </password>  
254 - <servername/>  
255 - <data_tablespace/>  
256 - <index_tablespace/>  
257 - <attributes>  
258 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
259 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
260 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
261 - <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>  
262 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
263 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
264 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
265 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
266 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
267 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
268 - </attributes>  
269 - </connection>  
270 - <order>  
271 - <hop> <from>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ccinfo</from><to>&#x9519;&#x8bef;&#x8f93;&#x51fa;</to><enabled>Y</enabled> </hop>  
272 - <hop> <from>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</from><to>&#x539f;&#x59cb;&#x7cfb;&#x7edf;&#x5bfc;&#x51fa;&#x7684;Excel&#x8f93;&#x5165;</to><enabled>Y</enabled> </hop>  
273 - <hop> <from>&#x539f;&#x59cb;&#x7cfb;&#x7edf;&#x5bfc;&#x51fa;&#x7684;Excel&#x8f93;&#x5165;</from><to>&#x542f;&#x7528;&#x88ab;&#x6570;&#x636e;flag</to><enabled>Y</enabled> </hop>  
274 - <hop> <from>&#x542f;&#x7528;&#x88ab;&#x6570;&#x636e;flag</from><to>&#x7ebf;&#x8def;id&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>  
275 - <hop> <from>&#x7ebf;&#x8def;id&#x67e5;&#x8be2;</from><to>&#x8fc7;&#x6ee4;&#x7ebf;&#x8def;id&#x4e3a;&#x7a7a;&#x8bb0;&#x5f55;</to><enabled>Y</enabled> </hop>  
276 - <hop> <from>&#x8fc7;&#x6ee4;&#x7ebf;&#x8def;id&#x4e3a;&#x7a7a;&#x8bb0;&#x5f55;</from><to>&#x8f66;&#x8f86;id&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>  
277 - <hop> <from>&#x8f66;&#x8f86;id&#x67e5;&#x8be2;</from><to>&#x8fc7;&#x6ee4;&#x8f66;&#x8f86;id&#x4e3a;&#x7a7a;&#x8bb0;&#x5f55;</to><enabled>Y</enabled> </hop>  
278 - <hop> <from>&#x8fc7;&#x6ee4;&#x8f66;&#x8f86;id&#x4e3a;&#x7a7a;&#x8bb0;&#x5f55;</from><to>&#x65e5;&#x671f;&#x8f6c;&#x6362;</to><enabled>Y</enabled> </hop>  
279 - <hop> <from>&#x65e5;&#x671f;&#x8f6c;&#x6362;</from><to>&#x662f;&#x5426;&#x5207;&#x6362;</to><enabled>Y</enabled> </hop>  
280 - <hop> <from>&#x662f;&#x5426;&#x5207;&#x6362;</from><to>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ccinfo</to><enabled>Y</enabled> </hop>  
281 - </order>  
282 - <step>  
283 - <name>&#x539f;&#x59cb;&#x7cfb;&#x7edf;&#x5bfc;&#x51fa;&#x7684;Excel&#x8f93;&#x5165;</name>  
284 - <type>ExcelInput</type>  
285 - <description/>  
286 - <distribute>Y</distribute>  
287 - <custom_distribution/>  
288 - <copies>1</copies>  
289 - <partitioning>  
290 - <method>none</method>  
291 - <schema_name/>  
292 - </partitioning>  
293 - <header>Y</header>  
294 - <noempty>Y</noempty>  
295 - <stoponempty>N</stoponempty>  
296 - <filefield/>  
297 - <sheetfield/>  
298 - <sheetrownumfield/>  
299 - <rownumfield/>  
300 - <sheetfield/>  
301 - <filefield/>  
302 - <limit>0</limit>  
303 - <encoding/>  
304 - <add_to_result_filenames>Y</add_to_result_filenames>  
305 - <accept_filenames>Y</accept_filenames>  
306 - <accept_field>filepath_</accept_field>  
307 - <accept_stepname>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</accept_stepname>  
308 - <file>  
309 - <name/>  
310 - <filemask/>  
311 - <exclude_filemask/>  
312 - <file_required>N</file_required>  
313 - <include_subfolders>N</include_subfolders>  
314 - </file>  
315 - <fields>  
316 - <field>  
317 - <name>&#x7ebf;&#x8def;</name>  
318 - <type>String</type>  
319 - <length>-1</length>  
320 - <precision>-1</precision>  
321 - <trim_type>none</trim_type>  
322 - <repeat>N</repeat>  
323 - <format/>  
324 - <currency/>  
325 - <decimal/>  
326 - <group/>  
327 - </field>  
328 - <field>  
329 - <name>&#x5185;&#x90e8;&#x7f16;&#x7801;</name>  
330 - <type>String</type>  
331 - <length>-1</length>  
332 - <precision>-1</precision>  
333 - <trim_type>none</trim_type>  
334 - <repeat>N</repeat>  
335 - <format>&#x23;</format>  
336 - <currency/>  
337 - <decimal/>  
338 - <group/>  
339 - </field>  
340 - <field>  
341 - <name>&#x542f;&#x7528;&#x65e5;&#x671f;</name>  
342 - <type>String</type>  
343 - <length>-1</length>  
344 - <precision>-1</precision>  
345 - <trim_type>none</trim_type>  
346 - <repeat>N</repeat>  
347 - <format/>  
348 - <currency/>  
349 - <decimal/>  
350 - <group/>  
351 - </field>  
352 - <field>  
353 - <name>&#x7ec8;&#x7ed3;&#x65e5;&#x671f;</name>  
354 - <type>String</type>  
355 - <length>-1</length>  
356 - <precision>-1</precision>  
357 - <trim_type>none</trim_type>  
358 - <repeat>N</repeat>  
359 - <format/>  
360 - <currency/>  
361 - <decimal/>  
362 - <group/>  
363 - </field>  
364 - <field>  
365 - <name>&#x505c;&#x8f66;&#x70b9;</name>  
366 - <type>String</type>  
367 - <length>-1</length>  
368 - <precision>-1</precision>  
369 - <trim_type>none</trim_type>  
370 - <repeat>N</repeat>  
371 - <format/>  
372 - <currency/>  
373 - <decimal/>  
374 - <group/>  
375 - </field>  
376 - </fields>  
377 - <sheets>  
378 - <sheet>  
379 - <name>&#x5de5;&#x4f5c;&#x8868;1</name>  
380 - <startrow>0</startrow>  
381 - <startcol>0</startcol>  
382 - </sheet>  
383 - </sheets>  
384 - <strict_types>N</strict_types>  
385 - <error_ignored>N</error_ignored>  
386 - <error_line_skipped>N</error_line_skipped>  
387 - <bad_line_files_destination_directory/>  
388 - <bad_line_files_extension>warning</bad_line_files_extension>  
389 - <error_line_files_destination_directory/>  
390 - <error_line_files_extension>error</error_line_files_extension>  
391 - <line_number_files_destination_directory/>  
392 - <line_number_files_extension>line</line_number_files_extension>  
393 - <shortFileFieldName/>  
394 - <pathFieldName/>  
395 - <hiddenFieldName/>  
396 - <lastModificationTimeFieldName/>  
397 - <uriNameFieldName/>  
398 - <rootUriNameFieldName/>  
399 - <extensionFieldName/>  
400 - <sizeFieldName/>  
401 - <spreadsheet_type>JXL</spreadsheet_type>  
402 - <cluster_schema/>  
403 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
404 - <xloc>155</xloc>  
405 - <yloc>56</yloc>  
406 - <draw>Y</draw>  
407 - </GUI>  
408 - </step>  
409 -  
410 - <step>  
411 - <name>&#x542f;&#x7528;&#x88ab;&#x6570;&#x636e;flag</name>  
412 - <type>Constant</type>  
413 - <description/>  
414 - <distribute>Y</distribute>  
415 - <custom_distribution/>  
416 - <copies>1</copies>  
417 - <partitioning>  
418 - <method>none</method>  
419 - <schema_name/>  
420 - </partitioning>  
421 - <fields>  
422 - <field>  
423 - <name>isCancel</name>  
424 - <type>Integer</type>  
425 - <format/>  
426 - <currency/>  
427 - <decimal/>  
428 - <group/>  
429 - <nullif>0</nullif>  
430 - <length>-1</length>  
431 - <precision>-1</precision>  
432 - <set_empty_string>N</set_empty_string>  
433 - </field>  
434 - </fields>  
435 - <cluster_schema/>  
436 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
437 - <xloc>315</xloc>  
438 - <yloc>57</yloc>  
439 - <draw>Y</draw>  
440 - </GUI>  
441 - </step>  
442 -  
443 - <step>  
444 - <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ccinfo</name>  
445 - <type>InsertUpdate</type>  
446 - <description/>  
447 - <distribute>Y</distribute>  
448 - <custom_distribution/>  
449 - <copies>1</copies>  
450 - <partitioning>  
451 - <method>none</method>  
452 - <schema_name/>  
453 - </partitioning>  
454 - <connection>bus_control_variable</connection>  
455 - <commit>100</commit>  
456 - <update_bypassed>N</update_bypassed>  
457 - <lookup>  
458 - <schema/>  
459 - <table>bsth_c_s_ccinfo</table>  
460 - <key>  
461 - <name>xlid</name>  
462 - <field>xl</field>  
463 - <condition>&#x3d;</condition>  
464 - <name2/>  
465 - </key>  
466 - <key>  
467 - <name>clid</name>  
468 - <field>cl</field>  
469 - <condition>&#x3d;</condition>  
470 - <name2/>  
471 - </key>  
472 - <key>  
473 - <name>isCancel</name>  
474 - <field>is_cancel</field>  
475 - <condition>&#x3d;</condition>  
476 - <name2/>  
477 - </key>  
478 - <value>  
479 - <name>xl</name>  
480 - <rename>xlId</rename>  
481 - <update>N</update>  
482 - </value>  
483 - <value>  
484 - <name>cl</name>  
485 - <rename>clId</rename>  
486 - <update>N</update>  
487 - </value>  
488 - <value>  
489 - <name>is_switch</name>  
490 - <rename>isswitch</rename>  
491 - <update>N</update>  
492 - </value>  
493 - <value>  
494 - <name>tcd</name>  
495 - <rename>&#x505c;&#x8f66;&#x70b9;</rename>  
496 - <update>N</update>  
497 - </value>  
498 - <value>  
499 - <name>zzrq</name>  
500 - <rename>&#x7ec8;&#x7ed3;&#x65e5;&#x671f;</rename>  
501 - <update>N</update>  
502 - </value>  
503 - <value>  
504 - <name>qyrq</name>  
505 - <rename>&#x542f;&#x7528;&#x65e5;&#x671f;</rename>  
506 - <update>N</update>  
507 - </value>  
508 - <value>  
509 - <name>is_cancel</name>  
510 - <rename>isCancel</rename>  
511 - <update>N</update>  
512 - </value>  
513 - </lookup>  
514 - <cluster_schema/>  
515 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
516 - <xloc>804</xloc>  
517 - <yloc>236</yloc>  
518 - <draw>Y</draw>  
519 - </GUI>  
520 - </step>  
521 -  
522 - <step>  
523 - <name>&#x65e5;&#x671f;&#x8f6c;&#x6362;</name>  
524 - <type>SelectValues</type>  
525 - <description/>  
526 - <distribute>Y</distribute>  
527 - <custom_distribution/>  
528 - <copies>1</copies>  
529 - <partitioning>  
530 - <method>none</method>  
531 - <schema_name/>  
532 - </partitioning>  
533 - <fields> <select_unspecified>N</select_unspecified>  
534 - <meta> <name>&#x542f;&#x7528;&#x65e5;&#x671f;</name>  
535 - <rename>&#x542f;&#x7528;&#x65e5;&#x671f;</rename>  
536 - <type>Timestamp</type>  
537 - <length>-2</length>  
538 - <precision>-2</precision>  
539 - <conversion_mask>yyyy-MM-dd</conversion_mask>  
540 - <date_format_lenient>false</date_format_lenient>  
541 - <date_format_locale/>  
542 - <date_format_timezone/>  
543 - <lenient_string_to_number>false</lenient_string_to_number>  
544 - <encoding/>  
545 - <decimal_symbol/>  
546 - <grouping_symbol/>  
547 - <currency_symbol/>  
548 - <storage_type/>  
549 - </meta> <meta> <name>&#x7ec8;&#x7ed3;&#x65e5;&#x671f;</name>  
550 - <rename>&#x7ec8;&#x7ed3;&#x65e5;&#x671f;</rename>  
551 - <type>Timestamp</type>  
552 - <length>-2</length>  
553 - <precision>-2</precision>  
554 - <conversion_mask>yyyy-MM-dd</conversion_mask>  
555 - <date_format_lenient>false</date_format_lenient>  
556 - <date_format_locale/>  
557 - <date_format_timezone/>  
558 - <lenient_string_to_number>false</lenient_string_to_number>  
559 - <encoding/>  
560 - <decimal_symbol/>  
561 - <grouping_symbol/>  
562 - <currency_symbol/>  
563 - <storage_type/>  
564 - </meta> </fields> <cluster_schema/>  
565 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
566 - <xloc>703</xloc>  
567 - <yloc>136</yloc>  
568 - <draw>Y</draw>  
569 - </GUI>  
570 - </step>  
571 -  
572 - <step>  
573 - <name>&#x662f;&#x5426;&#x5207;&#x6362;</name>  
574 - <type>Constant</type>  
575 - <description/>  
576 - <distribute>Y</distribute>  
577 - <custom_distribution/>  
578 - <copies>1</copies>  
579 - <partitioning>  
580 - <method>none</method>  
581 - <schema_name/>  
582 - </partitioning>  
583 - <fields>  
584 - <field>  
585 - <name>isswitch</name>  
586 - <type>Integer</type>  
587 - <format/>  
588 - <currency/>  
589 - <decimal/>  
590 - <group/>  
591 - <nullif>0</nullif>  
592 - <length>-1</length>  
593 - <precision>-1</precision>  
594 - <set_empty_string>N</set_empty_string>  
595 - </field>  
596 - </fields>  
597 - <cluster_schema/>  
598 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
599 - <xloc>803</xloc>  
600 - <yloc>137</yloc>  
601 - <draw>Y</draw>  
602 - </GUI>  
603 - </step>  
604 -  
605 - <step>  
606 - <name>&#x7ebf;&#x8def;id&#x67e5;&#x8be2;</name>  
607 - <type>DBLookup</type>  
608 - <description/>  
609 - <distribute>Y</distribute>  
610 - <custom_distribution/>  
611 - <copies>1</copies>  
612 - <partitioning>  
613 - <method>none</method>  
614 - <schema_name/>  
615 - </partitioning>  
616 - <connection>bus_control_variable</connection>  
617 - <cache>Y</cache>  
618 - <cache_load_all>Y</cache_load_all>  
619 - <cache_size>0</cache_size>  
620 - <lookup>  
621 - <schema/>  
622 - <table>bsth_c_line</table>  
623 - <orderby/>  
624 - <fail_on_multiple>N</fail_on_multiple>  
625 - <eat_row_on_failure>N</eat_row_on_failure>  
626 - <key>  
627 - <name>&#x7ebf;&#x8def;</name>  
628 - <field>name</field>  
629 - <condition>&#x3d;</condition>  
630 - <name2/>  
631 - </key>  
632 - <key>  
633 - <name>isCancel</name>  
634 - <field>destroy</field>  
635 - <condition>&#x3d;</condition>  
636 - <name2/>  
637 - </key>  
638 - <value>  
639 - <name>id</name>  
640 - <rename>xlid</rename>  
641 - <default/>  
642 - <type>Integer</type>  
643 - </value>  
644 - </lookup>  
645 - <cluster_schema/>  
646 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
647 - <xloc>438</xloc>  
648 - <yloc>57</yloc>  
649 - <draw>Y</draw>  
650 - </GUI>  
651 - </step>  
652 -  
653 - <step>  
654 - <name>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</name>  
655 - <type>GetVariable</type>  
656 - <description/>  
657 - <distribute>Y</distribute>  
658 - <custom_distribution/>  
659 - <copies>1</copies>  
660 - <partitioning>  
661 - <method>none</method>  
662 - <schema_name/>  
663 - </partitioning>  
664 - <fields>  
665 - <field>  
666 - <name>filepath_</name>  
667 - <variable>&#x24;&#x7b;filepath&#x7d;</variable>  
668 - <type>String</type>  
669 - <format/>  
670 - <currency/>  
671 - <decimal/>  
672 - <group/>  
673 - <length>-1</length>  
674 - <precision>-1</precision>  
675 - <trim_type>none</trim_type>  
676 - </field>  
677 - <field>  
678 - <name>erroroutputdir_</name>  
679 - <variable>&#x24;&#x7b;erroroutputdir&#x7d;</variable>  
680 - <type>String</type>  
681 - <format/>  
682 - <currency/>  
683 - <decimal/>  
684 - <group/>  
685 - <length>-1</length>  
686 - <precision>-1</precision>  
687 - <trim_type>none</trim_type>  
688 - </field>  
689 - </fields>  
690 - <cluster_schema/>  
691 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
692 - <xloc>156</xloc>  
693 - <yloc>150</yloc>  
694 - <draw>Y</draw>  
695 - </GUI>  
696 - </step>  
697 -  
698 - <step>  
699 - <name>&#x8f66;&#x8f86;id&#x67e5;&#x8be2;</name>  
700 - <type>DBLookup</type>  
701 - <description/>  
702 - <distribute>Y</distribute>  
703 - <custom_distribution/>  
704 - <copies>1</copies>  
705 - <partitioning>  
706 - <method>none</method>  
707 - <schema_name/>  
708 - </partitioning>  
709 - <connection>bus_control_variable</connection>  
710 - <cache>Y</cache>  
711 - <cache_load_all>Y</cache_load_all>  
712 - <cache_size>0</cache_size>  
713 - <lookup>  
714 - <schema/>  
715 - <table>bsth_c_cars</table>  
716 - <orderby/>  
717 - <fail_on_multiple>N</fail_on_multiple>  
718 - <eat_row_on_failure>N</eat_row_on_failure>  
719 - <key>  
720 - <name>&#x5185;&#x90e8;&#x7f16;&#x7801;</name>  
721 - <field>inside_code</field>  
722 - <condition>&#x3d;</condition>  
723 - <name2/>  
724 - </key>  
725 - <value>  
726 - <name>id</name>  
727 - <rename>clid</rename>  
728 - <default/>  
729 - <type>Integer</type>  
730 - </value>  
731 - </lookup>  
732 - <cluster_schema/>  
733 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
734 - <xloc>440</xloc>  
735 - <yloc>138</yloc>  
736 - <draw>Y</draw>  
737 - </GUI>  
738 - </step>  
739 -  
740 - <step>  
741 - <name>&#x8fc7;&#x6ee4;&#x7ebf;&#x8def;id&#x4e3a;&#x7a7a;&#x8bb0;&#x5f55;</name>  
742 - <type>FilterRows</type>  
743 - <description/>  
744 - <distribute>Y</distribute>  
745 - <custom_distribution/>  
746 - <copies>1</copies>  
747 - <partitioning>  
748 - <method>none</method>  
749 - <schema_name/>  
750 - </partitioning>  
751 -<send_true_to>&#x8f66;&#x8f86;id&#x67e5;&#x8be2;</send_true_to>  
752 -<send_false_to/>  
753 - <compare>  
754 -<condition>  
755 - <negated>N</negated>  
756 - <leftvalue>xlid</leftvalue>  
757 - <function>IS NOT NULL</function>  
758 - <rightvalue/>  
759 - </condition>  
760 - </compare>  
761 - <cluster_schema/>  
762 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
763 - <xloc>563</xloc>  
764 - <yloc>57</yloc>  
765 - <draw>Y</draw>  
766 - </GUI>  
767 - </step>  
768 -  
769 - <step>  
770 - <name>&#x8fc7;&#x6ee4;&#x8f66;&#x8f86;id&#x4e3a;&#x7a7a;&#x8bb0;&#x5f55;</name>  
771 - <type>FilterRows</type>  
772 - <description/>  
773 - <distribute>Y</distribute>  
774 - <custom_distribution/>  
775 - <copies>1</copies>  
776 - <partitioning>  
777 - <method>none</method>  
778 - <schema_name/>  
779 - </partitioning>  
780 -<send_true_to>&#x65e5;&#x671f;&#x8f6c;&#x6362;</send_true_to>  
781 -<send_false_to/>  
782 - <compare>  
783 -<condition>  
784 - <negated>N</negated>  
785 - <leftvalue>clid</leftvalue>  
786 - <function>IS NOT NULL</function>  
787 - <rightvalue/>  
788 - </condition>  
789 - </compare>  
790 - <cluster_schema/>  
791 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
792 - <xloc>566</xloc>  
793 - <yloc>137</yloc>  
794 - <draw>Y</draw>  
795 - </GUI>  
796 - </step>  
797 -  
798 - <step>  
799 - <name>&#x9519;&#x8bef;&#x8f93;&#x51fa;</name>  
800 - <type>ExcelOutput</type>  
801 - <description/>  
802 - <distribute>Y</distribute>  
803 - <custom_distribution/>  
804 - <copies>1</copies>  
805 - <partitioning>  
806 - <method>none</method>  
807 - <schema_name/>  
808 - </partitioning>  
809 - <header>Y</header>  
810 - <footer>N</footer>  
811 - <encoding>UTF-8</encoding>  
812 - <append>N</append>  
813 - <add_to_result_filenames>Y</add_to_result_filenames>  
814 - <file>  
815 - <name>&#x24;&#x7b;erroroutputdir&#x7d;&#x2f;&#x5f53;&#x524d;&#x914d;&#x8f66;_&#x9519;&#x8bef;</name>  
816 - <extention>xls</extention>  
817 - <do_not_open_newfile_init>N</do_not_open_newfile_init>  
818 - <create_parent_folder>N</create_parent_folder>  
819 - <split>N</split>  
820 - <add_date>N</add_date>  
821 - <add_time>N</add_time>  
822 - <SpecifyFormat>N</SpecifyFormat>  
823 - <date_time_format/>  
824 - <sheetname>Sheet1</sheetname>  
825 - <autosizecolums>N</autosizecolums>  
826 - <nullisblank>N</nullisblank>  
827 - <protect_sheet>N</protect_sheet>  
828 - <password>Encrypted </password>  
829 - <splitevery>0</splitevery>  
830 - <usetempfiles>N</usetempfiles>  
831 - <tempdirectory/>  
832 - </file>  
833 - <template>  
834 - <enabled>N</enabled>  
835 - <append>N</append>  
836 - <filename>template.xls</filename>  
837 - </template>  
838 - <fields>  
839 - <field>  
840 - <name>&#x7ebf;&#x8def;</name>  
841 - <type>String</type>  
842 - <format/>  
843 - </field>  
844 - <field>  
845 - <name>&#x5185;&#x90e8;&#x7f16;&#x7801;</name>  
846 - <type>String</type>  
847 - <format/>  
848 - </field>  
849 - <field>  
850 - <name>&#x542f;&#x7528;&#x65e5;&#x671f;</name>  
851 - <type>Timestamp</type>  
852 - <format/>  
853 - </field>  
854 - <field>  
855 - <name>&#x7ec8;&#x7ed3;&#x65e5;&#x671f;</name>  
856 - <type>Timestamp</type>  
857 - <format/>  
858 - </field>  
859 - <field>  
860 - <name>&#x505c;&#x8f66;&#x70b9;</name>  
861 - <type>String</type>  
862 - <format/>  
863 - </field>  
864 - <field>  
865 - <name>isCancel</name>  
866 - <type>Integer</type>  
867 - <format/>  
868 - </field>  
869 - <field>  
870 - <name>xlid</name>  
871 - <type>Integer</type>  
872 - <format/>  
873 - </field>  
874 - <field>  
875 - <name>clid</name>  
876 - <type>Integer</type>  
877 - <format/>  
878 - </field>  
879 - <field>  
880 - <name>isswitch</name>  
881 - <type>Integer</type>  
882 - <format/>  
883 - </field>  
884 - <field>  
885 - <name>error_count</name>  
886 - <type>Integer</type>  
887 - <format/>  
888 - </field>  
889 - <field>  
890 - <name>error_desc</name>  
891 - <type>String</type>  
892 - <format/>  
893 - </field>  
894 - <field>  
895 - <name>error_column1</name>  
896 - <type>String</type>  
897 - <format/>  
898 - </field>  
899 - <field>  
900 - <name>error_column2</name>  
901 - <type>String</type>  
902 - <format/>  
903 - </field>  
904 - </fields>  
905 - <custom>  
906 - <header_font_name>arial</header_font_name>  
907 - <header_font_size>10</header_font_size>  
908 - <header_font_bold>N</header_font_bold>  
909 - <header_font_italic>N</header_font_italic>  
910 - <header_font_underline>no</header_font_underline>  
911 - <header_font_orientation>horizontal</header_font_orientation>  
912 - <header_font_color>black</header_font_color>  
913 - <header_background_color>none</header_background_color>  
914 - <header_row_height>255</header_row_height>  
915 - <header_alignment>left</header_alignment>  
916 - <header_image/>  
917 - <row_font_name>arial</row_font_name>  
918 - <row_font_size>10</row_font_size>  
919 - <row_font_color>black</row_font_color>  
920 - <row_background_color>none</row_background_color>  
921 - </custom>  
922 - <cluster_schema/>  
923 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
924 - <xloc>807</xloc>  
925 - <yloc>353</yloc>  
926 - <draw>Y</draw>  
927 - </GUI>  
928 - </step>  
929 -  
930 - <step_error_handling>  
931 - <error>  
932 - <source_step>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ccinfo</source_step>  
933 - <target_step>&#x9519;&#x8bef;&#x8f93;&#x51fa;</target_step>  
934 - <is_enabled>Y</is_enabled>  
935 - <nr_valuename>error_count</nr_valuename>  
936 - <descriptions_valuename>error_desc</descriptions_valuename>  
937 - <fields_valuename>error_column1</fields_valuename>  
938 - <codes_valuename>error_column2</codes_valuename>  
939 - <max_errors/>  
940 - <max_pct_errors/>  
941 - <min_pct_rows/>  
942 - </error>  
943 - </step_error_handling>  
944 - <slave-step-copy-partition-distribution>  
945 -</slave-step-copy-partition-distribution>  
946 - <slave_transformation>N</slave_transformation>  
947 -  
948 -</transformation> 1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<transformation>
  3 + <info>
  4 + <name>&#x8f66;&#x8f86;&#x914d;&#x7f6e;&#x4fe1;&#x606f;&#x5bfc;&#x5165;</name>
  5 + <description>&#x8f66;&#x8f86;&#x914d;&#x7f6e;&#x4fe1;&#x606f;&#x5bfc;&#x5165;</description>
  6 + <extended_description>&#x914d;&#x8f66;&#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 13&#x3a;15&#x3a;32.118</created_date>
  81 + <modified_user>-</modified_user>
  82 + <modified_date>2016&#x2f;06&#x2f;29 13&#x3a;15&#x3a;32.118</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>&#x8fd9;&#x91cc;&#x6709;&#x4e9b;&#x95ee;&#x9898;&#xa;&#x5728;window2012&#x7684;&#x73af;&#x5883;&#x4e0b;&#xff0c;&#xa;MySql&#x6570;&#x636e;&#x5e93;&#x67e5;&#x8be2;&#x4e2d;&#x5982;&#x679c;&#x8fd4;&#x56de;&#x4e2d;&#x6587;&#x5185;&#x5bb9;&#x7684;&#x5b57;&#x6bb5;&#xff0c;&#x8fd9;&#x4e2a;&#x5185;&#x5bb9;&#x4e71;&#x7801;&#xa;&#x89e3;&#x51b3;&#x529e;&#x6cd5;&#xff0c;&#x5c31;&#x662f;&#x6570;&#x636e;&#x5e93;&#x67e5;&#x8be2;&#x5168;&#x90e8;&#x7f13;&#x5b58;&#xff0c;&#x5c31;&#x4e0d;&#x4e71;&#x7801;&#xa;linux&#x73af;&#x5883;&#x4e0b;&#x6ca1;&#x95ee;&#x9898;&#xa;</note>
  89 + <xloc>40</xloc>
  90 + <yloc>238</yloc>
  91 + <width>333</width>
  92 + <heigth>106</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>192.168.168.1_jwgl_dw</name>
  111 + <server>192.168.168.1</server>
  112 + <type>ORACLE</type>
  113 + <access>Native</access>
  114 + <database>orcl</database>
  115 + <port>1521</port>
  116 + <username>jwgl_dw</username>
  117 + <password>Encrypted 2be98afc86aa7f2e4cb13b977d2adabcd</password>
  118 + <servername/>
  119 + <data_tablespace/>
  120 + <index_tablespace/>
  121 + <attributes>
  122 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  123 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  124 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  125 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  126 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  127 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  128 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  129 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  130 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  131 + </attributes>
  132 + </connection>
  133 + <connection>
  134 + <name>bus_control_variable</name>
  135 + <server>&#x24;&#x7b;v_db_ip&#x7d;</server>
  136 + <type>MYSQL</type>
  137 + <access>Native</access>
  138 + <database>&#x24;&#x7b;v_db_dname&#x7d;</database>
  139 + <port>3306</port>
  140 + <username>&#x24;&#x7b;v_db_uname&#x7d;</username>
  141 + <password>&#x24;&#x7b;v_db_pwd&#x7d;</password>
  142 + <servername/>
  143 + <data_tablespace/>
  144 + <index_tablespace/>
  145 + <attributes>
  146 + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
  147 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  148 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  149 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  150 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  151 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  152 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  153 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  154 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  155 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  156 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  157 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  158 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  159 + </attributes>
  160 + </connection>
  161 + <connection>
  162 + <name>bus_control_&#x516c;&#x53f8;_201</name>
  163 + <server>localhost</server>
  164 + <type>MYSQL</type>
  165 + <access>Native</access>
  166 + <database>control</database>
  167 + <port>3306</port>
  168 + <username>root</username>
  169 + <password>Encrypted </password>
  170 + <servername/>
  171 + <data_tablespace/>
  172 + <index_tablespace/>
  173 + <attributes>
  174 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  175 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  176 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  177 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  178 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  179 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  180 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  181 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  182 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  183 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  184 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  185 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  186 + </attributes>
  187 + </connection>
  188 + <connection>
  189 + <name>bus_control_&#x672c;&#x673a;</name>
  190 + <server>localhost</server>
  191 + <type>MYSQL</type>
  192 + <access>Native</access>
  193 + <database>control</database>
  194 + <port>3306</port>
  195 + <username>root</username>
  196 + <password>Encrypted </password>
  197 + <servername/>
  198 + <data_tablespace/>
  199 + <index_tablespace/>
  200 + <attributes>
  201 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  202 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  203 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  204 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  205 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  206 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  207 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  208 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  209 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  210 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  211 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  212 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  213 + </attributes>
  214 + </connection>
  215 + <connection>
  216 + <name>control_jndi</name>
  217 + <server/>
  218 + <type>MYSQL</type>
  219 + <access>JNDI</access>
  220 + <database>control_jndi</database>
  221 + <port>1521</port>
  222 + <username/>
  223 + <password>Encrypted </password>
  224 + <servername/>
  225 + <data_tablespace/>
  226 + <index_tablespace/>
  227 + <attributes>
  228 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  229 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  230 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  231 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  232 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  233 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  234 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  235 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  236 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  237 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  238 + </attributes>
  239 + </connection>
  240 + <connection>
  241 + <name>JGJW_VM</name>
  242 + <server>192.168.198.240</server>
  243 + <type>ORACLE</type>
  244 + <access>Native</access>
  245 + <database>orcl</database>
  246 + <port>1521</port>
  247 + <username>jwgl</username>
  248 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d485a8d6</password>
  249 + <servername/>
  250 + <data_tablespace/>
  251 + <index_tablespace/>
  252 + <attributes>
  253 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  254 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  255 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  256 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  257 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  258 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  259 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  260 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  261 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  262 + </attributes>
  263 + </connection>
  264 + <connection>
  265 + <name>NHJW_VM</name>
  266 + <server>192.168.198.240</server>
  267 + <type>ORACLE</type>
  268 + <access>Native</access>
  269 + <database>orcl</database>
  270 + <port>1521</port>
  271 + <username>nhjw</username>
  272 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d09aa5cd</password>
  273 + <servername/>
  274 + <data_tablespace/>
  275 + <index_tablespace/>
  276 + <attributes>
  277 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  278 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  279 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  280 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  281 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  282 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  283 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  284 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  285 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  286 + </attributes>
  287 + </connection>
  288 + <connection>
  289 + <name>PDGJ_VM</name>
  290 + <server>192.168.198.240</server>
  291 + <type>ORACLE</type>
  292 + <access>Native</access>
  293 + <database>orcl</database>
  294 + <port>1521</port>
  295 + <username>pdgj</username>
  296 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10ce96a8d0</password>
  297 + <servername/>
  298 + <data_tablespace/>
  299 + <index_tablespace/>
  300 + <attributes>
  301 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  302 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  303 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  304 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  305 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  306 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  307 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  308 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  309 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  310 + </attributes>
  311 + </connection>
  312 + <connection>
  313 + <name>repair_dw_mysql_jndi</name>
  314 + <server/>
  315 + <type>MYSQL</type>
  316 + <access>JNDI</access>
  317 + <database>repair_dw_mysql</database>
  318 + <port>1521</port>
  319 + <username/>
  320 + <password>Encrypted </password>
  321 + <servername/>
  322 + <data_tablespace/>
  323 + <index_tablespace/>
  324 + <attributes>
  325 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  326 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  327 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  328 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  329 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  330 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  331 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  332 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  333 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  334 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  335 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  336 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  337 + </attributes>
  338 + </connection>
  339 + <connection>
  340 + <name>repair_dw&#xff08;&#x672c;&#x673a;&#xff09;</name>
  341 + <server>localhost</server>
  342 + <type>MYSQL</type>
  343 + <access>Native</access>
  344 + <database>ruoyi-vue-3.5</database>
  345 + <port>3306</port>
  346 + <username>root</username>
  347 + <password>Encrypted </password>
  348 + <servername/>
  349 + <data_tablespace/>
  350 + <index_tablespace/>
  351 + <attributes>
  352 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  353 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  354 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  355 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  356 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  357 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  358 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  359 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  360 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  361 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  362 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  363 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  364 + </attributes>
  365 + </connection>
  366 + <connection>
  367 + <name>repair_real_h2</name>
  368 + <server/>
  369 + <type>H2</type>
  370 + <access>JNDI</access>
  371 + <database>repair_real_h2</database>
  372 + <port>1521</port>
  373 + <username/>
  374 + <password>Encrypted </password>
  375 + <servername/>
  376 + <data_tablespace/>
  377 + <index_tablespace/>
  378 + <attributes>
  379 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  380 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  381 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  382 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  383 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  384 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  385 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  386 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  387 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  388 + </attributes>
  389 + </connection>
  390 + <connection>
  391 + <name>SNJW_VM</name>
  392 + <server>192.168.198.240</server>
  393 + <type>ORACLE</type>
  394 + <access>Native</access>
  395 + <database>orcl</database>
  396 + <port>1521</port>
  397 + <username>snjw</username>
  398 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10cd9ca5cd</password>
  399 + <servername/>
  400 + <data_tablespace/>
  401 + <index_tablespace/>
  402 + <attributes>
  403 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  404 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  405 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  406 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  407 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  408 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  409 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  410 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  411 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  412 + </attributes>
  413 + </connection>
  414 + <connection>
  415 + <name>test_control&#xff08;&#x672c;&#x673a;&#xff09;</name>
  416 + <server>127.0.0.1</server>
  417 + <type>MYSQL</type>
  418 + <access>Native</access>
  419 + <database>test_control</database>
  420 + <port>3306</port>
  421 + <username>root</username>
  422 + <password>Encrypted </password>
  423 + <servername/>
  424 + <data_tablespace/>
  425 + <index_tablespace/>
  426 + <attributes>
  427 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  428 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  429 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  430 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  431 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  432 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  433 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  434 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  435 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  436 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  437 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  438 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  439 + </attributes>
  440 + </connection>
  441 + <connection>
  442 + <name>xlab_mysql_youle</name>
  443 + <server>101.231.124.8</server>
  444 + <type>MYSQL</type>
  445 + <access>Native</access>
  446 + <database>xlab_youle</database>
  447 + <port>45687</port>
  448 + <username>xlab-youle</username>
  449 + <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password>
  450 + <servername/>
  451 + <data_tablespace/>
  452 + <index_tablespace/>
  453 + <attributes>
  454 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  455 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  456 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  457 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  458 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  459 + <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute>
  460 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  461 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  462 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  463 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  464 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  465 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  466 + </attributes>
  467 + </connection>
  468 + <connection>
  469 + <name>xlab_mysql_youle&#xff08;&#x672c;&#x673a;&#xff09;</name>
  470 + <server>localhost</server>
  471 + <type>MYSQL</type>
  472 + <access>Native</access>
  473 + <database>xlab_youle</database>
  474 + <port>3306</port>
  475 + <username>root</username>
  476 + <password>Encrypted </password>
  477 + <servername/>
  478 + <data_tablespace/>
  479 + <index_tablespace/>
  480 + <attributes>
  481 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  482 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  483 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  484 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  485 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  486 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  487 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  488 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  489 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  490 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  491 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  492 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  493 + </attributes>
  494 + </connection>
  495 + <connection>
  496 + <name>xlab_youle</name>
  497 + <server/>
  498 + <type>MYSQL</type>
  499 + <access>JNDI</access>
  500 + <database>xlab_youle</database>
  501 + <port>1521</port>
  502 + <username/>
  503 + <password>Encrypted </password>
  504 + <servername/>
  505 + <data_tablespace/>
  506 + <index_tablespace/>
  507 + <attributes>
  508 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  509 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  510 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  511 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  512 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  513 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  514 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  515 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  516 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  517 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  518 + </attributes>
  519 + </connection>
  520 + <connection>
  521 + <name>YGJW_VM</name>
  522 + <server>192.168.198.240</server>
  523 + <type>ORACLE</type>
  524 + <access>Native</access>
  525 + <database>orcl</database>
  526 + <port>1521</port>
  527 + <username>ygjw</username>
  528 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10c795a5cd</password>
  529 + <servername/>
  530 + <data_tablespace/>
  531 + <index_tablespace/>
  532 + <attributes>
  533 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  534 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  535 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  536 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  537 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  538 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  539 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  540 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  541 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  542 + </attributes>
  543 + </connection>
  544 + <connection>
  545 + <name>&#x516c;&#x53f8;jgjw</name>
  546 + <server>192.168.168.1</server>
  547 + <type>ORACLE</type>
  548 + <access>Native</access>
  549 + <database>orcl</database>
  550 + <port>1521</port>
  551 + <username>jwgl</username>
  552 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d485a8d6</password>
  553 + <servername/>
  554 + <data_tablespace/>
  555 + <index_tablespace/>
  556 + <attributes>
  557 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  558 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  559 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  560 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  561 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  562 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  563 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  564 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  565 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  566 + </attributes>
  567 + </connection>
  568 + <connection>
  569 + <name>&#x516c;&#x53f8;snjw</name>
  570 + <server>192.168.168.1</server>
  571 + <type>ORACLE</type>
  572 + <access>Native</access>
  573 + <database>orcl</database>
  574 + <port>1521</port>
  575 + <username>snjw</username>
  576 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10cd9ca5cd</password>
  577 + <servername/>
  578 + <data_tablespace/>
  579 + <index_tablespace/>
  580 + <attributes>
  581 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  582 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  583 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  584 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  585 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  586 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  587 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  588 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  589 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  590 + </attributes>
  591 + </connection>
  592 + <connection>
  593 + <name>&#x516c;&#x53f8;ygjw</name>
  594 + <server>192.168.168.1</server>
  595 + <type>ORACLE</type>
  596 + <access>Native</access>
  597 + <database>orcl</database>
  598 + <port>1521</port>
  599 + <username>ygjw</username>
  600 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10c795a5cd</password>
  601 + <servername/>
  602 + <data_tablespace/>
  603 + <index_tablespace/>
  604 + <attributes>
  605 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  606 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  607 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  608 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  609 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  610 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  611 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  612 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  613 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  614 + </attributes>
  615 + </connection>
  616 + <order>
  617 + <hop> <from>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ccinfo</from><to>&#x9519;&#x8bef;&#x8f93;&#x51fa;</to><enabled>Y</enabled> </hop>
  618 + <hop> <from>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</from><to>&#x539f;&#x59cb;&#x7cfb;&#x7edf;&#x5bfc;&#x51fa;&#x7684;Excel&#x8f93;&#x5165;</to><enabled>Y</enabled> </hop>
  619 + <hop> <from>&#x539f;&#x59cb;&#x7cfb;&#x7edf;&#x5bfc;&#x51fa;&#x7684;Excel&#x8f93;&#x5165;</from><to>&#x542f;&#x7528;&#x88ab;&#x6570;&#x636e;flag</to><enabled>Y</enabled> </hop>
  620 + <hop> <from>&#x542f;&#x7528;&#x88ab;&#x6570;&#x636e;flag</from><to>&#x7ebf;&#x8def;id&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>
  621 + <hop> <from>&#x7ebf;&#x8def;id&#x67e5;&#x8be2;</from><to>&#x8fc7;&#x6ee4;&#x7ebf;&#x8def;id&#x4e3a;&#x7a7a;&#x8bb0;&#x5f55;</to><enabled>Y</enabled> </hop>
  622 + <hop> <from>&#x8fc7;&#x6ee4;&#x7ebf;&#x8def;id&#x4e3a;&#x7a7a;&#x8bb0;&#x5f55;</from><to>&#x8f66;&#x8f86;id&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>
  623 + <hop> <from>&#x8f66;&#x8f86;id&#x67e5;&#x8be2;</from><to>&#x8fc7;&#x6ee4;&#x8f66;&#x8f86;id&#x4e3a;&#x7a7a;&#x8bb0;&#x5f55;</to><enabled>Y</enabled> </hop>
  624 + <hop> <from>&#x8fc7;&#x6ee4;&#x8f66;&#x8f86;id&#x4e3a;&#x7a7a;&#x8bb0;&#x5f55;</from><to>&#x65e5;&#x671f;&#x8f6c;&#x6362;</to><enabled>Y</enabled> </hop>
  625 + <hop> <from>&#x65e5;&#x671f;&#x8f6c;&#x6362;</from><to>&#x662f;&#x5426;&#x5207;&#x6362;</to><enabled>Y</enabled> </hop>
  626 + <hop> <from>&#x662f;&#x5426;&#x5207;&#x6362;</from><to>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ccinfo</to><enabled>Y</enabled> </hop>
  627 + </order>
  628 + <step>
  629 + <name>&#x539f;&#x59cb;&#x7cfb;&#x7edf;&#x5bfc;&#x51fa;&#x7684;Excel&#x8f93;&#x5165;</name>
  630 + <type>ExcelInput</type>
  631 + <description/>
  632 + <distribute>Y</distribute>
  633 + <custom_distribution/>
  634 + <copies>1</copies>
  635 + <partitioning>
  636 + <method>none</method>
  637 + <schema_name/>
  638 + </partitioning>
  639 + <header>Y</header>
  640 + <noempty>Y</noempty>
  641 + <stoponempty>N</stoponempty>
  642 + <filefield/>
  643 + <sheetfield/>
  644 + <sheetrownumfield/>
  645 + <rownumfield/>
  646 + <sheetfield/>
  647 + <filefield/>
  648 + <limit>0</limit>
  649 + <encoding/>
  650 + <add_to_result_filenames>Y</add_to_result_filenames>
  651 + <accept_filenames>Y</accept_filenames>
  652 + <accept_field>filepath_</accept_field>
  653 + <accept_stepname>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</accept_stepname>
  654 + <file>
  655 + <name/>
  656 + <filemask/>
  657 + <exclude_filemask/>
  658 + <file_required>N</file_required>
  659 + <include_subfolders>N</include_subfolders>
  660 + </file>
  661 + <fields>
  662 + <field>
  663 + <name>&#x7ebf;&#x8def;</name>
  664 + <type>String</type>
  665 + <length>-1</length>
  666 + <precision>-1</precision>
  667 + <trim_type>none</trim_type>
  668 + <repeat>N</repeat>
  669 + <format/>
  670 + <currency/>
  671 + <decimal/>
  672 + <group/>
  673 + </field>
  674 + <field>
  675 + <name>&#x5185;&#x90e8;&#x7f16;&#x7801;</name>
  676 + <type>String</type>
  677 + <length>-1</length>
  678 + <precision>-1</precision>
  679 + <trim_type>none</trim_type>
  680 + <repeat>N</repeat>
  681 + <format>&#x23;</format>
  682 + <currency/>
  683 + <decimal/>
  684 + <group/>
  685 + </field>
  686 + <field>
  687 + <name>&#x542f;&#x7528;&#x65e5;&#x671f;</name>
  688 + <type>String</type>
  689 + <length>-1</length>
  690 + <precision>-1</precision>
  691 + <trim_type>none</trim_type>
  692 + <repeat>N</repeat>
  693 + <format/>
  694 + <currency/>
  695 + <decimal/>
  696 + <group/>
  697 + </field>
  698 + <field>
  699 + <name>&#x7ec8;&#x7ed3;&#x65e5;&#x671f;</name>
  700 + <type>String</type>
  701 + <length>-1</length>
  702 + <precision>-1</precision>
  703 + <trim_type>none</trim_type>
  704 + <repeat>N</repeat>
  705 + <format/>
  706 + <currency/>
  707 + <decimal/>
  708 + <group/>
  709 + </field>
  710 + <field>
  711 + <name>&#x505c;&#x8f66;&#x70b9;</name>
  712 + <type>String</type>
  713 + <length>-1</length>
  714 + <precision>-1</precision>
  715 + <trim_type>none</trim_type>
  716 + <repeat>N</repeat>
  717 + <format/>
  718 + <currency/>
  719 + <decimal/>
  720 + <group/>
  721 + </field>
  722 + </fields>
  723 + <sheets>
  724 + <sheet>
  725 + <name>&#x5de5;&#x4f5c;&#x8868;1</name>
  726 + <startrow>0</startrow>
  727 + <startcol>0</startcol>
  728 + </sheet>
  729 + </sheets>
  730 + <strict_types>N</strict_types>
  731 + <error_ignored>N</error_ignored>
  732 + <error_line_skipped>N</error_line_skipped>
  733 + <bad_line_files_destination_directory/>
  734 + <bad_line_files_extension>warning</bad_line_files_extension>
  735 + <error_line_files_destination_directory/>
  736 + <error_line_files_extension>error</error_line_files_extension>
  737 + <line_number_files_destination_directory/>
  738 + <line_number_files_extension>line</line_number_files_extension>
  739 + <shortFileFieldName/>
  740 + <pathFieldName/>
  741 + <hiddenFieldName/>
  742 + <lastModificationTimeFieldName/>
  743 + <uriNameFieldName/>
  744 + <rootUriNameFieldName/>
  745 + <extensionFieldName/>
  746 + <sizeFieldName/>
  747 + <spreadsheet_type>JXL</spreadsheet_type>
  748 + <cluster_schema/>
  749 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  750 + <xloc>155</xloc>
  751 + <yloc>56</yloc>
  752 + <draw>Y</draw>
  753 + </GUI>
  754 + </step>
  755 +
  756 + <step>
  757 + <name>&#x542f;&#x7528;&#x88ab;&#x6570;&#x636e;flag</name>
  758 + <type>Constant</type>
  759 + <description/>
  760 + <distribute>Y</distribute>
  761 + <custom_distribution/>
  762 + <copies>1</copies>
  763 + <partitioning>
  764 + <method>none</method>
  765 + <schema_name/>
  766 + </partitioning>
  767 + <fields>
  768 + <field>
  769 + <name>isCancel</name>
  770 + <type>Integer</type>
  771 + <format/>
  772 + <currency/>
  773 + <decimal/>
  774 + <group/>
  775 + <nullif>0</nullif>
  776 + <length>-1</length>
  777 + <precision>-1</precision>
  778 + <set_empty_string>N</set_empty_string>
  779 + </field>
  780 + </fields>
  781 + <cluster_schema/>
  782 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  783 + <xloc>315</xloc>
  784 + <yloc>57</yloc>
  785 + <draw>Y</draw>
  786 + </GUI>
  787 + </step>
  788 +
  789 + <step>
  790 + <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ccinfo</name>
  791 + <type>InsertUpdate</type>
  792 + <description/>
  793 + <distribute>Y</distribute>
  794 + <custom_distribution/>
  795 + <copies>1</copies>
  796 + <partitioning>
  797 + <method>none</method>
  798 + <schema_name/>
  799 + </partitioning>
  800 + <connection>control_jndi</connection>
  801 + <commit>100</commit>
  802 + <update_bypassed>N</update_bypassed>
  803 + <lookup>
  804 + <schema/>
  805 + <table>bsth_c_s_ccinfo</table>
  806 + <key>
  807 + <name>xlid</name>
  808 + <field>xl</field>
  809 + <condition>&#x3d;</condition>
  810 + <name2/>
  811 + </key>
  812 + <key>
  813 + <name>clid</name>
  814 + <field>cl</field>
  815 + <condition>&#x3d;</condition>
  816 + <name2/>
  817 + </key>
  818 + <key>
  819 + <name>isCancel</name>
  820 + <field>is_cancel</field>
  821 + <condition>&#x3d;</condition>
  822 + <name2/>
  823 + </key>
  824 + <value>
  825 + <name>xl</name>
  826 + <rename>xlId</rename>
  827 + <update>N</update>
  828 + </value>
  829 + <value>
  830 + <name>cl</name>
  831 + <rename>clId</rename>
  832 + <update>N</update>
  833 + </value>
  834 + <value>
  835 + <name>is_switch</name>
  836 + <rename>isswitch</rename>
  837 + <update>N</update>
  838 + </value>
  839 + <value>
  840 + <name>tcd</name>
  841 + <rename>&#x505c;&#x8f66;&#x70b9;</rename>
  842 + <update>N</update>
  843 + </value>
  844 + <value>
  845 + <name>zzrq</name>
  846 + <rename>&#x7ec8;&#x7ed3;&#x65e5;&#x671f;</rename>
  847 + <update>N</update>
  848 + </value>
  849 + <value>
  850 + <name>qyrq</name>
  851 + <rename>&#x542f;&#x7528;&#x65e5;&#x671f;</rename>
  852 + <update>N</update>
  853 + </value>
  854 + <value>
  855 + <name>is_cancel</name>
  856 + <rename>isCancel</rename>
  857 + <update>N</update>
  858 + </value>
  859 + </lookup>
  860 + <cluster_schema/>
  861 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  862 + <xloc>804</xloc>
  863 + <yloc>236</yloc>
  864 + <draw>Y</draw>
  865 + </GUI>
  866 + </step>
  867 +
  868 + <step>
  869 + <name>&#x65e5;&#x671f;&#x8f6c;&#x6362;</name>
  870 + <type>SelectValues</type>
  871 + <description/>
  872 + <distribute>Y</distribute>
  873 + <custom_distribution/>
  874 + <copies>1</copies>
  875 + <partitioning>
  876 + <method>none</method>
  877 + <schema_name/>
  878 + </partitioning>
  879 + <fields> <select_unspecified>N</select_unspecified>
  880 + <meta> <name>&#x542f;&#x7528;&#x65e5;&#x671f;</name>
  881 + <rename>&#x542f;&#x7528;&#x65e5;&#x671f;</rename>
  882 + <type>Timestamp</type>
  883 + <length>-2</length>
  884 + <precision>-2</precision>
  885 + <conversion_mask>yyyy-MM-dd</conversion_mask>
  886 + <date_format_lenient>false</date_format_lenient>
  887 + <date_format_locale/>
  888 + <date_format_timezone/>
  889 + <lenient_string_to_number>false</lenient_string_to_number>
  890 + <encoding/>
  891 + <decimal_symbol/>
  892 + <grouping_symbol/>
  893 + <currency_symbol/>
  894 + <storage_type/>
  895 + </meta> <meta> <name>&#x7ec8;&#x7ed3;&#x65e5;&#x671f;</name>
  896 + <rename>&#x7ec8;&#x7ed3;&#x65e5;&#x671f;</rename>
  897 + <type>Timestamp</type>
  898 + <length>-2</length>
  899 + <precision>-2</precision>
  900 + <conversion_mask>yyyy-MM-dd</conversion_mask>
  901 + <date_format_lenient>false</date_format_lenient>
  902 + <date_format_locale/>
  903 + <date_format_timezone/>
  904 + <lenient_string_to_number>false</lenient_string_to_number>
  905 + <encoding/>
  906 + <decimal_symbol/>
  907 + <grouping_symbol/>
  908 + <currency_symbol/>
  909 + <storage_type/>
  910 + </meta> </fields> <cluster_schema/>
  911 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  912 + <xloc>703</xloc>
  913 + <yloc>136</yloc>
  914 + <draw>Y</draw>
  915 + </GUI>
  916 + </step>
  917 +
  918 + <step>
  919 + <name>&#x662f;&#x5426;&#x5207;&#x6362;</name>
  920 + <type>Constant</type>
  921 + <description/>
  922 + <distribute>Y</distribute>
  923 + <custom_distribution/>
  924 + <copies>1</copies>
  925 + <partitioning>
  926 + <method>none</method>
  927 + <schema_name/>
  928 + </partitioning>
  929 + <fields>
  930 + <field>
  931 + <name>isswitch</name>
  932 + <type>Integer</type>
  933 + <format/>
  934 + <currency/>
  935 + <decimal/>
  936 + <group/>
  937 + <nullif>0</nullif>
  938 + <length>-1</length>
  939 + <precision>-1</precision>
  940 + <set_empty_string>N</set_empty_string>
  941 + </field>
  942 + </fields>
  943 + <cluster_schema/>
  944 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  945 + <xloc>803</xloc>
  946 + <yloc>137</yloc>
  947 + <draw>Y</draw>
  948 + </GUI>
  949 + </step>
  950 +
  951 + <step>
  952 + <name>&#x7ebf;&#x8def;id&#x67e5;&#x8be2;</name>
  953 + <type>DBLookup</type>
  954 + <description/>
  955 + <distribute>Y</distribute>
  956 + <custom_distribution/>
  957 + <copies>1</copies>
  958 + <partitioning>
  959 + <method>none</method>
  960 + <schema_name/>
  961 + </partitioning>
  962 + <connection>control_jndi</connection>
  963 + <cache>Y</cache>
  964 + <cache_load_all>Y</cache_load_all>
  965 + <cache_size>0</cache_size>
  966 + <lookup>
  967 + <schema/>
  968 + <table>bsth_c_line</table>
  969 + <orderby/>
  970 + <fail_on_multiple>N</fail_on_multiple>
  971 + <eat_row_on_failure>N</eat_row_on_failure>
  972 + <key>
  973 + <name>&#x7ebf;&#x8def;</name>
  974 + <field>name</field>
  975 + <condition>&#x3d;</condition>
  976 + <name2/>
  977 + </key>
  978 + <key>
  979 + <name>isCancel</name>
  980 + <field>destroy</field>
  981 + <condition>&#x3d;</condition>
  982 + <name2/>
  983 + </key>
  984 + <value>
  985 + <name>id</name>
  986 + <rename>xlid</rename>
  987 + <default/>
  988 + <type>Integer</type>
  989 + </value>
  990 + </lookup>
  991 + <cluster_schema/>
  992 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  993 + <xloc>438</xloc>
  994 + <yloc>57</yloc>
  995 + <draw>Y</draw>
  996 + </GUI>
  997 + </step>
  998 +
  999 + <step>
  1000 + <name>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</name>
  1001 + <type>GetVariable</type>
  1002 + <description/>
  1003 + <distribute>Y</distribute>
  1004 + <custom_distribution/>
  1005 + <copies>1</copies>
  1006 + <partitioning>
  1007 + <method>none</method>
  1008 + <schema_name/>
  1009 + </partitioning>
  1010 + <fields>
  1011 + <field>
  1012 + <name>filepath_</name>
  1013 + <variable>&#x24;&#x7b;filepath&#x7d;</variable>
  1014 + <type>String</type>
  1015 + <format/>
  1016 + <currency/>
  1017 + <decimal/>
  1018 + <group/>
  1019 + <length>-1</length>
  1020 + <precision>-1</precision>
  1021 + <trim_type>none</trim_type>
  1022 + </field>
  1023 + <field>
  1024 + <name>erroroutputdir_</name>
  1025 + <variable>&#x24;&#x7b;erroroutputdir&#x7d;</variable>
  1026 + <type>String</type>
  1027 + <format/>
  1028 + <currency/>
  1029 + <decimal/>
  1030 + <group/>
  1031 + <length>-1</length>
  1032 + <precision>-1</precision>
  1033 + <trim_type>none</trim_type>
  1034 + </field>
  1035 + </fields>
  1036 + <cluster_schema/>
  1037 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1038 + <xloc>156</xloc>
  1039 + <yloc>150</yloc>
  1040 + <draw>Y</draw>
  1041 + </GUI>
  1042 + </step>
  1043 +
  1044 + <step>
  1045 + <name>&#x8f66;&#x8f86;id&#x67e5;&#x8be2;</name>
  1046 + <type>DBLookup</type>
  1047 + <description/>
  1048 + <distribute>Y</distribute>
  1049 + <custom_distribution/>
  1050 + <copies>1</copies>
  1051 + <partitioning>
  1052 + <method>none</method>
  1053 + <schema_name/>
  1054 + </partitioning>
  1055 + <connection>control_jndi</connection>
  1056 + <cache>Y</cache>
  1057 + <cache_load_all>Y</cache_load_all>
  1058 + <cache_size>0</cache_size>
  1059 + <lookup>
  1060 + <schema/>
  1061 + <table>bsth_c_cars</table>
  1062 + <orderby/>
  1063 + <fail_on_multiple>N</fail_on_multiple>
  1064 + <eat_row_on_failure>N</eat_row_on_failure>
  1065 + <key>
  1066 + <name>&#x5185;&#x90e8;&#x7f16;&#x7801;</name>
  1067 + <field>inside_code</field>
  1068 + <condition>&#x3d;</condition>
  1069 + <name2/>
  1070 + </key>
  1071 + <value>
  1072 + <name>id</name>
  1073 + <rename>clid</rename>
  1074 + <default/>
  1075 + <type>Integer</type>
  1076 + </value>
  1077 + </lookup>
  1078 + <cluster_schema/>
  1079 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1080 + <xloc>440</xloc>
  1081 + <yloc>138</yloc>
  1082 + <draw>Y</draw>
  1083 + </GUI>
  1084 + </step>
  1085 +
  1086 + <step>
  1087 + <name>&#x8fc7;&#x6ee4;&#x7ebf;&#x8def;id&#x4e3a;&#x7a7a;&#x8bb0;&#x5f55;</name>
  1088 + <type>FilterRows</type>
  1089 + <description/>
  1090 + <distribute>Y</distribute>
  1091 + <custom_distribution/>
  1092 + <copies>1</copies>
  1093 + <partitioning>
  1094 + <method>none</method>
  1095 + <schema_name/>
  1096 + </partitioning>
  1097 +<send_true_to>&#x8f66;&#x8f86;id&#x67e5;&#x8be2;</send_true_to>
  1098 +<send_false_to/>
  1099 + <compare>
  1100 +<condition>
  1101 + <negated>N</negated>
  1102 + <leftvalue>xlid</leftvalue>
  1103 + <function>IS NOT NULL</function>
  1104 + <rightvalue/>
  1105 + </condition>
  1106 + </compare>
  1107 + <cluster_schema/>
  1108 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1109 + <xloc>563</xloc>
  1110 + <yloc>57</yloc>
  1111 + <draw>Y</draw>
  1112 + </GUI>
  1113 + </step>
  1114 +
  1115 + <step>
  1116 + <name>&#x8fc7;&#x6ee4;&#x8f66;&#x8f86;id&#x4e3a;&#x7a7a;&#x8bb0;&#x5f55;</name>
  1117 + <type>FilterRows</type>
  1118 + <description/>
  1119 + <distribute>Y</distribute>
  1120 + <custom_distribution/>
  1121 + <copies>1</copies>
  1122 + <partitioning>
  1123 + <method>none</method>
  1124 + <schema_name/>
  1125 + </partitioning>
  1126 +<send_true_to>&#x65e5;&#x671f;&#x8f6c;&#x6362;</send_true_to>
  1127 +<send_false_to/>
  1128 + <compare>
  1129 +<condition>
  1130 + <negated>N</negated>
  1131 + <leftvalue>clid</leftvalue>
  1132 + <function>IS NOT NULL</function>
  1133 + <rightvalue/>
  1134 + </condition>
  1135 + </compare>
  1136 + <cluster_schema/>
  1137 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1138 + <xloc>566</xloc>
  1139 + <yloc>137</yloc>
  1140 + <draw>Y</draw>
  1141 + </GUI>
  1142 + </step>
  1143 +
  1144 + <step>
  1145 + <name>&#x9519;&#x8bef;&#x8f93;&#x51fa;</name>
  1146 + <type>ExcelOutput</type>
  1147 + <description/>
  1148 + <distribute>Y</distribute>
  1149 + <custom_distribution/>
  1150 + <copies>1</copies>
  1151 + <partitioning>
  1152 + <method>none</method>
  1153 + <schema_name/>
  1154 + </partitioning>
  1155 + <header>Y</header>
  1156 + <footer>N</footer>
  1157 + <encoding>UTF-8</encoding>
  1158 + <append>N</append>
  1159 + <add_to_result_filenames>Y</add_to_result_filenames>
  1160 + <file>
  1161 + <name>&#x24;&#x7b;erroroutputdir&#x7d;&#x2f;&#x5f53;&#x524d;&#x914d;&#x8f66;_&#x9519;&#x8bef;</name>
  1162 + <extention>xls</extention>
  1163 + <do_not_open_newfile_init>N</do_not_open_newfile_init>
  1164 + <create_parent_folder>N</create_parent_folder>
  1165 + <split>N</split>
  1166 + <add_date>N</add_date>
  1167 + <add_time>N</add_time>
  1168 + <SpecifyFormat>N</SpecifyFormat>
  1169 + <date_time_format/>
  1170 + <sheetname>Sheet1</sheetname>
  1171 + <autosizecolums>N</autosizecolums>
  1172 + <nullisblank>N</nullisblank>
  1173 + <protect_sheet>N</protect_sheet>
  1174 + <password>Encrypted </password>
  1175 + <splitevery>0</splitevery>
  1176 + <usetempfiles>N</usetempfiles>
  1177 + <tempdirectory/>
  1178 + </file>
  1179 + <template>
  1180 + <enabled>N</enabled>
  1181 + <append>N</append>
  1182 + <filename>template.xls</filename>
  1183 + </template>
  1184 + <fields>
  1185 + <field>
  1186 + <name>&#x7ebf;&#x8def;</name>
  1187 + <type>String</type>
  1188 + <format/>
  1189 + </field>
  1190 + <field>
  1191 + <name>&#x5185;&#x90e8;&#x7f16;&#x7801;</name>
  1192 + <type>String</type>
  1193 + <format/>
  1194 + </field>
  1195 + <field>
  1196 + <name>&#x542f;&#x7528;&#x65e5;&#x671f;</name>
  1197 + <type>Timestamp</type>
  1198 + <format/>
  1199 + </field>
  1200 + <field>
  1201 + <name>&#x7ec8;&#x7ed3;&#x65e5;&#x671f;</name>
  1202 + <type>Timestamp</type>
  1203 + <format/>
  1204 + </field>
  1205 + <field>
  1206 + <name>&#x505c;&#x8f66;&#x70b9;</name>
  1207 + <type>String</type>
  1208 + <format/>
  1209 + </field>
  1210 + <field>
  1211 + <name>isCancel</name>
  1212 + <type>Integer</type>
  1213 + <format/>
  1214 + </field>
  1215 + <field>
  1216 + <name>xlid</name>
  1217 + <type>Integer</type>
  1218 + <format/>
  1219 + </field>
  1220 + <field>
  1221 + <name>clid</name>
  1222 + <type>Integer</type>
  1223 + <format/>
  1224 + </field>
  1225 + <field>
  1226 + <name>isswitch</name>
  1227 + <type>Integer</type>
  1228 + <format/>
  1229 + </field>
  1230 + <field>
  1231 + <name>error_count</name>
  1232 + <type>Integer</type>
  1233 + <format/>
  1234 + </field>
  1235 + <field>
  1236 + <name>error_desc</name>
  1237 + <type>String</type>
  1238 + <format/>
  1239 + </field>
  1240 + <field>
  1241 + <name>error_column1</name>
  1242 + <type>String</type>
  1243 + <format/>
  1244 + </field>
  1245 + <field>
  1246 + <name>error_column2</name>
  1247 + <type>String</type>
  1248 + <format/>
  1249 + </field>
  1250 + </fields>
  1251 + <custom>
  1252 + <header_font_name>arial</header_font_name>
  1253 + <header_font_size>10</header_font_size>
  1254 + <header_font_bold>N</header_font_bold>
  1255 + <header_font_italic>N</header_font_italic>
  1256 + <header_font_underline>no</header_font_underline>
  1257 + <header_font_orientation>horizontal</header_font_orientation>
  1258 + <header_font_color>black</header_font_color>
  1259 + <header_background_color>none</header_background_color>
  1260 + <header_row_height>255</header_row_height>
  1261 + <header_alignment>left</header_alignment>
  1262 + <header_image/>
  1263 + <row_font_name>arial</row_font_name>
  1264 + <row_font_size>10</row_font_size>
  1265 + <row_font_color>black</row_font_color>
  1266 + <row_background_color>none</row_background_color>
  1267 + </custom>
  1268 + <cluster_schema/>
  1269 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1270 + <xloc>807</xloc>
  1271 + <yloc>353</yloc>
  1272 + <draw>Y</draw>
  1273 + </GUI>
  1274 + </step>
  1275 +
  1276 + <step_error_handling>
  1277 + <error>
  1278 + <source_step>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ccinfo</source_step>
  1279 + <target_step>&#x9519;&#x8bef;&#x8f93;&#x51fa;</target_step>
  1280 + <is_enabled>Y</is_enabled>
  1281 + <nr_valuename>error_count</nr_valuename>
  1282 + <descriptions_valuename>error_desc</descriptions_valuename>
  1283 + <fields_valuename>error_column1</fields_valuename>
  1284 + <codes_valuename>error_column2</codes_valuename>
  1285 + <max_errors/>
  1286 + <max_pct_errors/>
  1287 + <min_pct_rows/>
  1288 + </error>
  1289 + </step_error_handling>
  1290 + <slave-step-copy-partition-distribution>
  1291 +</slave-step-copy-partition-distribution>
  1292 + <slave_transformation>N</slave_transformation>
  1293 +
  1294 +</transformation>
src/main/resources/datatools/ktrs/carsConfigDataOutput.ktr
1 -<?xml version="1.0" encoding="UTF-8"?>  
2 -<transformation>  
3 - <info>  
4 - <name>&#x8f66;&#x8f86;&#x914d;&#x7f6e;&#x4fe1;&#x606f;&#x5bfc;&#x51fa;</name>  
5 - <description/>  
6 - <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 - <parameter>  
18 - <name>templatepath</name>  
19 - <default_value/>  
20 - <description>&#x6a21;&#x7248;&#x6587;&#x4ef6;&#x8def;&#x5f84;</description>  
21 - </parameter>  
22 - <parameter>  
23 - <name>xlid</name>  
24 - <default_value/>  
25 - <description>&#x7ebf;&#x8def;id</description>  
26 - </parameter>  
27 - </parameters>  
28 - <log>  
29 -<trans-log-table><connection/>  
30 -<schema/>  
31 -<table/>  
32 -<size_limit_lines/>  
33 -<interval/>  
34 -<timeout_days/>  
35 -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STATUS</id><enabled>Y</enabled><name>STATUS</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name><subject/></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name><subject/></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name><subject/></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name><subject/></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name><subject/></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name><subject/></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>STARTDATE</id><enabled>Y</enabled><name>STARTDATE</name></field><field><id>ENDDATE</id><enabled>Y</enabled><name>ENDDATE</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>DEPDATE</id><enabled>Y</enabled><name>DEPDATE</name></field><field><id>REPLAYDATE</id><enabled>Y</enabled><name>REPLAYDATE</name></field><field><id>LOG_FIELD</id><enabled>Y</enabled><name>LOG_FIELD</name></field><field><id>EXECUTING_SERVER</id><enabled>N</enabled><name>EXECUTING_SERVER</name></field><field><id>EXECUTING_USER</id><enabled>N</enabled><name>EXECUTING_USER</name></field><field><id>CLIENT</id><enabled>N</enabled><name>CLIENT</name></field></trans-log-table>  
36 -<perf-log-table><connection/>  
37 -<schema/>  
38 -<table/>  
39 -<interval/>  
40 -<timeout_days/>  
41 -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>SEQ_NR</id><enabled>Y</enabled><name>SEQ_NR</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>INPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>INPUT_BUFFER_ROWS</name></field><field><id>OUTPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>OUTPUT_BUFFER_ROWS</name></field></perf-log-table>  
42 -<channel-log-table><connection/>  
43 -<schema/>  
44 -<table/>  
45 -<timeout_days/>  
46 -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>LOGGING_OBJECT_TYPE</id><enabled>Y</enabled><name>LOGGING_OBJECT_TYPE</name></field><field><id>OBJECT_NAME</id><enabled>Y</enabled><name>OBJECT_NAME</name></field><field><id>OBJECT_COPY</id><enabled>Y</enabled><name>OBJECT_COPY</name></field><field><id>REPOSITORY_DIRECTORY</id><enabled>Y</enabled><name>REPOSITORY_DIRECTORY</name></field><field><id>FILENAME</id><enabled>Y</enabled><name>FILENAME</name></field><field><id>OBJECT_ID</id><enabled>Y</enabled><name>OBJECT_ID</name></field><field><id>OBJECT_REVISION</id><enabled>Y</enabled><name>OBJECT_REVISION</name></field><field><id>PARENT_CHANNEL_ID</id><enabled>Y</enabled><name>PARENT_CHANNEL_ID</name></field><field><id>ROOT_CHANNEL_ID</id><enabled>Y</enabled><name>ROOT_CHANNEL_ID</name></field></channel-log-table>  
47 -<step-log-table><connection/>  
48 -<schema/>  
49 -<table/>  
50 -<timeout_days/>  
51 -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>LOG_FIELD</id><enabled>N</enabled><name>LOG_FIELD</name></field></step-log-table>  
52 -<metrics-log-table><connection/>  
53 -<schema/>  
54 -<table/>  
55 -<timeout_days/>  
56 -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>METRICS_DATE</id><enabled>Y</enabled><name>METRICS_DATE</name></field><field><id>METRICS_CODE</id><enabled>Y</enabled><name>METRICS_CODE</name></field><field><id>METRICS_DESCRIPTION</id><enabled>Y</enabled><name>METRICS_DESCRIPTION</name></field><field><id>METRICS_SUBJECT</id><enabled>Y</enabled><name>METRICS_SUBJECT</name></field><field><id>METRICS_TYPE</id><enabled>Y</enabled><name>METRICS_TYPE</name></field><field><id>METRICS_VALUE</id><enabled>Y</enabled><name>METRICS_VALUE</name></field></metrics-log-table>  
57 - </log>  
58 - <maxdate>  
59 - <connection/>  
60 - <table/>  
61 - <field/>  
62 - <offset>0.0</offset>  
63 - <maxdiff>0.0</maxdiff>  
64 - </maxdate>  
65 - <size_rowset>10000</size_rowset>  
66 - <sleep_time_empty>50</sleep_time_empty>  
67 - <sleep_time_full>50</sleep_time_full>  
68 - <unique_connections>N</unique_connections>  
69 - <feedback_shown>Y</feedback_shown>  
70 - <feedback_size>50000</feedback_size>  
71 - <using_thread_priorities>Y</using_thread_priorities>  
72 - <shared_objects_file/>  
73 - <capture_step_performance>N</capture_step_performance>  
74 - <step_performance_capturing_delay>1000</step_performance_capturing_delay>  
75 - <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit>  
76 - <dependencies>  
77 - </dependencies>  
78 - <partitionschemas>  
79 - </partitionschemas>  
80 - <slaveservers>  
81 - </slaveservers>  
82 - <clusterschemas>  
83 - </clusterschemas>  
84 - <created_user>-</created_user>  
85 - <created_date>2017&#x2f;01&#x2f;11 14&#x3a;14&#x3a;13.722</created_date>  
86 - <modified_user>-</modified_user>  
87 - <modified_date>2017&#x2f;01&#x2f;11 14&#x3a;14&#x3a;13.722</modified_date>  
88 - <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA&#x3d;</key_for_session_key>  
89 - <is_key_private>N</is_key_private>  
90 - </info>  
91 - <notepads>  
92 - <notepad>  
93 - <note>&#x8fd9;&#x91cc;&#x6709;&#x4e9b;&#x95ee;&#x9898;&#xa;&#x5728;window2012&#x7684;&#x73af;&#x5883;&#x4e0b;&#xff0c;&#xa;MySql&#x6570;&#x636e;&#x5e93;&#x67e5;&#x8be2;&#x4e2d;&#x5982;&#x679c;&#x8fd4;&#x56de;&#x4e2d;&#x6587;&#x5185;&#x5bb9;&#x7684;&#x5b57;&#x6bb5;&#xff0c;&#x8fd9;&#x4e2a;&#x5185;&#x5bb9;&#x4e71;&#x7801;&#xa;&#x89e3;&#x51b3;&#x529e;&#x6cd5;&#xff0c;&#x5c31;&#x662f;&#x6570;&#x636e;&#x5e93;&#x67e5;&#x8be2;&#x5168;&#x90e8;&#x7f13;&#x5b58;&#xff0c;&#x5c31;&#x4e0d;&#x4e71;&#x7801;&#xa;linux&#x73af;&#x5883;&#x4e0b;&#x6ca1;&#x95ee;&#x9898;</note>  
94 - <xloc>81</xloc>  
95 - <yloc>172</yloc>  
96 - <width>333</width>  
97 - <heigth>90</heigth>  
98 - <fontname>YaHei Consolas Hybrid</fontname>  
99 - <fontsize>12</fontsize>  
100 - <fontbold>N</fontbold>  
101 - <fontitalic>N</fontitalic>  
102 - <fontcolorred>0</fontcolorred>  
103 - <fontcolorgreen>0</fontcolorgreen>  
104 - <fontcolorblue>0</fontcolorblue>  
105 - <backgroundcolorred>255</backgroundcolorred>  
106 - <backgroundcolorgreen>205</backgroundcolorgreen>  
107 - <backgroundcolorblue>112</backgroundcolorblue>  
108 - <bordercolorred>100</bordercolorred>  
109 - <bordercolorgreen>100</bordercolorgreen>  
110 - <bordercolorblue>100</bordercolorblue>  
111 - <drawshadow>Y</drawshadow>  
112 - </notepad>  
113 - </notepads>  
114 - <connection>  
115 - <name>192.168.168.1_jwgl_dw</name>  
116 - <server>192.168.168.1</server>  
117 - <type>ORACLE</type>  
118 - <access>Native</access>  
119 - <database>orcl</database>  
120 - <port>1521</port>  
121 - <username>jwgl_dw</username>  
122 - <password>Encrypted 2be98afc86aa7f2e4cb13b977d2adabcd</password>  
123 - <servername/>  
124 - <data_tablespace/>  
125 - <index_tablespace/>  
126 - <attributes>  
127 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
128 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
129 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
130 - <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>  
131 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
132 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
133 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
134 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
135 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
136 - </attributes>  
137 - </connection>  
138 - <connection>  
139 - <name>bus_control_variable</name>  
140 - <server>&#x24;&#x7b;v_db_ip&#x7d;</server>  
141 - <type>MYSQL</type>  
142 - <access>Native</access>  
143 - <database>&#x24;&#x7b;v_db_dname&#x7d;</database>  
144 - <port>3306</port>  
145 - <username>&#x24;&#x7b;v_db_uname&#x7d;</username>  
146 - <password>&#x24;&#x7b;v_db_pwd&#x7d;</password>  
147 - <servername/>  
148 - <data_tablespace/>  
149 - <index_tablespace/>  
150 - <attributes>  
151 - <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>  
152 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
153 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
154 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
155 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
156 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
157 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
158 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
159 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
160 - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>  
161 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
162 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
163 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
164 - </attributes>  
165 - </connection>  
166 - <connection>  
167 - <name>bus_control_&#x516c;&#x53f8;_201</name>  
168 - <server>localhost</server>  
169 - <type>MYSQL</type>  
170 - <access>Native</access>  
171 - <database>control</database>  
172 - <port>3306</port>  
173 - <username>root</username>  
174 - <password>Encrypted </password>  
175 - <servername/>  
176 - <data_tablespace/>  
177 - <index_tablespace/>  
178 - <attributes>  
179 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
180 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
181 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
182 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
183 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
184 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
185 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
186 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
187 - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>  
188 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
189 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
190 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
191 - </attributes>  
192 - </connection>  
193 - <connection>  
194 - <name>bus_control_&#x672c;&#x673a;</name>  
195 - <server>localhost</server>  
196 - <type>MYSQL</type>  
197 - <access>Native</access>  
198 - <database>control</database>  
199 - <port>3306</port>  
200 - <username>root</username>  
201 - <password>Encrypted </password>  
202 - <servername/>  
203 - <data_tablespace/>  
204 - <index_tablespace/>  
205 - <attributes>  
206 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
207 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
208 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
209 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
210 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
211 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
212 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
213 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
214 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
215 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
216 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
217 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
218 - </attributes>  
219 - </connection>  
220 - <connection>  
221 - <name>xlab_mysql_youle</name>  
222 - <server>101.231.124.8</server>  
223 - <type>MYSQL</type>  
224 - <access>Native</access>  
225 - <database>xlab_youle</database>  
226 - <port>45687</port>  
227 - <username>xlab-youle</username>  
228 - <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password>  
229 - <servername/>  
230 - <data_tablespace/>  
231 - <index_tablespace/>  
232 - <attributes>  
233 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
234 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
235 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
236 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
237 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
238 - <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute>  
239 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
240 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
241 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
242 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>  
243 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>  
244 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
245 - </attributes>  
246 - </connection>  
247 - <connection>  
248 - <name>xlab_mysql_youle&#xff08;&#x672c;&#x673a;&#xff09;</name>  
249 - <server>localhost</server>  
250 - <type>MYSQL</type>  
251 - <access>Native</access>  
252 - <database>xlab_youle</database>  
253 - <port>3306</port>  
254 - <username>root</username>  
255 - <password>Encrypted </password>  
256 - <servername/>  
257 - <data_tablespace/>  
258 - <index_tablespace/>  
259 - <attributes>  
260 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
261 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
262 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
263 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
264 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
265 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
266 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
267 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
268 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
269 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>  
270 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>  
271 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
272 - </attributes>  
273 - </connection>  
274 - <connection>  
275 - <name>xlab_youle</name>  
276 - <server/>  
277 - <type>MYSQL</type>  
278 - <access>JNDI</access>  
279 - <database>xlab_youle</database>  
280 - <port>1521</port>  
281 - <username/>  
282 - <password>Encrypted </password>  
283 - <servername/>  
284 - <data_tablespace/>  
285 - <index_tablespace/>  
286 - <attributes>  
287 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
288 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
289 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
290 - <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>  
291 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
292 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
293 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
294 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
295 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
296 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
297 - </attributes>  
298 - </connection>  
299 - <order>  
300 - <hop> <from>&#x8f66;&#x8f86;&#x914d;&#x7f6e;&#xff08;&#x6ca1;&#x6709;&#x4f5c;&#x5e9f;&#xff09;</from><to>&#x7ebf;&#x8def;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>  
301 - <hop> <from>&#x7ebf;&#x8def;&#x67e5;&#x8be2;</from><to>&#x8f66;&#x8f86;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>  
302 - <hop> <from>&#x8f66;&#x8f86;&#x67e5;&#x8be2;</from><to>&#x683c;&#x5f0f;&#x5316;&#x65e5;&#x671f;</to><enabled>Y</enabled> </hop>  
303 - <hop> <from>&#x683c;&#x5f0f;&#x5316;&#x65e5;&#x671f;</from><to>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</to><enabled>Y</enabled> </hop>  
304 - <hop> <from>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</from><to>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</to><enabled>Y</enabled> </hop>  
305 - <hop> <from>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</from><to>Excel&#x8f93;&#x51fa;</to><enabled>Y</enabled> </hop>  
306 - </order>  
307 - <step>  
308 - <name>Excel&#x8f93;&#x51fa;</name>  
309 - <type>ExcelOutput</type>  
310 - <description/>  
311 - <distribute>Y</distribute>  
312 - <custom_distribution/>  
313 - <copies>1</copies>  
314 - <partitioning>  
315 - <method>none</method>  
316 - <schema_name/>  
317 - </partitioning>  
318 - <header>Y</header>  
319 - <footer>N</footer>  
320 - <encoding/>  
321 - <append>N</append>  
322 - <add_to_result_filenames>Y</add_to_result_filenames>  
323 - <file>  
324 - <name>&#x24;&#x7b;filepath&#x7d;</name>  
325 - <extention>xls</extention>  
326 - <do_not_open_newfile_init>N</do_not_open_newfile_init>  
327 - <create_parent_folder>N</create_parent_folder>  
328 - <split>N</split>  
329 - <add_date>N</add_date>  
330 - <add_time>N</add_time>  
331 - <SpecifyFormat>N</SpecifyFormat>  
332 - <date_time_format>yyyyMMddHHmmss</date_time_format>  
333 - <sheetname>&#x5de5;&#x4f5c;&#x8868;1</sheetname>  
334 - <autosizecolums>N</autosizecolums>  
335 - <nullisblank>N</nullisblank>  
336 - <protect_sheet>N</protect_sheet>  
337 - <password>Encrypted </password>  
338 - <splitevery>0</splitevery>  
339 - <usetempfiles>N</usetempfiles>  
340 - <tempdirectory/>  
341 - </file>  
342 - <template>  
343 - <enabled>N</enabled>  
344 - <append>N</append>  
345 - <filename>template.xls</filename>  
346 - </template>  
347 - <fields>  
348 - <field>  
349 - <name>&#x7ebf;&#x8def;</name>  
350 - <type>String</type>  
351 - <format/>  
352 - </field>  
353 - <field>  
354 - <name>&#x5185;&#x90e8;&#x7f16;&#x7801;</name>  
355 - <type>String</type>  
356 - <format/>  
357 - </field>  
358 - <field>  
359 - <name>&#x542f;&#x7528;&#x65e5;&#x671f;</name>  
360 - <type>String</type>  
361 - <format/>  
362 - </field>  
363 - <field>  
364 - <name>&#x7ec8;&#x7ed3;&#x65e5;&#x671f;</name>  
365 - <type>String</type>  
366 - <format/>  
367 - </field>  
368 - <field>  
369 - <name>&#x505c;&#x8f66;&#x70b9;</name>  
370 - <type>String</type>  
371 - <format/>  
372 - </field>  
373 - </fields>  
374 - <custom>  
375 - <header_font_name>arial</header_font_name>  
376 - <header_font_size>10</header_font_size>  
377 - <header_font_bold>N</header_font_bold>  
378 - <header_font_italic>N</header_font_italic>  
379 - <header_font_underline>no</header_font_underline>  
380 - <header_font_orientation>horizontal</header_font_orientation>  
381 - <header_font_color>black</header_font_color>  
382 - <header_background_color>none</header_background_color>  
383 - <header_row_height>255</header_row_height>  
384 - <header_alignment>left</header_alignment>  
385 - <header_image/>  
386 - <row_font_name>arial</row_font_name>  
387 - <row_font_size>10</row_font_size>  
388 - <row_font_color>black</row_font_color>  
389 - <row_background_color>none</row_background_color>  
390 - </custom>  
391 - <cluster_schema/>  
392 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
393 - <xloc>596</xloc>  
394 - <yloc>265</yloc>  
395 - <draw>Y</draw>  
396 - </GUI>  
397 - </step>  
398 -  
399 - <step>  
400 - <name>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</name>  
401 - <type>SelectValues</type>  
402 - <description/>  
403 - <distribute>Y</distribute>  
404 - <custom_distribution/>  
405 - <copies>1</copies>  
406 - <partitioning>  
407 - <method>none</method>  
408 - <schema_name/>  
409 - </partitioning>  
410 - <fields> <field> <name>xlmc</name>  
411 - <rename>&#x7ebf;&#x8def;</rename>  
412 - <length>-2</length>  
413 - <precision>-2</precision>  
414 - </field> <field> <name>zbh</name>  
415 - <rename>&#x5185;&#x90e8;&#x7f16;&#x7801;</rename>  
416 - <length>-2</length>  
417 - <precision>-2</precision>  
418 - </field> <field> <name>qyrq</name>  
419 - <rename>&#x542f;&#x7528;&#x65e5;&#x671f;</rename>  
420 - <length>-2</length>  
421 - <precision>-2</precision>  
422 - </field> <field> <name>zzrq</name>  
423 - <rename>&#x7ec8;&#x7ed3;&#x65e5;&#x671f;</rename>  
424 - <length>-2</length>  
425 - <precision>-2</precision>  
426 - </field> <field> <name>tcd</name>  
427 - <rename>&#x505c;&#x8f66;&#x70b9;</rename>  
428 - <length>-2</length>  
429 - <precision>-2</precision>  
430 - </field> <select_unspecified>N</select_unspecified>  
431 - </fields> <cluster_schema/>  
432 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
433 - <xloc>595</xloc>  
434 - <yloc>167</yloc>  
435 - <draw>Y</draw>  
436 - </GUI>  
437 - </step>  
438 -  
439 - <step>  
440 - <name>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</name>  
441 - <type>SortRows</type>  
442 - <description/>  
443 - <distribute>Y</distribute>  
444 - <custom_distribution/>  
445 - <copies>1</copies>  
446 - <partitioning>  
447 - <method>none</method>  
448 - <schema_name/>  
449 - </partitioning>  
450 - <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>  
451 - <prefix>out</prefix>  
452 - <sort_size>1000000</sort_size>  
453 - <free_memory/>  
454 - <compress>N</compress>  
455 - <compress_variable/>  
456 - <unique_rows>N</unique_rows>  
457 - <fields>  
458 - <field>  
459 - <name>xlmc</name>  
460 - <ascending>Y</ascending>  
461 - <case_sensitive>N</case_sensitive>  
462 - <presorted>N</presorted>  
463 - </field>  
464 - <field>  
465 - <name>zbh</name>  
466 - <ascending>Y</ascending>  
467 - <case_sensitive>N</case_sensitive>  
468 - <presorted>N</presorted>  
469 - </field>  
470 - <field>  
471 - <name>qyrq</name>  
472 - <ascending>Y</ascending>  
473 - <case_sensitive>N</case_sensitive>  
474 - <presorted>N</presorted>  
475 - </field>  
476 - </fields>  
477 - <cluster_schema/>  
478 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
479 - <xloc>592</xloc>  
480 - <yloc>66</yloc>  
481 - <draw>Y</draw>  
482 - </GUI>  
483 - </step>  
484 -  
485 - <step>  
486 - <name>&#x683c;&#x5f0f;&#x5316;&#x65e5;&#x671f;</name>  
487 - <type>SelectValues</type>  
488 - <description/>  
489 - <distribute>Y</distribute>  
490 - <custom_distribution/>  
491 - <copies>1</copies>  
492 - <partitioning>  
493 - <method>none</method>  
494 - <schema_name/>  
495 - </partitioning>  
496 - <fields> <select_unspecified>N</select_unspecified>  
497 - <meta> <name>qyrq</name>  
498 - <rename>qyrq</rename>  
499 - <type>String</type>  
500 - <length>-2</length>  
501 - <precision>-2</precision>  
502 - <conversion_mask>yyyy-MM-dd</conversion_mask>  
503 - <date_format_lenient>false</date_format_lenient>  
504 - <date_format_locale/>  
505 - <date_format_timezone/>  
506 - <lenient_string_to_number>false</lenient_string_to_number>  
507 - <encoding/>  
508 - <decimal_symbol/>  
509 - <grouping_symbol/>  
510 - <currency_symbol/>  
511 - <storage_type/>  
512 - </meta> <meta> <name>zzrq</name>  
513 - <rename>zzrq</rename>  
514 - <type>String</type>  
515 - <length>-2</length>  
516 - <precision>-2</precision>  
517 - <conversion_mask>yyyy-MM-dd</conversion_mask>  
518 - <date_format_lenient>false</date_format_lenient>  
519 - <date_format_locale/>  
520 - <date_format_timezone/>  
521 - <lenient_string_to_number>false</lenient_string_to_number>  
522 - <encoding/>  
523 - <decimal_symbol/>  
524 - <grouping_symbol/>  
525 - <currency_symbol/>  
526 - <storage_type/>  
527 - </meta> </fields> <cluster_schema/>  
528 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
529 - <xloc>478</xloc>  
530 - <yloc>66</yloc>  
531 - <draw>Y</draw>  
532 - </GUI>  
533 - </step>  
534 -  
535 - <step>  
536 - <name>&#x7ebf;&#x8def;&#x67e5;&#x8be2;</name>  
537 - <type>DBLookup</type>  
538 - <description/>  
539 - <distribute>Y</distribute>  
540 - <custom_distribution/>  
541 - <copies>1</copies>  
542 - <partitioning>  
543 - <method>none</method>  
544 - <schema_name/>  
545 - </partitioning>  
546 - <connection>bus_control_variable</connection>  
547 - <cache>Y</cache>  
548 - <cache_load_all>Y</cache_load_all>  
549 - <cache_size>0</cache_size>  
550 - <lookup>  
551 - <schema/>  
552 - <table>bsth_c_line</table>  
553 - <orderby/>  
554 - <fail_on_multiple>N</fail_on_multiple>  
555 - <eat_row_on_failure>N</eat_row_on_failure>  
556 - <key>  
557 - <name>xl</name>  
558 - <field>id</field>  
559 - <condition>&#x3d;</condition>  
560 - <name2/>  
561 - </key>  
562 - <value>  
563 - <name>name</name>  
564 - <rename>xlmc</rename>  
565 - <default/>  
566 - <type>String</type>  
567 - </value>  
568 - </lookup>  
569 - <cluster_schema/>  
570 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
571 - <xloc>248</xloc>  
572 - <yloc>67</yloc>  
573 - <draw>Y</draw>  
574 - </GUI>  
575 - </step>  
576 -  
577 - <step>  
578 - <name>&#x8f66;&#x8f86;&#x67e5;&#x8be2;</name>  
579 - <type>DBLookup</type>  
580 - <description/>  
581 - <distribute>Y</distribute>  
582 - <custom_distribution/>  
583 - <copies>1</copies>  
584 - <partitioning>  
585 - <method>none</method>  
586 - <schema_name/>  
587 - </partitioning>  
588 - <connection>bus_control_variable</connection>  
589 - <cache>N</cache>  
590 - <cache_load_all>N</cache_load_all>  
591 - <cache_size>0</cache_size>  
592 - <lookup>  
593 - <schema/>  
594 - <table>bsth_c_cars</table>  
595 - <orderby/>  
596 - <fail_on_multiple>N</fail_on_multiple>  
597 - <eat_row_on_failure>N</eat_row_on_failure>  
598 - <key>  
599 - <name>cl</name>  
600 - <field>id</field>  
601 - <condition>&#x3d;</condition>  
602 - <name2/>  
603 - </key>  
604 - <value>  
605 - <name>inside_code</name>  
606 - <rename>zbh</rename>  
607 - <default/>  
608 - <type>String</type>  
609 - </value>  
610 - </lookup>  
611 - <cluster_schema/>  
612 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
613 - <xloc>361</xloc>  
614 - <yloc>67</yloc>  
615 - <draw>Y</draw>  
616 - </GUI>  
617 - </step>  
618 -  
619 - <step>  
620 - <name>&#x8f66;&#x8f86;&#x914d;&#x7f6e;&#xff08;&#x6ca1;&#x6709;&#x4f5c;&#x5e9f;&#xff09;</name>  
621 - <type>TableInput</type>  
622 - <description/>  
623 - <distribute>Y</distribute>  
624 - <custom_distribution/>  
625 - <copies>1</copies>  
626 - <partitioning>  
627 - <method>none</method>  
628 - <schema_name/>  
629 - </partitioning>  
630 - <connection>bus_control_variable</connection>  
631 - <sql>select &#x2a; from bsth_c_s_ccinfo where is_cancel &#x3d; 0 and xl &#x3d; &#x24;&#x7b;xlid&#x7d;</sql>  
632 - <limit>0</limit>  
633 - <lookup/>  
634 - <execute_each_row>N</execute_each_row>  
635 - <variables_active>Y</variables_active>  
636 - <lazy_conversion_active>N</lazy_conversion_active>  
637 - <cluster_schema/>  
638 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
639 - <xloc>106</xloc>  
640 - <yloc>68</yloc>  
641 - <draw>Y</draw>  
642 - </GUI>  
643 - </step>  
644 -  
645 - <step_error_handling>  
646 - </step_error_handling>  
647 - <slave-step-copy-partition-distribution>  
648 -</slave-step-copy-partition-distribution>  
649 - <slave_transformation>N</slave_transformation>  
650 -  
651 -</transformation> 1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<transformation>
  3 + <info>
  4 + <name>&#x8f66;&#x8f86;&#x914d;&#x7f6e;&#x4fe1;&#x606f;&#x5bfc;&#x51fa;</name>
  5 + <description/>
  6 + <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 + <parameter>
  18 + <name>templatepath</name>
  19 + <default_value/>
  20 + <description>&#x6a21;&#x7248;&#x6587;&#x4ef6;&#x8def;&#x5f84;</description>
  21 + </parameter>
  22 + <parameter>
  23 + <name>xlid</name>
  24 + <default_value/>
  25 + <description>&#x7ebf;&#x8def;id</description>
  26 + </parameter>
  27 + </parameters>
  28 + <log>
  29 +<trans-log-table><connection/>
  30 +<schema/>
  31 +<table/>
  32 +<size_limit_lines/>
  33 +<interval/>
  34 +<timeout_days/>
  35 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STATUS</id><enabled>Y</enabled><name>STATUS</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name><subject/></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name><subject/></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name><subject/></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name><subject/></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name><subject/></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name><subject/></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>STARTDATE</id><enabled>Y</enabled><name>STARTDATE</name></field><field><id>ENDDATE</id><enabled>Y</enabled><name>ENDDATE</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>DEPDATE</id><enabled>Y</enabled><name>DEPDATE</name></field><field><id>REPLAYDATE</id><enabled>Y</enabled><name>REPLAYDATE</name></field><field><id>LOG_FIELD</id><enabled>Y</enabled><name>LOG_FIELD</name></field><field><id>EXECUTING_SERVER</id><enabled>N</enabled><name>EXECUTING_SERVER</name></field><field><id>EXECUTING_USER</id><enabled>N</enabled><name>EXECUTING_USER</name></field><field><id>CLIENT</id><enabled>N</enabled><name>CLIENT</name></field></trans-log-table>
  36 +<perf-log-table><connection/>
  37 +<schema/>
  38 +<table/>
  39 +<interval/>
  40 +<timeout_days/>
  41 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>SEQ_NR</id><enabled>Y</enabled><name>SEQ_NR</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>INPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>INPUT_BUFFER_ROWS</name></field><field><id>OUTPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>OUTPUT_BUFFER_ROWS</name></field></perf-log-table>
  42 +<channel-log-table><connection/>
  43 +<schema/>
  44 +<table/>
  45 +<timeout_days/>
  46 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>LOGGING_OBJECT_TYPE</id><enabled>Y</enabled><name>LOGGING_OBJECT_TYPE</name></field><field><id>OBJECT_NAME</id><enabled>Y</enabled><name>OBJECT_NAME</name></field><field><id>OBJECT_COPY</id><enabled>Y</enabled><name>OBJECT_COPY</name></field><field><id>REPOSITORY_DIRECTORY</id><enabled>Y</enabled><name>REPOSITORY_DIRECTORY</name></field><field><id>FILENAME</id><enabled>Y</enabled><name>FILENAME</name></field><field><id>OBJECT_ID</id><enabled>Y</enabled><name>OBJECT_ID</name></field><field><id>OBJECT_REVISION</id><enabled>Y</enabled><name>OBJECT_REVISION</name></field><field><id>PARENT_CHANNEL_ID</id><enabled>Y</enabled><name>PARENT_CHANNEL_ID</name></field><field><id>ROOT_CHANNEL_ID</id><enabled>Y</enabled><name>ROOT_CHANNEL_ID</name></field></channel-log-table>
  47 +<step-log-table><connection/>
  48 +<schema/>
  49 +<table/>
  50 +<timeout_days/>
  51 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>LOG_FIELD</id><enabled>N</enabled><name>LOG_FIELD</name></field></step-log-table>
  52 +<metrics-log-table><connection/>
  53 +<schema/>
  54 +<table/>
  55 +<timeout_days/>
  56 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>METRICS_DATE</id><enabled>Y</enabled><name>METRICS_DATE</name></field><field><id>METRICS_CODE</id><enabled>Y</enabled><name>METRICS_CODE</name></field><field><id>METRICS_DESCRIPTION</id><enabled>Y</enabled><name>METRICS_DESCRIPTION</name></field><field><id>METRICS_SUBJECT</id><enabled>Y</enabled><name>METRICS_SUBJECT</name></field><field><id>METRICS_TYPE</id><enabled>Y</enabled><name>METRICS_TYPE</name></field><field><id>METRICS_VALUE</id><enabled>Y</enabled><name>METRICS_VALUE</name></field></metrics-log-table>
  57 + </log>
  58 + <maxdate>
  59 + <connection/>
  60 + <table/>
  61 + <field/>
  62 + <offset>0.0</offset>
  63 + <maxdiff>0.0</maxdiff>
  64 + </maxdate>
  65 + <size_rowset>10000</size_rowset>
  66 + <sleep_time_empty>50</sleep_time_empty>
  67 + <sleep_time_full>50</sleep_time_full>
  68 + <unique_connections>N</unique_connections>
  69 + <feedback_shown>Y</feedback_shown>
  70 + <feedback_size>50000</feedback_size>
  71 + <using_thread_priorities>Y</using_thread_priorities>
  72 + <shared_objects_file/>
  73 + <capture_step_performance>N</capture_step_performance>
  74 + <step_performance_capturing_delay>1000</step_performance_capturing_delay>
  75 + <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit>
  76 + <dependencies>
  77 + </dependencies>
  78 + <partitionschemas>
  79 + </partitionschemas>
  80 + <slaveservers>
  81 + </slaveservers>
  82 + <clusterschemas>
  83 + </clusterschemas>
  84 + <created_user>-</created_user>
  85 + <created_date>2017&#x2f;01&#x2f;11 14&#x3a;14&#x3a;13.722</created_date>
  86 + <modified_user>-</modified_user>
  87 + <modified_date>2017&#x2f;01&#x2f;11 14&#x3a;14&#x3a;13.722</modified_date>
  88 + <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA&#x3d;</key_for_session_key>
  89 + <is_key_private>N</is_key_private>
  90 + </info>
  91 + <notepads>
  92 + <notepad>
  93 + <note>&#x8fd9;&#x91cc;&#x6709;&#x4e9b;&#x95ee;&#x9898;&#xa;&#x5728;window2012&#x7684;&#x73af;&#x5883;&#x4e0b;&#xff0c;&#xa;MySql&#x6570;&#x636e;&#x5e93;&#x67e5;&#x8be2;&#x4e2d;&#x5982;&#x679c;&#x8fd4;&#x56de;&#x4e2d;&#x6587;&#x5185;&#x5bb9;&#x7684;&#x5b57;&#x6bb5;&#xff0c;&#x8fd9;&#x4e2a;&#x5185;&#x5bb9;&#x4e71;&#x7801;&#xa;&#x89e3;&#x51b3;&#x529e;&#x6cd5;&#xff0c;&#x5c31;&#x662f;&#x6570;&#x636e;&#x5e93;&#x67e5;&#x8be2;&#x5168;&#x90e8;&#x7f13;&#x5b58;&#xff0c;&#x5c31;&#x4e0d;&#x4e71;&#x7801;&#xa;linux&#x73af;&#x5883;&#x4e0b;&#x6ca1;&#x95ee;&#x9898;</note>
  94 + <xloc>81</xloc>
  95 + <yloc>172</yloc>
  96 + <width>333</width>
  97 + <heigth>90</heigth>
  98 + <fontname>YaHei Consolas Hybrid</fontname>
  99 + <fontsize>12</fontsize>
  100 + <fontbold>N</fontbold>
  101 + <fontitalic>N</fontitalic>
  102 + <fontcolorred>0</fontcolorred>
  103 + <fontcolorgreen>0</fontcolorgreen>
  104 + <fontcolorblue>0</fontcolorblue>
  105 + <backgroundcolorred>255</backgroundcolorred>
  106 + <backgroundcolorgreen>205</backgroundcolorgreen>
  107 + <backgroundcolorblue>112</backgroundcolorblue>
  108 + <bordercolorred>100</bordercolorred>
  109 + <bordercolorgreen>100</bordercolorgreen>
  110 + <bordercolorblue>100</bordercolorblue>
  111 + <drawshadow>Y</drawshadow>
  112 + </notepad>
  113 + </notepads>
  114 + <connection>
  115 + <name>192.168.168.1_jwgl_dw</name>
  116 + <server>192.168.168.1</server>
  117 + <type>ORACLE</type>
  118 + <access>Native</access>
  119 + <database>orcl</database>
  120 + <port>1521</port>
  121 + <username>jwgl_dw</username>
  122 + <password>Encrypted 2be98afc86aa7f2e4cb13b977d2adabcd</password>
  123 + <servername/>
  124 + <data_tablespace/>
  125 + <index_tablespace/>
  126 + <attributes>
  127 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  128 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  129 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  130 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  131 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  132 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  133 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  134 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  135 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  136 + </attributes>
  137 + </connection>
  138 + <connection>
  139 + <name>bus_control_variable</name>
  140 + <server>&#x24;&#x7b;v_db_ip&#x7d;</server>
  141 + <type>MYSQL</type>
  142 + <access>Native</access>
  143 + <database>&#x24;&#x7b;v_db_dname&#x7d;</database>
  144 + <port>3306</port>
  145 + <username>&#x24;&#x7b;v_db_uname&#x7d;</username>
  146 + <password>&#x24;&#x7b;v_db_pwd&#x7d;</password>
  147 + <servername/>
  148 + <data_tablespace/>
  149 + <index_tablespace/>
  150 + <attributes>
  151 + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
  152 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  153 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  154 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  155 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  156 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  157 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  158 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  159 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  160 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  161 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  162 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  163 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  164 + </attributes>
  165 + </connection>
  166 + <connection>
  167 + <name>bus_control_&#x516c;&#x53f8;_201</name>
  168 + <server>localhost</server>
  169 + <type>MYSQL</type>
  170 + <access>Native</access>
  171 + <database>control</database>
  172 + <port>3306</port>
  173 + <username>root</username>
  174 + <password>Encrypted </password>
  175 + <servername/>
  176 + <data_tablespace/>
  177 + <index_tablespace/>
  178 + <attributes>
  179 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  180 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  181 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  182 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  183 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  184 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  185 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  186 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  187 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  188 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  189 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  190 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  191 + </attributes>
  192 + </connection>
  193 + <connection>
  194 + <name>bus_control_&#x672c;&#x673a;</name>
  195 + <server>localhost</server>
  196 + <type>MYSQL</type>
  197 + <access>Native</access>
  198 + <database>control</database>
  199 + <port>3306</port>
  200 + <username>root</username>
  201 + <password>Encrypted </password>
  202 + <servername/>
  203 + <data_tablespace/>
  204 + <index_tablespace/>
  205 + <attributes>
  206 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  207 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  208 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  209 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  210 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  211 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  212 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  213 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  214 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  215 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  216 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  217 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  218 + </attributes>
  219 + </connection>
  220 + <connection>
  221 + <name>control_jndi</name>
  222 + <server/>
  223 + <type>MYSQL</type>
  224 + <access>JNDI</access>
  225 + <database>control_jndi</database>
  226 + <port>1521</port>
  227 + <username/>
  228 + <password>Encrypted </password>
  229 + <servername/>
  230 + <data_tablespace/>
  231 + <index_tablespace/>
  232 + <attributes>
  233 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  234 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  235 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  236 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  237 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  238 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  239 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  240 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  241 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  242 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  243 + </attributes>
  244 + </connection>
  245 + <connection>
  246 + <name>JGJW_VM</name>
  247 + <server>192.168.198.240</server>
  248 + <type>ORACLE</type>
  249 + <access>Native</access>
  250 + <database>orcl</database>
  251 + <port>1521</port>
  252 + <username>jwgl</username>
  253 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d485a8d6</password>
  254 + <servername/>
  255 + <data_tablespace/>
  256 + <index_tablespace/>
  257 + <attributes>
  258 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  259 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  260 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  261 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  262 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  263 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  264 + <attribute><code>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 + <connection>
  270 + <name>NHJW_VM</name>
  271 + <server>192.168.198.240</server>
  272 + <type>ORACLE</type>
  273 + <access>Native</access>
  274 + <database>orcl</database>
  275 + <port>1521</port>
  276 + <username>nhjw</username>
  277 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d09aa5cd</password>
  278 + <servername/>
  279 + <data_tablespace/>
  280 + <index_tablespace/>
  281 + <attributes>
  282 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  283 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  284 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  285 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  286 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  287 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  288 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  289 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  290 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  291 + </attributes>
  292 + </connection>
  293 + <connection>
  294 + <name>PDGJ_VM</name>
  295 + <server>192.168.198.240</server>
  296 + <type>ORACLE</type>
  297 + <access>Native</access>
  298 + <database>orcl</database>
  299 + <port>1521</port>
  300 + <username>pdgj</username>
  301 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10ce96a8d0</password>
  302 + <servername/>
  303 + <data_tablespace/>
  304 + <index_tablespace/>
  305 + <attributes>
  306 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  307 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  308 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  309 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  310 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  311 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  312 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  313 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  314 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  315 + </attributes>
  316 + </connection>
  317 + <connection>
  318 + <name>repair_dw_mysql_jndi</name>
  319 + <server/>
  320 + <type>MYSQL</type>
  321 + <access>JNDI</access>
  322 + <database>repair_dw_mysql</database>
  323 + <port>1521</port>
  324 + <username/>
  325 + <password>Encrypted </password>
  326 + <servername/>
  327 + <data_tablespace/>
  328 + <index_tablespace/>
  329 + <attributes>
  330 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  331 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  332 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  333 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  334 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  335 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  336 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  337 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  338 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  339 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  340 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  341 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  342 + </attributes>
  343 + </connection>
  344 + <connection>
  345 + <name>repair_dw&#xff08;&#x672c;&#x673a;&#xff09;</name>
  346 + <server>localhost</server>
  347 + <type>MYSQL</type>
  348 + <access>Native</access>
  349 + <database>ruoyi-vue-3.5</database>
  350 + <port>3306</port>
  351 + <username>root</username>
  352 + <password>Encrypted </password>
  353 + <servername/>
  354 + <data_tablespace/>
  355 + <index_tablespace/>
  356 + <attributes>
  357 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  358 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  359 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  360 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  361 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  362 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  363 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  364 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  365 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  366 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  367 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  368 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  369 + </attributes>
  370 + </connection>
  371 + <connection>
  372 + <name>repair_real_h2</name>
  373 + <server/>
  374 + <type>H2</type>
  375 + <access>JNDI</access>
  376 + <database>repair_real_h2</database>
  377 + <port>1521</port>
  378 + <username/>
  379 + <password>Encrypted </password>
  380 + <servername/>
  381 + <data_tablespace/>
  382 + <index_tablespace/>
  383 + <attributes>
  384 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  385 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  386 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  387 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  388 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  389 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  390 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  391 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  392 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  393 + </attributes>
  394 + </connection>
  395 + <connection>
  396 + <name>SNJW_VM</name>
  397 + <server>192.168.198.240</server>
  398 + <type>ORACLE</type>
  399 + <access>Native</access>
  400 + <database>orcl</database>
  401 + <port>1521</port>
  402 + <username>snjw</username>
  403 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10cd9ca5cd</password>
  404 + <servername/>
  405 + <data_tablespace/>
  406 + <index_tablespace/>
  407 + <attributes>
  408 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  409 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  410 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  411 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  412 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  413 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  414 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  415 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  416 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  417 + </attributes>
  418 + </connection>
  419 + <connection>
  420 + <name>test_control&#xff08;&#x672c;&#x673a;&#xff09;</name>
  421 + <server>127.0.0.1</server>
  422 + <type>MYSQL</type>
  423 + <access>Native</access>
  424 + <database>test_control</database>
  425 + <port>3306</port>
  426 + <username>root</username>
  427 + <password>Encrypted </password>
  428 + <servername/>
  429 + <data_tablespace/>
  430 + <index_tablespace/>
  431 + <attributes>
  432 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  433 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  434 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  435 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  436 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  437 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  438 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  439 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  440 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  441 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  442 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  443 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  444 + </attributes>
  445 + </connection>
  446 + <connection>
  447 + <name>xlab_mysql_youle</name>
  448 + <server>101.231.124.8</server>
  449 + <type>MYSQL</type>
  450 + <access>Native</access>
  451 + <database>xlab_youle</database>
  452 + <port>45687</port>
  453 + <username>xlab-youle</username>
  454 + <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password>
  455 + <servername/>
  456 + <data_tablespace/>
  457 + <index_tablespace/>
  458 + <attributes>
  459 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  460 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  461 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  462 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  463 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  464 + <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute>
  465 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  466 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  467 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  468 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  469 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  470 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  471 + </attributes>
  472 + </connection>
  473 + <connection>
  474 + <name>xlab_mysql_youle&#xff08;&#x672c;&#x673a;&#xff09;</name>
  475 + <server>localhost</server>
  476 + <type>MYSQL</type>
  477 + <access>Native</access>
  478 + <database>xlab_youle</database>
  479 + <port>3306</port>
  480 + <username>root</username>
  481 + <password>Encrypted </password>
  482 + <servername/>
  483 + <data_tablespace/>
  484 + <index_tablespace/>
  485 + <attributes>
  486 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  487 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  488 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  489 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  490 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  491 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  492 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  493 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  494 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  495 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  496 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  497 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  498 + </attributes>
  499 + </connection>
  500 + <connection>
  501 + <name>xlab_youle</name>
  502 + <server/>
  503 + <type>MYSQL</type>
  504 + <access>JNDI</access>
  505 + <database>xlab_youle</database>
  506 + <port>1521</port>
  507 + <username/>
  508 + <password>Encrypted </password>
  509 + <servername/>
  510 + <data_tablespace/>
  511 + <index_tablespace/>
  512 + <attributes>
  513 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  514 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  515 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  516 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  517 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  518 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  519 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  520 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  521 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  522 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  523 + </attributes>
  524 + </connection>
  525 + <connection>
  526 + <name>YGJW_VM</name>
  527 + <server>192.168.198.240</server>
  528 + <type>ORACLE</type>
  529 + <access>Native</access>
  530 + <database>orcl</database>
  531 + <port>1521</port>
  532 + <username>ygjw</username>
  533 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10c795a5cd</password>
  534 + <servername/>
  535 + <data_tablespace/>
  536 + <index_tablespace/>
  537 + <attributes>
  538 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  539 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  540 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  541 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  542 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  543 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  544 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  545 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  546 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  547 + </attributes>
  548 + </connection>
  549 + <connection>
  550 + <name>&#x516c;&#x53f8;jgjw</name>
  551 + <server>192.168.168.1</server>
  552 + <type>ORACLE</type>
  553 + <access>Native</access>
  554 + <database>orcl</database>
  555 + <port>1521</port>
  556 + <username>jwgl</username>
  557 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d485a8d6</password>
  558 + <servername/>
  559 + <data_tablespace/>
  560 + <index_tablespace/>
  561 + <attributes>
  562 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  563 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  564 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  565 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  566 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  567 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  568 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  569 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  570 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  571 + </attributes>
  572 + </connection>
  573 + <connection>
  574 + <name>&#x516c;&#x53f8;snjw</name>
  575 + <server>192.168.168.1</server>
  576 + <type>ORACLE</type>
  577 + <access>Native</access>
  578 + <database>orcl</database>
  579 + <port>1521</port>
  580 + <username>snjw</username>
  581 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10cd9ca5cd</password>
  582 + <servername/>
  583 + <data_tablespace/>
  584 + <index_tablespace/>
  585 + <attributes>
  586 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  587 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  588 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  589 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  590 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  591 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  592 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  593 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  594 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  595 + </attributes>
  596 + </connection>
  597 + <connection>
  598 + <name>&#x516c;&#x53f8;ygjw</name>
  599 + <server>192.168.168.1</server>
  600 + <type>ORACLE</type>
  601 + <access>Native</access>
  602 + <database>orcl</database>
  603 + <port>1521</port>
  604 + <username>ygjw</username>
  605 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10c795a5cd</password>
  606 + <servername/>
  607 + <data_tablespace/>
  608 + <index_tablespace/>
  609 + <attributes>
  610 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  611 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  612 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  613 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  614 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  615 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  616 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  617 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  618 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  619 + </attributes>
  620 + </connection>
  621 + <order>
  622 + <hop> <from>&#x8f66;&#x8f86;&#x914d;&#x7f6e;&#xff08;&#x6ca1;&#x6709;&#x4f5c;&#x5e9f;&#xff09;</from><to>&#x7ebf;&#x8def;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>
  623 + <hop> <from>&#x7ebf;&#x8def;&#x67e5;&#x8be2;</from><to>&#x8f66;&#x8f86;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>
  624 + <hop> <from>&#x8f66;&#x8f86;&#x67e5;&#x8be2;</from><to>&#x683c;&#x5f0f;&#x5316;&#x65e5;&#x671f;</to><enabled>Y</enabled> </hop>
  625 + <hop> <from>&#x683c;&#x5f0f;&#x5316;&#x65e5;&#x671f;</from><to>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</to><enabled>Y</enabled> </hop>
  626 + <hop> <from>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</from><to>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</to><enabled>Y</enabled> </hop>
  627 + <hop> <from>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</from><to>Excel&#x8f93;&#x51fa;</to><enabled>Y</enabled> </hop>
  628 + </order>
  629 + <step>
  630 + <name>Excel&#x8f93;&#x51fa;</name>
  631 + <type>ExcelOutput</type>
  632 + <description/>
  633 + <distribute>Y</distribute>
  634 + <custom_distribution/>
  635 + <copies>1</copies>
  636 + <partitioning>
  637 + <method>none</method>
  638 + <schema_name/>
  639 + </partitioning>
  640 + <header>Y</header>
  641 + <footer>N</footer>
  642 + <encoding/>
  643 + <append>N</append>
  644 + <add_to_result_filenames>Y</add_to_result_filenames>
  645 + <file>
  646 + <name>&#x24;&#x7b;filepath&#x7d;</name>
  647 + <extention>xls</extention>
  648 + <do_not_open_newfile_init>N</do_not_open_newfile_init>
  649 + <create_parent_folder>N</create_parent_folder>
  650 + <split>N</split>
  651 + <add_date>N</add_date>
  652 + <add_time>N</add_time>
  653 + <SpecifyFormat>N</SpecifyFormat>
  654 + <date_time_format>yyyyMMddHHmmss</date_time_format>
  655 + <sheetname>&#x5de5;&#x4f5c;&#x8868;1</sheetname>
  656 + <autosizecolums>N</autosizecolums>
  657 + <nullisblank>N</nullisblank>
  658 + <protect_sheet>N</protect_sheet>
  659 + <password>Encrypted </password>
  660 + <splitevery>0</splitevery>
  661 + <usetempfiles>N</usetempfiles>
  662 + <tempdirectory/>
  663 + </file>
  664 + <template>
  665 + <enabled>N</enabled>
  666 + <append>N</append>
  667 + <filename>template.xls</filename>
  668 + </template>
  669 + <fields>
  670 + <field>
  671 + <name>&#x7ebf;&#x8def;</name>
  672 + <type>String</type>
  673 + <format/>
  674 + </field>
  675 + <field>
  676 + <name>&#x5185;&#x90e8;&#x7f16;&#x7801;</name>
  677 + <type>String</type>
  678 + <format/>
  679 + </field>
  680 + <field>
  681 + <name>&#x542f;&#x7528;&#x65e5;&#x671f;</name>
  682 + <type>String</type>
  683 + <format/>
  684 + </field>
  685 + <field>
  686 + <name>&#x7ec8;&#x7ed3;&#x65e5;&#x671f;</name>
  687 + <type>String</type>
  688 + <format/>
  689 + </field>
  690 + <field>
  691 + <name>&#x505c;&#x8f66;&#x70b9;</name>
  692 + <type>String</type>
  693 + <format/>
  694 + </field>
  695 + </fields>
  696 + <custom>
  697 + <header_font_name>arial</header_font_name>
  698 + <header_font_size>10</header_font_size>
  699 + <header_font_bold>N</header_font_bold>
  700 + <header_font_italic>N</header_font_italic>
  701 + <header_font_underline>no</header_font_underline>
  702 + <header_font_orientation>horizontal</header_font_orientation>
  703 + <header_font_color>black</header_font_color>
  704 + <header_background_color>none</header_background_color>
  705 + <header_row_height>255</header_row_height>
  706 + <header_alignment>left</header_alignment>
  707 + <header_image/>
  708 + <row_font_name>arial</row_font_name>
  709 + <row_font_size>10</row_font_size>
  710 + <row_font_color>black</row_font_color>
  711 + <row_background_color>none</row_background_color>
  712 + </custom>
  713 + <cluster_schema/>
  714 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  715 + <xloc>596</xloc>
  716 + <yloc>265</yloc>
  717 + <draw>Y</draw>
  718 + </GUI>
  719 + </step>
  720 +
  721 + <step>
  722 + <name>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</name>
  723 + <type>SelectValues</type>
  724 + <description/>
  725 + <distribute>Y</distribute>
  726 + <custom_distribution/>
  727 + <copies>1</copies>
  728 + <partitioning>
  729 + <method>none</method>
  730 + <schema_name/>
  731 + </partitioning>
  732 + <fields> <field> <name>xlmc</name>
  733 + <rename>&#x7ebf;&#x8def;</rename>
  734 + <length>-2</length>
  735 + <precision>-2</precision>
  736 + </field> <field> <name>zbh</name>
  737 + <rename>&#x5185;&#x90e8;&#x7f16;&#x7801;</rename>
  738 + <length>-2</length>
  739 + <precision>-2</precision>
  740 + </field> <field> <name>qyrq</name>
  741 + <rename>&#x542f;&#x7528;&#x65e5;&#x671f;</rename>
  742 + <length>-2</length>
  743 + <precision>-2</precision>
  744 + </field> <field> <name>zzrq</name>
  745 + <rename>&#x7ec8;&#x7ed3;&#x65e5;&#x671f;</rename>
  746 + <length>-2</length>
  747 + <precision>-2</precision>
  748 + </field> <field> <name>tcd</name>
  749 + <rename>&#x505c;&#x8f66;&#x70b9;</rename>
  750 + <length>-2</length>
  751 + <precision>-2</precision>
  752 + </field> <select_unspecified>N</select_unspecified>
  753 + </fields> <cluster_schema/>
  754 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  755 + <xloc>595</xloc>
  756 + <yloc>167</yloc>
  757 + <draw>Y</draw>
  758 + </GUI>
  759 + </step>
  760 +
  761 + <step>
  762 + <name>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</name>
  763 + <type>SortRows</type>
  764 + <description/>
  765 + <distribute>Y</distribute>
  766 + <custom_distribution/>
  767 + <copies>1</copies>
  768 + <partitioning>
  769 + <method>none</method>
  770 + <schema_name/>
  771 + </partitioning>
  772 + <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
  773 + <prefix>out</prefix>
  774 + <sort_size>1000000</sort_size>
  775 + <free_memory/>
  776 + <compress>N</compress>
  777 + <compress_variable/>
  778 + <unique_rows>N</unique_rows>
  779 + <fields>
  780 + <field>
  781 + <name>xlmc</name>
  782 + <ascending>Y</ascending>
  783 + <case_sensitive>N</case_sensitive>
  784 + <presorted>N</presorted>
  785 + </field>
  786 + <field>
  787 + <name>zbh</name>
  788 + <ascending>Y</ascending>
  789 + <case_sensitive>N</case_sensitive>
  790 + <presorted>N</presorted>
  791 + </field>
  792 + <field>
  793 + <name>qyrq</name>
  794 + <ascending>Y</ascending>
  795 + <case_sensitive>N</case_sensitive>
  796 + <presorted>N</presorted>
  797 + </field>
  798 + </fields>
  799 + <cluster_schema/>
  800 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  801 + <xloc>592</xloc>
  802 + <yloc>66</yloc>
  803 + <draw>Y</draw>
  804 + </GUI>
  805 + </step>
  806 +
  807 + <step>
  808 + <name>&#x683c;&#x5f0f;&#x5316;&#x65e5;&#x671f;</name>
  809 + <type>SelectValues</type>
  810 + <description/>
  811 + <distribute>Y</distribute>
  812 + <custom_distribution/>
  813 + <copies>1</copies>
  814 + <partitioning>
  815 + <method>none</method>
  816 + <schema_name/>
  817 + </partitioning>
  818 + <fields> <select_unspecified>N</select_unspecified>
  819 + <meta> <name>qyrq</name>
  820 + <rename>qyrq</rename>
  821 + <type>String</type>
  822 + <length>-2</length>
  823 + <precision>-2</precision>
  824 + <conversion_mask>yyyy-MM-dd</conversion_mask>
  825 + <date_format_lenient>false</date_format_lenient>
  826 + <date_format_locale/>
  827 + <date_format_timezone/>
  828 + <lenient_string_to_number>false</lenient_string_to_number>
  829 + <encoding/>
  830 + <decimal_symbol/>
  831 + <grouping_symbol/>
  832 + <currency_symbol/>
  833 + <storage_type/>
  834 + </meta> <meta> <name>zzrq</name>
  835 + <rename>zzrq</rename>
  836 + <type>String</type>
  837 + <length>-2</length>
  838 + <precision>-2</precision>
  839 + <conversion_mask>yyyy-MM-dd</conversion_mask>
  840 + <date_format_lenient>false</date_format_lenient>
  841 + <date_format_locale/>
  842 + <date_format_timezone/>
  843 + <lenient_string_to_number>false</lenient_string_to_number>
  844 + <encoding/>
  845 + <decimal_symbol/>
  846 + <grouping_symbol/>
  847 + <currency_symbol/>
  848 + <storage_type/>
  849 + </meta> </fields> <cluster_schema/>
  850 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  851 + <xloc>478</xloc>
  852 + <yloc>66</yloc>
  853 + <draw>Y</draw>
  854 + </GUI>
  855 + </step>
  856 +
  857 + <step>
  858 + <name>&#x7ebf;&#x8def;&#x67e5;&#x8be2;</name>
  859 + <type>DBLookup</type>
  860 + <description/>
  861 + <distribute>Y</distribute>
  862 + <custom_distribution/>
  863 + <copies>1</copies>
  864 + <partitioning>
  865 + <method>none</method>
  866 + <schema_name/>
  867 + </partitioning>
  868 + <connection>control_jndi</connection>
  869 + <cache>Y</cache>
  870 + <cache_load_all>Y</cache_load_all>
  871 + <cache_size>0</cache_size>
  872 + <lookup>
  873 + <schema/>
  874 + <table>bsth_c_line</table>
  875 + <orderby/>
  876 + <fail_on_multiple>N</fail_on_multiple>
  877 + <eat_row_on_failure>N</eat_row_on_failure>
  878 + <key>
  879 + <name>xl</name>
  880 + <field>id</field>
  881 + <condition>&#x3d;</condition>
  882 + <name2/>
  883 + </key>
  884 + <value>
  885 + <name>name</name>
  886 + <rename>xlmc</rename>
  887 + <default/>
  888 + <type>String</type>
  889 + </value>
  890 + </lookup>
  891 + <cluster_schema/>
  892 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  893 + <xloc>248</xloc>
  894 + <yloc>67</yloc>
  895 + <draw>Y</draw>
  896 + </GUI>
  897 + </step>
  898 +
  899 + <step>
  900 + <name>&#x8f66;&#x8f86;&#x67e5;&#x8be2;</name>
  901 + <type>DBLookup</type>
  902 + <description/>
  903 + <distribute>Y</distribute>
  904 + <custom_distribution/>
  905 + <copies>1</copies>
  906 + <partitioning>
  907 + <method>none</method>
  908 + <schema_name/>
  909 + </partitioning>
  910 + <connection>control_jndi</connection>
  911 + <cache>N</cache>
  912 + <cache_load_all>N</cache_load_all>
  913 + <cache_size>0</cache_size>
  914 + <lookup>
  915 + <schema/>
  916 + <table>bsth_c_cars</table>
  917 + <orderby/>
  918 + <fail_on_multiple>N</fail_on_multiple>
  919 + <eat_row_on_failure>N</eat_row_on_failure>
  920 + <key>
  921 + <name>cl</name>
  922 + <field>id</field>
  923 + <condition>&#x3d;</condition>
  924 + <name2/>
  925 + </key>
  926 + <value>
  927 + <name>inside_code</name>
  928 + <rename>zbh</rename>
  929 + <default/>
  930 + <type>String</type>
  931 + </value>
  932 + </lookup>
  933 + <cluster_schema/>
  934 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  935 + <xloc>361</xloc>
  936 + <yloc>67</yloc>
  937 + <draw>Y</draw>
  938 + </GUI>
  939 + </step>
  940 +
  941 + <step>
  942 + <name>&#x8f66;&#x8f86;&#x914d;&#x7f6e;&#xff08;&#x6ca1;&#x6709;&#x4f5c;&#x5e9f;&#xff09;</name>
  943 + <type>TableInput</type>
  944 + <description/>
  945 + <distribute>Y</distribute>
  946 + <custom_distribution/>
  947 + <copies>1</copies>
  948 + <partitioning>
  949 + <method>none</method>
  950 + <schema_name/>
  951 + </partitioning>
  952 + <connection>control_jndi</connection>
  953 + <sql>select &#x2a; from bsth_c_s_ccinfo where is_cancel &#x3d; 0 and xl &#x3d; &#x24;&#x7b;xlid&#x7d;</sql>
  954 + <limit>0</limit>
  955 + <lookup/>
  956 + <execute_each_row>N</execute_each_row>
  957 + <variables_active>Y</variables_active>
  958 + <lazy_conversion_active>N</lazy_conversion_active>
  959 + <cluster_schema/>
  960 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  961 + <xloc>106</xloc>
  962 + <yloc>68</yloc>
  963 + <draw>Y</draw>
  964 + </GUI>
  965 + </step>
  966 +
  967 + <step_error_handling>
  968 + </step_error_handling>
  969 + <slave-step-copy-partition-distribution>
  970 +</slave-step-copy-partition-distribution>
  971 + <slave_transformation>N</slave_transformation>
  972 +
  973 +</transformation>