package com.yeshi.fanli.entity.bus.homemodule;
|
|
import java.util.Date;
|
|
import org.yeshi.utils.mybatis.Column;
|
import org.yeshi.utils.mybatis.Table;
|
|
/**
|
* 首页专题位置管理
|
*
|
* @author yj
|
*
|
* @date 2019年4月11日
|
*/
|
@Table("yeshi_ec_special_place")
|
public class SpecialPlace {
|
|
@Column(name = "sp_id")
|
private Long id;
|
|
// 位置
|
@Column(name = "sp_name")
|
private String name;
|
|
// 位置标识
|
@Column(name = "sp_key")
|
private String key;
|
|
// 创建时间
|
@Column(name = "sp_create_time")
|
private Date createTime;
|
|
// 更新时间
|
@Column(name = "sp_update_time")
|
private Date updateTime;
|
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getKey() {
|
return key;
|
}
|
|
public void setKey(String key) {
|
this.key = key;
|
}
|
|
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;
|
}
|
|
}
|