...
|
...
|
@@ -21,9 +21,10 @@ type MiniCreateArticleCommentRequest struct { |
|
|
SectionId int64 `json:"sectionId"` // 段落id
|
|
|
FromUserId int64 `json:",optional"` // 填写文章的人,服务端自动获取
|
|
|
CompanyId int64 `json:",optional"` // 服务端自动获取
|
|
|
Pid int64 `json:"pid"` // 回复那个评论的id
|
|
|
Pid int64 `json:"pid,optional"` // 回复那个评论的id
|
|
|
Content string `json:"content"` // 评论的内容
|
|
|
AtWho []CommentAtWho `json:"atWho"` // 填写评论时@的人
|
|
|
AtWho []CommentAtWho `json:"atWho,optional"` // 填写评论时@的人
|
|
|
MatchUrl map[string]string `json:"matchUrl,optional"` // 评论内容中的url文本
|
|
|
}
|
|
|
|
|
|
type CommentAtWho struct {
|
...
|
...
|
@@ -47,6 +48,7 @@ type MiniCreateArticleCommentResponse struct { |
|
|
CountUserLove int `json:"countUserLove"` // 用户点赞数量
|
|
|
CountAdminLove int `json:"countAdminLove"` // 运营点赞数量
|
|
|
AtWho []CommentAtWho `json:"atWho"` // 填写评论时@的人
|
|
|
MatchUrl map[string]string `json:"matchUrl"` // 评论内容中的url文本
|
|
|
CreatedAt int64 `json:"createdAt"` //
|
|
|
}
|
|
|
|
...
|
...
|
@@ -85,6 +87,7 @@ type ArticleCommentItem struct { |
|
|
CountUserLove int `json:"countUserLove"` // 用户点赞数量
|
|
|
CountAdminLove int `json:"countAdminLove"` // 运营点赞数量
|
|
|
AtWho []CommentAtWho `json:"atWho"` // 填写评论时@的人
|
|
|
MatchUrl map[string]string `json:"matchUrl"` // 评论内容中的url文本
|
|
|
CreatedAt int64 `json:"createdAt"` //
|
|
|
MeLoveFlag int `json:"meLoveFlag"` //当前人员对评论的点赞标识 (0 没有点赞 1有点赞)
|
|
|
Content string `json:"content"` // 评论的内容
|
...
|
...
|
@@ -172,6 +175,8 @@ type SystemArticleCommentSearchItem struct { |
|
|
CountAdminLove int `json:"countAdminLove"` // 运营点赞数量
|
|
|
CreatedAt int64 `json:"createdAt"` // 评论时间
|
|
|
Content string `json:"content"` // 评论的内容
|
|
|
AtWho []CommentAtWho `json:"atWho"` // 填写评论时@的人
|
|
|
MatchUrl map[string]string `json:"matchUrl"` // 评论内容中的url文本
|
|
|
Show int `json:"show"` // 显示状态
|
|
|
}
|
|
|
|
...
|
...
|
@@ -318,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 {
|
...
|
...
|
@@ -332,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 {
|
...
|
...
|
@@ -350,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 {
|
...
|
...
|
@@ -373,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 {
|
...
|
...
|
@@ -799,6 +808,7 @@ type MiniArticleCreateRequest struct { |
|
|
WhoRead []int64 `json:"whoRead,optional"` //谁可查看
|
|
|
WhoReview []int64 `json:"whoReview,optional"` //谁可评论
|
|
|
Location Location `json:"location,optional"` //定位坐标
|
|
|
MatchUrl map[string]string `json:"matchUrl"` // 匹配文章内容中的url文本
|
|
|
}
|
|
|
|
|
|
type MiniArticleCreateResponse struct {
|
...
|
...
|
@@ -830,6 +840,7 @@ type MiniArticleGetResponse struct { |
|
|
MeLoveFlag int `json:"meLoveFlag"` // 当前人员对文章的点赞标识 (0 没有点赞 1有点赞)
|
|
|
MeFollowFlag int `json:"meFollowFlag"` // 当前人员对作者的关注标识 (0 没有关注 1有关注)
|
|
|
Tags []string `json:"tags"` // 文章的标签
|
|
|
MatchUrl map[string]string `json:"matchUrl"` // 匹配文章内容中的url文本
|
|
|
}
|
|
|
|
|
|
type ArticleSection struct {
|
...
|
...
|
@@ -950,6 +961,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 +979,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 +1004,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 +1023,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 {
|
...
|
...
|
@@ -1071,6 +1086,7 @@ type ArticleTagItem struct { |
|
|
Category string `json:"category"`
|
|
|
Name string `json:"name"`
|
|
|
Image string `json:"image"`
|
|
|
SortBy int `json:"sortBy"`
|
|
|
}
|
|
|
|
|
|
type SystemArticleGetRequest struct {
|
...
|
...
|
@@ -1230,6 +1246,7 @@ type ArticleTagCount struct { |
|
|
TagRemark string `json:"tagRemark"` // 标签备注
|
|
|
TotalArticle int `json:"totalArticle"` // 总的文章数量
|
|
|
ReadArticle int `json:"readArticle"` // 已读的标签数量
|
|
|
SortBy int `json:"sortBy"` // 排序
|
|
|
}
|
|
|
|
|
|
type MiniSearchArticleRequest struct {
|
...
|
...
|
|