index.js 525 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 Didgrp from '~/components/business/commonModel/didgrp';
import Bddgrp from '~/components/business/commonModel/bddgrp';

export default class Bdtatt {
	constructor() {
		this.data = {
			didgrp: new Didgrp().data,
			bddgrp: new Bddgrp().data,
			bdtp0: {
				matp: {
					mattxtlab: "",			//  Label for MATTXT		.bdtp0.matp.mattxtlab
				},
			},
			trnmod: new Pub().data.Trnmod,
			doctre: new Pub().data.Doctre,
			trndia: new Pub().data.Trndia,
		}
	}
}