Commit c8dba8b918e74db1710c4a2cf26285282b4f003b

Authored by 潘钊
2 parents f9721565 3e76e1e5

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

# Conflicts:
#	src/main/java/com/bsth/data/gpsdata/client/ClientApp.java
Showing 22 changed files with 4314 additions and 2802 deletions
src/main/java/com/bsth/controller/report/ReportController.java
@@ -12,6 +12,7 @@ import org.springframework.web.bind.annotation.RequestMethod; @@ -12,6 +12,7 @@ import org.springframework.web.bind.annotation.RequestMethod;
12 import org.springframework.web.bind.annotation.RequestParam; 12 import org.springframework.web.bind.annotation.RequestParam;
13 import org.springframework.web.bind.annotation.RestController; 13 import org.springframework.web.bind.annotation.RestController;
14 14
  15 +import com.bsth.entity.StationRoute;
15 import com.bsth.entity.excep.ArrivalInfo; 16 import com.bsth.entity.excep.ArrivalInfo;
16 import com.bsth.entity.realcontrol.ScheduleRealInfo; 17 import com.bsth.entity.realcontrol.ScheduleRealInfo;
17 import com.bsth.service.report.ReportService; 18 import com.bsth.service.report.ReportService;
@@ -75,6 +76,17 @@ public class ReportController { @@ -75,6 +76,17 @@ public class ReportController {
75 } 76 }
76 77
77 78
  79 + @RequestMapping(value="/queryStrinon" ,method = RequestMethod.GET)
  80 + public List<StationRoute> queryStrinon(@RequestParam String line,
  81 + @RequestParam int zd){
  82 + return service.queryStrinon(line,zd);
  83 + }
  84 + @RequestMapping(value="/queryInOutStrtion" ,method = RequestMethod.GET)
  85 + public List<Map<String, Object>> queryInOutStrtion(@RequestParam String line,
  86 + @RequestParam String date,@RequestParam int zd,@RequestParam String lzsj){
  87 + return service.queryInOutStrtion(line,date,zd,lzsj);
  88 + }
  89 +
78 @RequestMapping(value="/queryListClzd" ,method = RequestMethod.GET) 90 @RequestMapping(value="/queryListClzd" ,method = RequestMethod.GET)
79 public List<ArrivalInfo> queryListClzd(@RequestParam String zd,@RequestParam String line, 91 public List<ArrivalInfo> queryListClzd(@RequestParam String zd,@RequestParam String line,
80 @RequestParam String zdlx,@RequestParam String fcsj,@RequestParam String ddsj){ 92 @RequestParam String zdlx,@RequestParam String fcsj,@RequestParam String ddsj){
@@ -84,6 +96,8 @@ public class ReportController { @@ -84,6 +96,8 @@ public class ReportController {
84 96
85 97
86 98
  99 +
  100 +
87 @RequestMapping(value="/exportQueryListClzd" ,method = RequestMethod.GET) 101 @RequestMapping(value="/exportQueryListClzd" ,method = RequestMethod.GET)
88 public List<Map<String, Object>> exportQueryListClzd(@RequestParam String zd,@RequestParam String line, 102 public List<Map<String, Object>> exportQueryListClzd(@RequestParam String zd,@RequestParam String line,
89 @RequestParam String zdlx,@RequestParam String fcsj,@RequestParam String ddsj){ 103 @RequestParam String zdlx,@RequestParam String fcsj,@RequestParam String ddsj){
src/main/java/com/bsth/data/car_out_info/CarOutInfo.java
1 -package com.bsth.data.car_out_info;  
2 -  
3 -import com.bsth.entity.realcontrol.ScheduleRealInfo;  
4 -  
5 -import java.util.List;  
6 -  
7 -/**  
8 - * Created by panzhao on 2017/5/7.  
9 - */  
10 -public interface CarOutInfo {  
11 -  
12 - void updateAll();  
13 -  
14 - void update(String lineCode);  
15 -  
16 - void update(List<ScheduleRealInfo> list) ;  
17 -} 1 +package com.bsth.data.car_out_info;
  2 +
  3 +import com.bsth.entity.realcontrol.ScheduleRealInfo;
  4 +
  5 +import java.util.List;
  6 +
  7 +/**
  8 + * Created by panzhao on 2017/5/7.
  9 + */
  10 +public interface CarOutInfo {
  11 +
  12 + void updateAll();
  13 +
  14 + void update(String lineCode);
  15 +
  16 + void update(List<ScheduleRealInfo> list) ;
  17 +}
src/main/java/com/bsth/data/car_out_info/CarOutInfoHandler.java
1 -package com.bsth.data.car_out_info;  
2 -  
3 -import com.bsth.data.BasicData;  
4 -import com.bsth.data.schedule.DayOfSchedule;  
5 -import com.bsth.data.schedule.ScheduleComparator;  
6 -import com.bsth.entity.realcontrol.ScheduleRealInfo;  
7 -import com.google.common.collect.ArrayListMultimap;  
8 -import org.apache.commons.lang3.StringUtils;  
9 -import org.slf4j.Logger;  
10 -import org.slf4j.LoggerFactory;  
11 -import org.springframework.beans.factory.annotation.Autowired;  
12 -import org.springframework.boot.CommandLineRunner;  
13 -import org.springframework.jdbc.core.BatchPreparedStatementSetter;  
14 -import org.springframework.jdbc.core.JdbcTemplate;  
15 -import org.springframework.stereotype.Component;  
16 -import org.springframework.stereotype.Service;  
17 -import org.springframework.transaction.annotation.Transactional;  
18 -  
19 -import java.sql.PreparedStatement;  
20 -import java.sql.SQLException;  
21 -import java.util.*;  
22 -  
23 -/**  
24 - * 发车信息表处理程序  
25 - * Created by panzhao on 2017/5/5.  
26 - */  
27 -@Service  
28 -public class CarOutInfoHandler implements CommandLineRunner, CarOutInfo {  
29 -  
30 - @Autowired  
31 - DayOfSchedule dayOfSchedule;  
32 -  
33 - //班次类型对照表  
34 - Map<String, String> bcTypeMap;  
35 -  
36 - private static ScheduleComparator.FCSJ schFCSJComparator = new ScheduleComparator.FCSJ();  
37 -  
38 - @Autowired  
39 - JdbcTemplate jdbcTemplate;  
40 -  
41 - Logger logger = LoggerFactory.getLogger(this.getClass());  
42 -  
43 - /**  
44 - * 全量更新发车信息表  
45 - */  
46 - @Override  
47 - public void updateAll() {  
48 - Set<String> ks = BasicData.lineCode2NameMap.keySet();  
49 - for (String lineCode : ks) {  
50 - update(lineCode);  
51 - }  
52 - }  
53 -  
54 - @Override  
55 - public void update(String lineCode) {  
56 - try {  
57 - ArrayListMultimap<String, ScheduleRealInfo> lpScheduleMap = dayOfSchedule.getLpScheduleMap();  
58 - List<ScheduleRealInfo> list = new ArrayList<>();  
59 -  
60 - Set<String> ks = lpScheduleMap.keySet();  
61 - String prefix = lineCode + "_";  
62 - for (String k : ks) {  
63 - if (k.indexOf(prefix) != -1) {  
64 - list.addAll(lpScheduleMap.get(k));  
65 - }  
66 - }  
67 -  
68 - update(list);  
69 - } catch (Exception e) {  
70 - logger.error("", e);  
71 - }  
72 - }  
73 -  
74 - @Transactional  
75 - @Override  
76 - public void update(List<ScheduleRealInfo> list) {  
77 - if (list.size() == 0)  
78 - return;  
79 - String lineCode = list.get(0).getXlBm();  
80 - //按上下行分组  
81 - List<ScheduleRealInfo> ups = new ArrayList<>(), downs = new ArrayList<>();  
82 - for (ScheduleRealInfo sch : list) {  
83 - if (sch.getXlDir().equals("0"))  
84 - ups.add(sch);  
85 - else  
86 - downs.add(sch);  
87 - }  
88 -  
89 - ScheduleRealInfo[] upArray = nexts(ups),  
90 - downArray = nexts(downs);  
91 -  
92 - final List<ScheduleRealInfo> pstArray = mergeArray(upArray, downArray);  
93 - //删除  
94 - jdbcTemplate.update("delete from bsth_t_clfcxxb where line_code=?", lineCode);  
95 - //重新写入  
96 - jdbcTemplate.batchUpdate("insert into bsth_t_clfcxxb(rq, line_code, line_name, lp_name, lp_sn, dfsj, nbbm, cph, bc_type, end_station_name, updown, jGh, jName, remarks, sn)" +  
97 - " VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)", new BatchPreparedStatementSetter() {  
98 - @Override  
99 - public void setValues(PreparedStatement ps, int i) throws SQLException {  
100 - ScheduleRealInfo sch = pstArray.get(i);  
101 - ps.setString(1, sch.getScheduleDateStr());  
102 - ps.setString(2, sch.getXlBm());  
103 - ps.setString(3, sch.getXlName());  
104 - ps.setString(4, sch.getLpName());  
105 - ps.setInt(5, sch.getFcno());  
106 - ps.setString(6, sch.getDfsj());  
107 - ps.setString(7, sch.getClZbh());  
108 - ps.setString(8, BasicData.nbbmCompanyPlateMap.get(sch.getClZbh()));  
109 - ps.setString(9, bcTypeMap.containsKey(sch.getBcType()) ? bcTypeMap.get(sch.getBcType()) : sch.getBcType());  
110 - ps.setString(10, sch.getZdzName());  
111 - ps.setInt(11, Integer.parseInt(sch.getXlDir()));  
112 - ps.setString(12, sch.getjGh());  
113 - ps.setString(13, sch.getjName());  
114 - ps.setString(14, sch.getRemarks());  
115 - ps.setInt(15, sch.getFcpSn());  
116 - }  
117 -  
118 - @Override  
119 - public int getBatchSize() {  
120 - return pstArray.size();  
121 - }  
122 - });  
123 - }  
124 -  
125 - private List<ScheduleRealInfo> mergeArray(ScheduleRealInfo[] upArray, ScheduleRealInfo[] downArray) {  
126 - List<ScheduleRealInfo> list = new ArrayList<>();  
127 - for (int i = 0; i < upArray.length; i++) {  
128 - if (upArray[i] != null) {  
129 - upArray[i].setFcpSn(i + 1);  
130 - list.add(upArray[i]);  
131 - }  
132 - }  
133 - for (int i = 0; i < downArray.length; i++) {  
134 - if (downArray[i] != null) {  
135 - downArray[i].setFcpSn(i + 1);  
136 - list.add(downArray[i]);  
137 - }  
138 - }  
139 - return list;  
140 - }  
141 -  
142 - /**  
143 - * 接下来要执行的3个班次  
144 - *  
145 - * @param list  
146 - * @return  
147 - */  
148 - private ScheduleRealInfo[] nexts(List<ScheduleRealInfo> list) {  
149 - ScheduleRealInfo[] array = new ScheduleRealInfo[3];  
150 - Collections.sort(list, schFCSJComparator);  
151 -  
152 - int count = 0, threshold = 1000 * 60 * 30;  
153 - long t = System.currentTimeMillis();  
154 - for (ScheduleRealInfo sch : list) {  
155 - if (count == 3)  
156 - break;  
157 -  
158 - //烂班  
159 - if (sch.isDestroy())  
160 - continue;  
161 -  
162 - //进场、出场、2点间空驶  
163 - if (sch.getBcType().equals("in")  
164 - || sch.getBcType().equals("out")  
165 - || sch.getBcType().equals("ldks"))  
166 - continue;  
167 -  
168 - //有实发实达时间的  
169 - if (StringUtils.isNotEmpty(sch.getFcsjActual())  
170 - || StringUtils.isNotEmpty(sch.getZdsjActual()))  
171 - continue;  
172 -  
173 - if (t - sch.getDfsjT() > threshold)  
174 - continue;  
175 -  
176 - array[count] = sch;  
177 - count++;  
178 - }  
179 - return array;  
180 - }  
181 -  
182 - @Autowired  
183 - UpdateInfoThread updateInfoThread;  
184 -  
185 - @Override  
186 - public void run(String... strings) throws Exception {  
187 - bcTypeMap = new HashMap<>();  
188 - bcTypeMap.put("normal", "正常班次");  
189 - bcTypeMap.put("region", "区间");  
190 - bcTypeMap.put("venting", "直放");  
191 - bcTypeMap.put("major", "放站");  
192 - bcTypeMap.put("ldks", "两点间空驶");  
193 - //Application.mainServices.scheduleWithFixedDelay(updateInfoThread, 60, 40, TimeUnit.SECONDS);  
194 - }  
195 -  
196 - @Component  
197 - private static class UpdateInfoThread extends Thread {  
198 -  
199 - @Autowired  
200 - CarOutInfo carOutInfoHandler;  
201 -  
202 - @Override  
203 - public void run() {  
204 - carOutInfoHandler.updateAll();  
205 - }  
206 - }  
207 -} 1 +package com.bsth.data.car_out_info;
  2 +
  3 +import com.bsth.data.BasicData;
  4 +import com.bsth.data.schedule.DayOfSchedule;
  5 +import com.bsth.data.schedule.ScheduleComparator;
  6 +import com.bsth.entity.realcontrol.ScheduleRealInfo;
  7 +import com.google.common.collect.ArrayListMultimap;
  8 +import org.apache.commons.lang3.StringUtils;
  9 +import org.slf4j.Logger;
  10 +import org.slf4j.LoggerFactory;
  11 +import org.springframework.beans.factory.annotation.Autowired;
  12 +import org.springframework.boot.CommandLineRunner;
  13 +import org.springframework.jdbc.core.BatchPreparedStatementSetter;
  14 +import org.springframework.jdbc.core.JdbcTemplate;
  15 +import org.springframework.stereotype.Component;
  16 +import org.springframework.stereotype.Service;
  17 +import org.springframework.transaction.annotation.Transactional;
  18 +
  19 +import java.sql.PreparedStatement;
  20 +import java.sql.SQLException;
  21 +import java.util.*;
  22 +
  23 +/**
  24 + * 发车信息表处理程序
  25 + * Created by panzhao on 2017/5/5.
  26 + */
  27 +@Service
  28 +public class CarOutInfoHandler implements CommandLineRunner, CarOutInfo {
  29 +
  30 + @Autowired
  31 + DayOfSchedule dayOfSchedule;
  32 +
  33 + //班次类型对照表
  34 + Map<String, String> bcTypeMap;
  35 +
  36 + private static ScheduleComparator.FCSJ schFCSJComparator = new ScheduleComparator.FCSJ();
  37 +
  38 + @Autowired
  39 + JdbcTemplate jdbcTemplate;
  40 +
  41 + Logger logger = LoggerFactory.getLogger(this.getClass());
  42 +
  43 + /**
  44 + * 全量更新发车信息表
  45 + */
  46 + @Override
  47 + public void updateAll() {
  48 + Set<String> ks = BasicData.lineCode2NameMap.keySet();
  49 + for (String lineCode : ks) {
  50 + update(lineCode);
  51 + }
  52 + }
  53 +
  54 + @Override
  55 + public void update(String lineCode) {
  56 + try {
  57 + ArrayListMultimap<String, ScheduleRealInfo> lpScheduleMap = dayOfSchedule.getLpScheduleMap();
  58 + List<ScheduleRealInfo> list = new ArrayList<>();
  59 +
  60 + Set<String> ks = lpScheduleMap.keySet();
  61 + String prefix = lineCode + "_";
  62 + for (String k : ks) {
  63 + if (k.indexOf(prefix) != -1) {
  64 + list.addAll(lpScheduleMap.get(k));
  65 + }
  66 + }
  67 +
  68 + update(list);
  69 + } catch (Exception e) {
  70 + logger.error("", e);
  71 + }
  72 + }
  73 +
  74 + @Transactional
  75 + @Override
  76 + public void update(List<ScheduleRealInfo> list) {
  77 + if (list.size() == 0)
  78 + return;
  79 + String lineCode = list.get(0).getXlBm();
  80 + //按上下行分组
  81 + List<ScheduleRealInfo> ups = new ArrayList<>(), downs = new ArrayList<>();
  82 + for (ScheduleRealInfo sch : list) {
  83 + if (sch.getXlDir().equals("0"))
  84 + ups.add(sch);
  85 + else
  86 + downs.add(sch);
  87 + }
  88 +
  89 + ScheduleRealInfo[] upArray = nexts(ups),
  90 + downArray = nexts(downs);
  91 +
  92 + final List<ScheduleRealInfo> pstArray = mergeArray(upArray, downArray);
  93 + //删除
  94 + jdbcTemplate.update("delete from bsth_t_clfcxxb where line_code=?", lineCode);
  95 + //重新写入
  96 + jdbcTemplate.batchUpdate("insert into bsth_t_clfcxxb(rq, line_code, line_name, lp_name, lp_sn, dfsj, nbbm, cph, bc_type, end_station_name, updown, jGh, jName, remarks, sn)" +
  97 + " VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)", new BatchPreparedStatementSetter() {
  98 + @Override
  99 + public void setValues(PreparedStatement ps, int i) throws SQLException {
  100 + ScheduleRealInfo sch = pstArray.get(i);
  101 + ps.setString(1, sch.getScheduleDateStr());
  102 + ps.setString(2, sch.getXlBm());
  103 + ps.setString(3, sch.getXlName());
  104 + ps.setString(4, sch.getLpName());
  105 + ps.setInt(5, sch.getFcno());
  106 + ps.setString(6, sch.getDfsj());
  107 + ps.setString(7, sch.getClZbh());
  108 + ps.setString(8, BasicData.nbbmCompanyPlateMap.get(sch.getClZbh()));
  109 + ps.setString(9, bcTypeMap.containsKey(sch.getBcType()) ? bcTypeMap.get(sch.getBcType()) : sch.getBcType());
  110 + ps.setString(10, sch.getZdzName());
  111 + ps.setInt(11, Integer.parseInt(sch.getXlDir()));
  112 + ps.setString(12, sch.getjGh());
  113 + ps.setString(13, sch.getjName());
  114 + ps.setString(14, sch.getRemarks());
  115 + ps.setInt(15, sch.getFcpSn());
  116 + }
  117 +
  118 + @Override
  119 + public int getBatchSize() {
  120 + return pstArray.size();
  121 + }
  122 + });
  123 + }
  124 +
  125 + private List<ScheduleRealInfo> mergeArray(ScheduleRealInfo[] upArray, ScheduleRealInfo[] downArray) {
  126 + List<ScheduleRealInfo> list = new ArrayList<>();
  127 + for (int i = 0; i < upArray.length; i++) {
  128 + if (upArray[i] != null) {
  129 + upArray[i].setFcpSn(i + 1);
  130 + list.add(upArray[i]);
  131 + }
  132 + }
  133 + for (int i = 0; i < downArray.length; i++) {
  134 + if (downArray[i] != null) {
  135 + downArray[i].setFcpSn(i + 1);
  136 + list.add(downArray[i]);
  137 + }
  138 + }
  139 + return list;
  140 + }
  141 +
  142 + /**
  143 + * 接下来要执行的3个班次
  144 + *
  145 + * @param list
  146 + * @return
  147 + */
  148 + private ScheduleRealInfo[] nexts(List<ScheduleRealInfo> list) {
  149 + ScheduleRealInfo[] array = new ScheduleRealInfo[3];
  150 + Collections.sort(list, schFCSJComparator);
  151 +
  152 + int count = 0, threshold = 1000 * 60 * 30;
  153 + long t = System.currentTimeMillis();
  154 + for (ScheduleRealInfo sch : list) {
  155 + if (count == 3)
  156 + break;
  157 +
  158 + //烂班
  159 + if (sch.isDestroy())
  160 + continue;
  161 +
  162 + //进场、出场、2点间空驶
  163 + if (sch.getBcType().equals("in")
  164 + || sch.getBcType().equals("out")
  165 + || sch.getBcType().equals("ldks"))
  166 + continue;
  167 +
  168 + //有实发实达时间的
  169 + if (StringUtils.isNotEmpty(sch.getFcsjActual())
  170 + || StringUtils.isNotEmpty(sch.getZdsjActual()))
  171 + continue;
  172 +
  173 + if (t - sch.getDfsjT() > threshold)
  174 + continue;
  175 +
  176 + array[count] = sch;
  177 + count++;
  178 + }
  179 + return array;
  180 + }
  181 +
  182 + @Autowired
  183 + UpdateInfoThread updateInfoThread;
  184 +
  185 + @Override
  186 + public void run(String... strings) throws Exception {
  187 + bcTypeMap = new HashMap<>();
  188 + bcTypeMap.put("normal", "正常班次");
  189 + bcTypeMap.put("region", "区间");
  190 + bcTypeMap.put("venting", "直放");
  191 + bcTypeMap.put("major", "放站");
  192 + bcTypeMap.put("ldks", "两点间空驶");
  193 + //Application.mainServices.scheduleWithFixedDelay(updateInfoThread, 60, 40, TimeUnit.SECONDS);
  194 + }
  195 +
  196 + @Component
  197 + private static class UpdateInfoThread extends Thread {
  198 +
  199 + @Autowired
  200 + CarOutInfo carOutInfoHandler;
  201 +
  202 + @Override
  203 + public void run() {
  204 + carOutInfoHandler.updateAll();
  205 + }
  206 + }
  207 +}
src/main/java/com/bsth/data/forecast/ArrivalComparator.java
1 -package com.bsth.data.forecast;  
2 -  
3 -import com.bsth.data.forecast.entity.ArrivalEntity;  
4 -  
5 -import java.util.Comparator;  
6 -  
7 -public class ArrivalComparator implements Comparator<ArrivalEntity>{  
8 -  
9 - @Override  
10 - public int compare(ArrivalEntity a1, ArrivalEntity a2) {  
11 - return (int) (a1.getTs() - a2.getTs());  
12 - }  
13 -} 1 +package com.bsth.data.forecast;
  2 +
  3 +import com.bsth.data.forecast.entity.ArrivalEntity;
  4 +
  5 +import java.util.Comparator;
  6 +
  7 +public class ArrivalComparator implements Comparator<ArrivalEntity>{
  8 +
  9 + @Override
  10 + public int compare(ArrivalEntity a1, ArrivalEntity a2) {
  11 + return (int) (a1.getTs() - a2.getTs());
  12 + }
  13 +}
src/main/java/com/bsth/data/forecast/ArrivalDataLoader.java
1 -package com.bsth.data.forecast;  
2 -  
3 -import com.bsth.data.BasicData;  
4 -import com.bsth.data.LineConfigData;  
5 -import com.bsth.data.forecast.entity.ArrivalEntity;  
6 -import com.bsth.entity.realcontrol.LineConfig;  
7 -import com.bsth.util.db.DBUtils_MS;  
8 -import org.slf4j.Logger;  
9 -import org.slf4j.LoggerFactory;  
10 -import org.springframework.beans.factory.annotation.Autowired;  
11 -import org.springframework.stereotype.Component;  
12 -  
13 -import java.sql.Connection;  
14 -import java.sql.PreparedStatement;  
15 -import java.sql.ResultSet;  
16 -import java.sql.SQLException;  
17 -import java.util.ArrayList;  
18 -import java.util.Calendar;  
19 -import java.util.Collection;  
20 -import java.util.List;  
21 -  
22 -/**  
23 - *  
24 - * @ClassName: DataLoader  
25 - * @Description: TODO(从数据库加载进出站数据)  
26 - * @author PanZhao  
27 - * @date 2016年8月19日 上午9:59:21  
28 - *  
29 - */  
30 -@Component  
31 -public class ArrivalDataLoader {  
32 -  
33 - private static Long prveLoadTime;  
34 -  
35 - private final static long DAY_TIME = 1000 * 60 * 60 * 24;  
36 -  
37 - private Logger logger = LoggerFactory.getLogger(this.getClass());  
38 -  
39 - @Autowired  
40 - LineConfigData lineConfigData;  
41 -  
42 - /**  
43 - *  
44 - * @Title: load  
45 - * @Description: TODO(根据上次加载时间,查询之后的增量数据)  
46 - */  
47 - public List<ArrivalEntity> load(){  
48 - List<ArrivalEntity> list = null;  
49 -  
50 - if(null == prveLoadTime)  
51 - list = recovery();  
52 - else{  
53 - Calendar cal = Calendar.getInstance();  
54 - //周数,表分区字段  
55 - int weeks_year = cal.get(Calendar.WEEK_OF_YEAR);  
56 -  
57 - Connection conn = null;  
58 - PreparedStatement ps = null;  
59 - ResultSet rs = null;  
60 -  
61 - String sql = "select * from bsth_c_arrival_info where weeks_year=? AND create_timestamp > ? AND create_timestamp <=? AND ABS(create_timestamp - ts) < 3600000 order by create_date";  
62 - try{  
63 - long t = System.currentTimeMillis();  
64 -  
65 - conn = DBUtils_MS.getConnection();  
66 - ps = conn.prepareStatement(sql);  
67 - ps.setInt(1, weeks_year);  
68 - ps.setLong(2, prveLoadTime);  
69 - ps.setLong(3, t);  
70 - rs = ps.executeQuery();  
71 -  
72 - list = resultSet2Set(rs);  
73 -  
74 - prveLoadTime = t;  
75 - }catch(Exception e){  
76 - logger.error("", e);  
77 - }finally {  
78 - DBUtils_MS.close(rs, ps, conn);  
79 - }  
80 - }  
81 - return list;  
82 - }  
83 -  
84 - /**  
85 - *  
86 - * @Title: recovery  
87 - * @Description: TODO(从数据库恢复数据,按照线路的开始运营时间恢复)  
88 - */  
89 - public List<ArrivalEntity> recovery(){  
90 - Collection<LineConfig> confs = lineConfigData.getAll();  
91 - long t = System.currentTimeMillis()  
92 - ,st;  
93 -  
94 - List<ArrivalEntity> all = new ArrayList<>();  
95 - for(LineConfig conf : confs){  
96 - st = conf.getCurrStartTime();  
97 - if(t < st)  
98 - st = st - DAY_TIME;  
99 - try{  
100 - all.addAll(loadByLineAndTime(conf.getLine().getLineCode(), st, t));  
101 - }catch(Exception e){  
102 - logger.error("", e);  
103 - }  
104 - }  
105 -  
106 - prveLoadTime = t;  
107 - return all;  
108 - }  
109 -  
110 - /**  
111 - *  
112 - * @Title: loadByLineAndStartTime  
113 - * @Description: TODO(根据线路和时间戳加载数据)  
114 - */  
115 - public List<ArrivalEntity> loadByLineAndTime(String lineCode, long st, long et){  
116 - Calendar cal = Calendar.getInstance();  
117 - cal.setTimeInMillis(st);  
118 - int weeks_year = cal.get(Calendar.WEEK_OF_YEAR);  
119 -  
120 - Connection conn = null;  
121 - PreparedStatement ps = null;  
122 - ResultSet rs = null;  
123 -  
124 - List<ArrivalEntity> list = new ArrayList<>();  
125 - String sql = "select * from bsth_c_arrival_info where weeks_year=? and line_id=? AND create_timestamp > ? AND create_timestamp <=? AND ABS(create_timestamp - ts) < 3600000 order by ts";  
126 - try{  
127 - conn = DBUtils_MS.getConnection();  
128 - ps = conn.prepareStatement(sql);  
129 - ps.setInt(1, weeks_year);  
130 - ps.setString(2, lineCode);  
131 - ps.setLong(3, st);  
132 - ps.setLong(4, et);  
133 - rs = ps.executeQuery();  
134 -  
135 - list = resultSet2Set(rs);  
136 - }catch(Exception e){  
137 - logger.error("", e);  
138 - }finally {  
139 - DBUtils_MS.close(rs, ps, conn);  
140 - }  
141 - return list;  
142 - }  
143 -  
144 - /**  
145 - *  
146 - * @Title: loadByLineAndStartTime  
147 - * @Description: TODO(根据线路,走向和时间戳加载数据)  
148 - */  
149 - public List<ArrivalEntity> loadByLineAndTime(String lineCode, int updown, long st, long et){  
150 - Calendar cal = Calendar.getInstance();  
151 - cal.setTimeInMillis(st);  
152 - int weeks_year = cal.get(Calendar.WEEK_OF_YEAR);  
153 -  
154 - Connection conn = null;  
155 - PreparedStatement ps = null;  
156 - ResultSet rs = null;  
157 -  
158 - List<ArrivalEntity> list = new ArrayList<>();  
159 - String sql = "select * from bsth_c_arrival_info where weeks_year=? and line_id=? and up_down=? and in_out=0 AND create_timestamp > ? AND create_timestamp <=? AND ABS(create_timestamp - ts) < 3600000 order by ts";  
160 - try{  
161 - conn = DBUtils_MS.getConnection();  
162 - ps = conn.prepareStatement(sql);  
163 - ps.setInt(1, weeks_year);  
164 - ps.setString(2, lineCode);  
165 - ps.setInt(3, updown);  
166 - ps.setLong(4, st);  
167 - ps.setLong(5, et);  
168 - rs = ps.executeQuery();  
169 -  
170 - list = resultSet2Set(rs);  
171 - }catch(Exception e){  
172 - logger.error("", e);  
173 - }finally {  
174 - DBUtils_MS.close(rs, ps, conn);  
175 - }  
176 - return list;  
177 - }  
178 -  
179 - public List<ArrivalEntity> resultSet2Set(ResultSet rs) throws SQLException{  
180 - List<ArrivalEntity> list = new ArrayList<>();  
181 -  
182 - ArrivalEntity arr;  
183 - while(rs.next()){  
184 - arr = new ArrivalEntity();  
185 - arr.setDeviceId(rs.getString("device_id"));  
186 - arr.setNbbm(BasicData.deviceId2NbbmMap.get(arr.getDeviceId()));  
187 - if(null == arr.getNbbm()){  
188 - logger.warn("未注册的设备号," + arr.getDeviceId());  
189 - continue;  
190 - }  
191 -  
192 - arr.setTs(rs.getLong("ts"));  
193 - arr.setLineCode(rs.getString("line_id"));  
194 - arr.setUpDown(rs.getInt("up_down"));  
195 - arr.setStopNo(rs.getString("stop_no"));  
196 - arr.setStopName(BasicData.stationCode2NameMap.get(arr.getStopNo()));  
197 - arr.setInOut(rs.getInt("in_out"));  
198 - arr.setCreateDate(rs.getLong("create_timestamp"));  
199 - arr.setWeeksYear(rs.getInt("weeks_year"));  
200 - arr.setEnable(true);  
201 -  
202 - list.add(arr);  
203 - }  
204 - return list;  
205 - }  
206 -  
207 - public static void setPrveLoadTime(long t){  
208 - prveLoadTime = t;  
209 - }  
210 -} 1 +package com.bsth.data.forecast;
  2 +
  3 +import com.bsth.data.BasicData;
  4 +import com.bsth.data.LineConfigData;
  5 +import com.bsth.data.forecast.entity.ArrivalEntity;
  6 +import com.bsth.entity.realcontrol.LineConfig;
  7 +import com.bsth.util.db.DBUtils_MS;
  8 +import org.slf4j.Logger;
  9 +import org.slf4j.LoggerFactory;
  10 +import org.springframework.beans.factory.annotation.Autowired;
  11 +import org.springframework.stereotype.Component;
  12 +
  13 +import java.sql.Connection;
  14 +import java.sql.PreparedStatement;
  15 +import java.sql.ResultSet;
  16 +import java.sql.SQLException;
  17 +import java.util.ArrayList;
  18 +import java.util.Calendar;
  19 +import java.util.Collection;
  20 +import java.util.List;
  21 +
  22 +/**
  23 + *
  24 + * @ClassName: DataLoader
  25 + * @Description: TODO(从数据库加载进出站数据)
  26 + * @author PanZhao
  27 + * @date 2016年8月19日 上午9:59:21
  28 + *
  29 + */
  30 +@Component
  31 +public class ArrivalDataLoader {
  32 +
  33 + private static Long prveLoadTime;
  34 +
  35 + private final static long DAY_TIME = 1000 * 60 * 60 * 24;
  36 +
  37 + private Logger logger = LoggerFactory.getLogger(this.getClass());
  38 +
  39 + @Autowired
  40 + LineConfigData lineConfigData;
  41 +
  42 + /**
  43 + *
  44 + * @Title: load
  45 + * @Description: TODO(根据上次加载时间,查询之后的增量数据)
  46 + */
  47 + public List<ArrivalEntity> load(){
  48 + List<ArrivalEntity> list = null;
  49 +
  50 + if(null == prveLoadTime)
  51 + list = recovery();
  52 + else{
  53 + Calendar cal = Calendar.getInstance();
  54 + //周数,表分区字段
  55 + int weeks_year = cal.get(Calendar.WEEK_OF_YEAR);
  56 +
  57 + Connection conn = null;
  58 + PreparedStatement ps = null;
  59 + ResultSet rs = null;
  60 +
  61 + String sql = "select * from bsth_c_arrival_info where weeks_year=? AND create_timestamp > ? AND create_timestamp <=? AND ABS(create_timestamp - ts) < 3600000 order by create_date";
  62 + try{
  63 + long t = System.currentTimeMillis();
  64 +
  65 + conn = DBUtils_MS.getConnection();
  66 + ps = conn.prepareStatement(sql);
  67 + ps.setInt(1, weeks_year);
  68 + ps.setLong(2, prveLoadTime);
  69 + ps.setLong(3, t);
  70 + rs = ps.executeQuery();
  71 +
  72 + list = resultSet2Set(rs);
  73 +
  74 + prveLoadTime = t;
  75 + }catch(Exception e){
  76 + logger.error("", e);
  77 + }finally {
  78 + DBUtils_MS.close(rs, ps, conn);
  79 + }
  80 + }
  81 + return list;
  82 + }
  83 +
  84 + /**
  85 + *
  86 + * @Title: recovery
  87 + * @Description: TODO(从数据库恢复数据,按照线路的开始运营时间恢复)
  88 + */
  89 + public List<ArrivalEntity> recovery(){
  90 + Collection<LineConfig> confs = lineConfigData.getAll();
  91 + long t = System.currentTimeMillis()
  92 + ,st;
  93 +
  94 + List<ArrivalEntity> all = new ArrayList<>();
  95 + for(LineConfig conf : confs){
  96 + st = conf.getCurrStartTime();
  97 + if(t < st)
  98 + st = st - DAY_TIME;
  99 + try{
  100 + all.addAll(loadByLineAndTime(conf.getLine().getLineCode(), st, t));
  101 + }catch(Exception e){
  102 + logger.error("", e);
  103 + }
  104 + }
  105 +
  106 + prveLoadTime = t;
  107 + return all;
  108 + }
  109 +
  110 + /**
  111 + *
  112 + * @Title: loadByLineAndStartTime
  113 + * @Description: TODO(根据线路和时间戳加载数据)
  114 + */
  115 + public List<ArrivalEntity> loadByLineAndTime(String lineCode, long st, long et){
  116 + Calendar cal = Calendar.getInstance();
  117 + cal.setTimeInMillis(st);
  118 + int weeks_year = cal.get(Calendar.WEEK_OF_YEAR);
  119 +
  120 + Connection conn = null;
  121 + PreparedStatement ps = null;
  122 + ResultSet rs = null;
  123 +
  124 + List<ArrivalEntity> list = new ArrayList<>();
  125 + String sql = "select * from bsth_c_arrival_info where weeks_year=? and line_id=? AND create_timestamp > ? AND create_timestamp <=? AND ABS(create_timestamp - ts) < 3600000 order by ts";
  126 + try{
  127 + conn = DBUtils_MS.getConnection();
  128 + ps = conn.prepareStatement(sql);
  129 + ps.setInt(1, weeks_year);
  130 + ps.setString(2, lineCode);
  131 + ps.setLong(3, st);
  132 + ps.setLong(4, et);
  133 + rs = ps.executeQuery();
  134 +
  135 + list = resultSet2Set(rs);
  136 + }catch(Exception e){
  137 + logger.error("", e);
  138 + }finally {
  139 + DBUtils_MS.close(rs, ps, conn);
  140 + }
  141 + return list;
  142 + }
  143 +
  144 + /**
  145 + *
  146 + * @Title: loadByLineAndStartTime
  147 + * @Description: TODO(根据线路,走向和时间戳加载数据)
  148 + */
  149 + public List<ArrivalEntity> loadByLineAndTime(String lineCode, int updown, long st, long et){
  150 + Calendar cal = Calendar.getInstance();
  151 + cal.setTimeInMillis(st);
  152 + int weeks_year = cal.get(Calendar.WEEK_OF_YEAR);
  153 +
  154 + Connection conn = null;
  155 + PreparedStatement ps = null;
  156 + ResultSet rs = null;
  157 +
  158 + List<ArrivalEntity> list = new ArrayList<>();
  159 + String sql = "select * from bsth_c_arrival_info where weeks_year=? and line_id=? and up_down=? and in_out=0 AND create_timestamp > ? AND create_timestamp <=? AND ABS(create_timestamp - ts) < 3600000 order by ts";
  160 + try{
  161 + conn = DBUtils_MS.getConnection();
  162 + ps = conn.prepareStatement(sql);
  163 + ps.setInt(1, weeks_year);
  164 + ps.setString(2, lineCode);
  165 + ps.setInt(3, updown);
  166 + ps.setLong(4, st);
  167 + ps.setLong(5, et);
  168 + rs = ps.executeQuery();
  169 +
  170 + list = resultSet2Set(rs);
  171 + }catch(Exception e){
  172 + logger.error("", e);
  173 + }finally {
  174 + DBUtils_MS.close(rs, ps, conn);
  175 + }
  176 + return list;
  177 + }
  178 +
  179 + public List<ArrivalEntity> resultSet2Set(ResultSet rs) throws SQLException{
  180 + List<ArrivalEntity> list = new ArrayList<>();
  181 +
  182 + ArrivalEntity arr;
  183 + while(rs.next()){
  184 + arr = new ArrivalEntity();
  185 + arr.setDeviceId(rs.getString("device_id"));
  186 + arr.setNbbm(BasicData.deviceId2NbbmMap.get(arr.getDeviceId()));
  187 + if(null == arr.getNbbm()){
  188 + logger.warn("未注册的设备号," + arr.getDeviceId());
  189 + continue;
  190 + }
  191 +
  192 + arr.setTs(rs.getLong("ts"));
  193 + arr.setLineCode(rs.getString("line_id"));
  194 + arr.setUpDown(rs.getInt("up_down"));
  195 + arr.setStopNo(rs.getString("stop_no"));
  196 + arr.setStopName(BasicData.stationCode2NameMap.get(arr.getStopNo()));
  197 + arr.setInOut(rs.getInt("in_out"));
  198 + arr.setCreateDate(rs.getLong("create_timestamp"));
  199 + arr.setWeeksYear(rs.getInt("weeks_year"));
  200 + arr.setEnable(true);
  201 +
  202 + list.add(arr);
  203 + }
  204 + return list;
  205 + }
  206 +
  207 + public static void setPrveLoadTime(long t){
  208 + prveLoadTime = t;
  209 + }
  210 +}
src/main/java/com/bsth/data/forecast/entity/ArrivalEntity.java
1 -package com.bsth.data.forecast.entity;  
2 -  
3 -import com.bsth.data.BasicData;  
4 -  
5 -import java.text.SimpleDateFormat;  
6 -import java.util.Date;  
7 -  
8 -/**  
9 - *  
10 - * @ClassName: ArrivalEntity  
11 - * @Description: TODO(进出站实体)  
12 - * @author PanZhao  
13 - * @date 2016年8月19日 上午9:32:20  
14 - *  
15 - */  
16 -public class ArrivalEntity {  
17 -  
18 - /** 设备号*/  
19 - private String deviceId;  
20 -  
21 - private String nbbm;  
22 -  
23 - /** 站点名称 */  
24 - private String stopName;  
25 -  
26 - /** 时间戳*/  
27 - private Long ts;  
28 -  
29 - /** 线路编码*/  
30 - private String lineCode;  
31 -  
32 - /** 上下行*/  
33 - private Integer upDown;  
34 -  
35 - /**站点编码*/  
36 - private String stopNo;  
37 -  
38 - /** 0: 进 1:出*/  
39 - private Integer inOut;  
40 -  
41 - private Long createDate;  
42 -  
43 - /** 是否有效 */  
44 - private boolean enable;  
45 -  
46 - /**分区字段,当年的第几周*/  
47 - private Integer weeksYear;  
48 -  
49 - private boolean tcc;  
50 -  
51 - //是否被纠正  
52 - private boolean correct;  
53 -  
54 - private String correctText;  
55 -  
56 - /** -1 则信号有效,但程序标记为不使用 */  
57 - private int flag = 0;  
58 -  
59 - public ArrivalEntity(){}  
60 -  
61 - public ArrivalEntity(String deviceId, long ts, String lineCode, int upDown, String stopNo, int inOut, long createDate,  
62 - int weeksYear, String stopName) {  
63 -  
64 - this.deviceId = deviceId;  
65 - this.ts = ts;  
66 - this.lineCode = lineCode;  
67 - this.upDown = upDown;  
68 - this.stopNo = stopNo;  
69 - this.stopName = stopName;  
70 - this.inOut = inOut;  
71 - this.createDate = createDate;  
72 - }  
73 -  
74 -/* @Override  
75 - public boolean equals(Object obj) {  
76 - ArrivalEntity a2 = (ArrivalEntity)obj;  
77 -  
78 - return this.toString().equals(a2.toString())  
79 - && Math.abs(this.ts - a2.ts) < EQ_RANGE;  
80 - }  
81 -  
82 - @Override  
83 - public int hashCode() {  
84 - return this.toString().hashCode();  
85 - }*/  
86 -  
87 -  
88 - @Override  
89 - public String toString() {  
90 - try {  
91 - SimpleDateFormat sdfHHmm = new SimpleDateFormat("HH:mm");  
92 - return "["+BasicData.deviceId2NbbmMap.get(this.deviceId)+", "+sdfHHmm.format(new Date(this.ts))  
93 - +","+(this.getUpDown()==0?"上行":"下行")+","+(this.inOut==0?"进":"出")+","+this.stopNo+" ("+this.stopName+")]";  
94 - } catch (Exception e) {  
95 - return "";  
96 - }  
97 - }  
98 -  
99 - public String getLineCode() {  
100 - return lineCode;  
101 - }  
102 -  
103 - public void setLineCode(String lineCode) {  
104 - this.lineCode = lineCode;  
105 - }  
106 -  
107 - public Integer getUpDown() {  
108 - return upDown;  
109 - }  
110 -  
111 - public void setUpDown(Integer upDown) {  
112 - this.upDown = upDown;  
113 - }  
114 -  
115 - public String getStopNo() {  
116 - return stopNo;  
117 - }  
118 -  
119 - public void setStopNo(String stopNo) {  
120 - this.stopNo = stopNo;  
121 - }  
122 -  
123 - public Integer getInOut() {  
124 - return inOut;  
125 - }  
126 -  
127 - public void setInOut(Integer inOut) {  
128 - this.inOut = inOut;  
129 - }  
130 -  
131 - public Long getCreateDate() {  
132 - return createDate;  
133 - }  
134 -  
135 - public void setCreateDate(Long createDate) {  
136 - this.createDate = createDate;  
137 - }  
138 -  
139 - public Integer getWeeksYear() {  
140 - return weeksYear;  
141 - }  
142 -  
143 - public void setWeeksYear(Integer weeksYear) {  
144 - this.weeksYear = weeksYear;  
145 - }  
146 -  
147 - public String getDeviceId() {  
148 - return deviceId;  
149 - }  
150 -  
151 - public void setDeviceId(String deviceId) {  
152 - this.deviceId = deviceId;  
153 - }  
154 -  
155 - public Long getTs() {  
156 - return ts;  
157 - }  
158 -  
159 - public void setTs(Long ts) {  
160 - this.ts = ts;  
161 - }  
162 -  
163 - public String getStopName() {  
164 - return stopName;  
165 - }  
166 -  
167 - public void setStopName(String stopName) {  
168 - this.stopName = stopName;  
169 - }  
170 -  
171 - public String getId(){  
172 - return this.deviceId + "_" + this.ts;  
173 - }  
174 -  
175 - public String getNbbm() {  
176 - return nbbm;  
177 - }  
178 -  
179 - public void setNbbm(String nbbm) {  
180 - this.nbbm = nbbm;  
181 - }  
182 -  
183 - public boolean isEnable() {  
184 - return enable;  
185 - }  
186 -  
187 - public void setEnable(boolean enable) {  
188 - this.enable = enable;  
189 - }  
190 -  
191 - public boolean isTcc() {  
192 - return tcc;  
193 - }  
194 -  
195 - public void setTcc(boolean tcc) {  
196 - this.tcc = tcc;  
197 - }  
198 -  
199 - public boolean isOutTcc() {  
200 - return isTcc() && inOut == 1;  
201 - }  
202 -  
203 - public boolean isCorrect() {  
204 - return correct;  
205 - }  
206 -  
207 - public void setCorrect(boolean correct) {  
208 - this.correct = correct;  
209 - }  
210 -  
211 - public String getCorrectText() {  
212 - return correctText;  
213 - }  
214 -  
215 - public void setCorrectText(String correctText) {  
216 - this.correctText = correctText;  
217 - }  
218 -  
219 - public Integer getFlag() {  
220 - return flag;  
221 - }  
222 -  
223 - public void setFlag(Integer flag) {  
224 - this.flag = flag;  
225 - }  
226 -} 1 +package com.bsth.data.forecast.entity;
  2 +
  3 +import com.bsth.data.BasicData;
  4 +
  5 +import java.text.SimpleDateFormat;
  6 +import java.util.Date;
  7 +
  8 +/**
  9 + *
  10 + * @ClassName: ArrivalEntity
  11 + * @Description: TODO(进出站实体)
  12 + * @author PanZhao
  13 + * @date 2016年8月19日 上午9:32:20
  14 + *
  15 + */
  16 +public class ArrivalEntity {
  17 +
  18 + /** 设备号*/
  19 + private String deviceId;
  20 +
  21 + private String nbbm;
  22 +
  23 + /** 站点名称 */
  24 + private String stopName;
  25 +
  26 + /** 时间戳*/
  27 + private Long ts;
  28 +
  29 + /** 线路编码*/
  30 + private String lineCode;
  31 +
  32 + /** 上下行*/
  33 + private Integer upDown;
  34 +
  35 + /**站点编码*/
  36 + private String stopNo;
  37 +
  38 + /** 0: 进 1:出*/
  39 + private Integer inOut;
  40 +
  41 + private Long createDate;
  42 +
  43 + /** 是否有效 */
  44 + private boolean enable;
  45 +
  46 + /**分区字段,当年的第几周*/
  47 + private Integer weeksYear;
  48 +
  49 + private boolean tcc;
  50 +
  51 + //是否被纠正
  52 + private boolean correct;
  53 +
  54 + private String correctText;
  55 +
  56 + /** -1 则信号有效,但程序标记为不使用 */
  57 + private int flag = 0;
  58 +
  59 + public ArrivalEntity(){}
  60 +
  61 + public ArrivalEntity(String deviceId, long ts, String lineCode, int upDown, String stopNo, int inOut, long createDate,
  62 + int weeksYear, String stopName) {
  63 +
  64 + this.deviceId = deviceId;
  65 + this.ts = ts;
  66 + this.lineCode = lineCode;
  67 + this.upDown = upDown;
  68 + this.stopNo = stopNo;
  69 + this.stopName = stopName;
  70 + this.inOut = inOut;
  71 + this.createDate = createDate;
  72 + }
  73 +
  74 +/* @Override
  75 + public boolean equals(Object obj) {
  76 + ArrivalEntity a2 = (ArrivalEntity)obj;
  77 +
  78 + return this.toString().equals(a2.toString())
  79 + && Math.abs(this.ts - a2.ts) < EQ_RANGE;
  80 + }
  81 +
  82 + @Override
  83 + public int hashCode() {
  84 + return this.toString().hashCode();
  85 + }*/
  86 +
  87 +
  88 + @Override
  89 + public String toString() {
  90 + try {
  91 + SimpleDateFormat sdfHHmm = new SimpleDateFormat("HH:mm");
  92 + return "["+BasicData.deviceId2NbbmMap.get(this.deviceId)+", "+sdfHHmm.format(new Date(this.ts))
  93 + +","+(this.getUpDown()==0?"上行":"下行")+","+(this.inOut==0?"进":"出")+","+this.stopNo+" ("+this.stopName+")]";
  94 + } catch (Exception e) {
  95 + return "";
  96 + }
  97 + }
  98 +
  99 + public String getLineCode() {
  100 + return lineCode;
  101 + }
  102 +
  103 + public void setLineCode(String lineCode) {
  104 + this.lineCode = lineCode;
  105 + }
  106 +
  107 + public Integer getUpDown() {
  108 + return upDown;
  109 + }
  110 +
  111 + public void setUpDown(Integer upDown) {
  112 + this.upDown = upDown;
  113 + }
  114 +
  115 + public String getStopNo() {
  116 + return stopNo;
  117 + }
  118 +
  119 + public void setStopNo(String stopNo) {
  120 + this.stopNo = stopNo;
  121 + }
  122 +
  123 + public Integer getInOut() {
  124 + return inOut;
  125 + }
  126 +
  127 + public void setInOut(Integer inOut) {
  128 + this.inOut = inOut;
  129 + }
  130 +
  131 + public Long getCreateDate() {
  132 + return createDate;
  133 + }
  134 +
  135 + public void setCreateDate(Long createDate) {
  136 + this.createDate = createDate;
  137 + }
  138 +
  139 + public Integer getWeeksYear() {
  140 + return weeksYear;
  141 + }
  142 +
  143 + public void setWeeksYear(Integer weeksYear) {
  144 + this.weeksYear = weeksYear;
  145 + }
  146 +
  147 + public String getDeviceId() {
  148 + return deviceId;
  149 + }
  150 +
  151 + public void setDeviceId(String deviceId) {
  152 + this.deviceId = deviceId;
  153 + }
  154 +
  155 + public Long getTs() {
  156 + return ts;
  157 + }
  158 +
  159 + public void setTs(Long ts) {
  160 + this.ts = ts;
  161 + }
  162 +
  163 + public String getStopName() {
  164 + return stopName;
  165 + }
  166 +
  167 + public void setStopName(String stopName) {
  168 + this.stopName = stopName;
  169 + }
  170 +
  171 + public String getId(){
  172 + return this.deviceId + "_" + this.ts;
  173 + }
  174 +
  175 + public String getNbbm() {
  176 + return nbbm;
  177 + }
  178 +
  179 + public void setNbbm(String nbbm) {
  180 + this.nbbm = nbbm;
  181 + }
  182 +
  183 + public boolean isEnable() {
  184 + return enable;
  185 + }
  186 +
  187 + public void setEnable(boolean enable) {
  188 + this.enable = enable;
  189 + }
  190 +
  191 + public boolean isTcc() {
  192 + return tcc;
  193 + }
  194 +
  195 + public void setTcc(boolean tcc) {
  196 + this.tcc = tcc;
  197 + }
  198 +
  199 + public boolean isOutTcc() {
  200 + return isTcc() && inOut == 1;
  201 + }
  202 +
  203 + public boolean isCorrect() {
  204 + return correct;
  205 + }
  206 +
  207 + public void setCorrect(boolean correct) {
  208 + this.correct = correct;
  209 + }
  210 +
  211 + public String getCorrectText() {
  212 + return correctText;
  213 + }
  214 +
  215 + public void setCorrectText(String correctText) {
  216 + this.correctText = correctText;
  217 + }
  218 +
  219 + public Integer getFlag() {
  220 + return flag;
  221 + }
  222 +
  223 + public void setFlag(Integer flag) {
  224 + this.flag = flag;
  225 + }
  226 +}
src/main/java/com/bsth/data/gpsdata/client/GpsBeforeBuffer.java
1 -package com.bsth.data.gpsdata.client;  
2 -  
3 -import com.bsth.Application;  
4 -import com.bsth.data.BasicData;  
5 -import com.bsth.data.gpsdata.GpsEntity;  
6 -import com.bsth.data.gpsdata.arrival.GpsRealAnalyse;  
7 -import com.bsth.data.gpsdata.client.pd.protocol.BasicInfo;  
8 -import org.apache.commons.lang3.StringUtils;  
9 -import org.springframework.beans.factory.annotation.Autowired;  
10 -import org.springframework.stereotype.Component;  
11 -  
12 -import java.util.ArrayList;  
13 -import java.util.LinkedList;  
14 -import java.util.List;  
15 -import java.util.concurrent.TimeUnit;  
16 -  
17 -/**  
18 - * 从 socket client 到 .. 的缓冲  
19 - * Created by panzhao on 2017/5/4.  
20 - */  
21 -@Component  
22 -public class GpsBeforeBuffer {  
23 -  
24 - static LinkedList<GpsEntity> linkedList = new LinkedList<>();  
25 -  
26 - @Autowired  
27 - GpsHandleThread gpsHandleThread;  
28 -  
29 - public void put(BasicInfo basicInfo){  
30 - //放弃补发数据  
31 - byte cacheData = getCacheState(basicInfo.getServiceState());  
32 - if(cacheData == 1)  
33 - return;  
34 - GpsEntity gps = new GpsEntity();  
35 -  
36 - gps.setDeviceId(basicInfo.getDeviceId());  
37 - gps.setTimestamp(basicInfo.getTimestamp());  
38 - gps.setLat(basicInfo.getLat());  
39 - gps.setLon(basicInfo.getLon());  
40 - gps.setDirection((float)basicInfo.getDirection() / 10);  
41 - gps.setValid(basicInfo.getGpsValid());  
42 - gps.setCompanyCode(basicInfo.getCompanyCode());  
43 - gps.setStopNo(basicInfo.getStopNo());  
44 - gps.setUpDown(basicInfo.getUpOrDown());  
45 - gps.setSpeed((float)basicInfo.getSpeedGps() / 10);  
46 - gps.setLineId(String.valueOf(basicInfo.getLineId()));  
47 - gps.setState((int) getService(basicInfo.getServiceState()));  
48 - //没有设备号  
49 - if (StringUtils.isBlank(gps.getDeviceId()))  
50 - return;  
51 -  
52 - String nbbm = BasicData.deviceId2NbbmMap.get(gps.getDeviceId());  
53 - if (StringUtils.isBlank(nbbm))  
54 - gps.setIncomplete(true);  
55 - else  
56 - gps.setNbbm(nbbm);  
57 -  
58 - linkedList.addLast(gps);  
59 - }  
60 -  
61 - public byte getCacheState(long serviceState) {  
62 - return (byte)(((serviceState & 0x00100000) == 0x00100000) ? 1 : 0);  
63 - }  
64 -  
65 - public void init(){  
66 - Application.mainServices.scheduleWithFixedDelay(gpsHandleThread, 20 * 1000, 1100, TimeUnit.MILLISECONDS);  
67 - }  
68 -  
69 - @Component  
70 - public static class GpsHandleThread extends Thread{  
71 -  
72 - List<GpsEntity> list;  
73 -  
74 - @Autowired  
75 - GpsRealAnalyse gpsRealAnalyse;  
76 -  
77 - @Override  
78 - public void run() {  
79 - list = new ArrayList<>(100);  
80 -  
81 - GpsEntity gps;  
82 - for(int i = 0; i < 2000; i ++){  
83 - gps = linkedList.poll();  
84 - if(gps == null)  
85 - break;  
86 - list.add(gps);  
87 - }  
88 -  
89 - gpsRealAnalyse.analyse(list);  
90 - }  
91 - }  
92 -  
93 - /**  
94 - * 获取运营状态  
95 - *  
96 - * @return -1无效 0运营 1未运营  
97 - */  
98 - public static byte getService(long serviceState) {  
99 - if ((serviceState & 0x00020000) == 0x00020000 || (serviceState & 0x80000000) == 0x80000000)  
100 - return -1;  
101 - return (byte) (((serviceState & 0x02000000) == 0x02000000) ? 1 : 0);  
102 - } 1 +package com.bsth.data.gpsdata.client;
  2 +
  3 +import com.bsth.Application;
  4 +import com.bsth.data.BasicData;
  5 +import com.bsth.data.gpsdata.GpsEntity;
  6 +import com.bsth.data.gpsdata.arrival.GpsRealAnalyse;
  7 +import com.bsth.data.gpsdata.client.pd.protocol.BasicInfo;
  8 +import org.apache.commons.lang3.StringUtils;
  9 +import org.springframework.beans.factory.annotation.Autowired;
  10 +import org.springframework.stereotype.Component;
  11 +
  12 +import java.util.ArrayList;
  13 +import java.util.LinkedList;
  14 +import java.util.List;
  15 +import java.util.concurrent.TimeUnit;
  16 +
  17 +/**
  18 + * 从 socket client 到 .. 的缓冲
  19 + * Created by panzhao on 2017/5/4.
  20 + */
  21 +@Component
  22 +public class GpsBeforeBuffer {
  23 +
  24 + static LinkedList<GpsEntity> linkedList = new LinkedList<>();
  25 +
  26 + @Autowired
  27 + GpsHandleThread gpsHandleThread;
  28 +
  29 + public void put(BasicInfo basicInfo){
  30 + //放弃补发数据
  31 + byte cacheData = getCacheState(basicInfo.getServiceState());
  32 + if(cacheData == 1)
  33 + return;
  34 + GpsEntity gps = new GpsEntity();
  35 +
  36 + gps.setDeviceId(basicInfo.getDeviceId());
  37 + gps.setTimestamp(basicInfo.getTimestamp());
  38 + gps.setLat(basicInfo.getLat());
  39 + gps.setLon(basicInfo.getLon());
  40 + gps.setDirection((float)basicInfo.getDirection() / 10);
  41 + gps.setValid(basicInfo.getGpsValid());
  42 + gps.setCompanyCode(basicInfo.getCompanyCode());
  43 + gps.setStopNo(basicInfo.getStopNo());
  44 + gps.setUpDown(basicInfo.getUpOrDown());
  45 + gps.setSpeed((float)basicInfo.getSpeedGps() / 10);
  46 + gps.setLineId(String.valueOf(basicInfo.getLineId()));
  47 + gps.setState((int) getService(basicInfo.getServiceState()));
  48 + //没有设备号
  49 + if (StringUtils.isBlank(gps.getDeviceId()))
  50 + return;
  51 +
  52 + String nbbm = BasicData.deviceId2NbbmMap.get(gps.getDeviceId());
  53 + if (StringUtils.isBlank(nbbm))
  54 + gps.setIncomplete(true);
  55 + else
  56 + gps.setNbbm(nbbm);
  57 +
  58 + linkedList.addLast(gps);
  59 + }
  60 +
  61 + public byte getCacheState(long serviceState) {
  62 + return (byte)(((serviceState & 0x00100000) == 0x00100000) ? 1 : 0);
  63 + }
  64 +
  65 + public void init(){
  66 + Application.mainServices.scheduleWithFixedDelay(gpsHandleThread, 20 * 1000, 1100, TimeUnit.MILLISECONDS);
  67 + }
  68 +
  69 + @Component
  70 + public static class GpsHandleThread extends Thread{
  71 +
  72 + List<GpsEntity> list;
  73 +
  74 + @Autowired
  75 + GpsRealAnalyse gpsRealAnalyse;
  76 +
  77 + @Override
  78 + public void run() {
  79 + list = new ArrayList<>(100);
  80 +
  81 + GpsEntity gps;
  82 + for(int i = 0; i < 2000; i ++){
  83 + gps = linkedList.poll();
  84 + if(gps == null)
  85 + break;
  86 + list.add(gps);
  87 + }
  88 +
  89 + gpsRealAnalyse.analyse(list);
  90 + }
  91 + }
  92 +
  93 + /**
  94 + * 获取运营状态
  95 + *
  96 + * @return -1无效 0运营 1未运营
  97 + */
  98 + public static byte getService(long serviceState) {
  99 + if ((serviceState & 0x00020000) == 0x00020000 || (serviceState & 0x80000000) == 0x80000000)
  100 + return -1;
  101 + return (byte) (((serviceState & 0x02000000) == 0x02000000) ? 1 : 0);
  102 + }
103 } 103 }
104 \ No newline at end of file 104 \ No newline at end of file
src/main/java/com/bsth/repository/realcontrol/ScheduleRealInfoRepository.java
@@ -90,11 +90,11 @@ public interface ScheduleRealInfoRepository extends BaseRepository&lt;ScheduleRealI @@ -90,11 +90,11 @@ public interface ScheduleRealInfoRepository extends BaseRepository&lt;ScheduleRealI
90 List<ScheduleRealInfo> correctForm(String line,String startDate,String endDate,String lpName,String code); 90 List<ScheduleRealInfo> correctForm(String line,String startDate,String endDate,String lpName,String code);
91 91
92 @EntityGraph(value = "scheduleRealInfo_cTasks", type = EntityGraph.EntityGraphType.FETCH) 92 @EntityGraph(value = "scheduleRealInfo_cTasks", type = EntityGraph.EntityGraphType.FETCH)
93 - @Query(value="select DISTINCT s from ScheduleRealInfo s where s.jName = ?1 and s.clZbh = ?2 and s.lpName = ?3 and s.scheduleDate = str_to_date(?4,'%Y-%m-%d') and s.xlBm=?5 order by realExecDate,dfsj") 93 + @Query(value="select DISTINCT s from ScheduleRealInfo s where s.jName = ?1 and s.clZbh = ?2 and s.lpName = ?3 and s.scheduleDate = str_to_date(?4,'%Y-%m-%d') and s.xlBm=?5 order by realExecDate,fcsj")
94 List<ScheduleRealInfo> queryListWaybill(String jName,String clZbh,String lpName,String date,String line); 94 List<ScheduleRealInfo> queryListWaybill(String jName,String clZbh,String lpName,String date,String line);
95 95
96 @EntityGraph(value = "scheduleRealInfo_cTasks", type = EntityGraph.EntityGraphType.FETCH) 96 @EntityGraph(value = "scheduleRealInfo_cTasks", type = EntityGraph.EntityGraphType.FETCH)
97 - @Query(value="select DISTINCT s from ScheduleRealInfo s where s.jGh = ?1 and s.clZbh = ?2 and s.lpName = ?3 and s.scheduleDate = str_to_date(?4,'%Y-%m-%d') and s.xlBm=?5 order by realExecDate,dfsj") 97 + @Query(value="select DISTINCT s from ScheduleRealInfo s where s.jGh = ?1 and s.clZbh = ?2 and s.lpName = ?3 and s.scheduleDate = str_to_date(?4,'%Y-%m-%d') and s.xlBm=?5 order by realExecDate,fcsj")
98 List<ScheduleRealInfo> queryListWaybillXcld(String jGh,String clZbh,String lpName,String date,String line); 98 List<ScheduleRealInfo> queryListWaybillXcld(String jGh,String clZbh,String lpName,String date,String line);
99 99
100 // @EntityGraph(value = "scheduleRealInfo_cTasks", type = EntityGraph.EntityGraphType.FETCH) 100 // @EntityGraph(value = "scheduleRealInfo_cTasks", type = EntityGraph.EntityGraphType.FETCH)
@@ -105,9 +105,12 @@ public interface ScheduleRealInfoRepository extends BaseRepository&lt;ScheduleRealI @@ -105,9 +105,12 @@ public interface ScheduleRealInfoRepository extends BaseRepository&lt;ScheduleRealI
105 @Query(value="select DISTINCT s from ScheduleRealInfo s where s.xlBm = ?1 and DATE_FORMAT(s.scheduleDate,'%Y-%m-%d') = ?2 order by s.xlBm,s.clZbh,s.jGh,s.adjustExps,s.fcsj") 105 @Query(value="select DISTINCT s from ScheduleRealInfo s where s.xlBm = ?1 and DATE_FORMAT(s.scheduleDate,'%Y-%m-%d') = ?2 order by s.xlBm,s.clZbh,s.jGh,s.adjustExps,s.fcsj")
106 List<ScheduleRealInfo> scheduleByDateAndLineTjrb(String line,String date); 106 List<ScheduleRealInfo> scheduleByDateAndLineTjrb(String line,String date);
107 107
  108 + @EntityGraph(value = "scheduleRealInfo_cTasks", type = EntityGraph.EntityGraphType.FETCH)
  109 + @Query(value="select DISTINCT s from ScheduleRealInfo s where s.xlBm = ?1 and DATE_FORMAT(s.scheduleDate,'%Y-%m-%d') = ?2 and s.xlDir=?3 and s.fcsjActual is not null and s.zdsjActual is not null order by s.realExecDate,s.fcsjActual")
  110 + List<ScheduleRealInfo> scheduleByDateAndLineInOut(String line,String date,String zd);
108 111
109 @EntityGraph(value = "scheduleRealInfo_cTasks", type = EntityGraph.EntityGraphType.FETCH) 112 @EntityGraph(value = "scheduleRealInfo_cTasks", type = EntityGraph.EntityGraphType.FETCH)
110 - @Query(value="select DISTINCT s from ScheduleRealInfo s where s.clZbh = ?1 and s.scheduleDate = str_to_date(?2,'%Y-%m-%d') and xlBm =?3 order by realExecDate,dfsj") 113 + @Query(value="select DISTINCT s from ScheduleRealInfo s where s.clZbh = ?1 and s.scheduleDate = str_to_date(?2,'%Y-%m-%d') and xlBm =?3 order by realExecDate,fcsj")
111 List<ScheduleRealInfo> queryListWaybill2(String clZbh,String date,String line); 114 List<ScheduleRealInfo> queryListWaybill2(String clZbh,String date,String line);
112 115
113 @EntityGraph(value = "scheduleRealInfo_cTasks", type = EntityGraph.EntityGraphType.FETCH) 116 @EntityGraph(value = "scheduleRealInfo_cTasks", type = EntityGraph.EntityGraphType.FETCH)
src/main/java/com/bsth/service/realcontrol/impl/ScheduleRealInfoServiceImpl.java
@@ -4024,13 +4024,17 @@ public class ScheduleRealInfoServiceImpl extends BaseServiceImpl&lt;ScheduleRealInf @@ -4024,13 +4024,17 @@ public class ScheduleRealInfoServiceImpl extends BaseServiceImpl&lt;ScheduleRealInf
4024 String xlName = map.get("xlName").toString(); 4024 String xlName = map.get("xlName").toString();
4025 String state = map.get("state").toString(); 4025 String state = map.get("state").toString();
4026 String type = map.get("type").toString(); 4026 String type = map.get("type").toString();
4027 - 4027 +
4028 List<Map<String, Object>> dataList2 = new ArrayList<Map<String, Object>>(); 4028 List<Map<String, Object>> dataList2 = new ArrayList<Map<String, Object>>();
4029 List<Map<String, Object>> dataList3 = new ArrayList<Map<String, Object>>(); 4029 List<Map<String, Object>> dataList3 = new ArrayList<Map<String, Object>>();
4030 List<Map<String, Object>> list1 = this.statisticsDaily(line, date, xlName, null); 4030 List<Map<String, Object>> list1 = this.statisticsDaily(line, date, xlName, null);
4031 List<ScheduleRealInfo> list2 = this.queryUserInfo(line, date, state); 4031 List<ScheduleRealInfo> list2 = this.queryUserInfo(line, date, state);
4032 List<ScheduleRealInfo> list3 = this.realScheduleList(line, date); 4032 List<ScheduleRealInfo> list3 = this.realScheduleList(line, date);
4033 4033
  4034 + Map<String, Object> nMap=new HashMap<String, Object>();
  4035 + nMap.put("date", date);
  4036 + nMap.put("jls", list1.get(0).get("jls"));
  4037 + nMap.put("sjgl", list1.get(0).get("sjgl"));
4034 for (Map<String, Object> m : list1) { 4038 for (Map<String, Object> m : list1) {
4035 // m.put("ssgl", m.get("ssgl")); 4039 // m.put("ssgl", m.get("ssgl"));
4036 // m.put("ssbc", m.get("ssbc")); 4040 // m.put("ssbc", m.get("ssbc"));
@@ -4144,7 +4148,7 @@ public class ScheduleRealInfoServiceImpl extends BaseServiceImpl&lt;ScheduleRealInf @@ -4144,7 +4148,7 @@ public class ScheduleRealInfoServiceImpl extends BaseServiceImpl&lt;ScheduleRealInf
4144 sdfSimple = new SimpleDateFormat("yyyyMM"); 4148 sdfSimple = new SimpleDateFormat("yyyyMM");
4145 sourcePath = path + "mould/scheduleDaily_m.xls"; 4149 sourcePath = path + "mould/scheduleDaily_m.xls";
4146 } 4150 }
4147 - ee.excelReplace(listI, new Object[]{m}, sourcePath, 4151 + ee.excelReplace(listI, new Object[]{nMap}, sourcePath,
4148 path + "export/调度日报" + sdfSimple.format(sdfMonth.parse(date)) + ".xls"); 4152 path + "export/调度日报" + sdfSimple.format(sdfMonth.parse(date)) + ".xls");
4149 } catch (Exception e) { 4153 } catch (Exception e) {
4150 // TODO: handle exception 4154 // TODO: handle exception
src/main/java/com/bsth/service/report/ReportService.java
@@ -3,6 +3,7 @@ package com.bsth.service.report; @@ -3,6 +3,7 @@ package com.bsth.service.report;
3 import java.util.List; 3 import java.util.List;
4 import java.util.Map; 4 import java.util.Map;
5 5
  6 +import com.bsth.entity.StationRoute;
6 import com.bsth.entity.excep.ArrivalInfo; 7 import com.bsth.entity.excep.ArrivalInfo;
7 import com.bsth.entity.realcontrol.ScheduleRealInfo; 8 import com.bsth.entity.realcontrol.ScheduleRealInfo;
8 9
@@ -14,7 +15,8 @@ public interface ReportService { @@ -14,7 +15,8 @@ public interface ReportService {
14 List<ArrivalInfo> queryListZdxx(String line,String date,String clzbh,String sjfc,String sjdd); 15 List<ArrivalInfo> queryListZdxx(String line,String date,String clzbh,String sjfc,String sjdd);
15 16
16 List<ArrivalInfo> queryListClzd(String line,String zd,String zdlx,String fcsj,String ddsj); 17 List<ArrivalInfo> queryListClzd(String line,String zd,String zdlx,String fcsj,String ddsj);
17 - 18 + List<StationRoute> queryStrinon(String line,int zd);
  19 + List<Map<String, Object>> queryInOutStrtion(String line,String date,int zd,String lzsj);
18 List<Map<String, String>> sreachZd(String line,int zdlx,String zd); 20 List<Map<String, String>> sreachZd(String line,int zdlx,String zd);
19 21
20 List<Object[]> historyMessageCount(String line, String date, String code); 22 List<Object[]> historyMessageCount(String line, String date, String code);
src/main/java/com/bsth/service/report/impl/ReportServiceImpl.java
@@ -59,6 +59,8 @@ public class ReportServiceImpl implements ReportService{ @@ -59,6 +59,8 @@ public class ReportServiceImpl implements ReportService{
59 CulateMileageService culateService; 59 CulateMileageService culateService;
60 @Autowired 60 @Autowired
61 LineRepository lineRepository; 61 LineRepository lineRepository;
  62 + @Autowired
  63 + StationRouteRepository stationRouteRepository;
62 @Override 64 @Override
63 public List<ScheduleRealInfo> queryListBczx(String line, String date,String clzbh) { 65 public List<ScheduleRealInfo> queryListBczx(String line, String date,String clzbh) {
64 // TODO Auto-generated method stub 66 // TODO Auto-generated method stub
@@ -1469,4 +1471,185 @@ public class ReportServiceImpl implements ReportService{ @@ -1469,4 +1471,185 @@ public class ReportServiceImpl implements ReportService{
1469 } 1471 }
1470 return list; 1472 return list;
1471 } 1473 }
  1474 +
  1475 + public List<ArrivalInfo> load3(String line, String date, int zd){
  1476 + SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
  1477 + SimpleDateFormat sdf = new SimpleDateFormat("HH:mm:ss");
  1478 + Long date1=0L;
  1479 + Long date2=0L;
  1480 + Calendar cal = Calendar.getInstance();
  1481 + try {
  1482 + Date dates1 = simpleDateFormat.parse(date+" 00:00:01");
  1483 + Date dates2=simpleDateFormat.parse(date+" 23:59:59");
  1484 + date1=dates1.getTime();
  1485 + date2=dates2.getTime();
  1486 + cal.setTime(dates1);
  1487 + } catch (ParseException e1) {
  1488 + // TODO Auto-generated catch block
  1489 + e1.printStackTrace();
  1490 + }
  1491 + //周数,表分区字段
  1492 + int weeks_year1 = cal.get(Calendar.WEEK_OF_YEAR);
  1493 + List<ArrivalInfo> list = null;
  1494 + Connection conn = null;
  1495 + PreparedStatement ps = null;
  1496 + ResultSet rs = null;
  1497 +
  1498 + String sql = "select * from bsth_c_arrival_info where line_id=? AND weeks_year=? "
  1499 + + " AND ts >= ? AND ts <=? AND up_down=? order by device_id,ts";
  1500 + try{
  1501 + conn = DBUtils_MS.getConnection();
  1502 + ps = conn.prepareStatement(sql);
  1503 + ps.setString(1, line);
  1504 + ps.setInt(2, weeks_year1);
  1505 + ps.setLong(3, date1);
  1506 + ps.setLong(4, date2);
  1507 + ps.setInt(5, zd);
  1508 + rs = ps.executeQuery();
  1509 +
  1510 + list = resultSet2Set(rs);
  1511 + }catch(Exception e){
  1512 + logger.error("", e);
  1513 + }finally {
  1514 + DBUtils_MS.close(rs, ps, conn);
  1515 + }
  1516 + return list;
  1517 + }
  1518 + @Override
  1519 + public List<Map<String, Object>> queryInOutStrtion(String line, String date, int zd,String lzsj) {
  1520 + SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
  1521 + //查询线路所有的站点
  1522 + List<ArrivalInfo> arrInfoList=this.load3(line, date, zd);
  1523 + List<StationRoute> listStation= stationRouteRepository.findByLine(line,zd);
  1524 + List<Map<String, Object>> inoutList=new ArrayList<Map<String,Object>>();
  1525 + //保存的所以的站点信息
  1526 + Map<String, Object> map1=new HashMap<String,Object>();
  1527 + map1.put("bc", "");
  1528 + map1.put("nbbm", "");
  1529 +
  1530 + //所有的班次信息(实际排班排序)
  1531 + List<ScheduleRealInfo> realList= scheduleRealInfoRepository.scheduleByDateAndLineInOut(line, date,zd+"");
  1532 + for (int i = 0; i < listStation.size(); i++) {
  1533 + map1.put(listStation.get(i).getStationCode()+"in"
  1534 + , listStation.get(i).getStationName());
  1535 + map1.put(listStation.get(i).getStationCode()+"out"
  1536 + , (i+1));
  1537 + }
  1538 + inoutList.add(map1);
  1539 +
  1540 + for (int i = 0; i < realList.size(); i++) {
  1541 + ScheduleRealInfo sinfo=realList.get(i);
  1542 + String devuceId=BasicData.deviceId2NbbmMap.inverse().get(sinfo.getClZbh());
  1543 + String sjfcsj=sinfo.getRealExecDate()+" "+sinfo.getFcsjActual()+":00";
  1544 + String sjddsj=sinfo.getRealExecDate()+" "+sinfo.getZdsjActual()+":59";
  1545 +
  1546 + try {
  1547 + Date dates1 = simpleDateFormat.parse(sjfcsj);
  1548 + Date dates2=simpleDateFormat.parse(sjddsj);
  1549 + Long date1=dates1.getTime();
  1550 + Long date2=dates2.getTime();
  1551 + List<ArrivalInfo> arrList=new ArrayList<ArrivalInfo>();
  1552 + for (int j = 0; j < arrInfoList.size(); j++) {
  1553 + ArrivalInfo a=arrInfoList.get(j);
  1554 + if(a.getDeviceId().equals(devuceId) && a.getTs()>=date1 && a.getTs()<=date2){
  1555 + arrList.add(a);
  1556 + }
  1557 + }
  1558 +
  1559 + Map<String, Object> map2=new HashMap<String,Object>();
  1560 + map2.put("bc", (i+1));
  1561 + map2.put("nbbm", sinfo.getClZbh());
  1562 +
  1563 + for (int j = 0; j < listStation.size(); j++) {
  1564 + StationRoute s=listStation.get(j);
  1565 + List<ArrivalInfo> arrivalList=new ArrayList<ArrivalInfo>();
  1566 + for (int j2 = 0; j2 < arrList.size(); j2++) {
  1567 + ArrivalInfo a=arrList.get(j2);
  1568 + if(s.getStationCode().equals(a.getStopNo())){
  1569 + arrivalList.add(a);
  1570 + }
  1571 + }
  1572 + Map<String, String> m=this.strInOut(arrivalList,lzsj);
  1573 +
  1574 + map2.put(s.getStationCode()+"in", m.get("in"));
  1575 + map2.put(s.getStationCode()+"out", m.get("out"));
  1576 + map2.put(s.getStationCode(), m.get("type"));
  1577 + }
  1578 + inoutList.add(map2);
  1579 + } catch (ParseException e) {
  1580 + // TODO Auto-generated catch block
  1581 + e.printStackTrace();
  1582 + }
  1583 + }
  1584 + return inoutList;
  1585 + }
  1586 +
  1587 + public Map<String, String> strInOut(List<ArrivalInfo> lists,String lzsj){
  1588 + String inout="";
  1589 + SimpleDateFormat sdf = new SimpleDateFormat("HH:mm:ss");
  1590 + Long in=0L;
  1591 + Long out=0L;
  1592 + for(int i=0;i<lists.size();i++){
  1593 + ArrivalInfo t1=lists.get(i);
  1594 + if(t1.getInOut()==0){
  1595 + in=t1.getTs();
  1596 + t1.setJzsj(sdf.format(new Date(t1.getTs())));
  1597 + for(int j=0;j<lists.size();j++){
  1598 + ArrivalInfo t2=lists.get(j);
  1599 + if(t2.getInOut()==1 && t2.getDeviceId().equals(t1.getDeviceId())
  1600 + && t2.getStopNo().equals(t1.getStopNo())
  1601 + && t2.getTs()>t1.getTs()){
  1602 + t1.setCzsj(sdf.format(new Date(t2.getTs())));
  1603 + out =t2.getTs();
  1604 + break;
  1605 + }
  1606 + }
  1607 +
  1608 + }else{
  1609 + out =t1.getTs();
  1610 + t1.setCzsj(sdf.format(new Date(t1.getTs())));
  1611 + for(int j=0;j<lists.size();j++){
  1612 + ArrivalInfo t2=lists.get(j);
  1613 + if(t2.getInOut()==0 && t2.getDeviceId().equals(t1.getDeviceId())
  1614 + && t2.getStopNo().equals(t1.getStopNo())
  1615 + && t2.getTs()>t1.getTs()){
  1616 + in =t2.getTs();
  1617 + t1.setJzsj(sdf.format(new Date(t2.getTs())));
  1618 + break;
  1619 + }
  1620 + }
  1621 + }
  1622 + }
  1623 +
  1624 + Map<String, String> map=new HashMap<String,String>();
  1625 + if(in>0 ){
  1626 + map.put("in",sdf.format(new Date(in)));
  1627 +
  1628 + }else{
  1629 + map.put("in", "");
  1630 + }
  1631 + if(out>0){
  1632 + map.put("out", sdf.format(new Date(out)));
  1633 + }else{
  1634 + map.put("out", "");
  1635 + }
  1636 + Long sj=1000000000L;
  1637 + if(!lzsj.trim().equals("")){
  1638 + sj =Long.parseLong(lzsj);
  1639 + }
  1640 + if(in>0 && out >0){
  1641 + if((out-in)/1000>sj){
  1642 + map.put("type", "y");
  1643 + }else{
  1644 + map.put("type", "n");
  1645 + }
  1646 + }
  1647 + return map;
  1648 + }
  1649 + @Override
  1650 + public List<StationRoute> queryStrinon(String line, int zd) {
  1651 + // TODO Auto-generated method stub
  1652 + List<StationRoute> listStation= stationRouteRepository.findByLine(line,zd);
  1653 + return listStation;
  1654 + }
1472 } 1655 }
src/main/java/com/bsth/service/schedule/impl/TTInfoDetailServiceImpl.java
@@ -374,16 +374,16 @@ public class TTInfoDetailServiceImpl extends BServiceImpl&lt;TTInfoDetail, Long&gt; im @@ -374,16 +374,16 @@ public class TTInfoDetailServiceImpl extends BServiceImpl&lt;TTInfoDetail, Long&gt; im
374 } 374 }
375 375
376 // 添加一列 空驶班次/空驶里程,fcsj放置数据 376 // 添加一列 空驶班次/空驶里程,fcsj放置数据
377 - fcInfos.add(new FcInfo(null, null, String.format("%d/%.2f", bc_ks, lc_ks), null, null, null, null)); 377 + fcInfos.add(new FcInfo(null, null, String.format("%d/%.3f", bc_ks, lc_ks), null, null, null, null));
378 378
379 // 添加一列 营运班次/营运里程,fcsj放置数据 379 // 添加一列 营运班次/营运里程,fcsj放置数据
380 - fcInfos.add(new FcInfo(null, null, String.format("%d/%.2f", bc_yy, lc_yy), null, null, null, null)); 380 + fcInfos.add(new FcInfo(null, null, String.format("%d/%.3f", bc_yy, lc_yy), null, null, null, null));
381 381
382 editInfo.getContents().add(fcInfos); 382 editInfo.getContents().add(fcInfos);
383 } 383 }
384 editInfo.getHeader().addAll(Arrays.asList(headarrays)); 384 editInfo.getHeader().addAll(Arrays.asList(headarrays));
385 385
386 - editInfo.setYy_desc(String.format("空驶班次=%d,营运班次=%d,空驶里程=%.2f,营运里程=%.2f,总里程=%.2f", all_bc_ks, all_bc_yy, all_lc_ks, all_lc_yy, all_lc_ks + all_lc_yy)); 386 + editInfo.setYy_desc(String.format("空驶班次=%d,营运班次=%d,空驶里程=%.3f,营运里程=%.3f,总里程=%.3f", all_bc_ks, all_bc_yy, all_lc_ks, all_lc_yy, all_lc_ks + all_lc_yy));
387 } 387 }
388 388
389 LOGGER.info("//---------------- 时刻表编辑用数据输出 success... ----------------//"); 389 LOGGER.info("//---------------- 时刻表编辑用数据输出 success... ----------------//");
src/main/resources/datatools/ktrs/ttinfodetailDataOutputMetaData.ktr
@@ -90,11 +90,11 @@ @@ -90,11 +90,11 @@
90 </info> 90 </info>
91 <notepads> 91 <notepads>
92 <notepad> 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>165</xloc>  
95 - <yloc>402</yloc>  
96 - <width>333</width>  
97 - <heigth>90</heigth> 93 + <note>TODO&#xff1a;&#x5982;&#x679c;groupby &#x52a0;&#x5165;bctype&#xff0c;&#xa;&#x5219;&#x4ee5;&#x53d1;&#x8f66;&#x987a;&#x5e8f;&#x53f7;&#xff0c;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5206;&#x7ec4;&#x7684;&#x6570;&#x636e;&#x53ef;&#x80fd;&#x91cd;&#x590d;&#xff0c;&#xa;&#x5e94;&#x4e3a;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x53ef;&#x80fd;&#x4e0d;&#x4e00;&#x6837;&#xff08;&#x5bfc;&#x5165;&#x4e4b;&#x540e;&#x4eba;&#x4e3a;&#x4fee;&#x6539;&#x7684;&#xff0c;&#x5982;&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6539;&#x6210;&#x533a;&#x95f4;&#xff09;&#xff0c;&#xa;&#x56e0;&#x4e3a;&#x5bfc;&#x51fa;&#x65f6;&#x5fc5;&#x987b;&#x6570;&#x636e;&#x4e0d;&#x91cd;&#x590d;&#xff0c;&#x8fd9;&#x91cc;&#x7684;&#x89e3;&#x51b3;&#x65b9;&#x6cd5;&#xff0c;&#x53ea;&#x4f7f;&#x7528;&#x53d1;&#x8f66;&#x987a;&#x5e8f;&#x53f7;&#x5206;&#x7ec4;&#xff0c;&#xa;&#x4ee5;&#x540e;&#x5efa;&#x8bae;&#xff0c;&#x8fd8;&#x662f;&#x539f;&#x6765;&#x7684;&#x65b9;&#x5f0f;&#x5206;&#x7ec4;&#xff0c;&#x7136;&#x540e;&#x628a;&#x66f4;&#x65b0;&#x65f6;&#x95f4;&#x665a;&#x7684;&#x53bb;&#x9664;&#xa;&#xa;&#x4ee5;&#x540e;&#x6539;&#x6210;&#x53bb;&#x9664;&#x91cd;&#x590d;&#x7eaa;&#x5f55;</note>
  94 + <xloc>37</xloc>
  95 + <yloc>309</yloc>
  96 + <width>406</width>
  97 + <heigth>122</heigth>
98 <fontname>YaHei Consolas Hybrid</fontname> 98 <fontname>YaHei Consolas Hybrid</fontname>
99 <fontsize>12</fontsize> 99 <fontsize>12</fontsize>
100 <fontbold>N</fontbold> 100 <fontbold>N</fontbold>
@@ -445,7 +445,7 @@ @@ -445,7 +445,7 @@
445 <schema_name/> 445 <schema_name/>
446 </partitioning> 446 </partitioning>
447 <connection>bus_control_variable</connection> 447 <connection>bus_control_variable</connection>
448 - <sql>select &#xa;fcno&#xa;, min&#x28;xl_dir&#x29; xl_dir&#xa;,min&#x28;qdz&#x29; qdz&#xa;,min&#x28;zdz&#x29; zdz&#xa;,bc_type &#xa;from bsth_c_s_ttinfo_detail&#xa;where ttinfo &#x3d; &#x24;&#x7b;ttinfoid&#x7d;&#xa;group by fcno,bc_type</sql> 448 + <sql>select &#xa;fcno&#xa;, min&#x28;xl&#x29; xl &#xa;, min&#x28;xl_dir&#x29; xl_dir&#xa;, min&#x28;qdz_code&#x29; qdz&#xa;, min&#x28;zdz_code&#x29; zdz&#xa;, min&#x28;bc_type&#x29; bc_type &#xa;from bsth_c_s_ttinfo_detail&#xa;where ttinfo &#x3d; &#x24;&#x7b;ttinfoid&#x7d;&#xa;group by fcno</sql>
449 <limit>0</limit> 449 <limit>0</limit>
450 <lookup/> 450 <lookup/>
451 <execute_each_row>N</execute_each_row> 451 <execute_each_row>N</execute_each_row>
@@ -481,8 +481,8 @@ @@ -481,8 +481,8 @@
481 <fail_on_multiple>N</fail_on_multiple> 481 <fail_on_multiple>N</fail_on_multiple>
482 <eat_row_on_failure>N</eat_row_on_failure> 482 <eat_row_on_failure>N</eat_row_on_failure>
483 <key> 483 <key>
484 - <name>zd</name>  
485 - <field>station</field> 484 + <name>xl</name>
  485 + <field>line</field>
486 <condition>&#x3d;</condition> 486 <condition>&#x3d;</condition>
487 <name2/> 487 <name2/>
488 </key> 488 </key>
@@ -492,6 +492,12 @@ @@ -492,6 +492,12 @@
492 <condition>&#x3d;</condition> 492 <condition>&#x3d;</condition>
493 <name2/> 493 <name2/>
494 </key> 494 </key>
  495 + <key>
  496 + <name>zd</name>
  497 + <field>station_code</field>
  498 + <condition>&#x3d;</condition>
  499 + <name2/>
  500 + </key>
495 <value> 501 <value>
496 <name>station_name</name> 502 <name>station_name</name>
497 <rename>zdname</rename> 503 <rename>zdname</rename>
@@ -712,6 +718,29 @@ @@ -712,6 +718,29 @@
712 </GUI> 718 </GUI>
713 </step> 719 </step>
714 720
  721 + <step>
  722 + <name>&#x53bb;&#x9664;&#x91cd;&#x590d;&#x8bb0;&#x5f55;</name>
  723 + <type>Unique</type>
  724 + <description/>
  725 + <distribute>Y</distribute>
  726 + <custom_distribution/>
  727 + <copies>1</copies>
  728 + <partitioning>
  729 + <method>none</method>
  730 + <schema_name/>
  731 + </partitioning>
  732 + <count_rows>N</count_rows>
  733 + <count_field/>
  734 + <reject_duplicate_row>N</reject_duplicate_row>
  735 + <error_description/>
  736 + <fields> </fields> <cluster_schema/>
  737 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  738 + <xloc>842</xloc>
  739 + <yloc>592</yloc>
  740 + <draw>Y</draw>
  741 + </GUI>
  742 + </step>
  743 +
715 <step_error_handling> 744 <step_error_handling>
716 </step_error_handling> 745 </step_error_handling>
717 <slave-step-copy-partition-distribution> 746 <slave-step-copy-partition-distribution>
src/main/resources/datatools/ktrs/ttinfodetailoutputforedit.ktr
@@ -302,7 +302,6 @@ @@ -302,7 +302,6 @@
302 <hop> <from>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</from><to>&#x8868;&#x8f93;&#x5165;</to><enabled>Y</enabled> </hop> 302 <hop> <from>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</from><to>&#x8868;&#x8f93;&#x5165;</to><enabled>Y</enabled> </hop>
303 <hop> <from>&#x8ba1;&#x7b97;&#x53d1;&#x8f66;&#x7ad9;&#x540d;</from><to>&#x5408;&#x5e76;&#x5185;&#x5bb9;</to><enabled>Y</enabled> </hop> 303 <hop> <from>&#x8ba1;&#x7b97;&#x53d1;&#x8f66;&#x7ad9;&#x540d;</from><to>&#x5408;&#x5e76;&#x5185;&#x5bb9;</to><enabled>Y</enabled> </hop>
304 <hop> <from>&#x5408;&#x5e76;&#x5185;&#x5bb9;</from><to>&#x5217;&#x8f6c;&#x884c;</to><enabled>Y</enabled> </hop> 304 <hop> <from>&#x5408;&#x5e76;&#x5185;&#x5bb9;</from><to>&#x5217;&#x8f6c;&#x884c;</to><enabled>Y</enabled> </hop>
305 - <hop> <from>&#x53bb;&#x9664;&#x5b57;&#x6bb5;</from><to>&#x6587;&#x672c;&#x6587;&#x4ef6;&#x8f93;&#x51fa;</to><enabled>Y</enabled> </hop>  
306 <hop> <from>&#x8868;&#x8f93;&#x5165;</from><to>&#x8ba1;&#x7b97;&#x53d1;&#x8f66;&#x7ad9;&#x540d;</to><enabled>Y</enabled> </hop> 305 <hop> <from>&#x8868;&#x8f93;&#x5165;</from><to>&#x8ba1;&#x7b97;&#x53d1;&#x8f66;&#x7ad9;&#x540d;</to><enabled>Y</enabled> </hop>
307 </order> 306 </order>
308 <step> 307 <step>
@@ -701,2273 +700,3209 @@ @@ -701,2273 +700,3209 @@
701 <type>String</type> 700 <type>String</type>
702 <format/> 701 <format/>
703 </field> 702 </field>
704 - </fields>  
705 - <custom>  
706 - <header_font_name>arial</header_font_name>  
707 - <header_font_size>10</header_font_size>  
708 - <header_font_bold>N</header_font_bold>  
709 - <header_font_italic>N</header_font_italic>  
710 - <header_font_underline>no</header_font_underline>  
711 - <header_font_orientation>horizontal</header_font_orientation>  
712 - <header_font_color>black</header_font_color>  
713 - <header_background_color>none</header_background_color>  
714 - <header_row_height>255</header_row_height>  
715 - <header_alignment>left</header_alignment>  
716 - <header_image/>  
717 - <row_font_name>arial</row_font_name>  
718 - <row_font_size>10</row_font_size>  
719 - <row_font_color>black</row_font_color>  
720 - <row_background_color>none</row_background_color>  
721 - </custom>  
722 - <cluster_schema/>  
723 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
724 - <xloc>692</xloc>  
725 - <yloc>514</yloc>  
726 - <draw>Y</draw>  
727 - </GUI>  
728 - </step>  
729 -  
730 - <step>  
731 - <name>&#x5217;&#x8f6c;&#x884c;</name>  
732 - <type>Denormaliser</type>  
733 - <description/>  
734 - <distribute>N</distribute>  
735 - <custom_distribution/>  
736 - <copies>1</copies>  
737 - <partitioning>  
738 - <method>none</method>  
739 - <schema_name/>  
740 - </partitioning>  
741 - <key_field>fcno</key_field>  
742 - <group>  
743 - <field>  
744 - <name>lp</name>  
745 - </field>  
746 - </group>  
747 - <fields>  
748 - <field>  
749 - <field_name>all_content</field_name>  
750 - <key_value>1</key_value>  
751 - <target_name>fcno1</target_name>  
752 - <target_type>String</target_type>  
753 - <target_format/>  
754 - <target_length>-1</target_length>  
755 - <target_precision>-1</target_precision>  
756 - <target_decimal_symbol/>  
757 - <target_grouping_symbol/>  
758 - <target_currency_symbol/>  
759 - <target_null_string/>  
760 - <target_aggregation_type>-</target_aggregation_type>  
761 - </field>  
762 - <field>  
763 - <field_name>all_content</field_name>  
764 - <key_value>2</key_value>  
765 - <target_name>fcno2</target_name>  
766 - <target_type>String</target_type>  
767 - <target_format/>  
768 - <target_length>-1</target_length>  
769 - <target_precision>-1</target_precision>  
770 - <target_decimal_symbol/>  
771 - <target_grouping_symbol/>  
772 - <target_currency_symbol/>  
773 - <target_null_string/>  
774 - <target_aggregation_type>-</target_aggregation_type>  
775 - </field>  
776 - <field>  
777 - <field_name>all_content</field_name>  
778 - <key_value>3</key_value>  
779 - <target_name>fcno3</target_name>  
780 - <target_type>String</target_type>  
781 - <target_format/>  
782 - <target_length>-1</target_length>  
783 - <target_precision>-1</target_precision>  
784 - <target_decimal_symbol/>  
785 - <target_grouping_symbol/>  
786 - <target_currency_symbol/>  
787 - <target_null_string/>  
788 - <target_aggregation_type>-</target_aggregation_type>  
789 - </field>  
790 - <field>  
791 - <field_name>all_content</field_name>  
792 - <key_value>4</key_value>  
793 - <target_name>fcno4</target_name>  
794 - <target_type>String</target_type>  
795 - <target_format/>  
796 - <target_length>-1</target_length>  
797 - <target_precision>-1</target_precision>  
798 - <target_decimal_symbol/>  
799 - <target_grouping_symbol/>  
800 - <target_currency_symbol/>  
801 - <target_null_string/>  
802 - <target_aggregation_type>-</target_aggregation_type>  
803 - </field>  
804 - <field>  
805 - <field_name>all_content</field_name>  
806 - <key_value>5</key_value>  
807 - <target_name>fcno5</target_name>  
808 - <target_type>String</target_type>  
809 - <target_format/>  
810 - <target_length>-1</target_length>  
811 - <target_precision>-1</target_precision>  
812 - <target_decimal_symbol/>  
813 - <target_grouping_symbol/>  
814 - <target_currency_symbol/>  
815 - <target_null_string/>  
816 - <target_aggregation_type>-</target_aggregation_type>  
817 - </field>  
818 - <field>  
819 - <field_name>all_content</field_name>  
820 - <key_value>6</key_value>  
821 - <target_name>fcno6</target_name>  
822 - <target_type>String</target_type>  
823 - <target_format/>  
824 - <target_length>-1</target_length>  
825 - <target_precision>-1</target_precision>  
826 - <target_decimal_symbol/>  
827 - <target_grouping_symbol/>  
828 - <target_currency_symbol/>  
829 - <target_null_string/>  
830 - <target_aggregation_type>-</target_aggregation_type>  
831 - </field>  
832 - <field>  
833 - <field_name>all_content</field_name>  
834 - <key_value>7</key_value>  
835 - <target_name>fcno7</target_name>  
836 - <target_type>String</target_type>  
837 - <target_format/>  
838 - <target_length>-1</target_length>  
839 - <target_precision>-1</target_precision>  
840 - <target_decimal_symbol/>  
841 - <target_grouping_symbol/>  
842 - <target_currency_symbol/>  
843 - <target_null_string/>  
844 - <target_aggregation_type>-</target_aggregation_type>  
845 - </field>  
846 - <field>  
847 - <field_name>all_content</field_name>  
848 - <key_value>8</key_value>  
849 - <target_name>fcno8</target_name>  
850 - <target_type>String</target_type>  
851 - <target_format/>  
852 - <target_length>-1</target_length>  
853 - <target_precision>-1</target_precision>  
854 - <target_decimal_symbol/>  
855 - <target_grouping_symbol/>  
856 - <target_currency_symbol/>  
857 - <target_null_string/>  
858 - <target_aggregation_type>-</target_aggregation_type>  
859 - </field>  
860 - <field>  
861 - <field_name>all_content</field_name>  
862 - <key_value>9</key_value>  
863 - <target_name>fcno9</target_name>  
864 - <target_type>String</target_type>  
865 - <target_format/>  
866 - <target_length>-1</target_length>  
867 - <target_precision>-1</target_precision>  
868 - <target_decimal_symbol/>  
869 - <target_grouping_symbol/>  
870 - <target_currency_symbol/>  
871 - <target_null_string/>  
872 - <target_aggregation_type>-</target_aggregation_type>  
873 - </field>  
874 - <field>  
875 - <field_name>all_content</field_name>  
876 - <key_value>10</key_value>  
877 - <target_name>fcno10</target_name>  
878 - <target_type>String</target_type>  
879 - <target_format/>  
880 - <target_length>-1</target_length>  
881 - <target_precision>-1</target_precision>  
882 - <target_decimal_symbol/>  
883 - <target_grouping_symbol/>  
884 - <target_currency_symbol/>  
885 - <target_null_string/>  
886 - <target_aggregation_type>-</target_aggregation_type>  
887 - </field>  
888 - <field>  
889 - <field_name>all_content</field_name>  
890 - <key_value>11</key_value>  
891 - <target_name>fcno11</target_name>  
892 - <target_type>String</target_type>  
893 - <target_format/>  
894 - <target_length>-1</target_length>  
895 - <target_precision>-1</target_precision>  
896 - <target_decimal_symbol/>  
897 - <target_grouping_symbol/>  
898 - <target_currency_symbol/>  
899 - <target_null_string/>  
900 - <target_aggregation_type>-</target_aggregation_type>  
901 - </field>  
902 - <field>  
903 - <field_name>all_content</field_name>  
904 - <key_value>12</key_value>  
905 - <target_name>fcno12</target_name>  
906 - <target_type>String</target_type>  
907 - <target_format/>  
908 - <target_length>-1</target_length>  
909 - <target_precision>-1</target_precision>  
910 - <target_decimal_symbol/>  
911 - <target_grouping_symbol/>  
912 - <target_currency_symbol/>  
913 - <target_null_string/>  
914 - <target_aggregation_type>-</target_aggregation_type>  
915 - </field>  
916 - <field>  
917 - <field_name>all_content</field_name>  
918 - <key_value>13</key_value>  
919 - <target_name>fcno13</target_name>  
920 - <target_type>String</target_type>  
921 - <target_format/>  
922 - <target_length>-1</target_length>  
923 - <target_precision>-1</target_precision>  
924 - <target_decimal_symbol/>  
925 - <target_grouping_symbol/>  
926 - <target_currency_symbol/>  
927 - <target_null_string/>  
928 - <target_aggregation_type>-</target_aggregation_type>  
929 - </field>  
930 - <field>  
931 - <field_name>all_content</field_name>  
932 - <key_value>14</key_value>  
933 - <target_name>fcno14</target_name>  
934 - <target_type>String</target_type>  
935 - <target_format/>  
936 - <target_length>-1</target_length>  
937 - <target_precision>-1</target_precision>  
938 - <target_decimal_symbol/>  
939 - <target_grouping_symbol/>  
940 - <target_currency_symbol/>  
941 - <target_null_string/>  
942 - <target_aggregation_type>-</target_aggregation_type>  
943 - </field>  
944 - <field>  
945 - <field_name>all_content</field_name>  
946 - <key_value>15</key_value>  
947 - <target_name>fcno15</target_name>  
948 - <target_type>String</target_type>  
949 - <target_format/>  
950 - <target_length>-1</target_length>  
951 - <target_precision>-1</target_precision>  
952 - <target_decimal_symbol/>  
953 - <target_grouping_symbol/>  
954 - <target_currency_symbol/>  
955 - <target_null_string/>  
956 - <target_aggregation_type>-</target_aggregation_type>  
957 - </field>  
958 - <field>  
959 - <field_name>all_content</field_name>  
960 - <key_value>16</key_value>  
961 - <target_name>fcno16</target_name>  
962 - <target_type>String</target_type>  
963 - <target_format/>  
964 - <target_length>-1</target_length>  
965 - <target_precision>-1</target_precision>  
966 - <target_decimal_symbol/>  
967 - <target_grouping_symbol/>  
968 - <target_currency_symbol/>  
969 - <target_null_string/>  
970 - <target_aggregation_type>-</target_aggregation_type>  
971 - </field>  
972 - <field>  
973 - <field_name>all_content</field_name>  
974 - <key_value>17</key_value>  
975 - <target_name>fcno17</target_name>  
976 - <target_type>String</target_type>  
977 - <target_format/>  
978 - <target_length>-1</target_length>  
979 - <target_precision>-1</target_precision>  
980 - <target_decimal_symbol/>  
981 - <target_grouping_symbol/>  
982 - <target_currency_symbol/>  
983 - <target_null_string/>  
984 - <target_aggregation_type>-</target_aggregation_type>  
985 - </field>  
986 - <field>  
987 - <field_name>all_content</field_name>  
988 - <key_value>18</key_value>  
989 - <target_name>fcno18</target_name>  
990 - <target_type>String</target_type>  
991 - <target_format/>  
992 - <target_length>-1</target_length>  
993 - <target_precision>-1</target_precision>  
994 - <target_decimal_symbol/>  
995 - <target_grouping_symbol/>  
996 - <target_currency_symbol/>  
997 - <target_null_string/>  
998 - <target_aggregation_type>-</target_aggregation_type>  
999 - </field>  
1000 - <field>  
1001 - <field_name>all_content</field_name>  
1002 - <key_value>19</key_value>  
1003 - <target_name>fcno19</target_name>  
1004 - <target_type>String</target_type>  
1005 - <target_format/>  
1006 - <target_length>-1</target_length>  
1007 - <target_precision>-1</target_precision>  
1008 - <target_decimal_symbol/>  
1009 - <target_grouping_symbol/>  
1010 - <target_currency_symbol/>  
1011 - <target_null_string/>  
1012 - <target_aggregation_type>-</target_aggregation_type>  
1013 - </field>  
1014 - <field>  
1015 - <field_name>all_content</field_name>  
1016 - <key_value>20</key_value>  
1017 - <target_name>fcno20</target_name>  
1018 - <target_type>String</target_type>  
1019 - <target_format/>  
1020 - <target_length>-1</target_length>  
1021 - <target_precision>-1</target_precision>  
1022 - <target_decimal_symbol/>  
1023 - <target_grouping_symbol/>  
1024 - <target_currency_symbol/>  
1025 - <target_null_string/>  
1026 - <target_aggregation_type>-</target_aggregation_type>  
1027 - </field>  
1028 - <field>  
1029 - <field_name>all_content</field_name>  
1030 - <key_value>21</key_value>  
1031 - <target_name>fcno21</target_name>  
1032 - <target_type>String</target_type>  
1033 - <target_format/>  
1034 - <target_length>-1</target_length>  
1035 - <target_precision>-1</target_precision>  
1036 - <target_decimal_symbol/>  
1037 - <target_grouping_symbol/>  
1038 - <target_currency_symbol/>  
1039 - <target_null_string/>  
1040 - <target_aggregation_type>-</target_aggregation_type>  
1041 - </field>  
1042 - <field>  
1043 - <field_name>all_content</field_name>  
1044 - <key_value>22</key_value>  
1045 - <target_name>fcno22</target_name>  
1046 - <target_type>String</target_type>  
1047 - <target_format/>  
1048 - <target_length>-1</target_length>  
1049 - <target_precision>-1</target_precision>  
1050 - <target_decimal_symbol/>  
1051 - <target_grouping_symbol/>  
1052 - <target_currency_symbol/>  
1053 - <target_null_string/>  
1054 - <target_aggregation_type>-</target_aggregation_type>  
1055 - </field>  
1056 - <field>  
1057 - <field_name>all_content</field_name>  
1058 - <key_value>23</key_value>  
1059 - <target_name>fcno23</target_name>  
1060 - <target_type>String</target_type>  
1061 - <target_format/>  
1062 - <target_length>-1</target_length>  
1063 - <target_precision>-1</target_precision>  
1064 - <target_decimal_symbol/>  
1065 - <target_grouping_symbol/>  
1066 - <target_currency_symbol/>  
1067 - <target_null_string/>  
1068 - <target_aggregation_type>-</target_aggregation_type>  
1069 - </field>  
1070 - <field>  
1071 - <field_name>all_content</field_name>  
1072 - <key_value>24</key_value>  
1073 - <target_name>fcno24</target_name>  
1074 - <target_type>String</target_type>  
1075 - <target_format/>  
1076 - <target_length>-1</target_length>  
1077 - <target_precision>-1</target_precision>  
1078 - <target_decimal_symbol/>  
1079 - <target_grouping_symbol/>  
1080 - <target_currency_symbol/>  
1081 - <target_null_string/>  
1082 - <target_aggregation_type>-</target_aggregation_type>  
1083 - </field>  
1084 - <field>  
1085 - <field_name>all_content</field_name>  
1086 - <key_value>25</key_value>  
1087 - <target_name>fcno25</target_name>  
1088 - <target_type>String</target_type>  
1089 - <target_format/>  
1090 - <target_length>-1</target_length>  
1091 - <target_precision>-1</target_precision>  
1092 - <target_decimal_symbol/>  
1093 - <target_grouping_symbol/>  
1094 - <target_currency_symbol/>  
1095 - <target_null_string/>  
1096 - <target_aggregation_type>-</target_aggregation_type>  
1097 - </field>  
1098 - <field>  
1099 - <field_name>all_content</field_name>  
1100 - <key_value>26</key_value>  
1101 - <target_name>fcno26</target_name>  
1102 - <target_type>String</target_type>  
1103 - <target_format/>  
1104 - <target_length>-1</target_length>  
1105 - <target_precision>-1</target_precision>  
1106 - <target_decimal_symbol/>  
1107 - <target_grouping_symbol/>  
1108 - <target_currency_symbol/>  
1109 - <target_null_string/>  
1110 - <target_aggregation_type>-</target_aggregation_type>  
1111 - </field>  
1112 - <field>  
1113 - <field_name>all_content</field_name>  
1114 - <key_value>27</key_value>  
1115 - <target_name>fcno27</target_name>  
1116 - <target_type>String</target_type>  
1117 - <target_format/>  
1118 - <target_length>-1</target_length>  
1119 - <target_precision>-1</target_precision>  
1120 - <target_decimal_symbol/>  
1121 - <target_grouping_symbol/>  
1122 - <target_currency_symbol/>  
1123 - <target_null_string/>  
1124 - <target_aggregation_type>-</target_aggregation_type>  
1125 - </field>  
1126 - <field>  
1127 - <field_name>all_content</field_name>  
1128 - <key_value>28</key_value>  
1129 - <target_name>fcno28</target_name>  
1130 - <target_type>String</target_type>  
1131 - <target_format/>  
1132 - <target_length>-1</target_length>  
1133 - <target_precision>-1</target_precision>  
1134 - <target_decimal_symbol/>  
1135 - <target_grouping_symbol/>  
1136 - <target_currency_symbol/>  
1137 - <target_null_string/>  
1138 - <target_aggregation_type>-</target_aggregation_type>  
1139 - </field>  
1140 - <field>  
1141 - <field_name>all_content</field_name>  
1142 - <key_value>29</key_value>  
1143 - <target_name>fcno29</target_name>  
1144 - <target_type>String</target_type>  
1145 - <target_format/>  
1146 - <target_length>-1</target_length>  
1147 - <target_precision>-1</target_precision>  
1148 - <target_decimal_symbol/>  
1149 - <target_grouping_symbol/>  
1150 - <target_currency_symbol/>  
1151 - <target_null_string/>  
1152 - <target_aggregation_type>-</target_aggregation_type>  
1153 - </field>  
1154 - <field>  
1155 - <field_name>all_content</field_name>  
1156 - <key_value>30</key_value>  
1157 - <target_name>fcno30</target_name>  
1158 - <target_type>String</target_type>  
1159 - <target_format/>  
1160 - <target_length>-1</target_length>  
1161 - <target_precision>-1</target_precision>  
1162 - <target_decimal_symbol/>  
1163 - <target_grouping_symbol/>  
1164 - <target_currency_symbol/>  
1165 - <target_null_string/>  
1166 - <target_aggregation_type>-</target_aggregation_type>  
1167 - </field>  
1168 - <field>  
1169 - <field_name>all_content</field_name>  
1170 - <key_value>31</key_value>  
1171 - <target_name>fcno31</target_name>  
1172 - <target_type>String</target_type>  
1173 - <target_format/>  
1174 - <target_length>-1</target_length>  
1175 - <target_precision>-1</target_precision>  
1176 - <target_decimal_symbol/>  
1177 - <target_grouping_symbol/>  
1178 - <target_currency_symbol/>  
1179 - <target_null_string/>  
1180 - <target_aggregation_type>-</target_aggregation_type>  
1181 - </field>  
1182 - <field>  
1183 - <field_name>all_content</field_name>  
1184 - <key_value>32</key_value>  
1185 - <target_name>fcno32</target_name>  
1186 - <target_type>String</target_type>  
1187 - <target_format/>  
1188 - <target_length>-1</target_length>  
1189 - <target_precision>-1</target_precision>  
1190 - <target_decimal_symbol/>  
1191 - <target_grouping_symbol/>  
1192 - <target_currency_symbol/>  
1193 - <target_null_string/>  
1194 - <target_aggregation_type>-</target_aggregation_type>  
1195 - </field>  
1196 - <field>  
1197 - <field_name>all_content</field_name>  
1198 - <key_value>33</key_value>  
1199 - <target_name>fcno33</target_name>  
1200 - <target_type>String</target_type>  
1201 - <target_format/>  
1202 - <target_length>-1</target_length>  
1203 - <target_precision>-1</target_precision>  
1204 - <target_decimal_symbol/>  
1205 - <target_grouping_symbol/>  
1206 - <target_currency_symbol/>  
1207 - <target_null_string/>  
1208 - <target_aggregation_type>-</target_aggregation_type>  
1209 - </field>  
1210 - <field>  
1211 - <field_name>all_content</field_name>  
1212 - <key_value>34</key_value>  
1213 - <target_name>fcno34</target_name>  
1214 - <target_type>String</target_type>  
1215 - <target_format/>  
1216 - <target_length>-1</target_length>  
1217 - <target_precision>-1</target_precision>  
1218 - <target_decimal_symbol/>  
1219 - <target_grouping_symbol/>  
1220 - <target_currency_symbol/>  
1221 - <target_null_string/>  
1222 - <target_aggregation_type>-</target_aggregation_type>  
1223 - </field>  
1224 - <field>  
1225 - <field_name>all_content</field_name>  
1226 - <key_value>35</key_value>  
1227 - <target_name>fcno35</target_name>  
1228 - <target_type>String</target_type>  
1229 - <target_format/>  
1230 - <target_length>-1</target_length>  
1231 - <target_precision>-1</target_precision>  
1232 - <target_decimal_symbol/>  
1233 - <target_grouping_symbol/>  
1234 - <target_currency_symbol/>  
1235 - <target_null_string/>  
1236 - <target_aggregation_type>-</target_aggregation_type>  
1237 - </field>  
1238 - <field>  
1239 - <field_name>all_content</field_name>  
1240 - <key_value>36</key_value>  
1241 - <target_name>fcno36</target_name>  
1242 - <target_type>String</target_type>  
1243 - <target_format/>  
1244 - <target_length>-1</target_length>  
1245 - <target_precision>-1</target_precision>  
1246 - <target_decimal_symbol/>  
1247 - <target_grouping_symbol/>  
1248 - <target_currency_symbol/>  
1249 - <target_null_string/>  
1250 - <target_aggregation_type>-</target_aggregation_type>  
1251 - </field>  
1252 - <field>  
1253 - <field_name>all_content</field_name>  
1254 - <key_value>37</key_value>  
1255 - <target_name>fcno37</target_name>  
1256 - <target_type>String</target_type>  
1257 - <target_format/>  
1258 - <target_length>-1</target_length>  
1259 - <target_precision>-1</target_precision>  
1260 - <target_decimal_symbol/>  
1261 - <target_grouping_symbol/>  
1262 - <target_currency_symbol/>  
1263 - <target_null_string/>  
1264 - <target_aggregation_type>-</target_aggregation_type>  
1265 - </field>  
1266 - <field>  
1267 - <field_name>all_content</field_name>  
1268 - <key_value>38</key_value>  
1269 - <target_name>fcno38</target_name>  
1270 - <target_type>String</target_type>  
1271 - <target_format/>  
1272 - <target_length>-1</target_length>  
1273 - <target_precision>-1</target_precision>  
1274 - <target_decimal_symbol/>  
1275 - <target_grouping_symbol/>  
1276 - <target_currency_symbol/>  
1277 - <target_null_string/>  
1278 - <target_aggregation_type>-</target_aggregation_type>  
1279 - </field>  
1280 - <field>  
1281 - <field_name>all_content</field_name>  
1282 - <key_value>39</key_value>  
1283 - <target_name>fcno39</target_name>  
1284 - <target_type>String</target_type>  
1285 - <target_format/>  
1286 - <target_length>-1</target_length>  
1287 - <target_precision>-1</target_precision>  
1288 - <target_decimal_symbol/>  
1289 - <target_grouping_symbol/>  
1290 - <target_currency_symbol/>  
1291 - <target_null_string/>  
1292 - <target_aggregation_type>-</target_aggregation_type>  
1293 - </field>  
1294 - <field>  
1295 - <field_name>all_content</field_name>  
1296 - <key_value>40</key_value>  
1297 - <target_name>fcno40</target_name>  
1298 - <target_type>String</target_type>  
1299 - <target_format/>  
1300 - <target_length>-1</target_length>  
1301 - <target_precision>-1</target_precision>  
1302 - <target_decimal_symbol/>  
1303 - <target_grouping_symbol/>  
1304 - <target_currency_symbol/>  
1305 - <target_null_string/>  
1306 - <target_aggregation_type>-</target_aggregation_type>  
1307 - </field>  
1308 - <field>  
1309 - <field_name>all_content</field_name>  
1310 - <key_value>41</key_value>  
1311 - <target_name>fcno41</target_name>  
1312 - <target_type>String</target_type>  
1313 - <target_format/>  
1314 - <target_length>-1</target_length>  
1315 - <target_precision>-1</target_precision>  
1316 - <target_decimal_symbol/>  
1317 - <target_grouping_symbol/>  
1318 - <target_currency_symbol/>  
1319 - <target_null_string/>  
1320 - <target_aggregation_type>-</target_aggregation_type>  
1321 - </field>  
1322 - <field>  
1323 - <field_name>all_content</field_name>  
1324 - <key_value>42</key_value>  
1325 - <target_name>fcno42</target_name>  
1326 - <target_type>String</target_type>  
1327 - <target_format/>  
1328 - <target_length>-1</target_length>  
1329 - <target_precision>-1</target_precision>  
1330 - <target_decimal_symbol/>  
1331 - <target_grouping_symbol/>  
1332 - <target_currency_symbol/>  
1333 - <target_null_string/>  
1334 - <target_aggregation_type>-</target_aggregation_type>  
1335 - </field>  
1336 - <field>  
1337 - <field_name>all_content</field_name>  
1338 - <key_value>43</key_value>  
1339 - <target_name>fcno43</target_name>  
1340 - <target_type>String</target_type>  
1341 - <target_format/>  
1342 - <target_length>-1</target_length>  
1343 - <target_precision>-1</target_precision>  
1344 - <target_decimal_symbol/>  
1345 - <target_grouping_symbol/>  
1346 - <target_currency_symbol/>  
1347 - <target_null_string/>  
1348 - <target_aggregation_type>-</target_aggregation_type>  
1349 - </field>  
1350 - <field>  
1351 - <field_name>all_content</field_name>  
1352 - <key_value>44</key_value>  
1353 - <target_name>fcno44</target_name>  
1354 - <target_type>String</target_type>  
1355 - <target_format/>  
1356 - <target_length>-1</target_length>  
1357 - <target_precision>-1</target_precision>  
1358 - <target_decimal_symbol/>  
1359 - <target_grouping_symbol/>  
1360 - <target_currency_symbol/>  
1361 - <target_null_string/>  
1362 - <target_aggregation_type>-</target_aggregation_type>  
1363 - </field>  
1364 - <field>  
1365 - <field_name>all_content</field_name>  
1366 - <key_value>45</key_value>  
1367 - <target_name>fcno45</target_name>  
1368 - <target_type>String</target_type>  
1369 - <target_format/>  
1370 - <target_length>-1</target_length>  
1371 - <target_precision>-1</target_precision>  
1372 - <target_decimal_symbol/>  
1373 - <target_grouping_symbol/>  
1374 - <target_currency_symbol/>  
1375 - <target_null_string/>  
1376 - <target_aggregation_type>-</target_aggregation_type>  
1377 - </field>  
1378 - <field>  
1379 - <field_name>all_content</field_name>  
1380 - <key_value>46</key_value>  
1381 - <target_name>fcno46</target_name>  
1382 - <target_type>String</target_type>  
1383 - <target_format/>  
1384 - <target_length>-1</target_length>  
1385 - <target_precision>-1</target_precision>  
1386 - <target_decimal_symbol/>  
1387 - <target_grouping_symbol/>  
1388 - <target_currency_symbol/>  
1389 - <target_null_string/>  
1390 - <target_aggregation_type>-</target_aggregation_type>  
1391 - </field>  
1392 - <field>  
1393 - <field_name>all_content</field_name>  
1394 - <key_value>47</key_value>  
1395 - <target_name>fcno47</target_name>  
1396 - <target_type>String</target_type>  
1397 - <target_format/>  
1398 - <target_length>-1</target_length>  
1399 - <target_precision>-1</target_precision>  
1400 - <target_decimal_symbol/>  
1401 - <target_grouping_symbol/>  
1402 - <target_currency_symbol/>  
1403 - <target_null_string/>  
1404 - <target_aggregation_type>-</target_aggregation_type>  
1405 - </field>  
1406 - <field>  
1407 - <field_name>all_content</field_name>  
1408 - <key_value>48</key_value>  
1409 - <target_name>fcno48</target_name>  
1410 - <target_type>String</target_type>  
1411 - <target_format/>  
1412 - <target_length>-1</target_length>  
1413 - <target_precision>-1</target_precision>  
1414 - <target_decimal_symbol/>  
1415 - <target_grouping_symbol/>  
1416 - <target_currency_symbol/>  
1417 - <target_null_string/>  
1418 - <target_aggregation_type>-</target_aggregation_type>  
1419 - </field>  
1420 - <field>  
1421 - <field_name>all_content</field_name>  
1422 - <key_value>49</key_value>  
1423 - <target_name>fcno49</target_name>  
1424 - <target_type>String</target_type>  
1425 - <target_format/>  
1426 - <target_length>-1</target_length>  
1427 - <target_precision>-1</target_precision>  
1428 - <target_decimal_symbol/>  
1429 - <target_grouping_symbol/>  
1430 - <target_currency_symbol/>  
1431 - <target_null_string/>  
1432 - <target_aggregation_type>-</target_aggregation_type>  
1433 - </field>  
1434 - <field>  
1435 - <field_name>all_content</field_name>  
1436 - <key_value>50</key_value>  
1437 - <target_name>fcno50</target_name>  
1438 - <target_type>String</target_type>  
1439 - <target_format/>  
1440 - <target_length>-1</target_length>  
1441 - <target_precision>-1</target_precision>  
1442 - <target_decimal_symbol/>  
1443 - <target_grouping_symbol/>  
1444 - <target_currency_symbol/>  
1445 - <target_null_string/>  
1446 - <target_aggregation_type>-</target_aggregation_type>  
1447 - </field>  
1448 - <field>  
1449 - <field_name>all_content</field_name>  
1450 - <key_value>51</key_value>  
1451 - <target_name>fcno51</target_name>  
1452 - <target_type>String</target_type>  
1453 - <target_format/>  
1454 - <target_length>-1</target_length>  
1455 - <target_precision>-1</target_precision>  
1456 - <target_decimal_symbol/>  
1457 - <target_grouping_symbol/>  
1458 - <target_currency_symbol/>  
1459 - <target_null_string/>  
1460 - <target_aggregation_type>-</target_aggregation_type>  
1461 - </field>  
1462 - <field>  
1463 - <field_name>all_content</field_name>  
1464 - <key_value>52</key_value>  
1465 - <target_name>fcno52</target_name>  
1466 - <target_type>String</target_type>  
1467 - <target_format/>  
1468 - <target_length>-1</target_length>  
1469 - <target_precision>-1</target_precision>  
1470 - <target_decimal_symbol/>  
1471 - <target_grouping_symbol/>  
1472 - <target_currency_symbol/>  
1473 - <target_null_string/>  
1474 - <target_aggregation_type>-</target_aggregation_type>  
1475 - </field>  
1476 - <field>  
1477 - <field_name>all_content</field_name>  
1478 - <key_value>53</key_value>  
1479 - <target_name>fcno53</target_name>  
1480 - <target_type>String</target_type>  
1481 - <target_format/>  
1482 - <target_length>-1</target_length>  
1483 - <target_precision>-1</target_precision>  
1484 - <target_decimal_symbol/>  
1485 - <target_grouping_symbol/>  
1486 - <target_currency_symbol/>  
1487 - <target_null_string/>  
1488 - <target_aggregation_type>-</target_aggregation_type>  
1489 - </field>  
1490 - <field>  
1491 - <field_name>all_content</field_name>  
1492 - <key_value>54</key_value>  
1493 - <target_name>fcno54</target_name>  
1494 - <target_type>String</target_type>  
1495 - <target_format/>  
1496 - <target_length>-1</target_length>  
1497 - <target_precision>-1</target_precision>  
1498 - <target_decimal_symbol/>  
1499 - <target_grouping_symbol/>  
1500 - <target_currency_symbol/>  
1501 - <target_null_string/>  
1502 - <target_aggregation_type>-</target_aggregation_type>  
1503 - </field>  
1504 - <field>  
1505 - <field_name>all_content</field_name>  
1506 - <key_value>55</key_value>  
1507 - <target_name>fcno55</target_name>  
1508 - <target_type>String</target_type>  
1509 - <target_format/>  
1510 - <target_length>-1</target_length>  
1511 - <target_precision>-1</target_precision>  
1512 - <target_decimal_symbol/>  
1513 - <target_grouping_symbol/>  
1514 - <target_currency_symbol/>  
1515 - <target_null_string/>  
1516 - <target_aggregation_type>-</target_aggregation_type>  
1517 - </field>  
1518 - <field>  
1519 - <field_name>all_content</field_name>  
1520 - <key_value>56</key_value>  
1521 - <target_name>fcno56</target_name>  
1522 - <target_type>String</target_type>  
1523 - <target_format/>  
1524 - <target_length>-1</target_length>  
1525 - <target_precision>-1</target_precision>  
1526 - <target_decimal_symbol/>  
1527 - <target_grouping_symbol/>  
1528 - <target_currency_symbol/>  
1529 - <target_null_string/>  
1530 - <target_aggregation_type>-</target_aggregation_type>  
1531 - </field>  
1532 - <field>  
1533 - <field_name>all_content</field_name>  
1534 - <key_value>57</key_value>  
1535 - <target_name>fcno57</target_name>  
1536 - <target_type>String</target_type>  
1537 - <target_format/>  
1538 - <target_length>-1</target_length>  
1539 - <target_precision>-1</target_precision>  
1540 - <target_decimal_symbol/>  
1541 - <target_grouping_symbol/>  
1542 - <target_currency_symbol/>  
1543 - <target_null_string/>  
1544 - <target_aggregation_type>-</target_aggregation_type>  
1545 - </field>  
1546 - <field>  
1547 - <field_name>all_content</field_name>  
1548 - <key_value>58</key_value>  
1549 - <target_name>fcno58</target_name>  
1550 - <target_type>String</target_type>  
1551 - <target_format/>  
1552 - <target_length>-1</target_length>  
1553 - <target_precision>-1</target_precision>  
1554 - <target_decimal_symbol/>  
1555 - <target_grouping_symbol/>  
1556 - <target_currency_symbol/>  
1557 - <target_null_string/>  
1558 - <target_aggregation_type>-</target_aggregation_type>  
1559 - </field>  
1560 - <field>  
1561 - <field_name>all_content</field_name>  
1562 - <key_value>59</key_value>  
1563 - <target_name>fcno59</target_name>  
1564 - <target_type>String</target_type>  
1565 - <target_format/>  
1566 - <target_length>-1</target_length>  
1567 - <target_precision>-1</target_precision>  
1568 - <target_decimal_symbol/>  
1569 - <target_grouping_symbol/>  
1570 - <target_currency_symbol/>  
1571 - <target_null_string/>  
1572 - <target_aggregation_type>-</target_aggregation_type>  
1573 - </field>  
1574 - <field>  
1575 - <field_name>all_content</field_name>  
1576 - <key_value>60</key_value>  
1577 - <target_name>fcno60</target_name>  
1578 - <target_type>String</target_type>  
1579 - <target_format/>  
1580 - <target_length>-1</target_length>  
1581 - <target_precision>-1</target_precision>  
1582 - <target_decimal_symbol/>  
1583 - <target_grouping_symbol/>  
1584 - <target_currency_symbol/>  
1585 - <target_null_string/>  
1586 - <target_aggregation_type>-</target_aggregation_type>  
1587 - </field>  
1588 - <field>  
1589 - <field_name>all_content</field_name>  
1590 - <key_value>61</key_value>  
1591 - <target_name>fcno61</target_name>  
1592 - <target_type>String</target_type>  
1593 - <target_format/>  
1594 - <target_length>-1</target_length>  
1595 - <target_precision>-1</target_precision>  
1596 - <target_decimal_symbol/>  
1597 - <target_grouping_symbol/>  
1598 - <target_currency_symbol/>  
1599 - <target_null_string/>  
1600 - <target_aggregation_type>-</target_aggregation_type>  
1601 - </field>  
1602 - <field>  
1603 - <field_name>all_content</field_name>  
1604 - <key_value>62</key_value>  
1605 - <target_name>fcno62</target_name>  
1606 - <target_type>String</target_type>  
1607 - <target_format/>  
1608 - <target_length>-1</target_length>  
1609 - <target_precision>-1</target_precision>  
1610 - <target_decimal_symbol/>  
1611 - <target_grouping_symbol/>  
1612 - <target_currency_symbol/>  
1613 - <target_null_string/>  
1614 - <target_aggregation_type>-</target_aggregation_type>  
1615 - </field>  
1616 - <field>  
1617 - <field_name>all_content</field_name>  
1618 - <key_value>63</key_value>  
1619 - <target_name>fcno63</target_name>  
1620 - <target_type>String</target_type>  
1621 - <target_format/>  
1622 - <target_length>-1</target_length>  
1623 - <target_precision>-1</target_precision>  
1624 - <target_decimal_symbol/>  
1625 - <target_grouping_symbol/>  
1626 - <target_currency_symbol/>  
1627 - <target_null_string/>  
1628 - <target_aggregation_type>-</target_aggregation_type>  
1629 - </field>  
1630 - <field>  
1631 - <field_name>all_content</field_name>  
1632 - <key_value>64</key_value>  
1633 - <target_name>fcno64</target_name>  
1634 - <target_type>String</target_type>  
1635 - <target_format/>  
1636 - <target_length>-1</target_length>  
1637 - <target_precision>-1</target_precision>  
1638 - <target_decimal_symbol/>  
1639 - <target_grouping_symbol/>  
1640 - <target_currency_symbol/>  
1641 - <target_null_string/>  
1642 - <target_aggregation_type>-</target_aggregation_type>  
1643 - </field>  
1644 - <field>  
1645 - <field_name>all_content</field_name>  
1646 - <key_value>65</key_value>  
1647 - <target_name>fcno65</target_name>  
1648 - <target_type>String</target_type>  
1649 - <target_format/>  
1650 - <target_length>-1</target_length>  
1651 - <target_precision>-1</target_precision>  
1652 - <target_decimal_symbol/>  
1653 - <target_grouping_symbol/>  
1654 - <target_currency_symbol/>  
1655 - <target_null_string/>  
1656 - <target_aggregation_type>-</target_aggregation_type>  
1657 - </field>  
1658 - <field>  
1659 - <field_name>all_content</field_name>  
1660 - <key_value>66</key_value>  
1661 - <target_name>fcno66</target_name>  
1662 - <target_type>String</target_type>  
1663 - <target_format/>  
1664 - <target_length>-1</target_length>  
1665 - <target_precision>-1</target_precision>  
1666 - <target_decimal_symbol/>  
1667 - <target_grouping_symbol/>  
1668 - <target_currency_symbol/>  
1669 - <target_null_string/>  
1670 - <target_aggregation_type>-</target_aggregation_type>  
1671 - </field>  
1672 - <field>  
1673 - <field_name>all_content</field_name>  
1674 - <key_value>67</key_value>  
1675 - <target_name>fcno67</target_name>  
1676 - <target_type>String</target_type>  
1677 - <target_format/>  
1678 - <target_length>-1</target_length>  
1679 - <target_precision>-1</target_precision>  
1680 - <target_decimal_symbol/>  
1681 - <target_grouping_symbol/>  
1682 - <target_currency_symbol/>  
1683 - <target_null_string/>  
1684 - <target_aggregation_type>-</target_aggregation_type>  
1685 - </field>  
1686 - <field>  
1687 - <field_name>all_content</field_name>  
1688 - <key_value>68</key_value>  
1689 - <target_name>fcno68</target_name>  
1690 - <target_type>String</target_type>  
1691 - <target_format/>  
1692 - <target_length>-1</target_length>  
1693 - <target_precision>-1</target_precision>  
1694 - <target_decimal_symbol/>  
1695 - <target_grouping_symbol/>  
1696 - <target_currency_symbol/>  
1697 - <target_null_string/>  
1698 - <target_aggregation_type>-</target_aggregation_type>  
1699 - </field>  
1700 - <field>  
1701 - <field_name>all_content</field_name>  
1702 - <key_value>69</key_value>  
1703 - <target_name>fcno69</target_name>  
1704 - <target_type>String</target_type>  
1705 - <target_format/>  
1706 - <target_length>-1</target_length>  
1707 - <target_precision>-1</target_precision>  
1708 - <target_decimal_symbol/>  
1709 - <target_grouping_symbol/>  
1710 - <target_currency_symbol/>  
1711 - <target_null_string/>  
1712 - <target_aggregation_type>-</target_aggregation_type>  
1713 - </field>  
1714 - <field>  
1715 - <field_name>all_content</field_name>  
1716 - <key_value>70</key_value>  
1717 - <target_name>fcno70</target_name>  
1718 - <target_type>String</target_type>  
1719 - <target_format/>  
1720 - <target_length>-1</target_length>  
1721 - <target_precision>-1</target_precision>  
1722 - <target_decimal_symbol/>  
1723 - <target_grouping_symbol/>  
1724 - <target_currency_symbol/>  
1725 - <target_null_string/>  
1726 - <target_aggregation_type>-</target_aggregation_type>  
1727 - </field>  
1728 - </fields>  
1729 - <cluster_schema/>  
1730 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1731 - <xloc>683</xloc>  
1732 - <yloc>184</yloc>  
1733 - <draw>Y</draw>  
1734 - </GUI>  
1735 - </step>  
1736 -  
1737 - <step>  
1738 - <name>&#x53bb;&#x9664;&#x5b57;&#x6bb5;</name>  
1739 - <type>SelectValues</type>  
1740 - <description/>  
1741 - <distribute>N</distribute>  
1742 - <custom_distribution/>  
1743 - <copies>1</copies>  
1744 - <partitioning>  
1745 - <method>none</method>  
1746 - <schema_name/>  
1747 - </partitioning>  
1748 - <fields> <field> <name>lp</name>  
1749 - <rename/>  
1750 - <length>-2</length>  
1751 - <precision>-2</precision>  
1752 - </field> <field> <name>fcno1</name>  
1753 - <rename/>  
1754 - <length>-2</length>  
1755 - <precision>-2</precision>  
1756 - </field> <field> <name>fcno2</name>  
1757 - <rename/>  
1758 - <length>-2</length>  
1759 - <precision>-2</precision>  
1760 - </field> <field> <name>fcno3</name>  
1761 - <rename/>  
1762 - <length>-2</length>  
1763 - <precision>-2</precision>  
1764 - </field> <field> <name>fcno4</name>  
1765 - <rename/>  
1766 - <length>-2</length>  
1767 - <precision>-2</precision>  
1768 - </field> <field> <name>fcno5</name>  
1769 - <rename/>  
1770 - <length>-2</length>  
1771 - <precision>-2</precision>  
1772 - </field> <field> <name>fcno6</name>  
1773 - <rename/>  
1774 - <length>-2</length>  
1775 - <precision>-2</precision>  
1776 - </field> <field> <name>fcno7</name>  
1777 - <rename/>  
1778 - <length>-2</length>  
1779 - <precision>-2</precision>  
1780 - </field> <field> <name>fcno8</name>  
1781 - <rename/>  
1782 - <length>-2</length>  
1783 - <precision>-2</precision>  
1784 - </field> <field> <name>fcno9</name>  
1785 - <rename/>  
1786 - <length>-2</length>  
1787 - <precision>-2</precision>  
1788 - </field> <field> <name>fcno10</name>  
1789 - <rename/>  
1790 - <length>-2</length>  
1791 - <precision>-2</precision>  
1792 - </field> <field> <name>fcno11</name>  
1793 - <rename/>  
1794 - <length>-2</length>  
1795 - <precision>-2</precision>  
1796 - </field> <field> <name>fcno12</name>  
1797 - <rename/>  
1798 - <length>-2</length>  
1799 - <precision>-2</precision>  
1800 - </field> <field> <name>fcno13</name>  
1801 - <rename/>  
1802 - <length>-2</length>  
1803 - <precision>-2</precision>  
1804 - </field> <field> <name>fcno14</name>  
1805 - <rename/>  
1806 - <length>-2</length>  
1807 - <precision>-2</precision>  
1808 - </field> <field> <name>fcno15</name>  
1809 - <rename/>  
1810 - <length>-2</length>  
1811 - <precision>-2</precision>  
1812 - </field> <field> <name>fcno16</name>  
1813 - <rename/>  
1814 - <length>-2</length>  
1815 - <precision>-2</precision>  
1816 - </field> <field> <name>fcno17</name>  
1817 - <rename/>  
1818 - <length>-2</length>  
1819 - <precision>-2</precision>  
1820 - </field> <field> <name>fcno18</name>  
1821 - <rename/>  
1822 - <length>-2</length>  
1823 - <precision>-2</precision>  
1824 - </field> <field> <name>fcno19</name>  
1825 - <rename/>  
1826 - <length>-2</length>  
1827 - <precision>-2</precision>  
1828 - </field> <field> <name>fcno20</name>  
1829 - <rename/>  
1830 - <length>-2</length>  
1831 - <precision>-2</precision>  
1832 - </field> <field> <name>fcno21</name>  
1833 - <rename/>  
1834 - <length>-2</length>  
1835 - <precision>-2</precision>  
1836 - </field> <field> <name>fcno22</name>  
1837 - <rename/>  
1838 - <length>-2</length>  
1839 - <precision>-2</precision>  
1840 - </field> <field> <name>fcno23</name>  
1841 - <rename/>  
1842 - <length>-2</length>  
1843 - <precision>-2</precision>  
1844 - </field> <field> <name>fcno24</name>  
1845 - <rename/>  
1846 - <length>-2</length>  
1847 - <precision>-2</precision>  
1848 - </field> <field> <name>fcno25</name>  
1849 - <rename/>  
1850 - <length>-2</length>  
1851 - <precision>-2</precision>  
1852 - </field> <field> <name>fcno26</name>  
1853 - <rename/>  
1854 - <length>-2</length>  
1855 - <precision>-2</precision>  
1856 - </field> <field> <name>fcno27</name>  
1857 - <rename/>  
1858 - <length>-2</length>  
1859 - <precision>-2</precision>  
1860 - </field> <field> <name>fcno28</name>  
1861 - <rename/>  
1862 - <length>-2</length>  
1863 - <precision>-2</precision>  
1864 - </field> <field> <name>fcno29</name>  
1865 - <rename/>  
1866 - <length>-2</length>  
1867 - <precision>-2</precision>  
1868 - </field> <field> <name>fcno30</name>  
1869 - <rename/>  
1870 - <length>-2</length>  
1871 - <precision>-2</precision>  
1872 - </field> <field> <name>fcno31</name>  
1873 - <rename/>  
1874 - <length>-2</length>  
1875 - <precision>-2</precision>  
1876 - </field> <field> <name>fcno32</name>  
1877 - <rename/>  
1878 - <length>-2</length>  
1879 - <precision>-2</precision>  
1880 - </field> <field> <name>fcno33</name>  
1881 - <rename/>  
1882 - <length>-2</length>  
1883 - <precision>-2</precision>  
1884 - </field> <field> <name>fcno34</name>  
1885 - <rename/>  
1886 - <length>-2</length>  
1887 - <precision>-2</precision>  
1888 - </field> <field> <name>fcno35</name>  
1889 - <rename/>  
1890 - <length>-2</length>  
1891 - <precision>-2</precision>  
1892 - </field> <field> <name>fcno36</name>  
1893 - <rename/>  
1894 - <length>-2</length>  
1895 - <precision>-2</precision>  
1896 - </field> <field> <name>fcno37</name>  
1897 - <rename/>  
1898 - <length>-2</length>  
1899 - <precision>-2</precision>  
1900 - </field> <field> <name>fcno38</name>  
1901 - <rename/>  
1902 - <length>-2</length>  
1903 - <precision>-2</precision>  
1904 - </field> <field> <name>fcno39</name>  
1905 - <rename/>  
1906 - <length>-2</length>  
1907 - <precision>-2</precision>  
1908 - </field> <field> <name>fcno40</name>  
1909 - <rename/>  
1910 - <length>-2</length>  
1911 - <precision>-2</precision>  
1912 - </field> <field> <name>fcno41</name>  
1913 - <rename/>  
1914 - <length>-2</length>  
1915 - <precision>-2</precision>  
1916 - </field> <field> <name>fcno42</name>  
1917 - <rename/>  
1918 - <length>-2</length>  
1919 - <precision>-2</precision>  
1920 - </field> <field> <name>fcno43</name>  
1921 - <rename/>  
1922 - <length>-2</length>  
1923 - <precision>-2</precision>  
1924 - </field> <field> <name>fcno44</name>  
1925 - <rename/>  
1926 - <length>-2</length>  
1927 - <precision>-2</precision>  
1928 - </field> <field> <name>fcno45</name>  
1929 - <rename/>  
1930 - <length>-2</length>  
1931 - <precision>-2</precision>  
1932 - </field> <field> <name>fcno46</name>  
1933 - <rename/>  
1934 - <length>-2</length>  
1935 - <precision>-2</precision>  
1936 - </field> <field> <name>fcno47</name>  
1937 - <rename/>  
1938 - <length>-2</length>  
1939 - <precision>-2</precision>  
1940 - </field> <field> <name>fcno48</name>  
1941 - <rename/>  
1942 - <length>-2</length>  
1943 - <precision>-2</precision>  
1944 - </field> <field> <name>fcno49</name>  
1945 - <rename/>  
1946 - <length>-2</length>  
1947 - <precision>-2</precision>  
1948 - </field> <field> <name>fcno50</name>  
1949 - <rename/>  
1950 - <length>-2</length>  
1951 - <precision>-2</precision>  
1952 - </field> <field> <name>fcno51</name>  
1953 - <rename/>  
1954 - <length>-2</length>  
1955 - <precision>-2</precision>  
1956 - </field> <field> <name>fcno52</name>  
1957 - <rename/>  
1958 - <length>-2</length>  
1959 - <precision>-2</precision>  
1960 - </field> <field> <name>fcno53</name>  
1961 - <rename/>  
1962 - <length>-2</length>  
1963 - <precision>-2</precision>  
1964 - </field> <field> <name>fcno54</name>  
1965 - <rename/>  
1966 - <length>-2</length>  
1967 - <precision>-2</precision>  
1968 - </field> <field> <name>fcno55</name>  
1969 - <rename/>  
1970 - <length>-2</length>  
1971 - <precision>-2</precision>  
1972 - </field> <field> <name>fcno56</name>  
1973 - <rename/>  
1974 - <length>-2</length>  
1975 - <precision>-2</precision>  
1976 - </field> <field> <name>fcno57</name>  
1977 - <rename/>  
1978 - <length>-2</length>  
1979 - <precision>-2</precision>  
1980 - </field> <field> <name>fcno58</name>  
1981 - <rename/>  
1982 - <length>-2</length>  
1983 - <precision>-2</precision>  
1984 - </field> <field> <name>fcno59</name>  
1985 - <rename/>  
1986 - <length>-2</length>  
1987 - <precision>-2</precision>  
1988 - </field> <field> <name>fcno60</name>  
1989 - <rename/>  
1990 - <length>-2</length>  
1991 - <precision>-2</precision>  
1992 - </field> <field> <name>fcno61</name>  
1993 - <rename/>  
1994 - <length>-2</length>  
1995 - <precision>-2</precision>  
1996 - </field> <field> <name>fcno62</name>  
1997 - <rename/>  
1998 - <length>-2</length>  
1999 - <precision>-2</precision>  
2000 - </field> <field> <name>fcno63</name>  
2001 - <rename/>  
2002 - <length>-2</length>  
2003 - <precision>-2</precision>  
2004 - </field> <field> <name>fcno64</name>  
2005 - <rename/>  
2006 - <length>-2</length>  
2007 - <precision>-2</precision>  
2008 - </field> <field> <name>fcno65</name>  
2009 - <rename/>  
2010 - <length>-2</length>  
2011 - <precision>-2</precision>  
2012 - </field> <field> <name>fcno66</name>  
2013 - <rename/>  
2014 - <length>-2</length>  
2015 - <precision>-2</precision>  
2016 - </field> <field> <name>fcno67</name>  
2017 - <rename/>  
2018 - <length>-2</length>  
2019 - <precision>-2</precision>  
2020 - </field> <field> <name>fcno68</name>  
2021 - <rename/>  
2022 - <length>-2</length>  
2023 - <precision>-2</precision>  
2024 - </field> <field> <name>fcno69</name>  
2025 - <rename/>  
2026 - <length>-2</length>  
2027 - <precision>-2</precision>  
2028 - </field> <field> <name>fcno70</name>  
2029 - <rename/>  
2030 - <length>-2</length>  
2031 - <precision>-2</precision>  
2032 - </field> <select_unspecified>N</select_unspecified>  
2033 - </fields> <cluster_schema/>  
2034 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2035 - <xloc>691</xloc>  
2036 - <yloc>361</yloc>  
2037 - <draw>Y</draw>  
2038 - </GUI>  
2039 - </step>  
2040 -  
2041 - <step>  
2042 - <name>&#x5408;&#x5e76;&#x5185;&#x5bb9;</name>  
2043 - <type>ScriptValueMod</type>  
2044 - <description/>  
2045 - <distribute>Y</distribute>  
2046 - <custom_distribution/>  
2047 - <copies>1</copies>  
2048 - <partitioning>  
2049 - <method>none</method>  
2050 - <schema_name/>  
2051 - </partitioning>  
2052 - <compatible>N</compatible>  
2053 - <optimizationLevel>9</optimizationLevel>  
2054 - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>  
2055 - <jsScript_name>Script 1</jsScript_name>  
2056 - <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_code &#x7c;&#x7c; &#x27;null&#x27;&#x29;&#x3b;&#xa;all_content_array.push&#x28;zdz_code &#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>  
2057 - </jsScript> </jsScripts> <fields> <field> <name>all_content</name>  
2058 - <rename>all_content</rename> 703 + <field>
  704 + <name>fcno71</name>
2059 <type>String</type> 705 <type>String</type>
2060 - <length>-1</length>  
2061 - <precision>-1</precision>  
2062 - <replace>N</replace>  
2063 - </field> </fields> <cluster_schema/>  
2064 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2065 - <xloc>441</xloc>  
2066 - <yloc>84</yloc>  
2067 - <draw>Y</draw>  
2068 - </GUI>  
2069 - </step>  
2070 -  
2071 - <step>  
2072 - <name>&#x6587;&#x672c;&#x6587;&#x4ef6;&#x8f93;&#x51fa;</name>  
2073 - <type>TextFileOutput</type>  
2074 - <description/>  
2075 - <distribute>Y</distribute>  
2076 - <custom_distribution/>  
2077 - <copies>1</copies>  
2078 - <partitioning>  
2079 - <method>none</method>  
2080 - <schema_name/>  
2081 - </partitioning>  
2082 - <separator>&#x3b;</separator>  
2083 - <enclosure>&#x22;</enclosure>  
2084 - <enclosure_forced>N</enclosure_forced>  
2085 - <enclosure_fix_disabled>N</enclosure_fix_disabled>  
2086 - <header>Y</header>  
2087 - <footer>N</footer>  
2088 - <format>DOS</format>  
2089 - <compression>None</compression>  
2090 - <encoding>UTF-8</encoding>  
2091 - <endedLine/>  
2092 - <fileNameInField>N</fileNameInField>  
2093 - <fileNameField/>  
2094 - <create_parent_folder>Y</create_parent_folder>  
2095 - <file>  
2096 - <name>&#x24;&#x7b;tempfilepath&#x7d;</name>  
2097 - <is_command>N</is_command>  
2098 - <servlet_output>N</servlet_output>  
2099 - <do_not_open_new_file_init>N</do_not_open_new_file_init>  
2100 - <extention>txt</extention>  
2101 - <append>N</append>  
2102 - <split>N</split>  
2103 - <haspartno>N</haspartno>  
2104 - <add_date>N</add_date>  
2105 - <add_time>N</add_time>  
2106 - <SpecifyFormat>N</SpecifyFormat>  
2107 - <date_time_format/>  
2108 - <add_to_result_filenames>Y</add_to_result_filenames>  
2109 - <pad>N</pad>  
2110 - <fast_dump>N</fast_dump>  
2111 - <splitevery>0</splitevery>  
2112 - </file>  
2113 - <fields> 706 + <format/>
  707 + </field>
  708 + <field>
  709 + <name>fcno72</name>
  710 + <type>String</type>
  711 + <format/>
  712 + </field>
  713 + <field>
  714 + <name>fcno73</name>
  715 + <type>String</type>
  716 + <format/>
  717 + </field>
  718 + <field>
  719 + <name>fcno74</name>
  720 + <type>String</type>
  721 + <format/>
  722 + </field>
  723 + <field>
  724 + <name>fcno75</name>
  725 + <type>String</type>
  726 + <format/>
  727 + </field>
  728 + <field>
  729 + <name>fcno76</name>
  730 + <type>String</type>
  731 + <format/>
  732 + </field>
2114 <field> 733 <field>
2115 - <name>lp</name> 734 + <name>fcno77</name>
2116 <type>String</type> 735 <type>String</type>
2117 <format/> 736 <format/>
2118 - <currency/>  
2119 - <decimal/>  
2120 - <group/>  
2121 - <nullif/>  
2122 - <trim_type>none</trim_type>  
2123 - <length>255</length>  
2124 - <precision>-1</precision>  
2125 </field> 737 </field>
2126 <field> 738 <field>
2127 - <name>fcno1</name> 739 + <name>fcno78</name>
2128 <type>String</type> 740 <type>String</type>
2129 <format/> 741 <format/>
2130 - <currency/>  
2131 - <decimal/>  
2132 - <group/>  
2133 - <nullif/>  
2134 - <trim_type>none</trim_type>  
2135 - <length>-1</length>  
2136 - <precision>-1</precision>  
2137 </field> 742 </field>
2138 <field> 743 <field>
2139 - <name>fcno2</name> 744 + <name>fcno79</name>
2140 <type>String</type> 745 <type>String</type>
2141 <format/> 746 <format/>
2142 - <currency/>  
2143 - <decimal/>  
2144 - <group/>  
2145 - <nullif/>  
2146 - <trim_type>none</trim_type>  
2147 - <length>-1</length>  
2148 - <precision>-1</precision>  
2149 </field> 747 </field>
2150 <field> 748 <field>
2151 - <name>fcno3</name> 749 + <name>fcno80</name>
2152 <type>String</type> 750 <type>String</type>
2153 <format/> 751 <format/>
2154 - <currency/>  
2155 - <decimal/>  
2156 - <group/>  
2157 - <nullif/>  
2158 - <trim_type>none</trim_type>  
2159 - <length>-1</length>  
2160 - <precision>-1</precision>  
2161 </field> 752 </field>
2162 <field> 753 <field>
2163 - <name>fcno4</name> 754 + <name>fcno81</name>
2164 <type>String</type> 755 <type>String</type>
2165 <format/> 756 <format/>
2166 - <currency/>  
2167 - <decimal/>  
2168 - <group/>  
2169 - <nullif/>  
2170 - <trim_type>none</trim_type>  
2171 - <length>-1</length>  
2172 - <precision>-1</precision>  
2173 </field> 757 </field>
2174 <field> 758 <field>
2175 - <name>fcno5</name> 759 + <name>fcno82</name>
2176 <type>String</type> 760 <type>String</type>
2177 <format/> 761 <format/>
2178 - <currency/>  
2179 - <decimal/>  
2180 - <group/>  
2181 - <nullif/>  
2182 - <trim_type>none</trim_type>  
2183 - <length>-1</length>  
2184 - <precision>-1</precision>  
2185 </field> 762 </field>
2186 <field> 763 <field>
2187 - <name>fcno6</name> 764 + <name>fcno83</name>
2188 <type>String</type> 765 <type>String</type>
2189 <format/> 766 <format/>
2190 - <currency/>  
2191 - <decimal/>  
2192 - <group/>  
2193 - <nullif/>  
2194 - <trim_type>none</trim_type>  
2195 - <length>-1</length>  
2196 - <precision>-1</precision>  
2197 </field> 767 </field>
2198 <field> 768 <field>
2199 - <name>fcno7</name> 769 + <name>fcno84</name>
2200 <type>String</type> 770 <type>String</type>
2201 <format/> 771 <format/>
2202 - <currency/>  
2203 - <decimal/>  
2204 - <group/>  
2205 - <nullif/>  
2206 - <trim_type>none</trim_type>  
2207 - <length>-1</length>  
2208 - <precision>-1</precision>  
2209 </field> 772 </field>
2210 <field> 773 <field>
2211 - <name>fcno8</name> 774 + <name>fcno85</name>
2212 <type>String</type> 775 <type>String</type>
2213 <format/> 776 <format/>
2214 - <currency/>  
2215 - <decimal/>  
2216 - <group/>  
2217 - <nullif/>  
2218 - <trim_type>none</trim_type>  
2219 - <length>-1</length>  
2220 - <precision>-1</precision>  
2221 </field> 777 </field>
2222 <field> 778 <field>
2223 - <name>fcno9</name> 779 + <name>fcno86</name>
2224 <type>String</type> 780 <type>String</type>
2225 <format/> 781 <format/>
2226 - <currency/>  
2227 - <decimal/>  
2228 - <group/>  
2229 - <nullif/>  
2230 - <trim_type>none</trim_type>  
2231 - <length>-1</length>  
2232 - <precision>-1</precision>  
2233 </field> 782 </field>
2234 <field> 783 <field>
2235 - <name>fcno10</name> 784 + <name>fcno87</name>
2236 <type>String</type> 785 <type>String</type>
2237 <format/> 786 <format/>
2238 - <currency/>  
2239 - <decimal/>  
2240 - <group/>  
2241 - <nullif/>  
2242 - <trim_type>none</trim_type>  
2243 - <length>-1</length>  
2244 - <precision>-1</precision>  
2245 </field> 787 </field>
2246 <field> 788 <field>
2247 - <name>fcno11</name> 789 + <name>fcno88</name>
2248 <type>String</type> 790 <type>String</type>
2249 <format/> 791 <format/>
2250 - <currency/>  
2251 - <decimal/>  
2252 - <group/>  
2253 - <nullif/>  
2254 - <trim_type>none</trim_type>  
2255 - <length>-1</length>  
2256 - <precision>-1</precision>  
2257 </field> 792 </field>
2258 <field> 793 <field>
2259 - <name>fcno12</name> 794 + <name>fcno89</name>
2260 <type>String</type> 795 <type>String</type>
2261 <format/> 796 <format/>
2262 - <currency/>  
2263 - <decimal/>  
2264 - <group/>  
2265 - <nullif/>  
2266 - <trim_type>none</trim_type>  
2267 - <length>-1</length>  
2268 - <precision>-1</precision>  
2269 </field> 797 </field>
2270 <field> 798 <field>
2271 - <name>fcno13</name> 799 + <name>fcno90</name>
2272 <type>String</type> 800 <type>String</type>
2273 <format/> 801 <format/>
2274 - <currency/>  
2275 - <decimal/>  
2276 - <group/>  
2277 - <nullif/>  
2278 - <trim_type>none</trim_type>  
2279 - <length>-1</length>  
2280 - <precision>-1</precision>  
2281 </field> 802 </field>
2282 <field> 803 <field>
2283 - <name>fcno14</name> 804 + <name>fcno91</name>
2284 <type>String</type> 805 <type>String</type>
2285 <format/> 806 <format/>
2286 - <currency/>  
2287 - <decimal/>  
2288 - <group/>  
2289 - <nullif/>  
2290 - <trim_type>none</trim_type>  
2291 - <length>-1</length>  
2292 - <precision>-1</precision>  
2293 </field> 807 </field>
2294 <field> 808 <field>
2295 - <name>fcno15</name> 809 + <name>fcno92</name>
2296 <type>String</type> 810 <type>String</type>
2297 <format/> 811 <format/>
2298 - <currency/>  
2299 - <decimal/>  
2300 - <group/>  
2301 - <nullif/>  
2302 - <trim_type>none</trim_type>  
2303 - <length>-1</length>  
2304 - <precision>-1</precision>  
2305 </field> 812 </field>
2306 <field> 813 <field>
2307 - <name>fcno16</name> 814 + <name>fcno93</name>
2308 <type>String</type> 815 <type>String</type>
2309 <format/> 816 <format/>
2310 - <currency/>  
2311 - <decimal/>  
2312 - <group/>  
2313 - <nullif/>  
2314 - <trim_type>none</trim_type>  
2315 - <length>-1</length>  
2316 - <precision>-1</precision>  
2317 </field> 817 </field>
2318 <field> 818 <field>
2319 - <name>fcno17</name> 819 + <name>fcno94</name>
2320 <type>String</type> 820 <type>String</type>
2321 <format/> 821 <format/>
2322 - <currency/>  
2323 - <decimal/>  
2324 - <group/>  
2325 - <nullif/>  
2326 - <trim_type>none</trim_type>  
2327 - <length>-1</length>  
2328 - <precision>-1</precision>  
2329 </field> 822 </field>
2330 <field> 823 <field>
2331 - <name>fcno18</name> 824 + <name>fcno95</name>
2332 <type>String</type> 825 <type>String</type>
2333 <format/> 826 <format/>
2334 - <currency/>  
2335 - <decimal/>  
2336 - <group/>  
2337 - <nullif/>  
2338 - <trim_type>none</trim_type>  
2339 - <length>-1</length>  
2340 - <precision>-1</precision>  
2341 </field> 827 </field>
2342 <field> 828 <field>
2343 - <name>fcno19</name> 829 + <name>fcno96</name>
2344 <type>String</type> 830 <type>String</type>
2345 <format/> 831 <format/>
2346 - <currency/>  
2347 - <decimal/>  
2348 - <group/>  
2349 - <nullif/>  
2350 - <trim_type>none</trim_type>  
2351 - <length>-1</length>  
2352 - <precision>-1</precision>  
2353 </field> 832 </field>
2354 <field> 833 <field>
2355 - <name>fcno20</name> 834 + <name>fcno97</name>
2356 <type>String</type> 835 <type>String</type>
2357 <format/> 836 <format/>
2358 - <currency/>  
2359 - <decimal/>  
2360 - <group/>  
2361 - <nullif/>  
2362 - <trim_type>none</trim_type>  
2363 - <length>-1</length>  
2364 - <precision>-1</precision>  
2365 </field> 837 </field>
2366 <field> 838 <field>
2367 - <name>fcno21</name> 839 + <name>fcno98</name>
2368 <type>String</type> 840 <type>String</type>
2369 <format/> 841 <format/>
2370 - <currency/>  
2371 - <decimal/>  
2372 - <group/>  
2373 - <nullif/>  
2374 - <trim_type>none</trim_type>  
2375 - <length>-1</length>  
2376 - <precision>-1</precision>  
2377 </field> 842 </field>
2378 <field> 843 <field>
2379 - <name>fcno22</name> 844 + <name>fcno99</name>
2380 <type>String</type> 845 <type>String</type>
2381 <format/> 846 <format/>
2382 - <currency/>  
2383 - <decimal/>  
2384 - <group/>  
2385 - <nullif/>  
2386 - <trim_type>none</trim_type>  
2387 - <length>-1</length>  
2388 - <precision>-1</precision>  
2389 </field> 847 </field>
2390 <field> 848 <field>
2391 - <name>fcno23</name> 849 + <name>fcno100</name>
2392 <type>String</type> 850 <type>String</type>
2393 <format/> 851 <format/>
2394 - <currency/>  
2395 - <decimal/>  
2396 - <group/>  
2397 - <nullif/>  
2398 - <trim_type>none</trim_type>  
2399 - <length>-1</length>  
2400 - <precision>-1</precision>  
2401 </field> 852 </field>
2402 <field> 853 <field>
2403 - <name>fcno24</name> 854 + <name>fcno101</name>
2404 <type>String</type> 855 <type>String</type>
2405 <format/> 856 <format/>
2406 - <currency/>  
2407 - <decimal/>  
2408 - <group/>  
2409 - <nullif/>  
2410 - <trim_type>none</trim_type>  
2411 - <length>-1</length>  
2412 - <precision>-1</precision>  
2413 </field> 857 </field>
2414 <field> 858 <field>
2415 - <name>fcno25</name> 859 + <name>fcno102</name>
2416 <type>String</type> 860 <type>String</type>
2417 <format/> 861 <format/>
2418 - <currency/>  
2419 - <decimal/>  
2420 - <group/>  
2421 - <nullif/>  
2422 - <trim_type>none</trim_type>  
2423 - <length>-1</length>  
2424 - <precision>-1</precision>  
2425 </field> 862 </field>
2426 <field> 863 <field>
2427 - <name>fcno26</name> 864 + <name>fcno103</name>
2428 <type>String</type> 865 <type>String</type>
2429 <format/> 866 <format/>
2430 - <currency/>  
2431 - <decimal/>  
2432 - <group/>  
2433 - <nullif/>  
2434 - <trim_type>none</trim_type>  
2435 - <length>-1</length>  
2436 - <precision>-1</precision>  
2437 </field> 867 </field>
2438 <field> 868 <field>
2439 - <name>fcno27</name> 869 + <name>fcno104</name>
2440 <type>String</type> 870 <type>String</type>
2441 <format/> 871 <format/>
2442 - <currency/>  
2443 - <decimal/>  
2444 - <group/>  
2445 - <nullif/>  
2446 - <trim_type>none</trim_type>  
2447 - <length>-1</length>  
2448 - <precision>-1</precision>  
2449 </field> 872 </field>
2450 <field> 873 <field>
2451 - <name>fcno28</name> 874 + <name>fcno105</name>
2452 <type>String</type> 875 <type>String</type>
2453 <format/> 876 <format/>
2454 - <currency/>  
2455 - <decimal/>  
2456 - <group/>  
2457 - <nullif/>  
2458 - <trim_type>none</trim_type>  
2459 - <length>-1</length>  
2460 - <precision>-1</precision>  
2461 </field> 877 </field>
2462 <field> 878 <field>
2463 - <name>fcno29</name> 879 + <name>fcno106</name>
2464 <type>String</type> 880 <type>String</type>
2465 <format/> 881 <format/>
2466 - <currency/>  
2467 - <decimal/>  
2468 - <group/>  
2469 - <nullif/>  
2470 - <trim_type>none</trim_type>  
2471 - <length>-1</length>  
2472 - <precision>-1</precision>  
2473 </field> 882 </field>
2474 <field> 883 <field>
2475 - <name>fcno30</name> 884 + <name>fcno107</name>
2476 <type>String</type> 885 <type>String</type>
2477 <format/> 886 <format/>
2478 - <currency/>  
2479 - <decimal/>  
2480 - <group/>  
2481 - <nullif/>  
2482 - <trim_type>none</trim_type>  
2483 - <length>-1</length>  
2484 - <precision>-1</precision>  
2485 </field> 887 </field>
2486 <field> 888 <field>
2487 - <name>fcno31</name> 889 + <name>fcno108</name>
2488 <type>String</type> 890 <type>String</type>
2489 <format/> 891 <format/>
2490 - <currency/>  
2491 - <decimal/>  
2492 - <group/>  
2493 - <nullif/>  
2494 - <trim_type>none</trim_type>  
2495 - <length>-1</length>  
2496 - <precision>-1</precision>  
2497 </field> 892 </field>
2498 <field> 893 <field>
2499 - <name>fcno32</name> 894 + <name>fcno109</name>
2500 <type>String</type> 895 <type>String</type>
2501 <format/> 896 <format/>
2502 - <currency/>  
2503 - <decimal/>  
2504 - <group/>  
2505 - <nullif/>  
2506 - <trim_type>none</trim_type>  
2507 - <length>-1</length>  
2508 - <precision>-1</precision>  
2509 </field> 897 </field>
2510 <field> 898 <field>
2511 - <name>fcno33</name> 899 + <name>fcno110</name>
2512 <type>String</type> 900 <type>String</type>
2513 <format/> 901 <format/>
2514 - <currency/>  
2515 - <decimal/>  
2516 - <group/>  
2517 - <nullif/>  
2518 - <trim_type>none</trim_type>  
2519 - <length>-1</length>  
2520 - <precision>-1</precision>  
2521 </field> 902 </field>
2522 <field> 903 <field>
2523 - <name>fcno34</name> 904 + <name>fcno111</name>
  905 + <type>String</type>
  906 + <format/>
  907 + </field>
  908 + <field>
  909 + <name>fcno112</name>
  910 + <type>String</type>
  911 + <format/>
  912 + </field>
  913 + <field>
  914 + <name>fcno113</name>
  915 + <type>String</type>
  916 + <format/>
  917 + </field>
  918 + <field>
  919 + <name>fcno114</name>
2524 <type>String</type> 920 <type>String</type>
2525 <format/> 921 <format/>
2526 - <currency/>  
2527 - <decimal/>  
2528 - <group/>  
2529 - <nullif/>  
2530 - <trim_type>none</trim_type>  
2531 - <length>-1</length>  
2532 - <precision>-1</precision>  
2533 </field> 922 </field>
2534 <field> 923 <field>
2535 - <name>fcno35</name> 924 + <name>fcno115</name>
2536 <type>String</type> 925 <type>String</type>
2537 <format/> 926 <format/>
2538 - <currency/>  
2539 - <decimal/>  
2540 - <group/>  
2541 - <nullif/>  
2542 - <trim_type>none</trim_type>  
2543 - <length>-1</length>  
2544 - <precision>-1</precision>  
2545 </field> 927 </field>
2546 <field> 928 <field>
2547 - <name>fcno36</name> 929 + <name>fcno116</name>
2548 <type>String</type> 930 <type>String</type>
2549 <format/> 931 <format/>
2550 - <currency/>  
2551 - <decimal/>  
2552 - <group/>  
2553 - <nullif/>  
2554 - <trim_type>none</trim_type>  
2555 - <length>-1</length>  
2556 - <precision>-1</precision>  
2557 </field> 932 </field>
2558 <field> 933 <field>
2559 - <name>fcno37</name> 934 + <name>fcno117</name>
2560 <type>String</type> 935 <type>String</type>
2561 <format/> 936 <format/>
2562 - <currency/>  
2563 - <decimal/>  
2564 - <group/>  
2565 - <nullif/>  
2566 - <trim_type>none</trim_type>  
2567 - <length>-1</length>  
2568 - <precision>-1</precision>  
2569 </field> 937 </field>
2570 <field> 938 <field>
2571 - <name>fcno38</name> 939 + <name>fcno118</name>
2572 <type>String</type> 940 <type>String</type>
2573 <format/> 941 <format/>
2574 - <currency/>  
2575 - <decimal/>  
2576 - <group/>  
2577 - <nullif/>  
2578 - <trim_type>none</trim_type>  
2579 - <length>-1</length>  
2580 - <precision>-1</precision>  
2581 </field> 942 </field>
2582 <field> 943 <field>
2583 - <name>fcno39</name> 944 + <name>fcno119</name>
2584 <type>String</type> 945 <type>String</type>
2585 <format/> 946 <format/>
2586 - <currency/>  
2587 - <decimal/>  
2588 - <group/>  
2589 - <nullif/>  
2590 - <trim_type>none</trim_type>  
2591 - <length>-1</length>  
2592 - <precision>-1</precision>  
2593 </field> 947 </field>
2594 <field> 948 <field>
2595 - <name>fcno40</name> 949 + <name>fcno120</name>
2596 <type>String</type> 950 <type>String</type>
2597 <format/> 951 <format/>
2598 - <currency/>  
2599 - <decimal/>  
2600 - <group/>  
2601 - <nullif/>  
2602 - <trim_type>none</trim_type>  
2603 - <length>-1</length>  
2604 - <precision>-1</precision>  
2605 </field> 952 </field>
2606 <field> 953 <field>
2607 - <name>fcno41</name> 954 + <name>fcno121</name>
2608 <type>String</type> 955 <type>String</type>
2609 <format/> 956 <format/>
2610 - <currency/>  
2611 - <decimal/>  
2612 - <group/>  
2613 - <nullif/>  
2614 - <trim_type>none</trim_type>  
2615 - <length>-1</length>  
2616 - <precision>-1</precision>  
2617 </field> 957 </field>
2618 <field> 958 <field>
2619 - <name>fcno42</name> 959 + <name>fcno122</name>
2620 <type>String</type> 960 <type>String</type>
2621 <format/> 961 <format/>
2622 - <currency/>  
2623 - <decimal/>  
2624 - <group/>  
2625 - <nullif/>  
2626 - <trim_type>none</trim_type>  
2627 - <length>-1</length>  
2628 - <precision>-1</precision>  
2629 </field> 962 </field>
2630 <field> 963 <field>
2631 - <name>fcno43</name> 964 + <name>fcno123</name>
2632 <type>String</type> 965 <type>String</type>
2633 <format/> 966 <format/>
2634 - <currency/>  
2635 - <decimal/>  
2636 - <group/>  
2637 - <nullif/>  
2638 - <trim_type>none</trim_type>  
2639 - <length>-1</length>  
2640 - <precision>-1</precision>  
2641 </field> 967 </field>
2642 <field> 968 <field>
2643 - <name>fcno44</name> 969 + <name>fcno124</name>
2644 <type>String</type> 970 <type>String</type>
2645 <format/> 971 <format/>
2646 - <currency/>  
2647 - <decimal/>  
2648 - <group/>  
2649 - <nullif/>  
2650 - <trim_type>none</trim_type>  
2651 - <length>-1</length>  
2652 - <precision>-1</precision>  
2653 </field> 972 </field>
2654 <field> 973 <field>
2655 - <name>fcno45</name> 974 + <name>fcno125</name>
2656 <type>String</type> 975 <type>String</type>
2657 <format/> 976 <format/>
2658 - <currency/>  
2659 - <decimal/>  
2660 - <group/>  
2661 - <nullif/>  
2662 - <trim_type>none</trim_type>  
2663 - <length>-1</length>  
2664 - <precision>-1</precision>  
2665 </field> 977 </field>
2666 <field> 978 <field>
2667 - <name>fcno46</name> 979 + <name>fcno126</name>
2668 <type>String</type> 980 <type>String</type>
2669 <format/> 981 <format/>
2670 - <currency/>  
2671 - <decimal/>  
2672 - <group/>  
2673 - <nullif/>  
2674 - <trim_type>none</trim_type>  
2675 - <length>-1</length>  
2676 - <precision>-1</precision>  
2677 </field> 982 </field>
2678 <field> 983 <field>
2679 - <name>fcno47</name> 984 + <name>fcno127</name>
2680 <type>String</type> 985 <type>String</type>
2681 <format/> 986 <format/>
2682 - <currency/>  
2683 - <decimal/>  
2684 - <group/>  
2685 - <nullif/>  
2686 - <trim_type>none</trim_type>  
2687 - <length>-1</length>  
2688 - <precision>-1</precision>  
2689 </field> 987 </field>
2690 <field> 988 <field>
2691 - <name>fcno48</name> 989 + <name>fcno128</name>
2692 <type>String</type> 990 <type>String</type>
2693 <format/> 991 <format/>
2694 - <currency/>  
2695 - <decimal/>  
2696 - <group/>  
2697 - <nullif/>  
2698 - <trim_type>none</trim_type>  
2699 - <length>-1</length>  
2700 - <precision>-1</precision>  
2701 </field> 992 </field>
2702 <field> 993 <field>
2703 - <name>fcno49</name> 994 + <name>fcno129</name>
2704 <type>String</type> 995 <type>String</type>
2705 <format/> 996 <format/>
2706 - <currency/>  
2707 - <decimal/>  
2708 - <group/>  
2709 - <nullif/>  
2710 - <trim_type>none</trim_type>  
2711 - <length>-1</length>  
2712 - <precision>-1</precision>  
2713 </field> 997 </field>
2714 <field> 998 <field>
2715 - <name>fcno50</name> 999 + <name>fcno130</name>
2716 <type>String</type> 1000 <type>String</type>
2717 <format/> 1001 <format/>
2718 - <currency/>  
2719 - <decimal/>  
2720 - <group/>  
2721 - <nullif/>  
2722 - <trim_type>none</trim_type>  
2723 - <length>-1</length>  
2724 - <precision>-1</precision>  
2725 </field> 1002 </field>
2726 <field> 1003 <field>
2727 - <name>fcno51</name> 1004 + <name>fcno131</name>
2728 <type>String</type> 1005 <type>String</type>
2729 <format/> 1006 <format/>
2730 - <currency/>  
2731 - <decimal/>  
2732 - <group/>  
2733 - <nullif/>  
2734 - <trim_type>none</trim_type>  
2735 - <length>-1</length>  
2736 - <precision>-1</precision>  
2737 </field> 1007 </field>
2738 <field> 1008 <field>
2739 - <name>fcno52</name> 1009 + <name>fcno132</name>
2740 <type>String</type> 1010 <type>String</type>
2741 <format/> 1011 <format/>
2742 - <currency/>  
2743 - <decimal/>  
2744 - <group/>  
2745 - <nullif/>  
2746 - <trim_type>none</trim_type>  
2747 - <length>-1</length>  
2748 - <precision>-1</precision>  
2749 </field> 1012 </field>
2750 <field> 1013 <field>
2751 - <name>fcno53</name> 1014 + <name>fcno133</name>
2752 <type>String</type> 1015 <type>String</type>
2753 <format/> 1016 <format/>
2754 - <currency/>  
2755 - <decimal/>  
2756 - <group/>  
2757 - <nullif/>  
2758 - <trim_type>none</trim_type>  
2759 - <length>-1</length>  
2760 - <precision>-1</precision>  
2761 </field> 1017 </field>
2762 <field> 1018 <field>
2763 - <name>fcno54</name> 1019 + <name>fcno134</name>
2764 <type>String</type> 1020 <type>String</type>
2765 <format/> 1021 <format/>
2766 - <currency/>  
2767 - <decimal/>  
2768 - <group/>  
2769 - <nullif/>  
2770 - <trim_type>none</trim_type>  
2771 - <length>-1</length>  
2772 - <precision>-1</precision>  
2773 </field> 1022 </field>
2774 <field> 1023 <field>
2775 - <name>fcno55</name> 1024 + <name>fcno135</name>
2776 <type>String</type> 1025 <type>String</type>
2777 <format/> 1026 <format/>
2778 - <currency/>  
2779 - <decimal/>  
2780 - <group/>  
2781 - <nullif/>  
2782 - <trim_type>none</trim_type>  
2783 - <length>-1</length>  
2784 - <precision>-1</precision>  
2785 </field> 1027 </field>
2786 <field> 1028 <field>
2787 - <name>fcno56</name> 1029 + <name>fcno136</name>
2788 <type>String</type> 1030 <type>String</type>
2789 <format/> 1031 <format/>
2790 - <currency/>  
2791 - <decimal/>  
2792 - <group/>  
2793 - <nullif/>  
2794 - <trim_type>none</trim_type>  
2795 - <length>-1</length>  
2796 - <precision>-1</precision>  
2797 </field> 1032 </field>
2798 <field> 1033 <field>
2799 - <name>fcno57</name> 1034 + <name>fcno137</name>
2800 <type>String</type> 1035 <type>String</type>
2801 <format/> 1036 <format/>
2802 - <currency/>  
2803 - <decimal/>  
2804 - <group/>  
2805 - <nullif/>  
2806 - <trim_type>none</trim_type>  
2807 - <length>-1</length>  
2808 - <precision>-1</precision>  
2809 </field> 1037 </field>
2810 <field> 1038 <field>
2811 - <name>fcno58</name> 1039 + <name>fcno138</name>
2812 <type>String</type> 1040 <type>String</type>
2813 <format/> 1041 <format/>
2814 - <currency/>  
2815 - <decimal/>  
2816 - <group/>  
2817 - <nullif/>  
2818 - <trim_type>none</trim_type>  
2819 - <length>-1</length>  
2820 - <precision>-1</precision>  
2821 </field> 1042 </field>
2822 <field> 1043 <field>
2823 - <name>fcno59</name> 1044 + <name>fcno139</name>
2824 <type>String</type> 1045 <type>String</type>
2825 <format/> 1046 <format/>
2826 - <currency/>  
2827 - <decimal/>  
2828 - <group/>  
2829 - <nullif/>  
2830 - <trim_type>none</trim_type>  
2831 - <length>-1</length>  
2832 - <precision>-1</precision>  
2833 </field> 1047 </field>
2834 <field> 1048 <field>
2835 - <name>fcno60</name> 1049 + <name>fcno140</name>
2836 <type>String</type> 1050 <type>String</type>
2837 <format/> 1051 <format/>
2838 - <currency/>  
2839 - <decimal/>  
2840 - <group/>  
2841 - <nullif/>  
2842 - <trim_type>none</trim_type>  
2843 - <length>-1</length>  
2844 - <precision>-1</precision>  
2845 </field> 1052 </field>
2846 <field> 1053 <field>
2847 - <name>fcno61</name> 1054 + <name>fcno141</name>
2848 <type>String</type> 1055 <type>String</type>
2849 <format/> 1056 <format/>
2850 - <currency/>  
2851 - <decimal/>  
2852 - <group/>  
2853 - <nullif/>  
2854 - <trim_type>none</trim_type>  
2855 - <length>-1</length>  
2856 - <precision>-1</precision>  
2857 </field> 1057 </field>
2858 <field> 1058 <field>
2859 - <name>fcno62</name> 1059 + <name>fcno142</name>
2860 <type>String</type> 1060 <type>String</type>
2861 <format/> 1061 <format/>
2862 - <currency/>  
2863 - <decimal/>  
2864 - <group/>  
2865 - <nullif/>  
2866 - <trim_type>none</trim_type>  
2867 - <length>-1</length>  
2868 - <precision>-1</precision>  
2869 </field> 1062 </field>
2870 <field> 1063 <field>
2871 - <name>fcno63</name> 1064 + <name>fcno143</name>
2872 <type>String</type> 1065 <type>String</type>
2873 <format/> 1066 <format/>
2874 - <currency/>  
2875 - <decimal/>  
2876 - <group/>  
2877 - <nullif/>  
2878 - <trim_type>none</trim_type>  
2879 - <length>-1</length>  
2880 - <precision>-1</precision>  
2881 </field> 1067 </field>
2882 <field> 1068 <field>
2883 - <name>fcno64</name> 1069 + <name>fcno144</name>
2884 <type>String</type> 1070 <type>String</type>
2885 <format/> 1071 <format/>
2886 - <currency/>  
2887 - <decimal/>  
2888 - <group/>  
2889 - <nullif/>  
2890 - <trim_type>none</trim_type>  
2891 - <length>-1</length>  
2892 - <precision>-1</precision>  
2893 </field> 1072 </field>
2894 <field> 1073 <field>
2895 - <name>fcno65</name> 1074 + <name>fcno145</name>
2896 <type>String</type> 1075 <type>String</type>
2897 <format/> 1076 <format/>
2898 - <currency/>  
2899 - <decimal/>  
2900 - <group/>  
2901 - <nullif/>  
2902 - <trim_type>none</trim_type>  
2903 - <length>-1</length>  
2904 - <precision>-1</precision>  
2905 </field> 1077 </field>
2906 <field> 1078 <field>
2907 - <name>fcno66</name> 1079 + <name>fcno146</name>
2908 <type>String</type> 1080 <type>String</type>
2909 <format/> 1081 <format/>
2910 - <currency/>  
2911 - <decimal/>  
2912 - <group/>  
2913 - <nullif/>  
2914 - <trim_type>none</trim_type>  
2915 - <length>-1</length>  
2916 - <precision>-1</precision>  
2917 </field> 1082 </field>
2918 <field> 1083 <field>
2919 - <name>fcno67</name> 1084 + <name>fcno147</name>
2920 <type>String</type> 1085 <type>String</type>
2921 <format/> 1086 <format/>
2922 - <currency/>  
2923 - <decimal/>  
2924 - <group/>  
2925 - <nullif/>  
2926 - <trim_type>none</trim_type>  
2927 - <length>-1</length>  
2928 - <precision>-1</precision>  
2929 </field> 1087 </field>
2930 <field> 1088 <field>
2931 - <name>fcno68</name> 1089 + <name>fcno148</name>
2932 <type>String</type> 1090 <type>String</type>
2933 <format/> 1091 <format/>
2934 - <currency/>  
2935 - <decimal/>  
2936 - <group/>  
2937 - <nullif/>  
2938 - <trim_type>none</trim_type>  
2939 - <length>-1</length>  
2940 - <precision>-1</precision>  
2941 </field> 1092 </field>
2942 <field> 1093 <field>
2943 - <name>fcno69</name> 1094 + <name>fcno149</name>
2944 <type>String</type> 1095 <type>String</type>
2945 <format/> 1096 <format/>
2946 - <currency/>  
2947 - <decimal/>  
2948 - <group/>  
2949 - <nullif/>  
2950 - <trim_type>none</trim_type>  
2951 - <length>-1</length>  
2952 - <precision>-1</precision>  
2953 </field> 1097 </field>
2954 <field> 1098 <field>
2955 - <name>fcno70</name> 1099 + <name>fcno150</name>
  1100 + <type>String</type>
  1101 + <format/>
  1102 + </field>
  1103 + </fields>
  1104 + <custom>
  1105 + <header_font_name>arial</header_font_name>
  1106 + <header_font_size>10</header_font_size>
  1107 + <header_font_bold>N</header_font_bold>
  1108 + <header_font_italic>N</header_font_italic>
  1109 + <header_font_underline>no</header_font_underline>
  1110 + <header_font_orientation>horizontal</header_font_orientation>
  1111 + <header_font_color>black</header_font_color>
  1112 + <header_background_color>none</header_background_color>
  1113 + <header_row_height>255</header_row_height>
  1114 + <header_alignment>left</header_alignment>
  1115 + <header_image/>
  1116 + <row_font_name>arial</row_font_name>
  1117 + <row_font_size>10</row_font_size>
  1118 + <row_font_color>black</row_font_color>
  1119 + <row_background_color>none</row_background_color>
  1120 + </custom>
  1121 + <cluster_schema/>
  1122 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1123 + <xloc>692</xloc>
  1124 + <yloc>514</yloc>
  1125 + <draw>Y</draw>
  1126 + </GUI>
  1127 + </step>
  1128 +
  1129 + <step>
  1130 + <name>&#x5217;&#x8f6c;&#x884c;</name>
  1131 + <type>Denormaliser</type>
  1132 + <description/>
  1133 + <distribute>N</distribute>
  1134 + <custom_distribution/>
  1135 + <copies>1</copies>
  1136 + <partitioning>
  1137 + <method>none</method>
  1138 + <schema_name/>
  1139 + </partitioning>
  1140 + <key_field>fcno</key_field>
  1141 + <group>
  1142 + <field>
  1143 + <name>lp</name>
  1144 + </field>
  1145 + </group>
  1146 + <fields>
  1147 + <field>
  1148 + <field_name>all_content</field_name>
  1149 + <key_value>1</key_value>
  1150 + <target_name>fcno1</target_name>
  1151 + <target_type>String</target_type>
  1152 + <target_format/>
  1153 + <target_length>-1</target_length>
  1154 + <target_precision>-1</target_precision>
  1155 + <target_decimal_symbol/>
  1156 + <target_grouping_symbol/>
  1157 + <target_currency_symbol/>
  1158 + <target_null_string/>
  1159 + <target_aggregation_type>-</target_aggregation_type>
  1160 + </field>
  1161 + <field>
  1162 + <field_name>all_content</field_name>
  1163 + <key_value>2</key_value>
  1164 + <target_name>fcno2</target_name>
  1165 + <target_type>String</target_type>
  1166 + <target_format/>
  1167 + <target_length>-1</target_length>
  1168 + <target_precision>-1</target_precision>
  1169 + <target_decimal_symbol/>
  1170 + <target_grouping_symbol/>
  1171 + <target_currency_symbol/>
  1172 + <target_null_string/>
  1173 + <target_aggregation_type>-</target_aggregation_type>
  1174 + </field>
  1175 + <field>
  1176 + <field_name>all_content</field_name>
  1177 + <key_value>3</key_value>
  1178 + <target_name>fcno3</target_name>
  1179 + <target_type>String</target_type>
  1180 + <target_format/>
  1181 + <target_length>-1</target_length>
  1182 + <target_precision>-1</target_precision>
  1183 + <target_decimal_symbol/>
  1184 + <target_grouping_symbol/>
  1185 + <target_currency_symbol/>
  1186 + <target_null_string/>
  1187 + <target_aggregation_type>-</target_aggregation_type>
  1188 + </field>
  1189 + <field>
  1190 + <field_name>all_content</field_name>
  1191 + <key_value>4</key_value>
  1192 + <target_name>fcno4</target_name>
  1193 + <target_type>String</target_type>
  1194 + <target_format/>
  1195 + <target_length>-1</target_length>
  1196 + <target_precision>-1</target_precision>
  1197 + <target_decimal_symbol/>
  1198 + <target_grouping_symbol/>
  1199 + <target_currency_symbol/>
  1200 + <target_null_string/>
  1201 + <target_aggregation_type>-</target_aggregation_type>
  1202 + </field>
  1203 + <field>
  1204 + <field_name>all_content</field_name>
  1205 + <key_value>5</key_value>
  1206 + <target_name>fcno5</target_name>
  1207 + <target_type>String</target_type>
  1208 + <target_format/>
  1209 + <target_length>-1</target_length>
  1210 + <target_precision>-1</target_precision>
  1211 + <target_decimal_symbol/>
  1212 + <target_grouping_symbol/>
  1213 + <target_currency_symbol/>
  1214 + <target_null_string/>
  1215 + <target_aggregation_type>-</target_aggregation_type>
  1216 + </field>
  1217 + <field>
  1218 + <field_name>all_content</field_name>
  1219 + <key_value>6</key_value>
  1220 + <target_name>fcno6</target_name>
  1221 + <target_type>String</target_type>
  1222 + <target_format/>
  1223 + <target_length>-1</target_length>
  1224 + <target_precision>-1</target_precision>
  1225 + <target_decimal_symbol/>
  1226 + <target_grouping_symbol/>
  1227 + <target_currency_symbol/>
  1228 + <target_null_string/>
  1229 + <target_aggregation_type>-</target_aggregation_type>
  1230 + </field>
  1231 + <field>
  1232 + <field_name>all_content</field_name>
  1233 + <key_value>7</key_value>
  1234 + <target_name>fcno7</target_name>
  1235 + <target_type>String</target_type>
  1236 + <target_format/>
  1237 + <target_length>-1</target_length>
  1238 + <target_precision>-1</target_precision>
  1239 + <target_decimal_symbol/>
  1240 + <target_grouping_symbol/>
  1241 + <target_currency_symbol/>
  1242 + <target_null_string/>
  1243 + <target_aggregation_type>-</target_aggregation_type>
  1244 + </field>
  1245 + <field>
  1246 + <field_name>all_content</field_name>
  1247 + <key_value>8</key_value>
  1248 + <target_name>fcno8</target_name>
  1249 + <target_type>String</target_type>
  1250 + <target_format/>
  1251 + <target_length>-1</target_length>
  1252 + <target_precision>-1</target_precision>
  1253 + <target_decimal_symbol/>
  1254 + <target_grouping_symbol/>
  1255 + <target_currency_symbol/>
  1256 + <target_null_string/>
  1257 + <target_aggregation_type>-</target_aggregation_type>
  1258 + </field>
  1259 + <field>
  1260 + <field_name>all_content</field_name>
  1261 + <key_value>9</key_value>
  1262 + <target_name>fcno9</target_name>
  1263 + <target_type>String</target_type>
  1264 + <target_format/>
  1265 + <target_length>-1</target_length>
  1266 + <target_precision>-1</target_precision>
  1267 + <target_decimal_symbol/>
  1268 + <target_grouping_symbol/>
  1269 + <target_currency_symbol/>
  1270 + <target_null_string/>
  1271 + <target_aggregation_type>-</target_aggregation_type>
  1272 + </field>
  1273 + <field>
  1274 + <field_name>all_content</field_name>
  1275 + <key_value>10</key_value>
  1276 + <target_name>fcno10</target_name>
  1277 + <target_type>String</target_type>
  1278 + <target_format/>
  1279 + <target_length>-1</target_length>
  1280 + <target_precision>-1</target_precision>
  1281 + <target_decimal_symbol/>
  1282 + <target_grouping_symbol/>
  1283 + <target_currency_symbol/>
  1284 + <target_null_string/>
  1285 + <target_aggregation_type>-</target_aggregation_type>
  1286 + </field>
  1287 + <field>
  1288 + <field_name>all_content</field_name>
  1289 + <key_value>11</key_value>
  1290 + <target_name>fcno11</target_name>
  1291 + <target_type>String</target_type>
  1292 + <target_format/>
  1293 + <target_length>-1</target_length>
  1294 + <target_precision>-1</target_precision>
  1295 + <target_decimal_symbol/>
  1296 + <target_grouping_symbol/>
  1297 + <target_currency_symbol/>
  1298 + <target_null_string/>
  1299 + <target_aggregation_type>-</target_aggregation_type>
  1300 + </field>
  1301 + <field>
  1302 + <field_name>all_content</field_name>
  1303 + <key_value>12</key_value>
  1304 + <target_name>fcno12</target_name>
  1305 + <target_type>String</target_type>
  1306 + <target_format/>
  1307 + <target_length>-1</target_length>
  1308 + <target_precision>-1</target_precision>
  1309 + <target_decimal_symbol/>
  1310 + <target_grouping_symbol/>
  1311 + <target_currency_symbol/>
  1312 + <target_null_string/>
  1313 + <target_aggregation_type>-</target_aggregation_type>
  1314 + </field>
  1315 + <field>
  1316 + <field_name>all_content</field_name>
  1317 + <key_value>13</key_value>
  1318 + <target_name>fcno13</target_name>
  1319 + <target_type>String</target_type>
  1320 + <target_format/>
  1321 + <target_length>-1</target_length>
  1322 + <target_precision>-1</target_precision>
  1323 + <target_decimal_symbol/>
  1324 + <target_grouping_symbol/>
  1325 + <target_currency_symbol/>
  1326 + <target_null_string/>
  1327 + <target_aggregation_type>-</target_aggregation_type>
  1328 + </field>
  1329 + <field>
  1330 + <field_name>all_content</field_name>
  1331 + <key_value>14</key_value>
  1332 + <target_name>fcno14</target_name>
  1333 + <target_type>String</target_type>
  1334 + <target_format/>
  1335 + <target_length>-1</target_length>
  1336 + <target_precision>-1</target_precision>
  1337 + <target_decimal_symbol/>
  1338 + <target_grouping_symbol/>
  1339 + <target_currency_symbol/>
  1340 + <target_null_string/>
  1341 + <target_aggregation_type>-</target_aggregation_type>
  1342 + </field>
  1343 + <field>
  1344 + <field_name>all_content</field_name>
  1345 + <key_value>15</key_value>
  1346 + <target_name>fcno15</target_name>
  1347 + <target_type>String</target_type>
  1348 + <target_format/>
  1349 + <target_length>-1</target_length>
  1350 + <target_precision>-1</target_precision>
  1351 + <target_decimal_symbol/>
  1352 + <target_grouping_symbol/>
  1353 + <target_currency_symbol/>
  1354 + <target_null_string/>
  1355 + <target_aggregation_type>-</target_aggregation_type>
  1356 + </field>
  1357 + <field>
  1358 + <field_name>all_content</field_name>
  1359 + <key_value>16</key_value>
  1360 + <target_name>fcno16</target_name>
  1361 + <target_type>String</target_type>
  1362 + <target_format/>
  1363 + <target_length>-1</target_length>
  1364 + <target_precision>-1</target_precision>
  1365 + <target_decimal_symbol/>
  1366 + <target_grouping_symbol/>
  1367 + <target_currency_symbol/>
  1368 + <target_null_string/>
  1369 + <target_aggregation_type>-</target_aggregation_type>
  1370 + </field>
  1371 + <field>
  1372 + <field_name>all_content</field_name>
  1373 + <key_value>17</key_value>
  1374 + <target_name>fcno17</target_name>
  1375 + <target_type>String</target_type>
  1376 + <target_format/>
  1377 + <target_length>-1</target_length>
  1378 + <target_precision>-1</target_precision>
  1379 + <target_decimal_symbol/>
  1380 + <target_grouping_symbol/>
  1381 + <target_currency_symbol/>
  1382 + <target_null_string/>
  1383 + <target_aggregation_type>-</target_aggregation_type>
  1384 + </field>
  1385 + <field>
  1386 + <field_name>all_content</field_name>
  1387 + <key_value>18</key_value>
  1388 + <target_name>fcno18</target_name>
  1389 + <target_type>String</target_type>
  1390 + <target_format/>
  1391 + <target_length>-1</target_length>
  1392 + <target_precision>-1</target_precision>
  1393 + <target_decimal_symbol/>
  1394 + <target_grouping_symbol/>
  1395 + <target_currency_symbol/>
  1396 + <target_null_string/>
  1397 + <target_aggregation_type>-</target_aggregation_type>
  1398 + </field>
  1399 + <field>
  1400 + <field_name>all_content</field_name>
  1401 + <key_value>19</key_value>
  1402 + <target_name>fcno19</target_name>
  1403 + <target_type>String</target_type>
  1404 + <target_format/>
  1405 + <target_length>-1</target_length>
  1406 + <target_precision>-1</target_precision>
  1407 + <target_decimal_symbol/>
  1408 + <target_grouping_symbol/>
  1409 + <target_currency_symbol/>
  1410 + <target_null_string/>
  1411 + <target_aggregation_type>-</target_aggregation_type>
  1412 + </field>
  1413 + <field>
  1414 + <field_name>all_content</field_name>
  1415 + <key_value>20</key_value>
  1416 + <target_name>fcno20</target_name>
  1417 + <target_type>String</target_type>
  1418 + <target_format/>
  1419 + <target_length>-1</target_length>
  1420 + <target_precision>-1</target_precision>
  1421 + <target_decimal_symbol/>
  1422 + <target_grouping_symbol/>
  1423 + <target_currency_symbol/>
  1424 + <target_null_string/>
  1425 + <target_aggregation_type>-</target_aggregation_type>
  1426 + </field>
  1427 + <field>
  1428 + <field_name>all_content</field_name>
  1429 + <key_value>21</key_value>
  1430 + <target_name>fcno21</target_name>
  1431 + <target_type>String</target_type>
  1432 + <target_format/>
  1433 + <target_length>-1</target_length>
  1434 + <target_precision>-1</target_precision>
  1435 + <target_decimal_symbol/>
  1436 + <target_grouping_symbol/>
  1437 + <target_currency_symbol/>
  1438 + <target_null_string/>
  1439 + <target_aggregation_type>-</target_aggregation_type>
  1440 + </field>
  1441 + <field>
  1442 + <field_name>all_content</field_name>
  1443 + <key_value>22</key_value>
  1444 + <target_name>fcno22</target_name>
  1445 + <target_type>String</target_type>
  1446 + <target_format/>
  1447 + <target_length>-1</target_length>
  1448 + <target_precision>-1</target_precision>
  1449 + <target_decimal_symbol/>
  1450 + <target_grouping_symbol/>
  1451 + <target_currency_symbol/>
  1452 + <target_null_string/>
  1453 + <target_aggregation_type>-</target_aggregation_type>
  1454 + </field>
  1455 + <field>
  1456 + <field_name>all_content</field_name>
  1457 + <key_value>23</key_value>
  1458 + <target_name>fcno23</target_name>
  1459 + <target_type>String</target_type>
  1460 + <target_format/>
  1461 + <target_length>-1</target_length>
  1462 + <target_precision>-1</target_precision>
  1463 + <target_decimal_symbol/>
  1464 + <target_grouping_symbol/>
  1465 + <target_currency_symbol/>
  1466 + <target_null_string/>
  1467 + <target_aggregation_type>-</target_aggregation_type>
  1468 + </field>
  1469 + <field>
  1470 + <field_name>all_content</field_name>
  1471 + <key_value>24</key_value>
  1472 + <target_name>fcno24</target_name>
  1473 + <target_type>String</target_type>
  1474 + <target_format/>
  1475 + <target_length>-1</target_length>
  1476 + <target_precision>-1</target_precision>
  1477 + <target_decimal_symbol/>
  1478 + <target_grouping_symbol/>
  1479 + <target_currency_symbol/>
  1480 + <target_null_string/>
  1481 + <target_aggregation_type>-</target_aggregation_type>
  1482 + </field>
  1483 + <field>
  1484 + <field_name>all_content</field_name>
  1485 + <key_value>25</key_value>
  1486 + <target_name>fcno25</target_name>
  1487 + <target_type>String</target_type>
  1488 + <target_format/>
  1489 + <target_length>-1</target_length>
  1490 + <target_precision>-1</target_precision>
  1491 + <target_decimal_symbol/>
  1492 + <target_grouping_symbol/>
  1493 + <target_currency_symbol/>
  1494 + <target_null_string/>
  1495 + <target_aggregation_type>-</target_aggregation_type>
  1496 + </field>
  1497 + <field>
  1498 + <field_name>all_content</field_name>
  1499 + <key_value>26</key_value>
  1500 + <target_name>fcno26</target_name>
  1501 + <target_type>String</target_type>
  1502 + <target_format/>
  1503 + <target_length>-1</target_length>
  1504 + <target_precision>-1</target_precision>
  1505 + <target_decimal_symbol/>
  1506 + <target_grouping_symbol/>
  1507 + <target_currency_symbol/>
  1508 + <target_null_string/>
  1509 + <target_aggregation_type>-</target_aggregation_type>
  1510 + </field>
  1511 + <field>
  1512 + <field_name>all_content</field_name>
  1513 + <key_value>27</key_value>
  1514 + <target_name>fcno27</target_name>
  1515 + <target_type>String</target_type>
  1516 + <target_format/>
  1517 + <target_length>-1</target_length>
  1518 + <target_precision>-1</target_precision>
  1519 + <target_decimal_symbol/>
  1520 + <target_grouping_symbol/>
  1521 + <target_currency_symbol/>
  1522 + <target_null_string/>
  1523 + <target_aggregation_type>-</target_aggregation_type>
  1524 + </field>
  1525 + <field>
  1526 + <field_name>all_content</field_name>
  1527 + <key_value>28</key_value>
  1528 + <target_name>fcno28</target_name>
  1529 + <target_type>String</target_type>
  1530 + <target_format/>
  1531 + <target_length>-1</target_length>
  1532 + <target_precision>-1</target_precision>
  1533 + <target_decimal_symbol/>
  1534 + <target_grouping_symbol/>
  1535 + <target_currency_symbol/>
  1536 + <target_null_string/>
  1537 + <target_aggregation_type>-</target_aggregation_type>
  1538 + </field>
  1539 + <field>
  1540 + <field_name>all_content</field_name>
  1541 + <key_value>29</key_value>
  1542 + <target_name>fcno29</target_name>
  1543 + <target_type>String</target_type>
  1544 + <target_format/>
  1545 + <target_length>-1</target_length>
  1546 + <target_precision>-1</target_precision>
  1547 + <target_decimal_symbol/>
  1548 + <target_grouping_symbol/>
  1549 + <target_currency_symbol/>
  1550 + <target_null_string/>
  1551 + <target_aggregation_type>-</target_aggregation_type>
  1552 + </field>
  1553 + <field>
  1554 + <field_name>all_content</field_name>
  1555 + <key_value>30</key_value>
  1556 + <target_name>fcno30</target_name>
  1557 + <target_type>String</target_type>
  1558 + <target_format/>
  1559 + <target_length>-1</target_length>
  1560 + <target_precision>-1</target_precision>
  1561 + <target_decimal_symbol/>
  1562 + <target_grouping_symbol/>
  1563 + <target_currency_symbol/>
  1564 + <target_null_string/>
  1565 + <target_aggregation_type>-</target_aggregation_type>
  1566 + </field>
  1567 + <field>
  1568 + <field_name>all_content</field_name>
  1569 + <key_value>31</key_value>
  1570 + <target_name>fcno31</target_name>
  1571 + <target_type>String</target_type>
  1572 + <target_format/>
  1573 + <target_length>-1</target_length>
  1574 + <target_precision>-1</target_precision>
  1575 + <target_decimal_symbol/>
  1576 + <target_grouping_symbol/>
  1577 + <target_currency_symbol/>
  1578 + <target_null_string/>
  1579 + <target_aggregation_type>-</target_aggregation_type>
  1580 + </field>
  1581 + <field>
  1582 + <field_name>all_content</field_name>
  1583 + <key_value>32</key_value>
  1584 + <target_name>fcno32</target_name>
  1585 + <target_type>String</target_type>
  1586 + <target_format/>
  1587 + <target_length>-1</target_length>
  1588 + <target_precision>-1</target_precision>
  1589 + <target_decimal_symbol/>
  1590 + <target_grouping_symbol/>
  1591 + <target_currency_symbol/>
  1592 + <target_null_string/>
  1593 + <target_aggregation_type>-</target_aggregation_type>
  1594 + </field>
  1595 + <field>
  1596 + <field_name>all_content</field_name>
  1597 + <key_value>33</key_value>
  1598 + <target_name>fcno33</target_name>
  1599 + <target_type>String</target_type>
  1600 + <target_format/>
  1601 + <target_length>-1</target_length>
  1602 + <target_precision>-1</target_precision>
  1603 + <target_decimal_symbol/>
  1604 + <target_grouping_symbol/>
  1605 + <target_currency_symbol/>
  1606 + <target_null_string/>
  1607 + <target_aggregation_type>-</target_aggregation_type>
  1608 + </field>
  1609 + <field>
  1610 + <field_name>all_content</field_name>
  1611 + <key_value>34</key_value>
  1612 + <target_name>fcno34</target_name>
  1613 + <target_type>String</target_type>
  1614 + <target_format/>
  1615 + <target_length>-1</target_length>
  1616 + <target_precision>-1</target_precision>
  1617 + <target_decimal_symbol/>
  1618 + <target_grouping_symbol/>
  1619 + <target_currency_symbol/>
  1620 + <target_null_string/>
  1621 + <target_aggregation_type>-</target_aggregation_type>
  1622 + </field>
  1623 + <field>
  1624 + <field_name>all_content</field_name>
  1625 + <key_value>35</key_value>
  1626 + <target_name>fcno35</target_name>
  1627 + <target_type>String</target_type>
  1628 + <target_format/>
  1629 + <target_length>-1</target_length>
  1630 + <target_precision>-1</target_precision>
  1631 + <target_decimal_symbol/>
  1632 + <target_grouping_symbol/>
  1633 + <target_currency_symbol/>
  1634 + <target_null_string/>
  1635 + <target_aggregation_type>-</target_aggregation_type>
  1636 + </field>
  1637 + <field>
  1638 + <field_name>all_content</field_name>
  1639 + <key_value>36</key_value>
  1640 + <target_name>fcno36</target_name>
  1641 + <target_type>String</target_type>
  1642 + <target_format/>
  1643 + <target_length>-1</target_length>
  1644 + <target_precision>-1</target_precision>
  1645 + <target_decimal_symbol/>
  1646 + <target_grouping_symbol/>
  1647 + <target_currency_symbol/>
  1648 + <target_null_string/>
  1649 + <target_aggregation_type>-</target_aggregation_type>
  1650 + </field>
  1651 + <field>
  1652 + <field_name>all_content</field_name>
  1653 + <key_value>37</key_value>
  1654 + <target_name>fcno37</target_name>
  1655 + <target_type>String</target_type>
  1656 + <target_format/>
  1657 + <target_length>-1</target_length>
  1658 + <target_precision>-1</target_precision>
  1659 + <target_decimal_symbol/>
  1660 + <target_grouping_symbol/>
  1661 + <target_currency_symbol/>
  1662 + <target_null_string/>
  1663 + <target_aggregation_type>-</target_aggregation_type>
  1664 + </field>
  1665 + <field>
  1666 + <field_name>all_content</field_name>
  1667 + <key_value>38</key_value>
  1668 + <target_name>fcno38</target_name>
  1669 + <target_type>String</target_type>
  1670 + <target_format/>
  1671 + <target_length>-1</target_length>
  1672 + <target_precision>-1</target_precision>
  1673 + <target_decimal_symbol/>
  1674 + <target_grouping_symbol/>
  1675 + <target_currency_symbol/>
  1676 + <target_null_string/>
  1677 + <target_aggregation_type>-</target_aggregation_type>
  1678 + </field>
  1679 + <field>
  1680 + <field_name>all_content</field_name>
  1681 + <key_value>39</key_value>
  1682 + <target_name>fcno39</target_name>
  1683 + <target_type>String</target_type>
  1684 + <target_format/>
  1685 + <target_length>-1</target_length>
  1686 + <target_precision>-1</target_precision>
  1687 + <target_decimal_symbol/>
  1688 + <target_grouping_symbol/>
  1689 + <target_currency_symbol/>
  1690 + <target_null_string/>
  1691 + <target_aggregation_type>-</target_aggregation_type>
  1692 + </field>
  1693 + <field>
  1694 + <field_name>all_content</field_name>
  1695 + <key_value>40</key_value>
  1696 + <target_name>fcno40</target_name>
  1697 + <target_type>String</target_type>
  1698 + <target_format/>
  1699 + <target_length>-1</target_length>
  1700 + <target_precision>-1</target_precision>
  1701 + <target_decimal_symbol/>
  1702 + <target_grouping_symbol/>
  1703 + <target_currency_symbol/>
  1704 + <target_null_string/>
  1705 + <target_aggregation_type>-</target_aggregation_type>
  1706 + </field>
  1707 + <field>
  1708 + <field_name>all_content</field_name>
  1709 + <key_value>41</key_value>
  1710 + <target_name>fcno41</target_name>
  1711 + <target_type>String</target_type>
  1712 + <target_format/>
  1713 + <target_length>-1</target_length>
  1714 + <target_precision>-1</target_precision>
  1715 + <target_decimal_symbol/>
  1716 + <target_grouping_symbol/>
  1717 + <target_currency_symbol/>
  1718 + <target_null_string/>
  1719 + <target_aggregation_type>-</target_aggregation_type>
  1720 + </field>
  1721 + <field>
  1722 + <field_name>all_content</field_name>
  1723 + <key_value>42</key_value>
  1724 + <target_name>fcno42</target_name>
  1725 + <target_type>String</target_type>
  1726 + <target_format/>
  1727 + <target_length>-1</target_length>
  1728 + <target_precision>-1</target_precision>
  1729 + <target_decimal_symbol/>
  1730 + <target_grouping_symbol/>
  1731 + <target_currency_symbol/>
  1732 + <target_null_string/>
  1733 + <target_aggregation_type>-</target_aggregation_type>
  1734 + </field>
  1735 + <field>
  1736 + <field_name>all_content</field_name>
  1737 + <key_value>43</key_value>
  1738 + <target_name>fcno43</target_name>
  1739 + <target_type>String</target_type>
  1740 + <target_format/>
  1741 + <target_length>-1</target_length>
  1742 + <target_precision>-1</target_precision>
  1743 + <target_decimal_symbol/>
  1744 + <target_grouping_symbol/>
  1745 + <target_currency_symbol/>
  1746 + <target_null_string/>
  1747 + <target_aggregation_type>-</target_aggregation_type>
  1748 + </field>
  1749 + <field>
  1750 + <field_name>all_content</field_name>
  1751 + <key_value>44</key_value>
  1752 + <target_name>fcno44</target_name>
  1753 + <target_type>String</target_type>
  1754 + <target_format/>
  1755 + <target_length>-1</target_length>
  1756 + <target_precision>-1</target_precision>
  1757 + <target_decimal_symbol/>
  1758 + <target_grouping_symbol/>
  1759 + <target_currency_symbol/>
  1760 + <target_null_string/>
  1761 + <target_aggregation_type>-</target_aggregation_type>
  1762 + </field>
  1763 + <field>
  1764 + <field_name>all_content</field_name>
  1765 + <key_value>45</key_value>
  1766 + <target_name>fcno45</target_name>
  1767 + <target_type>String</target_type>
  1768 + <target_format/>
  1769 + <target_length>-1</target_length>
  1770 + <target_precision>-1</target_precision>
  1771 + <target_decimal_symbol/>
  1772 + <target_grouping_symbol/>
  1773 + <target_currency_symbol/>
  1774 + <target_null_string/>
  1775 + <target_aggregation_type>-</target_aggregation_type>
  1776 + </field>
  1777 + <field>
  1778 + <field_name>all_content</field_name>
  1779 + <key_value>46</key_value>
  1780 + <target_name>fcno46</target_name>
  1781 + <target_type>String</target_type>
  1782 + <target_format/>
  1783 + <target_length>-1</target_length>
  1784 + <target_precision>-1</target_precision>
  1785 + <target_decimal_symbol/>
  1786 + <target_grouping_symbol/>
  1787 + <target_currency_symbol/>
  1788 + <target_null_string/>
  1789 + <target_aggregation_type>-</target_aggregation_type>
  1790 + </field>
  1791 + <field>
  1792 + <field_name>all_content</field_name>
  1793 + <key_value>47</key_value>
  1794 + <target_name>fcno47</target_name>
  1795 + <target_type>String</target_type>
  1796 + <target_format/>
  1797 + <target_length>-1</target_length>
  1798 + <target_precision>-1</target_precision>
  1799 + <target_decimal_symbol/>
  1800 + <target_grouping_symbol/>
  1801 + <target_currency_symbol/>
  1802 + <target_null_string/>
  1803 + <target_aggregation_type>-</target_aggregation_type>
  1804 + </field>
  1805 + <field>
  1806 + <field_name>all_content</field_name>
  1807 + <key_value>48</key_value>
  1808 + <target_name>fcno48</target_name>
  1809 + <target_type>String</target_type>
  1810 + <target_format/>
  1811 + <target_length>-1</target_length>
  1812 + <target_precision>-1</target_precision>
  1813 + <target_decimal_symbol/>
  1814 + <target_grouping_symbol/>
  1815 + <target_currency_symbol/>
  1816 + <target_null_string/>
  1817 + <target_aggregation_type>-</target_aggregation_type>
  1818 + </field>
  1819 + <field>
  1820 + <field_name>all_content</field_name>
  1821 + <key_value>49</key_value>
  1822 + <target_name>fcno49</target_name>
  1823 + <target_type>String</target_type>
  1824 + <target_format/>
  1825 + <target_length>-1</target_length>
  1826 + <target_precision>-1</target_precision>
  1827 + <target_decimal_symbol/>
  1828 + <target_grouping_symbol/>
  1829 + <target_currency_symbol/>
  1830 + <target_null_string/>
  1831 + <target_aggregation_type>-</target_aggregation_type>
  1832 + </field>
  1833 + <field>
  1834 + <field_name>all_content</field_name>
  1835 + <key_value>50</key_value>
  1836 + <target_name>fcno50</target_name>
  1837 + <target_type>String</target_type>
  1838 + <target_format/>
  1839 + <target_length>-1</target_length>
  1840 + <target_precision>-1</target_precision>
  1841 + <target_decimal_symbol/>
  1842 + <target_grouping_symbol/>
  1843 + <target_currency_symbol/>
  1844 + <target_null_string/>
  1845 + <target_aggregation_type>-</target_aggregation_type>
  1846 + </field>
  1847 + <field>
  1848 + <field_name>all_content</field_name>
  1849 + <key_value>51</key_value>
  1850 + <target_name>fcno51</target_name>
  1851 + <target_type>String</target_type>
  1852 + <target_format/>
  1853 + <target_length>-1</target_length>
  1854 + <target_precision>-1</target_precision>
  1855 + <target_decimal_symbol/>
  1856 + <target_grouping_symbol/>
  1857 + <target_currency_symbol/>
  1858 + <target_null_string/>
  1859 + <target_aggregation_type>-</target_aggregation_type>
  1860 + </field>
  1861 + <field>
  1862 + <field_name>all_content</field_name>
  1863 + <key_value>52</key_value>
  1864 + <target_name>fcno52</target_name>
  1865 + <target_type>String</target_type>
  1866 + <target_format/>
  1867 + <target_length>-1</target_length>
  1868 + <target_precision>-1</target_precision>
  1869 + <target_decimal_symbol/>
  1870 + <target_grouping_symbol/>
  1871 + <target_currency_symbol/>
  1872 + <target_null_string/>
  1873 + <target_aggregation_type>-</target_aggregation_type>
  1874 + </field>
  1875 + <field>
  1876 + <field_name>all_content</field_name>
  1877 + <key_value>53</key_value>
  1878 + <target_name>fcno53</target_name>
  1879 + <target_type>String</target_type>
  1880 + <target_format/>
  1881 + <target_length>-1</target_length>
  1882 + <target_precision>-1</target_precision>
  1883 + <target_decimal_symbol/>
  1884 + <target_grouping_symbol/>
  1885 + <target_currency_symbol/>
  1886 + <target_null_string/>
  1887 + <target_aggregation_type>-</target_aggregation_type>
  1888 + </field>
  1889 + <field>
  1890 + <field_name>all_content</field_name>
  1891 + <key_value>54</key_value>
  1892 + <target_name>fcno54</target_name>
  1893 + <target_type>String</target_type>
  1894 + <target_format/>
  1895 + <target_length>-1</target_length>
  1896 + <target_precision>-1</target_precision>
  1897 + <target_decimal_symbol/>
  1898 + <target_grouping_symbol/>
  1899 + <target_currency_symbol/>
  1900 + <target_null_string/>
  1901 + <target_aggregation_type>-</target_aggregation_type>
  1902 + </field>
  1903 + <field>
  1904 + <field_name>all_content</field_name>
  1905 + <key_value>55</key_value>
  1906 + <target_name>fcno55</target_name>
  1907 + <target_type>String</target_type>
  1908 + <target_format/>
  1909 + <target_length>-1</target_length>
  1910 + <target_precision>-1</target_precision>
  1911 + <target_decimal_symbol/>
  1912 + <target_grouping_symbol/>
  1913 + <target_currency_symbol/>
  1914 + <target_null_string/>
  1915 + <target_aggregation_type>-</target_aggregation_type>
  1916 + </field>
  1917 + <field>
  1918 + <field_name>all_content</field_name>
  1919 + <key_value>56</key_value>
  1920 + <target_name>fcno56</target_name>
  1921 + <target_type>String</target_type>
  1922 + <target_format/>
  1923 + <target_length>-1</target_length>
  1924 + <target_precision>-1</target_precision>
  1925 + <target_decimal_symbol/>
  1926 + <target_grouping_symbol/>
  1927 + <target_currency_symbol/>
  1928 + <target_null_string/>
  1929 + <target_aggregation_type>-</target_aggregation_type>
  1930 + </field>
  1931 + <field>
  1932 + <field_name>all_content</field_name>
  1933 + <key_value>57</key_value>
  1934 + <target_name>fcno57</target_name>
  1935 + <target_type>String</target_type>
  1936 + <target_format/>
  1937 + <target_length>-1</target_length>
  1938 + <target_precision>-1</target_precision>
  1939 + <target_decimal_symbol/>
  1940 + <target_grouping_symbol/>
  1941 + <target_currency_symbol/>
  1942 + <target_null_string/>
  1943 + <target_aggregation_type>-</target_aggregation_type>
  1944 + </field>
  1945 + <field>
  1946 + <field_name>all_content</field_name>
  1947 + <key_value>58</key_value>
  1948 + <target_name>fcno58</target_name>
  1949 + <target_type>String</target_type>
  1950 + <target_format/>
  1951 + <target_length>-1</target_length>
  1952 + <target_precision>-1</target_precision>
  1953 + <target_decimal_symbol/>
  1954 + <target_grouping_symbol/>
  1955 + <target_currency_symbol/>
  1956 + <target_null_string/>
  1957 + <target_aggregation_type>-</target_aggregation_type>
  1958 + </field>
  1959 + <field>
  1960 + <field_name>all_content</field_name>
  1961 + <key_value>59</key_value>
  1962 + <target_name>fcno59</target_name>
  1963 + <target_type>String</target_type>
  1964 + <target_format/>
  1965 + <target_length>-1</target_length>
  1966 + <target_precision>-1</target_precision>
  1967 + <target_decimal_symbol/>
  1968 + <target_grouping_symbol/>
  1969 + <target_currency_symbol/>
  1970 + <target_null_string/>
  1971 + <target_aggregation_type>-</target_aggregation_type>
  1972 + </field>
  1973 + <field>
  1974 + <field_name>all_content</field_name>
  1975 + <key_value>60</key_value>
  1976 + <target_name>fcno60</target_name>
  1977 + <target_type>String</target_type>
  1978 + <target_format/>
  1979 + <target_length>-1</target_length>
  1980 + <target_precision>-1</target_precision>
  1981 + <target_decimal_symbol/>
  1982 + <target_grouping_symbol/>
  1983 + <target_currency_symbol/>
  1984 + <target_null_string/>
  1985 + <target_aggregation_type>-</target_aggregation_type>
  1986 + </field>
  1987 + <field>
  1988 + <field_name>all_content</field_name>
  1989 + <key_value>61</key_value>
  1990 + <target_name>fcno61</target_name>
  1991 + <target_type>String</target_type>
  1992 + <target_format/>
  1993 + <target_length>-1</target_length>
  1994 + <target_precision>-1</target_precision>
  1995 + <target_decimal_symbol/>
  1996 + <target_grouping_symbol/>
  1997 + <target_currency_symbol/>
  1998 + <target_null_string/>
  1999 + <target_aggregation_type>-</target_aggregation_type>
  2000 + </field>
  2001 + <field>
  2002 + <field_name>all_content</field_name>
  2003 + <key_value>62</key_value>
  2004 + <target_name>fcno62</target_name>
  2005 + <target_type>String</target_type>
  2006 + <target_format/>
  2007 + <target_length>-1</target_length>
  2008 + <target_precision>-1</target_precision>
  2009 + <target_decimal_symbol/>
  2010 + <target_grouping_symbol/>
  2011 + <target_currency_symbol/>
  2012 + <target_null_string/>
  2013 + <target_aggregation_type>-</target_aggregation_type>
  2014 + </field>
  2015 + <field>
  2016 + <field_name>all_content</field_name>
  2017 + <key_value>63</key_value>
  2018 + <target_name>fcno63</target_name>
  2019 + <target_type>String</target_type>
  2020 + <target_format/>
  2021 + <target_length>-1</target_length>
  2022 + <target_precision>-1</target_precision>
  2023 + <target_decimal_symbol/>
  2024 + <target_grouping_symbol/>
  2025 + <target_currency_symbol/>
  2026 + <target_null_string/>
  2027 + <target_aggregation_type>-</target_aggregation_type>
  2028 + </field>
  2029 + <field>
  2030 + <field_name>all_content</field_name>
  2031 + <key_value>64</key_value>
  2032 + <target_name>fcno64</target_name>
  2033 + <target_type>String</target_type>
  2034 + <target_format/>
  2035 + <target_length>-1</target_length>
  2036 + <target_precision>-1</target_precision>
  2037 + <target_decimal_symbol/>
  2038 + <target_grouping_symbol/>
  2039 + <target_currency_symbol/>
  2040 + <target_null_string/>
  2041 + <target_aggregation_type>-</target_aggregation_type>
  2042 + </field>
  2043 + <field>
  2044 + <field_name>all_content</field_name>
  2045 + <key_value>65</key_value>
  2046 + <target_name>fcno65</target_name>
  2047 + <target_type>String</target_type>
  2048 + <target_format/>
  2049 + <target_length>-1</target_length>
  2050 + <target_precision>-1</target_precision>
  2051 + <target_decimal_symbol/>
  2052 + <target_grouping_symbol/>
  2053 + <target_currency_symbol/>
  2054 + <target_null_string/>
  2055 + <target_aggregation_type>-</target_aggregation_type>
  2056 + </field>
  2057 + <field>
  2058 + <field_name>all_content</field_name>
  2059 + <key_value>66</key_value>
  2060 + <target_name>fcno66</target_name>
  2061 + <target_type>String</target_type>
  2062 + <target_format/>
  2063 + <target_length>-1</target_length>
  2064 + <target_precision>-1</target_precision>
  2065 + <target_decimal_symbol/>
  2066 + <target_grouping_symbol/>
  2067 + <target_currency_symbol/>
  2068 + <target_null_string/>
  2069 + <target_aggregation_type>-</target_aggregation_type>
  2070 + </field>
  2071 + <field>
  2072 + <field_name>all_content</field_name>
  2073 + <key_value>67</key_value>
  2074 + <target_name>fcno67</target_name>
  2075 + <target_type>String</target_type>
  2076 + <target_format/>
  2077 + <target_length>-1</target_length>
  2078 + <target_precision>-1</target_precision>
  2079 + <target_decimal_symbol/>
  2080 + <target_grouping_symbol/>
  2081 + <target_currency_symbol/>
  2082 + <target_null_string/>
  2083 + <target_aggregation_type>-</target_aggregation_type>
  2084 + </field>
  2085 + <field>
  2086 + <field_name>all_content</field_name>
  2087 + <key_value>68</key_value>
  2088 + <target_name>fcno68</target_name>
  2089 + <target_type>String</target_type>
  2090 + <target_format/>
  2091 + <target_length>-1</target_length>
  2092 + <target_precision>-1</target_precision>
  2093 + <target_decimal_symbol/>
  2094 + <target_grouping_symbol/>
  2095 + <target_currency_symbol/>
  2096 + <target_null_string/>
  2097 + <target_aggregation_type>-</target_aggregation_type>
  2098 + </field>
  2099 + <field>
  2100 + <field_name>all_content</field_name>
  2101 + <key_value>69</key_value>
  2102 + <target_name>fcno69</target_name>
  2103 + <target_type>String</target_type>
  2104 + <target_format/>
  2105 + <target_length>-1</target_length>
  2106 + <target_precision>-1</target_precision>
  2107 + <target_decimal_symbol/>
  2108 + <target_grouping_symbol/>
  2109 + <target_currency_symbol/>
  2110 + <target_null_string/>
  2111 + <target_aggregation_type>-</target_aggregation_type>
  2112 + </field>
  2113 + <field>
  2114 + <field_name>all_content</field_name>
  2115 + <key_value>70</key_value>
  2116 + <target_name>fcno70</target_name>
  2117 + <target_type>String</target_type>
  2118 + <target_format/>
  2119 + <target_length>-1</target_length>
  2120 + <target_precision>-1</target_precision>
  2121 + <target_decimal_symbol/>
  2122 + <target_grouping_symbol/>
  2123 + <target_currency_symbol/>
  2124 + <target_null_string/>
  2125 + <target_aggregation_type>-</target_aggregation_type>
  2126 + </field>
  2127 + <field>
  2128 + <field_name>all_content</field_name>
  2129 + <key_value>71</key_value>
  2130 + <target_name>fcno71</target_name>
  2131 + <target_type>String</target_type>
  2132 + <target_format/>
  2133 + <target_length>-1</target_length>
  2134 + <target_precision>-1</target_precision>
  2135 + <target_decimal_symbol/>
  2136 + <target_grouping_symbol/>
  2137 + <target_currency_symbol/>
  2138 + <target_null_string/>
  2139 + <target_aggregation_type>-</target_aggregation_type>
  2140 + </field>
  2141 + <field>
  2142 + <field_name>all_content</field_name>
  2143 + <key_value>72</key_value>
  2144 + <target_name>fcno72</target_name>
  2145 + <target_type>String</target_type>
  2146 + <target_format/>
  2147 + <target_length>-1</target_length>
  2148 + <target_precision>-1</target_precision>
  2149 + <target_decimal_symbol/>
  2150 + <target_grouping_symbol/>
  2151 + <target_currency_symbol/>
  2152 + <target_null_string/>
  2153 + <target_aggregation_type>-</target_aggregation_type>
  2154 + </field>
  2155 + <field>
  2156 + <field_name>all_content</field_name>
  2157 + <key_value>73</key_value>
  2158 + <target_name>fcno73</target_name>
  2159 + <target_type>String</target_type>
  2160 + <target_format/>
  2161 + <target_length>-1</target_length>
  2162 + <target_precision>-1</target_precision>
  2163 + <target_decimal_symbol/>
  2164 + <target_grouping_symbol/>
  2165 + <target_currency_symbol/>
  2166 + <target_null_string/>
  2167 + <target_aggregation_type>-</target_aggregation_type>
  2168 + </field>
  2169 + <field>
  2170 + <field_name>all_content</field_name>
  2171 + <key_value>74</key_value>
  2172 + <target_name>fcno74</target_name>
  2173 + <target_type>String</target_type>
  2174 + <target_format/>
  2175 + <target_length>-1</target_length>
  2176 + <target_precision>-1</target_precision>
  2177 + <target_decimal_symbol/>
  2178 + <target_grouping_symbol/>
  2179 + <target_currency_symbol/>
  2180 + <target_null_string/>
  2181 + <target_aggregation_type>-</target_aggregation_type>
  2182 + </field>
  2183 + <field>
  2184 + <field_name>all_content</field_name>
  2185 + <key_value>75</key_value>
  2186 + <target_name>fcno75</target_name>
  2187 + <target_type>String</target_type>
  2188 + <target_format/>
  2189 + <target_length>-1</target_length>
  2190 + <target_precision>-1</target_precision>
  2191 + <target_decimal_symbol/>
  2192 + <target_grouping_symbol/>
  2193 + <target_currency_symbol/>
  2194 + <target_null_string/>
  2195 + <target_aggregation_type>-</target_aggregation_type>
  2196 + </field>
  2197 + <field>
  2198 + <field_name>all_content</field_name>
  2199 + <key_value>76</key_value>
  2200 + <target_name>fcno76</target_name>
  2201 + <target_type>String</target_type>
  2202 + <target_format/>
  2203 + <target_length>-1</target_length>
  2204 + <target_precision>-1</target_precision>
  2205 + <target_decimal_symbol/>
  2206 + <target_grouping_symbol/>
  2207 + <target_currency_symbol/>
  2208 + <target_null_string/>
  2209 + <target_aggregation_type>-</target_aggregation_type>
  2210 + </field>
  2211 + <field>
  2212 + <field_name>all_content</field_name>
  2213 + <key_value>77</key_value>
  2214 + <target_name>fcno77</target_name>
  2215 + <target_type>String</target_type>
  2216 + <target_format/>
  2217 + <target_length>-1</target_length>
  2218 + <target_precision>-1</target_precision>
  2219 + <target_decimal_symbol/>
  2220 + <target_grouping_symbol/>
  2221 + <target_currency_symbol/>
  2222 + <target_null_string/>
  2223 + <target_aggregation_type>-</target_aggregation_type>
  2224 + </field>
  2225 + <field>
  2226 + <field_name>all_content</field_name>
  2227 + <key_value>78</key_value>
  2228 + <target_name>fcno78</target_name>
  2229 + <target_type>String</target_type>
  2230 + <target_format/>
  2231 + <target_length>-1</target_length>
  2232 + <target_precision>-1</target_precision>
  2233 + <target_decimal_symbol/>
  2234 + <target_grouping_symbol/>
  2235 + <target_currency_symbol/>
  2236 + <target_null_string/>
  2237 + <target_aggregation_type>-</target_aggregation_type>
  2238 + </field>
  2239 + <field>
  2240 + <field_name>all_content</field_name>
  2241 + <key_value>79</key_value>
  2242 + <target_name>fcno79</target_name>
  2243 + <target_type>String</target_type>
  2244 + <target_format/>
  2245 + <target_length>-1</target_length>
  2246 + <target_precision>-1</target_precision>
  2247 + <target_decimal_symbol/>
  2248 + <target_grouping_symbol/>
  2249 + <target_currency_symbol/>
  2250 + <target_null_string/>
  2251 + <target_aggregation_type>-</target_aggregation_type>
  2252 + </field>
  2253 + <field>
  2254 + <field_name>all_content</field_name>
  2255 + <key_value>80</key_value>
  2256 + <target_name>fcno80</target_name>
  2257 + <target_type>String</target_type>
  2258 + <target_format/>
  2259 + <target_length>-1</target_length>
  2260 + <target_precision>-1</target_precision>
  2261 + <target_decimal_symbol/>
  2262 + <target_grouping_symbol/>
  2263 + <target_currency_symbol/>
  2264 + <target_null_string/>
  2265 + <target_aggregation_type>-</target_aggregation_type>
  2266 + </field>
  2267 + <field>
  2268 + <field_name>all_content</field_name>
  2269 + <key_value>81</key_value>
  2270 + <target_name>fcno81</target_name>
  2271 + <target_type>String</target_type>
  2272 + <target_format/>
  2273 + <target_length>-1</target_length>
  2274 + <target_precision>-1</target_precision>
  2275 + <target_decimal_symbol/>
  2276 + <target_grouping_symbol/>
  2277 + <target_currency_symbol/>
  2278 + <target_null_string/>
  2279 + <target_aggregation_type>-</target_aggregation_type>
  2280 + </field>
  2281 + <field>
  2282 + <field_name>all_content</field_name>
  2283 + <key_value>82</key_value>
  2284 + <target_name>fcno82</target_name>
  2285 + <target_type>String</target_type>
  2286 + <target_format/>
  2287 + <target_length>-1</target_length>
  2288 + <target_precision>-1</target_precision>
  2289 + <target_decimal_symbol/>
  2290 + <target_grouping_symbol/>
  2291 + <target_currency_symbol/>
  2292 + <target_null_string/>
  2293 + <target_aggregation_type>-</target_aggregation_type>
  2294 + </field>
  2295 + <field>
  2296 + <field_name>all_content</field_name>
  2297 + <key_value>83</key_value>
  2298 + <target_name>fcno83</target_name>
  2299 + <target_type>String</target_type>
  2300 + <target_format/>
  2301 + <target_length>-1</target_length>
  2302 + <target_precision>-1</target_precision>
  2303 + <target_decimal_symbol/>
  2304 + <target_grouping_symbol/>
  2305 + <target_currency_symbol/>
  2306 + <target_null_string/>
  2307 + <target_aggregation_type>-</target_aggregation_type>
  2308 + </field>
  2309 + <field>
  2310 + <field_name>all_content</field_name>
  2311 + <key_value>84</key_value>
  2312 + <target_name>fcno84</target_name>
  2313 + <target_type>String</target_type>
  2314 + <target_format/>
  2315 + <target_length>-1</target_length>
  2316 + <target_precision>-1</target_precision>
  2317 + <target_decimal_symbol/>
  2318 + <target_grouping_symbol/>
  2319 + <target_currency_symbol/>
  2320 + <target_null_string/>
  2321 + <target_aggregation_type>-</target_aggregation_type>
  2322 + </field>
  2323 + <field>
  2324 + <field_name>all_content</field_name>
  2325 + <key_value>85</key_value>
  2326 + <target_name>fcno85</target_name>
  2327 + <target_type>String</target_type>
  2328 + <target_format/>
  2329 + <target_length>-1</target_length>
  2330 + <target_precision>-1</target_precision>
  2331 + <target_decimal_symbol/>
  2332 + <target_grouping_symbol/>
  2333 + <target_currency_symbol/>
  2334 + <target_null_string/>
  2335 + <target_aggregation_type>-</target_aggregation_type>
  2336 + </field>
  2337 + <field>
  2338 + <field_name>all_content</field_name>
  2339 + <key_value>86</key_value>
  2340 + <target_name>fcno86</target_name>
  2341 + <target_type>String</target_type>
  2342 + <target_format/>
  2343 + <target_length>-1</target_length>
  2344 + <target_precision>-1</target_precision>
  2345 + <target_decimal_symbol/>
  2346 + <target_grouping_symbol/>
  2347 + <target_currency_symbol/>
  2348 + <target_null_string/>
  2349 + <target_aggregation_type>-</target_aggregation_type>
  2350 + </field>
  2351 + <field>
  2352 + <field_name>all_content</field_name>
  2353 + <key_value>87</key_value>
  2354 + <target_name>fcno87</target_name>
  2355 + <target_type>String</target_type>
  2356 + <target_format/>
  2357 + <target_length>-1</target_length>
  2358 + <target_precision>-1</target_precision>
  2359 + <target_decimal_symbol/>
  2360 + <target_grouping_symbol/>
  2361 + <target_currency_symbol/>
  2362 + <target_null_string/>
  2363 + <target_aggregation_type>-</target_aggregation_type>
  2364 + </field>
  2365 + <field>
  2366 + <field_name>all_content</field_name>
  2367 + <key_value>88</key_value>
  2368 + <target_name>fcno88</target_name>
  2369 + <target_type>String</target_type>
  2370 + <target_format/>
  2371 + <target_length>-1</target_length>
  2372 + <target_precision>-1</target_precision>
  2373 + <target_decimal_symbol/>
  2374 + <target_grouping_symbol/>
  2375 + <target_currency_symbol/>
  2376 + <target_null_string/>
  2377 + <target_aggregation_type>-</target_aggregation_type>
  2378 + </field>
  2379 + <field>
  2380 + <field_name>all_content</field_name>
  2381 + <key_value>89</key_value>
  2382 + <target_name>fcno89</target_name>
  2383 + <target_type>String</target_type>
  2384 + <target_format/>
  2385 + <target_length>-1</target_length>
  2386 + <target_precision>-1</target_precision>
  2387 + <target_decimal_symbol/>
  2388 + <target_grouping_symbol/>
  2389 + <target_currency_symbol/>
  2390 + <target_null_string/>
  2391 + <target_aggregation_type>-</target_aggregation_type>
  2392 + </field>
  2393 + <field>
  2394 + <field_name>all_content</field_name>
  2395 + <key_value>90</key_value>
  2396 + <target_name>fcno90</target_name>
  2397 + <target_type>String</target_type>
  2398 + <target_format/>
  2399 + <target_length>-1</target_length>
  2400 + <target_precision>-1</target_precision>
  2401 + <target_decimal_symbol/>
  2402 + <target_grouping_symbol/>
  2403 + <target_currency_symbol/>
  2404 + <target_null_string/>
  2405 + <target_aggregation_type>-</target_aggregation_type>
  2406 + </field>
  2407 + <field>
  2408 + <field_name>all_content</field_name>
  2409 + <key_value>91</key_value>
  2410 + <target_name>fcno91</target_name>
  2411 + <target_type>String</target_type>
  2412 + <target_format/>
  2413 + <target_length>-1</target_length>
  2414 + <target_precision>-1</target_precision>
  2415 + <target_decimal_symbol/>
  2416 + <target_grouping_symbol/>
  2417 + <target_currency_symbol/>
  2418 + <target_null_string/>
  2419 + <target_aggregation_type>-</target_aggregation_type>
  2420 + </field>
  2421 + <field>
  2422 + <field_name>all_content</field_name>
  2423 + <key_value>92</key_value>
  2424 + <target_name>fcno92</target_name>
  2425 + <target_type>String</target_type>
  2426 + <target_format/>
  2427 + <target_length>-1</target_length>
  2428 + <target_precision>-1</target_precision>
  2429 + <target_decimal_symbol/>
  2430 + <target_grouping_symbol/>
  2431 + <target_currency_symbol/>
  2432 + <target_null_string/>
  2433 + <target_aggregation_type>-</target_aggregation_type>
  2434 + </field>
  2435 + <field>
  2436 + <field_name>all_content</field_name>
  2437 + <key_value>93</key_value>
  2438 + <target_name>fcno93</target_name>
  2439 + <target_type>String</target_type>
  2440 + <target_format/>
  2441 + <target_length>-1</target_length>
  2442 + <target_precision>-1</target_precision>
  2443 + <target_decimal_symbol/>
  2444 + <target_grouping_symbol/>
  2445 + <target_currency_symbol/>
  2446 + <target_null_string/>
  2447 + <target_aggregation_type>-</target_aggregation_type>
  2448 + </field>
  2449 + <field>
  2450 + <field_name>all_content</field_name>
  2451 + <key_value>94</key_value>
  2452 + <target_name>fcno94</target_name>
  2453 + <target_type>String</target_type>
  2454 + <target_format/>
  2455 + <target_length>-1</target_length>
  2456 + <target_precision>-1</target_precision>
  2457 + <target_decimal_symbol/>
  2458 + <target_grouping_symbol/>
  2459 + <target_currency_symbol/>
  2460 + <target_null_string/>
  2461 + <target_aggregation_type>-</target_aggregation_type>
  2462 + </field>
  2463 + <field>
  2464 + <field_name>all_content</field_name>
  2465 + <key_value>95</key_value>
  2466 + <target_name>fcno95</target_name>
  2467 + <target_type>String</target_type>
  2468 + <target_format/>
  2469 + <target_length>-1</target_length>
  2470 + <target_precision>-1</target_precision>
  2471 + <target_decimal_symbol/>
  2472 + <target_grouping_symbol/>
  2473 + <target_currency_symbol/>
  2474 + <target_null_string/>
  2475 + <target_aggregation_type>-</target_aggregation_type>
  2476 + </field>
  2477 + <field>
  2478 + <field_name>all_content</field_name>
  2479 + <key_value>96</key_value>
  2480 + <target_name>fcno96</target_name>
  2481 + <target_type>String</target_type>
  2482 + <target_format/>
  2483 + <target_length>-1</target_length>
  2484 + <target_precision>-1</target_precision>
  2485 + <target_decimal_symbol/>
  2486 + <target_grouping_symbol/>
  2487 + <target_currency_symbol/>
  2488 + <target_null_string/>
  2489 + <target_aggregation_type>-</target_aggregation_type>
  2490 + </field>
  2491 + <field>
  2492 + <field_name>all_content</field_name>
  2493 + <key_value>97</key_value>
  2494 + <target_name>fcno97</target_name>
  2495 + <target_type>String</target_type>
  2496 + <target_format/>
  2497 + <target_length>-1</target_length>
  2498 + <target_precision>-1</target_precision>
  2499 + <target_decimal_symbol/>
  2500 + <target_grouping_symbol/>
  2501 + <target_currency_symbol/>
  2502 + <target_null_string/>
  2503 + <target_aggregation_type>-</target_aggregation_type>
  2504 + </field>
  2505 + <field>
  2506 + <field_name>all_content</field_name>
  2507 + <key_value>98</key_value>
  2508 + <target_name>fcno98</target_name>
  2509 + <target_type>String</target_type>
  2510 + <target_format/>
  2511 + <target_length>-1</target_length>
  2512 + <target_precision>-1</target_precision>
  2513 + <target_decimal_symbol/>
  2514 + <target_grouping_symbol/>
  2515 + <target_currency_symbol/>
  2516 + <target_null_string/>
  2517 + <target_aggregation_type>-</target_aggregation_type>
  2518 + </field>
  2519 + <field>
  2520 + <field_name>all_content</field_name>
  2521 + <key_value>99</key_value>
  2522 + <target_name>fcno99</target_name>
  2523 + <target_type>String</target_type>
  2524 + <target_format/>
  2525 + <target_length>-1</target_length>
  2526 + <target_precision>-1</target_precision>
  2527 + <target_decimal_symbol/>
  2528 + <target_grouping_symbol/>
  2529 + <target_currency_symbol/>
  2530 + <target_null_string/>
  2531 + <target_aggregation_type>-</target_aggregation_type>
  2532 + </field>
  2533 + <field>
  2534 + <field_name>all_content</field_name>
  2535 + <key_value>100</key_value>
  2536 + <target_name>fcno100</target_name>
  2537 + <target_type>String</target_type>
  2538 + <target_format/>
  2539 + <target_length>-1</target_length>
  2540 + <target_precision>-1</target_precision>
  2541 + <target_decimal_symbol/>
  2542 + <target_grouping_symbol/>
  2543 + <target_currency_symbol/>
  2544 + <target_null_string/>
  2545 + <target_aggregation_type>-</target_aggregation_type>
  2546 + </field>
  2547 + <field>
  2548 + <field_name>all_content</field_name>
  2549 + <key_value>101</key_value>
  2550 + <target_name>fcno101</target_name>
  2551 + <target_type>String</target_type>
  2552 + <target_format/>
  2553 + <target_length>-1</target_length>
  2554 + <target_precision>-1</target_precision>
  2555 + <target_decimal_symbol/>
  2556 + <target_grouping_symbol/>
  2557 + <target_currency_symbol/>
  2558 + <target_null_string/>
  2559 + <target_aggregation_type>-</target_aggregation_type>
  2560 + </field>
  2561 + <field>
  2562 + <field_name>all_content</field_name>
  2563 + <key_value>102</key_value>
  2564 + <target_name>fcno102</target_name>
  2565 + <target_type>String</target_type>
  2566 + <target_format/>
  2567 + <target_length>-1</target_length>
  2568 + <target_precision>-1</target_precision>
  2569 + <target_decimal_symbol/>
  2570 + <target_grouping_symbol/>
  2571 + <target_currency_symbol/>
  2572 + <target_null_string/>
  2573 + <target_aggregation_type>-</target_aggregation_type>
  2574 + </field>
  2575 + <field>
  2576 + <field_name>all_content</field_name>
  2577 + <key_value>103</key_value>
  2578 + <target_name>fcno103</target_name>
  2579 + <target_type>String</target_type>
  2580 + <target_format/>
  2581 + <target_length>-1</target_length>
  2582 + <target_precision>-1</target_precision>
  2583 + <target_decimal_symbol/>
  2584 + <target_grouping_symbol/>
  2585 + <target_currency_symbol/>
  2586 + <target_null_string/>
  2587 + <target_aggregation_type>-</target_aggregation_type>
  2588 + </field>
  2589 + <field>
  2590 + <field_name>all_content</field_name>
  2591 + <key_value>104</key_value>
  2592 + <target_name>fcno104</target_name>
  2593 + <target_type>String</target_type>
  2594 + <target_format/>
  2595 + <target_length>-1</target_length>
  2596 + <target_precision>-1</target_precision>
  2597 + <target_decimal_symbol/>
  2598 + <target_grouping_symbol/>
  2599 + <target_currency_symbol/>
  2600 + <target_null_string/>
  2601 + <target_aggregation_type>-</target_aggregation_type>
  2602 + </field>
  2603 + <field>
  2604 + <field_name>all_content</field_name>
  2605 + <key_value>105</key_value>
  2606 + <target_name>fcno105</target_name>
  2607 + <target_type>String</target_type>
  2608 + <target_format/>
  2609 + <target_length>-1</target_length>
  2610 + <target_precision>-1</target_precision>
  2611 + <target_decimal_symbol/>
  2612 + <target_grouping_symbol/>
  2613 + <target_currency_symbol/>
  2614 + <target_null_string/>
  2615 + <target_aggregation_type>-</target_aggregation_type>
  2616 + </field>
  2617 + <field>
  2618 + <field_name>all_content</field_name>
  2619 + <key_value>106</key_value>
  2620 + <target_name>fcno106</target_name>
  2621 + <target_type>String</target_type>
  2622 + <target_format/>
  2623 + <target_length>-1</target_length>
  2624 + <target_precision>-1</target_precision>
  2625 + <target_decimal_symbol/>
  2626 + <target_grouping_symbol/>
  2627 + <target_currency_symbol/>
  2628 + <target_null_string/>
  2629 + <target_aggregation_type>-</target_aggregation_type>
  2630 + </field>
  2631 + <field>
  2632 + <field_name>all_content</field_name>
  2633 + <key_value>107</key_value>
  2634 + <target_name>fcno107</target_name>
  2635 + <target_type>String</target_type>
  2636 + <target_format/>
  2637 + <target_length>-1</target_length>
  2638 + <target_precision>-1</target_precision>
  2639 + <target_decimal_symbol/>
  2640 + <target_grouping_symbol/>
  2641 + <target_currency_symbol/>
  2642 + <target_null_string/>
  2643 + <target_aggregation_type>-</target_aggregation_type>
  2644 + </field>
  2645 + <field>
  2646 + <field_name>all_content</field_name>
  2647 + <key_value>108</key_value>
  2648 + <target_name>fcno108</target_name>
  2649 + <target_type>String</target_type>
  2650 + <target_format/>
  2651 + <target_length>-1</target_length>
  2652 + <target_precision>-1</target_precision>
  2653 + <target_decimal_symbol/>
  2654 + <target_grouping_symbol/>
  2655 + <target_currency_symbol/>
  2656 + <target_null_string/>
  2657 + <target_aggregation_type>-</target_aggregation_type>
  2658 + </field>
  2659 + <field>
  2660 + <field_name>all_content</field_name>
  2661 + <key_value>109</key_value>
  2662 + <target_name>fcno109</target_name>
  2663 + <target_type>String</target_type>
  2664 + <target_format/>
  2665 + <target_length>-1</target_length>
  2666 + <target_precision>-1</target_precision>
  2667 + <target_decimal_symbol/>
  2668 + <target_grouping_symbol/>
  2669 + <target_currency_symbol/>
  2670 + <target_null_string/>
  2671 + <target_aggregation_type>-</target_aggregation_type>
  2672 + </field>
  2673 + <field>
  2674 + <field_name>all_content</field_name>
  2675 + <key_value>110</key_value>
  2676 + <target_name>fcno110</target_name>
  2677 + <target_type>String</target_type>
  2678 + <target_format/>
  2679 + <target_length>-1</target_length>
  2680 + <target_precision>-1</target_precision>
  2681 + <target_decimal_symbol/>
  2682 + <target_grouping_symbol/>
  2683 + <target_currency_symbol/>
  2684 + <target_null_string/>
  2685 + <target_aggregation_type>-</target_aggregation_type>
  2686 + </field>
  2687 + <field>
  2688 + <field_name>all_content</field_name>
  2689 + <key_value>111</key_value>
  2690 + <target_name>fcno111</target_name>
  2691 + <target_type>String</target_type>
  2692 + <target_format/>
  2693 + <target_length>-1</target_length>
  2694 + <target_precision>-1</target_precision>
  2695 + <target_decimal_symbol/>
  2696 + <target_grouping_symbol/>
  2697 + <target_currency_symbol/>
  2698 + <target_null_string/>
  2699 + <target_aggregation_type>-</target_aggregation_type>
  2700 + </field>
  2701 + <field>
  2702 + <field_name>all_content</field_name>
  2703 + <key_value>112</key_value>
  2704 + <target_name>fcno112</target_name>
  2705 + <target_type>String</target_type>
  2706 + <target_format/>
  2707 + <target_length>-1</target_length>
  2708 + <target_precision>-1</target_precision>
  2709 + <target_decimal_symbol/>
  2710 + <target_grouping_symbol/>
  2711 + <target_currency_symbol/>
  2712 + <target_null_string/>
  2713 + <target_aggregation_type>-</target_aggregation_type>
  2714 + </field>
  2715 + <field>
  2716 + <field_name>all_content</field_name>
  2717 + <key_value>113</key_value>
  2718 + <target_name>fcno113</target_name>
  2719 + <target_type>String</target_type>
  2720 + <target_format/>
  2721 + <target_length>-1</target_length>
  2722 + <target_precision>-1</target_precision>
  2723 + <target_decimal_symbol/>
  2724 + <target_grouping_symbol/>
  2725 + <target_currency_symbol/>
  2726 + <target_null_string/>
  2727 + <target_aggregation_type>-</target_aggregation_type>
  2728 + </field>
  2729 + <field>
  2730 + <field_name>all_content</field_name>
  2731 + <key_value>114</key_value>
  2732 + <target_name>fcno114</target_name>
  2733 + <target_type>String</target_type>
  2734 + <target_format/>
  2735 + <target_length>-1</target_length>
  2736 + <target_precision>-1</target_precision>
  2737 + <target_decimal_symbol/>
  2738 + <target_grouping_symbol/>
  2739 + <target_currency_symbol/>
  2740 + <target_null_string/>
  2741 + <target_aggregation_type>-</target_aggregation_type>
  2742 + </field>
  2743 + <field>
  2744 + <field_name>all_content</field_name>
  2745 + <key_value>115</key_value>
  2746 + <target_name>fcno115</target_name>
  2747 + <target_type>String</target_type>
  2748 + <target_format/>
  2749 + <target_length>-1</target_length>
  2750 + <target_precision>-1</target_precision>
  2751 + <target_decimal_symbol/>
  2752 + <target_grouping_symbol/>
  2753 + <target_currency_symbol/>
  2754 + <target_null_string/>
  2755 + <target_aggregation_type>-</target_aggregation_type>
  2756 + </field>
  2757 + <field>
  2758 + <field_name>all_content</field_name>
  2759 + <key_value>116</key_value>
  2760 + <target_name>fcno116</target_name>
  2761 + <target_type>String</target_type>
  2762 + <target_format/>
  2763 + <target_length>-1</target_length>
  2764 + <target_precision>-1</target_precision>
  2765 + <target_decimal_symbol/>
  2766 + <target_grouping_symbol/>
  2767 + <target_currency_symbol/>
  2768 + <target_null_string/>
  2769 + <target_aggregation_type>-</target_aggregation_type>
  2770 + </field>
  2771 + <field>
  2772 + <field_name>all_content</field_name>
  2773 + <key_value>117</key_value>
  2774 + <target_name>fcno117</target_name>
  2775 + <target_type>String</target_type>
  2776 + <target_format/>
  2777 + <target_length>-1</target_length>
  2778 + <target_precision>-1</target_precision>
  2779 + <target_decimal_symbol/>
  2780 + <target_grouping_symbol/>
  2781 + <target_currency_symbol/>
  2782 + <target_null_string/>
  2783 + <target_aggregation_type>-</target_aggregation_type>
  2784 + </field>
  2785 + <field>
  2786 + <field_name>all_content</field_name>
  2787 + <key_value>118</key_value>
  2788 + <target_name>fcno118</target_name>
  2789 + <target_type>String</target_type>
  2790 + <target_format/>
  2791 + <target_length>-1</target_length>
  2792 + <target_precision>-1</target_precision>
  2793 + <target_decimal_symbol/>
  2794 + <target_grouping_symbol/>
  2795 + <target_currency_symbol/>
  2796 + <target_null_string/>
  2797 + <target_aggregation_type>-</target_aggregation_type>
  2798 + </field>
  2799 + <field>
  2800 + <field_name>all_content</field_name>
  2801 + <key_value>119</key_value>
  2802 + <target_name>fcno119</target_name>
  2803 + <target_type>String</target_type>
  2804 + <target_format/>
  2805 + <target_length>-1</target_length>
  2806 + <target_precision>-1</target_precision>
  2807 + <target_decimal_symbol/>
  2808 + <target_grouping_symbol/>
  2809 + <target_currency_symbol/>
  2810 + <target_null_string/>
  2811 + <target_aggregation_type>-</target_aggregation_type>
  2812 + </field>
  2813 + <field>
  2814 + <field_name>all_content</field_name>
  2815 + <key_value>120</key_value>
  2816 + <target_name>fcno120</target_name>
  2817 + <target_type>String</target_type>
  2818 + <target_format/>
  2819 + <target_length>-1</target_length>
  2820 + <target_precision>-1</target_precision>
  2821 + <target_decimal_symbol/>
  2822 + <target_grouping_symbol/>
  2823 + <target_currency_symbol/>
  2824 + <target_null_string/>
  2825 + <target_aggregation_type>-</target_aggregation_type>
  2826 + </field>
  2827 + <field>
  2828 + <field_name>all_content</field_name>
  2829 + <key_value>121</key_value>
  2830 + <target_name>fcno121</target_name>
  2831 + <target_type>String</target_type>
  2832 + <target_format/>
  2833 + <target_length>-1</target_length>
  2834 + <target_precision>-1</target_precision>
  2835 + <target_decimal_symbol/>
  2836 + <target_grouping_symbol/>
  2837 + <target_currency_symbol/>
  2838 + <target_null_string/>
  2839 + <target_aggregation_type>-</target_aggregation_type>
  2840 + </field>
  2841 + <field>
  2842 + <field_name>all_content</field_name>
  2843 + <key_value>122</key_value>
  2844 + <target_name>fcno122</target_name>
  2845 + <target_type>String</target_type>
  2846 + <target_format/>
  2847 + <target_length>-1</target_length>
  2848 + <target_precision>-1</target_precision>
  2849 + <target_decimal_symbol/>
  2850 + <target_grouping_symbol/>
  2851 + <target_currency_symbol/>
  2852 + <target_null_string/>
  2853 + <target_aggregation_type>-</target_aggregation_type>
  2854 + </field>
  2855 + <field>
  2856 + <field_name>all_content</field_name>
  2857 + <key_value>123</key_value>
  2858 + <target_name>fcno123</target_name>
  2859 + <target_type>String</target_type>
  2860 + <target_format/>
  2861 + <target_length>-1</target_length>
  2862 + <target_precision>-1</target_precision>
  2863 + <target_decimal_symbol/>
  2864 + <target_grouping_symbol/>
  2865 + <target_currency_symbol/>
  2866 + <target_null_string/>
  2867 + <target_aggregation_type>-</target_aggregation_type>
  2868 + </field>
  2869 + <field>
  2870 + <field_name>all_content</field_name>
  2871 + <key_value>124</key_value>
  2872 + <target_name>fcno124</target_name>
  2873 + <target_type>String</target_type>
  2874 + <target_format/>
  2875 + <target_length>-1</target_length>
  2876 + <target_precision>-1</target_precision>
  2877 + <target_decimal_symbol/>
  2878 + <target_grouping_symbol/>
  2879 + <target_currency_symbol/>
  2880 + <target_null_string/>
  2881 + <target_aggregation_type>-</target_aggregation_type>
  2882 + </field>
  2883 + <field>
  2884 + <field_name>all_content</field_name>
  2885 + <key_value>125</key_value>
  2886 + <target_name>fcno125</target_name>
  2887 + <target_type>String</target_type>
  2888 + <target_format/>
  2889 + <target_length>-1</target_length>
  2890 + <target_precision>-1</target_precision>
  2891 + <target_decimal_symbol/>
  2892 + <target_grouping_symbol/>
  2893 + <target_currency_symbol/>
  2894 + <target_null_string/>
  2895 + <target_aggregation_type>-</target_aggregation_type>
  2896 + </field>
  2897 + <field>
  2898 + <field_name>all_content</field_name>
  2899 + <key_value>126</key_value>
  2900 + <target_name>fcno126</target_name>
  2901 + <target_type>String</target_type>
  2902 + <target_format/>
  2903 + <target_length>-1</target_length>
  2904 + <target_precision>-1</target_precision>
  2905 + <target_decimal_symbol/>
  2906 + <target_grouping_symbol/>
  2907 + <target_currency_symbol/>
  2908 + <target_null_string/>
  2909 + <target_aggregation_type>-</target_aggregation_type>
  2910 + </field>
  2911 + <field>
  2912 + <field_name>all_content</field_name>
  2913 + <key_value>127</key_value>
  2914 + <target_name>fcno127</target_name>
  2915 + <target_type>String</target_type>
  2916 + <target_format/>
  2917 + <target_length>-1</target_length>
  2918 + <target_precision>-1</target_precision>
  2919 + <target_decimal_symbol/>
  2920 + <target_grouping_symbol/>
  2921 + <target_currency_symbol/>
  2922 + <target_null_string/>
  2923 + <target_aggregation_type>-</target_aggregation_type>
  2924 + </field>
  2925 + <field>
  2926 + <field_name>all_content</field_name>
  2927 + <key_value>128</key_value>
  2928 + <target_name>fcno128</target_name>
  2929 + <target_type>String</target_type>
  2930 + <target_format/>
  2931 + <target_length>-1</target_length>
  2932 + <target_precision>-1</target_precision>
  2933 + <target_decimal_symbol/>
  2934 + <target_grouping_symbol/>
  2935 + <target_currency_symbol/>
  2936 + <target_null_string/>
  2937 + <target_aggregation_type>-</target_aggregation_type>
  2938 + </field>
  2939 + <field>
  2940 + <field_name>all_content</field_name>
  2941 + <key_value>129</key_value>
  2942 + <target_name>fcno129</target_name>
  2943 + <target_type>String</target_type>
  2944 + <target_format/>
  2945 + <target_length>-1</target_length>
  2946 + <target_precision>-1</target_precision>
  2947 + <target_decimal_symbol/>
  2948 + <target_grouping_symbol/>
  2949 + <target_currency_symbol/>
  2950 + <target_null_string/>
  2951 + <target_aggregation_type>-</target_aggregation_type>
  2952 + </field>
  2953 + <field>
  2954 + <field_name>all_content</field_name>
  2955 + <key_value>130</key_value>
  2956 + <target_name>fcno130</target_name>
  2957 + <target_type>String</target_type>
  2958 + <target_format/>
  2959 + <target_length>-1</target_length>
  2960 + <target_precision>-1</target_precision>
  2961 + <target_decimal_symbol/>
  2962 + <target_grouping_symbol/>
  2963 + <target_currency_symbol/>
  2964 + <target_null_string/>
  2965 + <target_aggregation_type>-</target_aggregation_type>
  2966 + </field>
  2967 + <field>
  2968 + <field_name>all_content</field_name>
  2969 + <key_value>131</key_value>
  2970 + <target_name>fcno131</target_name>
  2971 + <target_type>String</target_type>
  2972 + <target_format/>
  2973 + <target_length>-1</target_length>
  2974 + <target_precision>-1</target_precision>
  2975 + <target_decimal_symbol/>
  2976 + <target_grouping_symbol/>
  2977 + <target_currency_symbol/>
  2978 + <target_null_string/>
  2979 + <target_aggregation_type>-</target_aggregation_type>
  2980 + </field>
  2981 + <field>
  2982 + <field_name>all_content</field_name>
  2983 + <key_value>132</key_value>
  2984 + <target_name>fcno132</target_name>
  2985 + <target_type>String</target_type>
  2986 + <target_format/>
  2987 + <target_length>-1</target_length>
  2988 + <target_precision>-1</target_precision>
  2989 + <target_decimal_symbol/>
  2990 + <target_grouping_symbol/>
  2991 + <target_currency_symbol/>
  2992 + <target_null_string/>
  2993 + <target_aggregation_type>-</target_aggregation_type>
  2994 + </field>
  2995 + <field>
  2996 + <field_name>all_content</field_name>
  2997 + <key_value>133</key_value>
  2998 + <target_name>fcno133</target_name>
  2999 + <target_type>String</target_type>
  3000 + <target_format/>
  3001 + <target_length>-1</target_length>
  3002 + <target_precision>-1</target_precision>
  3003 + <target_decimal_symbol/>
  3004 + <target_grouping_symbol/>
  3005 + <target_currency_symbol/>
  3006 + <target_null_string/>
  3007 + <target_aggregation_type>-</target_aggregation_type>
  3008 + </field>
  3009 + <field>
  3010 + <field_name>all_content</field_name>
  3011 + <key_value>134</key_value>
  3012 + <target_name>fcno134</target_name>
  3013 + <target_type>String</target_type>
  3014 + <target_format/>
  3015 + <target_length>-1</target_length>
  3016 + <target_precision>-1</target_precision>
  3017 + <target_decimal_symbol/>
  3018 + <target_grouping_symbol/>
  3019 + <target_currency_symbol/>
  3020 + <target_null_string/>
  3021 + <target_aggregation_type>-</target_aggregation_type>
  3022 + </field>
  3023 + <field>
  3024 + <field_name>all_content</field_name>
  3025 + <key_value>135</key_value>
  3026 + <target_name>fcno135</target_name>
  3027 + <target_type>String</target_type>
  3028 + <target_format/>
  3029 + <target_length>-1</target_length>
  3030 + <target_precision>-1</target_precision>
  3031 + <target_decimal_symbol/>
  3032 + <target_grouping_symbol/>
  3033 + <target_currency_symbol/>
  3034 + <target_null_string/>
  3035 + <target_aggregation_type>-</target_aggregation_type>
  3036 + </field>
  3037 + <field>
  3038 + <field_name>all_content</field_name>
  3039 + <key_value>136</key_value>
  3040 + <target_name>fcno136</target_name>
  3041 + <target_type>String</target_type>
  3042 + <target_format/>
  3043 + <target_length>-1</target_length>
  3044 + <target_precision>-1</target_precision>
  3045 + <target_decimal_symbol/>
  3046 + <target_grouping_symbol/>
  3047 + <target_currency_symbol/>
  3048 + <target_null_string/>
  3049 + <target_aggregation_type>-</target_aggregation_type>
  3050 + </field>
  3051 + <field>
  3052 + <field_name>all_content</field_name>
  3053 + <key_value>137</key_value>
  3054 + <target_name>fcno137</target_name>
  3055 + <target_type>String</target_type>
  3056 + <target_format/>
  3057 + <target_length>-1</target_length>
  3058 + <target_precision>-1</target_precision>
  3059 + <target_decimal_symbol/>
  3060 + <target_grouping_symbol/>
  3061 + <target_currency_symbol/>
  3062 + <target_null_string/>
  3063 + <target_aggregation_type>-</target_aggregation_type>
  3064 + </field>
  3065 + <field>
  3066 + <field_name>all_content</field_name>
  3067 + <key_value>138</key_value>
  3068 + <target_name>fcno138</target_name>
  3069 + <target_type>String</target_type>
  3070 + <target_format/>
  3071 + <target_length>-1</target_length>
  3072 + <target_precision>-1</target_precision>
  3073 + <target_decimal_symbol/>
  3074 + <target_grouping_symbol/>
  3075 + <target_currency_symbol/>
  3076 + <target_null_string/>
  3077 + <target_aggregation_type>-</target_aggregation_type>
  3078 + </field>
  3079 + <field>
  3080 + <field_name>all_content</field_name>
  3081 + <key_value>139</key_value>
  3082 + <target_name>fcno139</target_name>
  3083 + <target_type>String</target_type>
  3084 + <target_format/>
  3085 + <target_length>-1</target_length>
  3086 + <target_precision>-1</target_precision>
  3087 + <target_decimal_symbol/>
  3088 + <target_grouping_symbol/>
  3089 + <target_currency_symbol/>
  3090 + <target_null_string/>
  3091 + <target_aggregation_type>-</target_aggregation_type>
  3092 + </field>
  3093 + <field>
  3094 + <field_name>all_content</field_name>
  3095 + <key_value>140</key_value>
  3096 + <target_name>fcno140</target_name>
  3097 + <target_type>String</target_type>
  3098 + <target_format/>
  3099 + <target_length>-1</target_length>
  3100 + <target_precision>-1</target_precision>
  3101 + <target_decimal_symbol/>
  3102 + <target_grouping_symbol/>
  3103 + <target_currency_symbol/>
  3104 + <target_null_string/>
  3105 + <target_aggregation_type>-</target_aggregation_type>
  3106 + </field>
  3107 + <field>
  3108 + <field_name>all_content</field_name>
  3109 + <key_value>141</key_value>
  3110 + <target_name>fcno141</target_name>
  3111 + <target_type>String</target_type>
  3112 + <target_format/>
  3113 + <target_length>-1</target_length>
  3114 + <target_precision>-1</target_precision>
  3115 + <target_decimal_symbol/>
  3116 + <target_grouping_symbol/>
  3117 + <target_currency_symbol/>
  3118 + <target_null_string/>
  3119 + <target_aggregation_type>-</target_aggregation_type>
  3120 + </field>
  3121 + <field>
  3122 + <field_name>all_content</field_name>
  3123 + <key_value>142</key_value>
  3124 + <target_name>fcno142</target_name>
  3125 + <target_type>String</target_type>
  3126 + <target_format/>
  3127 + <target_length>-1</target_length>
  3128 + <target_precision>-1</target_precision>
  3129 + <target_decimal_symbol/>
  3130 + <target_grouping_symbol/>
  3131 + <target_currency_symbol/>
  3132 + <target_null_string/>
  3133 + <target_aggregation_type>-</target_aggregation_type>
  3134 + </field>
  3135 + <field>
  3136 + <field_name>all_content</field_name>
  3137 + <key_value>143</key_value>
  3138 + <target_name>fcno143</target_name>
  3139 + <target_type>String</target_type>
  3140 + <target_format/>
  3141 + <target_length>-1</target_length>
  3142 + <target_precision>-1</target_precision>
  3143 + <target_decimal_symbol/>
  3144 + <target_grouping_symbol/>
  3145 + <target_currency_symbol/>
  3146 + <target_null_string/>
  3147 + <target_aggregation_type>-</target_aggregation_type>
  3148 + </field>
  3149 + <field>
  3150 + <field_name>all_content</field_name>
  3151 + <key_value>144</key_value>
  3152 + <target_name>fcno144</target_name>
  3153 + <target_type>String</target_type>
  3154 + <target_format/>
  3155 + <target_length>-1</target_length>
  3156 + <target_precision>-1</target_precision>
  3157 + <target_decimal_symbol/>
  3158 + <target_grouping_symbol/>
  3159 + <target_currency_symbol/>
  3160 + <target_null_string/>
  3161 + <target_aggregation_type>-</target_aggregation_type>
  3162 + </field>
  3163 + <field>
  3164 + <field_name>all_content</field_name>
  3165 + <key_value>145</key_value>
  3166 + <target_name>fcno145</target_name>
  3167 + <target_type>String</target_type>
  3168 + <target_format/>
  3169 + <target_length>-1</target_length>
  3170 + <target_precision>-1</target_precision>
  3171 + <target_decimal_symbol/>
  3172 + <target_grouping_symbol/>
  3173 + <target_currency_symbol/>
  3174 + <target_null_string/>
  3175 + <target_aggregation_type>-</target_aggregation_type>
  3176 + </field>
  3177 + <field>
  3178 + <field_name>all_content</field_name>
  3179 + <key_value>146</key_value>
  3180 + <target_name>fcno146</target_name>
  3181 + <target_type>String</target_type>
  3182 + <target_format/>
  3183 + <target_length>-1</target_length>
  3184 + <target_precision>-1</target_precision>
  3185 + <target_decimal_symbol/>
  3186 + <target_grouping_symbol/>
  3187 + <target_currency_symbol/>
  3188 + <target_null_string/>
  3189 + <target_aggregation_type>-</target_aggregation_type>
  3190 + </field>
  3191 + <field>
  3192 + <field_name>all_content</field_name>
  3193 + <key_value>147</key_value>
  3194 + <target_name>fcno147</target_name>
  3195 + <target_type>String</target_type>
  3196 + <target_format/>
  3197 + <target_length>-1</target_length>
  3198 + <target_precision>-1</target_precision>
  3199 + <target_decimal_symbol/>
  3200 + <target_grouping_symbol/>
  3201 + <target_currency_symbol/>
  3202 + <target_null_string/>
  3203 + <target_aggregation_type>-</target_aggregation_type>
  3204 + </field>
  3205 + <field>
  3206 + <field_name>all_content</field_name>
  3207 + <key_value>148</key_value>
  3208 + <target_name>fcno148</target_name>
  3209 + <target_type>String</target_type>
  3210 + <target_format/>
  3211 + <target_length>-1</target_length>
  3212 + <target_precision>-1</target_precision>
  3213 + <target_decimal_symbol/>
  3214 + <target_grouping_symbol/>
  3215 + <target_currency_symbol/>
  3216 + <target_null_string/>
  3217 + <target_aggregation_type>-</target_aggregation_type>
  3218 + </field>
  3219 + <field>
  3220 + <field_name>all_content</field_name>
  3221 + <key_value>149</key_value>
  3222 + <target_name>fcno149</target_name>
  3223 + <target_type>String</target_type>
  3224 + <target_format/>
  3225 + <target_length>-1</target_length>
  3226 + <target_precision>-1</target_precision>
  3227 + <target_decimal_symbol/>
  3228 + <target_grouping_symbol/>
  3229 + <target_currency_symbol/>
  3230 + <target_null_string/>
  3231 + <target_aggregation_type>-</target_aggregation_type>
  3232 + </field>
  3233 + <field>
  3234 + <field_name>all_content</field_name>
  3235 + <key_value>150</key_value>
  3236 + <target_name>fcno150</target_name>
  3237 + <target_type>String</target_type>
  3238 + <target_format/>
  3239 + <target_length>-1</target_length>
  3240 + <target_precision>-1</target_precision>
  3241 + <target_decimal_symbol/>
  3242 + <target_grouping_symbol/>
  3243 + <target_currency_symbol/>
  3244 + <target_null_string/>
  3245 + <target_aggregation_type>-</target_aggregation_type>
  3246 + </field>
  3247 + </fields>
  3248 + <cluster_schema/>
  3249 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3250 + <xloc>683</xloc>
  3251 + <yloc>184</yloc>
  3252 + <draw>Y</draw>
  3253 + </GUI>
  3254 + </step>
  3255 +
  3256 + <step>
  3257 + <name>&#x53bb;&#x9664;&#x5b57;&#x6bb5;</name>
  3258 + <type>SelectValues</type>
  3259 + <description/>
  3260 + <distribute>N</distribute>
  3261 + <custom_distribution/>
  3262 + <copies>1</copies>
  3263 + <partitioning>
  3264 + <method>none</method>
  3265 + <schema_name/>
  3266 + </partitioning>
  3267 + <fields> <field> <name>lp</name>
  3268 + <rename/>
  3269 + <length>-2</length>
  3270 + <precision>-2</precision>
  3271 + </field> <field> <name>fcno1</name>
  3272 + <rename/>
  3273 + <length>-2</length>
  3274 + <precision>-2</precision>
  3275 + </field> <field> <name>fcno2</name>
  3276 + <rename/>
  3277 + <length>-2</length>
  3278 + <precision>-2</precision>
  3279 + </field> <field> <name>fcno3</name>
  3280 + <rename/>
  3281 + <length>-2</length>
  3282 + <precision>-2</precision>
  3283 + </field> <field> <name>fcno4</name>
  3284 + <rename/>
  3285 + <length>-2</length>
  3286 + <precision>-2</precision>
  3287 + </field> <field> <name>fcno5</name>
  3288 + <rename/>
  3289 + <length>-2</length>
  3290 + <precision>-2</precision>
  3291 + </field> <field> <name>fcno6</name>
  3292 + <rename/>
  3293 + <length>-2</length>
  3294 + <precision>-2</precision>
  3295 + </field> <field> <name>fcno7</name>
  3296 + <rename/>
  3297 + <length>-2</length>
  3298 + <precision>-2</precision>
  3299 + </field> <field> <name>fcno8</name>
  3300 + <rename/>
  3301 + <length>-2</length>
  3302 + <precision>-2</precision>
  3303 + </field> <field> <name>fcno9</name>
  3304 + <rename/>
  3305 + <length>-2</length>
  3306 + <precision>-2</precision>
  3307 + </field> <field> <name>fcno10</name>
  3308 + <rename/>
  3309 + <length>-2</length>
  3310 + <precision>-2</precision>
  3311 + </field> <field> <name>fcno11</name>
  3312 + <rename/>
  3313 + <length>-2</length>
  3314 + <precision>-2</precision>
  3315 + </field> <field> <name>fcno12</name>
  3316 + <rename/>
  3317 + <length>-2</length>
  3318 + <precision>-2</precision>
  3319 + </field> <field> <name>fcno13</name>
  3320 + <rename/>
  3321 + <length>-2</length>
  3322 + <precision>-2</precision>
  3323 + </field> <field> <name>fcno14</name>
  3324 + <rename/>
  3325 + <length>-2</length>
  3326 + <precision>-2</precision>
  3327 + </field> <field> <name>fcno15</name>
  3328 + <rename/>
  3329 + <length>-2</length>
  3330 + <precision>-2</precision>
  3331 + </field> <field> <name>fcno16</name>
  3332 + <rename/>
  3333 + <length>-2</length>
  3334 + <precision>-2</precision>
  3335 + </field> <field> <name>fcno17</name>
  3336 + <rename/>
  3337 + <length>-2</length>
  3338 + <precision>-2</precision>
  3339 + </field> <field> <name>fcno18</name>
  3340 + <rename/>
  3341 + <length>-2</length>
  3342 + <precision>-2</precision>
  3343 + </field> <field> <name>fcno19</name>
  3344 + <rename/>
  3345 + <length>-2</length>
  3346 + <precision>-2</precision>
  3347 + </field> <field> <name>fcno20</name>
  3348 + <rename/>
  3349 + <length>-2</length>
  3350 + <precision>-2</precision>
  3351 + </field> <field> <name>fcno21</name>
  3352 + <rename/>
  3353 + <length>-2</length>
  3354 + <precision>-2</precision>
  3355 + </field> <field> <name>fcno22</name>
  3356 + <rename/>
  3357 + <length>-2</length>
  3358 + <precision>-2</precision>
  3359 + </field> <field> <name>fcno23</name>
  3360 + <rename/>
  3361 + <length>-2</length>
  3362 + <precision>-2</precision>
  3363 + </field> <field> <name>fcno24</name>
  3364 + <rename/>
  3365 + <length>-2</length>
  3366 + <precision>-2</precision>
  3367 + </field> <field> <name>fcno25</name>
  3368 + <rename/>
  3369 + <length>-2</length>
  3370 + <precision>-2</precision>
  3371 + </field> <field> <name>fcno26</name>
  3372 + <rename/>
  3373 + <length>-2</length>
  3374 + <precision>-2</precision>
  3375 + </field> <field> <name>fcno27</name>
  3376 + <rename/>
  3377 + <length>-2</length>
  3378 + <precision>-2</precision>
  3379 + </field> <field> <name>fcno28</name>
  3380 + <rename/>
  3381 + <length>-2</length>
  3382 + <precision>-2</precision>
  3383 + </field> <field> <name>fcno29</name>
  3384 + <rename/>
  3385 + <length>-2</length>
  3386 + <precision>-2</precision>
  3387 + </field> <field> <name>fcno30</name>
  3388 + <rename/>
  3389 + <length>-2</length>
  3390 + <precision>-2</precision>
  3391 + </field> <field> <name>fcno31</name>
  3392 + <rename/>
  3393 + <length>-2</length>
  3394 + <precision>-2</precision>
  3395 + </field> <field> <name>fcno32</name>
  3396 + <rename/>
  3397 + <length>-2</length>
  3398 + <precision>-2</precision>
  3399 + </field> <field> <name>fcno33</name>
  3400 + <rename/>
  3401 + <length>-2</length>
  3402 + <precision>-2</precision>
  3403 + </field> <field> <name>fcno34</name>
  3404 + <rename/>
  3405 + <length>-2</length>
  3406 + <precision>-2</precision>
  3407 + </field> <field> <name>fcno35</name>
  3408 + <rename/>
  3409 + <length>-2</length>
  3410 + <precision>-2</precision>
  3411 + </field> <field> <name>fcno36</name>
  3412 + <rename/>
  3413 + <length>-2</length>
  3414 + <precision>-2</precision>
  3415 + </field> <field> <name>fcno37</name>
  3416 + <rename/>
  3417 + <length>-2</length>
  3418 + <precision>-2</precision>
  3419 + </field> <field> <name>fcno38</name>
  3420 + <rename/>
  3421 + <length>-2</length>
  3422 + <precision>-2</precision>
  3423 + </field> <field> <name>fcno39</name>
  3424 + <rename/>
  3425 + <length>-2</length>
  3426 + <precision>-2</precision>
  3427 + </field> <field> <name>fcno40</name>
  3428 + <rename/>
  3429 + <length>-2</length>
  3430 + <precision>-2</precision>
  3431 + </field> <field> <name>fcno41</name>
  3432 + <rename/>
  3433 + <length>-2</length>
  3434 + <precision>-2</precision>
  3435 + </field> <field> <name>fcno42</name>
  3436 + <rename/>
  3437 + <length>-2</length>
  3438 + <precision>-2</precision>
  3439 + </field> <field> <name>fcno43</name>
  3440 + <rename/>
  3441 + <length>-2</length>
  3442 + <precision>-2</precision>
  3443 + </field> <field> <name>fcno44</name>
  3444 + <rename/>
  3445 + <length>-2</length>
  3446 + <precision>-2</precision>
  3447 + </field> <field> <name>fcno45</name>
  3448 + <rename/>
  3449 + <length>-2</length>
  3450 + <precision>-2</precision>
  3451 + </field> <field> <name>fcno46</name>
  3452 + <rename/>
  3453 + <length>-2</length>
  3454 + <precision>-2</precision>
  3455 + </field> <field> <name>fcno47</name>
  3456 + <rename/>
  3457 + <length>-2</length>
  3458 + <precision>-2</precision>
  3459 + </field> <field> <name>fcno48</name>
  3460 + <rename/>
  3461 + <length>-2</length>
  3462 + <precision>-2</precision>
  3463 + </field> <field> <name>fcno49</name>
  3464 + <rename/>
  3465 + <length>-2</length>
  3466 + <precision>-2</precision>
  3467 + </field> <field> <name>fcno50</name>
  3468 + <rename/>
  3469 + <length>-2</length>
  3470 + <precision>-2</precision>
  3471 + </field> <field> <name>fcno51</name>
  3472 + <rename/>
  3473 + <length>-2</length>
  3474 + <precision>-2</precision>
  3475 + </field> <field> <name>fcno52</name>
  3476 + <rename/>
  3477 + <length>-2</length>
  3478 + <precision>-2</precision>
  3479 + </field> <field> <name>fcno53</name>
  3480 + <rename/>
  3481 + <length>-2</length>
  3482 + <precision>-2</precision>
  3483 + </field> <field> <name>fcno54</name>
  3484 + <rename/>
  3485 + <length>-2</length>
  3486 + <precision>-2</precision>
  3487 + </field> <field> <name>fcno55</name>
  3488 + <rename/>
  3489 + <length>-2</length>
  3490 + <precision>-2</precision>
  3491 + </field> <field> <name>fcno56</name>
  3492 + <rename/>
  3493 + <length>-2</length>
  3494 + <precision>-2</precision>
  3495 + </field> <field> <name>fcno57</name>
  3496 + <rename/>
  3497 + <length>-2</length>
  3498 + <precision>-2</precision>
  3499 + </field> <field> <name>fcno58</name>
  3500 + <rename/>
  3501 + <length>-2</length>
  3502 + <precision>-2</precision>
  3503 + </field> <field> <name>fcno59</name>
  3504 + <rename/>
  3505 + <length>-2</length>
  3506 + <precision>-2</precision>
  3507 + </field> <field> <name>fcno60</name>
  3508 + <rename/>
  3509 + <length>-2</length>
  3510 + <precision>-2</precision>
  3511 + </field> <field> <name>fcno61</name>
  3512 + <rename/>
  3513 + <length>-2</length>
  3514 + <precision>-2</precision>
  3515 + </field> <field> <name>fcno62</name>
  3516 + <rename/>
  3517 + <length>-2</length>
  3518 + <precision>-2</precision>
  3519 + </field> <field> <name>fcno63</name>
  3520 + <rename/>
  3521 + <length>-2</length>
  3522 + <precision>-2</precision>
  3523 + </field> <field> <name>fcno64</name>
  3524 + <rename/>
  3525 + <length>-2</length>
  3526 + <precision>-2</precision>
  3527 + </field> <field> <name>fcno65</name>
  3528 + <rename/>
  3529 + <length>-2</length>
  3530 + <precision>-2</precision>
  3531 + </field> <field> <name>fcno66</name>
  3532 + <rename/>
  3533 + <length>-2</length>
  3534 + <precision>-2</precision>
  3535 + </field> <field> <name>fcno67</name>
  3536 + <rename/>
  3537 + <length>-2</length>
  3538 + <precision>-2</precision>
  3539 + </field> <field> <name>fcno68</name>
  3540 + <rename/>
  3541 + <length>-2</length>
  3542 + <precision>-2</precision>
  3543 + </field> <field> <name>fcno69</name>
  3544 + <rename/>
  3545 + <length>-2</length>
  3546 + <precision>-2</precision>
  3547 + </field> <field> <name>fcno70</name>
  3548 + <rename/>
  3549 + <length>-2</length>
  3550 + <precision>-2</precision>
  3551 + </field> <field> <name>fcno71</name>
  3552 + <rename/>
  3553 + <length>-2</length>
  3554 + <precision>-2</precision>
  3555 + </field> <field> <name>fcno72</name>
  3556 + <rename/>
  3557 + <length>-2</length>
  3558 + <precision>-2</precision>
  3559 + </field> <field> <name>fcno73</name>
  3560 + <rename/>
  3561 + <length>-2</length>
  3562 + <precision>-2</precision>
  3563 + </field> <field> <name>fcno74</name>
  3564 + <rename/>
  3565 + <length>-2</length>
  3566 + <precision>-2</precision>
  3567 + </field> <field> <name>fcno75</name>
  3568 + <rename/>
  3569 + <length>-2</length>
  3570 + <precision>-2</precision>
  3571 + </field> <field> <name>fcno76</name>
  3572 + <rename/>
  3573 + <length>-2</length>
  3574 + <precision>-2</precision>
  3575 + </field> <field> <name>fcno77</name>
  3576 + <rename/>
  3577 + <length>-2</length>
  3578 + <precision>-2</precision>
  3579 + </field> <field> <name>fcno78</name>
  3580 + <rename/>
  3581 + <length>-2</length>
  3582 + <precision>-2</precision>
  3583 + </field> <field> <name>fcno79</name>
  3584 + <rename/>
  3585 + <length>-2</length>
  3586 + <precision>-2</precision>
  3587 + </field> <field> <name>fcno80</name>
  3588 + <rename/>
  3589 + <length>-2</length>
  3590 + <precision>-2</precision>
  3591 + </field> <field> <name>fcno81</name>
  3592 + <rename/>
  3593 + <length>-2</length>
  3594 + <precision>-2</precision>
  3595 + </field> <field> <name>fcno82</name>
  3596 + <rename/>
  3597 + <length>-2</length>
  3598 + <precision>-2</precision>
  3599 + </field> <field> <name>fcno83</name>
  3600 + <rename/>
  3601 + <length>-2</length>
  3602 + <precision>-2</precision>
  3603 + </field> <field> <name>fcno84</name>
  3604 + <rename/>
  3605 + <length>-2</length>
  3606 + <precision>-2</precision>
  3607 + </field> <field> <name>fcno85</name>
  3608 + <rename/>
  3609 + <length>-2</length>
  3610 + <precision>-2</precision>
  3611 + </field> <field> <name>fcno86</name>
  3612 + <rename/>
  3613 + <length>-2</length>
  3614 + <precision>-2</precision>
  3615 + </field> <field> <name>fcno87</name>
  3616 + <rename/>
  3617 + <length>-2</length>
  3618 + <precision>-2</precision>
  3619 + </field> <field> <name>fcno88</name>
  3620 + <rename/>
  3621 + <length>-2</length>
  3622 + <precision>-2</precision>
  3623 + </field> <field> <name>fcno89</name>
  3624 + <rename/>
  3625 + <length>-2</length>
  3626 + <precision>-2</precision>
  3627 + </field> <field> <name>fcno90</name>
  3628 + <rename/>
  3629 + <length>-2</length>
  3630 + <precision>-2</precision>
  3631 + </field> <field> <name>fcno91</name>
  3632 + <rename/>
  3633 + <length>-2</length>
  3634 + <precision>-2</precision>
  3635 + </field> <field> <name>fcno92</name>
  3636 + <rename/>
  3637 + <length>-2</length>
  3638 + <precision>-2</precision>
  3639 + </field> <field> <name>fcno93</name>
  3640 + <rename/>
  3641 + <length>-2</length>
  3642 + <precision>-2</precision>
  3643 + </field> <field> <name>fcno94</name>
  3644 + <rename/>
  3645 + <length>-2</length>
  3646 + <precision>-2</precision>
  3647 + </field> <field> <name>fcno95</name>
  3648 + <rename/>
  3649 + <length>-2</length>
  3650 + <precision>-2</precision>
  3651 + </field> <field> <name>fcno96</name>
  3652 + <rename/>
  3653 + <length>-2</length>
  3654 + <precision>-2</precision>
  3655 + </field> <field> <name>fcno97</name>
  3656 + <rename/>
  3657 + <length>-2</length>
  3658 + <precision>-2</precision>
  3659 + </field> <field> <name>fcno98</name>
  3660 + <rename/>
  3661 + <length>-2</length>
  3662 + <precision>-2</precision>
  3663 + </field> <field> <name>fcno99</name>
  3664 + <rename/>
  3665 + <length>-2</length>
  3666 + <precision>-2</precision>
  3667 + </field> <field> <name>fcno100</name>
  3668 + <rename/>
  3669 + <length>-2</length>
  3670 + <precision>-2</precision>
  3671 + </field> <field> <name>fcno101</name>
  3672 + <rename/>
  3673 + <length>-2</length>
  3674 + <precision>-2</precision>
  3675 + </field> <field> <name>fcno102</name>
  3676 + <rename/>
  3677 + <length>-2</length>
  3678 + <precision>-2</precision>
  3679 + </field> <field> <name>fcno103</name>
  3680 + <rename/>
  3681 + <length>-2</length>
  3682 + <precision>-2</precision>
  3683 + </field> <field> <name>fcno104</name>
  3684 + <rename/>
  3685 + <length>-2</length>
  3686 + <precision>-2</precision>
  3687 + </field> <field> <name>fcno105</name>
  3688 + <rename/>
  3689 + <length>-2</length>
  3690 + <precision>-2</precision>
  3691 + </field> <field> <name>fcno106</name>
  3692 + <rename/>
  3693 + <length>-2</length>
  3694 + <precision>-2</precision>
  3695 + </field> <field> <name>fcno107</name>
  3696 + <rename/>
  3697 + <length>-2</length>
  3698 + <precision>-2</precision>
  3699 + </field> <field> <name>fcno108</name>
  3700 + <rename/>
  3701 + <length>-2</length>
  3702 + <precision>-2</precision>
  3703 + </field> <field> <name>fcno109</name>
  3704 + <rename/>
  3705 + <length>-2</length>
  3706 + <precision>-2</precision>
  3707 + </field> <field> <name>fcno110</name>
  3708 + <rename/>
  3709 + <length>-2</length>
  3710 + <precision>-2</precision>
  3711 + </field> <field> <name>fcno111</name>
  3712 + <rename/>
  3713 + <length>-2</length>
  3714 + <precision>-2</precision>
  3715 + </field> <field> <name>fcno112</name>
  3716 + <rename/>
  3717 + <length>-2</length>
  3718 + <precision>-2</precision>
  3719 + </field> <field> <name>fcno113</name>
  3720 + <rename/>
  3721 + <length>-2</length>
  3722 + <precision>-2</precision>
  3723 + </field> <field> <name>fcno114</name>
  3724 + <rename/>
  3725 + <length>-2</length>
  3726 + <precision>-2</precision>
  3727 + </field> <field> <name>fcno115</name>
  3728 + <rename/>
  3729 + <length>-2</length>
  3730 + <precision>-2</precision>
  3731 + </field> <field> <name>fcno116</name>
  3732 + <rename/>
  3733 + <length>-2</length>
  3734 + <precision>-2</precision>
  3735 + </field> <field> <name>fcno117</name>
  3736 + <rename/>
  3737 + <length>-2</length>
  3738 + <precision>-2</precision>
  3739 + </field> <field> <name>fcno118</name>
  3740 + <rename/>
  3741 + <length>-2</length>
  3742 + <precision>-2</precision>
  3743 + </field> <field> <name>fcno119</name>
  3744 + <rename/>
  3745 + <length>-2</length>
  3746 + <precision>-2</precision>
  3747 + </field> <field> <name>fcno120</name>
  3748 + <rename/>
  3749 + <length>-2</length>
  3750 + <precision>-2</precision>
  3751 + </field> <field> <name>fcno121</name>
  3752 + <rename/>
  3753 + <length>-2</length>
  3754 + <precision>-2</precision>
  3755 + </field> <field> <name>fcno122</name>
  3756 + <rename/>
  3757 + <length>-2</length>
  3758 + <precision>-2</precision>
  3759 + </field> <field> <name>fcno123</name>
  3760 + <rename/>
  3761 + <length>-2</length>
  3762 + <precision>-2</precision>
  3763 + </field> <field> <name>fcno124</name>
  3764 + <rename/>
  3765 + <length>-2</length>
  3766 + <precision>-2</precision>
  3767 + </field> <field> <name>fcno125</name>
  3768 + <rename/>
  3769 + <length>-2</length>
  3770 + <precision>-2</precision>
  3771 + </field> <field> <name>fcno126</name>
  3772 + <rename/>
  3773 + <length>-2</length>
  3774 + <precision>-2</precision>
  3775 + </field> <field> <name>fcno127</name>
  3776 + <rename/>
  3777 + <length>-2</length>
  3778 + <precision>-2</precision>
  3779 + </field> <field> <name>fcno128</name>
  3780 + <rename/>
  3781 + <length>-2</length>
  3782 + <precision>-2</precision>
  3783 + </field> <field> <name>fcno129</name>
  3784 + <rename/>
  3785 + <length>-2</length>
  3786 + <precision>-2</precision>
  3787 + </field> <field> <name>fcno130</name>
  3788 + <rename/>
  3789 + <length>-2</length>
  3790 + <precision>-2</precision>
  3791 + </field> <field> <name>fcno131</name>
  3792 + <rename/>
  3793 + <length>-2</length>
  3794 + <precision>-2</precision>
  3795 + </field> <field> <name>fcno132</name>
  3796 + <rename/>
  3797 + <length>-2</length>
  3798 + <precision>-2</precision>
  3799 + </field> <field> <name>fcno133</name>
  3800 + <rename/>
  3801 + <length>-2</length>
  3802 + <precision>-2</precision>
  3803 + </field> <field> <name>fcno134</name>
  3804 + <rename/>
  3805 + <length>-2</length>
  3806 + <precision>-2</precision>
  3807 + </field> <field> <name>fcno135</name>
  3808 + <rename/>
  3809 + <length>-2</length>
  3810 + <precision>-2</precision>
  3811 + </field> <field> <name>fcno136</name>
  3812 + <rename/>
  3813 + <length>-2</length>
  3814 + <precision>-2</precision>
  3815 + </field> <field> <name>fcno137</name>
  3816 + <rename/>
  3817 + <length>-2</length>
  3818 + <precision>-2</precision>
  3819 + </field> <field> <name>fcno138</name>
  3820 + <rename/>
  3821 + <length>-2</length>
  3822 + <precision>-2</precision>
  3823 + </field> <field> <name>fcno139</name>
  3824 + <rename/>
  3825 + <length>-2</length>
  3826 + <precision>-2</precision>
  3827 + </field> <field> <name>fcno140</name>
  3828 + <rename/>
  3829 + <length>-2</length>
  3830 + <precision>-2</precision>
  3831 + </field> <field> <name>fcno141</name>
  3832 + <rename/>
  3833 + <length>-2</length>
  3834 + <precision>-2</precision>
  3835 + </field> <field> <name>fcno142</name>
  3836 + <rename/>
  3837 + <length>-2</length>
  3838 + <precision>-2</precision>
  3839 + </field> <field> <name>fcno143</name>
  3840 + <rename/>
  3841 + <length>-2</length>
  3842 + <precision>-2</precision>
  3843 + </field> <field> <name>fcno144</name>
  3844 + <rename/>
  3845 + <length>-2</length>
  3846 + <precision>-2</precision>
  3847 + </field> <field> <name>fcno145</name>
  3848 + <rename/>
  3849 + <length>-2</length>
  3850 + <precision>-2</precision>
  3851 + </field> <field> <name>fcno146</name>
  3852 + <rename/>
  3853 + <length>-2</length>
  3854 + <precision>-2</precision>
  3855 + </field> <field> <name>fcno147</name>
  3856 + <rename/>
  3857 + <length>-2</length>
  3858 + <precision>-2</precision>
  3859 + </field> <field> <name>fcno148</name>
  3860 + <rename/>
  3861 + <length>-2</length>
  3862 + <precision>-2</precision>
  3863 + </field> <field> <name>fcno149</name>
  3864 + <rename/>
  3865 + <length>-2</length>
  3866 + <precision>-2</precision>
  3867 + </field> <field> <name>fcno150</name>
  3868 + <rename/>
  3869 + <length>-2</length>
  3870 + <precision>-2</precision>
  3871 + </field> <select_unspecified>N</select_unspecified>
  3872 + </fields> <cluster_schema/>
  3873 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3874 + <xloc>691</xloc>
  3875 + <yloc>361</yloc>
  3876 + <draw>Y</draw>
  3877 + </GUI>
  3878 + </step>
  3879 +
  3880 + <step>
  3881 + <name>&#x5408;&#x5e76;&#x5185;&#x5bb9;</name>
  3882 + <type>ScriptValueMod</type>
  3883 + <description/>
  3884 + <distribute>Y</distribute>
  3885 + <custom_distribution/>
  3886 + <copies>1</copies>
  3887 + <partitioning>
  3888 + <method>none</method>
  3889 + <schema_name/>
  3890 + </partitioning>
  3891 + <compatible>N</compatible>
  3892 + <optimizationLevel>9</optimizationLevel>
  3893 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  3894 + <jsScript_name>Script 1</jsScript_name>
  3895 + <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_code &#x7c;&#x7c; &#x27;null&#x27;&#x29;&#x3b;&#xa;all_content_array.push&#x28;zdz_code &#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>
  3896 + </jsScript> </jsScripts> <fields> <field> <name>all_content</name>
  3897 + <rename>all_content</rename>
2956 <type>String</type> 3898 <type>String</type>
2957 - <format/>  
2958 - <currency/>  
2959 - <decimal/>  
2960 - <group/>  
2961 - <nullif/>  
2962 - <trim_type>none</trim_type>  
2963 <length>-1</length> 3899 <length>-1</length>
2964 <precision>-1</precision> 3900 <precision>-1</precision>
2965 - </field>  
2966 - </fields>  
2967 - <cluster_schema/> 3901 + <replace>N</replace>
  3902 + </field> </fields> <cluster_schema/>
2968 <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> 3903 <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
2969 - <xloc>880</xloc>  
2970 - <yloc>365</yloc> 3904 + <xloc>441</xloc>
  3905 + <yloc>84</yloc>
2971 <draw>Y</draw> 3906 <draw>Y</draw>
2972 </GUI> 3907 </GUI>
2973 </step> 3908 </step>
src/main/resources/static/pages/forms/mould/scheduleDaily.xls
No preview for this file type
src/main/resources/static/pages/report/inoutstation.html
@@ -96,7 +96,7 @@ @@ -96,7 +96,7 @@
96 <td width="23%">班车计划(实际)发车时刻</td> 96 <td width="23%">班车计划(实际)发车时刻</td>
97 <td width="22%">车牌号码</td> 97 <td width="22%">车牌号码</td>
98 <td width="15%">行驶里程</td> 98 <td width="15%">行驶里程</td>
99 - <td width="15%">路牌</td> 99 + <td width="15%">路牌</td>
100 </tr> 100 </tr>
101 </thead> 101 </thead>
102 <tbody class="ludan_ll_2"> 102 <tbody class="ludan_ll_2">
src/main/resources/static/pages/report/inoutstation/inoutstation.html 0 → 100644
  1 +<style type="text/css">
  2 + .table-bordered {
  3 + border: 1px solid; }
  4 + .table-bordered > thead > tr > th,
  5 + .table-bordered > thead > tr > td,
  6 + .table-bordered > tbody > tr > th,
  7 + .table-bordered > tbody > tr > td,
  8 + .table-bordered > tfoot > tr > th,
  9 + .table-bordered > tfoot > tr > td {
  10 + border: 1px solid; }
  11 + .table-bordered > thead > tr > th,
  12 + .table-bordered > thead > tr > td {
  13 + border-bottom-width: 2px; }
  14 +
  15 + .table > tbody + tbody {
  16 + border-top: 1px solid; }
  17 +
  18 + #forms tr> td >label{
  19 + word-break: keep-all;white-space:nowrap;
  20 + }
  21 +</style>
  22 +
  23 +<div class="page-head">
  24 + <div class="page-title">
  25 + <h1>站点停靠时间记录</h1>
  26 + </div>
  27 +</div>
  28 +
  29 +<div class="row">
  30 + <div class="col-md-12">
  31 + <div class="portlet light porttlet-fit bordered">
  32 + <div class="portlet-title">
  33 + <form class="form-inline" action="">
  34 + <div>
  35 + <!-- <div style="display: inline-block; margin-left: 33px;"
  36 + id="gsdmDiv">
  37 + <span class="item-label" style="width: 80px;">公司: </span> <select
  38 + class="form-control" name="company" id="gsdm"
  39 + style="width: 180px;"></select>
  40 + </div>
  41 + <div style="display: inline-block; margin-left: 24px;"
  42 + id="fgsdmDiv">
  43 + <span class="item-label" style="width: 80px;">分公司: </span> <select
  44 + class="form-control" name="subCompany" id="fgsdm"
  45 + style="width: 180px;"></select>
  46 + </div> -->
  47 + <div style="display: inline-block; margin-left: 15px;">
  48 + <span class="item-label" style="width: 80px;">线路: </span> <select
  49 + class="form-control sreach-zd" name="line" id="line"
  50 + style="width: 180px;"></select>
  51 + </div>
  52 + <div style="display: inline-block; margin-left: 5px;">
  53 + <span class="item-label" style="width: 80px;">时间: </span> <input
  54 + class="form-control" type="text" id="date" style="width: 180px;" />
  55 + </div>
  56 + <div style="display: inline-block; margin-left: 5px;">
  57 + <span class="item-label" style="width: 80px;">站点: </span> <select
  58 + class="form-control" id="zdlx" class="sreach-zd">
  59 + <option value="">请选择</option>
  60 + <option value="0">上行</option>
  61 + <option value="1">下行</option>
  62 + </select>
  63 + </div>
  64 + <div style="display: inline-block; margin-left: 5px;">
  65 + <span class="item-label" style="width: 80px;">赖站时间(秒): </span> <input
  66 + class="form-control" type="text" id="lzsj"
  67 + onkeyup="this.value=this.value.replace(/[^(\d||/.)]/g,'').replace('.','$#$').replace(/\./g,'').replace('$#$','.')"
  68 + onafterpaste="this.value=this.value.replace(/[^(\d||/.)]/g,'').replace('.','$#$').replace(/\./g,'').replace('$#$','.')"
  69 + style="width: 80px;" />
  70 + </div>
  71 + <div style="display: inline-block; margin-left: 5px;">
  72 + <input class="btn btn-default" type="button" id="query" value="查询" />
  73 +<!-- <input class="btn btn-default" type="button" id="export" value="导出" /> -->
  74 + </div>
  75 + </div>
  76 +
  77 + </form>
  78 + </div>
  79 + <div class="portlet-body" >
  80 + <div class="table-container" style="margin-top: 10px;overflow:auto;min-width: 506px;height: 400px">
  81 + <table class="table table-bordered table-hover table-checkable" id="forms">
  82 + <tbody class="ludan_ll_1">
  83 +
  84 + </tbody>
  85 + </table>
  86 + </div>
  87 + </div>
  88 + </div>
  89 + </div>
  90 +</div>
  91 +
  92 +<script>
  93 + $(function(){
  94 +
  95 +
  96 + // 关闭左侧栏
  97 + if (!$('body').hasClass('page-sidebar-closed'))
  98 + $('.menu-toggler.sidebar-toggler').click();
  99 +
  100 + $("#date").datetimepicker({
  101 + format : 'YYYY-MM-DD',
  102 + locale : 'zh-cn'
  103 + });
  104 +
  105 +
  106 +
  107 + $.get('/basic/lineCode2Name',function(result){
  108 + var data=[];
  109 +
  110 + for(var code in result){
  111 + data.push({id: code, text: result[code]});
  112 + }
  113 + initPinYinSelect2('#line',data,'');
  114 +
  115 + })
  116 + /* var fage=false;
  117 + var obj = [];
  118 + var xlList;
  119 + $.get('/report/lineList',function(result){
  120 + xlList=result;
  121 +
  122 + $.get('/user/companyData', function(result){
  123 + obj = result;
  124 + console.log(obj);
  125 + var options = '';
  126 + for(var i = 0; i < obj.length; i++){
  127 + options += '<option value="'+obj[i].companyCode+'">'+obj[i].companyName+'</option>';
  128 + }
  129 +
  130 + if(obj.length ==0){
  131 + $("#gsdmDiv").css('display','none');
  132 + }else if(obj.length ==1){
  133 + $("#gsdmDiv").css('display','none');
  134 + if(obj[0].children.length == 1 || obj[0].children.length ==0)
  135 + $('#fgsdmDiv').css('display','none');
  136 + }
  137 + $('#gsdm').html(options);
  138 +
  139 + updateCompany();
  140 + });
  141 + });
  142 +
  143 + $("#gsdm").on("change",updateCompany);
  144 + function updateCompany(){
  145 + var company = $('#gsdm').val();
  146 + var options = '';
  147 + for(var i = 0; i < obj.length; i++){
  148 + if(obj[i].companyCode == company){
  149 + var children = obj[i].children;
  150 + for(var j = 0; j < children.length; j++){
  151 + options += '<option value="'+children[j].code+'">'+children[j].name+'</option>';
  152 + }
  153 + }
  154 + }
  155 + $('#fgsdm').html(options);
  156 + initXl();
  157 + initCl();
  158 + }
  159 +
  160 +
  161 +
  162 +
  163 + $("#fgsdm").on("change",initXl);
  164 + function initXl(){
  165 + var data=[];
  166 + if(fage){
  167 + $("#line").select2("destroy").html('');
  168 + }
  169 + var fgs=$('#fgsdm').val();
  170 + var gs=$('#gsdm').val();
  171 + for(var i=0;i<xlList.length;i++){
  172 + if(gs!=""){
  173 + if(fgs!=""){
  174 + if(xlList[i]["fgsbm"]==fgs && xlList[i]["gsbm"]==gs){
  175 + data.push({id: xlList[i]["xlbm"], text: xlList[i]["xlname"]});
  176 + }
  177 + }else{
  178 + if(xlList[i]["gsbm"]==gs){
  179 + data.push({id: xlList[i]["xlbm"], text: xlList[i]["xlname"]});
  180 + }
  181 + }
  182 + }
  183 + }
  184 + initPinYinSelect2('#line',data,'');
  185 + fage=true;
  186 + }
  187 + */
  188 +
  189 + $("#query").on("click",function(){
  190 + var line = $("#line").val();
  191 + var date = $("#date").val();
  192 + var zdlx= $("#zdlx").val();
  193 + var lzsj =$("#lzsj").val();
  194 + if( line=="" || line==null){
  195 + layer.msg("请选择线路");
  196 + }else if(date ==null || date==""){
  197 + layer.msg("请选择时间");
  198 + }else if(zdlx=="" || zdlx==null){
  199 + layer.msg("请选择方向");
  200 + }else{
  201 + $get('/report/queryStrinon',{line:line,zd:zdlx},function(result){
  202 + $get('/report/queryInOutStrtion',{line:line,date:date,zd:zdlx,lzsj:lzsj},function(result2){
  203 + console.log(result2);
  204 + /* getTime(result); */
  205 + var ludan_ll_1 = template('ludan_ll_1',{list:result2,lists:result});
  206 + // 把渲染好的模版html文本追加到表格中
  207 + $('#forms .ludan_ll_1').html(ludan_ll_1);
  208 + });
  209 + });
  210 + }
  211 + });
  212 +
  213 + var params = new Array();
  214 + var jName = '';
  215 +// $("#print").click(function(){
  216 +// $("#printArea").printArea();
  217 +// });
  218 +
  219 +// $("#exportMore").on("click",function(){
  220 +// return;
  221 +// $post('/realSchedule/exportWaybillMore',{date:date},function(result){
  222 +// window.open("/downloadFile/download?fileName="+jName);
  223 +// });
  224 +// });
  225 +
  226 + function getTime(list){
  227 + $.each(list, function(i, obj) {
  228 + if(obj.zdsj != null && obj.zdsjActual != null ){
  229 + var zdsjActual = (obj.zdsjActual).split(":");
  230 + var zdsj = (obj.zdsj).split(":");
  231 + if(zdsjActual[0]*60+Number(zdsjActual[1]) > zdsj[0]*60+Number(zdsj[1])){
  232 + obj["slow"] = (zdsjActual[0]*60+Number(zdsjActual[1])) - (zdsj[0]*60+Number(zdsj[1]));
  233 + }
  234 + else if(zdsjActual[0]*60+Number(zdsjActual[1]) < zdsj[0]*60+Number(zdsj[1])){
  235 + obj["fast"] = (zdsj[0]*60+Number(zdsj[1])) - (zdsjActual[0]*60+Number(zdsjActual[1]));
  236 + }
  237 + }
  238 + });
  239 + }
  240 +
  241 +
  242 +
  243 +
  244 +
  245 + $("#export").on("click",function(){
  246 + var rq=$("#date").val();
  247 + var line=$("#line").val();
  248 + var nbbm=$("#nbbm").val();
  249 + var fcsj=$("#fcsj_xx").val();
  250 + var ddsj=$("#ddsj_xx").val();
  251 + if(fcsj==""){
  252 + layer.msg("没数据");
  253 + }else{
  254 + $get('/report/exportQueryListZdxx',{clzbh:nbbm,date:rq,line:line,fcsj:fcsj,ddsj:ddsj},function(result){
  255 + window.open("/downloadFile/download?fileName=班次到离站");
  256 + });
  257 + }
  258 +
  259 + });
  260 +
  261 + });
  262 +
  263 +</script>
  264 +<script type="text/html" id="ludan_ll_1">
  265 + {{each list as obj i}}
  266 +
  267 + <tr>
  268 + <td>{{obj.bc}}</td>
  269 + <td><label>{{obj.nbbm}}</label></td>
  270 + {{each lists as o j}}
  271 + {{if i==0}}
  272 + <td>
  273 + <label>{{obj[(o.stationCode)+'in']}}
  274 + ({{obj[(o.stationCode)+'out']}})
  275 + </label>
  276 + </td>
  277 + {{else}}
  278 + <td {{if obj[o.stationCode] =='y'}}style="color: red"{{/if}}>
  279 + {{if obj[(o.stationCode)+'in']!=''}}
  280 + <label> I {{obj[(o.stationCode)+'in']}}</label>
  281 + {{/if}}
  282 + <br/>
  283 + {{if obj[(o.stationCode)+'out']!=''}}
  284 + <label> O {{obj[(o.stationCode)+'out']}}</label>
  285 + {{/if}}
  286 + </td>
  287 + {{/if}}
  288 + {{/each}}
  289 +
  290 + </tr>
  291 + {{/each}}
  292 + {{if list.length == 0}}
  293 + <tr>
  294 + <td colspan="3"><h6 class="muted">没有找到相关数据</h6></td>
  295 + </tr>
  296 + {{/if}}
  297 +</script>
src/main/resources/static/pages/scheduleApp/module/core/schedulePlanManage/report/ext/edit.html
@@ -119,7 +119,7 @@ @@ -119,7 +119,7 @@
119 icname="id" 119 icname="id"
120 dsparams="{{ {type: 'local', param: 'ry' } | json }}" 120 dsparams="{{ {type: 'local', param: 'ry' } | json }}"
121 iterobjname="item" 121 iterobjname="item"
122 - iterobjexp="item.personnelName" 122 + iterobjexp="item.personnelName + '(' + item.jobCode + ')'"
123 searchph="请输拼音..." 123 searchph="请输拼音..."
124 searchexp="this.personnelName" 124 searchexp="this.personnelName"
125 > 125 >
@@ -137,7 +137,7 @@ @@ -137,7 +137,7 @@
137 icname="id" 137 icname="id"
138 dsparams="{{ {type: 'local', param: 'ry' } | json }}" 138 dsparams="{{ {type: 'local', param: 'ry' } | json }}"
139 iterobjname="item" 139 iterobjname="item"
140 - iterobjexp="item.personnelName" 140 + iterobjexp="item.personnelName + '(' + item.jobCode + ')'"
141 searchph="请输拼音..." 141 searchph="请输拼音..."
142 searchexp="this.personnelName" 142 searchexp="this.personnelName"
143 > 143 >
@@ -155,7 +155,7 @@ @@ -155,7 +155,7 @@
155 icname="id" 155 icname="id"
156 dsparams="{{ {type: 'local', param: 'ry' } | json }}" 156 dsparams="{{ {type: 'local', param: 'ry' } | json }}"
157 iterobjname="item" 157 iterobjname="item"
158 - iterobjexp="item.personnelName" 158 + iterobjexp="item.personnelName + '(' + item.jobCode + ')'"
159 searchph="请输拼音..." 159 searchph="请输拼音..."
160 searchexp="this.personnelName" 160 searchexp="this.personnelName"
161 > 161 >
@@ -173,7 +173,7 @@ @@ -173,7 +173,7 @@
173 icname="id" 173 icname="id"
174 dsparams="{{ {type: 'local', param: 'ry' } | json }}" 174 dsparams="{{ {type: 'local', param: 'ry' } | json }}"
175 iterobjname="item" 175 iterobjname="item"
176 - iterobjexp="item.personnelName" 176 + iterobjexp="item.personnelName + '(' + item.jobCode + ')'"
177 searchph="请输拼音..." 177 searchph="请输拼音..."
178 searchexp="this.personnelName" 178 searchexp="this.personnelName"
179 > 179 >
@@ -191,7 +191,7 @@ @@ -191,7 +191,7 @@
191 icname="id" 191 icname="id"
192 dsparams="{{ {type: 'local', param: 'ry' } | json }}" 192 dsparams="{{ {type: 'local', param: 'ry' } | json }}"
193 iterobjname="item" 193 iterobjname="item"
194 - iterobjexp="item.personnelName" 194 + iterobjexp="item.personnelName + '(' + item.jobCode + ')'"
195 searchph="请输拼音..." 195 searchph="请输拼音..."
196 searchexp="this.personnelName" 196 searchexp="this.personnelName"
197 > 197 >
src/main/resources/static/pages/scheduleApp/module/core/schedulePlanManage/report/ext/module.js
@@ -58,6 +58,26 @@ angular.module(&#39;ScheduleApp&#39;).factory( @@ -58,6 +58,26 @@ angular.module(&#39;ScheduleApp&#39;).factory(
58 58
59 angular.forEach(rs, function(obj) { 59 angular.forEach(rs, function(obj) {
60 console.log(rs.length); 60 console.log(rs.length);
  61 +
  62 + // 处理工号,带-的去掉
  63 + var temp = [];
  64 + if (obj.jGh) {
  65 + temp = obj.jGh.split("-");
  66 + if (temp.length > 1) {
  67 + obj.jGh = temp[1];
  68 + } else {
  69 + obj.jGh = temp[0];
  70 + }
  71 + }
  72 + if (obj.sGh) {
  73 + temp = obj.sGh.split("-");
  74 + if (temp.length > 1) {
  75 + obj.sGh = temp[1];
  76 + } else {
  77 + obj.sGh = temp[0];
  78 + }
  79 + }
  80 +
61 queryClass.save(obj, 81 queryClass.save(obj,
62 function(value) { 82 function(value) {
63 if (value.status == 'ERROR') { 83 if (value.status == 'ERROR') {
@@ -252,4 +272,3 @@ angular.module(&#39;ScheduleApp&#39;).controller( @@ -252,4 +272,3 @@ angular.module(&#39;ScheduleApp&#39;).controller(
252 ); 272 );
253 273
254 274
255 -  
src/main/resources/static/pages/scheduleApp/module/core/ttInfoManage/detailedit/edit-detail2.html
@@ -79,7 +79,7 @@ @@ -79,7 +79,7 @@
79 iterobjexp="item.aname" 79 iterobjexp="item.aname"
80 searchph="请输拼音..." 80 searchph="请输拼音..."
81 searchexp="this.aname" 81 searchexp="this.aname"
82 - required > 82 + >
83 </sa-Select5> 83 </sa-Select5>
84 </div> 84 </div>
85 </div> 85 </div>
@@ -96,7 +96,7 @@ @@ -96,7 +96,7 @@
96 iterobjexp="item.aname" 96 iterobjexp="item.aname"
97 searchph="请输拼音..." 97 searchph="请输拼音..."
98 searchexp="this.aname" 98 searchexp="this.aname"
99 - required > 99 + >
100 </sa-Select5> 100 </sa-Select5>
101 </div> 101 </div>
102 </div> 102 </div>
@@ -145,8 +145,7 @@ @@ -145,8 +145,7 @@
145 </div> 145 </div>
146 146
147 </div> 147 </div>
148 - <div class="form-group"  
149 - ng-if="ctrl.isZdModify == true"> 148 + <div class="form-group">
150 <label class="col-md-2 control-label">班次类型:</label> 149 <label class="col-md-2 control-label">班次类型:</label>
151 <div class="col-md-3"> 150 <div class="col-md-3">
152 <sa-Select5 name="bcType" 151 <sa-Select5 name="bcType"
src/main/resources/static/pages/scheduleApp/module/core/ttInfoManage/detailedit/timeTableDetailManage_old.js
@@ -587,29 +587,52 @@ angular.module(&#39;ScheduleApp&#39;).controller( @@ -587,29 +587,52 @@ angular.module(&#39;ScheduleApp&#39;).controller(
587 // 修正self.tt 587 // 修正self.tt
588 588
589 self.isZdModify = false; // 是否可以修改站点(如果不是同一圈的数据是不能修改站点的) 589 self.isZdModify = false; // 是否可以修改站点(如果不是同一圈的数据是不能修改站点的)
590 - var colIndexs_maps = {}; 590 + //var colIndexs_maps = {};
  591 + //var detailInfos = service.getEditInfo().detailInfos;
  592 + //for (var i = 0; i < detailInfos.length; i++) {
  593 + // for (var j = 0; j < detailInfos[i].length; j++) {
  594 + // if (detailInfos[i][j].sel == true) {
  595 + // colIndexs_maps[j] = j;
  596 + // }
  597 + // }
  598 + //}
  599 + //var colIndexs = [];
  600 + //for (var kk in colIndexs_maps) {
  601 + // colIndexs.push(kk);
  602 + //}
  603 + //if (colIndexs.length == 1) {
  604 + // self.isZdModify = true;
  605 + // var columnBcInfo = service.getEditInfo().columnBcInfo[colIndexs[0]];
  606 + //
  607 + // self.tt.xlDir = columnBcInfo.xldir;
  608 + // self.tt.bcType = columnBcInfo.bc_type;
  609 + // self.tt.qdzCode = columnBcInfo.qdzCode;
  610 + // self.tt.zdzCode = columnBcInfo.zdzCode;
  611 + //}
  612 + var selXldir = [];
591 var detailInfos = service.getEditInfo().detailInfos; 613 var detailInfos = service.getEditInfo().detailInfos;
592 for (var i = 0; i < detailInfos.length; i++) { 614 for (var i = 0; i < detailInfos.length; i++) {
593 for (var j = 0; j < detailInfos[i].length; j++) { 615 for (var j = 0; j < detailInfos[i].length; j++) {
594 if (detailInfos[i][j].sel == true) { 616 if (detailInfos[i][j].sel == true) {
595 - colIndexs_maps[j] = j; 617 + if (selXldir.length > 0) {
  618 + if (detailInfos[i][j].xldir != selXldir[0]) {
  619 + selXldir.push(detailInfos[i][j].xldir);
  620 + }
  621 + } else {
  622 + selXldir.push(detailInfos[i][j].xldir);
  623 + }
596 } 624 }
597 } 625 }
598 } 626 }
599 - var colIndexs = [];  
600 - for (var kk in colIndexs_maps) {  
601 - colIndexs.push(kk);  
602 - }  
603 - if (colIndexs.length == 1) { 627 + if (selXldir.length == 1) {
604 self.isZdModify = true; 628 self.isZdModify = true;
605 - var columnBcInfo = service.getEditInfo().columnBcInfo[colIndexs[0]];  
606 -  
607 - self.tt.xlDir = columnBcInfo.xldir;  
608 - self.tt.bcType = columnBcInfo.bc_type;  
609 - self.tt.qdzCode = columnBcInfo.qdzCode;  
610 - self.tt.zdzCode = columnBcInfo.zdzCode; 629 + self.tt.xlDir = selXldir[0];
  630 + } else {
  631 + self.isZdModify = false
611 } 632 }
612 633
  634 +
  635 +
613 // 提交方法 636 // 提交方法
614 self.submit = function() { 637 self.submit = function() {
615 //service.editInfos(self.tt).then(function() { 638 //service.editInfos(self.tt).then(function() {
src/test/resources/testdata/problem.properties
@@ -3,7 +3,7 @@ @@ -3,7 +3,7 @@
3 3=时刻表导入,可以选一个已经存在的时刻表导入,而不是excel文件 3 3=时刻表导入,可以选一个已经存在的时刻表导入,而不是excel文件
4 ##4=所有的删除,作废,都要有提示框操作 4 ##4=所有的删除,作废,都要有提示框操作
5 5=排班计划错误提示,如果选的排班日期之前没有排班,提示错误,排班结果有重复与时刻表不符合,显示错误 5 5=排班计划错误提示,如果选的排班日期之前没有排班,提示错误,排班结果有重复与时刻表不符合,显示错误
6 -6=调度执行日报,显示最近排班日期,修改操作强化 6 +##6=调度执行日报,显示最近排班日期,修改操作强化
7 7=警告功能,如时刻表选择相同的常规有效日,特殊有效日,车辆,人员配置重复等等 7 7=警告功能,如时刻表选择相同的常规有效日,特殊有效日,车辆,人员配置重复等等
8 8=时刻表明细编辑,颜色覆盖冲突 8 8=时刻表明细编辑,颜色覆盖冲突
9 9=下拉框貌似中文不能搜索 9 9=下拉框貌似中文不能搜索
@@ -13,15 +13,19 @@ @@ -13,15 +13,19 @@
13 13=导入数据功能,需要加用户名 13 13=导入数据功能,需要加用户名
14 14=路牌编号自动生成 14 14=路牌编号自动生成
15 15=时刻表导入的时候表头后面不需要加数字 15 15=时刻表导入的时候表头后面不需要加数字
16 -16=时间框中文 16 +##16=时间框中文
17 17=人员工号前公司编码自动加 17 17=人员工号前公司编码自动加
18 18=排班计划明细可以修改(修改到每个班次) 18 18=排班计划明细可以修改(修改到每个班次)
19 19=线路运营概览 19 19=线路运营概览
20 20=排班规则备注 20 20=排班规则备注
21 -21=时刻表,两点间空驶,算空驶 21 +##21=时刻表,两点间空驶,算空驶
22 22=搭班编码自动生成 22 22=搭班编码自动生成
23 23=时刻表明细修改终点站停驶(停止1个半小时以上) 23 23=时刻表明细修改终点站停驶(停止1个半小时以上)
24 ##24=线路标准里如果里程是0,用标准里程 24 ##24=线路标准里如果里程是0,用标准里程
25 -25=规则导出的日期格式修正 25 +##25=规则导出的日期格式修正
26 ##26=人员录入,工号规则前加 "{公司编码}-" 26 ##26=人员录入,工号规则前加 "{公司编码}-"
27 27
  28 +##27=调度执勤日报,换人后,工号前的-去掉
  29 +##28=时刻表导出,元数据ktr转换站名匹配有问题
  30 +##29=时刻编辑,超过70个班次,报错,改成150个班次
  31 +##30=时刻表公里数 三位数