TemplateCrForm.java 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. package jnpf.flowable.model.template;
  2. import io.swagger.v3.oas.annotations.media.Schema;
  3. import lombok.Data;
  4. @Data
  5. public class TemplateCrForm {
  6. @Schema(description = "流程编码")
  7. private String enCode;
  8. @Schema(description = "流程名称")
  9. private String fullName;
  10. /**
  11. * 0.标准 1.简流
  12. */
  13. @Schema(description = "流程类型")
  14. private Integer type = 0;
  15. @Schema(description = "流程分类")
  16. private String category;
  17. @Schema(description = "图标")
  18. private String icon;
  19. @Schema(description = "图标背景色")
  20. private String iconBackground;
  21. // @Schema(description = "流程参数")
  22. // private String configuration;
  23. @Schema(description = "说明")
  24. private String description;
  25. @Schema(description = "排序")
  26. private Long sortCode;
  27. @Schema(description = "流程设置")
  28. private String flowConfig;
  29. /**
  30. * 流程显示类型(0-全局 1-流程 2-菜单)
  31. */
  32. private Integer showType = 0;
  33. /**
  34. * 状态(0.未上架,1.上架,2.下架-继续审批,3.下架-隐藏审批)
  35. */
  36. private Integer status = 0;
  37. }