...
|
...
|
@@ -10,9 +10,9 @@ info( |
|
|
|
|
|
// 坐标地点描述
|
|
|
type Location {
|
|
|
Longitude float64 `json:"longitude"` //经度
|
|
|
Latitude float64 `json:"latitude"` //纬度
|
|
|
Descript string `json:"descript"` //地点描述
|
|
|
Longitude float64 `json:"longitude,optional"` //经度
|
|
|
Latitude float64 `json:"latitude,optional"` //纬度
|
|
|
Descript string `json:"descript,optional"` //地点描述
|
|
|
}
|
|
|
|
|
|
// 人员的简单展示信息
|
...
|
...
|
@@ -24,36 +24,36 @@ type Author { |
|
|
Position string `json:"position"` // 职位
|
|
|
}
|
|
|
|
|
|
// 创建发布文章
|
|
|
//小程序端创建发布文章
|
|
|
type (
|
|
|
ArticleCreateRequest {
|
|
|
MiniArticleCreateRequest {
|
|
|
Title string `json:"title"` //标题
|
|
|
Section []string `json:"section"` //文章的文本内容
|
|
|
AuthorId int `json:"authorId"` //发布人id
|
|
|
Images []string `json:"images"` //图片
|
|
|
WhoRead []int `json:"whoRead"` //谁可查看
|
|
|
WhoReview []int `json:"whoReview"` //谁可评论
|
|
|
Location Location `json:"location"` //定位坐标
|
|
|
AuthorId int64 `json:"authorId,optional"` //发布人id
|
|
|
Images []string `json:"images,optional"` //图片
|
|
|
WhoRead []int64 `json:"whoRead,optional"` //谁可查看
|
|
|
WhoReview []int64 `json:"whoReview,optional"` //谁可评论
|
|
|
Location Location `json:"location,optional"` //定位坐标
|
|
|
}
|
|
|
ArticleCreateResponse {
|
|
|
MiniArticleCreateResponse {
|
|
|
Id int64 `json:"id"`
|
|
|
}
|
|
|
)
|
|
|
|
|
|
// 查看文章的详情
|
|
|
//小程序端查看文章的详情
|
|
|
type (
|
|
|
ArticleGetRequest {
|
|
|
Id int64 `json:"id"` //id
|
|
|
MiniArticleGetRequest {
|
|
|
Id int64 `path:"id"` //id
|
|
|
}
|
|
|
ArticleGetResponse {
|
|
|
MiniArticleGetResponse {
|
|
|
Title string `json:"title"` //标题
|
|
|
AuthorId int `json:"authorId"` //发布人id
|
|
|
Author Author `json:"author"` //发布人
|
|
|
CreatedAt int64 `json:"createdAt"` //文章的发布时间
|
|
|
Section []string `json:"section"` //文章的文本内容
|
|
|
Images []string `json:"images"` //图片
|
|
|
WhoRead []int `json:"whoRead"` //谁可查看
|
|
|
WhoReview []int `json:"whoReview"` //谁可评论
|
|
|
WhoRead []int64 `json:"whoRead"` //谁可查看
|
|
|
WhoReview []int64 `json:"whoReview"` //谁可评论
|
|
|
Location Location `json:"location"` //定位坐标
|
|
|
CountLove int `json:"countLove"` // 点赞数量
|
|
|
CountComment int `json:"countComment"` // 评论数量
|
...
|
...
|
@@ -69,9 +69,9 @@ type ( |
|
|
)
|
|
|
service Core {
|
|
|
@doc "小程序创建发布内容"
|
|
|
@handler CreateArticle
|
|
|
post /article (ArticleCreateRequest) returns (ArticleCreateResponse)
|
|
|
@handler MiniCreateArticle
|
|
|
post /article (MiniArticleCreateRequest) returns (MiniArticleCreateResponse)
|
|
|
@doc "小程序获取文章内容详情"
|
|
|
@handler GetArticle
|
|
|
get /article/:id (ArticleGetRequest) returns (ArticleGetResponse)
|
|
|
@handler MiniGetArticle
|
|
|
get /article/:id (MiniArticleGetRequest) returns (MiniArticleGetResponse)
|
|
|
} |
|
|
\ No newline at end of file |
...
|
...
|
|