package com.gkhy.safePlatform.account.entity.schedule;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
|
@TableName("schedule_group_member")
|
public class GroupMemberInfo implements Serializable {
|
private static final long serialVersionUID = -1205571401734162659L;
|
|
@TableId(type = IdType.AUTO)
|
private Long id;
|
|
private Long groupId;
|
|
private Long uid;
|
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public Long getGroupId() {
|
return groupId;
|
}
|
|
public void setGroupId(Long groupId) {
|
this.groupId = groupId;
|
}
|
|
public Long getUid() {
|
return uid;
|
}
|
|
public void setUid(Long uid) {
|
this.uid = uid;
|
}
|
}
|