TemplatePageVo.java 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. package jnpf.flowable.model.template;
  2. import io.swagger.v3.oas.annotations.media.Schema;
  3. import lombok.Data;
  4. import java.util.Date;
  5. @Data
  6. public class TemplatePageVo {
  7. @Schema(description = "流程编码")
  8. private String enCode;
  9. @Schema(description = "流程名称")
  10. private String fullName;
  11. @Schema(description = "版本主键")
  12. private String id;
  13. @Schema(description = "流程分类")
  14. private String category;
  15. @Schema(description = "流程类型")
  16. private Integer type;
  17. @Schema(description = "排序码")
  18. private Long sortCode;
  19. @Schema(description = "图标")
  20. private String icon;
  21. @Schema(description = "图标背景色")
  22. private String iconBackground;
  23. @Schema(description = "创建人")
  24. private String creatorUser;
  25. @Schema(description = "创建时间")
  26. private Date creatorTime;
  27. @Schema(description = "有效标志")
  28. private Integer enabledMark;
  29. @Schema(description = "有效标志")
  30. private Integer visibleType;
  31. @Schema(description = "流程版本主键")
  32. private String flowId;
  33. @Schema(description = "是否常用")
  34. private Boolean isCommonFlow;
  35. @Schema(description = "是否系统表单")
  36. private Integer isQuote;
  37. }