index.js 359 Bytes
Newer Older
fukai committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
import Eafgrp from "../../common/model/Eafgrp"
import Eblmod from "../../common/model/Eblmod"
import Cfabut from "../../common/model/Cfabut"

export default class Eafinf {
	constructor() {
		this.data = {
			recgrp: new Eafgrp().data,
			cfabut: new Cfabut().data,
			eblmod: new Eblmod().data,
			businessType: "",
			businessInr: "",
			trninr: "",
		}
	}
}