import type { BaseModel, ReduceForSaveVO, ReduceForUpdateVO, ReduceForPageQuery } from '../base'; 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 DefParameterPageQuery = Partial>;