index.js 879 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 21 22 23 24 25 26 27 28 29 30 31
import Pts from "~/components/business/commonModel/Pts";
import Pub from "~/components/business/commonModel/index.js";
import Lidgrp from "~/components/business/commonModel/lidgrp";
import Brdgrp from "~/components/business/commonModel/brdgrp";
import Brtp from "~/components/business/commonModel/brtp";

export default class Brtdcr {
  constructor() {
    this.data = {
      brtp: new Brtp().data,

      brdgrp: new Brdgrp().data,
      advdisflg: "",
      refdocflg: "",
      swtdat: "",
      rejpenins: "",
      advrefflg: "",
      lidgrp: new Lidgrp().data,
      rejtype: "",
      clsflg: "",

      setmod: new Pub().data.Setmod,
      mtabut: new Pub().data.Mtabut,
      trnmod: new Pub().data.Trnmod,
      liaall: new Pub().data.Liaall,
      liaccv: new Pub().data.Liaccv,
      docpan: new Pub().data.Docpan,
      trndia: new Pub().data.Trndia,
    };
  }
}