package com.yeshi.fanli.entity.bus.user.cloud;
|
|
import java.util.Date;
|
|
import org.yeshi.utils.generater.mybatis.Column;
|
import org.yeshi.utils.generater.mybatis.Table;
|
|
/**
|
* 用户云发单-群
|
*
|
* @author Administrator
|
*
|
*/
|
@Table("yeshi_ec_user_cloud_group")
|
public class UserCloudGroup {
|
|
public final static int TYPE_CIRCLE = 1; // 朋友圈
|
public final static int TYPE_GROUP = 2; // 微信群
|
|
@Column(name = "ucg_id")
|
private Long id;
|
|
@Column(name = "ucg_uid")
|
private Long uid;
|
|
@Column(name = "ucg_type")
|
private Integer type;
|
|
@Column(name = "ucg_state")
|
private Boolean state; // 状态
|
|
@Column(name = "ucg_group_id")
|
private String groupId; // 群id
|
|
@Column(name = "ucg_group_name")
|
private String groupName; // 群名称
|
|
@Column(name = "ucg_create_time")
|
private Date createTime;
|
|
@Column(name = "ucg_update_time")
|
private Date updateTime;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public Long getUid() {
|
return uid;
|
}
|
|
public void setUid(Long uid) {
|
this.uid = uid;
|
}
|
|
public Integer getType() {
|
return type;
|
}
|
|
public void setType(Integer type) {
|
this.type = type;
|
}
|
|
public Boolean getState() {
|
return state;
|
}
|
|
public void setState(Boolean state) {
|
this.state = state;
|
}
|
|
public String getGroupName() {
|
return groupName;
|
}
|
|
public void setGroupName(String groupName) {
|
this.groupName = groupName;
|
}
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
|
public Date getUpdateTime() {
|
return updateTime;
|
}
|
|
public void setUpdateTime(Date updateTime) {
|
this.updateTime = updateTime;
|
}
|
|
public String getGroupId() {
|
return groupId;
|
}
|
|
public void setGroupId(String groupId) {
|
this.groupId = groupId;
|
}
|
|
}
|