...
|
...
|
@@ -301,7 +301,7 @@ type MiniArticleCreateResponse struct { |
|
|
|
|
|
type MiniArticleGetRequest struct {
|
|
|
Id int64 `path:"id"` //id
|
|
|
CompanyId int64 `path:"-"`
|
|
|
CompanyId int64 `path:",optional"`
|
|
|
}
|
|
|
|
|
|
type MiniArticleGetResponse struct {
|
...
|
...
|
@@ -329,8 +329,8 @@ type ArticleSection struct { |
|
|
}
|
|
|
|
|
|
type MiniArticleSearchMeRequest struct {
|
|
|
AuthorId int64 `json:"-"`
|
|
|
CompanyId int64 `json:"-"`
|
|
|
AuthorId int64 `json:",optional"`
|
|
|
CompanyId int64 `json:",optional"`
|
|
|
Page int `json:"page"`
|
|
|
Size int `json:"size"`
|
|
|
}
|
...
|
...
|
@@ -352,7 +352,7 @@ type ArticleSearchMe struct { |
|
|
|
|
|
type MiniUserLikeArticleRequest struct {
|
|
|
ArticleId int64 `json:"articleId"` // 文章id
|
|
|
CompanyId int64 `json:"-"` //公司id
|
|
|
CompanyId int64 `json:",optional"` //公司id
|
|
|
Page int `json:"page"` //分页,第几页
|
|
|
Size int `json:"size"` //分页,每页几条
|
|
|
}
|
...
|
...
|
@@ -373,7 +373,7 @@ type WhichUserLikeArticle struct { |
|
|
type MiniSetUserLikeRequset struct {
|
|
|
ArticleId int64 `json:"articleId"` //文章id
|
|
|
CommentId int64 `json:"commentId"` //评论id
|
|
|
UserId int64 `json:"-"` //操作人
|
|
|
UserId int64 `json:",optional"` //操作人
|
|
|
Flag int `json:"flag"` //点赞标志 1、点赞 2 、取消点赞
|
|
|
}
|
|
|
|
...
|
...
|
|