sys-user-role-ui-service.ts 459 字节
Newer Older
ibizdev's avatar
ibizdev committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
import SYS_USER_ROLEUIServiceBase from './sys-user-role-ui-service-base';

/**
 * 用户角色关系UI服务对象
 *
 * @export
 * @class SYS_USER_ROLEUIService
 */
export default class SYS_USER_ROLEUIService extends SYS_USER_ROLEUIServiceBase {

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

}