...
|
...
|
@@ -254,14 +254,14 @@ type ( |
|
|
// 文章里的评论列表
|
|
|
type (
|
|
|
SystemArticleCommentSearchRequest {
|
|
|
Page int `json:"page"`
|
|
|
Size int `json:"size"`
|
|
|
ArticleId int64 `json:"articleId"` // 文章ID
|
|
|
TopId int64 `json:"topId,optional"` // 文章顶层ID
|
|
|
Author int64 `json:"author,optional"` // 用户
|
|
|
Show int `json:"show,optional"` // 显示状态
|
|
|
BeginTime int64 `json:"beginTime,optional"` // 开始时间
|
|
|
EndTime int64 `json:"endTime,optional"` // 结束时间
|
|
|
Page int `json:"page"`
|
|
|
Size int `json:"size"`
|
|
|
ArticleId int64 `json:"articleId"` // 文章ID
|
|
|
TopId int64 `json:"topId,optional"` // 文章顶层ID
|
|
|
Author int64 `json:"author,optional"` // 用户
|
|
|
Show int `json:"show,optional"` // 显示状态
|
|
|
BeginTime int64 `json:"beginTime,optional"` // 开始时间
|
|
|
EndTime int64 `json:"endTime,optional"` // 结束时间
|
|
|
}
|
|
|
SystemArticleCommentSearchResponse {
|
|
|
Total int64 `json:"total"`
|
...
|
...
|
@@ -362,10 +362,11 @@ type ( |
|
|
// 管理后台变更评论
|
|
|
type (
|
|
|
SystemEditCommentRequest {
|
|
|
CompanyId int64 `json:",optional"`
|
|
|
Id int64 `json:"id"`
|
|
|
Show int `json:"show"` //[1 显示评论] [2: 隐藏评论]
|
|
|
CountAdminLove int `json:"countAdminLove,optional"`
|
|
|
CompanyId int64 `json:",optional"`
|
|
|
Id int64 `json:"id"`
|
|
|
Show int `json:"show"` //[1 显示评论] [2: 隐藏评论]
|
|
|
Content string `json:"content,optional"`
|
|
|
CountAdminLove int `json:"countAdminLove,optional"`
|
|
|
}
|
|
|
|
|
|
SystemEditCommentResponse {
|
...
|
...
|
|