...
|
...
|
@@ -165,14 +165,14 @@ type SystemArticleCommentSearchMeResponse struct { |
|
|
}
|
|
|
|
|
|
type SystemArticleCommentSearchRequest struct {
|
|
|
Page int `json:"page"`
|
|
|
Size int `json:"size"`
|
|
|
ArticleId int64 `json:"articleId"` // 文章ID
|
|
|
TopId int64 `json:"topId,optional"` // 文章顶层ID
|
|
|
Author string `json:"author,optional"` // 用户
|
|
|
Show int `json:"show,optional"` // 显示状态
|
|
|
BeginTime int64 `json:"beginTime,optional"` // 开始时间
|
|
|
EndTime int64 `json:"endTime,optional"` // 结束时间
|
|
|
Page int `json:"page"`
|
|
|
Size int `json:"size"`
|
|
|
ArticleId int64 `json:"articleId"` // 文章ID
|
|
|
TopId int64 `json:"topId,optional"` // 文章顶层ID
|
|
|
Author int64 `json:"author,optional"` // 用户
|
|
|
Show int `json:"show,optional"` // 显示状态
|
|
|
BeginTime int64 `json:"beginTime,optional"` // 开始时间
|
|
|
EndTime int64 `json:"endTime,optional"` // 结束时间
|
|
|
}
|
|
|
|
|
|
type SystemArticleCommentSearchResponse struct {
|
...
|
...
|
@@ -825,6 +825,13 @@ type Location struct { |
|
|
Descript string `json:"descript,optional"` //地点描述
|
|
|
}
|
|
|
|
|
|
type Video struct {
|
|
|
Url string `json:"url"` //视频文件的地址
|
|
|
Cover string `json:"cover"` //封面
|
|
|
Width int `json:"width"` //封面图片宽
|
|
|
Height int `json:"height"` //封面图片长
|
|
|
}
|
|
|
|
|
|
type ArticleAuthor struct {
|
|
|
Id int64 `json:"id"` // 人员id
|
|
|
Name string `json:"name"` // 人员的名字
|
...
|
...
|
@@ -862,6 +869,7 @@ type MiniArticleGetResponse struct { |
|
|
CreatedAt int64 `json:"createdAt"` //文章的发布时间
|
|
|
Section []ArticleSection `json:"section"` //文章的文本内容
|
|
|
Images []string `json:"images"` //图片
|
|
|
Videos []Video `json:"videos"` //视频
|
|
|
WhoRead []int64 `json:"whoRead"` //谁可查看
|
|
|
WhoReview []int64 `json:"whoReview"` //谁可评论
|
|
|
Location Location `json:"location"` //定位坐标
|
...
|
...
|
@@ -1140,6 +1148,7 @@ type SystemArticleGetResponse struct { |
|
|
CreatedAt int64 `json:"createdAt"` // 文章的发布时间
|
|
|
Section []ArticleSection `json:"section"` // 文章的文本内容
|
|
|
Images []string `json:"images"` // 图片
|
|
|
Videos []Video `json:"videos"` // 视频
|
|
|
WhoRead []int64 `json:"whoRead"` // 谁可查看
|
|
|
WhoReadInfo []UserShowName `json:"whoReadInfo"` // 谁可查看
|
|
|
WhoReview []int64 `json:"whoReview"` // 谁可评论
|
...
|
...
|
@@ -1156,7 +1165,7 @@ type SystemArticleGetResponse struct { |
|
|
type SystemArticleSearchRequest struct {
|
|
|
CompanyId int64 `json:"companyId,optional"`
|
|
|
Title string `json:"title,optional"` //标题
|
|
|
Author string `json:"author,optional"` //发布人
|
|
|
Author int64 `json:"author,optional"` //发布人
|
|
|
BeginTime int64 `json:"beginTime,optional"` //开始时间
|
|
|
EndTime int64 `json:"endTime,optional"` //结束时间
|
|
|
Tags []int64 `json:"tags,optional"` //标签
|
...
|
...
|
@@ -1172,11 +1181,12 @@ type SystemArticleSearchResponse struct { |
|
|
type SystemArticleSearch struct {
|
|
|
Id int64 `json:"id"` //id
|
|
|
Title string `json:"title"` //标题
|
|
|
AuthorId int64 `json:"authorId"` //发布人ID
|
|
|
Author string `json:"author"` //发布人
|
|
|
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 []string `json:"tags"` //标签
|
|
|
TargetUser int `json:"targetUser"` //分发方式 [0分发给所有人、1分发给指定的人]
|
...
|
...
|
@@ -1189,6 +1199,7 @@ type SystemArticleUpdateRequest struct { |
|
|
Section []ArticleSection `json:"section"` // 填写的内容
|
|
|
Title string `json:"title"` // 标题
|
|
|
Images []string `json:"images"` // 图片
|
|
|
Videos []Video `json:"video"` // 视频
|
|
|
WhoRead []int64 `json:"whoRead"` // 谁可以看
|
|
|
WhoReview []int64 `json:"whoReview"` // 评论人
|
|
|
TargetUser int `json:"targetUser"` // 分发方式 [0分发给所有人、1分发给指定的人]
|
...
|
...
|
@@ -1203,6 +1214,7 @@ type SystemArticleUpdateResponse struct { |
|
|
Images []string `json:"images"` //图片
|
|
|
CreatedAt int64 `json:"createdAt"` //文章的创建日期
|
|
|
CountLove int `json:"countLove"` //点赞数量
|
|
|
Videos []Video `json:"video"` // 视频
|
|
|
CountComment int `json:"countComment"` //评论数量
|
|
|
Show int `json:"show"` //是否隐藏 [0显示、1不显示]
|
|
|
Tags []int64 `json:"tags"` //标签
|
...
|
...
|
@@ -1236,12 +1248,13 @@ type SystemArticleGetHistoryRequest struct { |
|
|
}
|
|
|
|
|
|
type SystemArticleGetHistoryResponse struct {
|
|
|
Id int64 `json:"id"` // id
|
|
|
ArticleId int64 `json:"articleId"` // 文章ID
|
|
|
Title string `json:"title"` // 标题
|
|
|
CreatedAt int64 `json:"createdAt"` // 文章的发布时间
|
|
|
Section []ArticleSection `json:"section"` // 文章的文本内容
|
|
|
Images []string `json:"images"` // 图片
|
|
|
Id int64 `json:"id"` // id
|
|
|
ArticleId int64 `json:"articleId"` // 文章ID
|
|
|
Title string `json:"title"` // 标题
|
|
|
CreatedAt int64 `json:"createdAt"` // 文章的发布时间
|
|
|
Section []ArticleSection `json:"section"` // 文章的文本内容
|
|
|
Images []string `json:"images"` // 图片
|
|
|
Videos []Video `json:"video"`
|
|
|
WhoRead []int64 `json:"whoRead"` // 谁可查看
|
|
|
WhoReadInfo []UserShowName `json:"whoReadInfo"` // 谁可查看
|
|
|
WhoReview []int64 `json:"whoReview"` // 谁可评论
|
...
|
...
|
|