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

32
pkg/dto/response/Guild.go Normal file
View File

@ -0,0 +1,32 @@
package response
type Guild struct {
GuildId string
GuildName string
GuildBriefDesc string
GuildLogo string
GuildNo string
GuildMemberCnt string
ChairmanName string
ChairmanAvatar string
DefaultRoomId string // 默认房间ID
DefaultRoomLock string
OrderInstrScheme string // 点单须知地址
GuildSkillList []GuildSkill `gorm:"-"`
}
type GuildSkill struct {
GuildId string `json:"-"`
SkillId string
SkillName string
SkillIcon string
SkillSpecialRequirements string
}
type GuildConfig struct {
GuildId string
Key string
Value string
LongValue string
Ext string
}