import type { BaseModel } from '../base/model'; import type { ReduceForPageQuery, ReduceForSaveVO, ReduceForUpdateVO } from '../base/reduce'; export interface DefParameterVO extends BaseModel { key: string; value: string; name: string; remarks: string; paramType: string; } export type DefParameterResultVO = Partial; export type DefParameterSaveVO = Partial>; export type DefParameterUpdateVO = Partial>; export type DefParameterPageVO = Partial>;