index.js 608 Bytes
Newer Older
zhengxiaokui committed
1 2
import Trnmod from "./Trnmod";
import Mtabut from './Mtabut'
3 4
import Setmod from '~/components/business/setmod/model'
import Liaall from '~/components/business/engp/model'
5
import Liaccv from '~/components/business/ccvpan/model'
6
import Docpan from '~/components/business/docpan/model'
zhengxiaokui committed
7 8 9 10 11 12 13 14

export default class Publics {
    constructor() {
        this.data = {
            Trnmod: new Trnmod().data,
            Mtabut: new Mtabut().data,
            Setmod: new Setmod().data,
            Liaall: new Liaall().data,
15
            Liaccv: new Liaccv().data,
16
            Docpan: new Docpan().data,
zhengxiaokui committed
17 18 19
        }
    }
}