package com.yeshi.fanli.entity.system;
|
|
import java.util.Date;
|
|
import org.yeshi.utils.generater.mybatis.Column;
|
import org.yeshi.utils.generater.mybatis.Table;
|
|
import com.google.gson.annotations.Expose;
|
|
@Table("yeshi_ec_customer_content")
|
public class CustomerContent {
|
|
@Expose
|
@Column(name = "id")
|
private Long id;
|
|
@Expose
|
@Column(name = "cn_id")
|
private Long cnId;
|
|
@Expose
|
@Column(name = "title")
|
private String title;
|
|
@Expose
|
@Column(name = "content")
|
private String content;
|
|
@Expose
|
@Column(name="createTime")
|
private Date createTime;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public Long getCnId() {
|
return cnId;
|
}
|
|
public void setCnId(Long cnId) {
|
this.cnId = cnId;
|
}
|
|
public String getTitle() {
|
return title;
|
}
|
|
public void setTitle(String title) {
|
this.title = title;
|
}
|
|
public String getContent() {
|
return content;
|
}
|
|
public void setContent(String content) {
|
this.content = content;
|
}
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
|
}
|