chore: models

This commit is contained in:
2025-08-07 21:34:01 +08:00
parent ee6c37f0ae
commit 1746334a8f
19 changed files with 474 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
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<DefParameterVO>;
export type DefParameterSaveVO = Partial<Omit<DefParameterVO, ReduceForSaveVO>>;
export type DefParameterUpdateVO = Partial<Omit<DefParameterVO, ReduceForUpdateVO>>;
export type DefParameterPageVO = Partial<Omit<DefParameterVO, ReduceForPageQuery>>;