ibizcustomer-intf-auth-service.ts 615 字节
Newer Older
1
import IBIZCustomerIntfAuthServiceBase from './ibizcustomer-intf-auth-service-base';
2 3 4 5 6 7


/**
 * 客户权限服务对象
 * 基于 APP/src/authservice/%DE_PKGPATH%/%DE_PKGPATH%-auth-service.ts.ftl 生成
 * @export
8 9
 * @class IBIZCustomerIntfAuthService
 * @extends {IBIZCustomerIntfAuthServiceBase}
10
 */
11
export default class IBIZCustomerIntfAuthService extends IBIZCustomerIntfAuthServiceBase {
12 13

    /**
14
     * Creates an instance of  IBIZCustomerIntfAuthService.
15 16
     * 
     * @param {*} [opts={}]
17
     * @memberof  IBIZCustomerIntfAuthService
18 19 20 21 22 23 24
     */
    constructor(opts: any = {}) {
        super(opts);
    }


}