ibizsample0020-service.ts 516 字节
import { Http,Util } from '@/utils';
import IBIZSample0020ServiceBase from './ibizsample0020-service-base';


/**
 * 员工服务对象
 *
 * @export
 * @class IBIZSample0020Service
 * @extends {IBIZSample0020ServiceBase}
 */
export default class IBIZSample0020Service extends IBIZSample0020ServiceBase {

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


}