index.js 1.14 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
import Eafgrp from "../../common/model/Eafgrp"
import Eblmod from "../../common/model/Eblmod"
import Cfabut from "../../common/model/Cfabut"

export default class Eafall {
	constructor() {
		this.data = {
			recgrp: new Eafgrp().data,
			cfabut: new Cfabut().data,
			eblmod: new Eblmod().data,
			dclp:[
				{
					inr: "",
					sta: "", //  接口状态		.recp.dclp.sta
					actiontype: "", //  操作类型		.recp.dclp.actiontype
					actiondesc: "", //  删除原因		.recp.dclp.actiondesc
					exdebtcode: "", //  外债编号		.recp.dclp.exdebtcode
					buscode: "", //  银行业务参号		.recp.dclp.buscode
					changeno: "", //  变动编号		.recp.dclp.changeno
					changtype: "", //  变动类型		.recp.dclp.changtype
					chdate: "", //  变动日期		.recp.dclp.chdate
					chcurrency: "", //  变动币种		.recp.dclp.chcurrency
					fairvalue: "", //  公允价值		.recp.dclp.fairvalue
					remark: "", //  备注		.recp.dclp.remark
					acp: "", //  确认		.recp.dclp.acp
					chamount: "", //  变动金额		.recp.dclp.chamount
				}, ],
			oldbasacttyp: "",
			olddclacttyp: [],
			businessType: "",
			businessInr: "",
			trninr: "",
		}
	}
}