ibizsample0010-auth-service.ts 518 字节
import IBIZSample0010AuthServiceBase from './ibizsample0010-auth-service-base';


/**
 * 订单权限服务对象
 *
 * @export
 * @class IBIZSample0010AuthService
 * @extends {IBIZSample0010AuthServiceBase}
 */
export default class IBIZSample0010AuthService extends IBIZSample0010AuthServiceBase {

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


}