LaunchUserEntity.java 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. * 流程发起用户信息
  9. *
  10. * @author JNPF@YinMai Info. Co., Ltd
  11. * @version 5.0.x
  12. * @since 2024/4/18 9:36
  13. */
  14. @EqualsAndHashCode(callSuper = true)
  15. @Data
  16. @TableName("workflow_launch_user")
  17. public class LaunchUserEntity extends SuperExtendEntity<String> {
  18. /**
  19. * 组织主键
  20. */
  21. @TableField("f_organize_id")
  22. private String organizeId;
  23. /**
  24. * 岗位主键
  25. */
  26. @TableField("f_position_id")
  27. private String positionId;
  28. /**
  29. * 主管主键
  30. */
  31. @TableField("f_manager_id")
  32. private String managerId;
  33. /**
  34. * 下属用户
  35. */
  36. @TableField("f_subordinate")
  37. private String subordinate;
  38. /**
  39. * 任务主键
  40. */
  41. @TableField("f_task_id")
  42. private String taskId;
  43. /**
  44. * 公司下所有部门
  45. */
  46. @TableField("f_department")
  47. private String department;
  48. /**
  49. * 节点编码
  50. */
  51. @TableField("f_node_code")
  52. private String nodeCode;
  53. /**
  54. * 发起类型 1-任务发起 2-逐级发起
  55. */
  56. @TableField("f_type")
  57. private Integer type;
  58. }