index.js 4.16 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
export default class Dbdame{
    constructor () {
        this.data = {
						recp:{
							vrfpp:{
								roptnam:"",			//  RoptNam		.recp.vrfpp.roptnam
								tmpref:"",			//  临时申报编号		.recp.vrfpp.tmpref
								acp:"",			//  确认		.recp.vrfpp.acp
							},
							baspp:{
								cusnam:"",			//  		.recp.baspp.cusnam
								cornam:"",			//  		.recp.baspp.cornam
								corpnam:"",			//  		.recp.baspp.corpnam
								roptnam:"",			//  RoptNam		.recp.baspp.roptnam
								exratelab:"",			//  �'�汇/结汇汇率		.recp.baspp.exratelab
								lcyamtlab:"",			//  �'�汇/结汇金额		.recp.baspp.lcyamtlab
								acp:"",			//  确认		.recp.baspp.acp
								tmprefnew:"",			//  TMPREFLABEL		.recp.baspp.tmprefnew
							},
						},
						recgrp:{
							vrf:{
								ownextkey:"",			//  地区机构号		.recgrp.vrf.ownextkey
								actiontype:"",			//  操作类型		.recgrp.vrf.actiontype
								actiondesc:"",			//  修改/删除原因		.recgrp.vrf.actiondesc
								rptno:"",			//  RoptNam		.recgrp.vrf.rptno
								crtuser:"",			//  填报人		.recgrp.vrf.crtuser
								inptelc:"",			//  填报人电话		.recgrp.vrf.inptelc
								rptdate:"",			//  申报日期		.recgrp.vrf.rptdate
								payattr:"",			//  境内收汇类型		.recgrp.vrf.payattr
								paytype:"",			//  收款性质		.recgrp.vrf.paytype
								tc1amt:"",			//  交易编码1		.recgrp.vrf.tc1amt
								txrem:"",			//  交易附言1		.recgrp.vrf.txrem
								tc2amt:"",			//  交易编码2		.recgrp.vrf.tc2amt
								tx2rem:"",			//  交易附言2		.recgrp.vrf.tx2rem
								chkamt:"",			//  收汇总金额中用于出口核销的金额		.recgrp.vrf.chkamt
								isref:"",			//  是否出口核销项下收汇		.recgrp.vrf.isref
								txcode:"",			//  交易编码1		.recgrp.vrf.txcode
								txcode2:"",			//  交易编码2		.recgrp.vrf.txcode2
							},
							bas:{
								tmpref:"",			//  �'时申报流�'号		.recgrp.bas.tmpref
								ownextkey:"",			//  地区机构号		.recgrp.bas.ownextkey
								actiontype:"",			//  操作类型		.recgrp.bas.actiontype
								rptno:"",			//  申报号码		.recgrp.bas.rptno
								idcode:"",			//  身份证件号码		.recgrp.bas.idcode
								lcyacc:"",			//  人民币帐号/银行卡号		.recgrp.bas.lcyacc
								fcyamt:"",			//  现汇金额		.recgrp.bas.fcyamt
								fcyacc:"",			//  外汇帐号/银行卡号		.recgrp.bas.fcyacc
								othamt:"",			//  其它金额		.recgrp.bas.othamt
								othacc:"",			//  其它帐号/银行卡号		.recgrp.bas.othacc
								methods:"",			//  结算方式		.recgrp.bas.methods
								buscode:"",			//  银行业务编号		.recgrp.bas.buscode
								custype:"",			//  类型		.recgrp.bas.custype
								actiondesc:"",			//  操作类型		.recgrp.bas.actiondesc
								exrate:"",			//  结汇汇率		.recgrp.bas.exrate
								lcyamt:"",			//  结汇金额		.recgrp.bas.lcyamt
								custnm:"",			//  收款人名称		.recgrp.bas.custnm
								oppuser:"",			//  付款人名称		.recgrp.bas.oppuser
								custcod:"",			//  主体标识码		.recgrp.bas.custcod
								inchargeccy:"",			//  国内银行扣费		.recgrp.bas.inchargeccy
								inchargeamt:"",			//  国内银行扣费		.recgrp.bas.inchargeamt
								txccy:"",			//  收入款币种及金额		.recgrp.bas.txccy
								txamt:"",			//  收入款币种及金额		.recgrp.bas.txamt
							},
						},
						bopbut:{
							boplabel:"",			//  申报信息		.bopbut.boplabel
							acttyplab:"",			//  ACTTYP Label		.bopbut.acttyplab
							basflg:"",			//  基'⌒畔		.bopbut.basflg
							dclflg:"",			//  申报信息		.bopbut.dclflg
							vrfflg:"",			//  管理信息		.bopbut.vrfflg
							ackflg:"",			//  申报无误		.bopbut.ackflg
							actiondesc:"",			//  修改/删除原因		.bopbut.actiondesc
							acttyp:"",			//  款项标志		.bopbut.acttyp
						},
						ctlmod:{
							wrkdbl:{
								trdtyp:"",			//  �'�易类型		.ctlmod.wrkdbl.trdtyp
							},
							dbl:{
								reldat:"",			//  收付汇日期		.ctlmod.dbl.reldat
							},
						},
						bopdbd1blk:"",			//  XMLPanel bopdbd1的内置block		.bopdbd1blk
						bopdbd2blk:"",			//  XMLPanel bopdbd2的内置block		.bopdbd2blk
						pageId: ""			// ctx的key
				}
    }
}