sys-psappmenuitem-service.ts 549 字节
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 22 23 24 25
import { Http,Util } from '@/utils';
import SYS_PSAPPMENUITEMServiceBase from './sys-psappmenuitem-service-base';


/**
 * 系统菜单项服务对象
 *
 * @export
 * @class SYS_PSAPPMENUITEMService
 * @extends {SYS_PSAPPMENUITEMServiceBase}
 */
export default class SYS_PSAPPMENUITEMService extends SYS_PSAPPMENUITEMServiceBase {

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


}