Commit 04cc4d9d773cfcc3236f95dfe9119fa7e5cbdb6a

Authored by 娄高锋
2 parents 2a6aa1cd 701de6e7

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

Showing 54 changed files with 6334 additions and 5647 deletions
src/main/java/com/bsth/controller/BaseController2.java
@@ -5,10 +5,13 @@ import com.bsth.common.ResponseCode; @@ -5,10 +5,13 @@ import com.bsth.common.ResponseCode;
5 import com.bsth.service.BaseService; 5 import com.bsth.service.BaseService;
6 import com.bsth.service.schedule.utils.DataImportExportService; 6 import com.bsth.service.schedule.utils.DataImportExportService;
7 import com.google.common.base.Splitter; 7 import com.google.common.base.Splitter;
  8 +import jxl.Sheet;
  9 +import jxl.Workbook;
8 import org.springframework.beans.factory.annotation.Autowired; 10 import org.springframework.beans.factory.annotation.Autowired;
9 import org.springframework.data.domain.Page; 11 import org.springframework.data.domain.Page;
10 import org.springframework.data.domain.PageRequest; 12 import org.springframework.data.domain.PageRequest;
11 import org.springframework.data.domain.Sort; 13 import org.springframework.data.domain.Sort;
  14 +import org.springframework.util.CollectionUtils;
12 import org.springframework.web.bind.annotation.*; 15 import org.springframework.web.bind.annotation.*;
13 import org.springframework.web.multipart.MultipartFile; 16 import org.springframework.web.multipart.MultipartFile;
14 17
@@ -164,11 +167,24 @@ public class BaseController2<T, ID extends Serializable> { @@ -164,11 +167,24 @@ public class BaseController2<T, ID extends Serializable> {
164 */ 167 */
165 @RequestMapping(value = "/dataExport", method = RequestMethod.GET) 168 @RequestMapping(value = "/dataExport", method = RequestMethod.GET)
166 public void dataExport(HttpServletResponse response) throws Exception { 169 public void dataExport(HttpServletResponse response) throws Exception {
  170 + dataExport(response, null);
  171 + }
  172 +
  173 + @RequestMapping(value = "/dataExportExt", method = RequestMethod.GET)
  174 + public void dataExport(HttpServletResponse response, @RequestParam Map<String, Object> param) throws Exception {
167 // 1、使用ktr转换获取输出文件 175 // 1、使用ktr转换获取输出文件
168 File ktrfile = new File(this.getClass().getResource(getDataExportKtrClasspath()).toURI()); 176 File ktrfile = new File(this.getClass().getResource(getDataExportKtrClasspath()).toURI());
169 - File outputfile = dataImportExportService.fileDataOutput(  
170 - getDataExportFilename(),  
171 - ktrfile); 177 + File outputfile = null;
  178 + if (!CollectionUtils.isEmpty(param)) {
  179 + outputfile = dataImportExportService.fileDataOutput(
  180 + getDataExportFilename(),
  181 + ktrfile,
  182 + param);
  183 + } else {
  184 + outputfile = dataImportExportService.fileDataOutput(
  185 + getDataExportFilename(),
  186 + ktrfile);
  187 + }
172 188
173 System.out.println(outputfile.getName()); 189 System.out.println(outputfile.getName());
174 String filePath = outputfile.getAbsolutePath(); 190 String filePath = outputfile.getAbsolutePath();
@@ -225,4 +241,52 @@ public class BaseController2&lt;T, ID extends Serializable&gt; { @@ -225,4 +241,52 @@ public class BaseController2&lt;T, ID extends Serializable&gt; {
225 throw new RuntimeException("必须override,并指定ktr classpath"); 241 throw new RuntimeException("必须override,并指定ktr classpath");
226 } 242 }
227 243
  244 +
  245 + public static class ExcelFileOutput {
  246 + private String fileName;
  247 + private List<Map<String, Object>> sheetnames = new ArrayList<>();
  248 +
  249 + public String getFileName() {
  250 + return fileName;
  251 + }
  252 +
  253 + public void setFileName(String fileName) {
  254 + this.fileName = fileName;
  255 + }
  256 +
  257 + public List<Map<String, Object>> getSheetnames() {
  258 + return sheetnames;
  259 + }
  260 +
  261 + public void setSheetnames(List<Map<String, Object>> sheetnames) {
  262 + this.sheetnames = sheetnames;
  263 + }
  264 + }
  265 +
  266 + /**
  267 + * 上传Excel文件,返回文件全路径名,工作区名称列表。
  268 + * @param file
  269 + * @return
  270 + * @throws Exception
  271 + */
  272 + @RequestMapping(value = "/uploadFile", method = RequestMethod.POST)
  273 + public ExcelFileOutput fileUpload(MultipartFile file) throws Exception {
  274 + // 返回对象
  275 + ExcelFileOutput rs = new ExcelFileOutput();
  276 +
  277 + // 上传文件
  278 + File file1 = dataImportExportService.uploadFile(file);
  279 + // 获取文件的sheet
  280 + Workbook book = Workbook.getWorkbook(file1);
  281 + for (Sheet sheet : book.getSheets()) {
  282 + String sheetname = sheet.getName();
  283 + Map<String, Object> s = new HashMap<>();
  284 + s.put("name", sheetname);
  285 + rs.getSheetnames().add(s);
  286 + }
  287 +
  288 + rs.setFileName(file1.getAbsolutePath());
  289 + return rs;
  290 + }
  291 +
228 } 292 }
src/main/java/com/bsth/controller/CarsController.java
1 package com.bsth.controller; 1 package com.bsth.controller;
2 2
  3 +import com.bsth.common.ResponseCode;
3 import com.bsth.entity.Cars; 4 import com.bsth.entity.Cars;
  5 +import com.bsth.service.schedule.utils.DataImportExportService;
4 import com.bsth.service.schedule.utils.DataToolsProperties; 6 import com.bsth.service.schedule.utils.DataToolsProperties;
5 import org.springframework.beans.factory.annotation.Autowired; 7 import org.springframework.beans.factory.annotation.Autowired;
6 import org.springframework.boot.context.properties.EnableConfigurationProperties; 8 import org.springframework.boot.context.properties.EnableConfigurationProperties;
7 -import org.springframework.web.bind.annotation.*; 9 +import org.springframework.web.bind.annotation.RequestMapping;
  10 +import org.springframework.web.bind.annotation.RequestMethod;
  11 +import org.springframework.web.bind.annotation.RequestParam;
  12 +import org.springframework.web.bind.annotation.RestController;
8 13
  14 +import java.io.File;
  15 +import java.util.HashMap;
9 import java.util.Map; 16 import java.util.Map;
10 17
11 /** 18 /**
@@ -14,24 +21,12 @@ import java.util.Map; @@ -14,24 +21,12 @@ import java.util.Map;
14 @RestController 21 @RestController
15 @RequestMapping("cars") 22 @RequestMapping("cars")
16 @EnableConfigurationProperties(DataToolsProperties.class) 23 @EnableConfigurationProperties(DataToolsProperties.class)
17 -public class CarsController extends BaseController<Cars, Integer> { 24 +public class CarsController extends BaseController2<Cars, Integer> {
18 25
19 @Autowired 26 @Autowired
20 private DataToolsProperties dataToolsProperties; 27 private DataToolsProperties dataToolsProperties;
21 -  
22 - /**  
23 - * 覆写方法,因为form提交的方式参数不全,改用 json形式提交 @RequestBody  
24 - * @Title: save  
25 - * @Description: TODO(持久化对象)  
26 - * @param @param t  
27 - * @param @return 设定文件  
28 - * @return Map<String,Object> {status: 1(成功),-1(失败)}  
29 - * @throws  
30 - */  
31 - @RequestMapping(method = RequestMethod.POST)  
32 - public Map<String, Object> save(@RequestBody Cars t){  
33 - return baseService.save(t);  
34 - } 28 + @Autowired
  29 + private DataImportExportService dataImportExportService;
35 30
36 /** 31 /**
37 * 验证。 32 * 验证。
@@ -44,6 +39,48 @@ public class CarsController extends BaseController&lt;Cars, Integer&gt; { @@ -44,6 +39,48 @@ public class CarsController extends BaseController&lt;Cars, Integer&gt; {
44 return baseService.validateEquale(map); 39 return baseService.validateEquale(map);
45 } 40 }
46 41
  42 + // uploadFile post
  43 +
  44 + // 验证excel sheet
  45 + @RequestMapping(value = "/validate/sheet", method = RequestMethod.GET)
  46 + public Map<String, Object> validateSheet() throws Exception {
  47 + Map<String, Object> rtn = new HashMap<>();
  48 +
  49 + // TODO:
  50 +
  51 + rtn.put("status", ResponseCode.SUCCESS);
  52 + return rtn;
  53 + }
  54 +
  55 + @RequestMapping(value = "/importfile", method = RequestMethod.POST)
  56 + public Map<String, Object> importData(
  57 + @RequestParam Map<String, Object> form)
  58 + throws Exception {
  59 + Map<String, Object> rtn = new HashMap<>();
  60 +
  61 + // TODO:
  62 + String filename = (String) form.get("filename");
  63 +
  64 +
  65 + try {
  66 + // 获取ktr转换文件绝对路径
  67 + File ktrfile = new File(this.getClass().getResource(getDataImportKtrClasspath()).toURI());
  68 + System.out.println(ktrfile.getAbsolutePath());
  69 + // 导入数据
  70 + dataImportExportService.fileDataImport(new File(filename), ktrfile);
  71 +
  72 + rtn.put("status", ResponseCode.SUCCESS);
  73 + rtn.put("msg", "导入成功");
  74 + } catch (Exception exp) {
  75 + exp.printStackTrace();
  76 + rtn.put("status", ResponseCode.ERROR);
  77 + rtn.put("msg", exp.getLocalizedMessage());
  78 + }
  79 +
  80 + return rtn;
  81 + }
  82 +
  83 +
47 @Override 84 @Override
48 protected String getDataImportKtrClasspath() { 85 protected String getDataImportKtrClasspath() {
49 return dataToolsProperties.getCarsDatainputktr(); 86 return dataToolsProperties.getCarsDatainputktr();
src/main/java/com/bsth/controller/realcontrol/RealMapController.java 0 → 100644
  1 +package com.bsth.controller.realcontrol;
  2 +
  3 +import com.bsth.service.realcontrol.RealMapService;
  4 +import org.springframework.beans.factory.annotation.Autowired;
  5 +import org.springframework.web.bind.annotation.RequestMapping;
  6 +import org.springframework.web.bind.annotation.RequestParam;
  7 +import org.springframework.web.bind.annotation.RestController;
  8 +
  9 +import java.util.Map;
  10 +
  11 +/**
  12 + * 线调 地图监控相关
  13 + * Created by panzhao on 2016/11/23.
  14 + */
  15 +@RestController
  16 +@RequestMapping("realMap")
  17 +public class RealMapController {
  18 +
  19 + @Autowired
  20 + RealMapService realMapService;
  21 +
  22 + /**
  23 + * 根据线路获取站点路由及空间数据
  24 + */
  25 + @RequestMapping(value = "/stationSpatialData")
  26 + public Map<String, Object> stationSpatialData(@RequestParam String idx){
  27 + return realMapService.stationSpatialData(idx);
  28 + }
  29 +}
src/main/java/com/bsth/controller/realcontrol/ScheduleRealInfoController.java
1 package com.bsth.controller.realcontrol; 1 package com.bsth.controller.realcontrol;
2 2
3 -import java.io.UnsupportedEncodingException;  
4 -import java.net.URLDecoder;  
5 -import java.util.*;  
6 -  
7 -import org.apache.commons.lang3.StringEscapeUtils;  
8 -import org.drools.core.runtime.help.impl.XStreamJSon.JSonAbortWorkItemConverter;  
9 -import org.joda.time.format.DateTimeFormat;  
10 -import org.joda.time.format.DateTimeFormatter;  
11 -import org.springframework.beans.factory.annotation.Autowired;  
12 -import org.springframework.web.bind.annotation.PathVariable;  
13 -import org.springframework.web.bind.annotation.RequestMapping;  
14 -import org.springframework.web.bind.annotation.RequestMethod;  
15 -import org.springframework.web.bind.annotation.RequestParam;  
16 -import org.springframework.web.bind.annotation.RestController;  
17 -  
18 -import com.alibaba.fastjson.JSON;  
19 import com.alibaba.fastjson.JSONArray; 3 import com.alibaba.fastjson.JSONArray;
20 import com.bsth.controller.BaseController; 4 import com.bsth.controller.BaseController;
21 import com.bsth.controller.realcontrol.dto.ChangePersonCar; 5 import com.bsth.controller.realcontrol.dto.ChangePersonCar;
@@ -23,9 +7,14 @@ import com.bsth.controller.realcontrol.dto.DfsjChange; @@ -23,9 +7,14 @@ import com.bsth.controller.realcontrol.dto.DfsjChange;
23 import com.bsth.data.BasicData; 7 import com.bsth.data.BasicData;
24 import com.bsth.data.schedule.DayOfSchedule; 8 import com.bsth.data.schedule.DayOfSchedule;
25 import com.bsth.entity.realcontrol.ScheduleRealInfo; 9 import com.bsth.entity.realcontrol.ScheduleRealInfo;
26 -import com.bsth.security.util.SecurityUtils;  
27 import com.bsth.service.realcontrol.ScheduleRealInfoService; 10 import com.bsth.service.realcontrol.ScheduleRealInfoService;
28 -import com.google.common.base.Splitter; 11 +import org.apache.commons.lang3.StringEscapeUtils;
  12 +import org.joda.time.format.DateTimeFormat;
  13 +import org.joda.time.format.DateTimeFormatter;
  14 +import org.springframework.beans.factory.annotation.Autowired;
  15 +import org.springframework.web.bind.annotation.*;
  16 +
  17 +import java.util.*;
29 18
30 @RestController 19 @RestController
31 @RequestMapping("/realSchedule") 20 @RequestMapping("/realSchedule")
src/main/java/com/bsth/controller/realcontrol/dto/StationSpatialData.java 0 → 100644
  1 +package com.bsth.controller.realcontrol.dto;
  2 +
  3 +/**
  4 + * Created by panzhao on 2016/11/23.
  5 + */
  6 +public class StationSpatialData {
  7 +
  8 + private String lineCode;
  9 +
  10 + private String stationName;
  11 +
  12 + private String stationCode;
  13 +
  14 + private String stationMark;
  15 +
  16 + private int directions;
  17 +
  18 + private Float distances;
  19 +
  20 + private Float toTime;
  21 +
  22 + private Integer versions;
  23 +
  24 + private Float gLonx;
  25 +
  26 + private Float gLaty;
  27 +
  28 + private Float radius;
  29 +
  30 + private String shapesType;
  31 +
  32 + private String gPolygonGrid;
  33 +
  34 + private Integer stationRouteCode;
  35 +
  36 + public String getLineCode() {
  37 + return lineCode;
  38 + }
  39 +
  40 + public void setLineCode(String lineCode) {
  41 + this.lineCode = lineCode;
  42 + }
  43 +
  44 + public String getStationName() {
  45 + return stationName;
  46 + }
  47 +
  48 + public void setStationName(String stationName) {
  49 + this.stationName = stationName;
  50 + }
  51 +
  52 + public String getStationCode() {
  53 + return stationCode;
  54 + }
  55 +
  56 + public void setStationCode(String stationCode) {
  57 + this.stationCode = stationCode;
  58 + }
  59 +
  60 + public String getStationMark() {
  61 + return stationMark;
  62 + }
  63 +
  64 + public void setStationMark(String stationMark) {
  65 + this.stationMark = stationMark;
  66 + }
  67 +
  68 + public int getDirections() {
  69 + return directions;
  70 + }
  71 +
  72 + public void setDirections(int directions) {
  73 + this.directions = directions;
  74 + }
  75 +
  76 + public Float getDistances() {
  77 + return distances;
  78 + }
  79 +
  80 + public void setDistances(Float distances) {
  81 + this.distances = distances;
  82 + }
  83 +
  84 + public Float getToTime() {
  85 + return toTime;
  86 + }
  87 +
  88 + public void setToTime(Float toTime) {
  89 + this.toTime = toTime;
  90 + }
  91 +
  92 + public Integer getVersions() {
  93 + return versions;
  94 + }
  95 +
  96 + public void setVersions(Integer versions) {
  97 + this.versions = versions;
  98 + }
  99 +
  100 + public Float getgLonx() {
  101 + return gLonx;
  102 + }
  103 +
  104 + public void setgLonx(Float gLonx) {
  105 + this.gLonx = gLonx;
  106 + }
  107 +
  108 + public Float getgLaty() {
  109 + return gLaty;
  110 + }
  111 +
  112 + public void setgLaty(Float gLaty) {
  113 + this.gLaty = gLaty;
  114 + }
  115 +
  116 + public Float getRadius() {
  117 + return radius;
  118 + }
  119 +
  120 + public void setRadius(Float radius) {
  121 + this.radius = radius;
  122 + }
  123 +
  124 + public String getShapesType() {
  125 + return shapesType;
  126 + }
  127 +
  128 + public void setShapesType(String shapesType) {
  129 + this.shapesType = shapesType;
  130 + }
  131 +
  132 + public String getgPolygonGrid() {
  133 + return gPolygonGrid;
  134 + }
  135 +
  136 + public void setgPolygonGrid(String gPolygonGrid) {
  137 + this.gPolygonGrid = gPolygonGrid;
  138 + }
  139 +
  140 + public Integer getStationRouteCode() {
  141 + return stationRouteCode;
  142 + }
  143 +
  144 + public void setStationRouteCode(Integer stationRouteCode) {
  145 + this.stationRouteCode = stationRouteCode;
  146 + }
  147 +}
src/main/java/com/bsth/controller/schedule/TTInfoDetailController.java
1 package com.bsth.controller.schedule; 1 package com.bsth.controller.schedule;
2 2
3 import com.bsth.common.ResponseCode; 3 import com.bsth.common.ResponseCode;
4 -import com.bsth.controller.BaseController; 4 +import com.bsth.controller.BaseController2;
5 import com.bsth.entity.CarPark; 5 import com.bsth.entity.CarPark;
6 import com.bsth.entity.LineInformation; 6 import com.bsth.entity.LineInformation;
7 import com.bsth.entity.StationRoute; 7 import com.bsth.entity.StationRoute;
@@ -38,7 +38,7 @@ import java.util.regex.Pattern; @@ -38,7 +38,7 @@ import java.util.regex.Pattern;
38 */ 38 */
39 @RestController 39 @RestController
40 @RequestMapping("tidc") 40 @RequestMapping("tidc")
41 -public class TTInfoDetailController extends BaseController<TTInfoDetail, Long> { 41 +public class TTInfoDetailController extends BaseController2<TTInfoDetail, Long> {
42 @Autowired 42 @Autowired
43 private TTInfoDetailService ttInfoDetailService; 43 private TTInfoDetailService ttInfoDetailService;
44 @Autowired 44 @Autowired
@@ -56,53 +56,13 @@ public class TTInfoDetailController extends BaseController&lt;TTInfoDetail, Long&gt; { @@ -56,53 +56,13 @@ public class TTInfoDetailController extends BaseController&lt;TTInfoDetail, Long&gt; {
56 @Autowired 56 @Autowired
57 private DataToolsProperties dataToolsProperties; 57 private DataToolsProperties dataToolsProperties;
58 58
59 -  
60 - public static class ExcelFileOutput {  
61 - private String fileName;  
62 - private List<Map<String, Object>> sheetnames = new ArrayList<>();  
63 -  
64 - public String getFileName() {  
65 - return fileName;  
66 - }  
67 -  
68 - public void setFileName(String fileName) {  
69 - this.fileName = fileName;  
70 - }  
71 -  
72 - public List<Map<String, Object>> getSheetnames() {  
73 - return sheetnames;  
74 - }  
75 -  
76 - public void setSheetnames(List<Map<String, Object>> sheetnames) {  
77 - this.sheetnames = sheetnames;  
78 - }  
79 - }  
80 -  
81 /** 59 /**
82 * 1、上传Excel文件,返回文件全路径名,工作区名称列表。 60 * 1、上传Excel文件,返回文件全路径名,工作区名称列表。
83 * @param file 61 * @param file
84 * @return 62 * @return
85 * @throws Exception 63 * @throws Exception
86 */ 64 */
87 - @RequestMapping(value = "/uploadFile", method = RequestMethod.POST)  
88 - public ExcelFileOutput fileUpload(MultipartFile file) throws Exception {  
89 - // 返回对象  
90 - ExcelFileOutput rs = new ExcelFileOutput();  
91 -  
92 - // 上传文件  
93 - File file1 = dataImportExportService.uploadFile(file);  
94 - // 获取文件的sheet  
95 - Workbook book = Workbook.getWorkbook(file1);  
96 - for (Sheet sheet : book.getSheets()) {  
97 - String sheetname = sheet.getName();  
98 - Map<String, Object> s = new HashMap<>();  
99 - s.put("name", sheetname);  
100 - rs.getSheetnames().add(s);  
101 - }  
102 65
103 - rs.setFileName(file1.getAbsolutePath());  
104 - return rs;  
105 - }  
106 66
107 /** 67 /**
108 * 2、验证sheet(以后放到规则引擎里去做)。 68 * 2、验证sheet(以后放到规则引擎里去做)。
@@ -441,21 +401,6 @@ public class TTInfoDetailController extends BaseController&lt;TTInfoDetail, Long&gt; { @@ -441,21 +401,6 @@ public class TTInfoDetailController extends BaseController&lt;TTInfoDetail, Long&gt; {
441 return ttInfoDetailService.getEditInfo(xlid, ttid); 401 return ttInfoDetailService.getEditInfo(xlid, ttid);
442 } 402 }
443 403
444 - /**  
445 - * 覆写方法,因为form提交的方式参数不全,改用 json形式提交 @RequestBody  
446 - * @Title: save  
447 - * @Description: TODO(持久化对象)  
448 - * @param @param t  
449 - * @param @return 设定文件  
450 - * @return Map<String,Object> {status: 1(成功),-1(失败)}  
451 - * @throws  
452 - */  
453 - @RequestMapping(method = RequestMethod.POST)  
454 - public Map<String, Object> save(@RequestBody TTInfoDetail t){  
455 -  
456 - return baseService.save(t);  
457 - }  
458 -  
459 @Override 404 @Override
460 public TTInfoDetail findById(@PathVariable("id") Long aLong) { 405 public TTInfoDetail findById(@PathVariable("id") Long aLong) {
461 return ttInfoDetailRepository.findOneExtend(aLong); 406 return ttInfoDetailRepository.findOneExtend(aLong);
src/main/java/com/bsth/controller/sys/CompanyAuthorityController.java
1 -package com.bsth.controller.sys;  
2 -  
3 -import com.alibaba.fastjson.JSONArray;  
4 -import com.bsth.controller.BaseController;  
5 -import com.bsth.entity.sys.CompanyAuthority;  
6 -import com.bsth.service.sys.CompanyAuthorityService;  
7 -import org.apache.commons.lang3.StringEscapeUtils;  
8 -import org.springframework.beans.factory.annotation.Autowired;  
9 -import org.springframework.web.bind.annotation.RequestMapping;  
10 -import org.springframework.web.bind.annotation.RequestParam;  
11 -import org.springframework.web.bind.annotation.RestController;  
12 -  
13 -import java.util.List;  
14 -import java.util.Map;  
15 -  
16 -/**  
17 - * Created by panzhao on 2016/11/22.  
18 - */  
19 -@RestController  
20 -@RequestMapping("companyAuthority")  
21 -public class CompanyAuthorityController extends BaseController<CompanyAuthority, Integer>{  
22 -  
23 - @Autowired  
24 - CompanyAuthorityService companyAuthorityService;  
25 -  
26 - @RequestMapping(value = "save")  
27 - public Map<String, Object> save(@RequestParam Integer roleId, @RequestParam String authJsonStr){  
28 - authJsonStr = StringEscapeUtils.unescapeHtml4(authJsonStr);  
29 - System.out.println(authJsonStr);  
30 - List<CompanyAuthority> list = JSONArray.parseArray(authJsonStr, CompanyAuthority.class);  
31 - return companyAuthorityService.save(roleId, list);  
32 - }  
33 -} 1 +package com.bsth.controller.sys;
  2 +
  3 +import com.alibaba.fastjson.JSONArray;
  4 +import com.bsth.controller.BaseController;
  5 +import com.bsth.entity.sys.CompanyAuthority;
  6 +import com.bsth.service.sys.CompanyAuthorityService;
  7 +import org.apache.commons.lang3.StringEscapeUtils;
  8 +import org.springframework.beans.factory.annotation.Autowired;
  9 +import org.springframework.web.bind.annotation.RequestMapping;
  10 +import org.springframework.web.bind.annotation.RequestParam;
  11 +import org.springframework.web.bind.annotation.RestController;
  12 +
  13 +import java.util.List;
  14 +import java.util.Map;
  15 +
  16 +/**
  17 + * Created by panzhao on 2016/11/22.
  18 + */
  19 +@RestController
  20 +@RequestMapping("companyAuthority")
  21 +public class CompanyAuthorityController extends BaseController<CompanyAuthority, Integer>{
  22 +
  23 + @Autowired
  24 + CompanyAuthorityService companyAuthorityService;
  25 +
  26 + @RequestMapping(value = "save")
  27 + public Map<String, Object> save(@RequestParam Integer roleId, @RequestParam String authJsonStr){
  28 + authJsonStr = StringEscapeUtils.unescapeHtml4(authJsonStr);
  29 + System.out.println(authJsonStr);
  30 + List<CompanyAuthority> list = JSONArray.parseArray(authJsonStr, CompanyAuthority.class);
  31 + return companyAuthorityService.save(roleId, list);
  32 + }
  33 +}
src/main/java/com/bsth/controller/sys/dto/CompanyData.java
1 -package com.bsth.controller.sys.dto;  
2 -  
3 -import java.util.List;  
4 -  
5 -/**  
6 - * Created by panzhao on 2016/11/22.  
7 - */  
8 -public class CompanyData {  
9 -  
10 - private String companyCode;  
11 -  
12 - private String companyName;  
13 -  
14 - private List<ChildrenCompany> children;  
15 -  
16 - public String getCompanyCode() {  
17 - return companyCode;  
18 - }  
19 -  
20 - public void setCompanyCode(String companyCode) {  
21 - this.companyCode = companyCode;  
22 - }  
23 -  
24 - public String getCompanyName() {  
25 - return companyName;  
26 - }  
27 -  
28 - public void setCompanyName(String companyName) {  
29 - this.companyName = companyName;  
30 - }  
31 -  
32 - public List<ChildrenCompany> getChildren() {  
33 - return children;  
34 - }  
35 -  
36 - public void setChildren(List<ChildrenCompany> children) {  
37 - this.children = children;  
38 - }  
39 -  
40 - public static class ChildrenCompany {  
41 - private String code;  
42 -  
43 - private String name;  
44 -  
45 - public ChildrenCompany(String code, String name){  
46 - this.code = code;  
47 - this.name = name;  
48 - }  
49 -  
50 - public String getName() {  
51 - return name;  
52 - }  
53 -  
54 - public void setName(String name) {  
55 - this.name = name;  
56 - }  
57 -  
58 - public String getCode() {  
59 - return code;  
60 - }  
61 -  
62 - public void setCode(String code) {  
63 - this.code = code;  
64 - }  
65 - }  
66 -} 1 +package com.bsth.controller.sys.dto;
  2 +
  3 +import java.util.List;
  4 +
  5 +/**
  6 + * Created by panzhao on 2016/11/22.
  7 + */
  8 +public class CompanyData {
  9 +
  10 + private String companyCode;
  11 +
  12 + private String companyName;
  13 +
  14 + private List<ChildrenCompany> children;
  15 +
  16 + public String getCompanyCode() {
  17 + return companyCode;
  18 + }
  19 +
  20 + public void setCompanyCode(String companyCode) {
  21 + this.companyCode = companyCode;
  22 + }
  23 +
  24 + public String getCompanyName() {
  25 + return companyName;
  26 + }
  27 +
  28 + public void setCompanyName(String companyName) {
  29 + this.companyName = companyName;
  30 + }
  31 +
  32 + public List<ChildrenCompany> getChildren() {
  33 + return children;
  34 + }
  35 +
  36 + public void setChildren(List<ChildrenCompany> children) {
  37 + this.children = children;
  38 + }
  39 +
  40 + public static class ChildrenCompany {
  41 + private String code;
  42 +
  43 + private String name;
  44 +
  45 + public ChildrenCompany(String code, String name){
  46 + this.code = code;
  47 + this.name = name;
  48 + }
  49 +
  50 + public String getName() {
  51 + return name;
  52 + }
  53 +
  54 + public void setName(String name) {
  55 + this.name = name;
  56 + }
  57 +
  58 + public String getCode() {
  59 + return code;
  60 + }
  61 +
  62 + public void setCode(String code) {
  63 + this.code = code;
  64 + }
  65 + }
  66 +}
src/main/java/com/bsth/entity/realcontrol/ScheduleRealInfo.java
@@ -2,13 +2,11 @@ package com.bsth.entity.realcontrol; @@ -2,13 +2,11 @@ package com.bsth.entity.realcontrol;
2 2
3 import com.bsth.entity.sys.SysUser; 3 import com.bsth.entity.sys.SysUser;
4 import com.fasterxml.jackson.annotation.JsonIgnore; 4 import com.fasterxml.jackson.annotation.JsonIgnore;
5 -  
6 -import javax.persistence.*;  
7 -  
8 import org.apache.commons.lang3.StringUtils; 5 import org.apache.commons.lang3.StringUtils;
9 import org.joda.time.format.DateTimeFormat; 6 import org.joda.time.format.DateTimeFormat;
10 import org.joda.time.format.DateTimeFormatter; 7 import org.joda.time.format.DateTimeFormatter;
11 8
  9 +import javax.persistence.*;
12 import java.util.Date; 10 import java.util.Date;
13 import java.util.HashSet; 11 import java.util.HashSet;
14 import java.util.Set; 12 import java.util.Set;
@@ -177,8 +175,116 @@ public class ScheduleRealInfo { @@ -177,8 +175,116 @@ public class ScheduleRealInfo {
177 /** 子任务 */ 175 /** 子任务 */
178 @OneToMany(fetch = FetchType.LAZY/*, cascade = CascadeType.ALL*/) 176 @OneToMany(fetch = FetchType.LAZY/*, cascade = CascadeType.ALL*/)
179 private Set<ChildTaskPlan> cTasks = new HashSet<>(); 177 private Set<ChildTaskPlan> cTasks = new HashSet<>();
180 -  
181 - /** ---------------- 178 +
  179 + /** 关联的公司名称 */
  180 + private String gsName;
  181 + /** 关联的公司编码 */
  182 + private String gsBm;
  183 + /** 关联的分公司名称 */
  184 + private String fgsName;
  185 + /** 关联的分公司编码 */
  186 + private String fgsBm;
  187 + /** 出场顺序号 */
  188 + private Integer ccno;
  189 +
  190 + //待发调试(是否自动调整)
  191 + private boolean dfAuto;
  192 + //是否有GPS信号
  193 + private boolean online;
  194 +
  195 + public boolean isDfAuto() {
  196 + return dfAuto;
  197 + }
  198 +
  199 + public void setDfAuto(boolean dfAuto) {
  200 + this.dfAuto = dfAuto;
  201 + }
  202 +
  203 + public boolean isOnline() {
  204 + return online;
  205 + }
  206 +
  207 + public void setOnline(boolean online) {
  208 + this.online = online;
  209 + }
  210 +
  211 + public String getQdzArrDatejh() {
  212 + return qdzArrDatejh;
  213 + }
  214 +
  215 + public void setQdzArrDatejh(String qdzArrDatejh) {
  216 + this.qdzArrDatejh = qdzArrDatejh;
  217 + }
  218 +
  219 + public String getQdzArrDatesj() {
  220 + return qdzArrDatesj;
  221 + }
  222 +
  223 + public void setQdzArrDatesj(String qdzArrDatesj) {
  224 + this.qdzArrDatesj = qdzArrDatesj;
  225 + }
  226 +
  227 + public void setcTasks(Set<ChildTaskPlan> cTasks) {
  228 + this.cTasks = cTasks;
  229 + }
  230 +
  231 + public String getGsName() {
  232 + return gsName;
  233 + }
  234 +
  235 + public void setGsName(String gsName) {
  236 + this.gsName = gsName;
  237 + }
  238 +
  239 + public String getGsBm() {
  240 + return gsBm;
  241 + }
  242 +
  243 + public void setGsBm(String gsBm) {
  244 + this.gsBm = gsBm;
  245 + }
  246 +
  247 + public String getFgsName() {
  248 + return fgsName;
  249 + }
  250 +
  251 + public void setFgsName(String fgsName) {
  252 + this.fgsName = fgsName;
  253 + }
  254 +
  255 + public String getFgsBm() {
  256 + return fgsBm;
  257 + }
  258 +
  259 + public void setFgsBm(String fgsBm) {
  260 + this.fgsBm = fgsBm;
  261 + }
  262 +
  263 + public Integer getCcno() {
  264 + return ccno;
  265 + }
  266 +
  267 + public void setCcno(Integer ccno) {
  268 + this.ccno = ccno;
  269 + }
  270 +
  271 + public static DateTimeFormatter getFmtHHmm() {
  272 + return fmtHHmm;
  273 + }
  274 +
  275 + public static void setFmtHHmm(DateTimeFormatter fmtHHmm) {
  276 + ScheduleRealInfo.fmtHHmm = fmtHHmm;
  277 + }
  278 +
  279 + public static DateTimeFormatter getFmtyyyyMMddHHmm() {
  280 + return fmtyyyyMMddHHmm;
  281 + }
  282 +
  283 + public static void setFmtyyyyMMddHHmm(DateTimeFormatter fmtyyyyMMddHHmm) {
  284 + ScheduleRealInfo.fmtyyyyMMddHHmm = fmtyyyyMMddHHmm;
  285 + }
  286 +
  287 + /** ----------------
182 @OneToOne(fetch = FetchType.LAZY, cascade = CascadeType.ALL) 288 @OneToOne(fetch = FetchType.LAZY, cascade = CascadeType.ALL)
183 private RealTimeModel sjfcModel; 289 private RealTimeModel sjfcModel;
184 @OneToOne(fetch = FetchType.LAZY, cascade = CascadeType.ALL) 290 @OneToOne(fetch = FetchType.LAZY, cascade = CascadeType.ALL)
src/main/java/com/bsth/entity/sys/CompanyAuthority.java
1 -package com.bsth.entity.sys;  
2 -  
3 -import javax.persistence.*;  
4 -  
5 -/**  
6 - * Created by panzhao on 2016/11/22.  
7 - */  
8 -@Entity  
9 -@Table(name = "bsth_c_sys_company_auth")  
10 -public class CompanyAuthority {  
11 -  
12 - @Id  
13 - @GeneratedValue(strategy = GenerationType.IDENTITY)  
14 - private Integer id;  
15 -  
16 - /** 公司代码 */  
17 - private String companyCode;  
18 -  
19 - /** 公司名称 */  
20 - private String companyName;  
21 -  
22 - /** 分公司代码 */  
23 - private String subCompanyCode;  
24 -  
25 - /** 分公司代码 */  
26 - private String subCompanyName;  
27 -  
28 - private Integer roleId;  
29 -  
30 - public String getSubCompanyName() {  
31 - return subCompanyName;  
32 - }  
33 -  
34 - public void setSubCompanyName(String subCompanyName) {  
35 - this.subCompanyName = subCompanyName;  
36 - }  
37 -  
38 - public String getSubCompanyCode() {  
39 - return subCompanyCode;  
40 - }  
41 -  
42 - public void setSubCompanyCode(String subCompanyCode) {  
43 - this.subCompanyCode = subCompanyCode;  
44 - }  
45 -  
46 - public String getCompanyName() {  
47 - return companyName;  
48 - }  
49 -  
50 - public void setCompanyName(String companyName) {  
51 - this.companyName = companyName;  
52 - }  
53 -  
54 - public String getCompanyCode() {  
55 - return companyCode;  
56 - }  
57 -  
58 - public void setCompanyCode(String companyCode) {  
59 - this.companyCode = companyCode;  
60 - }  
61 -  
62 - public Integer getId() {  
63 - return id;  
64 - }  
65 -  
66 - public void setId(Integer id) {  
67 - this.id = id;  
68 - }  
69 -  
70 - public Integer getRoleId() {  
71 - return roleId;  
72 - }  
73 -  
74 - public void setRoleId(Integer roleId) {  
75 - this.roleId = roleId;  
76 - }  
77 -} 1 +package com.bsth.entity.sys;
  2 +
  3 +import javax.persistence.*;
  4 +
  5 +/**
  6 + * Created by panzhao on 2016/11/22.
  7 + */
  8 +@Entity
  9 +@Table(name = "bsth_c_sys_company_auth")
  10 +public class CompanyAuthority {
  11 +
  12 + @Id
  13 + @GeneratedValue(strategy = GenerationType.IDENTITY)
  14 + private Integer id;
  15 +
  16 + /** 公司代码 */
  17 + private String companyCode;
  18 +
  19 + /** 公司名称 */
  20 + private String companyName;
  21 +
  22 + /** 分公司代码 */
  23 + private String subCompanyCode;
  24 +
  25 + /** 分公司代码 */
  26 + private String subCompanyName;
  27 +
  28 + private Integer roleId;
  29 +
  30 + public String getSubCompanyName() {
  31 + return subCompanyName;
  32 + }
  33 +
  34 + public void setSubCompanyName(String subCompanyName) {
  35 + this.subCompanyName = subCompanyName;
  36 + }
  37 +
  38 + public String getSubCompanyCode() {
  39 + return subCompanyCode;
  40 + }
  41 +
  42 + public void setSubCompanyCode(String subCompanyCode) {
  43 + this.subCompanyCode = subCompanyCode;
  44 + }
  45 +
  46 + public String getCompanyName() {
  47 + return companyName;
  48 + }
  49 +
  50 + public void setCompanyName(String companyName) {
  51 + this.companyName = companyName;
  52 + }
  53 +
  54 + public String getCompanyCode() {
  55 + return companyCode;
  56 + }
  57 +
  58 + public void setCompanyCode(String companyCode) {
  59 + this.companyCode = companyCode;
  60 + }
  61 +
  62 + public Integer getId() {
  63 + return id;
  64 + }
  65 +
  66 + public void setId(Integer id) {
  67 + this.id = id;
  68 + }
  69 +
  70 + public Integer getRoleId() {
  71 + return roleId;
  72 + }
  73 +
  74 + public void setRoleId(Integer roleId) {
  75 + this.roleId = roleId;
  76 + }
  77 +}
src/main/java/com/bsth/repository/realcontrol/ScheduleRealInfoRepository.java
@@ -37,14 +37,14 @@ public interface ScheduleRealInfoRepository extends BaseRepository&lt;ScheduleRealI @@ -37,14 +37,14 @@ public interface ScheduleRealInfoRepository extends BaseRepository&lt;ScheduleRealI
37 @Query(value="SELECT r.xl_name,r.lp_name,r.cl_zbh,d.sender,d.timestamp," 37 @Query(value="SELECT r.xl_name,r.lp_name,r.cl_zbh,d.sender,d.timestamp,"
38 + " d.txt_content FROM bsth_c_s_sp_info_real r RIGHT JOIN bsth_v_directive_60 " 38 + " d.txt_content FROM bsth_c_s_sp_info_real r RIGHT JOIN bsth_v_directive_60 "
39 + "d ON r.id = d.sch WHERE d.is_dispatch = 1 AND r.xl_bm like %?1% AND " 39 + "d ON r.id = d.sch WHERE d.is_dispatch = 1 AND r.xl_bm like %?1% AND "
40 - + "r.schedule_date like %?2% and r.cl_zbh like %?3% order by d.timestamp",nativeQuery=true) 40 + + " DATE_FORMAT(r.schedule_date,'%Y-%m-%d') = ?2 and r.cl_zbh like %?3% order by d.timestamp",nativeQuery=true)
41 List<Object[]> historyMessage(String line,String date,String code); 41 List<Object[]> historyMessage(String line,String date,String code);
42 42
43 @Query(value="SELECT r.xl_name,r.lp_name,r.cl_zbh,count(*) as cs " 43 @Query(value="SELECT r.xl_name,r.lp_name,r.cl_zbh,count(*) as cs "
44 + " FROM bsth_c_s_sp_info_real r RIGHT JOIN bsth_v_directive_60 d " 44 + " FROM bsth_c_s_sp_info_real r RIGHT JOIN bsth_v_directive_60 d "
45 + " ON r.id = d.sch WHERE d.is_dispatch = 1 AND r.xl_bm like %?1% AND " 45 + " ON r.id = d.sch WHERE d.is_dispatch = 1 AND r.xl_bm like %?1% AND "
46 - + " r.schedule_date like %?2% and r.cl_zbh like %?3% group by "  
47 - + " lp_name,xl_name,cl_zbh order by d.timestamp",nativeQuery=true) 46 + + " DATE_FORMAT(r.schedule_date,'%Y-%m-%d') = ?2 and r.cl_zbh like %?3% group by "
  47 + + " lp_name,xl_name,cl_zbh",nativeQuery=true)
48 List<Object[]> historyMessageCount(String line,String date,String code); 48 List<Object[]> historyMessageCount(String line,String date,String code);
49 49
50 @Query(value = "select max(id) from ScheduleRealInfo") 50 @Query(value = "select max(id) from ScheduleRealInfo")
src/main/java/com/bsth/repository/sys/CompanyAuthorityRepository.java
1 -package com.bsth.repository.sys;  
2 -  
3 -import com.bsth.entity.sys.CompanyAuthority;  
4 -import com.bsth.repository.BaseRepository;  
5 -import org.springframework.data.jpa.repository.Modifying;  
6 -import org.springframework.data.jpa.repository.Query;  
7 -import org.springframework.stereotype.Repository;  
8 -  
9 -import java.util.List;  
10 -  
11 -/**  
12 - * Created by panzhao on 2016/11/22.  
13 - */  
14 -@Repository  
15 -public interface CompanyAuthorityRepository extends BaseRepository<CompanyAuthority, Integer>{  
16 -  
17 - @Modifying  
18 - @Query(value="DELETE FROM CompanyAuthority WHERE roleId = ?1")  
19 - void deleteByRoleId(Integer roleId);  
20 -  
21 - @Query(value = "select ca from CompanyAuthority ca where ca.roleId in ?1")  
22 - List<CompanyAuthority> findByRoles(List<Integer> idx);  
23 -} 1 +package com.bsth.repository.sys;
  2 +
  3 +import com.bsth.entity.sys.CompanyAuthority;
  4 +import com.bsth.repository.BaseRepository;
  5 +import org.springframework.data.jpa.repository.Modifying;
  6 +import org.springframework.data.jpa.repository.Query;
  7 +import org.springframework.stereotype.Repository;
  8 +
  9 +import java.util.List;
  10 +
  11 +/**
  12 + * Created by panzhao on 2016/11/22.
  13 + */
  14 +@Repository
  15 +public interface CompanyAuthorityRepository extends BaseRepository<CompanyAuthority, Integer>{
  16 +
  17 + @Modifying
  18 + @Query(value="DELETE FROM CompanyAuthority WHERE roleId = ?1")
  19 + void deleteByRoleId(Integer roleId);
  20 +
  21 + @Query(value = "select ca from CompanyAuthority ca where ca.roleId in ?1")
  22 + List<CompanyAuthority> findByRoles(List<Integer> idx);
  23 +}
src/main/java/com/bsth/service/realcontrol/RealMapService.java 0 → 100644
  1 +package com.bsth.service.realcontrol;
  2 +
  3 +import java.util.Map;
  4 +
  5 +/**
  6 + * Created by panzhao on 2016/11/23.
  7 + */
  8 +public interface RealMapService {
  9 + Map<String, Object> stationSpatialData(String idx);
  10 +}
src/main/java/com/bsth/service/realcontrol/impl/RealMapServiceImpl.java 0 → 100644
  1 +package com.bsth.service.realcontrol.impl;
  2 +
  3 +import com.bsth.common.ResponseCode;
  4 +import com.bsth.controller.realcontrol.dto.StationSpatialData;
  5 +import com.bsth.service.realcontrol.RealMapService;
  6 +import com.google.common.base.Splitter;
  7 +import org.slf4j.Logger;
  8 +import org.slf4j.LoggerFactory;
  9 +import org.springframework.beans.factory.annotation.Autowired;
  10 +import org.springframework.jdbc.core.BeanPropertyRowMapper;
  11 +import org.springframework.jdbc.core.JdbcTemplate;
  12 +import org.springframework.stereotype.Service;
  13 +
  14 +import java.util.HashMap;
  15 +import java.util.List;
  16 +import java.util.Map;
  17 +
  18 +/**
  19 + * Created by panzhao on 2016/11/23.
  20 + */
  21 +@Service
  22 +public class RealMapServiceImpl implements RealMapService {
  23 +
  24 + @Autowired
  25 + JdbcTemplate jdbcTemplate;
  26 +
  27 + Logger logger = LoggerFactory.getLogger(this.getClass());
  28 +
  29 + @Override
  30 + public Map<String, Object> stationSpatialData(String idx) {
  31 + Map<String, Object> rs = new HashMap();
  32 +
  33 + try {
  34 + List<String> idArray = Splitter.on(",").splitToList(idx);
  35 + //拼接in语句
  36 + String inStr = "";
  37 + for (String code : idArray) {
  38 + inStr += (",'" + code+"'");
  39 + }
  40 + inStr = " (" + inStr.substring(1) + ")";
  41 +
  42 + String sql = "select R.LINE_CODE,R.STATION_NAME,R.STATION_CODE,R.STATION_MARK,R.DIRECTIONS,R.DISTANCES,R.TO_TIME, R.VERSIONS,S.G_LONX,S.G_LATY,S.RADIUS,S.SHAPES_TYPE,ST_AsText(S.G_POLYGON_GRID) as G_POLYGON_GRID, R.STATION_ROUTE_CODE from bsth_c_stationroute r inner join bsth_c_station s on r.station=s.id where r.line_code in "+inStr+" and r.destroy=0";
  43 +
  44 + List<StationSpatialData> list = jdbcTemplate.query(sql,new BeanPropertyRowMapper(StationSpatialData.class));
  45 + rs.put("status", ResponseCode.SUCCESS);
  46 + rs.put("list", list);
  47 + } catch (Exception e) {
  48 + logger.error("", e);
  49 + rs.put("status", ResponseCode.ERROR);
  50 + rs.put("msg", "查询站点空间数据出现异常!");
  51 + }
  52 +
  53 + return rs;
  54 + }
  55 +}
src/main/java/com/bsth/service/realcontrol/impl/ScheduleRealInfoServiceImpl.java
@@ -1281,6 +1281,9 @@ public class ScheduleRealInfoServiceImpl extends BaseServiceImpl&lt;ScheduleRealInf @@ -1281,6 +1281,9 @@ public class ScheduleRealInfoServiceImpl extends BaseServiceImpl&lt;ScheduleRealInf
1281 if(scheduleRealInfo.isSflj()){ 1281 if(scheduleRealInfo.isSflj()){
1282 ljgl += tempJhlc; 1282 ljgl += tempJhlc;
1283 } 1283 }
  1284 + }else{
  1285 + ssgl += tempJhlc;
  1286 + ssgl_other += tempJhlc;
1284 } 1287 }
1285 }else{ 1288 }else{
1286 Iterator<ChildTaskPlan> it = childTaskPlans.iterator(); 1289 Iterator<ChildTaskPlan> it = childTaskPlans.iterator();
src/main/java/com/bsth/service/schedule/utils/DataImportExportService.java
@@ -24,6 +24,7 @@ public interface DataImportExportService { @@ -24,6 +24,7 @@ public interface DataImportExportService {
24 * @throws Exception 24 * @throws Exception
25 */ 25 */
26 void fileDataImport(MultipartFile datafile, File ktrFile) throws Exception; 26 void fileDataImport(MultipartFile datafile, File ktrFile) throws Exception;
  27 + void fileDataImport(File datafile, File ktrFile) throws Exception;
27 28
28 /** 29 /**
29 * 数据导出。 30 * 数据导出。
src/main/java/com/bsth/service/schedule/utils/DataImportExportServiceImpl.java
@@ -111,6 +111,31 @@ public class DataImportExportServiceImpl implements DataImportExportService, Ini @@ -111,6 +111,31 @@ public class DataImportExportServiceImpl implements DataImportExportService, Ini
111 } 111 }
112 112
113 @Override 113 @Override
  114 + public void fileDataImport(File datafile, File ktrFile) throws Exception {
  115 +// // 1、上传数据文件
  116 +// File uploadFile = datafile;
  117 +
  118 + // 2、使用kettle运行封装数据导入逻辑的ktr转换文件
  119 + // 2.1、初始化kettle(组件初始化已经做了)
  120 + // 2.2、创建转换元数据,转换
  121 + TransMeta transMeta = new TransMeta(ktrFile.getAbsolutePath());
  122 + Trans trans = new Trans(transMeta);
  123 + // 2.3、设定命名参数,用于指定数据文件,注意每个ktr必须都有以下指定的命名参数
  124 + trans.setParameterValue("filepath", datafile.getAbsolutePath()); // 指定导入数据文件的位置
  125 + trans.setParameterValue("erroroutputdir", dataToolsProperties.getTransErrordir()); // ktr转换错误输出目录
  126 + // TODO:可以考虑设定日志输出
  127 + // 2.4、执行转换
  128 + trans.execute(null);
  129 + // 2.5、等待转换结束
  130 + trans.waitUntilFinished();
  131 +
  132 + // 3、判定ktr错误数,注意这种错误代表部分数据错误,不会终止转换执行,一般设计ktr的时候,会有错误输出文件,TODO:以后考虑使用日志实时输出
  133 + if (trans.getErrors() > 0) {
  134 + throw new Exception("转换数据部分错误,请查看相关错误输出文件!");
  135 + }
  136 + }
  137 +
  138 + @Override
114 public File fileDataOutput(String fileName, File ktrFile) throws Exception { 139 public File fileDataOutput(String fileName, File ktrFile) throws Exception {
115 return fileDataOutput(fileName, ktrFile, null); 140 return fileDataOutput(fileName, ktrFile, null);
116 } 141 }
src/main/java/com/bsth/service/sys/CompanyAuthorityService.java
1 -package com.bsth.service.sys;  
2 -  
3 -import com.bsth.entity.sys.CompanyAuthority;  
4 -import com.bsth.entity.sys.SysUser;  
5 -import com.bsth.service.BaseService;  
6 -  
7 -import java.util.List;  
8 -import java.util.Map;  
9 -  
10 -/**  
11 - * Created by panzhao on 2016/11/22.  
12 - */  
13 -public interface CompanyAuthorityService extends BaseService<CompanyAuthority, Integer> {  
14 - Map<String,Object> save(Integer roleId, List<CompanyAuthority> list);  
15 -  
16 - List<CompanyAuthority> findByUser(SysUser user);  
17 -} 1 +package com.bsth.service.sys;
  2 +
  3 +import com.bsth.entity.sys.CompanyAuthority;
  4 +import com.bsth.entity.sys.SysUser;
  5 +import com.bsth.service.BaseService;
  6 +
  7 +import java.util.List;
  8 +import java.util.Map;
  9 +
  10 +/**
  11 + * Created by panzhao on 2016/11/22.
  12 + */
  13 +public interface CompanyAuthorityService extends BaseService<CompanyAuthority, Integer> {
  14 + Map<String,Object> save(Integer roleId, List<CompanyAuthority> list);
  15 +
  16 + List<CompanyAuthority> findByUser(SysUser user);
  17 +}
src/main/java/com/bsth/service/sys/impl/CompanyAuthorityServiceImpl.java
1 -package com.bsth.service.sys.impl;  
2 -  
3 -import com.bsth.common.ResponseCode;  
4 -import com.bsth.entity.sys.CompanyAuthority;  
5 -import com.bsth.entity.sys.Role;  
6 -import com.bsth.entity.sys.SysUser;  
7 -import com.bsth.repository.sys.CompanyAuthorityRepository;  
8 -import com.bsth.service.impl.BaseServiceImpl;  
9 -import com.bsth.service.sys.CompanyAuthorityService;  
10 -import org.slf4j.Logger;  
11 -import org.slf4j.LoggerFactory;  
12 -import org.springframework.beans.factory.annotation.Autowired;  
13 -import org.springframework.stereotype.Service;  
14 -import org.springframework.transaction.annotation.Transactional;  
15 -  
16 -import java.util.*;  
17 -  
18 -/**  
19 - * Created by panzhao on 2016/11/22.  
20 - */  
21 -@Service  
22 -public class CompanyAuthorityServiceImpl extends BaseServiceImpl<CompanyAuthority, Integer> implements CompanyAuthorityService {  
23 -  
24 - @Autowired  
25 - CompanyAuthorityRepository companyAuthorityRepository;  
26 -  
27 - Logger logger = LoggerFactory.getLogger(this.getClass());  
28 -  
29 - @Transactional  
30 - @Override  
31 - public Map<String, Object> save(Integer roleId, List<CompanyAuthority> list) {  
32 - Map<String, Object> rs = new HashMap();  
33 -  
34 - try {  
35 - for(CompanyAuthority cauth : list){  
36 - cauth.setRoleId(roleId);  
37 - }  
38 -  
39 - //删除原数据  
40 - companyAuthorityRepository.deleteByRoleId(roleId);  
41 -  
42 - //重新写入数据  
43 - companyAuthorityRepository.save(list);  
44 -  
45 - rs.put("status", ResponseCode.SUCCESS);  
46 - } catch (Exception e) {  
47 - logger.error("", e);  
48 - rs.put("status", ResponseCode.ERROR);  
49 - }  
50 -  
51 - return rs;  
52 - }  
53 -  
54 - @Override  
55 - public List<CompanyAuthority> findByUser(SysUser user) {  
56 - Set<Role> roles = user.getRoles();  
57 - if(roles == null || roles.size() == 0)  
58 - return null;  
59 -  
60 - List<Integer> idx = new ArrayList<>();  
61 - for(Role r : roles)  
62 - idx.add(r.getId());  
63 -  
64 - List<CompanyAuthority> cAuths = companyAuthorityRepository.findByRoles(idx);  
65 - return cAuths;  
66 - }  
67 -} 1 +package com.bsth.service.sys.impl;
  2 +
  3 +import com.bsth.common.ResponseCode;
  4 +import com.bsth.entity.sys.CompanyAuthority;
  5 +import com.bsth.entity.sys.Role;
  6 +import com.bsth.entity.sys.SysUser;
  7 +import com.bsth.repository.sys.CompanyAuthorityRepository;
  8 +import com.bsth.service.impl.BaseServiceImpl;
  9 +import com.bsth.service.sys.CompanyAuthorityService;
  10 +import org.slf4j.Logger;
  11 +import org.slf4j.LoggerFactory;
  12 +import org.springframework.beans.factory.annotation.Autowired;
  13 +import org.springframework.stereotype.Service;
  14 +import org.springframework.transaction.annotation.Transactional;
  15 +
  16 +import java.util.*;
  17 +
  18 +/**
  19 + * Created by panzhao on 2016/11/22.
  20 + */
  21 +@Service
  22 +public class CompanyAuthorityServiceImpl extends BaseServiceImpl<CompanyAuthority, Integer> implements CompanyAuthorityService {
  23 +
  24 + @Autowired
  25 + CompanyAuthorityRepository companyAuthorityRepository;
  26 +
  27 + Logger logger = LoggerFactory.getLogger(this.getClass());
  28 +
  29 + @Transactional
  30 + @Override
  31 + public Map<String, Object> save(Integer roleId, List<CompanyAuthority> list) {
  32 + Map<String, Object> rs = new HashMap();
  33 +
  34 + try {
  35 + for(CompanyAuthority cauth : list){
  36 + cauth.setRoleId(roleId);
  37 + }
  38 +
  39 + //删除原数据
  40 + companyAuthorityRepository.deleteByRoleId(roleId);
  41 +
  42 + //重新写入数据
  43 + companyAuthorityRepository.save(list);
  44 +
  45 + rs.put("status", ResponseCode.SUCCESS);
  46 + } catch (Exception e) {
  47 + logger.error("", e);
  48 + rs.put("status", ResponseCode.ERROR);
  49 + }
  50 +
  51 + return rs;
  52 + }
  53 +
  54 + @Override
  55 + public List<CompanyAuthority> findByUser(SysUser user) {
  56 + Set<Role> roles = user.getRoles();
  57 + if(roles == null || roles.size() == 0)
  58 + return null;
  59 +
  60 + List<Integer> idx = new ArrayList<>();
  61 + for(Role r : roles)
  62 + idx.add(r.getId());
  63 +
  64 + List<CompanyAuthority> cAuths = companyAuthorityRepository.findByRoles(idx);
  65 + return cAuths;
  66 + }
  67 +}
src/main/resources/application-dev.properties
@@ -8,7 +8,7 @@ spring.jpa.hibernate.naming_strategy= org.hibernate.cfg.ImprovedNamingStrategy @@ -8,7 +8,7 @@ spring.jpa.hibernate.naming_strategy= org.hibernate.cfg.ImprovedNamingStrategy
8 spring.jpa.database= MYSQL 8 spring.jpa.database= MYSQL
9 spring.jpa.show-sql= false 9 spring.jpa.show-sql= false
10 spring.datasource.driver-class-name= com.mysql.jdbc.Driver 10 spring.datasource.driver-class-name= com.mysql.jdbc.Driver
11 -spring.datasource.url= jdbc:mysql://192.168.168.201:3306/mh_control?useUnicode=true&characterEncoding=utf-8&useSSL=false 11 +spring.datasource.url= jdbc:mysql://192.168.168.201/mh_control?useUnicode=true&characterEncoding=utf-8&useSSL=false
12 spring.datasource.username= root 12 spring.datasource.username= root
13 spring.datasource.password= 123456 13 spring.datasource.password= 123456
14 #DATASOURCE 14 #DATASOURCE
src/main/resources/datatools/ktrs/ttinfodetailoutputforedit.ktr
1 -<?xml version="1.0" encoding="UTF-8"?>  
2 -<transformation>  
3 - <info>  
4 - <name>ttinfodetailoutputforedit</name>  
5 - <description/>  
6 - <extended_description/>  
7 - <trans_version/>  
8 - <trans_type>Normal</trans_type>  
9 - <trans_status>0</trans_status>  
10 - <directory>&#x2f;</directory>  
11 - <parameters>  
12 - <parameter>  
13 - <name>tempfilepath</name>  
14 - <default_value/>  
15 - <description>&#x9ed8;&#x8ba4;&#x8f93;&#x51fa;&#x7684;&#x6587;&#x4ef6;&#x8def;&#x5f84;&#x540d;</description>  
16 - </parameter>  
17 - <parameter>  
18 - <name>ttid</name>  
19 - <default_value/>  
20 - <description>&#x65f6;&#x523b;&#x8868;id</description>  
21 - </parameter>  
22 - <parameter>  
23 - <name>xlid</name>  
24 - <default_value/>  
25 - <description>&#x7ebf;&#x8def;id</description>  
26 - </parameter>  
27 - </parameters>  
28 - <log>  
29 -<trans-log-table><connection/>  
30 -<schema/>  
31 -<table/>  
32 -<size_limit_lines/>  
33 -<interval/>  
34 -<timeout_days/>  
35 -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STATUS</id><enabled>Y</enabled><name>STATUS</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name><subject/></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name><subject/></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name><subject/></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name><subject/></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name><subject/></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name><subject/></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>STARTDATE</id><enabled>Y</enabled><name>STARTDATE</name></field><field><id>ENDDATE</id><enabled>Y</enabled><name>ENDDATE</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>DEPDATE</id><enabled>Y</enabled><name>DEPDATE</name></field><field><id>REPLAYDATE</id><enabled>Y</enabled><name>REPLAYDATE</name></field><field><id>LOG_FIELD</id><enabled>Y</enabled><name>LOG_FIELD</name></field><field><id>EXECUTING_SERVER</id><enabled>N</enabled><name>EXECUTING_SERVER</name></field><field><id>EXECUTING_USER</id><enabled>N</enabled><name>EXECUTING_USER</name></field><field><id>CLIENT</id><enabled>N</enabled><name>CLIENT</name></field></trans-log-table>  
36 -<perf-log-table><connection/>  
37 -<schema/>  
38 -<table/>  
39 -<interval/>  
40 -<timeout_days/>  
41 -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>SEQ_NR</id><enabled>Y</enabled><name>SEQ_NR</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>INPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>INPUT_BUFFER_ROWS</name></field><field><id>OUTPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>OUTPUT_BUFFER_ROWS</name></field></perf-log-table>  
42 -<channel-log-table><connection/>  
43 -<schema/>  
44 -<table/>  
45 -<timeout_days/>  
46 -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>LOGGING_OBJECT_TYPE</id><enabled>Y</enabled><name>LOGGING_OBJECT_TYPE</name></field><field><id>OBJECT_NAME</id><enabled>Y</enabled><name>OBJECT_NAME</name></field><field><id>OBJECT_COPY</id><enabled>Y</enabled><name>OBJECT_COPY</name></field><field><id>REPOSITORY_DIRECTORY</id><enabled>Y</enabled><name>REPOSITORY_DIRECTORY</name></field><field><id>FILENAME</id><enabled>Y</enabled><name>FILENAME</name></field><field><id>OBJECT_ID</id><enabled>Y</enabled><name>OBJECT_ID</name></field><field><id>OBJECT_REVISION</id><enabled>Y</enabled><name>OBJECT_REVISION</name></field><field><id>PARENT_CHANNEL_ID</id><enabled>Y</enabled><name>PARENT_CHANNEL_ID</name></field><field><id>ROOT_CHANNEL_ID</id><enabled>Y</enabled><name>ROOT_CHANNEL_ID</name></field></channel-log-table>  
47 -<step-log-table><connection/>  
48 -<schema/>  
49 -<table/>  
50 -<timeout_days/>  
51 -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>LOG_FIELD</id><enabled>N</enabled><name>LOG_FIELD</name></field></step-log-table>  
52 -<metrics-log-table><connection/>  
53 -<schema/>  
54 -<table/>  
55 -<timeout_days/>  
56 -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>METRICS_DATE</id><enabled>Y</enabled><name>METRICS_DATE</name></field><field><id>METRICS_CODE</id><enabled>Y</enabled><name>METRICS_CODE</name></field><field><id>METRICS_DESCRIPTION</id><enabled>Y</enabled><name>METRICS_DESCRIPTION</name></field><field><id>METRICS_SUBJECT</id><enabled>Y</enabled><name>METRICS_SUBJECT</name></field><field><id>METRICS_TYPE</id><enabled>Y</enabled><name>METRICS_TYPE</name></field><field><id>METRICS_VALUE</id><enabled>Y</enabled><name>METRICS_VALUE</name></field></metrics-log-table>  
57 - </log>  
58 - <maxdate>  
59 - <connection/>  
60 - <table/>  
61 - <field/>  
62 - <offset>0.0</offset>  
63 - <maxdiff>0.0</maxdiff>  
64 - </maxdate>  
65 - <size_rowset>10000</size_rowset>  
66 - <sleep_time_empty>50</sleep_time_empty>  
67 - <sleep_time_full>50</sleep_time_full>  
68 - <unique_connections>N</unique_connections>  
69 - <feedback_shown>Y</feedback_shown>  
70 - <feedback_size>50000</feedback_size>  
71 - <using_thread_priorities>Y</using_thread_priorities>  
72 - <shared_objects_file/>  
73 - <capture_step_performance>N</capture_step_performance>  
74 - <step_performance_capturing_delay>1000</step_performance_capturing_delay>  
75 - <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit>  
76 - <dependencies>  
77 - </dependencies>  
78 - <partitionschemas>  
79 - </partitionschemas>  
80 - <slaveservers>  
81 - </slaveservers>  
82 - <clusterschemas>  
83 - </clusterschemas>  
84 - <created_user>-</created_user>  
85 - <created_date>2016&#x2f;07&#x2f;11 21&#x3a;45&#x3a;05.041</created_date>  
86 - <modified_user>-</modified_user>  
87 - <modified_date>2016&#x2f;07&#x2f;11 21&#x3a;45&#x3a;05.041</modified_date>  
88 - <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA&#x3d;</key_for_session_key>  
89 - <is_key_private>N</is_key_private>  
90 - </info>  
91 - <notepads>  
92 - </notepads>  
93 - <connection>  
94 - <name>bus_control_variable</name>  
95 - <server>&#x24;&#x7b;v_db_ip&#x7d;</server>  
96 - <type>MYSQL</type>  
97 - <access>Native</access>  
98 - <database>&#x24;&#x7b;v_db_dname&#x7d;</database>  
99 - <port>3306</port>  
100 - <username>&#x24;&#x7b;v_db_uname&#x7d;</username>  
101 - <password>&#x24;&#x7b;v_db_pwd&#x7d;</password>  
102 - <servername/>  
103 - <data_tablespace/>  
104 - <index_tablespace/>  
105 - <attributes>  
106 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
107 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
108 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
109 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
110 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
111 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
112 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
113 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
114 - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>  
115 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
116 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
117 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
118 - </attributes>  
119 - </connection>  
120 - <connection>  
121 - <name>bus_control_&#x516c;&#x53f8;_201</name>  
122 - <server>localhost</server>  
123 - <type>MYSQL</type>  
124 - <access>Native</access>  
125 - <database>control</database>  
126 - <port>3306</port>  
127 - <username>root</username>  
128 - <password>Encrypted </password>  
129 - <servername/>  
130 - <data_tablespace/>  
131 - <index_tablespace/>  
132 - <attributes>  
133 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
134 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
135 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
136 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
137 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
138 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
139 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
140 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
141 - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>  
142 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
143 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
144 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
145 - </attributes>  
146 - </connection>  
147 - <connection>  
148 - <name>bus_control_&#x672c;&#x673a;</name>  
149 - <server>localhost</server>  
150 - <type>MYSQL</type>  
151 - <access>Native</access>  
152 - <database>control</database>  
153 - <port>3306</port>  
154 - <username>root</username>  
155 - <password>Encrypted </password>  
156 - <servername/>  
157 - <data_tablespace/>  
158 - <index_tablespace/>  
159 - <attributes>  
160 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
161 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
162 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
163 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
164 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
165 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
166 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
167 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
168 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
169 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
170 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
171 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
172 - </attributes>  
173 - </connection>  
174 - <connection>  
175 - <name>xlab_mysql_youle</name>  
176 - <server>101.231.124.8</server>  
177 - <type>MYSQL</type>  
178 - <access>Native</access>  
179 - <database>xlab_youle</database>  
180 - <port>45687</port>  
181 - <username>xlab-youle</username>  
182 - <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password>  
183 - <servername/>  
184 - <data_tablespace/>  
185 - <index_tablespace/>  
186 - <attributes>  
187 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
188 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
189 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
190 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
191 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
192 - <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute>  
193 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
194 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
195 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
196 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>  
197 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>  
198 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
199 - </attributes>  
200 - </connection>  
201 - <connection>  
202 - <name>xlab_mysql_youle&#xff08;&#x672c;&#x673a;&#xff09;</name>  
203 - <server>localhost</server>  
204 - <type>MYSQL</type>  
205 - <access>Native</access>  
206 - <database>xlab_youle</database>  
207 - <port>3306</port>  
208 - <username>root</username>  
209 - <password>Encrypted </password>  
210 - <servername/>  
211 - <data_tablespace/>  
212 - <index_tablespace/>  
213 - <attributes>  
214 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
215 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
216 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
217 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
218 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
219 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
220 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
221 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
222 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
223 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>  
224 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>  
225 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
226 - </attributes>  
227 - </connection>  
228 - <connection>  
229 - <name>xlab_youle</name>  
230 - <server/>  
231 - <type>MYSQL</type>  
232 - <access>JNDI</access>  
233 - <database>xlab_youle</database>  
234 - <port>1521</port>  
235 - <username/>  
236 - <password>Encrypted </password>  
237 - <servername/>  
238 - <data_tablespace/>  
239 - <index_tablespace/>  
240 - <attributes>  
241 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
242 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
243 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
244 - <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>  
245 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
246 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
247 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
248 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
249 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
250 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
251 - </attributes>  
252 - </connection>  
253 - <order>  
254 - <hop> <from>&#x8868;&#x8f93;&#x5165;</from><to>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;</to><enabled>Y</enabled> </hop>  
255 - <hop> <from>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;</from><to>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x7ad9;&#x70b9;&#x67e5;&#x8be2;&#x7528;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>  
256 - <hop> <from>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;</from><to>&#x8fdb;&#x573a;&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x67e5;&#x8be2;&#x7528;&#x7684;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>  
257 - <hop> <from>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x7ad9;&#x70b9;&#x67e5;&#x8be2;&#x7528;&#x6570;&#x636e;</from><to>&#x67e5;&#x627e;&#x8d77;&#x70b9;&#x7ad9;&#x540d;&#x79f0;</to><enabled>Y</enabled> </hop>  
258 - <hop> <from>&#x67e5;&#x627e;&#x8d77;&#x70b9;&#x7ad9;&#x540d;&#x79f0;</from><to>&#x67e5;&#x627e;&#x7ec8;&#x70b9;&#x7ad9;&#x540d;&#x79f0;</to><enabled>Y</enabled> </hop>  
259 - <hop> <from>&#x67e5;&#x627e;&#x7ec8;&#x70b9;&#x7ad9;&#x540d;&#x79f0;</from><to>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</to><enabled>Y</enabled> </hop>  
260 - <hop> <from>&#x8fdb;&#x573a;&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x67e5;&#x8be2;&#x7528;&#x7684;&#x6570;&#x636e;</from><to>&#x5b57;&#x6bb5;&#x9009;&#x62e9; 2</to><enabled>Y</enabled> </hop>  
261 - <hop> <from>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</from><to>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</to><enabled>Y</enabled> </hop>  
262 - <hop> <from>&#x5b57;&#x6bb5;&#x9009;&#x62e9; 2</from><to>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</to><enabled>Y</enabled> </hop>  
263 - <hop> <from>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</from><to>&#x8ba1;&#x7b97;&#x53d1;&#x8f66;&#x7ad9;&#x540d;</to><enabled>Y</enabled> </hop>  
264 - <hop> <from>&#x8ba1;&#x7b97;&#x53d1;&#x8f66;&#x7ad9;&#x540d;</from><to>&#x5217;&#x8f6c;&#x884c;</to><enabled>Y</enabled> </hop>  
265 - <hop> <from>&#x5217;&#x8f6c;&#x884c;</from><to>&#x53bb;&#x9664;&#x5b57;&#x6bb5;</to><enabled>Y</enabled> </hop>  
266 - <hop> <from>&#x53bb;&#x9664;&#x5b57;&#x6bb5;</from><to>Excel&#x8f93;&#x51fa;</to><enabled>Y</enabled> </hop>  
267 - <hop> <from>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</from><to>&#x8868;&#x8f93;&#x5165;</to><enabled>Y</enabled> </hop>  
268 - </order>  
269 - <step>  
270 - <name>Excel&#x8f93;&#x51fa;</name>  
271 - <type>ExcelOutput</type>  
272 - <description/>  
273 - <distribute>Y</distribute>  
274 - <custom_distribution/>  
275 - <copies>1</copies>  
276 - <partitioning>  
277 - <method>none</method>  
278 - <schema_name/>  
279 - </partitioning>  
280 - <header>Y</header>  
281 - <footer>N</footer>  
282 - <encoding/>  
283 - <append>N</append>  
284 - <add_to_result_filenames>Y</add_to_result_filenames>  
285 - <file>  
286 - <name>&#x24;&#x7b;tempfilepath&#x7d;</name>  
287 - <extention>xls</extention>  
288 - <do_not_open_newfile_init>N</do_not_open_newfile_init>  
289 - <create_parent_folder>N</create_parent_folder>  
290 - <split>N</split>  
291 - <add_date>N</add_date>  
292 - <add_time>N</add_time>  
293 - <SpecifyFormat>N</SpecifyFormat>  
294 - <date_time_format/>  
295 - <sheetname>Sheet1</sheetname>  
296 - <autosizecolums>N</autosizecolums>  
297 - <nullisblank>N</nullisblank>  
298 - <protect_sheet>N</protect_sheet>  
299 - <password>Encrypted </password>  
300 - <splitevery>0</splitevery>  
301 - <usetempfiles>N</usetempfiles>  
302 - <tempdirectory/>  
303 - </file>  
304 - <template>  
305 - <enabled>N</enabled>  
306 - <append>N</append>  
307 - <filename>template.xls</filename>  
308 - </template>  
309 - <fields>  
310 - <field>  
311 - <name>lp</name>  
312 - <type>String</type>  
313 - <format/>  
314 - </field>  
315 - <field>  
316 - <name>fcno1_id</name>  
317 - <type>String</type>  
318 - <format/>  
319 - </field>  
320 - <field>  
321 - <name>fcno1_fcsj</name>  
322 - <type>String</type>  
323 - <format/>  
324 - </field>  
325 - <field>  
326 - <name>fcno1_zdname</name>  
327 - <type>String</type>  
328 - <format/>  
329 - </field>  
330 - <field>  
331 - <name>fcno1_bctype</name>  
332 - <type>String</type>  
333 - <format/>  
334 - </field>  
335 - <field>  
336 - <name>fcno1_xldir</name>  
337 - <type>String</type>  
338 - <format/>  
339 - </field>  
340 - <field>  
341 - <name>fcno1_isfb</name>  
342 - <type>String</type>  
343 - <format/>  
344 - </field>  
345 - <field>  
346 - <name>fcno2_id</name>  
347 - <type>String</type>  
348 - <format/>  
349 - </field>  
350 - <field>  
351 - <name>fcno2_fcsj</name>  
352 - <type>String</type>  
353 - <format/>  
354 - </field>  
355 - <field>  
356 - <name>fcno2_zdname</name>  
357 - <type>String</type>  
358 - <format/>  
359 - </field>  
360 - <field>  
361 - <name>fcno2_bctype</name>  
362 - <type>String</type>  
363 - <format/>  
364 - </field>  
365 - <field>  
366 - <name>fcno2_xldir</name>  
367 - <type>String</type>  
368 - <format/>  
369 - </field>  
370 - <field>  
371 - <name>fcno2_isfb</name>  
372 - <type>String</type>  
373 - <format/>  
374 - </field>  
375 - <field>  
376 - <name>fcno3_id</name>  
377 - <type>String</type>  
378 - <format/>  
379 - </field>  
380 - <field>  
381 - <name>fcno3_fcsj</name>  
382 - <type>String</type>  
383 - <format/>  
384 - </field>  
385 - <field>  
386 - <name>fcno3_zdname</name>  
387 - <type>String</type>  
388 - <format/>  
389 - </field>  
390 - <field>  
391 - <name>fcno3_bctype</name>  
392 - <type>String</type>  
393 - <format/>  
394 - </field>  
395 - <field>  
396 - <name>fcno3_xldir</name>  
397 - <type>String</type>  
398 - <format/>  
399 - </field>  
400 - <field>  
401 - <name>fcno3_isfb</name>  
402 - <type>String</type>  
403 - <format/>  
404 - </field>  
405 - <field>  
406 - <name>fcno4_id</name>  
407 - <type>String</type>  
408 - <format/>  
409 - </field>  
410 - <field>  
411 - <name>fcno4_fcsj</name>  
412 - <type>String</type>  
413 - <format/>  
414 - </field>  
415 - <field>  
416 - <name>fcno4_zdname</name>  
417 - <type>String</type>  
418 - <format/>  
419 - </field>  
420 - <field>  
421 - <name>fcno4_bctype</name>  
422 - <type>String</type>  
423 - <format/>  
424 - </field>  
425 - <field>  
426 - <name>fcno4_xldir</name>  
427 - <type>String</type>  
428 - <format/>  
429 - </field>  
430 - <field>  
431 - <name>fcno4_isfb</name>  
432 - <type>String</type>  
433 - <format/>  
434 - </field>  
435 - <field>  
436 - <name>fcno5_id</name>  
437 - <type>String</type>  
438 - <format/>  
439 - </field>  
440 - <field>  
441 - <name>fcno5_fcsj</name>  
442 - <type>String</type>  
443 - <format/>  
444 - </field>  
445 - <field>  
446 - <name>fcno5_zdname</name>  
447 - <type>String</type>  
448 - <format/>  
449 - </field>  
450 - <field>  
451 - <name>fcno5_bctype</name>  
452 - <type>String</type>  
453 - <format/>  
454 - </field>  
455 - <field>  
456 - <name>fcno5_xldir</name>  
457 - <type>String</type>  
458 - <format/>  
459 - </field>  
460 - <field>  
461 - <name>fcno5_isfb</name>  
462 - <type>String</type>  
463 - <format/>  
464 - </field>  
465 - <field>  
466 - <name>fcno6_id</name>  
467 - <type>String</type>  
468 - <format/>  
469 - </field>  
470 - <field>  
471 - <name>fcno6_fcsj</name>  
472 - <type>String</type>  
473 - <format/>  
474 - </field>  
475 - <field>  
476 - <name>fcno6_zdname</name>  
477 - <type>String</type>  
478 - <format/>  
479 - </field>  
480 - <field>  
481 - <name>fcno6_bctype</name>  
482 - <type>String</type>  
483 - <format/>  
484 - </field>  
485 - <field>  
486 - <name>fcno6_xldir</name>  
487 - <type>String</type>  
488 - <format/>  
489 - </field>  
490 - <field>  
491 - <name>fcno6_isfb</name>  
492 - <type>String</type>  
493 - <format/>  
494 - </field>  
495 - <field>  
496 - <name>fcno7_id</name>  
497 - <type>String</type>  
498 - <format/>  
499 - </field>  
500 - <field>  
501 - <name>fcno7_fcsj</name>  
502 - <type>String</type>  
503 - <format/>  
504 - </field>  
505 - <field>  
506 - <name>fcno7_zdname</name>  
507 - <type>String</type>  
508 - <format/>  
509 - </field>  
510 - <field>  
511 - <name>fcno7_bctype</name>  
512 - <type>String</type>  
513 - <format/>  
514 - </field>  
515 - <field>  
516 - <name>fcno7_xldir</name>  
517 - <type>String</type>  
518 - <format/>  
519 - </field>  
520 - <field>  
521 - <name>fcno7_isfb</name>  
522 - <type>String</type>  
523 - <format/>  
524 - </field>  
525 - <field>  
526 - <name>fcno8_id</name>  
527 - <type>String</type>  
528 - <format/>  
529 - </field>  
530 - <field>  
531 - <name>fcno8_fcsj</name>  
532 - <type>String</type>  
533 - <format/>  
534 - </field>  
535 - <field>  
536 - <name>fcno8_zdname</name>  
537 - <type>String</type>  
538 - <format/>  
539 - </field>  
540 - <field>  
541 - <name>fcno8_bctype</name>  
542 - <type>String</type>  
543 - <format/>  
544 - </field>  
545 - <field>  
546 - <name>fcno8_xldir</name>  
547 - <type>String</type>  
548 - <format/>  
549 - </field>  
550 - <field>  
551 - <name>fcno8_isfb</name>  
552 - <type>String</type>  
553 - <format/>  
554 - </field>  
555 - <field>  
556 - <name>fcno9_id</name>  
557 - <type>String</type>  
558 - <format/>  
559 - </field>  
560 - <field>  
561 - <name>fcno9_fcsj</name>  
562 - <type>String</type>  
563 - <format/>  
564 - </field>  
565 - <field>  
566 - <name>fcno9_zdname</name>  
567 - <type>String</type>  
568 - <format/>  
569 - </field>  
570 - <field>  
571 - <name>fcno9_bctype</name>  
572 - <type>String</type>  
573 - <format/>  
574 - </field>  
575 - <field>  
576 - <name>fcno9_xldir</name>  
577 - <type>String</type>  
578 - <format/>  
579 - </field>  
580 - <field>  
581 - <name>fcno9_isfb</name>  
582 - <type>String</type>  
583 - <format/>  
584 - </field>  
585 - <field>  
586 - <name>fcno10_id</name>  
587 - <type>String</type>  
588 - <format/>  
589 - </field>  
590 - <field>  
591 - <name>fcno10_fcsj</name>  
592 - <type>String</type>  
593 - <format/>  
594 - </field>  
595 - <field>  
596 - <name>fcno10_zdname</name>  
597 - <type>String</type>  
598 - <format/>  
599 - </field>  
600 - <field>  
601 - <name>fcno10_bctype</name>  
602 - <type>String</type>  
603 - <format/>  
604 - </field>  
605 - <field>  
606 - <name>fcno10_xldir</name>  
607 - <type>String</type>  
608 - <format/>  
609 - </field>  
610 - <field>  
611 - <name>fcno10_isfb</name>  
612 - <type>String</type>  
613 - <format/>  
614 - </field>  
615 - <field>  
616 - <name>fcno11_id</name>  
617 - <type>String</type>  
618 - <format/>  
619 - </field>  
620 - <field>  
621 - <name>fcno11_fcsj</name>  
622 - <type>String</type>  
623 - <format/>  
624 - </field>  
625 - <field>  
626 - <name>fcno11_zdname</name>  
627 - <type>String</type>  
628 - <format/>  
629 - </field>  
630 - <field>  
631 - <name>fcno11_bctype</name>  
632 - <type>String</type>  
633 - <format/>  
634 - </field>  
635 - <field>  
636 - <name>fcno11_xldir</name>  
637 - <type>String</type>  
638 - <format/>  
639 - </field>  
640 - <field>  
641 - <name>fcno11_isfb</name>  
642 - <type>String</type>  
643 - <format/>  
644 - </field>  
645 - <field>  
646 - <name>fcno12_id</name>  
647 - <type>String</type>  
648 - <format/>  
649 - </field>  
650 - <field>  
651 - <name>fcno12_fcsj</name>  
652 - <type>String</type>  
653 - <format/>  
654 - </field>  
655 - <field>  
656 - <name>fcno12_zdname</name>  
657 - <type>String</type>  
658 - <format/>  
659 - </field>  
660 - <field>  
661 - <name>fcno12_bctype</name>  
662 - <type>String</type>  
663 - <format/>  
664 - </field>  
665 - <field>  
666 - <name>fcno12_xldir</name>  
667 - <type>String</type>  
668 - <format/>  
669 - </field>  
670 - <field>  
671 - <name>fcno12_isfb</name>  
672 - <type>String</type>  
673 - <format/>  
674 - </field>  
675 - <field>  
676 - <name>fcno13_id</name>  
677 - <type>String</type>  
678 - <format/>  
679 - </field>  
680 - <field>  
681 - <name>fcno13_fcsj</name>  
682 - <type>String</type>  
683 - <format/>  
684 - </field>  
685 - <field>  
686 - <name>fcno13_zdname</name>  
687 - <type>String</type>  
688 - <format/>  
689 - </field>  
690 - <field>  
691 - <name>fcno13_bctype</name>  
692 - <type>String</type>  
693 - <format/>  
694 - </field>  
695 - <field>  
696 - <name>fcno13_xldir</name>  
697 - <type>String</type>  
698 - <format/>  
699 - </field>  
700 - <field>  
701 - <name>fcno13_isfb</name>  
702 - <type>String</type>  
703 - <format/>  
704 - </field>  
705 - <field>  
706 - <name>fcno14_id</name>  
707 - <type>String</type>  
708 - <format/>  
709 - </field>  
710 - <field>  
711 - <name>fcno14_fcsj</name>  
712 - <type>String</type>  
713 - <format/>  
714 - </field>  
715 - <field>  
716 - <name>fcno14_zdname</name>  
717 - <type>String</type>  
718 - <format/>  
719 - </field>  
720 - <field>  
721 - <name>fcno14_bctype</name>  
722 - <type>String</type>  
723 - <format/>  
724 - </field>  
725 - <field>  
726 - <name>fcno14_xldir</name>  
727 - <type>String</type>  
728 - <format/>  
729 - </field>  
730 - <field>  
731 - <name>fcno14_isfb</name>  
732 - <type>String</type>  
733 - <format/>  
734 - </field>  
735 - <field>  
736 - <name>fcno15_id</name>  
737 - <type>String</type>  
738 - <format/>  
739 - </field>  
740 - <field>  
741 - <name>fcno15_fcsj</name>  
742 - <type>String</type>  
743 - <format/>  
744 - </field>  
745 - <field>  
746 - <name>fcno15_zdname</name>  
747 - <type>String</type>  
748 - <format/>  
749 - </field>  
750 - <field>  
751 - <name>fcno15_bctype</name>  
752 - <type>String</type>  
753 - <format/>  
754 - </field>  
755 - <field>  
756 - <name>fcno15_xldir</name>  
757 - <type>String</type>  
758 - <format/>  
759 - </field>  
760 - <field>  
761 - <name>fcno15_isfb</name>  
762 - <type>String</type>  
763 - <format/>  
764 - </field>  
765 - <field>  
766 - <name>fcno16_id</name>  
767 - <type>String</type>  
768 - <format/>  
769 - </field>  
770 - <field>  
771 - <name>fcno16_fcsj</name>  
772 - <type>String</type>  
773 - <format/>  
774 - </field>  
775 - <field>  
776 - <name>fcno16_zdname</name>  
777 - <type>String</type>  
778 - <format/>  
779 - </field>  
780 - <field>  
781 - <name>fcno16_bctype</name>  
782 - <type>String</type>  
783 - <format/>  
784 - </field>  
785 - <field>  
786 - <name>fcno16_xldir</name>  
787 - <type>String</type>  
788 - <format/>  
789 - </field>  
790 - <field>  
791 - <name>fcno16_isfb</name>  
792 - <type>String</type>  
793 - <format/>  
794 - </field>  
795 - <field>  
796 - <name>fcno17_id</name>  
797 - <type>String</type>  
798 - <format/>  
799 - </field>  
800 - <field>  
801 - <name>fcno17_fcsj</name>  
802 - <type>String</type>  
803 - <format/>  
804 - </field>  
805 - <field>  
806 - <name>fcno17_zdname</name>  
807 - <type>String</type>  
808 - <format/>  
809 - </field>  
810 - <field>  
811 - <name>fcno17_bctype</name>  
812 - <type>String</type>  
813 - <format/>  
814 - </field>  
815 - <field>  
816 - <name>fcno17_xldir</name>  
817 - <type>String</type>  
818 - <format/>  
819 - </field>  
820 - <field>  
821 - <name>fcno17_isfb</name>  
822 - <type>String</type>  
823 - <format/>  
824 - </field>  
825 - <field>  
826 - <name>fcno18_id</name>  
827 - <type>String</type>  
828 - <format/>  
829 - </field>  
830 - <field>  
831 - <name>fcno18_fcsj</name>  
832 - <type>String</type>  
833 - <format/>  
834 - </field>  
835 - <field>  
836 - <name>fcno18_zdname</name>  
837 - <type>String</type>  
838 - <format/>  
839 - </field>  
840 - <field>  
841 - <name>fcno18_bctype</name>  
842 - <type>String</type>  
843 - <format/>  
844 - </field>  
845 - <field>  
846 - <name>fcno18_xldir</name>  
847 - <type>String</type>  
848 - <format/>  
849 - </field>  
850 - <field>  
851 - <name>fcno18_isfb</name>  
852 - <type>String</type>  
853 - <format/>  
854 - </field>  
855 - <field>  
856 - <name>fcno19_id</name>  
857 - <type>String</type>  
858 - <format/>  
859 - </field>  
860 - <field>  
861 - <name>fcno19_fcsj</name>  
862 - <type>String</type>  
863 - <format/>  
864 - </field>  
865 - <field>  
866 - <name>fcno19_zdname</name>  
867 - <type>String</type>  
868 - <format/>  
869 - </field>  
870 - <field>  
871 - <name>fcno19_bctype</name>  
872 - <type>String</type>  
873 - <format/>  
874 - </field>  
875 - <field>  
876 - <name>fcno19_xldir</name>  
877 - <type>String</type>  
878 - <format/>  
879 - </field>  
880 - <field>  
881 - <name>fcno19_isfb</name>  
882 - <type>String</type>  
883 - <format/>  
884 - </field>  
885 - <field>  
886 - <name>fcno20_id</name>  
887 - <type>String</type>  
888 - <format/>  
889 - </field>  
890 - <field>  
891 - <name>fcno20_fcsj</name>  
892 - <type>String</type>  
893 - <format/>  
894 - </field>  
895 - <field>  
896 - <name>fcno20_zdname</name>  
897 - <type>String</type>  
898 - <format/>  
899 - </field>  
900 - <field>  
901 - <name>fcno20_bctype</name>  
902 - <type>String</type>  
903 - <format/>  
904 - </field>  
905 - <field>  
906 - <name>fcno20_xldir</name>  
907 - <type>String</type>  
908 - <format/>  
909 - </field>  
910 - <field>  
911 - <name>fcno20_isfb</name>  
912 - <type>String</type>  
913 - <format/>  
914 - </field>  
915 - <field>  
916 - <name>fcno21_id</name>  
917 - <type>String</type>  
918 - <format/>  
919 - </field>  
920 - <field>  
921 - <name>fcno21_fcsj</name>  
922 - <type>String</type>  
923 - <format/>  
924 - </field>  
925 - <field>  
926 - <name>fcno21_zdname</name>  
927 - <type>String</type>  
928 - <format/>  
929 - </field>  
930 - <field>  
931 - <name>fcno21_bctype</name>  
932 - <type>String</type>  
933 - <format/>  
934 - </field>  
935 - <field>  
936 - <name>fcno21_xldir</name>  
937 - <type>String</type>  
938 - <format/>  
939 - </field>  
940 - <field>  
941 - <name>fcno21_isfb</name>  
942 - <type>String</type>  
943 - <format/>  
944 - </field>  
945 - <field>  
946 - <name>fcno22_id</name>  
947 - <type>String</type>  
948 - <format/>  
949 - </field>  
950 - <field>  
951 - <name>fcno22_fcsj</name>  
952 - <type>String</type>  
953 - <format/>  
954 - </field>  
955 - <field>  
956 - <name>fcno22_zdname</name>  
957 - <type>String</type>  
958 - <format/>  
959 - </field>  
960 - <field>  
961 - <name>fcno22_bctype</name>  
962 - <type>String</type>  
963 - <format/>  
964 - </field>  
965 - <field>  
966 - <name>fcno22_xldir</name>  
967 - <type>String</type>  
968 - <format/>  
969 - </field>  
970 - <field>  
971 - <name>fcno22_isfb</name>  
972 - <type>String</type>  
973 - <format/>  
974 - </field>  
975 - <field>  
976 - <name>fcno23_id</name>  
977 - <type>String</type>  
978 - <format/>  
979 - </field>  
980 - <field>  
981 - <name>fcno23_fcsj</name>  
982 - <type>String</type>  
983 - <format/>  
984 - </field>  
985 - <field>  
986 - <name>fcno23_zdname</name>  
987 - <type>String</type>  
988 - <format/>  
989 - </field>  
990 - <field>  
991 - <name>fcno23_bctype</name>  
992 - <type>String</type>  
993 - <format/>  
994 - </field>  
995 - <field>  
996 - <name>fcno23_xldir</name>  
997 - <type>String</type>  
998 - <format/>  
999 - </field>  
1000 - <field>  
1001 - <name>fcno23_isfb</name>  
1002 - <type>String</type>  
1003 - <format/>  
1004 - </field>  
1005 - <field>  
1006 - <name>fcno24_id</name>  
1007 - <type>String</type>  
1008 - <format/>  
1009 - </field>  
1010 - <field>  
1011 - <name>fcno24_fcsj</name>  
1012 - <type>String</type>  
1013 - <format/>  
1014 - </field>  
1015 - <field>  
1016 - <name>fcno24_zdname</name>  
1017 - <type>String</type>  
1018 - <format/>  
1019 - </field>  
1020 - <field>  
1021 - <name>fcno24_bctype</name>  
1022 - <type>String</type>  
1023 - <format/>  
1024 - </field>  
1025 - <field>  
1026 - <name>fcno24_xldir</name>  
1027 - <type>String</type>  
1028 - <format/>  
1029 - </field>  
1030 - <field>  
1031 - <name>fcno24_isfb</name>  
1032 - <type>String</type>  
1033 - <format/>  
1034 - </field>  
1035 - <field>  
1036 - <name>fcno25_id</name>  
1037 - <type>String</type>  
1038 - <format/>  
1039 - </field>  
1040 - <field>  
1041 - <name>fcno25_fcsj</name>  
1042 - <type>String</type>  
1043 - <format/>  
1044 - </field>  
1045 - <field>  
1046 - <name>fcno25_zdname</name>  
1047 - <type>String</type>  
1048 - <format/>  
1049 - </field>  
1050 - <field>  
1051 - <name>fcno25_bctype</name>  
1052 - <type>String</type>  
1053 - <format/>  
1054 - </field>  
1055 - <field>  
1056 - <name>fcno25_xldir</name>  
1057 - <type>String</type>  
1058 - <format/>  
1059 - </field>  
1060 - <field>  
1061 - <name>fcno25_isfb</name>  
1062 - <type>String</type>  
1063 - <format/>  
1064 - </field>  
1065 - <field>  
1066 - <name>fcno26_id</name>  
1067 - <type>String</type>  
1068 - <format/>  
1069 - </field>  
1070 - <field>  
1071 - <name>fcno26_fcsj</name>  
1072 - <type>String</type>  
1073 - <format/>  
1074 - </field>  
1075 - <field>  
1076 - <name>fcno26_zdname</name>  
1077 - <type>String</type>  
1078 - <format/>  
1079 - </field>  
1080 - <field>  
1081 - <name>fcno26_bctype</name>  
1082 - <type>String</type>  
1083 - <format/>  
1084 - </field>  
1085 - <field>  
1086 - <name>fcno26_xldir</name>  
1087 - <type>String</type>  
1088 - <format/>  
1089 - </field>  
1090 - <field>  
1091 - <name>fcno26_isfb</name>  
1092 - <type>String</type>  
1093 - <format/>  
1094 - </field>  
1095 - <field>  
1096 - <name>fcno27_id</name>  
1097 - <type>String</type>  
1098 - <format/>  
1099 - </field>  
1100 - <field>  
1101 - <name>fcno27_fcsj</name>  
1102 - <type>String</type>  
1103 - <format/>  
1104 - </field>  
1105 - <field>  
1106 - <name>fcno27_zdname</name>  
1107 - <type>String</type>  
1108 - <format/>  
1109 - </field>  
1110 - <field>  
1111 - <name>fcno27_bctype</name>  
1112 - <type>String</type>  
1113 - <format/>  
1114 - </field>  
1115 - <field>  
1116 - <name>fcno27_xldir</name>  
1117 - <type>String</type>  
1118 - <format/>  
1119 - </field>  
1120 - <field>  
1121 - <name>fcno27_isfb</name>  
1122 - <type>String</type>  
1123 - <format/>  
1124 - </field>  
1125 - <field>  
1126 - <name>fcno28_id</name>  
1127 - <type>String</type>  
1128 - <format/>  
1129 - </field>  
1130 - <field>  
1131 - <name>fcno28_fcsj</name>  
1132 - <type>String</type>  
1133 - <format/>  
1134 - </field>  
1135 - <field>  
1136 - <name>fcno28_zdname</name>  
1137 - <type>String</type>  
1138 - <format/>  
1139 - </field>  
1140 - <field>  
1141 - <name>fcno28_bctype</name>  
1142 - <type>String</type>  
1143 - <format/>  
1144 - </field>  
1145 - <field>  
1146 - <name>fcno28_xldir</name>  
1147 - <type>String</type>  
1148 - <format/>  
1149 - </field>  
1150 - <field>  
1151 - <name>fcno28_isfb</name>  
1152 - <type>String</type>  
1153 - <format/>  
1154 - </field>  
1155 - <field>  
1156 - <name>fcno29_id</name>  
1157 - <type>String</type>  
1158 - <format/>  
1159 - </field>  
1160 - <field>  
1161 - <name>fcno29_fcsj</name>  
1162 - <type>String</type>  
1163 - <format/>  
1164 - </field>  
1165 - <field>  
1166 - <name>fcno29_zdname</name>  
1167 - <type>String</type>  
1168 - <format/>  
1169 - </field>  
1170 - <field>  
1171 - <name>fcno29_bctype</name>  
1172 - <type>String</type>  
1173 - <format/>  
1174 - </field>  
1175 - <field>  
1176 - <name>fcno29_xldir</name>  
1177 - <type>String</type>  
1178 - <format/>  
1179 - </field>  
1180 - <field>  
1181 - <name>fcno29_isfb</name>  
1182 - <type>String</type>  
1183 - <format/>  
1184 - </field>  
1185 - <field>  
1186 - <name>fcno30_id</name>  
1187 - <type>String</type>  
1188 - <format/>  
1189 - </field>  
1190 - <field>  
1191 - <name>fcno30_fcsj</name>  
1192 - <type>String</type>  
1193 - <format/>  
1194 - </field>  
1195 - <field>  
1196 - <name>fcno30_zdname</name>  
1197 - <type>String</type>  
1198 - <format/>  
1199 - </field>  
1200 - <field>  
1201 - <name>fcno30_bctype</name>  
1202 - <type>String</type>  
1203 - <format/>  
1204 - </field>  
1205 - <field>  
1206 - <name>fcno30_xldir</name>  
1207 - <type>String</type>  
1208 - <format/>  
1209 - </field>  
1210 - <field>  
1211 - <name>fcno30_isfb</name>  
1212 - <type>String</type>  
1213 - <format/>  
1214 - </field>  
1215 - </fields>  
1216 - <custom>  
1217 - <header_font_name>arial</header_font_name>  
1218 - <header_font_size>10</header_font_size>  
1219 - <header_font_bold>N</header_font_bold>  
1220 - <header_font_italic>N</header_font_italic>  
1221 - <header_font_underline>no</header_font_underline>  
1222 - <header_font_orientation>horizontal</header_font_orientation>  
1223 - <header_font_color>black</header_font_color>  
1224 - <header_background_color>none</header_background_color>  
1225 - <header_row_height>255</header_row_height>  
1226 - <header_alignment>left</header_alignment>  
1227 - <header_image/>  
1228 - <row_font_name>arial</row_font_name>  
1229 - <row_font_size>10</row_font_size>  
1230 - <row_font_color>black</row_font_color>  
1231 - <row_background_color>none</row_background_color>  
1232 - </custom>  
1233 - <cluster_schema/>  
1234 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1235 - <xloc>696</xloc>  
1236 - <yloc>476</yloc>  
1237 - <draw>Y</draw>  
1238 - </GUI>  
1239 - </step>  
1240 -  
1241 - <step>  
1242 - <name>&#x5217;&#x8f6c;&#x884c;</name>  
1243 - <type>Denormaliser</type>  
1244 - <description/>  
1245 - <distribute>Y</distribute>  
1246 - <custom_distribution/>  
1247 - <copies>1</copies>  
1248 - <partitioning>  
1249 - <method>none</method>  
1250 - <schema_name/>  
1251 - </partitioning>  
1252 - <key_field>fcno</key_field>  
1253 - <group>  
1254 - <field>  
1255 - <name>lp</name>  
1256 - </field>  
1257 - </group>  
1258 - <fields>  
1259 - <field>  
1260 - <field_name>id</field_name>  
1261 - <key_value>1</key_value>  
1262 - <target_name>fcno1_id</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>fcsj</field_name>  
1275 - <key_value>1</key_value>  
1276 - <target_name>fcno1_fcsj</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>fczdName</field_name>  
1289 - <key_value>1</key_value>  
1290 - <target_name>fcno1_zdname</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>bc_type</field_name>  
1303 - <key_value>1</key_value>  
1304 - <target_name>fcno1_bctype</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>xl_dir</field_name>  
1317 - <key_value>1</key_value>  
1318 - <target_name>fcno1_xldir</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>isfb</field_name>  
1331 - <key_value>1</key_value>  
1332 - <target_name>fcno1_isfb</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>id</field_name>  
1345 - <key_value>2</key_value>  
1346 - <target_name>fcno2_id</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>fcsj</field_name>  
1359 - <key_value>2</key_value>  
1360 - <target_name>fcno2_fcsj</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>fczdName</field_name>  
1373 - <key_value>2</key_value>  
1374 - <target_name>fcno2_zdname</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>bc_type</field_name>  
1387 - <key_value>2</key_value>  
1388 - <target_name>fcno2_bctype</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>xl_dir</field_name>  
1401 - <key_value>2</key_value>  
1402 - <target_name>fcno2_xldir</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>isfb</field_name>  
1415 - <key_value>2</key_value>  
1416 - <target_name>fcno2_isfb</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>id</field_name>  
1429 - <key_value>3</key_value>  
1430 - <target_name>fcno3_id</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>fcsj</field_name>  
1443 - <key_value>3</key_value>  
1444 - <target_name>fcno3_fcsj</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>fczdName</field_name>  
1457 - <key_value>3</key_value>  
1458 - <target_name>fcno3_zdname</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>bc_type</field_name>  
1471 - <key_value>3</key_value>  
1472 - <target_name>fcno3_bctype</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>xl_dir</field_name>  
1485 - <key_value>3</key_value>  
1486 - <target_name>fcno3_xldir</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>isfb</field_name>  
1499 - <key_value>3</key_value>  
1500 - <target_name>fcno3_isfb</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>id</field_name>  
1513 - <key_value>4</key_value>  
1514 - <target_name>fcno4_id</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>fcsj</field_name>  
1527 - <key_value>4</key_value>  
1528 - <target_name>fcno4_fcsj</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>fczdName</field_name>  
1541 - <key_value>4</key_value>  
1542 - <target_name>fcno4_zdname</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>bc_type</field_name>  
1555 - <key_value>4</key_value>  
1556 - <target_name>fcno4_bctype</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>xl_dir</field_name>  
1569 - <key_value>4</key_value>  
1570 - <target_name>fcno4_xldir</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>isfb</field_name>  
1583 - <key_value>4</key_value>  
1584 - <target_name>fcno4_isfb</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>id</field_name>  
1597 - <key_value>5</key_value>  
1598 - <target_name>fcno5_id</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>fcsj</field_name>  
1611 - <key_value>5</key_value>  
1612 - <target_name>fcno5_fcsj</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>fczdName</field_name>  
1625 - <key_value>5</key_value>  
1626 - <target_name>fcno5_zdname</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>bc_type</field_name>  
1639 - <key_value>5</key_value>  
1640 - <target_name>fcno5_bctype</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>xl_dir</field_name>  
1653 - <key_value>5</key_value>  
1654 - <target_name>fcno5_xldir</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>isfb</field_name>  
1667 - <key_value>5</key_value>  
1668 - <target_name>fcno5_isfb</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>id</field_name>  
1681 - <key_value>6</key_value>  
1682 - <target_name>fcno6_id</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>fcsj</field_name>  
1695 - <key_value>6</key_value>  
1696 - <target_name>fcno6_fcsj</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>fczdName</field_name>  
1709 - <key_value>6</key_value>  
1710 - <target_name>fcno6_zdname</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>bc_type</field_name>  
1723 - <key_value>6</key_value>  
1724 - <target_name>fcno6_bctype</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>xl_dir</field_name>  
1737 - <key_value>6</key_value>  
1738 - <target_name>fcno6_xldir</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>isfb</field_name>  
1751 - <key_value>6</key_value>  
1752 - <target_name>fcno6_isfb</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>id</field_name>  
1765 - <key_value>7</key_value>  
1766 - <target_name>fcno7_id</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>fcsj</field_name>  
1779 - <key_value>7</key_value>  
1780 - <target_name>fcno7_fcsj</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>fczdName</field_name>  
1793 - <key_value>7</key_value>  
1794 - <target_name>fcno7_zdname</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>bc_type</field_name>  
1807 - <key_value>7</key_value>  
1808 - <target_name>fcno7_bctype</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>xl_dir</field_name>  
1821 - <key_value>7</key_value>  
1822 - <target_name>fcno7_xldir</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>isfb</field_name>  
1835 - <key_value>7</key_value>  
1836 - <target_name>fcno7_isfb</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>id</field_name>  
1849 - <key_value>8</key_value>  
1850 - <target_name>fcno8_id</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>fcsj</field_name>  
1863 - <key_value>8</key_value>  
1864 - <target_name>fcno8_fcsj</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>fczdName</field_name>  
1877 - <key_value>8</key_value>  
1878 - <target_name>fcno8_zdname</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>bc_type</field_name>  
1891 - <key_value>8</key_value>  
1892 - <target_name>fcno8_bctype</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>xl_dir</field_name>  
1905 - <key_value>8</key_value>  
1906 - <target_name>fcno8_xldir</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>isfb</field_name>  
1919 - <key_value>8</key_value>  
1920 - <target_name>fcno8_isfb</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>id</field_name>  
1933 - <key_value>9</key_value>  
1934 - <target_name>fcno9_id</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>fcsj</field_name>  
1947 - <key_value>9</key_value>  
1948 - <target_name>fcno9_fcsj</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>fczdName</field_name>  
1961 - <key_value>9</key_value>  
1962 - <target_name>fcno9_zdname</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>bc_type</field_name>  
1975 - <key_value>9</key_value>  
1976 - <target_name>fcno9_bctype</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>xl_dir</field_name>  
1989 - <key_value>9</key_value>  
1990 - <target_name>fcno9_xldir</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>isfb</field_name>  
2003 - <key_value>9</key_value>  
2004 - <target_name>fcno9_isfb</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>id</field_name>  
2017 - <key_value>10</key_value>  
2018 - <target_name>fcno10_id</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>fcsj</field_name>  
2031 - <key_value>10</key_value>  
2032 - <target_name>fcno10_fcsj</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>fczdName</field_name>  
2045 - <key_value>10</key_value>  
2046 - <target_name>fcno10_zdname</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>bc_type</field_name>  
2059 - <key_value>10</key_value>  
2060 - <target_name>fcno10_bctype</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>xl_dir</field_name>  
2073 - <key_value>10</key_value>  
2074 - <target_name>fcno10_xldir</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>isfb</field_name>  
2087 - <key_value>10</key_value>  
2088 - <target_name>fcno10_isfb</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>id</field_name>  
2101 - <key_value>11</key_value>  
2102 - <target_name>fcno11_id</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>fcsj</field_name>  
2115 - <key_value>11</key_value>  
2116 - <target_name>fcno11_fcsj</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>fczdName</field_name>  
2129 - <key_value>11</key_value>  
2130 - <target_name>fcno11_zdname</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>bc_type</field_name>  
2143 - <key_value>11</key_value>  
2144 - <target_name>fcno11_bctype</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>xl_dir</field_name>  
2157 - <key_value>11</key_value>  
2158 - <target_name>fcno11_xldir</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>isfb</field_name>  
2171 - <key_value>11</key_value>  
2172 - <target_name>fcno11_isfb</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>id</field_name>  
2185 - <key_value>12</key_value>  
2186 - <target_name>fcno12_id</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>fcsj</field_name>  
2199 - <key_value>12</key_value>  
2200 - <target_name>fcno12_fcsj</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>fczdName</field_name>  
2213 - <key_value>12</key_value>  
2214 - <target_name>fcno12_zdname</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>bc_type</field_name>  
2227 - <key_value>12</key_value>  
2228 - <target_name>fcno12_bctype</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>xl_dir</field_name>  
2241 - <key_value>12</key_value>  
2242 - <target_name>fcno12_xldir</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>isfb</field_name>  
2255 - <key_value>12</key_value>  
2256 - <target_name>fcno12_isfb</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>id</field_name>  
2269 - <key_value>13</key_value>  
2270 - <target_name>fcno13_id</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>fcsj</field_name>  
2283 - <key_value>13</key_value>  
2284 - <target_name>fcno13_fcsj</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>fczdName</field_name>  
2297 - <key_value>13</key_value>  
2298 - <target_name>fcno13_zdname</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>bc_type</field_name>  
2311 - <key_value>13</key_value>  
2312 - <target_name>fcno13_bctype</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>xl_dir</field_name>  
2325 - <key_value>13</key_value>  
2326 - <target_name>fcno13_xldir</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>isfb</field_name>  
2339 - <key_value>13</key_value>  
2340 - <target_name>fcno13_isfb</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>id</field_name>  
2353 - <key_value>14</key_value>  
2354 - <target_name>fcno14_id</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>fcsj</field_name>  
2367 - <key_value>14</key_value>  
2368 - <target_name>fcno14_fcsj</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>fczdName</field_name>  
2381 - <key_value>14</key_value>  
2382 - <target_name>fcno14_zdname</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>bc_type</field_name>  
2395 - <key_value>14</key_value>  
2396 - <target_name>fcno14_bctype</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>xl_dir</field_name>  
2409 - <key_value>14</key_value>  
2410 - <target_name>fcno14_xldir</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>isfb</field_name>  
2423 - <key_value>14</key_value>  
2424 - <target_name>fcno14_isfb</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>id</field_name>  
2437 - <key_value>15</key_value>  
2438 - <target_name>fcno15_id</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>fcsj</field_name>  
2451 - <key_value>15</key_value>  
2452 - <target_name>fcno15_fcsj</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>fczdName</field_name>  
2465 - <key_value>15</key_value>  
2466 - <target_name>fcno15_zdname</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>bc_type</field_name>  
2479 - <key_value>15</key_value>  
2480 - <target_name>fcno15_bctype</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>xl_dir</field_name>  
2493 - <key_value>15</key_value>  
2494 - <target_name>fcno15_xldir</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>isfb</field_name>  
2507 - <key_value>15</key_value>  
2508 - <target_name>fcno15_isfb</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>id</field_name>  
2521 - <key_value>16</key_value>  
2522 - <target_name>fcno16_id</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>fcsj</field_name>  
2535 - <key_value>16</key_value>  
2536 - <target_name>fcno16_fcsj</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>fczdName</field_name>  
2549 - <key_value>16</key_value>  
2550 - <target_name>fcno16_zdname</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>bc_type</field_name>  
2563 - <key_value>16</key_value>  
2564 - <target_name>fcno16_bctype</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>xl_dir</field_name>  
2577 - <key_value>16</key_value>  
2578 - <target_name>fcno16_xldir</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>isfb</field_name>  
2591 - <key_value>16</key_value>  
2592 - <target_name>fcno16_isfb</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>id</field_name>  
2605 - <key_value>17</key_value>  
2606 - <target_name>fcno17_id</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>fcsj</field_name>  
2619 - <key_value>17</key_value>  
2620 - <target_name>fcno17_fcsj</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>fczdName</field_name>  
2633 - <key_value>17</key_value>  
2634 - <target_name>fcno17_zdname</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>bc_type</field_name>  
2647 - <key_value>17</key_value>  
2648 - <target_name>fcno17_bctype</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>xl_dir</field_name>  
2661 - <key_value>17</key_value>  
2662 - <target_name>fcno17_xldir</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>isfb</field_name>  
2675 - <key_value>17</key_value>  
2676 - <target_name>fcno17_isfb</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>id</field_name>  
2689 - <key_value>18</key_value>  
2690 - <target_name>fcno18_id</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>fcsj</field_name>  
2703 - <key_value>18</key_value>  
2704 - <target_name>fcno18_fcsj</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>fczdName</field_name>  
2717 - <key_value>18</key_value>  
2718 - <target_name>fcno18_zdname</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>bc_type</field_name>  
2731 - <key_value>18</key_value>  
2732 - <target_name>fcno18_bctype</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>xl_dir</field_name>  
2745 - <key_value>18</key_value>  
2746 - <target_name>fcno18_xldir</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>isfb</field_name>  
2759 - <key_value>18</key_value>  
2760 - <target_name>fcno18_isfb</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>id</field_name>  
2773 - <key_value>19</key_value>  
2774 - <target_name>fcno19_id</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>fcsj</field_name>  
2787 - <key_value>19</key_value>  
2788 - <target_name>fcno19_fcsj</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>fczdName</field_name>  
2801 - <key_value>19</key_value>  
2802 - <target_name>fcno19_zdname</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>bc_type</field_name>  
2815 - <key_value>19</key_value>  
2816 - <target_name>fcno19_bctype</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>xl_dir</field_name>  
2829 - <key_value>19</key_value>  
2830 - <target_name>fcno19_xldir</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>isfb</field_name>  
2843 - <key_value>19</key_value>  
2844 - <target_name>fcno19_isfb</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>id</field_name>  
2857 - <key_value>20</key_value>  
2858 - <target_name>fcno20_id</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>fcsj</field_name>  
2871 - <key_value>20</key_value>  
2872 - <target_name>fcno20_fcsj</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>fczdName</field_name>  
2885 - <key_value>20</key_value>  
2886 - <target_name>fcno20_zdname</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>bc_type</field_name>  
2899 - <key_value>20</key_value>  
2900 - <target_name>fcno20_bctype</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>xl_dir</field_name>  
2913 - <key_value>20</key_value>  
2914 - <target_name>fcno20_xldir</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>isfb</field_name>  
2927 - <key_value>20</key_value>  
2928 - <target_name>fcno20_isfb</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>id</field_name>  
2941 - <key_value>21</key_value>  
2942 - <target_name>fcno21_id</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>fcsj</field_name>  
2955 - <key_value>21</key_value>  
2956 - <target_name>fcno21_fcsj</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>fczdName</field_name>  
2969 - <key_value>21</key_value>  
2970 - <target_name>fcno21_zdname</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>bc_type</field_name>  
2983 - <key_value>21</key_value>  
2984 - <target_name>fcno21_bctype</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>xl_dir</field_name>  
2997 - <key_value>21</key_value>  
2998 - <target_name>fcno21_xldir</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>isfb</field_name>  
3011 - <key_value>21</key_value>  
3012 - <target_name>fcno21_isfb</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>id</field_name>  
3025 - <key_value>22</key_value>  
3026 - <target_name>fcno22_id</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>fcsj</field_name>  
3039 - <key_value>22</key_value>  
3040 - <target_name>fcno22_fcsj</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>fczdName</field_name>  
3053 - <key_value>22</key_value>  
3054 - <target_name>fcno22_zdname</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>bc_type</field_name>  
3067 - <key_value>22</key_value>  
3068 - <target_name>fcno22_bctype</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>xl_dir</field_name>  
3081 - <key_value>22</key_value>  
3082 - <target_name>fcno22_xldir</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>isfb</field_name>  
3095 - <key_value>22</key_value>  
3096 - <target_name>fcno22_isfb</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>id</field_name>  
3109 - <key_value>23</key_value>  
3110 - <target_name>fcno23_id</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>fcsj</field_name>  
3123 - <key_value>23</key_value>  
3124 - <target_name>fcno23_fcsj</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>fczdName</field_name>  
3137 - <key_value>23</key_value>  
3138 - <target_name>fcno23_zdname</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>bc_type</field_name>  
3151 - <key_value>23</key_value>  
3152 - <target_name>fcno23_bctype</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>xl_dir</field_name>  
3165 - <key_value>23</key_value>  
3166 - <target_name>fcno23_xldir</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>isfb</field_name>  
3179 - <key_value>23</key_value>  
3180 - <target_name>fcno23_isfb</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>id</field_name>  
3193 - <key_value>24</key_value>  
3194 - <target_name>fcno24_id</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>fcsj</field_name>  
3207 - <key_value>24</key_value>  
3208 - <target_name>fcno24_fcsj</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>fczdName</field_name>  
3221 - <key_value>24</key_value>  
3222 - <target_name>fcno24_zdname</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>bc_type</field_name>  
3235 - <key_value>24</key_value>  
3236 - <target_name>fcno24_bctype</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 - <field>  
3248 - <field_name>xl_dir</field_name>  
3249 - <key_value>24</key_value>  
3250 - <target_name>fcno24_xldir</target_name>  
3251 - <target_type>String</target_type>  
3252 - <target_format/>  
3253 - <target_length>-1</target_length>  
3254 - <target_precision>-1</target_precision>  
3255 - <target_decimal_symbol/>  
3256 - <target_grouping_symbol/>  
3257 - <target_currency_symbol/>  
3258 - <target_null_string/>  
3259 - <target_aggregation_type>-</target_aggregation_type>  
3260 - </field>  
3261 - <field>  
3262 - <field_name>isfb</field_name>  
3263 - <key_value>24</key_value>  
3264 - <target_name>fcno24_isfb</target_name>  
3265 - <target_type>String</target_type>  
3266 - <target_format/>  
3267 - <target_length>-1</target_length>  
3268 - <target_precision>-1</target_precision>  
3269 - <target_decimal_symbol/>  
3270 - <target_grouping_symbol/>  
3271 - <target_currency_symbol/>  
3272 - <target_null_string/>  
3273 - <target_aggregation_type>-</target_aggregation_type>  
3274 - </field>  
3275 - <field>  
3276 - <field_name>id</field_name>  
3277 - <key_value>25</key_value>  
3278 - <target_name>fcno25_id</target_name>  
3279 - <target_type>String</target_type>  
3280 - <target_format/>  
3281 - <target_length>-1</target_length>  
3282 - <target_precision>-1</target_precision>  
3283 - <target_decimal_symbol/>  
3284 - <target_grouping_symbol/>  
3285 - <target_currency_symbol/>  
3286 - <target_null_string/>  
3287 - <target_aggregation_type>-</target_aggregation_type>  
3288 - </field>  
3289 - <field>  
3290 - <field_name>fcsj</field_name>  
3291 - <key_value>25</key_value>  
3292 - <target_name>fcno25_fcsj</target_name>  
3293 - <target_type>String</target_type>  
3294 - <target_format/>  
3295 - <target_length>-1</target_length>  
3296 - <target_precision>-1</target_precision>  
3297 - <target_decimal_symbol/>  
3298 - <target_grouping_symbol/>  
3299 - <target_currency_symbol/>  
3300 - <target_null_string/>  
3301 - <target_aggregation_type>-</target_aggregation_type>  
3302 - </field>  
3303 - <field>  
3304 - <field_name>fczdName</field_name>  
3305 - <key_value>25</key_value>  
3306 - <target_name>fcno25_zdname</target_name>  
3307 - <target_type>String</target_type>  
3308 - <target_format/>  
3309 - <target_length>-1</target_length>  
3310 - <target_precision>-1</target_precision>  
3311 - <target_decimal_symbol/>  
3312 - <target_grouping_symbol/>  
3313 - <target_currency_symbol/>  
3314 - <target_null_string/>  
3315 - <target_aggregation_type>-</target_aggregation_type>  
3316 - </field>  
3317 - <field>  
3318 - <field_name>bc_type</field_name>  
3319 - <key_value>25</key_value>  
3320 - <target_name>fcno25_bctype</target_name>  
3321 - <target_type>String</target_type>  
3322 - <target_format/>  
3323 - <target_length>-1</target_length>  
3324 - <target_precision>-1</target_precision>  
3325 - <target_decimal_symbol/>  
3326 - <target_grouping_symbol/>  
3327 - <target_currency_symbol/>  
3328 - <target_null_string/>  
3329 - <target_aggregation_type>-</target_aggregation_type>  
3330 - </field>  
3331 - <field>  
3332 - <field_name>xl_dir</field_name>  
3333 - <key_value>25</key_value>  
3334 - <target_name>fcno25_xldir</target_name>  
3335 - <target_type>String</target_type>  
3336 - <target_format/>  
3337 - <target_length>-1</target_length>  
3338 - <target_precision>-1</target_precision>  
3339 - <target_decimal_symbol/>  
3340 - <target_grouping_symbol/>  
3341 - <target_currency_symbol/>  
3342 - <target_null_string/>  
3343 - <target_aggregation_type>-</target_aggregation_type>  
3344 - </field>  
3345 - <field>  
3346 - <field_name>isfb</field_name>  
3347 - <key_value>25</key_value>  
3348 - <target_name>fcno25_isfb</target_name>  
3349 - <target_type>String</target_type>  
3350 - <target_format/>  
3351 - <target_length>-1</target_length>  
3352 - <target_precision>-1</target_precision>  
3353 - <target_decimal_symbol/>  
3354 - <target_grouping_symbol/>  
3355 - <target_currency_symbol/>  
3356 - <target_null_string/>  
3357 - <target_aggregation_type>-</target_aggregation_type>  
3358 - </field>  
3359 - <field>  
3360 - <field_name>id</field_name>  
3361 - <key_value>26</key_value>  
3362 - <target_name>fcno26_id</target_name>  
3363 - <target_type>String</target_type>  
3364 - <target_format/>  
3365 - <target_length>-1</target_length>  
3366 - <target_precision>-1</target_precision>  
3367 - <target_decimal_symbol/>  
3368 - <target_grouping_symbol/>  
3369 - <target_currency_symbol/>  
3370 - <target_null_string/>  
3371 - <target_aggregation_type>-</target_aggregation_type>  
3372 - </field>  
3373 - <field>  
3374 - <field_name>fcsj</field_name>  
3375 - <key_value>26</key_value>  
3376 - <target_name>fcno26_fcsj</target_name>  
3377 - <target_type>String</target_type>  
3378 - <target_format/>  
3379 - <target_length>-1</target_length>  
3380 - <target_precision>-1</target_precision>  
3381 - <target_decimal_symbol/>  
3382 - <target_grouping_symbol/>  
3383 - <target_currency_symbol/>  
3384 - <target_null_string/>  
3385 - <target_aggregation_type>-</target_aggregation_type>  
3386 - </field>  
3387 - <field>  
3388 - <field_name>fczdName</field_name>  
3389 - <key_value>26</key_value>  
3390 - <target_name>fcno26_zdname</target_name>  
3391 - <target_type>String</target_type>  
3392 - <target_format/>  
3393 - <target_length>-1</target_length>  
3394 - <target_precision>-1</target_precision>  
3395 - <target_decimal_symbol/>  
3396 - <target_grouping_symbol/>  
3397 - <target_currency_symbol/>  
3398 - <target_null_string/>  
3399 - <target_aggregation_type>-</target_aggregation_type>  
3400 - </field>  
3401 - <field>  
3402 - <field_name>bc_type</field_name>  
3403 - <key_value>26</key_value>  
3404 - <target_name>fcno26_bctype</target_name>  
3405 - <target_type>String</target_type>  
3406 - <target_format/>  
3407 - <target_length>-1</target_length>  
3408 - <target_precision>-1</target_precision>  
3409 - <target_decimal_symbol/>  
3410 - <target_grouping_symbol/>  
3411 - <target_currency_symbol/>  
3412 - <target_null_string/>  
3413 - <target_aggregation_type>-</target_aggregation_type>  
3414 - </field>  
3415 - <field>  
3416 - <field_name>xl_dir</field_name>  
3417 - <key_value>26</key_value>  
3418 - <target_name>fcno26_xldir</target_name>  
3419 - <target_type>String</target_type>  
3420 - <target_format/>  
3421 - <target_length>-1</target_length>  
3422 - <target_precision>-1</target_precision>  
3423 - <target_decimal_symbol/>  
3424 - <target_grouping_symbol/>  
3425 - <target_currency_symbol/>  
3426 - <target_null_string/>  
3427 - <target_aggregation_type>-</target_aggregation_type>  
3428 - </field>  
3429 - <field>  
3430 - <field_name>isfb</field_name>  
3431 - <key_value>26</key_value>  
3432 - <target_name>fcno26_isfb</target_name>  
3433 - <target_type>String</target_type>  
3434 - <target_format/>  
3435 - <target_length>-1</target_length>  
3436 - <target_precision>-1</target_precision>  
3437 - <target_decimal_symbol/>  
3438 - <target_grouping_symbol/>  
3439 - <target_currency_symbol/>  
3440 - <target_null_string/>  
3441 - <target_aggregation_type>-</target_aggregation_type>  
3442 - </field>  
3443 - <field>  
3444 - <field_name>id</field_name>  
3445 - <key_value>27</key_value>  
3446 - <target_name>fcno27_id</target_name>  
3447 - <target_type>String</target_type>  
3448 - <target_format/>  
3449 - <target_length>-1</target_length>  
3450 - <target_precision>-1</target_precision>  
3451 - <target_decimal_symbol/>  
3452 - <target_grouping_symbol/>  
3453 - <target_currency_symbol/>  
3454 - <target_null_string/>  
3455 - <target_aggregation_type>-</target_aggregation_type>  
3456 - </field>  
3457 - <field>  
3458 - <field_name>fcsj</field_name>  
3459 - <key_value>27</key_value>  
3460 - <target_name>fcno27_fcsj</target_name>  
3461 - <target_type>String</target_type>  
3462 - <target_format/>  
3463 - <target_length>-1</target_length>  
3464 - <target_precision>-1</target_precision>  
3465 - <target_decimal_symbol/>  
3466 - <target_grouping_symbol/>  
3467 - <target_currency_symbol/>  
3468 - <target_null_string/>  
3469 - <target_aggregation_type>-</target_aggregation_type>  
3470 - </field>  
3471 - <field>  
3472 - <field_name>fczdName</field_name>  
3473 - <key_value>27</key_value>  
3474 - <target_name>fcno27_zdname</target_name>  
3475 - <target_type>String</target_type>  
3476 - <target_format/>  
3477 - <target_length>-1</target_length>  
3478 - <target_precision>-1</target_precision>  
3479 - <target_decimal_symbol/>  
3480 - <target_grouping_symbol/>  
3481 - <target_currency_symbol/>  
3482 - <target_null_string/>  
3483 - <target_aggregation_type>-</target_aggregation_type>  
3484 - </field>  
3485 - <field>  
3486 - <field_name>bc_type</field_name>  
3487 - <key_value>27</key_value>  
3488 - <target_name>fcno27_bctype</target_name>  
3489 - <target_type>String</target_type>  
3490 - <target_format/>  
3491 - <target_length>-1</target_length>  
3492 - <target_precision>-1</target_precision>  
3493 - <target_decimal_symbol/>  
3494 - <target_grouping_symbol/>  
3495 - <target_currency_symbol/>  
3496 - <target_null_string/>  
3497 - <target_aggregation_type>-</target_aggregation_type>  
3498 - </field>  
3499 - <field>  
3500 - <field_name>xl_dir</field_name>  
3501 - <key_value>27</key_value>  
3502 - <target_name>fcno27_xldir</target_name>  
3503 - <target_type>String</target_type>  
3504 - <target_format/>  
3505 - <target_length>-1</target_length>  
3506 - <target_precision>-1</target_precision>  
3507 - <target_decimal_symbol/>  
3508 - <target_grouping_symbol/>  
3509 - <target_currency_symbol/>  
3510 - <target_null_string/>  
3511 - <target_aggregation_type>-</target_aggregation_type>  
3512 - </field>  
3513 - <field>  
3514 - <field_name>isfb</field_name>  
3515 - <key_value>27</key_value>  
3516 - <target_name>fcno27_isfb</target_name>  
3517 - <target_type>String</target_type>  
3518 - <target_format/>  
3519 - <target_length>-1</target_length>  
3520 - <target_precision>-1</target_precision>  
3521 - <target_decimal_symbol/>  
3522 - <target_grouping_symbol/>  
3523 - <target_currency_symbol/>  
3524 - <target_null_string/>  
3525 - <target_aggregation_type>-</target_aggregation_type>  
3526 - </field>  
3527 - <field>  
3528 - <field_name>id</field_name>  
3529 - <key_value>28</key_value>  
3530 - <target_name>fcno28_id</target_name>  
3531 - <target_type>String</target_type>  
3532 - <target_format/>  
3533 - <target_length>-1</target_length>  
3534 - <target_precision>-1</target_precision>  
3535 - <target_decimal_symbol/>  
3536 - <target_grouping_symbol/>  
3537 - <target_currency_symbol/>  
3538 - <target_null_string/>  
3539 - <target_aggregation_type>-</target_aggregation_type>  
3540 - </field>  
3541 - <field>  
3542 - <field_name>fcsj</field_name>  
3543 - <key_value>28</key_value>  
3544 - <target_name>fcno28_fcsj</target_name>  
3545 - <target_type>String</target_type>  
3546 - <target_format/>  
3547 - <target_length>-1</target_length>  
3548 - <target_precision>-1</target_precision>  
3549 - <target_decimal_symbol/>  
3550 - <target_grouping_symbol/>  
3551 - <target_currency_symbol/>  
3552 - <target_null_string/>  
3553 - <target_aggregation_type>-</target_aggregation_type>  
3554 - </field>  
3555 - <field>  
3556 - <field_name>fczdName</field_name>  
3557 - <key_value>28</key_value>  
3558 - <target_name>fcno28_zdname</target_name>  
3559 - <target_type>String</target_type>  
3560 - <target_format/>  
3561 - <target_length>-1</target_length>  
3562 - <target_precision>-1</target_precision>  
3563 - <target_decimal_symbol/>  
3564 - <target_grouping_symbol/>  
3565 - <target_currency_symbol/>  
3566 - <target_null_string/>  
3567 - <target_aggregation_type>-</target_aggregation_type>  
3568 - </field>  
3569 - <field>  
3570 - <field_name>bc_type</field_name>  
3571 - <key_value>28</key_value>  
3572 - <target_name>fcno28_bctype</target_name>  
3573 - <target_type>String</target_type>  
3574 - <target_format/>  
3575 - <target_length>-1</target_length>  
3576 - <target_precision>-1</target_precision>  
3577 - <target_decimal_symbol/>  
3578 - <target_grouping_symbol/>  
3579 - <target_currency_symbol/>  
3580 - <target_null_string/>  
3581 - <target_aggregation_type>-</target_aggregation_type>  
3582 - </field>  
3583 - <field>  
3584 - <field_name>xl_dir</field_name>  
3585 - <key_value>28</key_value>  
3586 - <target_name>fcno28_xldir</target_name>  
3587 - <target_type>String</target_type>  
3588 - <target_format/>  
3589 - <target_length>-1</target_length>  
3590 - <target_precision>-1</target_precision>  
3591 - <target_decimal_symbol/>  
3592 - <target_grouping_symbol/>  
3593 - <target_currency_symbol/>  
3594 - <target_null_string/>  
3595 - <target_aggregation_type>-</target_aggregation_type>  
3596 - </field>  
3597 - <field>  
3598 - <field_name>isfb</field_name>  
3599 - <key_value>28</key_value>  
3600 - <target_name>fcno28_isfb</target_name>  
3601 - <target_type>String</target_type>  
3602 - <target_format/>  
3603 - <target_length>-1</target_length>  
3604 - <target_precision>-1</target_precision>  
3605 - <target_decimal_symbol/>  
3606 - <target_grouping_symbol/>  
3607 - <target_currency_symbol/>  
3608 - <target_null_string/>  
3609 - <target_aggregation_type>-</target_aggregation_type>  
3610 - </field>  
3611 - <field>  
3612 - <field_name>id</field_name>  
3613 - <key_value>29</key_value>  
3614 - <target_name>fcno29_id</target_name>  
3615 - <target_type>String</target_type>  
3616 - <target_format/>  
3617 - <target_length>-1</target_length>  
3618 - <target_precision>-1</target_precision>  
3619 - <target_decimal_symbol/>  
3620 - <target_grouping_symbol/>  
3621 - <target_currency_symbol/>  
3622 - <target_null_string/>  
3623 - <target_aggregation_type>-</target_aggregation_type>  
3624 - </field>  
3625 - <field>  
3626 - <field_name>fcsj</field_name>  
3627 - <key_value>29</key_value>  
3628 - <target_name>fcno29_fcsj</target_name>  
3629 - <target_type>String</target_type>  
3630 - <target_format/>  
3631 - <target_length>-1</target_length>  
3632 - <target_precision>-1</target_precision>  
3633 - <target_decimal_symbol/>  
3634 - <target_grouping_symbol/>  
3635 - <target_currency_symbol/>  
3636 - <target_null_string/>  
3637 - <target_aggregation_type>-</target_aggregation_type>  
3638 - </field>  
3639 - <field>  
3640 - <field_name>fczdName</field_name>  
3641 - <key_value>29</key_value>  
3642 - <target_name>fcno29_zdname</target_name>  
3643 - <target_type>String</target_type>  
3644 - <target_format/>  
3645 - <target_length>-1</target_length>  
3646 - <target_precision>-1</target_precision>  
3647 - <target_decimal_symbol/>  
3648 - <target_grouping_symbol/>  
3649 - <target_currency_symbol/>  
3650 - <target_null_string/>  
3651 - <target_aggregation_type>-</target_aggregation_type>  
3652 - </field>  
3653 - <field>  
3654 - <field_name>bc_type</field_name>  
3655 - <key_value>29</key_value>  
3656 - <target_name>fcno29_bctype</target_name>  
3657 - <target_type>String</target_type>  
3658 - <target_format/>  
3659 - <target_length>-1</target_length>  
3660 - <target_precision>-1</target_precision>  
3661 - <target_decimal_symbol/>  
3662 - <target_grouping_symbol/>  
3663 - <target_currency_symbol/>  
3664 - <target_null_string/>  
3665 - <target_aggregation_type>-</target_aggregation_type>  
3666 - </field>  
3667 - <field>  
3668 - <field_name>xl_dir</field_name>  
3669 - <key_value>29</key_value>  
3670 - <target_name>fcno29_xldir</target_name>  
3671 - <target_type>String</target_type>  
3672 - <target_format/>  
3673 - <target_length>-1</target_length>  
3674 - <target_precision>-1</target_precision>  
3675 - <target_decimal_symbol/>  
3676 - <target_grouping_symbol/>  
3677 - <target_currency_symbol/>  
3678 - <target_null_string/>  
3679 - <target_aggregation_type>-</target_aggregation_type>  
3680 - </field>  
3681 - <field>  
3682 - <field_name>isfb</field_name>  
3683 - <key_value>29</key_value>  
3684 - <target_name>fcno29_isfb</target_name>  
3685 - <target_type>String</target_type>  
3686 - <target_format/>  
3687 - <target_length>-1</target_length>  
3688 - <target_precision>-1</target_precision>  
3689 - <target_decimal_symbol/>  
3690 - <target_grouping_symbol/>  
3691 - <target_currency_symbol/>  
3692 - <target_null_string/>  
3693 - <target_aggregation_type>-</target_aggregation_type>  
3694 - </field>  
3695 - <field>  
3696 - <field_name>id</field_name>  
3697 - <key_value>30</key_value>  
3698 - <target_name>fcno30_id</target_name>  
3699 - <target_type>String</target_type>  
3700 - <target_format/>  
3701 - <target_length>-1</target_length>  
3702 - <target_precision>-1</target_precision>  
3703 - <target_decimal_symbol/>  
3704 - <target_grouping_symbol/>  
3705 - <target_currency_symbol/>  
3706 - <target_null_string/>  
3707 - <target_aggregation_type>-</target_aggregation_type>  
3708 - </field>  
3709 - <field>  
3710 - <field_name>fcsj</field_name>  
3711 - <key_value>30</key_value>  
3712 - <target_name>fcno30_fcsj</target_name>  
3713 - <target_type>String</target_type>  
3714 - <target_format/>  
3715 - <target_length>-1</target_length>  
3716 - <target_precision>-1</target_precision>  
3717 - <target_decimal_symbol/>  
3718 - <target_grouping_symbol/>  
3719 - <target_currency_symbol/>  
3720 - <target_null_string/>  
3721 - <target_aggregation_type>-</target_aggregation_type>  
3722 - </field>  
3723 - <field>  
3724 - <field_name>fczdName</field_name>  
3725 - <key_value>30</key_value>  
3726 - <target_name>fcno30_zdname</target_name>  
3727 - <target_type>String</target_type>  
3728 - <target_format/>  
3729 - <target_length>-1</target_length>  
3730 - <target_precision>-1</target_precision>  
3731 - <target_decimal_symbol/>  
3732 - <target_grouping_symbol/>  
3733 - <target_currency_symbol/>  
3734 - <target_null_string/>  
3735 - <target_aggregation_type>-</target_aggregation_type>  
3736 - </field>  
3737 - <field>  
3738 - <field_name>bc_type</field_name>  
3739 - <key_value>30</key_value>  
3740 - <target_name>fcno30_bctype</target_name>  
3741 - <target_type>String</target_type>  
3742 - <target_format/>  
3743 - <target_length>-1</target_length>  
3744 - <target_precision>-1</target_precision>  
3745 - <target_decimal_symbol/>  
3746 - <target_grouping_symbol/>  
3747 - <target_currency_symbol/>  
3748 - <target_null_string/>  
3749 - <target_aggregation_type>-</target_aggregation_type>  
3750 - </field>  
3751 - <field>  
3752 - <field_name>xl_dir</field_name>  
3753 - <key_value>30</key_value>  
3754 - <target_name>fcno30_xldir</target_name>  
3755 - <target_type>String</target_type>  
3756 - <target_format/>  
3757 - <target_length>-1</target_length>  
3758 - <target_precision>-1</target_precision>  
3759 - <target_decimal_symbol/>  
3760 - <target_grouping_symbol/>  
3761 - <target_currency_symbol/>  
3762 - <target_null_string/>  
3763 - <target_aggregation_type>-</target_aggregation_type>  
3764 - </field>  
3765 - <field>  
3766 - <field_name>isfb</field_name>  
3767 - <key_value>30</key_value>  
3768 - <target_name>fcno30_isfb</target_name>  
3769 - <target_type>String</target_type>  
3770 - <target_format/>  
3771 - <target_length>-1</target_length>  
3772 - <target_precision>-1</target_precision>  
3773 - <target_decimal_symbol/>  
3774 - <target_grouping_symbol/>  
3775 - <target_currency_symbol/>  
3776 - <target_null_string/>  
3777 - <target_aggregation_type>-</target_aggregation_type>  
3778 - </field>  
3779 - </fields>  
3780 - <cluster_schema/>  
3781 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
3782 - <xloc>693</xloc>  
3783 - <yloc>275</yloc>  
3784 - <draw>Y</draw>  
3785 - </GUI>  
3786 - </step>  
3787 -  
3788 - <step>  
3789 - <name>&#x53bb;&#x9664;&#x5b57;&#x6bb5;</name>  
3790 - <type>SelectValues</type>  
3791 - <description/>  
3792 - <distribute>Y</distribute>  
3793 - <custom_distribution/>  
3794 - <copies>1</copies>  
3795 - <partitioning>  
3796 - <method>none</method>  
3797 - <schema_name/>  
3798 - </partitioning>  
3799 - <fields> <select_unspecified>N</select_unspecified>  
3800 - <remove> <name>bcs</name>  
3801 - </remove> <remove> <name>qdzName</name>  
3802 - </remove> <remove> <name>zdzName</name>  
3803 - </remove> </fields> <cluster_schema/>  
3804 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
3805 - <xloc>694</xloc>  
3806 - <yloc>364</yloc>  
3807 - <draw>Y</draw>  
3808 - </GUI>  
3809 - </step>  
3810 -  
3811 - <step>  
3812 - <name>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</name>  
3813 - <type>SelectValues</type>  
3814 - <description/>  
3815 - <distribute>Y</distribute>  
3816 - <custom_distribution/>  
3817 - <copies>1</copies>  
3818 - <partitioning>  
3819 - <method>none</method>  
3820 - <schema_name/>  
3821 - </partitioning>  
3822 - <fields> <field> <name>id</name>  
3823 - <rename/>  
3824 - <length>-2</length>  
3825 - <precision>-2</precision>  
3826 - </field> <field> <name>lp</name>  
3827 - <rename/>  
3828 - <length>-2</length>  
3829 - <precision>-2</precision>  
3830 - </field> <field> <name>fcsj</name>  
3831 - <rename/>  
3832 - <length>-2</length>  
3833 - <precision>-2</precision>  
3834 - </field> <field> <name>fcno</name>  
3835 - <rename/>  
3836 - <length>-2</length>  
3837 - <precision>-2</precision>  
3838 - </field> <field> <name>bcs</name>  
3839 - <rename/>  
3840 - <length>-2</length>  
3841 - <precision>-2</precision>  
3842 - </field> <field> <name>bc_type</name>  
3843 - <rename/>  
3844 - <length>-2</length>  
3845 - <precision>-2</precision>  
3846 - </field> <field> <name>qdzName</name>  
3847 - <rename/>  
3848 - <length>-2</length>  
3849 - <precision>-2</precision>  
3850 - </field> <field> <name>zdzName</name>  
3851 - <rename/>  
3852 - <length>-2</length>  
3853 - <precision>-2</precision>  
3854 - </field> <field> <name>xl_dir</name>  
3855 - <rename/>  
3856 - <length>-2</length>  
3857 - <precision>-2</precision>  
3858 - </field> <field> <name>isfb</name>  
3859 - <rename/>  
3860 - <length>-2</length>  
3861 - <precision>-2</precision>  
3862 - </field> <select_unspecified>N</select_unspecified>  
3863 - </fields> <cluster_schema/>  
3864 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
3865 - <xloc>690</xloc>  
3866 - <yloc>188</yloc>  
3867 - <draw>Y</draw>  
3868 - </GUI>  
3869 - </step>  
3870 -  
3871 - <step>  
3872 - <name>&#x5b57;&#x6bb5;&#x9009;&#x62e9; 2</name>  
3873 - <type>SelectValues</type>  
3874 - <description/>  
3875 - <distribute>Y</distribute>  
3876 - <custom_distribution/>  
3877 - <copies>1</copies>  
3878 - <partitioning>  
3879 - <method>none</method>  
3880 - <schema_name/>  
3881 - </partitioning>  
3882 - <fields> <field> <name>id</name>  
3883 - <rename/>  
3884 - <length>-2</length>  
3885 - <precision>-2</precision>  
3886 - </field> <field> <name>lp</name>  
3887 - <rename/>  
3888 - <length>-2</length>  
3889 - <precision>-2</precision>  
3890 - </field> <field> <name>fcsj</name>  
3891 - <rename/>  
3892 - <length>-2</length>  
3893 - <precision>-2</precision>  
3894 - </field> <field> <name>fcno</name>  
3895 - <rename/>  
3896 - <length>-2</length>  
3897 - <precision>-2</precision>  
3898 - </field> <field> <name>bcs</name>  
3899 - <rename/>  
3900 - <length>-2</length>  
3901 - <precision>-2</precision>  
3902 - </field> <field> <name>bc_type</name>  
3903 - <rename/>  
3904 - <length>-2</length>  
3905 - <precision>-2</precision>  
3906 - </field> <field> <name>qdzName</name>  
3907 - <rename/>  
3908 - <length>-2</length>  
3909 - <precision>-2</precision>  
3910 - </field> <field> <name>zdzName</name>  
3911 - <rename/>  
3912 - <length>-2</length>  
3913 - <precision>-2</precision>  
3914 - </field> <field> <name>xl_dir</name>  
3915 - <rename/>  
3916 - <length>-2</length>  
3917 - <precision>-2</precision>  
3918 - </field> <field> <name>isfb</name>  
3919 - <rename/>  
3920 - <length>-2</length>  
3921 - <precision>-2</precision>  
3922 - </field> <select_unspecified>N</select_unspecified>  
3923 - </fields> <cluster_schema/>  
3924 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
3925 - <xloc>402</xloc>  
3926 - <yloc>189</yloc>  
3927 - <draw>Y</draw>  
3928 - </GUI>  
3929 - </step>  
3930 -  
3931 - <step>  
3932 - <name>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</name>  
3933 - <type>SortRows</type>  
3934 - <description/>  
3935 - <distribute>Y</distribute>  
3936 - <custom_distribution/>  
3937 - <copies>1</copies>  
3938 - <partitioning>  
3939 - <method>none</method>  
3940 - <schema_name/>  
3941 - </partitioning>  
3942 - <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>  
3943 - <prefix>out</prefix>  
3944 - <sort_size>1000000</sort_size>  
3945 - <free_memory/>  
3946 - <compress>N</compress>  
3947 - <compress_variable/>  
3948 - <unique_rows>N</unique_rows>  
3949 - <fields>  
3950 - <field>  
3951 - <name>bcs</name>  
3952 - <ascending>Y</ascending>  
3953 - <case_sensitive>N</case_sensitive>  
3954 - <presorted>N</presorted>  
3955 - </field>  
3956 - </fields>  
3957 - <cluster_schema/>  
3958 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
3959 - <xloc>549</xloc>  
3960 - <yloc>191</yloc>  
3961 - <draw>Y</draw>  
3962 - </GUI>  
3963 - </step>  
3964 -  
3965 - <step>  
3966 - <name>&#x67e5;&#x627e;&#x7ec8;&#x70b9;&#x7ad9;&#x540d;&#x79f0;</name>  
3967 - <type>DBLookup</type>  
3968 - <description/>  
3969 - <distribute>Y</distribute>  
3970 - <custom_distribution/>  
3971 - <copies>1</copies>  
3972 - <partitioning>  
3973 - <method>none</method>  
3974 - <schema_name/>  
3975 - </partitioning>  
3976 - <connection>bus_control_variable</connection>  
3977 - <cache>N</cache>  
3978 - <cache_load_all>N</cache_load_all>  
3979 - <cache_size>0</cache_size>  
3980 - <lookup>  
3981 - <schema/>  
3982 - <table>bsth_c_stationroute</table>  
3983 - <orderby/>  
3984 - <fail_on_multiple>N</fail_on_multiple>  
3985 - <eat_row_on_failure>N</eat_row_on_failure>  
3986 - <key>  
3987 - <name>xl</name>  
3988 - <field>line</field>  
3989 - <condition>&#x3d;</condition>  
3990 - <name2/>  
3991 - </key>  
3992 - <key>  
3993 - <name>xl_dir</name>  
3994 - <field>directions</field>  
3995 - <condition>&#x3d;</condition>  
3996 - <name2/>  
3997 - </key>  
3998 - <key>  
3999 - <name>endZdType</name>  
4000 - <field>station_mark</field>  
4001 - <condition>&#x3d;</condition>  
4002 - <name2/>  
4003 - </key>  
4004 - <value>  
4005 - <name>station_name</name>  
4006 - <rename>zdzName</rename>  
4007 - <default/>  
4008 - <type>String</type>  
4009 - </value>  
4010 - </lookup>  
4011 - <cluster_schema/>  
4012 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
4013 - <xloc>688</xloc>  
4014 - <yloc>86</yloc>  
4015 - <draw>Y</draw>  
4016 - </GUI>  
4017 - </step>  
4018 -  
4019 - <step>  
4020 - <name>&#x67e5;&#x627e;&#x8d77;&#x70b9;&#x7ad9;&#x540d;&#x79f0;</name>  
4021 - <type>DBLookup</type>  
4022 - <description/>  
4023 - <distribute>Y</distribute>  
4024 - <custom_distribution/>  
4025 - <copies>1</copies>  
4026 - <partitioning>  
4027 - <method>none</method>  
4028 - <schema_name/>  
4029 - </partitioning>  
4030 - <connection>bus_control_variable</connection>  
4031 - <cache>N</cache>  
4032 - <cache_load_all>N</cache_load_all>  
4033 - <cache_size>0</cache_size>  
4034 - <lookup>  
4035 - <schema/>  
4036 - <table>bsth_c_stationroute</table>  
4037 - <orderby/>  
4038 - <fail_on_multiple>N</fail_on_multiple>  
4039 - <eat_row_on_failure>N</eat_row_on_failure>  
4040 - <key>  
4041 - <name>xl</name>  
4042 - <field>line</field>  
4043 - <condition>&#x3d;</condition>  
4044 - <name2/>  
4045 - </key>  
4046 - <key>  
4047 - <name>xl_dir</name>  
4048 - <field>directions</field>  
4049 - <condition>&#x3d;</condition>  
4050 - <name2/>  
4051 - </key>  
4052 - <key>  
4053 - <name>startZdType</name>  
4054 - <field>station_mark</field>  
4055 - <condition>&#x3d;</condition>  
4056 - <name2/>  
4057 - </key>  
4058 - <value>  
4059 - <name>station_name</name>  
4060 - <rename>qdzName</rename>  
4061 - <default/>  
4062 - <type>String</type>  
4063 - </value>  
4064 - </lookup>  
4065 - <cluster_schema/>  
4066 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
4067 - <xloc>553</xloc>  
4068 - <yloc>86</yloc>  
4069 - <draw>Y</draw>  
4070 - </GUI>  
4071 - </step>  
4072 -  
4073 - <step>  
4074 - <name>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x7ad9;&#x70b9;&#x67e5;&#x8be2;&#x7528;&#x6570;&#x636e;</name>  
4075 - <type>ScriptValueMod</type>  
4076 - <description/>  
4077 - <distribute>Y</distribute>  
4078 - <custom_distribution/>  
4079 - <copies>1</copies>  
4080 - <partitioning>  
4081 - <method>none</method>  
4082 - <schema_name/>  
4083 - </partitioning>  
4084 - <compatible>N</compatible>  
4085 - <optimizationLevel>9</optimizationLevel>  
4086 - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>  
4087 - <jsScript_name>Script 1</jsScript_name>  
4088 - <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var startZdType &#x3d; &#x27;B&#x27;&#x3b; &#x2f;&#x2f; &#x8d77;&#x70b9;&#x7ad9;&#x7ad9;&#x70b9;&#x7c7b;&#x578b;&#x6807;&#x8bc6;&#x522b;&#xa;var endZdType &#x3d; &#x27;E&#x27;&#x3b; &#x2f;&#x2f; &#x7ec8;&#x70b9;&#x7ad9;&#x7ad9;&#x70b9;&#x7c7b;&#x578b;&#x6807;&#x8bc6;</jsScript_script>  
4089 - </jsScript> </jsScripts> <fields> <field> <name>startZdType</name>  
4090 - <rename>startZdType</rename>  
4091 - <type>String</type>  
4092 - <length>-1</length>  
4093 - <precision>-1</precision>  
4094 - <replace>N</replace>  
4095 - </field> <field> <name>endZdType</name>  
4096 - <rename>endZdType</rename>  
4097 - <type>String</type>  
4098 - <length>-1</length>  
4099 - <precision>-1</precision>  
4100 - <replace>N</replace>  
4101 - </field> </fields> <cluster_schema/>  
4102 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
4103 - <xloc>391</xloc>  
4104 - <yloc>87</yloc>  
4105 - <draw>Y</draw>  
4106 - </GUI>  
4107 - </step>  
4108 -  
4109 - <step>  
4110 - <name>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</name>  
4111 - <type>GetVariable</type>  
4112 - <description/>  
4113 - <distribute>Y</distribute>  
4114 - <custom_distribution/>  
4115 - <copies>1</copies>  
4116 - <partitioning>  
4117 - <method>none</method>  
4118 - <schema_name/>  
4119 - </partitioning>  
4120 - <fields>  
4121 - <field>  
4122 - <name>xlid_</name>  
4123 - <variable>&#x24;&#x7b;xlid&#x7d;</variable>  
4124 - <type>Integer</type>  
4125 - <format/>  
4126 - <currency/>  
4127 - <decimal/>  
4128 - <group/>  
4129 - <length>-1</length>  
4130 - <precision>-1</precision>  
4131 - <trim_type>none</trim_type>  
4132 - </field>  
4133 - <field>  
4134 - <name>ttid_</name>  
4135 - <variable>&#x24;&#x7b;ttid&#x7d;</variable>  
4136 - <type>Number</type>  
4137 - <format/>  
4138 - <currency/>  
4139 - <decimal/>  
4140 - <group/>  
4141 - <length>-1</length>  
4142 - <precision>-1</precision>  
4143 - <trim_type>none</trim_type>  
4144 - </field>  
4145 - </fields>  
4146 - <cluster_schema/>  
4147 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
4148 - <xloc>45</xloc>  
4149 - <yloc>189</yloc>  
4150 - <draw>Y</draw>  
4151 - </GUI>  
4152 - </step>  
4153 -  
4154 - <step>  
4155 - <name>&#x8868;&#x8f93;&#x5165;</name>  
4156 - <type>TableInput</type>  
4157 - <description/>  
4158 - <distribute>Y</distribute>  
4159 - <custom_distribution/>  
4160 - <copies>1</copies>  
4161 - <partitioning>  
4162 - <method>none</method>  
4163 - <schema_name/>  
4164 - </partitioning>  
4165 - <connection>bus_control_variable</connection>  
4166 - <sql>select &#xa;t.id as id&#xa;, g.lp_name as lp&#xa;, g.xl as xl&#xa;, qdz&#xa;, zdz&#xa;, tcc&#xa;, fcsj&#xa;, bc_type &#xa;, bcs&#xa;, fcno&#xa;, xl_dir&#xa;, isfb&#xa;from bsth_c_s_ttinfo_detail t left join &#xa;bsth_c_s_gbi g on t.lp &#x3d; g.id &#xa;where &#xa;g.xl &#x3d; &#x3f; and&#xa;t.ttinfo &#x3d; &#x3f; &#xa;order by t.bcs asc</sql>  
4167 - <limit>0</limit>  
4168 - <lookup>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</lookup>  
4169 - <execute_each_row>N</execute_each_row>  
4170 - <variables_active>Y</variables_active>  
4171 - <lazy_conversion_active>N</lazy_conversion_active>  
4172 - <cluster_schema/>  
4173 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
4174 - <xloc>130</xloc>  
4175 - <yloc>85</yloc>  
4176 - <draw>Y</draw>  
4177 - </GUI>  
4178 - </step>  
4179 -  
4180 - <step>  
4181 - <name>&#x8ba1;&#x7b97;&#x53d1;&#x8f66;&#x7ad9;&#x540d;</name>  
4182 - <type>ScriptValueMod</type>  
4183 - <description/>  
4184 - <distribute>Y</distribute>  
4185 - <custom_distribution/>  
4186 - <copies>1</copies>  
4187 - <partitioning>  
4188 - <method>none</method>  
4189 - <schema_name/>  
4190 - </partitioning>  
4191 - <compatible>N</compatible>  
4192 - <optimizationLevel>9</optimizationLevel>  
4193 - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>  
4194 - <jsScript_name>Script 1</jsScript_name>  
4195 - <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var fczdName &#x3d; null&#x3b; &#x2f;&#x2f; &#x53d1;&#x8f66;&#x7ad9;&#x70b9;&#x540d;&#x5b57;&#xa;if &#x28;bc_type &#x3d;&#x3d; &#x22;in&#x22;&#x29; &#x7b;&#xa; fczdName &#x3d; &#x22;&#x8fdb;&#x573a;&#x22;&#x3b;&#xa;&#x7d; else if &#x28;bc_type &#x3d;&#x3d; &#x22;out&#x22;&#x29; &#x7b;&#xa; fczdName &#x3d; &#x22;&#x51fa;&#x573a;&#x22;&#x3b;&#xa;&#x7d; else &#x7b;&#xa; fczdName &#x3d; qdzName&#x3b;&#xa;&#x7d;</jsScript_script>  
4196 - </jsScript> </jsScripts> <fields> <field> <name>fczdName</name>  
4197 - <rename>fczdName</rename>  
4198 - <type>String</type>  
4199 - <length>-1</length>  
4200 - <precision>-1</precision>  
4201 - <replace>N</replace>  
4202 - </field> </fields> <cluster_schema/>  
4203 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
4204 - <xloc>550</xloc>  
4205 - <yloc>276</yloc>  
4206 - <draw>Y</draw>  
4207 - </GUI>  
4208 - </step>  
4209 -  
4210 - <step>  
4211 - <name>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;</name>  
4212 - <type>FilterRows</type>  
4213 - <description/>  
4214 - <distribute>Y</distribute>  
4215 - <custom_distribution/>  
4216 - <copies>1</copies>  
4217 - <partitioning>  
4218 - <method>none</method>  
4219 - <schema_name/>  
4220 - </partitioning>  
4221 -<send_true_to>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x7ad9;&#x70b9;&#x67e5;&#x8be2;&#x7528;&#x6570;&#x636e;</send_true_to>  
4222 -<send_false_to>&#x8fdb;&#x573a;&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x67e5;&#x8be2;&#x7528;&#x7684;&#x6570;&#x636e;</send_false_to>  
4223 - <compare>  
4224 -<condition>  
4225 - <negated>N</negated>  
4226 - <leftvalue>bc_type</leftvalue>  
4227 - <function>&#x3d;</function>  
4228 - <rightvalue/>  
4229 - <value><name>constant</name><type>String</type><text>normal</text><length>-1</length><precision>-1</precision><isnull>N</isnull><mask/></value> </condition>  
4230 - </compare>  
4231 - <cluster_schema/>  
4232 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
4233 - <xloc>248</xloc>  
4234 - <yloc>87</yloc>  
4235 - <draw>Y</draw>  
4236 - </GUI>  
4237 - </step>  
4238 -  
4239 - <step>  
4240 - <name>&#x8fdb;&#x573a;&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x67e5;&#x8be2;&#x7528;&#x7684;&#x6570;&#x636e;</name>  
4241 - <type>ScriptValueMod</type>  
4242 - <description/>  
4243 - <distribute>Y</distribute>  
4244 - <custom_distribution/>  
4245 - <copies>1</copies>  
4246 - <partitioning>  
4247 - <method>none</method>  
4248 - <schema_name/>  
4249 - </partitioning>  
4250 - <compatible>N</compatible>  
4251 - <optimizationLevel>9</optimizationLevel>  
4252 - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>  
4253 - <jsScript_name>Script 1</jsScript_name>  
4254 - <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var qdzName &#x3d; null&#x3b; &#x2f;&#x2f; &#x8d77;&#x70b9;&#x7ad9;&#x540d;&#x5b57;&#xa;var zdzName &#x3d; null&#x3b; &#x2f;&#x2f; &#x7ec8;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</jsScript_script>  
4255 - </jsScript> </jsScripts> <fields> <field> <name>qdzName</name>  
4256 - <rename>qdzName</rename>  
4257 - <type>String</type>  
4258 - <length>-1</length>  
4259 - <precision>-1</precision>  
4260 - <replace>N</replace>  
4261 - </field> <field> <name>zdzName</name>  
4262 - <rename>zdzName</rename>  
4263 - <type>String</type>  
4264 - <length>-1</length>  
4265 - <precision>-1</precision>  
4266 - <replace>N</replace>  
4267 - </field> </fields> <cluster_schema/>  
4268 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
4269 - <xloc>250</xloc>  
4270 - <yloc>188</yloc>  
4271 - <draw>Y</draw>  
4272 - </GUI>  
4273 - </step>  
4274 -  
4275 - <step_error_handling>  
4276 - </step_error_handling>  
4277 - <slave-step-copy-partition-distribution>  
4278 -</slave-step-copy-partition-distribution>  
4279 - <slave_transformation>N</slave_transformation>  
4280 -  
4281 -</transformation> 1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<transformation>
  3 + <info>
  4 + <name>ttinfodetailoutputforedit</name>
  5 + <description/>
  6 + <extended_description/>
  7 + <trans_version/>
  8 + <trans_type>Normal</trans_type>
  9 + <trans_status>0</trans_status>
  10 + <directory>&#x2f;</directory>
  11 + <parameters>
  12 + <parameter>
  13 + <name>tempfilepath</name>
  14 + <default_value>&#x2f;Users&#x2f;xu&#x2f;resource&#x2f;project_code&#x2f;runtime_temp&#x2f;bsth_control_u_d_files&#x2f;temp&#x2f;test</default_value>
  15 + <description>&#x9ed8;&#x8ba4;&#x8f93;&#x51fa;&#x7684;&#x6587;&#x4ef6;&#x8def;&#x5f84;&#x540d;</description>
  16 + </parameter>
  17 + <parameter>
  18 + <name>ttid</name>
  19 + <default_value>63</default_value>
  20 + <description>&#x65f6;&#x523b;&#x8868;id</description>
  21 + </parameter>
  22 + <parameter>
  23 + <name>xlid</name>
  24 + <default_value>63017</default_value>
  25 + <description>&#x7ebf;&#x8def;id</description>
  26 + </parameter>
  27 + </parameters>
  28 + <log>
  29 +<trans-log-table><connection/>
  30 +<schema/>
  31 +<table/>
  32 +<size_limit_lines/>
  33 +<interval/>
  34 +<timeout_days/>
  35 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STATUS</id><enabled>Y</enabled><name>STATUS</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name><subject/></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name><subject/></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name><subject/></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name><subject/></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name><subject/></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name><subject/></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>STARTDATE</id><enabled>Y</enabled><name>STARTDATE</name></field><field><id>ENDDATE</id><enabled>Y</enabled><name>ENDDATE</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>DEPDATE</id><enabled>Y</enabled><name>DEPDATE</name></field><field><id>REPLAYDATE</id><enabled>Y</enabled><name>REPLAYDATE</name></field><field><id>LOG_FIELD</id><enabled>Y</enabled><name>LOG_FIELD</name></field><field><id>EXECUTING_SERVER</id><enabled>N</enabled><name>EXECUTING_SERVER</name></field><field><id>EXECUTING_USER</id><enabled>N</enabled><name>EXECUTING_USER</name></field><field><id>CLIENT</id><enabled>N</enabled><name>CLIENT</name></field></trans-log-table>
  36 +<perf-log-table><connection/>
  37 +<schema/>
  38 +<table/>
  39 +<interval/>
  40 +<timeout_days/>
  41 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>SEQ_NR</id><enabled>Y</enabled><name>SEQ_NR</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>INPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>INPUT_BUFFER_ROWS</name></field><field><id>OUTPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>OUTPUT_BUFFER_ROWS</name></field></perf-log-table>
  42 +<channel-log-table><connection/>
  43 +<schema/>
  44 +<table/>
  45 +<timeout_days/>
  46 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>LOGGING_OBJECT_TYPE</id><enabled>Y</enabled><name>LOGGING_OBJECT_TYPE</name></field><field><id>OBJECT_NAME</id><enabled>Y</enabled><name>OBJECT_NAME</name></field><field><id>OBJECT_COPY</id><enabled>Y</enabled><name>OBJECT_COPY</name></field><field><id>REPOSITORY_DIRECTORY</id><enabled>Y</enabled><name>REPOSITORY_DIRECTORY</name></field><field><id>FILENAME</id><enabled>Y</enabled><name>FILENAME</name></field><field><id>OBJECT_ID</id><enabled>Y</enabled><name>OBJECT_ID</name></field><field><id>OBJECT_REVISION</id><enabled>Y</enabled><name>OBJECT_REVISION</name></field><field><id>PARENT_CHANNEL_ID</id><enabled>Y</enabled><name>PARENT_CHANNEL_ID</name></field><field><id>ROOT_CHANNEL_ID</id><enabled>Y</enabled><name>ROOT_CHANNEL_ID</name></field></channel-log-table>
  47 +<step-log-table><connection/>
  48 +<schema/>
  49 +<table/>
  50 +<timeout_days/>
  51 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>LOG_FIELD</id><enabled>N</enabled><name>LOG_FIELD</name></field></step-log-table>
  52 +<metrics-log-table><connection/>
  53 +<schema/>
  54 +<table/>
  55 +<timeout_days/>
  56 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>METRICS_DATE</id><enabled>Y</enabled><name>METRICS_DATE</name></field><field><id>METRICS_CODE</id><enabled>Y</enabled><name>METRICS_CODE</name></field><field><id>METRICS_DESCRIPTION</id><enabled>Y</enabled><name>METRICS_DESCRIPTION</name></field><field><id>METRICS_SUBJECT</id><enabled>Y</enabled><name>METRICS_SUBJECT</name></field><field><id>METRICS_TYPE</id><enabled>Y</enabled><name>METRICS_TYPE</name></field><field><id>METRICS_VALUE</id><enabled>Y</enabled><name>METRICS_VALUE</name></field></metrics-log-table>
  57 + </log>
  58 + <maxdate>
  59 + <connection/>
  60 + <table/>
  61 + <field/>
  62 + <offset>0.0</offset>
  63 + <maxdiff>0.0</maxdiff>
  64 + </maxdate>
  65 + <size_rowset>10000</size_rowset>
  66 + <sleep_time_empty>50</sleep_time_empty>
  67 + <sleep_time_full>50</sleep_time_full>
  68 + <unique_connections>N</unique_connections>
  69 + <feedback_shown>Y</feedback_shown>
  70 + <feedback_size>50000</feedback_size>
  71 + <using_thread_priorities>Y</using_thread_priorities>
  72 + <shared_objects_file/>
  73 + <capture_step_performance>N</capture_step_performance>
  74 + <step_performance_capturing_delay>1000</step_performance_capturing_delay>
  75 + <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit>
  76 + <dependencies>
  77 + </dependencies>
  78 + <partitionschemas>
  79 + </partitionschemas>
  80 + <slaveservers>
  81 + </slaveservers>
  82 + <clusterschemas>
  83 + </clusterschemas>
  84 + <created_user>-</created_user>
  85 + <created_date>2016&#x2f;07&#x2f;11 21&#x3a;45&#x3a;05.041</created_date>
  86 + <modified_user>-</modified_user>
  87 + <modified_date>2016&#x2f;07&#x2f;11 21&#x3a;45&#x3a;05.041</modified_date>
  88 + <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA&#x3d;</key_for_session_key>
  89 + <is_key_private>N</is_key_private>
  90 + </info>
  91 + <notepads>
  92 + </notepads>
  93 + <connection>
  94 + <name>bus_control_variable</name>
  95 + <server>&#x24;&#x7b;v_db_ip&#x7d;</server>
  96 + <type>MYSQL</type>
  97 + <access>Native</access>
  98 + <database>&#x24;&#x7b;v_db_dname&#x7d;</database>
  99 + <port>3306</port>
  100 + <username>&#x24;&#x7b;v_db_uname&#x7d;</username>
  101 + <password>&#x24;&#x7b;v_db_pwd&#x7d;</password>
  102 + <servername/>
  103 + <data_tablespace/>
  104 + <index_tablespace/>
  105 + <attributes>
  106 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  107 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  108 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  109 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  110 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  111 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  112 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  113 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  114 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  115 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  116 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  117 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  118 + </attributes>
  119 + </connection>
  120 + <connection>
  121 + <name>bus_control_&#x516c;&#x53f8;_201</name>
  122 + <server>localhost</server>
  123 + <type>MYSQL</type>
  124 + <access>Native</access>
  125 + <database>control</database>
  126 + <port>3306</port>
  127 + <username>root</username>
  128 + <password>Encrypted </password>
  129 + <servername/>
  130 + <data_tablespace/>
  131 + <index_tablespace/>
  132 + <attributes>
  133 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  134 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  135 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  136 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  137 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  138 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  139 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  140 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  141 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  142 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  143 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  144 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  145 + </attributes>
  146 + </connection>
  147 + <connection>
  148 + <name>bus_control_&#x672c;&#x673a;</name>
  149 + <server>localhost</server>
  150 + <type>MYSQL</type>
  151 + <access>Native</access>
  152 + <database>control</database>
  153 + <port>3306</port>
  154 + <username>root</username>
  155 + <password>Encrypted </password>
  156 + <servername/>
  157 + <data_tablespace/>
  158 + <index_tablespace/>
  159 + <attributes>
  160 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  161 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  162 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  163 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  164 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  165 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  166 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  167 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  168 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  169 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  170 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  171 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  172 + </attributes>
  173 + </connection>
  174 + <connection>
  175 + <name>xlab_mysql_youle</name>
  176 + <server>101.231.124.8</server>
  177 + <type>MYSQL</type>
  178 + <access>Native</access>
  179 + <database>xlab_youle</database>
  180 + <port>45687</port>
  181 + <username>xlab-youle</username>
  182 + <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password>
  183 + <servername/>
  184 + <data_tablespace/>
  185 + <index_tablespace/>
  186 + <attributes>
  187 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  188 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  189 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  190 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  191 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  192 + <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute>
  193 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  194 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  195 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  196 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  197 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  198 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  199 + </attributes>
  200 + </connection>
  201 + <connection>
  202 + <name>xlab_mysql_youle&#xff08;&#x672c;&#x673a;&#xff09;</name>
  203 + <server>localhost</server>
  204 + <type>MYSQL</type>
  205 + <access>Native</access>
  206 + <database>xlab_youle</database>
  207 + <port>3306</port>
  208 + <username>root</username>
  209 + <password>Encrypted </password>
  210 + <servername/>
  211 + <data_tablespace/>
  212 + <index_tablespace/>
  213 + <attributes>
  214 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  215 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  216 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  217 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  218 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  219 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  220 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  221 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  222 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  223 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  224 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  225 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  226 + </attributes>
  227 + </connection>
  228 + <connection>
  229 + <name>xlab_youle</name>
  230 + <server/>
  231 + <type>MYSQL</type>
  232 + <access>JNDI</access>
  233 + <database>xlab_youle</database>
  234 + <port>1521</port>
  235 + <username/>
  236 + <password>Encrypted </password>
  237 + <servername/>
  238 + <data_tablespace/>
  239 + <index_tablespace/>
  240 + <attributes>
  241 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  242 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  243 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  244 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  245 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  246 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  247 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  248 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  249 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  250 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  251 + </attributes>
  252 + </connection>
  253 + <order>
  254 + <hop> <from>&#x8868;&#x8f93;&#x5165;</from><to>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;</to><enabled>Y</enabled> </hop>
  255 + <hop> <from>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;</from><to>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x7ad9;&#x70b9;&#x67e5;&#x8be2;&#x7528;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
  256 + <hop> <from>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;</from><to>&#x8fdb;&#x573a;&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x67e5;&#x8be2;&#x7528;&#x7684;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
  257 + <hop> <from>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x7ad9;&#x70b9;&#x67e5;&#x8be2;&#x7528;&#x6570;&#x636e;</from><to>&#x67e5;&#x627e;&#x8d77;&#x70b9;&#x7ad9;&#x540d;&#x79f0;</to><enabled>Y</enabled> </hop>
  258 + <hop> <from>&#x67e5;&#x627e;&#x8d77;&#x70b9;&#x7ad9;&#x540d;&#x79f0;</from><to>&#x67e5;&#x627e;&#x7ec8;&#x70b9;&#x7ad9;&#x540d;&#x79f0;</to><enabled>Y</enabled> </hop>
  259 + <hop> <from>&#x67e5;&#x627e;&#x7ec8;&#x70b9;&#x7ad9;&#x540d;&#x79f0;</from><to>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</to><enabled>Y</enabled> </hop>
  260 + <hop> <from>&#x8fdb;&#x573a;&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x67e5;&#x8be2;&#x7528;&#x7684;&#x6570;&#x636e;</from><to>&#x5b57;&#x6bb5;&#x9009;&#x62e9; 2</to><enabled>Y</enabled> </hop>
  261 + <hop> <from>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</from><to>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</to><enabled>Y</enabled> </hop>
  262 + <hop> <from>&#x5b57;&#x6bb5;&#x9009;&#x62e9; 2</from><to>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</to><enabled>Y</enabled> </hop>
  263 + <hop> <from>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</from><to>&#x8ba1;&#x7b97;&#x53d1;&#x8f66;&#x7ad9;&#x540d;</to><enabled>Y</enabled> </hop>
  264 + <hop> <from>&#x8ba1;&#x7b97;&#x53d1;&#x8f66;&#x7ad9;&#x540d;</from><to>&#x5217;&#x8f6c;&#x884c;</to><enabled>Y</enabled> </hop>
  265 + <hop> <from>&#x5217;&#x8f6c;&#x884c;</from><to>&#x53bb;&#x9664;&#x5b57;&#x6bb5;</to><enabled>Y</enabled> </hop>
  266 + <hop> <from>&#x53bb;&#x9664;&#x5b57;&#x6bb5;</from><to>Excel&#x8f93;&#x51fa;</to><enabled>Y</enabled> </hop>
  267 + <hop> <from>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</from><to>&#x8868;&#x8f93;&#x5165;</to><enabled>Y</enabled> </hop>
  268 + </order>
  269 + <step>
  270 + <name>Excel&#x8f93;&#x51fa;</name>
  271 + <type>ExcelOutput</type>
  272 + <description/>
  273 + <distribute>Y</distribute>
  274 + <custom_distribution/>
  275 + <copies>1</copies>
  276 + <partitioning>
  277 + <method>none</method>
  278 + <schema_name/>
  279 + </partitioning>
  280 + <header>Y</header>
  281 + <footer>N</footer>
  282 + <encoding/>
  283 + <append>N</append>
  284 + <add_to_result_filenames>Y</add_to_result_filenames>
  285 + <file>
  286 + <name>&#x24;&#x7b;tempfilepath&#x7d;</name>
  287 + <extention>xls</extention>
  288 + <do_not_open_newfile_init>N</do_not_open_newfile_init>
  289 + <create_parent_folder>N</create_parent_folder>
  290 + <split>N</split>
  291 + <add_date>N</add_date>
  292 + <add_time>N</add_time>
  293 + <SpecifyFormat>N</SpecifyFormat>
  294 + <date_time_format/>
  295 + <sheetname>Sheet1</sheetname>
  296 + <autosizecolums>N</autosizecolums>
  297 + <nullisblank>N</nullisblank>
  298 + <protect_sheet>N</protect_sheet>
  299 + <password>Encrypted </password>
  300 + <splitevery>0</splitevery>
  301 + <usetempfiles>N</usetempfiles>
  302 + <tempdirectory/>
  303 + </file>
  304 + <template>
  305 + <enabled>N</enabled>
  306 + <append>N</append>
  307 + <filename>template.xls</filename>
  308 + </template>
  309 + <fields>
  310 + <field>
  311 + <name>lp</name>
  312 + <type>String</type>
  313 + <format/>
  314 + </field>
  315 + <field>
  316 + <name>fcno1_id</name>
  317 + <type>String</type>
  318 + <format/>
  319 + </field>
  320 + <field>
  321 + <name>fcno1_fcsj</name>
  322 + <type>String</type>
  323 + <format/>
  324 + </field>
  325 + <field>
  326 + <name>fcno1_zdname</name>
  327 + <type>String</type>
  328 + <format/>
  329 + </field>
  330 + <field>
  331 + <name>fcno1_bctype</name>
  332 + <type>String</type>
  333 + <format/>
  334 + </field>
  335 + <field>
  336 + <name>fcno1_xldir</name>
  337 + <type>String</type>
  338 + <format/>
  339 + </field>
  340 + <field>
  341 + <name>fcno1_isfb</name>
  342 + <type>String</type>
  343 + <format/>
  344 + </field>
  345 + <field>
  346 + <name>fcno2_id</name>
  347 + <type>String</type>
  348 + <format/>
  349 + </field>
  350 + <field>
  351 + <name>fcno2_fcsj</name>
  352 + <type>String</type>
  353 + <format/>
  354 + </field>
  355 + <field>
  356 + <name>fcno2_zdname</name>
  357 + <type>String</type>
  358 + <format/>
  359 + </field>
  360 + <field>
  361 + <name>fcno2_bctype</name>
  362 + <type>String</type>
  363 + <format/>
  364 + </field>
  365 + <field>
  366 + <name>fcno2_xldir</name>
  367 + <type>String</type>
  368 + <format/>
  369 + </field>
  370 + <field>
  371 + <name>fcno2_isfb</name>
  372 + <type>String</type>
  373 + <format/>
  374 + </field>
  375 + <field>
  376 + <name>fcno3_id</name>
  377 + <type>String</type>
  378 + <format/>
  379 + </field>
  380 + <field>
  381 + <name>fcno3_fcsj</name>
  382 + <type>String</type>
  383 + <format/>
  384 + </field>
  385 + <field>
  386 + <name>fcno3_zdname</name>
  387 + <type>String</type>
  388 + <format/>
  389 + </field>
  390 + <field>
  391 + <name>fcno3_bctype</name>
  392 + <type>String</type>
  393 + <format/>
  394 + </field>
  395 + <field>
  396 + <name>fcno3_xldir</name>
  397 + <type>String</type>
  398 + <format/>
  399 + </field>
  400 + <field>
  401 + <name>fcno3_isfb</name>
  402 + <type>String</type>
  403 + <format/>
  404 + </field>
  405 + <field>
  406 + <name>fcno4_id</name>
  407 + <type>String</type>
  408 + <format/>
  409 + </field>
  410 + <field>
  411 + <name>fcno4_fcsj</name>
  412 + <type>String</type>
  413 + <format/>
  414 + </field>
  415 + <field>
  416 + <name>fcno4_zdname</name>
  417 + <type>String</type>
  418 + <format/>
  419 + </field>
  420 + <field>
  421 + <name>fcno4_bctype</name>
  422 + <type>String</type>
  423 + <format/>
  424 + </field>
  425 + <field>
  426 + <name>fcno4_xldir</name>
  427 + <type>String</type>
  428 + <format/>
  429 + </field>
  430 + <field>
  431 + <name>fcno4_isfb</name>
  432 + <type>String</type>
  433 + <format/>
  434 + </field>
  435 + <field>
  436 + <name>fcno5_id</name>
  437 + <type>String</type>
  438 + <format/>
  439 + </field>
  440 + <field>
  441 + <name>fcno5_fcsj</name>
  442 + <type>String</type>
  443 + <format/>
  444 + </field>
  445 + <field>
  446 + <name>fcno5_zdname</name>
  447 + <type>String</type>
  448 + <format/>
  449 + </field>
  450 + <field>
  451 + <name>fcno5_bctype</name>
  452 + <type>String</type>
  453 + <format/>
  454 + </field>
  455 + <field>
  456 + <name>fcno5_xldir</name>
  457 + <type>String</type>
  458 + <format/>
  459 + </field>
  460 + <field>
  461 + <name>fcno5_isfb</name>
  462 + <type>String</type>
  463 + <format/>
  464 + </field>
  465 + <field>
  466 + <name>fcno6_id</name>
  467 + <type>String</type>
  468 + <format/>
  469 + </field>
  470 + <field>
  471 + <name>fcno6_fcsj</name>
  472 + <type>String</type>
  473 + <format/>
  474 + </field>
  475 + <field>
  476 + <name>fcno6_zdname</name>
  477 + <type>String</type>
  478 + <format/>
  479 + </field>
  480 + <field>
  481 + <name>fcno6_bctype</name>
  482 + <type>String</type>
  483 + <format/>
  484 + </field>
  485 + <field>
  486 + <name>fcno6_xldir</name>
  487 + <type>String</type>
  488 + <format/>
  489 + </field>
  490 + <field>
  491 + <name>fcno6_isfb</name>
  492 + <type>String</type>
  493 + <format/>
  494 + </field>
  495 + <field>
  496 + <name>fcno7_id</name>
  497 + <type>String</type>
  498 + <format/>
  499 + </field>
  500 + <field>
  501 + <name>fcno7_fcsj</name>
  502 + <type>String</type>
  503 + <format/>
  504 + </field>
  505 + <field>
  506 + <name>fcno7_zdname</name>
  507 + <type>String</type>
  508 + <format/>
  509 + </field>
  510 + <field>
  511 + <name>fcno7_bctype</name>
  512 + <type>String</type>
  513 + <format/>
  514 + </field>
  515 + <field>
  516 + <name>fcno7_xldir</name>
  517 + <type>String</type>
  518 + <format/>
  519 + </field>
  520 + <field>
  521 + <name>fcno7_isfb</name>
  522 + <type>String</type>
  523 + <format/>
  524 + </field>
  525 + <field>
  526 + <name>fcno8_id</name>
  527 + <type>String</type>
  528 + <format/>
  529 + </field>
  530 + <field>
  531 + <name>fcno8_fcsj</name>
  532 + <type>String</type>
  533 + <format/>
  534 + </field>
  535 + <field>
  536 + <name>fcno8_zdname</name>
  537 + <type>String</type>
  538 + <format/>
  539 + </field>
  540 + <field>
  541 + <name>fcno8_bctype</name>
  542 + <type>String</type>
  543 + <format/>
  544 + </field>
  545 + <field>
  546 + <name>fcno8_xldir</name>
  547 + <type>String</type>
  548 + <format/>
  549 + </field>
  550 + <field>
  551 + <name>fcno8_isfb</name>
  552 + <type>String</type>
  553 + <format/>
  554 + </field>
  555 + <field>
  556 + <name>fcno9_id</name>
  557 + <type>String</type>
  558 + <format/>
  559 + </field>
  560 + <field>
  561 + <name>fcno9_fcsj</name>
  562 + <type>String</type>
  563 + <format/>
  564 + </field>
  565 + <field>
  566 + <name>fcno9_zdname</name>
  567 + <type>String</type>
  568 + <format/>
  569 + </field>
  570 + <field>
  571 + <name>fcno9_bctype</name>
  572 + <type>String</type>
  573 + <format/>
  574 + </field>
  575 + <field>
  576 + <name>fcno9_xldir</name>
  577 + <type>String</type>
  578 + <format/>
  579 + </field>
  580 + <field>
  581 + <name>fcno9_isfb</name>
  582 + <type>String</type>
  583 + <format/>
  584 + </field>
  585 + <field>
  586 + <name>fcno10_id</name>
  587 + <type>String</type>
  588 + <format/>
  589 + </field>
  590 + <field>
  591 + <name>fcno10_fcsj</name>
  592 + <type>String</type>
  593 + <format/>
  594 + </field>
  595 + <field>
  596 + <name>fcno10_zdname</name>
  597 + <type>String</type>
  598 + <format/>
  599 + </field>
  600 + <field>
  601 + <name>fcno10_bctype</name>
  602 + <type>String</type>
  603 + <format/>
  604 + </field>
  605 + <field>
  606 + <name>fcno10_xldir</name>
  607 + <type>String</type>
  608 + <format/>
  609 + </field>
  610 + <field>
  611 + <name>fcno10_isfb</name>
  612 + <type>String</type>
  613 + <format/>
  614 + </field>
  615 + <field>
  616 + <name>fcno11_id</name>
  617 + <type>String</type>
  618 + <format/>
  619 + </field>
  620 + <field>
  621 + <name>fcno11_fcsj</name>
  622 + <type>String</type>
  623 + <format/>
  624 + </field>
  625 + <field>
  626 + <name>fcno11_zdname</name>
  627 + <type>String</type>
  628 + <format/>
  629 + </field>
  630 + <field>
  631 + <name>fcno11_bctype</name>
  632 + <type>String</type>
  633 + <format/>
  634 + </field>
  635 + <field>
  636 + <name>fcno11_xldir</name>
  637 + <type>String</type>
  638 + <format/>
  639 + </field>
  640 + <field>
  641 + <name>fcno11_isfb</name>
  642 + <type>String</type>
  643 + <format/>
  644 + </field>
  645 + <field>
  646 + <name>fcno12_id</name>
  647 + <type>String</type>
  648 + <format/>
  649 + </field>
  650 + <field>
  651 + <name>fcno12_fcsj</name>
  652 + <type>String</type>
  653 + <format/>
  654 + </field>
  655 + <field>
  656 + <name>fcno12_zdname</name>
  657 + <type>String</type>
  658 + <format/>
  659 + </field>
  660 + <field>
  661 + <name>fcno12_bctype</name>
  662 + <type>String</type>
  663 + <format/>
  664 + </field>
  665 + <field>
  666 + <name>fcno12_xldir</name>
  667 + <type>String</type>
  668 + <format/>
  669 + </field>
  670 + <field>
  671 + <name>fcno12_isfb</name>
  672 + <type>String</type>
  673 + <format/>
  674 + </field>
  675 + <field>
  676 + <name>fcno13_id</name>
  677 + <type>String</type>
  678 + <format/>
  679 + </field>
  680 + <field>
  681 + <name>fcno13_fcsj</name>
  682 + <type>String</type>
  683 + <format/>
  684 + </field>
  685 + <field>
  686 + <name>fcno13_zdname</name>
  687 + <type>String</type>
  688 + <format/>
  689 + </field>
  690 + <field>
  691 + <name>fcno13_bctype</name>
  692 + <type>String</type>
  693 + <format/>
  694 + </field>
  695 + <field>
  696 + <name>fcno13_xldir</name>
  697 + <type>String</type>
  698 + <format/>
  699 + </field>
  700 + <field>
  701 + <name>fcno13_isfb</name>
  702 + <type>String</type>
  703 + <format/>
  704 + </field>
  705 + <field>
  706 + <name>fcno14_id</name>
  707 + <type>String</type>
  708 + <format/>
  709 + </field>
  710 + <field>
  711 + <name>fcno14_fcsj</name>
  712 + <type>String</type>
  713 + <format/>
  714 + </field>
  715 + <field>
  716 + <name>fcno14_zdname</name>
  717 + <type>String</type>
  718 + <format/>
  719 + </field>
  720 + <field>
  721 + <name>fcno14_bctype</name>
  722 + <type>String</type>
  723 + <format/>
  724 + </field>
  725 + <field>
  726 + <name>fcno14_xldir</name>
  727 + <type>String</type>
  728 + <format/>
  729 + </field>
  730 + <field>
  731 + <name>fcno14_isfb</name>
  732 + <type>String</type>
  733 + <format/>
  734 + </field>
  735 + <field>
  736 + <name>fcno15_id</name>
  737 + <type>String</type>
  738 + <format/>
  739 + </field>
  740 + <field>
  741 + <name>fcno15_fcsj</name>
  742 + <type>String</type>
  743 + <format/>
  744 + </field>
  745 + <field>
  746 + <name>fcno15_zdname</name>
  747 + <type>String</type>
  748 + <format/>
  749 + </field>
  750 + <field>
  751 + <name>fcno15_bctype</name>
  752 + <type>String</type>
  753 + <format/>
  754 + </field>
  755 + <field>
  756 + <name>fcno15_xldir</name>
  757 + <type>String</type>
  758 + <format/>
  759 + </field>
  760 + <field>
  761 + <name>fcno15_isfb</name>
  762 + <type>String</type>
  763 + <format/>
  764 + </field>
  765 + <field>
  766 + <name>fcno16_id</name>
  767 + <type>String</type>
  768 + <format/>
  769 + </field>
  770 + <field>
  771 + <name>fcno16_fcsj</name>
  772 + <type>String</type>
  773 + <format/>
  774 + </field>
  775 + <field>
  776 + <name>fcno16_zdname</name>
  777 + <type>String</type>
  778 + <format/>
  779 + </field>
  780 + <field>
  781 + <name>fcno16_bctype</name>
  782 + <type>String</type>
  783 + <format/>
  784 + </field>
  785 + <field>
  786 + <name>fcno16_xldir</name>
  787 + <type>String</type>
  788 + <format/>
  789 + </field>
  790 + <field>
  791 + <name>fcno16_isfb</name>
  792 + <type>String</type>
  793 + <format/>
  794 + </field>
  795 + <field>
  796 + <name>fcno17_id</name>
  797 + <type>String</type>
  798 + <format/>
  799 + </field>
  800 + <field>
  801 + <name>fcno17_fcsj</name>
  802 + <type>String</type>
  803 + <format/>
  804 + </field>
  805 + <field>
  806 + <name>fcno17_zdname</name>
  807 + <type>String</type>
  808 + <format/>
  809 + </field>
  810 + <field>
  811 + <name>fcno17_bctype</name>
  812 + <type>String</type>
  813 + <format/>
  814 + </field>
  815 + <field>
  816 + <name>fcno17_xldir</name>
  817 + <type>String</type>
  818 + <format/>
  819 + </field>
  820 + <field>
  821 + <name>fcno17_isfb</name>
  822 + <type>String</type>
  823 + <format/>
  824 + </field>
  825 + <field>
  826 + <name>fcno18_id</name>
  827 + <type>String</type>
  828 + <format/>
  829 + </field>
  830 + <field>
  831 + <name>fcno18_fcsj</name>
  832 + <type>String</type>
  833 + <format/>
  834 + </field>
  835 + <field>
  836 + <name>fcno18_zdname</name>
  837 + <type>String</type>
  838 + <format/>
  839 + </field>
  840 + <field>
  841 + <name>fcno18_bctype</name>
  842 + <type>String</type>
  843 + <format/>
  844 + </field>
  845 + <field>
  846 + <name>fcno18_xldir</name>
  847 + <type>String</type>
  848 + <format/>
  849 + </field>
  850 + <field>
  851 + <name>fcno18_isfb</name>
  852 + <type>String</type>
  853 + <format/>
  854 + </field>
  855 + <field>
  856 + <name>fcno19_id</name>
  857 + <type>String</type>
  858 + <format/>
  859 + </field>
  860 + <field>
  861 + <name>fcno19_fcsj</name>
  862 + <type>String</type>
  863 + <format/>
  864 + </field>
  865 + <field>
  866 + <name>fcno19_zdname</name>
  867 + <type>String</type>
  868 + <format/>
  869 + </field>
  870 + <field>
  871 + <name>fcno19_bctype</name>
  872 + <type>String</type>
  873 + <format/>
  874 + </field>
  875 + <field>
  876 + <name>fcno19_xldir</name>
  877 + <type>String</type>
  878 + <format/>
  879 + </field>
  880 + <field>
  881 + <name>fcno19_isfb</name>
  882 + <type>String</type>
  883 + <format/>
  884 + </field>
  885 + <field>
  886 + <name>fcno20_id</name>
  887 + <type>String</type>
  888 + <format/>
  889 + </field>
  890 + <field>
  891 + <name>fcno20_fcsj</name>
  892 + <type>String</type>
  893 + <format/>
  894 + </field>
  895 + <field>
  896 + <name>fcno20_zdname</name>
  897 + <type>String</type>
  898 + <format/>
  899 + </field>
  900 + <field>
  901 + <name>fcno20_bctype</name>
  902 + <type>String</type>
  903 + <format/>
  904 + </field>
  905 + <field>
  906 + <name>fcno20_xldir</name>
  907 + <type>String</type>
  908 + <format/>
  909 + </field>
  910 + <field>
  911 + <name>fcno20_isfb</name>
  912 + <type>String</type>
  913 + <format/>
  914 + </field>
  915 + <field>
  916 + <name>fcno21_id</name>
  917 + <type>String</type>
  918 + <format/>
  919 + </field>
  920 + <field>
  921 + <name>fcno21_fcsj</name>
  922 + <type>String</type>
  923 + <format/>
  924 + </field>
  925 + <field>
  926 + <name>fcno21_zdname</name>
  927 + <type>String</type>
  928 + <format/>
  929 + </field>
  930 + <field>
  931 + <name>fcno21_bctype</name>
  932 + <type>String</type>
  933 + <format/>
  934 + </field>
  935 + <field>
  936 + <name>fcno21_xldir</name>
  937 + <type>String</type>
  938 + <format/>
  939 + </field>
  940 + <field>
  941 + <name>fcno21_isfb</name>
  942 + <type>String</type>
  943 + <format/>
  944 + </field>
  945 + <field>
  946 + <name>fcno22_id</name>
  947 + <type>String</type>
  948 + <format/>
  949 + </field>
  950 + <field>
  951 + <name>fcno22_fcsj</name>
  952 + <type>String</type>
  953 + <format/>
  954 + </field>
  955 + <field>
  956 + <name>fcno22_zdname</name>
  957 + <type>String</type>
  958 + <format/>
  959 + </field>
  960 + <field>
  961 + <name>fcno22_bctype</name>
  962 + <type>String</type>
  963 + <format/>
  964 + </field>
  965 + <field>
  966 + <name>fcno22_xldir</name>
  967 + <type>String</type>
  968 + <format/>
  969 + </field>
  970 + <field>
  971 + <name>fcno22_isfb</name>
  972 + <type>String</type>
  973 + <format/>
  974 + </field>
  975 + <field>
  976 + <name>fcno23_id</name>
  977 + <type>String</type>
  978 + <format/>
  979 + </field>
  980 + <field>
  981 + <name>fcno23_fcsj</name>
  982 + <type>String</type>
  983 + <format/>
  984 + </field>
  985 + <field>
  986 + <name>fcno23_zdname</name>
  987 + <type>String</type>
  988 + <format/>
  989 + </field>
  990 + <field>
  991 + <name>fcno23_bctype</name>
  992 + <type>String</type>
  993 + <format/>
  994 + </field>
  995 + <field>
  996 + <name>fcno23_xldir</name>
  997 + <type>String</type>
  998 + <format/>
  999 + </field>
  1000 + <field>
  1001 + <name>fcno23_isfb</name>
  1002 + <type>String</type>
  1003 + <format/>
  1004 + </field>
  1005 + <field>
  1006 + <name>fcno24_id</name>
  1007 + <type>String</type>
  1008 + <format/>
  1009 + </field>
  1010 + <field>
  1011 + <name>fcno24_fcsj</name>
  1012 + <type>String</type>
  1013 + <format/>
  1014 + </field>
  1015 + <field>
  1016 + <name>fcno24_zdname</name>
  1017 + <type>String</type>
  1018 + <format/>
  1019 + </field>
  1020 + <field>
  1021 + <name>fcno24_bctype</name>
  1022 + <type>String</type>
  1023 + <format/>
  1024 + </field>
  1025 + <field>
  1026 + <name>fcno24_xldir</name>
  1027 + <type>String</type>
  1028 + <format/>
  1029 + </field>
  1030 + <field>
  1031 + <name>fcno24_isfb</name>
  1032 + <type>String</type>
  1033 + <format/>
  1034 + </field>
  1035 + <field>
  1036 + <name>fcno25_id</name>
  1037 + <type>String</type>
  1038 + <format/>
  1039 + </field>
  1040 + <field>
  1041 + <name>fcno25_fcsj</name>
  1042 + <type>String</type>
  1043 + <format/>
  1044 + </field>
  1045 + <field>
  1046 + <name>fcno25_zdname</name>
  1047 + <type>String</type>
  1048 + <format/>
  1049 + </field>
  1050 + <field>
  1051 + <name>fcno25_bctype</name>
  1052 + <type>String</type>
  1053 + <format/>
  1054 + </field>
  1055 + <field>
  1056 + <name>fcno25_xldir</name>
  1057 + <type>String</type>
  1058 + <format/>
  1059 + </field>
  1060 + <field>
  1061 + <name>fcno25_isfb</name>
  1062 + <type>String</type>
  1063 + <format/>
  1064 + </field>
  1065 + <field>
  1066 + <name>fcno26_id</name>
  1067 + <type>String</type>
  1068 + <format/>
  1069 + </field>
  1070 + <field>
  1071 + <name>fcno26_fcsj</name>
  1072 + <type>String</type>
  1073 + <format/>
  1074 + </field>
  1075 + <field>
  1076 + <name>fcno26_zdname</name>
  1077 + <type>String</type>
  1078 + <format/>
  1079 + </field>
  1080 + <field>
  1081 + <name>fcno26_bctype</name>
  1082 + <type>String</type>
  1083 + <format/>
  1084 + </field>
  1085 + <field>
  1086 + <name>fcno26_xldir</name>
  1087 + <type>String</type>
  1088 + <format/>
  1089 + </field>
  1090 + <field>
  1091 + <name>fcno26_isfb</name>
  1092 + <type>String</type>
  1093 + <format/>
  1094 + </field>
  1095 + <field>
  1096 + <name>fcno27_id</name>
  1097 + <type>String</type>
  1098 + <format/>
  1099 + </field>
  1100 + <field>
  1101 + <name>fcno27_fcsj</name>
  1102 + <type>String</type>
  1103 + <format/>
  1104 + </field>
  1105 + <field>
  1106 + <name>fcno27_zdname</name>
  1107 + <type>String</type>
  1108 + <format/>
  1109 + </field>
  1110 + <field>
  1111 + <name>fcno27_bctype</name>
  1112 + <type>String</type>
  1113 + <format/>
  1114 + </field>
  1115 + <field>
  1116 + <name>fcno27_xldir</name>
  1117 + <type>String</type>
  1118 + <format/>
  1119 + </field>
  1120 + <field>
  1121 + <name>fcno27_isfb</name>
  1122 + <type>String</type>
  1123 + <format/>
  1124 + </field>
  1125 + <field>
  1126 + <name>fcno28_id</name>
  1127 + <type>String</type>
  1128 + <format/>
  1129 + </field>
  1130 + <field>
  1131 + <name>fcno28_fcsj</name>
  1132 + <type>String</type>
  1133 + <format/>
  1134 + </field>
  1135 + <field>
  1136 + <name>fcno28_zdname</name>
  1137 + <type>String</type>
  1138 + <format/>
  1139 + </field>
  1140 + <field>
  1141 + <name>fcno28_bctype</name>
  1142 + <type>String</type>
  1143 + <format/>
  1144 + </field>
  1145 + <field>
  1146 + <name>fcno28_xldir</name>
  1147 + <type>String</type>
  1148 + <format/>
  1149 + </field>
  1150 + <field>
  1151 + <name>fcno28_isfb</name>
  1152 + <type>String</type>
  1153 + <format/>
  1154 + </field>
  1155 + <field>
  1156 + <name>fcno29_id</name>
  1157 + <type>String</type>
  1158 + <format/>
  1159 + </field>
  1160 + <field>
  1161 + <name>fcno29_fcsj</name>
  1162 + <type>String</type>
  1163 + <format/>
  1164 + </field>
  1165 + <field>
  1166 + <name>fcno29_zdname</name>
  1167 + <type>String</type>
  1168 + <format/>
  1169 + </field>
  1170 + <field>
  1171 + <name>fcno29_bctype</name>
  1172 + <type>String</type>
  1173 + <format/>
  1174 + </field>
  1175 + <field>
  1176 + <name>fcno29_xldir</name>
  1177 + <type>String</type>
  1178 + <format/>
  1179 + </field>
  1180 + <field>
  1181 + <name>fcno29_isfb</name>
  1182 + <type>String</type>
  1183 + <format/>
  1184 + </field>
  1185 + <field>
  1186 + <name>fcno30_id</name>
  1187 + <type>String</type>
  1188 + <format/>
  1189 + </field>
  1190 + <field>
  1191 + <name>fcno30_fcsj</name>
  1192 + <type>String</type>
  1193 + <format/>
  1194 + </field>
  1195 + <field>
  1196 + <name>fcno30_zdname</name>
  1197 + <type>String</type>
  1198 + <format/>
  1199 + </field>
  1200 + <field>
  1201 + <name>fcno30_bctype</name>
  1202 + <type>String</type>
  1203 + <format/>
  1204 + </field>
  1205 + <field>
  1206 + <name>fcno30_xldir</name>
  1207 + <type>String</type>
  1208 + <format/>
  1209 + </field>
  1210 + <field>
  1211 + <name>fcno30_isfb</name>
  1212 + <type>String</type>
  1213 + <format/>
  1214 + </field>
  1215 + <field>
  1216 + <name>fcno31_id</name>
  1217 + <type>String</type>
  1218 + <format/>
  1219 + </field>
  1220 + <field>
  1221 + <name>fcno31_fcsj</name>
  1222 + <type>String</type>
  1223 + <format/>
  1224 + </field>
  1225 + <field>
  1226 + <name>fcno31_zdname</name>
  1227 + <type>String</type>
  1228 + <format/>
  1229 + </field>
  1230 + <field>
  1231 + <name>fcno31_bctype</name>
  1232 + <type>String</type>
  1233 + <format/>
  1234 + </field>
  1235 + <field>
  1236 + <name>fcno31_xldir</name>
  1237 + <type>String</type>
  1238 + <format/>
  1239 + </field>
  1240 + <field>
  1241 + <name>fcno31_isfb</name>
  1242 + <type>String</type>
  1243 + <format/>
  1244 + </field>
  1245 + <field>
  1246 + <name>fcno32_id</name>
  1247 + <type>String</type>
  1248 + <format/>
  1249 + </field>
  1250 + <field>
  1251 + <name>fcno32_fcsj</name>
  1252 + <type>String</type>
  1253 + <format/>
  1254 + </field>
  1255 + <field>
  1256 + <name>fcno32_zdname</name>
  1257 + <type>String</type>
  1258 + <format/>
  1259 + </field>
  1260 + <field>
  1261 + <name>fcno32_bctype</name>
  1262 + <type>String</type>
  1263 + <format/>
  1264 + </field>
  1265 + <field>
  1266 + <name>fcno32_xldir</name>
  1267 + <type>String</type>
  1268 + <format/>
  1269 + </field>
  1270 + <field>
  1271 + <name>fcno32_isfb</name>
  1272 + <type>String</type>
  1273 + <format/>
  1274 + </field>
  1275 + <field>
  1276 + <name>fcno33_id</name>
  1277 + <type>String</type>
  1278 + <format/>
  1279 + </field>
  1280 + <field>
  1281 + <name>fcno33_fcsj</name>
  1282 + <type>String</type>
  1283 + <format/>
  1284 + </field>
  1285 + <field>
  1286 + <name>fcno33_zdname</name>
  1287 + <type>String</type>
  1288 + <format/>
  1289 + </field>
  1290 + <field>
  1291 + <name>fcno33_bctype</name>
  1292 + <type>String</type>
  1293 + <format/>
  1294 + </field>
  1295 + <field>
  1296 + <name>fcno33_xldir</name>
  1297 + <type>String</type>
  1298 + <format/>
  1299 + </field>
  1300 + <field>
  1301 + <name>fcno33_isfb</name>
  1302 + <type>String</type>
  1303 + <format/>
  1304 + </field>
  1305 + <field>
  1306 + <name>fcno34_id</name>
  1307 + <type>String</type>
  1308 + <format/>
  1309 + </field>
  1310 + <field>
  1311 + <name>fcno34_fcsj</name>
  1312 + <type>String</type>
  1313 + <format/>
  1314 + </field>
  1315 + <field>
  1316 + <name>fcno34_zdname</name>
  1317 + <type>String</type>
  1318 + <format/>
  1319 + </field>
  1320 + <field>
  1321 + <name>fcno34_bctype</name>
  1322 + <type>String</type>
  1323 + <format/>
  1324 + </field>
  1325 + <field>
  1326 + <name>fcno34_xldir</name>
  1327 + <type>String</type>
  1328 + <format/>
  1329 + </field>
  1330 + <field>
  1331 + <name>fcno34_isfb</name>
  1332 + <type>String</type>
  1333 + <format/>
  1334 + </field>
  1335 + <field>
  1336 + <name>fcno35_id</name>
  1337 + <type>String</type>
  1338 + <format/>
  1339 + </field>
  1340 + <field>
  1341 + <name>fcno35_fcsj</name>
  1342 + <type>String</type>
  1343 + <format/>
  1344 + </field>
  1345 + <field>
  1346 + <name>fcno35_zdname</name>
  1347 + <type>String</type>
  1348 + <format/>
  1349 + </field>
  1350 + <field>
  1351 + <name>fcno35_bctype</name>
  1352 + <type>String</type>
  1353 + <format/>
  1354 + </field>
  1355 + <field>
  1356 + <name>fcno35_xldir</name>
  1357 + <type>String</type>
  1358 + <format/>
  1359 + </field>
  1360 + <field>
  1361 + <name>fcno35_isfb</name>
  1362 + <type>String</type>
  1363 + <format/>
  1364 + </field>
  1365 + </fields>
  1366 + <custom>
  1367 + <header_font_name>arial</header_font_name>
  1368 + <header_font_size>10</header_font_size>
  1369 + <header_font_bold>N</header_font_bold>
  1370 + <header_font_italic>N</header_font_italic>
  1371 + <header_font_underline>no</header_font_underline>
  1372 + <header_font_orientation>horizontal</header_font_orientation>
  1373 + <header_font_color>black</header_font_color>
  1374 + <header_background_color>none</header_background_color>
  1375 + <header_row_height>255</header_row_height>
  1376 + <header_alignment>left</header_alignment>
  1377 + <header_image/>
  1378 + <row_font_name>arial</row_font_name>
  1379 + <row_font_size>10</row_font_size>
  1380 + <row_font_color>black</row_font_color>
  1381 + <row_background_color>none</row_background_color>
  1382 + </custom>
  1383 + <cluster_schema/>
  1384 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1385 + <xloc>696</xloc>
  1386 + <yloc>476</yloc>
  1387 + <draw>Y</draw>
  1388 + </GUI>
  1389 + </step>
  1390 +
  1391 + <step>
  1392 + <name>&#x5217;&#x8f6c;&#x884c;</name>
  1393 + <type>Denormaliser</type>
  1394 + <description/>
  1395 + <distribute>Y</distribute>
  1396 + <custom_distribution/>
  1397 + <copies>1</copies>
  1398 + <partitioning>
  1399 + <method>none</method>
  1400 + <schema_name/>
  1401 + </partitioning>
  1402 + <key_field>fcno</key_field>
  1403 + <group>
  1404 + <field>
  1405 + <name>lp</name>
  1406 + </field>
  1407 + </group>
  1408 + <fields>
  1409 + <field>
  1410 + <field_name>id</field_name>
  1411 + <key_value>1</key_value>
  1412 + <target_name>fcno1_id</target_name>
  1413 + <target_type>String</target_type>
  1414 + <target_format/>
  1415 + <target_length>-1</target_length>
  1416 + <target_precision>-1</target_precision>
  1417 + <target_decimal_symbol/>
  1418 + <target_grouping_symbol/>
  1419 + <target_currency_symbol/>
  1420 + <target_null_string/>
  1421 + <target_aggregation_type>-</target_aggregation_type>
  1422 + </field>
  1423 + <field>
  1424 + <field_name>fcsj</field_name>
  1425 + <key_value>1</key_value>
  1426 + <target_name>fcno1_fcsj</target_name>
  1427 + <target_type>String</target_type>
  1428 + <target_format/>
  1429 + <target_length>-1</target_length>
  1430 + <target_precision>-1</target_precision>
  1431 + <target_decimal_symbol/>
  1432 + <target_grouping_symbol/>
  1433 + <target_currency_symbol/>
  1434 + <target_null_string/>
  1435 + <target_aggregation_type>-</target_aggregation_type>
  1436 + </field>
  1437 + <field>
  1438 + <field_name>fczdName</field_name>
  1439 + <key_value>1</key_value>
  1440 + <target_name>fcno1_zdname</target_name>
  1441 + <target_type>String</target_type>
  1442 + <target_format/>
  1443 + <target_length>-1</target_length>
  1444 + <target_precision>-1</target_precision>
  1445 + <target_decimal_symbol/>
  1446 + <target_grouping_symbol/>
  1447 + <target_currency_symbol/>
  1448 + <target_null_string/>
  1449 + <target_aggregation_type>-</target_aggregation_type>
  1450 + </field>
  1451 + <field>
  1452 + <field_name>bc_type</field_name>
  1453 + <key_value>1</key_value>
  1454 + <target_name>fcno1_bctype</target_name>
  1455 + <target_type>String</target_type>
  1456 + <target_format/>
  1457 + <target_length>-1</target_length>
  1458 + <target_precision>-1</target_precision>
  1459 + <target_decimal_symbol/>
  1460 + <target_grouping_symbol/>
  1461 + <target_currency_symbol/>
  1462 + <target_null_string/>
  1463 + <target_aggregation_type>-</target_aggregation_type>
  1464 + </field>
  1465 + <field>
  1466 + <field_name>xl_dir</field_name>
  1467 + <key_value>1</key_value>
  1468 + <target_name>fcno1_xldir</target_name>
  1469 + <target_type>String</target_type>
  1470 + <target_format/>
  1471 + <target_length>-1</target_length>
  1472 + <target_precision>-1</target_precision>
  1473 + <target_decimal_symbol/>
  1474 + <target_grouping_symbol/>
  1475 + <target_currency_symbol/>
  1476 + <target_null_string/>
  1477 + <target_aggregation_type>-</target_aggregation_type>
  1478 + </field>
  1479 + <field>
  1480 + <field_name>isfb</field_name>
  1481 + <key_value>1</key_value>
  1482 + <target_name>fcno1_isfb</target_name>
  1483 + <target_type>String</target_type>
  1484 + <target_format/>
  1485 + <target_length>-1</target_length>
  1486 + <target_precision>-1</target_precision>
  1487 + <target_decimal_symbol/>
  1488 + <target_grouping_symbol/>
  1489 + <target_currency_symbol/>
  1490 + <target_null_string/>
  1491 + <target_aggregation_type>-</target_aggregation_type>
  1492 + </field>
  1493 + <field>
  1494 + <field_name>id</field_name>
  1495 + <key_value>2</key_value>
  1496 + <target_name>fcno2_id</target_name>
  1497 + <target_type>String</target_type>
  1498 + <target_format/>
  1499 + <target_length>-1</target_length>
  1500 + <target_precision>-1</target_precision>
  1501 + <target_decimal_symbol/>
  1502 + <target_grouping_symbol/>
  1503 + <target_currency_symbol/>
  1504 + <target_null_string/>
  1505 + <target_aggregation_type>-</target_aggregation_type>
  1506 + </field>
  1507 + <field>
  1508 + <field_name>fcsj</field_name>
  1509 + <key_value>2</key_value>
  1510 + <target_name>fcno2_fcsj</target_name>
  1511 + <target_type>String</target_type>
  1512 + <target_format/>
  1513 + <target_length>-1</target_length>
  1514 + <target_precision>-1</target_precision>
  1515 + <target_decimal_symbol/>
  1516 + <target_grouping_symbol/>
  1517 + <target_currency_symbol/>
  1518 + <target_null_string/>
  1519 + <target_aggregation_type>-</target_aggregation_type>
  1520 + </field>
  1521 + <field>
  1522 + <field_name>fczdName</field_name>
  1523 + <key_value>2</key_value>
  1524 + <target_name>fcno2_zdname</target_name>
  1525 + <target_type>String</target_type>
  1526 + <target_format/>
  1527 + <target_length>-1</target_length>
  1528 + <target_precision>-1</target_precision>
  1529 + <target_decimal_symbol/>
  1530 + <target_grouping_symbol/>
  1531 + <target_currency_symbol/>
  1532 + <target_null_string/>
  1533 + <target_aggregation_type>-</target_aggregation_type>
  1534 + </field>
  1535 + <field>
  1536 + <field_name>bc_type</field_name>
  1537 + <key_value>2</key_value>
  1538 + <target_name>fcno2_bctype</target_name>
  1539 + <target_type>String</target_type>
  1540 + <target_format/>
  1541 + <target_length>-1</target_length>
  1542 + <target_precision>-1</target_precision>
  1543 + <target_decimal_symbol/>
  1544 + <target_grouping_symbol/>
  1545 + <target_currency_symbol/>
  1546 + <target_null_string/>
  1547 + <target_aggregation_type>-</target_aggregation_type>
  1548 + </field>
  1549 + <field>
  1550 + <field_name>xl_dir</field_name>
  1551 + <key_value>2</key_value>
  1552 + <target_name>fcno2_xldir</target_name>
  1553 + <target_type>String</target_type>
  1554 + <target_format/>
  1555 + <target_length>-1</target_length>
  1556 + <target_precision>-1</target_precision>
  1557 + <target_decimal_symbol/>
  1558 + <target_grouping_symbol/>
  1559 + <target_currency_symbol/>
  1560 + <target_null_string/>
  1561 + <target_aggregation_type>-</target_aggregation_type>
  1562 + </field>
  1563 + <field>
  1564 + <field_name>isfb</field_name>
  1565 + <key_value>2</key_value>
  1566 + <target_name>fcno2_isfb</target_name>
  1567 + <target_type>String</target_type>
  1568 + <target_format/>
  1569 + <target_length>-1</target_length>
  1570 + <target_precision>-1</target_precision>
  1571 + <target_decimal_symbol/>
  1572 + <target_grouping_symbol/>
  1573 + <target_currency_symbol/>
  1574 + <target_null_string/>
  1575 + <target_aggregation_type>-</target_aggregation_type>
  1576 + </field>
  1577 + <field>
  1578 + <field_name>id</field_name>
  1579 + <key_value>3</key_value>
  1580 + <target_name>fcno3_id</target_name>
  1581 + <target_type>String</target_type>
  1582 + <target_format/>
  1583 + <target_length>-1</target_length>
  1584 + <target_precision>-1</target_precision>
  1585 + <target_decimal_symbol/>
  1586 + <target_grouping_symbol/>
  1587 + <target_currency_symbol/>
  1588 + <target_null_string/>
  1589 + <target_aggregation_type>-</target_aggregation_type>
  1590 + </field>
  1591 + <field>
  1592 + <field_name>fcsj</field_name>
  1593 + <key_value>3</key_value>
  1594 + <target_name>fcno3_fcsj</target_name>
  1595 + <target_type>String</target_type>
  1596 + <target_format/>
  1597 + <target_length>-1</target_length>
  1598 + <target_precision>-1</target_precision>
  1599 + <target_decimal_symbol/>
  1600 + <target_grouping_symbol/>
  1601 + <target_currency_symbol/>
  1602 + <target_null_string/>
  1603 + <target_aggregation_type>-</target_aggregation_type>
  1604 + </field>
  1605 + <field>
  1606 + <field_name>fczdName</field_name>
  1607 + <key_value>3</key_value>
  1608 + <target_name>fcno3_zdname</target_name>
  1609 + <target_type>String</target_type>
  1610 + <target_format/>
  1611 + <target_length>-1</target_length>
  1612 + <target_precision>-1</target_precision>
  1613 + <target_decimal_symbol/>
  1614 + <target_grouping_symbol/>
  1615 + <target_currency_symbol/>
  1616 + <target_null_string/>
  1617 + <target_aggregation_type>-</target_aggregation_type>
  1618 + </field>
  1619 + <field>
  1620 + <field_name>bc_type</field_name>
  1621 + <key_value>3</key_value>
  1622 + <target_name>fcno3_bctype</target_name>
  1623 + <target_type>String</target_type>
  1624 + <target_format/>
  1625 + <target_length>-1</target_length>
  1626 + <target_precision>-1</target_precision>
  1627 + <target_decimal_symbol/>
  1628 + <target_grouping_symbol/>
  1629 + <target_currency_symbol/>
  1630 + <target_null_string/>
  1631 + <target_aggregation_type>-</target_aggregation_type>
  1632 + </field>
  1633 + <field>
  1634 + <field_name>xl_dir</field_name>
  1635 + <key_value>3</key_value>
  1636 + <target_name>fcno3_xldir</target_name>
  1637 + <target_type>String</target_type>
  1638 + <target_format/>
  1639 + <target_length>-1</target_length>
  1640 + <target_precision>-1</target_precision>
  1641 + <target_decimal_symbol/>
  1642 + <target_grouping_symbol/>
  1643 + <target_currency_symbol/>
  1644 + <target_null_string/>
  1645 + <target_aggregation_type>-</target_aggregation_type>
  1646 + </field>
  1647 + <field>
  1648 + <field_name>isfb</field_name>
  1649 + <key_value>3</key_value>
  1650 + <target_name>fcno3_isfb</target_name>
  1651 + <target_type>String</target_type>
  1652 + <target_format/>
  1653 + <target_length>-1</target_length>
  1654 + <target_precision>-1</target_precision>
  1655 + <target_decimal_symbol/>
  1656 + <target_grouping_symbol/>
  1657 + <target_currency_symbol/>
  1658 + <target_null_string/>
  1659 + <target_aggregation_type>-</target_aggregation_type>
  1660 + </field>
  1661 + <field>
  1662 + <field_name>id</field_name>
  1663 + <key_value>4</key_value>
  1664 + <target_name>fcno4_id</target_name>
  1665 + <target_type>String</target_type>
  1666 + <target_format/>
  1667 + <target_length>-1</target_length>
  1668 + <target_precision>-1</target_precision>
  1669 + <target_decimal_symbol/>
  1670 + <target_grouping_symbol/>
  1671 + <target_currency_symbol/>
  1672 + <target_null_string/>
  1673 + <target_aggregation_type>-</target_aggregation_type>
  1674 + </field>
  1675 + <field>
  1676 + <field_name>fcsj</field_name>
  1677 + <key_value>4</key_value>
  1678 + <target_name>fcno4_fcsj</target_name>
  1679 + <target_type>String</target_type>
  1680 + <target_format/>
  1681 + <target_length>-1</target_length>
  1682 + <target_precision>-1</target_precision>
  1683 + <target_decimal_symbol/>
  1684 + <target_grouping_symbol/>
  1685 + <target_currency_symbol/>
  1686 + <target_null_string/>
  1687 + <target_aggregation_type>-</target_aggregation_type>
  1688 + </field>
  1689 + <field>
  1690 + <field_name>fczdName</field_name>
  1691 + <key_value>4</key_value>
  1692 + <target_name>fcno4_zdname</target_name>
  1693 + <target_type>String</target_type>
  1694 + <target_format/>
  1695 + <target_length>-1</target_length>
  1696 + <target_precision>-1</target_precision>
  1697 + <target_decimal_symbol/>
  1698 + <target_grouping_symbol/>
  1699 + <target_currency_symbol/>
  1700 + <target_null_string/>
  1701 + <target_aggregation_type>-</target_aggregation_type>
  1702 + </field>
  1703 + <field>
  1704 + <field_name>bc_type</field_name>
  1705 + <key_value>4</key_value>
  1706 + <target_name>fcno4_bctype</target_name>
  1707 + <target_type>String</target_type>
  1708 + <target_format/>
  1709 + <target_length>-1</target_length>
  1710 + <target_precision>-1</target_precision>
  1711 + <target_decimal_symbol/>
  1712 + <target_grouping_symbol/>
  1713 + <target_currency_symbol/>
  1714 + <target_null_string/>
  1715 + <target_aggregation_type>-</target_aggregation_type>
  1716 + </field>
  1717 + <field>
  1718 + <field_name>xl_dir</field_name>
  1719 + <key_value>4</key_value>
  1720 + <target_name>fcno4_xldir</target_name>
  1721 + <target_type>String</target_type>
  1722 + <target_format/>
  1723 + <target_length>-1</target_length>
  1724 + <target_precision>-1</target_precision>
  1725 + <target_decimal_symbol/>
  1726 + <target_grouping_symbol/>
  1727 + <target_currency_symbol/>
  1728 + <target_null_string/>
  1729 + <target_aggregation_type>-</target_aggregation_type>
  1730 + </field>
  1731 + <field>
  1732 + <field_name>isfb</field_name>
  1733 + <key_value>4</key_value>
  1734 + <target_name>fcno4_isfb</target_name>
  1735 + <target_type>String</target_type>
  1736 + <target_format/>
  1737 + <target_length>-1</target_length>
  1738 + <target_precision>-1</target_precision>
  1739 + <target_decimal_symbol/>
  1740 + <target_grouping_symbol/>
  1741 + <target_currency_symbol/>
  1742 + <target_null_string/>
  1743 + <target_aggregation_type>-</target_aggregation_type>
  1744 + </field>
  1745 + <field>
  1746 + <field_name>id</field_name>
  1747 + <key_value>5</key_value>
  1748 + <target_name>fcno5_id</target_name>
  1749 + <target_type>String</target_type>
  1750 + <target_format/>
  1751 + <target_length>-1</target_length>
  1752 + <target_precision>-1</target_precision>
  1753 + <target_decimal_symbol/>
  1754 + <target_grouping_symbol/>
  1755 + <target_currency_symbol/>
  1756 + <target_null_string/>
  1757 + <target_aggregation_type>-</target_aggregation_type>
  1758 + </field>
  1759 + <field>
  1760 + <field_name>fcsj</field_name>
  1761 + <key_value>5</key_value>
  1762 + <target_name>fcno5_fcsj</target_name>
  1763 + <target_type>String</target_type>
  1764 + <target_format/>
  1765 + <target_length>-1</target_length>
  1766 + <target_precision>-1</target_precision>
  1767 + <target_decimal_symbol/>
  1768 + <target_grouping_symbol/>
  1769 + <target_currency_symbol/>
  1770 + <target_null_string/>
  1771 + <target_aggregation_type>-</target_aggregation_type>
  1772 + </field>
  1773 + <field>
  1774 + <field_name>fczdName</field_name>
  1775 + <key_value>5</key_value>
  1776 + <target_name>fcno5_zdname</target_name>
  1777 + <target_type>String</target_type>
  1778 + <target_format/>
  1779 + <target_length>-1</target_length>
  1780 + <target_precision>-1</target_precision>
  1781 + <target_decimal_symbol/>
  1782 + <target_grouping_symbol/>
  1783 + <target_currency_symbol/>
  1784 + <target_null_string/>
  1785 + <target_aggregation_type>-</target_aggregation_type>
  1786 + </field>
  1787 + <field>
  1788 + <field_name>bc_type</field_name>
  1789 + <key_value>5</key_value>
  1790 + <target_name>fcno5_bctype</target_name>
  1791 + <target_type>String</target_type>
  1792 + <target_format/>
  1793 + <target_length>-1</target_length>
  1794 + <target_precision>-1</target_precision>
  1795 + <target_decimal_symbol/>
  1796 + <target_grouping_symbol/>
  1797 + <target_currency_symbol/>
  1798 + <target_null_string/>
  1799 + <target_aggregation_type>-</target_aggregation_type>
  1800 + </field>
  1801 + <field>
  1802 + <field_name>xl_dir</field_name>
  1803 + <key_value>5</key_value>
  1804 + <target_name>fcno5_xldir</target_name>
  1805 + <target_type>String</target_type>
  1806 + <target_format/>
  1807 + <target_length>-1</target_length>
  1808 + <target_precision>-1</target_precision>
  1809 + <target_decimal_symbol/>
  1810 + <target_grouping_symbol/>
  1811 + <target_currency_symbol/>
  1812 + <target_null_string/>
  1813 + <target_aggregation_type>-</target_aggregation_type>
  1814 + </field>
  1815 + <field>
  1816 + <field_name>isfb</field_name>
  1817 + <key_value>5</key_value>
  1818 + <target_name>fcno5_isfb</target_name>
  1819 + <target_type>String</target_type>
  1820 + <target_format/>
  1821 + <target_length>-1</target_length>
  1822 + <target_precision>-1</target_precision>
  1823 + <target_decimal_symbol/>
  1824 + <target_grouping_symbol/>
  1825 + <target_currency_symbol/>
  1826 + <target_null_string/>
  1827 + <target_aggregation_type>-</target_aggregation_type>
  1828 + </field>
  1829 + <field>
  1830 + <field_name>id</field_name>
  1831 + <key_value>6</key_value>
  1832 + <target_name>fcno6_id</target_name>
  1833 + <target_type>String</target_type>
  1834 + <target_format/>
  1835 + <target_length>-1</target_length>
  1836 + <target_precision>-1</target_precision>
  1837 + <target_decimal_symbol/>
  1838 + <target_grouping_symbol/>
  1839 + <target_currency_symbol/>
  1840 + <target_null_string/>
  1841 + <target_aggregation_type>-</target_aggregation_type>
  1842 + </field>
  1843 + <field>
  1844 + <field_name>fcsj</field_name>
  1845 + <key_value>6</key_value>
  1846 + <target_name>fcno6_fcsj</target_name>
  1847 + <target_type>String</target_type>
  1848 + <target_format/>
  1849 + <target_length>-1</target_length>
  1850 + <target_precision>-1</target_precision>
  1851 + <target_decimal_symbol/>
  1852 + <target_grouping_symbol/>
  1853 + <target_currency_symbol/>
  1854 + <target_null_string/>
  1855 + <target_aggregation_type>-</target_aggregation_type>
  1856 + </field>
  1857 + <field>
  1858 + <field_name>fczdName</field_name>
  1859 + <key_value>6</key_value>
  1860 + <target_name>fcno6_zdname</target_name>
  1861 + <target_type>String</target_type>
  1862 + <target_format/>
  1863 + <target_length>-1</target_length>
  1864 + <target_precision>-1</target_precision>
  1865 + <target_decimal_symbol/>
  1866 + <target_grouping_symbol/>
  1867 + <target_currency_symbol/>
  1868 + <target_null_string/>
  1869 + <target_aggregation_type>-</target_aggregation_type>
  1870 + </field>
  1871 + <field>
  1872 + <field_name>bc_type</field_name>
  1873 + <key_value>6</key_value>
  1874 + <target_name>fcno6_bctype</target_name>
  1875 + <target_type>String</target_type>
  1876 + <target_format/>
  1877 + <target_length>-1</target_length>
  1878 + <target_precision>-1</target_precision>
  1879 + <target_decimal_symbol/>
  1880 + <target_grouping_symbol/>
  1881 + <target_currency_symbol/>
  1882 + <target_null_string/>
  1883 + <target_aggregation_type>-</target_aggregation_type>
  1884 + </field>
  1885 + <field>
  1886 + <field_name>xl_dir</field_name>
  1887 + <key_value>6</key_value>
  1888 + <target_name>fcno6_xldir</target_name>
  1889 + <target_type>String</target_type>
  1890 + <target_format/>
  1891 + <target_length>-1</target_length>
  1892 + <target_precision>-1</target_precision>
  1893 + <target_decimal_symbol/>
  1894 + <target_grouping_symbol/>
  1895 + <target_currency_symbol/>
  1896 + <target_null_string/>
  1897 + <target_aggregation_type>-</target_aggregation_type>
  1898 + </field>
  1899 + <field>
  1900 + <field_name>isfb</field_name>
  1901 + <key_value>6</key_value>
  1902 + <target_name>fcno6_isfb</target_name>
  1903 + <target_type>String</target_type>
  1904 + <target_format/>
  1905 + <target_length>-1</target_length>
  1906 + <target_precision>-1</target_precision>
  1907 + <target_decimal_symbol/>
  1908 + <target_grouping_symbol/>
  1909 + <target_currency_symbol/>
  1910 + <target_null_string/>
  1911 + <target_aggregation_type>-</target_aggregation_type>
  1912 + </field>
  1913 + <field>
  1914 + <field_name>id</field_name>
  1915 + <key_value>7</key_value>
  1916 + <target_name>fcno7_id</target_name>
  1917 + <target_type>String</target_type>
  1918 + <target_format/>
  1919 + <target_length>-1</target_length>
  1920 + <target_precision>-1</target_precision>
  1921 + <target_decimal_symbol/>
  1922 + <target_grouping_symbol/>
  1923 + <target_currency_symbol/>
  1924 + <target_null_string/>
  1925 + <target_aggregation_type>-</target_aggregation_type>
  1926 + </field>
  1927 + <field>
  1928 + <field_name>fcsj</field_name>
  1929 + <key_value>7</key_value>
  1930 + <target_name>fcno7_fcsj</target_name>
  1931 + <target_type>String</target_type>
  1932 + <target_format/>
  1933 + <target_length>-1</target_length>
  1934 + <target_precision>-1</target_precision>
  1935 + <target_decimal_symbol/>
  1936 + <target_grouping_symbol/>
  1937 + <target_currency_symbol/>
  1938 + <target_null_string/>
  1939 + <target_aggregation_type>-</target_aggregation_type>
  1940 + </field>
  1941 + <field>
  1942 + <field_name>fczdName</field_name>
  1943 + <key_value>7</key_value>
  1944 + <target_name>fcno7_zdname</target_name>
  1945 + <target_type>String</target_type>
  1946 + <target_format/>
  1947 + <target_length>-1</target_length>
  1948 + <target_precision>-1</target_precision>
  1949 + <target_decimal_symbol/>
  1950 + <target_grouping_symbol/>
  1951 + <target_currency_symbol/>
  1952 + <target_null_string/>
  1953 + <target_aggregation_type>-</target_aggregation_type>
  1954 + </field>
  1955 + <field>
  1956 + <field_name>bc_type</field_name>
  1957 + <key_value>7</key_value>
  1958 + <target_name>fcno7_bctype</target_name>
  1959 + <target_type>String</target_type>
  1960 + <target_format/>
  1961 + <target_length>-1</target_length>
  1962 + <target_precision>-1</target_precision>
  1963 + <target_decimal_symbol/>
  1964 + <target_grouping_symbol/>
  1965 + <target_currency_symbol/>
  1966 + <target_null_string/>
  1967 + <target_aggregation_type>-</target_aggregation_type>
  1968 + </field>
  1969 + <field>
  1970 + <field_name>xl_dir</field_name>
  1971 + <key_value>7</key_value>
  1972 + <target_name>fcno7_xldir</target_name>
  1973 + <target_type>String</target_type>
  1974 + <target_format/>
  1975 + <target_length>-1</target_length>
  1976 + <target_precision>-1</target_precision>
  1977 + <target_decimal_symbol/>
  1978 + <target_grouping_symbol/>
  1979 + <target_currency_symbol/>
  1980 + <target_null_string/>
  1981 + <target_aggregation_type>-</target_aggregation_type>
  1982 + </field>
  1983 + <field>
  1984 + <field_name>isfb</field_name>
  1985 + <key_value>7</key_value>
  1986 + <target_name>fcno7_isfb</target_name>
  1987 + <target_type>String</target_type>
  1988 + <target_format/>
  1989 + <target_length>-1</target_length>
  1990 + <target_precision>-1</target_precision>
  1991 + <target_decimal_symbol/>
  1992 + <target_grouping_symbol/>
  1993 + <target_currency_symbol/>
  1994 + <target_null_string/>
  1995 + <target_aggregation_type>-</target_aggregation_type>
  1996 + </field>
  1997 + <field>
  1998 + <field_name>id</field_name>
  1999 + <key_value>8</key_value>
  2000 + <target_name>fcno8_id</target_name>
  2001 + <target_type>String</target_type>
  2002 + <target_format/>
  2003 + <target_length>-1</target_length>
  2004 + <target_precision>-1</target_precision>
  2005 + <target_decimal_symbol/>
  2006 + <target_grouping_symbol/>
  2007 + <target_currency_symbol/>
  2008 + <target_null_string/>
  2009 + <target_aggregation_type>-</target_aggregation_type>
  2010 + </field>
  2011 + <field>
  2012 + <field_name>fcsj</field_name>
  2013 + <key_value>8</key_value>
  2014 + <target_name>fcno8_fcsj</target_name>
  2015 + <target_type>String</target_type>
  2016 + <target_format/>
  2017 + <target_length>-1</target_length>
  2018 + <target_precision>-1</target_precision>
  2019 + <target_decimal_symbol/>
  2020 + <target_grouping_symbol/>
  2021 + <target_currency_symbol/>
  2022 + <target_null_string/>
  2023 + <target_aggregation_type>-</target_aggregation_type>
  2024 + </field>
  2025 + <field>
  2026 + <field_name>fczdName</field_name>
  2027 + <key_value>8</key_value>
  2028 + <target_name>fcno8_zdname</target_name>
  2029 + <target_type>String</target_type>
  2030 + <target_format/>
  2031 + <target_length>-1</target_length>
  2032 + <target_precision>-1</target_precision>
  2033 + <target_decimal_symbol/>
  2034 + <target_grouping_symbol/>
  2035 + <target_currency_symbol/>
  2036 + <target_null_string/>
  2037 + <target_aggregation_type>-</target_aggregation_type>
  2038 + </field>
  2039 + <field>
  2040 + <field_name>bc_type</field_name>
  2041 + <key_value>8</key_value>
  2042 + <target_name>fcno8_bctype</target_name>
  2043 + <target_type>String</target_type>
  2044 + <target_format/>
  2045 + <target_length>-1</target_length>
  2046 + <target_precision>-1</target_precision>
  2047 + <target_decimal_symbol/>
  2048 + <target_grouping_symbol/>
  2049 + <target_currency_symbol/>
  2050 + <target_null_string/>
  2051 + <target_aggregation_type>-</target_aggregation_type>
  2052 + </field>
  2053 + <field>
  2054 + <field_name>xl_dir</field_name>
  2055 + <key_value>8</key_value>
  2056 + <target_name>fcno8_xldir</target_name>
  2057 + <target_type>String</target_type>
  2058 + <target_format/>
  2059 + <target_length>-1</target_length>
  2060 + <target_precision>-1</target_precision>
  2061 + <target_decimal_symbol/>
  2062 + <target_grouping_symbol/>
  2063 + <target_currency_symbol/>
  2064 + <target_null_string/>
  2065 + <target_aggregation_type>-</target_aggregation_type>
  2066 + </field>
  2067 + <field>
  2068 + <field_name>isfb</field_name>
  2069 + <key_value>8</key_value>
  2070 + <target_name>fcno8_isfb</target_name>
  2071 + <target_type>String</target_type>
  2072 + <target_format/>
  2073 + <target_length>-1</target_length>
  2074 + <target_precision>-1</target_precision>
  2075 + <target_decimal_symbol/>
  2076 + <target_grouping_symbol/>
  2077 + <target_currency_symbol/>
  2078 + <target_null_string/>
  2079 + <target_aggregation_type>-</target_aggregation_type>
  2080 + </field>
  2081 + <field>
  2082 + <field_name>id</field_name>
  2083 + <key_value>9</key_value>
  2084 + <target_name>fcno9_id</target_name>
  2085 + <target_type>String</target_type>
  2086 + <target_format/>
  2087 + <target_length>-1</target_length>
  2088 + <target_precision>-1</target_precision>
  2089 + <target_decimal_symbol/>
  2090 + <target_grouping_symbol/>
  2091 + <target_currency_symbol/>
  2092 + <target_null_string/>
  2093 + <target_aggregation_type>-</target_aggregation_type>
  2094 + </field>
  2095 + <field>
  2096 + <field_name>fcsj</field_name>
  2097 + <key_value>9</key_value>
  2098 + <target_name>fcno9_fcsj</target_name>
  2099 + <target_type>String</target_type>
  2100 + <target_format/>
  2101 + <target_length>-1</target_length>
  2102 + <target_precision>-1</target_precision>
  2103 + <target_decimal_symbol/>
  2104 + <target_grouping_symbol/>
  2105 + <target_currency_symbol/>
  2106 + <target_null_string/>
  2107 + <target_aggregation_type>-</target_aggregation_type>
  2108 + </field>
  2109 + <field>
  2110 + <field_name>fczdName</field_name>
  2111 + <key_value>9</key_value>
  2112 + <target_name>fcno9_zdname</target_name>
  2113 + <target_type>String</target_type>
  2114 + <target_format/>
  2115 + <target_length>-1</target_length>
  2116 + <target_precision>-1</target_precision>
  2117 + <target_decimal_symbol/>
  2118 + <target_grouping_symbol/>
  2119 + <target_currency_symbol/>
  2120 + <target_null_string/>
  2121 + <target_aggregation_type>-</target_aggregation_type>
  2122 + </field>
  2123 + <field>
  2124 + <field_name>bc_type</field_name>
  2125 + <key_value>9</key_value>
  2126 + <target_name>fcno9_bctype</target_name>
  2127 + <target_type>String</target_type>
  2128 + <target_format/>
  2129 + <target_length>-1</target_length>
  2130 + <target_precision>-1</target_precision>
  2131 + <target_decimal_symbol/>
  2132 + <target_grouping_symbol/>
  2133 + <target_currency_symbol/>
  2134 + <target_null_string/>
  2135 + <target_aggregation_type>-</target_aggregation_type>
  2136 + </field>
  2137 + <field>
  2138 + <field_name>xl_dir</field_name>
  2139 + <key_value>9</key_value>
  2140 + <target_name>fcno9_xldir</target_name>
  2141 + <target_type>String</target_type>
  2142 + <target_format/>
  2143 + <target_length>-1</target_length>
  2144 + <target_precision>-1</target_precision>
  2145 + <target_decimal_symbol/>
  2146 + <target_grouping_symbol/>
  2147 + <target_currency_symbol/>
  2148 + <target_null_string/>
  2149 + <target_aggregation_type>-</target_aggregation_type>
  2150 + </field>
  2151 + <field>
  2152 + <field_name>isfb</field_name>
  2153 + <key_value>9</key_value>
  2154 + <target_name>fcno9_isfb</target_name>
  2155 + <target_type>String</target_type>
  2156 + <target_format/>
  2157 + <target_length>-1</target_length>
  2158 + <target_precision>-1</target_precision>
  2159 + <target_decimal_symbol/>
  2160 + <target_grouping_symbol/>
  2161 + <target_currency_symbol/>
  2162 + <target_null_string/>
  2163 + <target_aggregation_type>-</target_aggregation_type>
  2164 + </field>
  2165 + <field>
  2166 + <field_name>id</field_name>
  2167 + <key_value>10</key_value>
  2168 + <target_name>fcno10_id</target_name>
  2169 + <target_type>String</target_type>
  2170 + <target_format/>
  2171 + <target_length>-1</target_length>
  2172 + <target_precision>-1</target_precision>
  2173 + <target_decimal_symbol/>
  2174 + <target_grouping_symbol/>
  2175 + <target_currency_symbol/>
  2176 + <target_null_string/>
  2177 + <target_aggregation_type>-</target_aggregation_type>
  2178 + </field>
  2179 + <field>
  2180 + <field_name>fcsj</field_name>
  2181 + <key_value>10</key_value>
  2182 + <target_name>fcno10_fcsj</target_name>
  2183 + <target_type>String</target_type>
  2184 + <target_format/>
  2185 + <target_length>-1</target_length>
  2186 + <target_precision>-1</target_precision>
  2187 + <target_decimal_symbol/>
  2188 + <target_grouping_symbol/>
  2189 + <target_currency_symbol/>
  2190 + <target_null_string/>
  2191 + <target_aggregation_type>-</target_aggregation_type>
  2192 + </field>
  2193 + <field>
  2194 + <field_name>fczdName</field_name>
  2195 + <key_value>10</key_value>
  2196 + <target_name>fcno10_zdname</target_name>
  2197 + <target_type>String</target_type>
  2198 + <target_format/>
  2199 + <target_length>-1</target_length>
  2200 + <target_precision>-1</target_precision>
  2201 + <target_decimal_symbol/>
  2202 + <target_grouping_symbol/>
  2203 + <target_currency_symbol/>
  2204 + <target_null_string/>
  2205 + <target_aggregation_type>-</target_aggregation_type>
  2206 + </field>
  2207 + <field>
  2208 + <field_name>bc_type</field_name>
  2209 + <key_value>10</key_value>
  2210 + <target_name>fcno10_bctype</target_name>
  2211 + <target_type>String</target_type>
  2212 + <target_format/>
  2213 + <target_length>-1</target_length>
  2214 + <target_precision>-1</target_precision>
  2215 + <target_decimal_symbol/>
  2216 + <target_grouping_symbol/>
  2217 + <target_currency_symbol/>
  2218 + <target_null_string/>
  2219 + <target_aggregation_type>-</target_aggregation_type>
  2220 + </field>
  2221 + <field>
  2222 + <field_name>xl_dir</field_name>
  2223 + <key_value>10</key_value>
  2224 + <target_name>fcno10_xldir</target_name>
  2225 + <target_type>String</target_type>
  2226 + <target_format/>
  2227 + <target_length>-1</target_length>
  2228 + <target_precision>-1</target_precision>
  2229 + <target_decimal_symbol/>
  2230 + <target_grouping_symbol/>
  2231 + <target_currency_symbol/>
  2232 + <target_null_string/>
  2233 + <target_aggregation_type>-</target_aggregation_type>
  2234 + </field>
  2235 + <field>
  2236 + <field_name>isfb</field_name>
  2237 + <key_value>10</key_value>
  2238 + <target_name>fcno10_isfb</target_name>
  2239 + <target_type>String</target_type>
  2240 + <target_format/>
  2241 + <target_length>-1</target_length>
  2242 + <target_precision>-1</target_precision>
  2243 + <target_decimal_symbol/>
  2244 + <target_grouping_symbol/>
  2245 + <target_currency_symbol/>
  2246 + <target_null_string/>
  2247 + <target_aggregation_type>-</target_aggregation_type>
  2248 + </field>
  2249 + <field>
  2250 + <field_name>id</field_name>
  2251 + <key_value>11</key_value>
  2252 + <target_name>fcno11_id</target_name>
  2253 + <target_type>String</target_type>
  2254 + <target_format/>
  2255 + <target_length>-1</target_length>
  2256 + <target_precision>-1</target_precision>
  2257 + <target_decimal_symbol/>
  2258 + <target_grouping_symbol/>
  2259 + <target_currency_symbol/>
  2260 + <target_null_string/>
  2261 + <target_aggregation_type>-</target_aggregation_type>
  2262 + </field>
  2263 + <field>
  2264 + <field_name>fcsj</field_name>
  2265 + <key_value>11</key_value>
  2266 + <target_name>fcno11_fcsj</target_name>
  2267 + <target_type>String</target_type>
  2268 + <target_format/>
  2269 + <target_length>-1</target_length>
  2270 + <target_precision>-1</target_precision>
  2271 + <target_decimal_symbol/>
  2272 + <target_grouping_symbol/>
  2273 + <target_currency_symbol/>
  2274 + <target_null_string/>
  2275 + <target_aggregation_type>-</target_aggregation_type>
  2276 + </field>
  2277 + <field>
  2278 + <field_name>fczdName</field_name>
  2279 + <key_value>11</key_value>
  2280 + <target_name>fcno11_zdname</target_name>
  2281 + <target_type>String</target_type>
  2282 + <target_format/>
  2283 + <target_length>-1</target_length>
  2284 + <target_precision>-1</target_precision>
  2285 + <target_decimal_symbol/>
  2286 + <target_grouping_symbol/>
  2287 + <target_currency_symbol/>
  2288 + <target_null_string/>
  2289 + <target_aggregation_type>-</target_aggregation_type>
  2290 + </field>
  2291 + <field>
  2292 + <field_name>bc_type</field_name>
  2293 + <key_value>11</key_value>
  2294 + <target_name>fcno11_bctype</target_name>
  2295 + <target_type>String</target_type>
  2296 + <target_format/>
  2297 + <target_length>-1</target_length>
  2298 + <target_precision>-1</target_precision>
  2299 + <target_decimal_symbol/>
  2300 + <target_grouping_symbol/>
  2301 + <target_currency_symbol/>
  2302 + <target_null_string/>
  2303 + <target_aggregation_type>-</target_aggregation_type>
  2304 + </field>
  2305 + <field>
  2306 + <field_name>xl_dir</field_name>
  2307 + <key_value>11</key_value>
  2308 + <target_name>fcno11_xldir</target_name>
  2309 + <target_type>String</target_type>
  2310 + <target_format/>
  2311 + <target_length>-1</target_length>
  2312 + <target_precision>-1</target_precision>
  2313 + <target_decimal_symbol/>
  2314 + <target_grouping_symbol/>
  2315 + <target_currency_symbol/>
  2316 + <target_null_string/>
  2317 + <target_aggregation_type>-</target_aggregation_type>
  2318 + </field>
  2319 + <field>
  2320 + <field_name>isfb</field_name>
  2321 + <key_value>11</key_value>
  2322 + <target_name>fcno11_isfb</target_name>
  2323 + <target_type>String</target_type>
  2324 + <target_format/>
  2325 + <target_length>-1</target_length>
  2326 + <target_precision>-1</target_precision>
  2327 + <target_decimal_symbol/>
  2328 + <target_grouping_symbol/>
  2329 + <target_currency_symbol/>
  2330 + <target_null_string/>
  2331 + <target_aggregation_type>-</target_aggregation_type>
  2332 + </field>
  2333 + <field>
  2334 + <field_name>id</field_name>
  2335 + <key_value>12</key_value>
  2336 + <target_name>fcno12_id</target_name>
  2337 + <target_type>String</target_type>
  2338 + <target_format/>
  2339 + <target_length>-1</target_length>
  2340 + <target_precision>-1</target_precision>
  2341 + <target_decimal_symbol/>
  2342 + <target_grouping_symbol/>
  2343 + <target_currency_symbol/>
  2344 + <target_null_string/>
  2345 + <target_aggregation_type>-</target_aggregation_type>
  2346 + </field>
  2347 + <field>
  2348 + <field_name>fcsj</field_name>
  2349 + <key_value>12</key_value>
  2350 + <target_name>fcno12_fcsj</target_name>
  2351 + <target_type>String</target_type>
  2352 + <target_format/>
  2353 + <target_length>-1</target_length>
  2354 + <target_precision>-1</target_precision>
  2355 + <target_decimal_symbol/>
  2356 + <target_grouping_symbol/>
  2357 + <target_currency_symbol/>
  2358 + <target_null_string/>
  2359 + <target_aggregation_type>-</target_aggregation_type>
  2360 + </field>
  2361 + <field>
  2362 + <field_name>fczdName</field_name>
  2363 + <key_value>12</key_value>
  2364 + <target_name>fcno12_zdname</target_name>
  2365 + <target_type>String</target_type>
  2366 + <target_format/>
  2367 + <target_length>-1</target_length>
  2368 + <target_precision>-1</target_precision>
  2369 + <target_decimal_symbol/>
  2370 + <target_grouping_symbol/>
  2371 + <target_currency_symbol/>
  2372 + <target_null_string/>
  2373 + <target_aggregation_type>-</target_aggregation_type>
  2374 + </field>
  2375 + <field>
  2376 + <field_name>bc_type</field_name>
  2377 + <key_value>12</key_value>
  2378 + <target_name>fcno12_bctype</target_name>
  2379 + <target_type>String</target_type>
  2380 + <target_format/>
  2381 + <target_length>-1</target_length>
  2382 + <target_precision>-1</target_precision>
  2383 + <target_decimal_symbol/>
  2384 + <target_grouping_symbol/>
  2385 + <target_currency_symbol/>
  2386 + <target_null_string/>
  2387 + <target_aggregation_type>-</target_aggregation_type>
  2388 + </field>
  2389 + <field>
  2390 + <field_name>xl_dir</field_name>
  2391 + <key_value>12</key_value>
  2392 + <target_name>fcno12_xldir</target_name>
  2393 + <target_type>String</target_type>
  2394 + <target_format/>
  2395 + <target_length>-1</target_length>
  2396 + <target_precision>-1</target_precision>
  2397 + <target_decimal_symbol/>
  2398 + <target_grouping_symbol/>
  2399 + <target_currency_symbol/>
  2400 + <target_null_string/>
  2401 + <target_aggregation_type>-</target_aggregation_type>
  2402 + </field>
  2403 + <field>
  2404 + <field_name>isfb</field_name>
  2405 + <key_value>12</key_value>
  2406 + <target_name>fcno12_isfb</target_name>
  2407 + <target_type>String</target_type>
  2408 + <target_format/>
  2409 + <target_length>-1</target_length>
  2410 + <target_precision>-1</target_precision>
  2411 + <target_decimal_symbol/>
  2412 + <target_grouping_symbol/>
  2413 + <target_currency_symbol/>
  2414 + <target_null_string/>
  2415 + <target_aggregation_type>-</target_aggregation_type>
  2416 + </field>
  2417 + <field>
  2418 + <field_name>id</field_name>
  2419 + <key_value>13</key_value>
  2420 + <target_name>fcno13_id</target_name>
  2421 + <target_type>String</target_type>
  2422 + <target_format/>
  2423 + <target_length>-1</target_length>
  2424 + <target_precision>-1</target_precision>
  2425 + <target_decimal_symbol/>
  2426 + <target_grouping_symbol/>
  2427 + <target_currency_symbol/>
  2428 + <target_null_string/>
  2429 + <target_aggregation_type>-</target_aggregation_type>
  2430 + </field>
  2431 + <field>
  2432 + <field_name>fcsj</field_name>
  2433 + <key_value>13</key_value>
  2434 + <target_name>fcno13_fcsj</target_name>
  2435 + <target_type>String</target_type>
  2436 + <target_format/>
  2437 + <target_length>-1</target_length>
  2438 + <target_precision>-1</target_precision>
  2439 + <target_decimal_symbol/>
  2440 + <target_grouping_symbol/>
  2441 + <target_currency_symbol/>
  2442 + <target_null_string/>
  2443 + <target_aggregation_type>-</target_aggregation_type>
  2444 + </field>
  2445 + <field>
  2446 + <field_name>fczdName</field_name>
  2447 + <key_value>13</key_value>
  2448 + <target_name>fcno13_zdname</target_name>
  2449 + <target_type>String</target_type>
  2450 + <target_format/>
  2451 + <target_length>-1</target_length>
  2452 + <target_precision>-1</target_precision>
  2453 + <target_decimal_symbol/>
  2454 + <target_grouping_symbol/>
  2455 + <target_currency_symbol/>
  2456 + <target_null_string/>
  2457 + <target_aggregation_type>-</target_aggregation_type>
  2458 + </field>
  2459 + <field>
  2460 + <field_name>bc_type</field_name>
  2461 + <key_value>13</key_value>
  2462 + <target_name>fcno13_bctype</target_name>
  2463 + <target_type>String</target_type>
  2464 + <target_format/>
  2465 + <target_length>-1</target_length>
  2466 + <target_precision>-1</target_precision>
  2467 + <target_decimal_symbol/>
  2468 + <target_grouping_symbol/>
  2469 + <target_currency_symbol/>
  2470 + <target_null_string/>
  2471 + <target_aggregation_type>-</target_aggregation_type>
  2472 + </field>
  2473 + <field>
  2474 + <field_name>xl_dir</field_name>
  2475 + <key_value>13</key_value>
  2476 + <target_name>fcno13_xldir</target_name>
  2477 + <target_type>String</target_type>
  2478 + <target_format/>
  2479 + <target_length>-1</target_length>
  2480 + <target_precision>-1</target_precision>
  2481 + <target_decimal_symbol/>
  2482 + <target_grouping_symbol/>
  2483 + <target_currency_symbol/>
  2484 + <target_null_string/>
  2485 + <target_aggregation_type>-</target_aggregation_type>
  2486 + </field>
  2487 + <field>
  2488 + <field_name>isfb</field_name>
  2489 + <key_value>13</key_value>
  2490 + <target_name>fcno13_isfb</target_name>
  2491 + <target_type>String</target_type>
  2492 + <target_format/>
  2493 + <target_length>-1</target_length>
  2494 + <target_precision>-1</target_precision>
  2495 + <target_decimal_symbol/>
  2496 + <target_grouping_symbol/>
  2497 + <target_currency_symbol/>
  2498 + <target_null_string/>
  2499 + <target_aggregation_type>-</target_aggregation_type>
  2500 + </field>
  2501 + <field>
  2502 + <field_name>id</field_name>
  2503 + <key_value>14</key_value>
  2504 + <target_name>fcno14_id</target_name>
  2505 + <target_type>String</target_type>
  2506 + <target_format/>
  2507 + <target_length>-1</target_length>
  2508 + <target_precision>-1</target_precision>
  2509 + <target_decimal_symbol/>
  2510 + <target_grouping_symbol/>
  2511 + <target_currency_symbol/>
  2512 + <target_null_string/>
  2513 + <target_aggregation_type>-</target_aggregation_type>
  2514 + </field>
  2515 + <field>
  2516 + <field_name>fcsj</field_name>
  2517 + <key_value>14</key_value>
  2518 + <target_name>fcno14_fcsj</target_name>
  2519 + <target_type>String</target_type>
  2520 + <target_format/>
  2521 + <target_length>-1</target_length>
  2522 + <target_precision>-1</target_precision>
  2523 + <target_decimal_symbol/>
  2524 + <target_grouping_symbol/>
  2525 + <target_currency_symbol/>
  2526 + <target_null_string/>
  2527 + <target_aggregation_type>-</target_aggregation_type>
  2528 + </field>
  2529 + <field>
  2530 + <field_name>fczdName</field_name>
  2531 + <key_value>14</key_value>
  2532 + <target_name>fcno14_zdname</target_name>
  2533 + <target_type>String</target_type>
  2534 + <target_format/>
  2535 + <target_length>-1</target_length>
  2536 + <target_precision>-1</target_precision>
  2537 + <target_decimal_symbol/>
  2538 + <target_grouping_symbol/>
  2539 + <target_currency_symbol/>
  2540 + <target_null_string/>
  2541 + <target_aggregation_type>-</target_aggregation_type>
  2542 + </field>
  2543 + <field>
  2544 + <field_name>bc_type</field_name>
  2545 + <key_value>14</key_value>
  2546 + <target_name>fcno14_bctype</target_name>
  2547 + <target_type>String</target_type>
  2548 + <target_format/>
  2549 + <target_length>-1</target_length>
  2550 + <target_precision>-1</target_precision>
  2551 + <target_decimal_symbol/>
  2552 + <target_grouping_symbol/>
  2553 + <target_currency_symbol/>
  2554 + <target_null_string/>
  2555 + <target_aggregation_type>-</target_aggregation_type>
  2556 + </field>
  2557 + <field>
  2558 + <field_name>xl_dir</field_name>
  2559 + <key_value>14</key_value>
  2560 + <target_name>fcno14_xldir</target_name>
  2561 + <target_type>String</target_type>
  2562 + <target_format/>
  2563 + <target_length>-1</target_length>
  2564 + <target_precision>-1</target_precision>
  2565 + <target_decimal_symbol/>
  2566 + <target_grouping_symbol/>
  2567 + <target_currency_symbol/>
  2568 + <target_null_string/>
  2569 + <target_aggregation_type>-</target_aggregation_type>
  2570 + </field>
  2571 + <field>
  2572 + <field_name>isfb</field_name>
  2573 + <key_value>14</key_value>
  2574 + <target_name>fcno14_isfb</target_name>
  2575 + <target_type>String</target_type>
  2576 + <target_format/>
  2577 + <target_length>-1</target_length>
  2578 + <target_precision>-1</target_precision>
  2579 + <target_decimal_symbol/>
  2580 + <target_grouping_symbol/>
  2581 + <target_currency_symbol/>
  2582 + <target_null_string/>
  2583 + <target_aggregation_type>-</target_aggregation_type>
  2584 + </field>
  2585 + <field>
  2586 + <field_name>id</field_name>
  2587 + <key_value>15</key_value>
  2588 + <target_name>fcno15_id</target_name>
  2589 + <target_type>String</target_type>
  2590 + <target_format/>
  2591 + <target_length>-1</target_length>
  2592 + <target_precision>-1</target_precision>
  2593 + <target_decimal_symbol/>
  2594 + <target_grouping_symbol/>
  2595 + <target_currency_symbol/>
  2596 + <target_null_string/>
  2597 + <target_aggregation_type>-</target_aggregation_type>
  2598 + </field>
  2599 + <field>
  2600 + <field_name>fcsj</field_name>
  2601 + <key_value>15</key_value>
  2602 + <target_name>fcno15_fcsj</target_name>
  2603 + <target_type>String</target_type>
  2604 + <target_format/>
  2605 + <target_length>-1</target_length>
  2606 + <target_precision>-1</target_precision>
  2607 + <target_decimal_symbol/>
  2608 + <target_grouping_symbol/>
  2609 + <target_currency_symbol/>
  2610 + <target_null_string/>
  2611 + <target_aggregation_type>-</target_aggregation_type>
  2612 + </field>
  2613 + <field>
  2614 + <field_name>fczdName</field_name>
  2615 + <key_value>15</key_value>
  2616 + <target_name>fcno15_zdname</target_name>
  2617 + <target_type>String</target_type>
  2618 + <target_format/>
  2619 + <target_length>-1</target_length>
  2620 + <target_precision>-1</target_precision>
  2621 + <target_decimal_symbol/>
  2622 + <target_grouping_symbol/>
  2623 + <target_currency_symbol/>
  2624 + <target_null_string/>
  2625 + <target_aggregation_type>-</target_aggregation_type>
  2626 + </field>
  2627 + <field>
  2628 + <field_name>bc_type</field_name>
  2629 + <key_value>15</key_value>
  2630 + <target_name>fcno15_bctype</target_name>
  2631 + <target_type>String</target_type>
  2632 + <target_format/>
  2633 + <target_length>-1</target_length>
  2634 + <target_precision>-1</target_precision>
  2635 + <target_decimal_symbol/>
  2636 + <target_grouping_symbol/>
  2637 + <target_currency_symbol/>
  2638 + <target_null_string/>
  2639 + <target_aggregation_type>-</target_aggregation_type>
  2640 + </field>
  2641 + <field>
  2642 + <field_name>xl_dir</field_name>
  2643 + <key_value>15</key_value>
  2644 + <target_name>fcno15_xldir</target_name>
  2645 + <target_type>String</target_type>
  2646 + <target_format/>
  2647 + <target_length>-1</target_length>
  2648 + <target_precision>-1</target_precision>
  2649 + <target_decimal_symbol/>
  2650 + <target_grouping_symbol/>
  2651 + <target_currency_symbol/>
  2652 + <target_null_string/>
  2653 + <target_aggregation_type>-</target_aggregation_type>
  2654 + </field>
  2655 + <field>
  2656 + <field_name>isfb</field_name>
  2657 + <key_value>15</key_value>
  2658 + <target_name>fcno15_isfb</target_name>
  2659 + <target_type>String</target_type>
  2660 + <target_format/>
  2661 + <target_length>-1</target_length>
  2662 + <target_precision>-1</target_precision>
  2663 + <target_decimal_symbol/>
  2664 + <target_grouping_symbol/>
  2665 + <target_currency_symbol/>
  2666 + <target_null_string/>
  2667 + <target_aggregation_type>-</target_aggregation_type>
  2668 + </field>
  2669 + <field>
  2670 + <field_name>id</field_name>
  2671 + <key_value>16</key_value>
  2672 + <target_name>fcno16_id</target_name>
  2673 + <target_type>String</target_type>
  2674 + <target_format/>
  2675 + <target_length>-1</target_length>
  2676 + <target_precision>-1</target_precision>
  2677 + <target_decimal_symbol/>
  2678 + <target_grouping_symbol/>
  2679 + <target_currency_symbol/>
  2680 + <target_null_string/>
  2681 + <target_aggregation_type>-</target_aggregation_type>
  2682 + </field>
  2683 + <field>
  2684 + <field_name>fcsj</field_name>
  2685 + <key_value>16</key_value>
  2686 + <target_name>fcno16_fcsj</target_name>
  2687 + <target_type>String</target_type>
  2688 + <target_format/>
  2689 + <target_length>-1</target_length>
  2690 + <target_precision>-1</target_precision>
  2691 + <target_decimal_symbol/>
  2692 + <target_grouping_symbol/>
  2693 + <target_currency_symbol/>
  2694 + <target_null_string/>
  2695 + <target_aggregation_type>-</target_aggregation_type>
  2696 + </field>
  2697 + <field>
  2698 + <field_name>fczdName</field_name>
  2699 + <key_value>16</key_value>
  2700 + <target_name>fcno16_zdname</target_name>
  2701 + <target_type>String</target_type>
  2702 + <target_format/>
  2703 + <target_length>-1</target_length>
  2704 + <target_precision>-1</target_precision>
  2705 + <target_decimal_symbol/>
  2706 + <target_grouping_symbol/>
  2707 + <target_currency_symbol/>
  2708 + <target_null_string/>
  2709 + <target_aggregation_type>-</target_aggregation_type>
  2710 + </field>
  2711 + <field>
  2712 + <field_name>bc_type</field_name>
  2713 + <key_value>16</key_value>
  2714 + <target_name>fcno16_bctype</target_name>
  2715 + <target_type>String</target_type>
  2716 + <target_format/>
  2717 + <target_length>-1</target_length>
  2718 + <target_precision>-1</target_precision>
  2719 + <target_decimal_symbol/>
  2720 + <target_grouping_symbol/>
  2721 + <target_currency_symbol/>
  2722 + <target_null_string/>
  2723 + <target_aggregation_type>-</target_aggregation_type>
  2724 + </field>
  2725 + <field>
  2726 + <field_name>xl_dir</field_name>
  2727 + <key_value>16</key_value>
  2728 + <target_name>fcno16_xldir</target_name>
  2729 + <target_type>String</target_type>
  2730 + <target_format/>
  2731 + <target_length>-1</target_length>
  2732 + <target_precision>-1</target_precision>
  2733 + <target_decimal_symbol/>
  2734 + <target_grouping_symbol/>
  2735 + <target_currency_symbol/>
  2736 + <target_null_string/>
  2737 + <target_aggregation_type>-</target_aggregation_type>
  2738 + </field>
  2739 + <field>
  2740 + <field_name>isfb</field_name>
  2741 + <key_value>16</key_value>
  2742 + <target_name>fcno16_isfb</target_name>
  2743 + <target_type>String</target_type>
  2744 + <target_format/>
  2745 + <target_length>-1</target_length>
  2746 + <target_precision>-1</target_precision>
  2747 + <target_decimal_symbol/>
  2748 + <target_grouping_symbol/>
  2749 + <target_currency_symbol/>
  2750 + <target_null_string/>
  2751 + <target_aggregation_type>-</target_aggregation_type>
  2752 + </field>
  2753 + <field>
  2754 + <field_name>id</field_name>
  2755 + <key_value>17</key_value>
  2756 + <target_name>fcno17_id</target_name>
  2757 + <target_type>String</target_type>
  2758 + <target_format/>
  2759 + <target_length>-1</target_length>
  2760 + <target_precision>-1</target_precision>
  2761 + <target_decimal_symbol/>
  2762 + <target_grouping_symbol/>
  2763 + <target_currency_symbol/>
  2764 + <target_null_string/>
  2765 + <target_aggregation_type>-</target_aggregation_type>
  2766 + </field>
  2767 + <field>
  2768 + <field_name>fcsj</field_name>
  2769 + <key_value>17</key_value>
  2770 + <target_name>fcno17_fcsj</target_name>
  2771 + <target_type>String</target_type>
  2772 + <target_format/>
  2773 + <target_length>-1</target_length>
  2774 + <target_precision>-1</target_precision>
  2775 + <target_decimal_symbol/>
  2776 + <target_grouping_symbol/>
  2777 + <target_currency_symbol/>
  2778 + <target_null_string/>
  2779 + <target_aggregation_type>-</target_aggregation_type>
  2780 + </field>
  2781 + <field>
  2782 + <field_name>fczdName</field_name>
  2783 + <key_value>17</key_value>
  2784 + <target_name>fcno17_zdname</target_name>
  2785 + <target_type>String</target_type>
  2786 + <target_format/>
  2787 + <target_length>-1</target_length>
  2788 + <target_precision>-1</target_precision>
  2789 + <target_decimal_symbol/>
  2790 + <target_grouping_symbol/>
  2791 + <target_currency_symbol/>
  2792 + <target_null_string/>
  2793 + <target_aggregation_type>-</target_aggregation_type>
  2794 + </field>
  2795 + <field>
  2796 + <field_name>bc_type</field_name>
  2797 + <key_value>17</key_value>
  2798 + <target_name>fcno17_bctype</target_name>
  2799 + <target_type>String</target_type>
  2800 + <target_format/>
  2801 + <target_length>-1</target_length>
  2802 + <target_precision>-1</target_precision>
  2803 + <target_decimal_symbol/>
  2804 + <target_grouping_symbol/>
  2805 + <target_currency_symbol/>
  2806 + <target_null_string/>
  2807 + <target_aggregation_type>-</target_aggregation_type>
  2808 + </field>
  2809 + <field>
  2810 + <field_name>xl_dir</field_name>
  2811 + <key_value>17</key_value>
  2812 + <target_name>fcno17_xldir</target_name>
  2813 + <target_type>String</target_type>
  2814 + <target_format/>
  2815 + <target_length>-1</target_length>
  2816 + <target_precision>-1</target_precision>
  2817 + <target_decimal_symbol/>
  2818 + <target_grouping_symbol/>
  2819 + <target_currency_symbol/>
  2820 + <target_null_string/>
  2821 + <target_aggregation_type>-</target_aggregation_type>
  2822 + </field>
  2823 + <field>
  2824 + <field_name>isfb</field_name>
  2825 + <key_value>17</key_value>
  2826 + <target_name>fcno17_isfb</target_name>
  2827 + <target_type>String</target_type>
  2828 + <target_format/>
  2829 + <target_length>-1</target_length>
  2830 + <target_precision>-1</target_precision>
  2831 + <target_decimal_symbol/>
  2832 + <target_grouping_symbol/>
  2833 + <target_currency_symbol/>
  2834 + <target_null_string/>
  2835 + <target_aggregation_type>-</target_aggregation_type>
  2836 + </field>
  2837 + <field>
  2838 + <field_name>id</field_name>
  2839 + <key_value>18</key_value>
  2840 + <target_name>fcno18_id</target_name>
  2841 + <target_type>String</target_type>
  2842 + <target_format/>
  2843 + <target_length>-1</target_length>
  2844 + <target_precision>-1</target_precision>
  2845 + <target_decimal_symbol/>
  2846 + <target_grouping_symbol/>
  2847 + <target_currency_symbol/>
  2848 + <target_null_string/>
  2849 + <target_aggregation_type>-</target_aggregation_type>
  2850 + </field>
  2851 + <field>
  2852 + <field_name>fcsj</field_name>
  2853 + <key_value>18</key_value>
  2854 + <target_name>fcno18_fcsj</target_name>
  2855 + <target_type>String</target_type>
  2856 + <target_format/>
  2857 + <target_length>-1</target_length>
  2858 + <target_precision>-1</target_precision>
  2859 + <target_decimal_symbol/>
  2860 + <target_grouping_symbol/>
  2861 + <target_currency_symbol/>
  2862 + <target_null_string/>
  2863 + <target_aggregation_type>-</target_aggregation_type>
  2864 + </field>
  2865 + <field>
  2866 + <field_name>fczdName</field_name>
  2867 + <key_value>18</key_value>
  2868 + <target_name>fcno18_zdname</target_name>
  2869 + <target_type>String</target_type>
  2870 + <target_format/>
  2871 + <target_length>-1</target_length>
  2872 + <target_precision>-1</target_precision>
  2873 + <target_decimal_symbol/>
  2874 + <target_grouping_symbol/>
  2875 + <target_currency_symbol/>
  2876 + <target_null_string/>
  2877 + <target_aggregation_type>-</target_aggregation_type>
  2878 + </field>
  2879 + <field>
  2880 + <field_name>bc_type</field_name>
  2881 + <key_value>18</key_value>
  2882 + <target_name>fcno18_bctype</target_name>
  2883 + <target_type>String</target_type>
  2884 + <target_format/>
  2885 + <target_length>-1</target_length>
  2886 + <target_precision>-1</target_precision>
  2887 + <target_decimal_symbol/>
  2888 + <target_grouping_symbol/>
  2889 + <target_currency_symbol/>
  2890 + <target_null_string/>
  2891 + <target_aggregation_type>-</target_aggregation_type>
  2892 + </field>
  2893 + <field>
  2894 + <field_name>xl_dir</field_name>
  2895 + <key_value>18</key_value>
  2896 + <target_name>fcno18_xldir</target_name>
  2897 + <target_type>String</target_type>
  2898 + <target_format/>
  2899 + <target_length>-1</target_length>
  2900 + <target_precision>-1</target_precision>
  2901 + <target_decimal_symbol/>
  2902 + <target_grouping_symbol/>
  2903 + <target_currency_symbol/>
  2904 + <target_null_string/>
  2905 + <target_aggregation_type>-</target_aggregation_type>
  2906 + </field>
  2907 + <field>
  2908 + <field_name>isfb</field_name>
  2909 + <key_value>18</key_value>
  2910 + <target_name>fcno18_isfb</target_name>
  2911 + <target_type>String</target_type>
  2912 + <target_format/>
  2913 + <target_length>-1</target_length>
  2914 + <target_precision>-1</target_precision>
  2915 + <target_decimal_symbol/>
  2916 + <target_grouping_symbol/>
  2917 + <target_currency_symbol/>
  2918 + <target_null_string/>
  2919 + <target_aggregation_type>-</target_aggregation_type>
  2920 + </field>
  2921 + <field>
  2922 + <field_name>id</field_name>
  2923 + <key_value>19</key_value>
  2924 + <target_name>fcno19_id</target_name>
  2925 + <target_type>String</target_type>
  2926 + <target_format/>
  2927 + <target_length>-1</target_length>
  2928 + <target_precision>-1</target_precision>
  2929 + <target_decimal_symbol/>
  2930 + <target_grouping_symbol/>
  2931 + <target_currency_symbol/>
  2932 + <target_null_string/>
  2933 + <target_aggregation_type>-</target_aggregation_type>
  2934 + </field>
  2935 + <field>
  2936 + <field_name>fcsj</field_name>
  2937 + <key_value>19</key_value>
  2938 + <target_name>fcno19_fcsj</target_name>
  2939 + <target_type>String</target_type>
  2940 + <target_format/>
  2941 + <target_length>-1</target_length>
  2942 + <target_precision>-1</target_precision>
  2943 + <target_decimal_symbol/>
  2944 + <target_grouping_symbol/>
  2945 + <target_currency_symbol/>
  2946 + <target_null_string/>
  2947 + <target_aggregation_type>-</target_aggregation_type>
  2948 + </field>
  2949 + <field>
  2950 + <field_name>fczdName</field_name>
  2951 + <key_value>19</key_value>
  2952 + <target_name>fcno19_zdname</target_name>
  2953 + <target_type>String</target_type>
  2954 + <target_format/>
  2955 + <target_length>-1</target_length>
  2956 + <target_precision>-1</target_precision>
  2957 + <target_decimal_symbol/>
  2958 + <target_grouping_symbol/>
  2959 + <target_currency_symbol/>
  2960 + <target_null_string/>
  2961 + <target_aggregation_type>-</target_aggregation_type>
  2962 + </field>
  2963 + <field>
  2964 + <field_name>bc_type</field_name>
  2965 + <key_value>19</key_value>
  2966 + <target_name>fcno19_bctype</target_name>
  2967 + <target_type>String</target_type>
  2968 + <target_format/>
  2969 + <target_length>-1</target_length>
  2970 + <target_precision>-1</target_precision>
  2971 + <target_decimal_symbol/>
  2972 + <target_grouping_symbol/>
  2973 + <target_currency_symbol/>
  2974 + <target_null_string/>
  2975 + <target_aggregation_type>-</target_aggregation_type>
  2976 + </field>
  2977 + <field>
  2978 + <field_name>xl_dir</field_name>
  2979 + <key_value>19</key_value>
  2980 + <target_name>fcno19_xldir</target_name>
  2981 + <target_type>String</target_type>
  2982 + <target_format/>
  2983 + <target_length>-1</target_length>
  2984 + <target_precision>-1</target_precision>
  2985 + <target_decimal_symbol/>
  2986 + <target_grouping_symbol/>
  2987 + <target_currency_symbol/>
  2988 + <target_null_string/>
  2989 + <target_aggregation_type>-</target_aggregation_type>
  2990 + </field>
  2991 + <field>
  2992 + <field_name>isfb</field_name>
  2993 + <key_value>19</key_value>
  2994 + <target_name>fcno19_isfb</target_name>
  2995 + <target_type>String</target_type>
  2996 + <target_format/>
  2997 + <target_length>-1</target_length>
  2998 + <target_precision>-1</target_precision>
  2999 + <target_decimal_symbol/>
  3000 + <target_grouping_symbol/>
  3001 + <target_currency_symbol/>
  3002 + <target_null_string/>
  3003 + <target_aggregation_type>-</target_aggregation_type>
  3004 + </field>
  3005 + <field>
  3006 + <field_name>id</field_name>
  3007 + <key_value>20</key_value>
  3008 + <target_name>fcno20_id</target_name>
  3009 + <target_type>String</target_type>
  3010 + <target_format/>
  3011 + <target_length>-1</target_length>
  3012 + <target_precision>-1</target_precision>
  3013 + <target_decimal_symbol/>
  3014 + <target_grouping_symbol/>
  3015 + <target_currency_symbol/>
  3016 + <target_null_string/>
  3017 + <target_aggregation_type>-</target_aggregation_type>
  3018 + </field>
  3019 + <field>
  3020 + <field_name>fcsj</field_name>
  3021 + <key_value>20</key_value>
  3022 + <target_name>fcno20_fcsj</target_name>
  3023 + <target_type>String</target_type>
  3024 + <target_format/>
  3025 + <target_length>-1</target_length>
  3026 + <target_precision>-1</target_precision>
  3027 + <target_decimal_symbol/>
  3028 + <target_grouping_symbol/>
  3029 + <target_currency_symbol/>
  3030 + <target_null_string/>
  3031 + <target_aggregation_type>-</target_aggregation_type>
  3032 + </field>
  3033 + <field>
  3034 + <field_name>fczdName</field_name>
  3035 + <key_value>20</key_value>
  3036 + <target_name>fcno20_zdname</target_name>
  3037 + <target_type>String</target_type>
  3038 + <target_format/>
  3039 + <target_length>-1</target_length>
  3040 + <target_precision>-1</target_precision>
  3041 + <target_decimal_symbol/>
  3042 + <target_grouping_symbol/>
  3043 + <target_currency_symbol/>
  3044 + <target_null_string/>
  3045 + <target_aggregation_type>-</target_aggregation_type>
  3046 + </field>
  3047 + <field>
  3048 + <field_name>bc_type</field_name>
  3049 + <key_value>20</key_value>
  3050 + <target_name>fcno20_bctype</target_name>
  3051 + <target_type>String</target_type>
  3052 + <target_format/>
  3053 + <target_length>-1</target_length>
  3054 + <target_precision>-1</target_precision>
  3055 + <target_decimal_symbol/>
  3056 + <target_grouping_symbol/>
  3057 + <target_currency_symbol/>
  3058 + <target_null_string/>
  3059 + <target_aggregation_type>-</target_aggregation_type>
  3060 + </field>
  3061 + <field>
  3062 + <field_name>xl_dir</field_name>
  3063 + <key_value>20</key_value>
  3064 + <target_name>fcno20_xldir</target_name>
  3065 + <target_type>String</target_type>
  3066 + <target_format/>
  3067 + <target_length>-1</target_length>
  3068 + <target_precision>-1</target_precision>
  3069 + <target_decimal_symbol/>
  3070 + <target_grouping_symbol/>
  3071 + <target_currency_symbol/>
  3072 + <target_null_string/>
  3073 + <target_aggregation_type>-</target_aggregation_type>
  3074 + </field>
  3075 + <field>
  3076 + <field_name>isfb</field_name>
  3077 + <key_value>20</key_value>
  3078 + <target_name>fcno20_isfb</target_name>
  3079 + <target_type>String</target_type>
  3080 + <target_format/>
  3081 + <target_length>-1</target_length>
  3082 + <target_precision>-1</target_precision>
  3083 + <target_decimal_symbol/>
  3084 + <target_grouping_symbol/>
  3085 + <target_currency_symbol/>
  3086 + <target_null_string/>
  3087 + <target_aggregation_type>-</target_aggregation_type>
  3088 + </field>
  3089 + <field>
  3090 + <field_name>id</field_name>
  3091 + <key_value>21</key_value>
  3092 + <target_name>fcno21_id</target_name>
  3093 + <target_type>String</target_type>
  3094 + <target_format/>
  3095 + <target_length>-1</target_length>
  3096 + <target_precision>-1</target_precision>
  3097 + <target_decimal_symbol/>
  3098 + <target_grouping_symbol/>
  3099 + <target_currency_symbol/>
  3100 + <target_null_string/>
  3101 + <target_aggregation_type>-</target_aggregation_type>
  3102 + </field>
  3103 + <field>
  3104 + <field_name>fcsj</field_name>
  3105 + <key_value>21</key_value>
  3106 + <target_name>fcno21_fcsj</target_name>
  3107 + <target_type>String</target_type>
  3108 + <target_format/>
  3109 + <target_length>-1</target_length>
  3110 + <target_precision>-1</target_precision>
  3111 + <target_decimal_symbol/>
  3112 + <target_grouping_symbol/>
  3113 + <target_currency_symbol/>
  3114 + <target_null_string/>
  3115 + <target_aggregation_type>-</target_aggregation_type>
  3116 + </field>
  3117 + <field>
  3118 + <field_name>fczdName</field_name>
  3119 + <key_value>21</key_value>
  3120 + <target_name>fcno21_zdname</target_name>
  3121 + <target_type>String</target_type>
  3122 + <target_format/>
  3123 + <target_length>-1</target_length>
  3124 + <target_precision>-1</target_precision>
  3125 + <target_decimal_symbol/>
  3126 + <target_grouping_symbol/>
  3127 + <target_currency_symbol/>
  3128 + <target_null_string/>
  3129 + <target_aggregation_type>-</target_aggregation_type>
  3130 + </field>
  3131 + <field>
  3132 + <field_name>bc_type</field_name>
  3133 + <key_value>21</key_value>
  3134 + <target_name>fcno21_bctype</target_name>
  3135 + <target_type>String</target_type>
  3136 + <target_format/>
  3137 + <target_length>-1</target_length>
  3138 + <target_precision>-1</target_precision>
  3139 + <target_decimal_symbol/>
  3140 + <target_grouping_symbol/>
  3141 + <target_currency_symbol/>
  3142 + <target_null_string/>
  3143 + <target_aggregation_type>-</target_aggregation_type>
  3144 + </field>
  3145 + <field>
  3146 + <field_name>xl_dir</field_name>
  3147 + <key_value>21</key_value>
  3148 + <target_name>fcno21_xldir</target_name>
  3149 + <target_type>String</target_type>
  3150 + <target_format/>
  3151 + <target_length>-1</target_length>
  3152 + <target_precision>-1</target_precision>
  3153 + <target_decimal_symbol/>
  3154 + <target_grouping_symbol/>
  3155 + <target_currency_symbol/>
  3156 + <target_null_string/>
  3157 + <target_aggregation_type>-</target_aggregation_type>
  3158 + </field>
  3159 + <field>
  3160 + <field_name>isfb</field_name>
  3161 + <key_value>21</key_value>
  3162 + <target_name>fcno21_isfb</target_name>
  3163 + <target_type>String</target_type>
  3164 + <target_format/>
  3165 + <target_length>-1</target_length>
  3166 + <target_precision>-1</target_precision>
  3167 + <target_decimal_symbol/>
  3168 + <target_grouping_symbol/>
  3169 + <target_currency_symbol/>
  3170 + <target_null_string/>
  3171 + <target_aggregation_type>-</target_aggregation_type>
  3172 + </field>
  3173 + <field>
  3174 + <field_name>id</field_name>
  3175 + <key_value>22</key_value>
  3176 + <target_name>fcno22_id</target_name>
  3177 + <target_type>String</target_type>
  3178 + <target_format/>
  3179 + <target_length>-1</target_length>
  3180 + <target_precision>-1</target_precision>
  3181 + <target_decimal_symbol/>
  3182 + <target_grouping_symbol/>
  3183 + <target_currency_symbol/>
  3184 + <target_null_string/>
  3185 + <target_aggregation_type>-</target_aggregation_type>
  3186 + </field>
  3187 + <field>
  3188 + <field_name>fcsj</field_name>
  3189 + <key_value>22</key_value>
  3190 + <target_name>fcno22_fcsj</target_name>
  3191 + <target_type>String</target_type>
  3192 + <target_format/>
  3193 + <target_length>-1</target_length>
  3194 + <target_precision>-1</target_precision>
  3195 + <target_decimal_symbol/>
  3196 + <target_grouping_symbol/>
  3197 + <target_currency_symbol/>
  3198 + <target_null_string/>
  3199 + <target_aggregation_type>-</target_aggregation_type>
  3200 + </field>
  3201 + <field>
  3202 + <field_name>fczdName</field_name>
  3203 + <key_value>22</key_value>
  3204 + <target_name>fcno22_zdname</target_name>
  3205 + <target_type>String</target_type>
  3206 + <target_format/>
  3207 + <target_length>-1</target_length>
  3208 + <target_precision>-1</target_precision>
  3209 + <target_decimal_symbol/>
  3210 + <target_grouping_symbol/>
  3211 + <target_currency_symbol/>
  3212 + <target_null_string/>
  3213 + <target_aggregation_type>-</target_aggregation_type>
  3214 + </field>
  3215 + <field>
  3216 + <field_name>bc_type</field_name>
  3217 + <key_value>22</key_value>
  3218 + <target_name>fcno22_bctype</target_name>
  3219 + <target_type>String</target_type>
  3220 + <target_format/>
  3221 + <target_length>-1</target_length>
  3222 + <target_precision>-1</target_precision>
  3223 + <target_decimal_symbol/>
  3224 + <target_grouping_symbol/>
  3225 + <target_currency_symbol/>
  3226 + <target_null_string/>
  3227 + <target_aggregation_type>-</target_aggregation_type>
  3228 + </field>
  3229 + <field>
  3230 + <field_name>xl_dir</field_name>
  3231 + <key_value>22</key_value>
  3232 + <target_name>fcno22_xldir</target_name>
  3233 + <target_type>String</target_type>
  3234 + <target_format/>
  3235 + <target_length>-1</target_length>
  3236 + <target_precision>-1</target_precision>
  3237 + <target_decimal_symbol/>
  3238 + <target_grouping_symbol/>
  3239 + <target_currency_symbol/>
  3240 + <target_null_string/>
  3241 + <target_aggregation_type>-</target_aggregation_type>
  3242 + </field>
  3243 + <field>
  3244 + <field_name>isfb</field_name>
  3245 + <key_value>22</key_value>
  3246 + <target_name>fcno22_isfb</target_name>
  3247 + <target_type>String</target_type>
  3248 + <target_format/>
  3249 + <target_length>-1</target_length>
  3250 + <target_precision>-1</target_precision>
  3251 + <target_decimal_symbol/>
  3252 + <target_grouping_symbol/>
  3253 + <target_currency_symbol/>
  3254 + <target_null_string/>
  3255 + <target_aggregation_type>-</target_aggregation_type>
  3256 + </field>
  3257 + <field>
  3258 + <field_name>id</field_name>
  3259 + <key_value>23</key_value>
  3260 + <target_name>fcno23_id</target_name>
  3261 + <target_type>String</target_type>
  3262 + <target_format/>
  3263 + <target_length>-1</target_length>
  3264 + <target_precision>-1</target_precision>
  3265 + <target_decimal_symbol/>
  3266 + <target_grouping_symbol/>
  3267 + <target_currency_symbol/>
  3268 + <target_null_string/>
  3269 + <target_aggregation_type>-</target_aggregation_type>
  3270 + </field>
  3271 + <field>
  3272 + <field_name>fcsj</field_name>
  3273 + <key_value>23</key_value>
  3274 + <target_name>fcno23_fcsj</target_name>
  3275 + <target_type>String</target_type>
  3276 + <target_format/>
  3277 + <target_length>-1</target_length>
  3278 + <target_precision>-1</target_precision>
  3279 + <target_decimal_symbol/>
  3280 + <target_grouping_symbol/>
  3281 + <target_currency_symbol/>
  3282 + <target_null_string/>
  3283 + <target_aggregation_type>-</target_aggregation_type>
  3284 + </field>
  3285 + <field>
  3286 + <field_name>fczdName</field_name>
  3287 + <key_value>23</key_value>
  3288 + <target_name>fcno23_zdname</target_name>
  3289 + <target_type>String</target_type>
  3290 + <target_format/>
  3291 + <target_length>-1</target_length>
  3292 + <target_precision>-1</target_precision>
  3293 + <target_decimal_symbol/>
  3294 + <target_grouping_symbol/>
  3295 + <target_currency_symbol/>
  3296 + <target_null_string/>
  3297 + <target_aggregation_type>-</target_aggregation_type>
  3298 + </field>
  3299 + <field>
  3300 + <field_name>bc_type</field_name>
  3301 + <key_value>23</key_value>
  3302 + <target_name>fcno23_bctype</target_name>
  3303 + <target_type>String</target_type>
  3304 + <target_format/>
  3305 + <target_length>-1</target_length>
  3306 + <target_precision>-1</target_precision>
  3307 + <target_decimal_symbol/>
  3308 + <target_grouping_symbol/>
  3309 + <target_currency_symbol/>
  3310 + <target_null_string/>
  3311 + <target_aggregation_type>-</target_aggregation_type>
  3312 + </field>
  3313 + <field>
  3314 + <field_name>xl_dir</field_name>
  3315 + <key_value>23</key_value>
  3316 + <target_name>fcno23_xldir</target_name>
  3317 + <target_type>String</target_type>
  3318 + <target_format/>
  3319 + <target_length>-1</target_length>
  3320 + <target_precision>-1</target_precision>
  3321 + <target_decimal_symbol/>
  3322 + <target_grouping_symbol/>
  3323 + <target_currency_symbol/>
  3324 + <target_null_string/>
  3325 + <target_aggregation_type>-</target_aggregation_type>
  3326 + </field>
  3327 + <field>
  3328 + <field_name>isfb</field_name>
  3329 + <key_value>23</key_value>
  3330 + <target_name>fcno23_isfb</target_name>
  3331 + <target_type>String</target_type>
  3332 + <target_format/>
  3333 + <target_length>-1</target_length>
  3334 + <target_precision>-1</target_precision>
  3335 + <target_decimal_symbol/>
  3336 + <target_grouping_symbol/>
  3337 + <target_currency_symbol/>
  3338 + <target_null_string/>
  3339 + <target_aggregation_type>-</target_aggregation_type>
  3340 + </field>
  3341 + <field>
  3342 + <field_name>id</field_name>
  3343 + <key_value>24</key_value>
  3344 + <target_name>fcno24_id</target_name>
  3345 + <target_type>String</target_type>
  3346 + <target_format/>
  3347 + <target_length>-1</target_length>
  3348 + <target_precision>-1</target_precision>
  3349 + <target_decimal_symbol/>
  3350 + <target_grouping_symbol/>
  3351 + <target_currency_symbol/>
  3352 + <target_null_string/>
  3353 + <target_aggregation_type>-</target_aggregation_type>
  3354 + </field>
  3355 + <field>
  3356 + <field_name>fcsj</field_name>
  3357 + <key_value>24</key_value>
  3358 + <target_name>fcno24_fcsj</target_name>
  3359 + <target_type>String</target_type>
  3360 + <target_format/>
  3361 + <target_length>-1</target_length>
  3362 + <target_precision>-1</target_precision>
  3363 + <target_decimal_symbol/>
  3364 + <target_grouping_symbol/>
  3365 + <target_currency_symbol/>
  3366 + <target_null_string/>
  3367 + <target_aggregation_type>-</target_aggregation_type>
  3368 + </field>
  3369 + <field>
  3370 + <field_name>fczdName</field_name>
  3371 + <key_value>24</key_value>
  3372 + <target_name>fcno24_zdname</target_name>
  3373 + <target_type>String</target_type>
  3374 + <target_format/>
  3375 + <target_length>-1</target_length>
  3376 + <target_precision>-1</target_precision>
  3377 + <target_decimal_symbol/>
  3378 + <target_grouping_symbol/>
  3379 + <target_currency_symbol/>
  3380 + <target_null_string/>
  3381 + <target_aggregation_type>-</target_aggregation_type>
  3382 + </field>
  3383 + <field>
  3384 + <field_name>bc_type</field_name>
  3385 + <key_value>24</key_value>
  3386 + <target_name>fcno24_bctype</target_name>
  3387 + <target_type>String</target_type>
  3388 + <target_format/>
  3389 + <target_length>-1</target_length>
  3390 + <target_precision>-1</target_precision>
  3391 + <target_decimal_symbol/>
  3392 + <target_grouping_symbol/>
  3393 + <target_currency_symbol/>
  3394 + <target_null_string/>
  3395 + <target_aggregation_type>-</target_aggregation_type>
  3396 + </field>
  3397 + <field>
  3398 + <field_name>xl_dir</field_name>
  3399 + <key_value>24</key_value>
  3400 + <target_name>fcno24_xldir</target_name>
  3401 + <target_type>String</target_type>
  3402 + <target_format/>
  3403 + <target_length>-1</target_length>
  3404 + <target_precision>-1</target_precision>
  3405 + <target_decimal_symbol/>
  3406 + <target_grouping_symbol/>
  3407 + <target_currency_symbol/>
  3408 + <target_null_string/>
  3409 + <target_aggregation_type>-</target_aggregation_type>
  3410 + </field>
  3411 + <field>
  3412 + <field_name>isfb</field_name>
  3413 + <key_value>24</key_value>
  3414 + <target_name>fcno24_isfb</target_name>
  3415 + <target_type>String</target_type>
  3416 + <target_format/>
  3417 + <target_length>-1</target_length>
  3418 + <target_precision>-1</target_precision>
  3419 + <target_decimal_symbol/>
  3420 + <target_grouping_symbol/>
  3421 + <target_currency_symbol/>
  3422 + <target_null_string/>
  3423 + <target_aggregation_type>-</target_aggregation_type>
  3424 + </field>
  3425 + <field>
  3426 + <field_name>id</field_name>
  3427 + <key_value>25</key_value>
  3428 + <target_name>fcno25_id</target_name>
  3429 + <target_type>String</target_type>
  3430 + <target_format/>
  3431 + <target_length>-1</target_length>
  3432 + <target_precision>-1</target_precision>
  3433 + <target_decimal_symbol/>
  3434 + <target_grouping_symbol/>
  3435 + <target_currency_symbol/>
  3436 + <target_null_string/>
  3437 + <target_aggregation_type>-</target_aggregation_type>
  3438 + </field>
  3439 + <field>
  3440 + <field_name>fcsj</field_name>
  3441 + <key_value>25</key_value>
  3442 + <target_name>fcno25_fcsj</target_name>
  3443 + <target_type>String</target_type>
  3444 + <target_format/>
  3445 + <target_length>-1</target_length>
  3446 + <target_precision>-1</target_precision>
  3447 + <target_decimal_symbol/>
  3448 + <target_grouping_symbol/>
  3449 + <target_currency_symbol/>
  3450 + <target_null_string/>
  3451 + <target_aggregation_type>-</target_aggregation_type>
  3452 + </field>
  3453 + <field>
  3454 + <field_name>fczdName</field_name>
  3455 + <key_value>25</key_value>
  3456 + <target_name>fcno25_zdname</target_name>
  3457 + <target_type>String</target_type>
  3458 + <target_format/>
  3459 + <target_length>-1</target_length>
  3460 + <target_precision>-1</target_precision>
  3461 + <target_decimal_symbol/>
  3462 + <target_grouping_symbol/>
  3463 + <target_currency_symbol/>
  3464 + <target_null_string/>
  3465 + <target_aggregation_type>-</target_aggregation_type>
  3466 + </field>
  3467 + <field>
  3468 + <field_name>bc_type</field_name>
  3469 + <key_value>25</key_value>
  3470 + <target_name>fcno25_bctype</target_name>
  3471 + <target_type>String</target_type>
  3472 + <target_format/>
  3473 + <target_length>-1</target_length>
  3474 + <target_precision>-1</target_precision>
  3475 + <target_decimal_symbol/>
  3476 + <target_grouping_symbol/>
  3477 + <target_currency_symbol/>
  3478 + <target_null_string/>
  3479 + <target_aggregation_type>-</target_aggregation_type>
  3480 + </field>
  3481 + <field>
  3482 + <field_name>xl_dir</field_name>
  3483 + <key_value>25</key_value>
  3484 + <target_name>fcno25_xldir</target_name>
  3485 + <target_type>String</target_type>
  3486 + <target_format/>
  3487 + <target_length>-1</target_length>
  3488 + <target_precision>-1</target_precision>
  3489 + <target_decimal_symbol/>
  3490 + <target_grouping_symbol/>
  3491 + <target_currency_symbol/>
  3492 + <target_null_string/>
  3493 + <target_aggregation_type>-</target_aggregation_type>
  3494 + </field>
  3495 + <field>
  3496 + <field_name>isfb</field_name>
  3497 + <key_value>25</key_value>
  3498 + <target_name>fcno25_isfb</target_name>
  3499 + <target_type>String</target_type>
  3500 + <target_format/>
  3501 + <target_length>-1</target_length>
  3502 + <target_precision>-1</target_precision>
  3503 + <target_decimal_symbol/>
  3504 + <target_grouping_symbol/>
  3505 + <target_currency_symbol/>
  3506 + <target_null_string/>
  3507 + <target_aggregation_type>-</target_aggregation_type>
  3508 + </field>
  3509 + <field>
  3510 + <field_name>id</field_name>
  3511 + <key_value>26</key_value>
  3512 + <target_name>fcno26_id</target_name>
  3513 + <target_type>String</target_type>
  3514 + <target_format/>
  3515 + <target_length>-1</target_length>
  3516 + <target_precision>-1</target_precision>
  3517 + <target_decimal_symbol/>
  3518 + <target_grouping_symbol/>
  3519 + <target_currency_symbol/>
  3520 + <target_null_string/>
  3521 + <target_aggregation_type>-</target_aggregation_type>
  3522 + </field>
  3523 + <field>
  3524 + <field_name>fcsj</field_name>
  3525 + <key_value>26</key_value>
  3526 + <target_name>fcno26_fcsj</target_name>
  3527 + <target_type>String</target_type>
  3528 + <target_format/>
  3529 + <target_length>-1</target_length>
  3530 + <target_precision>-1</target_precision>
  3531 + <target_decimal_symbol/>
  3532 + <target_grouping_symbol/>
  3533 + <target_currency_symbol/>
  3534 + <target_null_string/>
  3535 + <target_aggregation_type>-</target_aggregation_type>
  3536 + </field>
  3537 + <field>
  3538 + <field_name>fczdName</field_name>
  3539 + <key_value>26</key_value>
  3540 + <target_name>fcno26_zdname</target_name>
  3541 + <target_type>String</target_type>
  3542 + <target_format/>
  3543 + <target_length>-1</target_length>
  3544 + <target_precision>-1</target_precision>
  3545 + <target_decimal_symbol/>
  3546 + <target_grouping_symbol/>
  3547 + <target_currency_symbol/>
  3548 + <target_null_string/>
  3549 + <target_aggregation_type>-</target_aggregation_type>
  3550 + </field>
  3551 + <field>
  3552 + <field_name>bc_type</field_name>
  3553 + <key_value>26</key_value>
  3554 + <target_name>fcno26_bctype</target_name>
  3555 + <target_type>String</target_type>
  3556 + <target_format/>
  3557 + <target_length>-1</target_length>
  3558 + <target_precision>-1</target_precision>
  3559 + <target_decimal_symbol/>
  3560 + <target_grouping_symbol/>
  3561 + <target_currency_symbol/>
  3562 + <target_null_string/>
  3563 + <target_aggregation_type>-</target_aggregation_type>
  3564 + </field>
  3565 + <field>
  3566 + <field_name>xl_dir</field_name>
  3567 + <key_value>26</key_value>
  3568 + <target_name>fcno26_xldir</target_name>
  3569 + <target_type>String</target_type>
  3570 + <target_format/>
  3571 + <target_length>-1</target_length>
  3572 + <target_precision>-1</target_precision>
  3573 + <target_decimal_symbol/>
  3574 + <target_grouping_symbol/>
  3575 + <target_currency_symbol/>
  3576 + <target_null_string/>
  3577 + <target_aggregation_type>-</target_aggregation_type>
  3578 + </field>
  3579 + <field>
  3580 + <field_name>isfb</field_name>
  3581 + <key_value>26</key_value>
  3582 + <target_name>fcno26_isfb</target_name>
  3583 + <target_type>String</target_type>
  3584 + <target_format/>
  3585 + <target_length>-1</target_length>
  3586 + <target_precision>-1</target_precision>
  3587 + <target_decimal_symbol/>
  3588 + <target_grouping_symbol/>
  3589 + <target_currency_symbol/>
  3590 + <target_null_string/>
  3591 + <target_aggregation_type>-</target_aggregation_type>
  3592 + </field>
  3593 + <field>
  3594 + <field_name>id</field_name>
  3595 + <key_value>27</key_value>
  3596 + <target_name>fcno27_id</target_name>
  3597 + <target_type>String</target_type>
  3598 + <target_format/>
  3599 + <target_length>-1</target_length>
  3600 + <target_precision>-1</target_precision>
  3601 + <target_decimal_symbol/>
  3602 + <target_grouping_symbol/>
  3603 + <target_currency_symbol/>
  3604 + <target_null_string/>
  3605 + <target_aggregation_type>-</target_aggregation_type>
  3606 + </field>
  3607 + <field>
  3608 + <field_name>fcsj</field_name>
  3609 + <key_value>27</key_value>
  3610 + <target_name>fcno27_fcsj</target_name>
  3611 + <target_type>String</target_type>
  3612 + <target_format/>
  3613 + <target_length>-1</target_length>
  3614 + <target_precision>-1</target_precision>
  3615 + <target_decimal_symbol/>
  3616 + <target_grouping_symbol/>
  3617 + <target_currency_symbol/>
  3618 + <target_null_string/>
  3619 + <target_aggregation_type>-</target_aggregation_type>
  3620 + </field>
  3621 + <field>
  3622 + <field_name>fczdName</field_name>
  3623 + <key_value>27</key_value>
  3624 + <target_name>fcno27_zdname</target_name>
  3625 + <target_type>String</target_type>
  3626 + <target_format/>
  3627 + <target_length>-1</target_length>
  3628 + <target_precision>-1</target_precision>
  3629 + <target_decimal_symbol/>
  3630 + <target_grouping_symbol/>
  3631 + <target_currency_symbol/>
  3632 + <target_null_string/>
  3633 + <target_aggregation_type>-</target_aggregation_type>
  3634 + </field>
  3635 + <field>
  3636 + <field_name>bc_type</field_name>
  3637 + <key_value>27</key_value>
  3638 + <target_name>fcno27_bctype</target_name>
  3639 + <target_type>String</target_type>
  3640 + <target_format/>
  3641 + <target_length>-1</target_length>
  3642 + <target_precision>-1</target_precision>
  3643 + <target_decimal_symbol/>
  3644 + <target_grouping_symbol/>
  3645 + <target_currency_symbol/>
  3646 + <target_null_string/>
  3647 + <target_aggregation_type>-</target_aggregation_type>
  3648 + </field>
  3649 + <field>
  3650 + <field_name>xl_dir</field_name>
  3651 + <key_value>27</key_value>
  3652 + <target_name>fcno27_xldir</target_name>
  3653 + <target_type>String</target_type>
  3654 + <target_format/>
  3655 + <target_length>-1</target_length>
  3656 + <target_precision>-1</target_precision>
  3657 + <target_decimal_symbol/>
  3658 + <target_grouping_symbol/>
  3659 + <target_currency_symbol/>
  3660 + <target_null_string/>
  3661 + <target_aggregation_type>-</target_aggregation_type>
  3662 + </field>
  3663 + <field>
  3664 + <field_name>isfb</field_name>
  3665 + <key_value>27</key_value>
  3666 + <target_name>fcno27_isfb</target_name>
  3667 + <target_type>String</target_type>
  3668 + <target_format/>
  3669 + <target_length>-1</target_length>
  3670 + <target_precision>-1</target_precision>
  3671 + <target_decimal_symbol/>
  3672 + <target_grouping_symbol/>
  3673 + <target_currency_symbol/>
  3674 + <target_null_string/>
  3675 + <target_aggregation_type>-</target_aggregation_type>
  3676 + </field>
  3677 + <field>
  3678 + <field_name>id</field_name>
  3679 + <key_value>28</key_value>
  3680 + <target_name>fcno28_id</target_name>
  3681 + <target_type>String</target_type>
  3682 + <target_format/>
  3683 + <target_length>-1</target_length>
  3684 + <target_precision>-1</target_precision>
  3685 + <target_decimal_symbol/>
  3686 + <target_grouping_symbol/>
  3687 + <target_currency_symbol/>
  3688 + <target_null_string/>
  3689 + <target_aggregation_type>-</target_aggregation_type>
  3690 + </field>
  3691 + <field>
  3692 + <field_name>fcsj</field_name>
  3693 + <key_value>28</key_value>
  3694 + <target_name>fcno28_fcsj</target_name>
  3695 + <target_type>String</target_type>
  3696 + <target_format/>
  3697 + <target_length>-1</target_length>
  3698 + <target_precision>-1</target_precision>
  3699 + <target_decimal_symbol/>
  3700 + <target_grouping_symbol/>
  3701 + <target_currency_symbol/>
  3702 + <target_null_string/>
  3703 + <target_aggregation_type>-</target_aggregation_type>
  3704 + </field>
  3705 + <field>
  3706 + <field_name>fczdName</field_name>
  3707 + <key_value>28</key_value>
  3708 + <target_name>fcno28_zdname</target_name>
  3709 + <target_type>String</target_type>
  3710 + <target_format/>
  3711 + <target_length>-1</target_length>
  3712 + <target_precision>-1</target_precision>
  3713 + <target_decimal_symbol/>
  3714 + <target_grouping_symbol/>
  3715 + <target_currency_symbol/>
  3716 + <target_null_string/>
  3717 + <target_aggregation_type>-</target_aggregation_type>
  3718 + </field>
  3719 + <field>
  3720 + <field_name>bc_type</field_name>
  3721 + <key_value>28</key_value>
  3722 + <target_name>fcno28_bctype</target_name>
  3723 + <target_type>String</target_type>
  3724 + <target_format/>
  3725 + <target_length>-1</target_length>
  3726 + <target_precision>-1</target_precision>
  3727 + <target_decimal_symbol/>
  3728 + <target_grouping_symbol/>
  3729 + <target_currency_symbol/>
  3730 + <target_null_string/>
  3731 + <target_aggregation_type>-</target_aggregation_type>
  3732 + </field>
  3733 + <field>
  3734 + <field_name>xl_dir</field_name>
  3735 + <key_value>28</key_value>
  3736 + <target_name>fcno28_xldir</target_name>
  3737 + <target_type>String</target_type>
  3738 + <target_format/>
  3739 + <target_length>-1</target_length>
  3740 + <target_precision>-1</target_precision>
  3741 + <target_decimal_symbol/>
  3742 + <target_grouping_symbol/>
  3743 + <target_currency_symbol/>
  3744 + <target_null_string/>
  3745 + <target_aggregation_type>-</target_aggregation_type>
  3746 + </field>
  3747 + <field>
  3748 + <field_name>isfb</field_name>
  3749 + <key_value>28</key_value>
  3750 + <target_name>fcno28_isfb</target_name>
  3751 + <target_type>String</target_type>
  3752 + <target_format/>
  3753 + <target_length>-1</target_length>
  3754 + <target_precision>-1</target_precision>
  3755 + <target_decimal_symbol/>
  3756 + <target_grouping_symbol/>
  3757 + <target_currency_symbol/>
  3758 + <target_null_string/>
  3759 + <target_aggregation_type>-</target_aggregation_type>
  3760 + </field>
  3761 + <field>
  3762 + <field_name>id</field_name>
  3763 + <key_value>29</key_value>
  3764 + <target_name>fcno29_id</target_name>
  3765 + <target_type>String</target_type>
  3766 + <target_format/>
  3767 + <target_length>-1</target_length>
  3768 + <target_precision>-1</target_precision>
  3769 + <target_decimal_symbol/>
  3770 + <target_grouping_symbol/>
  3771 + <target_currency_symbol/>
  3772 + <target_null_string/>
  3773 + <target_aggregation_type>-</target_aggregation_type>
  3774 + </field>
  3775 + <field>
  3776 + <field_name>fcsj</field_name>
  3777 + <key_value>29</key_value>
  3778 + <target_name>fcno29_fcsj</target_name>
  3779 + <target_type>String</target_type>
  3780 + <target_format/>
  3781 + <target_length>-1</target_length>
  3782 + <target_precision>-1</target_precision>
  3783 + <target_decimal_symbol/>
  3784 + <target_grouping_symbol/>
  3785 + <target_currency_symbol/>
  3786 + <target_null_string/>
  3787 + <target_aggregation_type>-</target_aggregation_type>
  3788 + </field>
  3789 + <field>
  3790 + <field_name>fczdName</field_name>
  3791 + <key_value>29</key_value>
  3792 + <target_name>fcno29_zdname</target_name>
  3793 + <target_type>String</target_type>
  3794 + <target_format/>
  3795 + <target_length>-1</target_length>
  3796 + <target_precision>-1</target_precision>
  3797 + <target_decimal_symbol/>
  3798 + <target_grouping_symbol/>
  3799 + <target_currency_symbol/>
  3800 + <target_null_string/>
  3801 + <target_aggregation_type>-</target_aggregation_type>
  3802 + </field>
  3803 + <field>
  3804 + <field_name>bc_type</field_name>
  3805 + <key_value>29</key_value>
  3806 + <target_name>fcno29_bctype</target_name>
  3807 + <target_type>String</target_type>
  3808 + <target_format/>
  3809 + <target_length>-1</target_length>
  3810 + <target_precision>-1</target_precision>
  3811 + <target_decimal_symbol/>
  3812 + <target_grouping_symbol/>
  3813 + <target_currency_symbol/>
  3814 + <target_null_string/>
  3815 + <target_aggregation_type>-</target_aggregation_type>
  3816 + </field>
  3817 + <field>
  3818 + <field_name>xl_dir</field_name>
  3819 + <key_value>29</key_value>
  3820 + <target_name>fcno29_xldir</target_name>
  3821 + <target_type>String</target_type>
  3822 + <target_format/>
  3823 + <target_length>-1</target_length>
  3824 + <target_precision>-1</target_precision>
  3825 + <target_decimal_symbol/>
  3826 + <target_grouping_symbol/>
  3827 + <target_currency_symbol/>
  3828 + <target_null_string/>
  3829 + <target_aggregation_type>-</target_aggregation_type>
  3830 + </field>
  3831 + <field>
  3832 + <field_name>isfb</field_name>
  3833 + <key_value>29</key_value>
  3834 + <target_name>fcno29_isfb</target_name>
  3835 + <target_type>String</target_type>
  3836 + <target_format/>
  3837 + <target_length>-1</target_length>
  3838 + <target_precision>-1</target_precision>
  3839 + <target_decimal_symbol/>
  3840 + <target_grouping_symbol/>
  3841 + <target_currency_symbol/>
  3842 + <target_null_string/>
  3843 + <target_aggregation_type>-</target_aggregation_type>
  3844 + </field>
  3845 + <field>
  3846 + <field_name>id</field_name>
  3847 + <key_value>30</key_value>
  3848 + <target_name>fcno30_id</target_name>
  3849 + <target_type>String</target_type>
  3850 + <target_format/>
  3851 + <target_length>-1</target_length>
  3852 + <target_precision>-1</target_precision>
  3853 + <target_decimal_symbol/>
  3854 + <target_grouping_symbol/>
  3855 + <target_currency_symbol/>
  3856 + <target_null_string/>
  3857 + <target_aggregation_type>-</target_aggregation_type>
  3858 + </field>
  3859 + <field>
  3860 + <field_name>fcsj</field_name>
  3861 + <key_value>30</key_value>
  3862 + <target_name>fcno30_fcsj</target_name>
  3863 + <target_type>String</target_type>
  3864 + <target_format/>
  3865 + <target_length>-1</target_length>
  3866 + <target_precision>-1</target_precision>
  3867 + <target_decimal_symbol/>
  3868 + <target_grouping_symbol/>
  3869 + <target_currency_symbol/>
  3870 + <target_null_string/>
  3871 + <target_aggregation_type>-</target_aggregation_type>
  3872 + </field>
  3873 + <field>
  3874 + <field_name>fczdName</field_name>
  3875 + <key_value>30</key_value>
  3876 + <target_name>fcno30_zdname</target_name>
  3877 + <target_type>String</target_type>
  3878 + <target_format/>
  3879 + <target_length>-1</target_length>
  3880 + <target_precision>-1</target_precision>
  3881 + <target_decimal_symbol/>
  3882 + <target_grouping_symbol/>
  3883 + <target_currency_symbol/>
  3884 + <target_null_string/>
  3885 + <target_aggregation_type>-</target_aggregation_type>
  3886 + </field>
  3887 + <field>
  3888 + <field_name>bc_type</field_name>
  3889 + <key_value>30</key_value>
  3890 + <target_name>fcno30_bctype</target_name>
  3891 + <target_type>String</target_type>
  3892 + <target_format/>
  3893 + <target_length>-1</target_length>
  3894 + <target_precision>-1</target_precision>
  3895 + <target_decimal_symbol/>
  3896 + <target_grouping_symbol/>
  3897 + <target_currency_symbol/>
  3898 + <target_null_string/>
  3899 + <target_aggregation_type>-</target_aggregation_type>
  3900 + </field>
  3901 + <field>
  3902 + <field_name>xl_dir</field_name>
  3903 + <key_value>30</key_value>
  3904 + <target_name>fcno30_xldir</target_name>
  3905 + <target_type>String</target_type>
  3906 + <target_format/>
  3907 + <target_length>-1</target_length>
  3908 + <target_precision>-1</target_precision>
  3909 + <target_decimal_symbol/>
  3910 + <target_grouping_symbol/>
  3911 + <target_currency_symbol/>
  3912 + <target_null_string/>
  3913 + <target_aggregation_type>-</target_aggregation_type>
  3914 + </field>
  3915 + <field>
  3916 + <field_name>isfb</field_name>
  3917 + <key_value>30</key_value>
  3918 + <target_name>fcno30_isfb</target_name>
  3919 + <target_type>String</target_type>
  3920 + <target_format/>
  3921 + <target_length>-1</target_length>
  3922 + <target_precision>-1</target_precision>
  3923 + <target_decimal_symbol/>
  3924 + <target_grouping_symbol/>
  3925 + <target_currency_symbol/>
  3926 + <target_null_string/>
  3927 + <target_aggregation_type>-</target_aggregation_type>
  3928 + </field>
  3929 + <field>
  3930 + <field_name>id</field_name>
  3931 + <key_value>31</key_value>
  3932 + <target_name>fcno31_id</target_name>
  3933 + <target_type>String</target_type>
  3934 + <target_format/>
  3935 + <target_length>-1</target_length>
  3936 + <target_precision>-1</target_precision>
  3937 + <target_decimal_symbol/>
  3938 + <target_grouping_symbol/>
  3939 + <target_currency_symbol/>
  3940 + <target_null_string/>
  3941 + <target_aggregation_type>-</target_aggregation_type>
  3942 + </field>
  3943 + <field>
  3944 + <field_name>fcsj</field_name>
  3945 + <key_value>31</key_value>
  3946 + <target_name>fcno31_fcsj</target_name>
  3947 + <target_type>String</target_type>
  3948 + <target_format/>
  3949 + <target_length>-1</target_length>
  3950 + <target_precision>-1</target_precision>
  3951 + <target_decimal_symbol/>
  3952 + <target_grouping_symbol/>
  3953 + <target_currency_symbol/>
  3954 + <target_null_string/>
  3955 + <target_aggregation_type>-</target_aggregation_type>
  3956 + </field>
  3957 + <field>
  3958 + <field_name>fczdName</field_name>
  3959 + <key_value>31</key_value>
  3960 + <target_name>fcno31_zdname</target_name>
  3961 + <target_type>String</target_type>
  3962 + <target_format/>
  3963 + <target_length>-1</target_length>
  3964 + <target_precision>-1</target_precision>
  3965 + <target_decimal_symbol/>
  3966 + <target_grouping_symbol/>
  3967 + <target_currency_symbol/>
  3968 + <target_null_string/>
  3969 + <target_aggregation_type>-</target_aggregation_type>
  3970 + </field>
  3971 + <field>
  3972 + <field_name>bc_type</field_name>
  3973 + <key_value>31</key_value>
  3974 + <target_name>fcno31_bctype</target_name>
  3975 + <target_type>String</target_type>
  3976 + <target_format/>
  3977 + <target_length>-1</target_length>
  3978 + <target_precision>-1</target_precision>
  3979 + <target_decimal_symbol/>
  3980 + <target_grouping_symbol/>
  3981 + <target_currency_symbol/>
  3982 + <target_null_string/>
  3983 + <target_aggregation_type>-</target_aggregation_type>
  3984 + </field>
  3985 + <field>
  3986 + <field_name>xl_dir</field_name>
  3987 + <key_value>31</key_value>
  3988 + <target_name>fcno31_xldir</target_name>
  3989 + <target_type>String</target_type>
  3990 + <target_format/>
  3991 + <target_length>-1</target_length>
  3992 + <target_precision>-1</target_precision>
  3993 + <target_decimal_symbol/>
  3994 + <target_grouping_symbol/>
  3995 + <target_currency_symbol/>
  3996 + <target_null_string/>
  3997 + <target_aggregation_type>-</target_aggregation_type>
  3998 + </field>
  3999 + <field>
  4000 + <field_name>isfb</field_name>
  4001 + <key_value>31</key_value>
  4002 + <target_name>fcno31_isfb</target_name>
  4003 + <target_type>String</target_type>
  4004 + <target_format/>
  4005 + <target_length>-1</target_length>
  4006 + <target_precision>-1</target_precision>
  4007 + <target_decimal_symbol/>
  4008 + <target_grouping_symbol/>
  4009 + <target_currency_symbol/>
  4010 + <target_null_string/>
  4011 + <target_aggregation_type>-</target_aggregation_type>
  4012 + </field>
  4013 + <field>
  4014 + <field_name>id</field_name>
  4015 + <key_value>32</key_value>
  4016 + <target_name>fcno32_id</target_name>
  4017 + <target_type>String</target_type>
  4018 + <target_format/>
  4019 + <target_length>-1</target_length>
  4020 + <target_precision>-1</target_precision>
  4021 + <target_decimal_symbol/>
  4022 + <target_grouping_symbol/>
  4023 + <target_currency_symbol/>
  4024 + <target_null_string/>
  4025 + <target_aggregation_type>-</target_aggregation_type>
  4026 + </field>
  4027 + <field>
  4028 + <field_name>fcsj</field_name>
  4029 + <key_value>32</key_value>
  4030 + <target_name>fcno32_fcsj</target_name>
  4031 + <target_type>String</target_type>
  4032 + <target_format/>
  4033 + <target_length>-1</target_length>
  4034 + <target_precision>-1</target_precision>
  4035 + <target_decimal_symbol/>
  4036 + <target_grouping_symbol/>
  4037 + <target_currency_symbol/>
  4038 + <target_null_string/>
  4039 + <target_aggregation_type>-</target_aggregation_type>
  4040 + </field>
  4041 + <field>
  4042 + <field_name>fczdName</field_name>
  4043 + <key_value>32</key_value>
  4044 + <target_name>fcno32_zdname</target_name>
  4045 + <target_type>String</target_type>
  4046 + <target_format/>
  4047 + <target_length>-1</target_length>
  4048 + <target_precision>-1</target_precision>
  4049 + <target_decimal_symbol/>
  4050 + <target_grouping_symbol/>
  4051 + <target_currency_symbol/>
  4052 + <target_null_string/>
  4053 + <target_aggregation_type>-</target_aggregation_type>
  4054 + </field>
  4055 + <field>
  4056 + <field_name>bc_type</field_name>
  4057 + <key_value>32</key_value>
  4058 + <target_name>fcno32_bctype</target_name>
  4059 + <target_type>String</target_type>
  4060 + <target_format/>
  4061 + <target_length>-1</target_length>
  4062 + <target_precision>-1</target_precision>
  4063 + <target_decimal_symbol/>
  4064 + <target_grouping_symbol/>
  4065 + <target_currency_symbol/>
  4066 + <target_null_string/>
  4067 + <target_aggregation_type>-</target_aggregation_type>
  4068 + </field>
  4069 + <field>
  4070 + <field_name>xl_dir</field_name>
  4071 + <key_value>32</key_value>
  4072 + <target_name>fcno32_xldir</target_name>
  4073 + <target_type>String</target_type>
  4074 + <target_format/>
  4075 + <target_length>-1</target_length>
  4076 + <target_precision>-1</target_precision>
  4077 + <target_decimal_symbol/>
  4078 + <target_grouping_symbol/>
  4079 + <target_currency_symbol/>
  4080 + <target_null_string/>
  4081 + <target_aggregation_type>-</target_aggregation_type>
  4082 + </field>
  4083 + <field>
  4084 + <field_name>isfb</field_name>
  4085 + <key_value>32</key_value>
  4086 + <target_name>fcno32_isfb</target_name>
  4087 + <target_type>String</target_type>
  4088 + <target_format/>
  4089 + <target_length>-1</target_length>
  4090 + <target_precision>-1</target_precision>
  4091 + <target_decimal_symbol/>
  4092 + <target_grouping_symbol/>
  4093 + <target_currency_symbol/>
  4094 + <target_null_string/>
  4095 + <target_aggregation_type>-</target_aggregation_type>
  4096 + </field>
  4097 + <field>
  4098 + <field_name>id</field_name>
  4099 + <key_value>33</key_value>
  4100 + <target_name>fcno33_id</target_name>
  4101 + <target_type>String</target_type>
  4102 + <target_format/>
  4103 + <target_length>-1</target_length>
  4104 + <target_precision>-1</target_precision>
  4105 + <target_decimal_symbol/>
  4106 + <target_grouping_symbol/>
  4107 + <target_currency_symbol/>
  4108 + <target_null_string/>
  4109 + <target_aggregation_type>-</target_aggregation_type>
  4110 + </field>
  4111 + <field>
  4112 + <field_name>fcsj</field_name>
  4113 + <key_value>33</key_value>
  4114 + <target_name>fcno33_fcsj</target_name>
  4115 + <target_type>String</target_type>
  4116 + <target_format/>
  4117 + <target_length>-1</target_length>
  4118 + <target_precision>-1</target_precision>
  4119 + <target_decimal_symbol/>
  4120 + <target_grouping_symbol/>
  4121 + <target_currency_symbol/>
  4122 + <target_null_string/>
  4123 + <target_aggregation_type>-</target_aggregation_type>
  4124 + </field>
  4125 + <field>
  4126 + <field_name>fczdName</field_name>
  4127 + <key_value>33</key_value>
  4128 + <target_name>fcno33_zdname</target_name>
  4129 + <target_type>String</target_type>
  4130 + <target_format/>
  4131 + <target_length>-1</target_length>
  4132 + <target_precision>-1</target_precision>
  4133 + <target_decimal_symbol/>
  4134 + <target_grouping_symbol/>
  4135 + <target_currency_symbol/>
  4136 + <target_null_string/>
  4137 + <target_aggregation_type>-</target_aggregation_type>
  4138 + </field>
  4139 + <field>
  4140 + <field_name>bc_type</field_name>
  4141 + <key_value>33</key_value>
  4142 + <target_name>fcno33_bctype</target_name>
  4143 + <target_type>String</target_type>
  4144 + <target_format/>
  4145 + <target_length>-1</target_length>
  4146 + <target_precision>-1</target_precision>
  4147 + <target_decimal_symbol/>
  4148 + <target_grouping_symbol/>
  4149 + <target_currency_symbol/>
  4150 + <target_null_string/>
  4151 + <target_aggregation_type>-</target_aggregation_type>
  4152 + </field>
  4153 + <field>
  4154 + <field_name>xl_dir</field_name>
  4155 + <key_value>33</key_value>
  4156 + <target_name>fcno33_xldir</target_name>
  4157 + <target_type>String</target_type>
  4158 + <target_format/>
  4159 + <target_length>-1</target_length>
  4160 + <target_precision>-1</target_precision>
  4161 + <target_decimal_symbol/>
  4162 + <target_grouping_symbol/>
  4163 + <target_currency_symbol/>
  4164 + <target_null_string/>
  4165 + <target_aggregation_type>-</target_aggregation_type>
  4166 + </field>
  4167 + <field>
  4168 + <field_name>isfb</field_name>
  4169 + <key_value>33</key_value>
  4170 + <target_name>fcno33_isfb</target_name>
  4171 + <target_type>String</target_type>
  4172 + <target_format/>
  4173 + <target_length>-1</target_length>
  4174 + <target_precision>-1</target_precision>
  4175 + <target_decimal_symbol/>
  4176 + <target_grouping_symbol/>
  4177 + <target_currency_symbol/>
  4178 + <target_null_string/>
  4179 + <target_aggregation_type>-</target_aggregation_type>
  4180 + </field>
  4181 + <field>
  4182 + <field_name>id</field_name>
  4183 + <key_value>34</key_value>
  4184 + <target_name>fcno34_id</target_name>
  4185 + <target_type>String</target_type>
  4186 + <target_format/>
  4187 + <target_length>-1</target_length>
  4188 + <target_precision>-1</target_precision>
  4189 + <target_decimal_symbol/>
  4190 + <target_grouping_symbol/>
  4191 + <target_currency_symbol/>
  4192 + <target_null_string/>
  4193 + <target_aggregation_type>-</target_aggregation_type>
  4194 + </field>
  4195 + <field>
  4196 + <field_name>fcsj</field_name>
  4197 + <key_value>34</key_value>
  4198 + <target_name>fcno34_fcsj</target_name>
  4199 + <target_type>String</target_type>
  4200 + <target_format/>
  4201 + <target_length>-1</target_length>
  4202 + <target_precision>-1</target_precision>
  4203 + <target_decimal_symbol/>
  4204 + <target_grouping_symbol/>
  4205 + <target_currency_symbol/>
  4206 + <target_null_string/>
  4207 + <target_aggregation_type>-</target_aggregation_type>
  4208 + </field>
  4209 + <field>
  4210 + <field_name>fczdName</field_name>
  4211 + <key_value>34</key_value>
  4212 + <target_name>fcno34_zdname</target_name>
  4213 + <target_type>String</target_type>
  4214 + <target_format/>
  4215 + <target_length>-1</target_length>
  4216 + <target_precision>-1</target_precision>
  4217 + <target_decimal_symbol/>
  4218 + <target_grouping_symbol/>
  4219 + <target_currency_symbol/>
  4220 + <target_null_string/>
  4221 + <target_aggregation_type>-</target_aggregation_type>
  4222 + </field>
  4223 + <field>
  4224 + <field_name>bc_type</field_name>
  4225 + <key_value>34</key_value>
  4226 + <target_name>fcno34_bctype</target_name>
  4227 + <target_type>String</target_type>
  4228 + <target_format/>
  4229 + <target_length>-1</target_length>
  4230 + <target_precision>-1</target_precision>
  4231 + <target_decimal_symbol/>
  4232 + <target_grouping_symbol/>
  4233 + <target_currency_symbol/>
  4234 + <target_null_string/>
  4235 + <target_aggregation_type>-</target_aggregation_type>
  4236 + </field>
  4237 + <field>
  4238 + <field_name>xl_dir</field_name>
  4239 + <key_value>34</key_value>
  4240 + <target_name>fcno34_xldir</target_name>
  4241 + <target_type>String</target_type>
  4242 + <target_format/>
  4243 + <target_length>-1</target_length>
  4244 + <target_precision>-1</target_precision>
  4245 + <target_decimal_symbol/>
  4246 + <target_grouping_symbol/>
  4247 + <target_currency_symbol/>
  4248 + <target_null_string/>
  4249 + <target_aggregation_type>-</target_aggregation_type>
  4250 + </field>
  4251 + <field>
  4252 + <field_name>isfb</field_name>
  4253 + <key_value>34</key_value>
  4254 + <target_name>fcno34_isfb</target_name>
  4255 + <target_type>String</target_type>
  4256 + <target_format/>
  4257 + <target_length>-1</target_length>
  4258 + <target_precision>-1</target_precision>
  4259 + <target_decimal_symbol/>
  4260 + <target_grouping_symbol/>
  4261 + <target_currency_symbol/>
  4262 + <target_null_string/>
  4263 + <target_aggregation_type>-</target_aggregation_type>
  4264 + </field>
  4265 + <field>
  4266 + <field_name>id</field_name>
  4267 + <key_value>35</key_value>
  4268 + <target_name>fcno35_id</target_name>
  4269 + <target_type>String</target_type>
  4270 + <target_format/>
  4271 + <target_length>-1</target_length>
  4272 + <target_precision>-1</target_precision>
  4273 + <target_decimal_symbol/>
  4274 + <target_grouping_symbol/>
  4275 + <target_currency_symbol/>
  4276 + <target_null_string/>
  4277 + <target_aggregation_type>-</target_aggregation_type>
  4278 + </field>
  4279 + <field>
  4280 + <field_name>fcsj</field_name>
  4281 + <key_value>35</key_value>
  4282 + <target_name>fcno35_fcsj</target_name>
  4283 + <target_type>String</target_type>
  4284 + <target_format/>
  4285 + <target_length>-1</target_length>
  4286 + <target_precision>-1</target_precision>
  4287 + <target_decimal_symbol/>
  4288 + <target_grouping_symbol/>
  4289 + <target_currency_symbol/>
  4290 + <target_null_string/>
  4291 + <target_aggregation_type>-</target_aggregation_type>
  4292 + </field>
  4293 + <field>
  4294 + <field_name>fczdName</field_name>
  4295 + <key_value>35</key_value>
  4296 + <target_name>fcno35_zdname</target_name>
  4297 + <target_type>String</target_type>
  4298 + <target_format/>
  4299 + <target_length>-1</target_length>
  4300 + <target_precision>-1</target_precision>
  4301 + <target_decimal_symbol/>
  4302 + <target_grouping_symbol/>
  4303 + <target_currency_symbol/>
  4304 + <target_null_string/>
  4305 + <target_aggregation_type>-</target_aggregation_type>
  4306 + </field>
  4307 + <field>
  4308 + <field_name>bc_type</field_name>
  4309 + <key_value>35</key_value>
  4310 + <target_name>fcno35_bctype</target_name>
  4311 + <target_type>String</target_type>
  4312 + <target_format/>
  4313 + <target_length>-1</target_length>
  4314 + <target_precision>-1</target_precision>
  4315 + <target_decimal_symbol/>
  4316 + <target_grouping_symbol/>
  4317 + <target_currency_symbol/>
  4318 + <target_null_string/>
  4319 + <target_aggregation_type>-</target_aggregation_type>
  4320 + </field>
  4321 + <field>
  4322 + <field_name>xl_dir</field_name>
  4323 + <key_value>35</key_value>
  4324 + <target_name>fcno35_xldir</target_name>
  4325 + <target_type>String</target_type>
  4326 + <target_format/>
  4327 + <target_length>-1</target_length>
  4328 + <target_precision>-1</target_precision>
  4329 + <target_decimal_symbol/>
  4330 + <target_grouping_symbol/>
  4331 + <target_currency_symbol/>
  4332 + <target_null_string/>
  4333 + <target_aggregation_type>-</target_aggregation_type>
  4334 + </field>
  4335 + <field>
  4336 + <field_name>isfb</field_name>
  4337 + <key_value>35</key_value>
  4338 + <target_name>fcno35_isfb</target_name>
  4339 + <target_type>String</target_type>
  4340 + <target_format/>
  4341 + <target_length>-1</target_length>
  4342 + <target_precision>-1</target_precision>
  4343 + <target_decimal_symbol/>
  4344 + <target_grouping_symbol/>
  4345 + <target_currency_symbol/>
  4346 + <target_null_string/>
  4347 + <target_aggregation_type>-</target_aggregation_type>
  4348 + </field>
  4349 + </fields>
  4350 + <cluster_schema/>
  4351 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  4352 + <xloc>693</xloc>
  4353 + <yloc>275</yloc>
  4354 + <draw>Y</draw>
  4355 + </GUI>
  4356 + </step>
  4357 +
  4358 + <step>
  4359 + <name>&#x53bb;&#x9664;&#x5b57;&#x6bb5;</name>
  4360 + <type>SelectValues</type>
  4361 + <description/>
  4362 + <distribute>Y</distribute>
  4363 + <custom_distribution/>
  4364 + <copies>1</copies>
  4365 + <partitioning>
  4366 + <method>none</method>
  4367 + <schema_name/>
  4368 + </partitioning>
  4369 + <fields> <select_unspecified>N</select_unspecified>
  4370 + <remove> <name>bcs</name>
  4371 + </remove> <remove> <name>qdzName</name>
  4372 + </remove> <remove> <name>zdzName</name>
  4373 + </remove> </fields> <cluster_schema/>
  4374 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  4375 + <xloc>694</xloc>
  4376 + <yloc>364</yloc>
  4377 + <draw>Y</draw>
  4378 + </GUI>
  4379 + </step>
  4380 +
  4381 + <step>
  4382 + <name>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</name>
  4383 + <type>SelectValues</type>
  4384 + <description/>
  4385 + <distribute>Y</distribute>
  4386 + <custom_distribution/>
  4387 + <copies>1</copies>
  4388 + <partitioning>
  4389 + <method>none</method>
  4390 + <schema_name/>
  4391 + </partitioning>
  4392 + <fields> <field> <name>id</name>
  4393 + <rename/>
  4394 + <length>-2</length>
  4395 + <precision>-2</precision>
  4396 + </field> <field> <name>lp</name>
  4397 + <rename/>
  4398 + <length>-2</length>
  4399 + <precision>-2</precision>
  4400 + </field> <field> <name>fcsj</name>
  4401 + <rename/>
  4402 + <length>-2</length>
  4403 + <precision>-2</precision>
  4404 + </field> <field> <name>fcno</name>
  4405 + <rename/>
  4406 + <length>-2</length>
  4407 + <precision>-2</precision>
  4408 + </field> <field> <name>bcs</name>
  4409 + <rename/>
  4410 + <length>-2</length>
  4411 + <precision>-2</precision>
  4412 + </field> <field> <name>bc_type</name>
  4413 + <rename/>
  4414 + <length>-2</length>
  4415 + <precision>-2</precision>
  4416 + </field> <field> <name>qdzName</name>
  4417 + <rename/>
  4418 + <length>-2</length>
  4419 + <precision>-2</precision>
  4420 + </field> <field> <name>zdzName</name>
  4421 + <rename/>
  4422 + <length>-2</length>
  4423 + <precision>-2</precision>
  4424 + </field> <field> <name>xl_dir</name>
  4425 + <rename/>
  4426 + <length>-2</length>
  4427 + <precision>-2</precision>
  4428 + </field> <field> <name>isfb</name>
  4429 + <rename/>
  4430 + <length>-2</length>
  4431 + <precision>-2</precision>
  4432 + </field> <select_unspecified>N</select_unspecified>
  4433 + </fields> <cluster_schema/>
  4434 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  4435 + <xloc>690</xloc>
  4436 + <yloc>188</yloc>
  4437 + <draw>Y</draw>
  4438 + </GUI>
  4439 + </step>
  4440 +
  4441 + <step>
  4442 + <name>&#x5b57;&#x6bb5;&#x9009;&#x62e9; 2</name>
  4443 + <type>SelectValues</type>
  4444 + <description/>
  4445 + <distribute>Y</distribute>
  4446 + <custom_distribution/>
  4447 + <copies>1</copies>
  4448 + <partitioning>
  4449 + <method>none</method>
  4450 + <schema_name/>
  4451 + </partitioning>
  4452 + <fields> <field> <name>id</name>
  4453 + <rename/>
  4454 + <length>-2</length>
  4455 + <precision>-2</precision>
  4456 + </field> <field> <name>lp</name>
  4457 + <rename/>
  4458 + <length>-2</length>
  4459 + <precision>-2</precision>
  4460 + </field> <field> <name>fcsj</name>
  4461 + <rename/>
  4462 + <length>-2</length>
  4463 + <precision>-2</precision>
  4464 + </field> <field> <name>fcno</name>
  4465 + <rename/>
  4466 + <length>-2</length>
  4467 + <precision>-2</precision>
  4468 + </field> <field> <name>bcs</name>
  4469 + <rename/>
  4470 + <length>-2</length>
  4471 + <precision>-2</precision>
  4472 + </field> <field> <name>bc_type</name>
  4473 + <rename/>
  4474 + <length>-2</length>
  4475 + <precision>-2</precision>
  4476 + </field> <field> <name>qdzName</name>
  4477 + <rename/>
  4478 + <length>-2</length>
  4479 + <precision>-2</precision>
  4480 + </field> <field> <name>zdzName</name>
  4481 + <rename/>
  4482 + <length>-2</length>
  4483 + <precision>-2</precision>
  4484 + </field> <field> <name>xl_dir</name>
  4485 + <rename/>
  4486 + <length>-2</length>
  4487 + <precision>-2</precision>
  4488 + </field> <field> <name>isfb</name>
  4489 + <rename/>
  4490 + <length>-2</length>
  4491 + <precision>-2</precision>
  4492 + </field> <select_unspecified>N</select_unspecified>
  4493 + </fields> <cluster_schema/>
  4494 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  4495 + <xloc>402</xloc>
  4496 + <yloc>189</yloc>
  4497 + <draw>Y</draw>
  4498 + </GUI>
  4499 + </step>
  4500 +
  4501 + <step>
  4502 + <name>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</name>
  4503 + <type>SortRows</type>
  4504 + <description/>
  4505 + <distribute>Y</distribute>
  4506 + <custom_distribution/>
  4507 + <copies>1</copies>
  4508 + <partitioning>
  4509 + <method>none</method>
  4510 + <schema_name/>
  4511 + </partitioning>
  4512 + <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
  4513 + <prefix>out</prefix>
  4514 + <sort_size>1000000</sort_size>
  4515 + <free_memory/>
  4516 + <compress>N</compress>
  4517 + <compress_variable/>
  4518 + <unique_rows>N</unique_rows>
  4519 + <fields>
  4520 + <field>
  4521 + <name>bcs</name>
  4522 + <ascending>Y</ascending>
  4523 + <case_sensitive>N</case_sensitive>
  4524 + <presorted>N</presorted>
  4525 + </field>
  4526 + </fields>
  4527 + <cluster_schema/>
  4528 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  4529 + <xloc>549</xloc>
  4530 + <yloc>191</yloc>
  4531 + <draw>Y</draw>
  4532 + </GUI>
  4533 + </step>
  4534 +
  4535 + <step>
  4536 + <name>&#x67e5;&#x627e;&#x7ec8;&#x70b9;&#x7ad9;&#x540d;&#x79f0;</name>
  4537 + <type>DBLookup</type>
  4538 + <description/>
  4539 + <distribute>Y</distribute>
  4540 + <custom_distribution/>
  4541 + <copies>1</copies>
  4542 + <partitioning>
  4543 + <method>none</method>
  4544 + <schema_name/>
  4545 + </partitioning>
  4546 + <connection>bus_control_variable</connection>
  4547 + <cache>N</cache>
  4548 + <cache_load_all>N</cache_load_all>
  4549 + <cache_size>0</cache_size>
  4550 + <lookup>
  4551 + <schema/>
  4552 + <table>bsth_c_stationroute</table>
  4553 + <orderby/>
  4554 + <fail_on_multiple>N</fail_on_multiple>
  4555 + <eat_row_on_failure>N</eat_row_on_failure>
  4556 + <key>
  4557 + <name>xl</name>
  4558 + <field>line</field>
  4559 + <condition>&#x3d;</condition>
  4560 + <name2/>
  4561 + </key>
  4562 + <key>
  4563 + <name>xl_dir</name>
  4564 + <field>directions</field>
  4565 + <condition>&#x3d;</condition>
  4566 + <name2/>
  4567 + </key>
  4568 + <key>
  4569 + <name>endZdType</name>
  4570 + <field>station_mark</field>
  4571 + <condition>&#x3d;</condition>
  4572 + <name2/>
  4573 + </key>
  4574 + <value>
  4575 + <name>station_name</name>
  4576 + <rename>zdzName</rename>
  4577 + <default/>
  4578 + <type>String</type>
  4579 + </value>
  4580 + </lookup>
  4581 + <cluster_schema/>
  4582 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  4583 + <xloc>688</xloc>
  4584 + <yloc>86</yloc>
  4585 + <draw>Y</draw>
  4586 + </GUI>
  4587 + </step>
  4588 +
  4589 + <step>
  4590 + <name>&#x67e5;&#x627e;&#x8d77;&#x70b9;&#x7ad9;&#x540d;&#x79f0;</name>
  4591 + <type>DBLookup</type>
  4592 + <description/>
  4593 + <distribute>Y</distribute>
  4594 + <custom_distribution/>
  4595 + <copies>1</copies>
  4596 + <partitioning>
  4597 + <method>none</method>
  4598 + <schema_name/>
  4599 + </partitioning>
  4600 + <connection>bus_control_variable</connection>
  4601 + <cache>N</cache>
  4602 + <cache_load_all>N</cache_load_all>
  4603 + <cache_size>0</cache_size>
  4604 + <lookup>
  4605 + <schema/>
  4606 + <table>bsth_c_stationroute</table>
  4607 + <orderby/>
  4608 + <fail_on_multiple>N</fail_on_multiple>
  4609 + <eat_row_on_failure>N</eat_row_on_failure>
  4610 + <key>
  4611 + <name>xl</name>
  4612 + <field>line</field>
  4613 + <condition>&#x3d;</condition>
  4614 + <name2/>
  4615 + </key>
  4616 + <key>
  4617 + <name>xl_dir</name>
  4618 + <field>directions</field>
  4619 + <condition>&#x3d;</condition>
  4620 + <name2/>
  4621 + </key>
  4622 + <key>
  4623 + <name>startZdType</name>
  4624 + <field>station_mark</field>
  4625 + <condition>&#x3d;</condition>
  4626 + <name2/>
  4627 + </key>
  4628 + <value>
  4629 + <name>station_name</name>
  4630 + <rename>qdzName</rename>
  4631 + <default/>
  4632 + <type>String</type>
  4633 + </value>
  4634 + </lookup>
  4635 + <cluster_schema/>
  4636 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  4637 + <xloc>553</xloc>
  4638 + <yloc>86</yloc>
  4639 + <draw>Y</draw>
  4640 + </GUI>
  4641 + </step>
  4642 +
  4643 + <step>
  4644 + <name>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x7ad9;&#x70b9;&#x67e5;&#x8be2;&#x7528;&#x6570;&#x636e;</name>
  4645 + <type>ScriptValueMod</type>
  4646 + <description/>
  4647 + <distribute>Y</distribute>
  4648 + <custom_distribution/>
  4649 + <copies>1</copies>
  4650 + <partitioning>
  4651 + <method>none</method>
  4652 + <schema_name/>
  4653 + </partitioning>
  4654 + <compatible>N</compatible>
  4655 + <optimizationLevel>9</optimizationLevel>
  4656 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  4657 + <jsScript_name>Script 1</jsScript_name>
  4658 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var startZdType &#x3d; &#x27;B&#x27;&#x3b; &#x2f;&#x2f; &#x8d77;&#x70b9;&#x7ad9;&#x7ad9;&#x70b9;&#x7c7b;&#x578b;&#x6807;&#x8bc6;&#x522b;&#xa;var endZdType &#x3d; &#x27;E&#x27;&#x3b; &#x2f;&#x2f; &#x7ec8;&#x70b9;&#x7ad9;&#x7ad9;&#x70b9;&#x7c7b;&#x578b;&#x6807;&#x8bc6;</jsScript_script>
  4659 + </jsScript> </jsScripts> <fields> <field> <name>startZdType</name>
  4660 + <rename>startZdType</rename>
  4661 + <type>String</type>
  4662 + <length>-1</length>
  4663 + <precision>-1</precision>
  4664 + <replace>N</replace>
  4665 + </field> <field> <name>endZdType</name>
  4666 + <rename>endZdType</rename>
  4667 + <type>String</type>
  4668 + <length>-1</length>
  4669 + <precision>-1</precision>
  4670 + <replace>N</replace>
  4671 + </field> </fields> <cluster_schema/>
  4672 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  4673 + <xloc>391</xloc>
  4674 + <yloc>87</yloc>
  4675 + <draw>Y</draw>
  4676 + </GUI>
  4677 + </step>
  4678 +
  4679 + <step>
  4680 + <name>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</name>
  4681 + <type>GetVariable</type>
  4682 + <description/>
  4683 + <distribute>Y</distribute>
  4684 + <custom_distribution/>
  4685 + <copies>1</copies>
  4686 + <partitioning>
  4687 + <method>none</method>
  4688 + <schema_name/>
  4689 + </partitioning>
  4690 + <fields>
  4691 + <field>
  4692 + <name>xlid_</name>
  4693 + <variable>&#x24;&#x7b;xlid&#x7d;</variable>
  4694 + <type>Integer</type>
  4695 + <format/>
  4696 + <currency/>
  4697 + <decimal/>
  4698 + <group/>
  4699 + <length>-1</length>
  4700 + <precision>-1</precision>
  4701 + <trim_type>none</trim_type>
  4702 + </field>
  4703 + <field>
  4704 + <name>ttid_</name>
  4705 + <variable>&#x24;&#x7b;ttid&#x7d;</variable>
  4706 + <type>Number</type>
  4707 + <format/>
  4708 + <currency/>
  4709 + <decimal/>
  4710 + <group/>
  4711 + <length>-1</length>
  4712 + <precision>-1</precision>
  4713 + <trim_type>none</trim_type>
  4714 + </field>
  4715 + </fields>
  4716 + <cluster_schema/>
  4717 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  4718 + <xloc>45</xloc>
  4719 + <yloc>189</yloc>
  4720 + <draw>Y</draw>
  4721 + </GUI>
  4722 + </step>
  4723 +
  4724 + <step>
  4725 + <name>&#x8868;&#x8f93;&#x5165;</name>
  4726 + <type>TableInput</type>
  4727 + <description/>
  4728 + <distribute>Y</distribute>
  4729 + <custom_distribution/>
  4730 + <copies>1</copies>
  4731 + <partitioning>
  4732 + <method>none</method>
  4733 + <schema_name/>
  4734 + </partitioning>
  4735 + <connection>bus_control_variable</connection>
  4736 + <sql>select &#xa;t.id as id&#xa;, g.lp_name as lp&#xa;, g.xl as xl&#xa;, qdz&#xa;, zdz&#xa;, tcc&#xa;, fcsj&#xa;, bc_type &#xa;, bcs&#xa;, fcno&#xa;, xl_dir&#xa;, isfb&#xa;from bsth_c_s_ttinfo_detail t left join &#xa;bsth_c_s_gbi g on t.lp &#x3d; g.id &#xa;where &#xa;g.xl &#x3d; &#x3f; and&#xa;t.ttinfo &#x3d; &#x3f; &#xa;order by t.bcs asc</sql>
  4737 + <limit>0</limit>
  4738 + <lookup>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</lookup>
  4739 + <execute_each_row>N</execute_each_row>
  4740 + <variables_active>Y</variables_active>
  4741 + <lazy_conversion_active>N</lazy_conversion_active>
  4742 + <cluster_schema/>
  4743 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  4744 + <xloc>130</xloc>
  4745 + <yloc>85</yloc>
  4746 + <draw>Y</draw>
  4747 + </GUI>
  4748 + </step>
  4749 +
  4750 + <step>
  4751 + <name>&#x8ba1;&#x7b97;&#x53d1;&#x8f66;&#x7ad9;&#x540d;</name>
  4752 + <type>ScriptValueMod</type>
  4753 + <description/>
  4754 + <distribute>Y</distribute>
  4755 + <custom_distribution/>
  4756 + <copies>1</copies>
  4757 + <partitioning>
  4758 + <method>none</method>
  4759 + <schema_name/>
  4760 + </partitioning>
  4761 + <compatible>N</compatible>
  4762 + <optimizationLevel>9</optimizationLevel>
  4763 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  4764 + <jsScript_name>Script 1</jsScript_name>
  4765 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var fczdName &#x3d; null&#x3b; &#x2f;&#x2f; &#x53d1;&#x8f66;&#x7ad9;&#x70b9;&#x540d;&#x5b57;&#xa;if &#x28;bc_type &#x3d;&#x3d; &#x22;in&#x22;&#x29; &#x7b;&#xa; fczdName &#x3d; &#x22;&#x8fdb;&#x573a;&#x22;&#x3b;&#xa;&#x7d; else if &#x28;bc_type &#x3d;&#x3d; &#x22;out&#x22;&#x29; &#x7b;&#xa; fczdName &#x3d; &#x22;&#x51fa;&#x573a;&#x22;&#x3b;&#xa;&#x7d; else &#x7b;&#xa; fczdName &#x3d; qdzName&#x3b;&#xa;&#x7d;</jsScript_script>
  4766 + </jsScript> </jsScripts> <fields> <field> <name>fczdName</name>
  4767 + <rename>fczdName</rename>
  4768 + <type>String</type>
  4769 + <length>-1</length>
  4770 + <precision>-1</precision>
  4771 + <replace>N</replace>
  4772 + </field> </fields> <cluster_schema/>
  4773 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  4774 + <xloc>550</xloc>
  4775 + <yloc>276</yloc>
  4776 + <draw>Y</draw>
  4777 + </GUI>
  4778 + </step>
  4779 +
  4780 + <step>
  4781 + <name>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;</name>
  4782 + <type>FilterRows</type>
  4783 + <description/>
  4784 + <distribute>Y</distribute>
  4785 + <custom_distribution/>
  4786 + <copies>1</copies>
  4787 + <partitioning>
  4788 + <method>none</method>
  4789 + <schema_name/>
  4790 + </partitioning>
  4791 +<send_true_to>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x7ad9;&#x70b9;&#x67e5;&#x8be2;&#x7528;&#x6570;&#x636e;</send_true_to>
  4792 +<send_false_to>&#x8fdb;&#x573a;&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x67e5;&#x8be2;&#x7528;&#x7684;&#x6570;&#x636e;</send_false_to>
  4793 + <compare>
  4794 +<condition>
  4795 + <negated>N</negated>
  4796 + <leftvalue>bc_type</leftvalue>
  4797 + <function>&#x3d;</function>
  4798 + <rightvalue/>
  4799 + <value><name>constant</name><type>String</type><text>normal</text><length>-1</length><precision>-1</precision><isnull>N</isnull><mask/></value> </condition>
  4800 + </compare>
  4801 + <cluster_schema/>
  4802 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  4803 + <xloc>248</xloc>
  4804 + <yloc>87</yloc>
  4805 + <draw>Y</draw>
  4806 + </GUI>
  4807 + </step>
  4808 +
  4809 + <step>
  4810 + <name>&#x8fdb;&#x573a;&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x67e5;&#x8be2;&#x7528;&#x7684;&#x6570;&#x636e;</name>
  4811 + <type>ScriptValueMod</type>
  4812 + <description/>
  4813 + <distribute>Y</distribute>
  4814 + <custom_distribution/>
  4815 + <copies>1</copies>
  4816 + <partitioning>
  4817 + <method>none</method>
  4818 + <schema_name/>
  4819 + </partitioning>
  4820 + <compatible>N</compatible>
  4821 + <optimizationLevel>9</optimizationLevel>
  4822 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  4823 + <jsScript_name>Script 1</jsScript_name>
  4824 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var qdzName &#x3d; null&#x3b; &#x2f;&#x2f; &#x8d77;&#x70b9;&#x7ad9;&#x540d;&#x5b57;&#xa;var zdzName &#x3d; null&#x3b; &#x2f;&#x2f; &#x7ec8;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</jsScript_script>
  4825 + </jsScript> </jsScripts> <fields> <field> <name>qdzName</name>
  4826 + <rename>qdzName</rename>
  4827 + <type>String</type>
  4828 + <length>-1</length>
  4829 + <precision>-1</precision>
  4830 + <replace>N</replace>
  4831 + </field> <field> <name>zdzName</name>
  4832 + <rename>zdzName</rename>
  4833 + <type>String</type>
  4834 + <length>-1</length>
  4835 + <precision>-1</precision>
  4836 + <replace>N</replace>
  4837 + </field> </fields> <cluster_schema/>
  4838 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  4839 + <xloc>250</xloc>
  4840 + <yloc>188</yloc>
  4841 + <draw>Y</draw>
  4842 + </GUI>
  4843 + </step>
  4844 +
  4845 + <step_error_handling>
  4846 + </step_error_handling>
  4847 + <slave-step-copy-partition-distribution>
  4848 +</slave-step-copy-partition-distribution>
  4849 + <slave_transformation>N</slave_transformation>
  4850 +
  4851 +</transformation>
src/main/resources/static/pages/forms/statement/account.html
@@ -80,44 +80,18 @@ @@ -80,44 +80,18 @@
80 locale : 'zh-cn' 80 locale : 'zh-cn'
81 }); 81 });
82 82
83 - $('#line').select2({  
84 - ajax: {  
85 - url: '/realSchedule/findLine',  
86 - type: 'post',  
87 - dataType: 'json',  
88 - delay: 150,  
89 - data: function(params){  
90 - return{line: params.term};  
91 - },  
92 - processResults: function (data) {  
93 - return {  
94 - results: data  
95 - };  
96 - },  
97 - cache: true  
98 - },  
99 - templateResult: function(repo){  
100 - if (repo.loading) return repo.text;  
101 - var h = '<span>'+repo.text+'</span>';  
102 - return h;  
103 - },  
104 - escapeMarkup: function (markup) { return markup; },  
105 - minimumInputLength: 1,  
106 - templateSelection: function(repo){  
107 - return repo.text;  
108 - },  
109 - language: {  
110 - noResults: function(){  
111 - return '<span style="color:red;font-size: 12px;">没有搜索到线路!</span>';  
112 - },  
113 - inputTooShort : function(e) {  
114 - return '<span style="color:gray;font-size: 12px;"><i class="fa fa-search"></i> 输入线路搜索线路</span>';  
115 - },  
116 - searching : function() {  
117 - return '<span style="color:gray;font-size: 12px;"> 正在搜索线路...</span>';  
118 - }  
119 - }  
120 - }); 83 + $.get('/basic/lineCode2Name',function(result){
  84 + var data=[];
  85 +
  86 + for(var code in result){
  87 + data.push({id: code, text: result[code]});
  88 + }
  89 + console.log(data);
  90 + initPinYinSelect2('#line',data,'');
  91 +
  92 + })
  93 +
  94 +
121 $('#code').select2({ 95 $('#code').select2({
122 ajax: { 96 ajax: {
123 url: '/realSchedule/sreachVehic', 97 url: '/realSchedule/sreachVehic',
src/main/resources/static/pages/forms/statement/correctForm.html
@@ -107,44 +107,19 @@ @@ -107,44 +107,19 @@
107 locale : 'zh-cn' 107 locale : 'zh-cn'
108 }); 108 });
109 109
110 - $('#line').select2({  
111 - ajax: {  
112 - url: '/realSchedule/findLine',  
113 - type: 'post',  
114 - dataType: 'json',  
115 - delay: 150,  
116 - data: function(params){  
117 - return{line: params.term};  
118 - },  
119 - processResults: function (data) {  
120 - return {  
121 - results: data  
122 - };  
123 - },  
124 - cache: true  
125 - },  
126 - templateResult: function(repo){  
127 - if (repo.loading) return repo.text;  
128 - var h = '<span>'+repo.text+'</span>';  
129 - return h;  
130 - },  
131 - escapeMarkup: function (markup) { return markup; },  
132 - minimumInputLength: 1,  
133 - templateSelection: function(repo){  
134 - return repo.text;  
135 - },  
136 - language: {  
137 - noResults: function(){  
138 - return '<span style="color:red;font-size: 12px;">没有搜索到线路!</span>';  
139 - },  
140 - inputTooShort : function(e) {  
141 - return '<span style="color:gray;font-size: 12px;"><i class="fa fa-search"></i> 输入线路搜索线路</span>';  
142 - },  
143 - searching : function() {  
144 - return '<span style="color:gray;font-size: 12px;"> 正在搜索线路...</span>';  
145 - }  
146 - }  
147 - }); 110 +
  111 + $.get('/basic/lineCode2Name',function(result){
  112 + var data=[];
  113 +
  114 + for(var code in result){
  115 + data.push({id: code, text: result[code]});
  116 + }
  117 + console.log(data);
  118 + initPinYinSelect2('#line',data,'');
  119 +
  120 + })
  121 +
  122 +
148 $('#lpName').select2({ 123 $('#lpName').select2({
149 ajax: { 124 ajax: {
150 url: '/realSchedule/findLpName', 125 url: '/realSchedule/findLpName',
src/main/resources/static/pages/forms/statement/daily.html
@@ -92,45 +92,16 @@ @@ -92,45 +92,16 @@
92 locale : 'zh-cn' 92 locale : 'zh-cn'
93 }); 93 });
94 94
95 - $('#line').select2({  
96 - ajax: {  
97 - url: '/realSchedule/findLine',  
98 - type: 'post',  
99 - dataType: 'json',  
100 - delay: 150,  
101 - data: function(params){  
102 - return{line: params.term};  
103 - },  
104 - processResults: function (data) {  
105 - return {  
106 - results: data  
107 - };  
108 - },  
109 - cache: true  
110 - },  
111 - templateResult: function(repo){  
112 - if (repo.loading) return repo.text;  
113 - var h = '<span>'+repo.text+'</span>';  
114 - return h;  
115 - },  
116 - escapeMarkup: function (markup) { return markup; },  
117 - minimumInputLength: 1,  
118 - templateSelection: function(repo){  
119 - return repo.text;  
120 - },  
121 - language: {  
122 - noResults: function(){  
123 - return '<span style="color:red;font-size: 12px;">没有搜索到线路!</span>';  
124 - },  
125 - inputTooShort : function(e) {  
126 - return '<span style="color:gray;font-size: 12px;"><i class="fa fa-search"></i> 输入线路搜索线路</span>';  
127 - },  
128 - searching : function() {  
129 - return '<span style="color:gray;font-size: 12px;"> 正在搜索线路...</span>';  
130 - }  
131 - }  
132 - });  
133 - 95 + $.get('/basic/lineCode2Name',function(result){
  96 + var data=[];
  97 +
  98 + for(var code in result){
  99 + data.push({id: code, text: result[code]});
  100 + }
  101 + console.log(data);
  102 + initPinYinSelect2('#line',data,'');
  103 +
  104 + })
134 var line; 105 var line;
135 var date; 106 var date;
136 $("#query").on("click",function(){ 107 $("#query").on("click",function(){
src/main/resources/static/pages/forms/statement/historyMessage.html
@@ -80,44 +80,16 @@ @@ -80,44 +80,16 @@
80 locale : 'zh-cn' 80 locale : 'zh-cn'
81 }); 81 });
82 82
83 - $('#line').select2({  
84 - ajax: {  
85 - url: '/realSchedule/findLine',  
86 - type: 'post',  
87 - dataType: 'json',  
88 - delay: 150,  
89 - data: function(params){  
90 - return{line: params.term};  
91 - },  
92 - processResults: function (data) {  
93 - return {  
94 - results: data  
95 - };  
96 - },  
97 - cache: true  
98 - },  
99 - templateResult: function(repo){  
100 - if (repo.loading) return repo.text;  
101 - var h = '<span>'+repo.text+'</span>';  
102 - return h;  
103 - },  
104 - escapeMarkup: function (markup) { return markup; },  
105 - minimumInputLength: 1,  
106 - templateSelection: function(repo){  
107 - return repo.text;  
108 - },  
109 - language: {  
110 - noResults: function(){  
111 - return '<span style="color:red;font-size: 12px;">没有搜索到线路!</span>';  
112 - },  
113 - inputTooShort : function(e) {  
114 - return '<span style="color:gray;font-size: 12px;"><i class="fa fa-search"></i> 输入线路搜索线路</span>';  
115 - },  
116 - searching : function() {  
117 - return '<span style="color:gray;font-size: 12px;"> 正在搜索线路...</span>';  
118 - } 83 + $.get('/basic/lineCode2Name',function(result){
  84 + var data=[];
  85 +
  86 + for(var code in result){
  87 + data.push({id: code, text: result[code]});
119 } 88 }
120 - }); 89 + console.log(data);
  90 + initPinYinSelect2('#line',data,'');
  91 +
  92 + })
121 $('#code').select2({ 93 $('#code').select2({
122 ajax: { 94 ajax: {
123 url: '/realSchedule/sreachVehic', 95 url: '/realSchedule/sreachVehic',
src/main/resources/static/pages/forms/statement/jobSummary.html
@@ -194,43 +194,17 @@ @@ -194,43 +194,17 @@
194 locale : 'zh-cn' 194 locale : 'zh-cn'
195 }); 195 });
196 196
197 - $('#line').select2({  
198 - ajax: {  
199 - url: '/realSchedule/findLine',  
200 - dataType: 'json',  
201 - delay: 150,  
202 - data: function(params){  
203 - return{line: params.term};  
204 - },  
205 - processResults: function (data) {  
206 - return {  
207 - results: data  
208 - };  
209 - },  
210 - cache: true  
211 - },  
212 - templateResult: function(repo){  
213 - if (repo.loading) return repo.text;  
214 - var h = '<span>'+repo.text+'</span>';  
215 - return h;  
216 - },  
217 - escapeMarkup: function (markup) { return markup; },  
218 - minimumInputLength: 1,  
219 - templateSelection: function(repo){  
220 - return repo.text;  
221 - },  
222 - language: {  
223 - noResults: function(){  
224 - return '<span style="color:red;font-size: 12px;">没有搜索到线路!</span>';  
225 - },  
226 - inputTooShort : function(e) {  
227 - return '<span style="color:gray;font-size: 12px;"><i class="fa fa-search"></i> 输入线路搜索线路</span>';  
228 - },  
229 - searching : function() {  
230 - return '<span style="color:gray;font-size: 12px;"> 正在搜索线路...</span>';  
231 - }  
232 - }  
233 - }); 197 + $.get('/basic/lineCode2Name',function(result){
  198 + var data=[];
  199 +
  200 + for(var code in result){
  201 + data.push({id: code, text: result[code]});
  202 + }
  203 + console.log(data);
  204 + initPinYinSelect2('#line',data,'');
  205 +
  206 + })
  207 +
234 }); 208 });
235 </script> 209 </script>
236 <script type="text/html" id="list_forms"> 210 <script type="text/html" id="list_forms">
src/main/resources/static/pages/forms/statement/linepassengerflow.html
@@ -21,12 +21,12 @@ @@ -21,12 +21,12 @@
21 <h1>线路客流量报表</h1> 21 <h1>线路客流量报表</h1>
22 </div> 22 </div>
23 </div> 23 </div>
24 -  
25 -<div class="row">  
26 - <div class="col-md-12">  
27 - <div class="portlet light porttlet-fit bordered">  
28 - <div class="portlet-title">  
29 - <form class="form-inline" action=""> 24 +
  25 +<div class="row">
  26 + <div class="col-md-12">
  27 + <div class="portlet light porttlet-fit bordered">
  28 + <div class="portlet-title">
  29 + <form class="form-inline" action="">
30 <div style="display: inline-block;"> 30 <div style="display: inline-block;">
31 <span class="item-label" style="width: 80px;">线路: </span> 31 <span class="item-label" style="width: 80px;">线路: </span>
32 <select class="form-control" name="line" id="line" style="width: 180px;"></select> 32 <select class="form-control" name="line" id="line" style="width: 180px;"></select>
@@ -38,10 +38,10 @@ @@ -38,10 +38,10 @@
38 <div class="form-group"> 38 <div class="form-group">
39 <input class="btn btn-default" type="button" id="query" value="筛选"/> 39 <input class="btn btn-default" type="button" id="query" value="筛选"/>
40 <input class="btn btn-default" type="button" id="export" value="导出"/> 40 <input class="btn btn-default" type="button" id="export" value="导出"/>
41 - </div>  
42 - </form>  
43 - </div>  
44 - <div class="portlet-body"> 41 + </div>
  42 + </form>
  43 + </div>
  44 + <div class="portlet-body">
45 <div class="table-container" style="margin-top: 10px;overflow:auto;min-width: 906px"> 45 <div class="table-container" style="margin-top: 10px;overflow:auto;min-width: 906px">
46 <table class="table table-bordered table-hover table-checkable" id="forms"> 46 <table class="table table-bordered table-hover table-checkable" id="forms">
47 <thead> 47 <thead>
@@ -56,63 +56,34 @@ @@ -56,63 +56,34 @@
56 56
57 </tbody> 57 </tbody>
58 </table> 58 </table>
59 - </div>  
60 - </div>  
61 - </div>  
62 - </div>  
63 -</div>  
64 -  
65 -<script> 59 + </div>
  60 + </div>
  61 + </div>
  62 + </div>
  63 +</div>
  64 +
  65 +<script>
66 $(function(){ 66 $(function(){
67 - var reqCodeMap = {"0xA1": '请求恢复运营', "0xA2": '申请调档', "0xA3": '出场请求', "0xA5": '进场请求', "0xA7": '加油请求', "0x50": '车辆故障', "0x70": '路阻报告', "0x60": '事故报告', "0x11": '扣证纠纷', "0x12" : '报警'};  
68 - // 关闭左侧栏  
69 - if (!$('body').hasClass('page-sidebar-closed')) 67 + var reqCodeMap = {"0xA1": '请求恢复运营', "0xA2": '申请调档', "0xA3": '出场请求', "0xA5": '进场请求', "0xA7": '加油请求', "0x50": '车辆故障', "0x70": '路阻报告', "0x60": '事故报告', "0x11": '扣证纠纷', "0x12" : '报警'};
  68 + // 关闭左侧栏
  69 + if (!$('body').hasClass('page-sidebar-closed'))
70 $('.menu-toggler.sidebar-toggler').click(); 70 $('.menu-toggler.sidebar-toggler').click();
71 -  
72 - $("#date").datetimepicker({  
73 - format : 'YYYY-MM-DD',  
74 - locale : 'zh-cn' 71 +
  72 + $("#date").datetimepicker({
  73 + format : 'YYYY-MM-DD',
  74 + locale : 'zh-cn'
75 }); 75 });
76 76
77 - $('#line').select2({  
78 - ajax: {  
79 - url: '/realSchedule/findLine',  
80 - type: 'post',  
81 - dataType: 'json',  
82 - delay: 150,  
83 - data: function(params){  
84 - return{line: params.term};  
85 - },  
86 - processResults: function (data) {  
87 - return {  
88 - results: data  
89 - };  
90 - },  
91 - cache: true  
92 - },  
93 - templateResult: function(repo){  
94 - if (repo.loading) return repo.text;  
95 - var h = '<span>'+repo.text+'</span>';  
96 - return h;  
97 - },  
98 - escapeMarkup: function (markup) { return markup; },  
99 - minimumInputLength: 1,  
100 - templateSelection: function(repo){  
101 - return repo.text;  
102 - },  
103 - language: {  
104 - noResults: function(){  
105 - return '<span style="color:red;font-size: 12px;">没有搜索到线路!</span>';  
106 - },  
107 - inputTooShort : function(e) {  
108 - return '<span style="color:gray;font-size: 12px;"><i class="fa fa-search"></i> 输入线路搜索线路</span>';  
109 - },  
110 - searching : function() {  
111 - return '<span style="color:gray;font-size: 12px;"> 正在搜索线路...</span>';  
112 - }  
113 - }  
114 - });  
115 - 77 + $.get('/basic/lineCode2Name',function(result){
  78 + var data=[];
  79 +
  80 + for(var code in result){
  81 + data.push({id: code, text: result[code]});
  82 + }
  83 + console.log(data);
  84 + initPinYinSelect2('#line',data,'');
  85 +
  86 + })
116 87
117 $("#query").on("click",function(){ 88 $("#query").on("click",function(){
118 var line = $("#line").val(); 89 var line = $("#line").val();
@@ -126,10 +97,10 @@ @@ -126,10 +97,10 @@
126 // 把渲染好的模版html文本追加到表格中 97 // 把渲染好的模版html文本追加到表格中
127 $('#forms tbody').html(tbodyHtml); 98 $('#forms tbody').html(tbodyHtml);
128 }); 99 });
129 - });  
130 - });  
131 -</script>  
132 -<script type="text/html" id="list_linepasswengerflow"> 100 + });
  101 + });
  102 +</script>
  103 +<script type="text/html" id="list_linepasswengerflow">
133 {{each list as obj i}} 104 {{each list as obj i}}
134 <tr> 105 <tr>
135 <td>{{i+1}}</td> 106 <td>{{i+1}}</td>
@@ -142,5 +113,5 @@ @@ -142,5 +113,5 @@
142 <tr> 113 <tr>
143 <td colspan="6"><h6 class="muted">没有找到相关数据</h6></td> 114 <td colspan="6"><h6 class="muted">没有找到相关数据</h6></td>
144 </tr> 115 </tr>
145 - {{/if}} 116 + {{/if}}
146 </script> 117 </script>
147 \ No newline at end of file 118 \ No newline at end of file
src/main/resources/static/pages/forms/statement/operationservice.html
@@ -102,44 +102,18 @@ @@ -102,44 +102,18 @@
102 locale : 'zh-cn' 102 locale : 'zh-cn'
103 }); 103 });
104 104
105 - $('#line').select2({  
106 - ajax: {  
107 - url: '/realSchedule/findLine',  
108 - type: 'post',  
109 - dataType: 'json',  
110 - delay: 150,  
111 - data: function(params){  
112 - return{line: params.term};  
113 - },  
114 - processResults: function (data) {  
115 - return {  
116 - results: data  
117 - };  
118 - },  
119 - cache: true  
120 - },  
121 - templateResult: function(repo){  
122 - if (repo.loading) return repo.text;  
123 - var h = '<span>'+repo.text+'</span>';  
124 - return h;  
125 - },  
126 - escapeMarkup: function (markup) { return markup; },  
127 - minimumInputLength: 1,  
128 - templateSelection: function(repo){  
129 - return repo.text;  
130 - },  
131 - language: {  
132 - noResults: function(){  
133 - return '<span style="color:red;font-size: 12px;">没有搜索到线路!</span>';  
134 - },  
135 - inputTooShort : function(e) {  
136 - return '<span style="color:gray;font-size: 12px;"><i class="fa fa-search"></i> 输入线路搜索线路</span>';  
137 - },  
138 - searching : function() {  
139 - return '<span style="color:gray;font-size: 12px;"> 正在搜索线路...</span>';  
140 - }  
141 - }  
142 - }); 105 +
  106 + $.get('/basic/lineCode2Name',function(result){
  107 + var data=[];
  108 +
  109 + for(var code in result){
  110 + data.push({id: code, text: result[code]});
  111 + }
  112 + console.log(data);
  113 + initPinYinSelect2('#line',data,'');
  114 +
  115 + })
  116 +
143 $('#lpName').select2({ 117 $('#lpName').select2({
144 ajax: { 118 ajax: {
145 url: '/realSchedule/findLpName', 119 url: '/realSchedule/findLpName',
src/main/resources/static/pages/forms/statement/scheduleDaily.html
@@ -43,6 +43,7 @@ @@ -43,6 +43,7 @@
43 </div> 43 </div>
44 <div class="portlet-body"> 44 <div class="portlet-body">
45 <div class="table-container" style="margin-top: 10px;overflow:auto;min-width: 906px"> 45 <div class="table-container" style="margin-top: 10px;overflow:auto;min-width: 906px">
  46 + <label>早高峰:6:31~8:30&nbsp;&nbsp;&nbsp;&nbsp;晚高峰:16:01~18:00</label>
46 <table class="table table-bordered table-hover table-checkable" id="forms"> 47 <table class="table table-bordered table-hover table-checkable" id="forms">
47 <thead> 48 <thead>
48 <tr> 49 <tr>
@@ -82,23 +83,23 @@ @@ -82,23 +83,23 @@
82 <td>援外</td> 83 <td>援外</td>
83 <td>其他</td> 84 <td>其他</td>
84 <td>全日</td> 85 <td>全日</td>
85 - <td>6:31~<br>8:30</td>  
86 - <td>16:01~<br>18:00</td> 86 + <td>早高峰</td>
  87 + <td>晚高峰</td>
87 <td>全日</td> 88 <td>全日</td>
88 - <td>6:31~<br>8:30</td>  
89 - <td>16:01~<br>18:00</td> 89 + <td>早高峰</td>
  90 + <td>晚高峰</td>
90 <td>全日</td> 91 <td>全日</td>
91 - <td>6:31~<br>8:30</td>  
92 - <td>16:01~<br>18:00</td> 92 + <td>早高峰</td>
  93 + <td>晚高峰</td>
93 <td>全日</td> 94 <td>全日</td>
94 - <td>6:31~<br>8:30</td>  
95 - <td>16:01~<br>18:00</td> 95 + <td>早高峰</td>
  96 + <td>晚高峰</td>
96 <td>全日</td> 97 <td>全日</td>
97 - <td>6:31~<br>8:30</td>  
98 - <td>16:01~<br>18:00</td> 98 + <td>早高峰</td>
  99 + <td>晚高峰</td>
99 <td>全日</td> 100 <td>全日</td>
100 - <td>6:31~<br>8:30</td>  
101 - <td>16:01~<br>18:00</td> 101 + <td>早高峰</td>
  102 + <td>晚高峰</td>
102 </tr> 103 </tr>
103 </thead> 104 </thead>
104 105
@@ -260,44 +261,18 @@ @@ -260,44 +261,18 @@
260 locale : 'zh-cn' 261 locale : 'zh-cn'
261 }); 262 });
262 263
263 - $('#line').select2({  
264 - ajax: {  
265 - url: '/realSchedule/findLine',  
266 - dataType: 'json',  
267 - delay: 150,  
268 - data: function(params){  
269 - return{line: params.term};  
270 - },  
271 - processResults: function (data) {  
272 - return {  
273 - results: data  
274 - };  
275 - },  
276 - cache: true  
277 - },  
278 - templateResult: function(repo){  
279 - if (repo.loading) return repo.text;  
280 - var h = '<span>'+repo.text+'</span>';  
281 - return h;  
282 - },  
283 - escapeMarkup: function (markup) { return markup; },  
284 - minimumInputLength: 1,  
285 - templateSelection: function(repo){  
286 - return repo.text;  
287 - },  
288 - language: {  
289 - noResults: function(){  
290 - return '<span style="color:red;font-size: 12px;">没有搜索到线路!</span>';  
291 - },  
292 - inputTooShort : function(e) {  
293 - return '<span style="color:gray;font-size: 12px;"><i class="fa fa-search"></i> 输入线路搜索线路</span>';  
294 - },  
295 - searching : function() {  
296 - return '<span style="color:gray;font-size: 12px;"> 正在搜索线路...</span>';  
297 - }  
298 - }  
299 - });  
300 - 264 +
  265 +
  266 + $.get('/basic/lineCode2Name',function(result){
  267 + var data=[];
  268 +
  269 + for(var code in result){
  270 + data.push({id: code, text: result[code]});
  271 + }
  272 + console.log(data);
  273 + initPinYinSelect2('#line',data,'');
  274 +
  275 + })
301 //查询 276 //查询
302 $("#query").on('click',function(){ 277 $("#query").on('click',function(){
303 var line = $("#line").val(); 278 var line = $("#line").val();
src/main/resources/static/pages/forms/statement/shifday.html
@@ -97,44 +97,17 @@ $(function(){ @@ -97,44 +97,17 @@ $(function(){
97 locale : 'zh-cn' 97 locale : 'zh-cn'
98 }); 98 });
99 99
100 - $('#line').select2({  
101 - ajax: {  
102 - url: '/realSchedule/findLine',  
103 - type: 'post',  
104 - dataType: 'json',  
105 - delay: 150,  
106 - data: function(params){  
107 - return{line: params.term};  
108 - },  
109 - processResults: function (data) {  
110 - return {  
111 - results: data  
112 - };  
113 - },  
114 - cache: true  
115 - },  
116 - templateResult: function(repo){  
117 - if (repo.loading) return repo.text;  
118 - var h = '<span>'+repo.text+'</span>';  
119 - return h;  
120 - },  
121 - escapeMarkup: function (markup) { return markup; },  
122 - minimumInputLength: 1,  
123 - templateSelection: function(repo){  
124 - return repo.text;  
125 - },  
126 - language: {  
127 - noResults: function(){  
128 - return '<span style="color:red;font-size: 12px;">没有搜索到线路!</span>';  
129 - },  
130 - inputTooShort : function(e) {  
131 - return '<span style="color:gray;font-size: 12px;"><i class="fa fa-search"></i> 输入线路搜索线路</span>';  
132 - },  
133 - searching : function() {  
134 - return '<span style="color:gray;font-size: 12px;"> 正在搜索线路...</span>';  
135 - }  
136 - }  
137 - }); 100 +
  101 + $.get('/basic/lineCode2Name',function(result){
  102 + var data=[];
  103 +
  104 + for(var code in result){
  105 + data.push({id: code, text: result[code]});
  106 + }
  107 + console.log(data);
  108 + initPinYinSelect2('#line',data,'');
  109 +
  110 + })
138 111
139 $("#query").on("click",function(){ 112 $("#query").on("click",function(){
140 var line = $("#line").val(); 113 var line = $("#line").val();
src/main/resources/static/pages/forms/statement/shiftuehiclemanth.html
@@ -87,44 +87,17 @@ @@ -87,44 +87,17 @@
87 locale : 'zh-cn' 87 locale : 'zh-cn'
88 }); 88 });
89 89
90 - $('#line').select2({  
91 - ajax: {  
92 - url: '/realSchedule/findLine',  
93 - type: 'post',  
94 - dataType: 'json',  
95 - delay: 150,  
96 - data: function(params){  
97 - return{line: params.term};  
98 - },  
99 - processResults: function (data) {  
100 - return {  
101 - results: data  
102 - };  
103 - },  
104 - cache: true  
105 - },  
106 - templateResult: function(repo){  
107 - if (repo.loading) return repo.text;  
108 - var h = '<span>'+repo.text+'</span>';  
109 - return h;  
110 - },  
111 - escapeMarkup: function (markup) { return markup; },  
112 - minimumInputLength: 1,  
113 - templateSelection: function(repo){  
114 - return repo.text;  
115 - },  
116 - language: {  
117 - noResults: function(){  
118 - return '<span style="color:red;font-size: 12px;">没有搜索到线路!</span>';  
119 - },  
120 - inputTooShort : function(e) {  
121 - return '<span style="color:gray;font-size: 12px;"><i class="fa fa-search"></i> 输入线路搜索线路</span>';  
122 - },  
123 - searching : function() {  
124 - return '<span style="color:gray;font-size: 12px;"> 正在搜索线路...</span>';  
125 - }  
126 - }  
127 - }); 90 +
  91 + $.get('/basic/lineCode2Name',function(result){
  92 + var data=[];
  93 +
  94 + for(var code in result){
  95 + data.push({id: code, text: result[code]});
  96 + }
  97 + console.log(data);
  98 + initPinYinSelect2('#line',data,'');
  99 +
  100 + })
128 $('#lpName').select2({ 101 $('#lpName').select2({
129 ajax: { 102 ajax: {
130 url: '/realSchedule/findLpName', 103 url: '/realSchedule/findLpName',
src/main/resources/static/pages/forms/statement/singledata.html
@@ -92,44 +92,18 @@ @@ -92,44 +92,18 @@
92 locale : 'zh-cn' 92 locale : 'zh-cn'
93 }); 93 });
94 94
95 - $('#line').select2({  
96 - ajax: {  
97 - url: '/realSchedule/findLine',  
98 - type: 'post',  
99 - dataType: 'json',  
100 - delay: 150,  
101 - data: function(params){  
102 - return{line: params.term};  
103 - },  
104 - processResults: function (data) {  
105 - return {  
106 - results: data  
107 - };  
108 - },  
109 - cache: true  
110 - },  
111 - templateResult: function(repo){  
112 - if (repo.loading) return repo.text;  
113 - var h = '<span>'+repo.text+'</span>';  
114 - return h;  
115 - },  
116 - escapeMarkup: function (markup) { return markup; },  
117 - minimumInputLength: 1,  
118 - templateSelection: function(repo){  
119 - return repo.text;  
120 - },  
121 - language: {  
122 - noResults: function(){  
123 - return '<span style="color:red;font-size: 12px;">没有搜索到线路!</span>';  
124 - },  
125 - inputTooShort : function(e) {  
126 - return '<span style="color:gray;font-size: 12px;"><i class="fa fa-search"></i> 输入线路搜索线路</span>';  
127 - },  
128 - searching : function() {  
129 - return '<span style="color:gray;font-size: 12px;"> 正在搜索线路...</span>';  
130 - }  
131 - }  
132 - }); 95 +
  96 + $.get('/basic/lineCode2Name',function(result){
  97 + var data=[];
  98 +
  99 + for(var code in result){
  100 + data.push({id: code, text: result[code]});
  101 + }
  102 + console.log(data);
  103 + initPinYinSelect2('#line',data,'');
  104 +
  105 + })
  106 +
133 $('#lpName').select2({ 107 $('#lpName').select2({
134 ajax: { 108 ajax: {
135 url: '/realSchedule/findLpName', 109 url: '/realSchedule/findLpName',
src/main/resources/static/pages/forms/statement/statisticsDaily .html
@@ -43,6 +43,7 @@ @@ -43,6 +43,7 @@
43 </div> 43 </div>
44 <div class="portlet-body"> 44 <div class="portlet-body">
45 <div class="table-container" style="margin-top: 10px;overflow:auto;min-width: 906px"> 45 <div class="table-container" style="margin-top: 10px;overflow:auto;min-width: 906px">
  46 + <label>早高峰:6:31~8:30&nbsp;&nbsp;&nbsp;&nbsp;晚高峰:16:01~18:00</label>
46 <table class="table table-bordered table-hover table-checkable" id="forms"> 47 <table class="table table-bordered table-hover table-checkable" id="forms">
47 <thead> 48 <thead>
48 <tr> 49 <tr>
@@ -70,7 +71,7 @@ @@ -70,7 +71,7 @@
70 <td rowspan="2">原因</td> 71 <td rowspan="2">原因</td>
71 </tr> 72 </tr>
72 <tr> 73 <tr>
73 - <td>路阻</td> 74 + <td width="31px">路阻</td>
74 <td>吊慢</td> 75 <td>吊慢</td>
75 <td>故障</td> 76 <td>故障</td>
76 <td>纠纷</td> 77 <td>纠纷</td>
@@ -82,23 +83,23 @@ @@ -82,23 +83,23 @@
82 <td>援外</td> 83 <td>援外</td>
83 <td>其他</td> 84 <td>其他</td>
84 <td>全日</td> 85 <td>全日</td>
85 - <td>6:31~8:30</td>  
86 - <td>16:01~18:00</td> 86 + <td>早高峰</td>
  87 + <td>晚高峰</td>
87 <td>全日</td> 88 <td>全日</td>
88 - <td>6:31~8:30</td>  
89 - <td>16:01~18:00</td> 89 + <td>早高峰</td>
  90 + <td>晚高峰</td>
90 <td>全日</td> 91 <td>全日</td>
91 - <td>6:31~8:30</td>  
92 - <td>16:01~18:00</td> 92 + <td>早高峰</td>
  93 + <td>晚高峰</td>
93 <td>全日</td> 94 <td>全日</td>
94 - <td>6:31~8:30</td>  
95 - <td>16:01~18:00</td> 95 + <td>早高峰</td>
  96 + <td>晚高峰</td>
96 <td>全日</td> 97 <td>全日</td>
97 - <td>6:31~8:30</td>  
98 - <td>16:01~18:00</td> 98 + <td>早高峰</td>
  99 + <td>晚高峰</td>
99 <td>全日</td> 100 <td>全日</td>
100 - <td>6:31~8:30</td>  
101 - <td>16:01~18:00</td> 101 + <td>早高峰</td>
  102 + <td>晚高峰</td>
102 </tr> 103 </tr>
103 </thead> 104 </thead>
104 <tbody class="statisticsDaily"> 105 <tbody class="statisticsDaily">
@@ -163,44 +164,18 @@ @@ -163,44 +164,18 @@
163 format : 'YYYY-MM-DD', 164 format : 'YYYY-MM-DD',
164 locale : 'zh-cn' 165 locale : 'zh-cn'
165 }); 166 });
  167 + $.get('/basic/lineCode2Name',function(result){
  168 + var data=[];
  169 +
  170 + for(var code in result){
  171 + data.push({id: code, text: result[code]});
  172 + }
  173 + console.log(data);
  174 + initPinYinSelect2('#line',data,'');
  175 +
  176 + })
166 177
167 - $('#line').select2({  
168 - ajax: {  
169 - url: '/realSchedule/findLine',  
170 - dataType: 'json',  
171 - delay: 150,  
172 - data: function(params){  
173 - return{line: params.term};  
174 - },  
175 - processResults: function (data) {  
176 - return {  
177 - results: data  
178 - };  
179 - },  
180 - cache: true  
181 - },  
182 - templateResult: function(repo){  
183 - if (repo.loading) return repo.text;  
184 - var h = '<span>'+repo.text+'</span>';  
185 - return h;  
186 - },  
187 - escapeMarkup: function (markup) { return markup; },  
188 - minimumInputLength: 1,  
189 - templateSelection: function(repo){  
190 - return repo.text;  
191 - },  
192 - language: {  
193 - noResults: function(){  
194 - return '<span style="color:red;font-size: 12px;">没有搜索到线路!</span>';  
195 - },  
196 - inputTooShort : function(e) {  
197 - return '<span style="color:gray;font-size: 12px;"><i class="fa fa-search"></i> 输入线路搜索线路</span>';  
198 - },  
199 - searching : function() {  
200 - return '<span style="color:gray;font-size: 12px;"> 正在搜索线路...</span>';  
201 - }  
202 - }  
203 - }); 178 +
204 $("#query").on("click",function(){ 179 $("#query").on("click",function(){
205 var line = $("#line").val(); 180 var line = $("#line").val();
206 var xlName = $("#select2-line-container").html(); 181 var xlName = $("#select2-line-container").html();
src/main/resources/static/pages/forms/statement/vehicleloading.html
@@ -82,44 +82,19 @@ @@ -82,44 +82,19 @@
82 locale : 'zh-cn' 82 locale : 'zh-cn'
83 }); 83 });
84 84
85 - $('#line').select2({  
86 - ajax: {  
87 - url: '/realSchedule/findLine',  
88 - type: 'post',  
89 - dataType: 'json',  
90 - delay: 150,  
91 - data: function(params){  
92 - return{line: params.term};  
93 - },  
94 - processResults: function (data) {  
95 - return {  
96 - results: data  
97 - };  
98 - },  
99 - cache: true  
100 - },  
101 - templateResult: function(repo){  
102 - if (repo.loading) return repo.text;  
103 - var h = '<span>'+repo.text+'</span>';  
104 - return h;  
105 - },  
106 - escapeMarkup: function (markup) { return markup; },  
107 - minimumInputLength: 1,  
108 - templateSelection: function(repo){  
109 - return repo.text;  
110 - },  
111 - language: {  
112 - noResults: function(){  
113 - return '<span style="color:red;font-size: 12px;">没有搜索到线路!</span>';  
114 - },  
115 - inputTooShort : function(e) {  
116 - return '<span style="color:gray;font-size: 12px;"><i class="fa fa-search"></i> 输入线路搜索线路</span>';  
117 - },  
118 - searching : function() {  
119 - return '<span style="color:gray;font-size: 12px;"> 正在搜索线路...</span>';  
120 - }  
121 - }  
122 - }); 85 +
  86 + $.get('/basic/lineCode2Name',function(result){
  87 + var data=[];
  88 +
  89 + for(var code in result){
  90 + data.push({id: code, text: result[code]});
  91 + }
  92 + console.log(data);
  93 + initPinYinSelect2('#line',data,'');
  94 +
  95 + })
  96 +
  97 +
123 $('#lpName').select2({ 98 $('#lpName').select2({
124 ajax: { 99 ajax: {
125 url: '/realSchedule/findLpName', 100 url: '/realSchedule/findLpName',
src/main/resources/static/pages/forms/statement/waybill.html
@@ -96,7 +96,18 @@ @@ -96,7 +96,18 @@
96 locale : 'zh-cn' 96 locale : 'zh-cn'
97 }); 97 });
98 98
99 - $('#line').select2({ 99 + $.get('/basic/lineCode2Name',function(result){
  100 + var data=[];
  101 +
  102 + for(var code in result){
  103 + data.push({id: code, text: result[code]});
  104 + }
  105 + console.log(data);
  106 + initPinYinSelect2('#line',data,'');
  107 +
  108 + })
  109 +
  110 + /* $('#line').select2({
100 ajax: { 111 ajax: {
101 url: '/realSchedule/findLine', 112 url: '/realSchedule/findLine',
102 type: 'post', 113 type: 'post',
@@ -134,6 +145,7 @@ @@ -134,6 +145,7 @@
134 } 145 }
135 } 146 }
136 }); 147 });
  148 + */
137 149
138 var date = ''; 150 var date = '';
139 $("#query").on("click",function(){ 151 $("#query").on("click",function(){
src/main/resources/static/pages/forms/statement/waybillday.html
@@ -79,45 +79,16 @@ @@ -79,45 +79,16 @@
79 locale : 'zh-cn' 79 locale : 'zh-cn'
80 }); 80 });
81 81
82 - $('#line').select2({  
83 - ajax: {  
84 - url: '/realSchedule/findLine',  
85 - type: 'post',  
86 - dataType: 'json',  
87 - delay: 150,  
88 - data: function(params){  
89 - return{line: params.term};  
90 - },  
91 - processResults: function (data) {  
92 - return {  
93 - results: data  
94 - };  
95 - },  
96 - cache: true  
97 - },  
98 - templateResult: function(repo){  
99 - if (repo.loading) return repo.text;  
100 - var h = '<span>'+repo.text+'</span>';  
101 - return h;  
102 - },  
103 - escapeMarkup: function (markup) { return markup; },  
104 - minimumInputLength: 1,  
105 - templateSelection: function(repo){  
106 - return repo.text;  
107 - },  
108 - language: {  
109 - noResults: function(){  
110 - return '<span style="color:red;font-size: 12px;">没有搜索到线路!</span>';  
111 - },  
112 - inputTooShort : function(e) {  
113 - return '<span style="color:gray;font-size: 12px;"><i class="fa fa-search"></i> 输入线路搜索线路</span>';  
114 - },  
115 - searching : function() {  
116 - return '<span style="color:gray;font-size: 12px;"> 正在搜索线路...</span>';  
117 - }  
118 - }  
119 - });  
120 - 82 + $.get('/basic/lineCode2Name',function(result){
  83 + var data=[];
  84 +
  85 + for(var code in result){
  86 + data.push({id: code, text: result[code]});
  87 + }
  88 + console.log(data);
  89 + initPinYinSelect2('#line',data,'');
  90 +
  91 + })
121 var line; 92 var line;
122 var date; 93 var date;
123 $("#query").on("click",function(){ 94 $("#query").on("click",function(){
src/main/resources/static/pages/permission/role/companyAuthority.html
1 -<style>  
2 - .cmpy-auth-card {  
3 - width: 760px;  
4 - background: #fff;  
5 - margin: auto;  
6 - padding: 15px;  
7 - box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);  
8 - }  
9 -  
10 - .cmpy-auth-card .yunyin-company-panel:last-child {  
11 - border-bottom: none;  
12 - padding-bottom: 0px;  
13 - }  
14 -  
15 - .yunyin-company-panel {  
16 - border-bottom: 1px solid #e9e5e5;  
17 - padding-bottom: 5px;  
18 -  
19 - user-select:none;  
20 - }  
21 -  
22 - .yunyin-company-panel .company {  
23 - font-size: 13px;  
24 - }  
25 -  
26 - .yunyin-company-panel .sub-company {  
27 - display: inline-block;  
28 - text-align: center;  
29 - padding: 5px 15px;  
30 - border-radius: 5px !important;  
31 - color: #5d5c5c;  
32 - font-size: 13px;  
33 - background: linear-gradient(to bottom, #fafafa, #eeeeee);  
34 - cursor: pointer;  
35 - border: 1px solid #eeeeee;  
36 - }  
37 -  
38 - .yunyin-company-panel .sub-company.active {  
39 - background: linear-gradient(to bottom, #2ab4c0, #229ea9);  
40 - color: #fdfdfd;  
41 - }  
42 -</style>  
43 -  
44 -<div id="roleCompanyAuthority">  
45 -  
46 - <div class="page-head">  
47 - <div class="page-title">  
48 - <h1>模块配置</h1>  
49 - </div>  
50 - </div>  
51 -  
52 - <ul class="page-breadcrumb breadcrumb">  
53 - <li><a href="/pages/home.html" data-pjax>首页</a> <i  
54 - class="fa fa-circle"></i></li>  
55 - <li><span class="active">权限管理</span> <i class="fa fa-circle"></i></li>  
56 - <li><a href="list.html" data-pjax>角色管理</a> <i class="fa fa-circle"></i></li>  
57 - <li><span class="active">分公司数据权限</span></li>  
58 - </ul>  
59 -  
60 - <div class="cmpy-auth-card">  
61 -  
62 - <h4>角色信息</h4>  
63 - <table class="table">  
64 - <tr>  
65 - <td>  
66 - 代码:<span id="roleCode"></span>  
67 - </td>  
68 - <td>  
69 - 名称:<span id="roleName"></span>  
70 - </td>  
71 - </tr>  
72 - </table>  
73 - </div>  
74 - <br><br>  
75 - <div class="cmpy-auth-card cmpy-list">  
76 - </div>  
77 -  
78 - <div class="cmpy-auth-card" style="text-align: right;">  
79 - <button type="button" class="btn btn-default">返回</button>&nbsp;  
80 - <button type="button" class="btn btn-primary saveBtn" ><i class="fa fa-check"></i>保存</button>  
81 - </div>  
82 -  
83 - <script id="role-company-authority-temp" type="text/html">  
84 - {{each list as obj i}}  
85 - <div class="yunyin-company-panel">  
86 - <h5 class="company">{{obj.name}}</h5>  
87 - {{each obj.childs as fgs i}}  
88 - <div class="sub-company" data-company="{{obj.name}}" data-id="{{fgs.upCode}}_{{fgs.businessCode}}">{{fgs.businessName}}</div>  
89 - {{/each}}  
90 - </div>  
91 - {{/each}}  
92 - </script>  
93 -  
94 -</div>  
95 -  
96 -<script>  
97 -$(function () {  
98 - var id = $.url().param('no')  
99 - ,roleObj;  
100 -  
101 - if(!id){  
102 - alert('缺少主键');  
103 - }  
104 - else{  
105 - $.get('/role/'+id , function(obj){  
106 - $('#roleCompanyAuthority #roleCode').text(obj.codeName);  
107 - $('#roleCompanyAuthority #roleName').text(obj.roleName);  
108 - });  
109 - }  
110 -  
111 -  
112 - $.get('/business/all', function (rs) {  
113 - var baseCode;  
114 - //找到跟节点  
115 - $.each(rs, function () {  
116 - if(this.upCode == 0){  
117 - baseCode=this.businessCode;  
118 - return false;  
119 - }  
120 - });  
121 - if(!baseCode){  
122 - alert('大爷找不到跟节点,数据有问题吧!!!');  
123 - return;  
124 - }  
125 - //提取二级节点  
126 - var secondMap={};  
127 - $.each(rs, function () {  
128 - if(this.upCode==baseCode){  
129 - secondMap[this.businessCode] = {  
130 - name: this.businessName,  
131 - childs: []  
132 - };  
133 - }  
134 - });  
135 - //分公司节点  
136 - $.each(rs, function () {  
137 - if(secondMap[this.upCode])  
138 - secondMap[this.upCode].childs.push(this);  
139 - });  
140 -  
141 - //排序  
142 - for(var sid in secondMap){  
143 - secondMap[sid].childs.sort(naturalSort);  
144 - }  
145 -  
146 - var htmlStr=template('role-company-authority-temp', {list: get_vals(secondMap)});  
147 - $('#roleCompanyAuthority .cmpy-list').html(htmlStr);  
148 -  
149 - //查询公司权限信息  
150 - $get('/companyAuthority/all', {roleId_eq: id}, function (rs) {  
151 - //console.log(rs);  
152 - var dataId;  
153 - $.each(rs, function () {  
154 - dataId=this.companyCode+'_'+this.subCompanyCode;  
155 - $('.cmpy-list div.sub-company[data-id='+dataId+']').addClass('active');  
156 - });  
157 - });  
158 - });  
159 -  
160 - $('#roleCompanyAuthority').on('click', '.cmpy-list .sub-company', function () {  
161 - if($(this).hasClass('active'))  
162 - $(this).removeClass('active');  
163 - else  
164 - $(this).addClass('active');  
165 - });  
166 -  
167 - var get_vals = function(json) {  
168 - var array = [];  
169 - for (var key in json) {  
170 - array.push(json[key]);  
171 - }  
172 -  
173 - return array;  
174 - }  
175 -  
176 - var naturalSort=function (a, b) {  
177 - return a.businessCode.localeCompare(b.businessCode);  
178 - }  
179 -  
180 - //保存  
181 - $('#roleCompanyAuthority .saveBtn').on('click', function () {  
182 - var ats=$('.cmpy-list div.sub-company.active', '#roleCompanyAuthority')  
183 - ,data=[];  
184 - var code;  
185 - $.each(ats, function () {  
186 - code = $(this).data('id').split('_');  
187 - data.push({  
188 - companyCode: code[0],  
189 - subCompanyCode: code[1],  
190 - companyName: $(this).data('company'),  
191 - subCompanyName: $(this).text()  
192 - });  
193 - });  
194 -  
195 - $post('/companyAuthority/save', {roleId: id, authJsonStr: JSON.stringify(data)}, function (rs) {  
196 - alert('保存成功!');  
197 - })  
198 - });  
199 -}); 1 +<style>
  2 + .cmpy-auth-card {
  3 + width: 760px;
  4 + background: #fff;
  5 + margin: auto;
  6 + padding: 15px;
  7 + box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  8 + }
  9 +
  10 + .cmpy-auth-card .yunyin-company-panel:last-child {
  11 + border-bottom: none;
  12 + padding-bottom: 0px;
  13 + }
  14 +
  15 + .yunyin-company-panel {
  16 + border-bottom: 1px solid #e9e5e5;
  17 + padding-bottom: 5px;
  18 +
  19 + user-select:none;
  20 + }
  21 +
  22 + .yunyin-company-panel .company {
  23 + font-size: 13px;
  24 + }
  25 +
  26 + .yunyin-company-panel .sub-company {
  27 + display: inline-block;
  28 + text-align: center;
  29 + padding: 5px 15px;
  30 + border-radius: 5px !important;
  31 + color: #5d5c5c;
  32 + font-size: 13px;
  33 + background: linear-gradient(to bottom, #fafafa, #eeeeee);
  34 + cursor: pointer;
  35 + border: 1px solid #eeeeee;
  36 + }
  37 +
  38 + .yunyin-company-panel .sub-company.active {
  39 + background: linear-gradient(to bottom, #2ab4c0, #229ea9);
  40 + color: #fdfdfd;
  41 + }
  42 +</style>
  43 +
  44 +<div id="roleCompanyAuthority">
  45 +
  46 + <div class="page-head">
  47 + <div class="page-title">
  48 + <h1>模块配置</h1>
  49 + </div>
  50 + </div>
  51 +
  52 + <ul class="page-breadcrumb breadcrumb">
  53 + <li><a href="/pages/home.html" data-pjax>首页</a> <i
  54 + class="fa fa-circle"></i></li>
  55 + <li><span class="active">权限管理</span> <i class="fa fa-circle"></i></li>
  56 + <li><a href="list.html" data-pjax>角色管理</a> <i class="fa fa-circle"></i></li>
  57 + <li><span class="active">分公司数据权限</span></li>
  58 + </ul>
  59 +
  60 + <div class="cmpy-auth-card">
  61 +
  62 + <h4>角色信息</h4>
  63 + <table class="table">
  64 + <tr>
  65 + <td>
  66 + 代码:<span id="roleCode"></span>
  67 + </td>
  68 + <td>
  69 + 名称:<span id="roleName"></span>
  70 + </td>
  71 + </tr>
  72 + </table>
  73 + </div>
  74 + <br><br>
  75 + <div class="cmpy-auth-card cmpy-list">
  76 + </div>
  77 +
  78 + <div class="cmpy-auth-card" style="text-align: right;">
  79 + <button type="button" class="btn btn-default">返回</button>&nbsp;
  80 + <button type="button" class="btn btn-primary saveBtn" ><i class="fa fa-check"></i>保存</button>
  81 + </div>
  82 +
  83 + <script id="role-company-authority-temp" type="text/html">
  84 + {{each list as obj i}}
  85 + <div class="yunyin-company-panel">
  86 + <h5 class="company">{{obj.name}}</h5>
  87 + {{each obj.childs as fgs i}}
  88 + <div class="sub-company" data-company="{{obj.name}}" data-id="{{fgs.upCode}}_{{fgs.businessCode}}">{{fgs.businessName}}</div>
  89 + {{/each}}
  90 + </div>
  91 + {{/each}}
  92 + </script>
  93 +
  94 +</div>
  95 +
  96 +<script>
  97 +$(function () {
  98 + var id = $.url().param('no')
  99 + ,roleObj;
  100 +
  101 + if(!id){
  102 + alert('缺少主键');
  103 + }
  104 + else{
  105 + $.get('/role/'+id , function(obj){
  106 + $('#roleCompanyAuthority #roleCode').text(obj.codeName);
  107 + $('#roleCompanyAuthority #roleName').text(obj.roleName);
  108 + });
  109 + }
  110 +
  111 +
  112 + $.get('/business/all', function (rs) {
  113 + var baseCode;
  114 + //找到跟节点
  115 + $.each(rs, function () {
  116 + if(this.upCode == 0){
  117 + baseCode=this.businessCode;
  118 + return false;
  119 + }
  120 + });
  121 + if(!baseCode){
  122 + alert('大爷找不到跟节点,数据有问题吧!!!');
  123 + return;
  124 + }
  125 + //提取二级节点
  126 + var secondMap={};
  127 + $.each(rs, function () {
  128 + if(this.upCode==baseCode){
  129 + secondMap[this.businessCode] = {
  130 + name: this.businessName,
  131 + childs: []
  132 + };
  133 + }
  134 + });
  135 + //分公司节点
  136 + $.each(rs, function () {
  137 + if(secondMap[this.upCode])
  138 + secondMap[this.upCode].childs.push(this);
  139 + });
  140 +
  141 + //排序
  142 + for(var sid in secondMap){
  143 + secondMap[sid].childs.sort(naturalSort);
  144 + }
  145 +
  146 + var htmlStr=template('role-company-authority-temp', {list: get_vals(secondMap)});
  147 + $('#roleCompanyAuthority .cmpy-list').html(htmlStr);
  148 +
  149 + //查询公司权限信息
  150 + $get('/companyAuthority/all', {roleId_eq: id}, function (rs) {
  151 + //console.log(rs);
  152 + var dataId;
  153 + $.each(rs, function () {
  154 + dataId=this.companyCode+'_'+this.subCompanyCode;
  155 + $('.cmpy-list div.sub-company[data-id='+dataId+']').addClass('active');
  156 + });
  157 + });
  158 + });
  159 +
  160 + $('#roleCompanyAuthority').on('click', '.cmpy-list .sub-company', function () {
  161 + if($(this).hasClass('active'))
  162 + $(this).removeClass('active');
  163 + else
  164 + $(this).addClass('active');
  165 + });
  166 +
  167 + var get_vals = function(json) {
  168 + var array = [];
  169 + for (var key in json) {
  170 + array.push(json[key]);
  171 + }
  172 +
  173 + return array;
  174 + }
  175 +
  176 + var naturalSort=function (a, b) {
  177 + return a.businessCode.localeCompare(b.businessCode);
  178 + }
  179 +
  180 + //保存
  181 + $('#roleCompanyAuthority .saveBtn').on('click', function () {
  182 + var ats=$('.cmpy-list div.sub-company.active', '#roleCompanyAuthority')
  183 + ,data=[];
  184 + var code;
  185 + $.each(ats, function () {
  186 + code = $(this).data('id').split('_');
  187 + data.push({
  188 + companyCode: code[0],
  189 + subCompanyCode: code[1],
  190 + companyName: $(this).data('company'),
  191 + subCompanyName: $(this).text()
  192 + });
  193 + });
  194 +
  195 + $post('/companyAuthority/save', {roleId: id, authJsonStr: JSON.stringify(data)}, function (rs) {
  196 + alert('保存成功!');
  197 + })
  198 + });
  199 +});
200 </script> 200 </script>
201 \ No newline at end of file 201 \ No newline at end of file
src/main/resources/static/pages/report/inoutstation.html
@@ -169,44 +169,17 @@ @@ -169,44 +169,17 @@
169 locale : 'zh-cn' 169 locale : 'zh-cn'
170 }); 170 });
171 171
172 - $('#line').select2({  
173 - ajax: {  
174 - url: '/realSchedule/findLine',  
175 - type: 'post',  
176 - dataType: 'json',  
177 - delay: 150,  
178 - data: function(params){  
179 - return{line: params.term};  
180 - },  
181 - processResults: function (data) {  
182 - return {  
183 - results: data  
184 - };  
185 - },  
186 - cache: true  
187 - },  
188 - templateResult: function(repo){  
189 - if (repo.loading) return repo.text;  
190 - var h = '<span>'+repo.text+'</span>';  
191 - return h;  
192 - },  
193 - escapeMarkup: function (markup) { return markup; },  
194 - minimumInputLength: 1,  
195 - templateSelection: function(repo){  
196 - return repo.text;  
197 - },  
198 - language: {  
199 - noResults: function(){  
200 - return '<span style="color:red;font-size: 12px;">没有搜索到线路!</span>';  
201 - },  
202 - inputTooShort : function(e) {  
203 - return '<span style="color:gray;font-size: 12px;"><i class="fa fa-search"></i> 输入线路搜索线路</span>';  
204 - },  
205 - searching : function() {  
206 - return '<span style="color:gray;font-size: 12px;"> 正在搜索线路...</span>';  
207 - } 172 +
  173 + $.get('/basic/lineCode2Name',function(result){
  174 + var data=[];
  175 +
  176 + for(var code in result){
  177 + data.push({id: code, text: result[code]});
208 } 178 }
209 - }); 179 + console.log(data);
  180 + initPinYinSelect2('#line',data,'');
  181 +
  182 + })
210 183
211 184
212 $("#query").on("click",function(){ 185 $("#query").on("click",function(){
src/main/resources/static/pages/report/message/message.html
@@ -112,44 +112,16 @@ @@ -112,44 +112,16 @@
112 $("#date").val(year + "-0" + month + "-" + day); 112 $("#date").val(year + "-0" + month + "-" + day);
113 } 113 }
114 114
115 - $('#line').select2({  
116 - ajax: {  
117 - url: '/realSchedule/findLine',  
118 - type: 'post',  
119 - dataType: 'json',  
120 - delay: 150,  
121 - data: function(params){  
122 - return{line: params.term};  
123 - },  
124 - processResults: function (data) {  
125 - return {  
126 - results: data  
127 - };  
128 - },  
129 - cache: true  
130 - },  
131 - templateResult: function(repo){  
132 - if (repo.loading) return repo.text;  
133 - var h = '<span>'+repo.text+'</span>';  
134 - return h;  
135 - },  
136 - escapeMarkup: function (markup) { return markup; },  
137 - minimumInputLength: 1,  
138 - templateSelection: function(repo){  
139 - return repo.text;  
140 - },  
141 - language: {  
142 - noResults: function(){  
143 - return '<span style="color:red;font-size: 12px;">没有搜索到线路!</span>';  
144 - },  
145 - inputTooShort : function(e) {  
146 - return '<span style="color:gray;font-size: 12px;"><i class="fa fa-search"></i> 输入线路搜索线路</span>';  
147 - },  
148 - searching : function() {  
149 - return '<span style="color:gray;font-size: 12px;"> 正在搜索线路...</span>';  
150 - } 115 + $.get('/basic/lineCode2Name',function(result){
  116 + var data=[];
  117 +
  118 + for(var code in result){
  119 + data.push({id: code, text: result[code]});
151 } 120 }
152 - }); 121 + console.log(data);
  122 + initPinYinSelect2('#line',data,'');
  123 +
  124 + })
153 $('#code').select2({ 125 $('#code').select2({
154 ajax: { 126 ajax: {
155 url: '/realSchedule/sreachVehic', 127 url: '/realSchedule/sreachVehic',
src/main/resources/static/pages/report/oil/oilListMonth.html
@@ -103,44 +103,16 @@ @@ -103,44 +103,16 @@
103 $("#date").val(year + "-0" + month + "-" + day); 103 $("#date").val(year + "-0" + month + "-" + day);
104 } 104 }
105 105
106 - $('#line').select2({  
107 - ajax: {  
108 - url: '/realSchedule/findLine',  
109 - dataType: 'json',  
110 - delay: 150,  
111 - data: function(params){  
112 - return{line: params.term};  
113 - },  
114 - processResults: function (data) {  
115 - return {  
116 - results: data  
117 - };  
118 - },  
119 - cache: true  
120 - },  
121 - templateResult: function(repo){  
122 - if (repo.loading) return repo.text;  
123 - var h = '<span>'+repo.text+'</span>';  
124 - return h;  
125 - },  
126 - escapeMarkup: function (markup) { return markup; },  
127 - minimumInputLength: 1,  
128 - templateSelection: function(repo){  
129 - return repo.text;  
130 - },  
131 - language: {  
132 - noResults: function(){  
133 - return '<span style="color:red;font-size: 12px;">没有搜索到线路!</span>';  
134 - },  
135 - inputTooShort : function(e) {  
136 - return '<span style="color:gray;font-size: 12px;"><i class="fa fa-search"></i> 输入线路搜索线路</span>';  
137 - },  
138 - searching : function() {  
139 - return '<span style="color:gray;font-size: 12px;"> 正在搜索线路...</span>';  
140 - }  
141 - }  
142 - });  
143 - 106 + $.get('/basic/lineCode2Name',function(result){
  107 + var data=[];
  108 +
  109 + for(var code in result){
  110 + data.push({id: code, text: result[code]});
  111 + }
  112 + console.log(data);
  113 + initPinYinSelect2('#line',data,'');
  114 +
  115 + })
144 //查询 116 //查询
145 $("#query").on('click',function(){ 117 $("#query").on('click',function(){
146 var line = $("#line").val(); 118 var line = $("#line").val();
src/main/resources/static/pages/scheduleApp/module/common/prj-common-globalservice.js
@@ -96,6 +96,25 @@ angular.module(&#39;ScheduleApp&#39;).factory(&#39;BusInfoManageService_g&#39;, [&#39;$resource&#39;, fu @@ -96,6 +96,25 @@ angular.module(&#39;ScheduleApp&#39;).factory(&#39;BusInfoManageService_g&#39;, [&#39;$resource&#39;, fu
96 } 96 }
97 } 97 }
98 ), 98 ),
  99 + import: $resource(
  100 + '/cars/importfile',
  101 + {},
  102 + {
  103 + do: {
  104 + method: 'POST',
  105 + headers: {
  106 + 'Content-Type': 'application/x-www-form-urlencoded'
  107 + },
  108 + transformRequest: function(obj) {
  109 + var str = [];
  110 + for (var p in obj) {
  111 + str.push(encodeURIComponent(p) + "=" + encodeURIComponent(obj[p]));
  112 + }
  113 + return str.join("&");
  114 + }
  115 + }
  116 + }
  117 + ),
99 validate: $resource( 118 validate: $resource(
100 '/cars/validate/:type', 119 '/cars/validate/:type',
101 {}, 120 {},
src/main/resources/static/real_control_v2/js/data/data_gps.js
@@ -3,7 +3,7 @@ @@ -3,7 +3,7 @@
3 var gb_data_gps = (function() { 3 var gb_data_gps = (function() {
4 4
5 //fixed time refresh delay 5 //fixed time refresh delay
6 - var delay = 1000 * 80; 6 + var delay = 1000 * 7;
7 //deviceId ——> gps 7 //deviceId ——> gps
8 var realData = {}; 8 var realData = {};
9 //refresh after callback 9 //refresh after callback
src/main/resources/static/real_control_v2/js/main.js
@@ -58,7 +58,7 @@ var gb_main_ep = new EventProxy(), @@ -58,7 +58,7 @@ var gb_main_ep = new EventProxy(),
58 }); 58 });
59 59
60 //嵌入地图页面 60 //嵌入地图页面
61 - $('li.map-panel','#main-tab-content').load('/real_control_v2/mapmonitor/real.html'); 61 + $('li.map-panel','#main-tab-content').load('/real_control_v2/mapmonitor/real.html');
62 }); 62 });
63 63
64 function g_emit(id) { 64 function g_emit(id) {
src/main/resources/static/real_control_v2/mapmonitor/css/real.css
@@ -305,4 +305,19 @@ @@ -305,4 +305,19 @@
305 left: 50%; 305 left: 50%;
306 transform: translate(-50%, -50%); 306 transform: translate(-50%, -50%);
307 -webkit-transform: translate(-50%, -50%); 307 -webkit-transform: translate(-50%, -50%);
  308 +}
  309 +
  310 +#tcWrap.maplibTc{
  311 + display: none;
  312 +}
  313 +
  314 +.real_spatial_panel{
  315 + position: absolute;
  316 + width: 300px;
  317 + height: 500px;
  318 + top: 5px;
  319 + left: 5px;
  320 + background: rgba(255, 255, 255, 0.98);
  321 + box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  322 + display: none;
308 } 323 }
309 \ No newline at end of file 324 \ No newline at end of file
src/main/resources/static/real_control_v2/mapmonitor/fragments/map_config.html
@@ -4,16 +4,16 @@ @@ -4,16 +4,16 @@
4 <div class="uk-form-row"> 4 <div class="uk-form-row">
5 <span class="uk-form-label">图层</span> 5 <span class="uk-form-label">图层</span>
6 <div class="uk-form-controls"> 6 <div class="uk-form-controls">
7 - <label><input type="radio" name="map_type" {{if map_type=='baidu'}}checked{{/if}}> 百度</label>  
8 - <label><input type="radio" name="map_type" {{if map_type=='gaode'}}checked{{/if}}> 高德</label>  
9 - <label><input type="checkbox" name="map_type" {{if traffic}}checked{{/if}}> 实时路况</label> 7 + <label><input type="radio" value="baidu" name="map_type" {{if map_type=='baidu'}}checked{{/if}}> 百度</label>
  8 + <label><input type="radio" value="gaode" name="map_type" {{if map_type=='gaode'}}checked{{/if}}> 高德</label>
  9 + <label><input type="checkbox" name="traffic" {{if traffic}}checked{{/if}}> 实时路况</label>
10 </div> 10 </div>
11 </div> 11 </div>
12 12
13 <div class="uk-form-row"> 13 <div class="uk-form-row">
14 <span class="uk-form-label">空间数据</span> 14 <span class="uk-form-label">空间数据</span>
15 <div class="uk-form-controls"> 15 <div class="uk-form-controls">
16 - <label><input type="checkbox" {{if spatialData.station}}checked{{/if}}> 站点</label> 16 + <label><input type="checkbox" name="spatial_data_station" {{if spatialData.station}}checked{{/if}}> 站点</label>
17 <label><input type="checkbox" {{if spatialData.electronicFence}}checked{{/if}}> 电子围栏</label> 17 <label><input type="checkbox" {{if spatialData.electronicFence}}checked{{/if}}> 电子围栏</label>
18 <label><input type="checkbox" {{if spatialData.carPark}}checked{{/if}}> 停车场</label> 18 <label><input type="checkbox" {{if spatialData.carPark}}checked{{/if}}> 停车场</label>
19 </div> 19 </div>
@@ -42,21 +42,21 @@ @@ -42,21 +42,21 @@
42 <div class="color_block"> 42 <div class="color_block">
43 上行 43 上行
44 <div class="sp-placeholder"> 44 <div class="sp-placeholder">
45 - <div class="sp-placeholder-color" style="background: {{carIcon.color.up}}"></div> 45 + <div class="sp-placeholder-color" data-name="carIcon.color.up" style="background: {{carIcon.color.up}}"></div>
46 </div> 46 </div>
47 </div> 47 </div>
48 48
49 <div class="color_block"> 49 <div class="color_block">
50 下行 50 下行
51 <div class="sp-placeholder"> 51 <div class="sp-placeholder">
52 - <div class="sp-placeholder-color" style="background: {{carIcon.color.down}}"></div> 52 + <div class="sp-placeholder-color" data-name="carIcon.color.down" style="background: {{carIcon.color.down}}"></div>
53 </div> 53 </div>
54 </div> 54 </div>
55 55
56 <div class="color_block"> 56 <div class="color_block">
57 非营运 57 非营运
58 <div class="sp-placeholder"> 58 <div class="sp-placeholder">
59 - <div class="sp-placeholder-color" style="background: {{carIcon.color.nonOperation}}"></div> 59 + <div class="sp-placeholder-color" data-name="carIcon.color.nonOperation" style="background: {{carIcon.color.nonOperation}}"></div>
60 </div> 60 </div>
61 </div> 61 </div>
62 </div> 62 </div>
@@ -68,14 +68,14 @@ @@ -68,14 +68,14 @@
68 <div class="color_block"> 68 <div class="color_block">
69 上行 69 上行
70 <div class="sp-placeholder"> 70 <div class="sp-placeholder">
71 - <div class="sp-placeholder-color" style="background: {{section.color.up}}"></div> 71 + <div class="sp-placeholder-color" data-name="section.color.up" style="background: {{section.color.up}}"></div>
72 </div> 72 </div>
73 </div> 73 </div>
74 74
75 <div class="color_block"> 75 <div class="color_block">
76 下行 76 下行
77 <div class="sp-placeholder"> 77 <div class="sp-placeholder">
78 - <div class="sp-placeholder-color" style="background: {{section.color.down}}"></div> 78 + <div class="sp-placeholder-color" data-name="section.color.down" style="background: {{section.color.down}}"></div>
79 </div> 79 </div>
80 </div> 80 </div>
81 </div> 81 </div>
@@ -85,3 +85,4 @@ @@ -85,3 +85,4 @@
85 </form> 85 </form>
86 </script> 86 </script>
87 </div> 87 </div>
  88 +<!-- 1111 -->
88 \ No newline at end of file 89 \ No newline at end of file
src/main/resources/static/real_control_v2/mapmonitor/fragments/map_infowindow.html
1 <div> 1 <div>
2 <script id="map-win-gps-detail-temp" type="text/html"> 2 <script id="map-win-gps-detail-temp" type="text/html">
3 - <div class="gps_info_win">  
4 - <h5 style="color:#0E6AF9;">  
5 - {{if stationName!=null}} 3 + <div class="gps_info_win" >
  4 + <h4>{{nbbm}}</h4>
  5 + <h5>
  6 + {{lineName}}
  7 + ({{if stationName!=null}}
6 {{stationName}} 8 {{stationName}}
7 {{else}} 9 {{else}}
8 未知站点 10 未知站点
9 - {{/if}} 11 + {{/if}})
10 </h5> 12 </h5>
11 - <h4 style="margin: 5px 0 5px 0;">  
12 - <span style="color: #0E6AF9;">{{nbbm}}</span>  
13 - </h4>  
14 - <p>  
15 - 营运状态:{{if state==0}}营运{{else}}非营运{{/if}}  
16 - </p>  
17 - <p>  
18 - 走向:{{if upDown==0}}上行{{else if upDown==1}}下行{{else}}未知走向{{/if}}  
19 - </p>  
20 <p>速度:{{speed}}</p> 13 <p>速度:{{speed}}</p>
  14 + <p>角度:{{direction}}</p>
21 <p>经度:{{lon}}</p> 15 <p>经度:{{lon}}</p>
22 <p>纬度:{{lat}}</p> 16 <p>纬度:{{lat}}</p>
23 17
24 - <!--<p style="color: gray;">{{fromNow}} 更新</p>--> 18 + <p class="date-str">{{dateStr}}</p>
25 <hr> 19 <hr>
26 - <p>  
27 - {{if currSch!=null}}  
28 - 路牌:{{currSch.lpName}}  
29 - {{/if}}  
30 - </p>  
31 - <p class="banci-info">  
32 - {{if currSch!=null}}开往 {{currSch.zdzName}}{{/if}}  
33 - </p>  
34 - <p class="banci-info">  
35 - {{if nextSch!=null}}  
36 - 下一班{{nextSch.qdzName}} {{nextSch.fcsj}} 发车  
37 - {{/if}}  
38 - </p>  
39 - <a href="javascript:lineGroup.toPlayBack('{{nbbm}}', '{{lineId}}')" class="link_to_pback"  
40 - style="color:#006600;font-size:12px;">轨迹回放</a> 20 + {{if expectStopTime!=null}}
  21 + <a href="javascript:;" style="color: #07D;margin-right: 7px;">预计 {{expectStopTime}} 分钟到达终点</a>
  22 + {{/if}}
  23 + <a href="javascript:;" style="float: right;">轨迹回放</a>
41 </div> 24 </div>
42 </script> 25 </script>
43 </div> 26 </div>
  27 +<!-- 2222 -->
44 \ No newline at end of file 28 \ No newline at end of file
src/main/resources/static/real_control_v2/mapmonitor/js/config.js
1 /** 地图配置信息 */ 1 /** 地图配置信息 */
2 2
3 -var gb_map_config=(function () { 3 +var gb_map_config = (function () {
4 4
5 - var defaultConfig={ 5 + var defaultConfig = {
6 6
7 //地图类型 7 //地图类型
8 map_type: 'baidu', 8 map_type: 'baidu',
@@ -27,7 +27,7 @@ var gb_map_config=(function () { @@ -27,7 +27,7 @@ var gb_map_config=(function () {
27 nonOperation: 'rgba(136, 133, 133, 1)' 27 nonOperation: 'rgba(136, 133, 133, 1)'
28 } 28 }
29 }, 29 },
30 - section:{ 30 + section: {
31 color: { 31 color: {
32 up: 'blue', 32 up: 'blue',
33 down: 'red' 33 down: 'red'
@@ -42,12 +42,12 @@ var gb_map_config=(function () { @@ -42,12 +42,12 @@ var gb_map_config=(function () {
42 temps = gb_common.compileTempByDom(dom, {compress: true}); 42 temps = gb_common.compileTempByDom(dom, {compress: true});
43 43
44 //渲染表单 44 //渲染表单
45 - var formHtml=temps['map-config-form-temp'](defaultConfig); 45 + var formHtml = temps['map-config-form-temp'](defaultConfig);
46 $('.map_config_wrap').html(formHtml); 46 $('.map_config_wrap').html(formHtml);
47 47
48 //颜色选择器 48 //颜色选择器
49 $('.map_config_wrap .color_block .sp-placeholder .sp-placeholder-color').each(function () { 49 $('.map_config_wrap .color_block .sp-placeholder .sp-placeholder-color').each(function () {
50 - var c=$(this).css('background-color'); 50 + var c = $(this).css('background-color');
51 $(this).spectrum({ 51 $(this).spectrum({
52 color: c, 52 color: c,
53 showInput: true, 53 showInput: true,
@@ -73,57 +73,85 @@ var gb_map_config=(function () { @@ -73,57 +73,85 @@ var gb_map_config=(function () {
73 var configChangeHandler = function () { 73 var configChangeHandler = function () {
74 //console.log('configChangeHandler..',this); 74 //console.log('configChangeHandler..',this);
75 var name = $(this).attr('name') 75 var name = $(this).attr('name')
76 - ,val = $(this).attr('value'); 76 + , val = $(this).attr('value');
77 77
78 - if(!name) 78 + if (!name)
79 return; 79 return;
80 80
81 - handler[name] && handler[name](val); 81 + handler[name] && handler[name].call(this, val);
82 }; 82 };
83 83
84 - var handler={  
85 - map_type: changeMapType 84 + var handler = {
  85 + map_type: changeMapType,
  86 + traffic: trafficSwitch,
  87 + spatial_data_station: spatial_data_station
86 }; 88 };
87 89
88 //切换地图类型 90 //切换地图类型
89 function changeMapType(val) { 91 function changeMapType(val) {
  92 + //修改配置项
  93 + set('map_type', val);
  94 +
90 gb_map_imap.changeMap(val, function () { 95 gb_map_imap.changeMap(val, function () {
  96 + //重绘覆盖物
91 gb_map_overlay_mge.reDraw(); 97 gb_map_overlay_mge.reDraw();
  98 + setTimeout(function () {
  99 + //实时路况为打开状态
  100 + if (defaultConfig.traffic)
  101 + gb_map_imap.call('traffic', true);
  102 + }, 1000);
92 }); 103 });
93 } 104 }
94 105
95 - function recursion_get_attr(data, attr){ 106 + //实时路况
  107 + function trafficSwitch(val) {
  108 + //修改配置项
  109 + set('traffic', this.checked);
  110 + gb_map_imap.call('traffic', this.checked);
  111 + }
  112 +
  113 + //空间数据 站点
  114 + function spatial_data_station(val) {
  115 + defaultConfig.spatialData.station=this.checked;
  116 + gb_map_spatial_data.refresh();
  117 + }
  118 +
  119 + function recursion_get_attr(data, attr) {
96 var ats = attr.split('.'), 120 var ats = attr.split('.'),
97 val = data; 121 val = data;
98 122
99 $.each(ats, function (i, a) { 123 $.each(ats, function (i, a) {
100 - val=val[a]; 124 + val = val[a];
101 125
102 - if(!val) 126 + if (!val)
103 return false; 127 return false;
104 }); 128 });
105 129
106 return val; 130 return val;
107 } 131 }
108 - 132 +
109 function recursion_set_attr(data, attr, value) { 133 function recursion_set_attr(data, attr, value) {
110 var ats = attr.split('.'), 134 var ats = attr.split('.'),
111 tempVal = data 135 tempVal = data
112 - ,len = ats.length; 136 + , len = ats.length;
113 137
114 $.each(ats, function (i, a) { 138 $.each(ats, function (i, a) {
115 - if(i == len -1){ 139 + if (i == len - 1) {
116 tempVal[a] = value; 140 tempVal[a] = value;
117 return false; 141 return false;
118 } 142 }
119 else 143 else
120 - tempVal=tempVal[a]; 144 + tempVal = tempVal[a];
121 145
122 - if(!tempVal) 146 + if (!tempVal)
123 return false; 147 return false;
124 }); 148 });
125 } 149 }
126 150
  151 + function set(name, val) {
  152 + defaultConfig[name] = val;
  153 + }
  154 +
127 return { 155 return {
128 getConfig: function () { 156 getConfig: function () {
129 return defaultConfig; 157 return defaultConfig;
src/main/resources/static/real_control_v2/mapmonitor/js/map/iMap.js
@@ -24,20 +24,17 @@ var gb_map_imap = (function () { @@ -24,20 +24,17 @@ var gb_map_imap = (function () {
24 var oldMap = maps[currentMap].instance; 24 var oldMap = maps[currentMap].instance;
25 oldMap.destroy && oldMap.destroy(); 25 oldMap.destroy && oldMap.destroy();
26 //新地图 INIT 26 //新地图 INIT
27 - var text = maps[mapName].text; 27 + //var text = maps[mapName].text;
28 //layer.msg('正在切换到' + text + '...', {icon : 16,shade : [ 0.6, '#393D49' ],time : 0}); 28 //layer.msg('正在切换到' + text + '...', {icon : 16,shade : [ 0.6, '#393D49' ],time : 0});
29 var newMap = maps[mapName].instance; 29 var newMap = maps[mapName].instance;
30 - newMap.init(cb);  
31 30
32 currentMap = mapName; 31 currentMap = mapName;
  32 + newMap.init(cb);
33 } else 33 } else
34 alertErr('不存在的地图实例' + mapName); 34 alertErr('不存在的地图实例' + mapName);
35 }, 35 },
36 createCarIcon: createCarIcon, 36 createCarIcon: createCarIcon,
37 call: function (f, opts) { 37 call: function (f, opts) {
38 - if (f == 'init')  
39 - setText(maps[currentMap].text);  
40 -  
41 var instance = maps[currentMap].instance; 38 var instance = maps[currentMap].instance;
42 if (instance[f]) 39 if (instance[f])
43 instance[f](opts); 40 instance[f](opts);
src/main/resources/static/real_control_v2/mapmonitor/js/map/platform/baidu.js
@@ -11,6 +11,8 @@ var gb_map_baidu = (function(){ @@ -11,6 +11,8 @@ var gb_map_baidu = (function(){
11 11
12 var polylines={}; 12 var polylines={};
13 var buffAreas = {}; 13 var buffAreas = {};
  14 +
  15 + var ctrl;
14 var baiduInstance = { 16 var baiduInstance = {
15 //初始化 17 //初始化
16 init: function(cb){ 18 init: function(cb){
@@ -20,18 +22,17 @@ var gb_map_baidu = (function(){ @@ -20,18 +22,17 @@ var gb_map_baidu = (function(){
20 } 22 }
21 map = new BMap.Map($(gb_map_consts.mapContainer)[0]); 23 map = new BMap.Map($(gb_map_consts.mapContainer)[0]);
22 //中心点和缩放级别 24 //中心点和缩放级别
23 - map.centerAndZoom(new BMap.Point(gb_map_consts.center_point.lng, gb_map_consts.center_point.lat), 12); 25 + map.centerAndZoom(new BMap.Point(gb_map_consts.center_point.lng, gb_map_consts.center_point.lat), 13);
24 map.enableScrollWheelZoom(); 26 map.enableScrollWheelZoom();
25 27
26 -  
27 - 28 + cb && cb();
28 //window.localStorage.setItem('real_map', 'baidu'); 29 //window.localStorage.setItem('real_map', 'baidu');
29 30
30 // 路况控件 31 // 路况控件
31 -/* var ctrl = new BMapLib.TrafficControl(); 32 + ctrl = new BMapLib.TrafficControl();
32 map.addControl(ctrl); 33 map.addControl(ctrl);
33 34
34 - $(gb_map_consts.trafficBtn).on('click', function() { 35 + /*$(gb_map_consts.trafficBtn).on('click', function() {
35 if (traffVisible) { 36 if (traffVisible) {
36 ctrl.hide(); 37 ctrl.hide();
37 traffVisible = false; 38 traffVisible = false;
@@ -78,8 +79,16 @@ var gb_map_baidu = (function(){ @@ -78,8 +79,16 @@ var gb_map_baidu = (function(){
78 if(opt.hide) 79 if(opt.hide)
79 polyline.hide(); 80 polyline.hide();
80 map.addOverlay(polyline); 81 map.addOverlay(polyline);
81 - //居中  
82 - //centerToPolyline(polyline); 82 +
  83 + //延迟居中,避免多次调用时抖动
  84 + delayToCenter(pos[parseInt(pos.length / 2)]);
  85 + //map.panTo(pos[parseInt(pos.length / 2)]);
  86 + },
  87 + traffic: function (enable) {
  88 + if(enable)
  89 + ctrl.show();
  90 + else
  91 + ctrl.hide();
83 }, 92 },
84 //根据id 显示polyline 93 //根据id 显示polyline
85 refreshPolyline: function (opt) { 94 refreshPolyline: function (opt) {
@@ -212,9 +221,9 @@ var gb_map_baidu = (function(){ @@ -212,9 +221,9 @@ var gb_map_baidu = (function(){
212 } 221 }
213 222
214 var bd_gps_info_win_opts = { 223 var bd_gps_info_win_opts = {
215 - width : 190, 224 + width : 0,
216 height: 255, 225 height: 255,
217 - enableMessage:true 226 + enableMessage:false
218 }; 227 };
219 function createBDMarkerByGps(gpsData){ 228 function createBDMarkerByGps(gpsData){
220 229
@@ -239,7 +248,7 @@ var gb_map_baidu = (function(){ @@ -239,7 +248,7 @@ var gb_map_baidu = (function(){
239 } 248 }
240 249
241 //隐藏线路线条 250 //隐藏线路线条
242 - function hideLinePolyline(){ 251 +/* function hideLinePolyline(){
243 if(!linePolyline || linePolyline.length == 0) 252 if(!linePolyline || linePolyline.length == 0)
244 return; 253 return;
245 254
@@ -258,7 +267,7 @@ var gb_map_baidu = (function(){ @@ -258,7 +267,7 @@ var gb_map_baidu = (function(){
258 $.each(linePolyline, function(){ 267 $.each(linePolyline, function(){
259 this.setStrokeOpacity(0.5); 268 this.setStrokeOpacity(0.5);
260 }); 269 });
261 - } 270 + }*/
262 271
263 function moveMarker(m, gps){ 272 function moveMarker(m, gps){
264 m.setPosition(new BMap.Point(gps.bd_lon, gps.bd_lat)); 273 m.setPosition(new BMap.Point(gps.bd_lon, gps.bd_lat));
@@ -297,6 +306,15 @@ var gb_map_baidu = (function(){ @@ -297,6 +306,15 @@ var gb_map_baidu = (function(){
297 map.panTo(pos[parseInt(pos.length / 2)]); 306 map.panTo(pos[parseInt(pos.length / 2)]);
298 }*/ 307 }*/
299 308
  309 +
  310 + var c_delay = 300, c_point;
  311 + function delayToCenter(point) {
  312 + c_point = point;
  313 + setTimeout(function () {
  314 + map.panTo(c_point);
  315 + }, c_delay);
  316 + }
  317 +
300 //文件载入完毕 318 //文件载入完毕
301 mapmonitor_load_ep.emitLater('load_baidu'); 319 mapmonitor_load_ep.emitLater('load_baidu');
302 320
src/main/resources/static/real_control_v2/mapmonitor/js/map/platform/gaode.js
@@ -19,6 +19,7 @@ var gb_map_gaode = (function() { @@ -19,6 +19,7 @@ var gb_map_gaode = (function() {
19 var polylines={}; 19 var polylines={};
20 //实时路况是否显示 20 //实时路况是否显示
21 var traffVisible; 21 var traffVisible;
  22 + var trafficLayer;
22 var gaodeInstance = { 23 var gaodeInstance = {
23 init : function(cb) { 24 init : function(cb) {
24 var $mapCon = $(gb_map_consts.mapContainer); 25 var $mapCon = $(gb_map_consts.mapContainer);
@@ -28,7 +29,7 @@ var gb_map_gaode = (function() { @@ -28,7 +29,7 @@ var gb_map_gaode = (function() {
28 29
29 map = new AMap.Map($mapCon[0]); 30 map = new AMap.Map($mapCon[0]);
30 // 地图中心和缩放级别 31 // 地图中心和缩放级别
31 - map.setZoomAndCenter(14, [ gb_map_consts.center_point.lng, gb_map_consts.center_point.lat ]); 32 + map.setZoomAndCenter(13, [ gb_map_consts.center_point.lng, gb_map_consts.center_point.lat ]);
32 // 加载完成 33 // 加载完成
33 AMap.event.addListener(map, 'complete', function() { 34 AMap.event.addListener(map, 'complete', function() {
34 //window.localStorage.setItem('real_map', 'gaode'); 35 //window.localStorage.setItem('real_map', 'gaode');
@@ -38,11 +39,11 @@ var gb_map_gaode = (function() { @@ -38,11 +39,11 @@ var gb_map_gaode = (function() {
38 }); 39 });
39 40
40 // 实时路况图层 41 // 实时路况图层
41 - /*var trafficLayer = new AMap.TileLayer.Traffic(); 42 + trafficLayer = new AMap.TileLayer.Traffic();
42 trafficLayer.setMap(map); 43 trafficLayer.setMap(map);
43 trafficLayer.hide(); 44 trafficLayer.hide();
44 45
45 - $(gb_map_consts.trafficBtn).on('click', function() { 46 + /*$(gb_map_consts.trafficBtn).on('click', function() {
46 if (traffVisible) { 47 if (traffVisible) {
47 trafficLayer.hide(); 48 trafficLayer.hide();
48 traffVisible = false; 49 traffVisible = false;
@@ -67,6 +68,12 @@ var gb_map_gaode = (function() { @@ -67,6 +68,12 @@ var gb_map_gaode = (function() {
67 $('.mapTools').removeClass('gaode'); 68 $('.mapTools').removeClass('gaode');
68 $('.leftUtils').removeClass('gaode'); 69 $('.leftUtils').removeClass('gaode');
69 }, 70 },
  71 + traffic: function (enable) {
  72 + if(enable)
  73 + trafficLayer.show();
  74 + else
  75 + trafficLayer.hide();
  76 + },
70 clearAll: function () { 77 clearAll: function () {
71 realMarkers = {}; 78 realMarkers = {};
72 polylines={}; 79 polylines={};
@@ -88,7 +95,6 @@ var gb_map_gaode = (function() { @@ -88,7 +95,6 @@ var gb_map_gaode = (function() {
88 }); 95 });
89 96
90 opt.style.path=pos; 97 opt.style.path=pos;
91 - console.log('opt.style', opt.style);  
92 var polyline = new AMap.Polyline(opt.style); 98 var polyline = new AMap.Polyline(opt.style);
93 //根据ID保存映射 99 //根据ID保存映射
94 polylines[opt.id]=polyline; 100 polylines[opt.id]=polyline;
src/main/resources/static/real_control_v2/mapmonitor/js/map_overlay_manager.js
@@ -76,7 +76,7 @@ var gb_map_overlay_mge = (function () { @@ -76,7 +76,7 @@ var gb_map_overlay_mge = (function () {
76 76
77 showOverlayByChecks(); 77 showOverlayByChecks();
78 //显示路段 78 //显示路段
79 - showSection(gb_map_gps_tree.getChecked().filter(deviceFilter)); 79 + showSection(getCheckedDevice());
80 80
81 reDrawing = false; 81 reDrawing = false;
82 } 82 }
@@ -89,7 +89,7 @@ var gb_map_overlay_mge = (function () { @@ -89,7 +89,7 @@ var gb_map_overlay_mge = (function () {
89 89
90 90
91 var showOverlayByChecks = function () { 91 var showOverlayByChecks = function () {
92 - var chs = gb_map_gps_tree.getChecked().filter(deviceFilter),chsMap={}; 92 + var chs = getCheckedDevice(),chsMap={};
93 $.each(chs, function () { 93 $.each(chs, function () {
94 chsMap[this.a_attr.device]=true; 94 chsMap[this.a_attr.device]=true;
95 }); 95 });
@@ -106,6 +106,10 @@ var gb_map_overlay_mge = (function () { @@ -106,6 +106,10 @@ var gb_map_overlay_mge = (function () {
106 //打开信息窗口 106 //打开信息窗口
107 gb_map_imap.call('openWindow',{deviceId: deviceId}); 107 gb_map_imap.call('openWindow',{deviceId: deviceId});
108 }; 108 };
  109 +
  110 + function getCheckedDevice() {
  111 + return gb_map_gps_tree.getChecked().filter(deviceFilter);
  112 + }
109 return { 113 return {
110 init: init, 114 init: init,
111 refresh: showOverlayByChecks, 115 refresh: showOverlayByChecks,
@@ -113,6 +117,7 @@ var gb_map_overlay_mge = (function () { @@ -113,6 +117,7 @@ var gb_map_overlay_mge = (function () {
113 map_gps_win_temp: function (data) { 117 map_gps_win_temp: function (data) {
114 return temps['map-win-gps-detail-temp'](data); 118 return temps['map-win-gps-detail-temp'](data);
115 }, 119 },
116 - reDraw: reDraw 120 + reDraw: reDraw,
  121 + getCheckedDevice: getCheckedDevice
117 }; 122 };
118 })(); 123 })();
119 \ No newline at end of file 124 \ No newline at end of file
src/main/resources/static/real_control_v2/mapmonitor/js/real.js
@@ -9,7 +9,10 @@ var mapmonitor_load_ep = EventProxy.create(&#39;load_iMap&#39;, &#39;load_baidu&#39;, &#39;load_gaod @@ -9,7 +9,10 @@ var mapmonitor_load_ep = EventProxy.create(&#39;load_iMap&#39;, &#39;load_baidu&#39;, &#39;load_gaod
9 gb_map_config.init(); 9 gb_map_config.init();
10 10
11 //init tree 11 //init tree
12 - gb_map_gps_tree.init(gb_map_overlay_mge.init); 12 + gb_map_gps_tree.init(function () {
  13 + gb_map_overlay_mge.init();
  14 + gb_map_spatial_data.init();
  15 + });
13 16
14 $(".real_bottom_panel").resizable({ 17 $(".real_bottom_panel").resizable({
15 handles: { 18 handles: {
src/main/resources/static/real_control_v2/mapmonitor/js/spatial_data.js 0 → 100644
  1 +/** 空间数据 */
  2 +
  3 +var gb_map_spatial_data = (function () {
  4 +
  5 + var storage = window.localStorage;
  6 +
  7 + var activeLines = JSON.parse(storage.getItem('lineControlItems'));
  8 + var line_idx = (function () {
  9 + var str = '';
  10 + for (var i = 0, item; item = activeLines[i++];) {
  11 + str += (',' + item.lineCode);
  12 + }
  13 + return str.substr(1);
  14 + })();
  15 +
  16 + //线路站点路由数据
  17 + var lineStationArr;
  18 +
  19 +
  20 + var init = function () {
  21 + gb_common.$get('/realMap/stationSpatialData', {idx: line_idx}, function (rs) {
  22 + var list = rs.list;
  23 + //排序
  24 + list.sort(function (a, b) {
  25 + return a.stationRouteCode - b.stationRouteCode;
  26 + });
  27 + //按线路分组
  28 + var lineStationArr = gb_common.groupBy(list, 'lineCode');
  29 + //再按上下行分组
  30 + for (var lineCode in lineStationArr) {
  31 + lineStationArr[lineCode] = gb_common.groupBy(lineStationArr[lineCode], 'directions');
  32 + }
  33 +
  34 + refresh();
  35 + });
  36 + }
  37 +
  38 + var refresh = function () {
  39 + if(!triggerElem())
  40 + return;
  41 +
  42 + var chs = gb_map_overlay_mge.getCheckedDevice();
  43 + //要绘制的站点路由
  44 + var routes = {};
  45 + $.each(chs, function () {
  46 + routes[this.data.lineId+'_'+this.data.upDown]=1;
  47 + });
  48 +
  49 + console.log('chs', chs);
  50 + }
  51 +
  52 + var triggerElem = function () {
  53 + var config = gb_map_config.getConfig().spatialData
  54 + , elem = $('.real_spatial_panel');
  55 +
  56 + for (var att in config) {
  57 + if (config[att]) {
  58 + elem.show();
  59 + return true;
  60 + }
  61 + }
  62 + elem.hide();
  63 + return false;
  64 + }
  65 +
  66 + return {
  67 + refresh: refresh,
  68 + init: init
  69 + };
  70 +})();
0 \ No newline at end of file 71 \ No newline at end of file
src/main/resources/static/real_control_v2/mapmonitor/real.html
@@ -29,9 +29,13 @@ @@ -29,9 +29,13 @@
29 </div> 29 </div>
30 </div> 30 </div>
31 31
  32 +<div class="real_spatial_panel uk-animation-scale">
  33 +
  34 +</div>
32 35
33 <script src="/real_control_v2/mapmonitor/js/config.js"></script> 36 <script src="/real_control_v2/mapmonitor/js/config.js"></script>
34 <script src="/real_control_v2/mapmonitor/js/gps_tree.js"></script> 37 <script src="/real_control_v2/mapmonitor/js/gps_tree.js"></script>
  38 +<script src="/real_control_v2/mapmonitor/js/spatial_data.js"></script>
35 <script src="/real_control_v2/mapmonitor/js/map_overlay_manager.js"></script> 39 <script src="/real_control_v2/mapmonitor/js/map_overlay_manager.js"></script>
36 <script src="/real_control_v2/mapmonitor/js/real.js"></script> 40 <script src="/real_control_v2/mapmonitor/js/real.js"></script>
37 <script src="/real_control_v2/mapmonitor/js/map/iMap.js"></script> 41 <script src="/real_control_v2/mapmonitor/js/map/iMap.js"></script>