index.js 39.8 KB
Newer Older
fukai committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022
import Pts from '~/components/business/commonModel/Pts';
import Pub from '~/components/business/commonModel/index.js';

export default class Nitame {
	constructor() {
		this.data = {
			ptsptaList: [],
			amdRec: {
				newamt: '',
			},
			addbcd: {
				gitamecho: '',
				gitamermk: '',
			},
			nitbenl5blk: "",
			nitbenl3blk: "",
			nitapll1blk: "",
			nitbenl1blk: "",
			nitbenl2blk: "",
			nitapll2blk: "",
			nitbenl4blk: "",
			nitapll3blk: "",
			nitissl1blk: "",
			nitbenl6blk: "",
			nitrmbl2blk: "",
			nitapll4blk: "",
			nitrmbl1blk: "",
			zmqflg:"",
			ameblkModified:false,
			nitp: {
				wzhflgVsb:'',  //是否显示wzhflg栏位
				wzhflg:'',  //是否走无纸化盖章
				recget: {
					sdamod: {
						seainf: "", //  Reference		.nitp.recget.sdamod.seainf
						dadsnd: "", //  Drag  Drop Sender		.nitp.recget.sdamod.dadsnd
					},
				},
				aamp: {
					aammod: {
						addamtflg: "", //  Add. Amount		.nitp.aamp.aammod.addamtflg
					},
				},
				exptxtmodflg: "", //  Modify Expiry Condition/Event		.nitp.exptxtmodflg
				liatxtcmodflg: "", //  Modify Liability Condition/Event - Counter Undertaking		.nitp.liatxtcmodflg
				usr: {
					extkey: "", //  Responsible User		.nitp.usr.extkey
				},
				usrget: {
					sdamod: {
						seainf: "", //  		.nitp.usrget.sdamod.seainf
					},
				},
				inccormsgflg: "", //  Incoming Corporate Message Flag		.nitp.inccormsgflg
				drpreflglab1: "", //  Label for Type of Request		.nitp.drpreflglab1
				inc760: "", //  incoming lose		.nitp.inc760
				morapllab: "", //  Label set if nore than one applicant		.nitp.morapllab
				drpreflglab: "", //  Label for Type of Request		.nitp.drpreflglab
				bantyp: "", //  bank typ		.nitp.bantyp
				letterlabel: "", //  LETTERLABEL		.nitp.letterlabel
				oppbnkl: "", //  对手行代码		.nitp.oppbnkl
				drpreflg: "", //  Type of Request		.nitp.drpreflg
				aplp: {
					ptsget: {
						sdamod: {
							seainf: "", //  		.nitp.aplp.ptsget.sdamod.seainf
							dadsnd: "", //  Drag  Drop Sender		.nitp.aplp.ptsget.sdamod.dadsnd
						},
					},
				},
				benp: {
					ptsget: {
						sdamod: {
							seainf: "", //  		.nitp.benp.ptsget.sdamod.seainf
							dadsnd: "", //  Drag  Drop Sender		.nitp.benp.ptsget.sdamod.dadsnd
						},
					},
				},
				issp: {
					ptsget: {
						sdamod: {
							seainf: "", //  		.nitp.issp.ptsget.sdamod.seainf
							dadsnd: "", //  Drag  Drop Sender		.nitp.issp.ptsget.sdamod.dadsnd
						},
					},
				},
				advp: {
					ptsget: {
						sdamod: {
							seainf: "", //  		.nitp.advp.ptsget.sdamod.seainf
							dadsnd: "", //  Drag  Drop Sender		.nitp.advp.ptsget.sdamod.dadsnd
						},
					},
				},
				lettername: "", //  面函标题		.nitp.lettername
				dzbhflg: "", //  电子保函标志		.nitp.dzbhflg
				ctrp: {
					ptsget: {
						sdamod: {
							seainf: "", //  		.nitp.ctrp.ptsget.sdamod.seainf
							dadsnd: "", //  Drag  Drop Sender		.nitp.ctrp.ptsget.sdamod.dadsnd
						},
					},
				},
				aplsupflg: "", //  Suppress Applicant in 760 Seqence B Flag		.nitp.aplsupflg
				atbp: {
					ptsget: {
						sdamod: {
							seainf: "", //  		.nitp.atbp.ptsget.sdamod.seainf
							dadsnd: "", //  Drag  Drop Sender		.nitp.atbp.ptsget.sdamod.dadsnd
						},
					},
				},
				labapl: "", //  Label of apl		.nitp.labapl
				labctr: "", //  Label of CTR		.nitp.labctr
				labaplref: "", //  Label of APL's ref		.nitp.labaplref
				labctrref: "", //  Label of CTR's ref		.nitp.labctrref
				labissbak: "", //  Label of issue bank		.nitp.labissbak
				labissref: "", //  Label of issue bank's ref		.nitp.labissref
				conp: {
					ptsget: {
						sdamod: {
							seainf: "", //  		.nitp.conp.ptsget.sdamod.seainf
							dadsnd: "", //  Drag  Drop Sender		.nitp.conp.ptsget.sdamod.dadsnd
						},
					},
				},
				bdbp: {
					ptsget: {
						sdamod: {
							seainf: "", //  		.nitp.bdbp.ptsget.sdamod.seainf
							dadsnd: "", //  Drag  Drop Sender		.nitp.bdbp.ptsget.sdamod.dadsnd
						},
					},
				},
				prepermodflg: "", //  Modify Document and Presentation Instructions		.nitp.prepermodflg
				chkpreper: "", //  Allow *		.nitp.chkpreper
				chargi: {
					chkast: "", //  Allow *		.nitp.chargi.chkast
				},
				gidtxtmodflg: "", //  Modify Guarantee Text		.nitp.gidtxtmodflg
				chkgidtxt: "", //  Allow *		.nitp.chkgidtxt
				cnrp: {
					ptsget: {
						sdamod: {
							seainf: "", //  		.nitp.cnrp.ptsget.sdamod.seainf
							dadsnd: "", //  Drag  Drop Sender		.nitp.cnrp.ptsget.sdamod.dadsnd
						},
					},
				},
				aacp: {
					aacmod: {
						addamtflg: "", //  Add. Amount		.nitp.aacp.aacmod.addamtflg
					},
				},
				apcp: {
					ptsget: {
						sdamod: {
							seainf: "", //  		.nitp.apcp.ptsget.sdamod.seainf
							dadsnd: "", //  Drag  Drop Sender		.nitp.apcp.ptsget.sdamod.dadsnd
						},
					},
				},
				apcsupflg: "", //  Suppress Applicant in 760 Seqence C Flag		.nitp.apcsupflg
				ctcp: {
					ptsget: {
						sdamod: {
							seainf: "", //  		.nitp.ctcp.ptsget.sdamod.seainf
							dadsnd: "", //  Drag  Drop Sender		.nitp.ctcp.ptsget.sdamod.dadsnd
						},
					},
				},
				becp: {
					ptsget: {
						sdamod: {
							seainf: "", //  		.nitp.becp.ptsget.sdamod.seainf
							dadsnd: "", //  Drag  Drop Sender		.nitp.becp.ptsget.sdamod.dadsnd
						},
					},
				},
				avcp: {
					ptsget: {
						sdamod: {
							dadsnd: "", //  Drag  Drop Sender		.nitp.avcp.ptsget.sdamod.dadsnd
							seainf: "", //  		.nitp.avcp.ptsget.sdamod.seainf
						},
					},
				},
				prepercmodflg: "", //  Modify Document and Presentation Instructions		.nitp.prepercmodflg
				chkpreperc: "", //  Allow *		.nitp.chkpreperc
				chargic: {
					chkast: "", //  Allow *		.nitp.chargic.chkast
				},
				laborcdat: "", //  Label for Contract Date		.nitp.laborcdat
				labaddinfc: "", //  Label for Additional Info in Sequence C		.nitp.labaddinfc
				covgodsrvcmodflg: "", //  Modify Object of Contract Sequence C		.nitp.covgodsrvcmodflg
				covgodc: {
					chkast: "", //  Allow *		.nitp.covgodc.chkast
				},
				gidtxtmodflgc: "", //  Modify Guarantee Text - Local Undertaking Seq. C		.nitp.gidtxtmodflgc
				chkgidtxtc: "", //  Allow *		.nitp.chkgidtxtc
				labaddinf: "", //  Label for Additional Info		.nitp.labaddinf
				covgodsrvmodflg: "", //  Modify Object of Contract		.nitp.covgodsrvmodflg
				covgod: {
					chkast: "", //  Allow *		.nitp.covgod.chkast
				},
				aplnamtxt: "", //  申请人名称		.nitp.aplnamtxt
				indirectswiadd: "", //  InDirect Swift Add		.nitp.indirectswiadd
			},
			nidgrp: {
				amdRec: {
					newamt: "",
					purposame: "",
					cre767flg: ""
				},
				rec: {
					branchinr: '',
					inr: '',
					ver: '',
          ownref: '', // Reference		.nidgrp.rec.ownref
          ownusr: '',//业务负责人
          needcuscomopn: '', //需客户确认		.nidgrp.rec.needcuscomopn
          needcuscomame:'',
					grtjuscod: '', //被保证人社会统一信用代码/组织机构代码.nidgrp.rec.grtjuscod
					hndtyp: '', // Handling Type		.nidgrp.rec.hndtyp
					gartyp: '', // Type of Undertaking		.nidgrp.rec.gartyp
					legfrm: '', // Form of Undertaking		.nidgrp.rec.legfrm
					demand: '', // Demand Indicator		.nidgrp.rec.demand
					fingua: '', // 是否对外担保		.nidgrp.rec.fingua
					grtnam: '',
					cfaguatyp: '', // 对外担保类型		.nidgrp.rec.cfaguatyp
					cmtflg: '', // 跨境人民币保函		.nidgrp.rec.cmtflg
					giduil: '', // Language of Undertak.		.nidgrp.rec.giduil
					vrfdat: '', // 核销日期		.nidgrp.rec.vrfdat
					gtxinr: '', // Choice of Text		.nidgrp.rec.gtxinr
					fenlishi: '', // 是否分离式保函		.nidgrp.rec.fenlishi
					atxinr: '', // Choice of Text		.nidgrp.rec.atxinr
					orddat: '', // Order Date		.nidgrp.rec.orddat
					expflg: '', // Unlimited Guarantee		.nidgrp.rec.expflg
					expdat: '', // Valid until		.nidgrp.rec.expdat
					liaflg: '', // Unlimited Liability		.nidgrp.rec.liaflg
					liadat: '', // Our Liability until		.nidgrp.rec.liadat
					inudat: '', // Inure Date		.nidgrp.rec.inudat
					nam: '', // Name		.nidgrp.rec.nam
					liatxtc: '', // Liability Condition		.nidgrp.blk.liatxtc
					delori: '', // Delivery of Undertak.		.nidgrp.rec.delori
					deloritxt: '', // Delivery of Undertak.		.nidgrp.rec.deloritxt
					sndto: '', // Undertaking Send to		.nidgrp.rec.sndto
					delto: '', // Deliv. To/Collection By		.nidgrp.rec.delto
					chato: '', // Own Charges Borne by		.nidgrp.rec.chato
					credat: "", //创建日期
					opndat: "", // 开立日期
					swiftflg: "",
					opndatc: "",
					opnsta: "", //开立状态
					amesta: "", //修改状态
					cansta: "", //撤销状态
					opntrninr: "",
					orcref: '', // Contract Reference		.nidgrp.rec.orcref
					orcdat: '', // Date from Original Contract		.nidgrp.rec.orcdat
					tenclsdat: '', // Closing Date		.nidgrp.rec.tenclsdat
					orccur: '', // Contract Amount 		.nidgrp.rec.orccur
					orcamt: '0.00', // Contract Amount 		.nidgrp.rec.orcamt
					acc: '', // A/c for Adv. Paym. Guar.		.nidgrp.rec.acc
					jurlaws20: '', // Governing Law		.nidgrp.rec.jurlaws20
					jurlaw: '', // Law of Jurisdiction		.nidgrp.rec.jurlaw
					tenref: '', // Tender Reference		.nidgrp.rec.tenref
					tendat: '', // Tender Date		.nidgrp.rec.tendat
					trmdat: '', // Latest Transmiss. Date		.nidgrp.rec.trmdat
					mannum: '', // 手册号码		.nidgrp.rec.mannum
					bngcod: '', // 企业海关编码		.nidgrp.rec.bngcod
					juscod: '', // 组织机构代码		.nidgrp.rec.juscod
					cunqii: '', // 流动资金贷款利率档次		.nidgrp.rec.cunqii
					bilvvv: 0, // 上浮比率		.nidgrp.rec.bilvvv
					jurplc: '', // Place of Jurisdiction		.nidgrp.rec.jurplc
					reccnfdet: '', // Confirm. Instr.		.nidgrp.rec.reccnfdet
					cnfdet: '',
					cnfsta: '', // Confirmation Status 		.nidgrp.rec.cnfsta
					partcon: 0, // Partial Confirmation		.nidgrp.rec.partcon
					cnfdat: '', // Confirmation Date		.nidgrp.rec.cnfdat
					exptyp: '', // Expiry Type		.nidgrp.rec.exptyp
					cxmflg: '', // 是否显示查询码		.nidgrp.nidcxm.cxmflg
					quycod: '', // 查询码
					bennam: '', // 受益人名称		.nidgrp.nidcxm.benefi
					segtyp: '', // 特殊保函类型		.nidgrp.ghd.segtyp
					bustyp: '', // 业务类型		.nidgrp.ghd.bustyp
					remark: '', // 备注		.nidgrp.ghd.remark
					aplnam: '', //申请人名称.nidgrp.nid.aplnam
					idcode: '', //统一社会信用代码.nidgrp.nid.idcode
					gidtxtmodflg: '', //修改保函文本
					etyextkey: "",
					amenbr: 0,
          purpos: '',
          flwsta: "",
          fromflg:'',
          iscrotra:'',
					projectname:'',
					projnam:'',
          guatyp:'',
          countrycod:'',

          bchkeyinr: '',
          guaflg: '',
          dbyhmc:'',
          clsdat: null,
          oldref: "",
          amedat: null,
          pndclm: 0,
          stacty: "",
          orcrat: "",
          purcan: "",
          avidat: null,
          decrea: "",
          resflg: "",
          stagod: "",
          redamt: "",
          redcur: "",
          reddat: null,
          outcur: "",
          outamt: "",
          cnfflg: "",
          revflg: "",
          apprulrmb: "",
          autdat: null,
          autrnwflgc: "",
          autrnwflg: "",
          gidtxtmodflg2: "",
          covgodsrvcmodflg: "",
          deloric: "",
          deltoc: "",
          giduil2: "",
          demandc: "",
          dftnbr: 0,
          dipreiday: 0,
          covgodsrvmodflg: "",
          dipreiflg3: "",
          dipreiflg1: "",
          deloritxtc: "",
          advper: "",
          expdatfinc: null,
          advnbr: 0,
          gartypin: "",
          exptxtmodflg: "",
          gtxinr2: "",
          gtxinrc: "",
          notnbrc: 0,
          gidtxtmodflgc: "",
          expdatfin: null,
          notper: "",
          orddatc: null,
          notnbr: 0,
          prepermodflg: "",
          orcflgc: "",
          purposin: "",
          rejflg: "",
          prepercmodflg: "",
          rmbcha: "",
          rmbact: "",
          liatxtcmodflg: "",
          rnwper: "",
          rmbflg: "",
          rnwperc: "",
          rnwnbr: 0,
          rnwpertxt: "",
          rnwpers20: "",
          rnwnbrc: 0,
          secuilflg: "",
          rnwpertxtc: "",
          stdwrdc: "",
          s20staflg: "",
          transfer: "",
          stdwrduilc: "",
          transferc: "",
          inccormsgflg: "",
          accc: "",
          drpreflg: "",
          gartypc: "",
          jurlawc: "",
          jurlawtxtc: "",
          jurplcc: "",
          legfrmc: "",
          liatypc: "",
          orcamtc: "",
          orccurc: "",
          orcdatc: null,
          orcrefc: "",
          orcratc: "",
          tenclsdatc: null,
          tendatc: null,
          tenrefc: "",
          trmdatc: null,
          expplc: "",
          feecoldat: null,
          teskeyunc: "",
          decflg: "",
          rskrat: "",
          cshpct: "",
          rptref: "",
          invref: "",
          oppbnk: "",
          bidnum: "",
          bidname: "",
          othersno: "",
          rtnfilestyle: "", 
          gtxinrmw: "",
          gidtxtmodflgmw: "",
          benecreditcode: "",
          bidnamemw: "",
          amtwrdtxt: "",
          benadr: "",
          yptaplnam: "",
          yptapladr: "",
          grtadr: "",
          bchname: "",
          oldamt: "0.00",
          olddat: null,
          errmsg: "",
          dzbhdk:'',
					//海关保函用以下字段
					// zsjzts: '', //追索截止天数.nidgrp.nid.zsjzts
					// bdbdbr: '', //被担保人法定代表人.nidgrp.nid.bdbdbr
					// bdbrdz: '', //被担保人地址.nidgrp.nid.bdbrdz
					// bdbrdh: '', //被担保人联系电话.nidgrp.nid.bdbrdh
					// dbyhmc: '', //担保银行名称.nidgrp.nid.dbyhmc
					// dbyhdb: '', //担保银行法定代表人.nidgrp.nid.dbyhdb
					// dbyhdz: '', //担保银行地址.nidgrp.nid.dbyhdz
					// dbyhdh: '', //担保银行联系电话.nidgrp.nid.dbyhdh
					// sqrdbr: '', //申请人法定代表人.nidgrp.nid.sqrdbr
					// sqradr: '', //申请人地址.nidgrp.nid.sqradr
					// sqrtel: '', //申请人联系电话.nidgrp.nid.sqrtel
						 beyzd1: '', //索偿付款账号.nidgrp.nid.beyzd1
						 beyzd2: '', //备用字段2.nidgrp.nid.beyzd2
						 beyzd3: '', //备用字段3.nidgrp.nid.beyzd3
						 beyzd4: '', //备用字段4.nidgrp.nid.beyzd4
						 beyzd5: '', //备用字段4.nidgrp.nid.beyzd5
						 beyzd6: '', //备用字段4.nidgrp.nid.beyzd6
					// ptyhgq: '', //多个受益海关.nidgrp.nid.ptyhgq
					// ptyhsx: '', //已经生效的受益海关.nidgrp.nid.ptyhsx
					// bdbrmc: '', //被担保人名称.nidgrp.nid.bdbrmc
					// sqqydm: '', //申请人企业代码.nidgrp.nid.sqqydm
					// sqrnam: '', //申请人名称.nidgrp.nid.sqrnam
					// sqqyhg: '', //申请人企业海关注册编码.nidgrp.nid.sqqyhg
				},
				cbs: {
					max: {
						cur: "", //  Guarantee Amount		.nidgrp.cbs.max.cur
						amt: "", //  Guarantee Amount		.nidgrp.cbs.max.amt
					},
					opn1: {
						cur: "", //  Open Amount		.nidgrp.cbs.opn1.cur
						amt: "", //  Balance		.nidgrp.cbs.opn1.amt
					},
					opn2: {
						cur: "", //Additional Amount .nidgrp.cbs.opn2.cur
						amt: "", //Additional Amount .nidgrp.cbs.opn2.amt
					},
					max2: {
						cur: "", //  Currency		.nidgrp.cbs.max2.cur
						amt: "", //  Additional Amout  .nidgrp.cbs.max2.cur
					},
					cnf: {
						cur: "", //  Currency		.nidgrp.cbs.cnf.cur
						amt: "", //  Additional Amout  .nidgrp.cbs.cnf.amt
					},
					maxint: {
						cur: "", //  Currency		.nidgrp.cbs.maxint.cur
						amt: "", //  Additional Amout  .nidgrp.cbs.maxint.amt
					},
					oldmax: {
						cur: "",
						amt: "",
					},
				},
				blk: {
					gartyptxtin: "", //  Specification of Type of Undertaking - Counter Undertaking		.nidgrp.blk.gartyptxtin
					apprul: "", //  Applicable Rules		.nidgrp.blk.apprul
					apprultxt: "", //  Applicable Rules		.nidgrp.blk.apprultxt
					exptxt: "", //  Expiry Condition/ Evt.		.nidgrp.blk.exptxt
					atxexptxt: "", //  Expiry Condition/ Evt.		.nidgrp.blk.atxexptxt
					liatxtc: "", //  Liability Condition		.nidgrp.blk.liatxtc
					atxliatxtc: "", //  Liability Condition		.nidgrp.blk.atxliatxtc
					deltoadr: "", //  Delivery to Address		.nidgrp.blk.deltoadr
					preper: "", //  Presentation Instr.		.nidgrp.blk.preper
					atxpreper: "", //  Presentation Instr.		.nidgrp.blk.atxpreper
					trfcond: "", //  Transfer Conditions		.nidgrp.blk.trfcond
					feetxt: "", //  Additional Details to Code for Charges		.nidgrp.blk.feetxt
					gidtxt: "", //  Guarantee Text		.nidgrp.blk.gidtxt
					gtxgidtxt: "", //  Guarantee Text with Variables		.nidgrp.blk.gtxgidtxt
					gartyptxtc: "", //  Undertaking Type 		.nidgrp.blk.gartyptxtc
					apprulc: "", //  Applicable Rules		.nidgrp.blk.apprulc
					apprultxtc: "", //  Applicable Rules		.nidgrp.blk.apprultxtc
					deltoadrc: "", //  Delivery to Address		.nidgrp.blk.deltoadrc
					preperc: "", //  Presentation Instr. 		.nidgrp.blk.preperc
					atxpreperc: "", //  Presentation Instr. 		.nidgrp.blk.atxpreperc
					trfcondc: "", //  Transfer Conditions		.nidgrp.blk.trfcondc
					feetxtc: "", //  Additional Details to Code for Charges		.nidgrp.blk.feetxtc
					covgodsrvc: "", //  Object of Contract - Local Undertaking Seq. C		.nidgrp.blk.covgodsrvc
					orcplcc: "", //  Original Contract Place - Local Undertaking Seq. C		.nidgrp.blk.orcplcc
					addinfc: "", //  Additional Info - Local Undertaking Seq. C		.nidgrp.blk.addinfc
					atxcovgodsrvc: "", //  Underly. Transact. Det.		.nidgrp.blk.atxcovgodsrvc
					gidtxtc: "", //  Guarantee Text  local undertaking		.nidgrp.blk.gidtxtc
					gtxgidtxtc: "", //  Guarantee Text with Variables - Counter Undertaking		.nidgrp.blk.gtxgidtxtc
					addamtcovc: "", //  Covered		.nidgrp.blk.addamtcovc
					covgodsrv: "", //  Object of Contract		.nidgrp.blk.covgodsrv
					orcplc: "", //  Original Contract Place		.nidgrp.blk.orcplc
					addinf: "", //  Additional Info		.nidgrp.blk.addinf
					atxcovgodsrv: "", //  Underly. Transact. Det.		.nidgrp.blk.atxcovgodsrv
					gidtxtame: "", //  Amendments so Far		.nidgrp.blk.gidtxtame
					addamtcovs20: "" //Additional Amount .nidgrp.blk.addamtcovs20
				},
				apl: {
					pts: new Pts().data,
					namelc: "", //  名称		.nidgrp.apl.namelc
					adrelc: "", //  地址		.nidgrp.apl.adrelc
					dbfadrblkcn: "", //  Chinese address		.nidgrp.apl.dbfadrblkcn
				},
				ben: {
					pts: new Pts().data,
					namelc: "", //  名称		.nidgrp.ben.namelc
					adrelc: "", //  地址		.nidgrp.ben.adrelc
					dbfadrblkcn: "", //  Chinese address		.nidgrp.ben.dbfadrblkcn
				},
				iss: {
					pts: new Pts().data,
					namelc: "", //  名称		.nidgrp.iss.namelc
					adrelc: "", //  地址		.nidgrp.iss.adrelc
					dbfadrblkcn: "", //  Chinese address		.nidgrp.iss.dbfadrblkcn
				},
				adv: {
					pts: new Pts().data,
					namelc: "", //  名称		.nidgrp.adv.namelc
					adrelc: "", //  地址		.nidgrp.adv.adrelc
					dbfadrblkcn: "", //  Chinese address		.nidgrp.adv.dbfadrblkcn
				},
				ctr: {
					pts: new Pts().data,
					namelc: "", //  名称		.nidgrp.ctr.namelc
					adrelc: "", //  地址		.nidgrp.ctr.adrelc
					dbfadrblkcn: "", //  Chinese address		.nidgrp.ctr.dbfadrblkcn
				},
				atb: {
					pts: new Pts().data,
					namelc: "", //  名称		.nidgrp.atb.namelc
					adrelc: "", //  地址		.nidgrp.atb.adrelc
					dbfadrblkcn: "", //  Chinese address		.nidgrp.atb.dbfadrblkcn
				},
				con: {
					pts: new Pts().data,
					namelc: "", //  名称		.nidgrp.con.namelc
					adrelc: "", //  地址		.nidgrp.con.adrelc
					dbfadrblkcn: "", //  Chinese address		.nidgrp.con.dbfadrblkcn
				},
				bdb: {
					pts: new Pts().data,
					namelc: "", //  名称		.nidgrp.bdb.namelc
					adrelc: "", //  地址		.nidgrp.bdb.adrelc
					dbfadrblkcn: "", //  Chinese address		.nidgrp.bdb.dbfadrblkcn
				},
				cnr: {
					pts: new Pts().data,
					namelc: "", //  名称		.nidgrp.cnr.namelc
					adrelc: "", //  地址		.nidgrp.cnr.adrelc
					dbfadrblkcn: "", //  Chinese address		.nidgrp.cnr.dbfadrblkcn
				},
				apc: {
					pts: new Pts().data,
					namelc: "", //  名称		.nidgrp.apc.namelc
					adrelc: "", //  地址		.nidgrp.apc.adrelc
					dbfadrblkcn: "", //  Chinese address		.nidgrp.apc.dbfadrblkcn
				},
				ctc: {
					pts: new Pts().data,
					namelc: "", //  名称		.nidgrp.ctc.namelc
					adrelc: "", //  地址		.nidgrp.ctc.adrelc
					dbfadrblkcn: "", //  Chinese address		.nidgrp.ctc.dbfadrblkcn
				},
				bec: {
					pts: new Pts().data,
					namelc: "", //  名称		.nidgrp.bec.namelc
					adrelc: "", //  地址		.nidgrp.bec.adrelc
					dbfadrblkcn: "", //  Chinese address		.nidgrp.bec.dbfadrblkcn
				},
				avc: {
					pts: new Pts().data,
				},
			},
			ncdgrp: {
				rec: {
					inr: ''
				}
			},
			nitamep: {
				ramrollab: "", //  Label for RAMROL		.nitamep.ramrollab
				recget: {
					sdamod: {
						seainf: "", //  Reference		.nitamep.recget.sdamod.seainf
						dadsnd: "", //  Drag  Drop Sender		.nitamep.recget.sdamod.dadsnd
					},
				},
				ametxtflg: "", //  Amendment :77C: modified		.nitamep.ametxtflg
				ametxt: "", //  Amendment :77C:		.nitamep.ametxt
				amebut: {
					chkast: "", //  Allow *		.nitamep.amebut.chkast
				},
				abrflg: "", //  agreement of bene. required		.nitamep.abrflg
				ameaccflg: "", //  Send Amendment Acceptance Response		.nitamep.ameaccflg
				prtflg: "", //  choose full text		.nitamep.prtflg
				clsclmflg: "", //  Close picked up claim now		.nitamep.clsclmflg
				ncdownref: "", //  NCDOWNREF		.nitamep.ncdownref
				crereg: "", //  Create Autoregistration for		.nitamep.crereg
				ramrol: "", //  Request of Amendment send to		.nitamep.ramrol
				ametxtc: "", //  Amendments		.nitamep.ametxtc
				ametxtflgc: "", //  Amendment :77C: modified		.nitamep.ametxtflgc
				amebutc: {
					chkast: "", //  Allow *		.nitamep.amebutc.chkast
				},
				oldmaccur: "", //  Old Local Undertaking		.nitamep.oldmaccur
				oldmacamt: "", //  Old Local Undertaking		.nitamep.oldmacamt
				orddat: "", //  Order From		.nitamep.orddat
				amenbr: 0, //  Actual Amendment No		.nitamep.amenbr
				expnottxt: "", //  text 'unlimited' / old expiry		.nitamep.expnottxt
				limnottxt: "", //  text 'unlimited'		.nitamep.limnottxt
				expnewtxt: "", //  text 'unlimited' / new expiry		.nitamep.expnewtxt
				limnewtxt: "", //  text 'unlimited' / new liability		.nitamep.limnewtxt
				cre767flg: "", //  Create Amendment Message		.nitamep.cre767flg
				amemsg: "", //  银关保函操作		.nitamep.amemsg
				plateflg: "", //  plateflg		.nitamep.plateflg
				mstitle: "", //  面函标题		.nitamep.mstitle
				amenumjmg: "", //  变�'次数		.nitamep.amenumjmg
				newliatxt:"",
			},
			oldnidgrp: {
				cbs: {
					max: {
						cur: "", //  Old Guarantee Amt.		.oldnidgrp.cbs.max.cur
						amt: "", //  Balance		.oldnidgrp.cbs.max.amt
					},
					max2: {
						cur: "",
						amt: "",
					},
					cnf: {
						cur: "",
						amt: "",
					},
					opn1: {
						cur: "", //  Open Amount		.nidgrp.cbs.opn1.cur
						amt: "", //  Balance		.nidgrp.cbs.opn1.amt
					},
				},
				rec: {
					liatypc: "", //  Old Liability Type		.oldnidgrp.rec.liatypc
					branchinr: '',
					inr: '',
					ver: '',
          ownref: '', // Reference		.nidgrp.rec.ownref
          ownusr: '',//业务负责人
					needcuscomopn: '', //需客户确认		.nidgrp.rec.needcuscomopn
					grtjuscod: '', //被保证人社会统一信用代码/组织机构代码.nidgrp.rec.grtjuscod
					hndtyp: '', // Handling Type		.nidgrp.rec.hndtyp
					gartyp: '', // Type of Undertaking		.nidgrp.rec.gartyp
					legfrm: '', // Form of Undertaking		.nidgrp.rec.legfrm
					demand: '', // Demand Indicator		.nidgrp.rec.demand
					fingua: '', // 是否对外担保		.nidgrp.rec.fingua
					fromflg:'',
					grtnam:'',
					cfaguatyp: '', // 对外担保类型		.nidgrp.rec.cfaguatyp
					cmtflg: '', // 跨境人民币保函		.nidgrp.rec.cmtflg
					giduil: '', // Language of Undertak.		.nidgrp.rec.giduil
					vrfdat: '', // 核销日期		.nidgrp.rec.vrfdat
					gtxinr: '', // Choice of Text		.nidgrp.rec.gtxinr
					fenlishi: '', // 是否分离式保函		.nidgrp.rec.fenlishi
					atxinr: '', // Choice of Text		.nidgrp.rec.atxinr
					orddat: '', // Order Date		.nidgrp.rec.orddat
					expflg: '', // Unlimited Guarantee		.nidgrp.rec.expflg
					expdat: '', // Valid until		.nidgrp.rec.expdat
					liaflg: '', // Unlimited Liability		.nidgrp.rec.liaflg
					liadat: '', // Our Liability until		.nidgrp.rec.liadat
					inudat: '', // Inure Date		.nidgrp.rec.inudat
					swiftflg: "",
					nam: '', // Name		.nidgrp.rec.nam
					liatxtc: '', // Liability Condition		.nidgrp.blk.liatxtc
					delori: '', // Delivery of Undertak.		.nidgrp.rec.delori
					deloritxt: '', // Delivery of Undertak.		.nidgrp.rec.deloritxt
					sndto: '', // Undertaking Send to		.nidgrp.rec.sndto
					delto: '', // Deliv. To/Collection By		.nidgrp.rec.delto
					chato: '', // Own Charges Borne by		.nidgrp.rec.chato
					credat: "", //创建日期
					opndat: "", // 开立日期
					opndatc: "",
					opnsta: "", //开立状态
					amesta: "", //修改状态
					cansta: "", //撤销状态
					opntrninr: "",
					orcref: '', // Contract Reference		.nidgrp.rec.orcref
					orcdat: '', // Date from Original Contract		.nidgrp.rec.orcdat
					tenclsdat: '', // Closing Date		.nidgrp.rec.tenclsdat
					orccur: '', // Contract Amount 		.nidgrp.rec.orccur
					orcamt: '0.00', // Contract Amount 		.nidgrp.rec.orcamt
					acc: '', // A/c for Adv. Paym. Guar.		.nidgrp.rec.acc
					jurlaws20: '', // Governing Law		.nidgrp.rec.jurlaws20
					jurlaw: '', // Law of Jurisdiction		.nidgrp.rec.jurlaw
					tenref: '', // Tender Reference		.nidgrp.rec.tenref
					tendat: '', // Tender Date		.nidgrp.rec.tendat
					trmdat: '', // Latest Transmiss. Date		.nidgrp.rec.trmdat
					mannum: '', // 手册号码		.nidgrp.rec.mannum
					bngcod: '', // 企业海关编码		.nidgrp.rec.bngcod
					juscod: '', // 组织机构代码		.nidgrp.rec.juscod
					cunqii: '', // 流动资金贷款利率档次		.nidgrp.rec.cunqii
					bilvvv: 0, // 上浮比率		.nidgrp.rec.bilvvv
					jurplc: '', // Place of Jurisdiction		.nidgrp.rec.jurplc
					reccnfdet: '', // Confirm. Instr.		.nidgrp.rec.reccnfdet
					cnfdet: '',
					cnfsta: '', // Confirmation Status 		.nidgrp.rec.cnfsta
					partcon: 0, // Partial Confirmation		.nidgrp.rec.partcon
					cnfdat: '', // Confirmation Date		.nidgrp.rec.cnfdat
					exptyp: '', // Expiry Type		.nidgrp.rec.exptyp
					cxmflg: '', // 是否显示查询码		.nidgrp.nidcxm.cxmflg
					bennam: '', // 受益人名称		.nidgrp.nidcxm.benefi
					segtyp: '', // 特殊保函类型		.nidgrp.ghd.segtyp
					bustyp: '', // 业务类型		.nidgrp.ghd.bustyp
					remark: '', // 备注		.nidgrp.ghd.remark
					aplnam: '', //申请人名称.nidgrp.nid.aplnam
					idcode: '', //统一社会信用代码.nidgrp.nid.idcode
					gidtxtmodflg: '', //修改保函文本
					etyextkey: "",
					amenbr: 0,
          purpos: '',
          flwsta: "",
					projectname:'',
					projnam:'',
          guatyp:'',
          countrycod:'',
          iscrotra:'',
					quycod:'',
					othersno: '',
						beyzd1: '', //索偿付款账号.nidgrp.nid.beyzd1
						beyzd2: '', //备用字段2.nidgrp.nid.beyzd2
						beyzd3: '', //备用字段3.nidgrp.nid.beyzd3
						beyzd4: '', //备用字段4.nidgrp.nid.beyzd4
						beyzd5: '', //备用字段4.nidgrp.nid.beyzd5
						beyzd6: '', //备用字段4.nidgrp.nid.beyzd6
				},
				blk: {
					gartyptxtin: "", //  Specification of Type of Undertaking - Counter Undertaking		.nidgrp.blk.gartyptxtin
					apprul: "", //  Applicable Rules		.nidgrp.blk.apprul
					apprultxt: "", //  Applicable Rules		.nidgrp.blk.apprultxt
					exptxt: "", //  Expiry Condition/ Evt.		.nidgrp.blk.exptxt
					atxexptxt: "", //  Expiry Condition/ Evt.		.nidgrp.blk.atxexptxt
					liatxtc: "", //  Liability Condition		.nidgrp.blk.liatxtc
					atxliatxtc: "", //  Liability Condition		.nidgrp.blk.atxliatxtc
					deltoadr: "", //  Delivery to Address		.nidgrp.blk.deltoadr
					preper: "", //  Presentation Instr.		.nidgrp.blk.preper
					atxpreper: "", //  Presentation Instr.		.nidgrp.blk.atxpreper
					trfcond: "", //  Transfer Conditions		.nidgrp.blk.trfcond
					feetxt: "", //  Additional Details to Code for Charges		.nidgrp.blk.feetxt
					gidtxt: "", //  Guarantee Text		.nidgrp.blk.gidtxt
					gtxgidtxt: "", //  Guarantee Text with Variables		.nidgrp.blk.gtxgidtxt
					gartyptxtc: "", //  Undertaking Type 		.nidgrp.blk.gartyptxtc
					apprulc: "", //  Applicable Rules		.nidgrp.blk.apprulc
					apprultxtc: "", //  Applicable Rules		.nidgrp.blk.apprultxtc
					deltoadrc: "", //  Delivery to Address		.nidgrp.blk.deltoadrc
					preperc: "", //  Presentation Instr. 		.nidgrp.blk.preperc
					atxpreperc: "", //  Presentation Instr. 		.nidgrp.blk.atxpreperc
					trfcondc: "", //  Transfer Conditions		.nidgrp.blk.trfcondc
					feetxtc: "", //  Additional Details to Code for Charges		.nidgrp.blk.feetxtc
					covgodsrvc: "", //  Object of Contract - Local Undertaking Seq. C		.nidgrp.blk.covgodsrvc
					orcplcc: "", //  Original Contract Place - Local Undertaking Seq. C		.nidgrp.blk.orcplcc
					addinfc: "", //  Additional Info - Local Undertaking Seq. C		.nidgrp.blk.addinfc
					atxcovgodsrvc: "", //  Underly. Transact. Det.		.nidgrp.blk.atxcovgodsrvc
					gidtxtc: "", //  Guarantee Text  local undertaking		.nidgrp.blk.gidtxtc
					gtxgidtxtc: "", //  Guarantee Text with Variables - Counter Undertaking		.nidgrp.blk.gtxgidtxtc
					addamtcovc: "", //  Covered		.nidgrp.blk.addamtcovc
					covgodsrv: "", //  Object of Contract		.nidgrp.blk.covgodsrv
					orcplc: "", //  Original Contract Place		.nidgrp.blk.orcplc
					addinf: "", //  Additional Info		.nidgrp.blk.addinf
					atxcovgodsrv: "", //  Underly. Transact. Det.		.nidgrp.blk.atxcovgodsrv
					gidtxtame: "", //  Amendments so Far		.nidgrp.blk.gidtxtame
					addamtcovs20: "" //Additional Amount .nidgrp.blk.addamtcovs20
				},
				maxint: {
					cur: "", //  Currency		.nidgrp.cbs.maxint.cur
					amt: "", //  Additional Amout  .nidgrp.cbs.maxint.amt
				},
				apl: {
					pts: new Pts().data,
					namelc: "", //  名称		.nidgrp.apl.namelc
					adrelc: "", //  地址		.nidgrp.apl.adrelc
					dbfadrblkcn: "", //  Chinese address		.nidgrp.apl.dbfadrblkcn
				},
				ben: {
					pts: new Pts().data,
					namelc: "", //  名称		.nidgrp.ben.namelc
					adrelc: "", //  地址		.nidgrp.ben.adrelc
					dbfadrblkcn: "", //  Chinese address		.nidgrp.ben.dbfadrblkcn
				},
				iss: {
					pts: new Pts().data,
					namelc: "", //  名称		.nidgrp.iss.namelc
					adrelc: "", //  地址		.nidgrp.iss.adrelc
					dbfadrblkcn: "", //  Chinese address		.nidgrp.iss.dbfadrblkcn
				},
				adv: {
					pts: new Pts().data,
					namelc: "", //  名称		.nidgrp.adv.namelc
					adrelc: "", //  地址		.nidgrp.adv.adrelc
					dbfadrblkcn: "", //  Chinese address		.nidgrp.adv.dbfadrblkcn
				},
				ctr: {
					pts: new Pts().data,
					namelc: "", //  名称		.nidgrp.ctr.namelc
					adrelc: "", //  地址		.nidgrp.ctr.adrelc
					dbfadrblkcn: "", //  Chinese address		.nidgrp.ctr.dbfadrblkcn
				},
				atb: {
					pts: new Pts().data,
					namelc: "", //  名称		.nidgrp.atb.namelc
					adrelc: "", //  地址		.nidgrp.atb.adrelc
					dbfadrblkcn: "", //  Chinese address		.nidgrp.atb.dbfadrblkcn
				},
				con: {
					pts: new Pts().data,
					namelc: "", //  名称		.nidgrp.con.namelc
					adrelc: "", //  地址		.nidgrp.con.adrelc
					dbfadrblkcn: "", //  Chinese address		.nidgrp.con.dbfadrblkcn
				},
				bdb: {
					pts: new Pts().data,
					namelc: "", //  名称		.nidgrp.bdb.namelc
					adrelc: "", //  地址		.nidgrp.bdb.adrelc
					dbfadrblkcn: "", //  Chinese address		.nidgrp.bdb.dbfadrblkcn
				},
				cnr: {
					pts: new Pts().data,
					namelc: "", //  名称		.nidgrp.cnr.namelc
					adrelc: "", //  地址		.nidgrp.cnr.adrelc
					dbfadrblkcn: "", //  Chinese address		.nidgrp.cnr.dbfadrblkcn
				},
				apc: {
					pts: new Pts().data,
					namelc: "", //  名称		.nidgrp.apc.namelc
					adrelc: "", //  地址		.nidgrp.apc.adrelc
					dbfadrblkcn: "", //  Chinese address		.nidgrp.apc.dbfadrblkcn
				},
				ctc: {
					pts: new Pts().data,
					namelc: "", //  名称		.nidgrp.ctc.namelc
					adrelc: "", //  地址		.nidgrp.ctc.adrelc
					dbfadrblkcn: "", //  Chinese address		.nidgrp.ctc.dbfadrblkcn
				},
				bec: {
					pts: new Pts().data,
					namelc: "", //  名称		.nidgrp.bec.namelc
					adrelc: "", //  地址		.nidgrp.bec.adrelc
					dbfadrblkcn: "", //  Chinese address		.nidgrp.bec.dbfadrblkcn
				},
				avc: {
					pts: new Pts().data,
				},
			},
			addbcb: {
				gitamecho: '',
        gitamermk: '',
        bccls4: '',//以下两个选项二选一
			},
			swiadd: {
				amenbr: 0, //修改次数
				ameamt: 0, // 修改金额
				newamt: 0, // 保函金额
				newexpdat: "", // 新到期日
				newcur: "", // 保函币种
				orddat: "", // 申请修改日期
				amedat: "", // 修改日期
				amecur: "", //修改金额币种
				amemsgdonflg: "", //是否生成通知报文
				addamtflg: "", //Ameps20中使用了该标志
				newexpflg: "", // 新的到期日期无限制标志
				newliaflg: "", // 新的责任组到期日期无限制标志
				exptyp: "", // 到期类型
				ameblk: "", //修改内容文本
				amestatxt: "", // 记录上一次简式修改内容
				newliadat:"",
			},
			// cfagit: {
			// 	cfatyp: "A",
			// 	cfaflg: null,
			// 	basflg: null, // 签约信息		.cfagit.basflg
			// 	dclflg: null, // ?'?任余额信息		.cfagit.dclflg
			// 	vrfflg: null, // 履约信息		.cfagit.vrfflg
			// 	ownextkey: null, // 地区机构号		.cfagit.ownextkey
			// 	recgrp: {
			// 		bas: {
			// 			exguarancode: '', // 对外担保编号		.cfagit.recgrp.bas.exguarancode
			// 			actiontype: '', // 操作类型		.cfagit.recgrp.bas.actiontype
			// 			guarantorcode: '', // 担保人代码		.cfagit.recgrp.bas.guarantorcode
			// 			guarancurr: '', // 保函金额		.cfagit.recgrp.bas.guarancurr
			// 			guaranamount: '', // 保函金额		.cfagit.recgrp.bas.guaranamount
			// 			guarantype: '', // 担保类型		.cfagit.recgrp.bas.guarantype
			// 			maindebtcurr: '', // 主债务金额		.cfagit.recgrp.bas.maindebtcurr
			// 			maindebtamount: '', // 主债务金额		.cfagit.recgrp.bas.maindebtamount
			// 			bentype: '', // 受益人类型		.cfagit.recgrp.bas.bentype
			// 			bencode: '', // 受益人代码		.cfagit.recgrp.bas.bencode
			// 			bename: '', // 受益人中文名称		.cfagit.recgrp.bas.bename
			// 			benamen: '', // 受益人英文名称		.cfagit.recgrp.bas.benamen
			// 			guedtype: '', // 被担保人类型		.cfagit.recgrp.bas.guedtype
			// 			guedindustrycode: '', // 被担保人所属行业		.cfagit.recgrp.bas.guedindustrycode
			// 			guedcouncode: '', // 被担保人国别/地区代码		.cfagit.recgrp.bas.guedcouncode
			// 			guappcode: '', // 担保申请人代码		.cfagit.recgrp.bas.guappcode
			// 			guappname: '', // 担保申请人中文名称		.cfagit.recgrp.bas.guappname
			// 			guappnamen: '', // 担保申请人英文名称		.cfagit.recgrp.bas.guappnamen
			// 			actiondesc: '', // 删除原因		.cfagit.recgrp.bas.actiondesc
			// 			bencountrycode: '', // 受益人国别/地区		.cfagit.recgrp.bas.bencountrycode
			// 			contractdate: '', // 签约日期		.cfagit.recgrp.bas.contractdate
			// 			maturity: '', // 到期日		.cfagit.recgrp.bas.maturity
			// 			maindebtmanner: '', // 发行/上市方式		.cfagit.recgrp.bas.maindebtmanner
			// 			guedcode: '', // 被担保人代码		.cfagit.recgrp.bas.guedcode
			// 			guedname: '', // 被担保人中文名称		.cfagit.recgrp.bas.guedname
			// 			guednamen: '', // 被担保人英文名称		.cfagit.recgrp.bas.guednamen
			// 			maindebtcondate: '', // 主债务签约日期		.cfagit.recgrp.bas.maindebtcondate
			// 			intrat: '', // 借款利率(%)		.cfagit.recgrp.bas.intrat
			// 			guedparecompnamen: '', // 被担保人境内母公司英文名称		.cfagit.recgrp.bas.guedparecompnamen
			// 			cgyn: '', // 是否有反担保人		.cfagit.recgrp.bas.cgyn
			// 			cgcouncode: '', // 反担保人国别/地区代码		.cfagit.recgrp.bas.cgcouncode
			// 			cgcode: '', // 反担保人国别/地区代码		.cfagit.recgrp.bas.cgcode
			// 			maindebtmaturity: '', // 主债务到期日		.cfagit.recgrp.bas.maindebtmaturity
			// 			cgname: '', // 反担保人中文名称		.cfagit.recgrp.bas.cgname
			// 			cgnamen: '', // 反担保人英文名称		.cfagit.recgrp.bas.cgnamen
			// 			thyn: '', // 是否调回境内		.cfagit.recgrp.bas.thyn
			// 			thje: '', // 资金调回金额		.cfagit.recgrp.bas.thje
			// 			jwyn: '', // 是否与境外投资相关		.cfagit.recgrp.bas.jwyn
			// 			issuecountrycode: '', // 发行/上市国家与地区		.cfagit.recgrp.bas.issuecountrycode
			// 			deloric: '', // Delivery of Undertak.		.gidgrp.rec.deloric
			// 			deltoc: '', // Deli. To/Collection By		.gidgrp.rec.deltoc
			// 			orcdatc: '', // Date from Original Contract - Local Undertaking Seq. C		.gidgrp.rec.orcdatc
			// 			acp: '', // 确认		.cfagit.recp.pubp.acp
			// 			founds1: '', // 境外?'接投资		.cfagit.recp.pubp.founds1
			// 			founds2: '', // 偿还境外债务		.cfagit.recp.pubp.founds2
			// 			founds3: '', // 补充营运或流动性资金		.cfagit.recp.pubp.founds3
			// 			founds4: '', // 其他境外使用		.cfagit.recp.pubp.founds4
			// 			founds5: '', // 以?'接投资形式回流		.cfagit.recp.pubp.founds5
			// 			founds6: '', // 以外债形式回流		.cfagit.recp.pubp.founds6
			// 			founds7: '', // 以?'?易形式回流		.cfagit.recp.pubp.founds7
			// 			founds8: '', // 以其他形式回流		.cfagit.recp.pubp.founds8
			// 			guedparecompcode: '', // 被担保人境内母公司代码		.cfagit.recp.pubp.cousel1.guedparecompcode
			// 		},
			// 		dcl: [{
			// 			exguarancode: "",
			// 			actiontype: "",
			// 			wabachandate: "",
			// 			basere: "",
			// 			remark: "",
			// 			actiondesc: "",
			// 			acp: "",
			// 		}],
			// 		vrf: [{}],
			// 	},
			// 	recp: {
			// 		pubp: {
			// 			cousel1: {},
			// 		},
			// 		dclp: [{
			// 			exguarancode: "",
			// 			actiontype: "",
			// 			wabachandate: "",
			// 			basere: "",
			// 			remark: "",
			// 			actiondesc: "",
			// 			acp: "",
			// 		}],
			// 	},
			// },
			cnybop: {
				cnyflg: '',
				traflg: '',
				outflg: '',
				libflg: '',
				vouflg: '',
				svouchername: '',
				sdebtorname: '',
				sbankname: '',
				svoucheename: '',
				saddwordvou: '',
				sreversename: '',
				cnyvou: {
					spk: "", //  业务主键      .cnybop.cnyvou.spk
					sbankorgcode: "", //  报送银行机构代码      .cnybop.cnyvou.sbankorgcode
					cvouchdirection: "", //  担保方向      .cnybop.cnyvou.cvouchdirection
					stransattr: "", //  业务属性      .cnybop.cnyvou.stransattr
					svoucherswiftbic: "", //  担保人机构代码       .cnybop.cnyvou.svoucherswiftbic
					svouchercountrycode: "", //  担保人国别     .cnybop.cnyvou.svouchercountrycode
					svoucheeorgcode: "", //  担保权人机构代码      .cnybop.cnyvou.svoucheeorgcode
					svoucheecountrycode: "", //  担保权人国别    .cnybop.cnyvou.svoucheecountrycode
					sdebtororgcode: "", //  债务人机构代码       .cnybop.cnyvou.sdebtororgcode
					sdebtorcountrycode: "", //  债务人国别     .cnybop.cnyvou.sdebtorcountrycode
					sreverseorgcode: "", //  反担保人机构代码      .cnybop.cnyvou.sreverseorgcode
					sreversecountrycode: "", //  反担保人国别    .cnybop.cnyvou.sreversecountrycode
					sbanktrano: "", //  银行业务编号    .cnybop.cnyvou.sbanktrano
					cvouchtype: "", //  担保种类      .cnybop.cnyvou.cvouchtype
					cvouchmode: "", //  反担保方式     .cnybop.cnyvou.cvouchmode
					dvouchefficientdate: "", //  担保生效日期    .cnybop.cnyvou.dvouchefficientdate
					dvouchenddate: "", //  担保到期日期    .cnybop.cnyvou.dvouchenddate
					scontractno: "", //  担保合同编号    .cnybop.cnyvou.scontractno
					svouchno: "", //  担保登记编号    .cnybop.cnyvou.svouchno
					currencycode: "", //  担保币种      .cnybop.cnyvou.currencycode
					fvouchamt: "", //  原币种金额     .cnybop.cnyvou.fvouchamt
				}
			},
			setmod: new Pub().data.Setmod,
			mtabut: new Pub().data.Mtabut,
			trnmod: new Pub().data.Trnmod,
			liaall: new Pub().data.Liaall,
			limmod: new Pub().data.Limmod,
			liaccv: new Pub().data.Liaccv,
			docpan: new Pub().data.Docpan,
			doctre: new Pub().data.Doctre,
			umdmod: new Pub().data.Umdmod,
			trndia: new Pub().data.Trndia,
			rmbbop: new Pub().data.Rmbbop,
			cfagit: new Pub().data.Cfagit,
		}
	}
}