...
|
...
|
@@ -375,6 +375,11 @@ type MiniUserDepartmentUsersResponse struct { |
|
|
Users []*UserItem `json:"users"`
|
|
|
}
|
|
|
|
|
|
type MiniUsersListRequest struct {
|
|
|
ArticleId int64 `json:"articleId,optional"` // 按文章ID(返回文章可见的用户)
|
|
|
RoleId int64 `json:"roleId,optional"` // 按角色角色关联的用户
|
|
|
}
|
|
|
|
|
|
type MiniUserFollowedSearchRequest struct {
|
|
|
Page int `json:"page,optional"`
|
|
|
Size int `json:"size,optional"`
|
...
|
...
|
@@ -389,6 +394,7 @@ type UserItem struct { |
|
|
Id int64 `json:"id,omitempty"` // 用户ID
|
|
|
CompanyId int64 `json:"companyId,omitempty"` // 公司ID
|
|
|
CompanyName string `json:"companyName,omitempty"` // 公司名称
|
|
|
CompanyCode string `json:"companyCode,omitempty"` // 公司编码(邀请码)
|
|
|
Flag int `json:"flag,omitempty"` // 标识 1:管理员 2:普通用户 (有绑定角色是管理员)
|
|
|
Name string `json:"name,omitempty"` // 名称
|
|
|
Avatar string `json:"avatar,omitempty"` // 头像
|
...
|
...
|
@@ -665,9 +671,10 @@ type MiniArticleGetResponse struct { |
|
|
CountLove int `json:"countLove"` // 点赞数量
|
|
|
CountComment int `json:"countComment"` // 评论数量
|
|
|
CountRead int `json:"countRead"` // 浏览数量
|
|
|
Show int `json:"show"` // 评论的展示状态(0显示、1不显示)
|
|
|
Show int `json:"show"` // 评论的展示状态(1显示、2不显示)
|
|
|
Edit int `json:"edit"` // 文章是否存在变更记录 (0 不存在 1存在)
|
|
|
MeLoveFlag int `json:"meLoveFlag"` // 当前人员对文章的点赞标识 (0 没有点赞 1有点赞)
|
|
|
Tags []string `json:"tags"` //文章的标签
|
|
|
}
|
|
|
|
|
|
type ArticleSection struct {
|
...
|
...
|
@@ -899,15 +906,15 @@ type MiniAllArticleTagResponse struct { |
|
|
}
|
|
|
|
|
|
type ArticleTagGroup struct {
|
|
|
Group string `json:"group"`
|
|
|
Tags []ArticleTagItem `json:"tags"`
|
|
|
Category string `json:"category"`
|
|
|
Tags []ArticleTagItem `json:"tags"`
|
|
|
}
|
|
|
|
|
|
type ArticleTagItem struct {
|
|
|
Id int64 `json:"id"`
|
|
|
Group string `json:"group"`
|
|
|
Name string `json:"name"`
|
|
|
Image string `json:"image"`
|
|
|
Id int64 `json:"id"`
|
|
|
Category string `json:"category"`
|
|
|
Name string `json:"name"`
|
|
|
Image string `json:"image"`
|
|
|
}
|
|
|
|
|
|
type SystemArticleGetRequest struct {
|
...
|
...
|
@@ -1053,12 +1060,13 @@ type MiniHomePageRequest struct { |
|
|
UserId int64 `path:",optional"`
|
|
|
}
|
|
|
|
|
|
type MiniHomePageRespose struct {
|
|
|
Tags []ArticleTagCount `json:"tags"`
|
|
|
type MiniHomePageResponse struct {
|
|
|
TagCategory []string `json:"tagCategory"`
|
|
|
Tags []ArticleTagCount `json:"tags"`
|
|
|
}
|
|
|
|
|
|
type ArticleTagCount struct {
|
|
|
TagGroup string `json:"tagGroup"` // 标签分组
|
|
|
TagCategory string `json:"tagCategory"` // 标签分组
|
|
|
TagId int64 `json:"tagId"` // 标签id
|
|
|
TagImage string `json:"tagImage"` // 对应的图标
|
|
|
TagName string `json:"tagName"` // 标签名称
|
...
|
...
|
@@ -1067,6 +1075,32 @@ type ArticleTagCount struct { |
|
|
ReadArticle int `json:"readArticle"` // 已读的标签数量
|
|
|
}
|
|
|
|
|
|
type MiniSearchArticleRequest struct {
|
|
|
Page int `json:"page"`
|
|
|
Size int `json:"size"`
|
|
|
CompanyId int64 `json:",optional"`
|
|
|
UserId int64 `json:",optional"`
|
|
|
TagGroup string `json:"tagGroup"`
|
|
|
TagId int64 `json:"tagId"`
|
|
|
BeginTime int64 `json:"beginTime"`
|
|
|
EndTime int `json:"endTime"`
|
|
|
SearchWord string `json:"searchWord"`
|
|
|
}
|
|
|
|
|
|
type MiniSearchArticleResponse struct {
|
|
|
Total int `json:"total"`
|
|
|
List []MiniSearchArticleItem `json:"list"`
|
|
|
}
|
|
|
|
|
|
type MiniSearchArticleItem struct {
|
|
|
ArticleId int64 `json:"articleId"`
|
|
|
Title string `json:"title"`
|
|
|
Author string `json:"author"` // 发布人
|
|
|
Images []string `json:"images"`
|
|
|
CreatedAt int64 `json:"createdAt"`
|
|
|
MeReadFlag int `json:"meReadFlag"` //已读标识 [0:未读] [1:已读]
|
|
|
}
|
|
|
|
|
|
type RoleGetRequest struct {
|
|
|
Id int64 `path:"id"`
|
|
|
}
|
...
|
...
|
|