feat(app): update
This commit is contained in:
46
pkg/dto/TimelineReplyDTO.go
Normal file
46
pkg/dto/TimelineReplyDTO.go
Normal file
@ -0,0 +1,46 @@
|
||||
package dto
|
||||
|
||||
// 评论对象
|
||||
type TimelineReplyDTO struct {
|
||||
ReplyId string // 评论ID
|
||||
TimelineId string // 动态ID
|
||||
ReplierId string // 评论人ID
|
||||
ReplierName string // 评论人昵称
|
||||
ReplierAvatar string // 评论人头像
|
||||
ReplierAvatarDecoration string // 用户头像框
|
||||
ReplierDecorationFormat string
|
||||
ReplyContent string // 评论内容
|
||||
ToReplyId string // 被评论的帖子ID
|
||||
ToReplierId string // 被评论的用户Id
|
||||
ToReplierName string // 被评论的用户昵称
|
||||
SubReplyCount string // 子评论数
|
||||
ToSubReplyId string // 实际评论得子评论ID
|
||||
IsPraised string // 是否赞过
|
||||
PraisedCount string // 赞的次数
|
||||
CreateTime string
|
||||
SubReplyList []TimelineReplyDTO `json:"SubReplyList,omitempty"` // 子评论列表
|
||||
|
||||
CreateTimeStr string
|
||||
}
|
||||
|
||||
// 动态打赏对象
|
||||
type TimelinePresentDTO struct {
|
||||
Id string // 打赏ID
|
||||
TimelineId string // 动态ID
|
||||
FromUserId string // 打赏人ID
|
||||
FromUserName string // 打赏人姓名
|
||||
FromUserAvatar string // 打赏人头像
|
||||
FromUserAvatarDecoration string // 用户头像框
|
||||
FromUserDecorationFormat string
|
||||
GiftId string // 礼物ID
|
||||
GiftCount string
|
||||
GiftName string // 礼物名称
|
||||
GiftImage string // 礼物图标
|
||||
AnimationFormat string // 动效格式
|
||||
AnimationApngUrl string // 礼物动效地址
|
||||
FillMode string // 填充格式
|
||||
AnimationGifUrl string // gif
|
||||
Diamond string // 钻石数
|
||||
CreateTime string
|
||||
CreateTimeStr string
|
||||
}
|
||||
Reference in New Issue
Block a user