| | |
| | |
|
| | | @Entity
|
| | | @Table(name = "yeshi_ec_system_msg")
|
| | | @org.yeshi.utils.mybatis.Table("yeshi_ec_system_msg")
|
| | | public class SystemZnx {
|
| | | @Id
|
| | | @GeneratedValue(strategy = GenerationType.AUTO)
|
| | | @Column(name = "id")
|
| | | private long id;
|
| | | @org.yeshi.utils.mybatis.Column(name="id")
|
| | | private Long id;
|
| | |
|
| | | @Column(name = "`title`", length = 128)
|
| | | @org.yeshi.utils.mybatis.Column(name="title")
|
| | | private String title;
|
| | |
|
| | | @Column(name = "`content`", length = 128)
|
| | | @org.yeshi.utils.mybatis.Column(name="content")
|
| | | private String content;
|
| | |
|
| | | @Column(name = "`createTime`", length = 128)
|
| | | private long createTime;
|
| | | @org.yeshi.utils.mybatis.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;
|
| | | }
|
| | |
|