This commit is contained in:
caozehui
2024-11-29 16:29:26 +08:00
parent 6d34bcfde7
commit a249e5e185
3 changed files with 58 additions and 17 deletions

View File

@@ -32,4 +32,13 @@ export namespace TestSource {
export interface ResTestSourcePage extends ResPage<ResTestSource> {
}
export interface ParameterType{
id:string;
sourceParamType:string;
sourceParamDesc:string;
sourceParamValue:string;
sort:number;
pId:string;
children?:ParameterType[];
}
}