...
|
...
|
@@ -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 {
|
...
|
...
|
@@ -203,7 +203,7 @@ type SystemListCommentRequest struct { |
|
|
Size int `json:"size"`
|
|
|
CompanyId int64 `json:",optional"` //
|
|
|
TopId int64 `json:"topId,optional"` // 评论的顶层ID
|
|
|
FromUser string `json:"fromUser,optional"` // 用户
|
|
|
FromUserId int64 `json:"fromUserId,optional"` // 用户
|
|
|
Show int `json:"show,optional"` // 显示状态
|
|
|
BeginTime int64 `json:"beginTime,optional"` // 填写评论的开始时间
|
|
|
EndTime int64 `json:"endTime,optional"` // 填写评论的结束时间
|
...
|
...
|
@@ -275,6 +275,20 @@ type SystemEditCommentResponse struct { |
|
|
Id int64 `json:"id"`
|
|
|
}
|
|
|
|
|
|
type SystemEditCommentLoveRequest struct {
|
|
|
CompanyId int64 `json:",optional"`
|
|
|
ParamList []SystemEditLove `json:"paramList"`
|
|
|
}
|
|
|
|
|
|
type SystemEditLove struct {
|
|
|
Id int64 `json:"id"`
|
|
|
CountAdminLove int `json:"countAdminLove,optional"`
|
|
|
}
|
|
|
|
|
|
type SystemEditCommentLoveResponse struct {
|
|
|
ParamList []SystemEditLove `json:"paramList"`
|
|
|
}
|
|
|
|
|
|
type MessageRequest struct {
|
|
|
Page int `json:"page"`
|
|
|
Size int `json:"size"`
|
...
|
...
|
@@ -1142,7 +1156,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"` //标签
|
...
|
...
|
@@ -1158,11 +1172,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分发给指定的人]
|
...
|
...
|
|