ibizappview-service.ts 498 字节
Newer Older
1 2 3 4 5
import { Http,Util } from '@/utils';
import IBIZAPPVIEWServiceBase from './ibizappview-service-base';


/**
6
 * 应用视图服务对象
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
 *
 * @export
 * @class IBIZAPPVIEWService
 * @extends {IBIZAPPVIEWServiceBase}
 */
export default class IBIZAPPVIEWService extends IBIZAPPVIEWServiceBase {

    /**
     * Creates an instance of  IBIZAPPVIEWService.
     * 
     * @param {*} [opts={}]
     * @memberof  IBIZAPPVIEWService
     */
    constructor(opts: any = {}) {
        super(opts);
    }


}