ibizcustomer-mg-ui-service.ts 537 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
import IBIZCustomerMGUIServiceBase from './ibizcustomer-mg-ui-service-base';

/**
 * 客户管理UI服务对象
 * 基于 APP/src/uiservice/%DE_PKGPATH%/%DE_PKGPATH%-ui-service.ts.ftl 生成
 * @export
 * @class IBIZCustomerMGUIService
 */
export default class IBIZCustomerMGUIService extends IBIZCustomerMGUIServiceBase {

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

}