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

/**
 * 量化目标考核明细UI服务对象
 *
 * @export
 * @class PARLHMBKHMXUIService
 */
export default class PARLHMBKHMXUIService extends PARLHMBKHMXUIServiceBase {

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

}