|
@@ -226,14 +226,14 @@ type ( |
|
@@ -226,14 +226,14 @@ type ( |
226
|
// 文章里的评论列表
|
226
|
// 文章里的评论列表
|
227
|
type (
|
227
|
type (
|
228
|
SystemArticleCommentSearchRequest {
|
228
|
SystemArticleCommentSearchRequest {
|
229
|
- Page int `json:"page"`
|
|
|
230
|
- Size int `json:"size"`
|
|
|
231
|
- ArticleId int64 `json:"articleId"` // 文章ID
|
|
|
232
|
- TopId int64 `json:"topId,optional"` // 文章顶层ID
|
|
|
233
|
- Author string `json:"author,optional"` // 用户
|
|
|
234
|
- Show int `json:"show,optional"` // 显示状态
|
|
|
235
|
- BeginTime int64 `json:"beginTime,optional"` // 开始时间
|
|
|
236
|
- EndTime int64 `json:"endTime,optional"` // 结束时间
|
229
|
+ Page int `json:"page"`
|
|
|
230
|
+ Size int `json:"size"`
|
|
|
231
|
+ ArticleId int64 `json:"articleId"` // 文章ID
|
|
|
232
|
+ TopId int64 `json:"topId,optional"` // 文章顶层ID
|
|
|
233
|
+ Author string `json:"author,optional"` // 用户
|
|
|
234
|
+ Show int `json:"show,optional"` // 显示状态
|
|
|
235
|
+ BeginTime int64 `json:"beginTime,optional"` // 开始时间
|
|
|
236
|
+ EndTime int64 `json:"endTime,optional"` // 结束时间
|
237
|
}
|
237
|
}
|
238
|
SystemArticleCommentSearchResponse {
|
238
|
SystemArticleCommentSearchResponse {
|
239
|
Total int64 `json:"total"`
|
239
|
Total int64 `json:"total"`
|
|
@@ -262,7 +262,7 @@ type ( |
|
@@ -262,7 +262,7 @@ type ( |
262
|
Page int `json:"page"`
|
262
|
Page int `json:"page"`
|
263
|
Size int `json:"size"`
|
263
|
Size int `json:"size"`
|
264
|
CompanyId int64 `json:",optional"` //
|
264
|
CompanyId int64 `json:",optional"` //
|
265
|
- TopId int64 `json:"topId"` // 评论的顶层ID
|
265
|
+ TopId int64 `json:"topId,optional"` // 评论的顶层ID
|
266
|
FromUser string `json:"fromUser,optional"` // 用户
|
266
|
FromUser string `json:"fromUser,optional"` // 用户
|
267
|
Show int `json:"show,optional"` // 显示状态
|
267
|
Show int `json:"show,optional"` // 显示状态
|
268
|
BeginTime int64 `json:"beginTime,optional"` // 填写评论的开始时间
|
268
|
BeginTime int64 `json:"beginTime,optional"` // 填写评论的开始时间
|