Commit e3ca43c2dd47e4dbfdeab9515c8bd063e7d6093a
Merge branch 'minhang' of 192.168.168.201:panzhaov5/bsth_control into
minhang
Showing
10 changed files
with
2277 additions
and
4213 deletions
src/main/java/com/bsth/service/impl/BusIntervalServiceImpl.java
| ... | ... | @@ -57,7 +57,15 @@ public class BusIntervalServiceImpl implements BusIntervalService { |
| 57 | 57 | } |
| 58 | 58 | if(times.length() != 0){ |
| 59 | 59 | String[] split = times.split("-"); |
| 60 | - sql += " and fcsj >= '"+split[0]+"' and fcsj <= '"+split[1]+"'"; | |
| 60 | + String[] split0 = split[0].split(":"); | |
| 61 | + String[] split1 = split[1].split(":"); | |
| 62 | + int time0 = Integer.valueOf(split0[0])*60 + Integer.valueOf(split0[1]); | |
| 63 | + int time1 = Integer.valueOf(split1[0])*60 + Integer.valueOf(split1[1]); | |
| 64 | + if(time1 > time0){ | |
| 65 | + sql += " and fcsj >= '"+split[0]+"' and fcsj <= '"+split[1]+"'"; | |
| 66 | + } else { | |
| 67 | + sql += " and (fcsj >= '"+split[0]+"' or fcsj <= '"+split[1]+"')"; | |
| 68 | + } | |
| 61 | 69 | } |
| 62 | 70 | if(company.length() != 0){ |
| 63 | 71 | sql += " and gs_bm = '"+company+"' and fgs_bm = '"+subCompany+"'"; |
| ... | ... | @@ -65,6 +73,7 @@ public class BusIntervalServiceImpl implements BusIntervalService { |
| 65 | 73 | if(normal){ |
| 66 | 74 | sql += " and bc_type != 'in' and bc_type != 'out'"; |
| 67 | 75 | } |
| 76 | + System.out.println(sql); | |
| 68 | 77 | |
| 69 | 78 | list = jdbcTemplate.query(sql, |
| 70 | 79 | new RowMapper<ScheduleRealInfo>(){ |
| ... | ... | @@ -1577,7 +1586,15 @@ public class BusIntervalServiceImpl implements BusIntervalService { |
| 1577 | 1586 | } |
| 1578 | 1587 | if(times.length() != 0){ |
| 1579 | 1588 | String[] split = times.split("-"); |
| 1580 | - sql += " and fcsj >= '"+split[0]+"' and fcsj <= '"+split[1]+"'"; | |
| 1589 | + String[] split0 = split[0].split(":"); | |
| 1590 | + String[] split1 = split[1].split(":"); | |
| 1591 | + int time0 = Integer.valueOf(split0[0])*60 + Integer.valueOf(split0[1]); | |
| 1592 | + int time1 = Integer.valueOf(split1[0])*60 + Integer.valueOf(split1[1]); | |
| 1593 | + if(time1 > time0){ | |
| 1594 | + sql += " and fcsj >= '"+split[0]+"' and fcsj <= '"+split[1]+"'"; | |
| 1595 | + } else { | |
| 1596 | + sql += " and (fcsj >= '"+split[0]+"' or fcsj <= '"+split[1]+"')"; | |
| 1597 | + } | |
| 1581 | 1598 | } |
| 1582 | 1599 | if(company.length() != 0){ |
| 1583 | 1600 | sql += " and gs_bm = '"+company+"' and fgs_bm = '"+subCompany+"'"; | ... | ... |
src/main/java/com/bsth/service/schedule/impl/TTInfoDetailServiceImpl.java
| ... | ... | @@ -236,6 +236,7 @@ public class TTInfoDetailServiceImpl extends BServiceImpl<TTInfoDetail, Long> im |
| 236 | 236 | |
| 237 | 237 | // 1.6、获取最大的发车数,用于输出数据的数量 |
| 238 | 238 | Long maxfcno = ttInfoDetailRepository.findMaxFcno(xlid, ttid); |
| 239 | + LOGGER.info("最大发车顺序号={}", maxfcno); | |
| 239 | 240 | if (maxfcno != null) { |
| 240 | 241 | // 2、读取ktr生成的excel数据,组织编辑用数据返回 |
| 241 | 242 | // 2-1、读取Excel文件 |
| ... | ... | @@ -263,39 +264,47 @@ public class TTInfoDetailServiceImpl extends BServiceImpl<TTInfoDetail, Long> im |
| 263 | 264 | double lc_ks = 0; // 空驶里程 |
| 264 | 265 | double lc_yy = 0; // 营运里程 |
| 265 | 266 | |
| 266 | - for (int c = 1; c <= maxfcno * 7; ) { | |
| 267 | - String ttdid_str = sheet.getCell(c, r).getContents(); // 时刻表明细id | |
| 268 | - String fcsj = sheet.getCell(c + 1, r).getContents(); // 发车时间 | |
| 269 | - String jhlc = sheet.getCell(c + 2, r).getContents(); // 计划里程 | |
| 270 | - String fzdname = sheet.getCell(c + 3, r).getContents(); // 发车站点名称 | |
| 271 | - String bctype = sheet.getCell(c + 4, r).getContents(); // 班次类型 | |
| 272 | - String xldir = sheet.getCell(c + 5, r).getContents(); // 线路上下行 | |
| 273 | - String isfb = sheet.getCell(c + 6, r).getContents(); // 是否分班 | |
| 267 | + for (int c = 1; c <= maxfcno; c++) { | |
| 268 | + String content_str = sheet.getCell(c, r).getContents(); | |
| 269 | + try { | |
| 270 | + String[] content = StringUtils.isEmpty(content_str) ? null : content_str.split(","); // 总的内容 | |
| 274 | 271 | |
| 275 | - FcInfo fcInfo = new FcInfo(ttdid_str, bctype, fcsj, xldir, isfb); | |
| 272 | + String ttdid_str = content == null ? "" : content[0]; // 时刻表明细id | |
| 273 | + String fcsj = content == null ? "" : content[1]; // 发车时间 | |
| 274 | + String jhlc = content == null ? "" : content[2]; // 计划里程 | |
| 275 | + String fzdname = content == null ? "" : content[3]; // 发车站点名称 | |
| 276 | + String bctype = content == null ? "" : content[4]; // 班次类型 | |
| 277 | + String xldir = content == null ? "" : content[5]; // 线路上下行 | |
| 278 | + String isfb = content == null ? "" : content[6]; // 是否分班 | |
| 276 | 279 | |
| 277 | - if (StringUtils.isNotEmpty(fzdname)) | |
| 278 | - headarrays[(int)(c / 7) + 1] = fzdname; | |
| 279 | - fcInfos.add(fcInfo); | |
| 280 | + FcInfo fcInfo = new FcInfo(ttdid_str, bctype, fcsj, xldir, isfb); | |
| 280 | 281 | |
| 281 | - c += 7; | |
| 282 | + if (StringUtils.isNotEmpty(fzdname)) | |
| 283 | + headarrays[c + 1] = fzdname; | |
| 284 | + fcInfos.add(fcInfo); | |
| 282 | 285 | |
| 283 | - // 计算班次里程 | |
| 284 | - if (StringUtils.isNotEmpty(jhlc)) { | |
| 285 | - if ("in".equals(bctype) || "out".equals(bctype)) { | |
| 286 | - bc_ks += 1; | |
| 287 | - lc_ks += Double.valueOf(jhlc); | |
| 288 | 286 | |
| 289 | - all_bc += 1; | |
| 290 | - all_lc_ks += Double.valueOf(jhlc); | |
| 287 | + // 计算班次里程 | |
| 288 | + if (StringUtils.isNotEmpty(jhlc)) { | |
| 289 | + if ("in".equals(bctype) || "out".equals(bctype)) { | |
| 290 | + bc_ks += 1; | |
| 291 | + lc_ks += Double.valueOf(jhlc); | |
| 291 | 292 | |
| 292 | - } else { | |
| 293 | - bc_yy += 1; | |
| 294 | - lc_yy += Double.valueOf(jhlc); | |
| 293 | + all_bc += 1; | |
| 294 | + all_lc_ks += Double.valueOf(jhlc); | |
| 295 | + | |
| 296 | + } else { | |
| 297 | + bc_yy += 1; | |
| 298 | + lc_yy += Double.valueOf(jhlc); | |
| 295 | 299 | |
| 296 | - all_bc += 1; | |
| 297 | - all_lc_yy += Double.valueOf(jhlc); | |
| 300 | + all_bc += 1; | |
| 301 | + all_lc_yy += Double.valueOf(jhlc); | |
| 302 | + } | |
| 298 | 303 | } |
| 304 | + | |
| 305 | + } catch (Exception exp) { | |
| 306 | + LOGGER.info("{}行,{}数据有问题,数据={},异常message={}", r, c, content_str, exp); | |
| 307 | + break; | |
| 299 | 308 | } |
| 300 | 309 | |
| 301 | 310 | } | ... | ... |
src/main/resources/datatools/ktrs/ttinfodetailoutputforedit.ktr
| ... | ... | @@ -91,8 +91,8 @@ |
| 91 | 91 | <notepads> |
| 92 | 92 | <notepad> |
| 93 | 93 | <note>这里有些问题
在window2012的环境下,
MySql数据库查询中如果返回中文内容的字段,这个内容乱码
解决办法,就是数据库查询全部缓存,就不乱码
linux环境下没问题</note> |
| 94 | - <xloc>135</xloc> | |
| 95 | - <yloc>299</yloc> | |
| 94 | + <xloc>45</xloc> | |
| 95 | + <yloc>261</yloc> | |
| 96 | 96 | <width>333</width> |
| 97 | 97 | <heigth>90</heigth> |
| 98 | 98 | <fontname>YaHei Consolas Hybrid</fontname> |
| ... | ... | @@ -110,6 +110,27 @@ |
| 110 | 110 | <bordercolorblue>100</bordercolorblue> |
| 111 | 111 | <drawshadow>Y</drawshadow> |
| 112 | 112 | </notepad> |
| 113 | + <notepad> | |
| 114 | + <note>此处转换excel有问题,
2003格式的xls最多256列,
这里明显超过,所以把所有内容合并成1列,
用,分隔</note> | |
| 115 | + <xloc>256</xloc> | |
| 116 | + <yloc>397</yloc> | |
| 117 | + <width>245</width> | |
| 118 | + <heigth>74</heigth> | |
| 119 | + <fontname>YaHei Consolas Hybrid</fontname> | |
| 120 | + <fontsize>12</fontsize> | |
| 121 | + <fontbold>N</fontbold> | |
| 122 | + <fontitalic>N</fontitalic> | |
| 123 | + <fontcolorred>0</fontcolorred> | |
| 124 | + <fontcolorgreen>0</fontcolorgreen> | |
| 125 | + <fontcolorblue>0</fontcolorblue> | |
| 126 | + <backgroundcolorred>255</backgroundcolorred> | |
| 127 | + <backgroundcolorgreen>205</backgroundcolorgreen> | |
| 128 | + <backgroundcolorblue>112</backgroundcolorblue> | |
| 129 | + <bordercolorred>100</bordercolorred> | |
| 130 | + <bordercolorgreen>100</bordercolorgreen> | |
| 131 | + <bordercolorblue>100</bordercolorblue> | |
| 132 | + <drawshadow>Y</drawshadow> | |
| 133 | + </notepad> | |
| 113 | 134 | </notepads> |
| 114 | 135 | <connection> |
| 115 | 136 | <name>bus_control_variable</name> |
| ... | ... | @@ -283,10 +304,12 @@ |
| 283 | 304 | <hop> <from>字段选择</from><to>排序记录</to><enabled>Y</enabled> </hop> |
| 284 | 305 | <hop> <from>字段选择 2</from><to>排序记录</to><enabled>Y</enabled> </hop> |
| 285 | 306 | <hop> <from>排序记录</from><to>计算发车站名</to><enabled>Y</enabled> </hop> |
| 286 | - <hop> <from>计算发车站名</from><to>列转行</to><enabled>Y</enabled> </hop> | |
| 287 | 307 | <hop> <from>列转行</from><to>去除字段</to><enabled>Y</enabled> </hop> |
| 288 | 308 | <hop> <from>去除字段</from><to>Excel输出</to><enabled>Y</enabled> </hop> |
| 289 | 309 | <hop> <from>获取变量</from><to>表输入</to><enabled>Y</enabled> </hop> |
| 310 | + <hop> <from>计算发车站名</from><to>合并内容</to><enabled>Y</enabled> </hop> | |
| 311 | + <hop> <from>合并内容</from><to>列转行</to><enabled>Y</enabled> </hop> | |
| 312 | + <hop> <from>去除字段</from><to>文本文件输出</to><enabled>Y</enabled> </hop> | |
| 290 | 313 | </order> |
| 291 | 314 | <step> |
| 292 | 315 | <name>Excel输出</name> |
| ... | ... | @@ -335,3728 +358,403 @@ |
| 335 | 358 | <format/> |
| 336 | 359 | </field> |
| 337 | 360 | <field> |
| 338 | - <name>fcno1_id</name> | |
| 339 | - <type>String</type> | |
| 340 | - <format/> | |
| 341 | - </field> | |
| 342 | - <field> | |
| 343 | - <name>fcno1_fcsj</name> | |
| 344 | - <type>String</type> | |
| 345 | - <format/> | |
| 346 | - </field> | |
| 347 | - <field> | |
| 348 | - <name>fcno1_jhlc</name> | |
| 349 | - <type>None</type> | |
| 350 | - <format/> | |
| 351 | - </field> | |
| 352 | - <field> | |
| 353 | - <name>fcno1_zdname</name> | |
| 354 | - <type>String</type> | |
| 355 | - <format/> | |
| 356 | - </field> | |
| 357 | - <field> | |
| 358 | - <name>fcno1_bctype</name> | |
| 359 | - <type>String</type> | |
| 360 | - <format/> | |
| 361 | - </field> | |
| 362 | - <field> | |
| 363 | - <name>fcno1_xldir</name> | |
| 364 | - <type>String</type> | |
| 365 | - <format/> | |
| 366 | - </field> | |
| 367 | - <field> | |
| 368 | - <name>fcno1_isfb</name> | |
| 369 | - <type>String</type> | |
| 370 | - <format/> | |
| 371 | - </field> | |
| 372 | - <field> | |
| 373 | - <name>fcno2_id</name> | |
| 374 | - <type>String</type> | |
| 375 | - <format/> | |
| 376 | - </field> | |
| 377 | - <field> | |
| 378 | - <name>fcno2_fcsj</name> | |
| 379 | - <type>String</type> | |
| 380 | - <format/> | |
| 381 | - </field> | |
| 382 | - <field> | |
| 383 | - <name>fcno2_jhlc</name> | |
| 384 | - <type>None</type> | |
| 385 | - <format/> | |
| 386 | - </field> | |
| 387 | - <field> | |
| 388 | - <name>fcno2_zdname</name> | |
| 389 | - <type>String</type> | |
| 390 | - <format/> | |
| 391 | - </field> | |
| 392 | - <field> | |
| 393 | - <name>fcno2_bctype</name> | |
| 394 | - <type>String</type> | |
| 395 | - <format/> | |
| 396 | - </field> | |
| 397 | - <field> | |
| 398 | - <name>fcno2_xldir</name> | |
| 399 | - <type>String</type> | |
| 400 | - <format/> | |
| 401 | - </field> | |
| 402 | - <field> | |
| 403 | - <name>fcno2_isfb</name> | |
| 404 | - <type>String</type> | |
| 405 | - <format/> | |
| 406 | - </field> | |
| 407 | - <field> | |
| 408 | - <name>fcno3_id</name> | |
| 409 | - <type>String</type> | |
| 410 | - <format/> | |
| 411 | - </field> | |
| 412 | - <field> | |
| 413 | - <name>fcno3_fcsj</name> | |
| 414 | - <type>String</type> | |
| 415 | - <format/> | |
| 416 | - </field> | |
| 417 | - <field> | |
| 418 | - <name>fcno3_jhlc</name> | |
| 419 | - <type>None</type> | |
| 420 | - <format/> | |
| 421 | - </field> | |
| 422 | - <field> | |
| 423 | - <name>fcno3_zdname</name> | |
| 424 | - <type>String</type> | |
| 425 | - <format/> | |
| 426 | - </field> | |
| 427 | - <field> | |
| 428 | - <name>fcno3_bctype</name> | |
| 429 | - <type>String</type> | |
| 430 | - <format/> | |
| 431 | - </field> | |
| 432 | - <field> | |
| 433 | - <name>fcno3_xldir</name> | |
| 434 | - <type>String</type> | |
| 435 | - <format/> | |
| 436 | - </field> | |
| 437 | - <field> | |
| 438 | - <name>fcno3_isfb</name> | |
| 439 | - <type>String</type> | |
| 440 | - <format/> | |
| 441 | - </field> | |
| 442 | - <field> | |
| 443 | - <name>fcno4_id</name> | |
| 444 | - <type>String</type> | |
| 445 | - <format/> | |
| 446 | - </field> | |
| 447 | - <field> | |
| 448 | - <name>fcno4_fcsj</name> | |
| 449 | - <type>String</type> | |
| 450 | - <format/> | |
| 451 | - </field> | |
| 452 | - <field> | |
| 453 | - <name>fcno5_jhlc</name> | |
| 454 | - <type>None</type> | |
| 455 | - <format/> | |
| 456 | - </field> | |
| 457 | - <field> | |
| 458 | - <name>fcno4_zdname</name> | |
| 459 | - <type>String</type> | |
| 460 | - <format/> | |
| 461 | - </field> | |
| 462 | - <field> | |
| 463 | - <name>fcno4_bctype</name> | |
| 464 | - <type>String</type> | |
| 465 | - <format/> | |
| 466 | - </field> | |
| 467 | - <field> | |
| 468 | - <name>fcno4_xldir</name> | |
| 469 | - <type>String</type> | |
| 470 | - <format/> | |
| 471 | - </field> | |
| 472 | - <field> | |
| 473 | - <name>fcno4_isfb</name> | |
| 474 | - <type>String</type> | |
| 475 | - <format/> | |
| 476 | - </field> | |
| 477 | - <field> | |
| 478 | - <name>fcno5_id</name> | |
| 479 | - <type>String</type> | |
| 480 | - <format/> | |
| 481 | - </field> | |
| 482 | - <field> | |
| 483 | - <name>fcno5_fcsj</name> | |
| 484 | - <type>String</type> | |
| 485 | - <format/> | |
| 486 | - </field> | |
| 487 | - <field> | |
| 488 | - <name>fcno5_jhlc_1</name> | |
| 489 | - <type>None</type> | |
| 490 | - <format/> | |
| 491 | - </field> | |
| 492 | - <field> | |
| 493 | - <name>fcno5_zdname</name> | |
| 494 | - <type>String</type> | |
| 495 | - <format/> | |
| 496 | - </field> | |
| 497 | - <field> | |
| 498 | - <name>fcno5_bctype</name> | |
| 499 | - <type>String</type> | |
| 500 | - <format/> | |
| 501 | - </field> | |
| 502 | - <field> | |
| 503 | - <name>fcno5_xldir</name> | |
| 504 | - <type>String</type> | |
| 505 | - <format/> | |
| 506 | - </field> | |
| 507 | - <field> | |
| 508 | - <name>fcno5_isfb</name> | |
| 509 | - <type>String</type> | |
| 510 | - <format/> | |
| 511 | - </field> | |
| 512 | - <field> | |
| 513 | - <name>fcno6_id</name> | |
| 514 | - <type>String</type> | |
| 515 | - <format/> | |
| 516 | - </field> | |
| 517 | - <field> | |
| 518 | - <name>fcno6_fcsj</name> | |
| 519 | - <type>String</type> | |
| 520 | - <format/> | |
| 521 | - </field> | |
| 522 | - <field> | |
| 523 | - <name>fcno6_jhlc</name> | |
| 524 | - <type>None</type> | |
| 525 | - <format/> | |
| 526 | - </field> | |
| 527 | - <field> | |
| 528 | - <name>fcno6_zdname</name> | |
| 529 | - <type>String</type> | |
| 530 | - <format/> | |
| 531 | - </field> | |
| 532 | - <field> | |
| 533 | - <name>fcno6_bctype</name> | |
| 534 | - <type>String</type> | |
| 535 | - <format/> | |
| 536 | - </field> | |
| 537 | - <field> | |
| 538 | - <name>fcno6_xldir</name> | |
| 539 | - <type>String</type> | |
| 540 | - <format/> | |
| 541 | - </field> | |
| 542 | - <field> | |
| 543 | - <name>fcno6_isfb</name> | |
| 544 | - <type>String</type> | |
| 545 | - <format/> | |
| 546 | - </field> | |
| 547 | - <field> | |
| 548 | - <name>fcno7_id</name> | |
| 549 | - <type>String</type> | |
| 550 | - <format/> | |
| 551 | - </field> | |
| 552 | - <field> | |
| 553 | - <name>fcno7_fcsj</name> | |
| 554 | - <type>String</type> | |
| 555 | - <format/> | |
| 556 | - </field> | |
| 557 | - <field> | |
| 558 | - <name>fcno7_jhlc</name> | |
| 559 | - <type>None</type> | |
| 560 | - <format/> | |
| 561 | - </field> | |
| 562 | - <field> | |
| 563 | - <name>fcno7_zdname</name> | |
| 564 | - <type>String</type> | |
| 565 | - <format/> | |
| 566 | - </field> | |
| 567 | - <field> | |
| 568 | - <name>fcno7_bctype</name> | |
| 569 | - <type>String</type> | |
| 570 | - <format/> | |
| 571 | - </field> | |
| 572 | - <field> | |
| 573 | - <name>fcno7_xldir</name> | |
| 574 | - <type>String</type> | |
| 575 | - <format/> | |
| 576 | - </field> | |
| 577 | - <field> | |
| 578 | - <name>fcno7_isfb</name> | |
| 579 | - <type>String</type> | |
| 580 | - <format/> | |
| 581 | - </field> | |
| 582 | - <field> | |
| 583 | - <name>fcno8_id</name> | |
| 584 | - <type>String</type> | |
| 585 | - <format/> | |
| 586 | - </field> | |
| 587 | - <field> | |
| 588 | - <name>fcno8_fcsj</name> | |
| 589 | - <type>String</type> | |
| 590 | - <format/> | |
| 591 | - </field> | |
| 592 | - <field> | |
| 593 | - <name>fcno8_jhlc</name> | |
| 594 | - <type>None</type> | |
| 595 | - <format/> | |
| 596 | - </field> | |
| 597 | - <field> | |
| 598 | - <name>fcno8_zdname</name> | |
| 599 | - <type>String</type> | |
| 600 | - <format/> | |
| 601 | - </field> | |
| 602 | - <field> | |
| 603 | - <name>fcno8_bctype</name> | |
| 361 | + <name>fcno1</name> | |
| 604 | 362 | <type>String</type> |
| 605 | 363 | <format/> |
| 606 | 364 | </field> |
| 607 | 365 | <field> |
| 608 | - <name>fcno8_xldir</name> | |
| 366 | + <name>fcno2</name> | |
| 609 | 367 | <type>String</type> |
| 610 | 368 | <format/> |
| 611 | 369 | </field> |
| 612 | 370 | <field> |
| 613 | - <name>fcno8_isfb</name> | |
| 371 | + <name>fcno3</name> | |
| 614 | 372 | <type>String</type> |
| 615 | 373 | <format/> |
| 616 | 374 | </field> |
| 617 | 375 | <field> |
| 618 | - <name>fcno9_id</name> | |
| 376 | + <name>fcno4</name> | |
| 619 | 377 | <type>String</type> |
| 620 | 378 | <format/> |
| 621 | 379 | </field> |
| 622 | 380 | <field> |
| 623 | - <name>fcno9_fcsj</name> | |
| 381 | + <name>fcno5</name> | |
| 624 | 382 | <type>String</type> |
| 625 | 383 | <format/> |
| 626 | 384 | </field> |
| 627 | 385 | <field> |
| 628 | - <name>fcno9_jhlc</name> | |
| 629 | - <type>None</type> | |
| 630 | - <format/> | |
| 631 | - </field> | |
| 632 | - <field> | |
| 633 | - <name>fcno9_zdname</name> | |
| 386 | + <name>fcno6</name> | |
| 634 | 387 | <type>String</type> |
| 635 | 388 | <format/> |
| 636 | 389 | </field> |
| 637 | 390 | <field> |
| 638 | - <name>fcno9_bctype</name> | |
| 391 | + <name>fcno7</name> | |
| 639 | 392 | <type>String</type> |
| 640 | 393 | <format/> |
| 641 | 394 | </field> |
| 642 | 395 | <field> |
| 643 | - <name>fcno9_xldir</name> | |
| 396 | + <name>fcno8</name> | |
| 644 | 397 | <type>String</type> |
| 645 | 398 | <format/> |
| 646 | 399 | </field> |
| 647 | 400 | <field> |
| 648 | - <name>fcno9_isfb</name> | |
| 401 | + <name>fcno9</name> | |
| 649 | 402 | <type>String</type> |
| 650 | 403 | <format/> |
| 651 | 404 | </field> |
| 652 | 405 | <field> |
| 653 | - <name>fcno10_id</name> | |
| 406 | + <name>fcno10</name> | |
| 654 | 407 | <type>String</type> |
| 655 | 408 | <format/> |
| 656 | 409 | </field> |
| 657 | 410 | <field> |
| 658 | - <name>fcno10_fcsj</name> | |
| 411 | + <name>fcno11</name> | |
| 659 | 412 | <type>String</type> |
| 660 | 413 | <format/> |
| 661 | 414 | </field> |
| 662 | 415 | <field> |
| 663 | - <name>fcno10_jhlc</name> | |
| 664 | - <type>None</type> | |
| 665 | - <format/> | |
| 666 | - </field> | |
| 667 | - <field> | |
| 668 | - <name>fcno10_zdname</name> | |
| 416 | + <name>fcno12</name> | |
| 669 | 417 | <type>String</type> |
| 670 | 418 | <format/> |
| 671 | 419 | </field> |
| 672 | 420 | <field> |
| 673 | - <name>fcno10_bctype</name> | |
| 421 | + <name>fcno13</name> | |
| 674 | 422 | <type>String</type> |
| 675 | 423 | <format/> |
| 676 | 424 | </field> |
| 677 | 425 | <field> |
| 678 | - <name>fcno10_xldir</name> | |
| 426 | + <name>fcno14</name> | |
| 679 | 427 | <type>String</type> |
| 680 | 428 | <format/> |
| 681 | 429 | </field> |
| 682 | 430 | <field> |
| 683 | - <name>fcno10_isfb</name> | |
| 431 | + <name>fcno15</name> | |
| 684 | 432 | <type>String</type> |
| 685 | 433 | <format/> |
| 686 | 434 | </field> |
| 687 | 435 | <field> |
| 688 | - <name>fcno11_id</name> | |
| 436 | + <name>fcno16</name> | |
| 689 | 437 | <type>String</type> |
| 690 | 438 | <format/> |
| 691 | 439 | </field> |
| 692 | 440 | <field> |
| 693 | - <name>fcno11_fcsj</name> | |
| 441 | + <name>fcno17</name> | |
| 694 | 442 | <type>String</type> |
| 695 | 443 | <format/> |
| 696 | 444 | </field> |
| 697 | 445 | <field> |
| 698 | - <name>fcno11_jhlc</name> | |
| 699 | - <type>None</type> | |
| 700 | - <format/> | |
| 701 | - </field> | |
| 702 | - <field> | |
| 703 | - <name>fcno11_zdname</name> | |
| 446 | + <name>fcno18</name> | |
| 704 | 447 | <type>String</type> |
| 705 | 448 | <format/> |
| 706 | 449 | </field> |
| 707 | 450 | <field> |
| 708 | - <name>fcno11_bctype</name> | |
| 451 | + <name>fcno19</name> | |
| 709 | 452 | <type>String</type> |
| 710 | 453 | <format/> |
| 711 | 454 | </field> |
| 712 | 455 | <field> |
| 713 | - <name>fcno11_xldir</name> | |
| 456 | + <name>fcno20</name> | |
| 714 | 457 | <type>String</type> |
| 715 | 458 | <format/> |
| 716 | 459 | </field> |
| 717 | 460 | <field> |
| 718 | - <name>fcno11_isfb</name> | |
| 461 | + <name>fcno21</name> | |
| 719 | 462 | <type>String</type> |
| 720 | 463 | <format/> |
| 721 | 464 | </field> |
| 722 | 465 | <field> |
| 723 | - <name>fcno12_id</name> | |
| 466 | + <name>fcno22</name> | |
| 724 | 467 | <type>String</type> |
| 725 | 468 | <format/> |
| 726 | 469 | </field> |
| 727 | 470 | <field> |
| 728 | - <name>fcno12_fcsj</name> | |
| 471 | + <name>fcno23</name> | |
| 729 | 472 | <type>String</type> |
| 730 | 473 | <format/> |
| 731 | 474 | </field> |
| 732 | 475 | <field> |
| 733 | - <name>fcno12_jhlc</name> | |
| 734 | - <type>None</type> | |
| 735 | - <format/> | |
| 736 | - </field> | |
| 737 | - <field> | |
| 738 | - <name>fcno12_zdname</name> | |
| 476 | + <name>fcno24</name> | |
| 739 | 477 | <type>String</type> |
| 740 | 478 | <format/> |
| 741 | 479 | </field> |
| 742 | 480 | <field> |
| 743 | - <name>fcno12_bctype</name> | |
| 481 | + <name>fcno25</name> | |
| 744 | 482 | <type>String</type> |
| 745 | 483 | <format/> |
| 746 | 484 | </field> |
| 747 | 485 | <field> |
| 748 | - <name>fcno12_xldir</name> | |
| 486 | + <name>fcno26</name> | |
| 749 | 487 | <type>String</type> |
| 750 | 488 | <format/> |
| 751 | 489 | </field> |
| 752 | 490 | <field> |
| 753 | - <name>fcno12_isfb</name> | |
| 491 | + <name>fcno27</name> | |
| 754 | 492 | <type>String</type> |
| 755 | 493 | <format/> |
| 756 | 494 | </field> |
| 757 | 495 | <field> |
| 758 | - <name>fcno13_id</name> | |
| 496 | + <name>fcno28</name> | |
| 759 | 497 | <type>String</type> |
| 760 | 498 | <format/> |
| 761 | 499 | </field> |
| 762 | 500 | <field> |
| 763 | - <name>fcno13_fcsj</name> | |
| 501 | + <name>fcno29</name> | |
| 764 | 502 | <type>String</type> |
| 765 | 503 | <format/> |
| 766 | 504 | </field> |
| 767 | 505 | <field> |
| 768 | - <name>fcno13_jhlc</name> | |
| 769 | - <type>None</type> | |
| 770 | - <format/> | |
| 771 | - </field> | |
| 772 | - <field> | |
| 773 | - <name>fcno13_zdname</name> | |
| 506 | + <name>fcno30</name> | |
| 774 | 507 | <type>String</type> |
| 775 | 508 | <format/> |
| 776 | 509 | </field> |
| 777 | 510 | <field> |
| 778 | - <name>fcno13_bctype</name> | |
| 511 | + <name>fcno31</name> | |
| 779 | 512 | <type>String</type> |
| 780 | 513 | <format/> |
| 781 | 514 | </field> |
| 782 | 515 | <field> |
| 783 | - <name>fcno13_xldir</name> | |
| 516 | + <name>fcno32</name> | |
| 784 | 517 | <type>String</type> |
| 785 | 518 | <format/> |
| 786 | 519 | </field> |
| 787 | 520 | <field> |
| 788 | - <name>fcno13_isfb</name> | |
| 521 | + <name>fcno33</name> | |
| 789 | 522 | <type>String</type> |
| 790 | 523 | <format/> |
| 791 | 524 | </field> |
| 792 | 525 | <field> |
| 793 | - <name>fcno14_id</name> | |
| 526 | + <name>fcno34</name> | |
| 794 | 527 | <type>String</type> |
| 795 | 528 | <format/> |
| 796 | 529 | </field> |
| 797 | 530 | <field> |
| 798 | - <name>fcno14_fcsj</name> | |
| 531 | + <name>fcno35</name> | |
| 799 | 532 | <type>String</type> |
| 800 | 533 | <format/> |
| 801 | 534 | </field> |
| 802 | 535 | <field> |
| 803 | - <name>fcno14_jhlc</name> | |
| 804 | - <type>None</type> | |
| 805 | - <format/> | |
| 806 | - </field> | |
| 807 | - <field> | |
| 808 | - <name>fcno14_zdname</name> | |
| 536 | + <name>fcno36</name> | |
| 809 | 537 | <type>String</type> |
| 810 | 538 | <format/> |
| 811 | 539 | </field> |
| 812 | 540 | <field> |
| 813 | - <name>fcno14_bctype</name> | |
| 541 | + <name>fcno37</name> | |
| 814 | 542 | <type>String</type> |
| 815 | 543 | <format/> |
| 816 | 544 | </field> |
| 817 | 545 | <field> |
| 818 | - <name>fcno14_xldir</name> | |
| 546 | + <name>fcno38</name> | |
| 819 | 547 | <type>String</type> |
| 820 | 548 | <format/> |
| 821 | 549 | </field> |
| 822 | 550 | <field> |
| 823 | - <name>fcno14_isfb</name> | |
| 551 | + <name>fcno39</name> | |
| 824 | 552 | <type>String</type> |
| 825 | 553 | <format/> |
| 826 | 554 | </field> |
| 827 | 555 | <field> |
| 828 | - <name>fcno15_id</name> | |
| 556 | + <name>fcno40</name> | |
| 829 | 557 | <type>String</type> |
| 830 | 558 | <format/> |
| 831 | 559 | </field> |
| 832 | 560 | <field> |
| 833 | - <name>fcno15_fcsj</name> | |
| 561 | + <name>fcno41</name> | |
| 834 | 562 | <type>String</type> |
| 835 | 563 | <format/> |
| 836 | 564 | </field> |
| 837 | 565 | <field> |
| 838 | - <name>fcno15_jhlc</name> | |
| 839 | - <type>None</type> | |
| 840 | - <format/> | |
| 841 | - </field> | |
| 842 | - <field> | |
| 843 | - <name>fcno15_zdname</name> | |
| 566 | + <name>fcno42</name> | |
| 844 | 567 | <type>String</type> |
| 845 | 568 | <format/> |
| 846 | 569 | </field> |
| 847 | 570 | <field> |
| 848 | - <name>fcno15_bctype</name> | |
| 571 | + <name>fcno43</name> | |
| 849 | 572 | <type>String</type> |
| 850 | 573 | <format/> |
| 851 | 574 | </field> |
| 852 | 575 | <field> |
| 853 | - <name>fcno15_xldir</name> | |
| 576 | + <name>fcno44</name> | |
| 854 | 577 | <type>String</type> |
| 855 | 578 | <format/> |
| 856 | 579 | </field> |
| 857 | 580 | <field> |
| 858 | - <name>fcno15_isfb</name> | |
| 581 | + <name>fcno45</name> | |
| 859 | 582 | <type>String</type> |
| 860 | 583 | <format/> |
| 861 | 584 | </field> |
| 862 | 585 | <field> |
| 863 | - <name>fcno16_id</name> | |
| 586 | + <name>fcno46</name> | |
| 864 | 587 | <type>String</type> |
| 865 | 588 | <format/> |
| 866 | 589 | </field> |
| 867 | 590 | <field> |
| 868 | - <name>fcno16_fcsj</name> | |
| 591 | + <name>fcno47</name> | |
| 869 | 592 | <type>String</type> |
| 870 | 593 | <format/> |
| 871 | 594 | </field> |
| 872 | 595 | <field> |
| 873 | - <name>fcno16_jhlc</name> | |
| 874 | - <type>None</type> | |
| 875 | - <format/> | |
| 876 | - </field> | |
| 877 | - <field> | |
| 878 | - <name>fcno16_zdname</name> | |
| 596 | + <name>fcno48</name> | |
| 879 | 597 | <type>String</type> |
| 880 | 598 | <format/> |
| 881 | 599 | </field> |
| 882 | 600 | <field> |
| 883 | - <name>fcno16_bctype</name> | |
| 601 | + <name>fcno49</name> | |
| 884 | 602 | <type>String</type> |
| 885 | 603 | <format/> |
| 886 | 604 | </field> |
| 887 | 605 | <field> |
| 888 | - <name>fcno16_xldir</name> | |
| 606 | + <name>fcno50</name> | |
| 889 | 607 | <type>String</type> |
| 890 | 608 | <format/> |
| 891 | 609 | </field> |
| 892 | 610 | <field> |
| 893 | - <name>fcno16_isfb</name> | |
| 611 | + <name>fcno51</name> | |
| 894 | 612 | <type>String</type> |
| 895 | 613 | <format/> |
| 896 | 614 | </field> |
| 897 | 615 | <field> |
| 898 | - <name>fcno17_id</name> | |
| 616 | + <name>fcno52</name> | |
| 899 | 617 | <type>String</type> |
| 900 | 618 | <format/> |
| 901 | 619 | </field> |
| 902 | 620 | <field> |
| 903 | - <name>fcno17_fcsj</name> | |
| 621 | + <name>fcno53</name> | |
| 904 | 622 | <type>String</type> |
| 905 | 623 | <format/> |
| 906 | 624 | </field> |
| 907 | 625 | <field> |
| 908 | - <name>fcno17_jhlc</name> | |
| 909 | - <type>None</type> | |
| 910 | - <format/> | |
| 911 | - </field> | |
| 912 | - <field> | |
| 913 | - <name>fcno17_zdname</name> | |
| 626 | + <name>fcno54</name> | |
| 914 | 627 | <type>String</type> |
| 915 | 628 | <format/> |
| 916 | 629 | </field> |
| 917 | 630 | <field> |
| 918 | - <name>fcno17_bctype</name> | |
| 631 | + <name>fcno55</name> | |
| 919 | 632 | <type>String</type> |
| 920 | 633 | <format/> |
| 921 | 634 | </field> |
| 922 | 635 | <field> |
| 923 | - <name>fcno17_xldir</name> | |
| 636 | + <name>fcno56</name> | |
| 924 | 637 | <type>String</type> |
| 925 | 638 | <format/> |
| 926 | 639 | </field> |
| 927 | 640 | <field> |
| 928 | - <name>fcno17_isfb</name> | |
| 641 | + <name>fcno57</name> | |
| 929 | 642 | <type>String</type> |
| 930 | 643 | <format/> |
| 931 | 644 | </field> |
| 932 | 645 | <field> |
| 933 | - <name>fcno18_id</name> | |
| 646 | + <name>fcno58</name> | |
| 934 | 647 | <type>String</type> |
| 935 | 648 | <format/> |
| 936 | 649 | </field> |
| 937 | 650 | <field> |
| 938 | - <name>fcno18_fcsj</name> | |
| 651 | + <name>fcno59</name> | |
| 939 | 652 | <type>String</type> |
| 940 | 653 | <format/> |
| 941 | 654 | </field> |
| 942 | 655 | <field> |
| 943 | - <name>fcno18_jhlc</name> | |
| 944 | - <type>None</type> | |
| 945 | - <format/> | |
| 946 | - </field> | |
| 947 | - <field> | |
| 948 | - <name>fcno18_zdname</name> | |
| 656 | + <name>fcno60</name> | |
| 949 | 657 | <type>String</type> |
| 950 | 658 | <format/> |
| 951 | 659 | </field> |
| 952 | 660 | <field> |
| 953 | - <name>fcno18_bctype</name> | |
| 661 | + <name>fcno61</name> | |
| 954 | 662 | <type>String</type> |
| 955 | 663 | <format/> |
| 956 | 664 | </field> |
| 957 | 665 | <field> |
| 958 | - <name>fcno18_xldir</name> | |
| 666 | + <name>fcno62</name> | |
| 959 | 667 | <type>String</type> |
| 960 | 668 | <format/> |
| 961 | 669 | </field> |
| 962 | 670 | <field> |
| 963 | - <name>fcno18_isfb</name> | |
| 671 | + <name>fcno63</name> | |
| 964 | 672 | <type>String</type> |
| 965 | 673 | <format/> |
| 966 | 674 | </field> |
| 967 | 675 | <field> |
| 968 | - <name>fcno19_id</name> | |
| 676 | + <name>fcno64</name> | |
| 969 | 677 | <type>String</type> |
| 970 | 678 | <format/> |
| 971 | 679 | </field> |
| 972 | 680 | <field> |
| 973 | - <name>fcno19_fcsj</name> | |
| 681 | + <name>fcno65</name> | |
| 974 | 682 | <type>String</type> |
| 975 | 683 | <format/> |
| 976 | 684 | </field> |
| 977 | 685 | <field> |
| 978 | - <name>fcno19_jhlc</name> | |
| 979 | - <type>None</type> | |
| 980 | - <format/> | |
| 981 | - </field> | |
| 982 | - <field> | |
| 983 | - <name>fcno19_zdname</name> | |
| 686 | + <name>fcno66</name> | |
| 984 | 687 | <type>String</type> |
| 985 | 688 | <format/> |
| 986 | 689 | </field> |
| 987 | 690 | <field> |
| 988 | - <name>fcno19_bctype</name> | |
| 691 | + <name>fcno67</name> | |
| 989 | 692 | <type>String</type> |
| 990 | 693 | <format/> |
| 991 | 694 | </field> |
| 992 | 695 | <field> |
| 993 | - <name>fcno19_xldir</name> | |
| 696 | + <name>fcno68</name> | |
| 994 | 697 | <type>String</type> |
| 995 | 698 | <format/> |
| 996 | 699 | </field> |
| 997 | 700 | <field> |
| 998 | - <name>fcno19_isfb</name> | |
| 701 | + <name>fcno69</name> | |
| 999 | 702 | <type>String</type> |
| 1000 | 703 | <format/> |
| 1001 | 704 | </field> |
| 1002 | 705 | <field> |
| 1003 | - <name>fcno20_id</name> | |
| 706 | + <name>fcno70</name> | |
| 1004 | 707 | <type>String</type> |
| 1005 | 708 | <format/> |
| 1006 | 709 | </field> |
| 1007 | - <field> | |
| 1008 | - <name>fcno20_fcsj</name> | |
| 1009 | - <type>String</type> | |
| 1010 | - <format/> | |
| 1011 | - </field> | |
| 1012 | - <field> | |
| 1013 | - <name>fcno20_jhlc</name> | |
| 1014 | - <type>None</type> | |
| 1015 | - <format/> | |
| 1016 | - </field> | |
| 1017 | - <field> | |
| 1018 | - <name>fcno20_zdname</name> | |
| 1019 | - <type>String</type> | |
| 1020 | - <format/> | |
| 1021 | - </field> | |
| 1022 | - <field> | |
| 1023 | - <name>fcno20_bctype</name> | |
| 1024 | - <type>String</type> | |
| 1025 | - <format/> | |
| 1026 | - </field> | |
| 1027 | - <field> | |
| 1028 | - <name>fcno20_xldir</name> | |
| 1029 | - <type>String</type> | |
| 1030 | - <format/> | |
| 1031 | - </field> | |
| 1032 | - <field> | |
| 1033 | - <name>fcno20_isfb</name> | |
| 1034 | - <type>String</type> | |
| 1035 | - <format/> | |
| 1036 | - </field> | |
| 1037 | - <field> | |
| 1038 | - <name>fcno21_id</name> | |
| 1039 | - <type>String</type> | |
| 1040 | - <format/> | |
| 1041 | - </field> | |
| 1042 | - <field> | |
| 1043 | - <name>fcno21_fcsj</name> | |
| 1044 | - <type>String</type> | |
| 1045 | - <format/> | |
| 1046 | - </field> | |
| 1047 | - <field> | |
| 1048 | - <name>fcno21_jhlc</name> | |
| 1049 | - <type>None</type> | |
| 1050 | - <format/> | |
| 1051 | - </field> | |
| 1052 | - <field> | |
| 1053 | - <name>fcno21_zdname</name> | |
| 1054 | - <type>String</type> | |
| 1055 | - <format/> | |
| 1056 | - </field> | |
| 1057 | - <field> | |
| 1058 | - <name>fcno21_bctype</name> | |
| 1059 | - <type>String</type> | |
| 1060 | - <format/> | |
| 1061 | - </field> | |
| 1062 | - <field> | |
| 1063 | - <name>fcno21_xldir</name> | |
| 1064 | - <type>String</type> | |
| 1065 | - <format/> | |
| 1066 | - </field> | |
| 1067 | - <field> | |
| 1068 | - <name>fcno21_isfb</name> | |
| 1069 | - <type>String</type> | |
| 1070 | - <format/> | |
| 1071 | - </field> | |
| 1072 | - <field> | |
| 1073 | - <name>fcno22_id</name> | |
| 1074 | - <type>String</type> | |
| 1075 | - <format/> | |
| 1076 | - </field> | |
| 1077 | - <field> | |
| 1078 | - <name>fcno22_fcsj</name> | |
| 1079 | - <type>String</type> | |
| 1080 | - <format/> | |
| 1081 | - </field> | |
| 1082 | - <field> | |
| 1083 | - <name>fcno22_jhlc</name> | |
| 1084 | - <type>None</type> | |
| 1085 | - <format/> | |
| 1086 | - </field> | |
| 1087 | - <field> | |
| 1088 | - <name>fcno22_zdname</name> | |
| 1089 | - <type>String</type> | |
| 1090 | - <format/> | |
| 1091 | - </field> | |
| 1092 | - <field> | |
| 1093 | - <name>fcno22_bctype</name> | |
| 1094 | - <type>String</type> | |
| 1095 | - <format/> | |
| 1096 | - </field> | |
| 1097 | - <field> | |
| 1098 | - <name>fcno22_xldir</name> | |
| 1099 | - <type>String</type> | |
| 1100 | - <format/> | |
| 1101 | - </field> | |
| 1102 | - <field> | |
| 1103 | - <name>fcno22_isfb</name> | |
| 1104 | - <type>String</type> | |
| 1105 | - <format/> | |
| 1106 | - </field> | |
| 1107 | - <field> | |
| 1108 | - <name>fcno23_id</name> | |
| 1109 | - <type>String</type> | |
| 1110 | - <format/> | |
| 1111 | - </field> | |
| 1112 | - <field> | |
| 1113 | - <name>fcno23_fcsj</name> | |
| 1114 | - <type>String</type> | |
| 1115 | - <format/> | |
| 1116 | - </field> | |
| 1117 | - <field> | |
| 1118 | - <name>fcno23_jhlc</name> | |
| 1119 | - <type>None</type> | |
| 1120 | - <format/> | |
| 1121 | - </field> | |
| 1122 | - <field> | |
| 1123 | - <name>fcno23_zdname</name> | |
| 1124 | - <type>String</type> | |
| 1125 | - <format/> | |
| 1126 | - </field> | |
| 1127 | - <field> | |
| 1128 | - <name>fcno23_bctype</name> | |
| 1129 | - <type>String</type> | |
| 1130 | - <format/> | |
| 1131 | - </field> | |
| 1132 | - <field> | |
| 1133 | - <name>fcno23_xldir</name> | |
| 1134 | - <type>String</type> | |
| 1135 | - <format/> | |
| 1136 | - </field> | |
| 1137 | - <field> | |
| 1138 | - <name>fcno23_isfb</name> | |
| 1139 | - <type>String</type> | |
| 1140 | - <format/> | |
| 1141 | - </field> | |
| 1142 | - <field> | |
| 1143 | - <name>fcno24_id</name> | |
| 1144 | - <type>String</type> | |
| 1145 | - <format/> | |
| 1146 | - </field> | |
| 1147 | - <field> | |
| 1148 | - <name>fcno24_fcsj</name> | |
| 1149 | - <type>String</type> | |
| 1150 | - <format/> | |
| 1151 | - </field> | |
| 1152 | - <field> | |
| 1153 | - <name>fcno24_jhlc</name> | |
| 1154 | - <type>None</type> | |
| 1155 | - <format/> | |
| 1156 | - </field> | |
| 1157 | - <field> | |
| 1158 | - <name>fcno24_zdname</name> | |
| 1159 | - <type>String</type> | |
| 1160 | - <format/> | |
| 1161 | - </field> | |
| 1162 | - <field> | |
| 1163 | - <name>fcno24_bctype</name> | |
| 1164 | - <type>String</type> | |
| 1165 | - <format/> | |
| 1166 | - </field> | |
| 1167 | - <field> | |
| 1168 | - <name>fcno24_xldir</name> | |
| 1169 | - <type>String</type> | |
| 1170 | - <format/> | |
| 1171 | - </field> | |
| 1172 | - <field> | |
| 1173 | - <name>fcno24_isfb</name> | |
| 1174 | - <type>String</type> | |
| 1175 | - <format/> | |
| 1176 | - </field> | |
| 1177 | - <field> | |
| 1178 | - <name>fcno25_id</name> | |
| 1179 | - <type>String</type> | |
| 1180 | - <format/> | |
| 1181 | - </field> | |
| 1182 | - <field> | |
| 1183 | - <name>fcno25_fcsj</name> | |
| 1184 | - <type>String</type> | |
| 1185 | - <format/> | |
| 1186 | - </field> | |
| 1187 | - <field> | |
| 1188 | - <name>fcno25_jhlc</name> | |
| 1189 | - <type>None</type> | |
| 1190 | - <format/> | |
| 1191 | - </field> | |
| 1192 | - <field> | |
| 1193 | - <name>fcno25_zdname</name> | |
| 1194 | - <type>String</type> | |
| 1195 | - <format/> | |
| 1196 | - </field> | |
| 1197 | - <field> | |
| 1198 | - <name>fcno25_bctype</name> | |
| 1199 | - <type>String</type> | |
| 1200 | - <format/> | |
| 1201 | - </field> | |
| 1202 | - <field> | |
| 1203 | - <name>fcno25_xldir</name> | |
| 1204 | - <type>String</type> | |
| 1205 | - <format/> | |
| 1206 | - </field> | |
| 1207 | - <field> | |
| 1208 | - <name>fcno25_isfb</name> | |
| 1209 | - <type>String</type> | |
| 1210 | - <format/> | |
| 1211 | - </field> | |
| 1212 | - <field> | |
| 1213 | - <name>fcno26_id</name> | |
| 1214 | - <type>String</type> | |
| 1215 | - <format/> | |
| 1216 | - </field> | |
| 1217 | - <field> | |
| 1218 | - <name>fcno26_fcsj</name> | |
| 1219 | - <type>String</type> | |
| 1220 | - <format/> | |
| 1221 | - </field> | |
| 1222 | - <field> | |
| 1223 | - <name>fcno26_jhlc</name> | |
| 1224 | - <type>None</type> | |
| 1225 | - <format/> | |
| 1226 | - </field> | |
| 1227 | - <field> | |
| 1228 | - <name>fcno26_zdname</name> | |
| 1229 | - <type>String</type> | |
| 1230 | - <format/> | |
| 1231 | - </field> | |
| 1232 | - <field> | |
| 1233 | - <name>fcno26_bctype</name> | |
| 1234 | - <type>String</type> | |
| 1235 | - <format/> | |
| 1236 | - </field> | |
| 1237 | - <field> | |
| 1238 | - <name>fcno26_xldir</name> | |
| 1239 | - <type>String</type> | |
| 1240 | - <format/> | |
| 1241 | - </field> | |
| 1242 | - <field> | |
| 1243 | - <name>fcno26_isfb</name> | |
| 1244 | - <type>String</type> | |
| 1245 | - <format/> | |
| 1246 | - </field> | |
| 1247 | - <field> | |
| 1248 | - <name>fcno27_id</name> | |
| 1249 | - <type>String</type> | |
| 1250 | - <format/> | |
| 1251 | - </field> | |
| 1252 | - <field> | |
| 1253 | - <name>fcno27_fcsj</name> | |
| 1254 | - <type>String</type> | |
| 1255 | - <format/> | |
| 1256 | - </field> | |
| 1257 | - <field> | |
| 1258 | - <name>fcno27_jhlc</name> | |
| 1259 | - <type>None</type> | |
| 1260 | - <format/> | |
| 1261 | - </field> | |
| 1262 | - <field> | |
| 1263 | - <name>fcno27_zdname</name> | |
| 1264 | - <type>String</type> | |
| 1265 | - <format/> | |
| 1266 | - </field> | |
| 1267 | - <field> | |
| 1268 | - <name>fcno27_bctype</name> | |
| 1269 | - <type>String</type> | |
| 1270 | - <format/> | |
| 1271 | - </field> | |
| 1272 | - <field> | |
| 1273 | - <name>fcno27_xldir</name> | |
| 1274 | - <type>String</type> | |
| 1275 | - <format/> | |
| 1276 | - </field> | |
| 1277 | - <field> | |
| 1278 | - <name>fcno27_isfb</name> | |
| 1279 | - <type>String</type> | |
| 1280 | - <format/> | |
| 1281 | - </field> | |
| 1282 | - <field> | |
| 1283 | - <name>fcno28_id</name> | |
| 1284 | - <type>String</type> | |
| 1285 | - <format/> | |
| 1286 | - </field> | |
| 1287 | - <field> | |
| 1288 | - <name>fcno28_fcsj</name> | |
| 1289 | - <type>String</type> | |
| 1290 | - <format/> | |
| 1291 | - </field> | |
| 1292 | - <field> | |
| 1293 | - <name>fcno28_jhlc</name> | |
| 1294 | - <type>None</type> | |
| 1295 | - <format/> | |
| 1296 | - </field> | |
| 1297 | - <field> | |
| 1298 | - <name>fcno28_zdname</name> | |
| 1299 | - <type>String</type> | |
| 1300 | - <format/> | |
| 1301 | - </field> | |
| 1302 | - <field> | |
| 1303 | - <name>fcno28_bctype</name> | |
| 1304 | - <type>String</type> | |
| 1305 | - <format/> | |
| 1306 | - </field> | |
| 1307 | - <field> | |
| 1308 | - <name>fcno28_xldir</name> | |
| 1309 | - <type>String</type> | |
| 1310 | - <format/> | |
| 1311 | - </field> | |
| 1312 | - <field> | |
| 1313 | - <name>fcno28_isfb</name> | |
| 1314 | - <type>String</type> | |
| 1315 | - <format/> | |
| 1316 | - </field> | |
| 1317 | - <field> | |
| 1318 | - <name>fcno29_id</name> | |
| 1319 | - <type>String</type> | |
| 1320 | - <format/> | |
| 1321 | - </field> | |
| 1322 | - <field> | |
| 1323 | - <name>fcno29_fcsj</name> | |
| 1324 | - <type>String</type> | |
| 1325 | - <format/> | |
| 1326 | - </field> | |
| 1327 | - <field> | |
| 1328 | - <name>fcno29_jhlc</name> | |
| 1329 | - <type>None</type> | |
| 1330 | - <format/> | |
| 1331 | - </field> | |
| 1332 | - <field> | |
| 1333 | - <name>fcno29_zdname</name> | |
| 1334 | - <type>String</type> | |
| 1335 | - <format/> | |
| 1336 | - </field> | |
| 1337 | - <field> | |
| 1338 | - <name>fcno29_bctype</name> | |
| 1339 | - <type>String</type> | |
| 1340 | - <format/> | |
| 1341 | - </field> | |
| 1342 | - <field> | |
| 1343 | - <name>fcno29_xldir</name> | |
| 1344 | - <type>String</type> | |
| 1345 | - <format/> | |
| 1346 | - </field> | |
| 1347 | - <field> | |
| 1348 | - <name>fcno29_isfb</name> | |
| 1349 | - <type>String</type> | |
| 1350 | - <format/> | |
| 1351 | - </field> | |
| 1352 | - <field> | |
| 1353 | - <name>fcno30_id</name> | |
| 1354 | - <type>String</type> | |
| 1355 | - <format/> | |
| 1356 | - </field> | |
| 1357 | - <field> | |
| 1358 | - <name>fcno30_fcsj</name> | |
| 1359 | - <type>String</type> | |
| 1360 | - <format/> | |
| 1361 | - </field> | |
| 1362 | - <field> | |
| 1363 | - <name>fcno30_jhlc</name> | |
| 1364 | - <type>None</type> | |
| 1365 | - <format/> | |
| 1366 | - </field> | |
| 1367 | - <field> | |
| 1368 | - <name>fcno30_zdname</name> | |
| 1369 | - <type>String</type> | |
| 1370 | - <format/> | |
| 1371 | - </field> | |
| 1372 | - <field> | |
| 1373 | - <name>fcno30_bctype</name> | |
| 1374 | - <type>String</type> | |
| 1375 | - <format/> | |
| 1376 | - </field> | |
| 1377 | - <field> | |
| 1378 | - <name>fcno30_xldir</name> | |
| 1379 | - <type>String</type> | |
| 1380 | - <format/> | |
| 1381 | - </field> | |
| 1382 | - <field> | |
| 1383 | - <name>fcno30_isfb</name> | |
| 1384 | - <type>String</type> | |
| 1385 | - <format/> | |
| 1386 | - </field> | |
| 1387 | - <field> | |
| 1388 | - <name>fcno31_id</name> | |
| 1389 | - <type>String</type> | |
| 1390 | - <format/> | |
| 1391 | - </field> | |
| 1392 | - <field> | |
| 1393 | - <name>fcno31_fcsj</name> | |
| 1394 | - <type>String</type> | |
| 1395 | - <format/> | |
| 1396 | - </field> | |
| 1397 | - <field> | |
| 1398 | - <name>fcno31_jhlc</name> | |
| 1399 | - <type>None</type> | |
| 1400 | - <format/> | |
| 1401 | - </field> | |
| 1402 | - <field> | |
| 1403 | - <name>fcno31_zdname</name> | |
| 1404 | - <type>String</type> | |
| 1405 | - <format/> | |
| 1406 | - </field> | |
| 1407 | - <field> | |
| 1408 | - <name>fcno31_bctype</name> | |
| 1409 | - <type>String</type> | |
| 1410 | - <format/> | |
| 1411 | - </field> | |
| 1412 | - <field> | |
| 1413 | - <name>fcno31_xldir</name> | |
| 1414 | - <type>String</type> | |
| 1415 | - <format/> | |
| 1416 | - </field> | |
| 1417 | - <field> | |
| 1418 | - <name>fcno31_isfb</name> | |
| 1419 | - <type>String</type> | |
| 1420 | - <format/> | |
| 1421 | - </field> | |
| 1422 | - <field> | |
| 1423 | - <name>fcno32_id</name> | |
| 1424 | - <type>String</type> | |
| 1425 | - <format/> | |
| 1426 | - </field> | |
| 1427 | - <field> | |
| 1428 | - <name>fcno32_fcsj</name> | |
| 1429 | - <type>String</type> | |
| 1430 | - <format/> | |
| 1431 | - </field> | |
| 1432 | - <field> | |
| 1433 | - <name>fcno32_jhlc</name> | |
| 1434 | - <type>None</type> | |
| 1435 | - <format/> | |
| 1436 | - </field> | |
| 1437 | - <field> | |
| 1438 | - <name>fcno32_zdname</name> | |
| 1439 | - <type>String</type> | |
| 1440 | - <format/> | |
| 1441 | - </field> | |
| 1442 | - <field> | |
| 1443 | - <name>fcno32_bctype</name> | |
| 1444 | - <type>String</type> | |
| 1445 | - <format/> | |
| 1446 | - </field> | |
| 1447 | - <field> | |
| 1448 | - <name>fcno32_xldir</name> | |
| 1449 | - <type>String</type> | |
| 1450 | - <format/> | |
| 1451 | - </field> | |
| 1452 | - <field> | |
| 1453 | - <name>fcno32_isfb</name> | |
| 1454 | - <type>String</type> | |
| 1455 | - <format/> | |
| 1456 | - </field> | |
| 1457 | - <field> | |
| 1458 | - <name>fcno33_id</name> | |
| 1459 | - <type>String</type> | |
| 1460 | - <format/> | |
| 1461 | - </field> | |
| 1462 | - <field> | |
| 1463 | - <name>fcno33_fcsj</name> | |
| 1464 | - <type>String</type> | |
| 1465 | - <format/> | |
| 1466 | - </field> | |
| 1467 | - <field> | |
| 1468 | - <name>fcno33_jhlc</name> | |
| 1469 | - <type>None</type> | |
| 1470 | - <format/> | |
| 1471 | - </field> | |
| 1472 | - <field> | |
| 1473 | - <name>fcno33_zdname</name> | |
| 1474 | - <type>String</type> | |
| 1475 | - <format/> | |
| 1476 | - </field> | |
| 1477 | - <field> | |
| 1478 | - <name>fcno33_bctype</name> | |
| 1479 | - <type>String</type> | |
| 1480 | - <format/> | |
| 1481 | - </field> | |
| 1482 | - <field> | |
| 1483 | - <name>fcno33_xldir</name> | |
| 1484 | - <type>String</type> | |
| 1485 | - <format/> | |
| 1486 | - </field> | |
| 1487 | - <field> | |
| 1488 | - <name>fcno33_isfb</name> | |
| 1489 | - <type>String</type> | |
| 1490 | - <format/> | |
| 1491 | - </field> | |
| 1492 | - <field> | |
| 1493 | - <name>fcno34_id</name> | |
| 1494 | - <type>String</type> | |
| 1495 | - <format/> | |
| 1496 | - </field> | |
| 1497 | - <field> | |
| 1498 | - <name>fcno34_fcsj</name> | |
| 1499 | - <type>String</type> | |
| 1500 | - <format/> | |
| 1501 | - </field> | |
| 1502 | - <field> | |
| 1503 | - <name>fcno34_jhlc</name> | |
| 1504 | - <type>None</type> | |
| 1505 | - <format/> | |
| 1506 | - </field> | |
| 1507 | - <field> | |
| 1508 | - <name>fcno34_zdname</name> | |
| 1509 | - <type>String</type> | |
| 1510 | - <format/> | |
| 1511 | - </field> | |
| 1512 | - <field> | |
| 1513 | - <name>fcno34_bctype</name> | |
| 1514 | - <type>String</type> | |
| 1515 | - <format/> | |
| 1516 | - </field> | |
| 1517 | - <field> | |
| 1518 | - <name>fcno34_xldir</name> | |
| 1519 | - <type>String</type> | |
| 1520 | - <format/> | |
| 1521 | - </field> | |
| 1522 | - <field> | |
| 1523 | - <name>fcno34_isfb</name> | |
| 1524 | - <type>String</type> | |
| 1525 | - <format/> | |
| 1526 | - </field> | |
| 1527 | - <field> | |
| 1528 | - <name>fcno35_id</name> | |
| 1529 | - <type>String</type> | |
| 1530 | - <format/> | |
| 1531 | - </field> | |
| 1532 | - <field> | |
| 1533 | - <name>fcno35_fcsj</name> | |
| 1534 | - <type>String</type> | |
| 1535 | - <format/> | |
| 1536 | - </field> | |
| 1537 | - <field> | |
| 1538 | - <name>fcno35_jhlc</name> | |
| 1539 | - <type>None</type> | |
| 1540 | - <format/> | |
| 1541 | - </field> | |
| 1542 | - <field> | |
| 1543 | - <name>fcno35_zdname</name> | |
| 1544 | - <type>String</type> | |
| 1545 | - <format/> | |
| 1546 | - </field> | |
| 1547 | - <field> | |
| 1548 | - <name>fcno35_bctype</name> | |
| 1549 | - <type>String</type> | |
| 1550 | - <format/> | |
| 1551 | - </field> | |
| 1552 | - <field> | |
| 1553 | - <name>fcno35_xldir</name> | |
| 1554 | - <type>String</type> | |
| 1555 | - <format/> | |
| 1556 | - </field> | |
| 1557 | - <field> | |
| 1558 | - <name>fcno35_isfb</name> | |
| 1559 | - <type>String</type> | |
| 1560 | - <format/> | |
| 1561 | - </field> | |
| 1562 | - </fields> | |
| 1563 | - <custom> | |
| 1564 | - <header_font_name>arial</header_font_name> | |
| 1565 | - <header_font_size>10</header_font_size> | |
| 1566 | - <header_font_bold>N</header_font_bold> | |
| 1567 | - <header_font_italic>N</header_font_italic> | |
| 1568 | - <header_font_underline>no</header_font_underline> | |
| 1569 | - <header_font_orientation>horizontal</header_font_orientation> | |
| 1570 | - <header_font_color>black</header_font_color> | |
| 1571 | - <header_background_color>none</header_background_color> | |
| 1572 | - <header_row_height>255</header_row_height> | |
| 1573 | - <header_alignment>left</header_alignment> | |
| 1574 | - <header_image/> | |
| 1575 | - <row_font_name>arial</row_font_name> | |
| 1576 | - <row_font_size>10</row_font_size> | |
| 1577 | - <row_font_color>black</row_font_color> | |
| 1578 | - <row_background_color>none</row_background_color> | |
| 1579 | - </custom> | |
| 1580 | - <cluster_schema/> | |
| 1581 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1582 | - <xloc>696</xloc> | |
| 1583 | - <yloc>476</yloc> | |
| 1584 | - <draw>Y</draw> | |
| 1585 | - </GUI> | |
| 1586 | - </step> | |
| 1587 | - | |
| 1588 | - <step> | |
| 1589 | - <name>列转行</name> | |
| 1590 | - <type>Denormaliser</type> | |
| 1591 | - <description/> | |
| 1592 | - <distribute>Y</distribute> | |
| 1593 | - <custom_distribution/> | |
| 1594 | - <copies>1</copies> | |
| 1595 | - <partitioning> | |
| 1596 | - <method>none</method> | |
| 1597 | - <schema_name/> | |
| 1598 | - </partitioning> | |
| 1599 | - <key_field>fcno</key_field> | |
| 1600 | - <group> | |
| 1601 | - <field> | |
| 1602 | - <name>lp</name> | |
| 1603 | - </field> | |
| 1604 | - </group> | |
| 1605 | - <fields> | |
| 1606 | - <field> | |
| 1607 | - <field_name>id</field_name> | |
| 1608 | - <key_value>1</key_value> | |
| 1609 | - <target_name>fcno1_id</target_name> | |
| 1610 | - <target_type>String</target_type> | |
| 1611 | - <target_format/> | |
| 1612 | - <target_length>-1</target_length> | |
| 1613 | - <target_precision>-1</target_precision> | |
| 1614 | - <target_decimal_symbol/> | |
| 1615 | - <target_grouping_symbol/> | |
| 1616 | - <target_currency_symbol/> | |
| 1617 | - <target_null_string/> | |
| 1618 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1619 | - </field> | |
| 1620 | - <field> | |
| 1621 | - <field_name>fcsj</field_name> | |
| 1622 | - <key_value>1</key_value> | |
| 1623 | - <target_name>fcno1_fcsj</target_name> | |
| 1624 | - <target_type>String</target_type> | |
| 1625 | - <target_format/> | |
| 1626 | - <target_length>-1</target_length> | |
| 1627 | - <target_precision>-1</target_precision> | |
| 1628 | - <target_decimal_symbol/> | |
| 1629 | - <target_grouping_symbol/> | |
| 1630 | - <target_currency_symbol/> | |
| 1631 | - <target_null_string/> | |
| 1632 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1633 | - </field> | |
| 1634 | - <field> | |
| 1635 | - <field_name>jhlc</field_name> | |
| 1636 | - <key_value>1</key_value> | |
| 1637 | - <target_name>fcno1_jhlc</target_name> | |
| 1638 | - <target_type>String</target_type> | |
| 1639 | - <target_format/> | |
| 1640 | - <target_length>-1</target_length> | |
| 1641 | - <target_precision>-1</target_precision> | |
| 1642 | - <target_decimal_symbol/> | |
| 1643 | - <target_grouping_symbol/> | |
| 1644 | - <target_currency_symbol/> | |
| 1645 | - <target_null_string/> | |
| 1646 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1647 | - </field> | |
| 1648 | - <field> | |
| 1649 | - <field_name>fczdName</field_name> | |
| 1650 | - <key_value>1</key_value> | |
| 1651 | - <target_name>fcno1_zdname</target_name> | |
| 1652 | - <target_type>String</target_type> | |
| 1653 | - <target_format/> | |
| 1654 | - <target_length>-1</target_length> | |
| 1655 | - <target_precision>-1</target_precision> | |
| 1656 | - <target_decimal_symbol/> | |
| 1657 | - <target_grouping_symbol/> | |
| 1658 | - <target_currency_symbol/> | |
| 1659 | - <target_null_string/> | |
| 1660 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1661 | - </field> | |
| 1662 | - <field> | |
| 1663 | - <field_name>bc_type</field_name> | |
| 1664 | - <key_value>1</key_value> | |
| 1665 | - <target_name>fcno1_bctype</target_name> | |
| 1666 | - <target_type>String</target_type> | |
| 1667 | - <target_format/> | |
| 1668 | - <target_length>-1</target_length> | |
| 1669 | - <target_precision>-1</target_precision> | |
| 1670 | - <target_decimal_symbol/> | |
| 1671 | - <target_grouping_symbol/> | |
| 1672 | - <target_currency_symbol/> | |
| 1673 | - <target_null_string/> | |
| 1674 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1675 | - </field> | |
| 1676 | - <field> | |
| 1677 | - <field_name>xl_dir</field_name> | |
| 1678 | - <key_value>1</key_value> | |
| 1679 | - <target_name>fcno1_xldir</target_name> | |
| 1680 | - <target_type>String</target_type> | |
| 1681 | - <target_format/> | |
| 1682 | - <target_length>-1</target_length> | |
| 1683 | - <target_precision>-1</target_precision> | |
| 1684 | - <target_decimal_symbol/> | |
| 1685 | - <target_grouping_symbol/> | |
| 1686 | - <target_currency_symbol/> | |
| 1687 | - <target_null_string/> | |
| 1688 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1689 | - </field> | |
| 1690 | - <field> | |
| 1691 | - <field_name>isfb</field_name> | |
| 1692 | - <key_value>1</key_value> | |
| 1693 | - <target_name>fcno1_isfb</target_name> | |
| 1694 | - <target_type>String</target_type> | |
| 1695 | - <target_format/> | |
| 1696 | - <target_length>-1</target_length> | |
| 1697 | - <target_precision>-1</target_precision> | |
| 1698 | - <target_decimal_symbol/> | |
| 1699 | - <target_grouping_symbol/> | |
| 1700 | - <target_currency_symbol/> | |
| 1701 | - <target_null_string/> | |
| 1702 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1703 | - </field> | |
| 1704 | - <field> | |
| 1705 | - <field_name>id</field_name> | |
| 1706 | - <key_value>2</key_value> | |
| 1707 | - <target_name>fcno2_id</target_name> | |
| 1708 | - <target_type>String</target_type> | |
| 1709 | - <target_format/> | |
| 1710 | - <target_length>-1</target_length> | |
| 1711 | - <target_precision>-1</target_precision> | |
| 1712 | - <target_decimal_symbol/> | |
| 1713 | - <target_grouping_symbol/> | |
| 1714 | - <target_currency_symbol/> | |
| 1715 | - <target_null_string/> | |
| 1716 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1717 | - </field> | |
| 1718 | - <field> | |
| 1719 | - <field_name>fcsj</field_name> | |
| 1720 | - <key_value>2</key_value> | |
| 1721 | - <target_name>fcno2_fcsj</target_name> | |
| 1722 | - <target_type>String</target_type> | |
| 1723 | - <target_format/> | |
| 1724 | - <target_length>-1</target_length> | |
| 1725 | - <target_precision>-1</target_precision> | |
| 1726 | - <target_decimal_symbol/> | |
| 1727 | - <target_grouping_symbol/> | |
| 1728 | - <target_currency_symbol/> | |
| 1729 | - <target_null_string/> | |
| 1730 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1731 | - </field> | |
| 1732 | - <field> | |
| 1733 | - <field_name>jhlc</field_name> | |
| 1734 | - <key_value>2</key_value> | |
| 1735 | - <target_name>fcno2_jhlc</target_name> | |
| 1736 | - <target_type>String</target_type> | |
| 1737 | - <target_format/> | |
| 1738 | - <target_length>-1</target_length> | |
| 1739 | - <target_precision>-1</target_precision> | |
| 1740 | - <target_decimal_symbol/> | |
| 1741 | - <target_grouping_symbol/> | |
| 1742 | - <target_currency_symbol/> | |
| 1743 | - <target_null_string/> | |
| 1744 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1745 | - </field> | |
| 1746 | - <field> | |
| 1747 | - <field_name>fczdName</field_name> | |
| 1748 | - <key_value>2</key_value> | |
| 1749 | - <target_name>fcno2_zdname</target_name> | |
| 1750 | - <target_type>String</target_type> | |
| 1751 | - <target_format/> | |
| 1752 | - <target_length>-1</target_length> | |
| 1753 | - <target_precision>-1</target_precision> | |
| 1754 | - <target_decimal_symbol/> | |
| 1755 | - <target_grouping_symbol/> | |
| 1756 | - <target_currency_symbol/> | |
| 1757 | - <target_null_string/> | |
| 1758 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1759 | - </field> | |
| 1760 | - <field> | |
| 1761 | - <field_name>bc_type</field_name> | |
| 1762 | - <key_value>2</key_value> | |
| 1763 | - <target_name>fcno2_bctype</target_name> | |
| 1764 | - <target_type>String</target_type> | |
| 1765 | - <target_format/> | |
| 1766 | - <target_length>-1</target_length> | |
| 1767 | - <target_precision>-1</target_precision> | |
| 1768 | - <target_decimal_symbol/> | |
| 1769 | - <target_grouping_symbol/> | |
| 1770 | - <target_currency_symbol/> | |
| 1771 | - <target_null_string/> | |
| 1772 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1773 | - </field> | |
| 1774 | - <field> | |
| 1775 | - <field_name>xl_dir</field_name> | |
| 1776 | - <key_value>2</key_value> | |
| 1777 | - <target_name>fcno2_xldir</target_name> | |
| 1778 | - <target_type>String</target_type> | |
| 1779 | - <target_format/> | |
| 1780 | - <target_length>-1</target_length> | |
| 1781 | - <target_precision>-1</target_precision> | |
| 1782 | - <target_decimal_symbol/> | |
| 1783 | - <target_grouping_symbol/> | |
| 1784 | - <target_currency_symbol/> | |
| 1785 | - <target_null_string/> | |
| 1786 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1787 | - </field> | |
| 1788 | - <field> | |
| 1789 | - <field_name>isfb</field_name> | |
| 1790 | - <key_value>2</key_value> | |
| 1791 | - <target_name>fcno2_isfb</target_name> | |
| 1792 | - <target_type>String</target_type> | |
| 1793 | - <target_format/> | |
| 1794 | - <target_length>-1</target_length> | |
| 1795 | - <target_precision>-1</target_precision> | |
| 1796 | - <target_decimal_symbol/> | |
| 1797 | - <target_grouping_symbol/> | |
| 1798 | - <target_currency_symbol/> | |
| 1799 | - <target_null_string/> | |
| 1800 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1801 | - </field> | |
| 1802 | - <field> | |
| 1803 | - <field_name>id</field_name> | |
| 1804 | - <key_value>3</key_value> | |
| 1805 | - <target_name>fcno3_id</target_name> | |
| 1806 | - <target_type>String</target_type> | |
| 1807 | - <target_format/> | |
| 1808 | - <target_length>-1</target_length> | |
| 1809 | - <target_precision>-1</target_precision> | |
| 1810 | - <target_decimal_symbol/> | |
| 1811 | - <target_grouping_symbol/> | |
| 1812 | - <target_currency_symbol/> | |
| 1813 | - <target_null_string/> | |
| 1814 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1815 | - </field> | |
| 1816 | - <field> | |
| 1817 | - <field_name>fcsj</field_name> | |
| 1818 | - <key_value>3</key_value> | |
| 1819 | - <target_name>fcno3_fcsj</target_name> | |
| 1820 | - <target_type>String</target_type> | |
| 1821 | - <target_format/> | |
| 1822 | - <target_length>-1</target_length> | |
| 1823 | - <target_precision>-1</target_precision> | |
| 1824 | - <target_decimal_symbol/> | |
| 1825 | - <target_grouping_symbol/> | |
| 1826 | - <target_currency_symbol/> | |
| 1827 | - <target_null_string/> | |
| 1828 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1829 | - </field> | |
| 1830 | - <field> | |
| 1831 | - <field_name>jhlc</field_name> | |
| 1832 | - <key_value>3</key_value> | |
| 1833 | - <target_name>fcno3_jhlc</target_name> | |
| 1834 | - <target_type>String</target_type> | |
| 1835 | - <target_format/> | |
| 1836 | - <target_length>-1</target_length> | |
| 1837 | - <target_precision>-1</target_precision> | |
| 1838 | - <target_decimal_symbol/> | |
| 1839 | - <target_grouping_symbol/> | |
| 1840 | - <target_currency_symbol/> | |
| 1841 | - <target_null_string/> | |
| 1842 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1843 | - </field> | |
| 1844 | - <field> | |
| 1845 | - <field_name>fczdName</field_name> | |
| 1846 | - <key_value>3</key_value> | |
| 1847 | - <target_name>fcno3_zdname</target_name> | |
| 1848 | - <target_type>String</target_type> | |
| 1849 | - <target_format/> | |
| 1850 | - <target_length>-1</target_length> | |
| 1851 | - <target_precision>-1</target_precision> | |
| 1852 | - <target_decimal_symbol/> | |
| 1853 | - <target_grouping_symbol/> | |
| 1854 | - <target_currency_symbol/> | |
| 1855 | - <target_null_string/> | |
| 1856 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1857 | - </field> | |
| 1858 | - <field> | |
| 1859 | - <field_name>bc_type</field_name> | |
| 1860 | - <key_value>3</key_value> | |
| 1861 | - <target_name>fcno3_bctype</target_name> | |
| 1862 | - <target_type>String</target_type> | |
| 1863 | - <target_format/> | |
| 1864 | - <target_length>-1</target_length> | |
| 1865 | - <target_precision>-1</target_precision> | |
| 1866 | - <target_decimal_symbol/> | |
| 1867 | - <target_grouping_symbol/> | |
| 1868 | - <target_currency_symbol/> | |
| 1869 | - <target_null_string/> | |
| 1870 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1871 | - </field> | |
| 1872 | - <field> | |
| 1873 | - <field_name>xl_dir</field_name> | |
| 1874 | - <key_value>3</key_value> | |
| 1875 | - <target_name>fcno3_xldir</target_name> | |
| 1876 | - <target_type>String</target_type> | |
| 1877 | - <target_format/> | |
| 1878 | - <target_length>-1</target_length> | |
| 1879 | - <target_precision>-1</target_precision> | |
| 1880 | - <target_decimal_symbol/> | |
| 1881 | - <target_grouping_symbol/> | |
| 1882 | - <target_currency_symbol/> | |
| 1883 | - <target_null_string/> | |
| 1884 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1885 | - </field> | |
| 1886 | - <field> | |
| 1887 | - <field_name>isfb</field_name> | |
| 1888 | - <key_value>3</key_value> | |
| 1889 | - <target_name>fcno3_isfb</target_name> | |
| 1890 | - <target_type>String</target_type> | |
| 1891 | - <target_format/> | |
| 1892 | - <target_length>-1</target_length> | |
| 1893 | - <target_precision>-1</target_precision> | |
| 1894 | - <target_decimal_symbol/> | |
| 1895 | - <target_grouping_symbol/> | |
| 1896 | - <target_currency_symbol/> | |
| 1897 | - <target_null_string/> | |
| 1898 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1899 | - </field> | |
| 1900 | - <field> | |
| 1901 | - <field_name>id</field_name> | |
| 1902 | - <key_value>4</key_value> | |
| 1903 | - <target_name>fcno4_id</target_name> | |
| 1904 | - <target_type>String</target_type> | |
| 1905 | - <target_format/> | |
| 1906 | - <target_length>-1</target_length> | |
| 1907 | - <target_precision>-1</target_precision> | |
| 1908 | - <target_decimal_symbol/> | |
| 1909 | - <target_grouping_symbol/> | |
| 1910 | - <target_currency_symbol/> | |
| 1911 | - <target_null_string/> | |
| 1912 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1913 | - </field> | |
| 1914 | - <field> | |
| 1915 | - <field_name>fcsj</field_name> | |
| 1916 | - <key_value>4</key_value> | |
| 1917 | - <target_name>fcno4_fcsj</target_name> | |
| 1918 | - <target_type>String</target_type> | |
| 1919 | - <target_format/> | |
| 1920 | - <target_length>-1</target_length> | |
| 1921 | - <target_precision>-1</target_precision> | |
| 1922 | - <target_decimal_symbol/> | |
| 1923 | - <target_grouping_symbol/> | |
| 1924 | - <target_currency_symbol/> | |
| 1925 | - <target_null_string/> | |
| 1926 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1927 | - </field> | |
| 1928 | - <field> | |
| 1929 | - <field_name>jhlc</field_name> | |
| 1930 | - <key_value>4</key_value> | |
| 1931 | - <target_name>fcno5_jhlc</target_name> | |
| 1932 | - <target_type>String</target_type> | |
| 1933 | - <target_format/> | |
| 1934 | - <target_length>-1</target_length> | |
| 1935 | - <target_precision>-1</target_precision> | |
| 1936 | - <target_decimal_symbol/> | |
| 1937 | - <target_grouping_symbol/> | |
| 1938 | - <target_currency_symbol/> | |
| 1939 | - <target_null_string/> | |
| 1940 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1941 | - </field> | |
| 1942 | - <field> | |
| 1943 | - <field_name>fczdName</field_name> | |
| 1944 | - <key_value>4</key_value> | |
| 1945 | - <target_name>fcno4_zdname</target_name> | |
| 1946 | - <target_type>String</target_type> | |
| 1947 | - <target_format/> | |
| 1948 | - <target_length>-1</target_length> | |
| 1949 | - <target_precision>-1</target_precision> | |
| 1950 | - <target_decimal_symbol/> | |
| 1951 | - <target_grouping_symbol/> | |
| 1952 | - <target_currency_symbol/> | |
| 1953 | - <target_null_string/> | |
| 1954 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1955 | - </field> | |
| 1956 | - <field> | |
| 1957 | - <field_name>bc_type</field_name> | |
| 1958 | - <key_value>4</key_value> | |
| 1959 | - <target_name>fcno4_bctype</target_name> | |
| 1960 | - <target_type>String</target_type> | |
| 1961 | - <target_format/> | |
| 1962 | - <target_length>-1</target_length> | |
| 1963 | - <target_precision>-1</target_precision> | |
| 1964 | - <target_decimal_symbol/> | |
| 1965 | - <target_grouping_symbol/> | |
| 1966 | - <target_currency_symbol/> | |
| 1967 | - <target_null_string/> | |
| 1968 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1969 | - </field> | |
| 1970 | - <field> | |
| 1971 | - <field_name>xl_dir</field_name> | |
| 1972 | - <key_value>4</key_value> | |
| 1973 | - <target_name>fcno4_xldir</target_name> | |
| 1974 | - <target_type>String</target_type> | |
| 1975 | - <target_format/> | |
| 1976 | - <target_length>-1</target_length> | |
| 1977 | - <target_precision>-1</target_precision> | |
| 1978 | - <target_decimal_symbol/> | |
| 1979 | - <target_grouping_symbol/> | |
| 1980 | - <target_currency_symbol/> | |
| 1981 | - <target_null_string/> | |
| 1982 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1983 | - </field> | |
| 1984 | - <field> | |
| 1985 | - <field_name>isfb</field_name> | |
| 1986 | - <key_value>4</key_value> | |
| 1987 | - <target_name>fcno4_isfb</target_name> | |
| 1988 | - <target_type>String</target_type> | |
| 1989 | - <target_format/> | |
| 1990 | - <target_length>-1</target_length> | |
| 1991 | - <target_precision>-1</target_precision> | |
| 1992 | - <target_decimal_symbol/> | |
| 1993 | - <target_grouping_symbol/> | |
| 1994 | - <target_currency_symbol/> | |
| 1995 | - <target_null_string/> | |
| 1996 | - <target_aggregation_type>-</target_aggregation_type> | |
| 1997 | - </field> | |
| 1998 | - <field> | |
| 1999 | - <field_name>id</field_name> | |
| 2000 | - <key_value>5</key_value> | |
| 2001 | - <target_name>fcno5_id</target_name> | |
| 2002 | - <target_type>String</target_type> | |
| 2003 | - <target_format/> | |
| 2004 | - <target_length>-1</target_length> | |
| 2005 | - <target_precision>-1</target_precision> | |
| 2006 | - <target_decimal_symbol/> | |
| 2007 | - <target_grouping_symbol/> | |
| 2008 | - <target_currency_symbol/> | |
| 2009 | - <target_null_string/> | |
| 2010 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2011 | - </field> | |
| 2012 | - <field> | |
| 2013 | - <field_name>fcsj</field_name> | |
| 2014 | - <key_value>5</key_value> | |
| 2015 | - <target_name>fcno5_fcsj</target_name> | |
| 2016 | - <target_type>String</target_type> | |
| 2017 | - <target_format/> | |
| 2018 | - <target_length>-1</target_length> | |
| 2019 | - <target_precision>-1</target_precision> | |
| 2020 | - <target_decimal_symbol/> | |
| 2021 | - <target_grouping_symbol/> | |
| 2022 | - <target_currency_symbol/> | |
| 2023 | - <target_null_string/> | |
| 2024 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2025 | - </field> | |
| 2026 | - <field> | |
| 2027 | - <field_name>jhlc</field_name> | |
| 2028 | - <key_value>5</key_value> | |
| 2029 | - <target_name>fcno5_jhlc</target_name> | |
| 2030 | - <target_type>String</target_type> | |
| 2031 | - <target_format/> | |
| 2032 | - <target_length>-1</target_length> | |
| 2033 | - <target_precision>-1</target_precision> | |
| 2034 | - <target_decimal_symbol/> | |
| 2035 | - <target_grouping_symbol/> | |
| 2036 | - <target_currency_symbol/> | |
| 2037 | - <target_null_string/> | |
| 2038 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2039 | - </field> | |
| 2040 | - <field> | |
| 2041 | - <field_name>fczdName</field_name> | |
| 2042 | - <key_value>5</key_value> | |
| 2043 | - <target_name>fcno5_zdname</target_name> | |
| 2044 | - <target_type>String</target_type> | |
| 2045 | - <target_format/> | |
| 2046 | - <target_length>-1</target_length> | |
| 2047 | - <target_precision>-1</target_precision> | |
| 2048 | - <target_decimal_symbol/> | |
| 2049 | - <target_grouping_symbol/> | |
| 2050 | - <target_currency_symbol/> | |
| 2051 | - <target_null_string/> | |
| 2052 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2053 | - </field> | |
| 2054 | - <field> | |
| 2055 | - <field_name>bc_type</field_name> | |
| 2056 | - <key_value>5</key_value> | |
| 2057 | - <target_name>fcno5_bctype</target_name> | |
| 2058 | - <target_type>String</target_type> | |
| 2059 | - <target_format/> | |
| 2060 | - <target_length>-1</target_length> | |
| 2061 | - <target_precision>-1</target_precision> | |
| 2062 | - <target_decimal_symbol/> | |
| 2063 | - <target_grouping_symbol/> | |
| 2064 | - <target_currency_symbol/> | |
| 2065 | - <target_null_string/> | |
| 2066 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2067 | - </field> | |
| 2068 | - <field> | |
| 2069 | - <field_name>xl_dir</field_name> | |
| 2070 | - <key_value>5</key_value> | |
| 2071 | - <target_name>fcno5_xldir</target_name> | |
| 2072 | - <target_type>String</target_type> | |
| 2073 | - <target_format/> | |
| 2074 | - <target_length>-1</target_length> | |
| 2075 | - <target_precision>-1</target_precision> | |
| 2076 | - <target_decimal_symbol/> | |
| 2077 | - <target_grouping_symbol/> | |
| 2078 | - <target_currency_symbol/> | |
| 2079 | - <target_null_string/> | |
| 2080 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2081 | - </field> | |
| 2082 | - <field> | |
| 2083 | - <field_name>isfb</field_name> | |
| 2084 | - <key_value>5</key_value> | |
| 2085 | - <target_name>fcno5_isfb</target_name> | |
| 2086 | - <target_type>String</target_type> | |
| 2087 | - <target_format/> | |
| 2088 | - <target_length>-1</target_length> | |
| 2089 | - <target_precision>-1</target_precision> | |
| 2090 | - <target_decimal_symbol/> | |
| 2091 | - <target_grouping_symbol/> | |
| 2092 | - <target_currency_symbol/> | |
| 2093 | - <target_null_string/> | |
| 2094 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2095 | - </field> | |
| 2096 | - <field> | |
| 2097 | - <field_name>id</field_name> | |
| 2098 | - <key_value>6</key_value> | |
| 2099 | - <target_name>fcno6_id</target_name> | |
| 2100 | - <target_type>String</target_type> | |
| 2101 | - <target_format/> | |
| 2102 | - <target_length>-1</target_length> | |
| 2103 | - <target_precision>-1</target_precision> | |
| 2104 | - <target_decimal_symbol/> | |
| 2105 | - <target_grouping_symbol/> | |
| 2106 | - <target_currency_symbol/> | |
| 2107 | - <target_null_string/> | |
| 2108 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2109 | - </field> | |
| 2110 | - <field> | |
| 2111 | - <field_name>fcsj</field_name> | |
| 2112 | - <key_value>6</key_value> | |
| 2113 | - <target_name>fcno6_fcsj</target_name> | |
| 2114 | - <target_type>String</target_type> | |
| 2115 | - <target_format/> | |
| 2116 | - <target_length>-1</target_length> | |
| 2117 | - <target_precision>-1</target_precision> | |
| 2118 | - <target_decimal_symbol/> | |
| 2119 | - <target_grouping_symbol/> | |
| 2120 | - <target_currency_symbol/> | |
| 2121 | - <target_null_string/> | |
| 2122 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2123 | - </field> | |
| 2124 | - <field> | |
| 2125 | - <field_name>jhlc</field_name> | |
| 2126 | - <key_value>6</key_value> | |
| 2127 | - <target_name>fcno6_jhlc</target_name> | |
| 2128 | - <target_type>String</target_type> | |
| 2129 | - <target_format/> | |
| 2130 | - <target_length>-1</target_length> | |
| 2131 | - <target_precision>-1</target_precision> | |
| 2132 | - <target_decimal_symbol/> | |
| 2133 | - <target_grouping_symbol/> | |
| 2134 | - <target_currency_symbol/> | |
| 2135 | - <target_null_string/> | |
| 2136 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2137 | - </field> | |
| 2138 | - <field> | |
| 2139 | - <field_name>fczdName</field_name> | |
| 2140 | - <key_value>6</key_value> | |
| 2141 | - <target_name>fcno6_zdname</target_name> | |
| 2142 | - <target_type>String</target_type> | |
| 2143 | - <target_format/> | |
| 2144 | - <target_length>-1</target_length> | |
| 2145 | - <target_precision>-1</target_precision> | |
| 2146 | - <target_decimal_symbol/> | |
| 2147 | - <target_grouping_symbol/> | |
| 2148 | - <target_currency_symbol/> | |
| 2149 | - <target_null_string/> | |
| 2150 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2151 | - </field> | |
| 2152 | - <field> | |
| 2153 | - <field_name>bc_type</field_name> | |
| 2154 | - <key_value>6</key_value> | |
| 2155 | - <target_name>fcno6_bctype</target_name> | |
| 2156 | - <target_type>String</target_type> | |
| 2157 | - <target_format/> | |
| 2158 | - <target_length>-1</target_length> | |
| 2159 | - <target_precision>-1</target_precision> | |
| 2160 | - <target_decimal_symbol/> | |
| 2161 | - <target_grouping_symbol/> | |
| 2162 | - <target_currency_symbol/> | |
| 2163 | - <target_null_string/> | |
| 2164 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2165 | - </field> | |
| 2166 | - <field> | |
| 2167 | - <field_name>xl_dir</field_name> | |
| 2168 | - <key_value>6</key_value> | |
| 2169 | - <target_name>fcno6_xldir</target_name> | |
| 2170 | - <target_type>String</target_type> | |
| 2171 | - <target_format/> | |
| 2172 | - <target_length>-1</target_length> | |
| 2173 | - <target_precision>-1</target_precision> | |
| 2174 | - <target_decimal_symbol/> | |
| 2175 | - <target_grouping_symbol/> | |
| 2176 | - <target_currency_symbol/> | |
| 2177 | - <target_null_string/> | |
| 2178 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2179 | - </field> | |
| 2180 | - <field> | |
| 2181 | - <field_name>isfb</field_name> | |
| 2182 | - <key_value>6</key_value> | |
| 2183 | - <target_name>fcno6_isfb</target_name> | |
| 2184 | - <target_type>String</target_type> | |
| 2185 | - <target_format/> | |
| 2186 | - <target_length>-1</target_length> | |
| 2187 | - <target_precision>-1</target_precision> | |
| 2188 | - <target_decimal_symbol/> | |
| 2189 | - <target_grouping_symbol/> | |
| 2190 | - <target_currency_symbol/> | |
| 2191 | - <target_null_string/> | |
| 2192 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2193 | - </field> | |
| 2194 | - <field> | |
| 2195 | - <field_name>id</field_name> | |
| 2196 | - <key_value>7</key_value> | |
| 2197 | - <target_name>fcno7_id</target_name> | |
| 2198 | - <target_type>String</target_type> | |
| 2199 | - <target_format/> | |
| 2200 | - <target_length>-1</target_length> | |
| 2201 | - <target_precision>-1</target_precision> | |
| 2202 | - <target_decimal_symbol/> | |
| 2203 | - <target_grouping_symbol/> | |
| 2204 | - <target_currency_symbol/> | |
| 2205 | - <target_null_string/> | |
| 2206 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2207 | - </field> | |
| 2208 | - <field> | |
| 2209 | - <field_name>fcsj</field_name> | |
| 2210 | - <key_value>7</key_value> | |
| 2211 | - <target_name>fcno7_fcsj</target_name> | |
| 2212 | - <target_type>String</target_type> | |
| 2213 | - <target_format/> | |
| 2214 | - <target_length>-1</target_length> | |
| 2215 | - <target_precision>-1</target_precision> | |
| 2216 | - <target_decimal_symbol/> | |
| 2217 | - <target_grouping_symbol/> | |
| 2218 | - <target_currency_symbol/> | |
| 2219 | - <target_null_string/> | |
| 2220 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2221 | - </field> | |
| 2222 | - <field> | |
| 2223 | - <field_name>jhlc</field_name> | |
| 2224 | - <key_value>7</key_value> | |
| 2225 | - <target_name>fcno7_jhlc</target_name> | |
| 2226 | - <target_type>String</target_type> | |
| 2227 | - <target_format/> | |
| 2228 | - <target_length>-1</target_length> | |
| 2229 | - <target_precision>-1</target_precision> | |
| 2230 | - <target_decimal_symbol/> | |
| 2231 | - <target_grouping_symbol/> | |
| 2232 | - <target_currency_symbol/> | |
| 2233 | - <target_null_string/> | |
| 2234 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2235 | - </field> | |
| 2236 | - <field> | |
| 2237 | - <field_name>fczdName</field_name> | |
| 2238 | - <key_value>7</key_value> | |
| 2239 | - <target_name>fcno7_zdname</target_name> | |
| 2240 | - <target_type>String</target_type> | |
| 2241 | - <target_format/> | |
| 2242 | - <target_length>-1</target_length> | |
| 2243 | - <target_precision>-1</target_precision> | |
| 2244 | - <target_decimal_symbol/> | |
| 2245 | - <target_grouping_symbol/> | |
| 2246 | - <target_currency_symbol/> | |
| 2247 | - <target_null_string/> | |
| 2248 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2249 | - </field> | |
| 2250 | - <field> | |
| 2251 | - <field_name>bc_type</field_name> | |
| 2252 | - <key_value>7</key_value> | |
| 2253 | - <target_name>fcno7_bctype</target_name> | |
| 2254 | - <target_type>String</target_type> | |
| 2255 | - <target_format/> | |
| 2256 | - <target_length>-1</target_length> | |
| 2257 | - <target_precision>-1</target_precision> | |
| 2258 | - <target_decimal_symbol/> | |
| 2259 | - <target_grouping_symbol/> | |
| 2260 | - <target_currency_symbol/> | |
| 2261 | - <target_null_string/> | |
| 2262 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2263 | - </field> | |
| 2264 | - <field> | |
| 2265 | - <field_name>xl_dir</field_name> | |
| 2266 | - <key_value>7</key_value> | |
| 2267 | - <target_name>fcno7_xldir</target_name> | |
| 2268 | - <target_type>String</target_type> | |
| 2269 | - <target_format/> | |
| 2270 | - <target_length>-1</target_length> | |
| 2271 | - <target_precision>-1</target_precision> | |
| 2272 | - <target_decimal_symbol/> | |
| 2273 | - <target_grouping_symbol/> | |
| 2274 | - <target_currency_symbol/> | |
| 2275 | - <target_null_string/> | |
| 2276 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2277 | - </field> | |
| 2278 | - <field> | |
| 2279 | - <field_name>isfb</field_name> | |
| 2280 | - <key_value>7</key_value> | |
| 2281 | - <target_name>fcno7_isfb</target_name> | |
| 2282 | - <target_type>String</target_type> | |
| 2283 | - <target_format/> | |
| 2284 | - <target_length>-1</target_length> | |
| 2285 | - <target_precision>-1</target_precision> | |
| 2286 | - <target_decimal_symbol/> | |
| 2287 | - <target_grouping_symbol/> | |
| 2288 | - <target_currency_symbol/> | |
| 2289 | - <target_null_string/> | |
| 2290 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2291 | - </field> | |
| 2292 | - <field> | |
| 2293 | - <field_name>id</field_name> | |
| 2294 | - <key_value>8</key_value> | |
| 2295 | - <target_name>fcno8_id</target_name> | |
| 2296 | - <target_type>String</target_type> | |
| 2297 | - <target_format/> | |
| 2298 | - <target_length>-1</target_length> | |
| 2299 | - <target_precision>-1</target_precision> | |
| 2300 | - <target_decimal_symbol/> | |
| 2301 | - <target_grouping_symbol/> | |
| 2302 | - <target_currency_symbol/> | |
| 2303 | - <target_null_string/> | |
| 2304 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2305 | - </field> | |
| 2306 | - <field> | |
| 2307 | - <field_name>fcsj</field_name> | |
| 2308 | - <key_value>8</key_value> | |
| 2309 | - <target_name>fcno8_fcsj</target_name> | |
| 2310 | - <target_type>String</target_type> | |
| 2311 | - <target_format/> | |
| 2312 | - <target_length>-1</target_length> | |
| 2313 | - <target_precision>-1</target_precision> | |
| 2314 | - <target_decimal_symbol/> | |
| 2315 | - <target_grouping_symbol/> | |
| 2316 | - <target_currency_symbol/> | |
| 2317 | - <target_null_string/> | |
| 2318 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2319 | - </field> | |
| 2320 | - <field> | |
| 2321 | - <field_name>jhlc</field_name> | |
| 2322 | - <key_value>8</key_value> | |
| 2323 | - <target_name>fcno8_jhlc</target_name> | |
| 2324 | - <target_type>String</target_type> | |
| 2325 | - <target_format/> | |
| 2326 | - <target_length>-1</target_length> | |
| 2327 | - <target_precision>-1</target_precision> | |
| 2328 | - <target_decimal_symbol/> | |
| 2329 | - <target_grouping_symbol/> | |
| 2330 | - <target_currency_symbol/> | |
| 2331 | - <target_null_string/> | |
| 2332 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2333 | - </field> | |
| 2334 | - <field> | |
| 2335 | - <field_name>fczdName</field_name> | |
| 2336 | - <key_value>8</key_value> | |
| 2337 | - <target_name>fcno8_zdname</target_name> | |
| 2338 | - <target_type>String</target_type> | |
| 2339 | - <target_format/> | |
| 2340 | - <target_length>-1</target_length> | |
| 2341 | - <target_precision>-1</target_precision> | |
| 2342 | - <target_decimal_symbol/> | |
| 2343 | - <target_grouping_symbol/> | |
| 2344 | - <target_currency_symbol/> | |
| 2345 | - <target_null_string/> | |
| 2346 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2347 | - </field> | |
| 2348 | - <field> | |
| 2349 | - <field_name>bc_type</field_name> | |
| 2350 | - <key_value>8</key_value> | |
| 2351 | - <target_name>fcno8_bctype</target_name> | |
| 2352 | - <target_type>String</target_type> | |
| 2353 | - <target_format/> | |
| 2354 | - <target_length>-1</target_length> | |
| 2355 | - <target_precision>-1</target_precision> | |
| 2356 | - <target_decimal_symbol/> | |
| 2357 | - <target_grouping_symbol/> | |
| 2358 | - <target_currency_symbol/> | |
| 2359 | - <target_null_string/> | |
| 2360 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2361 | - </field> | |
| 2362 | - <field> | |
| 2363 | - <field_name>xl_dir</field_name> | |
| 2364 | - <key_value>8</key_value> | |
| 2365 | - <target_name>fcno8_xldir</target_name> | |
| 2366 | - <target_type>String</target_type> | |
| 2367 | - <target_format/> | |
| 2368 | - <target_length>-1</target_length> | |
| 2369 | - <target_precision>-1</target_precision> | |
| 2370 | - <target_decimal_symbol/> | |
| 2371 | - <target_grouping_symbol/> | |
| 2372 | - <target_currency_symbol/> | |
| 2373 | - <target_null_string/> | |
| 2374 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2375 | - </field> | |
| 2376 | - <field> | |
| 2377 | - <field_name>isfb</field_name> | |
| 2378 | - <key_value>8</key_value> | |
| 2379 | - <target_name>fcno8_isfb</target_name> | |
| 2380 | - <target_type>String</target_type> | |
| 2381 | - <target_format/> | |
| 2382 | - <target_length>-1</target_length> | |
| 2383 | - <target_precision>-1</target_precision> | |
| 2384 | - <target_decimal_symbol/> | |
| 2385 | - <target_grouping_symbol/> | |
| 2386 | - <target_currency_symbol/> | |
| 2387 | - <target_null_string/> | |
| 2388 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2389 | - </field> | |
| 2390 | - <field> | |
| 2391 | - <field_name>id</field_name> | |
| 2392 | - <key_value>9</key_value> | |
| 2393 | - <target_name>fcno9_id</target_name> | |
| 2394 | - <target_type>String</target_type> | |
| 2395 | - <target_format/> | |
| 2396 | - <target_length>-1</target_length> | |
| 2397 | - <target_precision>-1</target_precision> | |
| 2398 | - <target_decimal_symbol/> | |
| 2399 | - <target_grouping_symbol/> | |
| 2400 | - <target_currency_symbol/> | |
| 2401 | - <target_null_string/> | |
| 2402 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2403 | - </field> | |
| 2404 | - <field> | |
| 2405 | - <field_name>fcsj</field_name> | |
| 2406 | - <key_value>9</key_value> | |
| 2407 | - <target_name>fcno9_fcsj</target_name> | |
| 2408 | - <target_type>String</target_type> | |
| 2409 | - <target_format/> | |
| 2410 | - <target_length>-1</target_length> | |
| 2411 | - <target_precision>-1</target_precision> | |
| 2412 | - <target_decimal_symbol/> | |
| 2413 | - <target_grouping_symbol/> | |
| 2414 | - <target_currency_symbol/> | |
| 2415 | - <target_null_string/> | |
| 2416 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2417 | - </field> | |
| 2418 | - <field> | |
| 2419 | - <field_name>jhlc</field_name> | |
| 2420 | - <key_value>9</key_value> | |
| 2421 | - <target_name>fcno9_jhlc</target_name> | |
| 2422 | - <target_type>String</target_type> | |
| 2423 | - <target_format/> | |
| 2424 | - <target_length>-1</target_length> | |
| 2425 | - <target_precision>-1</target_precision> | |
| 2426 | - <target_decimal_symbol/> | |
| 2427 | - <target_grouping_symbol/> | |
| 2428 | - <target_currency_symbol/> | |
| 2429 | - <target_null_string/> | |
| 2430 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2431 | - </field> | |
| 2432 | - <field> | |
| 2433 | - <field_name>fczdName</field_name> | |
| 2434 | - <key_value>9</key_value> | |
| 2435 | - <target_name>fcno9_zdname</target_name> | |
| 2436 | - <target_type>String</target_type> | |
| 2437 | - <target_format/> | |
| 2438 | - <target_length>-1</target_length> | |
| 2439 | - <target_precision>-1</target_precision> | |
| 2440 | - <target_decimal_symbol/> | |
| 2441 | - <target_grouping_symbol/> | |
| 2442 | - <target_currency_symbol/> | |
| 2443 | - <target_null_string/> | |
| 2444 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2445 | - </field> | |
| 2446 | - <field> | |
| 2447 | - <field_name>bc_type</field_name> | |
| 2448 | - <key_value>9</key_value> | |
| 2449 | - <target_name>fcno9_bctype</target_name> | |
| 2450 | - <target_type>String</target_type> | |
| 2451 | - <target_format/> | |
| 2452 | - <target_length>-1</target_length> | |
| 2453 | - <target_precision>-1</target_precision> | |
| 2454 | - <target_decimal_symbol/> | |
| 2455 | - <target_grouping_symbol/> | |
| 2456 | - <target_currency_symbol/> | |
| 2457 | - <target_null_string/> | |
| 2458 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2459 | - </field> | |
| 2460 | - <field> | |
| 2461 | - <field_name>xl_dir</field_name> | |
| 2462 | - <key_value>9</key_value> | |
| 2463 | - <target_name>fcno9_xldir</target_name> | |
| 2464 | - <target_type>String</target_type> | |
| 2465 | - <target_format/> | |
| 2466 | - <target_length>-1</target_length> | |
| 2467 | - <target_precision>-1</target_precision> | |
| 2468 | - <target_decimal_symbol/> | |
| 2469 | - <target_grouping_symbol/> | |
| 2470 | - <target_currency_symbol/> | |
| 2471 | - <target_null_string/> | |
| 2472 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2473 | - </field> | |
| 2474 | - <field> | |
| 2475 | - <field_name>isfb</field_name> | |
| 2476 | - <key_value>9</key_value> | |
| 2477 | - <target_name>fcno9_isfb</target_name> | |
| 2478 | - <target_type>String</target_type> | |
| 2479 | - <target_format/> | |
| 2480 | - <target_length>-1</target_length> | |
| 2481 | - <target_precision>-1</target_precision> | |
| 2482 | - <target_decimal_symbol/> | |
| 2483 | - <target_grouping_symbol/> | |
| 2484 | - <target_currency_symbol/> | |
| 2485 | - <target_null_string/> | |
| 2486 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2487 | - </field> | |
| 2488 | - <field> | |
| 2489 | - <field_name>id</field_name> | |
| 2490 | - <key_value>10</key_value> | |
| 2491 | - <target_name>fcno10_id</target_name> | |
| 2492 | - <target_type>String</target_type> | |
| 2493 | - <target_format/> | |
| 2494 | - <target_length>-1</target_length> | |
| 2495 | - <target_precision>-1</target_precision> | |
| 2496 | - <target_decimal_symbol/> | |
| 2497 | - <target_grouping_symbol/> | |
| 2498 | - <target_currency_symbol/> | |
| 2499 | - <target_null_string/> | |
| 2500 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2501 | - </field> | |
| 2502 | - <field> | |
| 2503 | - <field_name>fcsj</field_name> | |
| 2504 | - <key_value>10</key_value> | |
| 2505 | - <target_name>fcno10_fcsj</target_name> | |
| 2506 | - <target_type>String</target_type> | |
| 2507 | - <target_format/> | |
| 2508 | - <target_length>-1</target_length> | |
| 2509 | - <target_precision>-1</target_precision> | |
| 2510 | - <target_decimal_symbol/> | |
| 2511 | - <target_grouping_symbol/> | |
| 2512 | - <target_currency_symbol/> | |
| 2513 | - <target_null_string/> | |
| 2514 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2515 | - </field> | |
| 2516 | - <field> | |
| 2517 | - <field_name>jhlc</field_name> | |
| 2518 | - <key_value>10</key_value> | |
| 2519 | - <target_name>fcno10_jhlc</target_name> | |
| 2520 | - <target_type>String</target_type> | |
| 2521 | - <target_format/> | |
| 2522 | - <target_length>-1</target_length> | |
| 2523 | - <target_precision>-1</target_precision> | |
| 2524 | - <target_decimal_symbol/> | |
| 2525 | - <target_grouping_symbol/> | |
| 2526 | - <target_currency_symbol/> | |
| 2527 | - <target_null_string/> | |
| 2528 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2529 | - </field> | |
| 2530 | - <field> | |
| 2531 | - <field_name>fczdName</field_name> | |
| 2532 | - <key_value>10</key_value> | |
| 2533 | - <target_name>fcno10_zdname</target_name> | |
| 2534 | - <target_type>String</target_type> | |
| 2535 | - <target_format/> | |
| 2536 | - <target_length>-1</target_length> | |
| 2537 | - <target_precision>-1</target_precision> | |
| 2538 | - <target_decimal_symbol/> | |
| 2539 | - <target_grouping_symbol/> | |
| 2540 | - <target_currency_symbol/> | |
| 2541 | - <target_null_string/> | |
| 2542 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2543 | - </field> | |
| 2544 | - <field> | |
| 2545 | - <field_name>bc_type</field_name> | |
| 2546 | - <key_value>10</key_value> | |
| 2547 | - <target_name>fcno10_bctype</target_name> | |
| 2548 | - <target_type>String</target_type> | |
| 2549 | - <target_format/> | |
| 2550 | - <target_length>-1</target_length> | |
| 2551 | - <target_precision>-1</target_precision> | |
| 2552 | - <target_decimal_symbol/> | |
| 2553 | - <target_grouping_symbol/> | |
| 2554 | - <target_currency_symbol/> | |
| 2555 | - <target_null_string/> | |
| 2556 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2557 | - </field> | |
| 2558 | - <field> | |
| 2559 | - <field_name>xl_dir</field_name> | |
| 2560 | - <key_value>10</key_value> | |
| 2561 | - <target_name>fcno10_xldir</target_name> | |
| 2562 | - <target_type>String</target_type> | |
| 2563 | - <target_format/> | |
| 2564 | - <target_length>-1</target_length> | |
| 2565 | - <target_precision>-1</target_precision> | |
| 2566 | - <target_decimal_symbol/> | |
| 2567 | - <target_grouping_symbol/> | |
| 2568 | - <target_currency_symbol/> | |
| 2569 | - <target_null_string/> | |
| 2570 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2571 | - </field> | |
| 2572 | - <field> | |
| 2573 | - <field_name>isfb</field_name> | |
| 2574 | - <key_value>10</key_value> | |
| 2575 | - <target_name>fcno10_isfb</target_name> | |
| 2576 | - <target_type>String</target_type> | |
| 2577 | - <target_format/> | |
| 2578 | - <target_length>-1</target_length> | |
| 2579 | - <target_precision>-1</target_precision> | |
| 2580 | - <target_decimal_symbol/> | |
| 2581 | - <target_grouping_symbol/> | |
| 2582 | - <target_currency_symbol/> | |
| 2583 | - <target_null_string/> | |
| 2584 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2585 | - </field> | |
| 2586 | - <field> | |
| 2587 | - <field_name>id</field_name> | |
| 2588 | - <key_value>11</key_value> | |
| 2589 | - <target_name>fcno11_id</target_name> | |
| 2590 | - <target_type>String</target_type> | |
| 2591 | - <target_format/> | |
| 2592 | - <target_length>-1</target_length> | |
| 2593 | - <target_precision>-1</target_precision> | |
| 2594 | - <target_decimal_symbol/> | |
| 2595 | - <target_grouping_symbol/> | |
| 2596 | - <target_currency_symbol/> | |
| 2597 | - <target_null_string/> | |
| 2598 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2599 | - </field> | |
| 2600 | - <field> | |
| 2601 | - <field_name>fcsj</field_name> | |
| 2602 | - <key_value>11</key_value> | |
| 2603 | - <target_name>fcno11_fcsj</target_name> | |
| 2604 | - <target_type>String</target_type> | |
| 2605 | - <target_format/> | |
| 2606 | - <target_length>-1</target_length> | |
| 2607 | - <target_precision>-1</target_precision> | |
| 2608 | - <target_decimal_symbol/> | |
| 2609 | - <target_grouping_symbol/> | |
| 2610 | - <target_currency_symbol/> | |
| 2611 | - <target_null_string/> | |
| 2612 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2613 | - </field> | |
| 2614 | - <field> | |
| 2615 | - <field_name>jhlc</field_name> | |
| 2616 | - <key_value>11</key_value> | |
| 2617 | - <target_name>fcno11_jhlc</target_name> | |
| 2618 | - <target_type>String</target_type> | |
| 2619 | - <target_format/> | |
| 2620 | - <target_length>-1</target_length> | |
| 2621 | - <target_precision>-1</target_precision> | |
| 2622 | - <target_decimal_symbol/> | |
| 2623 | - <target_grouping_symbol/> | |
| 2624 | - <target_currency_symbol/> | |
| 2625 | - <target_null_string/> | |
| 2626 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2627 | - </field> | |
| 2628 | - <field> | |
| 2629 | - <field_name>fczdName</field_name> | |
| 2630 | - <key_value>11</key_value> | |
| 2631 | - <target_name>fcno11_zdname</target_name> | |
| 2632 | - <target_type>String</target_type> | |
| 2633 | - <target_format/> | |
| 2634 | - <target_length>-1</target_length> | |
| 2635 | - <target_precision>-1</target_precision> | |
| 2636 | - <target_decimal_symbol/> | |
| 2637 | - <target_grouping_symbol/> | |
| 2638 | - <target_currency_symbol/> | |
| 2639 | - <target_null_string/> | |
| 2640 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2641 | - </field> | |
| 2642 | - <field> | |
| 2643 | - <field_name>bc_type</field_name> | |
| 2644 | - <key_value>11</key_value> | |
| 2645 | - <target_name>fcno11_bctype</target_name> | |
| 2646 | - <target_type>String</target_type> | |
| 2647 | - <target_format/> | |
| 2648 | - <target_length>-1</target_length> | |
| 2649 | - <target_precision>-1</target_precision> | |
| 2650 | - <target_decimal_symbol/> | |
| 2651 | - <target_grouping_symbol/> | |
| 2652 | - <target_currency_symbol/> | |
| 2653 | - <target_null_string/> | |
| 2654 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2655 | - </field> | |
| 2656 | - <field> | |
| 2657 | - <field_name>xl_dir</field_name> | |
| 2658 | - <key_value>11</key_value> | |
| 2659 | - <target_name>fcno11_xldir</target_name> | |
| 2660 | - <target_type>String</target_type> | |
| 2661 | - <target_format/> | |
| 2662 | - <target_length>-1</target_length> | |
| 2663 | - <target_precision>-1</target_precision> | |
| 2664 | - <target_decimal_symbol/> | |
| 2665 | - <target_grouping_symbol/> | |
| 2666 | - <target_currency_symbol/> | |
| 2667 | - <target_null_string/> | |
| 2668 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2669 | - </field> | |
| 2670 | - <field> | |
| 2671 | - <field_name>isfb</field_name> | |
| 2672 | - <key_value>11</key_value> | |
| 2673 | - <target_name>fcno11_isfb</target_name> | |
| 2674 | - <target_type>String</target_type> | |
| 2675 | - <target_format/> | |
| 2676 | - <target_length>-1</target_length> | |
| 2677 | - <target_precision>-1</target_precision> | |
| 2678 | - <target_decimal_symbol/> | |
| 2679 | - <target_grouping_symbol/> | |
| 2680 | - <target_currency_symbol/> | |
| 2681 | - <target_null_string/> | |
| 2682 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2683 | - </field> | |
| 2684 | - <field> | |
| 2685 | - <field_name>id</field_name> | |
| 2686 | - <key_value>12</key_value> | |
| 2687 | - <target_name>fcno12_id</target_name> | |
| 2688 | - <target_type>String</target_type> | |
| 2689 | - <target_format/> | |
| 2690 | - <target_length>-1</target_length> | |
| 2691 | - <target_precision>-1</target_precision> | |
| 2692 | - <target_decimal_symbol/> | |
| 2693 | - <target_grouping_symbol/> | |
| 2694 | - <target_currency_symbol/> | |
| 2695 | - <target_null_string/> | |
| 2696 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2697 | - </field> | |
| 2698 | - <field> | |
| 2699 | - <field_name>fcsj</field_name> | |
| 2700 | - <key_value>12</key_value> | |
| 2701 | - <target_name>fcno12_fcsj</target_name> | |
| 2702 | - <target_type>String</target_type> | |
| 2703 | - <target_format/> | |
| 2704 | - <target_length>-1</target_length> | |
| 2705 | - <target_precision>-1</target_precision> | |
| 2706 | - <target_decimal_symbol/> | |
| 2707 | - <target_grouping_symbol/> | |
| 2708 | - <target_currency_symbol/> | |
| 2709 | - <target_null_string/> | |
| 2710 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2711 | - </field> | |
| 2712 | - <field> | |
| 2713 | - <field_name>jhlc</field_name> | |
| 2714 | - <key_value>12</key_value> | |
| 2715 | - <target_name>fcno12_jhlc</target_name> | |
| 2716 | - <target_type>String</target_type> | |
| 2717 | - <target_format/> | |
| 2718 | - <target_length>-1</target_length> | |
| 2719 | - <target_precision>-1</target_precision> | |
| 2720 | - <target_decimal_symbol/> | |
| 2721 | - <target_grouping_symbol/> | |
| 2722 | - <target_currency_symbol/> | |
| 2723 | - <target_null_string/> | |
| 2724 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2725 | - </field> | |
| 2726 | - <field> | |
| 2727 | - <field_name>fczdName</field_name> | |
| 2728 | - <key_value>12</key_value> | |
| 2729 | - <target_name>fcno12_zdname</target_name> | |
| 2730 | - <target_type>String</target_type> | |
| 2731 | - <target_format/> | |
| 2732 | - <target_length>-1</target_length> | |
| 2733 | - <target_precision>-1</target_precision> | |
| 2734 | - <target_decimal_symbol/> | |
| 2735 | - <target_grouping_symbol/> | |
| 2736 | - <target_currency_symbol/> | |
| 2737 | - <target_null_string/> | |
| 2738 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2739 | - </field> | |
| 2740 | - <field> | |
| 2741 | - <field_name>bc_type</field_name> | |
| 2742 | - <key_value>12</key_value> | |
| 2743 | - <target_name>fcno12_bctype</target_name> | |
| 2744 | - <target_type>String</target_type> | |
| 2745 | - <target_format/> | |
| 2746 | - <target_length>-1</target_length> | |
| 2747 | - <target_precision>-1</target_precision> | |
| 2748 | - <target_decimal_symbol/> | |
| 2749 | - <target_grouping_symbol/> | |
| 2750 | - <target_currency_symbol/> | |
| 2751 | - <target_null_string/> | |
| 2752 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2753 | - </field> | |
| 2754 | - <field> | |
| 2755 | - <field_name>xl_dir</field_name> | |
| 2756 | - <key_value>12</key_value> | |
| 2757 | - <target_name>fcno12_xldir</target_name> | |
| 2758 | - <target_type>String</target_type> | |
| 2759 | - <target_format/> | |
| 2760 | - <target_length>-1</target_length> | |
| 2761 | - <target_precision>-1</target_precision> | |
| 2762 | - <target_decimal_symbol/> | |
| 2763 | - <target_grouping_symbol/> | |
| 2764 | - <target_currency_symbol/> | |
| 2765 | - <target_null_string/> | |
| 2766 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2767 | - </field> | |
| 2768 | - <field> | |
| 2769 | - <field_name>isfb</field_name> | |
| 2770 | - <key_value>12</key_value> | |
| 2771 | - <target_name>fcno12_isfb</target_name> | |
| 2772 | - <target_type>String</target_type> | |
| 2773 | - <target_format/> | |
| 2774 | - <target_length>-1</target_length> | |
| 2775 | - <target_precision>-1</target_precision> | |
| 2776 | - <target_decimal_symbol/> | |
| 2777 | - <target_grouping_symbol/> | |
| 2778 | - <target_currency_symbol/> | |
| 2779 | - <target_null_string/> | |
| 2780 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2781 | - </field> | |
| 2782 | - <field> | |
| 2783 | - <field_name>id</field_name> | |
| 2784 | - <key_value>13</key_value> | |
| 2785 | - <target_name>fcno13_id</target_name> | |
| 2786 | - <target_type>String</target_type> | |
| 2787 | - <target_format/> | |
| 2788 | - <target_length>-1</target_length> | |
| 2789 | - <target_precision>-1</target_precision> | |
| 2790 | - <target_decimal_symbol/> | |
| 2791 | - <target_grouping_symbol/> | |
| 2792 | - <target_currency_symbol/> | |
| 2793 | - <target_null_string/> | |
| 2794 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2795 | - </field> | |
| 2796 | - <field> | |
| 2797 | - <field_name>fcsj</field_name> | |
| 2798 | - <key_value>13</key_value> | |
| 2799 | - <target_name>fcno13_fcsj</target_name> | |
| 2800 | - <target_type>String</target_type> | |
| 2801 | - <target_format/> | |
| 2802 | - <target_length>-1</target_length> | |
| 2803 | - <target_precision>-1</target_precision> | |
| 2804 | - <target_decimal_symbol/> | |
| 2805 | - <target_grouping_symbol/> | |
| 2806 | - <target_currency_symbol/> | |
| 2807 | - <target_null_string/> | |
| 2808 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2809 | - </field> | |
| 2810 | - <field> | |
| 2811 | - <field_name>jhlc</field_name> | |
| 2812 | - <key_value>13</key_value> | |
| 2813 | - <target_name>fcno13_jhlc</target_name> | |
| 2814 | - <target_type>String</target_type> | |
| 2815 | - <target_format/> | |
| 2816 | - <target_length>-1</target_length> | |
| 2817 | - <target_precision>-1</target_precision> | |
| 2818 | - <target_decimal_symbol/> | |
| 2819 | - <target_grouping_symbol/> | |
| 2820 | - <target_currency_symbol/> | |
| 2821 | - <target_null_string/> | |
| 2822 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2823 | - </field> | |
| 2824 | - <field> | |
| 2825 | - <field_name>fczdName</field_name> | |
| 2826 | - <key_value>13</key_value> | |
| 2827 | - <target_name>fcno13_zdname</target_name> | |
| 2828 | - <target_type>String</target_type> | |
| 2829 | - <target_format/> | |
| 2830 | - <target_length>-1</target_length> | |
| 2831 | - <target_precision>-1</target_precision> | |
| 2832 | - <target_decimal_symbol/> | |
| 2833 | - <target_grouping_symbol/> | |
| 2834 | - <target_currency_symbol/> | |
| 2835 | - <target_null_string/> | |
| 2836 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2837 | - </field> | |
| 2838 | - <field> | |
| 2839 | - <field_name>bc_type</field_name> | |
| 2840 | - <key_value>13</key_value> | |
| 2841 | - <target_name>fcno13_bctype</target_name> | |
| 2842 | - <target_type>String</target_type> | |
| 2843 | - <target_format/> | |
| 2844 | - <target_length>-1</target_length> | |
| 2845 | - <target_precision>-1</target_precision> | |
| 2846 | - <target_decimal_symbol/> | |
| 2847 | - <target_grouping_symbol/> | |
| 2848 | - <target_currency_symbol/> | |
| 2849 | - <target_null_string/> | |
| 2850 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2851 | - </field> | |
| 2852 | - <field> | |
| 2853 | - <field_name>xl_dir</field_name> | |
| 2854 | - <key_value>13</key_value> | |
| 2855 | - <target_name>fcno13_xldir</target_name> | |
| 2856 | - <target_type>String</target_type> | |
| 2857 | - <target_format/> | |
| 2858 | - <target_length>-1</target_length> | |
| 2859 | - <target_precision>-1</target_precision> | |
| 2860 | - <target_decimal_symbol/> | |
| 2861 | - <target_grouping_symbol/> | |
| 2862 | - <target_currency_symbol/> | |
| 2863 | - <target_null_string/> | |
| 2864 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2865 | - </field> | |
| 2866 | - <field> | |
| 2867 | - <field_name>isfb</field_name> | |
| 2868 | - <key_value>13</key_value> | |
| 2869 | - <target_name>fcno13_isfb</target_name> | |
| 2870 | - <target_type>String</target_type> | |
| 2871 | - <target_format/> | |
| 2872 | - <target_length>-1</target_length> | |
| 2873 | - <target_precision>-1</target_precision> | |
| 2874 | - <target_decimal_symbol/> | |
| 2875 | - <target_grouping_symbol/> | |
| 2876 | - <target_currency_symbol/> | |
| 2877 | - <target_null_string/> | |
| 2878 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2879 | - </field> | |
| 2880 | - <field> | |
| 2881 | - <field_name>id</field_name> | |
| 2882 | - <key_value>14</key_value> | |
| 2883 | - <target_name>fcno14_id</target_name> | |
| 2884 | - <target_type>String</target_type> | |
| 2885 | - <target_format/> | |
| 2886 | - <target_length>-1</target_length> | |
| 2887 | - <target_precision>-1</target_precision> | |
| 2888 | - <target_decimal_symbol/> | |
| 2889 | - <target_grouping_symbol/> | |
| 2890 | - <target_currency_symbol/> | |
| 2891 | - <target_null_string/> | |
| 2892 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2893 | - </field> | |
| 2894 | - <field> | |
| 2895 | - <field_name>fcsj</field_name> | |
| 2896 | - <key_value>14</key_value> | |
| 2897 | - <target_name>fcno14_fcsj</target_name> | |
| 2898 | - <target_type>String</target_type> | |
| 2899 | - <target_format/> | |
| 2900 | - <target_length>-1</target_length> | |
| 2901 | - <target_precision>-1</target_precision> | |
| 2902 | - <target_decimal_symbol/> | |
| 2903 | - <target_grouping_symbol/> | |
| 2904 | - <target_currency_symbol/> | |
| 2905 | - <target_null_string/> | |
| 2906 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2907 | - </field> | |
| 2908 | - <field> | |
| 2909 | - <field_name>jhlc</field_name> | |
| 2910 | - <key_value>14</key_value> | |
| 2911 | - <target_name>fcno14_jhlc</target_name> | |
| 2912 | - <target_type>String</target_type> | |
| 2913 | - <target_format/> | |
| 2914 | - <target_length>-1</target_length> | |
| 2915 | - <target_precision>-1</target_precision> | |
| 2916 | - <target_decimal_symbol/> | |
| 2917 | - <target_grouping_symbol/> | |
| 2918 | - <target_currency_symbol/> | |
| 2919 | - <target_null_string/> | |
| 2920 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2921 | - </field> | |
| 2922 | - <field> | |
| 2923 | - <field_name>fczdName</field_name> | |
| 2924 | - <key_value>14</key_value> | |
| 2925 | - <target_name>fcno14_zdname</target_name> | |
| 2926 | - <target_type>String</target_type> | |
| 2927 | - <target_format/> | |
| 2928 | - <target_length>-1</target_length> | |
| 2929 | - <target_precision>-1</target_precision> | |
| 2930 | - <target_decimal_symbol/> | |
| 2931 | - <target_grouping_symbol/> | |
| 2932 | - <target_currency_symbol/> | |
| 2933 | - <target_null_string/> | |
| 2934 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2935 | - </field> | |
| 2936 | - <field> | |
| 2937 | - <field_name>bc_type</field_name> | |
| 2938 | - <key_value>14</key_value> | |
| 2939 | - <target_name>fcno14_bctype</target_name> | |
| 2940 | - <target_type>String</target_type> | |
| 2941 | - <target_format/> | |
| 2942 | - <target_length>-1</target_length> | |
| 2943 | - <target_precision>-1</target_precision> | |
| 2944 | - <target_decimal_symbol/> | |
| 2945 | - <target_grouping_symbol/> | |
| 2946 | - <target_currency_symbol/> | |
| 2947 | - <target_null_string/> | |
| 2948 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2949 | - </field> | |
| 2950 | - <field> | |
| 2951 | - <field_name>xl_dir</field_name> | |
| 2952 | - <key_value>14</key_value> | |
| 2953 | - <target_name>fcno14_xldir</target_name> | |
| 2954 | - <target_type>String</target_type> | |
| 2955 | - <target_format/> | |
| 2956 | - <target_length>-1</target_length> | |
| 2957 | - <target_precision>-1</target_precision> | |
| 2958 | - <target_decimal_symbol/> | |
| 2959 | - <target_grouping_symbol/> | |
| 2960 | - <target_currency_symbol/> | |
| 2961 | - <target_null_string/> | |
| 2962 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2963 | - </field> | |
| 2964 | - <field> | |
| 2965 | - <field_name>isfb</field_name> | |
| 2966 | - <key_value>14</key_value> | |
| 2967 | - <target_name>fcno14_isfb</target_name> | |
| 2968 | - <target_type>String</target_type> | |
| 2969 | - <target_format/> | |
| 2970 | - <target_length>-1</target_length> | |
| 2971 | - <target_precision>-1</target_precision> | |
| 2972 | - <target_decimal_symbol/> | |
| 2973 | - <target_grouping_symbol/> | |
| 2974 | - <target_currency_symbol/> | |
| 2975 | - <target_null_string/> | |
| 2976 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2977 | - </field> | |
| 2978 | - <field> | |
| 2979 | - <field_name>id</field_name> | |
| 2980 | - <key_value>15</key_value> | |
| 2981 | - <target_name>fcno15_id</target_name> | |
| 2982 | - <target_type>String</target_type> | |
| 2983 | - <target_format/> | |
| 2984 | - <target_length>-1</target_length> | |
| 2985 | - <target_precision>-1</target_precision> | |
| 2986 | - <target_decimal_symbol/> | |
| 2987 | - <target_grouping_symbol/> | |
| 2988 | - <target_currency_symbol/> | |
| 2989 | - <target_null_string/> | |
| 2990 | - <target_aggregation_type>-</target_aggregation_type> | |
| 2991 | - </field> | |
| 2992 | - <field> | |
| 2993 | - <field_name>fcsj</field_name> | |
| 2994 | - <key_value>15</key_value> | |
| 2995 | - <target_name>fcno15_fcsj</target_name> | |
| 2996 | - <target_type>String</target_type> | |
| 2997 | - <target_format/> | |
| 2998 | - <target_length>-1</target_length> | |
| 2999 | - <target_precision>-1</target_precision> | |
| 3000 | - <target_decimal_symbol/> | |
| 3001 | - <target_grouping_symbol/> | |
| 3002 | - <target_currency_symbol/> | |
| 3003 | - <target_null_string/> | |
| 3004 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3005 | - </field> | |
| 3006 | - <field> | |
| 3007 | - <field_name>jhlc</field_name> | |
| 3008 | - <key_value>15</key_value> | |
| 3009 | - <target_name>fcno15_jhlc</target_name> | |
| 3010 | - <target_type>String</target_type> | |
| 3011 | - <target_format/> | |
| 3012 | - <target_length>-1</target_length> | |
| 3013 | - <target_precision>-1</target_precision> | |
| 3014 | - <target_decimal_symbol/> | |
| 3015 | - <target_grouping_symbol/> | |
| 3016 | - <target_currency_symbol/> | |
| 3017 | - <target_null_string/> | |
| 3018 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3019 | - </field> | |
| 3020 | - <field> | |
| 3021 | - <field_name>fczdName</field_name> | |
| 3022 | - <key_value>15</key_value> | |
| 3023 | - <target_name>fcno15_zdname</target_name> | |
| 3024 | - <target_type>String</target_type> | |
| 3025 | - <target_format/> | |
| 3026 | - <target_length>-1</target_length> | |
| 3027 | - <target_precision>-1</target_precision> | |
| 3028 | - <target_decimal_symbol/> | |
| 3029 | - <target_grouping_symbol/> | |
| 3030 | - <target_currency_symbol/> | |
| 3031 | - <target_null_string/> | |
| 3032 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3033 | - </field> | |
| 3034 | - <field> | |
| 3035 | - <field_name>bc_type</field_name> | |
| 3036 | - <key_value>15</key_value> | |
| 3037 | - <target_name>fcno15_bctype</target_name> | |
| 3038 | - <target_type>String</target_type> | |
| 3039 | - <target_format/> | |
| 3040 | - <target_length>-1</target_length> | |
| 3041 | - <target_precision>-1</target_precision> | |
| 3042 | - <target_decimal_symbol/> | |
| 3043 | - <target_grouping_symbol/> | |
| 3044 | - <target_currency_symbol/> | |
| 3045 | - <target_null_string/> | |
| 3046 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3047 | - </field> | |
| 3048 | - <field> | |
| 3049 | - <field_name>xl_dir</field_name> | |
| 3050 | - <key_value>15</key_value> | |
| 3051 | - <target_name>fcno15_xldir</target_name> | |
| 3052 | - <target_type>String</target_type> | |
| 3053 | - <target_format/> | |
| 3054 | - <target_length>-1</target_length> | |
| 3055 | - <target_precision>-1</target_precision> | |
| 3056 | - <target_decimal_symbol/> | |
| 3057 | - <target_grouping_symbol/> | |
| 3058 | - <target_currency_symbol/> | |
| 3059 | - <target_null_string/> | |
| 3060 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3061 | - </field> | |
| 3062 | - <field> | |
| 3063 | - <field_name>isfb</field_name> | |
| 3064 | - <key_value>15</key_value> | |
| 3065 | - <target_name>fcno15_isfb</target_name> | |
| 3066 | - <target_type>String</target_type> | |
| 3067 | - <target_format/> | |
| 3068 | - <target_length>-1</target_length> | |
| 3069 | - <target_precision>-1</target_precision> | |
| 3070 | - <target_decimal_symbol/> | |
| 3071 | - <target_grouping_symbol/> | |
| 3072 | - <target_currency_symbol/> | |
| 3073 | - <target_null_string/> | |
| 3074 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3075 | - </field> | |
| 3076 | - <field> | |
| 3077 | - <field_name>id</field_name> | |
| 3078 | - <key_value>16</key_value> | |
| 3079 | - <target_name>fcno16_id</target_name> | |
| 3080 | - <target_type>String</target_type> | |
| 3081 | - <target_format/> | |
| 3082 | - <target_length>-1</target_length> | |
| 3083 | - <target_precision>-1</target_precision> | |
| 3084 | - <target_decimal_symbol/> | |
| 3085 | - <target_grouping_symbol/> | |
| 3086 | - <target_currency_symbol/> | |
| 3087 | - <target_null_string/> | |
| 3088 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3089 | - </field> | |
| 3090 | - <field> | |
| 3091 | - <field_name>fcsj</field_name> | |
| 3092 | - <key_value>16</key_value> | |
| 3093 | - <target_name>fcno16_fcsj</target_name> | |
| 3094 | - <target_type>String</target_type> | |
| 3095 | - <target_format/> | |
| 3096 | - <target_length>-1</target_length> | |
| 3097 | - <target_precision>-1</target_precision> | |
| 3098 | - <target_decimal_symbol/> | |
| 3099 | - <target_grouping_symbol/> | |
| 3100 | - <target_currency_symbol/> | |
| 3101 | - <target_null_string/> | |
| 3102 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3103 | - </field> | |
| 3104 | - <field> | |
| 3105 | - <field_name>jhlc</field_name> | |
| 3106 | - <key_value>16</key_value> | |
| 3107 | - <target_name>fcno16_jhlc</target_name> | |
| 3108 | - <target_type>String</target_type> | |
| 3109 | - <target_format/> | |
| 3110 | - <target_length>-1</target_length> | |
| 3111 | - <target_precision>-1</target_precision> | |
| 3112 | - <target_decimal_symbol/> | |
| 3113 | - <target_grouping_symbol/> | |
| 3114 | - <target_currency_symbol/> | |
| 3115 | - <target_null_string/> | |
| 3116 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3117 | - </field> | |
| 3118 | - <field> | |
| 3119 | - <field_name>fczdName</field_name> | |
| 3120 | - <key_value>16</key_value> | |
| 3121 | - <target_name>fcno16_zdname</target_name> | |
| 3122 | - <target_type>String</target_type> | |
| 3123 | - <target_format/> | |
| 3124 | - <target_length>-1</target_length> | |
| 3125 | - <target_precision>-1</target_precision> | |
| 3126 | - <target_decimal_symbol/> | |
| 3127 | - <target_grouping_symbol/> | |
| 3128 | - <target_currency_symbol/> | |
| 3129 | - <target_null_string/> | |
| 3130 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3131 | - </field> | |
| 3132 | - <field> | |
| 3133 | - <field_name>bc_type</field_name> | |
| 3134 | - <key_value>16</key_value> | |
| 3135 | - <target_name>fcno16_bctype</target_name> | |
| 3136 | - <target_type>String</target_type> | |
| 3137 | - <target_format/> | |
| 3138 | - <target_length>-1</target_length> | |
| 3139 | - <target_precision>-1</target_precision> | |
| 3140 | - <target_decimal_symbol/> | |
| 3141 | - <target_grouping_symbol/> | |
| 3142 | - <target_currency_symbol/> | |
| 3143 | - <target_null_string/> | |
| 3144 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3145 | - </field> | |
| 3146 | - <field> | |
| 3147 | - <field_name>xl_dir</field_name> | |
| 3148 | - <key_value>16</key_value> | |
| 3149 | - <target_name>fcno16_xldir</target_name> | |
| 3150 | - <target_type>String</target_type> | |
| 3151 | - <target_format/> | |
| 3152 | - <target_length>-1</target_length> | |
| 3153 | - <target_precision>-1</target_precision> | |
| 3154 | - <target_decimal_symbol/> | |
| 3155 | - <target_grouping_symbol/> | |
| 3156 | - <target_currency_symbol/> | |
| 3157 | - <target_null_string/> | |
| 3158 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3159 | - </field> | |
| 3160 | - <field> | |
| 3161 | - <field_name>isfb</field_name> | |
| 3162 | - <key_value>16</key_value> | |
| 3163 | - <target_name>fcno16_isfb</target_name> | |
| 3164 | - <target_type>String</target_type> | |
| 3165 | - <target_format/> | |
| 3166 | - <target_length>-1</target_length> | |
| 3167 | - <target_precision>-1</target_precision> | |
| 3168 | - <target_decimal_symbol/> | |
| 3169 | - <target_grouping_symbol/> | |
| 3170 | - <target_currency_symbol/> | |
| 3171 | - <target_null_string/> | |
| 3172 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3173 | - </field> | |
| 3174 | - <field> | |
| 3175 | - <field_name>id</field_name> | |
| 3176 | - <key_value>17</key_value> | |
| 3177 | - <target_name>fcno17_id</target_name> | |
| 3178 | - <target_type>String</target_type> | |
| 3179 | - <target_format/> | |
| 3180 | - <target_length>-1</target_length> | |
| 3181 | - <target_precision>-1</target_precision> | |
| 3182 | - <target_decimal_symbol/> | |
| 3183 | - <target_grouping_symbol/> | |
| 3184 | - <target_currency_symbol/> | |
| 3185 | - <target_null_string/> | |
| 3186 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3187 | - </field> | |
| 3188 | - <field> | |
| 3189 | - <field_name>fcsj</field_name> | |
| 3190 | - <key_value>17</key_value> | |
| 3191 | - <target_name>fcno17_fcsj</target_name> | |
| 3192 | - <target_type>String</target_type> | |
| 3193 | - <target_format/> | |
| 3194 | - <target_length>-1</target_length> | |
| 3195 | - <target_precision>-1</target_precision> | |
| 3196 | - <target_decimal_symbol/> | |
| 3197 | - <target_grouping_symbol/> | |
| 3198 | - <target_currency_symbol/> | |
| 3199 | - <target_null_string/> | |
| 3200 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3201 | - </field> | |
| 3202 | - <field> | |
| 3203 | - <field_name>jhlc</field_name> | |
| 3204 | - <key_value>17</key_value> | |
| 3205 | - <target_name>fcno17_jhlc</target_name> | |
| 3206 | - <target_type>String</target_type> | |
| 3207 | - <target_format/> | |
| 3208 | - <target_length>-1</target_length> | |
| 3209 | - <target_precision>-1</target_precision> | |
| 3210 | - <target_decimal_symbol/> | |
| 3211 | - <target_grouping_symbol/> | |
| 3212 | - <target_currency_symbol/> | |
| 3213 | - <target_null_string/> | |
| 3214 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3215 | - </field> | |
| 3216 | - <field> | |
| 3217 | - <field_name>fczdName</field_name> | |
| 3218 | - <key_value>17</key_value> | |
| 3219 | - <target_name>fcno17_zdname</target_name> | |
| 3220 | - <target_type>String</target_type> | |
| 3221 | - <target_format/> | |
| 3222 | - <target_length>-1</target_length> | |
| 3223 | - <target_precision>-1</target_precision> | |
| 3224 | - <target_decimal_symbol/> | |
| 3225 | - <target_grouping_symbol/> | |
| 3226 | - <target_currency_symbol/> | |
| 3227 | - <target_null_string/> | |
| 3228 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3229 | - </field> | |
| 3230 | - <field> | |
| 3231 | - <field_name>bc_type</field_name> | |
| 3232 | - <key_value>17</key_value> | |
| 3233 | - <target_name>fcno17_bctype</target_name> | |
| 3234 | - <target_type>String</target_type> | |
| 3235 | - <target_format/> | |
| 3236 | - <target_length>-1</target_length> | |
| 3237 | - <target_precision>-1</target_precision> | |
| 3238 | - <target_decimal_symbol/> | |
| 3239 | - <target_grouping_symbol/> | |
| 3240 | - <target_currency_symbol/> | |
| 3241 | - <target_null_string/> | |
| 3242 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3243 | - </field> | |
| 3244 | - <field> | |
| 3245 | - <field_name>xl_dir</field_name> | |
| 3246 | - <key_value>17</key_value> | |
| 3247 | - <target_name>fcno17_xldir</target_name> | |
| 3248 | - <target_type>String</target_type> | |
| 3249 | - <target_format/> | |
| 3250 | - <target_length>-1</target_length> | |
| 3251 | - <target_precision>-1</target_precision> | |
| 3252 | - <target_decimal_symbol/> | |
| 3253 | - <target_grouping_symbol/> | |
| 3254 | - <target_currency_symbol/> | |
| 3255 | - <target_null_string/> | |
| 3256 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3257 | - </field> | |
| 3258 | - <field> | |
| 3259 | - <field_name>isfb</field_name> | |
| 3260 | - <key_value>17</key_value> | |
| 3261 | - <target_name>fcno17_isfb</target_name> | |
| 3262 | - <target_type>String</target_type> | |
| 3263 | - <target_format/> | |
| 3264 | - <target_length>-1</target_length> | |
| 3265 | - <target_precision>-1</target_precision> | |
| 3266 | - <target_decimal_symbol/> | |
| 3267 | - <target_grouping_symbol/> | |
| 3268 | - <target_currency_symbol/> | |
| 3269 | - <target_null_string/> | |
| 3270 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3271 | - </field> | |
| 3272 | - <field> | |
| 3273 | - <field_name>id</field_name> | |
| 3274 | - <key_value>18</key_value> | |
| 3275 | - <target_name>fcno18_id</target_name> | |
| 3276 | - <target_type>String</target_type> | |
| 3277 | - <target_format/> | |
| 3278 | - <target_length>-1</target_length> | |
| 3279 | - <target_precision>-1</target_precision> | |
| 3280 | - <target_decimal_symbol/> | |
| 3281 | - <target_grouping_symbol/> | |
| 3282 | - <target_currency_symbol/> | |
| 3283 | - <target_null_string/> | |
| 3284 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3285 | - </field> | |
| 3286 | - <field> | |
| 3287 | - <field_name>fcsj</field_name> | |
| 3288 | - <key_value>18</key_value> | |
| 3289 | - <target_name>fcno18_fcsj</target_name> | |
| 3290 | - <target_type>String</target_type> | |
| 3291 | - <target_format/> | |
| 3292 | - <target_length>-1</target_length> | |
| 3293 | - <target_precision>-1</target_precision> | |
| 3294 | - <target_decimal_symbol/> | |
| 3295 | - <target_grouping_symbol/> | |
| 3296 | - <target_currency_symbol/> | |
| 3297 | - <target_null_string/> | |
| 3298 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3299 | - </field> | |
| 3300 | - <field> | |
| 3301 | - <field_name>jhlc</field_name> | |
| 3302 | - <key_value>18</key_value> | |
| 3303 | - <target_name>fcno18_jhlc</target_name> | |
| 3304 | - <target_type>String</target_type> | |
| 3305 | - <target_format/> | |
| 3306 | - <target_length>-1</target_length> | |
| 3307 | - <target_precision>-1</target_precision> | |
| 3308 | - <target_decimal_symbol/> | |
| 3309 | - <target_grouping_symbol/> | |
| 3310 | - <target_currency_symbol/> | |
| 3311 | - <target_null_string/> | |
| 3312 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3313 | - </field> | |
| 3314 | - <field> | |
| 3315 | - <field_name>fczdName</field_name> | |
| 3316 | - <key_value>18</key_value> | |
| 3317 | - <target_name>fcno18_zdname</target_name> | |
| 3318 | - <target_type>String</target_type> | |
| 3319 | - <target_format/> | |
| 3320 | - <target_length>-1</target_length> | |
| 3321 | - <target_precision>-1</target_precision> | |
| 3322 | - <target_decimal_symbol/> | |
| 3323 | - <target_grouping_symbol/> | |
| 3324 | - <target_currency_symbol/> | |
| 3325 | - <target_null_string/> | |
| 3326 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3327 | - </field> | |
| 3328 | - <field> | |
| 3329 | - <field_name>bc_type</field_name> | |
| 3330 | - <key_value>18</key_value> | |
| 3331 | - <target_name>fcno18_bctype</target_name> | |
| 3332 | - <target_type>String</target_type> | |
| 3333 | - <target_format/> | |
| 3334 | - <target_length>-1</target_length> | |
| 3335 | - <target_precision>-1</target_precision> | |
| 3336 | - <target_decimal_symbol/> | |
| 3337 | - <target_grouping_symbol/> | |
| 3338 | - <target_currency_symbol/> | |
| 3339 | - <target_null_string/> | |
| 3340 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3341 | - </field> | |
| 3342 | - <field> | |
| 3343 | - <field_name>xl_dir</field_name> | |
| 3344 | - <key_value>18</key_value> | |
| 3345 | - <target_name>fcno18_xldir</target_name> | |
| 3346 | - <target_type>String</target_type> | |
| 3347 | - <target_format/> | |
| 3348 | - <target_length>-1</target_length> | |
| 3349 | - <target_precision>-1</target_precision> | |
| 3350 | - <target_decimal_symbol/> | |
| 3351 | - <target_grouping_symbol/> | |
| 3352 | - <target_currency_symbol/> | |
| 3353 | - <target_null_string/> | |
| 3354 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3355 | - </field> | |
| 3356 | - <field> | |
| 3357 | - <field_name>isfb</field_name> | |
| 3358 | - <key_value>18</key_value> | |
| 3359 | - <target_name>fcno18_isfb</target_name> | |
| 3360 | - <target_type>String</target_type> | |
| 3361 | - <target_format/> | |
| 3362 | - <target_length>-1</target_length> | |
| 3363 | - <target_precision>-1</target_precision> | |
| 3364 | - <target_decimal_symbol/> | |
| 3365 | - <target_grouping_symbol/> | |
| 3366 | - <target_currency_symbol/> | |
| 3367 | - <target_null_string/> | |
| 3368 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3369 | - </field> | |
| 3370 | - <field> | |
| 3371 | - <field_name>id</field_name> | |
| 3372 | - <key_value>19</key_value> | |
| 3373 | - <target_name>fcno19_id</target_name> | |
| 3374 | - <target_type>String</target_type> | |
| 3375 | - <target_format/> | |
| 3376 | - <target_length>-1</target_length> | |
| 3377 | - <target_precision>-1</target_precision> | |
| 3378 | - <target_decimal_symbol/> | |
| 3379 | - <target_grouping_symbol/> | |
| 3380 | - <target_currency_symbol/> | |
| 3381 | - <target_null_string/> | |
| 3382 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3383 | - </field> | |
| 3384 | - <field> | |
| 3385 | - <field_name>fcsj</field_name> | |
| 3386 | - <key_value>19</key_value> | |
| 3387 | - <target_name>fcno19_fcsj</target_name> | |
| 3388 | - <target_type>String</target_type> | |
| 3389 | - <target_format/> | |
| 3390 | - <target_length>-1</target_length> | |
| 3391 | - <target_precision>-1</target_precision> | |
| 3392 | - <target_decimal_symbol/> | |
| 3393 | - <target_grouping_symbol/> | |
| 3394 | - <target_currency_symbol/> | |
| 3395 | - <target_null_string/> | |
| 3396 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3397 | - </field> | |
| 3398 | - <field> | |
| 3399 | - <field_name>jhlc</field_name> | |
| 3400 | - <key_value>19</key_value> | |
| 3401 | - <target_name>fcno19_jhlc</target_name> | |
| 3402 | - <target_type>String</target_type> | |
| 3403 | - <target_format/> | |
| 3404 | - <target_length>-1</target_length> | |
| 3405 | - <target_precision>-1</target_precision> | |
| 3406 | - <target_decimal_symbol/> | |
| 3407 | - <target_grouping_symbol/> | |
| 3408 | - <target_currency_symbol/> | |
| 3409 | - <target_null_string/> | |
| 3410 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3411 | - </field> | |
| 3412 | - <field> | |
| 3413 | - <field_name>fczdName</field_name> | |
| 3414 | - <key_value>19</key_value> | |
| 3415 | - <target_name>fcno19_zdname</target_name> | |
| 3416 | - <target_type>String</target_type> | |
| 3417 | - <target_format/> | |
| 3418 | - <target_length>-1</target_length> | |
| 3419 | - <target_precision>-1</target_precision> | |
| 3420 | - <target_decimal_symbol/> | |
| 3421 | - <target_grouping_symbol/> | |
| 3422 | - <target_currency_symbol/> | |
| 3423 | - <target_null_string/> | |
| 3424 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3425 | - </field> | |
| 3426 | - <field> | |
| 3427 | - <field_name>bc_type</field_name> | |
| 3428 | - <key_value>19</key_value> | |
| 3429 | - <target_name>fcno19_bctype</target_name> | |
| 3430 | - <target_type>String</target_type> | |
| 3431 | - <target_format/> | |
| 3432 | - <target_length>-1</target_length> | |
| 3433 | - <target_precision>-1</target_precision> | |
| 3434 | - <target_decimal_symbol/> | |
| 3435 | - <target_grouping_symbol/> | |
| 3436 | - <target_currency_symbol/> | |
| 3437 | - <target_null_string/> | |
| 3438 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3439 | - </field> | |
| 3440 | - <field> | |
| 3441 | - <field_name>xl_dir</field_name> | |
| 3442 | - <key_value>19</key_value> | |
| 3443 | - <target_name>fcno19_xldir</target_name> | |
| 3444 | - <target_type>String</target_type> | |
| 3445 | - <target_format/> | |
| 3446 | - <target_length>-1</target_length> | |
| 3447 | - <target_precision>-1</target_precision> | |
| 3448 | - <target_decimal_symbol/> | |
| 3449 | - <target_grouping_symbol/> | |
| 3450 | - <target_currency_symbol/> | |
| 3451 | - <target_null_string/> | |
| 3452 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3453 | - </field> | |
| 3454 | - <field> | |
| 3455 | - <field_name>isfb</field_name> | |
| 3456 | - <key_value>19</key_value> | |
| 3457 | - <target_name>fcno19_isfb</target_name> | |
| 3458 | - <target_type>String</target_type> | |
| 3459 | - <target_format/> | |
| 3460 | - <target_length>-1</target_length> | |
| 3461 | - <target_precision>-1</target_precision> | |
| 3462 | - <target_decimal_symbol/> | |
| 3463 | - <target_grouping_symbol/> | |
| 3464 | - <target_currency_symbol/> | |
| 3465 | - <target_null_string/> | |
| 3466 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3467 | - </field> | |
| 3468 | - <field> | |
| 3469 | - <field_name>id</field_name> | |
| 3470 | - <key_value>20</key_value> | |
| 3471 | - <target_name>fcno20_id</target_name> | |
| 3472 | - <target_type>String</target_type> | |
| 3473 | - <target_format/> | |
| 3474 | - <target_length>-1</target_length> | |
| 3475 | - <target_precision>-1</target_precision> | |
| 3476 | - <target_decimal_symbol/> | |
| 3477 | - <target_grouping_symbol/> | |
| 3478 | - <target_currency_symbol/> | |
| 3479 | - <target_null_string/> | |
| 3480 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3481 | - </field> | |
| 3482 | - <field> | |
| 3483 | - <field_name>fcsj</field_name> | |
| 3484 | - <key_value>20</key_value> | |
| 3485 | - <target_name>fcno20_fcsj</target_name> | |
| 3486 | - <target_type>String</target_type> | |
| 3487 | - <target_format/> | |
| 3488 | - <target_length>-1</target_length> | |
| 3489 | - <target_precision>-1</target_precision> | |
| 3490 | - <target_decimal_symbol/> | |
| 3491 | - <target_grouping_symbol/> | |
| 3492 | - <target_currency_symbol/> | |
| 3493 | - <target_null_string/> | |
| 3494 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3495 | - </field> | |
| 3496 | - <field> | |
| 3497 | - <field_name>jhlc</field_name> | |
| 3498 | - <key_value>20</key_value> | |
| 3499 | - <target_name>fcno20_jhlc</target_name> | |
| 3500 | - <target_type>String</target_type> | |
| 3501 | - <target_format/> | |
| 3502 | - <target_length>-1</target_length> | |
| 3503 | - <target_precision>-1</target_precision> | |
| 3504 | - <target_decimal_symbol/> | |
| 3505 | - <target_grouping_symbol/> | |
| 3506 | - <target_currency_symbol/> | |
| 3507 | - <target_null_string/> | |
| 3508 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3509 | - </field> | |
| 3510 | - <field> | |
| 3511 | - <field_name>fczdName</field_name> | |
| 3512 | - <key_value>20</key_value> | |
| 3513 | - <target_name>fcno20_zdname</target_name> | |
| 3514 | - <target_type>String</target_type> | |
| 3515 | - <target_format/> | |
| 3516 | - <target_length>-1</target_length> | |
| 3517 | - <target_precision>-1</target_precision> | |
| 3518 | - <target_decimal_symbol/> | |
| 3519 | - <target_grouping_symbol/> | |
| 3520 | - <target_currency_symbol/> | |
| 3521 | - <target_null_string/> | |
| 3522 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3523 | - </field> | |
| 3524 | - <field> | |
| 3525 | - <field_name>bc_type</field_name> | |
| 3526 | - <key_value>20</key_value> | |
| 3527 | - <target_name>fcno20_bctype</target_name> | |
| 3528 | - <target_type>String</target_type> | |
| 3529 | - <target_format/> | |
| 3530 | - <target_length>-1</target_length> | |
| 3531 | - <target_precision>-1</target_precision> | |
| 3532 | - <target_decimal_symbol/> | |
| 3533 | - <target_grouping_symbol/> | |
| 3534 | - <target_currency_symbol/> | |
| 3535 | - <target_null_string/> | |
| 3536 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3537 | - </field> | |
| 3538 | - <field> | |
| 3539 | - <field_name>xl_dir</field_name> | |
| 3540 | - <key_value>20</key_value> | |
| 3541 | - <target_name>fcno20_xldir</target_name> | |
| 3542 | - <target_type>String</target_type> | |
| 3543 | - <target_format/> | |
| 3544 | - <target_length>-1</target_length> | |
| 3545 | - <target_precision>-1</target_precision> | |
| 3546 | - <target_decimal_symbol/> | |
| 3547 | - <target_grouping_symbol/> | |
| 3548 | - <target_currency_symbol/> | |
| 3549 | - <target_null_string/> | |
| 3550 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3551 | - </field> | |
| 3552 | - <field> | |
| 3553 | - <field_name>isfb</field_name> | |
| 3554 | - <key_value>20</key_value> | |
| 3555 | - <target_name>fcno20_isfb</target_name> | |
| 3556 | - <target_type>String</target_type> | |
| 3557 | - <target_format/> | |
| 3558 | - <target_length>-1</target_length> | |
| 3559 | - <target_precision>-1</target_precision> | |
| 3560 | - <target_decimal_symbol/> | |
| 3561 | - <target_grouping_symbol/> | |
| 3562 | - <target_currency_symbol/> | |
| 3563 | - <target_null_string/> | |
| 3564 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3565 | - </field> | |
| 3566 | - <field> | |
| 3567 | - <field_name>id</field_name> | |
| 3568 | - <key_value>21</key_value> | |
| 3569 | - <target_name>fcno21_id</target_name> | |
| 3570 | - <target_type>String</target_type> | |
| 3571 | - <target_format/> | |
| 3572 | - <target_length>-1</target_length> | |
| 3573 | - <target_precision>-1</target_precision> | |
| 3574 | - <target_decimal_symbol/> | |
| 3575 | - <target_grouping_symbol/> | |
| 3576 | - <target_currency_symbol/> | |
| 3577 | - <target_null_string/> | |
| 3578 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3579 | - </field> | |
| 3580 | - <field> | |
| 3581 | - <field_name>fcsj</field_name> | |
| 3582 | - <key_value>21</key_value> | |
| 3583 | - <target_name>fcno21_fcsj</target_name> | |
| 3584 | - <target_type>String</target_type> | |
| 3585 | - <target_format/> | |
| 3586 | - <target_length>-1</target_length> | |
| 3587 | - <target_precision>-1</target_precision> | |
| 3588 | - <target_decimal_symbol/> | |
| 3589 | - <target_grouping_symbol/> | |
| 3590 | - <target_currency_symbol/> | |
| 3591 | - <target_null_string/> | |
| 3592 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3593 | - </field> | |
| 3594 | - <field> | |
| 3595 | - <field_name>jhlc</field_name> | |
| 3596 | - <key_value>21</key_value> | |
| 3597 | - <target_name>fcno21_jhlc</target_name> | |
| 3598 | - <target_type>String</target_type> | |
| 3599 | - <target_format/> | |
| 3600 | - <target_length>-1</target_length> | |
| 3601 | - <target_precision>-1</target_precision> | |
| 3602 | - <target_decimal_symbol/> | |
| 3603 | - <target_grouping_symbol/> | |
| 3604 | - <target_currency_symbol/> | |
| 3605 | - <target_null_string/> | |
| 3606 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3607 | - </field> | |
| 3608 | - <field> | |
| 3609 | - <field_name>fczdName</field_name> | |
| 3610 | - <key_value>21</key_value> | |
| 3611 | - <target_name>fcno21_zdname</target_name> | |
| 3612 | - <target_type>String</target_type> | |
| 3613 | - <target_format/> | |
| 3614 | - <target_length>-1</target_length> | |
| 3615 | - <target_precision>-1</target_precision> | |
| 3616 | - <target_decimal_symbol/> | |
| 3617 | - <target_grouping_symbol/> | |
| 3618 | - <target_currency_symbol/> | |
| 3619 | - <target_null_string/> | |
| 3620 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3621 | - </field> | |
| 3622 | - <field> | |
| 3623 | - <field_name>bc_type</field_name> | |
| 3624 | - <key_value>21</key_value> | |
| 3625 | - <target_name>fcno21_bctype</target_name> | |
| 3626 | - <target_type>String</target_type> | |
| 3627 | - <target_format/> | |
| 3628 | - <target_length>-1</target_length> | |
| 3629 | - <target_precision>-1</target_precision> | |
| 3630 | - <target_decimal_symbol/> | |
| 3631 | - <target_grouping_symbol/> | |
| 3632 | - <target_currency_symbol/> | |
| 3633 | - <target_null_string/> | |
| 3634 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3635 | - </field> | |
| 3636 | - <field> | |
| 3637 | - <field_name>xl_dir</field_name> | |
| 3638 | - <key_value>21</key_value> | |
| 3639 | - <target_name>fcno21_xldir</target_name> | |
| 3640 | - <target_type>String</target_type> | |
| 3641 | - <target_format/> | |
| 3642 | - <target_length>-1</target_length> | |
| 3643 | - <target_precision>-1</target_precision> | |
| 3644 | - <target_decimal_symbol/> | |
| 3645 | - <target_grouping_symbol/> | |
| 3646 | - <target_currency_symbol/> | |
| 3647 | - <target_null_string/> | |
| 3648 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3649 | - </field> | |
| 3650 | - <field> | |
| 3651 | - <field_name>isfb</field_name> | |
| 3652 | - <key_value>21</key_value> | |
| 3653 | - <target_name>fcno21_isfb</target_name> | |
| 3654 | - <target_type>String</target_type> | |
| 3655 | - <target_format/> | |
| 3656 | - <target_length>-1</target_length> | |
| 3657 | - <target_precision>-1</target_precision> | |
| 3658 | - <target_decimal_symbol/> | |
| 3659 | - <target_grouping_symbol/> | |
| 3660 | - <target_currency_symbol/> | |
| 3661 | - <target_null_string/> | |
| 3662 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3663 | - </field> | |
| 3664 | - <field> | |
| 3665 | - <field_name>id</field_name> | |
| 3666 | - <key_value>22</key_value> | |
| 3667 | - <target_name>fcno22_id</target_name> | |
| 3668 | - <target_type>String</target_type> | |
| 3669 | - <target_format/> | |
| 3670 | - <target_length>-1</target_length> | |
| 3671 | - <target_precision>-1</target_precision> | |
| 3672 | - <target_decimal_symbol/> | |
| 3673 | - <target_grouping_symbol/> | |
| 3674 | - <target_currency_symbol/> | |
| 3675 | - <target_null_string/> | |
| 3676 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3677 | - </field> | |
| 3678 | - <field> | |
| 3679 | - <field_name>fcsj</field_name> | |
| 3680 | - <key_value>22</key_value> | |
| 3681 | - <target_name>fcno22_fcsj</target_name> | |
| 3682 | - <target_type>String</target_type> | |
| 3683 | - <target_format/> | |
| 3684 | - <target_length>-1</target_length> | |
| 3685 | - <target_precision>-1</target_precision> | |
| 3686 | - <target_decimal_symbol/> | |
| 3687 | - <target_grouping_symbol/> | |
| 3688 | - <target_currency_symbol/> | |
| 3689 | - <target_null_string/> | |
| 3690 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3691 | - </field> | |
| 3692 | - <field> | |
| 3693 | - <field_name>jhlc</field_name> | |
| 3694 | - <key_value>22</key_value> | |
| 3695 | - <target_name>fcno22_jhlc</target_name> | |
| 3696 | - <target_type>String</target_type> | |
| 3697 | - <target_format/> | |
| 3698 | - <target_length>-1</target_length> | |
| 3699 | - <target_precision>-1</target_precision> | |
| 3700 | - <target_decimal_symbol/> | |
| 3701 | - <target_grouping_symbol/> | |
| 3702 | - <target_currency_symbol/> | |
| 3703 | - <target_null_string/> | |
| 3704 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3705 | - </field> | |
| 3706 | - <field> | |
| 3707 | - <field_name>fczdName</field_name> | |
| 3708 | - <key_value>22</key_value> | |
| 3709 | - <target_name>fcno22_zdname</target_name> | |
| 3710 | - <target_type>String</target_type> | |
| 3711 | - <target_format/> | |
| 3712 | - <target_length>-1</target_length> | |
| 3713 | - <target_precision>-1</target_precision> | |
| 3714 | - <target_decimal_symbol/> | |
| 3715 | - <target_grouping_symbol/> | |
| 3716 | - <target_currency_symbol/> | |
| 3717 | - <target_null_string/> | |
| 3718 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3719 | - </field> | |
| 3720 | - <field> | |
| 3721 | - <field_name>bc_type</field_name> | |
| 3722 | - <key_value>22</key_value> | |
| 3723 | - <target_name>fcno22_bctype</target_name> | |
| 3724 | - <target_type>String</target_type> | |
| 3725 | - <target_format/> | |
| 3726 | - <target_length>-1</target_length> | |
| 3727 | - <target_precision>-1</target_precision> | |
| 3728 | - <target_decimal_symbol/> | |
| 3729 | - <target_grouping_symbol/> | |
| 3730 | - <target_currency_symbol/> | |
| 3731 | - <target_null_string/> | |
| 3732 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3733 | - </field> | |
| 3734 | - <field> | |
| 3735 | - <field_name>xl_dir</field_name> | |
| 3736 | - <key_value>22</key_value> | |
| 3737 | - <target_name>fcno22_xldir</target_name> | |
| 3738 | - <target_type>String</target_type> | |
| 3739 | - <target_format/> | |
| 3740 | - <target_length>-1</target_length> | |
| 3741 | - <target_precision>-1</target_precision> | |
| 3742 | - <target_decimal_symbol/> | |
| 3743 | - <target_grouping_symbol/> | |
| 3744 | - <target_currency_symbol/> | |
| 3745 | - <target_null_string/> | |
| 3746 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3747 | - </field> | |
| 3748 | - <field> | |
| 3749 | - <field_name>isfb</field_name> | |
| 3750 | - <key_value>22</key_value> | |
| 3751 | - <target_name>fcno22_isfb</target_name> | |
| 3752 | - <target_type>String</target_type> | |
| 3753 | - <target_format/> | |
| 3754 | - <target_length>-1</target_length> | |
| 3755 | - <target_precision>-1</target_precision> | |
| 3756 | - <target_decimal_symbol/> | |
| 3757 | - <target_grouping_symbol/> | |
| 3758 | - <target_currency_symbol/> | |
| 3759 | - <target_null_string/> | |
| 3760 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3761 | - </field> | |
| 3762 | - <field> | |
| 3763 | - <field_name>id</field_name> | |
| 3764 | - <key_value>23</key_value> | |
| 3765 | - <target_name>fcno23_id</target_name> | |
| 3766 | - <target_type>String</target_type> | |
| 3767 | - <target_format/> | |
| 3768 | - <target_length>-1</target_length> | |
| 3769 | - <target_precision>-1</target_precision> | |
| 3770 | - <target_decimal_symbol/> | |
| 3771 | - <target_grouping_symbol/> | |
| 3772 | - <target_currency_symbol/> | |
| 3773 | - <target_null_string/> | |
| 3774 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3775 | - </field> | |
| 3776 | - <field> | |
| 3777 | - <field_name>fcsj</field_name> | |
| 3778 | - <key_value>23</key_value> | |
| 3779 | - <target_name>fcno23_fcsj</target_name> | |
| 3780 | - <target_type>String</target_type> | |
| 3781 | - <target_format/> | |
| 3782 | - <target_length>-1</target_length> | |
| 3783 | - <target_precision>-1</target_precision> | |
| 3784 | - <target_decimal_symbol/> | |
| 3785 | - <target_grouping_symbol/> | |
| 3786 | - <target_currency_symbol/> | |
| 3787 | - <target_null_string/> | |
| 3788 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3789 | - </field> | |
| 3790 | - <field> | |
| 3791 | - <field_name>jhlc</field_name> | |
| 3792 | - <key_value>23</key_value> | |
| 3793 | - <target_name>fcno23_jhlc</target_name> | |
| 3794 | - <target_type>String</target_type> | |
| 3795 | - <target_format/> | |
| 3796 | - <target_length>-1</target_length> | |
| 3797 | - <target_precision>-1</target_precision> | |
| 3798 | - <target_decimal_symbol/> | |
| 3799 | - <target_grouping_symbol/> | |
| 3800 | - <target_currency_symbol/> | |
| 3801 | - <target_null_string/> | |
| 3802 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3803 | - </field> | |
| 3804 | - <field> | |
| 3805 | - <field_name>fczdName</field_name> | |
| 3806 | - <key_value>23</key_value> | |
| 3807 | - <target_name>fcno23_zdname</target_name> | |
| 3808 | - <target_type>String</target_type> | |
| 3809 | - <target_format/> | |
| 3810 | - <target_length>-1</target_length> | |
| 3811 | - <target_precision>-1</target_precision> | |
| 3812 | - <target_decimal_symbol/> | |
| 3813 | - <target_grouping_symbol/> | |
| 3814 | - <target_currency_symbol/> | |
| 3815 | - <target_null_string/> | |
| 3816 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3817 | - </field> | |
| 3818 | - <field> | |
| 3819 | - <field_name>bc_type</field_name> | |
| 3820 | - <key_value>23</key_value> | |
| 3821 | - <target_name>fcno23_bctype</target_name> | |
| 3822 | - <target_type>String</target_type> | |
| 3823 | - <target_format/> | |
| 3824 | - <target_length>-1</target_length> | |
| 3825 | - <target_precision>-1</target_precision> | |
| 3826 | - <target_decimal_symbol/> | |
| 3827 | - <target_grouping_symbol/> | |
| 3828 | - <target_currency_symbol/> | |
| 3829 | - <target_null_string/> | |
| 3830 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3831 | - </field> | |
| 3832 | - <field> | |
| 3833 | - <field_name>xl_dir</field_name> | |
| 3834 | - <key_value>23</key_value> | |
| 3835 | - <target_name>fcno23_xldir</target_name> | |
| 3836 | - <target_type>String</target_type> | |
| 3837 | - <target_format/> | |
| 3838 | - <target_length>-1</target_length> | |
| 3839 | - <target_precision>-1</target_precision> | |
| 3840 | - <target_decimal_symbol/> | |
| 3841 | - <target_grouping_symbol/> | |
| 3842 | - <target_currency_symbol/> | |
| 3843 | - <target_null_string/> | |
| 3844 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3845 | - </field> | |
| 3846 | - <field> | |
| 3847 | - <field_name>isfb</field_name> | |
| 3848 | - <key_value>23</key_value> | |
| 3849 | - <target_name>fcno23_isfb</target_name> | |
| 3850 | - <target_type>String</target_type> | |
| 3851 | - <target_format/> | |
| 3852 | - <target_length>-1</target_length> | |
| 3853 | - <target_precision>-1</target_precision> | |
| 3854 | - <target_decimal_symbol/> | |
| 3855 | - <target_grouping_symbol/> | |
| 3856 | - <target_currency_symbol/> | |
| 3857 | - <target_null_string/> | |
| 3858 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3859 | - </field> | |
| 3860 | - <field> | |
| 3861 | - <field_name>id</field_name> | |
| 3862 | - <key_value>24</key_value> | |
| 3863 | - <target_name>fcno24_id</target_name> | |
| 3864 | - <target_type>String</target_type> | |
| 3865 | - <target_format/> | |
| 3866 | - <target_length>-1</target_length> | |
| 3867 | - <target_precision>-1</target_precision> | |
| 3868 | - <target_decimal_symbol/> | |
| 3869 | - <target_grouping_symbol/> | |
| 3870 | - <target_currency_symbol/> | |
| 3871 | - <target_null_string/> | |
| 3872 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3873 | - </field> | |
| 3874 | - <field> | |
| 3875 | - <field_name>fcsj</field_name> | |
| 3876 | - <key_value>24</key_value> | |
| 3877 | - <target_name>fcno24_fcsj</target_name> | |
| 3878 | - <target_type>String</target_type> | |
| 3879 | - <target_format/> | |
| 3880 | - <target_length>-1</target_length> | |
| 3881 | - <target_precision>-1</target_precision> | |
| 3882 | - <target_decimal_symbol/> | |
| 3883 | - <target_grouping_symbol/> | |
| 3884 | - <target_currency_symbol/> | |
| 3885 | - <target_null_string/> | |
| 3886 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3887 | - </field> | |
| 3888 | - <field> | |
| 3889 | - <field_name>jhlc</field_name> | |
| 3890 | - <key_value>24</key_value> | |
| 3891 | - <target_name>fcno24_jhlc</target_name> | |
| 3892 | - <target_type>String</target_type> | |
| 3893 | - <target_format/> | |
| 3894 | - <target_length>-1</target_length> | |
| 3895 | - <target_precision>-1</target_precision> | |
| 3896 | - <target_decimal_symbol/> | |
| 3897 | - <target_grouping_symbol/> | |
| 3898 | - <target_currency_symbol/> | |
| 3899 | - <target_null_string/> | |
| 3900 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3901 | - </field> | |
| 3902 | - <field> | |
| 3903 | - <field_name>fczdName</field_name> | |
| 3904 | - <key_value>24</key_value> | |
| 3905 | - <target_name>fcno24_zdname</target_name> | |
| 3906 | - <target_type>String</target_type> | |
| 3907 | - <target_format/> | |
| 3908 | - <target_length>-1</target_length> | |
| 3909 | - <target_precision>-1</target_precision> | |
| 3910 | - <target_decimal_symbol/> | |
| 3911 | - <target_grouping_symbol/> | |
| 3912 | - <target_currency_symbol/> | |
| 3913 | - <target_null_string/> | |
| 3914 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3915 | - </field> | |
| 3916 | - <field> | |
| 3917 | - <field_name>bc_type</field_name> | |
| 3918 | - <key_value>24</key_value> | |
| 3919 | - <target_name>fcno24_bctype</target_name> | |
| 3920 | - <target_type>String</target_type> | |
| 3921 | - <target_format/> | |
| 3922 | - <target_length>-1</target_length> | |
| 3923 | - <target_precision>-1</target_precision> | |
| 3924 | - <target_decimal_symbol/> | |
| 3925 | - <target_grouping_symbol/> | |
| 3926 | - <target_currency_symbol/> | |
| 3927 | - <target_null_string/> | |
| 3928 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3929 | - </field> | |
| 3930 | - <field> | |
| 3931 | - <field_name>xl_dir</field_name> | |
| 3932 | - <key_value>24</key_value> | |
| 3933 | - <target_name>fcno24_xldir</target_name> | |
| 3934 | - <target_type>String</target_type> | |
| 3935 | - <target_format/> | |
| 3936 | - <target_length>-1</target_length> | |
| 3937 | - <target_precision>-1</target_precision> | |
| 3938 | - <target_decimal_symbol/> | |
| 3939 | - <target_grouping_symbol/> | |
| 3940 | - <target_currency_symbol/> | |
| 3941 | - <target_null_string/> | |
| 3942 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3943 | - </field> | |
| 3944 | - <field> | |
| 3945 | - <field_name>isfb</field_name> | |
| 3946 | - <key_value>24</key_value> | |
| 3947 | - <target_name>fcno24_isfb</target_name> | |
| 3948 | - <target_type>String</target_type> | |
| 3949 | - <target_format/> | |
| 3950 | - <target_length>-1</target_length> | |
| 3951 | - <target_precision>-1</target_precision> | |
| 3952 | - <target_decimal_symbol/> | |
| 3953 | - <target_grouping_symbol/> | |
| 3954 | - <target_currency_symbol/> | |
| 3955 | - <target_null_string/> | |
| 3956 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3957 | - </field> | |
| 3958 | - <field> | |
| 3959 | - <field_name>id</field_name> | |
| 3960 | - <key_value>25</key_value> | |
| 3961 | - <target_name>fcno25_id</target_name> | |
| 3962 | - <target_type>String</target_type> | |
| 3963 | - <target_format/> | |
| 3964 | - <target_length>-1</target_length> | |
| 3965 | - <target_precision>-1</target_precision> | |
| 3966 | - <target_decimal_symbol/> | |
| 3967 | - <target_grouping_symbol/> | |
| 3968 | - <target_currency_symbol/> | |
| 3969 | - <target_null_string/> | |
| 3970 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3971 | - </field> | |
| 3972 | - <field> | |
| 3973 | - <field_name>fcsj</field_name> | |
| 3974 | - <key_value>25</key_value> | |
| 3975 | - <target_name>fcno25_fcsj</target_name> | |
| 3976 | - <target_type>String</target_type> | |
| 3977 | - <target_format/> | |
| 3978 | - <target_length>-1</target_length> | |
| 3979 | - <target_precision>-1</target_precision> | |
| 3980 | - <target_decimal_symbol/> | |
| 3981 | - <target_grouping_symbol/> | |
| 3982 | - <target_currency_symbol/> | |
| 3983 | - <target_null_string/> | |
| 3984 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3985 | - </field> | |
| 3986 | - <field> | |
| 3987 | - <field_name>jhlc</field_name> | |
| 3988 | - <key_value>25</key_value> | |
| 3989 | - <target_name>fcno25_jhlc</target_name> | |
| 3990 | - <target_type>String</target_type> | |
| 3991 | - <target_format/> | |
| 3992 | - <target_length>-1</target_length> | |
| 3993 | - <target_precision>-1</target_precision> | |
| 3994 | - <target_decimal_symbol/> | |
| 3995 | - <target_grouping_symbol/> | |
| 3996 | - <target_currency_symbol/> | |
| 3997 | - <target_null_string/> | |
| 3998 | - <target_aggregation_type>-</target_aggregation_type> | |
| 3999 | - </field> | |
| 4000 | - <field> | |
| 4001 | - <field_name>fczdName</field_name> | |
| 4002 | - <key_value>25</key_value> | |
| 4003 | - <target_name>fcno25_zdname</target_name> | |
| 4004 | - <target_type>String</target_type> | |
| 4005 | - <target_format/> | |
| 4006 | - <target_length>-1</target_length> | |
| 4007 | - <target_precision>-1</target_precision> | |
| 4008 | - <target_decimal_symbol/> | |
| 4009 | - <target_grouping_symbol/> | |
| 4010 | - <target_currency_symbol/> | |
| 4011 | - <target_null_string/> | |
| 4012 | - <target_aggregation_type>-</target_aggregation_type> | |
| 4013 | - </field> | |
| 4014 | - <field> | |
| 4015 | - <field_name>bc_type</field_name> | |
| 4016 | - <key_value>25</key_value> | |
| 4017 | - <target_name>fcno25_bctype</target_name> | |
| 4018 | - <target_type>String</target_type> | |
| 4019 | - <target_format/> | |
| 4020 | - <target_length>-1</target_length> | |
| 4021 | - <target_precision>-1</target_precision> | |
| 4022 | - <target_decimal_symbol/> | |
| 4023 | - <target_grouping_symbol/> | |
| 4024 | - <target_currency_symbol/> | |
| 4025 | - <target_null_string/> | |
| 4026 | - <target_aggregation_type>-</target_aggregation_type> | |
| 4027 | - </field> | |
| 4028 | - <field> | |
| 4029 | - <field_name>xl_dir</field_name> | |
| 4030 | - <key_value>25</key_value> | |
| 4031 | - <target_name>fcno25_xldir</target_name> | |
| 4032 | - <target_type>String</target_type> | |
| 4033 | - <target_format/> | |
| 4034 | - <target_length>-1</target_length> | |
| 4035 | - <target_precision>-1</target_precision> | |
| 4036 | - <target_decimal_symbol/> | |
| 4037 | - <target_grouping_symbol/> | |
| 4038 | - <target_currency_symbol/> | |
| 4039 | - <target_null_string/> | |
| 4040 | - <target_aggregation_type>-</target_aggregation_type> | |
| 4041 | - </field> | |
| 710 | + </fields> | |
| 711 | + <custom> | |
| 712 | + <header_font_name>arial</header_font_name> | |
| 713 | + <header_font_size>10</header_font_size> | |
| 714 | + <header_font_bold>N</header_font_bold> | |
| 715 | + <header_font_italic>N</header_font_italic> | |
| 716 | + <header_font_underline>no</header_font_underline> | |
| 717 | + <header_font_orientation>horizontal</header_font_orientation> | |
| 718 | + <header_font_color>black</header_font_color> | |
| 719 | + <header_background_color>none</header_background_color> | |
| 720 | + <header_row_height>255</header_row_height> | |
| 721 | + <header_alignment>left</header_alignment> | |
| 722 | + <header_image/> | |
| 723 | + <row_font_name>arial</row_font_name> | |
| 724 | + <row_font_size>10</row_font_size> | |
| 725 | + <row_font_color>black</row_font_color> | |
| 726 | + <row_background_color>none</row_background_color> | |
| 727 | + </custom> | |
| 728 | + <cluster_schema/> | |
| 729 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 730 | + <xloc>692</xloc> | |
| 731 | + <yloc>514</yloc> | |
| 732 | + <draw>Y</draw> | |
| 733 | + </GUI> | |
| 734 | + </step> | |
| 735 | + | |
| 736 | + <step> | |
| 737 | + <name>列转行</name> | |
| 738 | + <type>Denormaliser</type> | |
| 739 | + <description/> | |
| 740 | + <distribute>N</distribute> | |
| 741 | + <custom_distribution/> | |
| 742 | + <copies>1</copies> | |
| 743 | + <partitioning> | |
| 744 | + <method>none</method> | |
| 745 | + <schema_name/> | |
| 746 | + </partitioning> | |
| 747 | + <key_field>fcno</key_field> | |
| 748 | + <group> | |
| 4042 | 749 | <field> |
| 4043 | - <field_name>isfb</field_name> | |
| 4044 | - <key_value>25</key_value> | |
| 4045 | - <target_name>fcno25_isfb</target_name> | |
| 4046 | - <target_type>String</target_type> | |
| 4047 | - <target_format/> | |
| 4048 | - <target_length>-1</target_length> | |
| 4049 | - <target_precision>-1</target_precision> | |
| 4050 | - <target_decimal_symbol/> | |
| 4051 | - <target_grouping_symbol/> | |
| 4052 | - <target_currency_symbol/> | |
| 4053 | - <target_null_string/> | |
| 4054 | - <target_aggregation_type>-</target_aggregation_type> | |
| 750 | + <name>lp</name> | |
| 4055 | 751 | </field> |
| 752 | + </group> | |
| 753 | + <fields> | |
| 4056 | 754 | <field> |
| 4057 | - <field_name>id</field_name> | |
| 4058 | - <key_value>26</key_value> | |
| 4059 | - <target_name>fcno26_id</target_name> | |
| 755 | + <field_name>all_content</field_name> | |
| 756 | + <key_value>1</key_value> | |
| 757 | + <target_name>fcno1</target_name> | |
| 4060 | 758 | <target_type>String</target_type> |
| 4061 | 759 | <target_format/> |
| 4062 | 760 | <target_length>-1</target_length> |
| ... | ... | @@ -4068,9 +766,9 @@ |
| 4068 | 766 | <target_aggregation_type>-</target_aggregation_type> |
| 4069 | 767 | </field> |
| 4070 | 768 | <field> |
| 4071 | - <field_name>fcsj</field_name> | |
| 4072 | - <key_value>26</key_value> | |
| 4073 | - <target_name>fcno26_fcsj</target_name> | |
| 769 | + <field_name>all_content</field_name> | |
| 770 | + <key_value>2</key_value> | |
| 771 | + <target_name>fcno2</target_name> | |
| 4074 | 772 | <target_type>String</target_type> |
| 4075 | 773 | <target_format/> |
| 4076 | 774 | <target_length>-1</target_length> |
| ... | ... | @@ -4082,9 +780,9 @@ |
| 4082 | 780 | <target_aggregation_type>-</target_aggregation_type> |
| 4083 | 781 | </field> |
| 4084 | 782 | <field> |
| 4085 | - <field_name>jhlc</field_name> | |
| 4086 | - <key_value>26</key_value> | |
| 4087 | - <target_name>fcno26_jhlc</target_name> | |
| 783 | + <field_name>all_content</field_name> | |
| 784 | + <key_value>3</key_value> | |
| 785 | + <target_name>fcno3</target_name> | |
| 4088 | 786 | <target_type>String</target_type> |
| 4089 | 787 | <target_format/> |
| 4090 | 788 | <target_length>-1</target_length> |
| ... | ... | @@ -4096,9 +794,9 @@ |
| 4096 | 794 | <target_aggregation_type>-</target_aggregation_type> |
| 4097 | 795 | </field> |
| 4098 | 796 | <field> |
| 4099 | - <field_name>fczdName</field_name> | |
| 4100 | - <key_value>26</key_value> | |
| 4101 | - <target_name>fcno26_zdname</target_name> | |
| 797 | + <field_name>all_content</field_name> | |
| 798 | + <key_value>4</key_value> | |
| 799 | + <target_name>fcno4</target_name> | |
| 4102 | 800 | <target_type>String</target_type> |
| 4103 | 801 | <target_format/> |
| 4104 | 802 | <target_length>-1</target_length> |
| ... | ... | @@ -4110,9 +808,9 @@ |
| 4110 | 808 | <target_aggregation_type>-</target_aggregation_type> |
| 4111 | 809 | </field> |
| 4112 | 810 | <field> |
| 4113 | - <field_name>bc_type</field_name> | |
| 4114 | - <key_value>26</key_value> | |
| 4115 | - <target_name>fcno26_bctype</target_name> | |
| 811 | + <field_name>all_content</field_name> | |
| 812 | + <key_value>5</key_value> | |
| 813 | + <target_name>fcno5</target_name> | |
| 4116 | 814 | <target_type>String</target_type> |
| 4117 | 815 | <target_format/> |
| 4118 | 816 | <target_length>-1</target_length> |
| ... | ... | @@ -4124,9 +822,9 @@ |
| 4124 | 822 | <target_aggregation_type>-</target_aggregation_type> |
| 4125 | 823 | </field> |
| 4126 | 824 | <field> |
| 4127 | - <field_name>xl_dir</field_name> | |
| 4128 | - <key_value>26</key_value> | |
| 4129 | - <target_name>fcno26_xldir</target_name> | |
| 825 | + <field_name>all_content</field_name> | |
| 826 | + <key_value>6</key_value> | |
| 827 | + <target_name>fcno6</target_name> | |
| 4130 | 828 | <target_type>String</target_type> |
| 4131 | 829 | <target_format/> |
| 4132 | 830 | <target_length>-1</target_length> |
| ... | ... | @@ -4138,9 +836,9 @@ |
| 4138 | 836 | <target_aggregation_type>-</target_aggregation_type> |
| 4139 | 837 | </field> |
| 4140 | 838 | <field> |
| 4141 | - <field_name>isfb</field_name> | |
| 4142 | - <key_value>26</key_value> | |
| 4143 | - <target_name>fcno26_isfb</target_name> | |
| 839 | + <field_name>all_content</field_name> | |
| 840 | + <key_value>7</key_value> | |
| 841 | + <target_name>fcno7</target_name> | |
| 4144 | 842 | <target_type>String</target_type> |
| 4145 | 843 | <target_format/> |
| 4146 | 844 | <target_length>-1</target_length> |
| ... | ... | @@ -4152,9 +850,9 @@ |
| 4152 | 850 | <target_aggregation_type>-</target_aggregation_type> |
| 4153 | 851 | </field> |
| 4154 | 852 | <field> |
| 4155 | - <field_name>id</field_name> | |
| 4156 | - <key_value>27</key_value> | |
| 4157 | - <target_name>fcno27_id</target_name> | |
| 853 | + <field_name>all_content</field_name> | |
| 854 | + <key_value>8</key_value> | |
| 855 | + <target_name>fcno8</target_name> | |
| 4158 | 856 | <target_type>String</target_type> |
| 4159 | 857 | <target_format/> |
| 4160 | 858 | <target_length>-1</target_length> |
| ... | ... | @@ -4166,9 +864,9 @@ |
| 4166 | 864 | <target_aggregation_type>-</target_aggregation_type> |
| 4167 | 865 | </field> |
| 4168 | 866 | <field> |
| 4169 | - <field_name>fcsj</field_name> | |
| 4170 | - <key_value>27</key_value> | |
| 4171 | - <target_name>fcno27_fcsj</target_name> | |
| 867 | + <field_name>all_content</field_name> | |
| 868 | + <key_value>9</key_value> | |
| 869 | + <target_name>fcno9</target_name> | |
| 4172 | 870 | <target_type>String</target_type> |
| 4173 | 871 | <target_format/> |
| 4174 | 872 | <target_length>-1</target_length> |
| ... | ... | @@ -4180,9 +878,9 @@ |
| 4180 | 878 | <target_aggregation_type>-</target_aggregation_type> |
| 4181 | 879 | </field> |
| 4182 | 880 | <field> |
| 4183 | - <field_name>jhlc</field_name> | |
| 4184 | - <key_value>27</key_value> | |
| 4185 | - <target_name>fcno27_jhlc</target_name> | |
| 881 | + <field_name>all_content</field_name> | |
| 882 | + <key_value>10</key_value> | |
| 883 | + <target_name>fcno10</target_name> | |
| 4186 | 884 | <target_type>String</target_type> |
| 4187 | 885 | <target_format/> |
| 4188 | 886 | <target_length>-1</target_length> |
| ... | ... | @@ -4194,9 +892,9 @@ |
| 4194 | 892 | <target_aggregation_type>-</target_aggregation_type> |
| 4195 | 893 | </field> |
| 4196 | 894 | <field> |
| 4197 | - <field_name>fczdName</field_name> | |
| 4198 | - <key_value>27</key_value> | |
| 4199 | - <target_name>fcno27_zdname</target_name> | |
| 895 | + <field_name>all_content</field_name> | |
| 896 | + <key_value>11</key_value> | |
| 897 | + <target_name>fcno11</target_name> | |
| 4200 | 898 | <target_type>String</target_type> |
| 4201 | 899 | <target_format/> |
| 4202 | 900 | <target_length>-1</target_length> |
| ... | ... | @@ -4208,9 +906,9 @@ |
| 4208 | 906 | <target_aggregation_type>-</target_aggregation_type> |
| 4209 | 907 | </field> |
| 4210 | 908 | <field> |
| 4211 | - <field_name>bc_type</field_name> | |
| 4212 | - <key_value>27</key_value> | |
| 4213 | - <target_name>fcno27_bctype</target_name> | |
| 909 | + <field_name>all_content</field_name> | |
| 910 | + <key_value>12</key_value> | |
| 911 | + <target_name>fcno12</target_name> | |
| 4214 | 912 | <target_type>String</target_type> |
| 4215 | 913 | <target_format/> |
| 4216 | 914 | <target_length>-1</target_length> |
| ... | ... | @@ -4222,9 +920,9 @@ |
| 4222 | 920 | <target_aggregation_type>-</target_aggregation_type> |
| 4223 | 921 | </field> |
| 4224 | 922 | <field> |
| 4225 | - <field_name>xl_dir</field_name> | |
| 4226 | - <key_value>27</key_value> | |
| 4227 | - <target_name>fcno27_xldir</target_name> | |
| 923 | + <field_name>all_content</field_name> | |
| 924 | + <key_value>13</key_value> | |
| 925 | + <target_name>fcno13</target_name> | |
| 4228 | 926 | <target_type>String</target_type> |
| 4229 | 927 | <target_format/> |
| 4230 | 928 | <target_length>-1</target_length> |
| ... | ... | @@ -4236,9 +934,9 @@ |
| 4236 | 934 | <target_aggregation_type>-</target_aggregation_type> |
| 4237 | 935 | </field> |
| 4238 | 936 | <field> |
| 4239 | - <field_name>isfb</field_name> | |
| 4240 | - <key_value>27</key_value> | |
| 4241 | - <target_name>fcno27_isfb</target_name> | |
| 937 | + <field_name>all_content</field_name> | |
| 938 | + <key_value>14</key_value> | |
| 939 | + <target_name>fcno14</target_name> | |
| 4242 | 940 | <target_type>String</target_type> |
| 4243 | 941 | <target_format/> |
| 4244 | 942 | <target_length>-1</target_length> |
| ... | ... | @@ -4250,9 +948,9 @@ |
| 4250 | 948 | <target_aggregation_type>-</target_aggregation_type> |
| 4251 | 949 | </field> |
| 4252 | 950 | <field> |
| 4253 | - <field_name>id</field_name> | |
| 4254 | - <key_value>28</key_value> | |
| 4255 | - <target_name>fcno28_id</target_name> | |
| 951 | + <field_name>all_content</field_name> | |
| 952 | + <key_value>15</key_value> | |
| 953 | + <target_name>fcno15</target_name> | |
| 4256 | 954 | <target_type>String</target_type> |
| 4257 | 955 | <target_format/> |
| 4258 | 956 | <target_length>-1</target_length> |
| ... | ... | @@ -4264,9 +962,9 @@ |
| 4264 | 962 | <target_aggregation_type>-</target_aggregation_type> |
| 4265 | 963 | </field> |
| 4266 | 964 | <field> |
| 4267 | - <field_name>fcsj</field_name> | |
| 4268 | - <key_value>28</key_value> | |
| 4269 | - <target_name>fcno28_fcsj</target_name> | |
| 965 | + <field_name>all_content</field_name> | |
| 966 | + <key_value>16</key_value> | |
| 967 | + <target_name>fcno16</target_name> | |
| 4270 | 968 | <target_type>String</target_type> |
| 4271 | 969 | <target_format/> |
| 4272 | 970 | <target_length>-1</target_length> |
| ... | ... | @@ -4278,9 +976,9 @@ |
| 4278 | 976 | <target_aggregation_type>-</target_aggregation_type> |
| 4279 | 977 | </field> |
| 4280 | 978 | <field> |
| 4281 | - <field_name>jhlc</field_name> | |
| 4282 | - <key_value>28</key_value> | |
| 4283 | - <target_name>fcno28_jhlc</target_name> | |
| 979 | + <field_name>all_content</field_name> | |
| 980 | + <key_value>17</key_value> | |
| 981 | + <target_name>fcno17</target_name> | |
| 4284 | 982 | <target_type>String</target_type> |
| 4285 | 983 | <target_format/> |
| 4286 | 984 | <target_length>-1</target_length> |
| ... | ... | @@ -4292,9 +990,9 @@ |
| 4292 | 990 | <target_aggregation_type>-</target_aggregation_type> |
| 4293 | 991 | </field> |
| 4294 | 992 | <field> |
| 4295 | - <field_name>fczdName</field_name> | |
| 4296 | - <key_value>28</key_value> | |
| 4297 | - <target_name>fcno28_zdname</target_name> | |
| 993 | + <field_name>all_content</field_name> | |
| 994 | + <key_value>18</key_value> | |
| 995 | + <target_name>fcno18</target_name> | |
| 4298 | 996 | <target_type>String</target_type> |
| 4299 | 997 | <target_format/> |
| 4300 | 998 | <target_length>-1</target_length> |
| ... | ... | @@ -4306,9 +1004,9 @@ |
| 4306 | 1004 | <target_aggregation_type>-</target_aggregation_type> |
| 4307 | 1005 | </field> |
| 4308 | 1006 | <field> |
| 4309 | - <field_name>bc_type</field_name> | |
| 4310 | - <key_value>28</key_value> | |
| 4311 | - <target_name>fcno28_bctype</target_name> | |
| 1007 | + <field_name>all_content</field_name> | |
| 1008 | + <key_value>19</key_value> | |
| 1009 | + <target_name>fcno19</target_name> | |
| 4312 | 1010 | <target_type>String</target_type> |
| 4313 | 1011 | <target_format/> |
| 4314 | 1012 | <target_length>-1</target_length> |
| ... | ... | @@ -4320,9 +1018,9 @@ |
| 4320 | 1018 | <target_aggregation_type>-</target_aggregation_type> |
| 4321 | 1019 | </field> |
| 4322 | 1020 | <field> |
| 4323 | - <field_name>xl_dir</field_name> | |
| 4324 | - <key_value>28</key_value> | |
| 4325 | - <target_name>fcno28_xldir</target_name> | |
| 1021 | + <field_name>all_content</field_name> | |
| 1022 | + <key_value>20</key_value> | |
| 1023 | + <target_name>fcno20</target_name> | |
| 4326 | 1024 | <target_type>String</target_type> |
| 4327 | 1025 | <target_format/> |
| 4328 | 1026 | <target_length>-1</target_length> |
| ... | ... | @@ -4334,9 +1032,9 @@ |
| 4334 | 1032 | <target_aggregation_type>-</target_aggregation_type> |
| 4335 | 1033 | </field> |
| 4336 | 1034 | <field> |
| 4337 | - <field_name>isfb</field_name> | |
| 4338 | - <key_value>28</key_value> | |
| 4339 | - <target_name>fcno28_isfb</target_name> | |
| 1035 | + <field_name>all_content</field_name> | |
| 1036 | + <key_value>21</key_value> | |
| 1037 | + <target_name>fcno21</target_name> | |
| 4340 | 1038 | <target_type>String</target_type> |
| 4341 | 1039 | <target_format/> |
| 4342 | 1040 | <target_length>-1</target_length> |
| ... | ... | @@ -4348,9 +1046,9 @@ |
| 4348 | 1046 | <target_aggregation_type>-</target_aggregation_type> |
| 4349 | 1047 | </field> |
| 4350 | 1048 | <field> |
| 4351 | - <field_name>id</field_name> | |
| 4352 | - <key_value>29</key_value> | |
| 4353 | - <target_name>fcno29_id</target_name> | |
| 1049 | + <field_name>all_content</field_name> | |
| 1050 | + <key_value>22</key_value> | |
| 1051 | + <target_name>fcno22</target_name> | |
| 4354 | 1052 | <target_type>String</target_type> |
| 4355 | 1053 | <target_format/> |
| 4356 | 1054 | <target_length>-1</target_length> |
| ... | ... | @@ -4362,9 +1060,9 @@ |
| 4362 | 1060 | <target_aggregation_type>-</target_aggregation_type> |
| 4363 | 1061 | </field> |
| 4364 | 1062 | <field> |
| 4365 | - <field_name>fcsj</field_name> | |
| 4366 | - <key_value>29</key_value> | |
| 4367 | - <target_name>fcno29_fcsj</target_name> | |
| 1063 | + <field_name>all_content</field_name> | |
| 1064 | + <key_value>23</key_value> | |
| 1065 | + <target_name>fcno23</target_name> | |
| 4368 | 1066 | <target_type>String</target_type> |
| 4369 | 1067 | <target_format/> |
| 4370 | 1068 | <target_length>-1</target_length> |
| ... | ... | @@ -4376,9 +1074,9 @@ |
| 4376 | 1074 | <target_aggregation_type>-</target_aggregation_type> |
| 4377 | 1075 | </field> |
| 4378 | 1076 | <field> |
| 4379 | - <field_name>jhlc</field_name> | |
| 4380 | - <key_value>29</key_value> | |
| 4381 | - <target_name>fcno29_jhlc</target_name> | |
| 1077 | + <field_name>all_content</field_name> | |
| 1078 | + <key_value>24</key_value> | |
| 1079 | + <target_name>fcno24</target_name> | |
| 4382 | 1080 | <target_type>String</target_type> |
| 4383 | 1081 | <target_format/> |
| 4384 | 1082 | <target_length>-1</target_length> |
| ... | ... | @@ -4390,9 +1088,9 @@ |
| 4390 | 1088 | <target_aggregation_type>-</target_aggregation_type> |
| 4391 | 1089 | </field> |
| 4392 | 1090 | <field> |
| 4393 | - <field_name>fczdName</field_name> | |
| 4394 | - <key_value>29</key_value> | |
| 4395 | - <target_name>fcno29_zdname</target_name> | |
| 1091 | + <field_name>all_content</field_name> | |
| 1092 | + <key_value>25</key_value> | |
| 1093 | + <target_name>fcno25</target_name> | |
| 4396 | 1094 | <target_type>String</target_type> |
| 4397 | 1095 | <target_format/> |
| 4398 | 1096 | <target_length>-1</target_length> |
| ... | ... | @@ -4404,9 +1102,9 @@ |
| 4404 | 1102 | <target_aggregation_type>-</target_aggregation_type> |
| 4405 | 1103 | </field> |
| 4406 | 1104 | <field> |
| 4407 | - <field_name>bc_type</field_name> | |
| 4408 | - <key_value>29</key_value> | |
| 4409 | - <target_name>fcno29_bctype</target_name> | |
| 1105 | + <field_name>all_content</field_name> | |
| 1106 | + <key_value>26</key_value> | |
| 1107 | + <target_name>fcno26</target_name> | |
| 4410 | 1108 | <target_type>String</target_type> |
| 4411 | 1109 | <target_format/> |
| 4412 | 1110 | <target_length>-1</target_length> |
| ... | ... | @@ -4418,9 +1116,9 @@ |
| 4418 | 1116 | <target_aggregation_type>-</target_aggregation_type> |
| 4419 | 1117 | </field> |
| 4420 | 1118 | <field> |
| 4421 | - <field_name>xl_dir</field_name> | |
| 4422 | - <key_value>29</key_value> | |
| 4423 | - <target_name>fcno29_xldir</target_name> | |
| 1119 | + <field_name>all_content</field_name> | |
| 1120 | + <key_value>27</key_value> | |
| 1121 | + <target_name>fcno27</target_name> | |
| 4424 | 1122 | <target_type>String</target_type> |
| 4425 | 1123 | <target_format/> |
| 4426 | 1124 | <target_length>-1</target_length> |
| ... | ... | @@ -4432,9 +1130,9 @@ |
| 4432 | 1130 | <target_aggregation_type>-</target_aggregation_type> |
| 4433 | 1131 | </field> |
| 4434 | 1132 | <field> |
| 4435 | - <field_name>isfb</field_name> | |
| 4436 | - <key_value>29</key_value> | |
| 4437 | - <target_name>fcno29_isfb</target_name> | |
| 1133 | + <field_name>all_content</field_name> | |
| 1134 | + <key_value>28</key_value> | |
| 1135 | + <target_name>fcno28</target_name> | |
| 4438 | 1136 | <target_type>String</target_type> |
| 4439 | 1137 | <target_format/> |
| 4440 | 1138 | <target_length>-1</target_length> |
| ... | ... | @@ -4446,9 +1144,9 @@ |
| 4446 | 1144 | <target_aggregation_type>-</target_aggregation_type> |
| 4447 | 1145 | </field> |
| 4448 | 1146 | <field> |
| 4449 | - <field_name>id</field_name> | |
| 4450 | - <key_value>30</key_value> | |
| 4451 | - <target_name>fcno30_id</target_name> | |
| 1147 | + <field_name>all_content</field_name> | |
| 1148 | + <key_value>29</key_value> | |
| 1149 | + <target_name>fcno29</target_name> | |
| 4452 | 1150 | <target_type>String</target_type> |
| 4453 | 1151 | <target_format/> |
| 4454 | 1152 | <target_length>-1</target_length> |
| ... | ... | @@ -4460,9 +1158,9 @@ |
| 4460 | 1158 | <target_aggregation_type>-</target_aggregation_type> |
| 4461 | 1159 | </field> |
| 4462 | 1160 | <field> |
| 4463 | - <field_name>fcsj</field_name> | |
| 1161 | + <field_name>all_content</field_name> | |
| 4464 | 1162 | <key_value>30</key_value> |
| 4465 | - <target_name>fcno30_fcsj</target_name> | |
| 1163 | + <target_name>fcno30</target_name> | |
| 4466 | 1164 | <target_type>String</target_type> |
| 4467 | 1165 | <target_format/> |
| 4468 | 1166 | <target_length>-1</target_length> |
| ... | ... | @@ -4474,9 +1172,9 @@ |
| 4474 | 1172 | <target_aggregation_type>-</target_aggregation_type> |
| 4475 | 1173 | </field> |
| 4476 | 1174 | <field> |
| 4477 | - <field_name>jhlc</field_name> | |
| 4478 | - <key_value>30</key_value> | |
| 4479 | - <target_name>fcno30_jhlc</target_name> | |
| 1175 | + <field_name>all_content</field_name> | |
| 1176 | + <key_value>31</key_value> | |
| 1177 | + <target_name>fcno31</target_name> | |
| 4480 | 1178 | <target_type>String</target_type> |
| 4481 | 1179 | <target_format/> |
| 4482 | 1180 | <target_length>-1</target_length> |
| ... | ... | @@ -4488,9 +1186,9 @@ |
| 4488 | 1186 | <target_aggregation_type>-</target_aggregation_type> |
| 4489 | 1187 | </field> |
| 4490 | 1188 | <field> |
| 4491 | - <field_name>fczdName</field_name> | |
| 4492 | - <key_value>30</key_value> | |
| 4493 | - <target_name>fcno30_zdname</target_name> | |
| 1189 | + <field_name>all_content</field_name> | |
| 1190 | + <key_value>32</key_value> | |
| 1191 | + <target_name>fcno32</target_name> | |
| 4494 | 1192 | <target_type>String</target_type> |
| 4495 | 1193 | <target_format/> |
| 4496 | 1194 | <target_length>-1</target_length> |
| ... | ... | @@ -4502,9 +1200,9 @@ |
| 4502 | 1200 | <target_aggregation_type>-</target_aggregation_type> |
| 4503 | 1201 | </field> |
| 4504 | 1202 | <field> |
| 4505 | - <field_name>bc_type</field_name> | |
| 4506 | - <key_value>30</key_value> | |
| 4507 | - <target_name>fcno30_bctype</target_name> | |
| 1203 | + <field_name>all_content</field_name> | |
| 1204 | + <key_value>33</key_value> | |
| 1205 | + <target_name>fcno33</target_name> | |
| 4508 | 1206 | <target_type>String</target_type> |
| 4509 | 1207 | <target_format/> |
| 4510 | 1208 | <target_length>-1</target_length> |
| ... | ... | @@ -4516,9 +1214,9 @@ |
| 4516 | 1214 | <target_aggregation_type>-</target_aggregation_type> |
| 4517 | 1215 | </field> |
| 4518 | 1216 | <field> |
| 4519 | - <field_name>xl_dir</field_name> | |
| 4520 | - <key_value>30</key_value> | |
| 4521 | - <target_name>fcno30_xldir</target_name> | |
| 1217 | + <field_name>all_content</field_name> | |
| 1218 | + <key_value>34</key_value> | |
| 1219 | + <target_name>fcno34</target_name> | |
| 4522 | 1220 | <target_type>String</target_type> |
| 4523 | 1221 | <target_format/> |
| 4524 | 1222 | <target_length>-1</target_length> |
| ... | ... | @@ -4530,9 +1228,9 @@ |
| 4530 | 1228 | <target_aggregation_type>-</target_aggregation_type> |
| 4531 | 1229 | </field> |
| 4532 | 1230 | <field> |
| 4533 | - <field_name>isfb</field_name> | |
| 4534 | - <key_value>30</key_value> | |
| 4535 | - <target_name>fcno30_isfb</target_name> | |
| 1231 | + <field_name>all_content</field_name> | |
| 1232 | + <key_value>35</key_value> | |
| 1233 | + <target_name>fcno35</target_name> | |
| 4536 | 1234 | <target_type>String</target_type> |
| 4537 | 1235 | <target_format/> |
| 4538 | 1236 | <target_length>-1</target_length> |
| ... | ... | @@ -4544,9 +1242,9 @@ |
| 4544 | 1242 | <target_aggregation_type>-</target_aggregation_type> |
| 4545 | 1243 | </field> |
| 4546 | 1244 | <field> |
| 4547 | - <field_name>id</field_name> | |
| 4548 | - <key_value>31</key_value> | |
| 4549 | - <target_name>fcno31_id</target_name> | |
| 1245 | + <field_name>all_content</field_name> | |
| 1246 | + <key_value>36</key_value> | |
| 1247 | + <target_name>fcno36</target_name> | |
| 4550 | 1248 | <target_type>String</target_type> |
| 4551 | 1249 | <target_format/> |
| 4552 | 1250 | <target_length>-1</target_length> |
| ... | ... | @@ -4558,9 +1256,9 @@ |
| 4558 | 1256 | <target_aggregation_type>-</target_aggregation_type> |
| 4559 | 1257 | </field> |
| 4560 | 1258 | <field> |
| 4561 | - <field_name>fcsj</field_name> | |
| 4562 | - <key_value>31</key_value> | |
| 4563 | - <target_name>fcno31_fcsj</target_name> | |
| 1259 | + <field_name>all_content</field_name> | |
| 1260 | + <key_value>37</key_value> | |
| 1261 | + <target_name>fcno37</target_name> | |
| 4564 | 1262 | <target_type>String</target_type> |
| 4565 | 1263 | <target_format/> |
| 4566 | 1264 | <target_length>-1</target_length> |
| ... | ... | @@ -4572,9 +1270,9 @@ |
| 4572 | 1270 | <target_aggregation_type>-</target_aggregation_type> |
| 4573 | 1271 | </field> |
| 4574 | 1272 | <field> |
| 4575 | - <field_name>jhlc</field_name> | |
| 4576 | - <key_value>31</key_value> | |
| 4577 | - <target_name>fcno31_jhlc</target_name> | |
| 1273 | + <field_name>all_content</field_name> | |
| 1274 | + <key_value>38</key_value> | |
| 1275 | + <target_name>fcno38</target_name> | |
| 4578 | 1276 | <target_type>String</target_type> |
| 4579 | 1277 | <target_format/> |
| 4580 | 1278 | <target_length>-1</target_length> |
| ... | ... | @@ -4586,9 +1284,9 @@ |
| 4586 | 1284 | <target_aggregation_type>-</target_aggregation_type> |
| 4587 | 1285 | </field> |
| 4588 | 1286 | <field> |
| 4589 | - <field_name>fczdName</field_name> | |
| 4590 | - <key_value>31</key_value> | |
| 4591 | - <target_name>fcno31_zdname</target_name> | |
| 1287 | + <field_name>all_content</field_name> | |
| 1288 | + <key_value>39</key_value> | |
| 1289 | + <target_name>fcno39</target_name> | |
| 4592 | 1290 | <target_type>String</target_type> |
| 4593 | 1291 | <target_format/> |
| 4594 | 1292 | <target_length>-1</target_length> |
| ... | ... | @@ -4600,9 +1298,9 @@ |
| 4600 | 1298 | <target_aggregation_type>-</target_aggregation_type> |
| 4601 | 1299 | </field> |
| 4602 | 1300 | <field> |
| 4603 | - <field_name>bc_type</field_name> | |
| 4604 | - <key_value>31</key_value> | |
| 4605 | - <target_name>fcno31_bctype</target_name> | |
| 1301 | + <field_name>all_content</field_name> | |
| 1302 | + <key_value>40</key_value> | |
| 1303 | + <target_name>fcno40</target_name> | |
| 4606 | 1304 | <target_type>String</target_type> |
| 4607 | 1305 | <target_format/> |
| 4608 | 1306 | <target_length>-1</target_length> |
| ... | ... | @@ -4614,9 +1312,9 @@ |
| 4614 | 1312 | <target_aggregation_type>-</target_aggregation_type> |
| 4615 | 1313 | </field> |
| 4616 | 1314 | <field> |
| 4617 | - <field_name>xl_dir</field_name> | |
| 4618 | - <key_value>31</key_value> | |
| 4619 | - <target_name>fcno31_xldir</target_name> | |
| 1315 | + <field_name>all_content</field_name> | |
| 1316 | + <key_value>41</key_value> | |
| 1317 | + <target_name>fcno41</target_name> | |
| 4620 | 1318 | <target_type>String</target_type> |
| 4621 | 1319 | <target_format/> |
| 4622 | 1320 | <target_length>-1</target_length> |
| ... | ... | @@ -4628,9 +1326,9 @@ |
| 4628 | 1326 | <target_aggregation_type>-</target_aggregation_type> |
| 4629 | 1327 | </field> |
| 4630 | 1328 | <field> |
| 4631 | - <field_name>isfb</field_name> | |
| 4632 | - <key_value>31</key_value> | |
| 4633 | - <target_name>fcno31_isfb</target_name> | |
| 1329 | + <field_name>all_content</field_name> | |
| 1330 | + <key_value>42</key_value> | |
| 1331 | + <target_name>fcno42</target_name> | |
| 4634 | 1332 | <target_type>String</target_type> |
| 4635 | 1333 | <target_format/> |
| 4636 | 1334 | <target_length>-1</target_length> |
| ... | ... | @@ -4642,9 +1340,9 @@ |
| 4642 | 1340 | <target_aggregation_type>-</target_aggregation_type> |
| 4643 | 1341 | </field> |
| 4644 | 1342 | <field> |
| 4645 | - <field_name>id</field_name> | |
| 4646 | - <key_value>32</key_value> | |
| 4647 | - <target_name>fcno32_id</target_name> | |
| 1343 | + <field_name>all_content</field_name> | |
| 1344 | + <key_value>43</key_value> | |
| 1345 | + <target_name>fcno43</target_name> | |
| 4648 | 1346 | <target_type>String</target_type> |
| 4649 | 1347 | <target_format/> |
| 4650 | 1348 | <target_length>-1</target_length> |
| ... | ... | @@ -4656,9 +1354,9 @@ |
| 4656 | 1354 | <target_aggregation_type>-</target_aggregation_type> |
| 4657 | 1355 | </field> |
| 4658 | 1356 | <field> |
| 4659 | - <field_name>fcsj</field_name> | |
| 4660 | - <key_value>32</key_value> | |
| 4661 | - <target_name>fcno32_fcsj</target_name> | |
| 1357 | + <field_name>all_content</field_name> | |
| 1358 | + <key_value>44</key_value> | |
| 1359 | + <target_name>fcno44</target_name> | |
| 4662 | 1360 | <target_type>String</target_type> |
| 4663 | 1361 | <target_format/> |
| 4664 | 1362 | <target_length>-1</target_length> |
| ... | ... | @@ -4670,9 +1368,9 @@ |
| 4670 | 1368 | <target_aggregation_type>-</target_aggregation_type> |
| 4671 | 1369 | </field> |
| 4672 | 1370 | <field> |
| 4673 | - <field_name>jhlc</field_name> | |
| 4674 | - <key_value>32</key_value> | |
| 4675 | - <target_name>fcno32_jhlc</target_name> | |
| 1371 | + <field_name>all_content</field_name> | |
| 1372 | + <key_value>45</key_value> | |
| 1373 | + <target_name>fcno45</target_name> | |
| 4676 | 1374 | <target_type>String</target_type> |
| 4677 | 1375 | <target_format/> |
| 4678 | 1376 | <target_length>-1</target_length> |
| ... | ... | @@ -4684,9 +1382,9 @@ |
| 4684 | 1382 | <target_aggregation_type>-</target_aggregation_type> |
| 4685 | 1383 | </field> |
| 4686 | 1384 | <field> |
| 4687 | - <field_name>fczdName</field_name> | |
| 4688 | - <key_value>32</key_value> | |
| 4689 | - <target_name>fcno32_zdname</target_name> | |
| 1385 | + <field_name>all_content</field_name> | |
| 1386 | + <key_value>46</key_value> | |
| 1387 | + <target_name>fcno46</target_name> | |
| 4690 | 1388 | <target_type>String</target_type> |
| 4691 | 1389 | <target_format/> |
| 4692 | 1390 | <target_length>-1</target_length> |
| ... | ... | @@ -4698,9 +1396,9 @@ |
| 4698 | 1396 | <target_aggregation_type>-</target_aggregation_type> |
| 4699 | 1397 | </field> |
| 4700 | 1398 | <field> |
| 4701 | - <field_name>bc_type</field_name> | |
| 4702 | - <key_value>32</key_value> | |
| 4703 | - <target_name>fcno32_bctype</target_name> | |
| 1399 | + <field_name>all_content</field_name> | |
| 1400 | + <key_value>47</key_value> | |
| 1401 | + <target_name>fcno47</target_name> | |
| 4704 | 1402 | <target_type>String</target_type> |
| 4705 | 1403 | <target_format/> |
| 4706 | 1404 | <target_length>-1</target_length> |
| ... | ... | @@ -4712,9 +1410,9 @@ |
| 4712 | 1410 | <target_aggregation_type>-</target_aggregation_type> |
| 4713 | 1411 | </field> |
| 4714 | 1412 | <field> |
| 4715 | - <field_name>xl_dir</field_name> | |
| 4716 | - <key_value>32</key_value> | |
| 4717 | - <target_name>fcno32_xldir</target_name> | |
| 1413 | + <field_name>all_content</field_name> | |
| 1414 | + <key_value>48</key_value> | |
| 1415 | + <target_name>fcno48</target_name> | |
| 4718 | 1416 | <target_type>String</target_type> |
| 4719 | 1417 | <target_format/> |
| 4720 | 1418 | <target_length>-1</target_length> |
| ... | ... | @@ -4726,9 +1424,9 @@ |
| 4726 | 1424 | <target_aggregation_type>-</target_aggregation_type> |
| 4727 | 1425 | </field> |
| 4728 | 1426 | <field> |
| 4729 | - <field_name>isfb</field_name> | |
| 4730 | - <key_value>32</key_value> | |
| 4731 | - <target_name>fcno32_isfb</target_name> | |
| 1427 | + <field_name>all_content</field_name> | |
| 1428 | + <key_value>49</key_value> | |
| 1429 | + <target_name>fcno49</target_name> | |
| 4732 | 1430 | <target_type>String</target_type> |
| 4733 | 1431 | <target_format/> |
| 4734 | 1432 | <target_length>-1</target_length> |
| ... | ... | @@ -4740,9 +1438,9 @@ |
| 4740 | 1438 | <target_aggregation_type>-</target_aggregation_type> |
| 4741 | 1439 | </field> |
| 4742 | 1440 | <field> |
| 4743 | - <field_name>id</field_name> | |
| 4744 | - <key_value>33</key_value> | |
| 4745 | - <target_name>fcno33_id</target_name> | |
| 1441 | + <field_name>all_content</field_name> | |
| 1442 | + <key_value>50</key_value> | |
| 1443 | + <target_name>fcno50</target_name> | |
| 4746 | 1444 | <target_type>String</target_type> |
| 4747 | 1445 | <target_format/> |
| 4748 | 1446 | <target_length>-1</target_length> |
| ... | ... | @@ -4754,9 +1452,9 @@ |
| 4754 | 1452 | <target_aggregation_type>-</target_aggregation_type> |
| 4755 | 1453 | </field> |
| 4756 | 1454 | <field> |
| 4757 | - <field_name>fcsj</field_name> | |
| 4758 | - <key_value>33</key_value> | |
| 4759 | - <target_name>fcno33_fcsj</target_name> | |
| 1455 | + <field_name>all_content</field_name> | |
| 1456 | + <key_value>51</key_value> | |
| 1457 | + <target_name>fcno51</target_name> | |
| 4760 | 1458 | <target_type>String</target_type> |
| 4761 | 1459 | <target_format/> |
| 4762 | 1460 | <target_length>-1</target_length> |
| ... | ... | @@ -4768,9 +1466,9 @@ |
| 4768 | 1466 | <target_aggregation_type>-</target_aggregation_type> |
| 4769 | 1467 | </field> |
| 4770 | 1468 | <field> |
| 4771 | - <field_name>jhlc</field_name> | |
| 4772 | - <key_value>33</key_value> | |
| 4773 | - <target_name>fcno33_jhlc</target_name> | |
| 1469 | + <field_name>all_content</field_name> | |
| 1470 | + <key_value>52</key_value> | |
| 1471 | + <target_name>fcno52</target_name> | |
| 4774 | 1472 | <target_type>String</target_type> |
| 4775 | 1473 | <target_format/> |
| 4776 | 1474 | <target_length>-1</target_length> |
| ... | ... | @@ -4782,9 +1480,9 @@ |
| 4782 | 1480 | <target_aggregation_type>-</target_aggregation_type> |
| 4783 | 1481 | </field> |
| 4784 | 1482 | <field> |
| 4785 | - <field_name>fczdName</field_name> | |
| 4786 | - <key_value>33</key_value> | |
| 4787 | - <target_name>fcno33_zdname</target_name> | |
| 1483 | + <field_name>all_content</field_name> | |
| 1484 | + <key_value>53</key_value> | |
| 1485 | + <target_name>fcno53</target_name> | |
| 4788 | 1486 | <target_type>String</target_type> |
| 4789 | 1487 | <target_format/> |
| 4790 | 1488 | <target_length>-1</target_length> |
| ... | ... | @@ -4796,9 +1494,9 @@ |
| 4796 | 1494 | <target_aggregation_type>-</target_aggregation_type> |
| 4797 | 1495 | </field> |
| 4798 | 1496 | <field> |
| 4799 | - <field_name>bc_type</field_name> | |
| 4800 | - <key_value>33</key_value> | |
| 4801 | - <target_name>fcno33_bctype</target_name> | |
| 1497 | + <field_name>all_content</field_name> | |
| 1498 | + <key_value>54</key_value> | |
| 1499 | + <target_name>fcno54</target_name> | |
| 4802 | 1500 | <target_type>String</target_type> |
| 4803 | 1501 | <target_format/> |
| 4804 | 1502 | <target_length>-1</target_length> |
| ... | ... | @@ -4810,9 +1508,9 @@ |
| 4810 | 1508 | <target_aggregation_type>-</target_aggregation_type> |
| 4811 | 1509 | </field> |
| 4812 | 1510 | <field> |
| 4813 | - <field_name>xl_dir</field_name> | |
| 4814 | - <key_value>33</key_value> | |
| 4815 | - <target_name>fcno33_xldir</target_name> | |
| 1511 | + <field_name>all_content</field_name> | |
| 1512 | + <key_value>55</key_value> | |
| 1513 | + <target_name>fcno55</target_name> | |
| 4816 | 1514 | <target_type>String</target_type> |
| 4817 | 1515 | <target_format/> |
| 4818 | 1516 | <target_length>-1</target_length> |
| ... | ... | @@ -4824,9 +1522,9 @@ |
| 4824 | 1522 | <target_aggregation_type>-</target_aggregation_type> |
| 4825 | 1523 | </field> |
| 4826 | 1524 | <field> |
| 4827 | - <field_name>isfb</field_name> | |
| 4828 | - <key_value>33</key_value> | |
| 4829 | - <target_name>fcno33_isfb</target_name> | |
| 1525 | + <field_name>all_content</field_name> | |
| 1526 | + <key_value>56</key_value> | |
| 1527 | + <target_name>fcno56</target_name> | |
| 4830 | 1528 | <target_type>String</target_type> |
| 4831 | 1529 | <target_format/> |
| 4832 | 1530 | <target_length>-1</target_length> |
| ... | ... | @@ -4838,9 +1536,9 @@ |
| 4838 | 1536 | <target_aggregation_type>-</target_aggregation_type> |
| 4839 | 1537 | </field> |
| 4840 | 1538 | <field> |
| 4841 | - <field_name>id</field_name> | |
| 4842 | - <key_value>34</key_value> | |
| 4843 | - <target_name>fcno34_id</target_name> | |
| 1539 | + <field_name>all_content</field_name> | |
| 1540 | + <key_value>57</key_value> | |
| 1541 | + <target_name>fcno57</target_name> | |
| 4844 | 1542 | <target_type>String</target_type> |
| 4845 | 1543 | <target_format/> |
| 4846 | 1544 | <target_length>-1</target_length> |
| ... | ... | @@ -4852,9 +1550,9 @@ |
| 4852 | 1550 | <target_aggregation_type>-</target_aggregation_type> |
| 4853 | 1551 | </field> |
| 4854 | 1552 | <field> |
| 4855 | - <field_name>fcsj</field_name> | |
| 4856 | - <key_value>34</key_value> | |
| 4857 | - <target_name>fcno34_fcsj</target_name> | |
| 1553 | + <field_name>all_content</field_name> | |
| 1554 | + <key_value>58</key_value> | |
| 1555 | + <target_name>fcno58</target_name> | |
| 4858 | 1556 | <target_type>String</target_type> |
| 4859 | 1557 | <target_format/> |
| 4860 | 1558 | <target_length>-1</target_length> |
| ... | ... | @@ -4866,9 +1564,9 @@ |
| 4866 | 1564 | <target_aggregation_type>-</target_aggregation_type> |
| 4867 | 1565 | </field> |
| 4868 | 1566 | <field> |
| 4869 | - <field_name>jhlc</field_name> | |
| 4870 | - <key_value>34</key_value> | |
| 4871 | - <target_name>fcno34_jhlc</target_name> | |
| 1567 | + <field_name>all_content</field_name> | |
| 1568 | + <key_value>59</key_value> | |
| 1569 | + <target_name>fcno59</target_name> | |
| 4872 | 1570 | <target_type>String</target_type> |
| 4873 | 1571 | <target_format/> |
| 4874 | 1572 | <target_length>-1</target_length> |
| ... | ... | @@ -4880,9 +1578,9 @@ |
| 4880 | 1578 | <target_aggregation_type>-</target_aggregation_type> |
| 4881 | 1579 | </field> |
| 4882 | 1580 | <field> |
| 4883 | - <field_name>fczdName</field_name> | |
| 4884 | - <key_value>34</key_value> | |
| 4885 | - <target_name>fcno34_zdname</target_name> | |
| 1581 | + <field_name>all_content</field_name> | |
| 1582 | + <key_value>60</key_value> | |
| 1583 | + <target_name>fcno60</target_name> | |
| 4886 | 1584 | <target_type>String</target_type> |
| 4887 | 1585 | <target_format/> |
| 4888 | 1586 | <target_length>-1</target_length> |
| ... | ... | @@ -4894,9 +1592,9 @@ |
| 4894 | 1592 | <target_aggregation_type>-</target_aggregation_type> |
| 4895 | 1593 | </field> |
| 4896 | 1594 | <field> |
| 4897 | - <field_name>bc_type</field_name> | |
| 4898 | - <key_value>34</key_value> | |
| 4899 | - <target_name>fcno34_bctype</target_name> | |
| 1595 | + <field_name>all_content</field_name> | |
| 1596 | + <key_value>61</key_value> | |
| 1597 | + <target_name>fcno61</target_name> | |
| 4900 | 1598 | <target_type>String</target_type> |
| 4901 | 1599 | <target_format/> |
| 4902 | 1600 | <target_length>-1</target_length> |
| ... | ... | @@ -4908,9 +1606,9 @@ |
| 4908 | 1606 | <target_aggregation_type>-</target_aggregation_type> |
| 4909 | 1607 | </field> |
| 4910 | 1608 | <field> |
| 4911 | - <field_name>xl_dir</field_name> | |
| 4912 | - <key_value>34</key_value> | |
| 4913 | - <target_name>fcno34_xldir</target_name> | |
| 1609 | + <field_name>all_content</field_name> | |
| 1610 | + <key_value>62</key_value> | |
| 1611 | + <target_name>fcno62</target_name> | |
| 4914 | 1612 | <target_type>String</target_type> |
| 4915 | 1613 | <target_format/> |
| 4916 | 1614 | <target_length>-1</target_length> |
| ... | ... | @@ -4922,9 +1620,9 @@ |
| 4922 | 1620 | <target_aggregation_type>-</target_aggregation_type> |
| 4923 | 1621 | </field> |
| 4924 | 1622 | <field> |
| 4925 | - <field_name>isfb</field_name> | |
| 4926 | - <key_value>34</key_value> | |
| 4927 | - <target_name>fcno34_isfb</target_name> | |
| 1623 | + <field_name>all_content</field_name> | |
| 1624 | + <key_value>63</key_value> | |
| 1625 | + <target_name>fcno63</target_name> | |
| 4928 | 1626 | <target_type>String</target_type> |
| 4929 | 1627 | <target_format/> |
| 4930 | 1628 | <target_length>-1</target_length> |
| ... | ... | @@ -4936,9 +1634,9 @@ |
| 4936 | 1634 | <target_aggregation_type>-</target_aggregation_type> |
| 4937 | 1635 | </field> |
| 4938 | 1636 | <field> |
| 4939 | - <field_name>id</field_name> | |
| 4940 | - <key_value>35</key_value> | |
| 4941 | - <target_name>fcno35_id</target_name> | |
| 1637 | + <field_name>all_content</field_name> | |
| 1638 | + <key_value>64</key_value> | |
| 1639 | + <target_name>fcno64</target_name> | |
| 4942 | 1640 | <target_type>String</target_type> |
| 4943 | 1641 | <target_format/> |
| 4944 | 1642 | <target_length>-1</target_length> |
| ... | ... | @@ -4950,9 +1648,9 @@ |
| 4950 | 1648 | <target_aggregation_type>-</target_aggregation_type> |
| 4951 | 1649 | </field> |
| 4952 | 1650 | <field> |
| 4953 | - <field_name>fcsj</field_name> | |
| 4954 | - <key_value>35</key_value> | |
| 4955 | - <target_name>fcno35_fcsj</target_name> | |
| 1651 | + <field_name>all_content</field_name> | |
| 1652 | + <key_value>65</key_value> | |
| 1653 | + <target_name>fcno65</target_name> | |
| 4956 | 1654 | <target_type>String</target_type> |
| 4957 | 1655 | <target_format/> |
| 4958 | 1656 | <target_length>-1</target_length> |
| ... | ... | @@ -4964,9 +1662,9 @@ |
| 4964 | 1662 | <target_aggregation_type>-</target_aggregation_type> |
| 4965 | 1663 | </field> |
| 4966 | 1664 | <field> |
| 4967 | - <field_name>jhlc</field_name> | |
| 4968 | - <key_value>35</key_value> | |
| 4969 | - <target_name>fcno35_jhlc</target_name> | |
| 1665 | + <field_name>all_content</field_name> | |
| 1666 | + <key_value>66</key_value> | |
| 1667 | + <target_name>fcno66</target_name> | |
| 4970 | 1668 | <target_type>String</target_type> |
| 4971 | 1669 | <target_format/> |
| 4972 | 1670 | <target_length>-1</target_length> |
| ... | ... | @@ -4978,9 +1676,9 @@ |
| 4978 | 1676 | <target_aggregation_type>-</target_aggregation_type> |
| 4979 | 1677 | </field> |
| 4980 | 1678 | <field> |
| 4981 | - <field_name>fczdName</field_name> | |
| 4982 | - <key_value>35</key_value> | |
| 4983 | - <target_name>fcno35_zdname</target_name> | |
| 1679 | + <field_name>all_content</field_name> | |
| 1680 | + <key_value>67</key_value> | |
| 1681 | + <target_name>fcno67</target_name> | |
| 4984 | 1682 | <target_type>String</target_type> |
| 4985 | 1683 | <target_format/> |
| 4986 | 1684 | <target_length>-1</target_length> |
| ... | ... | @@ -4992,9 +1690,9 @@ |
| 4992 | 1690 | <target_aggregation_type>-</target_aggregation_type> |
| 4993 | 1691 | </field> |
| 4994 | 1692 | <field> |
| 4995 | - <field_name>bc_type</field_name> | |
| 4996 | - <key_value>35</key_value> | |
| 4997 | - <target_name>fcno35_bctype</target_name> | |
| 1693 | + <field_name>all_content</field_name> | |
| 1694 | + <key_value>68</key_value> | |
| 1695 | + <target_name>fcno68</target_name> | |
| 4998 | 1696 | <target_type>String</target_type> |
| 4999 | 1697 | <target_format/> |
| 5000 | 1698 | <target_length>-1</target_length> |
| ... | ... | @@ -5006,9 +1704,9 @@ |
| 5006 | 1704 | <target_aggregation_type>-</target_aggregation_type> |
| 5007 | 1705 | </field> |
| 5008 | 1706 | <field> |
| 5009 | - <field_name>xl_dir</field_name> | |
| 5010 | - <key_value>35</key_value> | |
| 5011 | - <target_name>fcno35_xldir</target_name> | |
| 1707 | + <field_name>all_content</field_name> | |
| 1708 | + <key_value>69</key_value> | |
| 1709 | + <target_name>fcno69</target_name> | |
| 5012 | 1710 | <target_type>String</target_type> |
| 5013 | 1711 | <target_format/> |
| 5014 | 1712 | <target_length>-1</target_length> |
| ... | ... | @@ -5020,9 +1718,9 @@ |
| 5020 | 1718 | <target_aggregation_type>-</target_aggregation_type> |
| 5021 | 1719 | </field> |
| 5022 | 1720 | <field> |
| 5023 | - <field_name>isfb</field_name> | |
| 5024 | - <key_value>35</key_value> | |
| 5025 | - <target_name>fcno35_isfb</target_name> | |
| 1721 | + <field_name>all_content</field_name> | |
| 1722 | + <key_value>70</key_value> | |
| 1723 | + <target_name>fcno70</target_name> | |
| 5026 | 1724 | <target_type>String</target_type> |
| 5027 | 1725 | <target_format/> |
| 5028 | 1726 | <target_length>-1</target_length> |
| ... | ... | @@ -5036,15 +1734,589 @@ |
| 5036 | 1734 | </fields> |
| 5037 | 1735 | <cluster_schema/> |
| 5038 | 1736 | <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> |
| 5039 | - <xloc>693</xloc> | |
| 5040 | - <yloc>275</yloc> | |
| 1737 | + <xloc>690</xloc> | |
| 1738 | + <yloc>272</yloc> | |
| 1739 | + <draw>Y</draw> | |
| 1740 | + </GUI> | |
| 1741 | + </step> | |
| 1742 | + | |
| 1743 | + <step> | |
| 1744 | + <name>去除字段</name> | |
| 1745 | + <type>SelectValues</type> | |
| 1746 | + <description/> | |
| 1747 | + <distribute>N</distribute> | |
| 1748 | + <custom_distribution/> | |
| 1749 | + <copies>1</copies> | |
| 1750 | + <partitioning> | |
| 1751 | + <method>none</method> | |
| 1752 | + <schema_name/> | |
| 1753 | + </partitioning> | |
| 1754 | + <fields> <field> <name>lp</name> | |
| 1755 | + <rename/> | |
| 1756 | + <length>-2</length> | |
| 1757 | + <precision>-2</precision> | |
| 1758 | + </field> <field> <name>fcno1</name> | |
| 1759 | + <rename/> | |
| 1760 | + <length>-2</length> | |
| 1761 | + <precision>-2</precision> | |
| 1762 | + </field> <field> <name>fcno2</name> | |
| 1763 | + <rename/> | |
| 1764 | + <length>-2</length> | |
| 1765 | + <precision>-2</precision> | |
| 1766 | + </field> <field> <name>fcno3</name> | |
| 1767 | + <rename/> | |
| 1768 | + <length>-2</length> | |
| 1769 | + <precision>-2</precision> | |
| 1770 | + </field> <field> <name>fcno4</name> | |
| 1771 | + <rename/> | |
| 1772 | + <length>-2</length> | |
| 1773 | + <precision>-2</precision> | |
| 1774 | + </field> <field> <name>fcno5</name> | |
| 1775 | + <rename/> | |
| 1776 | + <length>-2</length> | |
| 1777 | + <precision>-2</precision> | |
| 1778 | + </field> <field> <name>fcno6</name> | |
| 1779 | + <rename/> | |
| 1780 | + <length>-2</length> | |
| 1781 | + <precision>-2</precision> | |
| 1782 | + </field> <field> <name>fcno7</name> | |
| 1783 | + <rename/> | |
| 1784 | + <length>-2</length> | |
| 1785 | + <precision>-2</precision> | |
| 1786 | + </field> <field> <name>fcno8</name> | |
| 1787 | + <rename/> | |
| 1788 | + <length>-2</length> | |
| 1789 | + <precision>-2</precision> | |
| 1790 | + </field> <field> <name>fcno9</name> | |
| 1791 | + <rename/> | |
| 1792 | + <length>-2</length> | |
| 1793 | + <precision>-2</precision> | |
| 1794 | + </field> <field> <name>fcno10</name> | |
| 1795 | + <rename/> | |
| 1796 | + <length>-2</length> | |
| 1797 | + <precision>-2</precision> | |
| 1798 | + </field> <field> <name>fcno11</name> | |
| 1799 | + <rename/> | |
| 1800 | + <length>-2</length> | |
| 1801 | + <precision>-2</precision> | |
| 1802 | + </field> <field> <name>fcno12</name> | |
| 1803 | + <rename/> | |
| 1804 | + <length>-2</length> | |
| 1805 | + <precision>-2</precision> | |
| 1806 | + </field> <field> <name>fcno13</name> | |
| 1807 | + <rename/> | |
| 1808 | + <length>-2</length> | |
| 1809 | + <precision>-2</precision> | |
| 1810 | + </field> <field> <name>fcno14</name> | |
| 1811 | + <rename/> | |
| 1812 | + <length>-2</length> | |
| 1813 | + <precision>-2</precision> | |
| 1814 | + </field> <field> <name>fcno15</name> | |
| 1815 | + <rename/> | |
| 1816 | + <length>-2</length> | |
| 1817 | + <precision>-2</precision> | |
| 1818 | + </field> <field> <name>fcno16</name> | |
| 1819 | + <rename/> | |
| 1820 | + <length>-2</length> | |
| 1821 | + <precision>-2</precision> | |
| 1822 | + </field> <field> <name>fcno17</name> | |
| 1823 | + <rename/> | |
| 1824 | + <length>-2</length> | |
| 1825 | + <precision>-2</precision> | |
| 1826 | + </field> <field> <name>fcno18</name> | |
| 1827 | + <rename/> | |
| 1828 | + <length>-2</length> | |
| 1829 | + <precision>-2</precision> | |
| 1830 | + </field> <field> <name>fcno19</name> | |
| 1831 | + <rename/> | |
| 1832 | + <length>-2</length> | |
| 1833 | + <precision>-2</precision> | |
| 1834 | + </field> <field> <name>fcno20</name> | |
| 1835 | + <rename/> | |
| 1836 | + <length>-2</length> | |
| 1837 | + <precision>-2</precision> | |
| 1838 | + </field> <field> <name>fcno21</name> | |
| 1839 | + <rename/> | |
| 1840 | + <length>-2</length> | |
| 1841 | + <precision>-2</precision> | |
| 1842 | + </field> <field> <name>fcno22</name> | |
| 1843 | + <rename/> | |
| 1844 | + <length>-2</length> | |
| 1845 | + <precision>-2</precision> | |
| 1846 | + </field> <field> <name>fcno23</name> | |
| 1847 | + <rename/> | |
| 1848 | + <length>-2</length> | |
| 1849 | + <precision>-2</precision> | |
| 1850 | + </field> <field> <name>fcno24</name> | |
| 1851 | + <rename/> | |
| 1852 | + <length>-2</length> | |
| 1853 | + <precision>-2</precision> | |
| 1854 | + </field> <field> <name>fcno25</name> | |
| 1855 | + <rename/> | |
| 1856 | + <length>-2</length> | |
| 1857 | + <precision>-2</precision> | |
| 1858 | + </field> <field> <name>fcno26</name> | |
| 1859 | + <rename/> | |
| 1860 | + <length>-2</length> | |
| 1861 | + <precision>-2</precision> | |
| 1862 | + </field> <field> <name>fcno27</name> | |
| 1863 | + <rename/> | |
| 1864 | + <length>-2</length> | |
| 1865 | + <precision>-2</precision> | |
| 1866 | + </field> <field> <name>fcno28</name> | |
| 1867 | + <rename/> | |
| 1868 | + <length>-2</length> | |
| 1869 | + <precision>-2</precision> | |
| 1870 | + </field> <field> <name>fcno29</name> | |
| 1871 | + <rename/> | |
| 1872 | + <length>-2</length> | |
| 1873 | + <precision>-2</precision> | |
| 1874 | + </field> <field> <name>fcno30</name> | |
| 1875 | + <rename/> | |
| 1876 | + <length>-2</length> | |
| 1877 | + <precision>-2</precision> | |
| 1878 | + </field> <field> <name>fcno31</name> | |
| 1879 | + <rename/> | |
| 1880 | + <length>-2</length> | |
| 1881 | + <precision>-2</precision> | |
| 1882 | + </field> <field> <name>fcno32</name> | |
| 1883 | + <rename/> | |
| 1884 | + <length>-2</length> | |
| 1885 | + <precision>-2</precision> | |
| 1886 | + </field> <field> <name>fcno33</name> | |
| 1887 | + <rename/> | |
| 1888 | + <length>-2</length> | |
| 1889 | + <precision>-2</precision> | |
| 1890 | + </field> <field> <name>fcno34</name> | |
| 1891 | + <rename/> | |
| 1892 | + <length>-2</length> | |
| 1893 | + <precision>-2</precision> | |
| 1894 | + </field> <field> <name>fcno35</name> | |
| 1895 | + <rename/> | |
| 1896 | + <length>-2</length> | |
| 1897 | + <precision>-2</precision> | |
| 1898 | + </field> <field> <name>fcno36</name> | |
| 1899 | + <rename/> | |
| 1900 | + <length>-2</length> | |
| 1901 | + <precision>-2</precision> | |
| 1902 | + </field> <field> <name>fcno37</name> | |
| 1903 | + <rename/> | |
| 1904 | + <length>-2</length> | |
| 1905 | + <precision>-2</precision> | |
| 1906 | + </field> <field> <name>fcno38</name> | |
| 1907 | + <rename/> | |
| 1908 | + <length>-2</length> | |
| 1909 | + <precision>-2</precision> | |
| 1910 | + </field> <field> <name>fcno39</name> | |
| 1911 | + <rename/> | |
| 1912 | + <length>-2</length> | |
| 1913 | + <precision>-2</precision> | |
| 1914 | + </field> <field> <name>fcno40</name> | |
| 1915 | + <rename/> | |
| 1916 | + <length>-2</length> | |
| 1917 | + <precision>-2</precision> | |
| 1918 | + </field> <field> <name>fcno41</name> | |
| 1919 | + <rename/> | |
| 1920 | + <length>-2</length> | |
| 1921 | + <precision>-2</precision> | |
| 1922 | + </field> <field> <name>fcno42</name> | |
| 1923 | + <rename/> | |
| 1924 | + <length>-2</length> | |
| 1925 | + <precision>-2</precision> | |
| 1926 | + </field> <field> <name>fcno43</name> | |
| 1927 | + <rename/> | |
| 1928 | + <length>-2</length> | |
| 1929 | + <precision>-2</precision> | |
| 1930 | + </field> <field> <name>fcno44</name> | |
| 1931 | + <rename/> | |
| 1932 | + <length>-2</length> | |
| 1933 | + <precision>-2</precision> | |
| 1934 | + </field> <field> <name>fcno45</name> | |
| 1935 | + <rename/> | |
| 1936 | + <length>-2</length> | |
| 1937 | + <precision>-2</precision> | |
| 1938 | + </field> <field> <name>fcno46</name> | |
| 1939 | + <rename/> | |
| 1940 | + <length>-2</length> | |
| 1941 | + <precision>-2</precision> | |
| 1942 | + </field> <field> <name>fcno47</name> | |
| 1943 | + <rename/> | |
| 1944 | + <length>-2</length> | |
| 1945 | + <precision>-2</precision> | |
| 1946 | + </field> <field> <name>fcno48</name> | |
| 1947 | + <rename/> | |
| 1948 | + <length>-2</length> | |
| 1949 | + <precision>-2</precision> | |
| 1950 | + </field> <field> <name>fcno49</name> | |
| 1951 | + <rename/> | |
| 1952 | + <length>-2</length> | |
| 1953 | + <precision>-2</precision> | |
| 1954 | + </field> <field> <name>fcno50</name> | |
| 1955 | + <rename/> | |
| 1956 | + <length>-2</length> | |
| 1957 | + <precision>-2</precision> | |
| 1958 | + </field> <field> <name>fcno51</name> | |
| 1959 | + <rename/> | |
| 1960 | + <length>-2</length> | |
| 1961 | + <precision>-2</precision> | |
| 1962 | + </field> <field> <name>fcno52</name> | |
| 1963 | + <rename/> | |
| 1964 | + <length>-2</length> | |
| 1965 | + <precision>-2</precision> | |
| 1966 | + </field> <field> <name>fcno53</name> | |
| 1967 | + <rename/> | |
| 1968 | + <length>-2</length> | |
| 1969 | + <precision>-2</precision> | |
| 1970 | + </field> <field> <name>fcno54</name> | |
| 1971 | + <rename/> | |
| 1972 | + <length>-2</length> | |
| 1973 | + <precision>-2</precision> | |
| 1974 | + </field> <field> <name>fcno55</name> | |
| 1975 | + <rename/> | |
| 1976 | + <length>-2</length> | |
| 1977 | + <precision>-2</precision> | |
| 1978 | + </field> <field> <name>fcno56</name> | |
| 1979 | + <rename/> | |
| 1980 | + <length>-2</length> | |
| 1981 | + <precision>-2</precision> | |
| 1982 | + </field> <field> <name>fcno57</name> | |
| 1983 | + <rename/> | |
| 1984 | + <length>-2</length> | |
| 1985 | + <precision>-2</precision> | |
| 1986 | + </field> <field> <name>fcno58</name> | |
| 1987 | + <rename/> | |
| 1988 | + <length>-2</length> | |
| 1989 | + <precision>-2</precision> | |
| 1990 | + </field> <field> <name>fcno59</name> | |
| 1991 | + <rename/> | |
| 1992 | + <length>-2</length> | |
| 1993 | + <precision>-2</precision> | |
| 1994 | + </field> <field> <name>fcno60</name> | |
| 1995 | + <rename/> | |
| 1996 | + <length>-2</length> | |
| 1997 | + <precision>-2</precision> | |
| 1998 | + </field> <field> <name>fcno61</name> | |
| 1999 | + <rename/> | |
| 2000 | + <length>-2</length> | |
| 2001 | + <precision>-2</precision> | |
| 2002 | + </field> <field> <name>fcno62</name> | |
| 2003 | + <rename/> | |
| 2004 | + <length>-2</length> | |
| 2005 | + <precision>-2</precision> | |
| 2006 | + </field> <field> <name>fcno63</name> | |
| 2007 | + <rename/> | |
| 2008 | + <length>-2</length> | |
| 2009 | + <precision>-2</precision> | |
| 2010 | + </field> <field> <name>fcno64</name> | |
| 2011 | + <rename/> | |
| 2012 | + <length>-2</length> | |
| 2013 | + <precision>-2</precision> | |
| 2014 | + </field> <field> <name>fcno65</name> | |
| 2015 | + <rename/> | |
| 2016 | + <length>-2</length> | |
| 2017 | + <precision>-2</precision> | |
| 2018 | + </field> <field> <name>fcno66</name> | |
| 2019 | + <rename/> | |
| 2020 | + <length>-2</length> | |
| 2021 | + <precision>-2</precision> | |
| 2022 | + </field> <field> <name>fcno67</name> | |
| 2023 | + <rename/> | |
| 2024 | + <length>-2</length> | |
| 2025 | + <precision>-2</precision> | |
| 2026 | + </field> <field> <name>fcno68</name> | |
| 2027 | + <rename/> | |
| 2028 | + <length>-2</length> | |
| 2029 | + <precision>-2</precision> | |
| 2030 | + </field> <field> <name>fcno69</name> | |
| 2031 | + <rename/> | |
| 2032 | + <length>-2</length> | |
| 2033 | + <precision>-2</precision> | |
| 2034 | + </field> <field> <name>fcno70</name> | |
| 2035 | + <rename/> | |
| 2036 | + <length>-2</length> | |
| 2037 | + <precision>-2</precision> | |
| 2038 | + </field> <select_unspecified>N</select_unspecified> | |
| 2039 | + </fields> <cluster_schema/> | |
| 2040 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2041 | + <xloc>691</xloc> | |
| 2042 | + <yloc>361</yloc> | |
| 2043 | + <draw>Y</draw> | |
| 2044 | + </GUI> | |
| 2045 | + </step> | |
| 2046 | + | |
| 2047 | + <step> | |
| 2048 | + <name>字段选择</name> | |
| 2049 | + <type>SelectValues</type> | |
| 2050 | + <description/> | |
| 2051 | + <distribute>Y</distribute> | |
| 2052 | + <custom_distribution/> | |
| 2053 | + <copies>1</copies> | |
| 2054 | + <partitioning> | |
| 2055 | + <method>none</method> | |
| 2056 | + <schema_name/> | |
| 2057 | + </partitioning> | |
| 2058 | + <fields> <field> <name>id</name> | |
| 2059 | + <rename/> | |
| 2060 | + <length>-2</length> | |
| 2061 | + <precision>-2</precision> | |
| 2062 | + </field> <field> <name>lp</name> | |
| 2063 | + <rename/> | |
| 2064 | + <length>-2</length> | |
| 2065 | + <precision>-2</precision> | |
| 2066 | + </field> <field> <name>fcsj</name> | |
| 2067 | + <rename/> | |
| 2068 | + <length>-2</length> | |
| 2069 | + <precision>-2</precision> | |
| 2070 | + </field> <field> <name>fcno</name> | |
| 2071 | + <rename/> | |
| 2072 | + <length>-2</length> | |
| 2073 | + <precision>-2</precision> | |
| 2074 | + </field> <field> <name>bcs</name> | |
| 2075 | + <rename/> | |
| 2076 | + <length>-2</length> | |
| 2077 | + <precision>-2</precision> | |
| 2078 | + </field> <field> <name>bc_type</name> | |
| 2079 | + <rename/> | |
| 2080 | + <length>-2</length> | |
| 2081 | + <precision>-2</precision> | |
| 2082 | + </field> <field> <name>qdzName</name> | |
| 2083 | + <rename/> | |
| 2084 | + <length>-2</length> | |
| 2085 | + <precision>-2</precision> | |
| 2086 | + </field> <field> <name>zdzName</name> | |
| 2087 | + <rename/> | |
| 2088 | + <length>-2</length> | |
| 2089 | + <precision>-2</precision> | |
| 2090 | + </field> <field> <name>xl_dir</name> | |
| 2091 | + <rename/> | |
| 2092 | + <length>-2</length> | |
| 2093 | + <precision>-2</precision> | |
| 2094 | + </field> <field> <name>isfb</name> | |
| 2095 | + <rename/> | |
| 2096 | + <length>-2</length> | |
| 2097 | + <precision>-2</precision> | |
| 2098 | + </field> <field> <name>jhlc</name> | |
| 2099 | + <rename/> | |
| 2100 | + <length>-2</length> | |
| 2101 | + <precision>-2</precision> | |
| 2102 | + </field> <select_unspecified>N</select_unspecified> | |
| 2103 | + </fields> <cluster_schema/> | |
| 2104 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2105 | + <xloc>690</xloc> | |
| 2106 | + <yloc>188</yloc> | |
| 2107 | + <draw>Y</draw> | |
| 2108 | + </GUI> | |
| 2109 | + </step> | |
| 2110 | + | |
| 2111 | + <step> | |
| 2112 | + <name>字段选择 2</name> | |
| 2113 | + <type>SelectValues</type> | |
| 2114 | + <description/> | |
| 2115 | + <distribute>Y</distribute> | |
| 2116 | + <custom_distribution/> | |
| 2117 | + <copies>1</copies> | |
| 2118 | + <partitioning> | |
| 2119 | + <method>none</method> | |
| 2120 | + <schema_name/> | |
| 2121 | + </partitioning> | |
| 2122 | + <fields> <field> <name>id</name> | |
| 2123 | + <rename/> | |
| 2124 | + <length>-2</length> | |
| 2125 | + <precision>-2</precision> | |
| 2126 | + </field> <field> <name>lp</name> | |
| 2127 | + <rename/> | |
| 2128 | + <length>-2</length> | |
| 2129 | + <precision>-2</precision> | |
| 2130 | + </field> <field> <name>fcsj</name> | |
| 2131 | + <rename/> | |
| 2132 | + <length>-2</length> | |
| 2133 | + <precision>-2</precision> | |
| 2134 | + </field> <field> <name>fcno</name> | |
| 2135 | + <rename/> | |
| 2136 | + <length>-2</length> | |
| 2137 | + <precision>-2</precision> | |
| 2138 | + </field> <field> <name>bcs</name> | |
| 2139 | + <rename/> | |
| 2140 | + <length>-2</length> | |
| 2141 | + <precision>-2</precision> | |
| 2142 | + </field> <field> <name>bc_type</name> | |
| 2143 | + <rename/> | |
| 2144 | + <length>-2</length> | |
| 2145 | + <precision>-2</precision> | |
| 2146 | + </field> <field> <name>qdzName</name> | |
| 2147 | + <rename/> | |
| 2148 | + <length>-2</length> | |
| 2149 | + <precision>-2</precision> | |
| 2150 | + </field> <field> <name>zdzName</name> | |
| 2151 | + <rename/> | |
| 2152 | + <length>-2</length> | |
| 2153 | + <precision>-2</precision> | |
| 2154 | + </field> <field> <name>xl_dir</name> | |
| 2155 | + <rename/> | |
| 2156 | + <length>-2</length> | |
| 2157 | + <precision>-2</precision> | |
| 2158 | + </field> <field> <name>isfb</name> | |
| 2159 | + <rename/> | |
| 2160 | + <length>-2</length> | |
| 2161 | + <precision>-2</precision> | |
| 2162 | + </field> <field> <name>jhlc</name> | |
| 2163 | + <rename/> | |
| 2164 | + <length>-2</length> | |
| 2165 | + <precision>-2</precision> | |
| 2166 | + </field> <select_unspecified>N</select_unspecified> | |
| 2167 | + </fields> <cluster_schema/> | |
| 2168 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2169 | + <xloc>402</xloc> | |
| 2170 | + <yloc>189</yloc> | |
| 2171 | + <draw>Y</draw> | |
| 2172 | + </GUI> | |
| 2173 | + </step> | |
| 2174 | + | |
| 2175 | + <step> | |
| 2176 | + <name>排序记录</name> | |
| 2177 | + <type>SortRows</type> | |
| 2178 | + <description/> | |
| 2179 | + <distribute>Y</distribute> | |
| 2180 | + <custom_distribution/> | |
| 2181 | + <copies>1</copies> | |
| 2182 | + <partitioning> | |
| 2183 | + <method>none</method> | |
| 2184 | + <schema_name/> | |
| 2185 | + </partitioning> | |
| 2186 | + <directory>%%java.io.tmpdir%%</directory> | |
| 2187 | + <prefix>out</prefix> | |
| 2188 | + <sort_size>1000000</sort_size> | |
| 2189 | + <free_memory/> | |
| 2190 | + <compress>N</compress> | |
| 2191 | + <compress_variable/> | |
| 2192 | + <unique_rows>N</unique_rows> | |
| 2193 | + <fields> | |
| 2194 | + <field> | |
| 2195 | + <name>bcs</name> | |
| 2196 | + <ascending>Y</ascending> | |
| 2197 | + <case_sensitive>N</case_sensitive> | |
| 2198 | + <presorted>N</presorted> | |
| 2199 | + </field> | |
| 2200 | + </fields> | |
| 2201 | + <cluster_schema/> | |
| 2202 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2203 | + <xloc>549</xloc> | |
| 2204 | + <yloc>191</yloc> | |
| 2205 | + <draw>Y</draw> | |
| 2206 | + </GUI> | |
| 2207 | + </step> | |
| 2208 | + | |
| 2209 | + <step> | |
| 2210 | + <name>查找终点站名称</name> | |
| 2211 | + <type>DBLookup</type> | |
| 2212 | + <description/> | |
| 2213 | + <distribute>Y</distribute> | |
| 2214 | + <custom_distribution/> | |
| 2215 | + <copies>1</copies> | |
| 2216 | + <partitioning> | |
| 2217 | + <method>none</method> | |
| 2218 | + <schema_name/> | |
| 2219 | + </partitioning> | |
| 2220 | + <connection>bus_control_variable</connection> | |
| 2221 | + <cache>Y</cache> | |
| 2222 | + <cache_load_all>Y</cache_load_all> | |
| 2223 | + <cache_size>0</cache_size> | |
| 2224 | + <lookup> | |
| 2225 | + <schema/> | |
| 2226 | + <table>bsth_c_stationroute</table> | |
| 2227 | + <orderby/> | |
| 2228 | + <fail_on_multiple>N</fail_on_multiple> | |
| 2229 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 2230 | + <key> | |
| 2231 | + <name>xl</name> | |
| 2232 | + <field>line</field> | |
| 2233 | + <condition>=</condition> | |
| 2234 | + <name2/> | |
| 2235 | + </key> | |
| 2236 | + <key> | |
| 2237 | + <name>xl_dir</name> | |
| 2238 | + <field>directions</field> | |
| 2239 | + <condition>=</condition> | |
| 2240 | + <name2/> | |
| 2241 | + </key> | |
| 2242 | + <key> | |
| 2243 | + <name>endZdType</name> | |
| 2244 | + <field>station_mark</field> | |
| 2245 | + <condition>=</condition> | |
| 2246 | + <name2/> | |
| 2247 | + </key> | |
| 2248 | + <value> | |
| 2249 | + <name>station_name</name> | |
| 2250 | + <rename>zdzName</rename> | |
| 2251 | + <default/> | |
| 2252 | + <type>String</type> | |
| 2253 | + </value> | |
| 2254 | + </lookup> | |
| 2255 | + <cluster_schema/> | |
| 2256 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2257 | + <xloc>688</xloc> | |
| 2258 | + <yloc>86</yloc> | |
| 2259 | + <draw>Y</draw> | |
| 2260 | + </GUI> | |
| 2261 | + </step> | |
| 2262 | + | |
| 2263 | + <step> | |
| 2264 | + <name>查找起点站名称</name> | |
| 2265 | + <type>DBLookup</type> | |
| 2266 | + <description/> | |
| 2267 | + <distribute>Y</distribute> | |
| 2268 | + <custom_distribution/> | |
| 2269 | + <copies>1</copies> | |
| 2270 | + <partitioning> | |
| 2271 | + <method>none</method> | |
| 2272 | + <schema_name/> | |
| 2273 | + </partitioning> | |
| 2274 | + <connection>bus_control_variable</connection> | |
| 2275 | + <cache>Y</cache> | |
| 2276 | + <cache_load_all>Y</cache_load_all> | |
| 2277 | + <cache_size>0</cache_size> | |
| 2278 | + <lookup> | |
| 2279 | + <schema/> | |
| 2280 | + <table>bsth_c_stationroute</table> | |
| 2281 | + <orderby/> | |
| 2282 | + <fail_on_multiple>N</fail_on_multiple> | |
| 2283 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 2284 | + <key> | |
| 2285 | + <name>xl</name> | |
| 2286 | + <field>line</field> | |
| 2287 | + <condition>=</condition> | |
| 2288 | + <name2/> | |
| 2289 | + </key> | |
| 2290 | + <key> | |
| 2291 | + <name>xl_dir</name> | |
| 2292 | + <field>directions</field> | |
| 2293 | + <condition>=</condition> | |
| 2294 | + <name2/> | |
| 2295 | + </key> | |
| 2296 | + <key> | |
| 2297 | + <name>startZdType</name> | |
| 2298 | + <field>station_mark</field> | |
| 2299 | + <condition>=</condition> | |
| 2300 | + <name2/> | |
| 2301 | + </key> | |
| 2302 | + <value> | |
| 2303 | + <name>station_name</name> | |
| 2304 | + <rename>qdzName</rename> | |
| 2305 | + <default/> | |
| 2306 | + <type>String</type> | |
| 2307 | + </value> | |
| 2308 | + </lookup> | |
| 2309 | + <cluster_schema/> | |
| 2310 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2311 | + <xloc>553</xloc> | |
| 2312 | + <yloc>86</yloc> | |
| 5041 | 2313 | <draw>Y</draw> |
| 5042 | 2314 | </GUI> |
| 5043 | 2315 | </step> |
| 5044 | 2316 | |
| 5045 | 2317 | <step> |
| 5046 | - <name>去除字段</name> | |
| 5047 | - <type>SelectValues</type> | |
| 2318 | + <name>正常班次站点查询用数据</name> | |
| 2319 | + <type>ScriptValueMod</type> | |
| 5048 | 2320 | <description/> |
| 5049 | 2321 | <distribute>Y</distribute> |
| 5050 | 2322 | <custom_distribution/> |
| ... | ... | @@ -5053,21 +2325,34 @@ |
| 5053 | 2325 | <method>none</method> |
| 5054 | 2326 | <schema_name/> |
| 5055 | 2327 | </partitioning> |
| 5056 | - <fields> <select_unspecified>N</select_unspecified> | |
| 5057 | - <remove> <name>bcs</name> | |
| 5058 | - </remove> <remove> <name>qdzName</name> | |
| 5059 | - </remove> <remove> <name>zdzName</name> | |
| 5060 | - </remove> </fields> <cluster_schema/> | |
| 2328 | + <compatible>N</compatible> | |
| 2329 | + <optimizationLevel>9</optimizationLevel> | |
| 2330 | + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 2331 | + <jsScript_name>Script 1</jsScript_name> | |
| 2332 | + <jsScript_script>//Script here

var startZdType = 'B'; // 起点站站点类型标识别
var endZdType = 'E'; // 终点站站点类型标识</jsScript_script> | |
| 2333 | + </jsScript> </jsScripts> <fields> <field> <name>startZdType</name> | |
| 2334 | + <rename>startZdType</rename> | |
| 2335 | + <type>String</type> | |
| 2336 | + <length>-1</length> | |
| 2337 | + <precision>-1</precision> | |
| 2338 | + <replace>N</replace> | |
| 2339 | + </field> <field> <name>endZdType</name> | |
| 2340 | + <rename>endZdType</rename> | |
| 2341 | + <type>String</type> | |
| 2342 | + <length>-1</length> | |
| 2343 | + <precision>-1</precision> | |
| 2344 | + <replace>N</replace> | |
| 2345 | + </field> </fields> <cluster_schema/> | |
| 5061 | 2346 | <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> |
| 5062 | - <xloc>694</xloc> | |
| 5063 | - <yloc>364</yloc> | |
| 2347 | + <xloc>391</xloc> | |
| 2348 | + <yloc>87</yloc> | |
| 5064 | 2349 | <draw>Y</draw> |
| 5065 | 2350 | </GUI> |
| 5066 | 2351 | </step> |
| 5067 | 2352 | |
| 5068 | 2353 | <step> |
| 5069 | - <name>字段选择</name> | |
| 5070 | - <type>SelectValues</type> | |
| 2354 | + <name>获取变量</name> | |
| 2355 | + <type>GetVariable</type> | |
| 5071 | 2356 | <description/> |
| 5072 | 2357 | <distribute>Y</distribute> |
| 5073 | 2358 | <custom_distribution/> |
| ... | ... | @@ -5076,62 +2361,43 @@ |
| 5076 | 2361 | <method>none</method> |
| 5077 | 2362 | <schema_name/> |
| 5078 | 2363 | </partitioning> |
| 5079 | - <fields> <field> <name>id</name> | |
| 5080 | - <rename/> | |
| 5081 | - <length>-2</length> | |
| 5082 | - <precision>-2</precision> | |
| 5083 | - </field> <field> <name>lp</name> | |
| 5084 | - <rename/> | |
| 5085 | - <length>-2</length> | |
| 5086 | - <precision>-2</precision> | |
| 5087 | - </field> <field> <name>fcsj</name> | |
| 5088 | - <rename/> | |
| 5089 | - <length>-2</length> | |
| 5090 | - <precision>-2</precision> | |
| 5091 | - </field> <field> <name>fcno</name> | |
| 5092 | - <rename/> | |
| 5093 | - <length>-2</length> | |
| 5094 | - <precision>-2</precision> | |
| 5095 | - </field> <field> <name>bcs</name> | |
| 5096 | - <rename/> | |
| 5097 | - <length>-2</length> | |
| 5098 | - <precision>-2</precision> | |
| 5099 | - </field> <field> <name>bc_type</name> | |
| 5100 | - <rename/> | |
| 5101 | - <length>-2</length> | |
| 5102 | - <precision>-2</precision> | |
| 5103 | - </field> <field> <name>qdzName</name> | |
| 5104 | - <rename/> | |
| 5105 | - <length>-2</length> | |
| 5106 | - <precision>-2</precision> | |
| 5107 | - </field> <field> <name>zdzName</name> | |
| 5108 | - <rename/> | |
| 5109 | - <length>-2</length> | |
| 5110 | - <precision>-2</precision> | |
| 5111 | - </field> <field> <name>xl_dir</name> | |
| 5112 | - <rename/> | |
| 5113 | - <length>-2</length> | |
| 5114 | - <precision>-2</precision> | |
| 5115 | - </field> <field> <name>isfb</name> | |
| 5116 | - <rename/> | |
| 5117 | - <length>-2</length> | |
| 5118 | - <precision>-2</precision> | |
| 5119 | - </field> <field> <name>jhlc</name> | |
| 5120 | - <rename/> | |
| 5121 | - <length>-2</length> | |
| 5122 | - <precision>-2</precision> | |
| 5123 | - </field> <select_unspecified>N</select_unspecified> | |
| 5124 | - </fields> <cluster_schema/> | |
| 2364 | + <fields> | |
| 2365 | + <field> | |
| 2366 | + <name>xlid_</name> | |
| 2367 | + <variable>${xlid}</variable> | |
| 2368 | + <type>Integer</type> | |
| 2369 | + <format/> | |
| 2370 | + <currency/> | |
| 2371 | + <decimal/> | |
| 2372 | + <group/> | |
| 2373 | + <length>-1</length> | |
| 2374 | + <precision>-1</precision> | |
| 2375 | + <trim_type>none</trim_type> | |
| 2376 | + </field> | |
| 2377 | + <field> | |
| 2378 | + <name>ttid_</name> | |
| 2379 | + <variable>${ttid}</variable> | |
| 2380 | + <type>Number</type> | |
| 2381 | + <format/> | |
| 2382 | + <currency/> | |
| 2383 | + <decimal/> | |
| 2384 | + <group/> | |
| 2385 | + <length>-1</length> | |
| 2386 | + <precision>-1</precision> | |
| 2387 | + <trim_type>none</trim_type> | |
| 2388 | + </field> | |
| 2389 | + </fields> | |
| 2390 | + <cluster_schema/> | |
| 5125 | 2391 | <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> |
| 5126 | - <xloc>690</xloc> | |
| 5127 | - <yloc>188</yloc> | |
| 2392 | + <xloc>45</xloc> | |
| 2393 | + <yloc>189</yloc> | |
| 5128 | 2394 | <draw>Y</draw> |
| 5129 | 2395 | </GUI> |
| 5130 | 2396 | </step> |
| 5131 | 2397 | |
| 5132 | 2398 | <step> |
| 5133 | - <name>字段选择 2</name> | |
| 5134 | - <type>SelectValues</type> | |
| 2399 | + <name>表输入</name> | |
| 2400 | + <type>TableInput</type> | |
| 5135 | 2401 | <description/> |
| 5136 | 2402 | <distribute>Y</distribute> |
| 5137 | 2403 | <custom_distribution/> |
| ... | ... | @@ -5140,62 +2406,119 @@ |
| 5140 | 2406 | <method>none</method> |
| 5141 | 2407 | <schema_name/> |
| 5142 | 2408 | </partitioning> |
| 5143 | - <fields> <field> <name>id</name> | |
| 5144 | - <rename/> | |
| 5145 | - <length>-2</length> | |
| 5146 | - <precision>-2</precision> | |
| 5147 | - </field> <field> <name>lp</name> | |
| 5148 | - <rename/> | |
| 5149 | - <length>-2</length> | |
| 5150 | - <precision>-2</precision> | |
| 5151 | - </field> <field> <name>fcsj</name> | |
| 5152 | - <rename/> | |
| 5153 | - <length>-2</length> | |
| 5154 | - <precision>-2</precision> | |
| 5155 | - </field> <field> <name>fcno</name> | |
| 5156 | - <rename/> | |
| 5157 | - <length>-2</length> | |
| 5158 | - <precision>-2</precision> | |
| 5159 | - </field> <field> <name>bcs</name> | |
| 5160 | - <rename/> | |
| 5161 | - <length>-2</length> | |
| 5162 | - <precision>-2</precision> | |
| 5163 | - </field> <field> <name>bc_type</name> | |
| 5164 | - <rename/> | |
| 5165 | - <length>-2</length> | |
| 5166 | - <precision>-2</precision> | |
| 5167 | - </field> <field> <name>qdzName</name> | |
| 5168 | - <rename/> | |
| 5169 | - <length>-2</length> | |
| 5170 | - <precision>-2</precision> | |
| 2409 | + <connection>bus_control_variable</connection> | |
| 2410 | + <sql>select 
t.id as id
, g.lp_name as lp
, g.xl as xl
, qdz
, zdz
, tcc
, fcsj
, jhlc
, 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> | |
| 2411 | + <limit>0</limit> | |
| 2412 | + <lookup>获取变量</lookup> | |
| 2413 | + <execute_each_row>N</execute_each_row> | |
| 2414 | + <variables_active>Y</variables_active> | |
| 2415 | + <lazy_conversion_active>N</lazy_conversion_active> | |
| 2416 | + <cluster_schema/> | |
| 2417 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2418 | + <xloc>130</xloc> | |
| 2419 | + <yloc>85</yloc> | |
| 2420 | + <draw>Y</draw> | |
| 2421 | + </GUI> | |
| 2422 | + </step> | |
| 2423 | + | |
| 2424 | + <step> | |
| 2425 | + <name>计算发车站名</name> | |
| 2426 | + <type>ScriptValueMod</type> | |
| 2427 | + <description/> | |
| 2428 | + <distribute>Y</distribute> | |
| 2429 | + <custom_distribution/> | |
| 2430 | + <copies>1</copies> | |
| 2431 | + <partitioning> | |
| 2432 | + <method>none</method> | |
| 2433 | + <schema_name/> | |
| 2434 | + </partitioning> | |
| 2435 | + <compatible>N</compatible> | |
| 2436 | + <optimizationLevel>9</optimizationLevel> | |
| 2437 | + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 2438 | + <jsScript_name>Script 1</jsScript_name> | |
| 2439 | + <jsScript_script>//Script here

var fczdName = null; // 发车站点名字
if (bc_type == "in") {
 fczdName = "进场";
} else if (bc_type == "out") {
 fczdName = "出场";
} else {
 fczdName = qdzName;
}</jsScript_script> | |
| 2440 | + </jsScript> </jsScripts> <fields> <field> <name>fczdName</name> | |
| 2441 | + <rename>fczdName</rename> | |
| 2442 | + <type>String</type> | |
| 2443 | + <length>-1</length> | |
| 2444 | + <precision>-1</precision> | |
| 2445 | + <replace>N</replace> | |
| 2446 | + </field> </fields> <cluster_schema/> | |
| 2447 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2448 | + <xloc>550</xloc> | |
| 2449 | + <yloc>276</yloc> | |
| 2450 | + <draw>Y</draw> | |
| 2451 | + </GUI> | |
| 2452 | + </step> | |
| 2453 | + | |
| 2454 | + <step> | |
| 2455 | + <name>过滤记录</name> | |
| 2456 | + <type>FilterRows</type> | |
| 2457 | + <description/> | |
| 2458 | + <distribute>Y</distribute> | |
| 2459 | + <custom_distribution/> | |
| 2460 | + <copies>1</copies> | |
| 2461 | + <partitioning> | |
| 2462 | + <method>none</method> | |
| 2463 | + <schema_name/> | |
| 2464 | + </partitioning> | |
| 2465 | +<send_true_to>正常班次站点查询用数据</send_true_to> | |
| 2466 | +<send_false_to>进场出场班次查询用的数据</send_false_to> | |
| 2467 | + <compare> | |
| 2468 | +<condition> | |
| 2469 | + <negated>N</negated> | |
| 2470 | + <leftvalue>bc_type</leftvalue> | |
| 2471 | + <function>=</function> | |
| 2472 | + <rightvalue/> | |
| 2473 | + <value><name>constant</name><type>String</type><text>normal</text><length>-1</length><precision>-1</precision><isnull>N</isnull><mask/></value> </condition> | |
| 2474 | + </compare> | |
| 2475 | + <cluster_schema/> | |
| 2476 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 2477 | + <xloc>248</xloc> | |
| 2478 | + <yloc>87</yloc> | |
| 2479 | + <draw>Y</draw> | |
| 2480 | + </GUI> | |
| 2481 | + </step> | |
| 2482 | + | |
| 2483 | + <step> | |
| 2484 | + <name>进场出场班次查询用的数据</name> | |
| 2485 | + <type>ScriptValueMod</type> | |
| 2486 | + <description/> | |
| 2487 | + <distribute>Y</distribute> | |
| 2488 | + <custom_distribution/> | |
| 2489 | + <copies>1</copies> | |
| 2490 | + <partitioning> | |
| 2491 | + <method>none</method> | |
| 2492 | + <schema_name/> | |
| 2493 | + </partitioning> | |
| 2494 | + <compatible>N</compatible> | |
| 2495 | + <optimizationLevel>9</optimizationLevel> | |
| 2496 | + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 2497 | + <jsScript_name>Script 1</jsScript_name> | |
| 2498 | + <jsScript_script>//Script here

var qdzName = null; // 起点站名字
var zdzName = null; // 终点站名字</jsScript_script> | |
| 2499 | + </jsScript> </jsScripts> <fields> <field> <name>qdzName</name> | |
| 2500 | + <rename>qdzName</rename> | |
| 2501 | + <type>String</type> | |
| 2502 | + <length>-1</length> | |
| 2503 | + <precision>-1</precision> | |
| 2504 | + <replace>N</replace> | |
| 5171 | 2505 | </field> <field> <name>zdzName</name> |
| 5172 | - <rename/> | |
| 5173 | - <length>-2</length> | |
| 5174 | - <precision>-2</precision> | |
| 5175 | - </field> <field> <name>xl_dir</name> | |
| 5176 | - <rename/> | |
| 5177 | - <length>-2</length> | |
| 5178 | - <precision>-2</precision> | |
| 5179 | - </field> <field> <name>isfb</name> | |
| 5180 | - <rename/> | |
| 5181 | - <length>-2</length> | |
| 5182 | - <precision>-2</precision> | |
| 5183 | - </field> <field> <name>jhlc</name> | |
| 5184 | - <rename/> | |
| 5185 | - <length>-2</length> | |
| 5186 | - <precision>-2</precision> | |
| 5187 | - </field> <select_unspecified>N</select_unspecified> | |
| 5188 | - </fields> <cluster_schema/> | |
| 2506 | + <rename>zdzName</rename> | |
| 2507 | + <type>String</type> | |
| 2508 | + <length>-1</length> | |
| 2509 | + <precision>-1</precision> | |
| 2510 | + <replace>N</replace> | |
| 2511 | + </field> </fields> <cluster_schema/> | |
| 5189 | 2512 | <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> |
| 5190 | - <xloc>402</xloc> | |
| 5191 | - <yloc>189</yloc> | |
| 2513 | + <xloc>250</xloc> | |
| 2514 | + <yloc>188</yloc> | |
| 5192 | 2515 | <draw>Y</draw> |
| 5193 | 2516 | </GUI> |
| 5194 | 2517 | </step> |
| 5195 | 2518 | |
| 5196 | 2519 | <step> |
| 5197 | - <name>排序记录</name> | |
| 5198 | - <type>SortRows</type> | |
| 2520 | + <name>文本文件输出</name> | |
| 2521 | + <type>TextFileOutput</type> | |
| 5199 | 2522 | <description/> |
| 5200 | 2523 | <distribute>Y</distribute> |
| 5201 | 2524 | <custom_distribution/> |
| ... | ... | @@ -5204,305 +2527,901 @@ |
| 5204 | 2527 | <method>none</method> |
| 5205 | 2528 | <schema_name/> |
| 5206 | 2529 | </partitioning> |
| 5207 | - <directory>%%java.io.tmpdir%%</directory> | |
| 5208 | - <prefix>out</prefix> | |
| 5209 | - <sort_size>1000000</sort_size> | |
| 5210 | - <free_memory/> | |
| 5211 | - <compress>N</compress> | |
| 5212 | - <compress_variable/> | |
| 5213 | - <unique_rows>N</unique_rows> | |
| 2530 | + <separator>;</separator> | |
| 2531 | + <enclosure>"</enclosure> | |
| 2532 | + <enclosure_forced>N</enclosure_forced> | |
| 2533 | + <enclosure_fix_disabled>N</enclosure_fix_disabled> | |
| 2534 | + <header>Y</header> | |
| 2535 | + <footer>N</footer> | |
| 2536 | + <format>DOS</format> | |
| 2537 | + <compression>None</compression> | |
| 2538 | + <encoding/> | |
| 2539 | + <endedLine/> | |
| 2540 | + <fileNameInField>N</fileNameInField> | |
| 2541 | + <fileNameField/> | |
| 2542 | + <create_parent_folder>Y</create_parent_folder> | |
| 2543 | + <file> | |
| 2544 | + <name>${tempfilepath}</name> | |
| 2545 | + <is_command>N</is_command> | |
| 2546 | + <servlet_output>N</servlet_output> | |
| 2547 | + <do_not_open_new_file_init>N</do_not_open_new_file_init> | |
| 2548 | + <extention>txt</extention> | |
| 2549 | + <append>N</append> | |
| 2550 | + <split>N</split> | |
| 2551 | + <haspartno>N</haspartno> | |
| 2552 | + <add_date>N</add_date> | |
| 2553 | + <add_time>N</add_time> | |
| 2554 | + <SpecifyFormat>N</SpecifyFormat> | |
| 2555 | + <date_time_format/> | |
| 2556 | + <add_to_result_filenames>Y</add_to_result_filenames> | |
| 2557 | + <pad>N</pad> | |
| 2558 | + <fast_dump>N</fast_dump> | |
| 2559 | + <splitevery>0</splitevery> | |
| 2560 | + </file> | |
| 5214 | 2561 | <fields> |
| 5215 | 2562 | <field> |
| 5216 | - <name>bcs</name> | |
| 5217 | - <ascending>Y</ascending> | |
| 5218 | - <case_sensitive>N</case_sensitive> | |
| 5219 | - <presorted>N</presorted> | |
| 2563 | + <name>lp</name> | |
| 2564 | + <type>String</type> | |
| 2565 | + <format/> | |
| 2566 | + <currency/> | |
| 2567 | + <decimal/> | |
| 2568 | + <group/> | |
| 2569 | + <nullif/> | |
| 2570 | + <trim_type>none</trim_type> | |
| 2571 | + <length>255</length> | |
| 2572 | + <precision>-1</precision> | |
| 2573 | + </field> | |
| 2574 | + <field> | |
| 2575 | + <name>fcno1</name> | |
| 2576 | + <type>String</type> | |
| 2577 | + <format/> | |
| 2578 | + <currency/> | |
| 2579 | + <decimal/> | |
| 2580 | + <group/> | |
| 2581 | + <nullif/> | |
| 2582 | + <trim_type>none</trim_type> | |
| 2583 | + <length>-1</length> | |
| 2584 | + <precision>-1</precision> | |
| 2585 | + </field> | |
| 2586 | + <field> | |
| 2587 | + <name>fcno2</name> | |
| 2588 | + <type>String</type> | |
| 2589 | + <format/> | |
| 2590 | + <currency/> | |
| 2591 | + <decimal/> | |
| 2592 | + <group/> | |
| 2593 | + <nullif/> | |
| 2594 | + <trim_type>none</trim_type> | |
| 2595 | + <length>-1</length> | |
| 2596 | + <precision>-1</precision> | |
| 2597 | + </field> | |
| 2598 | + <field> | |
| 2599 | + <name>fcno3</name> | |
| 2600 | + <type>String</type> | |
| 2601 | + <format/> | |
| 2602 | + <currency/> | |
| 2603 | + <decimal/> | |
| 2604 | + <group/> | |
| 2605 | + <nullif/> | |
| 2606 | + <trim_type>none</trim_type> | |
| 2607 | + <length>-1</length> | |
| 2608 | + <precision>-1</precision> | |
| 2609 | + </field> | |
| 2610 | + <field> | |
| 2611 | + <name>fcno4</name> | |
| 2612 | + <type>String</type> | |
| 2613 | + <format/> | |
| 2614 | + <currency/> | |
| 2615 | + <decimal/> | |
| 2616 | + <group/> | |
| 2617 | + <nullif/> | |
| 2618 | + <trim_type>none</trim_type> | |
| 2619 | + <length>-1</length> | |
| 2620 | + <precision>-1</precision> | |
| 2621 | + </field> | |
| 2622 | + <field> | |
| 2623 | + <name>fcno5</name> | |
| 2624 | + <type>String</type> | |
| 2625 | + <format/> | |
| 2626 | + <currency/> | |
| 2627 | + <decimal/> | |
| 2628 | + <group/> | |
| 2629 | + <nullif/> | |
| 2630 | + <trim_type>none</trim_type> | |
| 2631 | + <length>-1</length> | |
| 2632 | + <precision>-1</precision> | |
| 2633 | + </field> | |
| 2634 | + <field> | |
| 2635 | + <name>fcno6</name> | |
| 2636 | + <type>String</type> | |
| 2637 | + <format/> | |
| 2638 | + <currency/> | |
| 2639 | + <decimal/> | |
| 2640 | + <group/> | |
| 2641 | + <nullif/> | |
| 2642 | + <trim_type>none</trim_type> | |
| 2643 | + <length>-1</length> | |
| 2644 | + <precision>-1</precision> | |
| 2645 | + </field> | |
| 2646 | + <field> | |
| 2647 | + <name>fcno7</name> | |
| 2648 | + <type>String</type> | |
| 2649 | + <format/> | |
| 2650 | + <currency/> | |
| 2651 | + <decimal/> | |
| 2652 | + <group/> | |
| 2653 | + <nullif/> | |
| 2654 | + <trim_type>none</trim_type> | |
| 2655 | + <length>-1</length> | |
| 2656 | + <precision>-1</precision> | |
| 2657 | + </field> | |
| 2658 | + <field> | |
| 2659 | + <name>fcno8</name> | |
| 2660 | + <type>String</type> | |
| 2661 | + <format/> | |
| 2662 | + <currency/> | |
| 2663 | + <decimal/> | |
| 2664 | + <group/> | |
| 2665 | + <nullif/> | |
| 2666 | + <trim_type>none</trim_type> | |
| 2667 | + <length>-1</length> | |
| 2668 | + <precision>-1</precision> | |
| 2669 | + </field> | |
| 2670 | + <field> | |
| 2671 | + <name>fcno9</name> | |
| 2672 | + <type>String</type> | |
| 2673 | + <format/> | |
| 2674 | + <currency/> | |
| 2675 | + <decimal/> | |
| 2676 | + <group/> | |
| 2677 | + <nullif/> | |
| 2678 | + <trim_type>none</trim_type> | |
| 2679 | + <length>-1</length> | |
| 2680 | + <precision>-1</precision> | |
| 2681 | + </field> | |
| 2682 | + <field> | |
| 2683 | + <name>fcno10</name> | |
| 2684 | + <type>String</type> | |
| 2685 | + <format/> | |
| 2686 | + <currency/> | |
| 2687 | + <decimal/> | |
| 2688 | + <group/> | |
| 2689 | + <nullif/> | |
| 2690 | + <trim_type>none</trim_type> | |
| 2691 | + <length>-1</length> | |
| 2692 | + <precision>-1</precision> | |
| 2693 | + </field> | |
| 2694 | + <field> | |
| 2695 | + <name>fcno11</name> | |
| 2696 | + <type>String</type> | |
| 2697 | + <format/> | |
| 2698 | + <currency/> | |
| 2699 | + <decimal/> | |
| 2700 | + <group/> | |
| 2701 | + <nullif/> | |
| 2702 | + <trim_type>none</trim_type> | |
| 2703 | + <length>-1</length> | |
| 2704 | + <precision>-1</precision> | |
| 2705 | + </field> | |
| 2706 | + <field> | |
| 2707 | + <name>fcno12</name> | |
| 2708 | + <type>String</type> | |
| 2709 | + <format/> | |
| 2710 | + <currency/> | |
| 2711 | + <decimal/> | |
| 2712 | + <group/> | |
| 2713 | + <nullif/> | |
| 2714 | + <trim_type>none</trim_type> | |
| 2715 | + <length>-1</length> | |
| 2716 | + <precision>-1</precision> | |
| 2717 | + </field> | |
| 2718 | + <field> | |
| 2719 | + <name>fcno13</name> | |
| 2720 | + <type>String</type> | |
| 2721 | + <format/> | |
| 2722 | + <currency/> | |
| 2723 | + <decimal/> | |
| 2724 | + <group/> | |
| 2725 | + <nullif/> | |
| 2726 | + <trim_type>none</trim_type> | |
| 2727 | + <length>-1</length> | |
| 2728 | + <precision>-1</precision> | |
| 2729 | + </field> | |
| 2730 | + <field> | |
| 2731 | + <name>fcno14</name> | |
| 2732 | + <type>String</type> | |
| 2733 | + <format/> | |
| 2734 | + <currency/> | |
| 2735 | + <decimal/> | |
| 2736 | + <group/> | |
| 2737 | + <nullif/> | |
| 2738 | + <trim_type>none</trim_type> | |
| 2739 | + <length>-1</length> | |
| 2740 | + <precision>-1</precision> | |
| 2741 | + </field> | |
| 2742 | + <field> | |
| 2743 | + <name>fcno15</name> | |
| 2744 | + <type>String</type> | |
| 2745 | + <format/> | |
| 2746 | + <currency/> | |
| 2747 | + <decimal/> | |
| 2748 | + <group/> | |
| 2749 | + <nullif/> | |
| 2750 | + <trim_type>none</trim_type> | |
| 2751 | + <length>-1</length> | |
| 2752 | + <precision>-1</precision> | |
| 2753 | + </field> | |
| 2754 | + <field> | |
| 2755 | + <name>fcno16</name> | |
| 2756 | + <type>String</type> | |
| 2757 | + <format/> | |
| 2758 | + <currency/> | |
| 2759 | + <decimal/> | |
| 2760 | + <group/> | |
| 2761 | + <nullif/> | |
| 2762 | + <trim_type>none</trim_type> | |
| 2763 | + <length>-1</length> | |
| 2764 | + <precision>-1</precision> | |
| 2765 | + </field> | |
| 2766 | + <field> | |
| 2767 | + <name>fcno17</name> | |
| 2768 | + <type>String</type> | |
| 2769 | + <format/> | |
| 2770 | + <currency/> | |
| 2771 | + <decimal/> | |
| 2772 | + <group/> | |
| 2773 | + <nullif/> | |
| 2774 | + <trim_type>none</trim_type> | |
| 2775 | + <length>-1</length> | |
| 2776 | + <precision>-1</precision> | |
| 2777 | + </field> | |
| 2778 | + <field> | |
| 2779 | + <name>fcno18</name> | |
| 2780 | + <type>String</type> | |
| 2781 | + <format/> | |
| 2782 | + <currency/> | |
| 2783 | + <decimal/> | |
| 2784 | + <group/> | |
| 2785 | + <nullif/> | |
| 2786 | + <trim_type>none</trim_type> | |
| 2787 | + <length>-1</length> | |
| 2788 | + <precision>-1</precision> | |
| 2789 | + </field> | |
| 2790 | + <field> | |
| 2791 | + <name>fcno19</name> | |
| 2792 | + <type>String</type> | |
| 2793 | + <format/> | |
| 2794 | + <currency/> | |
| 2795 | + <decimal/> | |
| 2796 | + <group/> | |
| 2797 | + <nullif/> | |
| 2798 | + <trim_type>none</trim_type> | |
| 2799 | + <length>-1</length> | |
| 2800 | + <precision>-1</precision> | |
| 2801 | + </field> | |
| 2802 | + <field> | |
| 2803 | + <name>fcno20</name> | |
| 2804 | + <type>String</type> | |
| 2805 | + <format/> | |
| 2806 | + <currency/> | |
| 2807 | + <decimal/> | |
| 2808 | + <group/> | |
| 2809 | + <nullif/> | |
| 2810 | + <trim_type>none</trim_type> | |
| 2811 | + <length>-1</length> | |
| 2812 | + <precision>-1</precision> | |
| 2813 | + </field> | |
| 2814 | + <field> | |
| 2815 | + <name>fcno21</name> | |
| 2816 | + <type>String</type> | |
| 2817 | + <format/> | |
| 2818 | + <currency/> | |
| 2819 | + <decimal/> | |
| 2820 | + <group/> | |
| 2821 | + <nullif/> | |
| 2822 | + <trim_type>none</trim_type> | |
| 2823 | + <length>-1</length> | |
| 2824 | + <precision>-1</precision> | |
| 2825 | + </field> | |
| 2826 | + <field> | |
| 2827 | + <name>fcno22</name> | |
| 2828 | + <type>String</type> | |
| 2829 | + <format/> | |
| 2830 | + <currency/> | |
| 2831 | + <decimal/> | |
| 2832 | + <group/> | |
| 2833 | + <nullif/> | |
| 2834 | + <trim_type>none</trim_type> | |
| 2835 | + <length>-1</length> | |
| 2836 | + <precision>-1</precision> | |
| 2837 | + </field> | |
| 2838 | + <field> | |
| 2839 | + <name>fcno23</name> | |
| 2840 | + <type>String</type> | |
| 2841 | + <format/> | |
| 2842 | + <currency/> | |
| 2843 | + <decimal/> | |
| 2844 | + <group/> | |
| 2845 | + <nullif/> | |
| 2846 | + <trim_type>none</trim_type> | |
| 2847 | + <length>-1</length> | |
| 2848 | + <precision>-1</precision> | |
| 2849 | + </field> | |
| 2850 | + <field> | |
| 2851 | + <name>fcno24</name> | |
| 2852 | + <type>String</type> | |
| 2853 | + <format/> | |
| 2854 | + <currency/> | |
| 2855 | + <decimal/> | |
| 2856 | + <group/> | |
| 2857 | + <nullif/> | |
| 2858 | + <trim_type>none</trim_type> | |
| 2859 | + <length>-1</length> | |
| 2860 | + <precision>-1</precision> | |
| 2861 | + </field> | |
| 2862 | + <field> | |
| 2863 | + <name>fcno25</name> | |
| 2864 | + <type>String</type> | |
| 2865 | + <format/> | |
| 2866 | + <currency/> | |
| 2867 | + <decimal/> | |
| 2868 | + <group/> | |
| 2869 | + <nullif/> | |
| 2870 | + <trim_type>none</trim_type> | |
| 2871 | + <length>-1</length> | |
| 2872 | + <precision>-1</precision> | |
| 2873 | + </field> | |
| 2874 | + <field> | |
| 2875 | + <name>fcno26</name> | |
| 2876 | + <type>String</type> | |
| 2877 | + <format/> | |
| 2878 | + <currency/> | |
| 2879 | + <decimal/> | |
| 2880 | + <group/> | |
| 2881 | + <nullif/> | |
| 2882 | + <trim_type>none</trim_type> | |
| 2883 | + <length>-1</length> | |
| 2884 | + <precision>-1</precision> | |
| 2885 | + </field> | |
| 2886 | + <field> | |
| 2887 | + <name>fcno27</name> | |
| 2888 | + <type>String</type> | |
| 2889 | + <format/> | |
| 2890 | + <currency/> | |
| 2891 | + <decimal/> | |
| 2892 | + <group/> | |
| 2893 | + <nullif/> | |
| 2894 | + <trim_type>none</trim_type> | |
| 2895 | + <length>-1</length> | |
| 2896 | + <precision>-1</precision> | |
| 2897 | + </field> | |
| 2898 | + <field> | |
| 2899 | + <name>fcno28</name> | |
| 2900 | + <type>String</type> | |
| 2901 | + <format/> | |
| 2902 | + <currency/> | |
| 2903 | + <decimal/> | |
| 2904 | + <group/> | |
| 2905 | + <nullif/> | |
| 2906 | + <trim_type>none</trim_type> | |
| 2907 | + <length>-1</length> | |
| 2908 | + <precision>-1</precision> | |
| 2909 | + </field> | |
| 2910 | + <field> | |
| 2911 | + <name>fcno29</name> | |
| 2912 | + <type>String</type> | |
| 2913 | + <format/> | |
| 2914 | + <currency/> | |
| 2915 | + <decimal/> | |
| 2916 | + <group/> | |
| 2917 | + <nullif/> | |
| 2918 | + <trim_type>none</trim_type> | |
| 2919 | + <length>-1</length> | |
| 2920 | + <precision>-1</precision> | |
| 2921 | + </field> | |
| 2922 | + <field> | |
| 2923 | + <name>fcno30</name> | |
| 2924 | + <type>String</type> | |
| 2925 | + <format/> | |
| 2926 | + <currency/> | |
| 2927 | + <decimal/> | |
| 2928 | + <group/> | |
| 2929 | + <nullif/> | |
| 2930 | + <trim_type>none</trim_type> | |
| 2931 | + <length>-1</length> | |
| 2932 | + <precision>-1</precision> | |
| 2933 | + </field> | |
| 2934 | + <field> | |
| 2935 | + <name>fcno31</name> | |
| 2936 | + <type>String</type> | |
| 2937 | + <format/> | |
| 2938 | + <currency/> | |
| 2939 | + <decimal/> | |
| 2940 | + <group/> | |
| 2941 | + <nullif/> | |
| 2942 | + <trim_type>none</trim_type> | |
| 2943 | + <length>-1</length> | |
| 2944 | + <precision>-1</precision> | |
| 2945 | + </field> | |
| 2946 | + <field> | |
| 2947 | + <name>fcno32</name> | |
| 2948 | + <type>String</type> | |
| 2949 | + <format/> | |
| 2950 | + <currency/> | |
| 2951 | + <decimal/> | |
| 2952 | + <group/> | |
| 2953 | + <nullif/> | |
| 2954 | + <trim_type>none</trim_type> | |
| 2955 | + <length>-1</length> | |
| 2956 | + <precision>-1</precision> | |
| 2957 | + </field> | |
| 2958 | + <field> | |
| 2959 | + <name>fcno33</name> | |
| 2960 | + <type>String</type> | |
| 2961 | + <format/> | |
| 2962 | + <currency/> | |
| 2963 | + <decimal/> | |
| 2964 | + <group/> | |
| 2965 | + <nullif/> | |
| 2966 | + <trim_type>none</trim_type> | |
| 2967 | + <length>-1</length> | |
| 2968 | + <precision>-1</precision> | |
| 2969 | + </field> | |
| 2970 | + <field> | |
| 2971 | + <name>fcno34</name> | |
| 2972 | + <type>String</type> | |
| 2973 | + <format/> | |
| 2974 | + <currency/> | |
| 2975 | + <decimal/> | |
| 2976 | + <group/> | |
| 2977 | + <nullif/> | |
| 2978 | + <trim_type>none</trim_type> | |
| 2979 | + <length>-1</length> | |
| 2980 | + <precision>-1</precision> | |
| 2981 | + </field> | |
| 2982 | + <field> | |
| 2983 | + <name>fcno35</name> | |
| 2984 | + <type>String</type> | |
| 2985 | + <format/> | |
| 2986 | + <currency/> | |
| 2987 | + <decimal/> | |
| 2988 | + <group/> | |
| 2989 | + <nullif/> | |
| 2990 | + <trim_type>none</trim_type> | |
| 2991 | + <length>-1</length> | |
| 2992 | + <precision>-1</precision> | |
| 2993 | + </field> | |
| 2994 | + <field> | |
| 2995 | + <name>fcno36</name> | |
| 2996 | + <type>String</type> | |
| 2997 | + <format/> | |
| 2998 | + <currency/> | |
| 2999 | + <decimal/> | |
| 3000 | + <group/> | |
| 3001 | + <nullif/> | |
| 3002 | + <trim_type>none</trim_type> | |
| 3003 | + <length>-1</length> | |
| 3004 | + <precision>-1</precision> | |
| 3005 | + </field> | |
| 3006 | + <field> | |
| 3007 | + <name>fcno37</name> | |
| 3008 | + <type>String</type> | |
| 3009 | + <format/> | |
| 3010 | + <currency/> | |
| 3011 | + <decimal/> | |
| 3012 | + <group/> | |
| 3013 | + <nullif/> | |
| 3014 | + <trim_type>none</trim_type> | |
| 3015 | + <length>-1</length> | |
| 3016 | + <precision>-1</precision> | |
| 3017 | + </field> | |
| 3018 | + <field> | |
| 3019 | + <name>fcno38</name> | |
| 3020 | + <type>String</type> | |
| 3021 | + <format/> | |
| 3022 | + <currency/> | |
| 3023 | + <decimal/> | |
| 3024 | + <group/> | |
| 3025 | + <nullif/> | |
| 3026 | + <trim_type>none</trim_type> | |
| 3027 | + <length>-1</length> | |
| 3028 | + <precision>-1</precision> | |
| 3029 | + </field> | |
| 3030 | + <field> | |
| 3031 | + <name>fcno39</name> | |
| 3032 | + <type>String</type> | |
| 3033 | + <format/> | |
| 3034 | + <currency/> | |
| 3035 | + <decimal/> | |
| 3036 | + <group/> | |
| 3037 | + <nullif/> | |
| 3038 | + <trim_type>none</trim_type> | |
| 3039 | + <length>-1</length> | |
| 3040 | + <precision>-1</precision> | |
| 3041 | + </field> | |
| 3042 | + <field> | |
| 3043 | + <name>fcno40</name> | |
| 3044 | + <type>String</type> | |
| 3045 | + <format/> | |
| 3046 | + <currency/> | |
| 3047 | + <decimal/> | |
| 3048 | + <group/> | |
| 3049 | + <nullif/> | |
| 3050 | + <trim_type>none</trim_type> | |
| 3051 | + <length>-1</length> | |
| 3052 | + <precision>-1</precision> | |
| 3053 | + </field> | |
| 3054 | + <field> | |
| 3055 | + <name>fcno41</name> | |
| 3056 | + <type>String</type> | |
| 3057 | + <format/> | |
| 3058 | + <currency/> | |
| 3059 | + <decimal/> | |
| 3060 | + <group/> | |
| 3061 | + <nullif/> | |
| 3062 | + <trim_type>none</trim_type> | |
| 3063 | + <length>-1</length> | |
| 3064 | + <precision>-1</precision> | |
| 3065 | + </field> | |
| 3066 | + <field> | |
| 3067 | + <name>fcno42</name> | |
| 3068 | + <type>String</type> | |
| 3069 | + <format/> | |
| 3070 | + <currency/> | |
| 3071 | + <decimal/> | |
| 3072 | + <group/> | |
| 3073 | + <nullif/> | |
| 3074 | + <trim_type>none</trim_type> | |
| 3075 | + <length>-1</length> | |
| 3076 | + <precision>-1</precision> | |
| 3077 | + </field> | |
| 3078 | + <field> | |
| 3079 | + <name>fcno43</name> | |
| 3080 | + <type>String</type> | |
| 3081 | + <format/> | |
| 3082 | + <currency/> | |
| 3083 | + <decimal/> | |
| 3084 | + <group/> | |
| 3085 | + <nullif/> | |
| 3086 | + <trim_type>none</trim_type> | |
| 3087 | + <length>-1</length> | |
| 3088 | + <precision>-1</precision> | |
| 3089 | + </field> | |
| 3090 | + <field> | |
| 3091 | + <name>fcno44</name> | |
| 3092 | + <type>String</type> | |
| 3093 | + <format/> | |
| 3094 | + <currency/> | |
| 3095 | + <decimal/> | |
| 3096 | + <group/> | |
| 3097 | + <nullif/> | |
| 3098 | + <trim_type>none</trim_type> | |
| 3099 | + <length>-1</length> | |
| 3100 | + <precision>-1</precision> | |
| 5220 | 3101 | </field> |
| 5221 | - </fields> | |
| 5222 | - <cluster_schema/> | |
| 5223 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 5224 | - <xloc>549</xloc> | |
| 5225 | - <yloc>191</yloc> | |
| 5226 | - <draw>Y</draw> | |
| 5227 | - </GUI> | |
| 5228 | - </step> | |
| 5229 | - | |
| 5230 | - <step> | |
| 5231 | - <name>查找终点站名称</name> | |
| 5232 | - <type>DBLookup</type> | |
| 5233 | - <description/> | |
| 5234 | - <distribute>Y</distribute> | |
| 5235 | - <custom_distribution/> | |
| 5236 | - <copies>1</copies> | |
| 5237 | - <partitioning> | |
| 5238 | - <method>none</method> | |
| 5239 | - <schema_name/> | |
| 5240 | - </partitioning> | |
| 5241 | - <connection>bus_control_variable</connection> | |
| 5242 | - <cache>Y</cache> | |
| 5243 | - <cache_load_all>Y</cache_load_all> | |
| 5244 | - <cache_size>0</cache_size> | |
| 5245 | - <lookup> | |
| 5246 | - <schema/> | |
| 5247 | - <table>bsth_c_stationroute</table> | |
| 5248 | - <orderby/> | |
| 5249 | - <fail_on_multiple>N</fail_on_multiple> | |
| 5250 | - <eat_row_on_failure>N</eat_row_on_failure> | |
| 5251 | - <key> | |
| 5252 | - <name>xl</name> | |
| 5253 | - <field>line</field> | |
| 5254 | - <condition>=</condition> | |
| 5255 | - <name2/> | |
| 5256 | - </key> | |
| 5257 | - <key> | |
| 5258 | - <name>xl_dir</name> | |
| 5259 | - <field>directions</field> | |
| 5260 | - <condition>=</condition> | |
| 5261 | - <name2/> | |
| 5262 | - </key> | |
| 5263 | - <key> | |
| 5264 | - <name>endZdType</name> | |
| 5265 | - <field>station_mark</field> | |
| 5266 | - <condition>=</condition> | |
| 5267 | - <name2/> | |
| 5268 | - </key> | |
| 5269 | - <value> | |
| 5270 | - <name>station_name</name> | |
| 5271 | - <rename>zdzName</rename> | |
| 5272 | - <default/> | |
| 3102 | + <field> | |
| 3103 | + <name>fcno45</name> | |
| 5273 | 3104 | <type>String</type> |
| 5274 | - </value> | |
| 5275 | - </lookup> | |
| 5276 | - <cluster_schema/> | |
| 5277 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 5278 | - <xloc>688</xloc> | |
| 5279 | - <yloc>86</yloc> | |
| 5280 | - <draw>Y</draw> | |
| 5281 | - </GUI> | |
| 5282 | - </step> | |
| 5283 | - | |
| 5284 | - <step> | |
| 5285 | - <name>查找起点站名称</name> | |
| 5286 | - <type>DBLookup</type> | |
| 5287 | - <description/> | |
| 5288 | - <distribute>Y</distribute> | |
| 5289 | - <custom_distribution/> | |
| 5290 | - <copies>1</copies> | |
| 5291 | - <partitioning> | |
| 5292 | - <method>none</method> | |
| 5293 | - <schema_name/> | |
| 5294 | - </partitioning> | |
| 5295 | - <connection>bus_control_variable</connection> | |
| 5296 | - <cache>Y</cache> | |
| 5297 | - <cache_load_all>Y</cache_load_all> | |
| 5298 | - <cache_size>0</cache_size> | |
| 5299 | - <lookup> | |
| 5300 | - <schema/> | |
| 5301 | - <table>bsth_c_stationroute</table> | |
| 5302 | - <orderby/> | |
| 5303 | - <fail_on_multiple>N</fail_on_multiple> | |
| 5304 | - <eat_row_on_failure>N</eat_row_on_failure> | |
| 5305 | - <key> | |
| 5306 | - <name>xl</name> | |
| 5307 | - <field>line</field> | |
| 5308 | - <condition>=</condition> | |
| 5309 | - <name2/> | |
| 5310 | - </key> | |
| 5311 | - <key> | |
| 5312 | - <name>xl_dir</name> | |
| 5313 | - <field>directions</field> | |
| 5314 | - <condition>=</condition> | |
| 5315 | - <name2/> | |
| 5316 | - </key> | |
| 5317 | - <key> | |
| 5318 | - <name>startZdType</name> | |
| 5319 | - <field>station_mark</field> | |
| 5320 | - <condition>=</condition> | |
| 5321 | - <name2/> | |
| 5322 | - </key> | |
| 5323 | - <value> | |
| 5324 | - <name>station_name</name> | |
| 5325 | - <rename>qdzName</rename> | |
| 5326 | - <default/> | |
| 3105 | + <format/> | |
| 3106 | + <currency/> | |
| 3107 | + <decimal/> | |
| 3108 | + <group/> | |
| 3109 | + <nullif/> | |
| 3110 | + <trim_type>none</trim_type> | |
| 3111 | + <length>-1</length> | |
| 3112 | + <precision>-1</precision> | |
| 3113 | + </field> | |
| 3114 | + <field> | |
| 3115 | + <name>fcno46</name> | |
| 3116 | + <type>String</type> | |
| 3117 | + <format/> | |
| 3118 | + <currency/> | |
| 3119 | + <decimal/> | |
| 3120 | + <group/> | |
| 3121 | + <nullif/> | |
| 3122 | + <trim_type>none</trim_type> | |
| 3123 | + <length>-1</length> | |
| 3124 | + <precision>-1</precision> | |
| 3125 | + </field> | |
| 3126 | + <field> | |
| 3127 | + <name>fcno47</name> | |
| 3128 | + <type>String</type> | |
| 3129 | + <format/> | |
| 3130 | + <currency/> | |
| 3131 | + <decimal/> | |
| 3132 | + <group/> | |
| 3133 | + <nullif/> | |
| 3134 | + <trim_type>none</trim_type> | |
| 3135 | + <length>-1</length> | |
| 3136 | + <precision>-1</precision> | |
| 3137 | + </field> | |
| 3138 | + <field> | |
| 3139 | + <name>fcno48</name> | |
| 3140 | + <type>String</type> | |
| 3141 | + <format/> | |
| 3142 | + <currency/> | |
| 3143 | + <decimal/> | |
| 3144 | + <group/> | |
| 3145 | + <nullif/> | |
| 3146 | + <trim_type>none</trim_type> | |
| 3147 | + <length>-1</length> | |
| 3148 | + <precision>-1</precision> | |
| 3149 | + </field> | |
| 3150 | + <field> | |
| 3151 | + <name>fcno49</name> | |
| 3152 | + <type>String</type> | |
| 3153 | + <format/> | |
| 3154 | + <currency/> | |
| 3155 | + <decimal/> | |
| 3156 | + <group/> | |
| 3157 | + <nullif/> | |
| 3158 | + <trim_type>none</trim_type> | |
| 3159 | + <length>-1</length> | |
| 3160 | + <precision>-1</precision> | |
| 3161 | + </field> | |
| 3162 | + <field> | |
| 3163 | + <name>fcno50</name> | |
| 3164 | + <type>String</type> | |
| 3165 | + <format/> | |
| 3166 | + <currency/> | |
| 3167 | + <decimal/> | |
| 3168 | + <group/> | |
| 3169 | + <nullif/> | |
| 3170 | + <trim_type>none</trim_type> | |
| 3171 | + <length>-1</length> | |
| 3172 | + <precision>-1</precision> | |
| 3173 | + </field> | |
| 3174 | + <field> | |
| 3175 | + <name>fcno51</name> | |
| 3176 | + <type>String</type> | |
| 3177 | + <format/> | |
| 3178 | + <currency/> | |
| 3179 | + <decimal/> | |
| 3180 | + <group/> | |
| 3181 | + <nullif/> | |
| 3182 | + <trim_type>none</trim_type> | |
| 3183 | + <length>-1</length> | |
| 3184 | + <precision>-1</precision> | |
| 3185 | + </field> | |
| 3186 | + <field> | |
| 3187 | + <name>fcno52</name> | |
| 3188 | + <type>String</type> | |
| 3189 | + <format/> | |
| 3190 | + <currency/> | |
| 3191 | + <decimal/> | |
| 3192 | + <group/> | |
| 3193 | + <nullif/> | |
| 3194 | + <trim_type>none</trim_type> | |
| 3195 | + <length>-1</length> | |
| 3196 | + <precision>-1</precision> | |
| 3197 | + </field> | |
| 3198 | + <field> | |
| 3199 | + <name>fcno53</name> | |
| 3200 | + <type>String</type> | |
| 3201 | + <format/> | |
| 3202 | + <currency/> | |
| 3203 | + <decimal/> | |
| 3204 | + <group/> | |
| 3205 | + <nullif/> | |
| 3206 | + <trim_type>none</trim_type> | |
| 3207 | + <length>-1</length> | |
| 3208 | + <precision>-1</precision> | |
| 3209 | + </field> | |
| 3210 | + <field> | |
| 3211 | + <name>fcno54</name> | |
| 3212 | + <type>String</type> | |
| 3213 | + <format/> | |
| 3214 | + <currency/> | |
| 3215 | + <decimal/> | |
| 3216 | + <group/> | |
| 3217 | + <nullif/> | |
| 3218 | + <trim_type>none</trim_type> | |
| 3219 | + <length>-1</length> | |
| 3220 | + <precision>-1</precision> | |
| 3221 | + </field> | |
| 3222 | + <field> | |
| 3223 | + <name>fcno55</name> | |
| 3224 | + <type>String</type> | |
| 3225 | + <format/> | |
| 3226 | + <currency/> | |
| 3227 | + <decimal/> | |
| 3228 | + <group/> | |
| 3229 | + <nullif/> | |
| 3230 | + <trim_type>none</trim_type> | |
| 3231 | + <length>-1</length> | |
| 3232 | + <precision>-1</precision> | |
| 3233 | + </field> | |
| 3234 | + <field> | |
| 3235 | + <name>fcno56</name> | |
| 3236 | + <type>String</type> | |
| 3237 | + <format/> | |
| 3238 | + <currency/> | |
| 3239 | + <decimal/> | |
| 3240 | + <group/> | |
| 3241 | + <nullif/> | |
| 3242 | + <trim_type>none</trim_type> | |
| 3243 | + <length>-1</length> | |
| 3244 | + <precision>-1</precision> | |
| 3245 | + </field> | |
| 3246 | + <field> | |
| 3247 | + <name>fcno57</name> | |
| 3248 | + <type>String</type> | |
| 3249 | + <format/> | |
| 3250 | + <currency/> | |
| 3251 | + <decimal/> | |
| 3252 | + <group/> | |
| 3253 | + <nullif/> | |
| 3254 | + <trim_type>none</trim_type> | |
| 3255 | + <length>-1</length> | |
| 3256 | + <precision>-1</precision> | |
| 3257 | + </field> | |
| 3258 | + <field> | |
| 3259 | + <name>fcno58</name> | |
| 3260 | + <type>String</type> | |
| 3261 | + <format/> | |
| 3262 | + <currency/> | |
| 3263 | + <decimal/> | |
| 3264 | + <group/> | |
| 3265 | + <nullif/> | |
| 3266 | + <trim_type>none</trim_type> | |
| 3267 | + <length>-1</length> | |
| 3268 | + <precision>-1</precision> | |
| 3269 | + </field> | |
| 3270 | + <field> | |
| 3271 | + <name>fcno59</name> | |
| 5327 | 3272 | <type>String</type> |
| 5328 | - </value> | |
| 5329 | - </lookup> | |
| 5330 | - <cluster_schema/> | |
| 5331 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 5332 | - <xloc>553</xloc> | |
| 5333 | - <yloc>86</yloc> | |
| 5334 | - <draw>Y</draw> | |
| 5335 | - </GUI> | |
| 5336 | - </step> | |
| 5337 | - | |
| 5338 | - <step> | |
| 5339 | - <name>正常班次站点查询用数据</name> | |
| 5340 | - <type>ScriptValueMod</type> | |
| 5341 | - <description/> | |
| 5342 | - <distribute>Y</distribute> | |
| 5343 | - <custom_distribution/> | |
| 5344 | - <copies>1</copies> | |
| 5345 | - <partitioning> | |
| 5346 | - <method>none</method> | |
| 5347 | - <schema_name/> | |
| 5348 | - </partitioning> | |
| 5349 | - <compatible>N</compatible> | |
| 5350 | - <optimizationLevel>9</optimizationLevel> | |
| 5351 | - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 5352 | - <jsScript_name>Script 1</jsScript_name> | |
| 5353 | - <jsScript_script>//Script here

var startZdType = 'B'; // 起点站站点类型标识别
var endZdType = 'E'; // 终点站站点类型标识</jsScript_script> | |
| 5354 | - </jsScript> </jsScripts> <fields> <field> <name>startZdType</name> | |
| 5355 | - <rename>startZdType</rename> | |
| 3273 | + <format/> | |
| 3274 | + <currency/> | |
| 3275 | + <decimal/> | |
| 3276 | + <group/> | |
| 3277 | + <nullif/> | |
| 3278 | + <trim_type>none</trim_type> | |
| 3279 | + <length>-1</length> | |
| 3280 | + <precision>-1</precision> | |
| 3281 | + </field> | |
| 3282 | + <field> | |
| 3283 | + <name>fcno60</name> | |
| 5356 | 3284 | <type>String</type> |
| 3285 | + <format/> | |
| 3286 | + <currency/> | |
| 3287 | + <decimal/> | |
| 3288 | + <group/> | |
| 3289 | + <nullif/> | |
| 3290 | + <trim_type>none</trim_type> | |
| 5357 | 3291 | <length>-1</length> |
| 5358 | 3292 | <precision>-1</precision> |
| 5359 | - <replace>N</replace> | |
| 5360 | - </field> <field> <name>endZdType</name> | |
| 5361 | - <rename>endZdType</rename> | |
| 3293 | + </field> | |
| 3294 | + <field> | |
| 3295 | + <name>fcno61</name> | |
| 5362 | 3296 | <type>String</type> |
| 3297 | + <format/> | |
| 3298 | + <currency/> | |
| 3299 | + <decimal/> | |
| 3300 | + <group/> | |
| 3301 | + <nullif/> | |
| 3302 | + <trim_type>none</trim_type> | |
| 5363 | 3303 | <length>-1</length> |
| 5364 | 3304 | <precision>-1</precision> |
| 5365 | - <replace>N</replace> | |
| 5366 | - </field> </fields> <cluster_schema/> | |
| 5367 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 5368 | - <xloc>391</xloc> | |
| 5369 | - <yloc>87</yloc> | |
| 5370 | - <draw>Y</draw> | |
| 5371 | - </GUI> | |
| 5372 | - </step> | |
| 5373 | - | |
| 5374 | - <step> | |
| 5375 | - <name>获取变量</name> | |
| 5376 | - <type>GetVariable</type> | |
| 5377 | - <description/> | |
| 5378 | - <distribute>Y</distribute> | |
| 5379 | - <custom_distribution/> | |
| 5380 | - <copies>1</copies> | |
| 5381 | - <partitioning> | |
| 5382 | - <method>none</method> | |
| 5383 | - <schema_name/> | |
| 5384 | - </partitioning> | |
| 5385 | - <fields> | |
| 3305 | + </field> | |
| 5386 | 3306 | <field> |
| 5387 | - <name>xlid_</name> | |
| 5388 | - <variable>${xlid}</variable> | |
| 5389 | - <type>Integer</type> | |
| 3307 | + <name>fcno62</name> | |
| 3308 | + <type>String</type> | |
| 5390 | 3309 | <format/> |
| 5391 | 3310 | <currency/> |
| 5392 | 3311 | <decimal/> |
| 5393 | 3312 | <group/> |
| 3313 | + <nullif/> | |
| 3314 | + <trim_type>none</trim_type> | |
| 5394 | 3315 | <length>-1</length> |
| 5395 | 3316 | <precision>-1</precision> |
| 3317 | + </field> | |
| 3318 | + <field> | |
| 3319 | + <name>fcno63</name> | |
| 3320 | + <type>String</type> | |
| 3321 | + <format/> | |
| 3322 | + <currency/> | |
| 3323 | + <decimal/> | |
| 3324 | + <group/> | |
| 3325 | + <nullif/> | |
| 5396 | 3326 | <trim_type>none</trim_type> |
| 3327 | + <length>-1</length> | |
| 3328 | + <precision>-1</precision> | |
| 5397 | 3329 | </field> |
| 5398 | 3330 | <field> |
| 5399 | - <name>ttid_</name> | |
| 5400 | - <variable>${ttid}</variable> | |
| 5401 | - <type>Number</type> | |
| 3331 | + <name>fcno64</name> | |
| 3332 | + <type>String</type> | |
| 5402 | 3333 | <format/> |
| 5403 | 3334 | <currency/> |
| 5404 | 3335 | <decimal/> |
| 5405 | 3336 | <group/> |
| 3337 | + <nullif/> | |
| 3338 | + <trim_type>none</trim_type> | |
| 5406 | 3339 | <length>-1</length> |
| 5407 | 3340 | <precision>-1</precision> |
| 3341 | + </field> | |
| 3342 | + <field> | |
| 3343 | + <name>fcno65</name> | |
| 3344 | + <type>String</type> | |
| 3345 | + <format/> | |
| 3346 | + <currency/> | |
| 3347 | + <decimal/> | |
| 3348 | + <group/> | |
| 3349 | + <nullif/> | |
| 5408 | 3350 | <trim_type>none</trim_type> |
| 3351 | + <length>-1</length> | |
| 3352 | + <precision>-1</precision> | |
| 5409 | 3353 | </field> |
| 5410 | - </fields> | |
| 5411 | - <cluster_schema/> | |
| 5412 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 5413 | - <xloc>45</xloc> | |
| 5414 | - <yloc>189</yloc> | |
| 5415 | - <draw>Y</draw> | |
| 5416 | - </GUI> | |
| 5417 | - </step> | |
| 5418 | - | |
| 5419 | - <step> | |
| 5420 | - <name>表输入</name> | |
| 5421 | - <type>TableInput</type> | |
| 5422 | - <description/> | |
| 5423 | - <distribute>Y</distribute> | |
| 5424 | - <custom_distribution/> | |
| 5425 | - <copies>1</copies> | |
| 5426 | - <partitioning> | |
| 5427 | - <method>none</method> | |
| 5428 | - <schema_name/> | |
| 5429 | - </partitioning> | |
| 5430 | - <connection>bus_control_variable</connection> | |
| 5431 | - <sql>select 
t.id as id
, g.lp_name as lp
, g.xl as xl
, qdz
, zdz
, tcc
, fcsj
, jhlc
, 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> | |
| 5432 | - <limit>0</limit> | |
| 5433 | - <lookup>获取变量</lookup> | |
| 5434 | - <execute_each_row>N</execute_each_row> | |
| 5435 | - <variables_active>Y</variables_active> | |
| 5436 | - <lazy_conversion_active>N</lazy_conversion_active> | |
| 5437 | - <cluster_schema/> | |
| 5438 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 5439 | - <xloc>130</xloc> | |
| 5440 | - <yloc>85</yloc> | |
| 5441 | - <draw>Y</draw> | |
| 5442 | - </GUI> | |
| 5443 | - </step> | |
| 5444 | - | |
| 5445 | - <step> | |
| 5446 | - <name>计算发车站名</name> | |
| 5447 | - <type>ScriptValueMod</type> | |
| 5448 | - <description/> | |
| 5449 | - <distribute>Y</distribute> | |
| 5450 | - <custom_distribution/> | |
| 5451 | - <copies>1</copies> | |
| 5452 | - <partitioning> | |
| 5453 | - <method>none</method> | |
| 5454 | - <schema_name/> | |
| 5455 | - </partitioning> | |
| 5456 | - <compatible>N</compatible> | |
| 5457 | - <optimizationLevel>9</optimizationLevel> | |
| 5458 | - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 5459 | - <jsScript_name>Script 1</jsScript_name> | |
| 5460 | - <jsScript_script>//Script here

var fczdName = null; // 发车站点名字
if (bc_type == "in") {
 fczdName = "进场";
} else if (bc_type == "out") {
 fczdName = "出场";
} else {
 fczdName = qdzName;
}</jsScript_script> | |
| 5461 | - </jsScript> </jsScripts> <fields> <field> <name>fczdName</name> | |
| 5462 | - <rename>fczdName</rename> | |
| 3354 | + <field> | |
| 3355 | + <name>fcno66</name> | |
| 5463 | 3356 | <type>String</type> |
| 3357 | + <format/> | |
| 3358 | + <currency/> | |
| 3359 | + <decimal/> | |
| 3360 | + <group/> | |
| 3361 | + <nullif/> | |
| 3362 | + <trim_type>none</trim_type> | |
| 5464 | 3363 | <length>-1</length> |
| 5465 | 3364 | <precision>-1</precision> |
| 5466 | - <replace>N</replace> | |
| 5467 | - </field> </fields> <cluster_schema/> | |
| 5468 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 5469 | - <xloc>550</xloc> | |
| 5470 | - <yloc>276</yloc> | |
| 5471 | - <draw>Y</draw> | |
| 5472 | - </GUI> | |
| 5473 | - </step> | |
| 5474 | - | |
| 5475 | - <step> | |
| 5476 | - <name>过滤记录</name> | |
| 5477 | - <type>FilterRows</type> | |
| 5478 | - <description/> | |
| 5479 | - <distribute>Y</distribute> | |
| 5480 | - <custom_distribution/> | |
| 5481 | - <copies>1</copies> | |
| 5482 | - <partitioning> | |
| 5483 | - <method>none</method> | |
| 5484 | - <schema_name/> | |
| 5485 | - </partitioning> | |
| 5486 | -<send_true_to>正常班次站点查询用数据</send_true_to> | |
| 5487 | -<send_false_to>进场出场班次查询用的数据</send_false_to> | |
| 5488 | - <compare> | |
| 5489 | -<condition> | |
| 5490 | - <negated>N</negated> | |
| 5491 | - <leftvalue>bc_type</leftvalue> | |
| 5492 | - <function>=</function> | |
| 5493 | - <rightvalue/> | |
| 5494 | - <value><name>constant</name><type>String</type><text>normal</text><length>-1</length><precision>-1</precision><isnull>N</isnull><mask/></value> </condition> | |
| 5495 | - </compare> | |
| 3365 | + </field> | |
| 3366 | + <field> | |
| 3367 | + <name>fcno67</name> | |
| 3368 | + <type>String</type> | |
| 3369 | + <format/> | |
| 3370 | + <currency/> | |
| 3371 | + <decimal/> | |
| 3372 | + <group/> | |
| 3373 | + <nullif/> | |
| 3374 | + <trim_type>none</trim_type> | |
| 3375 | + <length>-1</length> | |
| 3376 | + <precision>-1</precision> | |
| 3377 | + </field> | |
| 3378 | + <field> | |
| 3379 | + <name>fcno68</name> | |
| 3380 | + <type>String</type> | |
| 3381 | + <format/> | |
| 3382 | + <currency/> | |
| 3383 | + <decimal/> | |
| 3384 | + <group/> | |
| 3385 | + <nullif/> | |
| 3386 | + <trim_type>none</trim_type> | |
| 3387 | + <length>-1</length> | |
| 3388 | + <precision>-1</precision> | |
| 3389 | + </field> | |
| 3390 | + <field> | |
| 3391 | + <name>fcno69</name> | |
| 3392 | + <type>String</type> | |
| 3393 | + <format/> | |
| 3394 | + <currency/> | |
| 3395 | + <decimal/> | |
| 3396 | + <group/> | |
| 3397 | + <nullif/> | |
| 3398 | + <trim_type>none</trim_type> | |
| 3399 | + <length>-1</length> | |
| 3400 | + <precision>-1</precision> | |
| 3401 | + </field> | |
| 3402 | + <field> | |
| 3403 | + <name>fcno70</name> | |
| 3404 | + <type>String</type> | |
| 3405 | + <format/> | |
| 3406 | + <currency/> | |
| 3407 | + <decimal/> | |
| 3408 | + <group/> | |
| 3409 | + <nullif/> | |
| 3410 | + <trim_type>none</trim_type> | |
| 3411 | + <length>-1</length> | |
| 3412 | + <precision>-1</precision> | |
| 3413 | + </field> | |
| 3414 | + </fields> | |
| 5496 | 3415 | <cluster_schema/> |
| 5497 | 3416 | <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> |
| 5498 | - <xloc>248</xloc> | |
| 5499 | - <yloc>87</yloc> | |
| 3417 | + <xloc>880</xloc> | |
| 3418 | + <yloc>365</yloc> | |
| 5500 | 3419 | <draw>Y</draw> |
| 5501 | 3420 | </GUI> |
| 5502 | 3421 | </step> |
| 5503 | 3422 | |
| 5504 | 3423 | <step> |
| 5505 | - <name>进场出场班次查询用的数据</name> | |
| 3424 | + <name>合并内容</name> | |
| 5506 | 3425 | <type>ScriptValueMod</type> |
| 5507 | 3426 | <description/> |
| 5508 | 3427 | <distribute>Y</distribute> |
| ... | ... | @@ -5516,23 +3435,17 @@ |
| 5516 | 3435 | <optimizationLevel>9</optimizationLevel> |
| 5517 | 3436 | <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> |
| 5518 | 3437 | <jsScript_name>Script 1</jsScript_name> |
| 5519 | - <jsScript_script>//Script here

var qdzName = null; // 起点站名字
var zdzName = null; // 终点站名字</jsScript_script> | |
| 5520 | - </jsScript> </jsScripts> <fields> <field> <name>qdzName</name> | |
| 5521 | - <rename>qdzName</rename> | |
| 5522 | - <type>String</type> | |
| 5523 | - <length>-1</length> | |
| 5524 | - <precision>-1</precision> | |
| 5525 | - <replace>N</replace> | |
| 5526 | - </field> <field> <name>zdzName</name> | |
| 5527 | - <rename>zdzName</rename> | |
| 3438 | + <jsScript_script>//Script here

// 顺序,id,fcsj,jhlc,zdname,bctype,xldir,isfb
var all_content_array = [];
var all_content = ""; 
all_content_array.push(id);
all_content_array.push(fcsj);
all_content_array.push(jhlc);
all_content_array.push(fczdName);
all_content_array.push(bc_type);
all_content_array.push(xl_dir);
all_content_array.push(isfb);

all_content = all_content_array.join(","); // 逗号分隔</jsScript_script> | |
| 3439 | + </jsScript> </jsScripts> <fields> <field> <name>all_content</name> | |
| 3440 | + <rename>all_content</rename> | |
| 5528 | 3441 | <type>String</type> |
| 5529 | 3442 | <length>-1</length> |
| 5530 | 3443 | <precision>-1</precision> |
| 5531 | 3444 | <replace>N</replace> |
| 5532 | 3445 | </field> </fields> <cluster_schema/> |
| 5533 | 3446 | <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> |
| 5534 | - <xloc>250</xloc> | |
| 5535 | - <yloc>188</yloc> | |
| 3447 | + <xloc>551</xloc> | |
| 3448 | + <yloc>366</yloc> | |
| 5536 | 3449 | <draw>Y</draw> |
| 5537 | 3450 | </GUI> |
| 5538 | 3451 | </step> | ... | ... |
src/main/resources/static/pages/forms/mould/lbStatuAnaly.xls
0 → 100644
No preview for this file type
src/main/resources/static/pages/forms/statement/lbStatuAnaly.html
| ... | ... | @@ -82,7 +82,7 @@ |
| 82 | 82 | </div> |
| 83 | 83 | <div class="form-group" style="margin-left: 10px"> |
| 84 | 84 | <input class="btn btn-default" type="button" id="query" value="筛选"/> |
| 85 | -<!-- <input class="btn btn-default" type="button" id="export" value="导出"/> --> | |
| 85 | + <input class="btn btn-default" type="button" id="export" value="导出"/> | |
| 86 | 86 | </div> |
| 87 | 87 | </form> |
| 88 | 88 | </div> |
| ... | ... | @@ -107,7 +107,7 @@ |
| 107 | 107 | |
| 108 | 108 | <script> |
| 109 | 109 | $(function(){ |
| 110 | - | |
| 110 | + $('#export').attr('disabled', "true"); | |
| 111 | 111 | |
| 112 | 112 | // 关闭左侧栏 |
| 113 | 113 | if (!$('body').hasClass('page-sidebar-closed')) |
| ... | ... | @@ -253,6 +253,12 @@ |
| 253 | 253 | _w_table_rowspan("#forms", 3); |
| 254 | 254 | _w_table_rowspan("#forms", 4); |
| 255 | 255 | _w_table_rowspan("#forms", 5); |
| 256 | + | |
| 257 | + if(result.length == 0) | |
| 258 | + $('#export').attr('disabled', "true"); | |
| 259 | + else | |
| 260 | + $("#export").removeAttr("disabled"); | |
| 261 | + | |
| 256 | 262 | }); |
| 257 | 263 | } |
| 258 | 264 | |
| ... | ... | @@ -268,8 +274,8 @@ |
| 268 | 274 | params['type'] = "export"; |
| 269 | 275 | $get('/busInterval/lbStatuAnaly', params, function(result){ |
| 270 | 276 | window.open("/downloadFile/download?fileName=烂班情况分析表" |
| 271 | - + moment(startDate).format("YYYYMMDD")) | |
| 272 | - +"-"+ moment(endDate).format("YYYYMMDD"); | |
| 277 | + + moment(startDate).format("YYYYMMDD") | |
| 278 | + +"-"+ moment(endDate).format("YYYYMMDD")); | |
| 273 | 279 | }); |
| 274 | 280 | }); |
| 275 | 281 | ... | ... |
src/main/resources/static/pages/scheduleApp/module/core/ttInfoManage/detail.html
| ... | ... | @@ -81,29 +81,29 @@ |
| 81 | 81 | |
| 82 | 82 | </div> |
| 83 | 83 | |
| 84 | - <div class="form-group"> | |
| 85 | - <label class="col-md-2 control-label">路牌数量:</label> | |
| 86 | - <div class="col-md-4"> | |
| 87 | - <input type="number" class="form-control" ng-value="ctrl.ttInfoManageForDetail.lpCount" | |
| 88 | - name="lpCount" placeholder="请输入路牌数" min="1" readonly/> | |
| 89 | - </div> | |
| 90 | - </div> | |
| 84 | + <!--<div class="form-group">--> | |
| 85 | + <!--<label class="col-md-2 control-label">路牌数量:</label>--> | |
| 86 | + <!--<div class="col-md-4">--> | |
| 87 | + <!--<input type="number" class="form-control" ng-value="ctrl.ttInfoManageForDetail.lpCount"--> | |
| 88 | + <!--name="lpCount" placeholder="请输入路牌数" min="1" readonly/>--> | |
| 89 | + <!--</div>--> | |
| 90 | + <!--</div>--> | |
| 91 | 91 | |
| 92 | - <div class="form-group"> | |
| 93 | - <label class="col-md-2 control-label">营运圈数:</label> | |
| 94 | - <div class="col-md-4"> | |
| 95 | - <input type="number" class="form-control" ng-value="ctrl.ttInfoManageForDetail.loopCount" | |
| 96 | - name="loopCount" placeholder="请输入圈数" min="1" readonly/> | |
| 97 | - </div> | |
| 98 | - </div> | |
| 92 | + <!--<div class="form-group">--> | |
| 93 | + <!--<label class="col-md-2 control-label">营运圈数:</label>--> | |
| 94 | + <!--<div class="col-md-4">--> | |
| 95 | + <!--<input type="number" class="form-control" ng-value="ctrl.ttInfoManageForDetail.loopCount"--> | |
| 96 | + <!--name="loopCount" placeholder="请输入圈数" min="1" readonly/>--> | |
| 97 | + <!--</div>--> | |
| 98 | + <!--</div>--> | |
| 99 | 99 | |
| 100 | - <div class="form-group"> | |
| 101 | - <label class="col-md-2 control-label">停车场:</label> | |
| 102 | - <div class="col-md-4"> | |
| 103 | - <input type="text" class="form-control" ng-value="ctrl.ttInfoManageForDetail.xl.carParkCode | dict:'CarPark':'未知' " | |
| 104 | - name="carParkCode" readonly/> | |
| 105 | - </div> | |
| 106 | - </div> | |
| 100 | + <!--<div class="form-group">--> | |
| 101 | + <!--<label class="col-md-2 control-label">停车场:</label>--> | |
| 102 | + <!--<div class="col-md-4">--> | |
| 103 | + <!--<input type="text" class="form-control" ng-value="ctrl.ttInfoManageForDetail.xl.carParkCode | dict:'CarPark':'未知' "--> | |
| 104 | + <!--name="carParkCode" readonly/>--> | |
| 105 | + <!--</div>--> | |
| 106 | + <!--</div>--> | |
| 107 | 107 | |
| 108 | 108 | <div class="form-group"> |
| 109 | 109 | <label class="col-md-2 control-label">常规有效日:</label> | ... | ... |
src/main/resources/static/pages/scheduleApp/module/core/ttInfoManage/detailedit/edit-detail.html
| ... | ... | @@ -39,8 +39,8 @@ |
| 39 | 39 | <form ng-submit="ctrl.submit()" class="form-horizontal" novalidate name="myForm"> |
| 40 | 40 | <div class="form-body"> |
| 41 | 41 | <div class="form-group has-success has-feedback"> |
| 42 | - <label class="col-md-3 control-label">线路*:</label> | |
| 43 | - <div class="col-md-7"> | |
| 42 | + <label class="col-md-2 control-label">线路*:</label> | |
| 43 | + <div class="col-md-3"> | |
| 44 | 44 | <input type="text" class="form-control" |
| 45 | 45 | ng-value="ctrl.TimeTableDetailForSave.xl.name" |
| 46 | 46 | readonly/> |
| ... | ... | @@ -48,16 +48,16 @@ |
| 48 | 48 | |
| 49 | 49 | </div> |
| 50 | 50 | <div class="form-group has-success has-feedback"> |
| 51 | - <label class="col-md-3 control-label">时刻表名称*:</label> | |
| 52 | - <div class="col-md-7"> | |
| 51 | + <label class="col-md-2 control-label">时刻表名称*:</label> | |
| 52 | + <div class="col-md-3"> | |
| 53 | 53 | <input type="text" class="form-control" |
| 54 | 54 | ng-value="ctrl.TimeTableDetailForSave.ttinfo.name" |
| 55 | 55 | readonly/> |
| 56 | 56 | </div> |
| 57 | 57 | </div> |
| 58 | 58 | <div class="form-group has-success has-feedback"> |
| 59 | - <label class="col-md-3 control-label">路牌*:</label> | |
| 60 | - <div class="col-md-7"> | |
| 59 | + <label class="col-md-2 control-label">路牌*:</label> | |
| 60 | + <div class="col-md-3"> | |
| 61 | 61 | <input type="text" class="form-control" |
| 62 | 62 | ng-value="ctrl.TimeTableDetailForSave.lp.lpName" |
| 63 | 63 | readonly/> |
| ... | ... | @@ -65,8 +65,8 @@ |
| 65 | 65 | |
| 66 | 66 | </div> |
| 67 | 67 | <div class="form-group has-success has-feedback"> |
| 68 | - <label class="col-md-3 control-label">发车顺序号*:</label> | |
| 69 | - <div class="col-md-7"> | |
| 68 | + <label class="col-md-2 control-label">发车顺序号*:</label> | |
| 69 | + <div class="col-md-3"> | |
| 70 | 70 | <input type="text" class="form-control" |
| 71 | 71 | ng-value="ctrl.TimeTableDetailForSave.fcno" |
| 72 | 72 | readonly/> |
| ... | ... | @@ -74,8 +74,8 @@ |
| 74 | 74 | |
| 75 | 75 | </div> |
| 76 | 76 | <div class="form-group has-success has-feedback"> |
| 77 | - <label class="col-md-3 control-label">方向*:</label> | |
| 78 | - <div class="col-md-7"> | |
| 77 | + <label class="col-md-2 control-label">方向*:</label> | |
| 78 | + <div class="col-md-3"> | |
| 79 | 79 | <sa-Radiogroup model="ctrl.TimeTableDetailForSave.xlDir" dicgroup="LineTrend" name="xlDir" required></sa-Radiogroup> |
| 80 | 80 | </div> |
| 81 | 81 | <!-- 隐藏块,显示验证信息 --> |
| ... | ... | @@ -84,71 +84,162 @@ |
| 84 | 84 | </div> |
| 85 | 85 | |
| 86 | 86 | </div> |
| 87 | - <div class="form-group"> | |
| 88 | - <label class="col-md-3 control-label">起点站:</label> | |
| 89 | - <div class="col-md-7"> | |
| 90 | - <sa-Select3 model="ctrl.TimeTableDetailForSave" | |
| 91 | - name="qdz" | |
| 92 | - placeholder="请输拼音..." | |
| 93 | - dcvalue="{{ctrl.TimeTableDetailForSave.qdz.id}}" | |
| 87 | + | |
| 88 | + <!--- 进场班次判定 --> | |
| 89 | + <div class="form-group has-success has-feedback" | |
| 90 | + ng-if="ctrl.TimeTableDetailForSave.bcType == 'in'"> | |
| 91 | + <label class="col-md-2 control-label">起点站:</label> | |
| 92 | + <div class="col-md-3"> | |
| 93 | + <sa-Select5 name="qdz" | |
| 94 | + model="ctrl.TimeTableDetailForSave" | |
| 95 | + cmaps="{'qdz.id' : 'stationid'}" | |
| 94 | 96 | dcname="qdz.id" |
| 95 | 97 | icname="stationid" |
| 96 | - icnames="stationname" | |
| 97 | - datatype="zd" | |
| 98 | - dataassociate="true" | |
| 99 | - dataparam="{{ {'xlid': ctrl.TimeTableDetailForSave.xl.id, 'xldir': ctrl.TimeTableDetailForSave.xlDir} | json }}" | |
| 100 | - mlp="true" | |
| 101 | - > | |
| 102 | - </sa-Select3> | |
| 98 | + dsparams="{{ {type: 'ajax', param:{'xlid': ctrl.TimeTableDetailForSave.xl.id, 'xldir': ctrl.TimeTableDetailForSave.xlDir}, atype:'zd' } | json }}" | |
| 99 | + iterobjname="item" | |
| 100 | + iterobjexp="item.stationname" | |
| 101 | + searchph="请输拼音..." | |
| 102 | + searchexp="this.stationname" | |
| 103 | + required > | |
| 104 | + </sa-Select5> | |
| 105 | + </div> | |
| 106 | + <!-- 隐藏块,显示验证信息 --> | |
| 107 | + <div class="alert alert-danger well-sm" ng-show="myForm.qdz.$error.required"> | |
| 108 | + 起点站必须选择 | |
| 103 | 109 | </div> |
| 104 | 110 | </div> |
| 105 | - <div class="form-group"> | |
| 106 | - <label class="col-md-3 control-label">终点站:</label> | |
| 107 | - <div class="col-md-7"> | |
| 108 | - <sa-Select3 model="ctrl.TimeTableDetailForSave" | |
| 109 | - name="zdz" | |
| 110 | - placeholder="请输拼音..." | |
| 111 | - dcvalue="{{ctrl.TimeTableDetailForSave.zdz.id}}" | |
| 112 | - dcname="zdz.id" | |
| 113 | - icname="stationid" | |
| 114 | - icnames="stationname" | |
| 115 | - datatype="zd" | |
| 116 | - dataassociate="true" | |
| 117 | - dataparam="{{ {'xlid': ctrl.TimeTableDetailForSave.xl.id, 'xldir': ctrl.TimeTableDetailForSave.xlDir} | json }}" | |
| 118 | - mlp="true" | |
| 119 | - > | |
| 120 | - </sa-Select3> | |
| 111 | + <div class="form-group has-success has-feedback" | |
| 112 | + ng-if="ctrl.TimeTableDetailForSave.bcType == 'in'"> | |
| 113 | + <label class="col-md-2 control-label">停车场:</label> | |
| 114 | + <div class="col-md-3"> | |
| 115 | + <sa-Select5 name="tcc" | |
| 116 | + model="ctrl.TimeTableDetailForSave" | |
| 117 | + cmaps="{'tcc.id': 'id'}" | |
| 118 | + dcname="tcc.id" | |
| 119 | + icname="id" | |
| 120 | + dsparams="{{ {type: 'ajax', param:{type: 'all'}, atype:'tcc' } | json }}" | |
| 121 | + iterobjname="item" | |
| 122 | + iterobjexp="item.parkName" | |
| 123 | + searchph="请输拼音..." | |
| 124 | + searchexp="this.parkName" | |
| 125 | + required > | |
| 126 | + </sa-Select5> | |
| 127 | + </div> | |
| 128 | + <!-- 隐藏块,显示验证信息 --> | |
| 129 | + <div class="alert alert-danger well-sm" ng-show="myForm.tcc.$error.required"> | |
| 130 | + 停车场必须选择 | |
| 121 | 131 | </div> |
| 122 | 132 | </div> |
| 123 | - <div class="form-group"> | |
| 124 | - <label class="col-md-3 control-label">停车场:</label> | |
| 125 | - <div class="col-md-7"> | |
| 126 | - <sa-Select3 model="ctrl.TimeTableDetailForSave" | |
| 127 | - name="tcc" | |
| 128 | - placeholder="请输拼音..." | |
| 129 | - dcvalue="{{ctrl.TimeTableDetailForSave.tcc.id}}" | |
| 133 | + | |
| 134 | + <!--- 出场班次判定 --> | |
| 135 | + <div class="form-group has-success has-feedback" | |
| 136 | + ng-if="ctrl.TimeTableDetailForSave.bcType == 'out'"> | |
| 137 | + <label class="col-md-2 control-label">停车场:</label> | |
| 138 | + <div class="col-md-3"> | |
| 139 | + <sa-Select5 name="tcc" | |
| 140 | + model="ctrl.TimeTableDetailForSave" | |
| 141 | + cmaps="{'tcc.id': 'id'}" | |
| 130 | 142 | dcname="tcc.id" |
| 131 | 143 | icname="id" |
| 132 | - icnames="parkName" | |
| 133 | - datatype="tcc" | |
| 134 | - mlp="true" | |
| 135 | - > | |
| 136 | - </sa-Select3> | |
| 144 | + dsparams="{{ {type: 'ajax', param:{type: 'all'}, atype:'tcc' } | json }}" | |
| 145 | + iterobjname="item" | |
| 146 | + iterobjexp="item.parkName" | |
| 147 | + searchph="请输拼音..." | |
| 148 | + searchexp="this.parkName" | |
| 149 | + required > | |
| 150 | + </sa-Select5> | |
| 151 | + </div> | |
| 152 | + <!-- 隐藏块,显示验证信息 --> | |
| 153 | + <div class="alert alert-danger well-sm" ng-show="myForm.tcc.$error.required"> | |
| 154 | + 停车场必须选择 | |
| 155 | + </div> | |
| 156 | + </div> | |
| 157 | + <div class="form-group has-success has-feedback" | |
| 158 | + ng-if="ctrl.TimeTableDetailForSave.bcType == 'out'"> | |
| 159 | + <label class="col-md-2 control-label">终点站:</label> | |
| 160 | + <div class="col-md-3"> | |
| 161 | + <sa-Select5 name="zdz" | |
| 162 | + model="ctrl.TimeTableDetailForSave" | |
| 163 | + cmaps="{'zdz.id' : 'stationid'}" | |
| 164 | + dcname="zdz.id" | |
| 165 | + icname="stationid" | |
| 166 | + dsparams="{{ {type: 'ajax', param:{'xlid': ctrl.TimeTableDetailForSave.xl.id, 'xldir': ctrl.TimeTableDetailForSave.xlDir}, atype:'zd' } | json }}" | |
| 167 | + iterobjname="item" | |
| 168 | + iterobjexp="item.stationname" | |
| 169 | + searchph="请输拼音..." | |
| 170 | + searchexp="this.stationname" | |
| 171 | + required > | |
| 172 | + </sa-Select5> | |
| 173 | + </div> | |
| 174 | + <!-- 隐藏块,显示验证信息 --> | |
| 175 | + <div class="alert alert-danger well-sm" ng-show="myForm.zdz.$error.required"> | |
| 176 | + 终点站必须选择 | |
| 177 | + </div> | |
| 178 | + </div> | |
| 179 | + | |
| 180 | + <!-- 其他班次类型 --> | |
| 181 | + <div class="form-group has-success has-feedback" | |
| 182 | + ng-if="ctrl.TimeTableDetailForSave.bcType != 'in' && ctrl.TimeTableDetailForSave.bcType != 'out'"> | |
| 183 | + <label class="col-md-2 control-label">起点站:</label> | |
| 184 | + <div class="col-md-3"> | |
| 185 | + <sa-Select5 name="qdz" | |
| 186 | + model="ctrl.TimeTableDetailForSave" | |
| 187 | + cmaps="{'qdz.id' : 'stationid'}" | |
| 188 | + dcname="qdz.id" | |
| 189 | + icname="stationid" | |
| 190 | + dsparams="{{ {type: 'ajax', param:{'xlid': ctrl.TimeTableDetailForSave.xl.id, 'xldir': ctrl.TimeTableDetailForSave.xlDir}, atype:'zd' } | json }}" | |
| 191 | + iterobjname="item" | |
| 192 | + iterobjexp="item.stationname" | |
| 193 | + searchph="请输拼音..." | |
| 194 | + searchexp="this.stationname" | |
| 195 | + required > | |
| 196 | + </sa-Select5> | |
| 197 | + </div> | |
| 198 | + <!-- 隐藏块,显示验证信息 --> | |
| 199 | + <div class="alert alert-danger well-sm" ng-show="myForm.qdz.$error.required"> | |
| 200 | + 起点站必须选择 | |
| 201 | + </div> | |
| 202 | + </div> | |
| 203 | + <div class="form-group has-success has-feedback" | |
| 204 | + ng-if="ctrl.TimeTableDetailForSave.bcType != 'in' && ctrl.TimeTableDetailForSave.bcType != 'out'"> | |
| 205 | + <label class="col-md-2 control-label">终点站:</label> | |
| 206 | + <div class="col-md-3"> | |
| 207 | + <sa-Select5 name="zdz" | |
| 208 | + model="ctrl.TimeTableDetailForSave" | |
| 209 | + cmaps="{'zdz.id' : 'stationid'}" | |
| 210 | + dcname="zdz.id" | |
| 211 | + icname="stationid" | |
| 212 | + dsparams="{{ {type: 'ajax', param:{'xlid': ctrl.TimeTableDetailForSave.xl.id, 'xldir': ctrl.TimeTableDetailForSave.xlDir}, atype:'zd' } | json }}" | |
| 213 | + iterobjname="item" | |
| 214 | + iterobjexp="item.stationname" | |
| 215 | + searchph="请输拼音..." | |
| 216 | + searchexp="this.stationname" | |
| 217 | + required > | |
| 218 | + </sa-Select5> | |
| 219 | + </div> | |
| 220 | + <!-- 隐藏块,显示验证信息 --> | |
| 221 | + <div class="alert alert-danger well-sm" ng-show="myForm.zdz.$error.required"> | |
| 222 | + 终点站必须选择 | |
| 137 | 223 | </div> |
| 138 | 224 | </div> |
| 139 | 225 | |
| 140 | 226 | <div class="form-group has-success has-feedback"> |
| 141 | - <label class="col-md-3 control-label">发车时间*:</label> | |
| 142 | - <div class="col-md-7"> | |
| 143 | - <input type="text" class="form-control" | |
| 227 | + <label class="col-md-2 control-label">发车时间*:</label> | |
| 228 | + <div class="col-md-3"> | |
| 229 | + <input type="text" class="form-control" name="fcsj" | |
| 144 | 230 | ng-model="ctrl.TimeTableDetailForSave.fcsj" |
| 231 | + ng-pattern="ctrl.time_regex" | |
| 145 | 232 | /> |
| 146 | 233 | </div> |
| 234 | + <!-- 隐藏块,显示验证信息 --> | |
| 235 | + <div class="alert alert-danger well-sm" ng-show="myForm.fcsj.$error.pattern"> | |
| 236 | + 时间格式错误,应该是格式hh:mm,如:06:39 | |
| 237 | + </div> | |
| 147 | 238 | |
| 148 | 239 | </div> |
| 149 | 240 | <div class="form-group"> |
| 150 | - <label class="col-md-3 control-label">对应班次数:</label> | |
| 151 | - <div class="col-md-7"> | |
| 241 | + <label class="col-md-2 control-label">对应班次数:</label> | |
| 242 | + <div class="col-md-3"> | |
| 152 | 243 | <input type="text" class="form-control" |
| 153 | 244 | ng-value="ctrl.TimeTableDetailForSave.bcs" |
| 154 | 245 | readonly/> |
| ... | ... | @@ -156,42 +247,63 @@ |
| 156 | 247 | |
| 157 | 248 | </div> |
| 158 | 249 | <div class="form-group"> |
| 159 | - <label class="col-md-3 control-label">计划里程:</label> | |
| 160 | - <div class="col-md-7"> | |
| 161 | - <input type="text" class="form-control" | |
| 162 | - ng-model="ctrl.TimeTableDetailForSave.jhlc" | |
| 250 | + <label class="col-md-2 control-label">计划里程:</label> | |
| 251 | + <div class="col-md-3"> | |
| 252 | + <input type="text" class="form-control" name="jhlc" | |
| 253 | + ng-model="ctrl.TimeTableDetailForSave.jhlc" required ng-pattern="ctrl.float_regex" | |
| 163 | 254 | /> |
| 164 | 255 | </div> |
| 256 | + <!-- 隐藏块,显示验证信息 --> | |
| 257 | + <div class="alert alert-danger well-sm" ng-show="myForm.jhlc.$error.required"> | |
| 258 | + 计划里程必须填写 | |
| 259 | + </div> | |
| 260 | + <div class="alert alert-danger well-sm" ng-show="myForm.jhlc.$error.pattern"> | |
| 261 | + 输入数字 | |
| 262 | + </div> | |
| 165 | 263 | |
| 166 | 264 | </div> |
| 167 | 265 | <div class="form-group"> |
| 168 | - <label class="col-md-3 control-label">班次历时:</label> | |
| 169 | - <div class="col-md-7"> | |
| 170 | - <input type="text" class="form-control" | |
| 171 | - ng-model="ctrl.TimeTableDetailForSave.bcsj" | |
| 266 | + <label class="col-md-2 control-label">班次历时:</label> | |
| 267 | + <div class="col-md-3"> | |
| 268 | + <input type="text" class="form-control" name="bcsj" | |
| 269 | + ng-model="ctrl.TimeTableDetailForSave.bcsj" required ng-pattern="ctrl.number_regex" | |
| 172 | 270 | /> |
| 173 | 271 | </div> |
| 272 | + <!-- 隐藏块,显示验证信息 --> | |
| 273 | + <div class="alert alert-danger well-sm" ng-show="myForm.bcsj.$error.required"> | |
| 274 | + 班次时间必须填写 | |
| 275 | + </div> | |
| 276 | + <div class="alert alert-danger well-sm" ng-show="myForm.bcsj.$error.pattern"> | |
| 277 | + 输入整数 | |
| 278 | + </div> | |
| 174 | 279 | |
| 175 | 280 | </div> |
| 176 | 281 | <div class="form-group has-success has-feedback"> |
| 177 | - <label class="col-md-3 control-label">班次类型*:</label> | |
| 178 | - <div class="col-md-7"> | |
| 179 | - <sa-Select3 model="ctrl.TimeTableDetailForSave" | |
| 180 | - name="bcType" | |
| 181 | - placeholder="请选择班次类型..." | |
| 182 | - dcvalue="{{ctrl.TimeTableDetailForSave.bcType}}" | |
| 282 | + <label class="col-md-2 control-label">班次类型*:</label> | |
| 283 | + <div class="col-md-3"> | |
| 284 | + <sa-Select5 name="bcType" | |
| 285 | + model="ctrl.TimeTableDetailForSave" | |
| 286 | + cmaps="{'bcType': 'code'}" | |
| 183 | 287 | dcname="bcType" |
| 184 | 288 | icname="code" |
| 185 | - icnames="name" | |
| 186 | - datatype="ScheduleType" | |
| 187 | - required > | |
| 188 | - </sa-Select3> | |
| 289 | + dsparams="{{ {type: 'dic', param: 'ScheduleType' } | json }}" | |
| 290 | + iterobjname="item" | |
| 291 | + iterobjexp="item.name" | |
| 292 | + searchph="请选择营运状态..." | |
| 293 | + searchexp="this.name" | |
| 294 | + required | |
| 295 | + > | |
| 296 | + </sa-Select5> | |
| 297 | + </div> | |
| 298 | + <!-- 隐藏块,显示验证信息 --> | |
| 299 | + <div class="alert alert-danger well-sm" ng-show="myForm.bcType.$error.required"> | |
| 300 | + 班次类型必须选择 | |
| 189 | 301 | </div> |
| 190 | 302 | |
| 191 | 303 | </div> |
| 192 | 304 | <div class="form-group"> |
| 193 | - <label class="col-md-3 control-label">备注:</label> | |
| 194 | - <div class="col-md-7"> | |
| 305 | + <label class="col-md-2 control-label">备注:</label> | |
| 306 | + <div class="col-md-3"> | |
| 195 | 307 | <textarea class="form-control" |
| 196 | 308 | ng-model="ctrl.TimeTableDetailForSave.remark" |
| 197 | 309 | /> | ... | ... |
src/main/resources/static/pages/scheduleApp/module/core/ttInfoManage/detailedit/timeTableDetailManage_old.js
| ... | ... | @@ -261,6 +261,13 @@ angular.module('ScheduleApp').controller( |
| 261 | 261 | var self = this; |
| 262 | 262 | var TTInfoDetail = service.getQueryClass(); |
| 263 | 263 | |
| 264 | + // 时间正则表达式(格式hh:mm,如:06:39) | |
| 265 | + self.time_regex = /^(([0-1]\d)|(2[0-4])):[0-5]\d$/; | |
| 266 | + // 整数 | |
| 267 | + self.number_regex = /^-?\d+$/; | |
| 268 | + // 小数 | |
| 269 | + self.float_regex = /^-?(?:\d+|\d{1,3}(?:,\d{3})+)(?:\.\d+)?$/; | |
| 270 | + | |
| 264 | 271 | // 欲保存的busInfo信息,绑定 |
| 265 | 272 | self.TimeTableDetailForSave = new TTInfoDetail; |
| 266 | 273 | ... | ... |
src/main/resources/static/pages/scheduleApp/module/core/ttInfoManage/edit.html
| ... | ... | @@ -129,33 +129,33 @@ |
| 129 | 129 | |
| 130 | 130 | </div> |
| 131 | 131 | |
| 132 | - <div class="form-group"> | |
| 133 | - <label class="col-md-2 control-label">路牌数量:</label> | |
| 134 | - <div class="col-md-3"> | |
| 135 | - <input type="number" class="form-control" ng-model="ctrl.ttInfoManageForForm.lpCount" | |
| 136 | - name="lpCount" placeholder="请输入路牌数..." min="1"/> | |
| 137 | - </div> | |
| 138 | - <div class="alert alert-danger well-sm" ng-show="myForm.lpCount.$error.number"> | |
| 139 | - 必须输入数字 | |
| 140 | - </div> | |
| 141 | - <div class="alert alert-danger well-sm" ng-show="myForm.lpCount.$error.min"> | |
| 142 | - 路爬数量必须大于1 | |
| 143 | - </div> | |
| 144 | - </div> | |
| 132 | + <!--<div class="form-group">--> | |
| 133 | + <!--<label class="col-md-2 control-label">路牌数量:</label>--> | |
| 134 | + <!--<div class="col-md-3">--> | |
| 135 | + <!--<input type="number" class="form-control" ng-model="ctrl.ttInfoManageForForm.lpCount"--> | |
| 136 | + <!--name="lpCount" placeholder="请输入路牌数..." min="1"/>--> | |
| 137 | + <!--</div>--> | |
| 138 | + <!--<div class="alert alert-danger well-sm" ng-show="myForm.lpCount.$error.number">--> | |
| 139 | + <!--必须输入数字--> | |
| 140 | + <!--</div>--> | |
| 141 | + <!--<div class="alert alert-danger well-sm" ng-show="myForm.lpCount.$error.min">--> | |
| 142 | + <!--路爬数量必须大于1--> | |
| 143 | + <!--</div>--> | |
| 144 | + <!--</div>--> | |
| 145 | 145 | |
| 146 | - <div class="form-group"> | |
| 147 | - <label class="col-md-2 control-label">营运圈数:</label> | |
| 148 | - <div class="col-md-3"> | |
| 149 | - <input type="number" class="form-control" ng-model="ctrl.ttInfoManageForForm.loopCount" | |
| 150 | - name="loopCount" placeholder="请输入圈数..." min="1"/> | |
| 151 | - </div> | |
| 152 | - <div class="alert alert-danger well-sm" ng-show="myForm.loopCount.$error.number"> | |
| 153 | - 必须输入数字 | |
| 154 | - </div> | |
| 155 | - <div class="alert alert-danger well-sm" ng-show="myForm.loopCount.$error.min"> | |
| 156 | - 营运圈数必须大于1 | |
| 157 | - </div> | |
| 158 | - </div> | |
| 146 | + <!--<div class="form-group">--> | |
| 147 | + <!--<label class="col-md-2 control-label">营运圈数:</label>--> | |
| 148 | + <!--<div class="col-md-3">--> | |
| 149 | + <!--<input type="number" class="form-control" ng-model="ctrl.ttInfoManageForForm.loopCount"--> | |
| 150 | + <!--name="loopCount" placeholder="请输入圈数..." min="1"/>--> | |
| 151 | + <!--</div>--> | |
| 152 | + <!--<div class="alert alert-danger well-sm" ng-show="myForm.loopCount.$error.number">--> | |
| 153 | + <!--必须输入数字--> | |
| 154 | + <!--</div>--> | |
| 155 | + <!--<div class="alert alert-danger well-sm" ng-show="myForm.loopCount.$error.min">--> | |
| 156 | + <!--营运圈数必须大于1--> | |
| 157 | + <!--</div>--> | |
| 158 | + <!--</div>--> | |
| 159 | 159 | |
| 160 | 160 | <div class="form-group"> |
| 161 | 161 | <label class="col-md-2 control-label">常规有效日:</label> | ... | ... |
src/main/resources/static/pages/scheduleApp/module/core/ttInfoManage/form.html
| ... | ... | @@ -129,33 +129,33 @@ |
| 129 | 129 | |
| 130 | 130 | </div> |
| 131 | 131 | |
| 132 | - <div class="form-group"> | |
| 133 | - <label class="col-md-2 control-label">路牌数量:</label> | |
| 134 | - <div class="col-md-3"> | |
| 135 | - <input type="number" class="form-control" ng-model="ctrl.ttInfoManageForForm.lpCount" | |
| 136 | - name="lpCount" placeholder="请输入路牌数..." min="1"/> | |
| 137 | - </div> | |
| 138 | - <div class="alert alert-danger well-sm" ng-show="myForm.lpCount.$error.number"> | |
| 139 | - 必须输入数字 | |
| 140 | - </div> | |
| 141 | - <div class="alert alert-danger well-sm" ng-show="myForm.lpCount.$error.min"> | |
| 142 | - 路爬数量必须大于1 | |
| 143 | - </div> | |
| 144 | - </div> | |
| 132 | + <!--<div class="form-group">--> | |
| 133 | + <!--<label class="col-md-2 control-label">路牌数量:</label>--> | |
| 134 | + <!--<div class="col-md-3">--> | |
| 135 | + <!--<input type="number" class="form-control" ng-model="ctrl.ttInfoManageForForm.lpCount"--> | |
| 136 | + <!--name="lpCount" placeholder="请输入路牌数..." min="1"/>--> | |
| 137 | + <!--</div>--> | |
| 138 | + <!--<div class="alert alert-danger well-sm" ng-show="myForm.lpCount.$error.number">--> | |
| 139 | + <!--必须输入数字--> | |
| 140 | + <!--</div>--> | |
| 141 | + <!--<div class="alert alert-danger well-sm" ng-show="myForm.lpCount.$error.min">--> | |
| 142 | + <!--路爬数量必须大于1--> | |
| 143 | + <!--</div>--> | |
| 144 | + <!--</div>--> | |
| 145 | 145 | |
| 146 | - <div class="form-group"> | |
| 147 | - <label class="col-md-2 control-label">营运圈数:</label> | |
| 148 | - <div class="col-md-3"> | |
| 149 | - <input type="number" class="form-control" ng-model="ctrl.ttInfoManageForForm.loopCount" | |
| 150 | - name="loopCount" placeholder="请输入圈数..." min="1"/> | |
| 151 | - </div> | |
| 152 | - <div class="alert alert-danger well-sm" ng-show="myForm.loopCount.$error.number"> | |
| 153 | - 必须输入数字 | |
| 154 | - </div> | |
| 155 | - <div class="alert alert-danger well-sm" ng-show="myForm.loopCount.$error.min"> | |
| 156 | - 营运圈数必须大于1 | |
| 157 | - </div> | |
| 158 | - </div> | |
| 146 | + <!--<div class="form-group">--> | |
| 147 | + <!--<label class="col-md-2 control-label">营运圈数:</label>--> | |
| 148 | + <!--<div class="col-md-3">--> | |
| 149 | + <!--<input type="number" class="form-control" ng-model="ctrl.ttInfoManageForForm.loopCount"--> | |
| 150 | + <!--name="loopCount" placeholder="请输入圈数..." min="1"/>--> | |
| 151 | + <!--</div>--> | |
| 152 | + <!--<div class="alert alert-danger well-sm" ng-show="myForm.loopCount.$error.number">--> | |
| 153 | + <!--必须输入数字--> | |
| 154 | + <!--</div>--> | |
| 155 | + <!--<div class="alert alert-danger well-sm" ng-show="myForm.loopCount.$error.min">--> | |
| 156 | + <!--营运圈数必须大于1--> | |
| 157 | + <!--</div>--> | |
| 158 | + <!--</div>--> | |
| 159 | 159 | |
| 160 | 160 | <div class="form-group"> |
| 161 | 161 | <label class="col-md-2 control-label">常规有效日:</label> | ... | ... |