import IBIZCustomerMGUIServiceBase from './ibizcustomer-mg-ui-service-base';

/**
 * 客户管理UI服务对象
 *
 * @export
 * @class IBIZCustomerMGUIService
 */
export default class IBIZCustomerMGUIService extends IBIZCustomerMGUIServiceBase {

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

}