| | |
| | | package com.yeshi.fanli.entity.bus.user;
|
| | |
|
| | | import javax.persistence.Column;
|
| | | import javax.persistence.Entity;
|
| | | import javax.persistence.GeneratedValue;
|
| | | import javax.persistence.GenerationType;
|
| | | import javax.persistence.Id;
|
| | | import javax.persistence.JoinColumn;
|
| | | import javax.persistence.ManyToOne;
|
| | | import javax.persistence.Table;
|
| | | import org.yeshi.utils.mybatis.Column;
|
| | | import org.yeshi.utils.mybatis.Table;
|
| | |
|
| | | import com.google.gson.annotations.Expose;
|
| | |
|
| | |
| | | *
|
| | | * @date 2018年1月29日
|
| | | */
|
| | | @Entity
|
| | | @Table(name="yeshi_ec_account_message")
|
| | | @org.yeshi.utils.mybatis.Table("yeshi_ec_account_message")
|
| | | @Table("yeshi_ec_account_message")
|
| | | public class AccountMessage {
|
| | |
|
| | | @org.yeshi.utils.mybatis.Column(name="id")
|
| | | @Id
|
| | | @GeneratedValue(strategy=GenerationType.AUTO)
|
| | | @Expose
|
| | | @Column(name="id")
|
| | | private Long id;
|
| | |
|
| | | @org.yeshi.utils.mybatis.Column(name="uid")
|
| | | @ManyToOne
|
| | | @JoinColumn(name="uid")
|
| | | @Column(name="uid")
|
| | | private UserInfo userInfo;
|
| | |
|
| | | @org.yeshi.utils.mybatis.Column(name="title")
|
| | | @Column(name="title")
|
| | | @Expose
|
| | | private String title;
|
| | |
|
| | | @org.yeshi.utils.mybatis.Column(name="content")
|
| | | @Column(name="content")
|
| | | @Expose
|
| | | private String content;
|
| | |
|
| | | @org.yeshi.utils.mybatis.Column(name="createTime")
|
| | | @Column(name="createTime")
|
| | | @Expose
|
| | | private Long createTime;
|
| | |
|
| | | @org.yeshi.utils.mybatis.Column(name="isOpen")
|
| | | @Column(name="isOpen")
|
| | | @Expose
|
| | | private Boolean isOpen;
|
| | |
|
| | | @org.yeshi.utils.mybatis.Column(name="system_msg_id")
|
| | | @Expose
|
| | | @Column(name="system_msg_id")
|
| | | @Expose
|
| | | private Long systemMsgId;
|
| | |
|
| | | public Long getId() {
|