ParamDefine.ts 331 B

123456789101112
  1. export class ParamDefine {
  2. name!: string;
  3. field!: string;
  4. type!: string;
  5. required: boolean | undefined;
  6. defaultValue: string | undefined;
  7. placeholder!: string;
  8. range: string | undefined;
  9. limit: number | undefined;
  10. //'[{"label":"GET请求","value":"GET"},{"label":"PUT请求","value":"PUT"}]'
  11. options!: any[];
  12. }