...
|
...
|
@@ -226,14 +226,14 @@ type ( |
|
|
// 文章里的评论列表
|
|
|
type (
|
|
|
SystemArticleCommentSearchRequest {
|
|
|
Page int `json:"page"`
|
|
|
Size int `json:"size"`
|
|
|
ArticleId int64 `json:"articleId"` // 文章ID
|
|
|
TopId int64 `json:"topId,optional"` // 文章顶层ID
|
|
|
Author string `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 string `json:"author,optional"` // 用户
|
|
|
Show int `json:"show,optional"` // 显示状态
|
|
|
BeginTime int64 `json:"beginTime,optional"` // 开始时间
|
|
|
EndTime int64 `json:"endTime,optional"` // 结束时间
|
|
|
}
|
|
|
SystemArticleCommentSearchResponse {
|
|
|
Total int64 `json:"total"`
|
...
|
...
|
@@ -262,7 +262,7 @@ type ( |
|
|
Page int `json:"page"`
|
|
|
Size int `json:"size"`
|
|
|
CompanyId int64 `json:",optional"` //
|
|
|
TopId int64 `json:"topId"` // 评论的顶层ID
|
|
|
TopId int64 `json:"topId,optional"` // 评论的顶层ID
|
|
|
FromUser string `json:"fromUser,optional"` // 用户
|
|
|
Show int `json:"show,optional"` // 显示状态
|
|
|
BeginTime int64 `json:"beginTime,optional"` // 填写评论的开始时间
|
...
|
...
|
|