index.js 519 Bytes
Newer Older
fukai committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
import Pub from "~/components/business/commonModel/index.js";
import Didgrp from '~/components/business/commonModel/didgrp';
import Bddgrp from '~/components/business/commonModel/bddgrp';

export default class Bdtinv {
  constructor() {
    this.data = {
      didgrp: new Didgrp().data,
			bddgrp: new Bddgrp().data,
      setmod: new Pub().data.Setmod,
      mtabut: new Pub().data.Mtabut,
      trnmod: new Pub().data.Trnmod,
      imgInvmod: new Pub().data.Invchk,
      trndia: new Pub().data.Trndia,
    };
  }
}