package com.yeshi.fanli.entity.bus.user.cloud;
|
|
import java.util.Date;
|
|
import org.yeshi.utils.mybatis.Column;
|
import org.yeshi.utils.mybatis.Table;
|
|
/**
|
* 发单商品库
|
*
|
* @author Administrator
|
*
|
*/
|
@Table("yeshi_ec_user_cloud_manage")
|
public class UserCloudManage {
|
|
@Column(name = "ucm_uid")
|
private Long id;
|
|
@Column(name = "ucm_official")
|
private Boolean official;
|
|
@Column(name = "ucm_custom")
|
private Boolean custom; // 状态
|
|
@Column(name = "ucm_create_time")
|
private Date createTime;
|
|
@Column(name = "ucm_update_time")
|
private Date updateTime;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public Boolean getOfficial() {
|
return official;
|
}
|
|
public void setOfficial(Boolean official) {
|
this.official = official;
|
}
|
|
public Boolean getCustom() {
|
return custom;
|
}
|
|
public void setCustom(Boolean custom) {
|
this.custom = custom;
|
}
|
|
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;
|
}
|
|
}
|