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

export default class Lttfee {
  constructor() {
    this.data = {
      ltdgrp: new Ltdgrp().data,
      ledgrp: new Ledgrp().data,
      addamtflg: "",
      setmod: new Pub().data.Setmod,
      trndia: new Pub().data.Trndia,
      xxtfee: new Pub().data.Xxtfee,
    };
  }
}