VisualComponentCrForm.java 628 B

12345678910111213141516171819202122232425262728293031
  1. package jnpf.visualdata.model.visualcomponent;
  2. import io.swagger.v3.oas.annotations.media.Schema;
  3. import lombok.Data;
  4. /**
  5. *
  6. *
  7. * @author JNPF开发平台组
  8. * @version V3.5.0
  9. * @copyright 引迈信息技术有限公司
  10. * @date 2023年7月7日
  11. */
  12. @Data
  13. public class VisualComponentCrForm {
  14. @Schema(description = "主键")
  15. private String id;
  16. @Schema(description = "主键")
  17. private String name;
  18. @Schema(description = "组件内容")
  19. private String content;
  20. @Schema(description = "组件类型")
  21. private Integer type;
  22. @Schema(description = "组件图片")
  23. private String img;
  24. }