| | |
| | | import javax.persistence.Table;
|
| | | import javax.persistence.Transient;
|
| | |
|
| | | import com.google.gson.annotations.Expose;
|
| | |
|
| | | //假用户
|
| | | @Entity
|
| | | @Table(name = "yeshi_ec_sham_user")
|
| | | @org.yeshi.utils.mybatis.Table("yeshi_ec_sham_user")
|
| | | public class ShamUser {
|
| | |
| | | @Column(name = "`id`")
|
| | | private long id;
|
| | |
|
| | | @Expose
|
| | | @Column(name = "`name`")
|
| | | private String name;
|
| | |
|
| | | @Expose
|
| | | @Column(name = "`picUrl`")
|
| | | private String picUrl;
|
| | |
|
| | | @Expose
|
| | | @Transient
|
| | | private String msg;
|
| | |
|
| | | @Expose
|
| | | @Transient
|
| | | private String showId;
|
| | |
|
| | | @Expose
|
| | | @Transient
|
| | | private String shareBonusPic;
|
| | |
|