| | |
| | | package com.yeshi.fanli.entity.system;
|
| | |
|
| | | 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;
|
| | |
|
| | | @Entity
|
| | | @Table(name = "yeshi_ec_system_msg")
|
| | |
|
| | | @Table("yeshi_ec_system_msg")
|
| | | public class SystemZnx {
|
| | | @Id
|
| | | @GeneratedValue(strategy = GenerationType.AUTO)
|
| | | @Column(name = "id")
|
| | | private long id;
|
| | |
|
| | | @Column(name = "`title`", length = 128)
|
| | | @Column(name = "id")
|
| | | private Long id;
|
| | | |
| | | @Column(name = "title")
|
| | | private String title;
|
| | |
|
| | | @Column(name = "`content`", length = 128)
|
| | | @Column(name = "content")
|
| | | private String content;
|
| | |
|
| | | @Column(name = "`createTime`", length = 128)
|
| | | private long createTime;
|
| | | @Column(name = "createTime")
|
| | | private Long createTime;
|
| | |
|
| | | public long getId() {
|
| | | public Long getId() {
|
| | | return id;
|
| | | }
|
| | |
|
| | | public void setId(long id) {
|
| | | public void setId(Long id) {
|
| | | this.id = id;
|
| | | }
|
| | |
|
| | |
| | | this.content = content;
|
| | | }
|
| | |
|
| | | public long getCreateTime() {
|
| | | public Long getCreateTime() {
|
| | | return createTime;
|
| | | }
|
| | |
|
| | | public void setCreateTime(long createTime) {
|
| | | public void setCreateTime(Long createTime) {
|
| | | this.createTime = createTime;
|
| | | }
|
| | |
|