|
|
// Code generated by goctl. DO NOT EDIT.
|
|
|
package types
|
|
|
|
|
|
type Location struct {
|
|
|
Longitude float64 `json:"longitude,optional"` //经度
|
|
|
Latitude float64 `json:"latitude,optional"` //纬度
|
|
|
Descript string `json:"descript,optional"` //地点描述
|
|
|
type MiniArticleCommentAtUserRequest struct {
|
|
|
ArtitceId int64 `json:"articleId"`
|
|
|
}
|
|
|
|
|
|
type Author struct {
|
|
|
type MiniArticleCommentAtUserResponse struct {
|
|
|
}
|
|
|
|
|
|
type CommentAuthor struct {
|
|
|
Id int64 `json:"id"` // 人员id
|
|
|
Name string `json:"name"` // 人员的名字
|
|
|
Avatar string `json:"avatar"` // 人员头像URL
|
|
|
Group string `json:"group"` // 人员的分组
|
|
|
Position string `json:"position"` // 职位
|
|
|
Company string `json:"company"` // 公司
|
|
|
}
|
|
|
|
|
|
type MiniArticleCreateRequest struct {
|
|
|
Title string `json:"title"` //标题
|
|
|
Section []string `json:"section"` //文章的文本内容
|
|
|
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"` //定位坐标
|
|
|
type MiniCreateArticleCommentRequest struct {
|
|
|
ArtitceId int64 `json:"articleId"` // 文章id
|
|
|
SectionId int64 `json:"sectionId"` // 段落id
|
|
|
FromUserId int64 `json:",optional"` // 填写文章的人,服务端自动获取
|
|
|
Pid int64 `json:"commnet"` // 回复那个评论的id
|
|
|
Content string `json:"content"` // 评论的内容
|
|
|
AtWho []int64 `json:"atWho"` // 填写评论时@的人
|
|
|
}
|
|
|
|
|
|
type MiniCreateArticleCommentResponse struct {
|
|
|
Id int64 `json:"id"`
|
|
|
Pid int64 `json:"pid"`
|
|
|
TopId int64 `json:"topId"`
|
|
|
ArtitceId int64 `json:"articleId"` // 文章id
|
|
|
SectionId int64 `json:"sectionId"` // 段落id
|
|
|
FromUserId int64 `json:"fromUserId"` // 填写评论的人
|
|
|
FromUser CommentAuthor `json:"fromUser"` // 填写评论的人
|
|
|
ToUserId int64 `json:"toUserId"` // 回复哪个人
|
|
|
ToUser CommentAuthor `json:"toUser"` // 回复哪个人
|
|
|
SectionContent string `json:"sectionContent"` // 引用的文章内容文本
|
|
|
CountReply int `json:"countReply"` // 回复数量
|
|
|
CountUserLove int `json:"countUserLove"` // 用户点赞数量
|
|
|
CountAdminLove int `json:"countAdminLove"` // 运营点赞数量
|
|
|
AtWho []CommentAuthor `json:"atWho"` // 填写评论时@的人
|
|
|
}
|
|
|
|
|
|
type MiniArticleCreateResponse struct {
|
|
|
Id int64 `json:"id"`
|
|
|
type MessageSystemRequest struct {
|
|
|
Page int `json:"page"`
|
|
|
Size int `json:"size"`
|
|
|
}
|
|
|
|
|
|
type MiniArticleGetRequest struct {
|
|
|
Id int64 `path:"id"` //id
|
|
|
CompanyId int64 `path:",optional"`
|
|
|
type MessageSystemResponse struct {
|
|
|
List []MessageSystemItem `json:"list"`
|
|
|
Total int64 `json:"total"`
|
|
|
}
|
|
|
|
|
|
type MiniArticleGetResponse struct {
|
|
|
Id int64 `json:"id"` //id
|
|
|
Title string `json:"title"` //标题
|
|
|
AuthorId int64 `json:"authorId"` //发布人id
|
|
|
Author Author `json:"author"` //发布人
|
|
|
CreatedAt int64 `json:"createdAt"` //文章的发布时间
|
|
|
Section []ArticleSection `json:"section"` //文章的文本内容
|
|
|
Images []string `json:"images"` //图片
|
|
|
WhoRead []int64 `json:"whoRead"` //谁可查看
|
|
|
WhoReview []int64 `json:"whoReview"` //谁可评论
|
|
|
Location Location `json:"location"` //定位坐标
|
|
|
CountLove int `json:"countLove"` // 点赞数量
|
|
|
CountComment int `json:"countComment"` // 评论数量
|
|
|
CountRead int `json:"countRead"` // 浏览数量
|
|
|
Show int `json:"show"` // 评论的展示状态(0显示、1不显示)
|
|
|
Edit int `json:"edit"` // 文章是否存在变更记录 (0 不存在 1存在)
|
|
|
type MessageSystemItem struct {
|
|
|
Id int64 `json:"id"` // ID
|
|
|
Type int `json:"type"` // 系统分类
|
|
|
Title string `json:"title"` // 标题
|
|
|
Content string `json:"content"` // 内容
|
|
|
CreatedAt int64 `json:"createdAt"` // 创建时间
|
|
|
}
|
|
|
|
|
|
type ArticleSection struct {
|
|
|
Id int64 `json:"id"` //段落id
|
|
|
Content string `json:"content"` // 文本内容
|
|
|
SortBy int `json:"sortBy"` // 排序
|
|
|
TotalComment int `json:"totalComment"` // 评论的数量
|
|
|
type MessageBusinessRequest struct {
|
|
|
Type int `json:"type"`
|
|
|
Page int `json:"page"`
|
|
|
Size int `json:"size"`
|
|
|
}
|
|
|
|
|
|
type MiniArticleSearchMeRequest struct {
|
|
|
AuthorId int64 `json:",optional"`
|
|
|
CompanyId int64 `json:",optional"`
|
|
|
Page int `json:"page"`
|
|
|
Size int `json:"size"`
|
|
|
type MessageBusinessResponse struct {
|
|
|
List []MessageBusinessItem `json:"list"`
|
|
|
Total int64 `json:"total"`
|
|
|
}
|
|
|
|
|
|
type MiniArticleSearchMeResponse struct {
|
|
|
Total int `json:"total"`
|
|
|
List []ArticleSearchMe `json:"list"`
|
|
|
type MessageBusinessItem struct {
|
|
|
Id int64 `json:"id"`
|
|
|
Type int `json:"type"` // 分类 (1回复 2点赞 3被采纳)
|
|
|
OptType int `json:"optType"` // 操作类型(1针对文章、1针对评论、2针对圆桌)
|
|
|
CompanyId int64 `json:"companyId"` // 操作人公司ID
|
|
|
UserId int64 `json:"userId"` // 操作人用户ID
|
|
|
RecipientId int64 `json:"recipientId"` // 接收者ID
|
|
|
ArticleId int64 `json:"articleId"` // 文章ID
|
|
|
CommentId int64 `json:"commentId"` // 评论ID
|
|
|
DiscussionId int64 `json:"discussionId"` // 圆桌ID
|
|
|
DiscussionOpinionId int64 `json:"discussionOpinionId"` // 观点ID
|
|
|
Content string `json:"content"` // 消息内容
|
|
|
CreatedAt int64 `json:"createdAt"` // 创建时间
|
|
|
User *SimpleUser `json:"user"` // 操作人
|
|
|
Article *SimpleArticle `json:"article"` // 文章
|
|
|
Comment *SimpleComment `json:"comment"` // 评论(不一定是自己,可能是被人@到)
|
|
|
}
|
|
|
|
|
|
type ArticleSearchMe struct {
|
|
|
Id int64 `json:"id"` //id
|
|
|
Title string `json:"title"` //标题
|
|
|
Images []string `json:"images"` //图片
|
|
|
CreatedAt int64 `json:"createdAt"` //文章的创建日期
|
|
|
CountLove int `json:"countLove"` //点赞数量
|
|
|
CountComment int `json:"CountComment"` //评论数量
|
|
|
Show int `json:"show"` //是否隐藏 [0显示、1不显示]
|
|
|
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"` // 职位
|
|
|
}
|
|
|
|
|
|
type MiniUserLikeArticleRequest struct {
|
|
|
ArticleId int64 `json:"articleId"` // 文章id
|
|
|
CompanyId int64 `json:",optional"` //公司id
|
|
|
Page int `json:"page"` //分页,第几页
|
|
|
Size int `json:"size"` //分页,每页几条
|
|
|
type SimpleArticle struct {
|
|
|
Id int64 `json:"id"`
|
|
|
Title string `json:"title"` // 文章标题
|
|
|
Summary string `json:"summary"` // 文章概要
|
|
|
CountLove int `json:"countLove"` // 点赞数量
|
|
|
CountComment int `json:"countComment"` // 评论数量
|
|
|
Show int `json:"show"` // 文章的展示状态(0显示、1不显示)
|
|
|
}
|
|
|
|
|
|
type MiniUserLikeArticleResponse struct {
|
|
|
Total int64 `json:"total"` //总数
|
|
|
List []WhichUserLikeArticle `json:"list"` //列表
|
|
|
type TagCreateRequest struct {
|
|
|
CompanyId int64 `json:"companyId"`
|
|
|
Image string `json:"image"`
|
|
|
Name string `json:"name"` // 标签名称
|
|
|
Group string `json:"group"` // 标签分类
|
|
|
Remark string `json:"remark,optional"` // 备注
|
|
|
}
|
|
|
|
|
|
type WhichUserLikeArticle struct {
|
|
|
ArticleId int64 `json:"articleId"` // 文章id
|
|
|
UserId int64 `json:"userId"` // 人员id
|
|
|
Name string `json:"name"` // 人员名称
|
|
|
Avatar string `json:"avatar"` // 人员头像
|
|
|
CreatedAt int64 `json:"createdAt"` // 点赞记录的时间
|
|
|
type TagCreateResponse struct {
|
|
|
Id int64 `json:"id"`
|
|
|
}
|
|
|
|
|
|
type MiniSetUserLikeRequset struct {
|
|
|
ArticleId int64 `json:"articleId"` //文章id
|
|
|
CommentId int64 `json:"commentId"` //评论id
|
|
|
UserId int64 `json:",optional"` //操作人
|
|
|
Flag int `json:"flag"` //点赞标志 1、点赞 2 、取消点赞
|
|
|
type TagEditRequest struct {
|
|
|
Id int64 `json:"id"`
|
|
|
CompanyId int64 `json:"-"`
|
|
|
Image string `json:"image"`
|
|
|
Name string `json:"name"` // 标签名称
|
|
|
Group string `json:"group"` // 标签分类
|
|
|
Remark string `json:"remark,optional"` // 备注
|
|
|
}
|
|
|
|
|
|
type MiniSetUserLikeResponse struct {
|
|
|
ArticleId int64 `json:"articleId"` //文章id
|
|
|
CommentId int64 `json:"commentId"` //评论id
|
|
|
Count int `json:"count"` //现有的点赞数量
|
|
|
type TagEditResponse struct {
|
|
|
Id int64 `json:"id"`
|
|
|
}
|
|
|
|
|
|
type MiniArticleBackupSearchRequest struct {
|
|
|
Page int `json:"page"`
|
|
|
Size int `json:"size"`
|
|
|
ArticleId int `json:"articleId"`
|
|
|
CompanyId int64 `json:",optional"` // 服务端自动获取
|
|
|
type TagGetRequest struct {
|
|
|
Id int64 `path:"id"`
|
|
|
CompanyId int64 `path:"-"`
|
|
|
}
|
|
|
|
|
|
type MiniArticleBackupSearchResponse struct {
|
|
|
Total int64 `json:"total"`
|
|
|
List []MiniArticleBackupItem `json:"list"`
|
|
|
type TagGetResponse struct {
|
|
|
Id int64 `json:"id"`
|
|
|
Image string `json:"image"`
|
|
|
Name string `json:"name"` // 标签名称
|
|
|
Group string `json:"group"` // 标签分类
|
|
|
Remark string `json:"remark"` // 备注
|
|
|
}
|
|
|
|
|
|
type MiniArticleBackupItem struct {
|
|
|
Id int64 `json:"id"`
|
|
|
Title string `json:"title"`
|
|
|
Content string `json:"content"`
|
|
|
Images []string `json:"images"`
|
|
|
CreatedAt int64 `json:"createdAt"`
|
|
|
Location Location `json:"location"`
|
|
|
type TagListRequest struct {
|
|
|
Page int `json:"page"`
|
|
|
Size int `json:"size"`
|
|
|
CompanyId int64 `json:"-"`
|
|
|
TagName string `json:"tagName,optional"`
|
|
|
Group string `json:"group,optional"`
|
|
|
Remark string `json:"remark,optional"`
|
|
|
}
|
|
|
|
|
|
type MiniArticleMarkUserReadRequest struct {
|
|
|
UserId int64 `json:",optional"` // 当前操作人
|
|
|
CompanyId int64 `json:",optional"` // 当前公司
|
|
|
ArticleId int64 `json:"articleId"` // 文章id
|
|
|
type TagListResponse struct {
|
|
|
Total int64 `json:"total"`
|
|
|
List []TagItem `json:"list"`
|
|
|
}
|
|
|
|
|
|
type MiniArticleMarkUserReadResponse struct {
|
|
|
Id int64 `json:"id"`
|
|
|
type TagItem struct {
|
|
|
Id int64 `json:"id"`
|
|
|
Image string `json:"image"`
|
|
|
Name string `json:"name"` // 标签名称
|
|
|
Group string `json:"group"` // 标签分类
|
|
|
Remark string `json:"remark"` // 备注
|
|
|
CreatedAt int64 `json:"createdAt"`
|
|
|
}
|
|
|
|
|
|
type MiniArticleDraftCreateRequest struct {
|
|
|
CompanyId int64 `json:",optional"`
|
|
|
AuthorId int64 `json:",optional"` // 发布人
|
|
|
Template int `json:"template"` // 使用哪个模板进行编辑 0、无 1、演绎式 2、归纳式
|
|
|
Section []string `json:"section"` // 填写的内容
|
|
|
Title string `json:"title"` // 标题
|
|
|
Images []string `json:"images"` // 图片
|
|
|
WhoRead []int64 `json:"whoRead"` // 谁可以看
|
|
|
WhoReview []int64 `json:"whoReview"` // 评论人
|
|
|
Location Location `json:"location"` // 坐标
|
|
|
type TagDeleteRequest struct {
|
|
|
Id int64 `path:"id"`
|
|
|
CompanyId int64 `path:"-"`
|
|
|
}
|
|
|
|
|
|
type MiniArticleDraftCreateResponse struct {
|
|
|
type TagDeleteResponse struct {
|
|
|
Id int64 `json:"id"`
|
|
|
}
|
|
|
|
|
|
type MiniArticleDraftUpdateRequest struct {
|
|
|
Id int64 `json:"id"`
|
|
|
CompanyId int64 `json:",optional"`
|
|
|
AuthorId int64 `json:",optional"` // 发布人
|
|
|
Template int `json:"template"` // 使用哪个模板进行编辑 0、无 1、演绎式 2、归纳式
|
|
|
Section []string `json:"section"` // 填写的内容
|
|
|
Title string `json:"title"` // 标题
|
|
|
Images []string `json:"images"` // 图片
|
|
|
WhoRead []int64 `json:"whoRead"` // 谁可以看
|
|
|
WhoReview []int64 `json:"whoReview"` // 评论人
|
|
|
Location Location `json:"location"` // 坐标
|
|
|
}
|
|
|
|
|
|
type MiniArticleDraftUpdateResponse struct {
|
|
|
Id int64 `json:"id"`
|
|
|
type MiniUserLoginRequest struct {
|
|
|
LoginType string `json:"loginType"` // 登录类型 wechat-login whchat-phone-login phone-password-login phone-smscode-login
|
|
|
WechatAuthCode string `json:"wechatAuthcode,optional"` // 微信登录 授权码
|
|
|
WechatEncryptedData string `json:"wechatEncryptedData,optional"` // 微信登录 加密数据
|
|
|
WechatIV string `json:"wechatIV,optional"` // 微信登录 加密算法初始向量
|
|
|
Phone string `json:"phone,optional"` // 手机号
|
|
|
Password string `json:"password,optional"` // 密码
|
|
|
SmsCode string `json:"smsCode,optional"` // 短信验证码
|
|
|
}
|
|
|
|
|
|
type MiniArticleDraftSearchMeRequest struct {
|
|
|
CompanyId int64 `json:",optional"` // 公司id
|
|
|
AuthorId int64 `json:",optional"` // 发布人
|
|
|
Page int `json:"page"`
|
|
|
Size int `json:"size"`
|
|
|
type MiniUserLoginResponse struct {
|
|
|
Token string `json:"token"` // x-token
|
|
|
Phone string `json:"phone"` // 手机号
|
|
|
Message string `json:"message"` // 失败消息(审核中,注册成功等待审核)
|
|
|
Success bool `json:"success"` // 成功标识
|
|
|
}
|
|
|
|
|
|
type MiniArticleDraftSearchMeResponse struct {
|
|
|
Total int64 `json:"total"`
|
|
|
List []MiniArticleDraftItem `json:"list"`
|
|
|
type MiniUserSwitchAccountRequest struct {
|
|
|
CompanyId int64 `json:"companyId"`
|
|
|
}
|
|
|
|
|
|
type MiniArticleDraftItem struct {
|
|
|
Id int64 `json:"id"`
|
|
|
Template int `json:"template"` // 使用哪个模板进行编辑 0、无 1、演绎式 2、归纳式
|
|
|
Section []string `json:"section"` // 填写的内容
|
|
|
Title string `json:"title"` // 标题
|
|
|
Images []string `json:"images"` // 图片
|
|
|
CreatedAt int64 `json:"createdAt"`
|
|
|
type MiniUserInfoRequest struct {
|
|
|
}
|
|
|
|
|
|
type MiniArticleDraftGetMeRequest struct {
|
|
|
CompanyId int64 `path:",optional"` // 公司id
|
|
|
AuthorId int64 `path:",optional"` // 发布人
|
|
|
Id int64 `path:"id"`
|
|
|
}
|
|
|
|
|
|
type MiniArticleDraftGetMeResponse struct {
|
|
|
Id int64 `json:"id"` //
|
|
|
Template int `json:"template"` // 使用哪个模板进行编辑 0、无 1、演绎式 2、归纳式
|
|
|
Section []string `json:"Section"` // 填写的内容
|
|
|
Title string `json:"title"` // 标题
|
|
|
Images []string `json:"images"` // 图片
|
|
|
WhoRead []int64 `json:"whoRead"` // 谁可以看
|
|
|
WhoReview []int64 `json:"whoReview"` // 评论人
|
|
|
Location Location `json:"location"` // 坐标
|
|
|
type MiniUserInfoResponse struct {
|
|
|
User *UserItem `json:"user,omitempty"` // 用户信息
|
|
|
TotalArticle int64 `json:"totalArticle"` // 累计信息发布
|
|
|
TotalLoved int64 `json:"totalLoved"` // 累计收到的赞
|
|
|
TotalAccepted int64 `json:"totalAccepted"` // 累计被采纳
|
|
|
Accounts []Account `json:"accounts"` // 公司账号
|
|
|
Auths []Auth `json:"auths"` // 权限列表
|
|
|
}
|
|
|
|
|
|
type MiniArticleDraftDeleteMeRequest struct {
|
|
|
CompanyId int64 `path:",optional"` // 公司id
|
|
|
AuthorId int64 `path:",optional"` // 发布人
|
|
|
Id int64 `path:"id"`
|
|
|
type MiniUserApplyJoinCompanyRequest struct {
|
|
|
Phone string `json:"phone"`
|
|
|
Code string `json:"code"`
|
|
|
}
|
|
|
|
|
|
type MiniArticleDraftDeleteMeResponse struct {
|
|
|
Id int64 `json:"id"` //
|
|
|
type MiniUserApplyJoinCompanyResponse struct {
|
|
|
}
|
|
|
|
|
|
type MiniArticleMarkListRequest struct {
|
|
|
Page int `json:"page"`
|
|
|
Size int `json:"size"`
|
|
|
type MiniUserAuditRequest struct {
|
|
|
UserId int64 `json:"userId"` // 用户ID
|
|
|
Status int `json:"status"` // 审核状态 1:审核通过 2:拒绝
|
|
|
}
|
|
|
|
|
|
type MiniArticleMarkListResponse struct {
|
|
|
Total int64 `json:"total"`
|
|
|
List []MiniArticleMarkItem `json:"list"`
|
|
|
type MiniUserDepartmentUsersRequest struct {
|
|
|
}
|
|
|
|
|
|
type MiniArticleMarkItem struct {
|
|
|
Id int64 `json:"id"`
|
|
|
CompanyId int64 `json:"companyId"`
|
|
|
UserId int64 `json:"userId"`
|
|
|
ArticleId int64 `json:"articleId"`
|
|
|
Title string `json:"title"`
|
|
|
Author SimpleUser `json:"author"` // 发布人
|
|
|
UpdatedAt int64 `json:"updatedAt"`
|
|
|
type MiniUserDepartmentUsersResponse struct {
|
|
|
Departments []*Department `json:"departments"`
|
|
|
Users []*UserItem `json:"users"`
|
|
|
}
|
|
|
|
|
|
type SystemArticleGetRequest struct {
|
|
|
Id int64 `path:"id"` //id
|
|
|
CompanyId int64 `path:",optional"`
|
|
|
type MiniUserFollowedSearchRequest struct {
|
|
|
Page int `json:"page,optional"`
|
|
|
Size int `json:"size,optional"`
|
|
|
}
|
|
|
|
|
|
type UserShowName struct {
|
|
|
Id int `json:"id"`
|
|
|
Name int `json:"name"`
|
|
|
type MiniUserFollowedSearchResponse struct {
|
|
|
List []*UserFollowItem `json:"users"`
|
|
|
Total int64 `json:"total"`
|
|
|
}
|
|
|
|
|
|
type SystemArticleGetResponse struct {
|
|
|
Id int64 `json:"id"` // id
|
|
|
Title string `json:"title"` // 标题
|
|
|
AuthorId int64 `json:"authorId"` // 发布人id
|
|
|
Author Author `json:"author"` // 发布人
|
|
|
CreatedAt int64 `json:"createdAt"` // 文章的发布时间
|
|
|
Section []ArticleSection `json:"section"` // 文章的文本内容
|
|
|
Images []string `json:"images"` // 图片
|
|
|
WhoRead []int64 `json:"whoRead"` // 谁可查看
|
|
|
WhoReadInfo []UserShowName `json:"whoReadInfo"` // 谁可查看
|
|
|
WhoReview []int64 `json:"whoReview"` // 谁可评论
|
|
|
WhoReviewInfo []UserShowName `json:"whoReviewInfo"` // 谁可评论
|
|
|
Location Location `json:"location"` // 定位坐标
|
|
|
CountLove int `json:"countLove"` // 点赞数量
|
|
|
CountComment int `json:"countComment"` // 评论数量
|
|
|
CountRead int `json:"countRead"` // 浏览数量
|
|
|
Show int `json:"show"` // 评论的展示状态(0显示、1不显示)
|
|
|
type UserItem struct {
|
|
|
Id int64 `json:"id,omitempty"` // 用户ID
|
|
|
CompanyId int64 `json:"companyId,omitempty"` // 公司ID
|
|
|
CompanyName string `json:"companyName,omitempty"` // 公司名称
|
|
|
Flag int `json:"flag,omitempty"` // 标识 1:管理员 2:普通用户 (有绑定角色是管理员)
|
|
|
Name string `json:"name,omitempty"` // 名称
|
|
|
Avatar string `json:"avatar,omitempty"` // 头像
|
|
|
Phone string `json:"phone,omitempty"` // 手机号 唯一
|
|
|
Position string `json:"position,omitempty"` // 职位
|
|
|
Enable int `json:"enable,omitempty"` // 启用状态 1:启用 2:禁用
|
|
|
AuditStatus *int `json:"auditStatus,omitempty"` // 审核状态 0:待审核 1:审核通过 2:拒绝
|
|
|
Follower []int64 `json:"followers,omitempty"` // 关注我的人 (冗余)
|
|
|
Following []int64 `json:"following,omitempty"` // 我关注的人 (冗余)
|
|
|
Departments []int64 `json:"departments,omitempty"` // 所属部门
|
|
|
AccountFrom string `json:"accountFrom,omitempty"` // 账号来源 后台新增、扫码注册
|
|
|
}
|
|
|
|
|
|
type SystemArticleSearchRequest struct {
|
|
|
CompanyId int64 `json:",optional"`
|
|
|
Page int `json:"page"`
|
|
|
Size int `json:"size"`
|
|
|
type Account struct {
|
|
|
CompanyId int64 `json:"companyId"` // 公司ID
|
|
|
CompanyName string `json:"companyName"` // 公司名称
|
|
|
Logo string `json:"logo"` // 公司图标
|
|
|
UserId int64 `json:"userId"` // 用户ID
|
|
|
Name string `json:"name"` // 名称
|
|
|
Position string `json:"position"` // 职位
|
|
|
}
|
|
|
|
|
|
type SystemArticleSearchResponse struct {
|
|
|
Total int `json:"total"`
|
|
|
List []SystemArticleSearch `json:"list"`
|
|
|
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"` // 部门名称
|
|
|
}
|
|
|
|
|
|
type SystemArticleSearch struct {
|
|
|
Id int64 `json:"id"` //id
|
|
|
Title string `json:"title"` //标题
|
|
|
Author string `json:"author"` //发布人
|
|
|
Images []string `json:"images"` //图片
|
|
|
CreatedAt int64 `json:"createdAt"` //文章的创建日期
|
|
|
CountLove int `json:"countLove"` //点赞数量
|
|
|
CountComment int `json:"CountComment"` //评论数量
|
|
|
Show int `json:"show"` //是否隐藏 [0显示、1不显示]
|
|
|
Tags []string `json:"tags"` //标签
|
|
|
TargetUser int `json:"targetUser"` //分发方式 [0分发给所有人、1分发给指定的人]
|
|
|
type UserSearchRequest struct {
|
|
|
Page int `json:"page,optional"`
|
|
|
Size int `json:"size,optional"`
|
|
|
AuditFlag *int `json:"auditFlag,optional"` // 按审核状态 0:待审核 1:审核通过 2:拒绝
|
|
|
}
|
|
|
|
|
|
type CommentRequest struct {
|
|
|
type UserSearchResponse struct {
|
|
|
List []*UserItem `json:"list"`
|
|
|
Total int64 `json:"total"`
|
|
|
}
|
|
|
|
|
|
type CommentResposne struct {
|
|
|
List []Comment `json:"list"`
|
|
|
type FollowRequest struct {
|
|
|
UserId int64 `json:"userId"`
|
|
|
}
|
|
|
|
|
|
type Comment struct {
|
|
|
type UserFollowItem struct {
|
|
|
Id int64 `json:"id"` // 用户ID
|
|
|
Name string `json:"name"` // 名称
|
|
|
CompanyName string `json:"companyName"` // 公司名称
|
|
|
Avatar string `json:"avatar"` // 头像
|
|
|
Position string `json:"position"` // 职位
|
|
|
Followed bool `json:"followed"` // 关注
|
|
|
MutualFollowed bool `json:"mutualFollowed"` // 互相关注标识
|
|
|
}
|
|
|
|
|
|
type MessageSystemRequest struct {
|
|
|
type MiniMyLikeRequest struct {
|
|
|
Page int `json:"page"`
|
|
|
Size int `json:"size"`
|
|
|
}
|
|
|
|
|
|
type MessageSystemResponse struct {
|
|
|
List []MessageSystemItem `json:"list"`
|
|
|
Total int64 `json:"total"`
|
|
|
type MiniMyLikeResponse struct {
|
|
|
List []MyLikeItem `json:"list"`
|
|
|
Total int64 `json:"total"`
|
|
|
}
|
|
|
|
|
|
type MessageSystemItem struct {
|
|
|
Id int64 `json:"id"` // ID
|
|
|
Type int `json:"type"` // 系统分类
|
|
|
Title string `json:"title"` // 标题
|
|
|
Content string `json:"content"` // 内容
|
|
|
CreatedAt int64 `json:"createdAt"` // 创建时间
|
|
|
type MyLikeItem struct {
|
|
|
UserId int64 `json:"userId"` // 发布人id
|
|
|
ArticleId int64 `json:"articleId"` // 文章id
|
|
|
CommentId int64 `json:"commentId"` // 评论id
|
|
|
CreatedAt int64 `json:"createdAt"` // 创建时间
|
|
|
User *SimpleUser `json:"user"` // 发布人
|
|
|
Article *SimpleArticle `json:"article"` // 文章
|
|
|
Comment *SimpleComment `json:"comment"` // 评论
|
|
|
}
|
|
|
|
|
|
type MessageBusinessRequest struct {
|
|
|
Type int `json:"type"`
|
|
|
Page int `json:"page"`
|
|
|
Size int `json:"size"`
|
|
|
type SimpleComment struct {
|
|
|
Id int64 `json:"id"`
|
|
|
Content string `json:"content"` // 评论内容
|
|
|
CountLove int `json:"countLove"` // 点赞数量
|
|
|
CountComment int `json:"countComment"` // 评论数量
|
|
|
Show int `json:"show"` // 评论的展示状态(0显示、1不显示)
|
|
|
}
|
|
|
|
|
|
type MessageBusinessResponse struct {
|
|
|
List []MessageBusinessItem `json:"list"`
|
|
|
Total int64 `json:"total"`
|
|
|
type SystemUserInfoRequest struct {
|
|
|
}
|
|
|
|
|
|
type MessageBusinessItem struct {
|
|
|
Id int64 `json:"id"`
|
|
|
Type int `json:"type"` // 分类 (1回复 2点赞 3被采纳)
|
|
|
OptType int `json:"optType"` // 操作类型(1针对文章、1针对评论、2针对圆桌)
|
|
|
CompanyId int64 `json:"companyId"` // 操作人公司ID
|
|
|
UserId int64 `json:"userId"` // 操作人用户ID
|
|
|
RecipientId int64 `json:"recipientId"` // 接收者ID
|
|
|
ArticleId int64 `json:"articleId"` // 文章ID
|
|
|
CommentId int64 `json:"commentId"` // 评论ID
|
|
|
DiscussionId int64 `json:"discussionId"` // 圆桌ID
|
|
|
DiscussionOpinionId int64 `json:"discussionOpinionId"` // 观点ID
|
|
|
Content string `json:"content"` // 消息内容
|
|
|
CreatedAt int64 `json:"createdAt"` // 创建时间
|
|
|
User *SimpleUser `json:"user"` // 操作人
|
|
|
Article *SimpleArticle `json:"article"` // 文章
|
|
|
Comment *SimpleComment `json:"comment"` // 评论(不一定是自己,可能是被人@到)
|
|
|
type SystemUserInfoResponse struct {
|
|
|
UserId int64 `json:"userId"`
|
|
|
UserName string `json:"userName"`
|
|
|
Avatar string `json:"avatar"`
|
|
|
CompanyId int64 `json:"companyId"`
|
|
|
CompanyName string `json:"companyName"`
|
|
|
}
|
|
|
|
|
|
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"` // 职位
|
|
|
type CompanySearchRequest struct {
|
|
|
Page int `json:"page,optional"`
|
|
|
Size int `json:"size,optional"`
|
|
|
Flag int `json:"flag,optional"` // 1:用户已加入的 2:用户未加入的公司
|
|
|
UserId int64 `json:"userId,optional"` // 按用户搜索(用户所加入的企业)
|
|
|
Code string `json:"code,optional"` // 按编码搜索
|
|
|
}
|
|
|
|
|
|
type SimpleArticle struct {
|
|
|
Id int64 `json:"id"`
|
|
|
Title string `json:"title"` // 文章标题
|
|
|
Summary string `json:"summary"` // 文章概要
|
|
|
CountLove int `json:"countLove"` // 点赞数量
|
|
|
CountComment int `json:"countComment"` // 评论数量
|
|
|
Show int `json:"show"` // 文章的展示状态(0显示、1不显示)
|
|
|
type CompanySearchResponse struct {
|
|
|
List []Company `json:"list"`
|
|
|
Total int64 `json:"total"`
|
|
|
}
|
|
|
|
|
|
type TagCreateRequest struct {
|
|
|
CompanyId int64 `json:"companyId"`
|
|
|
Image string `json:"image"`
|
|
|
Name string `json:"name"` // 标签名称
|
|
|
Group string `json:"group"` // 标签分类
|
|
|
Remark string `json:"remark,optional"` // 备注
|
|
|
type Company struct {
|
|
|
Id int64 `json:"id,omitempty"` // 唯一标识
|
|
|
Name string `json:"name,omitempty"` // 名称
|
|
|
Code string `json:"code,omitempty"` // 编码(搜索使用,4位字母数字)
|
|
|
Logo string `json:"logo,omitempty"` // 公司LOGO
|
|
|
}
|
|
|
|
|
|
type TagCreateResponse struct {
|
|
|
Id int64 `json:"id"`
|
|
|
type Location struct {
|
|
|
Longitude float64 `json:"longitude,optional"` //经度
|
|
|
Latitude float64 `json:"latitude,optional"` //纬度
|
|
|
Descript string `json:"descript,optional"` //地点描述
|
|
|
}
|
|
|
|
|
|
type TagEditRequest struct {
|
|
|
Id int64 `json:"id"`
|
|
|
CompanyId int64 `json:"-"`
|
|
|
Image string `json:"image"`
|
|
|
Name string `json:"name"` // 标签名称
|
|
|
Group string `json:"group"` // 标签分类
|
|
|
Remark string `json:"remark,optional"` // 备注
|
|
|
type ArticleAuthor struct {
|
|
|
Id int64 `json:"id"` // 人员id
|
|
|
Name string `json:"name"` // 人员的名字
|
|
|
Avatar string `json:"avatar"` // 人员头像URL
|
|
|
Position string `json:"position"` // 职位
|
|
|
Company string `json:"company"` // 公司
|
|
|
}
|
|
|
|
|
|
type TagEditResponse struct {
|
|
|
type MiniArticleCreateRequest struct {
|
|
|
Title string `json:"title"` //标题
|
|
|
Section []string `json:"section"` //文章的文本内容
|
|
|
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"` //定位坐标
|
|
|
}
|
|
|
|
|
|
type MiniArticleCreateResponse struct {
|
|
|
Id int64 `json:"id"`
|
|
|
}
|
|
|
|
|
|
type TagGetRequest struct {
|
|
|
Id int64 `path:"id"`
|
|
|
CompanyId int64 `path:"-"`
|
|
|
type MiniArticleGetRequest struct {
|
|
|
Id int64 `path:"id"` //id
|
|
|
CompanyId int64 `path:",optional"` //当前公司
|
|
|
UserId int `path:",optional"` //当前用户
|
|
|
}
|
|
|
|
|
|
type TagGetResponse struct {
|
|
|
Id int64 `json:"id"`
|
|
|
Image string `json:"image"`
|
|
|
Name string `json:"name"` // 标签名称
|
|
|
Group string `json:"group"` // 标签分类
|
|
|
Remark string `json:"remark"` // 备注
|
|
|
type MiniArticleGetResponse struct {
|
|
|
Id int64 `json:"id"` //id
|
|
|
Title string `json:"title"` //标题
|
|
|
AuthorId int64 `json:"authorId"` //发布人id
|
|
|
Author ArticleAuthor `json:"author"` //发布人
|
|
|
CreatedAt int64 `json:"createdAt"` //文章的发布时间
|
|
|
Section []ArticleSection `json:"section"` //文章的文本内容
|
|
|
Images []string `json:"images"` //图片
|
|
|
WhoRead []int64 `json:"whoRead"` //谁可查看
|
|
|
WhoReview []int64 `json:"whoReview"` //谁可评论
|
|
|
Location Location `json:"location"` //定位坐标
|
|
|
CountLove int `json:"countLove"` // 点赞数量
|
|
|
CountComment int `json:"countComment"` // 评论数量
|
|
|
CountRead int `json:"countRead"` // 浏览数量
|
|
|
Show int `json:"show"` // 评论的展示状态(0显示、1不显示)
|
|
|
Edit int `json:"edit"` // 文章是否存在变更记录 (0 不存在 1存在)
|
|
|
MeLoveFlag int `json:"meLoveFlag"` //当前人员对文章的点赞标识
|
|
|
}
|
|
|
|
|
|
type TagListRequest struct {
|
|
|
Page int `json:"page"`
|
|
|
Size int `json:"size"`
|
|
|
CompanyId int64 `json:"-"`
|
|
|
TagName string `json:"tagName,optional"`
|
|
|
Group string `json:"group,optional"`
|
|
|
Remark string `json:"remark,optional"`
|
|
|
type ArticleSection struct {
|
|
|
Id int64 `json:"id"` //段落id
|
|
|
Content string `json:"content"` // 文本内容
|
|
|
SortBy int `json:"sortBy"` // 排序
|
|
|
TotalComment int `json:"totalComment"` // 评论的数量
|
|
|
}
|
|
|
|
|
|
type TagListResponse struct {
|
|
|
Total int64 `json:"total"`
|
|
|
List []TagItem `json:"list"`
|
|
|
type MiniArticleSearchMeRequest struct {
|
|
|
AuthorId int64 `json:",optional"`
|
|
|
CompanyId int64 `json:",optional"`
|
|
|
Page int `json:"page"`
|
|
|
Size int `json:"size"`
|
|
|
}
|
|
|
|
|
|
type TagItem struct {
|
|
|
Id int64 `json:"id"`
|
|
|
Image string `json:"image"`
|
|
|
Name string `json:"name"` // 标签名称
|
|
|
Group string `json:"group"` // 标签分类
|
|
|
Remark string `json:"remark"` // 备注
|
|
|
CreatedAt int64 `json:"createdAt"`
|
|
|
type MiniArticleSearchMeResponse struct {
|
|
|
Total int `json:"total"`
|
|
|
List []ArticleSearchMe `json:"list"`
|
|
|
}
|
|
|
|
|
|
type TagDeleteRequest struct {
|
|
|
Id int64 `path:"id"`
|
|
|
CompanyId int64 `path:"-"`
|
|
|
type ArticleSearchMe struct {
|
|
|
Id int64 `json:"id"` //id
|
|
|
Title string `json:"title"` //标题
|
|
|
Images []string `json:"images"` //图片
|
|
|
CreatedAt int64 `json:"createdAt"` //文章的创建日期
|
|
|
CountLove int `json:"countLove"` //点赞数量
|
|
|
CountComment int `json:"CountComment"` //评论数量
|
|
|
Show int `json:"show"` //是否隐藏 [0显示、1不显示]
|
|
|
}
|
|
|
|
|
|
type TagDeleteResponse struct {
|
|
|
Id int64 `json:"id"`
|
|
|
type MiniUserLikeArticleRequest struct {
|
|
|
ArticleId int64 `json:"articleId"` // 文章id
|
|
|
CompanyId int64 `json:",optional"` //公司id
|
|
|
Page int `json:"page"` //分页,第几页
|
|
|
Size int `json:"size"` //分页,每页几条
|
|
|
}
|
|
|
|
|
|
type MiniUserLoginRequest struct {
|
|
|
LoginType string `json:"loginType"` // 登录类型 wechat-login whchat-phone-login phone-password-login phone-smscode-login
|
|
|
WechatAuthCode string `json:"wechatAuthcode,optional"` // 微信登录 授权码
|
|
|
WechatEncryptedData string `json:"wechatEncryptedData,optional"` // 微信登录 加密数据
|
|
|
WechatIV string `json:"wechatIV,optional"` // 微信登录 加密算法初始向量
|
|
|
Phone string `json:"phone,optional"` // 手机号
|
|
|
Password string `json:"password,optional"` // 密码
|
|
|
SmsCode string `json:"smsCode,optional"` // 短信验证码
|
|
|
type MiniUserLikeArticleResponse struct {
|
|
|
Total int64 `json:"total"` //总数
|
|
|
List []WhichUserLikeArticle `json:"list"` //列表
|
|
|
}
|
|
|
|
|
|
type WhichUserLikeArticle struct {
|
|
|
ArticleId int64 `json:"articleId"` // 文章id
|
|
|
UserId int64 `json:"userId"` // 人员id
|
|
|
Name string `json:"name"` // 人员名称
|
|
|
Avatar string `json:"avatar"` // 人员头像
|
|
|
CreatedAt int64 `json:"createdAt"` // 点赞记录的时间
|
|
|
}
|
|
|
|
|
|
type MiniUserLoginResponse struct {
|
|
|
Token string `json:"token"` // x-token
|
|
|
Phone string `json:"phone"` // 手机号
|
|
|
Message string `json:"message"` // 失败消息(审核中,注册成功等待审核)
|
|
|
Success bool `json:"success"` // 成功标识
|
|
|
type MiniSetUserLikeRequset struct {
|
|
|
ArticleId int64 `json:"articleId"` //文章id
|
|
|
CommentId int64 `json:"commentId"` //评论id
|
|
|
UserId int64 `json:",optional"` //操作人
|
|
|
Flag int `json:"flag"` //点赞标志 1、点赞 2 、取消点赞
|
|
|
}
|
|
|
|
|
|
type MiniUserSwitchAccountRequest struct {
|
|
|
CompanyId int64 `json:"companyId"`
|
|
|
type MiniSetUserLikeResponse struct {
|
|
|
ArticleId int64 `json:"articleId"` //文章id
|
|
|
CommentId int64 `json:"commentId"` //评论id
|
|
|
Count int `json:"count"` //现有的点赞数量
|
|
|
}
|
|
|
|
|
|
type MiniUserInfoRequest struct {
|
|
|
type MiniArticleBackupSearchRequest struct {
|
|
|
Page int `json:"page"`
|
|
|
Size int `json:"size"`
|
|
|
ArticleId int `json:"articleId"`
|
|
|
CompanyId int64 `json:",optional"` // 服务端自动获取
|
|
|
}
|
|
|
|
|
|
type MiniUserInfoResponse struct {
|
|
|
User *UserItem `json:"user,omitempty"` // 用户信息
|
|
|
TotalArticle int64 `json:"totalArticle"` // 累计信息发布
|
|
|
TotalLoved int64 `json:"totalLoved"` // 累计收到的赞
|
|
|
TotalAccepted int64 `json:"totalAccepted"` // 累计被采纳
|
|
|
Accounts []Account `json:"accounts"` // 公司账号
|
|
|
Auths []Auth `json:"auths"` // 权限列表
|
|
|
type MiniArticleBackupSearchResponse struct {
|
|
|
Total int64 `json:"total"`
|
|
|
List []MiniArticleBackupItem `json:"list"`
|
|
|
}
|
|
|
|
|
|
type MiniUserApplyJoinCompanyRequest struct {
|
|
|
Phone string `json:"phone"`
|
|
|
Code string `json:"code"`
|
|
|
type MiniArticleBackupItem struct {
|
|
|
Id int64 `json:"id"`
|
|
|
Title string `json:"title"`
|
|
|
Content string `json:"content"`
|
|
|
Images []string `json:"images"`
|
|
|
CreatedAt int64 `json:"createdAt"`
|
|
|
Location Location `json:"location"`
|
|
|
}
|
|
|
|
|
|
type MiniUserApplyJoinCompanyResponse struct {
|
|
|
type MiniArticleMarkUserReadRequest struct {
|
|
|
UserId int64 `json:",optional"` // 当前操作人
|
|
|
CompanyId int64 `json:",optional"` // 当前公司
|
|
|
ArticleId int64 `json:"articleId"` // 文章id
|
|
|
}
|
|
|
|
|
|
type MiniUserAuditRequest struct {
|
|
|
UserId int64 `json:"userId"` // 用户ID
|
|
|
Status int `json:"status"` // 审核状态 1:审核通过 2:拒绝
|
|
|
type MiniArticleMarkUserReadResponse struct {
|
|
|
Id int64 `json:"id"`
|
|
|
}
|
|
|
|
|
|
type MiniUserDepartmentUsersRequest struct {
|
|
|
type MiniArticleDraftCreateRequest struct {
|
|
|
CompanyId int64 `json:",optional"`
|
|
|
AuthorId int64 `json:",optional"` // 发布人
|
|
|
Template int `json:"template"` // 使用哪个模板进行编辑 0、无 1、演绎式 2、归纳式
|
|
|
Section []string `json:"section"` // 填写的内容
|
|
|
Title string `json:"title"` // 标题
|
|
|
Images []string `json:"images"` // 图片
|
|
|
WhoRead []int64 `json:"whoRead"` // 谁可以看
|
|
|
WhoReview []int64 `json:"whoReview"` // 评论人
|
|
|
Location Location `json:"location"` // 坐标
|
|
|
}
|
|
|
|
|
|
type MiniUserDepartmentUsersResponse struct {
|
|
|
Departments []*Department `json:"departments"`
|
|
|
Users []*UserItem `json:"users"`
|
|
|
type MiniArticleDraftCreateResponse struct {
|
|
|
Id int64 `json:"id"`
|
|
|
}
|
|
|
|
|
|
type MiniUserFollowedSearchRequest struct {
|
|
|
Page int `json:"page,optional"`
|
|
|
Size int `json:"size,optional"`
|
|
|
type MiniArticleDraftUpdateRequest struct {
|
|
|
Id int64 `json:"id"`
|
|
|
CompanyId int64 `json:",optional"`
|
|
|
AuthorId int64 `json:",optional"` // 发布人
|
|
|
Template int `json:"template"` // 使用哪个模板进行编辑 0、无 1、演绎式 2、归纳式
|
|
|
Section []string `json:"section"` // 填写的内容
|
|
|
Title string `json:"title"` // 标题
|
|
|
Images []string `json:"images"` // 图片
|
|
|
WhoRead []int64 `json:"whoRead"` // 谁可以看
|
|
|
WhoReview []int64 `json:"whoReview"` // 评论人
|
|
|
Location Location `json:"location"` // 坐标
|
|
|
}
|
|
|
|
|
|
type MiniUserFollowedSearchResponse struct {
|
|
|
List []*UserFollowItem `json:"users"`
|
|
|
Total int64 `json:"total"`
|
|
|
type MiniArticleDraftUpdateResponse struct {
|
|
|
Id int64 `json:"id"`
|
|
|
}
|
|
|
|
|
|
type UserItem struct {
|
|
|
Id int64 `json:"id,omitempty"` // 用户ID
|
|
|
CompanyId int64 `json:"companyId,omitempty"` // 公司ID
|
|
|
CompanyName string `json:"companyName,omitempty"` // 公司名称
|
|
|
Flag int `json:"flag,omitempty"` // 标识 1:管理员 2:普通用户 (有绑定角色是管理员)
|
|
|
Name string `json:"name,omitempty"` // 名称
|
|
|
Avatar string `json:"avatar,omitempty"` // 头像
|
|
|
Phone string `json:"phone,omitempty"` // 手机号 唯一
|
|
|
Position string `json:"position,omitempty"` // 职位
|
|
|
Enable int `json:"enable,omitempty"` // 启用状态 1:启用 2:禁用
|
|
|
AuditStatus *int `json:"auditStatus,omitempty"` // 审核状态 0:待审核 1:审核通过 2:拒绝
|
|
|
Follower []int64 `json:"followers,omitempty"` // 关注我的人 (冗余)
|
|
|
Following []int64 `json:"following,omitempty"` // 我关注的人 (冗余)
|
|
|
Departments []int64 `json:"departments,omitempty"` // 所属部门
|
|
|
AccountFrom string `json:"accountFrom,omitempty"` // 账号来源 后台新增、扫码注册
|
|
|
type MiniArticleDraftSearchMeRequest struct {
|
|
|
CompanyId int64 `json:",optional"` // 公司id
|
|
|
AuthorId int64 `json:",optional"` // 发布人
|
|
|
Page int `json:"page"`
|
|
|
Size int `json:"size"`
|
|
|
}
|
|
|
|
|
|
type Account struct {
|
|
|
CompanyId int64 `json:"companyId"` // 公司ID
|
|
|
CompanyName string `json:"companyName"` // 公司名称
|
|
|
Logo string `json:"logo"` // 公司图标
|
|
|
UserId int64 `json:"userId"` // 用户ID
|
|
|
Name string `json:"name"` // 名称
|
|
|
Position string `json:"position"` // 职位
|
|
|
type MiniArticleDraftSearchMeResponse struct {
|
|
|
Total int64 `json:"total"`
|
|
|
List []MiniArticleDraftItem `json:"list"`
|
|
|
}
|
|
|
|
|
|
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"` // 部门名称
|
|
|
type MiniArticleDraftItem struct {
|
|
|
Id int64 `json:"id"`
|
|
|
Template int `json:"template"` // 使用哪个模板进行编辑 0、无 1、演绎式 2、归纳式
|
|
|
Section []string `json:"section"` // 填写的内容
|
|
|
Title string `json:"title"` // 标题
|
|
|
Images []string `json:"images"` // 图片
|
|
|
CreatedAt int64 `json:"createdAt"`
|
|
|
}
|
|
|
|
|
|
type UserSearchRequest struct {
|
|
|
Page int `json:"page,optional"`
|
|
|
Size int `json:"size,optional"`
|
|
|
AuditFlag *int `json:"auditFlag,optional"` // 按审核状态 0:待审核 1:审核通过 2:拒绝
|
|
|
type MiniArticleDraftGetMeRequest struct {
|
|
|
CompanyId int64 `path:",optional"` // 公司id
|
|
|
AuthorId int64 `path:",optional"` // 发布人
|
|
|
Id int64 `path:"id"`
|
|
|
}
|
|
|
|
|
|
type UserSearchResponse struct {
|
|
|
List []*UserItem `json:"list"`
|
|
|
Total int64 `json:"total"`
|
|
|
type MiniArticleDraftGetMeResponse struct {
|
|
|
Id int64 `json:"id"` //
|
|
|
Template int `json:"template"` // 使用哪个模板进行编辑 0、无 1、演绎式 2、归纳式
|
|
|
Section []string `json:"Section"` // 填写的内容
|
|
|
Title string `json:"title"` // 标题
|
|
|
Images []string `json:"images"` // 图片
|
|
|
WhoRead []int64 `json:"whoRead"` // 谁可以看
|
|
|
WhoReview []int64 `json:"whoReview"` // 评论人
|
|
|
Location Location `json:"location"` // 坐标
|
|
|
}
|
|
|
|
|
|
type FollowRequest struct {
|
|
|
UserId int64 `json:"userId"`
|
|
|
type MiniArticleDraftDeleteMeRequest struct {
|
|
|
CompanyId int64 `path:",optional"` // 公司id
|
|
|
AuthorId int64 `path:",optional"` // 发布人
|
|
|
Id int64 `path:"id"`
|
|
|
}
|
|
|
|
|
|
type UserFollowItem struct {
|
|
|
Id int64 `json:"id"` // 用户ID
|
|
|
Name string `json:"name"` // 名称
|
|
|
CompanyName string `json:"companyName"` // 公司名称
|
|
|
Avatar string `json:"avatar"` // 头像
|
|
|
Position string `json:"position"` // 职位
|
|
|
Followed bool `json:"followed"` // 关注
|
|
|
MutualFollowed bool `json:"mutualFollowed"` // 互相关注标识
|
|
|
type MiniArticleDraftDeleteMeResponse struct {
|
|
|
Id int64 `json:"id"` //
|
|
|
}
|
|
|
|
|
|
type MiniMyLikeRequest struct {
|
|
|
type MiniArticleMarkListRequest struct {
|
|
|
Page int `json:"page"`
|
|
|
Size int `json:"size"`
|
|
|
}
|
|
|
|
|
|
type MiniMyLikeResponse struct {
|
|
|
List []MyLikeItem `json:"list"`
|
|
|
Total int64 `json:"total"`
|
|
|
type MiniArticleMarkListResponse struct {
|
|
|
Total int64 `json:"total"`
|
|
|
List []MiniArticleMarkItem `json:"list"`
|
|
|
}
|
|
|
|
|
|
type MyLikeItem struct {
|
|
|
UserId int64 `json:"userId"` // 发布人id
|
|
|
ArticleId int64 `json:"articleId"` // 文章id
|
|
|
CommentId int64 `json:"commentId"` // 评论id
|
|
|
CreatedAt int64 `json:"createdAt"` // 创建时间
|
|
|
User *SimpleUser `json:"user"` // 发布人
|
|
|
Article *SimpleArticle `json:"article"` // 文章
|
|
|
Comment *SimpleComment `json:"comment"` // 评论
|
|
|
type MiniArticleMarkItem struct {
|
|
|
Id int64 `json:"id"`
|
|
|
CompanyId int64 `json:"companyId"`
|
|
|
UserId int64 `json:"userId"`
|
|
|
ArticleId int64 `json:"articleId"`
|
|
|
Title string `json:"title"`
|
|
|
Author SimpleUser `json:"author"` // 发布人
|
|
|
UpdatedAt int64 `json:"updatedAt"`
|
|
|
}
|
|
|
|
|
|
type SimpleComment struct {
|
|
|
Id int64 `json:"id"`
|
|
|
Content string `json:"content"` // 评论内容
|
|
|
CountLove int `json:"countLove"` // 点赞数量
|
|
|
CountComment int `json:"countComment"` // 评论数量
|
|
|
Show int `json:"show"` // 评论的展示状态(0显示、1不显示)
|
|
|
type SystemArticleGetRequest struct {
|
|
|
Id int64 `path:"id"` //id
|
|
|
CompanyId int64 `path:",optional"`
|
|
|
}
|
|
|
|
|
|
type SystemUserInfoRequest struct {
|
|
|
type UserShowName struct {
|
|
|
Id int `json:"id"`
|
|
|
Name int `json:"name"`
|
|
|
}
|
|
|
|
|
|
type SystemUserInfoResponse struct {
|
|
|
UserId int64 `json:"userId"`
|
|
|
UserName string `json:"userName"`
|
|
|
Avatar string `json:"avatar"`
|
|
|
CompanyId int64 `json:"companyId"`
|
|
|
CompanyName string `json:"companyName"`
|
|
|
type SystemArticleGetResponse struct {
|
|
|
Id int64 `json:"id"` // id
|
|
|
Title string `json:"title"` // 标题
|
|
|
AuthorId int64 `json:"authorId"` // 发布人id
|
|
|
Author ArticleAuthor `json:"author"` // 发布人
|
|
|
CreatedAt int64 `json:"createdAt"` // 文章的发布时间
|
|
|
Section []ArticleSection `json:"section"` // 文章的文本内容
|
|
|
Images []string `json:"images"` // 图片
|
|
|
WhoRead []int64 `json:"whoRead"` // 谁可查看
|
|
|
WhoReadInfo []UserShowName `json:"whoReadInfo"` // 谁可查看
|
|
|
WhoReview []int64 `json:"whoReview"` // 谁可评论
|
|
|
WhoReviewInfo []UserShowName `json:"whoReviewInfo"` // 谁可评论
|
|
|
Location Location `json:"location"` // 定位坐标
|
|
|
CountLove int `json:"countLove"` // 点赞数量
|
|
|
CountComment int `json:"countComment"` // 评论数量
|
|
|
CountRead int `json:"countRead"` // 浏览数量
|
|
|
Show int `json:"show"` // 评论的展示状态(0显示、1不显示)
|
|
|
}
|
|
|
|
|
|
type CompanySearchRequest struct {
|
|
|
Page int `json:"page,optional"`
|
|
|
Size int `json:"size,optional"`
|
|
|
Flag int `json:"flag,optional"` // 1:用户已加入的 2:用户未加入的公司
|
|
|
UserId int64 `json:"userId,optional"` // 按用户搜索(用户所加入的企业)
|
|
|
Code string `json:"code,optional"` // 按编码搜索
|
|
|
type SystemArticleSearchRequest struct {
|
|
|
CompanyId int64 `json:",optional"`
|
|
|
Page int `json:"page"`
|
|
|
Size int `json:"size"`
|
|
|
}
|
|
|
|
|
|
type CompanySearchResponse struct {
|
|
|
List []Company `json:"list"`
|
|
|
Total int64 `json:"total"`
|
|
|
type SystemArticleSearchResponse struct {
|
|
|
Total int `json:"total"`
|
|
|
List []SystemArticleSearch `json:"list"`
|
|
|
}
|
|
|
|
|
|
type Company struct {
|
|
|
Id int64 `json:"id,omitempty"` // 唯一标识
|
|
|
Name string `json:"name,omitempty"` // 名称
|
|
|
Code string `json:"code,omitempty"` // 编码(搜索使用,4位字母数字)
|
|
|
Logo string `json:"logo,omitempty"` // 公司LOGO
|
|
|
type SystemArticleSearch struct {
|
|
|
Id int64 `json:"id"` //id
|
|
|
Title string `json:"title"` //标题
|
|
|
Author string `json:"author"` //发布人
|
|
|
Images []string `json:"images"` //图片
|
|
|
CreatedAt int64 `json:"createdAt"` //文章的创建日期
|
|
|
CountLove int `json:"countLove"` //点赞数量
|
|
|
CountComment int `json:"CountComment"` //评论数量
|
|
|
Show int `json:"show"` //是否隐藏 [0显示、1不显示]
|
|
|
Tags []string `json:"tags"` //标签
|
|
|
TargetUser int `json:"targetUser"` //分发方式 [0分发给所有人、1分发给指定的人]
|
|
|
}
|
|
|
|
|
|
type RoleGetRequest struct {
|
...
|
...
|
|