...
|
...
|
@@ -35,15 +35,15 @@ type ( |
|
|
//小程序端查看文章的详情
|
|
|
type (
|
|
|
MiniArticleGetRequest {
|
|
|
Id int64 `path:"id"` //id
|
|
|
CompanyId int64 `path:",optional"`//当前公司
|
|
|
UserId int `path:",optional"` //当前用户
|
|
|
Id int64 `path:"id"` //id
|
|
|
CompanyId int64 `path:",optional"` //当前公司
|
|
|
UserId int `path:",optional"` //当前用户
|
|
|
}
|
|
|
MiniArticleGetResponse {
|
|
|
Id int64 `json:"id"` //id
|
|
|
Title string `json:"title"` //标题
|
|
|
AuthorId int64 `json:"authorId"` //发布人id
|
|
|
Author ArticleAuthor `json:"author"` //发布人
|
|
|
Author ArticleAuthor `json:"author"` //发布人
|
|
|
CreatedAt int64 `json:"createdAt"` //文章的发布时间
|
|
|
Section []ArticleSection `json:"section"` //文章的文本内容
|
|
|
Images []string `json:"images"` //图片
|
...
|
...
|
@@ -55,7 +55,7 @@ type ( |
|
|
CountRead int `json:"countRead"` // 浏览数量
|
|
|
Show int `json:"show"` // 评论的展示状态(0显示、1不显示)
|
|
|
Edit int `json:"edit"` // 文章是否存在变更记录 (0 不存在 1存在)
|
|
|
MeLoveFlag int `json:"meLoveFlag"` // 当前人员对文章的点赞标识 (0 没有点赞 1有点赞)
|
|
|
MeLoveFlag int `json:"meLoveFlag"` // 当前人员对文章的点赞标识 (0 没有点赞 1有点赞)
|
|
|
}
|
|
|
ArticleSection {
|
|
|
Id int64 `json:"id"` //段落id
|
...
|
...
|
@@ -92,9 +92,9 @@ type ( |
|
|
SystemArticleSearchMeRequest {
|
|
|
Page int `json:"page"`
|
|
|
Size int `json:"size"`
|
|
|
AuthorId int64 `json:"authorId"` // 用户
|
|
|
AuthorId int64 `json:"authorId"` // 用户
|
|
|
BeginTime int64 `json:"beginTime,optional"` // 开始时间
|
|
|
EndTime int64 `json:"endTime,optional"` // 结束时间
|
|
|
EndTime int64 `json:"endTime,optional"` // 结束时间
|
|
|
}
|
|
|
SystemArticleSearchMeResponse {
|
|
|
Total int `json:"total"`
|
...
|
...
|
@@ -119,7 +119,7 @@ type ( |
|
|
UserId int64 `json:"userId"` // 人员id
|
|
|
Name string `json:"name"` // 人员名称
|
|
|
Avatar string `json:"avatar"` // 人员头像
|
|
|
Position string `json:"position"` // 职位
|
|
|
Position string `json:"position"` // 职位
|
|
|
CreatedAt int64 `json:"createdAt"` // 点赞记录的时间
|
|
|
}
|
|
|
)
|
...
|
...
|
@@ -271,8 +271,8 @@ type ( |
|
|
// 小程序端获取我的浏览记录
|
|
|
type (
|
|
|
MiniArticleMarkListRequest {
|
|
|
Page int `json:"page"`
|
|
|
Size int `json:"size"`
|
|
|
Page int `json:"page"`
|
|
|
Size int `json:"size"`
|
|
|
}
|
|
|
|
|
|
MiniArticleMarkListResponse {
|
...
|
...
|
@@ -293,41 +293,38 @@ type ( |
|
|
|
|
|
//小程序端设置文章的定性标签
|
|
|
type (
|
|
|
MiniArticleSetTagRequest{
|
|
|
MiniArticleSetTagRequest {
|
|
|
CompanyId int64 `json:",optional"` // 公司id
|
|
|
UserId int64 `json:",optional"` // 公司id
|
|
|
ArticleId int64 `json:"articleId"` // 文章id
|
|
|
TagId int64 `json:"tagId"` // 标签id
|
|
|
}
|
|
|
MiniArticleSetTagResponse{
|
|
|
MiniArticleSetTagResponse {
|
|
|
Id int64 `json:"id"`
|
|
|
}
|
|
|
)
|
|
|
|
|
|
|
|
|
//小程序端获取所有的定性标签
|
|
|
type (
|
|
|
MiniAllArticleTagRequest{
|
|
|
MiniAllArticleTagRequest {
|
|
|
CompanyId int64 `json:",optional"` // 公司id
|
|
|
UserId int64 `json:",optional"` // 公司id
|
|
|
}
|
|
|
MiniAllArticleTagResponse{
|
|
|
TagGroup []ArticleTagGroup `json:"tagGroup"`
|
|
|
}
|
|
|
MiniAllArticleTagResponse {
|
|
|
TagGroup []ArticleTagGroup `json:"tagGroup"`
|
|
|
}
|
|
|
ArticleTagGroup {
|
|
|
Group string `json:"group"`
|
|
|
Tags []ArticleTagItem `json:"tags"`
|
|
|
Group string `json:"group"`
|
|
|
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"`
|
|
|
Group string `json:"group"`
|
|
|
Name string `json:"name"`
|
|
|
Image string `json:"image"`
|
|
|
}
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
//管理后台获取文章详情
|
|
|
type (
|
|
|
SystemArticleGetRequest {
|
...
|
...
|
@@ -336,7 +333,7 @@ type ( |
|
|
}
|
|
|
|
|
|
UserShowName {
|
|
|
Id int `json:"id"`
|
|
|
Id int `json:"id"`
|
|
|
Name string `json:"name"`
|
|
|
}
|
|
|
|
...
|
...
|
@@ -344,7 +341,7 @@ type ( |
|
|
Id int64 `json:"id"` // id
|
|
|
Title string `json:"title"` // 标题
|
|
|
AuthorId int64 `json:"authorId"` // 发布人id
|
|
|
Author ArticleAuthor `json:"author"` // 发布人
|
|
|
Author ArticleAuthor `json:"author"` // 发布人
|
|
|
CreatedAt int64 `json:"createdAt"` // 文章的发布时间
|
|
|
Section []ArticleSection `json:"section"` // 文章的文本内容
|
|
|
Images []string `json:"images"` // 图片
|
...
|
...
|
@@ -357,18 +354,21 @@ type ( |
|
|
CountComment int `json:"countComment"` // 评论数量
|
|
|
CountRead int `json:"countRead"` // 浏览数量
|
|
|
Show int `json:"show"` // 评论的展示状态(0显示、1不显示)
|
|
|
Tags []ArticleTagItem `json:"tags"` //标签
|
|
|
}
|
|
|
)
|
|
|
|
|
|
//管理后台获取文章列表
|
|
|
type (
|
|
|
SystemArticleSearchRequest {
|
|
|
CompanyId int64 `json:"companyId,optional"`
|
|
|
Title string `json:"title,optional"` //标题
|
|
|
Author string `json:"author,optional"` //发布人
|
|
|
PublishDate string `json:"publishDate,optional"` //发布日期
|
|
|
PageNumber int `json:"pageNumber"` //页码
|
|
|
PageSize int `json:"pageSize"` //每页行数
|
|
|
CompanyId int64 `json:"companyId,optional"`
|
|
|
Title string `json:"title,optional"` //标题
|
|
|
Author string `json:"author,optional"` //发布人
|
|
|
BeginTime int64 `json:"beginTime,optional"` //开始时间
|
|
|
EndTime int64 `json:"endTime,optional"` //结束时间
|
|
|
Tags []int64 `json:"tags,optional"` //标签
|
|
|
Page int `json:"page"` //页码
|
|
|
Size int `json:"size"` //每页行数
|
|
|
}
|
|
|
|
|
|
SystemArticleSearchResponse {
|
...
|
...
|
@@ -389,16 +389,17 @@ 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分发给指定的人]
|
|
|
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"` // 标签
|
|
|
}
|
|
|
SystemArticleUpdateResponse {
|
|
|
Id int64 `json:"id"` //id
|
...
|
...
|
@@ -409,19 +410,54 @@ type ( |
|
|
CountLove int `json:"countLove"` //点赞数量
|
|
|
CountComment int `json:"CountComment"` //评论数量
|
|
|
Show int `json:"show"` //是否隐藏 [0显示、1不显示]
|
|
|
Tags []string `json:"tags"` //标签
|
|
|
Tags []int64 `json:"tags"` //标签
|
|
|
TargetUser int `json:"targetUser"` //分发方式 [0分发给所有人、1分发给指定的人]
|
|
|
}
|
|
|
//历史
|
|
|
SystemArticleHistoryRequest {
|
|
|
ArticleId int64 `json:"articleId"` //文章ID
|
|
|
Author string `json:"author,optional"` //发布人
|
|
|
UpdatedAt string `json:"updatedAt,optional"` //修改日期
|
|
|
ArticleId int64 `json:"articleId"` //文章ID
|
|
|
Author string `json:"author,optional"` //发布人
|
|
|
BeginTime int64 `json:"beginTime,optional"` //开始时间
|
|
|
EndTime int64 `json:"endTime,optional"` //结束时间
|
|
|
Page int `json:"page"` //页码
|
|
|
Size int `json:"size"` //每页行数
|
|
|
}
|
|
|
SystemArticleHistoryResponse {
|
|
|
Id int64 `json:"id"` //id
|
|
|
Author string `json:"author"` //编辑人
|
|
|
Action string `json:"action"` //编辑类型
|
|
|
UpdatedAt string `json:"updatedAt"` //编辑时间
|
|
|
Total int `json:"total"`
|
|
|
List []SystemArticleHistory `json:"list"`
|
|
|
}
|
|
|
SystemArticleHistory {
|
|
|
Id int64 `json:"id"` //id
|
|
|
Author string `json:"author"` //编辑人
|
|
|
Action string `json:"action"` //编辑类型
|
|
|
UpdatedAt int64 `json:"updatedAt"` //编辑时间
|
|
|
}
|
|
|
SystemArticleGetHistoryRequest {
|
|
|
Id int64 `path:"id"` //id
|
|
|
CompanyId int64 `path:",optional"`
|
|
|
}
|
|
|
) |
|
|
\ No newline at end of file |
|
|
SystemArticleGetHistoryResponse {
|
|
|
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"` // 图片
|
|
|
WhoRead []int64 `json:"whoRead"` // 谁可查看
|
|
|
WhoReadInfo []UserShowName `json:"whoReadInfo"` // 谁可查看
|
|
|
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分发给指定的人]
|
|
|
}
|
|
|
)
|
|
|
|
|
|
//小程序端 首页数据展示
|
|
|
// 统计各标签下的文章数量,和已被人员阅读的数量
|
|
|
type |
|
|
\ No newline at end of file |
...
|
...
|
|