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/OrderRateDTO.go Normal file
View File

@ -0,0 +1,32 @@
package dto
// 订单评论对象
type OrderRateDTO struct {
RateId string
OrderId string
UserSkillId string
BuyerUserId string
BuyerAvatarDecoration string // 用户头像框
BuyerDecorationFormat string
BuyerNickName string
BuyerAvatar string
RateScore string
CreateTime string
ImageUrl []string
RateContent string
IsHidden string
ReplyLst []*RateReply
}
type RateReply struct {
ReplyId string
ReplyRole string
Content string
CreateTime string
ImageUrl []string
NickName string
Avatar string
AvatarDecoration string // 用户头像框
DecorationFormat string
UserId string
}