TemplateJsonEntity.java 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. package jnpf.flowable.entity;
  2. import com.baomidou.mybatisplus.annotation.TableField;
  3. import com.baomidou.mybatisplus.annotation.TableName;
  4. import jnpf.base.entity.SuperExtendEntity;
  5. import lombok.Data;
  6. /**
  7. * 流程引擎
  8. *
  9. * @author JNPF开发平台组
  10. * @version V3.4.2
  11. * @copyright 引迈信息技术有限公司
  12. * @date 2022年7月11日 上午9:18
  13. */
  14. @Data
  15. @TableName("workflow_version")
  16. public class TemplateJsonEntity extends SuperExtendEntity<String> {
  17. /**
  18. * 流程模板id
  19. */
  20. @TableField("F_TEMPLATE_ID")
  21. private String templateId;
  22. /**
  23. * 流程版本
  24. */
  25. @TableField("F_VERSION")
  26. private String version;
  27. /**
  28. * 状态(0.设计,1.启用,2.历史)
  29. */
  30. @TableField("F_STATUS")
  31. private Integer state;
  32. /**
  33. * 流程模板
  34. */
  35. @TableField("F_XML")
  36. private String flowXml;
  37. /**
  38. * flowable部署ID
  39. */
  40. @TableField("f_flowable_id")
  41. private String flowableId;
  42. /**
  43. * activiti部署ID
  44. */
  45. @TableField("f_activiti_id")
  46. private String activitiId;
  47. /**
  48. * camunda部署ID
  49. */
  50. @TableField("f_camunda_id")
  51. private String camundaId;
  52. /**
  53. * 消息配置id
  54. */
  55. @TableField("f_send_config_ids")
  56. private String sendConfigIds;
  57. }