ormduty-ui-service.ts 411 字节
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 ORMDUTYUIServiceBase from './ormduty-ui-service-base';

/**
 * 职务管理UI服务对象
 *
 * @export
 * @class ORMDUTYUIService
 */
export default class ORMDUTYUIService extends ORMDUTYUIServiceBase {

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

}