...
|
...
|
@@ -950,6 +950,7 @@ type MiniArticleDraftCreateRequest struct { |
|
|
WhoRead []int64 `json:"whoRead"` // 谁可以看
|
|
|
WhoReview []int64 `json:"whoReview"` // 评论人
|
|
|
Location Location `json:"location"` // 坐标
|
|
|
MatchUrl map[string]string `json:"matchUrl"` // 匹配文章内容中的url文本
|
|
|
}
|
|
|
|
|
|
type MiniArticleDraftCreateResponse struct {
|
...
|
...
|
@@ -967,6 +968,7 @@ type MiniArticleDraftUpdateRequest struct { |
|
|
WhoRead []int64 `json:"whoRead"` // 谁可以看
|
|
|
WhoReview []int64 `json:"whoReview"` // 评论人
|
|
|
Location Location `json:"location"` // 坐标
|
|
|
MatchUrl map[string]string `json:"matchUrl"` // 匹配文章内容中的url文本
|
|
|
}
|
|
|
|
|
|
type MiniArticleDraftUpdateResponse struct {
|
...
|
...
|
@@ -991,7 +993,8 @@ type MiniArticleDraftItem struct { |
|
|
Section []string `json:"section"` // 填写的内容
|
|
|
Title string `json:"title"` // 标题
|
|
|
Images []string `json:"images"` // 图片
|
|
|
CreatedAt int64 `json:"createdAt"`
|
|
|
CreatedAt int64 `json:"createdAt"` //
|
|
|
MatchUrl map[string]string `json:"matchUrl"` //匹配内容中的url文本
|
|
|
}
|
|
|
|
|
|
type MiniArticleDraftGetMeRequest struct {
|
...
|
...
|
@@ -1009,6 +1012,7 @@ type MiniArticleDraftGetMeResponse struct { |
|
|
WhoRead []int64 `json:"whoRead"` // 谁可以看
|
|
|
WhoReview []int64 `json:"whoReview"` // 评论人
|
|
|
Location Location `json:"location"` // 坐标
|
|
|
MatchUrl map[string]string `json:"matchUrl"` //
|
|
|
}
|
|
|
|
|
|
type MiniArticleDraftDeleteMeRequest struct {
|
...
|
...
|
|