import CodeList1UIServiceBase from './code-list1-ui-service-base';

/**
 * 代码表UI服务对象
 *
 * @export
 * @class CodeList1UIService
 */
export default class CodeList1UIService extends CodeList1UIServiceBase {

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

}