| | |
| | | package com.yeshi.fanli.entity.bus.user;
|
| | |
|
| | | import java.util.Date;
|
| | |
|
| | | import org.yeshi.utils.mybatis.Column;
|
| | | import org.yeshi.utils.mybatis.Table;
|
| | |
|
| | | /**
|
| | | * 用户 吐槽内容
|
| | | * @author Administrator
|
| | | *
|
| | | */
|
| | | @Table("yeshi_ec_user_complaint")
|
| | | public class UserComplaint {
|
| | | |
| | | @Column(name = "ucp_id")
|
| | | private Long id;
|
| | |
|
| | | // 用户
|
| | | @Column(name = "ucp_uid")
|
| | | private UserInfo userInfo;
|
| | |
|
| | | // 反馈内容
|
| | | @Column(name = "ucp_content")
|
| | | private String content;
|
| | |
|
| | | // 反馈图片列表
|
| | | @Column(name = "ucp_picture_list")
|
| | | private String pictureList;
|
| | | |
| | | // 创建时间
|
| | | @Column(name = "ucp_create_time")
|
| | | private Date createTime;
|
| | |
|
| | |
|
| | | public Long getId() {
|
| | | return id;
|
| | | }
|
| | |
|
| | |
|
| | | public void setId(Long id) {
|
| | | this.id = id;
|
| | | }
|
| | |
|
| | |
|
| | | public UserInfo getUserInfo() {
|
| | | return userInfo;
|
| | | }
|
| | |
|
| | |
|
| | | public void setUserInfo(UserInfo userInfo) {
|
| | | this.userInfo = userInfo;
|
| | | }
|
| | |
|
| | |
|
| | | public String getContent() {
|
| | | return content;
|
| | | }
|
| | |
|
| | |
|
| | | public void setContent(String content) {
|
| | | this.content = content;
|
| | | }
|
| | |
|
| | |
|
| | | public String getPictureList() {
|
| | | return pictureList;
|
| | | }
|
| | |
|
| | |
|
| | | public void setPictureList(String pictureList) {
|
| | | this.pictureList = pictureList;
|
| | | }
|
| | |
|
| | |
|
| | | public Date getCreateTime() {
|
| | | return createTime;
|
| | | }
|
| | |
|
| | |
|
| | | public void setCreateTime(Date createTime) {
|
| | | this.createTime = createTime;
|
| | | }
|
| | | }
|
| | | package com.yeshi.fanli.entity.bus.user; |
| | | |
| | | import java.util.Date; |
| | | |
| | | import org.yeshi.utils.generater.mybatis.Column; |
| | | import org.yeshi.utils.generater.mybatis.Table; |
| | | |
| | | /** |
| | | * 用户 吐槽内容 |
| | | * @author Administrator |
| | | * |
| | | */ |
| | | @Table("yeshi_ec_user_complaint") |
| | | public class UserComplaint { |
| | | |
| | | @Column(name = "ucp_id") |
| | | private Long id; |
| | | |
| | | // 用户 |
| | | @Column(name = "ucp_uid") |
| | | private UserInfo userInfo; |
| | | |
| | | // 反馈内容 |
| | | @Column(name = "ucp_content") |
| | | private String content; |
| | | |
| | | // 反馈图片列表 |
| | | @Column(name = "ucp_picture_list") |
| | | private String pictureList; |
| | | |
| | | // 创建时间 |
| | | @Column(name = "ucp_create_time") |
| | | private Date createTime; |
| | | |
| | | |
| | | public Long getId() { |
| | | return id; |
| | | } |
| | | |
| | | |
| | | public void setId(Long id) { |
| | | this.id = id; |
| | | } |
| | | |
| | | |
| | | public UserInfo getUserInfo() { |
| | | return userInfo; |
| | | } |
| | | |
| | | |
| | | public void setUserInfo(UserInfo userInfo) { |
| | | this.userInfo = userInfo; |
| | | } |
| | | |
| | | |
| | | public String getContent() { |
| | | return content; |
| | | } |
| | | |
| | | |
| | | public void setContent(String content) { |
| | | this.content = content; |
| | | } |
| | | |
| | | |
| | | public String getPictureList() { |
| | | return pictureList; |
| | | } |
| | | |
| | | |
| | | public void setPictureList(String pictureList) { |
| | | this.pictureList = pictureList; |
| | | } |
| | | |
| | | |
| | | public Date getCreateTime() { |
| | | return createTime; |
| | | } |
| | | |
| | | |
| | | public void setCreateTime(Date createTime) { |
| | | this.createTime = createTime; |
| | | } |
| | | } |