index.js 1.35 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
export default class Dbjsel {
    constructor() {
        this.data = {
            argmod: {
                extinfbop: "",			//  业务号码		.recp.argmod.extinfbop
                rptno: "",			//  申报号码		.recp.argmod.rptno
                datsrc: "",			//  数据来源		.recp.argmod.datsrc
                txccy: "",			//  收付汇币种		.recp.argmod.txccy
                branch: "",			//  机构号		.recp.argmod.branch
                bchcod: "",			//  金融机构标识码		.recp.argmod.bchcod
                custcod: "",			//  组织机构代码		.recp.argmod.custcod
                selsta: "",			//  数据状态		.recp.argmod.selsta
                ywcredat: new Date(),			//  业务开始日期		.recp.argmod.ywcredat
                ywtildat: new Date(),			//  业务结束日期		.recp.argmod.ywtildat
                selectdat: "B",			//  日期类型		.recp.argmod.selectdat
                usr: "",			//  员工号		.recp.argmod.usr
                bchinr: "",			//  导入所属机构		.recp.argmod.bchinr
                impdat: "",			//  导入申报日期		.recp.argmod.impdat
                custnm: "",			//  申报主体名称		.recp.argmod.custnm
                ptytyp: "",
                ptynam: "",
            },
            reclst: [],			//  		.recgrp.reclst
            bchtypList: [],
            isEnabled: true,
        }

    }
}