作者 tangxvhui

调试接口

@@ -48,7 +48,7 @@ type ( @@ -48,7 +48,7 @@ type (
48 Name string `json:"name"` // 标签名称 48 Name string `json:"name"` // 标签名称
49 Category string `json:"category"` // 标签分类 49 Category string `json:"category"` // 标签分类
50 Remark string `json:"remark,optional"` // 备注 50 Remark string `json:"remark,optional"` // 备注
51 - Other string `json:"other"` 51 + Other string `json:"other,optional"`
52 } 52 }
53 53
54 TagCreateResponse { 54 TagCreateResponse {
@@ -65,7 +65,7 @@ type ( @@ -65,7 +65,7 @@ type (
65 Name string `json:"name"` // 标签名称 65 Name string `json:"name"` // 标签名称
66 Category string `json:"category"` // 标签分类 66 Category string `json:"category"` // 标签分类
67 Remark string `json:"remark,optional"` // 备注 67 Remark string `json:"remark,optional"` // 备注
68 - Other string `json:"other"` 68 + Other string `json:"other,optional"`
69 } 69 }
70 70
71 TagEditResponse { 71 TagEditResponse {
@@ -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 {