2021-11-30 22:16:38 +08:00
|
|
|
export class ParamDefine {
|
|
|
|
|
name!: string;
|
|
|
|
|
field!: string;
|
|
|
|
|
type!: string;
|
|
|
|
|
required: boolean | undefined;
|
2021-12-04 09:00:11 +08:00
|
|
|
defaultValue: string | undefined;
|
|
|
|
|
placeholder!: string;
|
2021-11-30 22:16:38 +08:00
|
|
|
range: string | undefined;
|
|
|
|
|
limit: number | undefined;
|
2021-12-04 09:00:11 +08:00
|
|
|
options: string | undefined;
|
2021-11-30 22:16:38 +08:00
|
|
|
}
|