feat(app): update

This commit is contained in:
Yangtao
2025-11-19 14:24:13 +08:00
parent 1eac66d7fd
commit 0c34585649
329 changed files with 10760 additions and 281 deletions

View File

@ -0,0 +1,42 @@
package response
import "gitea.ddegame.cn/open/servicebase/pkg/dto"
// 获取用户资质页详情的返回对象
type GetUserSkillDetailResponse struct {
UserId string // 用户Id
NickName string // 用户昵称
Avatar string // 用户头像
Gender string // 性别
Birthday string // 生日
OnlineTime string // 在线时间
IsAuth string // 是否身份认证
MeFollowTa string // 是否关注
UserSkillId string // 用户技能ID
SkillName string // 技能名称
SkillMode string // 游戏玩法
SkillLevel string // 等级
SkillCompanionType string //
SkillLevelBgColor string // 等级背景
SkillCertImg string // 资质图
SkillAudioUrl string // 音频Url
AudioTime string // 音频时长
GameRole string // 位置
Price string // 价格
UnitName string // 单位
TotalOrderCount string // 总接单数
RateCount string // 总评价数
AvgRateScore string // 平均分
BriefDesc string // 个人说明
SkillStatus string // 状态 1=正常 2=待审核 3=冻结 4=拒绝
ServiceStatus string // 接单状态 1=接单 0=不接单
SkillLevelIcon string // 等级ICON
GoodRate string
Area string
PlayTimeUnit string
Playing bool
PlayTimeRange []dto.SkillSkuPlayRange
PropDTO []dto.PropDTO `json:"Props,omitempty"` // 个人属性
PriceList []dto.SkuPrice `json:"PriceList,omitempty"` // 价格列表
}