index.js 409 Bytes
Newer Older
fukai committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
import Pub from "~/components/business/commonModel/index.js";
import Cpdgrp from '~/components/business/commonModel/cpdgrp/index.js';

export default class Cptinv {
	constructor() {
		this.data = {
			cpdgrp: new Cpdgrp().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,
		}
	}
}