index.js 1.02 KB
Newer Older
zhengxiaokui committed
1 2 3 4 5 6 7
export default class Mtabut {
    constructor() {
        this.data = {
            coninf: {
                oitinf: {
                    labinftxt: "",			//  Label for INFTXT		.mtabut.coninf.oitinf.labinftxt
                    oit: {
hulei committed
8
                        inftxt: {},			//  Infotext		.mtabut.coninf.oitinf.oit.inftxt
zhengxiaokui committed
9 10 11 12 13 14
                        inflev: "",			//  Infotext Level		.mtabut.coninf.oitinf.oit.inflev
                    },
                },
                oitset: {
                    labinftxt: "",			//  Label for INFTXT		.mtabut.coninf.oitset.labinftxt
                    oit: {
hulei committed
15
                        inftxt: {},			//  Infotext		.mtabut.coninf.oitset.oit.inftxt
zhengxiaokui committed
16 17 18 19 20 21 22 23 24 25 26
                        inflev: "",			//  Infotext Level		.mtabut.coninf.oitset.oit.inflev
                    },
                },
                conexedat: "",			//  执行日期		.mtabut.coninf.conexedat
                usr: {
                    extkey: "",			//  User ID		.mtabut.coninf.usr.extkey
                },
            },
        }
    }
}