| | |
| | |
|
| | | import java.util.Date;
|
| | |
|
| | | import javax.persistence.Column;
|
| | | import javax.persistence.Entity;
|
| | | import javax.persistence.GeneratedValue;
|
| | | import javax.persistence.GenerationType;
|
| | | import javax.persistence.Id;
|
| | | import javax.persistence.Table;
|
| | | import org.yeshi.utils.mybatis.Column;
|
| | | import org.yeshi.utils.mybatis.Table;
|
| | |
|
| | | import com.google.gson.annotations.Expose;
|
| | |
|
| | | @Entity
|
| | | @Table(name = "yeshi_ec_customer_content")
|
| | | @Table("yeshi_ec_customer_content")
|
| | | public class CustomerContent {
|
| | |
|
| | | @Id
|
| | | @GeneratedValue(strategy = GenerationType.AUTO)
|
| | | @Column(name = "id")
|
| | | @Expose
|
| | | private long id;
|
| | | @Column(name = "id")
|
| | | private Long id;
|
| | |
|
| | | @Expose
|
| | | @Column(name = "cn_id")
|
| | | private long cnId;
|
| | | private Long cnId;
|
| | |
|
| | | @Expose
|
| | | @Column(name = "title")
|
| | |
| | | @Column(name="createTime")
|
| | | private Date createTime;
|
| | |
|
| | | public Date getCreateTime() {
|
| | | return createTime;
|
| | | }
|
| | |
|
| | | public void setCreateTime(Date createTime) {
|
| | | this.createTime = createTime;
|
| | | }
|
| | |
|
| | | public long getId() {
|
| | | public Long getId() {
|
| | | return id;
|
| | | }
|
| | |
|
| | | public void setId(long id) {
|
| | | public void setId(Long id) {
|
| | | this.id = id;
|
| | | }
|
| | |
|
| | | public long getCnId() {
|
| | | public Long getCnId() {
|
| | | return cnId;
|
| | | }
|
| | |
|
| | | public void setCnId(long cnId) {
|
| | | public void setCnId(Long cnId) {
|
| | | this.cnId = cnId;
|
| | | }
|
| | |
|
| | |
| | | public void setContent(String content) {
|
| | | this.content = content;
|
| | | }
|
| | | |
| | |
|
| | | public Date getCreateTime() {
|
| | | return createTime;
|
| | | }
|
| | |
|
| | | public void setCreateTime(Date createTime) {
|
| | | this.createTime = createTime;
|
| | | }
|
| | |
|
| | | }
|