...
|
...
|
@@ -53,9 +53,10 @@ type ( |
|
|
CountLove int `json:"countLove"` // 点赞数量
|
|
|
CountComment int `json:"countComment"` // 评论数量
|
|
|
CountRead int `json:"countRead"` // 浏览数量
|
|
|
Show int `json:"show"` // 评论的展示状态(0显示、1不显示)
|
|
|
Show int `json:"show"` // 评论的展示状态(1显示、2不显示)
|
|
|
Edit int `json:"edit"` // 文章是否存在变更记录 (0 不存在 1存在)
|
|
|
MeLoveFlag int `json:"meLoveFlag"` // 当前人员对文章的点赞标识 (0 没有点赞 1有点赞)
|
|
|
Tags []string `json:"tags"` //文章的标签
|
|
|
}
|
|
|
ArticleSection {
|
|
|
Id int64 `json:"id"` //段落id
|
...
|
...
|
@@ -281,13 +282,13 @@ type ( |
|
|
}
|
|
|
|
|
|
MiniArticleMarkItem {
|
|
|
Id int64 `json:"id"`
|
|
|
CompanyId int64 `json:"companyId"`
|
|
|
UserId int64 `json:"userId"`
|
|
|
ArticleId int64 `json:"articleId"`
|
|
|
Title string `json:"title"`
|
|
|
Id int64 `json:"id"`
|
|
|
CompanyId int64 `json:"companyId"`
|
|
|
UserId int64 `json:"userId"`
|
|
|
ArticleId int64 `json:"articleId"`
|
|
|
Title string `json:"title"`
|
|
|
Author SimpleUser `json:"author"` // 发布人
|
|
|
UpdatedAt int64 `json:"updatedAt"`
|
|
|
UpdatedAt int64 `json:"updatedAt"`
|
|
|
}
|
|
|
)
|
|
|
|
...
|
...
|
@@ -314,14 +315,14 @@ type ( |
|
|
TagGroup []ArticleTagGroup `json:"tagGroup"`
|
|
|
}
|
|
|
ArticleTagGroup {
|
|
|
Group string `json:"group"`
|
|
|
Category string `json:"category"`
|
|
|
Tags []ArticleTagItem `json:"tags"`
|
|
|
}
|
|
|
ArticleTagItem {
|
|
|
Id int64 `json:"id"`
|
|
|
Group string `json:"group"`
|
|
|
Name string `json:"name"`
|
|
|
Image string `json:"image"`
|
|
|
Id int64 `json:"id"`
|
|
|
Category string `json:"category"`
|
|
|
Name string `json:"name"`
|
|
|
Image string `json:"image"`
|
|
|
}
|
|
|
)
|
|
|
|
...
|
...
|
@@ -389,17 +390,18 @@ type ( |
|
|
}
|
|
|
//编辑
|
|
|
SystemArticleUpdateRequest {
|
|
|
Id int64 `json:"id"`
|
|
|
CompanyId int64 `json:"companyId,optional"`
|
|
|
Template int `json:"template"` // 使用哪个模板进行编辑 0、无 1、演绎式 2、归纳式
|
|
|
Section []ArticleSection `json:"section"` // 填写的内容
|
|
|
Title string `json:"title"` // 标题
|
|
|
Images []string `json:"images"` // 图片
|
|
|
WhoRead []int64 `json:"whoRead"` // 谁可以看
|
|
|
WhoReview []int64 `json:"whoReview"` // 评论人
|
|
|
Location Location `json:"location"` // 坐标
|
|
|
TargetUser int `json:"targetUser"` //分发方式 [0分发给所有人、1分发给指定的人]
|
|
|
Tags []int64 `json:"tags"` // 标签
|
|
|
Id int64 `json:"id"`
|
|
|
CompanyId int64 `json:"companyId,optional"`
|
|
|
Template int `json:"template"` // 使用哪个模板进行编辑 0、无 1、演绎式 2、归纳式
|
|
|
Section []ArticleSection `json:"section"` // 填写的内容
|
|
|
Title string `json:"title"` // 标题
|
|
|
Images []string `json:"images"` // 图片
|
|
|
WhoRead []int64 `json:"whoRead"` // 谁可以看
|
|
|
WhoReview []int64 `json:"whoReview"` // 评论人
|
|
|
Location Location `json:"location"` // 坐标
|
|
|
TargetUser int `json:"targetUser"` // 分发方式 [0分发给所有人、1分发给指定的人]
|
|
|
Tags []int64 `json:"tags"` // 标签
|
|
|
AccessToken string `header:"x-mmm-accesstoken"` // 授权token
|
|
|
}
|
|
|
SystemArticleUpdateResponse {
|
|
|
Id int64 `json:"id"` //id
|
...
|
...
|
@@ -408,7 +410,7 @@ type ( |
|
|
Images []string `json:"images"` //图片
|
|
|
CreatedAt int64 `json:"createdAt"` //文章的创建日期
|
|
|
CountLove int `json:"countLove"` //点赞数量
|
|
|
CountComment int `json:"CountComment"` //评论数量
|
|
|
CountComment int `json:"countComment"` //评论数量
|
|
|
Show int `json:"show"` //是否隐藏 [0显示、1不显示]
|
|
|
Tags []int64 `json:"tags"` //标签
|
|
|
TargetUser int `json:"targetUser"` //分发方式 [0分发给所有人、1分发给指定的人]
|
...
|
...
|
@@ -440,8 +442,6 @@ type ( |
|
|
Id int64 `json:"id"` // id
|
|
|
ArticleId int64 `json:"articleId"` // 文章ID
|
|
|
Title string `json:"title"` // 标题
|
|
|
AuthorId int64 `json:"authorId"` // 发布人id
|
|
|
Author ArticleAuthor `json:"author"` // 发布人
|
|
|
CreatedAt int64 `json:"createdAt"` // 文章的发布时间
|
|
|
Section []ArticleSection `json:"section"` // 文章的文本内容
|
|
|
Images []string `json:"images"` // 图片
|
...
|
...
|
@@ -450,10 +450,66 @@ type ( |
|
|
WhoReview []int64 `json:"whoReview"` // 谁可评论
|
|
|
WhoReviewInfo []UserShowName `json:"whoReviewInfo"` // 谁可评论
|
|
|
Location Location `json:"location"` // 定位坐标
|
|
|
CountLove int `json:"countLove"` // 点赞数量
|
|
|
CountComment int `json:"countComment"` // 评论数量
|
|
|
CountRead int `json:"countRead"` // 浏览数量
|
|
|
Show int `json:"show"` // 评论的展示状态(0显示、1不显示)
|
|
|
TargetUser int `json:"targetUser"` //分发方式 [0分发给所有人、1分发给指定的人]
|
|
|
TargetUser int `json:"targetUser"` // 分发方式 [0分发给所有人、1分发给指定的人]
|
|
|
Tags []int64 `json:"tags"` // 标签
|
|
|
}
|
|
|
SystemArticleRestoreRequest {
|
|
|
Id int64 `json:"id"` //ID
|
|
|
AccessToken string `header:"x-mmm-accesstoken"` // 授权token
|
|
|
}
|
|
|
SystemArticleRestoreResponse {
|
|
|
Id int64 `json:"id"` //ID
|
|
|
ArticleId int64 `json:"articleId"` //文章ID
|
|
|
}
|
|
|
)
|
|
|
|
|
|
//小程序端 首页数据展示
|
|
|
// 统计各标签下的文章数量,和已被人员阅读的数量
|
|
|
type (
|
|
|
MiniHomePageRequest {
|
|
|
CompanyId int64 `path:",optional"`
|
|
|
UserId int64 `path:",optional"`
|
|
|
}
|
|
|
MiniHomePageResponse {
|
|
|
TagCategory []string `json:"tagCategory"`
|
|
|
Tags []ArticleTagCount `json:"tags"`
|
|
|
}
|
|
|
ArticleTagCount {
|
|
|
TagCategory string `json:"tagCategory"` // 标签分组
|
|
|
TagId int64 `json:"tagId"` // 标签id
|
|
|
TagImage string `json:"tagImage"` // 对应的图标
|
|
|
TagName string `json:"tagName"` // 标签名称
|
|
|
TagRemark string `json:"tagRemark"` // 标签备注
|
|
|
TotalArticle int `json:"totalArticle"` // 总的文章数量
|
|
|
ReadArticle int `json:"readArticle"` // 已读的标签数量
|
|
|
}
|
|
|
)
|
|
|
|
|
|
//小程序首页搜索文章
|
|
|
type (
|
|
|
MiniSearchArticleRequest {
|
|
|
Page int `json:"page"`
|
|
|
Size int `json:"size"`
|
|
|
CompanyId int64 `json:",optional"`
|
|
|
UserId int64 `json:",optional"`
|
|
|
TagGroup string `json:"tagGroup"`
|
|
|
TagId int64 `json:"tagId"`
|
|
|
BeginTime int64 `json:"beginTime"`
|
|
|
EndTime int `json:"endTime"`
|
|
|
SearchWord string `json:"searchWord"`
|
|
|
}
|
|
|
//
|
|
|
MiniSearchArticleResponse {
|
|
|
Total int `json:"total"`
|
|
|
List []MiniSearchArticleItem `json:"list"`
|
|
|
}
|
|
|
//
|
|
|
MiniSearchArticleItem{
|
|
|
ArticleId int64 `json:"articleId"`
|
|
|
Title string `json:"title"`
|
|
|
Author string `json:"author"` // 发布人
|
|
|
Images []string `json:"images"`
|
|
|
CreatedAt int64 `json:"createdAt"`
|
|
|
MeReadFlag int `json:"meReadFlag"` //已读标识 [0:未读] [1:已读]
|
|
|
}
|
|
|
) |
|
|
\ No newline at end of file |
...
|
...
|
|