| | |
| | | import java.io.Serializable;
|
| | | import java.math.BigDecimal;
|
| | |
|
| | | import javax.persistence.Column;
|
| | | import javax.persistence.Transient;
|
| | |
|
| | | import com.yeshi.fanli.entity.SystemEnum;
|
| | | import org.springframework.data.annotation.Transient;
|
| | | import org.yeshi.utils.mybatis.Column;
|
| | | import org.yeshi.utils.mybatis.Table;
|
| | |
|
| | | import com.google.gson.annotations.Expose;
|
| | | import com.yeshi.fanli.entity.system.BusinessSystem;
|
| | |
|
| | | /**
|
| | | * 用户信息
|
| | |
| | | this.platform = platform;
|
| | | }
|
| | |
|
| | | @Transient
|
| | | @Expose
|
| | | private String rankIcon;// 等级图标
|
| | |
|
| | | // 性别: 1-女 2-男
|
| | | @Transient
|
| | | @Expose
|
| | | private Integer sex;
|
| | |
|
| | | // 微信号
|
| | | @Transient
|
| | | @Expose
|
| | | private String weiXin;
|
| | |
|
| | | // 二维码
|
| | | @Transient
|
| | | @Expose
|
| | | private String erCode;
|
| | |
|
| | | // 微信提示语
|
| | | @Transient
|
| | | @Expose
|
| | | private String weiXinTip;
|
| | |
|
| | | @Transient
|
| | | @Expose
|
| | | private String rankNamePicture;// 等级名称图片
|
| | | @Transient
|
| | | private String taoBaoUid;// 淘宝的用户ID
|
| | |
|
| | | // 是否为VIP
|
| | | @Transient
|
| | | @Expose
|
| | | private boolean vip;
|
| | |
|