Ledgrp.js 736 Bytes
Newer Older
zhengxiaokui committed
1 2 3 4

import Rec from './Led'
import Cbs from '../Cbs'
import Rol from '../Rol'
zhengxiaokui committed
5
import Blk from './Blk'
zhengxiaokui committed
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
export default class Ledgrp {
    constructor() {
        this.data = {
            rec: new Rec().data,
            cbs: new Cbs().data,
            preadvflg: "",			//  PreAdvice or Notification		.ledgrp.preadvflg
            ben: new Rol().data.ben,
            iss: new Rol().data.iss,
            apl: new Rol().data.apl,
            avb: new Rol().data.avb,
            blk: new Blk().data,
            drw: new Rol().data.drw,
            adv: new Rol().data.adv,
            a2b: new Rol().data.a2b,
            apb: new Rol().data.apb,
            rmb: new Rol().data.rmb,
            con: new Rol().data.con,
        }
    }
}