perf: dynamic and pipeline config ui

This commit is contained in:
Junyan Qin
2025-05-08 18:23:08 +08:00
parent f6d3619bbe
commit a0056eb14c
4 changed files with 13 additions and 49 deletions
@@ -1,19 +0,0 @@
import { DynamicFormItemConfig } from '@/app/home/components/dynamic-form/DynamicFormItemConfig';
export interface IPipelineChildFormEntity {
name: string;
label: string;
formItems: DynamicFormItemConfig[];
}
export class PipelineChildFormEntity implements IPipelineChildFormEntity {
formItems: DynamicFormItemConfig[];
label: string;
name: string;
constructor(props: IPipelineChildFormEntity) {
this.label = props.label;
this.name = props.name;
this.formItems = props.formItems;
}
}