33 lines
809 B
Go
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
|
|
}
|