...
|
...
|
@@ -1162,7 +1162,7 @@ type MiniArticleMarkUserReadResponse struct { |
|
|
type MiniArticleDraftCreateRequest struct {
|
|
|
CompanyId int64 `json:",optional"`
|
|
|
AuthorId int64 `json:",optional"` // 发布人
|
|
|
Template int `json:"template"` // 使用哪个模板进行编辑 0、无 1、演绎式 2、归纳式
|
|
|
Template int `json:"template"` // 使用哪个模板进行编辑 0、无 5、演绎式 3、归纳式 10、其他业务类型模板
|
|
|
Section []string `json:"section"` // 填写的内容
|
|
|
Title string `json:"title"` // 标题
|
|
|
Images []string `json:"images"` // 图片
|
...
|
...
|
@@ -1216,6 +1216,7 @@ type MiniArticleDraftItem struct { |
|
|
Images []string `json:"images"` // 图片
|
|
|
CreatedAt int64 `json:"createdAt"` //
|
|
|
MatchUrl map[string]string `json:"matchUrl"` //匹配内容中的url文本
|
|
|
Paragraphs []Paragraph `json:"paragraphs,optional"` // 段落
|
|
|
}
|
|
|
|
|
|
type MiniArticleDraftGetMeRequest struct {
|
...
|
...
|
@@ -1234,6 +1235,7 @@ type MiniArticleDraftGetMeResponse struct { |
|
|
WhoReview []int64 `json:"whoReview"` // 评论人
|
|
|
Location Location `json:"location"` // 坐标
|
|
|
MatchUrl map[string]string `json:"matchUrl"` //
|
|
|
Paragraphs []Paragraph `json:"paragraphs,optional"` // 段落
|
|
|
}
|
|
|
|
|
|
type MiniArticleDraftDeleteMeRequest struct {
|
...
|
...
|
@@ -1547,6 +1549,7 @@ type SystemArticleDraftCreateRequest struct { |
|
|
MatchUrl map[string]string `json:"matchUrl,optional"` // 匹配文章内容中的url文本
|
|
|
Tags []int64 `json:"tags"` // 标签
|
|
|
AccessToken string `header:"x-mmm-accesstoken"` // 授权token
|
|
|
Paragraphs []Paragraph `json:"paragraphs,optional"` // 段落
|
|
|
}
|
|
|
|
|
|
type SystemArticleDraftCreateResponse struct {
|
...
|
...
|
@@ -1576,6 +1579,7 @@ type SystemArticleDraftUpdateRequest struct { |
|
|
MatchUrl map[string]string `json:"matchUrl,optional"` // 匹配文章内容中的url文本
|
|
|
Tags []int64 `json:"tags"` // 标签
|
|
|
AccessToken string `header:"x-mmm-accesstoken"` // 授权token
|
|
|
Paragraphs []Paragraph `json:"paragraphs,optional"` // 段落
|
|
|
}
|
|
|
|
|
|
type SystemArticleDraftUpdateResponse struct {
|
...
|
...
|
@@ -1654,6 +1658,7 @@ type SystemArticleDraftGetResponse struct { |
|
|
WhoReviewInfo []UserShowName `json:"whoReviewInfo"` // 谁可评论
|
|
|
MatchUrl map[string]string `json:"matchUrl,optional"` // 匹配文章内容中的url文本
|
|
|
Tags []int64 `json:"tags"` // 标签
|
|
|
Paragraphs []Paragraph `json:"paragraphs,optional"` // 段落
|
|
|
}
|
|
|
|
|
|
type SystemArticleSearchDeletedRequest struct {
|
...
|
...
|
|