index.js 415 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 Didgrp from '~/components/business/commonModel/didgrp';
import Ditp from '~/components/business/commonModel/ditp';

export default class Ditadd {
	constructor() {
		this.data = {
			didgrp: new Didgrp().data,
			ditp:  new Ditp().data,
			trnmod: new Pub().data.Trnmod,
			doctre: new Pub().data.Doctre,
			trndia: new Pub().data.Trndia,
		}
	}
}