作者 tangxvhui

调试接口

... ... @@ -48,7 +48,7 @@ type (
Name string `json:"name"` // 标签名称
Category string `json:"category"` // 标签分类
Remark string `json:"remark,optional"` // 备注
Other string `json:"other"`
Other string `json:"other,optional"`
}
TagCreateResponse {
... ... @@ -65,7 +65,7 @@ type (
Name string `json:"name"` // 标签名称
Category string `json:"category"` // 标签分类
Remark string `json:"remark,optional"` // 备注
Other string `json:"other"`
Other string `json:"other,optional"`
}
TagEditResponse {
... ...
... ... @@ -140,7 +140,7 @@ type SystemArticleCommentSearchRequest struct {
Page int `json:"page"`
Size int `json:"size"`
ArticleId int64 `json:"articleId"` // 文章ID
TopId int64 `json:"topId"` // 文章顶层ID
TopId int64 `json:"topId,optional"` // 文章顶层ID
AuthorId int64 `json:"authorId,optional"` // 用户
Show int `json:"show,optional"` // 显示状态
BeginTime int64 `json:"beginTime,optional"` // 开始时间
... ... @@ -316,7 +316,7 @@ type TagCreateRequest struct {
Name string `json:"name"` // 标签名称
Category string `json:"category"` // 标签分类
Remark string `json:"remark,optional"` // 备注
Other string `json:"other"`
Other string `json:"other,optional"`
}
type TagCreateResponse struct {
... ... @@ -330,7 +330,7 @@ type TagEditRequest struct {
Name string `json:"name"` // 标签名称
Category string `json:"category"` // 标签分类
Remark string `json:"remark,optional"` // 备注
Other string `json:"other"`
Other string `json:"other,optional"`
}
type TagEditResponse struct {
... ...