ProjectTeam.java 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. package com.fdkankan.site.entity;
  2. import com.baomidou.mybatisplus.annotation.IdType;
  3. import com.baomidou.mybatisplus.annotation.TableField;
  4. import com.baomidou.mybatisplus.annotation.TableId;
  5. import com.baomidou.mybatisplus.annotation.TableLogic;
  6. import com.baomidou.mybatisplus.annotation.TableName;
  7. import java.io.Serializable;
  8. import java.util.Date;
  9. import lombok.Getter;
  10. import lombok.Setter;
  11. /**
  12. * <p>
  13. *
  14. * </p>
  15. *
  16. * @author
  17. * @since 2022-10-10
  18. */
  19. @Getter
  20. @Setter
  21. @TableName("t_project_team")
  22. public class ProjectTeam extends BaseEntity{
  23. private static final long serialVersionUID = 1L;
  24. @TableId(value = "team_id", type = IdType.AUTO)
  25. private Integer teamId;
  26. @TableField("project_id")
  27. private Integer projectId;
  28. /**
  29. * 是否创建者,0否,1是
  30. */
  31. @TableField("is_creater")
  32. private Integer isCreater;
  33. /**
  34. * 绑定账号
  35. */
  36. @TableField("bind_account")
  37. private String bindAccount;
  38. @TableField("user_id")
  39. private Integer userId;
  40. /**
  41. * 备注
  42. */
  43. @TableField("remark")
  44. private String remark;
  45. /**
  46. * 用户名称
  47. */
  48. @TableField("nick_name")
  49. private String nickName;
  50. // private String userName;
  51. }