import { PageQuery, BaseEntity } from '@/api/interface/index' export interface AlgorithmConfigTrackVO extends BaseEntity { /** * 主键ID */ id: string | number /** * 类型 */ type: string /** * 父id */ parentId: string | number /** * 分系统 */ subsystem: string /** * 算法名称 */ algorithmName: string /** * 算法地址 */ algorithmAddress: string /** * 参数配置 */ parameterConfig: string /** * 备注 */ remarks: string /** * 系统 */ system: string } export interface AlgorithmConfigTrackForm { /** * 主键ID */ id?: string | number /** * 类型 */ type?: string /** * 父id */ parentId?: string | number /** * 分系统 */ subsystem?: string /** * 算法名称 */ algorithmName?: string /** * 算法地址 */ algorithmAddress?: string /** * 参数配置 */ parameterConfig?: string /** * 备注 */ remarks?: string /** * 乐观锁 */ version?: number /** * 系统 */ system?: string } export interface AlgorithmConfigTrackQuery extends PageQuery { /** * 类型 */ type?: string /** * 父id */ parentId?: string | number /** * 分系统 */ subsystem?: string /** * 算法名称 */ algorithmName?: string /** * 算法地址 */ algorithmAddress?: string /** * 参数配置 */ parameterConfig?: string /** * 备注 */ remarks?: string /** * 系统 */ system?: string /** * 日期范围参数 */ params?: any }