...
|
...
|
@@ -16,10 +16,6 @@ info( |
|
|
)
|
|
|
service Core {
|
|
|
|
|
|
@doc "小程序获取回复@人可选列表"
|
|
|
@handler MiniArticleCommentAtUser
|
|
|
post /article_comment/at_user/select (MiniArticleCommentAtUserRequest) returns (MiniArticleCommentAtUserResponse)
|
|
|
|
|
|
@doc "小程序填写文章的评论"
|
|
|
@handler MiniCreateArticleComment
|
|
|
post /article_comment (MiniCreateArticleCommentRequest) returns (MiniCreateArticleCommentResponse)
|
...
|
...
|
@@ -58,17 +54,6 @@ service Core { |
|
|
post /article_comment/search/me (SystemArticleCommentSearchMeRequest) returns (SystemArticleCommentSearchMeResponse)
|
|
|
}
|
|
|
|
|
|
//
|
|
|
// 小程序获取回复@人可选列表
|
|
|
type (
|
|
|
MiniArticleCommentAtUserRequest {
|
|
|
ArtitceId int64 `json:"articleId"`
|
|
|
}
|
|
|
|
|
|
MiniArticleCommentAtUserResponse {
|
|
|
}
|
|
|
)
|
|
|
|
|
|
//评论的填写人
|
|
|
type CommentAuthor {
|
|
|
Id int64 `json:"id"` // 人员id
|
...
|
...
|
@@ -152,7 +137,7 @@ type ( |
|
|
AtWho []CommentAtWho `json:"atWho"` // 填写评论时@的人
|
|
|
CreatedAt int64 `json:"createdAt"` //
|
|
|
MeLoveFlag int `json:"meLoveFlag"` //当前人员对评论的点赞标识 (0 没有点赞 1有点赞)
|
|
|
Content string `json:"content"` // 评论的内容
|
|
|
Content string `json:"content"` // 评论的内容
|
|
|
}
|
|
|
)
|
|
|
|
...
|
...
|
@@ -206,16 +191,16 @@ type ( |
|
|
}
|
|
|
)
|
|
|
|
|
|
type(
|
|
|
SystemArticleCommentSearchMeRequest{
|
|
|
type (
|
|
|
SystemArticleCommentSearchMeRequest {
|
|
|
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"` // 结束时间
|
|
|
}
|
|
|
SystemArticleCommentSearchMeResponse{
|
|
|
SystemArticleCommentSearchMeResponse {
|
|
|
List []ArticleCommentItem `json:"list"`
|
|
|
Total int64 `json:"total"`
|
|
|
Total int64 `json:"total"`
|
|
|
}
|
|
|
) |
|
|
\ No newline at end of file |
...
|
...
|
|