12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- package com.fdkankan.site.entity;
- import com.baomidou.mybatisplus.annotation.IdType;
- import com.baomidou.mybatisplus.annotation.TableField;
- import com.baomidou.mybatisplus.annotation.TableId;
- import com.baomidou.mybatisplus.annotation.TableLogic;
- import com.baomidou.mybatisplus.annotation.TableName;
- import java.io.Serializable;
- import java.util.Date;
- import lombok.Getter;
- import lombok.Setter;
- /**
- * <p>
- *
- * </p>
- *
- * @author
- * @since 2022-10-10
- */
- @Getter
- @Setter
- @TableName("t_project_team")
- public class ProjectTeam extends BaseEntity{
- private static final long serialVersionUID = 1L;
- @TableId(value = "team_id", type = IdType.AUTO)
- private Integer teamId;
- @TableField("project_id")
- private Integer projectId;
- /**
- * 是否创建者,0否,1是
- */
- @TableField("is_creater")
- private Integer isCreater;
- /**
- * 绑定账号
- */
- @TableField("bind_account")
- private String bindAccount;
- @TableField("user_id")
- private Integer userId;
- /**
- * 备注
- */
- @TableField("remark")
- private String remark;
- /**
- * 用户名称
- */
- @TableField("nick_name")
- private String nickName;
- // private String userName;
- }
|