index.js 541 Bytes
Newer Older
fukai committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
import Pub from '~/components/business/commonModel/index.js';
import Ledgrp from '~/components/business/commonModel/ledgrp';
import Ltdgrp from '~/components/business/commonModel/ltdgrp';
import Lttp from '~/components/business/commonModel/lttp';

export default class Lttadd {
	constructor() {
		this.data = {
			ledgrp: new Ledgrp().data,
			ltdgrp: new Ltdgrp().data,
			lttp: new Lttp().data,
			trnmod: new Pub().data.Trnmod,
			trndia: new Pub().data.Trndia,
			setmod: new Pub().data.Setmod,
			docpan: new Pub().data.Docpan,
		}
	}
}