1、修改登录功能并验证,除了支付宝登录其他都已验证
2、完成个人中心的功能,个人主页完成、钱包完成、背包完成
This commit is contained in:
@@ -0,0 +1,114 @@
|
||||
package com.qxcm.moduleutil.bean;
|
||||
|
||||
import android.text.TextUtils;
|
||||
|
||||
public class AttentionResp {
|
||||
|
||||
private String room_id;
|
||||
private String room_name;
|
||||
private String room_code;
|
||||
private String popularity;
|
||||
private String label_name;
|
||||
private String label_icon;
|
||||
private String owner_picture;
|
||||
private String owner_nickname;
|
||||
private int locked;
|
||||
|
||||
private String label_id;
|
||||
|
||||
public String getLabel_id() {
|
||||
return label_id;
|
||||
}
|
||||
|
||||
public void setLabel_id(String label_id) {
|
||||
this.label_id = label_id;
|
||||
}
|
||||
private String cover_picture;
|
||||
|
||||
public String getRoomPicture() {
|
||||
if (!TextUtils.isEmpty(cover_picture)) {
|
||||
return cover_picture;
|
||||
}
|
||||
return owner_picture;
|
||||
}
|
||||
|
||||
public String getCover_picture() {
|
||||
return cover_picture;
|
||||
}
|
||||
|
||||
public void setCover_picture(String cover_picture) {
|
||||
this.cover_picture = cover_picture;
|
||||
}
|
||||
|
||||
public int getLocked() {
|
||||
return locked;
|
||||
}
|
||||
|
||||
public void setLocked(int locked) {
|
||||
this.locked = locked;
|
||||
}
|
||||
|
||||
public String getRoom_id() {
|
||||
return room_id;
|
||||
}
|
||||
|
||||
public void setRoom_id(String room_id) {
|
||||
this.room_id = room_id;
|
||||
}
|
||||
|
||||
public String getRoom_name() {
|
||||
return room_name;
|
||||
}
|
||||
|
||||
public void setRoom_name(String room_name) {
|
||||
this.room_name = room_name;
|
||||
}
|
||||
|
||||
public String getRoom_code() {
|
||||
return room_code;
|
||||
}
|
||||
|
||||
public void setRoom_code(String room_code) {
|
||||
this.room_code = room_code;
|
||||
}
|
||||
|
||||
public String getPopularity() {
|
||||
return popularity;
|
||||
}
|
||||
|
||||
public void setPopularity(String popularity) {
|
||||
this.popularity = popularity;
|
||||
}
|
||||
|
||||
public String getLabel_name() {
|
||||
return label_name;
|
||||
}
|
||||
|
||||
public void setLabel_name(String label_name) {
|
||||
this.label_name = label_name;
|
||||
}
|
||||
|
||||
public String getLabel_icon() {
|
||||
return label_icon;
|
||||
}
|
||||
|
||||
public void setLabel_icon(String label_icon) {
|
||||
this.label_icon = label_icon;
|
||||
}
|
||||
|
||||
public String getOwner_picture() {
|
||||
return owner_picture;
|
||||
}
|
||||
|
||||
public void setOwner_picture(String owner_picture) {
|
||||
this.owner_picture = owner_picture;
|
||||
}
|
||||
|
||||
public String getOwner_nickname() {
|
||||
return owner_nickname;
|
||||
}
|
||||
|
||||
public void setOwner_nickname(String owner_nickname) {
|
||||
this.owner_nickname = owner_nickname;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
package com.qxcm.moduleutil.bean;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class BlackUserBean {
|
||||
private String userName;
|
||||
private String userId;
|
||||
private String userAvatar;
|
||||
private int type;//0:关注;1:黑名单;2:粉丝
|
||||
private int status;//0:未关注 1:已关注
|
||||
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
package com.qxcm.moduleutil.bean;
|
||||
|
||||
public class CheckTxtResp {
|
||||
|
||||
|
||||
private int result;
|
||||
|
||||
public int getResult() {
|
||||
return result;
|
||||
}
|
||||
|
||||
public void setResult(int result) {
|
||||
this.result = result;
|
||||
}
|
||||
}
|
||||
@@ -3,6 +3,9 @@ package com.qxcm.moduleutil.bean;
|
||||
|
||||
import com.qxcm.moduleutil.widget.picker.PickerView;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class DateBean implements PickerView.PickerItem {
|
||||
|
||||
private String text;
|
||||
|
||||
@@ -0,0 +1,51 @@
|
||||
package com.qxcm.moduleutil.bean;
|
||||
|
||||
public class GiftBean {
|
||||
|
||||
private String number;
|
||||
private String gift_id;
|
||||
private String name;
|
||||
private String picture;
|
||||
private String price;
|
||||
|
||||
|
||||
public String getNumber() {
|
||||
return number;
|
||||
}
|
||||
|
||||
public void setNumber(String number) {
|
||||
this.number = number;
|
||||
}
|
||||
|
||||
public String getGift_id() {
|
||||
return gift_id;
|
||||
}
|
||||
|
||||
public void setGift_id(String gift_id) {
|
||||
this.gift_id = gift_id;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getPicture() {
|
||||
return picture;
|
||||
}
|
||||
|
||||
public void setPicture(String picture) {
|
||||
this.picture = picture;
|
||||
}
|
||||
|
||||
public String getPrice() {
|
||||
return price;
|
||||
}
|
||||
|
||||
public void setPrice(String price) {
|
||||
this.price = price;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,42 @@
|
||||
package com.qxcm.moduleutil.bean;
|
||||
|
||||
|
||||
import com.example.moduletablayout.listener.CustomTabEntity;
|
||||
|
||||
/**
|
||||
* 项目名称 qipao-android
|
||||
* 包名:com.qpyy.module.me.bean
|
||||
* 创建人 黄强
|
||||
* 创建时间 2020/12/1 17:40
|
||||
* 描述 describe
|
||||
*/
|
||||
public class HomePageTabBean implements CustomTabEntity {
|
||||
public HomePageTabBean(String title) {
|
||||
this.title = title;
|
||||
}
|
||||
|
||||
public String getTitle() {
|
||||
return title;
|
||||
}
|
||||
|
||||
public void setTitle(String title) {
|
||||
this.title = title;
|
||||
}
|
||||
|
||||
private String title;
|
||||
|
||||
@Override
|
||||
public String getTabTitle() {
|
||||
return title;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getTabSelectedIcon() {
|
||||
return 0;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getTabUnselectedIcon() {
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
package com.qxcm.moduleutil.bean;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
@Data
|
||||
@AllArgsConstructor
|
||||
@NoArgsConstructor
|
||||
public class HomeRoomInfo {
|
||||
private String room_name;
|
||||
private String cover_picture;
|
||||
}
|
||||
@@ -0,0 +1,132 @@
|
||||
package com.qxcm.moduleutil.bean;
|
||||
|
||||
import android.text.TextUtils;
|
||||
|
||||
public class ManageRoomResp {
|
||||
|
||||
private String id;
|
||||
private String room_id;
|
||||
private String room_name;
|
||||
private String room_code;
|
||||
private String popularity;
|
||||
private String label_name;
|
||||
private String label_icon;
|
||||
private String owner_picture;
|
||||
private String owner_nickname;
|
||||
private int sys_type_id;
|
||||
private int locked;
|
||||
private String label_id;
|
||||
|
||||
public String getLabel_id() {
|
||||
return label_id;
|
||||
}
|
||||
|
||||
public void setLabel_id(String label_id) {
|
||||
this.label_id = label_id;
|
||||
}
|
||||
|
||||
private String cover_picture;
|
||||
|
||||
public String getRoomPicture() {
|
||||
if (!TextUtils.isEmpty(cover_picture)) {
|
||||
return cover_picture;
|
||||
}
|
||||
return owner_picture;
|
||||
}
|
||||
|
||||
public String getCover_picture() {
|
||||
return cover_picture;
|
||||
}
|
||||
|
||||
public void setCover_picture(String cover_picture) {
|
||||
this.cover_picture = cover_picture;
|
||||
}
|
||||
|
||||
public int getLocked() {
|
||||
return locked;
|
||||
}
|
||||
|
||||
public void setLocked(int locked) {
|
||||
this.locked = locked;
|
||||
}
|
||||
|
||||
public int getSys_type_id() {
|
||||
return sys_type_id;
|
||||
}
|
||||
|
||||
public void setSys_type_id(int sys_type_id) {
|
||||
this.sys_type_id = sys_type_id;
|
||||
}
|
||||
|
||||
public String getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getRoom_id() {
|
||||
return room_id;
|
||||
}
|
||||
|
||||
public void setRoom_id(String room_id) {
|
||||
this.room_id = room_id;
|
||||
}
|
||||
|
||||
public String getRoom_name() {
|
||||
return room_name;
|
||||
}
|
||||
|
||||
public void setRoom_name(String room_name) {
|
||||
this.room_name = room_name;
|
||||
}
|
||||
|
||||
public String getRoom_code() {
|
||||
return room_code;
|
||||
}
|
||||
|
||||
public void setRoom_code(String room_code) {
|
||||
this.room_code = room_code;
|
||||
}
|
||||
|
||||
public String getPopularity() {
|
||||
return popularity;
|
||||
}
|
||||
|
||||
public void setPopularity(String popularity) {
|
||||
this.popularity = popularity;
|
||||
}
|
||||
|
||||
public String getLabel_name() {
|
||||
return label_name;
|
||||
}
|
||||
|
||||
public void setLabel_name(String label_name) {
|
||||
this.label_name = label_name;
|
||||
}
|
||||
|
||||
public String getLabel_icon() {
|
||||
return label_icon;
|
||||
}
|
||||
|
||||
public void setLabel_icon(String label_icon) {
|
||||
this.label_icon = label_icon;
|
||||
}
|
||||
|
||||
public String getOwner_picture() {
|
||||
return owner_picture;
|
||||
}
|
||||
|
||||
public void setOwner_picture(String owner_picture) {
|
||||
this.owner_picture = owner_picture;
|
||||
}
|
||||
|
||||
public String getOwner_nickname() {
|
||||
return owner_nickname;
|
||||
}
|
||||
|
||||
public void setOwner_nickname(String owner_nickname) {
|
||||
this.owner_nickname = owner_nickname;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
package com.qxcm.moduleutil.bean;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class MyBagBean {
|
||||
private String myBagTitle;
|
||||
private String myBagType;
|
||||
|
||||
public MyBagBean(String myBagTitle, String myBagType) {
|
||||
this.myBagTitle = myBagTitle;
|
||||
this.myBagType = myBagType;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
package com.qxcm.moduleutil.bean;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class MyBagDataBean {
|
||||
private String title;
|
||||
private String giftName;
|
||||
private String time;
|
||||
private String base_image;
|
||||
|
||||
}
|
||||
@@ -0,0 +1,114 @@
|
||||
package com.qxcm.moduleutil.bean;
|
||||
|
||||
import android.text.TextUtils;
|
||||
|
||||
public class MyFootResp {
|
||||
|
||||
private String room_name;
|
||||
private String room_code;
|
||||
private String popularity;
|
||||
private String label_name;
|
||||
private String label_icon;
|
||||
private String owner_picture;
|
||||
private String owner_nickname;
|
||||
private String room_id;
|
||||
private int locked;
|
||||
|
||||
private String cover_picture;
|
||||
private String label_id;
|
||||
|
||||
public String getLabel_id() {
|
||||
return label_id;
|
||||
}
|
||||
|
||||
public void setLabel_id(String label_id) {
|
||||
this.label_id = label_id;
|
||||
}
|
||||
|
||||
public String getRoomPicture() {
|
||||
if (!TextUtils.isEmpty(cover_picture)) {
|
||||
return cover_picture;
|
||||
}
|
||||
return owner_picture;
|
||||
}
|
||||
|
||||
public String getCover_picture() {
|
||||
return cover_picture;
|
||||
}
|
||||
|
||||
public void setCover_picture(String cover_picture) {
|
||||
this.cover_picture = cover_picture;
|
||||
}
|
||||
|
||||
public int getLocked() {
|
||||
return locked;
|
||||
}
|
||||
|
||||
public void setLocked(int locked) {
|
||||
this.locked = locked;
|
||||
}
|
||||
|
||||
public String getRoom_id() {
|
||||
return room_id;
|
||||
}
|
||||
|
||||
public void setRoom_id(String room_id) {
|
||||
this.room_id = room_id;
|
||||
}
|
||||
|
||||
public String getRoom_name() {
|
||||
return room_name;
|
||||
}
|
||||
|
||||
public void setRoom_name(String room_name) {
|
||||
this.room_name = room_name;
|
||||
}
|
||||
|
||||
public String getRoom_code() {
|
||||
return room_code;
|
||||
}
|
||||
|
||||
public void setRoom_code(String room_code) {
|
||||
this.room_code = room_code;
|
||||
}
|
||||
|
||||
public String getPopularity() {
|
||||
return popularity;
|
||||
}
|
||||
|
||||
public void setPopularity(String popularity) {
|
||||
this.popularity = popularity;
|
||||
}
|
||||
|
||||
public String getLabel_name() {
|
||||
return label_name;
|
||||
}
|
||||
|
||||
public void setLabel_name(String label_name) {
|
||||
this.label_name = label_name;
|
||||
}
|
||||
|
||||
public String getLabel_icon() {
|
||||
return label_icon;
|
||||
}
|
||||
|
||||
public void setLabel_icon(String label_icon) {
|
||||
this.label_icon = label_icon;
|
||||
}
|
||||
|
||||
public String getOwner_picture() {
|
||||
return owner_picture;
|
||||
}
|
||||
|
||||
public void setOwner_picture(String owner_picture) {
|
||||
this.owner_picture = owner_picture;
|
||||
}
|
||||
|
||||
public String getOwner_nickname() {
|
||||
return owner_nickname;
|
||||
}
|
||||
|
||||
public void setOwner_nickname(String owner_nickname) {
|
||||
this.owner_nickname = owner_nickname;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,117 @@
|
||||
package com.qxcm.moduleutil.bean;
|
||||
|
||||
public class MyRoomBean {
|
||||
|
||||
/*
|
||||
"room_id": "10184180",
|
||||
"cover_picture": "httpss://osschumeng.oss-cn-beijing.aliyuncs.com/img/e86e2efe3f4412561e9c30326162d946.jpg",
|
||||
"room_name": "钊的房间",
|
||||
"online_num": 0,
|
||||
"label_id": "23",
|
||||
"label_name": "聊天",
|
||||
"label_icon": "",
|
||||
"favorite_count": "0",
|
||||
"come_count": "161",
|
||||
"today_income": 0
|
||||
*/
|
||||
|
||||
private String room_name; //房间名称
|
||||
private int room_id; //房间ID
|
||||
private String label_id; //房间类型
|
||||
private String label_name; //房间类型名称
|
||||
private String cover_picture; //房间图片
|
||||
private String label_icon; //房间类型图标
|
||||
private String online_num; //房间在线人数
|
||||
private String favorite_count; //房间收藏数
|
||||
private String come_count; //房间进入数
|
||||
private Double today_income; //今日收益;
|
||||
private int earnings_ratio;//房间收益比例
|
||||
|
||||
public int getEarnings_ratio() {
|
||||
return earnings_ratio;
|
||||
}
|
||||
|
||||
public void setEarnings_ratio(int earnings_ratio) {
|
||||
this.earnings_ratio = earnings_ratio;
|
||||
}
|
||||
|
||||
public String getRoom_name() {
|
||||
return room_name;
|
||||
}
|
||||
|
||||
public void setRoom_name(String room_name) {
|
||||
this.room_name = room_name;
|
||||
}
|
||||
|
||||
public int getRoom_id() {
|
||||
return room_id;
|
||||
}
|
||||
|
||||
public void setRoom_id(int room_id) {
|
||||
this.room_id = room_id;
|
||||
}
|
||||
|
||||
public String getLabel_id() {
|
||||
return label_id;
|
||||
}
|
||||
|
||||
public void setLabel_id(String label_id) {
|
||||
this.label_id = label_id;
|
||||
}
|
||||
|
||||
public String getLabel_name() {
|
||||
return label_name;
|
||||
}
|
||||
|
||||
public void setLabel_name(String label_name) {
|
||||
this.label_name = label_name;
|
||||
}
|
||||
|
||||
public String getCover_picture() {
|
||||
return cover_picture;
|
||||
}
|
||||
|
||||
public void setCover_picture(String cover_picture) {
|
||||
this.cover_picture = cover_picture;
|
||||
}
|
||||
|
||||
public String getLabel_icon() {
|
||||
return label_icon;
|
||||
}
|
||||
|
||||
public void setLabel_icon(String label_icon) {
|
||||
this.label_icon = label_icon;
|
||||
}
|
||||
|
||||
public String getOnline_num() {
|
||||
return online_num;
|
||||
}
|
||||
|
||||
public void setOnline_num(String online_num) {
|
||||
this.online_num = online_num;
|
||||
}
|
||||
|
||||
public String getFavorite_count() {
|
||||
return favorite_count;
|
||||
}
|
||||
|
||||
public void setFavorite_count(String favorite_count) {
|
||||
this.favorite_count = favorite_count;
|
||||
}
|
||||
|
||||
public String getCome_count() {
|
||||
return come_count;
|
||||
}
|
||||
|
||||
public void setCome_count(String come_count) {
|
||||
this.come_count = come_count;
|
||||
}
|
||||
|
||||
public Double getToday_income() {
|
||||
return today_income;
|
||||
}
|
||||
|
||||
public void setToday_income(Double today_income) {
|
||||
this.today_income = today_income;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,93 @@
|
||||
package com.qxcm.moduleutil.bean;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
public class PhotoWallResp implements Serializable {
|
||||
|
||||
public String getVedio() {
|
||||
return vedio;
|
||||
}
|
||||
|
||||
public void setVedio(String vedio) {
|
||||
this.vedio = vedio;
|
||||
}
|
||||
|
||||
public String getAvatar() {
|
||||
return avatar;
|
||||
}
|
||||
|
||||
public void setAvatar(String avatar) {
|
||||
this.avatar = avatar;
|
||||
}
|
||||
|
||||
public String getVedio_cover() {
|
||||
return vedio_cover;
|
||||
}
|
||||
|
||||
public void setVedio_cover(String vedio_cover) {
|
||||
this.vedio_cover = vedio_cover;
|
||||
}
|
||||
|
||||
public List<GiftResp> getList() {
|
||||
return list;
|
||||
}
|
||||
|
||||
public void setList(List<GiftResp> list) {
|
||||
this.list = list;
|
||||
}
|
||||
|
||||
private String vedio;
|
||||
private String avatar;
|
||||
private String vedio_cover;
|
||||
private List<GiftResp> list;
|
||||
|
||||
public static class GiftResp implements Serializable {
|
||||
public GiftResp(String id, String url, int width, int height) {
|
||||
this.id = id;
|
||||
this.url = url;
|
||||
this.width = width;
|
||||
this.height = height;
|
||||
}
|
||||
|
||||
public String getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getUrl() {
|
||||
return url;
|
||||
}
|
||||
|
||||
public void setUrl(String url) {
|
||||
this.url = url;
|
||||
}
|
||||
|
||||
public int getWidth() {
|
||||
return width;
|
||||
}
|
||||
|
||||
public void setWidth(int width) {
|
||||
this.width = width;
|
||||
}
|
||||
|
||||
public int getHeight() {
|
||||
return height;
|
||||
}
|
||||
|
||||
public void setHeight(int height) {
|
||||
this.height = height;
|
||||
}
|
||||
|
||||
private String id;
|
||||
private String url;
|
||||
private int width;
|
||||
private int height;
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
@@ -0,0 +1,29 @@
|
||||
package com.qxcm.moduleutil.bean;
|
||||
|
||||
import com.chad.library.adapter.base.entity.MultiItemEntity;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* ProjectName: isolated-island
|
||||
* Package: com.yutang.xqipao.data
|
||||
* Description: java类作用描述
|
||||
* Author: 姚闻达
|
||||
* CreateDate: 2020/11/1 10:14
|
||||
* UpdateUser: 更新者
|
||||
* UpdateDate: 2020/11/1 10:14
|
||||
* UpdateRemark: 更新说明
|
||||
* Version: 1.0
|
||||
*/
|
||||
@Data
|
||||
public class RechargeBean implements MultiItemEntity {
|
||||
private int itemViewType;
|
||||
private String goldNum;
|
||||
private String money;
|
||||
private boolean isCustom; // 是否为自定义项
|
||||
|
||||
@Override
|
||||
public int getItemType() {
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,212 @@
|
||||
package com.qxcm.moduleutil.bean;
|
||||
|
||||
import com.chad.library.adapter.base.entity.MultiItemEntity;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public class RoomDetails {
|
||||
/**
|
||||
* list : [{"total_price":416,"total_earning":83.2,"time":"2025-03-07","list":[{"user_head_picture":"https://osschumeng.oss-cn-beijing.aliyuncs.com/admin_images/67932634b1555.png","user_nickname":"用户10137552","get_user_nickname":"用户10137840","gift_name":"退烧药","gift_number":"3","total_price":"297.00","time":"2025-03-07","earning":59.4},{"user_head_picture":"https://osschumeng.oss-cn-beijing.aliyuncs.com/admin_images/67932634b1555.png","user_nickname":"用户10137552","get_user_nickname":"用户10137840","gift_name":"征婚帖","gift_number":"1","total_price":"19.00","time":"2025-03-07","earning":3.8},{"user_head_picture":"https://osschumeng.oss-cn-beijing.aliyuncs.com/admin_images/67932634b1555.png","user_nickname":"用户10137552","get_user_nickname":"用户10137840","gift_name":"香槟","gift_number":"1","total_price":"99.00","time":"2025-03-07","earning":19.8},{"user_head_picture":"https://osschumeng.oss-cn-beijing.aliyuncs.com/admin_images/67932634b1555.png","user_nickname":"钊","get_user_nickname":"用户10137840","gift_name":"小心心","gift_number":"1","total_price":"1.00","time":"2025-03-07","earning":0.2}]}]
|
||||
* total_amount : 416
|
||||
* total_earning : 83.2
|
||||
* room_name : 钊的房间
|
||||
* page : <div> </div>
|
||||
*/
|
||||
|
||||
private double total_amount;
|
||||
private double total_earning;
|
||||
private String room_name;
|
||||
private String page;
|
||||
private List<RoomDetailsList> list;
|
||||
|
||||
public double getTotal_amount() {
|
||||
return total_amount;
|
||||
}
|
||||
|
||||
public void setTotal_amount(double total_amount) {
|
||||
this.total_amount = total_amount;
|
||||
}
|
||||
|
||||
public double getTotal_earning() {
|
||||
return total_earning;
|
||||
}
|
||||
|
||||
public void setTotal_earning(double total_earning) {
|
||||
this.total_earning = total_earning;
|
||||
}
|
||||
|
||||
public String getRoom_name() {
|
||||
return room_name;
|
||||
}
|
||||
|
||||
public void setRoom_name(String room_name) {
|
||||
this.room_name = room_name;
|
||||
}
|
||||
|
||||
public String getPage() {
|
||||
return page;
|
||||
}
|
||||
|
||||
public void setPage(String page) {
|
||||
this.page = page;
|
||||
}
|
||||
|
||||
public List<RoomDetailsList> getList() {
|
||||
return list;
|
||||
}
|
||||
|
||||
public void setList(List<RoomDetailsList> list) {
|
||||
this.list = list;
|
||||
}
|
||||
|
||||
public static class RoomDetailsList implements MultiItemEntity {
|
||||
/**
|
||||
* total_price : 416
|
||||
* total_earning : 83.2
|
||||
* time : 2025-03-07
|
||||
* list : [{"user_head_picture":"https://osschumeng.oss-cn-beijing.aliyuncs.com/admin_images/67932634b1555.png","user_nickname":"用户10137552","get_user_nickname":"用户10137840","gift_name":"退烧药","gift_number":"3","total_price":"297.00","time":"2025-03-07","earning":59.4},{"user_head_picture":"https://osschumeng.oss-cn-beijing.aliyuncs.com/admin_images/67932634b1555.png","user_nickname":"用户10137552","get_user_nickname":"用户10137840","gift_name":"征婚帖","gift_number":"1","total_price":"19.00","time":"2025-03-07","earning":3.8},{"user_head_picture":"https://osschumeng.oss-cn-beijing.aliyuncs.com/admin_images/67932634b1555.png","user_nickname":"用户10137552","get_user_nickname":"用户10137840","gift_name":"香槟","gift_number":"1","total_price":"99.00","time":"2025-03-07","earning":19.8},{"user_head_picture":"https://osschumeng.oss-cn-beijing.aliyuncs.com/admin_images/67932634b1555.png","user_nickname":"钊","get_user_nickname":"用户10137840","gift_name":"小心心","gift_number":"1","total_price":"1.00","time":"2025-03-07","earning":0.2}]
|
||||
*/
|
||||
private int itemViewType = 1;
|
||||
private double total_price;
|
||||
private double total_earning;
|
||||
private String time;
|
||||
private List<RoomDetail> list;
|
||||
|
||||
public double getTotal_price() {
|
||||
return total_price;
|
||||
}
|
||||
|
||||
public void setTotal_price(double total_price) {
|
||||
this.total_price = total_price;
|
||||
}
|
||||
|
||||
public double getTotal_earning() {
|
||||
return total_earning;
|
||||
}
|
||||
|
||||
public void setTotal_earning(double total_earning) {
|
||||
this.total_earning = total_earning;
|
||||
}
|
||||
|
||||
public String getTime() {
|
||||
return time;
|
||||
}
|
||||
|
||||
public void setTime(String time) {
|
||||
this.time = time;
|
||||
}
|
||||
|
||||
public List<RoomDetail> getList() {
|
||||
return list;
|
||||
}
|
||||
|
||||
public void setList(List<RoomDetail> list) {
|
||||
this.list = list;
|
||||
}
|
||||
|
||||
public void setItemViewType(int itemViewType) {
|
||||
this.itemViewType = itemViewType;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getItemType() {
|
||||
return itemViewType;
|
||||
}
|
||||
|
||||
public static class RoomDetail implements MultiItemEntity{
|
||||
/**
|
||||
* user_head_picture : https://osschumeng.oss-cn-beijing.aliyuncs.com/admin_images/67932634b1555.png
|
||||
* user_nickname : 用户10137552
|
||||
* get_user_nickname : 用户10137840
|
||||
* gift_name : 退烧药
|
||||
* gift_number : 3
|
||||
* total_price : 297.00
|
||||
* time : 2025-03-07
|
||||
* earning : 59.4
|
||||
*/
|
||||
private int itemViewType = 2;
|
||||
private String user_head_picture;
|
||||
private String user_nickname;
|
||||
private String get_user_nickname;
|
||||
private String gift_name;
|
||||
private int gift_number;
|
||||
private double total_price;
|
||||
private String time;
|
||||
private double earning;
|
||||
|
||||
|
||||
public String getUser_head_picture() {
|
||||
return user_head_picture;
|
||||
}
|
||||
|
||||
public void setUser_head_picture(String user_head_picture) {
|
||||
this.user_head_picture = user_head_picture;
|
||||
}
|
||||
|
||||
public String getUser_nickname() {
|
||||
return user_nickname;
|
||||
}
|
||||
|
||||
public void setUser_nickname(String user_nickname) {
|
||||
this.user_nickname = user_nickname;
|
||||
}
|
||||
|
||||
public String getGet_user_nickname() {
|
||||
return get_user_nickname;
|
||||
}
|
||||
|
||||
public void setGet_user_nickname(String get_user_nickname) {
|
||||
this.get_user_nickname = get_user_nickname;
|
||||
}
|
||||
|
||||
public String getGift_name() {
|
||||
return gift_name;
|
||||
}
|
||||
|
||||
public void setGift_name(String gift_name) {
|
||||
this.gift_name = gift_name;
|
||||
}
|
||||
|
||||
public int getGift_number() {
|
||||
return gift_number;
|
||||
}
|
||||
|
||||
public void setGift_number(int gift_number) {
|
||||
this.gift_number = gift_number;
|
||||
}
|
||||
|
||||
public double getTotal_price() {
|
||||
return total_price;
|
||||
}
|
||||
|
||||
public void setTotal_price(double total_price) {
|
||||
this.total_price = total_price;
|
||||
}
|
||||
|
||||
public String getTime() {
|
||||
return time;
|
||||
}
|
||||
|
||||
public void setTime(String time) {
|
||||
this.time = time;
|
||||
}
|
||||
|
||||
public double getEarning() {
|
||||
return earning;
|
||||
}
|
||||
|
||||
public void setEarning(double earning) {
|
||||
this.earning = earning;
|
||||
}
|
||||
|
||||
public void setItemViewType(int itemViewType) {
|
||||
this.itemViewType = itemViewType;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getItemType() {
|
||||
return itemViewType;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,26 @@
|
||||
package com.qxcm.moduleutil.bean;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class RoomSubsidy {
|
||||
private String explain;//api/about/showAbout&id=39",//补贴说明 (这是个页面,需要前端拼个域名)
|
||||
|
||||
private LastWeek lastweek;
|
||||
private ThisWeek thisweek;
|
||||
|
||||
|
||||
@Data
|
||||
public static class LastWeek {
|
||||
private double total_transaction;//累计流水
|
||||
private double subsidy_amount; //获得补贴
|
||||
private int status;//发放状态 0未发放,1已发放
|
||||
}
|
||||
|
||||
@Data
|
||||
public static class ThisWeek {
|
||||
private double total_transaction;
|
||||
private double subsidy_amount;
|
||||
private int status;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
package com.qxcm.moduleutil.bean;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class RoomSubsidyDetails {
|
||||
private String room_id;//房间id:214,
|
||||
private String start_time;//开始时间:"2025-04-07",
|
||||
private String end_time;//结束时间:"2025-04-13",
|
||||
private String total_transaction;//: 0, //累计流水
|
||||
private String subsidy_amount;// 0, //获得补贴
|
||||
private String status;//: 0 //0未发放,1已发放
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
package com.qxcm.moduleutil.bean;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
@Data
|
||||
@AllArgsConstructor
|
||||
@NoArgsConstructor
|
||||
public class SocietyBean {
|
||||
private int id;
|
||||
private String name;
|
||||
}
|
||||
@@ -0,0 +1,33 @@
|
||||
package com.qxcm.moduleutil.bean;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class UserBean implements Serializable {
|
||||
|
||||
private int user_id;
|
||||
private int user_code;
|
||||
private String avatar;
|
||||
private String nickname;
|
||||
private String token;
|
||||
private String tencent_im;
|
||||
private String mobile;
|
||||
private int sex;
|
||||
|
||||
private List<MultiUserBean> multi_user;
|
||||
|
||||
@Data
|
||||
private static class MultiUserBean{
|
||||
private String id;
|
||||
private String user_code;
|
||||
private String avatar;
|
||||
private String nickname;
|
||||
private String sex;
|
||||
private String mobile;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
@@ -0,0 +1,53 @@
|
||||
package com.qxcm.moduleutil.bean;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
@Data
|
||||
@AllArgsConstructor
|
||||
@NoArgsConstructor
|
||||
public class UserHomeResp implements Serializable {
|
||||
|
||||
private String user_id;
|
||||
private String user_code;
|
||||
private String head_picture;
|
||||
private String nickname;
|
||||
private String sex;
|
||||
private String signature;
|
||||
private String birthday;
|
||||
private String constellation;
|
||||
private String profession;
|
||||
private String emchat_username;
|
||||
private String nobility_icon;
|
||||
private String nobility_image;
|
||||
private String rank_icon;
|
||||
private String intro_voice;
|
||||
private String intro_voice_time;
|
||||
private String follow;
|
||||
private String follow_count;
|
||||
private String fans_count;
|
||||
private String age;
|
||||
private String city;
|
||||
private String is_online;
|
||||
private String only_friend;
|
||||
private String good_number;
|
||||
private String id_color;
|
||||
private String vedio;
|
||||
private PhotoWallResp user_photo;
|
||||
private String picture;
|
||||
private String charm_icon;
|
||||
private String charm_exp;
|
||||
private String user_title;
|
||||
|
||||
private String room_id_current;//用户当前所在房间ID
|
||||
private HomeRoomInfo room_info;
|
||||
|
||||
private String room_id_owner;//用户自己的房间id 0表示没有创建房间": 0,
|
||||
private String room_name_owner;//用户自己的房间名称
|
||||
|
||||
private int auth_status; // 1:已实名认证 0:未实名认证
|
||||
private SocietyBean society; // 公会信息
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
package com.qxcm.moduleutil.bean;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class UserImgList {
|
||||
private String id;
|
||||
private String url;
|
||||
|
||||
public UserImgList(String id, String url) {
|
||||
this.id = id;
|
||||
this.url = url;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,48 @@
|
||||
package com.qxcm.moduleutil.bean;
|
||||
|
||||
import com.stx.xhb.xbanner.entity.SimpleBannerInfo;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class XBannerData extends SimpleBannerInfo implements Serializable {
|
||||
|
||||
|
||||
private int type;
|
||||
private String url;
|
||||
private String vedioCover;
|
||||
|
||||
public XBannerData(int type, String url, String vedioCover) {
|
||||
this.type = type;
|
||||
this.url = url;
|
||||
this.vedioCover = vedioCover;
|
||||
}
|
||||
|
||||
public String getVedioCover() {
|
||||
return vedioCover;
|
||||
}
|
||||
|
||||
public void setVedioCover(String vedioCover) {
|
||||
this.vedioCover = vedioCover;
|
||||
}
|
||||
|
||||
public int getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
public void setType(int type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public String getUrl() {
|
||||
return url;
|
||||
}
|
||||
|
||||
public void setUrl(String url) {
|
||||
this.url = url;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Object getXBannerUrl() {
|
||||
return url;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,23 @@
|
||||
package com.qxcm.moduleutil.bean.details;
|
||||
|
||||
import com.chad.library.adapter.base.entity.MultiItemEntity;
|
||||
|
||||
public class BaseMultiItemEntity implements MultiItemEntity {
|
||||
public static final int TYPE_A = 1;
|
||||
public static final int TYPE_B = 2;
|
||||
|
||||
private int itemViewType;
|
||||
|
||||
public BaseMultiItemEntity(int itemViewType) {
|
||||
this.itemViewType = itemViewType;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getItemType() {
|
||||
return itemViewType;
|
||||
}
|
||||
}
|
||||
|
||||
// 定义 TypeA 数据模型类
|
||||
|
||||
|
||||
@@ -0,0 +1,25 @@
|
||||
package com.qxcm.moduleutil.bean.details;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public class DataModel {
|
||||
private RoomDeatailList typeA;
|
||||
private List<RoomDeatil> list;
|
||||
|
||||
// 添加相应的 getter 和 setter 方法
|
||||
public RoomDeatailList getTypeA() {
|
||||
return typeA;
|
||||
}
|
||||
|
||||
public void setTypeA(RoomDeatailList typeA) {
|
||||
this.typeA = typeA;
|
||||
}
|
||||
|
||||
public List<RoomDeatil> getList() {
|
||||
return list;
|
||||
}
|
||||
|
||||
public void setList(List<RoomDeatil> list) {
|
||||
this.list = list;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,37 @@
|
||||
package com.qxcm.moduleutil.bean.details;
|
||||
|
||||
public class RoomDeatailList extends BaseMultiItemEntity {
|
||||
private double total_price;
|
||||
private double total_earning;
|
||||
private String time;
|
||||
public RoomDeatailList() {
|
||||
super(BaseMultiItemEntity.TYPE_A);
|
||||
}
|
||||
|
||||
public double getTotal_price() {
|
||||
return total_price;
|
||||
}
|
||||
|
||||
public void setTotal_price(double total_price) {
|
||||
this.total_price = total_price;
|
||||
}
|
||||
|
||||
public double getTotal_earning() {
|
||||
return total_earning;
|
||||
}
|
||||
|
||||
public void setTotal_earning(double total_earning) {
|
||||
this.total_earning = total_earning;
|
||||
}
|
||||
|
||||
public String getTime() {
|
||||
return time;
|
||||
}
|
||||
|
||||
public void setTime(String time) {
|
||||
this.time = time;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -0,0 +1,81 @@
|
||||
package com.qxcm.moduleutil.bean.details;
|
||||
|
||||
public class RoomDeatil extends BaseMultiItemEntity {
|
||||
private String user_head_picture;
|
||||
private String user_nickname;
|
||||
private String get_user_nickname;
|
||||
private String gift_name;
|
||||
private int gift_number;
|
||||
private double total_price;
|
||||
private String time;
|
||||
private double earning;
|
||||
|
||||
public RoomDeatil() {
|
||||
super(BaseMultiItemEntity.TYPE_B);
|
||||
}
|
||||
|
||||
// 添加相应的 getter 和 setter 方法
|
||||
public String getUser_head_picture() {
|
||||
return user_head_picture;
|
||||
}
|
||||
|
||||
public void setUser_head_picture(String user_head_picture) {
|
||||
this.user_head_picture = user_head_picture;
|
||||
}
|
||||
|
||||
public String getUser_nickname() {
|
||||
return user_nickname;
|
||||
}
|
||||
|
||||
public void setUser_nickname(String user_nickname) {
|
||||
this.user_nickname = user_nickname;
|
||||
}
|
||||
|
||||
public String getGet_user_nickname() {
|
||||
return get_user_nickname;
|
||||
}
|
||||
|
||||
public void setGet_user_nickname(String get_user_nickname) {
|
||||
this.get_user_nickname = get_user_nickname;
|
||||
}
|
||||
|
||||
public String getGift_name() {
|
||||
return gift_name;
|
||||
}
|
||||
|
||||
public void setGift_name(String gift_name) {
|
||||
this.gift_name = gift_name;
|
||||
}
|
||||
|
||||
public int getGift_number() {
|
||||
return gift_number;
|
||||
}
|
||||
|
||||
public void setGift_number(int gift_number) {
|
||||
this.gift_number = gift_number;
|
||||
}
|
||||
|
||||
public double getTotal_price() {
|
||||
return total_price;
|
||||
}
|
||||
|
||||
public void setTotal_price(double total_price) {
|
||||
this.total_price = total_price;
|
||||
}
|
||||
|
||||
public String getTime() {
|
||||
return time;
|
||||
}
|
||||
|
||||
public void setTime(String time) {
|
||||
this.time = time;
|
||||
}
|
||||
|
||||
public double getEarning() {
|
||||
return earning;
|
||||
}
|
||||
|
||||
public void setEarning(double earning) {
|
||||
this.earning = earning;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,28 @@
|
||||
package com.qxcm.moduleutil.bean.zhuangb;
|
||||
|
||||
import lombok.Data;
|
||||
/**
|
||||
*@author qx
|
||||
*@data 2025/5/16
|
||||
*@description: 装扮数据
|
||||
*/
|
||||
@Data
|
||||
public class ZhuangBanShangChengBean {
|
||||
|
||||
private int did = 0;
|
||||
private String title = "";
|
||||
private String type = "";
|
||||
private String integral = "";
|
||||
private int period = 0;
|
||||
private String base_image = "";
|
||||
private boolean is_select = false;
|
||||
|
||||
public boolean isIs_select() {
|
||||
return is_select;
|
||||
}
|
||||
|
||||
public void setIs_select(boolean is_select) {
|
||||
this.is_select = is_select;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user