index.js 577 Bytes
Newer Older
fukai committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
import Brdgrp from '~/components/business/commonModel/brdgrp';
import Lidgrp from '~/components/business/commonModel/lidgrp';
import Fremsg from '~/components/business/commonModel/Fremsg.js';
import Pub from '~/components/business/commonModel/index.js';

export default class Brtfre {
  constructor() {
    this.data = {
      brdgrp: new Brdgrp().data, 
      lidgrp: new Lidgrp().data,
      fremsg: new Fremsg().data,
      setmod: new Pub().data.Setmod,
      docpan: new Pub().data.Docpan,
			liaall: new Pub().data.Liaall,
      trndia: new Pub().data.Trndia,
    }
  }
}