| | |
| | | import org.springframework.data.mongodb.core.mapping.Document;
|
| | | import org.springframework.data.mongodb.core.mapping.Field;
|
| | |
|
| | | import com.yeshi.fanli.entity.bus.user.vip.UserLevelEnum;
|
| | |
|
| | | @Document(collection = "three_sale_focus_info")
|
| | | public class ThreeSaleFocusInfo {
|
| | |
|
| | |
| | |
|
| | | @Field("nickName")
|
| | | private String nickName; // 昵称
|
| | | |
| | | @Field("level")
|
| | | private UserLevelEnum level; // 当前等级
|
| | |
|
| | | @Field("stateValid")
|
| | | private Boolean stateValid; // 有效粉丝
|
| | |
| | |
|
| | | @Field("memoNameSup")
|
| | | private String memoNameSup; // 间接上级备注名
|
| | | |
| | | |
| | |
|
| | | @Field("tagsSup")
|
| | | private String tagsSup; // 间接上级标签
|
| | |
| | | this.tagsSup = tagsSup;
|
| | | }
|
| | |
|
| | | public UserLevelEnum getLevel() {
|
| | | return level;
|
| | | }
|
| | |
|
| | | public void setLevel(UserLevelEnum level) {
|
| | | this.level = level;
|
| | | }
|
| | |
|
| | | }
|