ibizhardware-service.ts 571 字节
Newer Older
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
import { Http,Util } from '@/utils';
import IBIZHardwareServiceBase from './ibizhardware-service-base';


/**
 * 硬件服务对象
 * 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service.ts.ftl 生成
 * @export
 * @class IBIZHardwareService
 * @extends {IBIZHardwareServiceBase}
 */
export default class IBIZHardwareService extends IBIZHardwareServiceBase {

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


}