feat(app): update
This commit is contained in:
32
pkg/dto/OrderRateDTO.go
Normal file
32
pkg/dto/OrderRateDTO.go
Normal 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
|
||||
}
|
||||
Reference in New Issue
Block a user