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