index.js 445 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 Lidgrp from "~/components/business/commonModel/lidgrp";
import Brdgrp from "~/components/business/commonModel/brdgrp";

export default class Brtfee {
  constructor() {
    this.data = {
      brdgrp: new Brdgrp().data,
      lidgrp: new Lidgrp().data,
      setmod: new Pub().data.Setmod,
      trndia: new Pub().data.Trndia,
      xxtfee: new Pub().data.Xxtfee,
    };
  }
}