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,25 @@
package dto
// 进入房间特效
type EnterRoomSceneDTO struct {
SceneId string
BgImgUrl string // 背景图地址
EnterText string // 进入文字 第一行跟在用户昵称后面
EnterTextColor string
BriefText string // 场景主题描述 第二行
BriefTextColor string
SceneNameColor string // 入场场景上的名字颜色
AnimationFormat string
}
// 房间背景
type RoomBackgroundImgDTO struct {
BackgroundId string
BackgroundName string // 背景名称
BackgroundThumb string // 背景缩略图
BackgroundImgUrl string // 背景URL
GetTypeName string // 获取方式 DEFAULT=默认 ACTIVITY=活动获得 MALL=商城获得
IsGot string // 是否拥有
TagIcon string // 标签
IsUsing string // 是否使用中
}