VisualKitVo.java 1.3 KB

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