package com.yeshi.fanli.entity.bus.user;
|
|
import java.util.Date;
|
|
import org.yeshi.utils.mybatis.Column;
|
import org.yeshi.utils.mybatis.Table;
|
|
/**
|
* 邀请脱离记录
|
*
|
* @author Administrator
|
*
|
*/
|
@Table("yeshi_ec_user_invite_separate")
|
public class UserInviteSeparate {
|
|
public static int STATE_INIT = 0;// 初始
|
public static int STATE_SUCCESS = 1;// 已脱离
|
public static int STATE_INVALID = 2; // 脱离未生效
|
|
@Column(name = "uis_id")
|
private Long id;
|
|
@Column(name = "uis_worker_id")
|
private Long workerId;
|
|
@Column(name = "uis_boss_id")
|
private Long bossId;
|
|
@Column(name = "uis_state")
|
private Integer state; //
|
|
@Column(name = "uis_end_time")
|
private Date endTime;
|
|
@Column(name = "uis_create_time")
|
private Date createTime;
|
|
@Column(name = "uis_update_time")
|
private Date updateTime;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public Long getWorkerId() {
|
return workerId;
|
}
|
|
public void setWorkerId(Long workerId) {
|
this.workerId = workerId;
|
}
|
|
public Long getBossId() {
|
return bossId;
|
}
|
|
public void setBossId(Long bossId) {
|
this.bossId = bossId;
|
}
|
|
public Integer getState() {
|
return state;
|
}
|
|
public void setState(Integer state) {
|
this.state = state;
|
}
|
|
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 Date getEndTime() {
|
return endTime;
|
}
|
|
public void setEndTime(Date endTime) {
|
this.endTime = endTime;
|
}
|
|
}
|