TemplateJsonExportModel.java 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. package jnpf.flowable.model.templatejson;
  2. import io.swagger.v3.oas.annotations.media.Schema;
  3. import lombok.Data;
  4. import java.io.Serializable;
  5. /**
  6. * 版本导出
  7. *
  8. * @author JNPF@YinMai Info. Co., Ltd
  9. * @version 5.0.x
  10. * @since 2024/4/17 10:48
  11. */
  12. @Data
  13. public class TemplateJsonExportModel implements Serializable {
  14. /**
  15. * 流程模板id
  16. */
  17. @Schema(description = "流程模板id")
  18. private String templateId;
  19. /**
  20. * 可见类型 1.公开 2.权限设置
  21. */
  22. @Schema(description = "可见类型 1.公开 2.权限设置")
  23. private Integer visibleType;
  24. /**
  25. * 流程版本
  26. */
  27. @Schema(description = "流程版本")
  28. private String flowVersion;
  29. /**
  30. * 状态(0.设计,1.启用,2.历史)
  31. */
  32. @Schema(description = "状态(0.设计,1.启用,2.历史)")
  33. private Integer state;
  34. /**
  35. * 流程模板
  36. */
  37. @Schema(description = "流程模板")
  38. private String flowXml;
  39. /**
  40. * 消息配置id
  41. */
  42. @Schema(description = "消息配置id")
  43. private String sendConfigIds;
  44. }