index.js 1.09 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
export default class Infgcd {
	constructor() {
		this.data = {
			seaamtfr: '',//金额下限
			seaamtto: '',//金额上限
			seasta: '',//业务状态
			isGuarantee: '',//进出口保函
			relflg: '',//Release Status
			seaownref: '', //  Own Reference		.infcon.ownref 保函编号
			opndatfrom: new Date((new Date).getTime() - (7 * 24 * 60 * 60 * 1000)), //  Opening between		.infcon.opndatfrom
			opndatto: new Date(), //  Open Date to		.infcon.opndatto
			nam: '', //  Name		.infcon.nam
			ptyNam: '', //  External Visible Name		.infcon.pty.nam
			seapty: '', //  当事人编号	.infcon.seapty
			searol: '', //  Role		.infcon.searol
			ptyExtkey: '', //  User ID		.infcon.usr.extkey
			usrExtkey: '', //  客户经理		.infcon.usr.extkey
			seacur: '', //  Currency		.infcon.seacur
			searef: '', //  Party Reference		.infcon.searef
			seagtyp: '', // 保函文本类型 .seagtyp
			branch: '',//交易机构号
      seaauthorized: '',//是否已授权
      gidopentyps:[], //开立类别
      seaamt:'',//金额
      hndtyps:[],
      column:'',//排序字段
      order:'',//正序倒序
		}
	}
}