...
|
...
|
@@ -323,6 +323,7 @@ type TagCreateRequest struct { |
|
|
Category string `json:"category"` // 标签分类
|
|
|
Remark string `json:"remark,optional"` // 备注
|
|
|
Other string `json:"other,optional"`
|
|
|
SortBy int `json:"sortBy,optional"` //排序
|
|
|
}
|
|
|
|
|
|
type TagCreateResponse struct {
|
...
|
...
|
@@ -337,6 +338,7 @@ type TagEditRequest struct { |
|
|
Category string `json:"category"` // 标签分类
|
|
|
Remark string `json:"remark,optional"` // 备注
|
|
|
Other string `json:"other,optional"`
|
|
|
SortBy int `json:"sortBy,optional"` // 排序
|
|
|
}
|
|
|
|
|
|
type TagEditResponse struct {
|
...
|
...
|
@@ -355,6 +357,7 @@ type TagGetResponse struct { |
|
|
Category string `json:"category"` // 标签分类
|
|
|
Remark string `json:"remark"` // 备注
|
|
|
Other string `json:"other"`
|
|
|
SortBy int `json:"sortBy,optional"` // 排序
|
|
|
}
|
|
|
|
|
|
type TagListRequest struct {
|
...
|
...
|
@@ -378,6 +381,7 @@ type TagItem struct { |
|
|
Category string `json:"category"` // 标签分类
|
|
|
Remark string `json:"remark"` // 备注
|
|
|
CreatedAt int64 `json:"createdAt"`
|
|
|
SortBy int `json:"sortBy,optional"` // 排序
|
|
|
}
|
|
|
|
|
|
type TagDeleteRequest struct {
|
...
|
...
|
@@ -1075,6 +1079,7 @@ type ArticleTagItem struct { |
|
|
Category string `json:"category"`
|
|
|
Name string `json:"name"`
|
|
|
Image string `json:"image"`
|
|
|
SortBy int `json:"sortBy"`
|
|
|
}
|
|
|
|
|
|
type SystemArticleGetRequest struct {
|
...
|
...
|
|