Commit 2b60874cf2c230b76cebb7e2fab10091b215a640
1 parent
2911e54c
PSM-12
Showing
7 changed files
with
5018 additions
and
4357 deletions
src/main/java/com/bsth/controller/BaseController2.java
| ... | ... | @@ -5,10 +5,13 @@ import com.bsth.common.ResponseCode; |
| 5 | 5 | import com.bsth.service.BaseService; |
| 6 | 6 | import com.bsth.service.schedule.utils.DataImportExportService; |
| 7 | 7 | import com.google.common.base.Splitter; |
| 8 | +import jxl.Sheet; | |
| 9 | +import jxl.Workbook; | |
| 8 | 10 | import org.springframework.beans.factory.annotation.Autowired; |
| 9 | 11 | import org.springframework.data.domain.Page; |
| 10 | 12 | import org.springframework.data.domain.PageRequest; |
| 11 | 13 | import org.springframework.data.domain.Sort; |
| 14 | +import org.springframework.util.CollectionUtils; | |
| 12 | 15 | import org.springframework.web.bind.annotation.*; |
| 13 | 16 | import org.springframework.web.multipart.MultipartFile; |
| 14 | 17 | |
| ... | ... | @@ -164,11 +167,24 @@ public class BaseController2<T, ID extends Serializable> { |
| 164 | 167 | */ |
| 165 | 168 | @RequestMapping(value = "/dataExport", method = RequestMethod.GET) |
| 166 | 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 | 175 | // 1、使用ktr转换获取输出文件 |
| 168 | 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 | 189 | System.out.println(outputfile.getName()); |
| 174 | 190 | String filePath = outputfile.getAbsolutePath(); |
| ... | ... | @@ -225,4 +241,52 @@ public class BaseController2<T, ID extends Serializable> { |
| 225 | 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 | 1 | package com.bsth.controller; |
| 2 | 2 | |
| 3 | +import com.bsth.common.ResponseCode; | |
| 3 | 4 | import com.bsth.entity.Cars; |
| 5 | +import com.bsth.service.schedule.utils.DataImportExportService; | |
| 4 | 6 | import com.bsth.service.schedule.utils.DataToolsProperties; |
| 5 | 7 | import org.springframework.beans.factory.annotation.Autowired; |
| 6 | 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 | 16 | import java.util.Map; |
| 10 | 17 | |
| 11 | 18 | /** |
| ... | ... | @@ -14,24 +21,12 @@ import java.util.Map; |
| 14 | 21 | @RestController |
| 15 | 22 | @RequestMapping("cars") |
| 16 | 23 | @EnableConfigurationProperties(DataToolsProperties.class) |
| 17 | -public class CarsController extends BaseController<Cars, Integer> { | |
| 24 | +public class CarsController extends BaseController2<Cars, Integer> { | |
| 18 | 25 | |
| 19 | 26 | @Autowired |
| 20 | 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<Cars, Integer> { |
| 44 | 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 | 84 | @Override |
| 48 | 85 | protected String getDataImportKtrClasspath() { |
| 49 | 86 | return dataToolsProperties.getCarsDatainputktr(); | ... | ... |
src/main/java/com/bsth/controller/schedule/TTInfoDetailController.java
| 1 | 1 | package com.bsth.controller.schedule; |
| 2 | 2 | |
| 3 | 3 | import com.bsth.common.ResponseCode; |
| 4 | -import com.bsth.controller.BaseController; | |
| 4 | +import com.bsth.controller.BaseController2; | |
| 5 | 5 | import com.bsth.entity.CarPark; |
| 6 | 6 | import com.bsth.entity.LineInformation; |
| 7 | 7 | import com.bsth.entity.StationRoute; |
| ... | ... | @@ -38,7 +38,7 @@ import java.util.regex.Pattern; |
| 38 | 38 | */ |
| 39 | 39 | @RestController |
| 40 | 40 | @RequestMapping("tidc") |
| 41 | -public class TTInfoDetailController extends BaseController<TTInfoDetail, Long> { | |
| 41 | +public class TTInfoDetailController extends BaseController2<TTInfoDetail, Long> { | |
| 42 | 42 | @Autowired |
| 43 | 43 | private TTInfoDetailService ttInfoDetailService; |
| 44 | 44 | @Autowired |
| ... | ... | @@ -56,53 +56,13 @@ public class TTInfoDetailController extends BaseController<TTInfoDetail, Long> { |
| 56 | 56 | @Autowired |
| 57 | 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 | 60 | * 1、上传Excel文件,返回文件全路径名,工作区名称列表。 |
| 83 | 61 | * @param file |
| 84 | 62 | * @return |
| 85 | 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 | 68 | * 2、验证sheet(以后放到规则引擎里去做)。 |
| ... | ... | @@ -441,21 +401,6 @@ public class TTInfoDetailController extends BaseController<TTInfoDetail, Long> { |
| 441 | 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 | 404 | @Override |
| 460 | 405 | public TTInfoDetail findById(@PathVariable("id") Long aLong) { |
| 461 | 406 | return ttInfoDetailRepository.findOneExtend(aLong); | ... | ... |
src/main/java/com/bsth/service/schedule/utils/DataImportExportService.java
src/main/java/com/bsth/service/schedule/utils/DataImportExportServiceImpl.java
| ... | ... | @@ -111,6 +111,31 @@ public class DataImportExportServiceImpl implements DataImportExportService, Ini |
| 111 | 111 | } |
| 112 | 112 | |
| 113 | 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 | 139 | public File fileDataOutput(String fileName, File ktrFile) throws Exception { |
| 115 | 140 | return fileDataOutput(fileName, ktrFile, null); |
| 116 | 141 | } | ... | ... |
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>/</directory> | |
| 11 | - <parameters> | |
| 12 | - <parameter> | |
| 13 | - <name>tempfilepath</name> | |
| 14 | - <default_value/> | |
| 15 | - <description>默认输出的文件路径名</description> | |
| 16 | - </parameter> | |
| 17 | - <parameter> | |
| 18 | - <name>ttid</name> | |
| 19 | - <default_value/> | |
| 20 | - <description>时刻表id</description> | |
| 21 | - </parameter> | |
| 22 | - <parameter> | |
| 23 | - <name>xlid</name> | |
| 24 | - <default_value/> | |
| 25 | - <description>线路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/07/11 21:45:05.041</created_date> | |
| 86 | - <modified_user>-</modified_user> | |
| 87 | - <modified_date>2016/07/11 21:45:05.041</modified_date> | |
| 88 | - <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA=</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>${v_db_ip}</server> | |
| 96 | - <type>MYSQL</type> | |
| 97 | - <access>Native</access> | |
| 98 | - <database>${v_db_dname}</database> | |
| 99 | - <port>3306</port> | |
| 100 | - <username>${v_db_uname}</username> | |
| 101 | - <password>${v_db_pwd}</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_公司_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_本机</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(本机)</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>表输入</from><to>过滤记录</to><enabled>Y</enabled> </hop> | |
| 255 | - <hop> <from>过滤记录</from><to>正常班次站点查询用数据</to><enabled>Y</enabled> </hop> | |
| 256 | - <hop> <from>过滤记录</from><to>进场出场班次查询用的数据</to><enabled>Y</enabled> </hop> | |
| 257 | - <hop> <from>正常班次站点查询用数据</from><to>查找起点站名称</to><enabled>Y</enabled> </hop> | |
| 258 | - <hop> <from>查找起点站名称</from><to>查找终点站名称</to><enabled>Y</enabled> </hop> | |
| 259 | - <hop> <from>查找终点站名称</from><to>字段选择</to><enabled>Y</enabled> </hop> | |
| 260 | - <hop> <from>进场出场班次查询用的数据</from><to>字段选择 2</to><enabled>Y</enabled> </hop> | |
| 261 | - <hop> <from>字段选择</from><to>排序记录</to><enabled>Y</enabled> </hop> | |
| 262 | - <hop> <from>字段选择 2</from><to>排序记录</to><enabled>Y</enabled> </hop> | |
| 263 | - <hop> <from>排序记录</from><to>计算发车站名</to><enabled>Y</enabled> </hop> | |
| 264 | - <hop> <from>计算发车站名</from><to>列转行</to><enabled>Y</enabled> </hop> | |
| 265 | - <hop> <from>列转行</from><to>去除字段</to><enabled>Y</enabled> </hop> | |
| 266 | - <hop> <from>去除字段</from><to>Excel输出</to><enabled>Y</enabled> </hop> | |
| 267 | - <hop> <from>获取变量</from><to>表输入</to><enabled>Y</enabled> </hop> | |
| 268 | - </order> | |
| 269 | - <step> | |
| 270 | - <name>Excel输出</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>${tempfilepath}</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>列转行</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>去除字段</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>字段选择</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>字段选择 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>排序记录</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>%%java.io.tmpdir%%</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>查找终点站名称</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>=</condition> | |
| 3990 | - <name2/> | |
| 3991 | - </key> | |
| 3992 | - <key> | |
| 3993 | - <name>xl_dir</name> | |
| 3994 | - <field>directions</field> | |
| 3995 | - <condition>=</condition> | |
| 3996 | - <name2/> | |
| 3997 | - </key> | |
| 3998 | - <key> | |
| 3999 | - <name>endZdType</name> | |
| 4000 | - <field>station_mark</field> | |
| 4001 | - <condition>=</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>查找起点站名称</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>=</condition> | |
| 4044 | - <name2/> | |
| 4045 | - </key> | |
| 4046 | - <key> | |
| 4047 | - <name>xl_dir</name> | |
| 4048 | - <field>directions</field> | |
| 4049 | - <condition>=</condition> | |
| 4050 | - <name2/> | |
| 4051 | - </key> | |
| 4052 | - <key> | |
| 4053 | - <name>startZdType</name> | |
| 4054 | - <field>station_mark</field> | |
| 4055 | - <condition>=</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>正常班次站点查询用数据</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>//Script here

var startZdType = 'B'; // 起点站站点类型标识别
var endZdType = 'E'; // 终点站站点类型标识</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>获取变量</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>${xlid}</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>${ttid}</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>表输入</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 
t.id as id
, g.lp_name as lp
, g.xl as xl
, qdz
, zdz
, tcc
, fcsj
, bc_type 
, bcs
, fcno
, xl_dir
, isfb
from bsth_c_s_ttinfo_detail t left join 
bsth_c_s_gbi g on t.lp = g.id 
where 
g.xl = ? and
t.ttinfo = ? 
order by t.bcs asc</sql> | |
| 4167 | - <limit>0</limit> | |
| 4168 | - <lookup>获取变量</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>计算发车站名</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>//Script here

var fczdName = null; // 发车站点名字
if (bc_type == "in") {
 fczdName = "进场";
} else if (bc_type == "out") {
 fczdName = "出场";
} else {
 fczdName = qdzName;
}</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>过滤记录</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>正常班次站点查询用数据</send_true_to> | |
| 4222 | -<send_false_to>进场出场班次查询用的数据</send_false_to> | |
| 4223 | - <compare> | |
| 4224 | -<condition> | |
| 4225 | - <negated>N</negated> | |
| 4226 | - <leftvalue>bc_type</leftvalue> | |
| 4227 | - <function>=</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>进场出场班次查询用的数据</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>//Script here

var qdzName = null; // 起点站名字
var zdzName = null; // 终点站名字</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>/</directory> | |
| 11 | + <parameters> | |
| 12 | + <parameter> | |
| 13 | + <name>tempfilepath</name> | |
| 14 | + <default_value>/Users/xu/resource/project_code/runtime_temp/bsth_control_u_d_files/temp/test</default_value> | |
| 15 | + <description>默认输出的文件路径名</description> | |
| 16 | + </parameter> | |
| 17 | + <parameter> | |
| 18 | + <name>ttid</name> | |
| 19 | + <default_value>63</default_value> | |
| 20 | + <description>时刻表id</description> | |
| 21 | + </parameter> | |
| 22 | + <parameter> | |
| 23 | + <name>xlid</name> | |
| 24 | + <default_value>63017</default_value> | |
| 25 | + <description>线路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/07/11 21:45:05.041</created_date> | |
| 86 | + <modified_user>-</modified_user> | |
| 87 | + <modified_date>2016/07/11 21:45:05.041</modified_date> | |
| 88 | + <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA=</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>${v_db_ip}</server> | |
| 96 | + <type>MYSQL</type> | |
| 97 | + <access>Native</access> | |
| 98 | + <database>${v_db_dname}</database> | |
| 99 | + <port>3306</port> | |
| 100 | + <username>${v_db_uname}</username> | |
| 101 | + <password>${v_db_pwd}</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_公司_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_本机</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(本机)</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>表输入</from><to>过滤记录</to><enabled>Y</enabled> </hop> | |
| 255 | + <hop> <from>过滤记录</from><to>正常班次站点查询用数据</to><enabled>Y</enabled> </hop> | |
| 256 | + <hop> <from>过滤记录</from><to>进场出场班次查询用的数据</to><enabled>Y</enabled> </hop> | |
| 257 | + <hop> <from>正常班次站点查询用数据</from><to>查找起点站名称</to><enabled>Y</enabled> </hop> | |
| 258 | + <hop> <from>查找起点站名称</from><to>查找终点站名称</to><enabled>Y</enabled> </hop> | |
| 259 | + <hop> <from>查找终点站名称</from><to>字段选择</to><enabled>Y</enabled> </hop> | |
| 260 | + <hop> <from>进场出场班次查询用的数据</from><to>字段选择 2</to><enabled>Y</enabled> </hop> | |
| 261 | + <hop> <from>字段选择</from><to>排序记录</to><enabled>Y</enabled> </hop> | |
| 262 | + <hop> <from>字段选择 2</from><to>排序记录</to><enabled>Y</enabled> </hop> | |
| 263 | + <hop> <from>排序记录</from><to>计算发车站名</to><enabled>Y</enabled> </hop> | |
| 264 | + <hop> <from>计算发车站名</from><to>列转行</to><enabled>Y</enabled> </hop> | |
| 265 | + <hop> <from>列转行</from><to>去除字段</to><enabled>Y</enabled> </hop> | |
| 266 | + <hop> <from>去除字段</from><to>Excel输出</to><enabled>Y</enabled> </hop> | |
| 267 | + <hop> <from>获取变量</from><to>表输入</to><enabled>Y</enabled> </hop> | |
| 268 | + </order> | |
| 269 | + <step> | |
| 270 | + <name>Excel输出</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>${tempfilepath}</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>列转行</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>去除字段</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>字段选择</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>字段选择 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>排序记录</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>%%java.io.tmpdir%%</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>查找终点站名称</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>=</condition> | |
| 4560 | + <name2/> | |
| 4561 | + </key> | |
| 4562 | + <key> | |
| 4563 | + <name>xl_dir</name> | |
| 4564 | + <field>directions</field> | |
| 4565 | + <condition>=</condition> | |
| 4566 | + <name2/> | |
| 4567 | + </key> | |
| 4568 | + <key> | |
| 4569 | + <name>endZdType</name> | |
| 4570 | + <field>station_mark</field> | |
| 4571 | + <condition>=</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>查找起点站名称</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>=</condition> | |
| 4614 | + <name2/> | |
| 4615 | + </key> | |
| 4616 | + <key> | |
| 4617 | + <name>xl_dir</name> | |
| 4618 | + <field>directions</field> | |
| 4619 | + <condition>=</condition> | |
| 4620 | + <name2/> | |
| 4621 | + </key> | |
| 4622 | + <key> | |
| 4623 | + <name>startZdType</name> | |
| 4624 | + <field>station_mark</field> | |
| 4625 | + <condition>=</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>正常班次站点查询用数据</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>//Script here

var startZdType = 'B'; // 起点站站点类型标识别
var endZdType = 'E'; // 终点站站点类型标识</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>获取变量</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>${xlid}</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>${ttid}</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>表输入</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 
t.id as id
, g.lp_name as lp
, g.xl as xl
, qdz
, zdz
, tcc
, fcsj
, bc_type 
, bcs
, fcno
, xl_dir
, isfb
from bsth_c_s_ttinfo_detail t left join 
bsth_c_s_gbi g on t.lp = g.id 
where 
g.xl = ? and
t.ttinfo = ? 
order by t.bcs asc</sql> | |
| 4737 | + <limit>0</limit> | |
| 4738 | + <lookup>获取变量</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>计算发车站名</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>//Script here

var fczdName = null; // 发车站点名字
if (bc_type == "in") {
 fczdName = "进场";
} else if (bc_type == "out") {
 fczdName = "出场";
} else {
 fczdName = qdzName;
}</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>过滤记录</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>正常班次站点查询用数据</send_true_to> | |
| 4792 | +<send_false_to>进场出场班次查询用的数据</send_false_to> | |
| 4793 | + <compare> | |
| 4794 | +<condition> | |
| 4795 | + <negated>N</negated> | |
| 4796 | + <leftvalue>bc_type</leftvalue> | |
| 4797 | + <function>=</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>进场出场班次查询用的数据</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>//Script here

var qdzName = null; // 起点站名字
var zdzName = null; // 终点站名字</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/scheduleApp/module/common/prj-common-globalservice.js
| ... | ... | @@ -96,6 +96,25 @@ angular.module('ScheduleApp').factory('BusInfoManageService_g', ['$resource', 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 | 118 | validate: $resource( |
| 100 | 119 | '/cars/validate/:type', |
| 101 | 120 | {}, | ... | ... |