...
|
...
|
@@ -137,14 +137,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
|
|
|
AuthorId int64 `json:"authorId,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 string `json:"author,optional"` // 用户
|
|
|
Show int `json:"show,optional"` // 显示状态
|
|
|
BeginTime int64 `json:"beginTime,optional"` // 开始时间
|
|
|
EndTime int64 `json:"endTime,optional"` // 结束时间
|
|
|
}
|
|
|
|
|
|
type SystemArticleCommentSearchResponse struct {
|
...
|
...
|
@@ -432,8 +432,9 @@ type MiniUserInfoResponse struct { |
|
|
}
|
|
|
|
|
|
type MiniUserApplyJoinCompanyRequest struct {
|
|
|
Phone string `json:"phone"`
|
|
|
Code string `json:"code"`
|
|
|
Phone string `json:"phone"`
|
|
|
Code string `json:"code"`
|
|
|
IsFromQr bool `json:"isFromQr,optional"` // true:扫码添加 false:手动查找添加
|
|
|
}
|
|
|
|
|
|
type MiniUserApplyJoinCompanyResponse struct {
|
...
|
...
|
@@ -726,6 +727,18 @@ type Company struct { |
|
|
Logo string `json:"logo,omitempty"` // 公司LOGO
|
|
|
}
|
|
|
|
|
|
type CompanyPositionsSearchRequest struct {
|
|
|
}
|
|
|
|
|
|
type CompanyPositionsSearchResponse struct {
|
|
|
List []Position `json:"list"`
|
|
|
Total int64 `json:"total"`
|
|
|
}
|
|
|
|
|
|
type Position struct {
|
|
|
Name string `json:"name"`
|
|
|
}
|
|
|
|
|
|
type Location struct {
|
|
|
Longitude float64 `json:"longitude,optional"` //经度
|
|
|
Latitude float64 `json:"latitude,optional"` //纬度
|
...
|
...
|
|