CirculateEntity.java 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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. /**
  8. * @author :JNPF开发平台组
  9. * @version: V3.1.0
  10. * @copyright 引迈信息技术有限公司
  11. * @date :2024/4/25 下午6:12
  12. */
  13. @EqualsAndHashCode(callSuper = true)
  14. @Data
  15. @TableName("workflow_circulate")
  16. public class CirculateEntity extends SuperExtendEntity<String> {
  17. /**
  18. * 用户主键
  19. */
  20. @TableField("f_user_id")
  21. private String userId;
  22. /**
  23. * 任务主键
  24. */
  25. @TableField("f_task_id")
  26. private String taskId;
  27. /**
  28. * 节点编号
  29. */
  30. @TableField("f_node_code")
  31. private String nodeCode;
  32. /**
  33. * 节点名称
  34. */
  35. @TableField("f_node_name")
  36. private String nodeName;
  37. /**
  38. * 节点主键
  39. */
  40. @TableField("f_node_id")
  41. private String nodeId;
  42. /**
  43. * 经办主键
  44. */
  45. @TableField("f_operator_id")
  46. private String operatorId;
  47. /**
  48. * 是否已读
  49. */
  50. @TableField("f_read")
  51. private Integer circulateRead;
  52. }