VisualKitInfoVo.java 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. package jnpf.base.model.visualkit;
  2. import io.swagger.v3.oas.annotations.media.Schema;
  3. import jakarta.validation.constraints.NotBlank;
  4. import lombok.Data;
  5. /**
  6. * 套件详细信息
  7. *
  8. * @author JNPF开发平台组
  9. * @version v5.1.0
  10. * @copyright 引迈信息技术有限公司
  11. * @date 2024/8/22 11:50:38
  12. */
  13. @Data
  14. @Schema(description = "套件详细信息")
  15. public class VisualKitInfoVo {
  16. @Schema(description = "id")
  17. private String id;
  18. @Schema(description = "名称")
  19. private String fullName;
  20. @Schema(description = "编码")
  21. private String enCode;
  22. @Schema(description = "分类(数据字典)")
  23. private String category;
  24. @Schema(description = "图标")
  25. private String icon;
  26. @Schema(description = "排序")
  27. private Long sortCode;
  28. @Schema(description = "状态")
  29. private Integer enabledMark;
  30. @Schema(description = "说明")
  31. private String description;
  32. @Schema(description = "套件设计内容")
  33. private String formData;
  34. @Schema(description = "创建时间")
  35. private Long creatorTime;
  36. @Schema(description = "创建人")
  37. private String creatorUser;
  38. @Schema(description = "创建人id")
  39. private String creatorUserId;
  40. @Schema(description = "修改时间")
  41. private Long lastModifyTime;
  42. @Schema(description = "修改人")
  43. private String lastModifyUser;
  44. @Schema(description = "修改人id")
  45. private String lastModifyUserId;
  46. }