ibizcustomer-intf-auth-service.ts 542 字节
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
import IBIZCustomer_INTFAuthServiceBase from './ibizcustomer-intf-auth-service-base';


/**
 * 客户权限服务对象
 *
 * @export
 * @class IBIZCustomer_INTFAuthService
 * @extends {IBIZCustomer_INTFAuthServiceBase}
 */
export default class IBIZCustomer_INTFAuthService extends IBIZCustomer_INTFAuthServiceBase {

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


}