...
|
...
|
@@ -608,6 +608,7 @@ type UserNewsItem struct { |
|
|
Images []string `json:"images"` // 图片列表
|
|
|
Author UserItem `json:"author"` // 作者
|
|
|
Cover string `json:"cover"` //封面
|
|
|
Attachments []FileInfo `json:"attachments,optional"` // 附件
|
|
|
}
|
|
|
|
|
|
type MiniUserFollowedSearchRequest struct {
|
...
|
...
|
@@ -967,6 +968,7 @@ type MiniArticleCreateRequest struct { |
|
|
WhoReview []int64 `json:"whoReview,optional"` //谁可评论
|
|
|
Location Location `json:"location,optional"` //定位坐标
|
|
|
MatchUrl map[string]string `json:"matchUrl"` // 匹配文章内容中的url文本
|
|
|
Attachments []FileInfo `json:"attachments,optional"` // 附件
|
|
|
Paragraphs []Paragraph `json:"paragraphs,optional"` // 段落
|
|
|
}
|
|
|
|
...
|
...
|
@@ -974,6 +976,11 @@ type MiniArticleCreateResponse struct { |
|
|
Id int64 `json:"id"`
|
|
|
}
|
|
|
|
|
|
type FileInfo struct {
|
|
|
Name string `json:"name"`
|
|
|
Url string `json:"url"`
|
|
|
}
|
|
|
|
|
|
type MiniArticleGetRequest struct {
|
|
|
Id int64 `path:"id"` //id
|
|
|
CompanyId int64 `path:",optional"` //当前公司
|
...
|
...
|
@@ -1002,6 +1009,7 @@ type MiniArticleGetResponse struct { |
|
|
Tags []string `json:"tags"` // 文章的标签
|
|
|
MatchUrl map[string]string `json:"matchUrl"` // 匹配文章内容中的url文本
|
|
|
Cover string `json:"cover"` //封面
|
|
|
Attachments []FileInfo `json:"attachments,optional"` // 附件
|
|
|
}
|
|
|
|
|
|
type ArticleSection struct {
|
...
|
...
|
@@ -1040,6 +1048,7 @@ type ArticleSearchMe struct { |
|
|
IsDel int `json:"isDel"` //是否删除 1-删除 0-否
|
|
|
DeletedType int `json:"deletedType"` //类型 1-运营删除 2-用户删除
|
|
|
Cover string `json:"cover"` //封面
|
|
|
Attachments []FileInfo `json:"attachments,optional"` // 附件
|
|
|
}
|
|
|
|
|
|
type SystemArticleSearchMeRequest struct {
|
...
|
...
|
@@ -1133,6 +1142,7 @@ type MiniArticleBackupItem struct { |
|
|
Action string `json:"action"`
|
|
|
Show int `json:"show"`
|
|
|
Cover string `json:"cover"` //封面
|
|
|
Attachments []FileInfo `json:"attachments,optional"` // 附件
|
|
|
}
|
|
|
|
|
|
type MiniGetArticleBackupRequest struct {
|
...
|
...
|
@@ -1152,6 +1162,7 @@ type MiniGetArticleBackupResponse struct { |
|
|
Action string `json:"action"`
|
|
|
Show int `json:"show"`
|
|
|
Cover string `json:"cover"` //封面
|
|
|
Attachments []FileInfo `json:"attachments,optional"` // 附件
|
|
|
}
|
|
|
|
|
|
type MiniArticleMarkUserReadRequest struct {
|
...
|
...
|
@@ -1176,6 +1187,7 @@ type MiniArticleDraftCreateRequest struct { |
|
|
Location Location `json:"location"` // 坐标
|
|
|
MatchUrl map[string]string `json:"matchUrl"` // 匹配文章内容中的url文本
|
|
|
Paragraphs []Paragraph `json:"paragraphs,optional"` // 段落
|
|
|
Attachments []FileInfo `json:"attachments,optional"` // 附件
|
|
|
}
|
|
|
|
|
|
type MiniArticleDraftCreateResponse struct {
|
...
|
...
|
@@ -1194,6 +1206,7 @@ type MiniArticleDraftUpdateRequest struct { |
|
|
WhoReview []int64 `json:"whoReview"` // 评论人
|
|
|
Location Location `json:"location"` // 坐标
|
|
|
MatchUrl map[string]string `json:"matchUrl"` // 匹配文章内容中的url文本
|
|
|
Attachments []FileInfo `json:"attachments,optional"` // 附件
|
|
|
Paragraphs []Paragraph `json:"paragraphs,optional"` // 段落
|
|
|
}
|
|
|
|
...
|
...
|
@@ -1223,6 +1236,7 @@ type MiniArticleDraftItem struct { |
|
|
MatchUrl map[string]string `json:"matchUrl"` //匹配内容中的url文本
|
|
|
Paragraphs []Paragraph `json:"paragraphs,optional"` // 段落
|
|
|
Cover string `json:"cover"` //封面
|
|
|
Attachments []FileInfo `json:"attachments,optional"` // 附件
|
|
|
}
|
|
|
|
|
|
type MiniArticleDraftGetMeRequest struct {
|
...
|
...
|
@@ -1243,6 +1257,7 @@ type MiniArticleDraftGetMeResponse struct { |
|
|
MatchUrl map[string]string `json:"matchUrl"` //
|
|
|
Paragraphs []Paragraph `json:"paragraphs,optional"` // 段落
|
|
|
Cover string `json:"cover"` //封面
|
|
|
Attachments []FileInfo `json:"attachments,optional"` // 附件
|
|
|
}
|
|
|
|
|
|
type MiniArticleDraftDeleteMeRequest struct {
|
...
|
...
|
@@ -1339,6 +1354,7 @@ type SystemArticleGetResponse struct { |
|
|
Tags []ArticleTagItem `json:"tags"` //标签
|
|
|
TargetUser int `json:"targetUser"` //分发方式 [0分发给所有人、1分发给指定的人]
|
|
|
Cover string `json:"cover"` //封面
|
|
|
Attachments []FileInfo `json:"attachments,optional"` // 附件
|
|
|
}
|
|
|
|
|
|
type SystemArticleSearchRequest struct {
|
...
|
...
|
@@ -1374,6 +1390,7 @@ type SystemArticleSearch struct { |
|
|
TargetUser int `json:"targetUser"` //分发方式 [0分发给所有人、1分发给指定的人]
|
|
|
Operator Operator `json:"operator"` //运营操作人
|
|
|
Source int `json:"source"` //来源[1用户发布、2运营发布]
|
|
|
Attachments []FileInfo `json:"attachments,optional"` // 附件
|
|
|
}
|
|
|
|
|
|
type SystemArticleUpdateRequest struct {
|
...
|
...
|
@@ -1389,6 +1406,7 @@ type SystemArticleUpdateRequest struct { |
|
|
TargetUser int `json:"targetUser"` // 分发方式 [0分发给所有人、1分发给指定的人]
|
|
|
Tags []int64 `json:"tags"` // 标签
|
|
|
AccessToken string `header:"x-mmm-accesstoken"` // 授权token
|
|
|
Attachments []FileInfo `json:"attachments,optional"` // 附件
|
|
|
}
|
|
|
|
|
|
type SystemArticleUpdateResponse struct {
|
...
|
...
|
@@ -1417,6 +1435,7 @@ type SystemArticleCreateRequest struct { |
|
|
MatchUrl map[string]string `json:"matchUrl,optional"` // 匹配文章内容中的url文本
|
|
|
ArticleDraftId int64 `json:"articleDraftId"` // 草稿ID
|
|
|
AccessToken string `header:"x-mmm-accesstoken"` // 授权token
|
|
|
Attachments []FileInfo `json:"attachments,optional"` // 附件
|
|
|
Paragraphs []Paragraph `json:"paragraphs,optional"` // 段落
|
|
|
}
|
|
|
|
...
|
...
|
@@ -1486,6 +1505,7 @@ type SystemArticleGetHistoryResponse struct { |
|
|
TargetUser int `json:"targetUser"` // 分发方式 [0分发给所有人、1分发给指定的人]
|
|
|
Tags []int64 `json:"tags"` // 标签
|
|
|
Cover string `json:"cover"` //封面
|
|
|
Attachments []FileInfo `json:"attachments,optional"` // 附件
|
|
|
}
|
|
|
|
|
|
type SystemArticleRestoreRequest struct {
|
...
|
...
|
@@ -1546,6 +1566,7 @@ type MiniSearchArticleItem struct { |
|
|
CreatedAt int64 `json:"createdAt"`
|
|
|
MeReadFlag int `json:"meReadFlag"` //已读标识 [0:未读] [1:已读]
|
|
|
Cover string `json:"cover"` //封面
|
|
|
Attachments []FileInfo `json:"attachments,optional"` // 附件
|
|
|
}
|
|
|
|
|
|
type SystemArticleDraftCreateRequest struct {
|
...
|
...
|
@@ -1561,6 +1582,7 @@ type SystemArticleDraftCreateRequest struct { |
|
|
Tags []int64 `json:"tags"` // 标签
|
|
|
AccessToken string `header:"x-mmm-accesstoken"` // 授权token
|
|
|
Paragraphs []Paragraph `json:"paragraphs,optional"` // 段落
|
|
|
Attachments []FileInfo `json:"attachments,optional"` // 附件
|
|
|
}
|
|
|
|
|
|
type SystemArticleDraftCreateResponse struct {
|
...
|
...
|
@@ -1591,6 +1613,7 @@ type SystemArticleDraftUpdateRequest struct { |
|
|
Tags []int64 `json:"tags"` // 标签
|
|
|
AccessToken string `header:"x-mmm-accesstoken"` // 授权token
|
|
|
Paragraphs []Paragraph `json:"paragraphs,optional"` // 段落
|
|
|
Attachments []FileInfo `json:"attachments,optional"` // 附件
|
|
|
}
|
|
|
|
|
|
type SystemArticleDraftUpdateResponse struct {
|
...
|
...
|
@@ -1631,6 +1654,7 @@ type SystemArticleDraftSearch struct { |
|
|
Author string `json:"author"` //发布人
|
|
|
UpdatedAt int64 `json:"updatedAt"` //编辑时间
|
|
|
Cover string `json:"cover"` //封面
|
|
|
Attachments []FileInfo `json:"attachments,optional"` // 附件
|
|
|
}
|
|
|
|
|
|
type SystemArticleDraftDeleteRequest struct {
|
...
|
...
|
@@ -1672,6 +1696,7 @@ type SystemArticleDraftGetResponse struct { |
|
|
Tags []int64 `json:"tags"` // 标签
|
|
|
Paragraphs []Paragraph `json:"paragraphs,optional"` // 段落
|
|
|
Cover string `json:"cover"` //封面
|
|
|
Attachments []FileInfo `json:"attachments,optional"` // 附件
|
|
|
}
|
|
|
|
|
|
type SystemArticleSearchDeletedRequest struct {
|
...
|
...
|
|