TemplatePageLisVO.java 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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 TemplatePageLisVO {
  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 = "流程显示类型(0-全局 1-流程 2-菜单)")
  34. private Integer showType;
  35. @Schema(description = "状态(0.未上架,1.上架,2.下架-继续审批,3.下架-隐藏审批)")
  36. private Integer status;
  37. }