邀请记录增加详情接口 修改礼物价格显示

This commit is contained in:
yitao_hello
2022-02-25 21:16:28 +08:00
parent ffc8fc4f94
commit 214bc49033
11 changed files with 83 additions and 17 deletions

View File

@@ -21,7 +21,7 @@ data class CpInviteInfo(
val propsId: Int = 0,
val propsName: String = "",
val propsImg: String = "",
val propsPrice: String = "",
val propsPrice: Double=0.0,
val recommenTxtList: List<String>? = null,
val declaration: String = ""
)

View File

@@ -17,7 +17,7 @@ data class CpInvitePageEntity(
val propsId: Int=0,
val propsImg: String="",
val propsName: String="",
val propsPrice: String="",
val propsPrice: Double=0.0,
val recommenTxtList:List<String>?=null,
val recommenTxt:String=""
)

View File

@@ -1,15 +1,17 @@
package com.yizhuan.xchat_android_core.relation.cp
import com.google.gson.annotations.SerializedName
data class UserCpListEntity(
val acceptUid: Long = 0,
val acceptUserAvatar: String = "",
val acceptUserNick: String = "",
val acceptUserSex: Int = 0,//1-男 2女
val createTime: Long=0,
val createTime: Long = 0,
val declaration: String = "",//关系誓言
val cpId: Int = 0,//邀请记录id
val replyExpireTime: Int = 0,
val acceptTime:Long=0,
val acceptTime: Long = 0,
val inviteUid: Long = 0,//邀请人uid
val inviteUserAvatar: String = "",//邀请方头像
val inviteUserNick: String = "",
@@ -18,7 +20,7 @@ data class UserCpListEntity(
val propsId: Int = 0,
val propsImg: String = "",
val propsName: String = "",
val propsPrice: String = "",
val propsPrice: Double = 0.0,
val state: Int = 0,//状态1-邀请中2-CP中3-拒绝4-解绑中5-解绑完成
val unboundUid: Int = 0,//解绑人
val updateTime: Long = 0