Commit 24249d24865da418127fbb744a9751ae5beff6ef

Authored by 潘钊
2 parents 6ec10fd9 f9376be6

Merge branch 'minhang' of http://222.66.0.204:8090/panzhaov5/bsth_control into minhang

src/main/java/com/bsth/service/schedule/TTInfoDetailService.java
@@ -27,6 +27,13 @@ public interface TTInfoDetailService extends BService<TTInfoDetail, Long> { @@ -27,6 +27,13 @@ public interface TTInfoDetailService extends BService<TTInfoDetail, Long> {
27 /** 是偶分班 */ 27 /** 是偶分班 */
28 private Boolean isfb; 28 private Boolean isfb;
29 29
  30 + /** 起点站 */
  31 + private Integer qdz;
  32 + /** 终点站 */
  33 + private Integer zdz;
  34 + /** 停车场 */
  35 + private Integer tcc;
  36 +
30 public FcInfo() { 37 public FcInfo() {
31 } 38 }
32 39
@@ -35,7 +42,10 @@ public interface TTInfoDetailService extends BService<TTInfoDetail, Long> { @@ -35,7 +42,10 @@ public interface TTInfoDetailService extends BService<TTInfoDetail, Long> {
35 String bc_type, 42 String bc_type,
36 String fcsj, 43 String fcsj,
37 String xldir, 44 String xldir,
38 - String isfb) { 45 + String isfb,
  46 + String qdz,
  47 + String zdz,
  48 + String tcc) {
39 this.ttdid = StringUtils.isEmpty(ttdid_str) ? null : Long.valueOf(ttdid_str); 49 this.ttdid = StringUtils.isEmpty(ttdid_str) ? null : Long.valueOf(ttdid_str);
40 this.bc_type = bc_type; 50 this.bc_type = bc_type;
41 this.fcsj = fcsj; 51 this.fcsj = fcsj;
@@ -47,6 +57,16 @@ public interface TTInfoDetailService extends BService<TTInfoDetail, Long> { @@ -47,6 +57,16 @@ public interface TTInfoDetailService extends BService<TTInfoDetail, Long> {
47 else 57 else
48 this.isfb = false; 58 this.isfb = false;
49 59
  60 + if (StringUtils.isNotEmpty(qdz) && !"null".equals(qdz)) {
  61 + this.qdz = Integer.valueOf(qdz);
  62 + }
  63 + if (StringUtils.isNotEmpty(zdz) && !"null".equals(zdz)) {
  64 + this.zdz = Integer.valueOf(zdz);
  65 + }
  66 + if (StringUtils.isNotEmpty(tcc) && !"null".equals(tcc)) {
  67 + this.tcc = Integer.valueOf(tcc);
  68 + }
  69 +
50 } 70 }
51 71
52 public Long getTtdid() { 72 public Long getTtdid() {
@@ -88,6 +108,30 @@ public interface TTInfoDetailService extends BService<TTInfoDetail, Long> { @@ -88,6 +108,30 @@ public interface TTInfoDetailService extends BService<TTInfoDetail, Long> {
88 public void setIsfb(Boolean isfb) { 108 public void setIsfb(Boolean isfb) {
89 this.isfb = isfb; 109 this.isfb = isfb;
90 } 110 }
  111 +
  112 + public Integer getQdz() {
  113 + return qdz;
  114 + }
  115 +
  116 + public void setQdz(Integer qdz) {
  117 + this.qdz = qdz;
  118 + }
  119 +
  120 + public Integer getZdz() {
  121 + return zdz;
  122 + }
  123 +
  124 + public void setZdz(Integer zdz) {
  125 + this.zdz = zdz;
  126 + }
  127 +
  128 + public Integer getTcc() {
  129 + return tcc;
  130 + }
  131 +
  132 + public void setTcc(Integer tcc) {
  133 + this.tcc = tcc;
  134 + }
91 } 135 }
92 136
93 /** 137 /**
src/main/java/com/bsth/service/schedule/impl/TTInfoDetailServiceImpl.java
@@ -257,7 +257,7 @@ public class TTInfoDetailServiceImpl extends BServiceImpl<TTInfoDetail, Long> im @@ -257,7 +257,7 @@ public class TTInfoDetailServiceImpl extends BServiceImpl<TTInfoDetail, Long> im
257 for (int r = 1; r < sheet.getRows(); r++) { 257 for (int r = 1; r < sheet.getRows(); r++) {
258 List<FcInfo> fcInfos = new ArrayList<>(); 258 List<FcInfo> fcInfos = new ArrayList<>();
259 // 每行第一列都是路牌 259 // 每行第一列都是路牌
260 - fcInfos.add(new FcInfo(null, null, sheet.getCell(0, r).getContents(), null, null)); // 用fcsj放置路牌显示 260 + fcInfos.add(new FcInfo(null, null, sheet.getCell(0, r).getContents(), null, null, null, null, null)); // 用fcsj放置路牌显示
261 261
262 int bc_ks = 0; // 空驶班次 262 int bc_ks = 0; // 空驶班次
263 int bc_yy = 0; // 营运班次 263 int bc_yy = 0; // 营运班次
@@ -277,7 +277,11 @@ public class TTInfoDetailServiceImpl extends BServiceImpl&lt;TTInfoDetail, Long&gt; im @@ -277,7 +277,11 @@ public class TTInfoDetailServiceImpl extends BServiceImpl&lt;TTInfoDetail, Long&gt; im
277 String xldir = content == null ? "" : content[5]; // 线路上下行 277 String xldir = content == null ? "" : content[5]; // 线路上下行
278 String isfb = content == null ? "" : content[6]; // 是否分班 278 String isfb = content == null ? "" : content[6]; // 是否分班
279 279
280 - FcInfo fcInfo = new FcInfo(ttdid_str, bctype, fcsj, xldir, isfb); 280 + String qdz = content == null ? "" : content[7]; // 起点站
  281 + String zdz = content == null ? "" : content[8]; // 终点站
  282 + String tcc = content == null ? "" : content[9]; // 停车场
  283 +
  284 + FcInfo fcInfo = new FcInfo(ttdid_str, bctype, fcsj, xldir, isfb, qdz, zdz, tcc);
281 285
282 if (StringUtils.isNotEmpty(fzdname)) 286 if (StringUtils.isNotEmpty(fzdname))
283 headarrays[c] = fzdname; 287 headarrays[c] = fzdname;
@@ -303,17 +307,17 @@ public class TTInfoDetailServiceImpl extends BServiceImpl&lt;TTInfoDetail, Long&gt; im @@ -303,17 +307,17 @@ public class TTInfoDetailServiceImpl extends BServiceImpl&lt;TTInfoDetail, Long&gt; im
303 } 307 }
304 308
305 } catch (Exception exp) { 309 } catch (Exception exp) {
306 - LOGGER.info("{}行,{}数据有问题,数据={},异常message={}", r, c, content_str, exp); 310 + LOGGER.info("第{}行,第{}列数据有问题,数据={},异常message={}", r, c, content_str, exp.getCause());
307 break; 311 break;
308 } 312 }
309 313
310 } 314 }
311 315
312 // 添加一列 空驶班次/空驶里程,fcsj放置数据 316 // 添加一列 空驶班次/空驶里程,fcsj放置数据
313 - fcInfos.add(new FcInfo(null, null, String.format("%d/%.2f", bc_ks, lc_ks), null, null)); 317 + fcInfos.add(new FcInfo(null, null, String.format("%d/%.2f", bc_ks, lc_ks), null, null, null, null, null));
314 318
315 // 添加一列 营运班次/营运里程,fcsj放置数据 319 // 添加一列 营运班次/营运里程,fcsj放置数据
316 - fcInfos.add(new FcInfo(null, null, String.format("%d/%.2f", bc_yy, lc_yy), null, null)); 320 + fcInfos.add(new FcInfo(null, null, String.format("%d/%.2f", bc_yy, lc_yy), null, null, null, null, null));
317 321
318 editInfo.getContents().add(fcInfos); 322 editInfo.getContents().add(fcInfos);
319 } 323 }
src/main/java/com/bsth/service/schedule/rules/strategy/IStrategyImpl.java
@@ -143,7 +143,6 @@ public class IStrategyImpl implements IStrategy { @@ -143,7 +143,6 @@ public class IStrategyImpl implements IStrategy {
143 // return结果输出 143 // return结果输出
144 Map<Date, Multimap<Long, TTInfoDetail>> ttInfoDetailMultimap = new HashMap<>(); 144 Map<Date, Multimap<Long, TTInfoDetail>> ttInfoDetailMultimap = new HashMap<>();
145 145
146 - Map<String, Object> param = new HashMap<>();  
147 for (DateTime dateTime : outputMultimap.keySet()) { 146 for (DateTime dateTime : outputMultimap.keySet()) {
148 Collection<TTInfoResult_output> ttInfoResult_outputs = outputMultimap.get(dateTime); 147 Collection<TTInfoResult_output> ttInfoResult_outputs = outputMultimap.get(dateTime);
149 // 如果有多个,使用第一个 148 // 如果有多个,使用第一个
@@ -154,7 +153,7 @@ public class IStrategyImpl implements IStrategy { @@ -154,7 +153,7 @@ public class IStrategyImpl implements IStrategy {
154 // 查找时刻表明细 153 // 查找时刻表明细
155 Multimap<Long, TTInfoDetail> ttinfodetailMap2 = ArrayListMultimap.create(); 154 Multimap<Long, TTInfoDetail> ttinfodetailMap2 = ArrayListMultimap.create();
156 for (TTInfoDetail ttInfoDetail : ttInfoDetails) { 155 for (TTInfoDetail ttInfoDetail : ttInfoDetails) {
157 - if (ttInfoDetail.getTtinfo().getId() == Long.valueOf(ttInfoResult_output.getTtInfoId())) { 156 + if (ttInfoDetail.getTtinfo().getId().equals(Long.valueOf(ttInfoResult_output.getTtInfoId()))) {
158 ttinfodetailMap2.put(ttInfoDetail.getLp().getId(), ttInfoDetail); 157 ttinfodetailMap2.put(ttInfoDetail.getLp().getId(), ttInfoDetail);
159 } 158 }
160 } 159 }
src/main/resources/datatools/ktrs/ttinfodetailoutputforedit.ktr
1 -<?xml version="1.0" encoding="UTF-8"?>  
2 -<transformation>  
3 - <info>  
4 - <name>ttinfodetailoutputforedit</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>tempfilepath</name>  
14 - <default_value>&#x2f;Users&#x2f;xu&#x2f;resource&#x2f;project_code&#x2f;runtime_temp&#x2f;bsth_control_u_d_files&#x2f;temp&#x2f;test</default_value>  
15 - <description>&#x9ed8;&#x8ba4;&#x8f93;&#x51fa;&#x7684;&#x6587;&#x4ef6;&#x8def;&#x5f84;&#x540d;</description>  
16 - </parameter>  
17 - <parameter>  
18 - <name>ttid</name>  
19 - <default_value>63</default_value>  
20 - <description>&#x65f6;&#x523b;&#x8868;id</description>  
21 - </parameter>  
22 - <parameter>  
23 - <name>xlid</name>  
24 - <default_value>63017</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>2016&#x2f;07&#x2f;11 21&#x3a;45&#x3a;05.041</created_date>  
86 - <modified_user>-</modified_user>  
87 - <modified_date>2016&#x2f;07&#x2f;11 21&#x3a;45&#x3a;05.041</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>45</xloc>  
95 - <yloc>261</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 - <notepad>  
114 - <note>&#x6b64;&#x5904;&#x8f6c;&#x6362;excel&#x6709;&#x95ee;&#x9898;&#xff0c;&#xa;2003&#x683c;&#x5f0f;&#x7684;xls&#x6700;&#x591a;256&#x5217;&#xff0c;&#xa;&#x8fd9;&#x91cc;&#x660e;&#x663e;&#x8d85;&#x8fc7;&#xff0c;&#x6240;&#x4ee5;&#x628a;&#x6240;&#x6709;&#x5185;&#x5bb9;&#x5408;&#x5e76;&#x6210;1&#x5217;&#xff0c;&#xa;&#x7528;,&#x5206;&#x9694;</note>  
115 - <xloc>256</xloc>  
116 - <yloc>397</yloc>  
117 - <width>245</width>  
118 - <heigth>74</heigth>  
119 - <fontname>YaHei Consolas Hybrid</fontname>  
120 - <fontsize>12</fontsize>  
121 - <fontbold>N</fontbold>  
122 - <fontitalic>N</fontitalic>  
123 - <fontcolorred>0</fontcolorred>  
124 - <fontcolorgreen>0</fontcolorgreen>  
125 - <fontcolorblue>0</fontcolorblue>  
126 - <backgroundcolorred>255</backgroundcolorred>  
127 - <backgroundcolorgreen>205</backgroundcolorgreen>  
128 - <backgroundcolorblue>112</backgroundcolorblue>  
129 - <bordercolorred>100</bordercolorred>  
130 - <bordercolorgreen>100</bordercolorgreen>  
131 - <bordercolorblue>100</bordercolorblue>  
132 - <drawshadow>Y</drawshadow>  
133 - </notepad>  
134 - </notepads>  
135 - <connection>  
136 - <name>bus_control_variable</name>  
137 - <server>&#x24;&#x7b;v_db_ip&#x7d;</server>  
138 - <type>MYSQL</type>  
139 - <access>Native</access>  
140 - <database>&#x24;&#x7b;v_db_dname&#x7d;</database>  
141 - <port>3306</port>  
142 - <username>&#x24;&#x7b;v_db_uname&#x7d;</username>  
143 - <password>&#x24;&#x7b;v_db_pwd&#x7d;</password>  
144 - <servername/>  
145 - <data_tablespace/>  
146 - <index_tablespace/>  
147 - <attributes>  
148 - <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>  
149 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
150 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
151 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
152 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
153 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
154 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
155 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
156 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
157 - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>  
158 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
159 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
160 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
161 - </attributes>  
162 - </connection>  
163 - <connection>  
164 - <name>bus_control_&#x516c;&#x53f8;_201</name>  
165 - <server>localhost</server>  
166 - <type>MYSQL</type>  
167 - <access>Native</access>  
168 - <database>control</database>  
169 - <port>3306</port>  
170 - <username>root</username>  
171 - <password>Encrypted </password>  
172 - <servername/>  
173 - <data_tablespace/>  
174 - <index_tablespace/>  
175 - <attributes>  
176 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
177 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
178 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
179 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
180 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
181 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
182 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
183 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
184 - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>  
185 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
186 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
187 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
188 - </attributes>  
189 - </connection>  
190 - <connection>  
191 - <name>bus_control_&#x672c;&#x673a;</name>  
192 - <server>localhost</server>  
193 - <type>MYSQL</type>  
194 - <access>Native</access>  
195 - <database>control</database>  
196 - <port>3306</port>  
197 - <username>root</username>  
198 - <password>Encrypted </password>  
199 - <servername/>  
200 - <data_tablespace/>  
201 - <index_tablespace/>  
202 - <attributes>  
203 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
204 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
205 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
206 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
207 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
208 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
209 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
210 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
211 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
212 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
213 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
214 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
215 - </attributes>  
216 - </connection>  
217 - <connection>  
218 - <name>xlab_mysql_youle</name>  
219 - <server>101.231.124.8</server>  
220 - <type>MYSQL</type>  
221 - <access>Native</access>  
222 - <database>xlab_youle</database>  
223 - <port>45687</port>  
224 - <username>xlab-youle</username>  
225 - <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password>  
226 - <servername/>  
227 - <data_tablespace/>  
228 - <index_tablespace/>  
229 - <attributes>  
230 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
231 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
232 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
233 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
234 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
235 - <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute>  
236 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
237 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
238 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
239 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>  
240 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>  
241 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
242 - </attributes>  
243 - </connection>  
244 - <connection>  
245 - <name>xlab_mysql_youle&#xff08;&#x672c;&#x673a;&#xff09;</name>  
246 - <server>localhost</server>  
247 - <type>MYSQL</type>  
248 - <access>Native</access>  
249 - <database>xlab_youle</database>  
250 - <port>3306</port>  
251 - <username>root</username>  
252 - <password>Encrypted </password>  
253 - <servername/>  
254 - <data_tablespace/>  
255 - <index_tablespace/>  
256 - <attributes>  
257 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
258 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
259 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
260 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
261 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
262 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
263 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
264 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
265 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
266 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>  
267 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>  
268 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
269 - </attributes>  
270 - </connection>  
271 - <connection>  
272 - <name>xlab_youle</name>  
273 - <server/>  
274 - <type>MYSQL</type>  
275 - <access>JNDI</access>  
276 - <database>xlab_youle</database>  
277 - <port>1521</port>  
278 - <username/>  
279 - <password>Encrypted </password>  
280 - <servername/>  
281 - <data_tablespace/>  
282 - <index_tablespace/>  
283 - <attributes>  
284 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
285 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
286 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
287 - <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>  
288 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
289 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
290 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
291 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
292 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
293 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
294 - </attributes>  
295 - </connection>  
296 - <order>  
297 - <hop> <from>&#x8868;&#x8f93;&#x5165;</from><to>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;</to><enabled>Y</enabled> </hop>  
298 - <hop> <from>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;</from><to>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x7ad9;&#x70b9;&#x67e5;&#x8be2;&#x7528;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>  
299 - <hop> <from>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;</from><to>&#x8fdb;&#x573a;&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x67e5;&#x8be2;&#x7528;&#x7684;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>  
300 - <hop> <from>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x7ad9;&#x70b9;&#x67e5;&#x8be2;&#x7528;&#x6570;&#x636e;</from><to>&#x67e5;&#x627e;&#x8d77;&#x70b9;&#x7ad9;&#x540d;&#x79f0;</to><enabled>Y</enabled> </hop>  
301 - <hop> <from>&#x67e5;&#x627e;&#x8d77;&#x70b9;&#x7ad9;&#x540d;&#x79f0;</from><to>&#x67e5;&#x627e;&#x7ec8;&#x70b9;&#x7ad9;&#x540d;&#x79f0;</to><enabled>Y</enabled> </hop>  
302 - <hop> <from>&#x67e5;&#x627e;&#x7ec8;&#x70b9;&#x7ad9;&#x540d;&#x79f0;</from><to>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</to><enabled>Y</enabled> </hop>  
303 - <hop> <from>&#x8fdb;&#x573a;&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x67e5;&#x8be2;&#x7528;&#x7684;&#x6570;&#x636e;</from><to>&#x5b57;&#x6bb5;&#x9009;&#x62e9; 2</to><enabled>Y</enabled> </hop>  
304 - <hop> <from>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</from><to>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</to><enabled>Y</enabled> </hop>  
305 - <hop> <from>&#x5b57;&#x6bb5;&#x9009;&#x62e9; 2</from><to>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</to><enabled>Y</enabled> </hop>  
306 - <hop> <from>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</from><to>&#x8ba1;&#x7b97;&#x53d1;&#x8f66;&#x7ad9;&#x540d;</to><enabled>Y</enabled> </hop>  
307 - <hop> <from>&#x5217;&#x8f6c;&#x884c;</from><to>&#x53bb;&#x9664;&#x5b57;&#x6bb5;</to><enabled>Y</enabled> </hop>  
308 - <hop> <from>&#x53bb;&#x9664;&#x5b57;&#x6bb5;</from><to>Excel&#x8f93;&#x51fa;</to><enabled>Y</enabled> </hop>  
309 - <hop> <from>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</from><to>&#x8868;&#x8f93;&#x5165;</to><enabled>Y</enabled> </hop>  
310 - <hop> <from>&#x8ba1;&#x7b97;&#x53d1;&#x8f66;&#x7ad9;&#x540d;</from><to>&#x5408;&#x5e76;&#x5185;&#x5bb9;</to><enabled>Y</enabled> </hop>  
311 - <hop> <from>&#x5408;&#x5e76;&#x5185;&#x5bb9;</from><to>&#x5217;&#x8f6c;&#x884c;</to><enabled>Y</enabled> </hop>  
312 - <hop> <from>&#x53bb;&#x9664;&#x5b57;&#x6bb5;</from><to>&#x6587;&#x672c;&#x6587;&#x4ef6;&#x8f93;&#x51fa;</to><enabled>Y</enabled> </hop>  
313 - </order>  
314 - <step>  
315 - <name>Excel&#x8f93;&#x51fa;</name>  
316 - <type>ExcelOutput</type>  
317 - <description/>  
318 - <distribute>Y</distribute>  
319 - <custom_distribution/>  
320 - <copies>1</copies>  
321 - <partitioning>  
322 - <method>none</method>  
323 - <schema_name/>  
324 - </partitioning>  
325 - <header>Y</header>  
326 - <footer>N</footer>  
327 - <encoding/>  
328 - <append>N</append>  
329 - <add_to_result_filenames>Y</add_to_result_filenames>  
330 - <file>  
331 - <name>&#x24;&#x7b;tempfilepath&#x7d;</name>  
332 - <extention>xls</extention>  
333 - <do_not_open_newfile_init>N</do_not_open_newfile_init>  
334 - <create_parent_folder>N</create_parent_folder>  
335 - <split>N</split>  
336 - <add_date>N</add_date>  
337 - <add_time>N</add_time>  
338 - <SpecifyFormat>N</SpecifyFormat>  
339 - <date_time_format/>  
340 - <sheetname>Sheet1</sheetname>  
341 - <autosizecolums>N</autosizecolums>  
342 - <nullisblank>N</nullisblank>  
343 - <protect_sheet>N</protect_sheet>  
344 - <password>Encrypted </password>  
345 - <splitevery>0</splitevery>  
346 - <usetempfiles>N</usetempfiles>  
347 - <tempdirectory/>  
348 - </file>  
349 - <template>  
350 - <enabled>N</enabled>  
351 - <append>N</append>  
352 - <filename>template.xls</filename>  
353 - </template>  
354 - <fields>  
355 - <field>  
356 - <name>lp</name>  
357 - <type>String</type>  
358 - <format/>  
359 - </field>  
360 - <field>  
361 - <name>fcno1</name>  
362 - <type>String</type>  
363 - <format/>  
364 - </field>  
365 - <field>  
366 - <name>fcno2</name>  
367 - <type>String</type>  
368 - <format/>  
369 - </field>  
370 - <field>  
371 - <name>fcno3</name>  
372 - <type>String</type>  
373 - <format/>  
374 - </field>  
375 - <field>  
376 - <name>fcno4</name>  
377 - <type>String</type>  
378 - <format/>  
379 - </field>  
380 - <field>  
381 - <name>fcno5</name>  
382 - <type>String</type>  
383 - <format/>  
384 - </field>  
385 - <field>  
386 - <name>fcno6</name>  
387 - <type>String</type>  
388 - <format/>  
389 - </field>  
390 - <field>  
391 - <name>fcno7</name>  
392 - <type>String</type>  
393 - <format/>  
394 - </field>  
395 - <field>  
396 - <name>fcno8</name>  
397 - <type>String</type>  
398 - <format/>  
399 - </field>  
400 - <field>  
401 - <name>fcno9</name>  
402 - <type>String</type>  
403 - <format/>  
404 - </field>  
405 - <field>  
406 - <name>fcno10</name>  
407 - <type>String</type>  
408 - <format/>  
409 - </field>  
410 - <field>  
411 - <name>fcno11</name>  
412 - <type>String</type>  
413 - <format/>  
414 - </field>  
415 - <field>  
416 - <name>fcno12</name>  
417 - <type>String</type>  
418 - <format/>  
419 - </field>  
420 - <field>  
421 - <name>fcno13</name>  
422 - <type>String</type>  
423 - <format/>  
424 - </field>  
425 - <field>  
426 - <name>fcno14</name>  
427 - <type>String</type>  
428 - <format/>  
429 - </field>  
430 - <field>  
431 - <name>fcno15</name>  
432 - <type>String</type>  
433 - <format/>  
434 - </field>  
435 - <field>  
436 - <name>fcno16</name>  
437 - <type>String</type>  
438 - <format/>  
439 - </field>  
440 - <field>  
441 - <name>fcno17</name>  
442 - <type>String</type>  
443 - <format/>  
444 - </field>  
445 - <field>  
446 - <name>fcno18</name>  
447 - <type>String</type>  
448 - <format/>  
449 - </field>  
450 - <field>  
451 - <name>fcno19</name>  
452 - <type>String</type>  
453 - <format/>  
454 - </field>  
455 - <field>  
456 - <name>fcno20</name>  
457 - <type>String</type>  
458 - <format/>  
459 - </field>  
460 - <field>  
461 - <name>fcno21</name>  
462 - <type>String</type>  
463 - <format/>  
464 - </field>  
465 - <field>  
466 - <name>fcno22</name>  
467 - <type>String</type>  
468 - <format/>  
469 - </field>  
470 - <field>  
471 - <name>fcno23</name>  
472 - <type>String</type>  
473 - <format/>  
474 - </field>  
475 - <field>  
476 - <name>fcno24</name>  
477 - <type>String</type>  
478 - <format/>  
479 - </field>  
480 - <field>  
481 - <name>fcno25</name>  
482 - <type>String</type>  
483 - <format/>  
484 - </field>  
485 - <field>  
486 - <name>fcno26</name>  
487 - <type>String</type>  
488 - <format/>  
489 - </field>  
490 - <field>  
491 - <name>fcno27</name>  
492 - <type>String</type>  
493 - <format/>  
494 - </field>  
495 - <field>  
496 - <name>fcno28</name>  
497 - <type>String</type>  
498 - <format/>  
499 - </field>  
500 - <field>  
501 - <name>fcno29</name>  
502 - <type>String</type>  
503 - <format/>  
504 - </field>  
505 - <field>  
506 - <name>fcno30</name>  
507 - <type>String</type>  
508 - <format/>  
509 - </field>  
510 - <field>  
511 - <name>fcno31</name>  
512 - <type>String</type>  
513 - <format/>  
514 - </field>  
515 - <field>  
516 - <name>fcno32</name>  
517 - <type>String</type>  
518 - <format/>  
519 - </field>  
520 - <field>  
521 - <name>fcno33</name>  
522 - <type>String</type>  
523 - <format/>  
524 - </field>  
525 - <field>  
526 - <name>fcno34</name>  
527 - <type>String</type>  
528 - <format/>  
529 - </field>  
530 - <field>  
531 - <name>fcno35</name>  
532 - <type>String</type>  
533 - <format/>  
534 - </field>  
535 - <field>  
536 - <name>fcno36</name>  
537 - <type>String</type>  
538 - <format/>  
539 - </field>  
540 - <field>  
541 - <name>fcno37</name>  
542 - <type>String</type>  
543 - <format/>  
544 - </field>  
545 - <field>  
546 - <name>fcno38</name>  
547 - <type>String</type>  
548 - <format/>  
549 - </field>  
550 - <field>  
551 - <name>fcno39</name>  
552 - <type>String</type>  
553 - <format/>  
554 - </field>  
555 - <field>  
556 - <name>fcno40</name>  
557 - <type>String</type>  
558 - <format/>  
559 - </field>  
560 - <field>  
561 - <name>fcno41</name>  
562 - <type>String</type>  
563 - <format/>  
564 - </field>  
565 - <field>  
566 - <name>fcno42</name>  
567 - <type>String</type>  
568 - <format/>  
569 - </field>  
570 - <field>  
571 - <name>fcno43</name>  
572 - <type>String</type>  
573 - <format/>  
574 - </field>  
575 - <field>  
576 - <name>fcno44</name>  
577 - <type>String</type>  
578 - <format/>  
579 - </field>  
580 - <field>  
581 - <name>fcno45</name>  
582 - <type>String</type>  
583 - <format/>  
584 - </field>  
585 - <field>  
586 - <name>fcno46</name>  
587 - <type>String</type>  
588 - <format/>  
589 - </field>  
590 - <field>  
591 - <name>fcno47</name>  
592 - <type>String</type>  
593 - <format/>  
594 - </field>  
595 - <field>  
596 - <name>fcno48</name>  
597 - <type>String</type>  
598 - <format/>  
599 - </field>  
600 - <field>  
601 - <name>fcno49</name>  
602 - <type>String</type>  
603 - <format/>  
604 - </field>  
605 - <field>  
606 - <name>fcno50</name>  
607 - <type>String</type>  
608 - <format/>  
609 - </field>  
610 - <field>  
611 - <name>fcno51</name>  
612 - <type>String</type>  
613 - <format/>  
614 - </field>  
615 - <field>  
616 - <name>fcno52</name>  
617 - <type>String</type>  
618 - <format/>  
619 - </field>  
620 - <field>  
621 - <name>fcno53</name>  
622 - <type>String</type>  
623 - <format/>  
624 - </field>  
625 - <field>  
626 - <name>fcno54</name>  
627 - <type>String</type>  
628 - <format/>  
629 - </field>  
630 - <field>  
631 - <name>fcno55</name>  
632 - <type>String</type>  
633 - <format/>  
634 - </field>  
635 - <field>  
636 - <name>fcno56</name>  
637 - <type>String</type>  
638 - <format/>  
639 - </field>  
640 - <field>  
641 - <name>fcno57</name>  
642 - <type>String</type>  
643 - <format/>  
644 - </field>  
645 - <field>  
646 - <name>fcno58</name>  
647 - <type>String</type>  
648 - <format/>  
649 - </field>  
650 - <field>  
651 - <name>fcno59</name>  
652 - <type>String</type>  
653 - <format/>  
654 - </field>  
655 - <field>  
656 - <name>fcno60</name>  
657 - <type>String</type>  
658 - <format/>  
659 - </field>  
660 - <field>  
661 - <name>fcno61</name>  
662 - <type>String</type>  
663 - <format/>  
664 - </field>  
665 - <field>  
666 - <name>fcno62</name>  
667 - <type>String</type>  
668 - <format/>  
669 - </field>  
670 - <field>  
671 - <name>fcno63</name>  
672 - <type>String</type>  
673 - <format/>  
674 - </field>  
675 - <field>  
676 - <name>fcno64</name>  
677 - <type>String</type>  
678 - <format/>  
679 - </field>  
680 - <field>  
681 - <name>fcno65</name>  
682 - <type>String</type>  
683 - <format/>  
684 - </field>  
685 - <field>  
686 - <name>fcno66</name>  
687 - <type>String</type>  
688 - <format/>  
689 - </field>  
690 - <field>  
691 - <name>fcno67</name>  
692 - <type>String</type>  
693 - <format/>  
694 - </field>  
695 - <field>  
696 - <name>fcno68</name>  
697 - <type>String</type>  
698 - <format/>  
699 - </field>  
700 - <field>  
701 - <name>fcno69</name>  
702 - <type>String</type>  
703 - <format/>  
704 - </field>  
705 - <field>  
706 - <name>fcno70</name>  
707 - <type>String</type>  
708 - <format/>  
709 - </field>  
710 - </fields>  
711 - <custom>  
712 - <header_font_name>arial</header_font_name>  
713 - <header_font_size>10</header_font_size>  
714 - <header_font_bold>N</header_font_bold>  
715 - <header_font_italic>N</header_font_italic>  
716 - <header_font_underline>no</header_font_underline>  
717 - <header_font_orientation>horizontal</header_font_orientation>  
718 - <header_font_color>black</header_font_color>  
719 - <header_background_color>none</header_background_color>  
720 - <header_row_height>255</header_row_height>  
721 - <header_alignment>left</header_alignment>  
722 - <header_image/>  
723 - <row_font_name>arial</row_font_name>  
724 - <row_font_size>10</row_font_size>  
725 - <row_font_color>black</row_font_color>  
726 - <row_background_color>none</row_background_color>  
727 - </custom>  
728 - <cluster_schema/>  
729 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
730 - <xloc>692</xloc>  
731 - <yloc>514</yloc>  
732 - <draw>Y</draw>  
733 - </GUI>  
734 - </step>  
735 -  
736 - <step>  
737 - <name>&#x5217;&#x8f6c;&#x884c;</name>  
738 - <type>Denormaliser</type>  
739 - <description/>  
740 - <distribute>N</distribute>  
741 - <custom_distribution/>  
742 - <copies>1</copies>  
743 - <partitioning>  
744 - <method>none</method>  
745 - <schema_name/>  
746 - </partitioning>  
747 - <key_field>fcno</key_field>  
748 - <group>  
749 - <field>  
750 - <name>lp</name>  
751 - </field>  
752 - </group>  
753 - <fields>  
754 - <field>  
755 - <field_name>all_content</field_name>  
756 - <key_value>1</key_value>  
757 - <target_name>fcno1</target_name>  
758 - <target_type>String</target_type>  
759 - <target_format/>  
760 - <target_length>-1</target_length>  
761 - <target_precision>-1</target_precision>  
762 - <target_decimal_symbol/>  
763 - <target_grouping_symbol/>  
764 - <target_currency_symbol/>  
765 - <target_null_string/>  
766 - <target_aggregation_type>-</target_aggregation_type>  
767 - </field>  
768 - <field>  
769 - <field_name>all_content</field_name>  
770 - <key_value>2</key_value>  
771 - <target_name>fcno2</target_name>  
772 - <target_type>String</target_type>  
773 - <target_format/>  
774 - <target_length>-1</target_length>  
775 - <target_precision>-1</target_precision>  
776 - <target_decimal_symbol/>  
777 - <target_grouping_symbol/>  
778 - <target_currency_symbol/>  
779 - <target_null_string/>  
780 - <target_aggregation_type>-</target_aggregation_type>  
781 - </field>  
782 - <field>  
783 - <field_name>all_content</field_name>  
784 - <key_value>3</key_value>  
785 - <target_name>fcno3</target_name>  
786 - <target_type>String</target_type>  
787 - <target_format/>  
788 - <target_length>-1</target_length>  
789 - <target_precision>-1</target_precision>  
790 - <target_decimal_symbol/>  
791 - <target_grouping_symbol/>  
792 - <target_currency_symbol/>  
793 - <target_null_string/>  
794 - <target_aggregation_type>-</target_aggregation_type>  
795 - </field>  
796 - <field>  
797 - <field_name>all_content</field_name>  
798 - <key_value>4</key_value>  
799 - <target_name>fcno4</target_name>  
800 - <target_type>String</target_type>  
801 - <target_format/>  
802 - <target_length>-1</target_length>  
803 - <target_precision>-1</target_precision>  
804 - <target_decimal_symbol/>  
805 - <target_grouping_symbol/>  
806 - <target_currency_symbol/>  
807 - <target_null_string/>  
808 - <target_aggregation_type>-</target_aggregation_type>  
809 - </field>  
810 - <field>  
811 - <field_name>all_content</field_name>  
812 - <key_value>5</key_value>  
813 - <target_name>fcno5</target_name>  
814 - <target_type>String</target_type>  
815 - <target_format/>  
816 - <target_length>-1</target_length>  
817 - <target_precision>-1</target_precision>  
818 - <target_decimal_symbol/>  
819 - <target_grouping_symbol/>  
820 - <target_currency_symbol/>  
821 - <target_null_string/>  
822 - <target_aggregation_type>-</target_aggregation_type>  
823 - </field>  
824 - <field>  
825 - <field_name>all_content</field_name>  
826 - <key_value>6</key_value>  
827 - <target_name>fcno6</target_name>  
828 - <target_type>String</target_type>  
829 - <target_format/>  
830 - <target_length>-1</target_length>  
831 - <target_precision>-1</target_precision>  
832 - <target_decimal_symbol/>  
833 - <target_grouping_symbol/>  
834 - <target_currency_symbol/>  
835 - <target_null_string/>  
836 - <target_aggregation_type>-</target_aggregation_type>  
837 - </field>  
838 - <field>  
839 - <field_name>all_content</field_name>  
840 - <key_value>7</key_value>  
841 - <target_name>fcno7</target_name>  
842 - <target_type>String</target_type>  
843 - <target_format/>  
844 - <target_length>-1</target_length>  
845 - <target_precision>-1</target_precision>  
846 - <target_decimal_symbol/>  
847 - <target_grouping_symbol/>  
848 - <target_currency_symbol/>  
849 - <target_null_string/>  
850 - <target_aggregation_type>-</target_aggregation_type>  
851 - </field>  
852 - <field>  
853 - <field_name>all_content</field_name>  
854 - <key_value>8</key_value>  
855 - <target_name>fcno8</target_name>  
856 - <target_type>String</target_type>  
857 - <target_format/>  
858 - <target_length>-1</target_length>  
859 - <target_precision>-1</target_precision>  
860 - <target_decimal_symbol/>  
861 - <target_grouping_symbol/>  
862 - <target_currency_symbol/>  
863 - <target_null_string/>  
864 - <target_aggregation_type>-</target_aggregation_type>  
865 - </field>  
866 - <field>  
867 - <field_name>all_content</field_name>  
868 - <key_value>9</key_value>  
869 - <target_name>fcno9</target_name>  
870 - <target_type>String</target_type>  
871 - <target_format/>  
872 - <target_length>-1</target_length>  
873 - <target_precision>-1</target_precision>  
874 - <target_decimal_symbol/>  
875 - <target_grouping_symbol/>  
876 - <target_currency_symbol/>  
877 - <target_null_string/>  
878 - <target_aggregation_type>-</target_aggregation_type>  
879 - </field>  
880 - <field>  
881 - <field_name>all_content</field_name>  
882 - <key_value>10</key_value>  
883 - <target_name>fcno10</target_name>  
884 - <target_type>String</target_type>  
885 - <target_format/>  
886 - <target_length>-1</target_length>  
887 - <target_precision>-1</target_precision>  
888 - <target_decimal_symbol/>  
889 - <target_grouping_symbol/>  
890 - <target_currency_symbol/>  
891 - <target_null_string/>  
892 - <target_aggregation_type>-</target_aggregation_type>  
893 - </field>  
894 - <field>  
895 - <field_name>all_content</field_name>  
896 - <key_value>11</key_value>  
897 - <target_name>fcno11</target_name>  
898 - <target_type>String</target_type>  
899 - <target_format/>  
900 - <target_length>-1</target_length>  
901 - <target_precision>-1</target_precision>  
902 - <target_decimal_symbol/>  
903 - <target_grouping_symbol/>  
904 - <target_currency_symbol/>  
905 - <target_null_string/>  
906 - <target_aggregation_type>-</target_aggregation_type>  
907 - </field>  
908 - <field>  
909 - <field_name>all_content</field_name>  
910 - <key_value>12</key_value>  
911 - <target_name>fcno12</target_name>  
912 - <target_type>String</target_type>  
913 - <target_format/>  
914 - <target_length>-1</target_length>  
915 - <target_precision>-1</target_precision>  
916 - <target_decimal_symbol/>  
917 - <target_grouping_symbol/>  
918 - <target_currency_symbol/>  
919 - <target_null_string/>  
920 - <target_aggregation_type>-</target_aggregation_type>  
921 - </field>  
922 - <field>  
923 - <field_name>all_content</field_name>  
924 - <key_value>13</key_value>  
925 - <target_name>fcno13</target_name>  
926 - <target_type>String</target_type>  
927 - <target_format/>  
928 - <target_length>-1</target_length>  
929 - <target_precision>-1</target_precision>  
930 - <target_decimal_symbol/>  
931 - <target_grouping_symbol/>  
932 - <target_currency_symbol/>  
933 - <target_null_string/>  
934 - <target_aggregation_type>-</target_aggregation_type>  
935 - </field>  
936 - <field>  
937 - <field_name>all_content</field_name>  
938 - <key_value>14</key_value>  
939 - <target_name>fcno14</target_name>  
940 - <target_type>String</target_type>  
941 - <target_format/>  
942 - <target_length>-1</target_length>  
943 - <target_precision>-1</target_precision>  
944 - <target_decimal_symbol/>  
945 - <target_grouping_symbol/>  
946 - <target_currency_symbol/>  
947 - <target_null_string/>  
948 - <target_aggregation_type>-</target_aggregation_type>  
949 - </field>  
950 - <field>  
951 - <field_name>all_content</field_name>  
952 - <key_value>15</key_value>  
953 - <target_name>fcno15</target_name>  
954 - <target_type>String</target_type>  
955 - <target_format/>  
956 - <target_length>-1</target_length>  
957 - <target_precision>-1</target_precision>  
958 - <target_decimal_symbol/>  
959 - <target_grouping_symbol/>  
960 - <target_currency_symbol/>  
961 - <target_null_string/>  
962 - <target_aggregation_type>-</target_aggregation_type>  
963 - </field>  
964 - <field>  
965 - <field_name>all_content</field_name>  
966 - <key_value>16</key_value>  
967 - <target_name>fcno16</target_name>  
968 - <target_type>String</target_type>  
969 - <target_format/>  
970 - <target_length>-1</target_length>  
971 - <target_precision>-1</target_precision>  
972 - <target_decimal_symbol/>  
973 - <target_grouping_symbol/>  
974 - <target_currency_symbol/>  
975 - <target_null_string/>  
976 - <target_aggregation_type>-</target_aggregation_type>  
977 - </field>  
978 - <field>  
979 - <field_name>all_content</field_name>  
980 - <key_value>17</key_value>  
981 - <target_name>fcno17</target_name>  
982 - <target_type>String</target_type>  
983 - <target_format/>  
984 - <target_length>-1</target_length>  
985 - <target_precision>-1</target_precision>  
986 - <target_decimal_symbol/>  
987 - <target_grouping_symbol/>  
988 - <target_currency_symbol/>  
989 - <target_null_string/>  
990 - <target_aggregation_type>-</target_aggregation_type>  
991 - </field>  
992 - <field>  
993 - <field_name>all_content</field_name>  
994 - <key_value>18</key_value>  
995 - <target_name>fcno18</target_name>  
996 - <target_type>String</target_type>  
997 - <target_format/>  
998 - <target_length>-1</target_length>  
999 - <target_precision>-1</target_precision>  
1000 - <target_decimal_symbol/>  
1001 - <target_grouping_symbol/>  
1002 - <target_currency_symbol/>  
1003 - <target_null_string/>  
1004 - <target_aggregation_type>-</target_aggregation_type>  
1005 - </field>  
1006 - <field>  
1007 - <field_name>all_content</field_name>  
1008 - <key_value>19</key_value>  
1009 - <target_name>fcno19</target_name>  
1010 - <target_type>String</target_type>  
1011 - <target_format/>  
1012 - <target_length>-1</target_length>  
1013 - <target_precision>-1</target_precision>  
1014 - <target_decimal_symbol/>  
1015 - <target_grouping_symbol/>  
1016 - <target_currency_symbol/>  
1017 - <target_null_string/>  
1018 - <target_aggregation_type>-</target_aggregation_type>  
1019 - </field>  
1020 - <field>  
1021 - <field_name>all_content</field_name>  
1022 - <key_value>20</key_value>  
1023 - <target_name>fcno20</target_name>  
1024 - <target_type>String</target_type>  
1025 - <target_format/>  
1026 - <target_length>-1</target_length>  
1027 - <target_precision>-1</target_precision>  
1028 - <target_decimal_symbol/>  
1029 - <target_grouping_symbol/>  
1030 - <target_currency_symbol/>  
1031 - <target_null_string/>  
1032 - <target_aggregation_type>-</target_aggregation_type>  
1033 - </field>  
1034 - <field>  
1035 - <field_name>all_content</field_name>  
1036 - <key_value>21</key_value>  
1037 - <target_name>fcno21</target_name>  
1038 - <target_type>String</target_type>  
1039 - <target_format/>  
1040 - <target_length>-1</target_length>  
1041 - <target_precision>-1</target_precision>  
1042 - <target_decimal_symbol/>  
1043 - <target_grouping_symbol/>  
1044 - <target_currency_symbol/>  
1045 - <target_null_string/>  
1046 - <target_aggregation_type>-</target_aggregation_type>  
1047 - </field>  
1048 - <field>  
1049 - <field_name>all_content</field_name>  
1050 - <key_value>22</key_value>  
1051 - <target_name>fcno22</target_name>  
1052 - <target_type>String</target_type>  
1053 - <target_format/>  
1054 - <target_length>-1</target_length>  
1055 - <target_precision>-1</target_precision>  
1056 - <target_decimal_symbol/>  
1057 - <target_grouping_symbol/>  
1058 - <target_currency_symbol/>  
1059 - <target_null_string/>  
1060 - <target_aggregation_type>-</target_aggregation_type>  
1061 - </field>  
1062 - <field>  
1063 - <field_name>all_content</field_name>  
1064 - <key_value>23</key_value>  
1065 - <target_name>fcno23</target_name>  
1066 - <target_type>String</target_type>  
1067 - <target_format/>  
1068 - <target_length>-1</target_length>  
1069 - <target_precision>-1</target_precision>  
1070 - <target_decimal_symbol/>  
1071 - <target_grouping_symbol/>  
1072 - <target_currency_symbol/>  
1073 - <target_null_string/>  
1074 - <target_aggregation_type>-</target_aggregation_type>  
1075 - </field>  
1076 - <field>  
1077 - <field_name>all_content</field_name>  
1078 - <key_value>24</key_value>  
1079 - <target_name>fcno24</target_name>  
1080 - <target_type>String</target_type>  
1081 - <target_format/>  
1082 - <target_length>-1</target_length>  
1083 - <target_precision>-1</target_precision>  
1084 - <target_decimal_symbol/>  
1085 - <target_grouping_symbol/>  
1086 - <target_currency_symbol/>  
1087 - <target_null_string/>  
1088 - <target_aggregation_type>-</target_aggregation_type>  
1089 - </field>  
1090 - <field>  
1091 - <field_name>all_content</field_name>  
1092 - <key_value>25</key_value>  
1093 - <target_name>fcno25</target_name>  
1094 - <target_type>String</target_type>  
1095 - <target_format/>  
1096 - <target_length>-1</target_length>  
1097 - <target_precision>-1</target_precision>  
1098 - <target_decimal_symbol/>  
1099 - <target_grouping_symbol/>  
1100 - <target_currency_symbol/>  
1101 - <target_null_string/>  
1102 - <target_aggregation_type>-</target_aggregation_type>  
1103 - </field>  
1104 - <field>  
1105 - <field_name>all_content</field_name>  
1106 - <key_value>26</key_value>  
1107 - <target_name>fcno26</target_name>  
1108 - <target_type>String</target_type>  
1109 - <target_format/>  
1110 - <target_length>-1</target_length>  
1111 - <target_precision>-1</target_precision>  
1112 - <target_decimal_symbol/>  
1113 - <target_grouping_symbol/>  
1114 - <target_currency_symbol/>  
1115 - <target_null_string/>  
1116 - <target_aggregation_type>-</target_aggregation_type>  
1117 - </field>  
1118 - <field>  
1119 - <field_name>all_content</field_name>  
1120 - <key_value>27</key_value>  
1121 - <target_name>fcno27</target_name>  
1122 - <target_type>String</target_type>  
1123 - <target_format/>  
1124 - <target_length>-1</target_length>  
1125 - <target_precision>-1</target_precision>  
1126 - <target_decimal_symbol/>  
1127 - <target_grouping_symbol/>  
1128 - <target_currency_symbol/>  
1129 - <target_null_string/>  
1130 - <target_aggregation_type>-</target_aggregation_type>  
1131 - </field>  
1132 - <field>  
1133 - <field_name>all_content</field_name>  
1134 - <key_value>28</key_value>  
1135 - <target_name>fcno28</target_name>  
1136 - <target_type>String</target_type>  
1137 - <target_format/>  
1138 - <target_length>-1</target_length>  
1139 - <target_precision>-1</target_precision>  
1140 - <target_decimal_symbol/>  
1141 - <target_grouping_symbol/>  
1142 - <target_currency_symbol/>  
1143 - <target_null_string/>  
1144 - <target_aggregation_type>-</target_aggregation_type>  
1145 - </field>  
1146 - <field>  
1147 - <field_name>all_content</field_name>  
1148 - <key_value>29</key_value>  
1149 - <target_name>fcno29</target_name>  
1150 - <target_type>String</target_type>  
1151 - <target_format/>  
1152 - <target_length>-1</target_length>  
1153 - <target_precision>-1</target_precision>  
1154 - <target_decimal_symbol/>  
1155 - <target_grouping_symbol/>  
1156 - <target_currency_symbol/>  
1157 - <target_null_string/>  
1158 - <target_aggregation_type>-</target_aggregation_type>  
1159 - </field>  
1160 - <field>  
1161 - <field_name>all_content</field_name>  
1162 - <key_value>30</key_value>  
1163 - <target_name>fcno30</target_name>  
1164 - <target_type>String</target_type>  
1165 - <target_format/>  
1166 - <target_length>-1</target_length>  
1167 - <target_precision>-1</target_precision>  
1168 - <target_decimal_symbol/>  
1169 - <target_grouping_symbol/>  
1170 - <target_currency_symbol/>  
1171 - <target_null_string/>  
1172 - <target_aggregation_type>-</target_aggregation_type>  
1173 - </field>  
1174 - <field>  
1175 - <field_name>all_content</field_name>  
1176 - <key_value>31</key_value>  
1177 - <target_name>fcno31</target_name>  
1178 - <target_type>String</target_type>  
1179 - <target_format/>  
1180 - <target_length>-1</target_length>  
1181 - <target_precision>-1</target_precision>  
1182 - <target_decimal_symbol/>  
1183 - <target_grouping_symbol/>  
1184 - <target_currency_symbol/>  
1185 - <target_null_string/>  
1186 - <target_aggregation_type>-</target_aggregation_type>  
1187 - </field>  
1188 - <field>  
1189 - <field_name>all_content</field_name>  
1190 - <key_value>32</key_value>  
1191 - <target_name>fcno32</target_name>  
1192 - <target_type>String</target_type>  
1193 - <target_format/>  
1194 - <target_length>-1</target_length>  
1195 - <target_precision>-1</target_precision>  
1196 - <target_decimal_symbol/>  
1197 - <target_grouping_symbol/>  
1198 - <target_currency_symbol/>  
1199 - <target_null_string/>  
1200 - <target_aggregation_type>-</target_aggregation_type>  
1201 - </field>  
1202 - <field>  
1203 - <field_name>all_content</field_name>  
1204 - <key_value>33</key_value>  
1205 - <target_name>fcno33</target_name>  
1206 - <target_type>String</target_type>  
1207 - <target_format/>  
1208 - <target_length>-1</target_length>  
1209 - <target_precision>-1</target_precision>  
1210 - <target_decimal_symbol/>  
1211 - <target_grouping_symbol/>  
1212 - <target_currency_symbol/>  
1213 - <target_null_string/>  
1214 - <target_aggregation_type>-</target_aggregation_type>  
1215 - </field>  
1216 - <field>  
1217 - <field_name>all_content</field_name>  
1218 - <key_value>34</key_value>  
1219 - <target_name>fcno34</target_name>  
1220 - <target_type>String</target_type>  
1221 - <target_format/>  
1222 - <target_length>-1</target_length>  
1223 - <target_precision>-1</target_precision>  
1224 - <target_decimal_symbol/>  
1225 - <target_grouping_symbol/>  
1226 - <target_currency_symbol/>  
1227 - <target_null_string/>  
1228 - <target_aggregation_type>-</target_aggregation_type>  
1229 - </field>  
1230 - <field>  
1231 - <field_name>all_content</field_name>  
1232 - <key_value>35</key_value>  
1233 - <target_name>fcno35</target_name>  
1234 - <target_type>String</target_type>  
1235 - <target_format/>  
1236 - <target_length>-1</target_length>  
1237 - <target_precision>-1</target_precision>  
1238 - <target_decimal_symbol/>  
1239 - <target_grouping_symbol/>  
1240 - <target_currency_symbol/>  
1241 - <target_null_string/>  
1242 - <target_aggregation_type>-</target_aggregation_type>  
1243 - </field>  
1244 - <field>  
1245 - <field_name>all_content</field_name>  
1246 - <key_value>36</key_value>  
1247 - <target_name>fcno36</target_name>  
1248 - <target_type>String</target_type>  
1249 - <target_format/>  
1250 - <target_length>-1</target_length>  
1251 - <target_precision>-1</target_precision>  
1252 - <target_decimal_symbol/>  
1253 - <target_grouping_symbol/>  
1254 - <target_currency_symbol/>  
1255 - <target_null_string/>  
1256 - <target_aggregation_type>-</target_aggregation_type>  
1257 - </field>  
1258 - <field>  
1259 - <field_name>all_content</field_name>  
1260 - <key_value>37</key_value>  
1261 - <target_name>fcno37</target_name>  
1262 - <target_type>String</target_type>  
1263 - <target_format/>  
1264 - <target_length>-1</target_length>  
1265 - <target_precision>-1</target_precision>  
1266 - <target_decimal_symbol/>  
1267 - <target_grouping_symbol/>  
1268 - <target_currency_symbol/>  
1269 - <target_null_string/>  
1270 - <target_aggregation_type>-</target_aggregation_type>  
1271 - </field>  
1272 - <field>  
1273 - <field_name>all_content</field_name>  
1274 - <key_value>38</key_value>  
1275 - <target_name>fcno38</target_name>  
1276 - <target_type>String</target_type>  
1277 - <target_format/>  
1278 - <target_length>-1</target_length>  
1279 - <target_precision>-1</target_precision>  
1280 - <target_decimal_symbol/>  
1281 - <target_grouping_symbol/>  
1282 - <target_currency_symbol/>  
1283 - <target_null_string/>  
1284 - <target_aggregation_type>-</target_aggregation_type>  
1285 - </field>  
1286 - <field>  
1287 - <field_name>all_content</field_name>  
1288 - <key_value>39</key_value>  
1289 - <target_name>fcno39</target_name>  
1290 - <target_type>String</target_type>  
1291 - <target_format/>  
1292 - <target_length>-1</target_length>  
1293 - <target_precision>-1</target_precision>  
1294 - <target_decimal_symbol/>  
1295 - <target_grouping_symbol/>  
1296 - <target_currency_symbol/>  
1297 - <target_null_string/>  
1298 - <target_aggregation_type>-</target_aggregation_type>  
1299 - </field>  
1300 - <field>  
1301 - <field_name>all_content</field_name>  
1302 - <key_value>40</key_value>  
1303 - <target_name>fcno40</target_name>  
1304 - <target_type>String</target_type>  
1305 - <target_format/>  
1306 - <target_length>-1</target_length>  
1307 - <target_precision>-1</target_precision>  
1308 - <target_decimal_symbol/>  
1309 - <target_grouping_symbol/>  
1310 - <target_currency_symbol/>  
1311 - <target_null_string/>  
1312 - <target_aggregation_type>-</target_aggregation_type>  
1313 - </field>  
1314 - <field>  
1315 - <field_name>all_content</field_name>  
1316 - <key_value>41</key_value>  
1317 - <target_name>fcno41</target_name>  
1318 - <target_type>String</target_type>  
1319 - <target_format/>  
1320 - <target_length>-1</target_length>  
1321 - <target_precision>-1</target_precision>  
1322 - <target_decimal_symbol/>  
1323 - <target_grouping_symbol/>  
1324 - <target_currency_symbol/>  
1325 - <target_null_string/>  
1326 - <target_aggregation_type>-</target_aggregation_type>  
1327 - </field>  
1328 - <field>  
1329 - <field_name>all_content</field_name>  
1330 - <key_value>42</key_value>  
1331 - <target_name>fcno42</target_name>  
1332 - <target_type>String</target_type>  
1333 - <target_format/>  
1334 - <target_length>-1</target_length>  
1335 - <target_precision>-1</target_precision>  
1336 - <target_decimal_symbol/>  
1337 - <target_grouping_symbol/>  
1338 - <target_currency_symbol/>  
1339 - <target_null_string/>  
1340 - <target_aggregation_type>-</target_aggregation_type>  
1341 - </field>  
1342 - <field>  
1343 - <field_name>all_content</field_name>  
1344 - <key_value>43</key_value>  
1345 - <target_name>fcno43</target_name>  
1346 - <target_type>String</target_type>  
1347 - <target_format/>  
1348 - <target_length>-1</target_length>  
1349 - <target_precision>-1</target_precision>  
1350 - <target_decimal_symbol/>  
1351 - <target_grouping_symbol/>  
1352 - <target_currency_symbol/>  
1353 - <target_null_string/>  
1354 - <target_aggregation_type>-</target_aggregation_type>  
1355 - </field>  
1356 - <field>  
1357 - <field_name>all_content</field_name>  
1358 - <key_value>44</key_value>  
1359 - <target_name>fcno44</target_name>  
1360 - <target_type>String</target_type>  
1361 - <target_format/>  
1362 - <target_length>-1</target_length>  
1363 - <target_precision>-1</target_precision>  
1364 - <target_decimal_symbol/>  
1365 - <target_grouping_symbol/>  
1366 - <target_currency_symbol/>  
1367 - <target_null_string/>  
1368 - <target_aggregation_type>-</target_aggregation_type>  
1369 - </field>  
1370 - <field>  
1371 - <field_name>all_content</field_name>  
1372 - <key_value>45</key_value>  
1373 - <target_name>fcno45</target_name>  
1374 - <target_type>String</target_type>  
1375 - <target_format/>  
1376 - <target_length>-1</target_length>  
1377 - <target_precision>-1</target_precision>  
1378 - <target_decimal_symbol/>  
1379 - <target_grouping_symbol/>  
1380 - <target_currency_symbol/>  
1381 - <target_null_string/>  
1382 - <target_aggregation_type>-</target_aggregation_type>  
1383 - </field>  
1384 - <field>  
1385 - <field_name>all_content</field_name>  
1386 - <key_value>46</key_value>  
1387 - <target_name>fcno46</target_name>  
1388 - <target_type>String</target_type>  
1389 - <target_format/>  
1390 - <target_length>-1</target_length>  
1391 - <target_precision>-1</target_precision>  
1392 - <target_decimal_symbol/>  
1393 - <target_grouping_symbol/>  
1394 - <target_currency_symbol/>  
1395 - <target_null_string/>  
1396 - <target_aggregation_type>-</target_aggregation_type>  
1397 - </field>  
1398 - <field>  
1399 - <field_name>all_content</field_name>  
1400 - <key_value>47</key_value>  
1401 - <target_name>fcno47</target_name>  
1402 - <target_type>String</target_type>  
1403 - <target_format/>  
1404 - <target_length>-1</target_length>  
1405 - <target_precision>-1</target_precision>  
1406 - <target_decimal_symbol/>  
1407 - <target_grouping_symbol/>  
1408 - <target_currency_symbol/>  
1409 - <target_null_string/>  
1410 - <target_aggregation_type>-</target_aggregation_type>  
1411 - </field>  
1412 - <field>  
1413 - <field_name>all_content</field_name>  
1414 - <key_value>48</key_value>  
1415 - <target_name>fcno48</target_name>  
1416 - <target_type>String</target_type>  
1417 - <target_format/>  
1418 - <target_length>-1</target_length>  
1419 - <target_precision>-1</target_precision>  
1420 - <target_decimal_symbol/>  
1421 - <target_grouping_symbol/>  
1422 - <target_currency_symbol/>  
1423 - <target_null_string/>  
1424 - <target_aggregation_type>-</target_aggregation_type>  
1425 - </field>  
1426 - <field>  
1427 - <field_name>all_content</field_name>  
1428 - <key_value>49</key_value>  
1429 - <target_name>fcno49</target_name>  
1430 - <target_type>String</target_type>  
1431 - <target_format/>  
1432 - <target_length>-1</target_length>  
1433 - <target_precision>-1</target_precision>  
1434 - <target_decimal_symbol/>  
1435 - <target_grouping_symbol/>  
1436 - <target_currency_symbol/>  
1437 - <target_null_string/>  
1438 - <target_aggregation_type>-</target_aggregation_type>  
1439 - </field>  
1440 - <field>  
1441 - <field_name>all_content</field_name>  
1442 - <key_value>50</key_value>  
1443 - <target_name>fcno50</target_name>  
1444 - <target_type>String</target_type>  
1445 - <target_format/>  
1446 - <target_length>-1</target_length>  
1447 - <target_precision>-1</target_precision>  
1448 - <target_decimal_symbol/>  
1449 - <target_grouping_symbol/>  
1450 - <target_currency_symbol/>  
1451 - <target_null_string/>  
1452 - <target_aggregation_type>-</target_aggregation_type>  
1453 - </field>  
1454 - <field>  
1455 - <field_name>all_content</field_name>  
1456 - <key_value>51</key_value>  
1457 - <target_name>fcno51</target_name>  
1458 - <target_type>String</target_type>  
1459 - <target_format/>  
1460 - <target_length>-1</target_length>  
1461 - <target_precision>-1</target_precision>  
1462 - <target_decimal_symbol/>  
1463 - <target_grouping_symbol/>  
1464 - <target_currency_symbol/>  
1465 - <target_null_string/>  
1466 - <target_aggregation_type>-</target_aggregation_type>  
1467 - </field>  
1468 - <field>  
1469 - <field_name>all_content</field_name>  
1470 - <key_value>52</key_value>  
1471 - <target_name>fcno52</target_name>  
1472 - <target_type>String</target_type>  
1473 - <target_format/>  
1474 - <target_length>-1</target_length>  
1475 - <target_precision>-1</target_precision>  
1476 - <target_decimal_symbol/>  
1477 - <target_grouping_symbol/>  
1478 - <target_currency_symbol/>  
1479 - <target_null_string/>  
1480 - <target_aggregation_type>-</target_aggregation_type>  
1481 - </field>  
1482 - <field>  
1483 - <field_name>all_content</field_name>  
1484 - <key_value>53</key_value>  
1485 - <target_name>fcno53</target_name>  
1486 - <target_type>String</target_type>  
1487 - <target_format/>  
1488 - <target_length>-1</target_length>  
1489 - <target_precision>-1</target_precision>  
1490 - <target_decimal_symbol/>  
1491 - <target_grouping_symbol/>  
1492 - <target_currency_symbol/>  
1493 - <target_null_string/>  
1494 - <target_aggregation_type>-</target_aggregation_type>  
1495 - </field>  
1496 - <field>  
1497 - <field_name>all_content</field_name>  
1498 - <key_value>54</key_value>  
1499 - <target_name>fcno54</target_name>  
1500 - <target_type>String</target_type>  
1501 - <target_format/>  
1502 - <target_length>-1</target_length>  
1503 - <target_precision>-1</target_precision>  
1504 - <target_decimal_symbol/>  
1505 - <target_grouping_symbol/>  
1506 - <target_currency_symbol/>  
1507 - <target_null_string/>  
1508 - <target_aggregation_type>-</target_aggregation_type>  
1509 - </field>  
1510 - <field>  
1511 - <field_name>all_content</field_name>  
1512 - <key_value>55</key_value>  
1513 - <target_name>fcno55</target_name>  
1514 - <target_type>String</target_type>  
1515 - <target_format/>  
1516 - <target_length>-1</target_length>  
1517 - <target_precision>-1</target_precision>  
1518 - <target_decimal_symbol/>  
1519 - <target_grouping_symbol/>  
1520 - <target_currency_symbol/>  
1521 - <target_null_string/>  
1522 - <target_aggregation_type>-</target_aggregation_type>  
1523 - </field>  
1524 - <field>  
1525 - <field_name>all_content</field_name>  
1526 - <key_value>56</key_value>  
1527 - <target_name>fcno56</target_name>  
1528 - <target_type>String</target_type>  
1529 - <target_format/>  
1530 - <target_length>-1</target_length>  
1531 - <target_precision>-1</target_precision>  
1532 - <target_decimal_symbol/>  
1533 - <target_grouping_symbol/>  
1534 - <target_currency_symbol/>  
1535 - <target_null_string/>  
1536 - <target_aggregation_type>-</target_aggregation_type>  
1537 - </field>  
1538 - <field>  
1539 - <field_name>all_content</field_name>  
1540 - <key_value>57</key_value>  
1541 - <target_name>fcno57</target_name>  
1542 - <target_type>String</target_type>  
1543 - <target_format/>  
1544 - <target_length>-1</target_length>  
1545 - <target_precision>-1</target_precision>  
1546 - <target_decimal_symbol/>  
1547 - <target_grouping_symbol/>  
1548 - <target_currency_symbol/>  
1549 - <target_null_string/>  
1550 - <target_aggregation_type>-</target_aggregation_type>  
1551 - </field>  
1552 - <field>  
1553 - <field_name>all_content</field_name>  
1554 - <key_value>58</key_value>  
1555 - <target_name>fcno58</target_name>  
1556 - <target_type>String</target_type>  
1557 - <target_format/>  
1558 - <target_length>-1</target_length>  
1559 - <target_precision>-1</target_precision>  
1560 - <target_decimal_symbol/>  
1561 - <target_grouping_symbol/>  
1562 - <target_currency_symbol/>  
1563 - <target_null_string/>  
1564 - <target_aggregation_type>-</target_aggregation_type>  
1565 - </field>  
1566 - <field>  
1567 - <field_name>all_content</field_name>  
1568 - <key_value>59</key_value>  
1569 - <target_name>fcno59</target_name>  
1570 - <target_type>String</target_type>  
1571 - <target_format/>  
1572 - <target_length>-1</target_length>  
1573 - <target_precision>-1</target_precision>  
1574 - <target_decimal_symbol/>  
1575 - <target_grouping_symbol/>  
1576 - <target_currency_symbol/>  
1577 - <target_null_string/>  
1578 - <target_aggregation_type>-</target_aggregation_type>  
1579 - </field>  
1580 - <field>  
1581 - <field_name>all_content</field_name>  
1582 - <key_value>60</key_value>  
1583 - <target_name>fcno60</target_name>  
1584 - <target_type>String</target_type>  
1585 - <target_format/>  
1586 - <target_length>-1</target_length>  
1587 - <target_precision>-1</target_precision>  
1588 - <target_decimal_symbol/>  
1589 - <target_grouping_symbol/>  
1590 - <target_currency_symbol/>  
1591 - <target_null_string/>  
1592 - <target_aggregation_type>-</target_aggregation_type>  
1593 - </field>  
1594 - <field>  
1595 - <field_name>all_content</field_name>  
1596 - <key_value>61</key_value>  
1597 - <target_name>fcno61</target_name>  
1598 - <target_type>String</target_type>  
1599 - <target_format/>  
1600 - <target_length>-1</target_length>  
1601 - <target_precision>-1</target_precision>  
1602 - <target_decimal_symbol/>  
1603 - <target_grouping_symbol/>  
1604 - <target_currency_symbol/>  
1605 - <target_null_string/>  
1606 - <target_aggregation_type>-</target_aggregation_type>  
1607 - </field>  
1608 - <field>  
1609 - <field_name>all_content</field_name>  
1610 - <key_value>62</key_value>  
1611 - <target_name>fcno62</target_name>  
1612 - <target_type>String</target_type>  
1613 - <target_format/>  
1614 - <target_length>-1</target_length>  
1615 - <target_precision>-1</target_precision>  
1616 - <target_decimal_symbol/>  
1617 - <target_grouping_symbol/>  
1618 - <target_currency_symbol/>  
1619 - <target_null_string/>  
1620 - <target_aggregation_type>-</target_aggregation_type>  
1621 - </field>  
1622 - <field>  
1623 - <field_name>all_content</field_name>  
1624 - <key_value>63</key_value>  
1625 - <target_name>fcno63</target_name>  
1626 - <target_type>String</target_type>  
1627 - <target_format/>  
1628 - <target_length>-1</target_length>  
1629 - <target_precision>-1</target_precision>  
1630 - <target_decimal_symbol/>  
1631 - <target_grouping_symbol/>  
1632 - <target_currency_symbol/>  
1633 - <target_null_string/>  
1634 - <target_aggregation_type>-</target_aggregation_type>  
1635 - </field>  
1636 - <field>  
1637 - <field_name>all_content</field_name>  
1638 - <key_value>64</key_value>  
1639 - <target_name>fcno64</target_name>  
1640 - <target_type>String</target_type>  
1641 - <target_format/>  
1642 - <target_length>-1</target_length>  
1643 - <target_precision>-1</target_precision>  
1644 - <target_decimal_symbol/>  
1645 - <target_grouping_symbol/>  
1646 - <target_currency_symbol/>  
1647 - <target_null_string/>  
1648 - <target_aggregation_type>-</target_aggregation_type>  
1649 - </field>  
1650 - <field>  
1651 - <field_name>all_content</field_name>  
1652 - <key_value>65</key_value>  
1653 - <target_name>fcno65</target_name>  
1654 - <target_type>String</target_type>  
1655 - <target_format/>  
1656 - <target_length>-1</target_length>  
1657 - <target_precision>-1</target_precision>  
1658 - <target_decimal_symbol/>  
1659 - <target_grouping_symbol/>  
1660 - <target_currency_symbol/>  
1661 - <target_null_string/>  
1662 - <target_aggregation_type>-</target_aggregation_type>  
1663 - </field>  
1664 - <field>  
1665 - <field_name>all_content</field_name>  
1666 - <key_value>66</key_value>  
1667 - <target_name>fcno66</target_name>  
1668 - <target_type>String</target_type>  
1669 - <target_format/>  
1670 - <target_length>-1</target_length>  
1671 - <target_precision>-1</target_precision>  
1672 - <target_decimal_symbol/>  
1673 - <target_grouping_symbol/>  
1674 - <target_currency_symbol/>  
1675 - <target_null_string/>  
1676 - <target_aggregation_type>-</target_aggregation_type>  
1677 - </field>  
1678 - <field>  
1679 - <field_name>all_content</field_name>  
1680 - <key_value>67</key_value>  
1681 - <target_name>fcno67</target_name>  
1682 - <target_type>String</target_type>  
1683 - <target_format/>  
1684 - <target_length>-1</target_length>  
1685 - <target_precision>-1</target_precision>  
1686 - <target_decimal_symbol/>  
1687 - <target_grouping_symbol/>  
1688 - <target_currency_symbol/>  
1689 - <target_null_string/>  
1690 - <target_aggregation_type>-</target_aggregation_type>  
1691 - </field>  
1692 - <field>  
1693 - <field_name>all_content</field_name>  
1694 - <key_value>68</key_value>  
1695 - <target_name>fcno68</target_name>  
1696 - <target_type>String</target_type>  
1697 - <target_format/>  
1698 - <target_length>-1</target_length>  
1699 - <target_precision>-1</target_precision>  
1700 - <target_decimal_symbol/>  
1701 - <target_grouping_symbol/>  
1702 - <target_currency_symbol/>  
1703 - <target_null_string/>  
1704 - <target_aggregation_type>-</target_aggregation_type>  
1705 - </field>  
1706 - <field>  
1707 - <field_name>all_content</field_name>  
1708 - <key_value>69</key_value>  
1709 - <target_name>fcno69</target_name>  
1710 - <target_type>String</target_type>  
1711 - <target_format/>  
1712 - <target_length>-1</target_length>  
1713 - <target_precision>-1</target_precision>  
1714 - <target_decimal_symbol/>  
1715 - <target_grouping_symbol/>  
1716 - <target_currency_symbol/>  
1717 - <target_null_string/>  
1718 - <target_aggregation_type>-</target_aggregation_type>  
1719 - </field>  
1720 - <field>  
1721 - <field_name>all_content</field_name>  
1722 - <key_value>70</key_value>  
1723 - <target_name>fcno70</target_name>  
1724 - <target_type>String</target_type>  
1725 - <target_format/>  
1726 - <target_length>-1</target_length>  
1727 - <target_precision>-1</target_precision>  
1728 - <target_decimal_symbol/>  
1729 - <target_grouping_symbol/>  
1730 - <target_currency_symbol/>  
1731 - <target_null_string/>  
1732 - <target_aggregation_type>-</target_aggregation_type>  
1733 - </field>  
1734 - </fields>  
1735 - <cluster_schema/>  
1736 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1737 - <xloc>690</xloc>  
1738 - <yloc>272</yloc>  
1739 - <draw>Y</draw>  
1740 - </GUI>  
1741 - </step>  
1742 -  
1743 - <step>  
1744 - <name>&#x53bb;&#x9664;&#x5b57;&#x6bb5;</name>  
1745 - <type>SelectValues</type>  
1746 - <description/>  
1747 - <distribute>N</distribute>  
1748 - <custom_distribution/>  
1749 - <copies>1</copies>  
1750 - <partitioning>  
1751 - <method>none</method>  
1752 - <schema_name/>  
1753 - </partitioning>  
1754 - <fields> <field> <name>lp</name>  
1755 - <rename/>  
1756 - <length>-2</length>  
1757 - <precision>-2</precision>  
1758 - </field> <field> <name>fcno1</name>  
1759 - <rename/>  
1760 - <length>-2</length>  
1761 - <precision>-2</precision>  
1762 - </field> <field> <name>fcno2</name>  
1763 - <rename/>  
1764 - <length>-2</length>  
1765 - <precision>-2</precision>  
1766 - </field> <field> <name>fcno3</name>  
1767 - <rename/>  
1768 - <length>-2</length>  
1769 - <precision>-2</precision>  
1770 - </field> <field> <name>fcno4</name>  
1771 - <rename/>  
1772 - <length>-2</length>  
1773 - <precision>-2</precision>  
1774 - </field> <field> <name>fcno5</name>  
1775 - <rename/>  
1776 - <length>-2</length>  
1777 - <precision>-2</precision>  
1778 - </field> <field> <name>fcno6</name>  
1779 - <rename/>  
1780 - <length>-2</length>  
1781 - <precision>-2</precision>  
1782 - </field> <field> <name>fcno7</name>  
1783 - <rename/>  
1784 - <length>-2</length>  
1785 - <precision>-2</precision>  
1786 - </field> <field> <name>fcno8</name>  
1787 - <rename/>  
1788 - <length>-2</length>  
1789 - <precision>-2</precision>  
1790 - </field> <field> <name>fcno9</name>  
1791 - <rename/>  
1792 - <length>-2</length>  
1793 - <precision>-2</precision>  
1794 - </field> <field> <name>fcno10</name>  
1795 - <rename/>  
1796 - <length>-2</length>  
1797 - <precision>-2</precision>  
1798 - </field> <field> <name>fcno11</name>  
1799 - <rename/>  
1800 - <length>-2</length>  
1801 - <precision>-2</precision>  
1802 - </field> <field> <name>fcno12</name>  
1803 - <rename/>  
1804 - <length>-2</length>  
1805 - <precision>-2</precision>  
1806 - </field> <field> <name>fcno13</name>  
1807 - <rename/>  
1808 - <length>-2</length>  
1809 - <precision>-2</precision>  
1810 - </field> <field> <name>fcno14</name>  
1811 - <rename/>  
1812 - <length>-2</length>  
1813 - <precision>-2</precision>  
1814 - </field> <field> <name>fcno15</name>  
1815 - <rename/>  
1816 - <length>-2</length>  
1817 - <precision>-2</precision>  
1818 - </field> <field> <name>fcno16</name>  
1819 - <rename/>  
1820 - <length>-2</length>  
1821 - <precision>-2</precision>  
1822 - </field> <field> <name>fcno17</name>  
1823 - <rename/>  
1824 - <length>-2</length>  
1825 - <precision>-2</precision>  
1826 - </field> <field> <name>fcno18</name>  
1827 - <rename/>  
1828 - <length>-2</length>  
1829 - <precision>-2</precision>  
1830 - </field> <field> <name>fcno19</name>  
1831 - <rename/>  
1832 - <length>-2</length>  
1833 - <precision>-2</precision>  
1834 - </field> <field> <name>fcno20</name>  
1835 - <rename/>  
1836 - <length>-2</length>  
1837 - <precision>-2</precision>  
1838 - </field> <field> <name>fcno21</name>  
1839 - <rename/>  
1840 - <length>-2</length>  
1841 - <precision>-2</precision>  
1842 - </field> <field> <name>fcno22</name>  
1843 - <rename/>  
1844 - <length>-2</length>  
1845 - <precision>-2</precision>  
1846 - </field> <field> <name>fcno23</name>  
1847 - <rename/>  
1848 - <length>-2</length>  
1849 - <precision>-2</precision>  
1850 - </field> <field> <name>fcno24</name>  
1851 - <rename/>  
1852 - <length>-2</length>  
1853 - <precision>-2</precision>  
1854 - </field> <field> <name>fcno25</name>  
1855 - <rename/>  
1856 - <length>-2</length>  
1857 - <precision>-2</precision>  
1858 - </field> <field> <name>fcno26</name>  
1859 - <rename/>  
1860 - <length>-2</length>  
1861 - <precision>-2</precision>  
1862 - </field> <field> <name>fcno27</name>  
1863 - <rename/>  
1864 - <length>-2</length>  
1865 - <precision>-2</precision>  
1866 - </field> <field> <name>fcno28</name>  
1867 - <rename/>  
1868 - <length>-2</length>  
1869 - <precision>-2</precision>  
1870 - </field> <field> <name>fcno29</name>  
1871 - <rename/>  
1872 - <length>-2</length>  
1873 - <precision>-2</precision>  
1874 - </field> <field> <name>fcno30</name>  
1875 - <rename/>  
1876 - <length>-2</length>  
1877 - <precision>-2</precision>  
1878 - </field> <field> <name>fcno31</name>  
1879 - <rename/>  
1880 - <length>-2</length>  
1881 - <precision>-2</precision>  
1882 - </field> <field> <name>fcno32</name>  
1883 - <rename/>  
1884 - <length>-2</length>  
1885 - <precision>-2</precision>  
1886 - </field> <field> <name>fcno33</name>  
1887 - <rename/>  
1888 - <length>-2</length>  
1889 - <precision>-2</precision>  
1890 - </field> <field> <name>fcno34</name>  
1891 - <rename/>  
1892 - <length>-2</length>  
1893 - <precision>-2</precision>  
1894 - </field> <field> <name>fcno35</name>  
1895 - <rename/>  
1896 - <length>-2</length>  
1897 - <precision>-2</precision>  
1898 - </field> <field> <name>fcno36</name>  
1899 - <rename/>  
1900 - <length>-2</length>  
1901 - <precision>-2</precision>  
1902 - </field> <field> <name>fcno37</name>  
1903 - <rename/>  
1904 - <length>-2</length>  
1905 - <precision>-2</precision>  
1906 - </field> <field> <name>fcno38</name>  
1907 - <rename/>  
1908 - <length>-2</length>  
1909 - <precision>-2</precision>  
1910 - </field> <field> <name>fcno39</name>  
1911 - <rename/>  
1912 - <length>-2</length>  
1913 - <precision>-2</precision>  
1914 - </field> <field> <name>fcno40</name>  
1915 - <rename/>  
1916 - <length>-2</length>  
1917 - <precision>-2</precision>  
1918 - </field> <field> <name>fcno41</name>  
1919 - <rename/>  
1920 - <length>-2</length>  
1921 - <precision>-2</precision>  
1922 - </field> <field> <name>fcno42</name>  
1923 - <rename/>  
1924 - <length>-2</length>  
1925 - <precision>-2</precision>  
1926 - </field> <field> <name>fcno43</name>  
1927 - <rename/>  
1928 - <length>-2</length>  
1929 - <precision>-2</precision>  
1930 - </field> <field> <name>fcno44</name>  
1931 - <rename/>  
1932 - <length>-2</length>  
1933 - <precision>-2</precision>  
1934 - </field> <field> <name>fcno45</name>  
1935 - <rename/>  
1936 - <length>-2</length>  
1937 - <precision>-2</precision>  
1938 - </field> <field> <name>fcno46</name>  
1939 - <rename/>  
1940 - <length>-2</length>  
1941 - <precision>-2</precision>  
1942 - </field> <field> <name>fcno47</name>  
1943 - <rename/>  
1944 - <length>-2</length>  
1945 - <precision>-2</precision>  
1946 - </field> <field> <name>fcno48</name>  
1947 - <rename/>  
1948 - <length>-2</length>  
1949 - <precision>-2</precision>  
1950 - </field> <field> <name>fcno49</name>  
1951 - <rename/>  
1952 - <length>-2</length>  
1953 - <precision>-2</precision>  
1954 - </field> <field> <name>fcno50</name>  
1955 - <rename/>  
1956 - <length>-2</length>  
1957 - <precision>-2</precision>  
1958 - </field> <field> <name>fcno51</name>  
1959 - <rename/>  
1960 - <length>-2</length>  
1961 - <precision>-2</precision>  
1962 - </field> <field> <name>fcno52</name>  
1963 - <rename/>  
1964 - <length>-2</length>  
1965 - <precision>-2</precision>  
1966 - </field> <field> <name>fcno53</name>  
1967 - <rename/>  
1968 - <length>-2</length>  
1969 - <precision>-2</precision>  
1970 - </field> <field> <name>fcno54</name>  
1971 - <rename/>  
1972 - <length>-2</length>  
1973 - <precision>-2</precision>  
1974 - </field> <field> <name>fcno55</name>  
1975 - <rename/>  
1976 - <length>-2</length>  
1977 - <precision>-2</precision>  
1978 - </field> <field> <name>fcno56</name>  
1979 - <rename/>  
1980 - <length>-2</length>  
1981 - <precision>-2</precision>  
1982 - </field> <field> <name>fcno57</name>  
1983 - <rename/>  
1984 - <length>-2</length>  
1985 - <precision>-2</precision>  
1986 - </field> <field> <name>fcno58</name>  
1987 - <rename/>  
1988 - <length>-2</length>  
1989 - <precision>-2</precision>  
1990 - </field> <field> <name>fcno59</name>  
1991 - <rename/>  
1992 - <length>-2</length>  
1993 - <precision>-2</precision>  
1994 - </field> <field> <name>fcno60</name>  
1995 - <rename/>  
1996 - <length>-2</length>  
1997 - <precision>-2</precision>  
1998 - </field> <field> <name>fcno61</name>  
1999 - <rename/>  
2000 - <length>-2</length>  
2001 - <precision>-2</precision>  
2002 - </field> <field> <name>fcno62</name>  
2003 - <rename/>  
2004 - <length>-2</length>  
2005 - <precision>-2</precision>  
2006 - </field> <field> <name>fcno63</name>  
2007 - <rename/>  
2008 - <length>-2</length>  
2009 - <precision>-2</precision>  
2010 - </field> <field> <name>fcno64</name>  
2011 - <rename/>  
2012 - <length>-2</length>  
2013 - <precision>-2</precision>  
2014 - </field> <field> <name>fcno65</name>  
2015 - <rename/>  
2016 - <length>-2</length>  
2017 - <precision>-2</precision>  
2018 - </field> <field> <name>fcno66</name>  
2019 - <rename/>  
2020 - <length>-2</length>  
2021 - <precision>-2</precision>  
2022 - </field> <field> <name>fcno67</name>  
2023 - <rename/>  
2024 - <length>-2</length>  
2025 - <precision>-2</precision>  
2026 - </field> <field> <name>fcno68</name>  
2027 - <rename/>  
2028 - <length>-2</length>  
2029 - <precision>-2</precision>  
2030 - </field> <field> <name>fcno69</name>  
2031 - <rename/>  
2032 - <length>-2</length>  
2033 - <precision>-2</precision>  
2034 - </field> <field> <name>fcno70</name>  
2035 - <rename/>  
2036 - <length>-2</length>  
2037 - <precision>-2</precision>  
2038 - </field> <select_unspecified>N</select_unspecified>  
2039 - </fields> <cluster_schema/>  
2040 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2041 - <xloc>691</xloc>  
2042 - <yloc>361</yloc>  
2043 - <draw>Y</draw>  
2044 - </GUI>  
2045 - </step>  
2046 -  
2047 - <step>  
2048 - <name>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</name>  
2049 - <type>SelectValues</type>  
2050 - <description/>  
2051 - <distribute>Y</distribute>  
2052 - <custom_distribution/>  
2053 - <copies>1</copies>  
2054 - <partitioning>  
2055 - <method>none</method>  
2056 - <schema_name/>  
2057 - </partitioning>  
2058 - <fields> <field> <name>id</name>  
2059 - <rename/>  
2060 - <length>-2</length>  
2061 - <precision>-2</precision>  
2062 - </field> <field> <name>lp</name>  
2063 - <rename/>  
2064 - <length>-2</length>  
2065 - <precision>-2</precision>  
2066 - </field> <field> <name>fcsj</name>  
2067 - <rename/>  
2068 - <length>-2</length>  
2069 - <precision>-2</precision>  
2070 - </field> <field> <name>fcno</name>  
2071 - <rename/>  
2072 - <length>-2</length>  
2073 - <precision>-2</precision>  
2074 - </field> <field> <name>bcs</name>  
2075 - <rename/>  
2076 - <length>-2</length>  
2077 - <precision>-2</precision>  
2078 - </field> <field> <name>bc_type</name>  
2079 - <rename/>  
2080 - <length>-2</length>  
2081 - <precision>-2</precision>  
2082 - </field> <field> <name>qdzName</name>  
2083 - <rename/>  
2084 - <length>-2</length>  
2085 - <precision>-2</precision>  
2086 - </field> <field> <name>zdzName</name>  
2087 - <rename/>  
2088 - <length>-2</length>  
2089 - <precision>-2</precision>  
2090 - </field> <field> <name>xl_dir</name>  
2091 - <rename/>  
2092 - <length>-2</length>  
2093 - <precision>-2</precision>  
2094 - </field> <field> <name>isfb</name>  
2095 - <rename/>  
2096 - <length>-2</length>  
2097 - <precision>-2</precision>  
2098 - </field> <field> <name>jhlc</name>  
2099 - <rename/>  
2100 - <length>-2</length>  
2101 - <precision>-2</precision>  
2102 - </field> <select_unspecified>N</select_unspecified>  
2103 - </fields> <cluster_schema/>  
2104 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2105 - <xloc>690</xloc>  
2106 - <yloc>188</yloc>  
2107 - <draw>Y</draw>  
2108 - </GUI>  
2109 - </step>  
2110 -  
2111 - <step>  
2112 - <name>&#x5b57;&#x6bb5;&#x9009;&#x62e9; 2</name>  
2113 - <type>SelectValues</type>  
2114 - <description/>  
2115 - <distribute>Y</distribute>  
2116 - <custom_distribution/>  
2117 - <copies>1</copies>  
2118 - <partitioning>  
2119 - <method>none</method>  
2120 - <schema_name/>  
2121 - </partitioning>  
2122 - <fields> <field> <name>id</name>  
2123 - <rename/>  
2124 - <length>-2</length>  
2125 - <precision>-2</precision>  
2126 - </field> <field> <name>lp</name>  
2127 - <rename/>  
2128 - <length>-2</length>  
2129 - <precision>-2</precision>  
2130 - </field> <field> <name>fcsj</name>  
2131 - <rename/>  
2132 - <length>-2</length>  
2133 - <precision>-2</precision>  
2134 - </field> <field> <name>fcno</name>  
2135 - <rename/>  
2136 - <length>-2</length>  
2137 - <precision>-2</precision>  
2138 - </field> <field> <name>bcs</name>  
2139 - <rename/>  
2140 - <length>-2</length>  
2141 - <precision>-2</precision>  
2142 - </field> <field> <name>bc_type</name>  
2143 - <rename/>  
2144 - <length>-2</length>  
2145 - <precision>-2</precision>  
2146 - </field> <field> <name>qdzName</name>  
2147 - <rename/>  
2148 - <length>-2</length>  
2149 - <precision>-2</precision>  
2150 - </field> <field> <name>zdzName</name>  
2151 - <rename/>  
2152 - <length>-2</length>  
2153 - <precision>-2</precision>  
2154 - </field> <field> <name>xl_dir</name>  
2155 - <rename/>  
2156 - <length>-2</length>  
2157 - <precision>-2</precision>  
2158 - </field> <field> <name>isfb</name>  
2159 - <rename/>  
2160 - <length>-2</length>  
2161 - <precision>-2</precision>  
2162 - </field> <field> <name>jhlc</name>  
2163 - <rename/>  
2164 - <length>-2</length>  
2165 - <precision>-2</precision>  
2166 - </field> <select_unspecified>N</select_unspecified>  
2167 - </fields> <cluster_schema/>  
2168 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2169 - <xloc>402</xloc>  
2170 - <yloc>189</yloc>  
2171 - <draw>Y</draw>  
2172 - </GUI>  
2173 - </step>  
2174 -  
2175 - <step>  
2176 - <name>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</name>  
2177 - <type>SortRows</type>  
2178 - <description/>  
2179 - <distribute>Y</distribute>  
2180 - <custom_distribution/>  
2181 - <copies>1</copies>  
2182 - <partitioning>  
2183 - <method>none</method>  
2184 - <schema_name/>  
2185 - </partitioning>  
2186 - <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>  
2187 - <prefix>out</prefix>  
2188 - <sort_size>1000000</sort_size>  
2189 - <free_memory/>  
2190 - <compress>N</compress>  
2191 - <compress_variable/>  
2192 - <unique_rows>N</unique_rows>  
2193 - <fields>  
2194 - <field>  
2195 - <name>bcs</name>  
2196 - <ascending>Y</ascending>  
2197 - <case_sensitive>N</case_sensitive>  
2198 - <presorted>N</presorted>  
2199 - </field>  
2200 - </fields>  
2201 - <cluster_schema/>  
2202 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2203 - <xloc>549</xloc>  
2204 - <yloc>191</yloc>  
2205 - <draw>Y</draw>  
2206 - </GUI>  
2207 - </step>  
2208 -  
2209 - <step>  
2210 - <name>&#x67e5;&#x627e;&#x7ec8;&#x70b9;&#x7ad9;&#x540d;&#x79f0;</name>  
2211 - <type>DBLookup</type>  
2212 - <description/>  
2213 - <distribute>Y</distribute>  
2214 - <custom_distribution/>  
2215 - <copies>1</copies>  
2216 - <partitioning>  
2217 - <method>none</method>  
2218 - <schema_name/>  
2219 - </partitioning>  
2220 - <connection>bus_control_variable</connection>  
2221 - <cache>Y</cache>  
2222 - <cache_load_all>Y</cache_load_all>  
2223 - <cache_size>0</cache_size>  
2224 - <lookup>  
2225 - <schema/>  
2226 - <table>bsth_c_stationroute</table>  
2227 - <orderby/>  
2228 - <fail_on_multiple>N</fail_on_multiple>  
2229 - <eat_row_on_failure>N</eat_row_on_failure>  
2230 - <key>  
2231 - <name>xl</name>  
2232 - <field>line</field>  
2233 - <condition>&#x3d;</condition>  
2234 - <name2/>  
2235 - </key>  
2236 - <key>  
2237 - <name>xl_dir</name>  
2238 - <field>directions</field>  
2239 - <condition>&#x3d;</condition>  
2240 - <name2/>  
2241 - </key>  
2242 - <key>  
2243 - <name>endZdType</name>  
2244 - <field>station_mark</field>  
2245 - <condition>&#x3d;</condition>  
2246 - <name2/>  
2247 - </key>  
2248 - <value>  
2249 - <name>station_name</name>  
2250 - <rename>zdzName</rename>  
2251 - <default/>  
2252 - <type>String</type>  
2253 - </value>  
2254 - </lookup>  
2255 - <cluster_schema/>  
2256 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2257 - <xloc>688</xloc>  
2258 - <yloc>86</yloc>  
2259 - <draw>Y</draw>  
2260 - </GUI>  
2261 - </step>  
2262 -  
2263 - <step>  
2264 - <name>&#x67e5;&#x627e;&#x8d77;&#x70b9;&#x7ad9;&#x540d;&#x79f0;</name>  
2265 - <type>DBLookup</type>  
2266 - <description/>  
2267 - <distribute>Y</distribute>  
2268 - <custom_distribution/>  
2269 - <copies>1</copies>  
2270 - <partitioning>  
2271 - <method>none</method>  
2272 - <schema_name/>  
2273 - </partitioning>  
2274 - <connection>bus_control_variable</connection>  
2275 - <cache>Y</cache>  
2276 - <cache_load_all>Y</cache_load_all>  
2277 - <cache_size>0</cache_size>  
2278 - <lookup>  
2279 - <schema/>  
2280 - <table>bsth_c_stationroute</table>  
2281 - <orderby/>  
2282 - <fail_on_multiple>N</fail_on_multiple>  
2283 - <eat_row_on_failure>N</eat_row_on_failure>  
2284 - <key>  
2285 - <name>xl</name>  
2286 - <field>line</field>  
2287 - <condition>&#x3d;</condition>  
2288 - <name2/>  
2289 - </key>  
2290 - <key>  
2291 - <name>xl_dir</name>  
2292 - <field>directions</field>  
2293 - <condition>&#x3d;</condition>  
2294 - <name2/>  
2295 - </key>  
2296 - <key>  
2297 - <name>startZdType</name>  
2298 - <field>station_mark</field>  
2299 - <condition>&#x3d;</condition>  
2300 - <name2/>  
2301 - </key>  
2302 - <value>  
2303 - <name>station_name</name>  
2304 - <rename>qdzName</rename>  
2305 - <default/>  
2306 - <type>String</type>  
2307 - </value>  
2308 - </lookup>  
2309 - <cluster_schema/>  
2310 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2311 - <xloc>553</xloc>  
2312 - <yloc>86</yloc>  
2313 - <draw>Y</draw>  
2314 - </GUI>  
2315 - </step>  
2316 -  
2317 - <step>  
2318 - <name>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x7ad9;&#x70b9;&#x67e5;&#x8be2;&#x7528;&#x6570;&#x636e;</name>  
2319 - <type>ScriptValueMod</type>  
2320 - <description/>  
2321 - <distribute>Y</distribute>  
2322 - <custom_distribution/>  
2323 - <copies>1</copies>  
2324 - <partitioning>  
2325 - <method>none</method>  
2326 - <schema_name/>  
2327 - </partitioning>  
2328 - <compatible>N</compatible>  
2329 - <optimizationLevel>9</optimizationLevel>  
2330 - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>  
2331 - <jsScript_name>Script 1</jsScript_name>  
2332 - <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var startZdType &#x3d; &#x27;B&#x27;&#x3b; &#x2f;&#x2f; &#x8d77;&#x70b9;&#x7ad9;&#x7ad9;&#x70b9;&#x7c7b;&#x578b;&#x6807;&#x8bc6;&#x522b;&#xa;var endZdType &#x3d; &#x27;E&#x27;&#x3b; &#x2f;&#x2f; &#x7ec8;&#x70b9;&#x7ad9;&#x7ad9;&#x70b9;&#x7c7b;&#x578b;&#x6807;&#x8bc6;</jsScript_script>  
2333 - </jsScript> </jsScripts> <fields> <field> <name>startZdType</name>  
2334 - <rename>startZdType</rename>  
2335 - <type>String</type>  
2336 - <length>-1</length>  
2337 - <precision>-1</precision>  
2338 - <replace>N</replace>  
2339 - </field> <field> <name>endZdType</name>  
2340 - <rename>endZdType</rename>  
2341 - <type>String</type>  
2342 - <length>-1</length>  
2343 - <precision>-1</precision>  
2344 - <replace>N</replace>  
2345 - </field> </fields> <cluster_schema/>  
2346 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2347 - <xloc>391</xloc>  
2348 - <yloc>87</yloc>  
2349 - <draw>Y</draw>  
2350 - </GUI>  
2351 - </step>  
2352 -  
2353 - <step>  
2354 - <name>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</name>  
2355 - <type>GetVariable</type>  
2356 - <description/>  
2357 - <distribute>Y</distribute>  
2358 - <custom_distribution/>  
2359 - <copies>1</copies>  
2360 - <partitioning>  
2361 - <method>none</method>  
2362 - <schema_name/>  
2363 - </partitioning>  
2364 - <fields>  
2365 - <field>  
2366 - <name>xlid_</name>  
2367 - <variable>&#x24;&#x7b;xlid&#x7d;</variable>  
2368 - <type>Integer</type>  
2369 - <format/>  
2370 - <currency/>  
2371 - <decimal/>  
2372 - <group/>  
2373 - <length>-1</length>  
2374 - <precision>-1</precision>  
2375 - <trim_type>none</trim_type>  
2376 - </field>  
2377 - <field>  
2378 - <name>ttid_</name>  
2379 - <variable>&#x24;&#x7b;ttid&#x7d;</variable>  
2380 - <type>Number</type>  
2381 - <format/>  
2382 - <currency/>  
2383 - <decimal/>  
2384 - <group/>  
2385 - <length>-1</length>  
2386 - <precision>-1</precision>  
2387 - <trim_type>none</trim_type>  
2388 - </field>  
2389 - </fields>  
2390 - <cluster_schema/>  
2391 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2392 - <xloc>45</xloc>  
2393 - <yloc>189</yloc>  
2394 - <draw>Y</draw>  
2395 - </GUI>  
2396 - </step>  
2397 -  
2398 - <step>  
2399 - <name>&#x8868;&#x8f93;&#x5165;</name>  
2400 - <type>TableInput</type>  
2401 - <description/>  
2402 - <distribute>Y</distribute>  
2403 - <custom_distribution/>  
2404 - <copies>1</copies>  
2405 - <partitioning>  
2406 - <method>none</method>  
2407 - <schema_name/>  
2408 - </partitioning>  
2409 - <connection>bus_control_variable</connection>  
2410 - <sql>select &#xa;t.id as id&#xa;, g.lp_name as lp&#xa;, g.xl as xl&#xa;, qdz&#xa;, zdz&#xa;, tcc&#xa;, fcsj&#xa;, jhlc&#xa;, bc_type &#xa;, bcs&#xa;, fcno&#xa;, xl_dir&#xa;, isfb&#xa;from bsth_c_s_ttinfo_detail t left join &#xa;bsth_c_s_gbi g on t.lp &#x3d; g.id &#xa;where &#xa;g.xl &#x3d; &#x3f; and&#xa;t.ttinfo &#x3d; &#x3f; &#xa;order by t.bcs asc</sql>  
2411 - <limit>0</limit>  
2412 - <lookup>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</lookup>  
2413 - <execute_each_row>N</execute_each_row>  
2414 - <variables_active>Y</variables_active>  
2415 - <lazy_conversion_active>N</lazy_conversion_active>  
2416 - <cluster_schema/>  
2417 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2418 - <xloc>130</xloc>  
2419 - <yloc>85</yloc>  
2420 - <draw>Y</draw>  
2421 - </GUI>  
2422 - </step>  
2423 -  
2424 - <step>  
2425 - <name>&#x8ba1;&#x7b97;&#x53d1;&#x8f66;&#x7ad9;&#x540d;</name>  
2426 - <type>ScriptValueMod</type>  
2427 - <description/>  
2428 - <distribute>Y</distribute>  
2429 - <custom_distribution/>  
2430 - <copies>1</copies>  
2431 - <partitioning>  
2432 - <method>none</method>  
2433 - <schema_name/>  
2434 - </partitioning>  
2435 - <compatible>N</compatible>  
2436 - <optimizationLevel>9</optimizationLevel>  
2437 - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>  
2438 - <jsScript_name>Script 1</jsScript_name>  
2439 - <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var fczdName &#x3d; null&#x3b; &#x2f;&#x2f; &#x53d1;&#x8f66;&#x7ad9;&#x70b9;&#x540d;&#x5b57;&#xa;if &#x28;bc_type &#x3d;&#x3d; &#x22;in&#x22;&#x29; &#x7b;&#xa; fczdName &#x3d; &#x22;&#x8fdb;&#x573a;&#x22;&#x3b;&#xa;&#x7d; else if &#x28;bc_type &#x3d;&#x3d; &#x22;out&#x22;&#x29; &#x7b;&#xa; fczdName &#x3d; &#x22;&#x51fa;&#x573a;&#x22;&#x3b;&#xa;&#x7d; else &#x7b;&#xa; fczdName &#x3d; qdzName&#x3b;&#xa;&#x7d;</jsScript_script>  
2440 - </jsScript> </jsScripts> <fields> <field> <name>fczdName</name>  
2441 - <rename>fczdName</rename>  
2442 - <type>String</type>  
2443 - <length>-1</length>  
2444 - <precision>-1</precision>  
2445 - <replace>N</replace>  
2446 - </field> </fields> <cluster_schema/>  
2447 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2448 - <xloc>550</xloc>  
2449 - <yloc>276</yloc>  
2450 - <draw>Y</draw>  
2451 - </GUI>  
2452 - </step>  
2453 -  
2454 - <step>  
2455 - <name>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;</name>  
2456 - <type>FilterRows</type>  
2457 - <description/>  
2458 - <distribute>Y</distribute>  
2459 - <custom_distribution/>  
2460 - <copies>1</copies>  
2461 - <partitioning>  
2462 - <method>none</method>  
2463 - <schema_name/>  
2464 - </partitioning>  
2465 -<send_true_to>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x7ad9;&#x70b9;&#x67e5;&#x8be2;&#x7528;&#x6570;&#x636e;</send_true_to>  
2466 -<send_false_to>&#x8fdb;&#x573a;&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x67e5;&#x8be2;&#x7528;&#x7684;&#x6570;&#x636e;</send_false_to>  
2467 - <compare>  
2468 -<condition>  
2469 - <negated>N</negated>  
2470 - <leftvalue>bc_type</leftvalue>  
2471 - <function>&#x3d;</function>  
2472 - <rightvalue/>  
2473 - <value><name>constant</name><type>String</type><text>normal</text><length>-1</length><precision>-1</precision><isnull>N</isnull><mask/></value> </condition>  
2474 - </compare>  
2475 - <cluster_schema/>  
2476 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2477 - <xloc>248</xloc>  
2478 - <yloc>87</yloc>  
2479 - <draw>Y</draw>  
2480 - </GUI>  
2481 - </step>  
2482 -  
2483 - <step>  
2484 - <name>&#x8fdb;&#x573a;&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x67e5;&#x8be2;&#x7528;&#x7684;&#x6570;&#x636e;</name>  
2485 - <type>ScriptValueMod</type>  
2486 - <description/>  
2487 - <distribute>Y</distribute>  
2488 - <custom_distribution/>  
2489 - <copies>1</copies>  
2490 - <partitioning>  
2491 - <method>none</method>  
2492 - <schema_name/>  
2493 - </partitioning>  
2494 - <compatible>N</compatible>  
2495 - <optimizationLevel>9</optimizationLevel>  
2496 - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>  
2497 - <jsScript_name>Script 1</jsScript_name>  
2498 - <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var qdzName &#x3d; null&#x3b; &#x2f;&#x2f; &#x8d77;&#x70b9;&#x7ad9;&#x540d;&#x5b57;&#xa;var zdzName &#x3d; null&#x3b; &#x2f;&#x2f; &#x7ec8;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</jsScript_script>  
2499 - </jsScript> </jsScripts> <fields> <field> <name>qdzName</name>  
2500 - <rename>qdzName</rename>  
2501 - <type>String</type>  
2502 - <length>-1</length>  
2503 - <precision>-1</precision>  
2504 - <replace>N</replace>  
2505 - </field> <field> <name>zdzName</name>  
2506 - <rename>zdzName</rename>  
2507 - <type>String</type>  
2508 - <length>-1</length>  
2509 - <precision>-1</precision>  
2510 - <replace>N</replace>  
2511 - </field> </fields> <cluster_schema/>  
2512 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2513 - <xloc>250</xloc>  
2514 - <yloc>188</yloc>  
2515 - <draw>Y</draw>  
2516 - </GUI>  
2517 - </step>  
2518 -  
2519 - <step>  
2520 - <name>&#x6587;&#x672c;&#x6587;&#x4ef6;&#x8f93;&#x51fa;</name>  
2521 - <type>TextFileOutput</type>  
2522 - <description/>  
2523 - <distribute>Y</distribute>  
2524 - <custom_distribution/>  
2525 - <copies>1</copies>  
2526 - <partitioning>  
2527 - <method>none</method>  
2528 - <schema_name/>  
2529 - </partitioning>  
2530 - <separator>&#x3b;</separator>  
2531 - <enclosure>&#x22;</enclosure>  
2532 - <enclosure_forced>N</enclosure_forced>  
2533 - <enclosure_fix_disabled>N</enclosure_fix_disabled>  
2534 - <header>Y</header>  
2535 - <footer>N</footer>  
2536 - <format>DOS</format>  
2537 - <compression>None</compression>  
2538 - <encoding/>  
2539 - <endedLine/>  
2540 - <fileNameInField>N</fileNameInField>  
2541 - <fileNameField/>  
2542 - <create_parent_folder>Y</create_parent_folder>  
2543 - <file>  
2544 - <name>&#x24;&#x7b;tempfilepath&#x7d;</name>  
2545 - <is_command>N</is_command>  
2546 - <servlet_output>N</servlet_output>  
2547 - <do_not_open_new_file_init>N</do_not_open_new_file_init>  
2548 - <extention>txt</extention>  
2549 - <append>N</append>  
2550 - <split>N</split>  
2551 - <haspartno>N</haspartno>  
2552 - <add_date>N</add_date>  
2553 - <add_time>N</add_time>  
2554 - <SpecifyFormat>N</SpecifyFormat>  
2555 - <date_time_format/>  
2556 - <add_to_result_filenames>Y</add_to_result_filenames>  
2557 - <pad>N</pad>  
2558 - <fast_dump>N</fast_dump>  
2559 - <splitevery>0</splitevery>  
2560 - </file>  
2561 - <fields>  
2562 - <field>  
2563 - <name>lp</name>  
2564 - <type>String</type>  
2565 - <format/>  
2566 - <currency/>  
2567 - <decimal/>  
2568 - <group/>  
2569 - <nullif/>  
2570 - <trim_type>none</trim_type>  
2571 - <length>255</length>  
2572 - <precision>-1</precision>  
2573 - </field>  
2574 - <field>  
2575 - <name>fcno1</name>  
2576 - <type>String</type>  
2577 - <format/>  
2578 - <currency/>  
2579 - <decimal/>  
2580 - <group/>  
2581 - <nullif/>  
2582 - <trim_type>none</trim_type>  
2583 - <length>-1</length>  
2584 - <precision>-1</precision>  
2585 - </field>  
2586 - <field>  
2587 - <name>fcno2</name>  
2588 - <type>String</type>  
2589 - <format/>  
2590 - <currency/>  
2591 - <decimal/>  
2592 - <group/>  
2593 - <nullif/>  
2594 - <trim_type>none</trim_type>  
2595 - <length>-1</length>  
2596 - <precision>-1</precision>  
2597 - </field>  
2598 - <field>  
2599 - <name>fcno3</name>  
2600 - <type>String</type>  
2601 - <format/>  
2602 - <currency/>  
2603 - <decimal/>  
2604 - <group/>  
2605 - <nullif/>  
2606 - <trim_type>none</trim_type>  
2607 - <length>-1</length>  
2608 - <precision>-1</precision>  
2609 - </field>  
2610 - <field>  
2611 - <name>fcno4</name>  
2612 - <type>String</type>  
2613 - <format/>  
2614 - <currency/>  
2615 - <decimal/>  
2616 - <group/>  
2617 - <nullif/>  
2618 - <trim_type>none</trim_type>  
2619 - <length>-1</length>  
2620 - <precision>-1</precision>  
2621 - </field>  
2622 - <field>  
2623 - <name>fcno5</name>  
2624 - <type>String</type>  
2625 - <format/>  
2626 - <currency/>  
2627 - <decimal/>  
2628 - <group/>  
2629 - <nullif/>  
2630 - <trim_type>none</trim_type>  
2631 - <length>-1</length>  
2632 - <precision>-1</precision>  
2633 - </field>  
2634 - <field>  
2635 - <name>fcno6</name>  
2636 - <type>String</type>  
2637 - <format/>  
2638 - <currency/>  
2639 - <decimal/>  
2640 - <group/>  
2641 - <nullif/>  
2642 - <trim_type>none</trim_type>  
2643 - <length>-1</length>  
2644 - <precision>-1</precision>  
2645 - </field>  
2646 - <field>  
2647 - <name>fcno7</name>  
2648 - <type>String</type>  
2649 - <format/>  
2650 - <currency/>  
2651 - <decimal/>  
2652 - <group/>  
2653 - <nullif/>  
2654 - <trim_type>none</trim_type>  
2655 - <length>-1</length>  
2656 - <precision>-1</precision>  
2657 - </field>  
2658 - <field>  
2659 - <name>fcno8</name>  
2660 - <type>String</type>  
2661 - <format/>  
2662 - <currency/>  
2663 - <decimal/>  
2664 - <group/>  
2665 - <nullif/>  
2666 - <trim_type>none</trim_type>  
2667 - <length>-1</length>  
2668 - <precision>-1</precision>  
2669 - </field>  
2670 - <field>  
2671 - <name>fcno9</name>  
2672 - <type>String</type>  
2673 - <format/>  
2674 - <currency/>  
2675 - <decimal/>  
2676 - <group/>  
2677 - <nullif/>  
2678 - <trim_type>none</trim_type>  
2679 - <length>-1</length>  
2680 - <precision>-1</precision>  
2681 - </field>  
2682 - <field>  
2683 - <name>fcno10</name>  
2684 - <type>String</type>  
2685 - <format/>  
2686 - <currency/>  
2687 - <decimal/>  
2688 - <group/>  
2689 - <nullif/>  
2690 - <trim_type>none</trim_type>  
2691 - <length>-1</length>  
2692 - <precision>-1</precision>  
2693 - </field>  
2694 - <field>  
2695 - <name>fcno11</name>  
2696 - <type>String</type>  
2697 - <format/>  
2698 - <currency/>  
2699 - <decimal/>  
2700 - <group/>  
2701 - <nullif/>  
2702 - <trim_type>none</trim_type>  
2703 - <length>-1</length>  
2704 - <precision>-1</precision>  
2705 - </field>  
2706 - <field>  
2707 - <name>fcno12</name>  
2708 - <type>String</type>  
2709 - <format/>  
2710 - <currency/>  
2711 - <decimal/>  
2712 - <group/>  
2713 - <nullif/>  
2714 - <trim_type>none</trim_type>  
2715 - <length>-1</length>  
2716 - <precision>-1</precision>  
2717 - </field>  
2718 - <field>  
2719 - <name>fcno13</name>  
2720 - <type>String</type>  
2721 - <format/>  
2722 - <currency/>  
2723 - <decimal/>  
2724 - <group/>  
2725 - <nullif/>  
2726 - <trim_type>none</trim_type>  
2727 - <length>-1</length>  
2728 - <precision>-1</precision>  
2729 - </field>  
2730 - <field>  
2731 - <name>fcno14</name>  
2732 - <type>String</type>  
2733 - <format/>  
2734 - <currency/>  
2735 - <decimal/>  
2736 - <group/>  
2737 - <nullif/>  
2738 - <trim_type>none</trim_type>  
2739 - <length>-1</length>  
2740 - <precision>-1</precision>  
2741 - </field>  
2742 - <field>  
2743 - <name>fcno15</name>  
2744 - <type>String</type>  
2745 - <format/>  
2746 - <currency/>  
2747 - <decimal/>  
2748 - <group/>  
2749 - <nullif/>  
2750 - <trim_type>none</trim_type>  
2751 - <length>-1</length>  
2752 - <precision>-1</precision>  
2753 - </field>  
2754 - <field>  
2755 - <name>fcno16</name>  
2756 - <type>String</type>  
2757 - <format/>  
2758 - <currency/>  
2759 - <decimal/>  
2760 - <group/>  
2761 - <nullif/>  
2762 - <trim_type>none</trim_type>  
2763 - <length>-1</length>  
2764 - <precision>-1</precision>  
2765 - </field>  
2766 - <field>  
2767 - <name>fcno17</name>  
2768 - <type>String</type>  
2769 - <format/>  
2770 - <currency/>  
2771 - <decimal/>  
2772 - <group/>  
2773 - <nullif/>  
2774 - <trim_type>none</trim_type>  
2775 - <length>-1</length>  
2776 - <precision>-1</precision>  
2777 - </field>  
2778 - <field>  
2779 - <name>fcno18</name>  
2780 - <type>String</type>  
2781 - <format/>  
2782 - <currency/>  
2783 - <decimal/>  
2784 - <group/>  
2785 - <nullif/>  
2786 - <trim_type>none</trim_type>  
2787 - <length>-1</length>  
2788 - <precision>-1</precision>  
2789 - </field>  
2790 - <field>  
2791 - <name>fcno19</name>  
2792 - <type>String</type>  
2793 - <format/>  
2794 - <currency/>  
2795 - <decimal/>  
2796 - <group/>  
2797 - <nullif/>  
2798 - <trim_type>none</trim_type>  
2799 - <length>-1</length>  
2800 - <precision>-1</precision>  
2801 - </field>  
2802 - <field>  
2803 - <name>fcno20</name>  
2804 - <type>String</type>  
2805 - <format/>  
2806 - <currency/>  
2807 - <decimal/>  
2808 - <group/>  
2809 - <nullif/>  
2810 - <trim_type>none</trim_type>  
2811 - <length>-1</length>  
2812 - <precision>-1</precision>  
2813 - </field>  
2814 - <field>  
2815 - <name>fcno21</name>  
2816 - <type>String</type>  
2817 - <format/>  
2818 - <currency/>  
2819 - <decimal/>  
2820 - <group/>  
2821 - <nullif/>  
2822 - <trim_type>none</trim_type>  
2823 - <length>-1</length>  
2824 - <precision>-1</precision>  
2825 - </field>  
2826 - <field>  
2827 - <name>fcno22</name>  
2828 - <type>String</type>  
2829 - <format/>  
2830 - <currency/>  
2831 - <decimal/>  
2832 - <group/>  
2833 - <nullif/>  
2834 - <trim_type>none</trim_type>  
2835 - <length>-1</length>  
2836 - <precision>-1</precision>  
2837 - </field>  
2838 - <field>  
2839 - <name>fcno23</name>  
2840 - <type>String</type>  
2841 - <format/>  
2842 - <currency/>  
2843 - <decimal/>  
2844 - <group/>  
2845 - <nullif/>  
2846 - <trim_type>none</trim_type>  
2847 - <length>-1</length>  
2848 - <precision>-1</precision>  
2849 - </field>  
2850 - <field>  
2851 - <name>fcno24</name>  
2852 - <type>String</type>  
2853 - <format/>  
2854 - <currency/>  
2855 - <decimal/>  
2856 - <group/>  
2857 - <nullif/>  
2858 - <trim_type>none</trim_type>  
2859 - <length>-1</length>  
2860 - <precision>-1</precision>  
2861 - </field>  
2862 - <field>  
2863 - <name>fcno25</name>  
2864 - <type>String</type>  
2865 - <format/>  
2866 - <currency/>  
2867 - <decimal/>  
2868 - <group/>  
2869 - <nullif/>  
2870 - <trim_type>none</trim_type>  
2871 - <length>-1</length>  
2872 - <precision>-1</precision>  
2873 - </field>  
2874 - <field>  
2875 - <name>fcno26</name>  
2876 - <type>String</type>  
2877 - <format/>  
2878 - <currency/>  
2879 - <decimal/>  
2880 - <group/>  
2881 - <nullif/>  
2882 - <trim_type>none</trim_type>  
2883 - <length>-1</length>  
2884 - <precision>-1</precision>  
2885 - </field>  
2886 - <field>  
2887 - <name>fcno27</name>  
2888 - <type>String</type>  
2889 - <format/>  
2890 - <currency/>  
2891 - <decimal/>  
2892 - <group/>  
2893 - <nullif/>  
2894 - <trim_type>none</trim_type>  
2895 - <length>-1</length>  
2896 - <precision>-1</precision>  
2897 - </field>  
2898 - <field>  
2899 - <name>fcno28</name>  
2900 - <type>String</type>  
2901 - <format/>  
2902 - <currency/>  
2903 - <decimal/>  
2904 - <group/>  
2905 - <nullif/>  
2906 - <trim_type>none</trim_type>  
2907 - <length>-1</length>  
2908 - <precision>-1</precision>  
2909 - </field>  
2910 - <field>  
2911 - <name>fcno29</name>  
2912 - <type>String</type>  
2913 - <format/>  
2914 - <currency/>  
2915 - <decimal/>  
2916 - <group/>  
2917 - <nullif/>  
2918 - <trim_type>none</trim_type>  
2919 - <length>-1</length>  
2920 - <precision>-1</precision>  
2921 - </field>  
2922 - <field>  
2923 - <name>fcno30</name>  
2924 - <type>String</type>  
2925 - <format/>  
2926 - <currency/>  
2927 - <decimal/>  
2928 - <group/>  
2929 - <nullif/>  
2930 - <trim_type>none</trim_type>  
2931 - <length>-1</length>  
2932 - <precision>-1</precision>  
2933 - </field>  
2934 - <field>  
2935 - <name>fcno31</name>  
2936 - <type>String</type>  
2937 - <format/>  
2938 - <currency/>  
2939 - <decimal/>  
2940 - <group/>  
2941 - <nullif/>  
2942 - <trim_type>none</trim_type>  
2943 - <length>-1</length>  
2944 - <precision>-1</precision>  
2945 - </field>  
2946 - <field>  
2947 - <name>fcno32</name>  
2948 - <type>String</type>  
2949 - <format/>  
2950 - <currency/>  
2951 - <decimal/>  
2952 - <group/>  
2953 - <nullif/>  
2954 - <trim_type>none</trim_type>  
2955 - <length>-1</length>  
2956 - <precision>-1</precision>  
2957 - </field>  
2958 - <field>  
2959 - <name>fcno33</name>  
2960 - <type>String</type>  
2961 - <format/>  
2962 - <currency/>  
2963 - <decimal/>  
2964 - <group/>  
2965 - <nullif/>  
2966 - <trim_type>none</trim_type>  
2967 - <length>-1</length>  
2968 - <precision>-1</precision>  
2969 - </field>  
2970 - <field>  
2971 - <name>fcno34</name>  
2972 - <type>String</type>  
2973 - <format/>  
2974 - <currency/>  
2975 - <decimal/>  
2976 - <group/>  
2977 - <nullif/>  
2978 - <trim_type>none</trim_type>  
2979 - <length>-1</length>  
2980 - <precision>-1</precision>  
2981 - </field>  
2982 - <field>  
2983 - <name>fcno35</name>  
2984 - <type>String</type>  
2985 - <format/>  
2986 - <currency/>  
2987 - <decimal/>  
2988 - <group/>  
2989 - <nullif/>  
2990 - <trim_type>none</trim_type>  
2991 - <length>-1</length>  
2992 - <precision>-1</precision>  
2993 - </field>  
2994 - <field>  
2995 - <name>fcno36</name>  
2996 - <type>String</type>  
2997 - <format/>  
2998 - <currency/>  
2999 - <decimal/>  
3000 - <group/>  
3001 - <nullif/>  
3002 - <trim_type>none</trim_type>  
3003 - <length>-1</length>  
3004 - <precision>-1</precision>  
3005 - </field>  
3006 - <field>  
3007 - <name>fcno37</name>  
3008 - <type>String</type>  
3009 - <format/>  
3010 - <currency/>  
3011 - <decimal/>  
3012 - <group/>  
3013 - <nullif/>  
3014 - <trim_type>none</trim_type>  
3015 - <length>-1</length>  
3016 - <precision>-1</precision>  
3017 - </field>  
3018 - <field>  
3019 - <name>fcno38</name>  
3020 - <type>String</type>  
3021 - <format/>  
3022 - <currency/>  
3023 - <decimal/>  
3024 - <group/>  
3025 - <nullif/>  
3026 - <trim_type>none</trim_type>  
3027 - <length>-1</length>  
3028 - <precision>-1</precision>  
3029 - </field>  
3030 - <field>  
3031 - <name>fcno39</name>  
3032 - <type>String</type>  
3033 - <format/>  
3034 - <currency/>  
3035 - <decimal/>  
3036 - <group/>  
3037 - <nullif/>  
3038 - <trim_type>none</trim_type>  
3039 - <length>-1</length>  
3040 - <precision>-1</precision>  
3041 - </field>  
3042 - <field>  
3043 - <name>fcno40</name>  
3044 - <type>String</type>  
3045 - <format/>  
3046 - <currency/>  
3047 - <decimal/>  
3048 - <group/>  
3049 - <nullif/>  
3050 - <trim_type>none</trim_type>  
3051 - <length>-1</length>  
3052 - <precision>-1</precision>  
3053 - </field>  
3054 - <field>  
3055 - <name>fcno41</name>  
3056 - <type>String</type>  
3057 - <format/>  
3058 - <currency/>  
3059 - <decimal/>  
3060 - <group/>  
3061 - <nullif/>  
3062 - <trim_type>none</trim_type>  
3063 - <length>-1</length>  
3064 - <precision>-1</precision>  
3065 - </field>  
3066 - <field>  
3067 - <name>fcno42</name>  
3068 - <type>String</type>  
3069 - <format/>  
3070 - <currency/>  
3071 - <decimal/>  
3072 - <group/>  
3073 - <nullif/>  
3074 - <trim_type>none</trim_type>  
3075 - <length>-1</length>  
3076 - <precision>-1</precision>  
3077 - </field>  
3078 - <field>  
3079 - <name>fcno43</name>  
3080 - <type>String</type>  
3081 - <format/>  
3082 - <currency/>  
3083 - <decimal/>  
3084 - <group/>  
3085 - <nullif/>  
3086 - <trim_type>none</trim_type>  
3087 - <length>-1</length>  
3088 - <precision>-1</precision>  
3089 - </field>  
3090 - <field>  
3091 - <name>fcno44</name>  
3092 - <type>String</type>  
3093 - <format/>  
3094 - <currency/>  
3095 - <decimal/>  
3096 - <group/>  
3097 - <nullif/>  
3098 - <trim_type>none</trim_type>  
3099 - <length>-1</length>  
3100 - <precision>-1</precision>  
3101 - </field>  
3102 - <field>  
3103 - <name>fcno45</name>  
3104 - <type>String</type>  
3105 - <format/>  
3106 - <currency/>  
3107 - <decimal/>  
3108 - <group/>  
3109 - <nullif/>  
3110 - <trim_type>none</trim_type>  
3111 - <length>-1</length>  
3112 - <precision>-1</precision>  
3113 - </field>  
3114 - <field>  
3115 - <name>fcno46</name>  
3116 - <type>String</type>  
3117 - <format/>  
3118 - <currency/>  
3119 - <decimal/>  
3120 - <group/>  
3121 - <nullif/>  
3122 - <trim_type>none</trim_type>  
3123 - <length>-1</length>  
3124 - <precision>-1</precision>  
3125 - </field>  
3126 - <field>  
3127 - <name>fcno47</name>  
3128 - <type>String</type>  
3129 - <format/>  
3130 - <currency/>  
3131 - <decimal/>  
3132 - <group/>  
3133 - <nullif/>  
3134 - <trim_type>none</trim_type>  
3135 - <length>-1</length>  
3136 - <precision>-1</precision>  
3137 - </field>  
3138 - <field>  
3139 - <name>fcno48</name>  
3140 - <type>String</type>  
3141 - <format/>  
3142 - <currency/>  
3143 - <decimal/>  
3144 - <group/>  
3145 - <nullif/>  
3146 - <trim_type>none</trim_type>  
3147 - <length>-1</length>  
3148 - <precision>-1</precision>  
3149 - </field>  
3150 - <field>  
3151 - <name>fcno49</name>  
3152 - <type>String</type>  
3153 - <format/>  
3154 - <currency/>  
3155 - <decimal/>  
3156 - <group/>  
3157 - <nullif/>  
3158 - <trim_type>none</trim_type>  
3159 - <length>-1</length>  
3160 - <precision>-1</precision>  
3161 - </field>  
3162 - <field>  
3163 - <name>fcno50</name>  
3164 - <type>String</type>  
3165 - <format/>  
3166 - <currency/>  
3167 - <decimal/>  
3168 - <group/>  
3169 - <nullif/>  
3170 - <trim_type>none</trim_type>  
3171 - <length>-1</length>  
3172 - <precision>-1</precision>  
3173 - </field>  
3174 - <field>  
3175 - <name>fcno51</name>  
3176 - <type>String</type>  
3177 - <format/>  
3178 - <currency/>  
3179 - <decimal/>  
3180 - <group/>  
3181 - <nullif/>  
3182 - <trim_type>none</trim_type>  
3183 - <length>-1</length>  
3184 - <precision>-1</precision>  
3185 - </field>  
3186 - <field>  
3187 - <name>fcno52</name>  
3188 - <type>String</type>  
3189 - <format/>  
3190 - <currency/>  
3191 - <decimal/>  
3192 - <group/>  
3193 - <nullif/>  
3194 - <trim_type>none</trim_type>  
3195 - <length>-1</length>  
3196 - <precision>-1</precision>  
3197 - </field>  
3198 - <field>  
3199 - <name>fcno53</name>  
3200 - <type>String</type>  
3201 - <format/>  
3202 - <currency/>  
3203 - <decimal/>  
3204 - <group/>  
3205 - <nullif/>  
3206 - <trim_type>none</trim_type>  
3207 - <length>-1</length>  
3208 - <precision>-1</precision>  
3209 - </field>  
3210 - <field>  
3211 - <name>fcno54</name>  
3212 - <type>String</type>  
3213 - <format/>  
3214 - <currency/>  
3215 - <decimal/>  
3216 - <group/>  
3217 - <nullif/>  
3218 - <trim_type>none</trim_type>  
3219 - <length>-1</length>  
3220 - <precision>-1</precision>  
3221 - </field>  
3222 - <field>  
3223 - <name>fcno55</name>  
3224 - <type>String</type>  
3225 - <format/>  
3226 - <currency/>  
3227 - <decimal/>  
3228 - <group/>  
3229 - <nullif/>  
3230 - <trim_type>none</trim_type>  
3231 - <length>-1</length>  
3232 - <precision>-1</precision>  
3233 - </field>  
3234 - <field>  
3235 - <name>fcno56</name>  
3236 - <type>String</type>  
3237 - <format/>  
3238 - <currency/>  
3239 - <decimal/>  
3240 - <group/>  
3241 - <nullif/>  
3242 - <trim_type>none</trim_type>  
3243 - <length>-1</length>  
3244 - <precision>-1</precision>  
3245 - </field>  
3246 - <field>  
3247 - <name>fcno57</name>  
3248 - <type>String</type>  
3249 - <format/>  
3250 - <currency/>  
3251 - <decimal/>  
3252 - <group/>  
3253 - <nullif/>  
3254 - <trim_type>none</trim_type>  
3255 - <length>-1</length>  
3256 - <precision>-1</precision>  
3257 - </field>  
3258 - <field>  
3259 - <name>fcno58</name>  
3260 - <type>String</type>  
3261 - <format/>  
3262 - <currency/>  
3263 - <decimal/>  
3264 - <group/>  
3265 - <nullif/>  
3266 - <trim_type>none</trim_type>  
3267 - <length>-1</length>  
3268 - <precision>-1</precision>  
3269 - </field>  
3270 - <field>  
3271 - <name>fcno59</name>  
3272 - <type>String</type>  
3273 - <format/>  
3274 - <currency/>  
3275 - <decimal/>  
3276 - <group/>  
3277 - <nullif/>  
3278 - <trim_type>none</trim_type>  
3279 - <length>-1</length>  
3280 - <precision>-1</precision>  
3281 - </field>  
3282 - <field>  
3283 - <name>fcno60</name>  
3284 - <type>String</type>  
3285 - <format/>  
3286 - <currency/>  
3287 - <decimal/>  
3288 - <group/>  
3289 - <nullif/>  
3290 - <trim_type>none</trim_type>  
3291 - <length>-1</length>  
3292 - <precision>-1</precision>  
3293 - </field>  
3294 - <field>  
3295 - <name>fcno61</name>  
3296 - <type>String</type>  
3297 - <format/>  
3298 - <currency/>  
3299 - <decimal/>  
3300 - <group/>  
3301 - <nullif/>  
3302 - <trim_type>none</trim_type>  
3303 - <length>-1</length>  
3304 - <precision>-1</precision>  
3305 - </field>  
3306 - <field>  
3307 - <name>fcno62</name>  
3308 - <type>String</type>  
3309 - <format/>  
3310 - <currency/>  
3311 - <decimal/>  
3312 - <group/>  
3313 - <nullif/>  
3314 - <trim_type>none</trim_type>  
3315 - <length>-1</length>  
3316 - <precision>-1</precision>  
3317 - </field>  
3318 - <field>  
3319 - <name>fcno63</name>  
3320 - <type>String</type>  
3321 - <format/>  
3322 - <currency/>  
3323 - <decimal/>  
3324 - <group/>  
3325 - <nullif/>  
3326 - <trim_type>none</trim_type>  
3327 - <length>-1</length>  
3328 - <precision>-1</precision>  
3329 - </field>  
3330 - <field>  
3331 - <name>fcno64</name>  
3332 - <type>String</type>  
3333 - <format/>  
3334 - <currency/>  
3335 - <decimal/>  
3336 - <group/>  
3337 - <nullif/>  
3338 - <trim_type>none</trim_type>  
3339 - <length>-1</length>  
3340 - <precision>-1</precision>  
3341 - </field>  
3342 - <field>  
3343 - <name>fcno65</name>  
3344 - <type>String</type>  
3345 - <format/>  
3346 - <currency/>  
3347 - <decimal/>  
3348 - <group/>  
3349 - <nullif/>  
3350 - <trim_type>none</trim_type>  
3351 - <length>-1</length>  
3352 - <precision>-1</precision>  
3353 - </field>  
3354 - <field>  
3355 - <name>fcno66</name>  
3356 - <type>String</type>  
3357 - <format/>  
3358 - <currency/>  
3359 - <decimal/>  
3360 - <group/>  
3361 - <nullif/>  
3362 - <trim_type>none</trim_type>  
3363 - <length>-1</length>  
3364 - <precision>-1</precision>  
3365 - </field>  
3366 - <field>  
3367 - <name>fcno67</name>  
3368 - <type>String</type>  
3369 - <format/>  
3370 - <currency/>  
3371 - <decimal/>  
3372 - <group/>  
3373 - <nullif/>  
3374 - <trim_type>none</trim_type>  
3375 - <length>-1</length>  
3376 - <precision>-1</precision>  
3377 - </field>  
3378 - <field>  
3379 - <name>fcno68</name>  
3380 - <type>String</type>  
3381 - <format/>  
3382 - <currency/>  
3383 - <decimal/>  
3384 - <group/>  
3385 - <nullif/>  
3386 - <trim_type>none</trim_type>  
3387 - <length>-1</length>  
3388 - <precision>-1</precision>  
3389 - </field>  
3390 - <field>  
3391 - <name>fcno69</name>  
3392 - <type>String</type>  
3393 - <format/>  
3394 - <currency/>  
3395 - <decimal/>  
3396 - <group/>  
3397 - <nullif/>  
3398 - <trim_type>none</trim_type>  
3399 - <length>-1</length>  
3400 - <precision>-1</precision>  
3401 - </field>  
3402 - <field>  
3403 - <name>fcno70</name>  
3404 - <type>String</type>  
3405 - <format/>  
3406 - <currency/>  
3407 - <decimal/>  
3408 - <group/>  
3409 - <nullif/>  
3410 - <trim_type>none</trim_type>  
3411 - <length>-1</length>  
3412 - <precision>-1</precision>  
3413 - </field>  
3414 - </fields>  
3415 - <cluster_schema/>  
3416 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
3417 - <xloc>880</xloc>  
3418 - <yloc>365</yloc>  
3419 - <draw>Y</draw>  
3420 - </GUI>  
3421 - </step>  
3422 -  
3423 - <step>  
3424 - <name>&#x5408;&#x5e76;&#x5185;&#x5bb9;</name>  
3425 - <type>ScriptValueMod</type>  
3426 - <description/>  
3427 - <distribute>Y</distribute>  
3428 - <custom_distribution/>  
3429 - <copies>1</copies>  
3430 - <partitioning>  
3431 - <method>none</method>  
3432 - <schema_name/>  
3433 - </partitioning>  
3434 - <compatible>N</compatible>  
3435 - <optimizationLevel>9</optimizationLevel>  
3436 - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>  
3437 - <jsScript_name>Script 1</jsScript_name>  
3438 - <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;&#x2f;&#x2f; &#x987a;&#x5e8f;&#xff0c;id,fcsj,jhlc,zdname,bctype,xldir,isfb&#xa;var all_content_array &#x3d; &#x5b;&#x5d;&#x3b;&#xa;var all_content &#x3d; &#x22;&#x22;&#x3b; &#xa;all_content_array.push&#x28;id&#x29;&#x3b;&#xa;all_content_array.push&#x28;fcsj&#x29;&#x3b;&#xa;all_content_array.push&#x28;jhlc&#x29;&#x3b;&#xa;all_content_array.push&#x28;fczdName&#x29;&#x3b;&#xa;all_content_array.push&#x28;bc_type&#x29;&#x3b;&#xa;all_content_array.push&#x28;xl_dir&#x29;&#x3b;&#xa;all_content_array.push&#x28;isfb&#x29;&#x3b;&#xa;&#xa;all_content &#x3d; all_content_array.join&#x28;&#x22;,&#x22;&#x29;&#x3b; &#x2f;&#x2f; &#x9017;&#x53f7;&#x5206;&#x9694;</jsScript_script>  
3439 - </jsScript> </jsScripts> <fields> <field> <name>all_content</name>  
3440 - <rename>all_content</rename>  
3441 - <type>String</type>  
3442 - <length>-1</length>  
3443 - <precision>-1</precision>  
3444 - <replace>N</replace>  
3445 - </field> </fields> <cluster_schema/>  
3446 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
3447 - <xloc>551</xloc>  
3448 - <yloc>366</yloc>  
3449 - <draw>Y</draw>  
3450 - </GUI>  
3451 - </step>  
3452 -  
3453 - <step_error_handling>  
3454 - </step_error_handling>  
3455 - <slave-step-copy-partition-distribution>  
3456 -</slave-step-copy-partition-distribution>  
3457 - <slave_transformation>N</slave_transformation>  
3458 -  
3459 -</transformation> 1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<transformation>
  3 + <info>
  4 + <name>ttinfodetailoutputforedit</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>tempfilepath</name>
  14 + <default_value>&#x2f;Users&#x2f;xu&#x2f;resource&#x2f;project_code&#x2f;runtime_temp&#x2f;bsth_control_u_d_files&#x2f;temp&#x2f;test</default_value>
  15 + <description>&#x9ed8;&#x8ba4;&#x8f93;&#x51fa;&#x7684;&#x6587;&#x4ef6;&#x8def;&#x5f84;&#x540d;</description>
  16 + </parameter>
  17 + <parameter>
  18 + <name>ttid</name>
  19 + <default_value>63</default_value>
  20 + <description>&#x65f6;&#x523b;&#x8868;id</description>
  21 + </parameter>
  22 + <parameter>
  23 + <name>xlid</name>
  24 + <default_value>63017</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>2016&#x2f;07&#x2f;11 21&#x3a;45&#x3a;05.041</created_date>
  86 + <modified_user>-</modified_user>
  87 + <modified_date>2016&#x2f;07&#x2f;11 21&#x3a;45&#x3a;05.041</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>45</xloc>
  95 + <yloc>261</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 + <notepad>
  114 + <note>&#x6b64;&#x5904;&#x8f6c;&#x6362;excel&#x6709;&#x95ee;&#x9898;&#xff0c;&#xa;2003&#x683c;&#x5f0f;&#x7684;xls&#x6700;&#x591a;256&#x5217;&#xff0c;&#xa;&#x8fd9;&#x91cc;&#x660e;&#x663e;&#x8d85;&#x8fc7;&#xff0c;&#x6240;&#x4ee5;&#x628a;&#x6240;&#x6709;&#x5185;&#x5bb9;&#x5408;&#x5e76;&#x6210;1&#x5217;&#xff0c;&#xa;&#x7528;,&#x5206;&#x9694;</note>
  115 + <xloc>256</xloc>
  116 + <yloc>397</yloc>
  117 + <width>245</width>
  118 + <heigth>74</heigth>
  119 + <fontname>YaHei Consolas Hybrid</fontname>
  120 + <fontsize>12</fontsize>
  121 + <fontbold>N</fontbold>
  122 + <fontitalic>N</fontitalic>
  123 + <fontcolorred>0</fontcolorred>
  124 + <fontcolorgreen>0</fontcolorgreen>
  125 + <fontcolorblue>0</fontcolorblue>
  126 + <backgroundcolorred>255</backgroundcolorred>
  127 + <backgroundcolorgreen>205</backgroundcolorgreen>
  128 + <backgroundcolorblue>112</backgroundcolorblue>
  129 + <bordercolorred>100</bordercolorred>
  130 + <bordercolorgreen>100</bordercolorgreen>
  131 + <bordercolorblue>100</bordercolorblue>
  132 + <drawshadow>Y</drawshadow>
  133 + </notepad>
  134 + </notepads>
  135 + <connection>
  136 + <name>bus_control_variable</name>
  137 + <server>&#x24;&#x7b;v_db_ip&#x7d;</server>
  138 + <type>MYSQL</type>
  139 + <access>Native</access>
  140 + <database>&#x24;&#x7b;v_db_dname&#x7d;</database>
  141 + <port>3306</port>
  142 + <username>&#x24;&#x7b;v_db_uname&#x7d;</username>
  143 + <password>&#x24;&#x7b;v_db_pwd&#x7d;</password>
  144 + <servername/>
  145 + <data_tablespace/>
  146 + <index_tablespace/>
  147 + <attributes>
  148 + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
  149 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  150 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  151 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  152 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  153 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  154 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  155 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  156 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  157 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  158 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  159 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  160 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  161 + </attributes>
  162 + </connection>
  163 + <connection>
  164 + <name>bus_control_&#x516c;&#x53f8;_201</name>
  165 + <server>localhost</server>
  166 + <type>MYSQL</type>
  167 + <access>Native</access>
  168 + <database>control</database>
  169 + <port>3306</port>
  170 + <username>root</username>
  171 + <password>Encrypted </password>
  172 + <servername/>
  173 + <data_tablespace/>
  174 + <index_tablespace/>
  175 + <attributes>
  176 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  177 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  178 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  179 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  180 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  181 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  182 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  183 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  184 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  185 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  186 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  187 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  188 + </attributes>
  189 + </connection>
  190 + <connection>
  191 + <name>bus_control_&#x672c;&#x673a;</name>
  192 + <server>localhost</server>
  193 + <type>MYSQL</type>
  194 + <access>Native</access>
  195 + <database>control</database>
  196 + <port>3306</port>
  197 + <username>root</username>
  198 + <password>Encrypted </password>
  199 + <servername/>
  200 + <data_tablespace/>
  201 + <index_tablespace/>
  202 + <attributes>
  203 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  204 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  205 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  206 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  207 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  208 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  209 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  210 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  211 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  212 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  213 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  214 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  215 + </attributes>
  216 + </connection>
  217 + <connection>
  218 + <name>xlab_mysql_youle</name>
  219 + <server>101.231.124.8</server>
  220 + <type>MYSQL</type>
  221 + <access>Native</access>
  222 + <database>xlab_youle</database>
  223 + <port>45687</port>
  224 + <username>xlab-youle</username>
  225 + <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password>
  226 + <servername/>
  227 + <data_tablespace/>
  228 + <index_tablespace/>
  229 + <attributes>
  230 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  231 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  232 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  233 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  234 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  235 + <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute>
  236 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  237 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  238 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  239 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  240 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  241 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  242 + </attributes>
  243 + </connection>
  244 + <connection>
  245 + <name>xlab_mysql_youle&#xff08;&#x672c;&#x673a;&#xff09;</name>
  246 + <server>localhost</server>
  247 + <type>MYSQL</type>
  248 + <access>Native</access>
  249 + <database>xlab_youle</database>
  250 + <port>3306</port>
  251 + <username>root</username>
  252 + <password>Encrypted </password>
  253 + <servername/>
  254 + <data_tablespace/>
  255 + <index_tablespace/>
  256 + <attributes>
  257 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  258 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  259 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  260 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  261 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  262 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  263 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  264 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  265 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  266 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  267 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  268 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  269 + </attributes>
  270 + </connection>
  271 + <connection>
  272 + <name>xlab_youle</name>
  273 + <server/>
  274 + <type>MYSQL</type>
  275 + <access>JNDI</access>
  276 + <database>xlab_youle</database>
  277 + <port>1521</port>
  278 + <username/>
  279 + <password>Encrypted </password>
  280 + <servername/>
  281 + <data_tablespace/>
  282 + <index_tablespace/>
  283 + <attributes>
  284 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  285 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  286 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  287 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  288 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  289 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  290 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  291 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  292 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  293 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  294 + </attributes>
  295 + </connection>
  296 + <order>
  297 + <hop> <from>&#x8868;&#x8f93;&#x5165;</from><to>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;</to><enabled>Y</enabled> </hop>
  298 + <hop> <from>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;</from><to>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x7ad9;&#x70b9;&#x67e5;&#x8be2;&#x7528;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
  299 + <hop> <from>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;</from><to>&#x8fdb;&#x573a;&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x67e5;&#x8be2;&#x7528;&#x7684;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
  300 + <hop> <from>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x7ad9;&#x70b9;&#x67e5;&#x8be2;&#x7528;&#x6570;&#x636e;</from><to>&#x67e5;&#x627e;&#x8d77;&#x70b9;&#x7ad9;&#x540d;&#x79f0;</to><enabled>Y</enabled> </hop>
  301 + <hop> <from>&#x67e5;&#x627e;&#x8d77;&#x70b9;&#x7ad9;&#x540d;&#x79f0;</from><to>&#x67e5;&#x627e;&#x7ec8;&#x70b9;&#x7ad9;&#x540d;&#x79f0;</to><enabled>Y</enabled> </hop>
  302 + <hop> <from>&#x67e5;&#x627e;&#x7ec8;&#x70b9;&#x7ad9;&#x540d;&#x79f0;</from><to>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</to><enabled>Y</enabled> </hop>
  303 + <hop> <from>&#x8fdb;&#x573a;&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x67e5;&#x8be2;&#x7528;&#x7684;&#x6570;&#x636e;</from><to>&#x5b57;&#x6bb5;&#x9009;&#x62e9; 2</to><enabled>Y</enabled> </hop>
  304 + <hop> <from>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</from><to>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</to><enabled>Y</enabled> </hop>
  305 + <hop> <from>&#x5b57;&#x6bb5;&#x9009;&#x62e9; 2</from><to>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</to><enabled>Y</enabled> </hop>
  306 + <hop> <from>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</from><to>&#x8ba1;&#x7b97;&#x53d1;&#x8f66;&#x7ad9;&#x540d;</to><enabled>Y</enabled> </hop>
  307 + <hop> <from>&#x5217;&#x8f6c;&#x884c;</from><to>&#x53bb;&#x9664;&#x5b57;&#x6bb5;</to><enabled>Y</enabled> </hop>
  308 + <hop> <from>&#x53bb;&#x9664;&#x5b57;&#x6bb5;</from><to>Excel&#x8f93;&#x51fa;</to><enabled>Y</enabled> </hop>
  309 + <hop> <from>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</from><to>&#x8868;&#x8f93;&#x5165;</to><enabled>Y</enabled> </hop>
  310 + <hop> <from>&#x8ba1;&#x7b97;&#x53d1;&#x8f66;&#x7ad9;&#x540d;</from><to>&#x5408;&#x5e76;&#x5185;&#x5bb9;</to><enabled>Y</enabled> </hop>
  311 + <hop> <from>&#x5408;&#x5e76;&#x5185;&#x5bb9;</from><to>&#x5217;&#x8f6c;&#x884c;</to><enabled>Y</enabled> </hop>
  312 + <hop> <from>&#x53bb;&#x9664;&#x5b57;&#x6bb5;</from><to>&#x6587;&#x672c;&#x6587;&#x4ef6;&#x8f93;&#x51fa;</to><enabled>Y</enabled> </hop>
  313 + </order>
  314 + <step>
  315 + <name>Excel&#x8f93;&#x51fa;</name>
  316 + <type>ExcelOutput</type>
  317 + <description/>
  318 + <distribute>Y</distribute>
  319 + <custom_distribution/>
  320 + <copies>1</copies>
  321 + <partitioning>
  322 + <method>none</method>
  323 + <schema_name/>
  324 + </partitioning>
  325 + <header>Y</header>
  326 + <footer>N</footer>
  327 + <encoding/>
  328 + <append>N</append>
  329 + <add_to_result_filenames>Y</add_to_result_filenames>
  330 + <file>
  331 + <name>&#x24;&#x7b;tempfilepath&#x7d;</name>
  332 + <extention>xls</extention>
  333 + <do_not_open_newfile_init>N</do_not_open_newfile_init>
  334 + <create_parent_folder>N</create_parent_folder>
  335 + <split>N</split>
  336 + <add_date>N</add_date>
  337 + <add_time>N</add_time>
  338 + <SpecifyFormat>N</SpecifyFormat>
  339 + <date_time_format/>
  340 + <sheetname>Sheet1</sheetname>
  341 + <autosizecolums>N</autosizecolums>
  342 + <nullisblank>N</nullisblank>
  343 + <protect_sheet>N</protect_sheet>
  344 + <password>Encrypted </password>
  345 + <splitevery>0</splitevery>
  346 + <usetempfiles>N</usetempfiles>
  347 + <tempdirectory/>
  348 + </file>
  349 + <template>
  350 + <enabled>N</enabled>
  351 + <append>N</append>
  352 + <filename>template.xls</filename>
  353 + </template>
  354 + <fields>
  355 + <field>
  356 + <name>lp</name>
  357 + <type>String</type>
  358 + <format/>
  359 + </field>
  360 + <field>
  361 + <name>fcno1</name>
  362 + <type>String</type>
  363 + <format/>
  364 + </field>
  365 + <field>
  366 + <name>fcno2</name>
  367 + <type>String</type>
  368 + <format/>
  369 + </field>
  370 + <field>
  371 + <name>fcno3</name>
  372 + <type>String</type>
  373 + <format/>
  374 + </field>
  375 + <field>
  376 + <name>fcno4</name>
  377 + <type>String</type>
  378 + <format/>
  379 + </field>
  380 + <field>
  381 + <name>fcno5</name>
  382 + <type>String</type>
  383 + <format/>
  384 + </field>
  385 + <field>
  386 + <name>fcno6</name>
  387 + <type>String</type>
  388 + <format/>
  389 + </field>
  390 + <field>
  391 + <name>fcno7</name>
  392 + <type>String</type>
  393 + <format/>
  394 + </field>
  395 + <field>
  396 + <name>fcno8</name>
  397 + <type>String</type>
  398 + <format/>
  399 + </field>
  400 + <field>
  401 + <name>fcno9</name>
  402 + <type>String</type>
  403 + <format/>
  404 + </field>
  405 + <field>
  406 + <name>fcno10</name>
  407 + <type>String</type>
  408 + <format/>
  409 + </field>
  410 + <field>
  411 + <name>fcno11</name>
  412 + <type>String</type>
  413 + <format/>
  414 + </field>
  415 + <field>
  416 + <name>fcno12</name>
  417 + <type>String</type>
  418 + <format/>
  419 + </field>
  420 + <field>
  421 + <name>fcno13</name>
  422 + <type>String</type>
  423 + <format/>
  424 + </field>
  425 + <field>
  426 + <name>fcno14</name>
  427 + <type>String</type>
  428 + <format/>
  429 + </field>
  430 + <field>
  431 + <name>fcno15</name>
  432 + <type>String</type>
  433 + <format/>
  434 + </field>
  435 + <field>
  436 + <name>fcno16</name>
  437 + <type>String</type>
  438 + <format/>
  439 + </field>
  440 + <field>
  441 + <name>fcno17</name>
  442 + <type>String</type>
  443 + <format/>
  444 + </field>
  445 + <field>
  446 + <name>fcno18</name>
  447 + <type>String</type>
  448 + <format/>
  449 + </field>
  450 + <field>
  451 + <name>fcno19</name>
  452 + <type>String</type>
  453 + <format/>
  454 + </field>
  455 + <field>
  456 + <name>fcno20</name>
  457 + <type>String</type>
  458 + <format/>
  459 + </field>
  460 + <field>
  461 + <name>fcno21</name>
  462 + <type>String</type>
  463 + <format/>
  464 + </field>
  465 + <field>
  466 + <name>fcno22</name>
  467 + <type>String</type>
  468 + <format/>
  469 + </field>
  470 + <field>
  471 + <name>fcno23</name>
  472 + <type>String</type>
  473 + <format/>
  474 + </field>
  475 + <field>
  476 + <name>fcno24</name>
  477 + <type>String</type>
  478 + <format/>
  479 + </field>
  480 + <field>
  481 + <name>fcno25</name>
  482 + <type>String</type>
  483 + <format/>
  484 + </field>
  485 + <field>
  486 + <name>fcno26</name>
  487 + <type>String</type>
  488 + <format/>
  489 + </field>
  490 + <field>
  491 + <name>fcno27</name>
  492 + <type>String</type>
  493 + <format/>
  494 + </field>
  495 + <field>
  496 + <name>fcno28</name>
  497 + <type>String</type>
  498 + <format/>
  499 + </field>
  500 + <field>
  501 + <name>fcno29</name>
  502 + <type>String</type>
  503 + <format/>
  504 + </field>
  505 + <field>
  506 + <name>fcno30</name>
  507 + <type>String</type>
  508 + <format/>
  509 + </field>
  510 + <field>
  511 + <name>fcno31</name>
  512 + <type>String</type>
  513 + <format/>
  514 + </field>
  515 + <field>
  516 + <name>fcno32</name>
  517 + <type>String</type>
  518 + <format/>
  519 + </field>
  520 + <field>
  521 + <name>fcno33</name>
  522 + <type>String</type>
  523 + <format/>
  524 + </field>
  525 + <field>
  526 + <name>fcno34</name>
  527 + <type>String</type>
  528 + <format/>
  529 + </field>
  530 + <field>
  531 + <name>fcno35</name>
  532 + <type>String</type>
  533 + <format/>
  534 + </field>
  535 + <field>
  536 + <name>fcno36</name>
  537 + <type>String</type>
  538 + <format/>
  539 + </field>
  540 + <field>
  541 + <name>fcno37</name>
  542 + <type>String</type>
  543 + <format/>
  544 + </field>
  545 + <field>
  546 + <name>fcno38</name>
  547 + <type>String</type>
  548 + <format/>
  549 + </field>
  550 + <field>
  551 + <name>fcno39</name>
  552 + <type>String</type>
  553 + <format/>
  554 + </field>
  555 + <field>
  556 + <name>fcno40</name>
  557 + <type>String</type>
  558 + <format/>
  559 + </field>
  560 + <field>
  561 + <name>fcno41</name>
  562 + <type>String</type>
  563 + <format/>
  564 + </field>
  565 + <field>
  566 + <name>fcno42</name>
  567 + <type>String</type>
  568 + <format/>
  569 + </field>
  570 + <field>
  571 + <name>fcno43</name>
  572 + <type>String</type>
  573 + <format/>
  574 + </field>
  575 + <field>
  576 + <name>fcno44</name>
  577 + <type>String</type>
  578 + <format/>
  579 + </field>
  580 + <field>
  581 + <name>fcno45</name>
  582 + <type>String</type>
  583 + <format/>
  584 + </field>
  585 + <field>
  586 + <name>fcno46</name>
  587 + <type>String</type>
  588 + <format/>
  589 + </field>
  590 + <field>
  591 + <name>fcno47</name>
  592 + <type>String</type>
  593 + <format/>
  594 + </field>
  595 + <field>
  596 + <name>fcno48</name>
  597 + <type>String</type>
  598 + <format/>
  599 + </field>
  600 + <field>
  601 + <name>fcno49</name>
  602 + <type>String</type>
  603 + <format/>
  604 + </field>
  605 + <field>
  606 + <name>fcno50</name>
  607 + <type>String</type>
  608 + <format/>
  609 + </field>
  610 + <field>
  611 + <name>fcno51</name>
  612 + <type>String</type>
  613 + <format/>
  614 + </field>
  615 + <field>
  616 + <name>fcno52</name>
  617 + <type>String</type>
  618 + <format/>
  619 + </field>
  620 + <field>
  621 + <name>fcno53</name>
  622 + <type>String</type>
  623 + <format/>
  624 + </field>
  625 + <field>
  626 + <name>fcno54</name>
  627 + <type>String</type>
  628 + <format/>
  629 + </field>
  630 + <field>
  631 + <name>fcno55</name>
  632 + <type>String</type>
  633 + <format/>
  634 + </field>
  635 + <field>
  636 + <name>fcno56</name>
  637 + <type>String</type>
  638 + <format/>
  639 + </field>
  640 + <field>
  641 + <name>fcno57</name>
  642 + <type>String</type>
  643 + <format/>
  644 + </field>
  645 + <field>
  646 + <name>fcno58</name>
  647 + <type>String</type>
  648 + <format/>
  649 + </field>
  650 + <field>
  651 + <name>fcno59</name>
  652 + <type>String</type>
  653 + <format/>
  654 + </field>
  655 + <field>
  656 + <name>fcno60</name>
  657 + <type>String</type>
  658 + <format/>
  659 + </field>
  660 + <field>
  661 + <name>fcno61</name>
  662 + <type>String</type>
  663 + <format/>
  664 + </field>
  665 + <field>
  666 + <name>fcno62</name>
  667 + <type>String</type>
  668 + <format/>
  669 + </field>
  670 + <field>
  671 + <name>fcno63</name>
  672 + <type>String</type>
  673 + <format/>
  674 + </field>
  675 + <field>
  676 + <name>fcno64</name>
  677 + <type>String</type>
  678 + <format/>
  679 + </field>
  680 + <field>
  681 + <name>fcno65</name>
  682 + <type>String</type>
  683 + <format/>
  684 + </field>
  685 + <field>
  686 + <name>fcno66</name>
  687 + <type>String</type>
  688 + <format/>
  689 + </field>
  690 + <field>
  691 + <name>fcno67</name>
  692 + <type>String</type>
  693 + <format/>
  694 + </field>
  695 + <field>
  696 + <name>fcno68</name>
  697 + <type>String</type>
  698 + <format/>
  699 + </field>
  700 + <field>
  701 + <name>fcno69</name>
  702 + <type>String</type>
  703 + <format/>
  704 + </field>
  705 + <field>
  706 + <name>fcno70</name>
  707 + <type>String</type>
  708 + <format/>
  709 + </field>
  710 + </fields>
  711 + <custom>
  712 + <header_font_name>arial</header_font_name>
  713 + <header_font_size>10</header_font_size>
  714 + <header_font_bold>N</header_font_bold>
  715 + <header_font_italic>N</header_font_italic>
  716 + <header_font_underline>no</header_font_underline>
  717 + <header_font_orientation>horizontal</header_font_orientation>
  718 + <header_font_color>black</header_font_color>
  719 + <header_background_color>none</header_background_color>
  720 + <header_row_height>255</header_row_height>
  721 + <header_alignment>left</header_alignment>
  722 + <header_image/>
  723 + <row_font_name>arial</row_font_name>
  724 + <row_font_size>10</row_font_size>
  725 + <row_font_color>black</row_font_color>
  726 + <row_background_color>none</row_background_color>
  727 + </custom>
  728 + <cluster_schema/>
  729 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  730 + <xloc>692</xloc>
  731 + <yloc>514</yloc>
  732 + <draw>Y</draw>
  733 + </GUI>
  734 + </step>
  735 +
  736 + <step>
  737 + <name>&#x5217;&#x8f6c;&#x884c;</name>
  738 + <type>Denormaliser</type>
  739 + <description/>
  740 + <distribute>N</distribute>
  741 + <custom_distribution/>
  742 + <copies>1</copies>
  743 + <partitioning>
  744 + <method>none</method>
  745 + <schema_name/>
  746 + </partitioning>
  747 + <key_field>fcno</key_field>
  748 + <group>
  749 + <field>
  750 + <name>lp</name>
  751 + </field>
  752 + </group>
  753 + <fields>
  754 + <field>
  755 + <field_name>all_content</field_name>
  756 + <key_value>1</key_value>
  757 + <target_name>fcno1</target_name>
  758 + <target_type>String</target_type>
  759 + <target_format/>
  760 + <target_length>-1</target_length>
  761 + <target_precision>-1</target_precision>
  762 + <target_decimal_symbol/>
  763 + <target_grouping_symbol/>
  764 + <target_currency_symbol/>
  765 + <target_null_string/>
  766 + <target_aggregation_type>-</target_aggregation_type>
  767 + </field>
  768 + <field>
  769 + <field_name>all_content</field_name>
  770 + <key_value>2</key_value>
  771 + <target_name>fcno2</target_name>
  772 + <target_type>String</target_type>
  773 + <target_format/>
  774 + <target_length>-1</target_length>
  775 + <target_precision>-1</target_precision>
  776 + <target_decimal_symbol/>
  777 + <target_grouping_symbol/>
  778 + <target_currency_symbol/>
  779 + <target_null_string/>
  780 + <target_aggregation_type>-</target_aggregation_type>
  781 + </field>
  782 + <field>
  783 + <field_name>all_content</field_name>
  784 + <key_value>3</key_value>
  785 + <target_name>fcno3</target_name>
  786 + <target_type>String</target_type>
  787 + <target_format/>
  788 + <target_length>-1</target_length>
  789 + <target_precision>-1</target_precision>
  790 + <target_decimal_symbol/>
  791 + <target_grouping_symbol/>
  792 + <target_currency_symbol/>
  793 + <target_null_string/>
  794 + <target_aggregation_type>-</target_aggregation_type>
  795 + </field>
  796 + <field>
  797 + <field_name>all_content</field_name>
  798 + <key_value>4</key_value>
  799 + <target_name>fcno4</target_name>
  800 + <target_type>String</target_type>
  801 + <target_format/>
  802 + <target_length>-1</target_length>
  803 + <target_precision>-1</target_precision>
  804 + <target_decimal_symbol/>
  805 + <target_grouping_symbol/>
  806 + <target_currency_symbol/>
  807 + <target_null_string/>
  808 + <target_aggregation_type>-</target_aggregation_type>
  809 + </field>
  810 + <field>
  811 + <field_name>all_content</field_name>
  812 + <key_value>5</key_value>
  813 + <target_name>fcno5</target_name>
  814 + <target_type>String</target_type>
  815 + <target_format/>
  816 + <target_length>-1</target_length>
  817 + <target_precision>-1</target_precision>
  818 + <target_decimal_symbol/>
  819 + <target_grouping_symbol/>
  820 + <target_currency_symbol/>
  821 + <target_null_string/>
  822 + <target_aggregation_type>-</target_aggregation_type>
  823 + </field>
  824 + <field>
  825 + <field_name>all_content</field_name>
  826 + <key_value>6</key_value>
  827 + <target_name>fcno6</target_name>
  828 + <target_type>String</target_type>
  829 + <target_format/>
  830 + <target_length>-1</target_length>
  831 + <target_precision>-1</target_precision>
  832 + <target_decimal_symbol/>
  833 + <target_grouping_symbol/>
  834 + <target_currency_symbol/>
  835 + <target_null_string/>
  836 + <target_aggregation_type>-</target_aggregation_type>
  837 + </field>
  838 + <field>
  839 + <field_name>all_content</field_name>
  840 + <key_value>7</key_value>
  841 + <target_name>fcno7</target_name>
  842 + <target_type>String</target_type>
  843 + <target_format/>
  844 + <target_length>-1</target_length>
  845 + <target_precision>-1</target_precision>
  846 + <target_decimal_symbol/>
  847 + <target_grouping_symbol/>
  848 + <target_currency_symbol/>
  849 + <target_null_string/>
  850 + <target_aggregation_type>-</target_aggregation_type>
  851 + </field>
  852 + <field>
  853 + <field_name>all_content</field_name>
  854 + <key_value>8</key_value>
  855 + <target_name>fcno8</target_name>
  856 + <target_type>String</target_type>
  857 + <target_format/>
  858 + <target_length>-1</target_length>
  859 + <target_precision>-1</target_precision>
  860 + <target_decimal_symbol/>
  861 + <target_grouping_symbol/>
  862 + <target_currency_symbol/>
  863 + <target_null_string/>
  864 + <target_aggregation_type>-</target_aggregation_type>
  865 + </field>
  866 + <field>
  867 + <field_name>all_content</field_name>
  868 + <key_value>9</key_value>
  869 + <target_name>fcno9</target_name>
  870 + <target_type>String</target_type>
  871 + <target_format/>
  872 + <target_length>-1</target_length>
  873 + <target_precision>-1</target_precision>
  874 + <target_decimal_symbol/>
  875 + <target_grouping_symbol/>
  876 + <target_currency_symbol/>
  877 + <target_null_string/>
  878 + <target_aggregation_type>-</target_aggregation_type>
  879 + </field>
  880 + <field>
  881 + <field_name>all_content</field_name>
  882 + <key_value>10</key_value>
  883 + <target_name>fcno10</target_name>
  884 + <target_type>String</target_type>
  885 + <target_format/>
  886 + <target_length>-1</target_length>
  887 + <target_precision>-1</target_precision>
  888 + <target_decimal_symbol/>
  889 + <target_grouping_symbol/>
  890 + <target_currency_symbol/>
  891 + <target_null_string/>
  892 + <target_aggregation_type>-</target_aggregation_type>
  893 + </field>
  894 + <field>
  895 + <field_name>all_content</field_name>
  896 + <key_value>11</key_value>
  897 + <target_name>fcno11</target_name>
  898 + <target_type>String</target_type>
  899 + <target_format/>
  900 + <target_length>-1</target_length>
  901 + <target_precision>-1</target_precision>
  902 + <target_decimal_symbol/>
  903 + <target_grouping_symbol/>
  904 + <target_currency_symbol/>
  905 + <target_null_string/>
  906 + <target_aggregation_type>-</target_aggregation_type>
  907 + </field>
  908 + <field>
  909 + <field_name>all_content</field_name>
  910 + <key_value>12</key_value>
  911 + <target_name>fcno12</target_name>
  912 + <target_type>String</target_type>
  913 + <target_format/>
  914 + <target_length>-1</target_length>
  915 + <target_precision>-1</target_precision>
  916 + <target_decimal_symbol/>
  917 + <target_grouping_symbol/>
  918 + <target_currency_symbol/>
  919 + <target_null_string/>
  920 + <target_aggregation_type>-</target_aggregation_type>
  921 + </field>
  922 + <field>
  923 + <field_name>all_content</field_name>
  924 + <key_value>13</key_value>
  925 + <target_name>fcno13</target_name>
  926 + <target_type>String</target_type>
  927 + <target_format/>
  928 + <target_length>-1</target_length>
  929 + <target_precision>-1</target_precision>
  930 + <target_decimal_symbol/>
  931 + <target_grouping_symbol/>
  932 + <target_currency_symbol/>
  933 + <target_null_string/>
  934 + <target_aggregation_type>-</target_aggregation_type>
  935 + </field>
  936 + <field>
  937 + <field_name>all_content</field_name>
  938 + <key_value>14</key_value>
  939 + <target_name>fcno14</target_name>
  940 + <target_type>String</target_type>
  941 + <target_format/>
  942 + <target_length>-1</target_length>
  943 + <target_precision>-1</target_precision>
  944 + <target_decimal_symbol/>
  945 + <target_grouping_symbol/>
  946 + <target_currency_symbol/>
  947 + <target_null_string/>
  948 + <target_aggregation_type>-</target_aggregation_type>
  949 + </field>
  950 + <field>
  951 + <field_name>all_content</field_name>
  952 + <key_value>15</key_value>
  953 + <target_name>fcno15</target_name>
  954 + <target_type>String</target_type>
  955 + <target_format/>
  956 + <target_length>-1</target_length>
  957 + <target_precision>-1</target_precision>
  958 + <target_decimal_symbol/>
  959 + <target_grouping_symbol/>
  960 + <target_currency_symbol/>
  961 + <target_null_string/>
  962 + <target_aggregation_type>-</target_aggregation_type>
  963 + </field>
  964 + <field>
  965 + <field_name>all_content</field_name>
  966 + <key_value>16</key_value>
  967 + <target_name>fcno16</target_name>
  968 + <target_type>String</target_type>
  969 + <target_format/>
  970 + <target_length>-1</target_length>
  971 + <target_precision>-1</target_precision>
  972 + <target_decimal_symbol/>
  973 + <target_grouping_symbol/>
  974 + <target_currency_symbol/>
  975 + <target_null_string/>
  976 + <target_aggregation_type>-</target_aggregation_type>
  977 + </field>
  978 + <field>
  979 + <field_name>all_content</field_name>
  980 + <key_value>17</key_value>
  981 + <target_name>fcno17</target_name>
  982 + <target_type>String</target_type>
  983 + <target_format/>
  984 + <target_length>-1</target_length>
  985 + <target_precision>-1</target_precision>
  986 + <target_decimal_symbol/>
  987 + <target_grouping_symbol/>
  988 + <target_currency_symbol/>
  989 + <target_null_string/>
  990 + <target_aggregation_type>-</target_aggregation_type>
  991 + </field>
  992 + <field>
  993 + <field_name>all_content</field_name>
  994 + <key_value>18</key_value>
  995 + <target_name>fcno18</target_name>
  996 + <target_type>String</target_type>
  997 + <target_format/>
  998 + <target_length>-1</target_length>
  999 + <target_precision>-1</target_precision>
  1000 + <target_decimal_symbol/>
  1001 + <target_grouping_symbol/>
  1002 + <target_currency_symbol/>
  1003 + <target_null_string/>
  1004 + <target_aggregation_type>-</target_aggregation_type>
  1005 + </field>
  1006 + <field>
  1007 + <field_name>all_content</field_name>
  1008 + <key_value>19</key_value>
  1009 + <target_name>fcno19</target_name>
  1010 + <target_type>String</target_type>
  1011 + <target_format/>
  1012 + <target_length>-1</target_length>
  1013 + <target_precision>-1</target_precision>
  1014 + <target_decimal_symbol/>
  1015 + <target_grouping_symbol/>
  1016 + <target_currency_symbol/>
  1017 + <target_null_string/>
  1018 + <target_aggregation_type>-</target_aggregation_type>
  1019 + </field>
  1020 + <field>
  1021 + <field_name>all_content</field_name>
  1022 + <key_value>20</key_value>
  1023 + <target_name>fcno20</target_name>
  1024 + <target_type>String</target_type>
  1025 + <target_format/>
  1026 + <target_length>-1</target_length>
  1027 + <target_precision>-1</target_precision>
  1028 + <target_decimal_symbol/>
  1029 + <target_grouping_symbol/>
  1030 + <target_currency_symbol/>
  1031 + <target_null_string/>
  1032 + <target_aggregation_type>-</target_aggregation_type>
  1033 + </field>
  1034 + <field>
  1035 + <field_name>all_content</field_name>
  1036 + <key_value>21</key_value>
  1037 + <target_name>fcno21</target_name>
  1038 + <target_type>String</target_type>
  1039 + <target_format/>
  1040 + <target_length>-1</target_length>
  1041 + <target_precision>-1</target_precision>
  1042 + <target_decimal_symbol/>
  1043 + <target_grouping_symbol/>
  1044 + <target_currency_symbol/>
  1045 + <target_null_string/>
  1046 + <target_aggregation_type>-</target_aggregation_type>
  1047 + </field>
  1048 + <field>
  1049 + <field_name>all_content</field_name>
  1050 + <key_value>22</key_value>
  1051 + <target_name>fcno22</target_name>
  1052 + <target_type>String</target_type>
  1053 + <target_format/>
  1054 + <target_length>-1</target_length>
  1055 + <target_precision>-1</target_precision>
  1056 + <target_decimal_symbol/>
  1057 + <target_grouping_symbol/>
  1058 + <target_currency_symbol/>
  1059 + <target_null_string/>
  1060 + <target_aggregation_type>-</target_aggregation_type>
  1061 + </field>
  1062 + <field>
  1063 + <field_name>all_content</field_name>
  1064 + <key_value>23</key_value>
  1065 + <target_name>fcno23</target_name>
  1066 + <target_type>String</target_type>
  1067 + <target_format/>
  1068 + <target_length>-1</target_length>
  1069 + <target_precision>-1</target_precision>
  1070 + <target_decimal_symbol/>
  1071 + <target_grouping_symbol/>
  1072 + <target_currency_symbol/>
  1073 + <target_null_string/>
  1074 + <target_aggregation_type>-</target_aggregation_type>
  1075 + </field>
  1076 + <field>
  1077 + <field_name>all_content</field_name>
  1078 + <key_value>24</key_value>
  1079 + <target_name>fcno24</target_name>
  1080 + <target_type>String</target_type>
  1081 + <target_format/>
  1082 + <target_length>-1</target_length>
  1083 + <target_precision>-1</target_precision>
  1084 + <target_decimal_symbol/>
  1085 + <target_grouping_symbol/>
  1086 + <target_currency_symbol/>
  1087 + <target_null_string/>
  1088 + <target_aggregation_type>-</target_aggregation_type>
  1089 + </field>
  1090 + <field>
  1091 + <field_name>all_content</field_name>
  1092 + <key_value>25</key_value>
  1093 + <target_name>fcno25</target_name>
  1094 + <target_type>String</target_type>
  1095 + <target_format/>
  1096 + <target_length>-1</target_length>
  1097 + <target_precision>-1</target_precision>
  1098 + <target_decimal_symbol/>
  1099 + <target_grouping_symbol/>
  1100 + <target_currency_symbol/>
  1101 + <target_null_string/>
  1102 + <target_aggregation_type>-</target_aggregation_type>
  1103 + </field>
  1104 + <field>
  1105 + <field_name>all_content</field_name>
  1106 + <key_value>26</key_value>
  1107 + <target_name>fcno26</target_name>
  1108 + <target_type>String</target_type>
  1109 + <target_format/>
  1110 + <target_length>-1</target_length>
  1111 + <target_precision>-1</target_precision>
  1112 + <target_decimal_symbol/>
  1113 + <target_grouping_symbol/>
  1114 + <target_currency_symbol/>
  1115 + <target_null_string/>
  1116 + <target_aggregation_type>-</target_aggregation_type>
  1117 + </field>
  1118 + <field>
  1119 + <field_name>all_content</field_name>
  1120 + <key_value>27</key_value>
  1121 + <target_name>fcno27</target_name>
  1122 + <target_type>String</target_type>
  1123 + <target_format/>
  1124 + <target_length>-1</target_length>
  1125 + <target_precision>-1</target_precision>
  1126 + <target_decimal_symbol/>
  1127 + <target_grouping_symbol/>
  1128 + <target_currency_symbol/>
  1129 + <target_null_string/>
  1130 + <target_aggregation_type>-</target_aggregation_type>
  1131 + </field>
  1132 + <field>
  1133 + <field_name>all_content</field_name>
  1134 + <key_value>28</key_value>
  1135 + <target_name>fcno28</target_name>
  1136 + <target_type>String</target_type>
  1137 + <target_format/>
  1138 + <target_length>-1</target_length>
  1139 + <target_precision>-1</target_precision>
  1140 + <target_decimal_symbol/>
  1141 + <target_grouping_symbol/>
  1142 + <target_currency_symbol/>
  1143 + <target_null_string/>
  1144 + <target_aggregation_type>-</target_aggregation_type>
  1145 + </field>
  1146 + <field>
  1147 + <field_name>all_content</field_name>
  1148 + <key_value>29</key_value>
  1149 + <target_name>fcno29</target_name>
  1150 + <target_type>String</target_type>
  1151 + <target_format/>
  1152 + <target_length>-1</target_length>
  1153 + <target_precision>-1</target_precision>
  1154 + <target_decimal_symbol/>
  1155 + <target_grouping_symbol/>
  1156 + <target_currency_symbol/>
  1157 + <target_null_string/>
  1158 + <target_aggregation_type>-</target_aggregation_type>
  1159 + </field>
  1160 + <field>
  1161 + <field_name>all_content</field_name>
  1162 + <key_value>30</key_value>
  1163 + <target_name>fcno30</target_name>
  1164 + <target_type>String</target_type>
  1165 + <target_format/>
  1166 + <target_length>-1</target_length>
  1167 + <target_precision>-1</target_precision>
  1168 + <target_decimal_symbol/>
  1169 + <target_grouping_symbol/>
  1170 + <target_currency_symbol/>
  1171 + <target_null_string/>
  1172 + <target_aggregation_type>-</target_aggregation_type>
  1173 + </field>
  1174 + <field>
  1175 + <field_name>all_content</field_name>
  1176 + <key_value>31</key_value>
  1177 + <target_name>fcno31</target_name>
  1178 + <target_type>String</target_type>
  1179 + <target_format/>
  1180 + <target_length>-1</target_length>
  1181 + <target_precision>-1</target_precision>
  1182 + <target_decimal_symbol/>
  1183 + <target_grouping_symbol/>
  1184 + <target_currency_symbol/>
  1185 + <target_null_string/>
  1186 + <target_aggregation_type>-</target_aggregation_type>
  1187 + </field>
  1188 + <field>
  1189 + <field_name>all_content</field_name>
  1190 + <key_value>32</key_value>
  1191 + <target_name>fcno32</target_name>
  1192 + <target_type>String</target_type>
  1193 + <target_format/>
  1194 + <target_length>-1</target_length>
  1195 + <target_precision>-1</target_precision>
  1196 + <target_decimal_symbol/>
  1197 + <target_grouping_symbol/>
  1198 + <target_currency_symbol/>
  1199 + <target_null_string/>
  1200 + <target_aggregation_type>-</target_aggregation_type>
  1201 + </field>
  1202 + <field>
  1203 + <field_name>all_content</field_name>
  1204 + <key_value>33</key_value>
  1205 + <target_name>fcno33</target_name>
  1206 + <target_type>String</target_type>
  1207 + <target_format/>
  1208 + <target_length>-1</target_length>
  1209 + <target_precision>-1</target_precision>
  1210 + <target_decimal_symbol/>
  1211 + <target_grouping_symbol/>
  1212 + <target_currency_symbol/>
  1213 + <target_null_string/>
  1214 + <target_aggregation_type>-</target_aggregation_type>
  1215 + </field>
  1216 + <field>
  1217 + <field_name>all_content</field_name>
  1218 + <key_value>34</key_value>
  1219 + <target_name>fcno34</target_name>
  1220 + <target_type>String</target_type>
  1221 + <target_format/>
  1222 + <target_length>-1</target_length>
  1223 + <target_precision>-1</target_precision>
  1224 + <target_decimal_symbol/>
  1225 + <target_grouping_symbol/>
  1226 + <target_currency_symbol/>
  1227 + <target_null_string/>
  1228 + <target_aggregation_type>-</target_aggregation_type>
  1229 + </field>
  1230 + <field>
  1231 + <field_name>all_content</field_name>
  1232 + <key_value>35</key_value>
  1233 + <target_name>fcno35</target_name>
  1234 + <target_type>String</target_type>
  1235 + <target_format/>
  1236 + <target_length>-1</target_length>
  1237 + <target_precision>-1</target_precision>
  1238 + <target_decimal_symbol/>
  1239 + <target_grouping_symbol/>
  1240 + <target_currency_symbol/>
  1241 + <target_null_string/>
  1242 + <target_aggregation_type>-</target_aggregation_type>
  1243 + </field>
  1244 + <field>
  1245 + <field_name>all_content</field_name>
  1246 + <key_value>36</key_value>
  1247 + <target_name>fcno36</target_name>
  1248 + <target_type>String</target_type>
  1249 + <target_format/>
  1250 + <target_length>-1</target_length>
  1251 + <target_precision>-1</target_precision>
  1252 + <target_decimal_symbol/>
  1253 + <target_grouping_symbol/>
  1254 + <target_currency_symbol/>
  1255 + <target_null_string/>
  1256 + <target_aggregation_type>-</target_aggregation_type>
  1257 + </field>
  1258 + <field>
  1259 + <field_name>all_content</field_name>
  1260 + <key_value>37</key_value>
  1261 + <target_name>fcno37</target_name>
  1262 + <target_type>String</target_type>
  1263 + <target_format/>
  1264 + <target_length>-1</target_length>
  1265 + <target_precision>-1</target_precision>
  1266 + <target_decimal_symbol/>
  1267 + <target_grouping_symbol/>
  1268 + <target_currency_symbol/>
  1269 + <target_null_string/>
  1270 + <target_aggregation_type>-</target_aggregation_type>
  1271 + </field>
  1272 + <field>
  1273 + <field_name>all_content</field_name>
  1274 + <key_value>38</key_value>
  1275 + <target_name>fcno38</target_name>
  1276 + <target_type>String</target_type>
  1277 + <target_format/>
  1278 + <target_length>-1</target_length>
  1279 + <target_precision>-1</target_precision>
  1280 + <target_decimal_symbol/>
  1281 + <target_grouping_symbol/>
  1282 + <target_currency_symbol/>
  1283 + <target_null_string/>
  1284 + <target_aggregation_type>-</target_aggregation_type>
  1285 + </field>
  1286 + <field>
  1287 + <field_name>all_content</field_name>
  1288 + <key_value>39</key_value>
  1289 + <target_name>fcno39</target_name>
  1290 + <target_type>String</target_type>
  1291 + <target_format/>
  1292 + <target_length>-1</target_length>
  1293 + <target_precision>-1</target_precision>
  1294 + <target_decimal_symbol/>
  1295 + <target_grouping_symbol/>
  1296 + <target_currency_symbol/>
  1297 + <target_null_string/>
  1298 + <target_aggregation_type>-</target_aggregation_type>
  1299 + </field>
  1300 + <field>
  1301 + <field_name>all_content</field_name>
  1302 + <key_value>40</key_value>
  1303 + <target_name>fcno40</target_name>
  1304 + <target_type>String</target_type>
  1305 + <target_format/>
  1306 + <target_length>-1</target_length>
  1307 + <target_precision>-1</target_precision>
  1308 + <target_decimal_symbol/>
  1309 + <target_grouping_symbol/>
  1310 + <target_currency_symbol/>
  1311 + <target_null_string/>
  1312 + <target_aggregation_type>-</target_aggregation_type>
  1313 + </field>
  1314 + <field>
  1315 + <field_name>all_content</field_name>
  1316 + <key_value>41</key_value>
  1317 + <target_name>fcno41</target_name>
  1318 + <target_type>String</target_type>
  1319 + <target_format/>
  1320 + <target_length>-1</target_length>
  1321 + <target_precision>-1</target_precision>
  1322 + <target_decimal_symbol/>
  1323 + <target_grouping_symbol/>
  1324 + <target_currency_symbol/>
  1325 + <target_null_string/>
  1326 + <target_aggregation_type>-</target_aggregation_type>
  1327 + </field>
  1328 + <field>
  1329 + <field_name>all_content</field_name>
  1330 + <key_value>42</key_value>
  1331 + <target_name>fcno42</target_name>
  1332 + <target_type>String</target_type>
  1333 + <target_format/>
  1334 + <target_length>-1</target_length>
  1335 + <target_precision>-1</target_precision>
  1336 + <target_decimal_symbol/>
  1337 + <target_grouping_symbol/>
  1338 + <target_currency_symbol/>
  1339 + <target_null_string/>
  1340 + <target_aggregation_type>-</target_aggregation_type>
  1341 + </field>
  1342 + <field>
  1343 + <field_name>all_content</field_name>
  1344 + <key_value>43</key_value>
  1345 + <target_name>fcno43</target_name>
  1346 + <target_type>String</target_type>
  1347 + <target_format/>
  1348 + <target_length>-1</target_length>
  1349 + <target_precision>-1</target_precision>
  1350 + <target_decimal_symbol/>
  1351 + <target_grouping_symbol/>
  1352 + <target_currency_symbol/>
  1353 + <target_null_string/>
  1354 + <target_aggregation_type>-</target_aggregation_type>
  1355 + </field>
  1356 + <field>
  1357 + <field_name>all_content</field_name>
  1358 + <key_value>44</key_value>
  1359 + <target_name>fcno44</target_name>
  1360 + <target_type>String</target_type>
  1361 + <target_format/>
  1362 + <target_length>-1</target_length>
  1363 + <target_precision>-1</target_precision>
  1364 + <target_decimal_symbol/>
  1365 + <target_grouping_symbol/>
  1366 + <target_currency_symbol/>
  1367 + <target_null_string/>
  1368 + <target_aggregation_type>-</target_aggregation_type>
  1369 + </field>
  1370 + <field>
  1371 + <field_name>all_content</field_name>
  1372 + <key_value>45</key_value>
  1373 + <target_name>fcno45</target_name>
  1374 + <target_type>String</target_type>
  1375 + <target_format/>
  1376 + <target_length>-1</target_length>
  1377 + <target_precision>-1</target_precision>
  1378 + <target_decimal_symbol/>
  1379 + <target_grouping_symbol/>
  1380 + <target_currency_symbol/>
  1381 + <target_null_string/>
  1382 + <target_aggregation_type>-</target_aggregation_type>
  1383 + </field>
  1384 + <field>
  1385 + <field_name>all_content</field_name>
  1386 + <key_value>46</key_value>
  1387 + <target_name>fcno46</target_name>
  1388 + <target_type>String</target_type>
  1389 + <target_format/>
  1390 + <target_length>-1</target_length>
  1391 + <target_precision>-1</target_precision>
  1392 + <target_decimal_symbol/>
  1393 + <target_grouping_symbol/>
  1394 + <target_currency_symbol/>
  1395 + <target_null_string/>
  1396 + <target_aggregation_type>-</target_aggregation_type>
  1397 + </field>
  1398 + <field>
  1399 + <field_name>all_content</field_name>
  1400 + <key_value>47</key_value>
  1401 + <target_name>fcno47</target_name>
  1402 + <target_type>String</target_type>
  1403 + <target_format/>
  1404 + <target_length>-1</target_length>
  1405 + <target_precision>-1</target_precision>
  1406 + <target_decimal_symbol/>
  1407 + <target_grouping_symbol/>
  1408 + <target_currency_symbol/>
  1409 + <target_null_string/>
  1410 + <target_aggregation_type>-</target_aggregation_type>
  1411 + </field>
  1412 + <field>
  1413 + <field_name>all_content</field_name>
  1414 + <key_value>48</key_value>
  1415 + <target_name>fcno48</target_name>
  1416 + <target_type>String</target_type>
  1417 + <target_format/>
  1418 + <target_length>-1</target_length>
  1419 + <target_precision>-1</target_precision>
  1420 + <target_decimal_symbol/>
  1421 + <target_grouping_symbol/>
  1422 + <target_currency_symbol/>
  1423 + <target_null_string/>
  1424 + <target_aggregation_type>-</target_aggregation_type>
  1425 + </field>
  1426 + <field>
  1427 + <field_name>all_content</field_name>
  1428 + <key_value>49</key_value>
  1429 + <target_name>fcno49</target_name>
  1430 + <target_type>String</target_type>
  1431 + <target_format/>
  1432 + <target_length>-1</target_length>
  1433 + <target_precision>-1</target_precision>
  1434 + <target_decimal_symbol/>
  1435 + <target_grouping_symbol/>
  1436 + <target_currency_symbol/>
  1437 + <target_null_string/>
  1438 + <target_aggregation_type>-</target_aggregation_type>
  1439 + </field>
  1440 + <field>
  1441 + <field_name>all_content</field_name>
  1442 + <key_value>50</key_value>
  1443 + <target_name>fcno50</target_name>
  1444 + <target_type>String</target_type>
  1445 + <target_format/>
  1446 + <target_length>-1</target_length>
  1447 + <target_precision>-1</target_precision>
  1448 + <target_decimal_symbol/>
  1449 + <target_grouping_symbol/>
  1450 + <target_currency_symbol/>
  1451 + <target_null_string/>
  1452 + <target_aggregation_type>-</target_aggregation_type>
  1453 + </field>
  1454 + <field>
  1455 + <field_name>all_content</field_name>
  1456 + <key_value>51</key_value>
  1457 + <target_name>fcno51</target_name>
  1458 + <target_type>String</target_type>
  1459 + <target_format/>
  1460 + <target_length>-1</target_length>
  1461 + <target_precision>-1</target_precision>
  1462 + <target_decimal_symbol/>
  1463 + <target_grouping_symbol/>
  1464 + <target_currency_symbol/>
  1465 + <target_null_string/>
  1466 + <target_aggregation_type>-</target_aggregation_type>
  1467 + </field>
  1468 + <field>
  1469 + <field_name>all_content</field_name>
  1470 + <key_value>52</key_value>
  1471 + <target_name>fcno52</target_name>
  1472 + <target_type>String</target_type>
  1473 + <target_format/>
  1474 + <target_length>-1</target_length>
  1475 + <target_precision>-1</target_precision>
  1476 + <target_decimal_symbol/>
  1477 + <target_grouping_symbol/>
  1478 + <target_currency_symbol/>
  1479 + <target_null_string/>
  1480 + <target_aggregation_type>-</target_aggregation_type>
  1481 + </field>
  1482 + <field>
  1483 + <field_name>all_content</field_name>
  1484 + <key_value>53</key_value>
  1485 + <target_name>fcno53</target_name>
  1486 + <target_type>String</target_type>
  1487 + <target_format/>
  1488 + <target_length>-1</target_length>
  1489 + <target_precision>-1</target_precision>
  1490 + <target_decimal_symbol/>
  1491 + <target_grouping_symbol/>
  1492 + <target_currency_symbol/>
  1493 + <target_null_string/>
  1494 + <target_aggregation_type>-</target_aggregation_type>
  1495 + </field>
  1496 + <field>
  1497 + <field_name>all_content</field_name>
  1498 + <key_value>54</key_value>
  1499 + <target_name>fcno54</target_name>
  1500 + <target_type>String</target_type>
  1501 + <target_format/>
  1502 + <target_length>-1</target_length>
  1503 + <target_precision>-1</target_precision>
  1504 + <target_decimal_symbol/>
  1505 + <target_grouping_symbol/>
  1506 + <target_currency_symbol/>
  1507 + <target_null_string/>
  1508 + <target_aggregation_type>-</target_aggregation_type>
  1509 + </field>
  1510 + <field>
  1511 + <field_name>all_content</field_name>
  1512 + <key_value>55</key_value>
  1513 + <target_name>fcno55</target_name>
  1514 + <target_type>String</target_type>
  1515 + <target_format/>
  1516 + <target_length>-1</target_length>
  1517 + <target_precision>-1</target_precision>
  1518 + <target_decimal_symbol/>
  1519 + <target_grouping_symbol/>
  1520 + <target_currency_symbol/>
  1521 + <target_null_string/>
  1522 + <target_aggregation_type>-</target_aggregation_type>
  1523 + </field>
  1524 + <field>
  1525 + <field_name>all_content</field_name>
  1526 + <key_value>56</key_value>
  1527 + <target_name>fcno56</target_name>
  1528 + <target_type>String</target_type>
  1529 + <target_format/>
  1530 + <target_length>-1</target_length>
  1531 + <target_precision>-1</target_precision>
  1532 + <target_decimal_symbol/>
  1533 + <target_grouping_symbol/>
  1534 + <target_currency_symbol/>
  1535 + <target_null_string/>
  1536 + <target_aggregation_type>-</target_aggregation_type>
  1537 + </field>
  1538 + <field>
  1539 + <field_name>all_content</field_name>
  1540 + <key_value>57</key_value>
  1541 + <target_name>fcno57</target_name>
  1542 + <target_type>String</target_type>
  1543 + <target_format/>
  1544 + <target_length>-1</target_length>
  1545 + <target_precision>-1</target_precision>
  1546 + <target_decimal_symbol/>
  1547 + <target_grouping_symbol/>
  1548 + <target_currency_symbol/>
  1549 + <target_null_string/>
  1550 + <target_aggregation_type>-</target_aggregation_type>
  1551 + </field>
  1552 + <field>
  1553 + <field_name>all_content</field_name>
  1554 + <key_value>58</key_value>
  1555 + <target_name>fcno58</target_name>
  1556 + <target_type>String</target_type>
  1557 + <target_format/>
  1558 + <target_length>-1</target_length>
  1559 + <target_precision>-1</target_precision>
  1560 + <target_decimal_symbol/>
  1561 + <target_grouping_symbol/>
  1562 + <target_currency_symbol/>
  1563 + <target_null_string/>
  1564 + <target_aggregation_type>-</target_aggregation_type>
  1565 + </field>
  1566 + <field>
  1567 + <field_name>all_content</field_name>
  1568 + <key_value>59</key_value>
  1569 + <target_name>fcno59</target_name>
  1570 + <target_type>String</target_type>
  1571 + <target_format/>
  1572 + <target_length>-1</target_length>
  1573 + <target_precision>-1</target_precision>
  1574 + <target_decimal_symbol/>
  1575 + <target_grouping_symbol/>
  1576 + <target_currency_symbol/>
  1577 + <target_null_string/>
  1578 + <target_aggregation_type>-</target_aggregation_type>
  1579 + </field>
  1580 + <field>
  1581 + <field_name>all_content</field_name>
  1582 + <key_value>60</key_value>
  1583 + <target_name>fcno60</target_name>
  1584 + <target_type>String</target_type>
  1585 + <target_format/>
  1586 + <target_length>-1</target_length>
  1587 + <target_precision>-1</target_precision>
  1588 + <target_decimal_symbol/>
  1589 + <target_grouping_symbol/>
  1590 + <target_currency_symbol/>
  1591 + <target_null_string/>
  1592 + <target_aggregation_type>-</target_aggregation_type>
  1593 + </field>
  1594 + <field>
  1595 + <field_name>all_content</field_name>
  1596 + <key_value>61</key_value>
  1597 + <target_name>fcno61</target_name>
  1598 + <target_type>String</target_type>
  1599 + <target_format/>
  1600 + <target_length>-1</target_length>
  1601 + <target_precision>-1</target_precision>
  1602 + <target_decimal_symbol/>
  1603 + <target_grouping_symbol/>
  1604 + <target_currency_symbol/>
  1605 + <target_null_string/>
  1606 + <target_aggregation_type>-</target_aggregation_type>
  1607 + </field>
  1608 + <field>
  1609 + <field_name>all_content</field_name>
  1610 + <key_value>62</key_value>
  1611 + <target_name>fcno62</target_name>
  1612 + <target_type>String</target_type>
  1613 + <target_format/>
  1614 + <target_length>-1</target_length>
  1615 + <target_precision>-1</target_precision>
  1616 + <target_decimal_symbol/>
  1617 + <target_grouping_symbol/>
  1618 + <target_currency_symbol/>
  1619 + <target_null_string/>
  1620 + <target_aggregation_type>-</target_aggregation_type>
  1621 + </field>
  1622 + <field>
  1623 + <field_name>all_content</field_name>
  1624 + <key_value>63</key_value>
  1625 + <target_name>fcno63</target_name>
  1626 + <target_type>String</target_type>
  1627 + <target_format/>
  1628 + <target_length>-1</target_length>
  1629 + <target_precision>-1</target_precision>
  1630 + <target_decimal_symbol/>
  1631 + <target_grouping_symbol/>
  1632 + <target_currency_symbol/>
  1633 + <target_null_string/>
  1634 + <target_aggregation_type>-</target_aggregation_type>
  1635 + </field>
  1636 + <field>
  1637 + <field_name>all_content</field_name>
  1638 + <key_value>64</key_value>
  1639 + <target_name>fcno64</target_name>
  1640 + <target_type>String</target_type>
  1641 + <target_format/>
  1642 + <target_length>-1</target_length>
  1643 + <target_precision>-1</target_precision>
  1644 + <target_decimal_symbol/>
  1645 + <target_grouping_symbol/>
  1646 + <target_currency_symbol/>
  1647 + <target_null_string/>
  1648 + <target_aggregation_type>-</target_aggregation_type>
  1649 + </field>
  1650 + <field>
  1651 + <field_name>all_content</field_name>
  1652 + <key_value>65</key_value>
  1653 + <target_name>fcno65</target_name>
  1654 + <target_type>String</target_type>
  1655 + <target_format/>
  1656 + <target_length>-1</target_length>
  1657 + <target_precision>-1</target_precision>
  1658 + <target_decimal_symbol/>
  1659 + <target_grouping_symbol/>
  1660 + <target_currency_symbol/>
  1661 + <target_null_string/>
  1662 + <target_aggregation_type>-</target_aggregation_type>
  1663 + </field>
  1664 + <field>
  1665 + <field_name>all_content</field_name>
  1666 + <key_value>66</key_value>
  1667 + <target_name>fcno66</target_name>
  1668 + <target_type>String</target_type>
  1669 + <target_format/>
  1670 + <target_length>-1</target_length>
  1671 + <target_precision>-1</target_precision>
  1672 + <target_decimal_symbol/>
  1673 + <target_grouping_symbol/>
  1674 + <target_currency_symbol/>
  1675 + <target_null_string/>
  1676 + <target_aggregation_type>-</target_aggregation_type>
  1677 + </field>
  1678 + <field>
  1679 + <field_name>all_content</field_name>
  1680 + <key_value>67</key_value>
  1681 + <target_name>fcno67</target_name>
  1682 + <target_type>String</target_type>
  1683 + <target_format/>
  1684 + <target_length>-1</target_length>
  1685 + <target_precision>-1</target_precision>
  1686 + <target_decimal_symbol/>
  1687 + <target_grouping_symbol/>
  1688 + <target_currency_symbol/>
  1689 + <target_null_string/>
  1690 + <target_aggregation_type>-</target_aggregation_type>
  1691 + </field>
  1692 + <field>
  1693 + <field_name>all_content</field_name>
  1694 + <key_value>68</key_value>
  1695 + <target_name>fcno68</target_name>
  1696 + <target_type>String</target_type>
  1697 + <target_format/>
  1698 + <target_length>-1</target_length>
  1699 + <target_precision>-1</target_precision>
  1700 + <target_decimal_symbol/>
  1701 + <target_grouping_symbol/>
  1702 + <target_currency_symbol/>
  1703 + <target_null_string/>
  1704 + <target_aggregation_type>-</target_aggregation_type>
  1705 + </field>
  1706 + <field>
  1707 + <field_name>all_content</field_name>
  1708 + <key_value>69</key_value>
  1709 + <target_name>fcno69</target_name>
  1710 + <target_type>String</target_type>
  1711 + <target_format/>
  1712 + <target_length>-1</target_length>
  1713 + <target_precision>-1</target_precision>
  1714 + <target_decimal_symbol/>
  1715 + <target_grouping_symbol/>
  1716 + <target_currency_symbol/>
  1717 + <target_null_string/>
  1718 + <target_aggregation_type>-</target_aggregation_type>
  1719 + </field>
  1720 + <field>
  1721 + <field_name>all_content</field_name>
  1722 + <key_value>70</key_value>
  1723 + <target_name>fcno70</target_name>
  1724 + <target_type>String</target_type>
  1725 + <target_format/>
  1726 + <target_length>-1</target_length>
  1727 + <target_precision>-1</target_precision>
  1728 + <target_decimal_symbol/>
  1729 + <target_grouping_symbol/>
  1730 + <target_currency_symbol/>
  1731 + <target_null_string/>
  1732 + <target_aggregation_type>-</target_aggregation_type>
  1733 + </field>
  1734 + </fields>
  1735 + <cluster_schema/>
  1736 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1737 + <xloc>690</xloc>
  1738 + <yloc>272</yloc>
  1739 + <draw>Y</draw>
  1740 + </GUI>
  1741 + </step>
  1742 +
  1743 + <step>
  1744 + <name>&#x53bb;&#x9664;&#x5b57;&#x6bb5;</name>
  1745 + <type>SelectValues</type>
  1746 + <description/>
  1747 + <distribute>N</distribute>
  1748 + <custom_distribution/>
  1749 + <copies>1</copies>
  1750 + <partitioning>
  1751 + <method>none</method>
  1752 + <schema_name/>
  1753 + </partitioning>
  1754 + <fields> <field> <name>lp</name>
  1755 + <rename/>
  1756 + <length>-2</length>
  1757 + <precision>-2</precision>
  1758 + </field> <field> <name>fcno1</name>
  1759 + <rename/>
  1760 + <length>-2</length>
  1761 + <precision>-2</precision>
  1762 + </field> <field> <name>fcno2</name>
  1763 + <rename/>
  1764 + <length>-2</length>
  1765 + <precision>-2</precision>
  1766 + </field> <field> <name>fcno3</name>
  1767 + <rename/>
  1768 + <length>-2</length>
  1769 + <precision>-2</precision>
  1770 + </field> <field> <name>fcno4</name>
  1771 + <rename/>
  1772 + <length>-2</length>
  1773 + <precision>-2</precision>
  1774 + </field> <field> <name>fcno5</name>
  1775 + <rename/>
  1776 + <length>-2</length>
  1777 + <precision>-2</precision>
  1778 + </field> <field> <name>fcno6</name>
  1779 + <rename/>
  1780 + <length>-2</length>
  1781 + <precision>-2</precision>
  1782 + </field> <field> <name>fcno7</name>
  1783 + <rename/>
  1784 + <length>-2</length>
  1785 + <precision>-2</precision>
  1786 + </field> <field> <name>fcno8</name>
  1787 + <rename/>
  1788 + <length>-2</length>
  1789 + <precision>-2</precision>
  1790 + </field> <field> <name>fcno9</name>
  1791 + <rename/>
  1792 + <length>-2</length>
  1793 + <precision>-2</precision>
  1794 + </field> <field> <name>fcno10</name>
  1795 + <rename/>
  1796 + <length>-2</length>
  1797 + <precision>-2</precision>
  1798 + </field> <field> <name>fcno11</name>
  1799 + <rename/>
  1800 + <length>-2</length>
  1801 + <precision>-2</precision>
  1802 + </field> <field> <name>fcno12</name>
  1803 + <rename/>
  1804 + <length>-2</length>
  1805 + <precision>-2</precision>
  1806 + </field> <field> <name>fcno13</name>
  1807 + <rename/>
  1808 + <length>-2</length>
  1809 + <precision>-2</precision>
  1810 + </field> <field> <name>fcno14</name>
  1811 + <rename/>
  1812 + <length>-2</length>
  1813 + <precision>-2</precision>
  1814 + </field> <field> <name>fcno15</name>
  1815 + <rename/>
  1816 + <length>-2</length>
  1817 + <precision>-2</precision>
  1818 + </field> <field> <name>fcno16</name>
  1819 + <rename/>
  1820 + <length>-2</length>
  1821 + <precision>-2</precision>
  1822 + </field> <field> <name>fcno17</name>
  1823 + <rename/>
  1824 + <length>-2</length>
  1825 + <precision>-2</precision>
  1826 + </field> <field> <name>fcno18</name>
  1827 + <rename/>
  1828 + <length>-2</length>
  1829 + <precision>-2</precision>
  1830 + </field> <field> <name>fcno19</name>
  1831 + <rename/>
  1832 + <length>-2</length>
  1833 + <precision>-2</precision>
  1834 + </field> <field> <name>fcno20</name>
  1835 + <rename/>
  1836 + <length>-2</length>
  1837 + <precision>-2</precision>
  1838 + </field> <field> <name>fcno21</name>
  1839 + <rename/>
  1840 + <length>-2</length>
  1841 + <precision>-2</precision>
  1842 + </field> <field> <name>fcno22</name>
  1843 + <rename/>
  1844 + <length>-2</length>
  1845 + <precision>-2</precision>
  1846 + </field> <field> <name>fcno23</name>
  1847 + <rename/>
  1848 + <length>-2</length>
  1849 + <precision>-2</precision>
  1850 + </field> <field> <name>fcno24</name>
  1851 + <rename/>
  1852 + <length>-2</length>
  1853 + <precision>-2</precision>
  1854 + </field> <field> <name>fcno25</name>
  1855 + <rename/>
  1856 + <length>-2</length>
  1857 + <precision>-2</precision>
  1858 + </field> <field> <name>fcno26</name>
  1859 + <rename/>
  1860 + <length>-2</length>
  1861 + <precision>-2</precision>
  1862 + </field> <field> <name>fcno27</name>
  1863 + <rename/>
  1864 + <length>-2</length>
  1865 + <precision>-2</precision>
  1866 + </field> <field> <name>fcno28</name>
  1867 + <rename/>
  1868 + <length>-2</length>
  1869 + <precision>-2</precision>
  1870 + </field> <field> <name>fcno29</name>
  1871 + <rename/>
  1872 + <length>-2</length>
  1873 + <precision>-2</precision>
  1874 + </field> <field> <name>fcno30</name>
  1875 + <rename/>
  1876 + <length>-2</length>
  1877 + <precision>-2</precision>
  1878 + </field> <field> <name>fcno31</name>
  1879 + <rename/>
  1880 + <length>-2</length>
  1881 + <precision>-2</precision>
  1882 + </field> <field> <name>fcno32</name>
  1883 + <rename/>
  1884 + <length>-2</length>
  1885 + <precision>-2</precision>
  1886 + </field> <field> <name>fcno33</name>
  1887 + <rename/>
  1888 + <length>-2</length>
  1889 + <precision>-2</precision>
  1890 + </field> <field> <name>fcno34</name>
  1891 + <rename/>
  1892 + <length>-2</length>
  1893 + <precision>-2</precision>
  1894 + </field> <field> <name>fcno35</name>
  1895 + <rename/>
  1896 + <length>-2</length>
  1897 + <precision>-2</precision>
  1898 + </field> <field> <name>fcno36</name>
  1899 + <rename/>
  1900 + <length>-2</length>
  1901 + <precision>-2</precision>
  1902 + </field> <field> <name>fcno37</name>
  1903 + <rename/>
  1904 + <length>-2</length>
  1905 + <precision>-2</precision>
  1906 + </field> <field> <name>fcno38</name>
  1907 + <rename/>
  1908 + <length>-2</length>
  1909 + <precision>-2</precision>
  1910 + </field> <field> <name>fcno39</name>
  1911 + <rename/>
  1912 + <length>-2</length>
  1913 + <precision>-2</precision>
  1914 + </field> <field> <name>fcno40</name>
  1915 + <rename/>
  1916 + <length>-2</length>
  1917 + <precision>-2</precision>
  1918 + </field> <field> <name>fcno41</name>
  1919 + <rename/>
  1920 + <length>-2</length>
  1921 + <precision>-2</precision>
  1922 + </field> <field> <name>fcno42</name>
  1923 + <rename/>
  1924 + <length>-2</length>
  1925 + <precision>-2</precision>
  1926 + </field> <field> <name>fcno43</name>
  1927 + <rename/>
  1928 + <length>-2</length>
  1929 + <precision>-2</precision>
  1930 + </field> <field> <name>fcno44</name>
  1931 + <rename/>
  1932 + <length>-2</length>
  1933 + <precision>-2</precision>
  1934 + </field> <field> <name>fcno45</name>
  1935 + <rename/>
  1936 + <length>-2</length>
  1937 + <precision>-2</precision>
  1938 + </field> <field> <name>fcno46</name>
  1939 + <rename/>
  1940 + <length>-2</length>
  1941 + <precision>-2</precision>
  1942 + </field> <field> <name>fcno47</name>
  1943 + <rename/>
  1944 + <length>-2</length>
  1945 + <precision>-2</precision>
  1946 + </field> <field> <name>fcno48</name>
  1947 + <rename/>
  1948 + <length>-2</length>
  1949 + <precision>-2</precision>
  1950 + </field> <field> <name>fcno49</name>
  1951 + <rename/>
  1952 + <length>-2</length>
  1953 + <precision>-2</precision>
  1954 + </field> <field> <name>fcno50</name>
  1955 + <rename/>
  1956 + <length>-2</length>
  1957 + <precision>-2</precision>
  1958 + </field> <field> <name>fcno51</name>
  1959 + <rename/>
  1960 + <length>-2</length>
  1961 + <precision>-2</precision>
  1962 + </field> <field> <name>fcno52</name>
  1963 + <rename/>
  1964 + <length>-2</length>
  1965 + <precision>-2</precision>
  1966 + </field> <field> <name>fcno53</name>
  1967 + <rename/>
  1968 + <length>-2</length>
  1969 + <precision>-2</precision>
  1970 + </field> <field> <name>fcno54</name>
  1971 + <rename/>
  1972 + <length>-2</length>
  1973 + <precision>-2</precision>
  1974 + </field> <field> <name>fcno55</name>
  1975 + <rename/>
  1976 + <length>-2</length>
  1977 + <precision>-2</precision>
  1978 + </field> <field> <name>fcno56</name>
  1979 + <rename/>
  1980 + <length>-2</length>
  1981 + <precision>-2</precision>
  1982 + </field> <field> <name>fcno57</name>
  1983 + <rename/>
  1984 + <length>-2</length>
  1985 + <precision>-2</precision>
  1986 + </field> <field> <name>fcno58</name>
  1987 + <rename/>
  1988 + <length>-2</length>
  1989 + <precision>-2</precision>
  1990 + </field> <field> <name>fcno59</name>
  1991 + <rename/>
  1992 + <length>-2</length>
  1993 + <precision>-2</precision>
  1994 + </field> <field> <name>fcno60</name>
  1995 + <rename/>
  1996 + <length>-2</length>
  1997 + <precision>-2</precision>
  1998 + </field> <field> <name>fcno61</name>
  1999 + <rename/>
  2000 + <length>-2</length>
  2001 + <precision>-2</precision>
  2002 + </field> <field> <name>fcno62</name>
  2003 + <rename/>
  2004 + <length>-2</length>
  2005 + <precision>-2</precision>
  2006 + </field> <field> <name>fcno63</name>
  2007 + <rename/>
  2008 + <length>-2</length>
  2009 + <precision>-2</precision>
  2010 + </field> <field> <name>fcno64</name>
  2011 + <rename/>
  2012 + <length>-2</length>
  2013 + <precision>-2</precision>
  2014 + </field> <field> <name>fcno65</name>
  2015 + <rename/>
  2016 + <length>-2</length>
  2017 + <precision>-2</precision>
  2018 + </field> <field> <name>fcno66</name>
  2019 + <rename/>
  2020 + <length>-2</length>
  2021 + <precision>-2</precision>
  2022 + </field> <field> <name>fcno67</name>
  2023 + <rename/>
  2024 + <length>-2</length>
  2025 + <precision>-2</precision>
  2026 + </field> <field> <name>fcno68</name>
  2027 + <rename/>
  2028 + <length>-2</length>
  2029 + <precision>-2</precision>
  2030 + </field> <field> <name>fcno69</name>
  2031 + <rename/>
  2032 + <length>-2</length>
  2033 + <precision>-2</precision>
  2034 + </field> <field> <name>fcno70</name>
  2035 + <rename/>
  2036 + <length>-2</length>
  2037 + <precision>-2</precision>
  2038 + </field> <select_unspecified>N</select_unspecified>
  2039 + </fields> <cluster_schema/>
  2040 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2041 + <xloc>691</xloc>
  2042 + <yloc>361</yloc>
  2043 + <draw>Y</draw>
  2044 + </GUI>
  2045 + </step>
  2046 +
  2047 + <step>
  2048 + <name>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</name>
  2049 + <type>SelectValues</type>
  2050 + <description/>
  2051 + <distribute>Y</distribute>
  2052 + <custom_distribution/>
  2053 + <copies>1</copies>
  2054 + <partitioning>
  2055 + <method>none</method>
  2056 + <schema_name/>
  2057 + </partitioning>
  2058 + <fields> <field> <name>id</name>
  2059 + <rename/>
  2060 + <length>-2</length>
  2061 + <precision>-2</precision>
  2062 + </field> <field> <name>lp</name>
  2063 + <rename/>
  2064 + <length>-2</length>
  2065 + <precision>-2</precision>
  2066 + </field> <field> <name>fcsj</name>
  2067 + <rename/>
  2068 + <length>-2</length>
  2069 + <precision>-2</precision>
  2070 + </field> <field> <name>fcno</name>
  2071 + <rename/>
  2072 + <length>-2</length>
  2073 + <precision>-2</precision>
  2074 + </field> <field> <name>bcs</name>
  2075 + <rename/>
  2076 + <length>-2</length>
  2077 + <precision>-2</precision>
  2078 + </field> <field> <name>bc_type</name>
  2079 + <rename/>
  2080 + <length>-2</length>
  2081 + <precision>-2</precision>
  2082 + </field> <field> <name>qdzName</name>
  2083 + <rename/>
  2084 + <length>-2</length>
  2085 + <precision>-2</precision>
  2086 + </field> <field> <name>zdzName</name>
  2087 + <rename/>
  2088 + <length>-2</length>
  2089 + <precision>-2</precision>
  2090 + </field> <field> <name>xl_dir</name>
  2091 + <rename/>
  2092 + <length>-2</length>
  2093 + <precision>-2</precision>
  2094 + </field> <field> <name>isfb</name>
  2095 + <rename/>
  2096 + <length>-2</length>
  2097 + <precision>-2</precision>
  2098 + </field> <field> <name>jhlc</name>
  2099 + <rename/>
  2100 + <length>-2</length>
  2101 + <precision>-2</precision>
  2102 + </field> <field> <name>qdz</name>
  2103 + <rename/>
  2104 + <length>-2</length>
  2105 + <precision>-2</precision>
  2106 + </field> <field> <name>zdz</name>
  2107 + <rename/>
  2108 + <length>-2</length>
  2109 + <precision>-2</precision>
  2110 + </field> <field> <name>tcc</name>
  2111 + <rename/>
  2112 + <length>-2</length>
  2113 + <precision>-2</precision>
  2114 + </field> <select_unspecified>N</select_unspecified>
  2115 + </fields> <cluster_schema/>
  2116 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2117 + <xloc>690</xloc>
  2118 + <yloc>188</yloc>
  2119 + <draw>Y</draw>
  2120 + </GUI>
  2121 + </step>
  2122 +
  2123 + <step>
  2124 + <name>&#x5b57;&#x6bb5;&#x9009;&#x62e9; 2</name>
  2125 + <type>SelectValues</type>
  2126 + <description/>
  2127 + <distribute>Y</distribute>
  2128 + <custom_distribution/>
  2129 + <copies>1</copies>
  2130 + <partitioning>
  2131 + <method>none</method>
  2132 + <schema_name/>
  2133 + </partitioning>
  2134 + <fields> <field> <name>id</name>
  2135 + <rename/>
  2136 + <length>-2</length>
  2137 + <precision>-2</precision>
  2138 + </field> <field> <name>lp</name>
  2139 + <rename/>
  2140 + <length>-2</length>
  2141 + <precision>-2</precision>
  2142 + </field> <field> <name>fcsj</name>
  2143 + <rename/>
  2144 + <length>-2</length>
  2145 + <precision>-2</precision>
  2146 + </field> <field> <name>fcno</name>
  2147 + <rename/>
  2148 + <length>-2</length>
  2149 + <precision>-2</precision>
  2150 + </field> <field> <name>bcs</name>
  2151 + <rename/>
  2152 + <length>-2</length>
  2153 + <precision>-2</precision>
  2154 + </field> <field> <name>bc_type</name>
  2155 + <rename/>
  2156 + <length>-2</length>
  2157 + <precision>-2</precision>
  2158 + </field> <field> <name>qdzName</name>
  2159 + <rename/>
  2160 + <length>-2</length>
  2161 + <precision>-2</precision>
  2162 + </field> <field> <name>zdzName</name>
  2163 + <rename/>
  2164 + <length>-2</length>
  2165 + <precision>-2</precision>
  2166 + </field> <field> <name>xl_dir</name>
  2167 + <rename/>
  2168 + <length>-2</length>
  2169 + <precision>-2</precision>
  2170 + </field> <field> <name>isfb</name>
  2171 + <rename/>
  2172 + <length>-2</length>
  2173 + <precision>-2</precision>
  2174 + </field> <field> <name>jhlc</name>
  2175 + <rename/>
  2176 + <length>-2</length>
  2177 + <precision>-2</precision>
  2178 + </field> <field> <name>qdz</name>
  2179 + <rename/>
  2180 + <length>-2</length>
  2181 + <precision>-2</precision>
  2182 + </field> <field> <name>zdz</name>
  2183 + <rename/>
  2184 + <length>-2</length>
  2185 + <precision>-2</precision>
  2186 + </field> <field> <name>tcc</name>
  2187 + <rename/>
  2188 + <length>-2</length>
  2189 + <precision>-2</precision>
  2190 + </field> <select_unspecified>N</select_unspecified>
  2191 + </fields> <cluster_schema/>
  2192 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2193 + <xloc>402</xloc>
  2194 + <yloc>189</yloc>
  2195 + <draw>Y</draw>
  2196 + </GUI>
  2197 + </step>
  2198 +
  2199 + <step>
  2200 + <name>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</name>
  2201 + <type>SortRows</type>
  2202 + <description/>
  2203 + <distribute>Y</distribute>
  2204 + <custom_distribution/>
  2205 + <copies>1</copies>
  2206 + <partitioning>
  2207 + <method>none</method>
  2208 + <schema_name/>
  2209 + </partitioning>
  2210 + <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
  2211 + <prefix>out</prefix>
  2212 + <sort_size>1000000</sort_size>
  2213 + <free_memory/>
  2214 + <compress>N</compress>
  2215 + <compress_variable/>
  2216 + <unique_rows>N</unique_rows>
  2217 + <fields>
  2218 + <field>
  2219 + <name>bcs</name>
  2220 + <ascending>Y</ascending>
  2221 + <case_sensitive>N</case_sensitive>
  2222 + <presorted>N</presorted>
  2223 + </field>
  2224 + </fields>
  2225 + <cluster_schema/>
  2226 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2227 + <xloc>549</xloc>
  2228 + <yloc>191</yloc>
  2229 + <draw>Y</draw>
  2230 + </GUI>
  2231 + </step>
  2232 +
  2233 + <step>
  2234 + <name>&#x67e5;&#x627e;&#x7ec8;&#x70b9;&#x7ad9;&#x540d;&#x79f0;</name>
  2235 + <type>DBLookup</type>
  2236 + <description/>
  2237 + <distribute>Y</distribute>
  2238 + <custom_distribution/>
  2239 + <copies>1</copies>
  2240 + <partitioning>
  2241 + <method>none</method>
  2242 + <schema_name/>
  2243 + </partitioning>
  2244 + <connection>bus_control_variable</connection>
  2245 + <cache>Y</cache>
  2246 + <cache_load_all>Y</cache_load_all>
  2247 + <cache_size>0</cache_size>
  2248 + <lookup>
  2249 + <schema/>
  2250 + <table>bsth_c_stationroute</table>
  2251 + <orderby/>
  2252 + <fail_on_multiple>N</fail_on_multiple>
  2253 + <eat_row_on_failure>N</eat_row_on_failure>
  2254 + <key>
  2255 + <name>xl</name>
  2256 + <field>line</field>
  2257 + <condition>&#x3d;</condition>
  2258 + <name2/>
  2259 + </key>
  2260 + <key>
  2261 + <name>xl_dir</name>
  2262 + <field>directions</field>
  2263 + <condition>&#x3d;</condition>
  2264 + <name2/>
  2265 + </key>
  2266 + <key>
  2267 + <name>endZdType</name>
  2268 + <field>station_mark</field>
  2269 + <condition>&#x3d;</condition>
  2270 + <name2/>
  2271 + </key>
  2272 + <value>
  2273 + <name>station_name</name>
  2274 + <rename>zdzName</rename>
  2275 + <default/>
  2276 + <type>String</type>
  2277 + </value>
  2278 + </lookup>
  2279 + <cluster_schema/>
  2280 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2281 + <xloc>688</xloc>
  2282 + <yloc>86</yloc>
  2283 + <draw>Y</draw>
  2284 + </GUI>
  2285 + </step>
  2286 +
  2287 + <step>
  2288 + <name>&#x67e5;&#x627e;&#x8d77;&#x70b9;&#x7ad9;&#x540d;&#x79f0;</name>
  2289 + <type>DBLookup</type>
  2290 + <description/>
  2291 + <distribute>Y</distribute>
  2292 + <custom_distribution/>
  2293 + <copies>1</copies>
  2294 + <partitioning>
  2295 + <method>none</method>
  2296 + <schema_name/>
  2297 + </partitioning>
  2298 + <connection>bus_control_variable</connection>
  2299 + <cache>Y</cache>
  2300 + <cache_load_all>Y</cache_load_all>
  2301 + <cache_size>0</cache_size>
  2302 + <lookup>
  2303 + <schema/>
  2304 + <table>bsth_c_stationroute</table>
  2305 + <orderby/>
  2306 + <fail_on_multiple>N</fail_on_multiple>
  2307 + <eat_row_on_failure>N</eat_row_on_failure>
  2308 + <key>
  2309 + <name>xl</name>
  2310 + <field>line</field>
  2311 + <condition>&#x3d;</condition>
  2312 + <name2/>
  2313 + </key>
  2314 + <key>
  2315 + <name>xl_dir</name>
  2316 + <field>directions</field>
  2317 + <condition>&#x3d;</condition>
  2318 + <name2/>
  2319 + </key>
  2320 + <key>
  2321 + <name>startZdType</name>
  2322 + <field>station_mark</field>
  2323 + <condition>&#x3d;</condition>
  2324 + <name2/>
  2325 + </key>
  2326 + <value>
  2327 + <name>station_name</name>
  2328 + <rename>qdzName</rename>
  2329 + <default/>
  2330 + <type>String</type>
  2331 + </value>
  2332 + </lookup>
  2333 + <cluster_schema/>
  2334 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2335 + <xloc>553</xloc>
  2336 + <yloc>86</yloc>
  2337 + <draw>Y</draw>
  2338 + </GUI>
  2339 + </step>
  2340 +
  2341 + <step>
  2342 + <name>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x7ad9;&#x70b9;&#x67e5;&#x8be2;&#x7528;&#x6570;&#x636e;</name>
  2343 + <type>ScriptValueMod</type>
  2344 + <description/>
  2345 + <distribute>Y</distribute>
  2346 + <custom_distribution/>
  2347 + <copies>1</copies>
  2348 + <partitioning>
  2349 + <method>none</method>
  2350 + <schema_name/>
  2351 + </partitioning>
  2352 + <compatible>N</compatible>
  2353 + <optimizationLevel>9</optimizationLevel>
  2354 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  2355 + <jsScript_name>Script 1</jsScript_name>
  2356 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var startZdType &#x3d; &#x27;B&#x27;&#x3b; &#x2f;&#x2f; &#x8d77;&#x70b9;&#x7ad9;&#x7ad9;&#x70b9;&#x7c7b;&#x578b;&#x6807;&#x8bc6;&#x522b;&#xa;var endZdType &#x3d; &#x27;E&#x27;&#x3b; &#x2f;&#x2f; &#x7ec8;&#x70b9;&#x7ad9;&#x7ad9;&#x70b9;&#x7c7b;&#x578b;&#x6807;&#x8bc6;</jsScript_script>
  2357 + </jsScript> </jsScripts> <fields> <field> <name>startZdType</name>
  2358 + <rename>startZdType</rename>
  2359 + <type>String</type>
  2360 + <length>-1</length>
  2361 + <precision>-1</precision>
  2362 + <replace>N</replace>
  2363 + </field> <field> <name>endZdType</name>
  2364 + <rename>endZdType</rename>
  2365 + <type>String</type>
  2366 + <length>-1</length>
  2367 + <precision>-1</precision>
  2368 + <replace>N</replace>
  2369 + </field> </fields> <cluster_schema/>
  2370 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2371 + <xloc>391</xloc>
  2372 + <yloc>87</yloc>
  2373 + <draw>Y</draw>
  2374 + </GUI>
  2375 + </step>
  2376 +
  2377 + <step>
  2378 + <name>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</name>
  2379 + <type>GetVariable</type>
  2380 + <description/>
  2381 + <distribute>Y</distribute>
  2382 + <custom_distribution/>
  2383 + <copies>1</copies>
  2384 + <partitioning>
  2385 + <method>none</method>
  2386 + <schema_name/>
  2387 + </partitioning>
  2388 + <fields>
  2389 + <field>
  2390 + <name>xlid_</name>
  2391 + <variable>&#x24;&#x7b;xlid&#x7d;</variable>
  2392 + <type>Integer</type>
  2393 + <format/>
  2394 + <currency/>
  2395 + <decimal/>
  2396 + <group/>
  2397 + <length>-1</length>
  2398 + <precision>-1</precision>
  2399 + <trim_type>none</trim_type>
  2400 + </field>
  2401 + <field>
  2402 + <name>ttid_</name>
  2403 + <variable>&#x24;&#x7b;ttid&#x7d;</variable>
  2404 + <type>Number</type>
  2405 + <format/>
  2406 + <currency/>
  2407 + <decimal/>
  2408 + <group/>
  2409 + <length>-1</length>
  2410 + <precision>-1</precision>
  2411 + <trim_type>none</trim_type>
  2412 + </field>
  2413 + </fields>
  2414 + <cluster_schema/>
  2415 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2416 + <xloc>45</xloc>
  2417 + <yloc>189</yloc>
  2418 + <draw>Y</draw>
  2419 + </GUI>
  2420 + </step>
  2421 +
  2422 + <step>
  2423 + <name>&#x8868;&#x8f93;&#x5165;</name>
  2424 + <type>TableInput</type>
  2425 + <description/>
  2426 + <distribute>Y</distribute>
  2427 + <custom_distribution/>
  2428 + <copies>1</copies>
  2429 + <partitioning>
  2430 + <method>none</method>
  2431 + <schema_name/>
  2432 + </partitioning>
  2433 + <connection>bus_control_variable</connection>
  2434 + <sql>select &#xa;t.id as id&#xa;, g.lp_name as lp&#xa;, g.xl as xl&#xa;, qdz&#xa;, zdz&#xa;, tcc&#xa;, fcsj&#xa;, jhlc&#xa;, bc_type &#xa;, bcs&#xa;, fcno&#xa;, xl_dir&#xa;, isfb&#xa;from bsth_c_s_ttinfo_detail t left join &#xa;bsth_c_s_gbi g on t.lp &#x3d; g.id &#xa;where &#xa;g.xl &#x3d; &#x3f; and&#xa;t.ttinfo &#x3d; &#x3f; &#xa;order by t.bcs asc</sql>
  2435 + <limit>0</limit>
  2436 + <lookup>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</lookup>
  2437 + <execute_each_row>N</execute_each_row>
  2438 + <variables_active>Y</variables_active>
  2439 + <lazy_conversion_active>N</lazy_conversion_active>
  2440 + <cluster_schema/>
  2441 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2442 + <xloc>130</xloc>
  2443 + <yloc>85</yloc>
  2444 + <draw>Y</draw>
  2445 + </GUI>
  2446 + </step>
  2447 +
  2448 + <step>
  2449 + <name>&#x8ba1;&#x7b97;&#x53d1;&#x8f66;&#x7ad9;&#x540d;</name>
  2450 + <type>ScriptValueMod</type>
  2451 + <description/>
  2452 + <distribute>Y</distribute>
  2453 + <custom_distribution/>
  2454 + <copies>1</copies>
  2455 + <partitioning>
  2456 + <method>none</method>
  2457 + <schema_name/>
  2458 + </partitioning>
  2459 + <compatible>N</compatible>
  2460 + <optimizationLevel>9</optimizationLevel>
  2461 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  2462 + <jsScript_name>Script 1</jsScript_name>
  2463 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var fczdName &#x3d; null&#x3b; &#x2f;&#x2f; &#x53d1;&#x8f66;&#x7ad9;&#x70b9;&#x540d;&#x5b57;&#xa;if &#x28;bc_type &#x3d;&#x3d; &#x22;in&#x22;&#x29; &#x7b;&#xa; fczdName &#x3d; &#x22;&#x8fdb;&#x573a;&#x22;&#x3b;&#xa;&#x7d; else if &#x28;bc_type &#x3d;&#x3d; &#x22;out&#x22;&#x29; &#x7b;&#xa; fczdName &#x3d; &#x22;&#x51fa;&#x573a;&#x22;&#x3b;&#xa;&#x7d; else &#x7b;&#xa; fczdName &#x3d; qdzName&#x3b;&#xa;&#x7d;</jsScript_script>
  2464 + </jsScript> </jsScripts> <fields> <field> <name>fczdName</name>
  2465 + <rename>fczdName</rename>
  2466 + <type>String</type>
  2467 + <length>-1</length>
  2468 + <precision>-1</precision>
  2469 + <replace>N</replace>
  2470 + </field> </fields> <cluster_schema/>
  2471 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2472 + <xloc>550</xloc>
  2473 + <yloc>276</yloc>
  2474 + <draw>Y</draw>
  2475 + </GUI>
  2476 + </step>
  2477 +
  2478 + <step>
  2479 + <name>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;</name>
  2480 + <type>FilterRows</type>
  2481 + <description/>
  2482 + <distribute>Y</distribute>
  2483 + <custom_distribution/>
  2484 + <copies>1</copies>
  2485 + <partitioning>
  2486 + <method>none</method>
  2487 + <schema_name/>
  2488 + </partitioning>
  2489 +<send_true_to>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x7ad9;&#x70b9;&#x67e5;&#x8be2;&#x7528;&#x6570;&#x636e;</send_true_to>
  2490 +<send_false_to>&#x8fdb;&#x573a;&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x67e5;&#x8be2;&#x7528;&#x7684;&#x6570;&#x636e;</send_false_to>
  2491 + <compare>
  2492 +<condition>
  2493 + <negated>N</negated>
  2494 + <leftvalue>bc_type</leftvalue>
  2495 + <function>&#x3d;</function>
  2496 + <rightvalue/>
  2497 + <value><name>constant</name><type>String</type><text>normal</text><length>-1</length><precision>-1</precision><isnull>N</isnull><mask/></value> </condition>
  2498 + </compare>
  2499 + <cluster_schema/>
  2500 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2501 + <xloc>248</xloc>
  2502 + <yloc>87</yloc>
  2503 + <draw>Y</draw>
  2504 + </GUI>
  2505 + </step>
  2506 +
  2507 + <step>
  2508 + <name>&#x8fdb;&#x573a;&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x67e5;&#x8be2;&#x7528;&#x7684;&#x6570;&#x636e;</name>
  2509 + <type>ScriptValueMod</type>
  2510 + <description/>
  2511 + <distribute>Y</distribute>
  2512 + <custom_distribution/>
  2513 + <copies>1</copies>
  2514 + <partitioning>
  2515 + <method>none</method>
  2516 + <schema_name/>
  2517 + </partitioning>
  2518 + <compatible>N</compatible>
  2519 + <optimizationLevel>9</optimizationLevel>
  2520 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  2521 + <jsScript_name>Script 1</jsScript_name>
  2522 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var qdzName &#x3d; null&#x3b; &#x2f;&#x2f; &#x8d77;&#x70b9;&#x7ad9;&#x540d;&#x5b57;&#xa;var zdzName &#x3d; null&#x3b; &#x2f;&#x2f; &#x7ec8;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</jsScript_script>
  2523 + </jsScript> </jsScripts> <fields> <field> <name>qdzName</name>
  2524 + <rename>qdzName</rename>
  2525 + <type>String</type>
  2526 + <length>-1</length>
  2527 + <precision>-1</precision>
  2528 + <replace>N</replace>
  2529 + </field> <field> <name>zdzName</name>
  2530 + <rename>zdzName</rename>
  2531 + <type>String</type>
  2532 + <length>-1</length>
  2533 + <precision>-1</precision>
  2534 + <replace>N</replace>
  2535 + </field> </fields> <cluster_schema/>
  2536 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2537 + <xloc>250</xloc>
  2538 + <yloc>188</yloc>
  2539 + <draw>Y</draw>
  2540 + </GUI>
  2541 + </step>
  2542 +
  2543 + <step>
  2544 + <name>&#x6587;&#x672c;&#x6587;&#x4ef6;&#x8f93;&#x51fa;</name>
  2545 + <type>TextFileOutput</type>
  2546 + <description/>
  2547 + <distribute>Y</distribute>
  2548 + <custom_distribution/>
  2549 + <copies>1</copies>
  2550 + <partitioning>
  2551 + <method>none</method>
  2552 + <schema_name/>
  2553 + </partitioning>
  2554 + <separator>&#x3b;</separator>
  2555 + <enclosure>&#x22;</enclosure>
  2556 + <enclosure_forced>N</enclosure_forced>
  2557 + <enclosure_fix_disabled>N</enclosure_fix_disabled>
  2558 + <header>Y</header>
  2559 + <footer>N</footer>
  2560 + <format>DOS</format>
  2561 + <compression>None</compression>
  2562 + <encoding/>
  2563 + <endedLine/>
  2564 + <fileNameInField>N</fileNameInField>
  2565 + <fileNameField/>
  2566 + <create_parent_folder>Y</create_parent_folder>
  2567 + <file>
  2568 + <name>&#x24;&#x7b;tempfilepath&#x7d;</name>
  2569 + <is_command>N</is_command>
  2570 + <servlet_output>N</servlet_output>
  2571 + <do_not_open_new_file_init>N</do_not_open_new_file_init>
  2572 + <extention>txt</extention>
  2573 + <append>N</append>
  2574 + <split>N</split>
  2575 + <haspartno>N</haspartno>
  2576 + <add_date>N</add_date>
  2577 + <add_time>N</add_time>
  2578 + <SpecifyFormat>N</SpecifyFormat>
  2579 + <date_time_format/>
  2580 + <add_to_result_filenames>Y</add_to_result_filenames>
  2581 + <pad>N</pad>
  2582 + <fast_dump>N</fast_dump>
  2583 + <splitevery>0</splitevery>
  2584 + </file>
  2585 + <fields>
  2586 + <field>
  2587 + <name>lp</name>
  2588 + <type>String</type>
  2589 + <format/>
  2590 + <currency/>
  2591 + <decimal/>
  2592 + <group/>
  2593 + <nullif/>
  2594 + <trim_type>none</trim_type>
  2595 + <length>255</length>
  2596 + <precision>-1</precision>
  2597 + </field>
  2598 + <field>
  2599 + <name>fcno1</name>
  2600 + <type>String</type>
  2601 + <format/>
  2602 + <currency/>
  2603 + <decimal/>
  2604 + <group/>
  2605 + <nullif/>
  2606 + <trim_type>none</trim_type>
  2607 + <length>-1</length>
  2608 + <precision>-1</precision>
  2609 + </field>
  2610 + <field>
  2611 + <name>fcno2</name>
  2612 + <type>String</type>
  2613 + <format/>
  2614 + <currency/>
  2615 + <decimal/>
  2616 + <group/>
  2617 + <nullif/>
  2618 + <trim_type>none</trim_type>
  2619 + <length>-1</length>
  2620 + <precision>-1</precision>
  2621 + </field>
  2622 + <field>
  2623 + <name>fcno3</name>
  2624 + <type>String</type>
  2625 + <format/>
  2626 + <currency/>
  2627 + <decimal/>
  2628 + <group/>
  2629 + <nullif/>
  2630 + <trim_type>none</trim_type>
  2631 + <length>-1</length>
  2632 + <precision>-1</precision>
  2633 + </field>
  2634 + <field>
  2635 + <name>fcno4</name>
  2636 + <type>String</type>
  2637 + <format/>
  2638 + <currency/>
  2639 + <decimal/>
  2640 + <group/>
  2641 + <nullif/>
  2642 + <trim_type>none</trim_type>
  2643 + <length>-1</length>
  2644 + <precision>-1</precision>
  2645 + </field>
  2646 + <field>
  2647 + <name>fcno5</name>
  2648 + <type>String</type>
  2649 + <format/>
  2650 + <currency/>
  2651 + <decimal/>
  2652 + <group/>
  2653 + <nullif/>
  2654 + <trim_type>none</trim_type>
  2655 + <length>-1</length>
  2656 + <precision>-1</precision>
  2657 + </field>
  2658 + <field>
  2659 + <name>fcno6</name>
  2660 + <type>String</type>
  2661 + <format/>
  2662 + <currency/>
  2663 + <decimal/>
  2664 + <group/>
  2665 + <nullif/>
  2666 + <trim_type>none</trim_type>
  2667 + <length>-1</length>
  2668 + <precision>-1</precision>
  2669 + </field>
  2670 + <field>
  2671 + <name>fcno7</name>
  2672 + <type>String</type>
  2673 + <format/>
  2674 + <currency/>
  2675 + <decimal/>
  2676 + <group/>
  2677 + <nullif/>
  2678 + <trim_type>none</trim_type>
  2679 + <length>-1</length>
  2680 + <precision>-1</precision>
  2681 + </field>
  2682 + <field>
  2683 + <name>fcno8</name>
  2684 + <type>String</type>
  2685 + <format/>
  2686 + <currency/>
  2687 + <decimal/>
  2688 + <group/>
  2689 + <nullif/>
  2690 + <trim_type>none</trim_type>
  2691 + <length>-1</length>
  2692 + <precision>-1</precision>
  2693 + </field>
  2694 + <field>
  2695 + <name>fcno9</name>
  2696 + <type>String</type>
  2697 + <format/>
  2698 + <currency/>
  2699 + <decimal/>
  2700 + <group/>
  2701 + <nullif/>
  2702 + <trim_type>none</trim_type>
  2703 + <length>-1</length>
  2704 + <precision>-1</precision>
  2705 + </field>
  2706 + <field>
  2707 + <name>fcno10</name>
  2708 + <type>String</type>
  2709 + <format/>
  2710 + <currency/>
  2711 + <decimal/>
  2712 + <group/>
  2713 + <nullif/>
  2714 + <trim_type>none</trim_type>
  2715 + <length>-1</length>
  2716 + <precision>-1</precision>
  2717 + </field>
  2718 + <field>
  2719 + <name>fcno11</name>
  2720 + <type>String</type>
  2721 + <format/>
  2722 + <currency/>
  2723 + <decimal/>
  2724 + <group/>
  2725 + <nullif/>
  2726 + <trim_type>none</trim_type>
  2727 + <length>-1</length>
  2728 + <precision>-1</precision>
  2729 + </field>
  2730 + <field>
  2731 + <name>fcno12</name>
  2732 + <type>String</type>
  2733 + <format/>
  2734 + <currency/>
  2735 + <decimal/>
  2736 + <group/>
  2737 + <nullif/>
  2738 + <trim_type>none</trim_type>
  2739 + <length>-1</length>
  2740 + <precision>-1</precision>
  2741 + </field>
  2742 + <field>
  2743 + <name>fcno13</name>
  2744 + <type>String</type>
  2745 + <format/>
  2746 + <currency/>
  2747 + <decimal/>
  2748 + <group/>
  2749 + <nullif/>
  2750 + <trim_type>none</trim_type>
  2751 + <length>-1</length>
  2752 + <precision>-1</precision>
  2753 + </field>
  2754 + <field>
  2755 + <name>fcno14</name>
  2756 + <type>String</type>
  2757 + <format/>
  2758 + <currency/>
  2759 + <decimal/>
  2760 + <group/>
  2761 + <nullif/>
  2762 + <trim_type>none</trim_type>
  2763 + <length>-1</length>
  2764 + <precision>-1</precision>
  2765 + </field>
  2766 + <field>
  2767 + <name>fcno15</name>
  2768 + <type>String</type>
  2769 + <format/>
  2770 + <currency/>
  2771 + <decimal/>
  2772 + <group/>
  2773 + <nullif/>
  2774 + <trim_type>none</trim_type>
  2775 + <length>-1</length>
  2776 + <precision>-1</precision>
  2777 + </field>
  2778 + <field>
  2779 + <name>fcno16</name>
  2780 + <type>String</type>
  2781 + <format/>
  2782 + <currency/>
  2783 + <decimal/>
  2784 + <group/>
  2785 + <nullif/>
  2786 + <trim_type>none</trim_type>
  2787 + <length>-1</length>
  2788 + <precision>-1</precision>
  2789 + </field>
  2790 + <field>
  2791 + <name>fcno17</name>
  2792 + <type>String</type>
  2793 + <format/>
  2794 + <currency/>
  2795 + <decimal/>
  2796 + <group/>
  2797 + <nullif/>
  2798 + <trim_type>none</trim_type>
  2799 + <length>-1</length>
  2800 + <precision>-1</precision>
  2801 + </field>
  2802 + <field>
  2803 + <name>fcno18</name>
  2804 + <type>String</type>
  2805 + <format/>
  2806 + <currency/>
  2807 + <decimal/>
  2808 + <group/>
  2809 + <nullif/>
  2810 + <trim_type>none</trim_type>
  2811 + <length>-1</length>
  2812 + <precision>-1</precision>
  2813 + </field>
  2814 + <field>
  2815 + <name>fcno19</name>
  2816 + <type>String</type>
  2817 + <format/>
  2818 + <currency/>
  2819 + <decimal/>
  2820 + <group/>
  2821 + <nullif/>
  2822 + <trim_type>none</trim_type>
  2823 + <length>-1</length>
  2824 + <precision>-1</precision>
  2825 + </field>
  2826 + <field>
  2827 + <name>fcno20</name>
  2828 + <type>String</type>
  2829 + <format/>
  2830 + <currency/>
  2831 + <decimal/>
  2832 + <group/>
  2833 + <nullif/>
  2834 + <trim_type>none</trim_type>
  2835 + <length>-1</length>
  2836 + <precision>-1</precision>
  2837 + </field>
  2838 + <field>
  2839 + <name>fcno21</name>
  2840 + <type>String</type>
  2841 + <format/>
  2842 + <currency/>
  2843 + <decimal/>
  2844 + <group/>
  2845 + <nullif/>
  2846 + <trim_type>none</trim_type>
  2847 + <length>-1</length>
  2848 + <precision>-1</precision>
  2849 + </field>
  2850 + <field>
  2851 + <name>fcno22</name>
  2852 + <type>String</type>
  2853 + <format/>
  2854 + <currency/>
  2855 + <decimal/>
  2856 + <group/>
  2857 + <nullif/>
  2858 + <trim_type>none</trim_type>
  2859 + <length>-1</length>
  2860 + <precision>-1</precision>
  2861 + </field>
  2862 + <field>
  2863 + <name>fcno23</name>
  2864 + <type>String</type>
  2865 + <format/>
  2866 + <currency/>
  2867 + <decimal/>
  2868 + <group/>
  2869 + <nullif/>
  2870 + <trim_type>none</trim_type>
  2871 + <length>-1</length>
  2872 + <precision>-1</precision>
  2873 + </field>
  2874 + <field>
  2875 + <name>fcno24</name>
  2876 + <type>String</type>
  2877 + <format/>
  2878 + <currency/>
  2879 + <decimal/>
  2880 + <group/>
  2881 + <nullif/>
  2882 + <trim_type>none</trim_type>
  2883 + <length>-1</length>
  2884 + <precision>-1</precision>
  2885 + </field>
  2886 + <field>
  2887 + <name>fcno25</name>
  2888 + <type>String</type>
  2889 + <format/>
  2890 + <currency/>
  2891 + <decimal/>
  2892 + <group/>
  2893 + <nullif/>
  2894 + <trim_type>none</trim_type>
  2895 + <length>-1</length>
  2896 + <precision>-1</precision>
  2897 + </field>
  2898 + <field>
  2899 + <name>fcno26</name>
  2900 + <type>String</type>
  2901 + <format/>
  2902 + <currency/>
  2903 + <decimal/>
  2904 + <group/>
  2905 + <nullif/>
  2906 + <trim_type>none</trim_type>
  2907 + <length>-1</length>
  2908 + <precision>-1</precision>
  2909 + </field>
  2910 + <field>
  2911 + <name>fcno27</name>
  2912 + <type>String</type>
  2913 + <format/>
  2914 + <currency/>
  2915 + <decimal/>
  2916 + <group/>
  2917 + <nullif/>
  2918 + <trim_type>none</trim_type>
  2919 + <length>-1</length>
  2920 + <precision>-1</precision>
  2921 + </field>
  2922 + <field>
  2923 + <name>fcno28</name>
  2924 + <type>String</type>
  2925 + <format/>
  2926 + <currency/>
  2927 + <decimal/>
  2928 + <group/>
  2929 + <nullif/>
  2930 + <trim_type>none</trim_type>
  2931 + <length>-1</length>
  2932 + <precision>-1</precision>
  2933 + </field>
  2934 + <field>
  2935 + <name>fcno29</name>
  2936 + <type>String</type>
  2937 + <format/>
  2938 + <currency/>
  2939 + <decimal/>
  2940 + <group/>
  2941 + <nullif/>
  2942 + <trim_type>none</trim_type>
  2943 + <length>-1</length>
  2944 + <precision>-1</precision>
  2945 + </field>
  2946 + <field>
  2947 + <name>fcno30</name>
  2948 + <type>String</type>
  2949 + <format/>
  2950 + <currency/>
  2951 + <decimal/>
  2952 + <group/>
  2953 + <nullif/>
  2954 + <trim_type>none</trim_type>
  2955 + <length>-1</length>
  2956 + <precision>-1</precision>
  2957 + </field>
  2958 + <field>
  2959 + <name>fcno31</name>
  2960 + <type>String</type>
  2961 + <format/>
  2962 + <currency/>
  2963 + <decimal/>
  2964 + <group/>
  2965 + <nullif/>
  2966 + <trim_type>none</trim_type>
  2967 + <length>-1</length>
  2968 + <precision>-1</precision>
  2969 + </field>
  2970 + <field>
  2971 + <name>fcno32</name>
  2972 + <type>String</type>
  2973 + <format/>
  2974 + <currency/>
  2975 + <decimal/>
  2976 + <group/>
  2977 + <nullif/>
  2978 + <trim_type>none</trim_type>
  2979 + <length>-1</length>
  2980 + <precision>-1</precision>
  2981 + </field>
  2982 + <field>
  2983 + <name>fcno33</name>
  2984 + <type>String</type>
  2985 + <format/>
  2986 + <currency/>
  2987 + <decimal/>
  2988 + <group/>
  2989 + <nullif/>
  2990 + <trim_type>none</trim_type>
  2991 + <length>-1</length>
  2992 + <precision>-1</precision>
  2993 + </field>
  2994 + <field>
  2995 + <name>fcno34</name>
  2996 + <type>String</type>
  2997 + <format/>
  2998 + <currency/>
  2999 + <decimal/>
  3000 + <group/>
  3001 + <nullif/>
  3002 + <trim_type>none</trim_type>
  3003 + <length>-1</length>
  3004 + <precision>-1</precision>
  3005 + </field>
  3006 + <field>
  3007 + <name>fcno35</name>
  3008 + <type>String</type>
  3009 + <format/>
  3010 + <currency/>
  3011 + <decimal/>
  3012 + <group/>
  3013 + <nullif/>
  3014 + <trim_type>none</trim_type>
  3015 + <length>-1</length>
  3016 + <precision>-1</precision>
  3017 + </field>
  3018 + <field>
  3019 + <name>fcno36</name>
  3020 + <type>String</type>
  3021 + <format/>
  3022 + <currency/>
  3023 + <decimal/>
  3024 + <group/>
  3025 + <nullif/>
  3026 + <trim_type>none</trim_type>
  3027 + <length>-1</length>
  3028 + <precision>-1</precision>
  3029 + </field>
  3030 + <field>
  3031 + <name>fcno37</name>
  3032 + <type>String</type>
  3033 + <format/>
  3034 + <currency/>
  3035 + <decimal/>
  3036 + <group/>
  3037 + <nullif/>
  3038 + <trim_type>none</trim_type>
  3039 + <length>-1</length>
  3040 + <precision>-1</precision>
  3041 + </field>
  3042 + <field>
  3043 + <name>fcno38</name>
  3044 + <type>String</type>
  3045 + <format/>
  3046 + <currency/>
  3047 + <decimal/>
  3048 + <group/>
  3049 + <nullif/>
  3050 + <trim_type>none</trim_type>
  3051 + <length>-1</length>
  3052 + <precision>-1</precision>
  3053 + </field>
  3054 + <field>
  3055 + <name>fcno39</name>
  3056 + <type>String</type>
  3057 + <format/>
  3058 + <currency/>
  3059 + <decimal/>
  3060 + <group/>
  3061 + <nullif/>
  3062 + <trim_type>none</trim_type>
  3063 + <length>-1</length>
  3064 + <precision>-1</precision>
  3065 + </field>
  3066 + <field>
  3067 + <name>fcno40</name>
  3068 + <type>String</type>
  3069 + <format/>
  3070 + <currency/>
  3071 + <decimal/>
  3072 + <group/>
  3073 + <nullif/>
  3074 + <trim_type>none</trim_type>
  3075 + <length>-1</length>
  3076 + <precision>-1</precision>
  3077 + </field>
  3078 + <field>
  3079 + <name>fcno41</name>
  3080 + <type>String</type>
  3081 + <format/>
  3082 + <currency/>
  3083 + <decimal/>
  3084 + <group/>
  3085 + <nullif/>
  3086 + <trim_type>none</trim_type>
  3087 + <length>-1</length>
  3088 + <precision>-1</precision>
  3089 + </field>
  3090 + <field>
  3091 + <name>fcno42</name>
  3092 + <type>String</type>
  3093 + <format/>
  3094 + <currency/>
  3095 + <decimal/>
  3096 + <group/>
  3097 + <nullif/>
  3098 + <trim_type>none</trim_type>
  3099 + <length>-1</length>
  3100 + <precision>-1</precision>
  3101 + </field>
  3102 + <field>
  3103 + <name>fcno43</name>
  3104 + <type>String</type>
  3105 + <format/>
  3106 + <currency/>
  3107 + <decimal/>
  3108 + <group/>
  3109 + <nullif/>
  3110 + <trim_type>none</trim_type>
  3111 + <length>-1</length>
  3112 + <precision>-1</precision>
  3113 + </field>
  3114 + <field>
  3115 + <name>fcno44</name>
  3116 + <type>String</type>
  3117 + <format/>
  3118 + <currency/>
  3119 + <decimal/>
  3120 + <group/>
  3121 + <nullif/>
  3122 + <trim_type>none</trim_type>
  3123 + <length>-1</length>
  3124 + <precision>-1</precision>
  3125 + </field>
  3126 + <field>
  3127 + <name>fcno45</name>
  3128 + <type>String</type>
  3129 + <format/>
  3130 + <currency/>
  3131 + <decimal/>
  3132 + <group/>
  3133 + <nullif/>
  3134 + <trim_type>none</trim_type>
  3135 + <length>-1</length>
  3136 + <precision>-1</precision>
  3137 + </field>
  3138 + <field>
  3139 + <name>fcno46</name>
  3140 + <type>String</type>
  3141 + <format/>
  3142 + <currency/>
  3143 + <decimal/>
  3144 + <group/>
  3145 + <nullif/>
  3146 + <trim_type>none</trim_type>
  3147 + <length>-1</length>
  3148 + <precision>-1</precision>
  3149 + </field>
  3150 + <field>
  3151 + <name>fcno47</name>
  3152 + <type>String</type>
  3153 + <format/>
  3154 + <currency/>
  3155 + <decimal/>
  3156 + <group/>
  3157 + <nullif/>
  3158 + <trim_type>none</trim_type>
  3159 + <length>-1</length>
  3160 + <precision>-1</precision>
  3161 + </field>
  3162 + <field>
  3163 + <name>fcno48</name>
  3164 + <type>String</type>
  3165 + <format/>
  3166 + <currency/>
  3167 + <decimal/>
  3168 + <group/>
  3169 + <nullif/>
  3170 + <trim_type>none</trim_type>
  3171 + <length>-1</length>
  3172 + <precision>-1</precision>
  3173 + </field>
  3174 + <field>
  3175 + <name>fcno49</name>
  3176 + <type>String</type>
  3177 + <format/>
  3178 + <currency/>
  3179 + <decimal/>
  3180 + <group/>
  3181 + <nullif/>
  3182 + <trim_type>none</trim_type>
  3183 + <length>-1</length>
  3184 + <precision>-1</precision>
  3185 + </field>
  3186 + <field>
  3187 + <name>fcno50</name>
  3188 + <type>String</type>
  3189 + <format/>
  3190 + <currency/>
  3191 + <decimal/>
  3192 + <group/>
  3193 + <nullif/>
  3194 + <trim_type>none</trim_type>
  3195 + <length>-1</length>
  3196 + <precision>-1</precision>
  3197 + </field>
  3198 + <field>
  3199 + <name>fcno51</name>
  3200 + <type>String</type>
  3201 + <format/>
  3202 + <currency/>
  3203 + <decimal/>
  3204 + <group/>
  3205 + <nullif/>
  3206 + <trim_type>none</trim_type>
  3207 + <length>-1</length>
  3208 + <precision>-1</precision>
  3209 + </field>
  3210 + <field>
  3211 + <name>fcno52</name>
  3212 + <type>String</type>
  3213 + <format/>
  3214 + <currency/>
  3215 + <decimal/>
  3216 + <group/>
  3217 + <nullif/>
  3218 + <trim_type>none</trim_type>
  3219 + <length>-1</length>
  3220 + <precision>-1</precision>
  3221 + </field>
  3222 + <field>
  3223 + <name>fcno53</name>
  3224 + <type>String</type>
  3225 + <format/>
  3226 + <currency/>
  3227 + <decimal/>
  3228 + <group/>
  3229 + <nullif/>
  3230 + <trim_type>none</trim_type>
  3231 + <length>-1</length>
  3232 + <precision>-1</precision>
  3233 + </field>
  3234 + <field>
  3235 + <name>fcno54</name>
  3236 + <type>String</type>
  3237 + <format/>
  3238 + <currency/>
  3239 + <decimal/>
  3240 + <group/>
  3241 + <nullif/>
  3242 + <trim_type>none</trim_type>
  3243 + <length>-1</length>
  3244 + <precision>-1</precision>
  3245 + </field>
  3246 + <field>
  3247 + <name>fcno55</name>
  3248 + <type>String</type>
  3249 + <format/>
  3250 + <currency/>
  3251 + <decimal/>
  3252 + <group/>
  3253 + <nullif/>
  3254 + <trim_type>none</trim_type>
  3255 + <length>-1</length>
  3256 + <precision>-1</precision>
  3257 + </field>
  3258 + <field>
  3259 + <name>fcno56</name>
  3260 + <type>String</type>
  3261 + <format/>
  3262 + <currency/>
  3263 + <decimal/>
  3264 + <group/>
  3265 + <nullif/>
  3266 + <trim_type>none</trim_type>
  3267 + <length>-1</length>
  3268 + <precision>-1</precision>
  3269 + </field>
  3270 + <field>
  3271 + <name>fcno57</name>
  3272 + <type>String</type>
  3273 + <format/>
  3274 + <currency/>
  3275 + <decimal/>
  3276 + <group/>
  3277 + <nullif/>
  3278 + <trim_type>none</trim_type>
  3279 + <length>-1</length>
  3280 + <precision>-1</precision>
  3281 + </field>
  3282 + <field>
  3283 + <name>fcno58</name>
  3284 + <type>String</type>
  3285 + <format/>
  3286 + <currency/>
  3287 + <decimal/>
  3288 + <group/>
  3289 + <nullif/>
  3290 + <trim_type>none</trim_type>
  3291 + <length>-1</length>
  3292 + <precision>-1</precision>
  3293 + </field>
  3294 + <field>
  3295 + <name>fcno59</name>
  3296 + <type>String</type>
  3297 + <format/>
  3298 + <currency/>
  3299 + <decimal/>
  3300 + <group/>
  3301 + <nullif/>
  3302 + <trim_type>none</trim_type>
  3303 + <length>-1</length>
  3304 + <precision>-1</precision>
  3305 + </field>
  3306 + <field>
  3307 + <name>fcno60</name>
  3308 + <type>String</type>
  3309 + <format/>
  3310 + <currency/>
  3311 + <decimal/>
  3312 + <group/>
  3313 + <nullif/>
  3314 + <trim_type>none</trim_type>
  3315 + <length>-1</length>
  3316 + <precision>-1</precision>
  3317 + </field>
  3318 + <field>
  3319 + <name>fcno61</name>
  3320 + <type>String</type>
  3321 + <format/>
  3322 + <currency/>
  3323 + <decimal/>
  3324 + <group/>
  3325 + <nullif/>
  3326 + <trim_type>none</trim_type>
  3327 + <length>-1</length>
  3328 + <precision>-1</precision>
  3329 + </field>
  3330 + <field>
  3331 + <name>fcno62</name>
  3332 + <type>String</type>
  3333 + <format/>
  3334 + <currency/>
  3335 + <decimal/>
  3336 + <group/>
  3337 + <nullif/>
  3338 + <trim_type>none</trim_type>
  3339 + <length>-1</length>
  3340 + <precision>-1</precision>
  3341 + </field>
  3342 + <field>
  3343 + <name>fcno63</name>
  3344 + <type>String</type>
  3345 + <format/>
  3346 + <currency/>
  3347 + <decimal/>
  3348 + <group/>
  3349 + <nullif/>
  3350 + <trim_type>none</trim_type>
  3351 + <length>-1</length>
  3352 + <precision>-1</precision>
  3353 + </field>
  3354 + <field>
  3355 + <name>fcno64</name>
  3356 + <type>String</type>
  3357 + <format/>
  3358 + <currency/>
  3359 + <decimal/>
  3360 + <group/>
  3361 + <nullif/>
  3362 + <trim_type>none</trim_type>
  3363 + <length>-1</length>
  3364 + <precision>-1</precision>
  3365 + </field>
  3366 + <field>
  3367 + <name>fcno65</name>
  3368 + <type>String</type>
  3369 + <format/>
  3370 + <currency/>
  3371 + <decimal/>
  3372 + <group/>
  3373 + <nullif/>
  3374 + <trim_type>none</trim_type>
  3375 + <length>-1</length>
  3376 + <precision>-1</precision>
  3377 + </field>
  3378 + <field>
  3379 + <name>fcno66</name>
  3380 + <type>String</type>
  3381 + <format/>
  3382 + <currency/>
  3383 + <decimal/>
  3384 + <group/>
  3385 + <nullif/>
  3386 + <trim_type>none</trim_type>
  3387 + <length>-1</length>
  3388 + <precision>-1</precision>
  3389 + </field>
  3390 + <field>
  3391 + <name>fcno67</name>
  3392 + <type>String</type>
  3393 + <format/>
  3394 + <currency/>
  3395 + <decimal/>
  3396 + <group/>
  3397 + <nullif/>
  3398 + <trim_type>none</trim_type>
  3399 + <length>-1</length>
  3400 + <precision>-1</precision>
  3401 + </field>
  3402 + <field>
  3403 + <name>fcno68</name>
  3404 + <type>String</type>
  3405 + <format/>
  3406 + <currency/>
  3407 + <decimal/>
  3408 + <group/>
  3409 + <nullif/>
  3410 + <trim_type>none</trim_type>
  3411 + <length>-1</length>
  3412 + <precision>-1</precision>
  3413 + </field>
  3414 + <field>
  3415 + <name>fcno69</name>
  3416 + <type>String</type>
  3417 + <format/>
  3418 + <currency/>
  3419 + <decimal/>
  3420 + <group/>
  3421 + <nullif/>
  3422 + <trim_type>none</trim_type>
  3423 + <length>-1</length>
  3424 + <precision>-1</precision>
  3425 + </field>
  3426 + <field>
  3427 + <name>fcno70</name>
  3428 + <type>String</type>
  3429 + <format/>
  3430 + <currency/>
  3431 + <decimal/>
  3432 + <group/>
  3433 + <nullif/>
  3434 + <trim_type>none</trim_type>
  3435 + <length>-1</length>
  3436 + <precision>-1</precision>
  3437 + </field>
  3438 + </fields>
  3439 + <cluster_schema/>
  3440 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3441 + <xloc>880</xloc>
  3442 + <yloc>365</yloc>
  3443 + <draw>Y</draw>
  3444 + </GUI>
  3445 + </step>
  3446 +
  3447 + <step>
  3448 + <name>&#x5408;&#x5e76;&#x5185;&#x5bb9;</name>
  3449 + <type>ScriptValueMod</type>
  3450 + <description/>
  3451 + <distribute>Y</distribute>
  3452 + <custom_distribution/>
  3453 + <copies>1</copies>
  3454 + <partitioning>
  3455 + <method>none</method>
  3456 + <schema_name/>
  3457 + </partitioning>
  3458 + <compatible>N</compatible>
  3459 + <optimizationLevel>9</optimizationLevel>
  3460 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  3461 + <jsScript_name>Script 1</jsScript_name>
  3462 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;&#x2f;&#x2f; &#x987a;&#x5e8f;&#xff0c;id,fcsj,jhlc,zdname,bctype,xldir,isfb&#xa;var all_content_array &#x3d; &#x5b;&#x5d;&#x3b;&#xa;var all_content &#x3d; &#x22;&#x22;&#x3b; &#xa;all_content_array.push&#x28;id&#x29;&#x3b;&#xa;all_content_array.push&#x28;fcsj&#x29;&#x3b;&#xa;all_content_array.push&#x28;jhlc&#x29;&#x3b;&#xa;all_content_array.push&#x28;fczdName&#x29;&#x3b;&#xa;all_content_array.push&#x28;bc_type&#x29;&#x3b;&#xa;all_content_array.push&#x28;xl_dir&#x29;&#x3b;&#xa;all_content_array.push&#x28;isfb&#x29;&#x3b;&#xa;all_content_array.push&#x28;qdz &#x7c;&#x7c; &#x27;null&#x27;&#x29;&#x3b;&#xa;all_content_array.push&#x28;zdz &#x7c;&#x7c; &#x27;null&#x27;&#x29;&#x3b;&#xa;all_content_array.push&#x28;tcc &#x7c;&#x7c; &#x27;null&#x27;&#x29;&#x3b;&#xa;&#xa;all_content &#x3d; all_content_array.join&#x28;&#x22;,&#x22;&#x29;&#x3b; &#x2f;&#x2f; &#x9017;&#x53f7;&#x5206;&#x9694;</jsScript_script>
  3463 + </jsScript> </jsScripts> <fields> <field> <name>all_content</name>
  3464 + <rename>all_content</rename>
  3465 + <type>String</type>
  3466 + <length>-1</length>
  3467 + <precision>-1</precision>
  3468 + <replace>N</replace>
  3469 + </field> </fields> <cluster_schema/>
  3470 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3471 + <xloc>551</xloc>
  3472 + <yloc>366</yloc>
  3473 + <draw>Y</draw>
  3474 + </GUI>
  3475 + </step>
  3476 +
  3477 + <step_error_handling>
  3478 + </step_error_handling>
  3479 + <slave-step-copy-partition-distribution>
  3480 +</slave-step-copy-partition-distribution>
  3481 + <slave_transformation>N</slave_transformation>
  3482 +
  3483 +</transformation>
src/main/resources/static/pages/scheduleApp/module/common/dts2/employeeGroup/saEmployeegroup.js
@@ -53,6 +53,38 @@ angular.module(&#39;ScheduleApp&#39;).directive(&#39;saEmployeegroup&#39;, [ @@ -53,6 +53,38 @@ angular.module(&#39;ScheduleApp&#39;).directive(&#39;saEmployeegroup&#39;, [
53 self.$$dataFBSelected = []; // 选中的分班人员组配置列表 53 self.$$dataFBSelected = []; // 选中的分班人员组配置列表
54 self.$$dataFBInternalSelected = undefined; // 分班组内人员选中标识 54 self.$$dataFBInternalSelected = undefined; // 分班组内人员选中标识
55 self.$$dataFBSelectedStart = undefined; // 选中的起始分班人员组合 55 self.$$dataFBSelectedStart = undefined; // 选中的起始分班人员组合
  56 + self.$$isAll = false; // 是否显示全部
  57 + self.$$showNumber = 10; // 显示的记录数
  58 + self.$$calcuData = function() { // 处理$$data数据
  59 + console.log(self.$$searchText);
  60 + angular.forEach(self.$$dataReal, function(obj) {
  61 + if (self.$$isAll) { // 显示全部
  62 + if (self.$$searchText && self.$$searchText != "") { // 有筛选条件
  63 + if (obj.$fullChars.indexOf(self.$$searchText) != -1
  64 + || obj.$camelChars.indexOf(self.$$searchText) != -1
  65 + || obj.$str.indexOf(self.$$searchText) != -1) {
  66 + this.push(obj);
  67 + }
  68 + } else {
  69 + this.push(obj);
  70 + }
  71 + } else { // 显示限定数量
  72 + if (this.length < self.$$showNumber) {
  73 + if (self.$$searchText && self.$$searchText != "") { // 有筛选条件
  74 + if (obj.$fullChars.indexOf(self.$$searchText) != -1
  75 + || obj.$camelChars.indexOf(self.$$searchText) != -1
  76 + || obj.$str.indexOf(self.$$searchText) != -1) {
  77 + this.push(obj);
  78 + }
  79 + } else {
  80 + this.push(obj);
  81 + }
  82 + }
  83 + }
  84 + }, self.$$data);
  85 +
  86 + };
  87 +
56 88
57 //self.$$dataFBSelected = [ 89 //self.$$dataFBSelected = [
58 // {isstart: true, group: [ 90 // {isstart: true, group: [
@@ -127,38 +159,13 @@ angular.module(&#39;ScheduleApp&#39;).directive(&#39;saEmployeegroup&#39;, [ @@ -127,38 +159,13 @@ angular.module(&#39;ScheduleApp&#39;).directive(&#39;saEmployeegroup&#39;, [
127 } 159 }
128 }); 160 });
129 tElem.on('keyup', '[name=rysearch]', function() { 161 tElem.on('keyup', '[name=rysearch]', function() {
130 - console.log(scope[ctrlAs]["$$searchText"]);  
131 - var sText = scope[ctrlAs]["$$searchText"];  
132 - if (sText && sText != "") {  
133 - // 因为在dom事件里修改了model的值,必须写在scope.$apply中,否则页面上绑定效果无  
134 - // 另一种做法可以写在$watch方法中  
135 - scope.$apply(function() {  
136 - scope[ctrlAs].$$data = [];  
137 - for (var k = 0; k < scope[ctrlAs].$$dataReal.length; k++) {  
138 - var upTerm = sText.toUpperCase();  
139 - if (scope[ctrlAs].$$data.length < 10) {  
140 - if (scope[ctrlAs].$$dataReal[k].$fullChars.indexOf(upTerm) != -1  
141 - || scope[ctrlAs].$$dataReal[k].$camelChars.indexOf(upTerm) != -1  
142 - || scope[ctrlAs].$$dataReal[k].$str.indexOf(upTerm) != -1) {  
143 - scope[ctrlAs].$$data.push(scope[ctrlAs].$$dataReal[k]);  
144 - }  
145 - } else {  
146 - break;  
147 - }  
148 - }  
149 - });  
150 - } else {  
151 - scope.$apply(function() {  
152 - scope[ctrlAs].$$data = [];  
153 - for (var i = 0; i < scope[ctrlAs].$$dataReal.length; i++) {  
154 - if (scope[ctrlAs].$$data.length < 10) {  
155 - scope[ctrlAs].$$data.push(scope[ctrlAs].$$dataReal[i]);  
156 - } else {  
157 - break;  
158 - }  
159 - }  
160 - });  
161 - } 162 + // 因为在dom事件里修改了model的值,必须写在scope.$apply中,否则页面上绑定效果无
  163 + // 另一种做法可以写在$watch方法中
  164 + scope.$apply(function() {
  165 + scope[ctrlAs].$$data = [];
  166 + scope[ctrlAs].$$calcuData();
  167 +
  168 + });
162 }); 169 });
163 170
164 171
@@ -605,6 +612,21 @@ angular.module(&#39;ScheduleApp&#39;).directive(&#39;saEmployeegroup&#39;, [ @@ -605,6 +612,21 @@ angular.module(&#39;ScheduleApp&#39;).directive(&#39;saEmployeegroup&#39;, [
605 } 612 }
606 ); 613 );
607 614
  615 + // 监控是否显示所有数据,$$isAll 变化
  616 + scope.$watch(
  617 + function() {
  618 + return scope[ctrlAs].$$isAll;
  619 + },
  620 + function(newValue, oldValue) {
  621 + console.log("dfdfdfdfdf");
  622 + if (scope[ctrlAs].$$dataReal.length > 0) {
  623 + scope[ctrlAs].$$data = [];
  624 + scope[ctrlAs].$$calcuData();
  625 + }
  626 + },
  627 + true
  628 + );
  629 +
608 630
609 // 监控线路id的变化 631 // 监控线路id的变化
610 attr.$observe("xlidvalue", function(value) { 632 attr.$observe("xlidvalue", function(value) {
@@ -621,13 +643,16 @@ angular.module(&#39;ScheduleApp&#39;).directive(&#39;saEmployeegroup&#39;, [ @@ -621,13 +643,16 @@ angular.module(&#39;ScheduleApp&#39;).directive(&#39;saEmployeegroup&#39;, [
621 angular.forEach(result.content, function(obj) { 643 angular.forEach(result.content, function(obj) {
622 var n1 = obj.jsy == null ? "" : (obj.jsy.personnelName || ""); 644 var n1 = obj.jsy == null ? "" : (obj.jsy.personnelName || "");
623 var n2 = obj.spy == null ? "" : (obj.spy.personnelName || ""); 645 var n2 = obj.spy == null ? "" : (obj.spy.personnelName || "");
624 - var c1 = obj.jsy == null ? "" : (obj.jsy.jobCode || "");  
625 - var c2 = obj.spy == null ? "" : (obj.spy.jobCode || ""); 646 + var n3 = obj.dbbm || "";
  647 + //var c1 = obj.jsy == null ? "" : (obj.jsy.jobCode || "");
  648 + //var c2 = obj.spy == null ? "" : (obj.spy.jobCode || "");
  649 +
626 var str = []; 650 var str = [];
627 str.push(n1); 651 str.push(n1);
628 str.push(n2); 652 str.push(n2);
629 - str.push(c1);  
630 - str.push(c2); 653 + str.push(n3);
  654 + //str.push(c1);
  655 + //str.push(c2);
631 this.push({ 656 this.push({
632 id: obj.id, 657 id: obj.id,
633 dbbm: obj.dbbm, 658 dbbm: obj.dbbm,
@@ -640,13 +665,7 @@ angular.module(&#39;ScheduleApp&#39;).directive(&#39;saEmployeegroup&#39;, [ @@ -640,13 +665,7 @@ angular.module(&#39;ScheduleApp&#39;).directive(&#39;saEmployeegroup&#39;, [
640 }, scope[ctrlAs].$$dataReal); 665 }, scope[ctrlAs].$$dataReal);
641 666
642 scope[ctrlAs].$$data = []; 667 scope[ctrlAs].$$data = [];
643 - for (var i = 0; i < scope[ctrlAs].$$dataReal.length; i++) {  
644 - if (scope[ctrlAs].$$data.length < 10) {  
645 - scope[ctrlAs].$$data.push(scope[ctrlAs].$$dataReal[i]);  
646 - } else {  
647 - break;  
648 - }  
649 - } 668 + scope[ctrlAs].$$calcuData();
650 669
651 if (scope[ctrlAs].$$data_init) { 670 if (scope[ctrlAs].$$data_init) {
652 scope[ctrlAs].$$dataSelected = []; 671 scope[ctrlAs].$$dataSelected = [];
src/main/resources/static/pages/scheduleApp/module/common/dts2/employeeGroup/saEmployeegroupTemplate.html
@@ -79,15 +79,14 @@ @@ -79,15 +79,14 @@
79 </div> 79 </div>
80 <div class="col-md-3" style="padding-left: 0px;"> 80 <div class="col-md-3" style="padding-left: 0px;">
81 <input name="rysearch" ng-model="$saEmployeegroupCtrl.$$searchText" 81 <input name="rysearch" ng-model="$saEmployeegroupCtrl.$$searchText"
82 - type="text" class="input-sm" style="width: 120px; height: 20px; border: 1px solid #32C5D2;" placeholder="输入名字或工号..."/> 82 + type="text" class="input-sm" style="width: 120px; height: 20px; border: 1px solid #32C5D2;" placeholder="输入拼音或编码..."/>
83 </div> 83 </div>
84 -  
85 - <div class="col-md-2" style="min-height: 19px; color: black;">  
86 - <div class="col-md-5" style="padding-left: 0px; padding-right: 0px;">  
87 - <input type="checkbox" ng-model="$saEmployeegroupCtrl.$$isFB"/> 84 + <div class="col-md-2" style="min-height: 19px; color: black; padding-left: 0px;">
  85 + <div class="col-md-3" style="padding-left: 0px; padding-right: 0px;">
  86 + <input type="checkbox" ng-model="$saEmployeegroupCtrl.$$isAll"/>
88 </div> 87 </div>
89 - <div class="col-md-7" style="padding-left: 0px; padding-right: 0px;">  
90 - <small>分班</small> 88 + <div class="col-md-9" style="padding-left: 0px; padding-right: 0px;">
  89 + <small>显示全部</small>
91 </div> 90 </div>
92 </div> 91 </div>
93 92
@@ -116,13 +115,21 @@ @@ -116,13 +115,21 @@
116 115
117 <!-- 不分班 --> 116 <!-- 不分班 -->
118 <div class="col-md-12 employee-input" ng-if="!$saEmployeegroupCtrl.$$isFB"> 117 <div class="col-md-12 employee-input" ng-if="!$saEmployeegroupCtrl.$$isFB">
119 - <div class="col-md-12"> 118 + <div class="col-md-10">
120 <small> 119 <small>
121 已经选中的人员列表,共{{$saEmployeegroupCtrl.$$dataSelected.length}}组, 120 已经选中的人员列表,共{{$saEmployeegroupCtrl.$$dataSelected.length}}组,
122 初始人员,{{$saEmployeegroupCtrl.$$dataSelectedStart == undefined ? "未选择" : "第" + ($saEmployeegroupCtrl.$$dataSelectedStart + 1) + "组"}} 121 初始人员,{{$saEmployeegroupCtrl.$$dataSelectedStart == undefined ? "未选择" : "第" + ($saEmployeegroupCtrl.$$dataSelectedStart + 1) + "组"}}
123 </small> 122 </small>
124 123
125 </div> 124 </div>
  125 + <div class="col-md-2" style="min-height: 19px; color: black;">
  126 + <div class="col-md-3" style="padding-left: 0px; padding-right: 0px;">
  127 + <input type="checkbox" ng-model="$saEmployeegroupCtrl.$$isFB"/>
  128 + </div>
  129 + <div class="col-md-9" style="padding-left: 0px; padding-right: 0px;">
  130 + <small>分班</small>
  131 + </div>
  132 + </div>
126 </div> 133 </div>
127 <div class="col-md-12 employee-select-cont" ng-if="!$saEmployeegroupCtrl.$$isFB"> 134 <div class="col-md-12 employee-select-cont" ng-if="!$saEmployeegroupCtrl.$$isFB">
128 <div class="employee-select-body"> 135 <div class="employee-select-body">
@@ -150,12 +157,20 @@ @@ -150,12 +157,20 @@
150 157
151 <!-- 分班 --> 158 <!-- 分班 -->
152 <div class="col-md-12 employee-input" ng-if="$saEmployeegroupCtrl.$$isFB"> 159 <div class="col-md-12 employee-input" ng-if="$saEmployeegroupCtrl.$$isFB">
153 - <div class="col-md-12"> 160 + <div class="col-md-10">
154 <small> 161 <small>
155 已经选中的分班人员列表,共{{$saEmployeegroupCtrl.$$dataFBSelected.length}}组, 162 已经选中的分班人员列表,共{{$saEmployeegroupCtrl.$$dataFBSelected.length}}组,
156 初始分班人员,{{$saEmployeegroupCtrl.$$dataFBSelectedStart == undefined ? "未选择" : "第" + ($saEmployeegroupCtrl.$$dataFBSelectedStart + 1) + "组"}} 163 初始分班人员,{{$saEmployeegroupCtrl.$$dataFBSelectedStart == undefined ? "未选择" : "第" + ($saEmployeegroupCtrl.$$dataFBSelectedStart + 1) + "组"}}
157 </small> 164 </small>
158 </div> 165 </div>
  166 + <div class="col-md-2" style="min-height: 19px; color: black;">
  167 + <div class="col-md-3" style="padding-left: 0px; padding-right: 0px;">
  168 + <input type="checkbox" ng-model="$saEmployeegroupCtrl.$$isFB"/>
  169 + </div>
  170 + <div class="col-md-9" style="padding-left: 0px; padding-right: 0px;">
  171 + <small>分班</small>
  172 + </div>
  173 + </div>
159 </div> 174 </div>
160 <div class="col-md-12 employee-select-cont" ng-if="$saEmployeegroupCtrl.$$isFB"> 175 <div class="col-md-12 employee-select-cont" ng-if="$saEmployeegroupCtrl.$$isFB">
161 <div class="employee-select-body"> 176 <div class="employee-select-body">
src/main/resources/static/pages/scheduleApp/module/common/dts2/guideboardGroup/saGuideboardgroup.js
@@ -42,6 +42,37 @@ angular.module(&#39;ScheduleApp&#39;).directive(&#39;saGuideboardgroup&#39;, [ @@ -42,6 +42,37 @@ angular.module(&#39;ScheduleApp&#39;).directive(&#39;saGuideboardgroup&#39;, [
42 self.$$searchText = undefined; // 搜索值 42 self.$$searchText = undefined; // 搜索值
43 self.$$dataSelected = []; // 选中的路牌列表 43 self.$$dataSelected = []; // 选中的路牌列表
44 self.$$dataSelectedStart = undefined; // 起始路牌 44 self.$$dataSelectedStart = undefined; // 起始路牌
  45 + self.$$isAll = false; // 是否显示全部
  46 + self.$$showNumber = 10; // 显示的记录数
  47 + self.$$calcuData = function() { // 处理$$data数据
  48 + console.log(self.$$searchText);
  49 + angular.forEach(self.$$dataReal, function(obj) {
  50 + if (self.$$isAll) { // 显示全部
  51 + if (self.$$searchText && self.$$searchText != "") { // 有筛选条件
  52 + if (obj.$fullChars.indexOf(self.$$searchText) != -1
  53 + || obj.$camelChars.indexOf(self.$$searchText) != -1
  54 + || obj.lpname.indexOf(self.$$searchText) != -1) {
  55 + this.push(obj);
  56 + }
  57 + } else {
  58 + this.push(obj);
  59 + }
  60 + } else { // 显示限定数量
  61 + if (this.length < self.$$showNumber) {
  62 + if (self.$$searchText && self.$$searchText != "") { // 有筛选条件
  63 + if (obj.$fullChars.indexOf(self.$$searchText) != -1
  64 + || obj.$camelChars.indexOf(self.$$searchText) != -1
  65 + || obj.lpname.indexOf(self.$$searchText) != -1) {
  66 + this.push(obj);
  67 + }
  68 + } else {
  69 + this.push(obj);
  70 + }
  71 + }
  72 + }
  73 + }, self.$$data);
  74 +
  75 + };
45 76
46 //self.$$dataSelected = [ 77 //self.$$dataSelected = [
47 // {lpid: 11, lpname: '路11', isstart: false}, 78 // {lpid: 11, lpname: '路11', isstart: false},
@@ -108,40 +139,13 @@ angular.module(&#39;ScheduleApp&#39;).directive(&#39;saGuideboardgroup&#39;, [ @@ -108,40 +139,13 @@ angular.module(&#39;ScheduleApp&#39;).directive(&#39;saGuideboardgroup&#39;, [
108 } 139 }
109 }); 140 });
110 tElem.on('keyup', '[name=lpsearch]', function() { 141 tElem.on('keyup', '[name=lpsearch]', function() {
111 - console.log(scope[ctrlAs]["$$searchText"]);  
112 - var sText = scope[ctrlAs]["$$searchText"];  
113 - if (sText && sText != "") {  
114 - // 因为在dom事件里修改了model的值,必须写在scope.$apply中,否则页面上绑定效果无  
115 - // 另一种做法可以写在$watch方法中  
116 - scope.$apply(function() {  
117 - scope[ctrlAs].$$data = [];  
118 - for (var k = 0; k < scope[ctrlAs].$$dataReal.length; k++) {  
119 - var upTerm = sText.toUpperCase();  
120 - if (scope[ctrlAs].$$data.length < 10) {  
121 - if (scope[ctrlAs].$$dataReal[k].$fullChars.indexOf(upTerm) != -1  
122 - || scope[ctrlAs].$$dataReal[k].$camelChars.indexOf(upTerm) != -1  
123 - || scope[ctrlAs].$$dataReal[k].lpname.indexOf(upTerm) != -1) {  
124 - //scope[ctrlAs].$$data.push(angular.copy(scope[ctrlAs].$$dataReal[k]));  
125 -  
126 - scope[ctrlAs].$$data.push(scope[ctrlAs].$$dataReal[k]);  
127 - }  
128 - } else {  
129 - break;  
130 - }  
131 - }  
132 - });  
133 - } else {  
134 - scope.$apply(function() {  
135 - scope[ctrlAs].$$data = [];  
136 - for (var i = 0; i < scope[ctrlAs].$$dataReal.length; i++) {  
137 - if (scope[ctrlAs].$$data.length < 10) {  
138 - scope[ctrlAs].$$data.push(scope[ctrlAs].$$dataReal[i]);  
139 - } else {  
140 - break;  
141 - }  
142 - }  
143 - });  
144 - } 142 + // 因为在dom事件里修改了model的值,必须写在scope.$apply中,否则页面上绑定效果无
  143 + // 另一种做法可以写在$watch方法中
  144 + scope.$apply(function() {
  145 + scope[ctrlAs].$$data = [];
  146 + scope[ctrlAs].$$calcuData();
  147 +
  148 + });
145 }); 149 });
146 150
147 151
@@ -314,6 +318,21 @@ angular.module(&#39;ScheduleApp&#39;).directive(&#39;saGuideboardgroup&#39;, [ @@ -314,6 +318,21 @@ angular.module(&#39;ScheduleApp&#39;).directive(&#39;saGuideboardgroup&#39;, [
314 } 318 }
315 ); 319 );
316 320
  321 + // 监控是否显示所有数据,$$isAll 变化
  322 + scope.$watch(
  323 + function() {
  324 + return scope[ctrlAs].$$isAll;
  325 + },
  326 + function(newValue, oldValue) {
  327 + console.log("dfdfdfdfdf");
  328 + if (scope[ctrlAs].$$dataReal.length > 0) {
  329 + scope[ctrlAs].$$data = [];
  330 + scope[ctrlAs].$$calcuData();
  331 + }
  332 + },
  333 + true
  334 + );
  335 +
317 // 监控线路id的变化 336 // 监控线路id的变化
318 attr.$observe("xlidvalue", function(value) { 337 attr.$observe("xlidvalue", function(value) {
319 if (value && value != "") { 338 if (value && value != "") {
@@ -337,13 +356,7 @@ angular.module(&#39;ScheduleApp&#39;).directive(&#39;saGuideboardgroup&#39;, [ @@ -337,13 +356,7 @@ angular.module(&#39;ScheduleApp&#39;).directive(&#39;saGuideboardgroup&#39;, [
337 }, scope[ctrlAs].$$dataReal); 356 }, scope[ctrlAs].$$dataReal);
338 357
339 scope[ctrlAs].$$data = []; 358 scope[ctrlAs].$$data = [];
340 - for (var i = 0; i < scope[ctrlAs].$$dataReal.length; i++) {  
341 - if (scope[ctrlAs].$$data.length < 10) {  
342 - scope[ctrlAs].$$data.push(scope[ctrlAs].$$dataReal[i]);  
343 - } else {  
344 - break;  
345 - }  
346 - } 359 + scope[ctrlAs].$$calcuData();
347 360
348 if (scope[ctrlAs].$$data_init) { 361 if (scope[ctrlAs].$$data_init) {
349 scope[ctrlAs].$$dataSelected = []; 362 scope[ctrlAs].$$dataSelected = [];
src/main/resources/static/pages/scheduleApp/module/common/dts2/guideboardGroup/saGuideboardgroupTemplate.html
@@ -53,7 +53,15 @@ @@ -53,7 +53,15 @@
53 </div> 53 </div>
54 <div class="col-md-3" style="padding-left: 0px;"> 54 <div class="col-md-3" style="padding-left: 0px;">
55 <input name="lpsearch" ng-model="$saGuideboardgroupCtrl.$$searchText" 55 <input name="lpsearch" ng-model="$saGuideboardgroupCtrl.$$searchText"
56 - type="text" class="input-sm" style="height: 20px; border: 1px solid #32C5D2;" placeholder="输入路牌名字..."/> 56 + type="text" class="input-sm" style="width: 120px; height: 20px; border: 1px solid #32C5D2;" placeholder="输入路牌名字..."/>
  57 + </div>
  58 + <div class="col-md-2" style="min-height: 19px; color: black; padding-left: 0px;">
  59 + <div class="col-md-3" style="padding-left: 0px; padding-right: 0px;">
  60 + <input type="checkbox" ng-model="$saGuideboardgroupCtrl.$$isAll"/>
  61 + </div>
  62 + <div class="col-md-9" style="padding-left: 0px; padding-right: 0px;">
  63 + <small>显示全部</small>
  64 + </div>
57 </div> 65 </div>
58 </div> 66 </div>
59 <div class="col-md-12 guideboard-select-cont"> 67 <div class="col-md-12 guideboard-select-cont">
src/main/resources/static/pages/scheduleApp/module/common/prj-common-directive.js
@@ -2247,6 +2247,37 @@ angular.module(&#39;ScheduleApp&#39;).directive(&#39;saGuideboardgroup&#39;, [ @@ -2247,6 +2247,37 @@ angular.module(&#39;ScheduleApp&#39;).directive(&#39;saGuideboardgroup&#39;, [
2247 self.$$searchText = undefined; // 搜索值 2247 self.$$searchText = undefined; // 搜索值
2248 self.$$dataSelected = []; // 选中的路牌列表 2248 self.$$dataSelected = []; // 选中的路牌列表
2249 self.$$dataSelectedStart = undefined; // 起始路牌 2249 self.$$dataSelectedStart = undefined; // 起始路牌
  2250 + self.$$isAll = false; // 是否显示全部
  2251 + self.$$showNumber = 10; // 显示的记录数
  2252 + self.$$calcuData = function() { // 处理$$data数据
  2253 + console.log(self.$$searchText);
  2254 + angular.forEach(self.$$dataReal, function(obj) {
  2255 + if (self.$$isAll) { // 显示全部
  2256 + if (self.$$searchText && self.$$searchText != "") { // 有筛选条件
  2257 + if (obj.$fullChars.indexOf(self.$$searchText) != -1
  2258 + || obj.$camelChars.indexOf(self.$$searchText) != -1
  2259 + || obj.lpname.indexOf(self.$$searchText) != -1) {
  2260 + this.push(obj);
  2261 + }
  2262 + } else {
  2263 + this.push(obj);
  2264 + }
  2265 + } else { // 显示限定数量
  2266 + if (this.length < self.$$showNumber) {
  2267 + if (self.$$searchText && self.$$searchText != "") { // 有筛选条件
  2268 + if (obj.$fullChars.indexOf(self.$$searchText) != -1
  2269 + || obj.$camelChars.indexOf(self.$$searchText) != -1
  2270 + || obj.lpname.indexOf(self.$$searchText) != -1) {
  2271 + this.push(obj);
  2272 + }
  2273 + } else {
  2274 + this.push(obj);
  2275 + }
  2276 + }
  2277 + }
  2278 + }, self.$$data);
  2279 +
  2280 + };
2250 2281
2251 //self.$$dataSelected = [ 2282 //self.$$dataSelected = [
2252 // {lpid: 11, lpname: '路11', isstart: false}, 2283 // {lpid: 11, lpname: '路11', isstart: false},
@@ -2313,40 +2344,13 @@ angular.module(&#39;ScheduleApp&#39;).directive(&#39;saGuideboardgroup&#39;, [ @@ -2313,40 +2344,13 @@ angular.module(&#39;ScheduleApp&#39;).directive(&#39;saGuideboardgroup&#39;, [
2313 } 2344 }
2314 }); 2345 });
2315 tElem.on('keyup', '[name=lpsearch]', function() { 2346 tElem.on('keyup', '[name=lpsearch]', function() {
2316 - console.log(scope[ctrlAs]["$$searchText"]);  
2317 - var sText = scope[ctrlAs]["$$searchText"];  
2318 - if (sText && sText != "") {  
2319 - // 因为在dom事件里修改了model的值,必须写在scope.$apply中,否则页面上绑定效果无  
2320 - // 另一种做法可以写在$watch方法中  
2321 - scope.$apply(function() {  
2322 - scope[ctrlAs].$$data = [];  
2323 - for (var k = 0; k < scope[ctrlAs].$$dataReal.length; k++) {  
2324 - var upTerm = sText.toUpperCase();  
2325 - if (scope[ctrlAs].$$data.length < 10) {  
2326 - if (scope[ctrlAs].$$dataReal[k].$fullChars.indexOf(upTerm) != -1  
2327 - || scope[ctrlAs].$$dataReal[k].$camelChars.indexOf(upTerm) != -1  
2328 - || scope[ctrlAs].$$dataReal[k].lpname.indexOf(upTerm) != -1) {  
2329 - //scope[ctrlAs].$$data.push(angular.copy(scope[ctrlAs].$$dataReal[k])); 2347 + // 因为在dom事件里修改了model的值,必须写在scope.$apply中,否则页面上绑定效果无
  2348 + // 另一种做法可以写在$watch方法中
  2349 + scope.$apply(function() {
  2350 + scope[ctrlAs].$$data = [];
  2351 + scope[ctrlAs].$$calcuData();
2330 2352
2331 - scope[ctrlAs].$$data.push(scope[ctrlAs].$$dataReal[k]);  
2332 - }  
2333 - } else {  
2334 - break;  
2335 - }  
2336 - }  
2337 - });  
2338 - } else {  
2339 - scope.$apply(function() {  
2340 - scope[ctrlAs].$$data = [];  
2341 - for (var i = 0; i < scope[ctrlAs].$$dataReal.length; i++) {  
2342 - if (scope[ctrlAs].$$data.length < 10) {  
2343 - scope[ctrlAs].$$data.push(scope[ctrlAs].$$dataReal[i]);  
2344 - } else {  
2345 - break;  
2346 - }  
2347 - }  
2348 - });  
2349 - } 2353 + });
2350 }); 2354 });
2351 2355
2352 2356
@@ -2519,6 +2523,21 @@ angular.module(&#39;ScheduleApp&#39;).directive(&#39;saGuideboardgroup&#39;, [ @@ -2519,6 +2523,21 @@ angular.module(&#39;ScheduleApp&#39;).directive(&#39;saGuideboardgroup&#39;, [
2519 } 2523 }
2520 ); 2524 );
2521 2525
  2526 + // 监控是否显示所有数据,$$isAll 变化
  2527 + scope.$watch(
  2528 + function() {
  2529 + return scope[ctrlAs].$$isAll;
  2530 + },
  2531 + function(newValue, oldValue) {
  2532 + console.log("dfdfdfdfdf");
  2533 + if (scope[ctrlAs].$$dataReal.length > 0) {
  2534 + scope[ctrlAs].$$data = [];
  2535 + scope[ctrlAs].$$calcuData();
  2536 + }
  2537 + },
  2538 + true
  2539 + );
  2540 +
2522 // 监控线路id的变化 2541 // 监控线路id的变化
2523 attr.$observe("xlidvalue", function(value) { 2542 attr.$observe("xlidvalue", function(value) {
2524 if (value && value != "") { 2543 if (value && value != "") {
@@ -2542,13 +2561,7 @@ angular.module(&#39;ScheduleApp&#39;).directive(&#39;saGuideboardgroup&#39;, [ @@ -2542,13 +2561,7 @@ angular.module(&#39;ScheduleApp&#39;).directive(&#39;saGuideboardgroup&#39;, [
2542 }, scope[ctrlAs].$$dataReal); 2561 }, scope[ctrlAs].$$dataReal);
2543 2562
2544 scope[ctrlAs].$$data = []; 2563 scope[ctrlAs].$$data = [];
2545 - for (var i = 0; i < scope[ctrlAs].$$dataReal.length; i++) {  
2546 - if (scope[ctrlAs].$$data.length < 10) {  
2547 - scope[ctrlAs].$$data.push(scope[ctrlAs].$$dataReal[i]);  
2548 - } else {  
2549 - break;  
2550 - }  
2551 - } 2564 + scope[ctrlAs].$$calcuData();
2552 2565
2553 if (scope[ctrlAs].$$data_init) { 2566 if (scope[ctrlAs].$$data_init) {
2554 scope[ctrlAs].$$dataSelected = []; 2567 scope[ctrlAs].$$dataSelected = [];
@@ -2688,6 +2701,38 @@ angular.module(&#39;ScheduleApp&#39;).directive(&#39;saEmployeegroup&#39;, [ @@ -2688,6 +2701,38 @@ angular.module(&#39;ScheduleApp&#39;).directive(&#39;saEmployeegroup&#39;, [
2688 self.$$dataFBSelected = []; // 选中的分班人员组配置列表 2701 self.$$dataFBSelected = []; // 选中的分班人员组配置列表
2689 self.$$dataFBInternalSelected = undefined; // 分班组内人员选中标识 2702 self.$$dataFBInternalSelected = undefined; // 分班组内人员选中标识
2690 self.$$dataFBSelectedStart = undefined; // 选中的起始分班人员组合 2703 self.$$dataFBSelectedStart = undefined; // 选中的起始分班人员组合
  2704 + self.$$isAll = false; // 是否显示全部
  2705 + self.$$showNumber = 10; // 显示的记录数
  2706 + self.$$calcuData = function() { // 处理$$data数据
  2707 + console.log(self.$$searchText);
  2708 + angular.forEach(self.$$dataReal, function(obj) {
  2709 + if (self.$$isAll) { // 显示全部
  2710 + if (self.$$searchText && self.$$searchText != "") { // 有筛选条件
  2711 + if (obj.$fullChars.indexOf(self.$$searchText) != -1
  2712 + || obj.$camelChars.indexOf(self.$$searchText) != -1
  2713 + || obj.$str.indexOf(self.$$searchText) != -1) {
  2714 + this.push(obj);
  2715 + }
  2716 + } else {
  2717 + this.push(obj);
  2718 + }
  2719 + } else { // 显示限定数量
  2720 + if (this.length < self.$$showNumber) {
  2721 + if (self.$$searchText && self.$$searchText != "") { // 有筛选条件
  2722 + if (obj.$fullChars.indexOf(self.$$searchText) != -1
  2723 + || obj.$camelChars.indexOf(self.$$searchText) != -1
  2724 + || obj.$str.indexOf(self.$$searchText) != -1) {
  2725 + this.push(obj);
  2726 + }
  2727 + } else {
  2728 + this.push(obj);
  2729 + }
  2730 + }
  2731 + }
  2732 + }, self.$$data);
  2733 +
  2734 + };
  2735 +
2691 2736
2692 //self.$$dataFBSelected = [ 2737 //self.$$dataFBSelected = [
2693 // {isstart: true, group: [ 2738 // {isstart: true, group: [
@@ -2762,38 +2807,13 @@ angular.module(&#39;ScheduleApp&#39;).directive(&#39;saEmployeegroup&#39;, [ @@ -2762,38 +2807,13 @@ angular.module(&#39;ScheduleApp&#39;).directive(&#39;saEmployeegroup&#39;, [
2762 } 2807 }
2763 }); 2808 });
2764 tElem.on('keyup', '[name=rysearch]', function() { 2809 tElem.on('keyup', '[name=rysearch]', function() {
2765 - console.log(scope[ctrlAs]["$$searchText"]);  
2766 - var sText = scope[ctrlAs]["$$searchText"];  
2767 - if (sText && sText != "") {  
2768 - // 因为在dom事件里修改了model的值,必须写在scope.$apply中,否则页面上绑定效果无  
2769 - // 另一种做法可以写在$watch方法中  
2770 - scope.$apply(function() {  
2771 - scope[ctrlAs].$$data = [];  
2772 - for (var k = 0; k < scope[ctrlAs].$$dataReal.length; k++) {  
2773 - var upTerm = sText.toUpperCase();  
2774 - if (scope[ctrlAs].$$data.length < 10) {  
2775 - if (scope[ctrlAs].$$dataReal[k].$fullChars.indexOf(upTerm) != -1  
2776 - || scope[ctrlAs].$$dataReal[k].$camelChars.indexOf(upTerm) != -1  
2777 - || scope[ctrlAs].$$dataReal[k].$str.indexOf(upTerm) != -1) {  
2778 - scope[ctrlAs].$$data.push(scope[ctrlAs].$$dataReal[k]);  
2779 - }  
2780 - } else {  
2781 - break;  
2782 - }  
2783 - }  
2784 - });  
2785 - } else {  
2786 - scope.$apply(function() {  
2787 - scope[ctrlAs].$$data = [];  
2788 - for (var i = 0; i < scope[ctrlAs].$$dataReal.length; i++) {  
2789 - if (scope[ctrlAs].$$data.length < 10) {  
2790 - scope[ctrlAs].$$data.push(scope[ctrlAs].$$dataReal[i]);  
2791 - } else {  
2792 - break;  
2793 - }  
2794 - }  
2795 - });  
2796 - } 2810 + // 因为在dom事件里修改了model的值,必须写在scope.$apply中,否则页面上绑定效果无
  2811 + // 另一种做法可以写在$watch方法中
  2812 + scope.$apply(function() {
  2813 + scope[ctrlAs].$$data = [];
  2814 + scope[ctrlAs].$$calcuData();
  2815 +
  2816 + });
2797 }); 2817 });
2798 2818
2799 2819
@@ -3240,6 +3260,21 @@ angular.module(&#39;ScheduleApp&#39;).directive(&#39;saEmployeegroup&#39;, [ @@ -3240,6 +3260,21 @@ angular.module(&#39;ScheduleApp&#39;).directive(&#39;saEmployeegroup&#39;, [
3240 } 3260 }
3241 ); 3261 );
3242 3262
  3263 + // 监控是否显示所有数据,$$isAll 变化
  3264 + scope.$watch(
  3265 + function() {
  3266 + return scope[ctrlAs].$$isAll;
  3267 + },
  3268 + function(newValue, oldValue) {
  3269 + console.log("dfdfdfdfdf");
  3270 + if (scope[ctrlAs].$$dataReal.length > 0) {
  3271 + scope[ctrlAs].$$data = [];
  3272 + scope[ctrlAs].$$calcuData();
  3273 + }
  3274 + },
  3275 + true
  3276 + );
  3277 +
3243 3278
3244 // 监控线路id的变化 3279 // 监控线路id的变化
3245 attr.$observe("xlidvalue", function(value) { 3280 attr.$observe("xlidvalue", function(value) {
@@ -3256,13 +3291,16 @@ angular.module(&#39;ScheduleApp&#39;).directive(&#39;saEmployeegroup&#39;, [ @@ -3256,13 +3291,16 @@ angular.module(&#39;ScheduleApp&#39;).directive(&#39;saEmployeegroup&#39;, [
3256 angular.forEach(result.content, function(obj) { 3291 angular.forEach(result.content, function(obj) {
3257 var n1 = obj.jsy == null ? "" : (obj.jsy.personnelName || ""); 3292 var n1 = obj.jsy == null ? "" : (obj.jsy.personnelName || "");
3258 var n2 = obj.spy == null ? "" : (obj.spy.personnelName || ""); 3293 var n2 = obj.spy == null ? "" : (obj.spy.personnelName || "");
3259 - var c1 = obj.jsy == null ? "" : (obj.jsy.jobCode || "");  
3260 - var c2 = obj.spy == null ? "" : (obj.spy.jobCode || ""); 3294 + var n3 = obj.dbbm || "";
  3295 + //var c1 = obj.jsy == null ? "" : (obj.jsy.jobCode || "");
  3296 + //var c2 = obj.spy == null ? "" : (obj.spy.jobCode || "");
  3297 +
3261 var str = []; 3298 var str = [];
3262 str.push(n1); 3299 str.push(n1);
3263 str.push(n2); 3300 str.push(n2);
3264 - str.push(c1);  
3265 - str.push(c2); 3301 + str.push(n3);
  3302 + //str.push(c1);
  3303 + //str.push(c2);
3266 this.push({ 3304 this.push({
3267 id: obj.id, 3305 id: obj.id,
3268 dbbm: obj.dbbm, 3306 dbbm: obj.dbbm,
@@ -3275,13 +3313,7 @@ angular.module(&#39;ScheduleApp&#39;).directive(&#39;saEmployeegroup&#39;, [ @@ -3275,13 +3313,7 @@ angular.module(&#39;ScheduleApp&#39;).directive(&#39;saEmployeegroup&#39;, [
3275 }, scope[ctrlAs].$$dataReal); 3313 }, scope[ctrlAs].$$dataReal);
3276 3314
3277 scope[ctrlAs].$$data = []; 3315 scope[ctrlAs].$$data = [];
3278 - for (var i = 0; i < scope[ctrlAs].$$dataReal.length; i++) {  
3279 - if (scope[ctrlAs].$$data.length < 10) {  
3280 - scope[ctrlAs].$$data.push(scope[ctrlAs].$$dataReal[i]);  
3281 - } else {  
3282 - break;  
3283 - }  
3284 - } 3316 + scope[ctrlAs].$$calcuData();
3285 3317
3286 if (scope[ctrlAs].$$data_init) { 3318 if (scope[ctrlAs].$$data_init) {
3287 scope[ctrlAs].$$dataSelected = []; 3319 scope[ctrlAs].$$dataSelected = [];
src/main/resources/static/pages/scheduleApp/module/core/ttInfoManage/detailedit/edit-detail2.html
@@ -59,7 +59,7 @@ @@ -59,7 +59,7 @@
59 iterobjexp="item.stationname" 59 iterobjexp="item.stationname"
60 searchph="请输拼音..." 60 searchph="请输拼音..."
61 searchexp="this.stationname" 61 searchexp="this.stationname"
62 - required > 62 + >
63 </sa-Select5> 63 </sa-Select5>
64 </div> 64 </div>
65 </div> 65 </div>
@@ -76,7 +76,7 @@ @@ -76,7 +76,7 @@
76 iterobjexp="item.stationname" 76 iterobjexp="item.stationname"
77 searchph="请输拼音..." 77 searchph="请输拼音..."
78 searchexp="this.stationname" 78 searchexp="this.stationname"
79 - required > 79 + >
80 </sa-Select5> 80 </sa-Select5>
81 </div> 81 </div>
82 </div> 82 </div>
@@ -93,7 +93,7 @@ @@ -93,7 +93,7 @@
93 iterobjexp="item.parkName" 93 iterobjexp="item.parkName"
94 searchph="请输拼音..." 94 searchph="请输拼音..."
95 searchexp="this.parkName" 95 searchexp="this.parkName"
96 - required > 96 + >
97 </sa-Select5> 97 </sa-Select5>
98 </div> 98 </div>
99 </div> 99 </div>
@@ -153,7 +153,6 @@ @@ -153,7 +153,6 @@
153 iterobjexp="item.name" 153 iterobjexp="item.name"
154 searchph="请选择班次类型..." 154 searchph="请选择班次类型..."
155 searchexp="this.name" 155 searchexp="this.name"
156 - required  
157 > 156 >
158 </sa-Select5> 157 </sa-Select5>
159 </div> 158 </div>
src/main/resources/static/pages/scheduleApp/module/core/ttInfoManage/detailedit/edit.html
@@ -95,7 +95,7 @@ @@ -95,7 +95,7 @@
95 95
96 <div ng-if="cell.ttdid" class="btn-group"> 96 <div ng-if="cell.ttdid" class="btn-group">
97 <input type="checkbox" ng-model="cell.sel"/> 97 <input type="checkbox" ng-model="cell.sel"/>
98 - <a href="javascript:" class="btn blue btn-outline btn-circle" data-toggle="dropdown"> 98 + <a ng-class="{'btn': true, 'blue': ctrl.validateCellInfo(cell), 'btn-danger': !ctrl.validateCellInfo(cell), 'btn-outline': true, 'btn-circle': true}" href="javascript:" data-toggle="dropdown">
99 <!-- 上下行图标 --> 99 <!-- 上下行图标 -->
100 <i ng-if="cell.xldir == '0'" class="fa fa-arrow-up" aria-hidden="true"></i> 100 <i ng-if="cell.xldir == '0'" class="fa fa-arrow-up" aria-hidden="true"></i>
101 <i ng-if="cell.xldir == '1'" class="fa fa-arrow-down" aria-hidden="true"></i> 101 <i ng-if="cell.xldir == '1'" class="fa fa-arrow-down" aria-hidden="true"></i>
src/main/resources/static/pages/scheduleApp/module/core/ttInfoManage/detailedit/timeTableDetailManage_old.js
@@ -102,7 +102,7 @@ angular.module(&#39;ScheduleApp&#39;).factory( @@ -102,7 +102,7 @@ angular.module(&#39;ScheduleApp&#39;).factory(
102 deferred.reject(); 102 deferred.reject();
103 } 103 }
104 } else { 104 } else {
105 - // 赋值(上下行,发车时间,班次类型 105 + // 赋值(上下行,发车时间,班次类型,起点站,终点站,停车场
106 if (value.fcsj) { 106 if (value.fcsj) {
107 ttinfodetailIds[index].fcsj = value.fcsj; 107 ttinfodetailIds[index].fcsj = value.fcsj;
108 } 108 }
@@ -112,6 +112,15 @@ angular.module(&#39;ScheduleApp&#39;).factory( @@ -112,6 +112,15 @@ angular.module(&#39;ScheduleApp&#39;).factory(
112 if (value.bcType) { 112 if (value.bcType) {
113 ttinfodetailIds[index].bc_type = value.bcType; 113 ttinfodetailIds[index].bc_type = value.bcType;
114 } 114 }
  115 + if (value.qdz) {
  116 + ttinfodetailIds[index].qdz = value.qdz;
  117 + }
  118 + if (value.zdz) {
  119 + ttinfodetailIds[index].zdz = value.zdz;
  120 + }
  121 + if (value.tcc) {
  122 + ttinfodetailIds[index].tcc = value.tcc;
  123 + }
115 124
116 success_counts ++; 125 success_counts ++;
117 if (success_counts + error_counts == ttinfodetailIds.length) { 126 if (success_counts + error_counts == ttinfodetailIds.length) {
@@ -245,6 +254,29 @@ angular.module(&#39;ScheduleApp&#39;).controller( @@ -245,6 +254,29 @@ angular.module(&#39;ScheduleApp&#39;).controller(
245 } 254 }
246 255
247 256
  257 + self.validateCellInfo = function(cell) {
  258 + if (cell.bc_type == 'in') {
  259 + if (cell.qdz == null || cell.tcc == null) {
  260 + return false;
  261 + } else {
  262 + return true;
  263 + }
  264 + } else if (cell.bc_type == 'out') {
  265 + if (cell.tcc == null || cell.zdz == null) {
  266 + return false;
  267 + } else {
  268 + return true;
  269 + }
  270 + } else {
  271 + if (cell.qdz == null || cell.zdz == null) {
  272 + return false;
  273 + } else {
  274 + return true;
  275 + }
  276 + }
  277 + }
  278 +
  279 +
248 } 280 }
249 281
250 ] 282 ]
src/main/resources/static/pages/scheduleApp/module/core/ttInfoManage/list.html
@@ -83,7 +83,7 @@ @@ -83,7 +83,7 @@
83 class="btn btn-info btn-sm" ng-if="info.isCancel == '0'"> 编辑 </a> 83 class="btn btn-info btn-sm" ng-if="info.isCancel == '0'"> 编辑 </a>
84 <!--<a ui-sref="ttInfoDetailManage_edit2({xlid: info.xl.id, ttid : info.id, xlname: info.xl.name, ttname : info.name})"--> 84 <!--<a ui-sref="ttInfoDetailManage_edit2({xlid: info.xl.id, ttid : info.id, xlname: info.xl.name, ttname : info.name})"-->
85 <!--class="btn btn-info btn-sm" ng-if="info.isCancel == '0'"> 编辑2 </a>--> 85 <!--class="btn btn-info btn-sm" ng-if="info.isCancel == '0'"> 编辑2 </a>-->
86 - <a ng-click="ctrl.toTtInfoDetailAuto()" 86 + <a ng-click="ctrl.toTtInfoDetailAuto(info.id)"
87 class="btn btn-info btn-sm" ng-if="info.isCancel == '0'"> 生成 </a> 87 class="btn btn-info btn-sm" ng-if="info.isCancel == '0'"> 生成 </a>
88 <a ui-sref="ttInfoDetailManage_form({xlid: info.xl.id, ttid : info.id, xlname: info.xl.name, ttname : info.name})" 88 <a ui-sref="ttInfoDetailManage_form({xlid: info.xl.id, ttid : info.id, xlname: info.xl.name, ttname : info.name})"
89 class="btn btn-info btn-sm" ng-if="info.isCancel == '0'"> 导入 </a> 89 class="btn btn-info btn-sm" ng-if="info.isCancel == '0'"> 导入 </a>
src/main/resources/static/pages/scheduleApp/module/core/ttInfoManage/module.js
@@ -132,9 +132,9 @@ angular.module(&#39;ScheduleApp&#39;).controller( @@ -132,9 +132,9 @@ angular.module(&#39;ScheduleApp&#39;).controller(
132 self.doPage(); 132 self.doPage();
133 133
134 // 自动生成时刻表 134 // 自动生成时刻表
135 - self.toTtInfoDetailAuto = function() { 135 + self.toTtInfoDetailAuto = function(ttinfoid) {
136 showPjax(); 136 showPjax();
137 - $.pjax({url: 'pages/base/timesmodel/index.html', container: pjaxContainer}); 137 + $.pjax({url: 'pages/base/timesmodel/add.html?no=' + ttinfoid, container: pjaxContainer});
138 }; 138 };
139 139
140 // TODO: 140 // TODO: