index.js 692 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
import Pub from '~/components/business/commonModel/index.js';
import Ledgrp from '~/components/business/commonModel/ledgrp/index.js';
import Ltdgrp from '~/components/business/commonModel/ltdgrp/index.js';
import Fremsg from '~/components/business/commonModel/Fremsg.js';
import Lttp from '~/components/business/commonModel/lttp/index.js'; 

export default class Lttfre {
  constructor() {
    this.data = {
      lttp: new Lttp().data,
      ltdgrp: new Ltdgrp().data,
      ledgrp: new Ledgrp().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,
    }
  }
}