...
|
...
|
@@ -140,7 +140,7 @@ type SystemArticleCommentSearchRequest struct { |
|
|
Page int `json:"page"`
|
|
|
Size int `json:"size"`
|
|
|
ArticleId int64 `json:"articleId"` // 文章ID
|
|
|
TopId int64 `json:"topId"` // 文章顶层ID
|
|
|
TopId int64 `json:"topId,optional"` // 文章顶层ID
|
|
|
AuthorId int64 `json:"authorId,optional"` // 用户
|
|
|
Show int `json:"show,optional"` // 显示状态
|
|
|
BeginTime int64 `json:"beginTime,optional"` // 开始时间
|
...
|
...
|
@@ -296,9 +296,9 @@ type SimpleUser struct { |
|
|
Id int64 `json:"id"`
|
|
|
CompanyId int64 `json:"companyId,omitempty"` // 公司ID
|
|
|
CompanyName string `json:"companyName,omitempty"` // 公司名称
|
|
|
Name string `json:"name,omitempty"` // 名称
|
|
|
Avatar string `json:"avatar,omitempty"` // 头像
|
|
|
Position string `json:"position,omitempty"` // 职位
|
|
|
Name string `json:"name"` // 名称
|
|
|
Avatar string `json:"avatar"` // 头像
|
|
|
Position string `json:"position"` // 职位
|
|
|
}
|
|
|
|
|
|
type SimpleArticle struct {
|
...
|
...
|
@@ -316,7 +316,7 @@ type TagCreateRequest struct { |
|
|
Name string `json:"name"` // 标签名称
|
|
|
Category string `json:"category"` // 标签分类
|
|
|
Remark string `json:"remark,optional"` // 备注
|
|
|
Other string `json:"other"`
|
|
|
Other string `json:"other,optional"`
|
|
|
}
|
|
|
|
|
|
type TagCreateResponse struct {
|
...
|
...
|
@@ -330,7 +330,7 @@ type TagEditRequest struct { |
|
|
Name string `json:"name"` // 标签名称
|
|
|
Category string `json:"category"` // 标签分类
|
|
|
Remark string `json:"remark,optional"` // 备注
|
|
|
Other string `json:"other"`
|
|
|
Other string `json:"other,optional"`
|
|
|
}
|
|
|
|
|
|
type TagEditResponse struct {
|
...
|
...
|
@@ -519,10 +519,11 @@ type Account struct { |
|
|
}
|
|
|
|
|
|
type Department struct {
|
|
|
Id int64 `json:"id,omitempty"` // 部门ID
|
|
|
CompanyId int64 `json:"companyId,omitempty"` // 公司ID
|
|
|
ParentId int64 `json:"parentId,omitempty"` // 父级ID
|
|
|
Name string `json:"name,omitempty"` // 部门名称
|
|
|
Id int64 `json:"id,omitempty"` // 部门ID
|
|
|
CompanyId int64 `json:"companyId"` // 公司ID
|
|
|
ParentId int64 `json:"parentId"` // 父级ID
|
|
|
Name string `json:"name"` // 部门名称
|
|
|
UserIds []int64 `json:"userIds"` // 部门下的用户
|
|
|
}
|
|
|
|
|
|
type UserSearchRequest struct {
|
...
|
...
|
@@ -949,7 +950,7 @@ type MiniArticleDraftGetMeRequest struct { |
|
|
type MiniArticleDraftGetMeResponse struct {
|
|
|
Id int64 `json:"id"` //
|
|
|
Template int `json:"template"` // 使用哪个模板进行编辑 0、无 1、演绎式 2、归纳式
|
|
|
Section []string `json:"Section"` // 填写的内容
|
|
|
Section []string `json:"section"` // 填写的内容
|
|
|
Title string `json:"title"` // 标题
|
|
|
Images []string `json:"images"` // 图片
|
|
|
WhoRead []int64 `json:"whoRead"` // 谁可以看
|
...
|
...
|
@@ -1047,6 +1048,7 @@ type SystemArticleGetResponse struct { |
|
|
CountRead int `json:"countRead"` // 浏览数量
|
|
|
Show int `json:"show"` // 评论的展示状态(0显示、1不显示)
|
|
|
Tags []ArticleTagItem `json:"tags"` //标签
|
|
|
TargetUser int `json:"targetUser"` //分发方式 [0分发给所有人、1分发给指定的人]
|
|
|
}
|
|
|
|
|
|
type SystemArticleSearchRequest struct {
|
...
|
...
|
|