index.js 872 Bytes
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
export default class Setmod {
  constructor() {
    this.data = {
      ref: "", //  our reference		.setmod.ref
      doccur: "", //  document currency		.setmod.doccur
      docamt: 0, //  document amount		.setmod.docamt
      dspflg: "CG", //  Type of settlement		.setmod.dspflg
      redamt: "",
      setamt: 0,
      feeclirol: "",
      feecorrol: "",
      wrksumMap:{},
      setglg: {
        avlMsgDetial:[],
        setgll: [],
        actPro: [],
      },
      setfog: {
        invisibleFlag: "",
        setfol: []
      },
      setfeg: {
        setfel: []
      },
      glemod: {
				buildParams: {}
      },
			gles: [],    //分录条目
			ptydet:[],   //费用角色详情列表 
      foreignRoleSet:[],
      roleSet:[],
			feeCodeSet:[],
      buildParams: {},
      refdat: "",
      zmqflg: "",
      zmqacc: "",
      fale01List:[],
    }
  }
}