Files
servicebase/pkg/dto/OrderRateDTO.go
2025-11-19 14:24:13 +08:00

33 lines
809 B
Go

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
}