|
@@ -140,7 +140,7 @@ type SystemArticleCommentSearchRequest struct { |
|
@@ -140,7 +140,7 @@ type SystemArticleCommentSearchRequest struct { |
|
140
|
Page int `json:"page"`
|
140
|
Page int `json:"page"`
|
|
141
|
Size int `json:"size"`
|
141
|
Size int `json:"size"`
|
|
142
|
ArticleId int64 `json:"articleId"` // 文章ID
|
142
|
ArticleId int64 `json:"articleId"` // 文章ID
|
|
143
|
- TopId int64 `json:"topId"` // 文章顶层ID
|
143
|
+ TopId int64 `json:"topId,optional"` // 文章顶层ID
|
|
144
|
AuthorId int64 `json:"authorId,optional"` // 用户
|
144
|
AuthorId int64 `json:"authorId,optional"` // 用户
|
|
145
|
Show int `json:"show,optional"` // 显示状态
|
145
|
Show int `json:"show,optional"` // 显示状态
|
|
146
|
BeginTime int64 `json:"beginTime,optional"` // 开始时间
|
146
|
BeginTime int64 `json:"beginTime,optional"` // 开始时间
|
|
@@ -316,7 +316,7 @@ type TagCreateRequest struct { |
|
@@ -316,7 +316,7 @@ type TagCreateRequest struct { |
|
316
|
Name string `json:"name"` // 标签名称
|
316
|
Name string `json:"name"` // 标签名称
|
|
317
|
Category string `json:"category"` // 标签分类
|
317
|
Category string `json:"category"` // 标签分类
|
|
318
|
Remark string `json:"remark,optional"` // 备注
|
318
|
Remark string `json:"remark,optional"` // 备注
|
|
319
|
- Other string `json:"other"`
|
319
|
+ Other string `json:"other,optional"`
|
|
320
|
}
|
320
|
}
|
|
321
|
|
321
|
|
|
322
|
type TagCreateResponse struct {
|
322
|
type TagCreateResponse struct {
|
|
@@ -330,7 +330,7 @@ type TagEditRequest struct { |
|
@@ -330,7 +330,7 @@ type TagEditRequest struct { |
|
330
|
Name string `json:"name"` // 标签名称
|
330
|
Name string `json:"name"` // 标签名称
|
|
331
|
Category string `json:"category"` // 标签分类
|
331
|
Category string `json:"category"` // 标签分类
|
|
332
|
Remark string `json:"remark,optional"` // 备注
|
332
|
Remark string `json:"remark,optional"` // 备注
|
|
333
|
- Other string `json:"other"`
|
333
|
+ Other string `json:"other,optional"`
|
|
334
|
}
|
334
|
}
|
|
335
|
|
335
|
|
|
336
|
type TagEditResponse struct {
|
336
|
type TagEditResponse struct {
|