ibizcustomer-intf-ui-service.ts 475 字节
import IBIZCustomer_INTFUIServiceBase from './ibizcustomer-intf-ui-service-base';

/**
 * 客户UI服务对象
 *
 * @export
 * @class IBIZCustomer_INTFUIService
 */
export default class IBIZCustomer_INTFUIService extends IBIZCustomer_INTFUIServiceBase {

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

}