EventLogEntity.java 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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. import lombok.EqualsAndHashCode;
  7. @EqualsAndHashCode(callSuper = true)
  8. @Data
  9. @TableName("workflow_event_log")
  10. public class EventLogEntity extends SuperExtendEntity<String> {
  11. /**
  12. * 任务主键
  13. */
  14. @TableField("f_task_id")
  15. private String taskId;
  16. /**
  17. * 节点主建
  18. */
  19. @TableField("f_node_id")
  20. private String nodeId;
  21. /**
  22. * 节点名称
  23. */
  24. @TableField("f_node_name")
  25. private String nodeName;
  26. /**
  27. * 节点编码
  28. */
  29. @TableField("f_node_code")
  30. private String nodeCode;
  31. /**
  32. * 事件类型
  33. */
  34. @TableField("f_type")
  35. private String type;
  36. /**
  37. * 上一节点
  38. */
  39. @TableField("f_up_node")
  40. private String upNode;
  41. /**
  42. * 接口主建
  43. */
  44. @TableField("f_interface_id")
  45. private String interfaceId;
  46. /**
  47. * 执行参数
  48. */
  49. @TableField("f_data")
  50. private String data;
  51. /**
  52. * 执行结果
  53. */
  54. @TableField("f_result")
  55. private String result;
  56. /**
  57. * 执行状态 0.成功 1.失败
  58. */
  59. @TableField("f_status")
  60. private Integer status;
  61. }