1、个人信息完善
2、集成聊天功能 3、完成登录
This commit is contained in:
@@ -0,0 +1,88 @@
|
||||
package com.qxcm.moduleutil.bean;
|
||||
|
||||
import com.stx.xhb.xbanner.entity.SimpleBannerInfo;
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
||||
public class BannerModel extends SimpleBannerInfo {
|
||||
|
||||
|
||||
/**
|
||||
* ad_id : 11
|
||||
* type : 2
|
||||
* title : 鱼糖语音·开服送好礼
|
||||
* item_id : 9
|
||||
* link_url : null
|
||||
* content : https://gudao-prod.oss-cn-hangzhou.aliyuncs.com/user-dir/YZrsGTJR5F.jpg
|
||||
* detail_pictures : null
|
||||
*/
|
||||
|
||||
private String ad_id;
|
||||
private String type;
|
||||
private String title;
|
||||
private String item_id;
|
||||
private String link_url;
|
||||
private String content;
|
||||
private ArrayList<String> detail_pictures;
|
||||
|
||||
public String getAd_id() {
|
||||
return ad_id;
|
||||
}
|
||||
|
||||
public void setAd_id(String ad_id) {
|
||||
this.ad_id = ad_id;
|
||||
}
|
||||
|
||||
public String getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
public void setType(String type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public String getTitle() {
|
||||
return title;
|
||||
}
|
||||
|
||||
public void setTitle(String title) {
|
||||
this.title = title;
|
||||
}
|
||||
|
||||
public String getItem_id() {
|
||||
return item_id;
|
||||
}
|
||||
|
||||
public void setItem_id(String item_id) {
|
||||
this.item_id = item_id;
|
||||
}
|
||||
|
||||
public String getLink_url() {
|
||||
return link_url;
|
||||
}
|
||||
|
||||
public void setLink_url(String link_url) {
|
||||
this.link_url = link_url;
|
||||
}
|
||||
|
||||
public String getContent() {
|
||||
return content;
|
||||
}
|
||||
|
||||
public void setContent(String content) {
|
||||
this.content = content;
|
||||
}
|
||||
|
||||
public ArrayList<String> getDetail_pictures() {
|
||||
return detail_pictures;
|
||||
}
|
||||
|
||||
public void setDetail_pictures(ArrayList<String> detail_pictures) {
|
||||
this.detail_pictures = detail_pictures;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Object getXBannerUrl() {
|
||||
return content;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,23 @@
|
||||
package com.qxcm.moduleutil.bean;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import lombok.Data;
|
||||
/**
|
||||
*@author qx
|
||||
*@data 2025/5/27
|
||||
*@description: 礼盒数据
|
||||
*/
|
||||
@Data
|
||||
public class GiftBoxBean {
|
||||
private String newDataJinbi;
|
||||
private List<GiftBean> giftList;
|
||||
@Data
|
||||
public static class GiftBean {
|
||||
private String giftName; //初级礼盒、高级礼盒
|
||||
private String giftTitle; //最高可以获得的金币数
|
||||
private String getGiftTypeName; //满多少个金币
|
||||
private String giftTypeNumber; //当前的百分比
|
||||
private String giftTypeStatus; //是否已经可以
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
package com.qxcm.moduleutil.bean;
|
||||
|
||||
import lombok.Data;
|
||||
/**
|
||||
*@author qx
|
||||
*@data 2025/5/27
|
||||
*@description: 实名认证点击获取返回的参数
|
||||
*/
|
||||
@Data
|
||||
public class RealNameBean {
|
||||
private String userid;
|
||||
private String nonce;
|
||||
private String sign;
|
||||
private String appid;
|
||||
private String orderNo;
|
||||
private String apiVersion;
|
||||
private String licence;
|
||||
private String faceId;
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
package com.qxcm.moduleutil.bean;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class RevenueBean {
|
||||
private String title;
|
||||
private String time;
|
||||
private String money;
|
||||
private String type;
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
package com.qxcm.moduleutil.bean;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TaskDataBean {
|
||||
private String taskName;//任务名称
|
||||
private String taskNumber;//对应的数量
|
||||
private String taskType;//类型,展示不同的按钮:1.观看,2.完成,3.送礼,4.邀请,5.充值,6.任务
|
||||
private String taskPictureUrl;//任务不同的图片地址
|
||||
private String taskReward;//奖励
|
||||
}
|
||||
Reference in New Issue
Block a user