...
|
...
|
@@ -214,6 +214,7 @@ type TagCreateRequest struct { |
|
|
Name string `json:"name"` // 标签名称
|
|
|
Category string `json:"category"` // 标签分类
|
|
|
Remark string `json:"remark,optional"` // 备注
|
|
|
Other string `json:"other"`
|
|
|
}
|
|
|
|
|
|
type TagCreateResponse struct {
|
...
|
...
|
@@ -227,6 +228,7 @@ type TagEditRequest struct { |
|
|
Name string `json:"name"` // 标签名称
|
|
|
Category string `json:"category"` // 标签分类
|
|
|
Remark string `json:"remark,optional"` // 备注
|
|
|
Other string `json:"other"`
|
|
|
}
|
|
|
|
|
|
type TagEditResponse struct {
|
...
|
...
|
@@ -244,6 +246,7 @@ type TagGetResponse struct { |
|
|
Name string `json:"name"` // 标签名称
|
|
|
Category string `json:"category"` // 标签分类
|
|
|
Remark string `json:"remark"` // 备注
|
|
|
Other string `json:"other"`
|
|
|
}
|
|
|
|
|
|
type TagListRequest struct {
|
...
|
...
|
|