ProcessTenant.java 840 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. package com.fjhx.entity.process;
  2. import com.baomidou.mybatisplus.annotation.IdType;
  3. import com.baomidou.mybatisplus.annotation.TableId;
  4. import lombok.Data;
  5. import java.io.Serializable;
  6. /**
  7. * <p>
  8. * 租户流程表
  9. * </p>
  10. *
  11. * @author ${author}
  12. * @since 2022-08-16
  13. */
  14. @Data
  15. public class ProcessTenant implements Serializable {
  16. private static final long serialVersionUID = 1L;
  17. /**
  18. * 主键id
  19. */
  20. @TableId(value = "id", type = IdType.ASSIGN_ID)
  21. private Long id;
  22. /**
  23. * 流程id
  24. */
  25. private Long processInfoId;
  26. /**
  27. * 流程名称
  28. */
  29. private String name;
  30. /**
  31. * 绑定租户id
  32. */
  33. private String bindingTenantId;
  34. /**
  35. * 版本号
  36. */
  37. private Integer versionNumber;
  38. /**
  39. * 是否当前版本
  40. */
  41. private Integer current;
  42. }