| | |
| | | package com.yeshi.fanli.entity.bus.activity;
|
| | |
|
| | | import java.io.Serializable;
|
| | | import java.util.Date;
|
| | |
|
| | | import com.google.gson.annotations.Expose;
|
| | |
| | | *
|
| | | */
|
| | | @Table("yeshi_ec_activity_user")
|
| | | public class ActivityUser {
|
| | | public class ActivityUser implements Serializable{
|
| | |
|
| | | /**
|
| | | * |
| | | */
|
| | | private static final long serialVersionUID = 1L;
|
| | |
|
| | | public ActivityUser() {
|
| | | }
|
| | |
| | | private String portrait;
|
| | | @Column(name = "au_create_time")
|
| | | private Date createTime;
|
| | | |
| | | // 标签
|
| | | @Expose
|
| | | @Column(name = "au_tag")
|
| | | private String tag;
|
| | | |
| | |
|
| | | public String getNickName() {
|
| | | return nickName;
|
| | |
| | | public void setCreateTime(Date createTime) {
|
| | | this.createTime = createTime;
|
| | | }
|
| | |
|
| | | public String getTag() {
|
| | | return tag;
|
| | | }
|
| | |
|
| | | public void setTag(String tag) {
|
| | | this.tag = tag;
|
| | | }
|
| | | }
|