1
|
// Code generated by goctl. DO NOT EDIT.
|
1
|
// Code generated by goctl. DO NOT EDIT.
|
2
|
package types
|
2
|
package types
|
3
|
|
3
|
|
4
|
-type Location struct {
|
|
|
5
|
- Longitude float64 `json:"longitude,optional"` //经度
|
|
|
6
|
- Latitude float64 `json:"latitude,optional"` //纬度
|
|
|
7
|
- Descript string `json:"descript,optional"` //地点描述
|
4
|
+type MiniArticleCommentAtUserRequest struct {
|
|
|
5
|
+ ArtitceId int64 `json:"articleId"`
|
8
|
}
|
6
|
}
|
9
|
|
7
|
|
10
|
-type Author struct {
|
8
|
+type MiniArticleCommentAtUserResponse struct {
|
|
|
9
|
+}
|
|
|
10
|
+
|
|
|
11
|
+type CommentAuthor struct {
|
11
|
Id int64 `json:"id"` // 人员id
|
12
|
Id int64 `json:"id"` // 人员id
|
12
|
Name string `json:"name"` // 人员的名字
|
13
|
Name string `json:"name"` // 人员的名字
|
13
|
Avatar string `json:"avatar"` // 人员头像URL
|
14
|
Avatar string `json:"avatar"` // 人员头像URL
|
14
|
- Group string `json:"group"` // 人员的分组
|
|
|
15
|
Position string `json:"position"` // 职位
|
15
|
Position string `json:"position"` // 职位
|
16
|
Company string `json:"company"` // 公司
|
16
|
Company string `json:"company"` // 公司
|
17
|
}
|
17
|
}
|
18
|
|
18
|
|
19
|
-type MiniArticleCreateRequest struct {
|
|
|
20
|
- Title string `json:"title"` //标题
|
|
|
21
|
- Section []string `json:"section"` //文章的文本内容
|
|
|
22
|
- AuthorId int64 `json:"authorId,optional"` //发布人id
|
|
|
23
|
- Images []string `json:"images,optional"` //图片
|
|
|
24
|
- WhoRead []int64 `json:"whoRead,optional"` //谁可查看
|
|
|
25
|
- WhoReview []int64 `json:"whoReview,optional"` //谁可评论
|
|
|
26
|
- Location Location `json:"location,optional"` //定位坐标
|
19
|
+type MiniCreateArticleCommentRequest struct {
|
|
|
20
|
+ ArtitceId int64 `json:"articleId"` // 文章id
|
|
|
21
|
+ SectionId int64 `json:"sectionId"` // 段落id
|
|
|
22
|
+ FromUserId int64 `json:",optional"` // 填写文章的人,服务端自动获取
|
|
|
23
|
+ Pid int64 `json:"commnet"` // 回复那个评论的id
|
|
|
24
|
+ Content string `json:"content"` // 评论的内容
|
|
|
25
|
+ AtWho []int64 `json:"atWho"` // 填写评论时@的人
|
|
|
26
|
+}
|
|
|
27
|
+
|
|
|
28
|
+type MiniCreateArticleCommentResponse struct {
|
|
|
29
|
+ Id int64 `json:"id"`
|
|
|
30
|
+ Pid int64 `json:"pid"`
|
|
|
31
|
+ TopId int64 `json:"topId"`
|
|
|
32
|
+ ArtitceId int64 `json:"articleId"` // 文章id
|
|
|
33
|
+ SectionId int64 `json:"sectionId"` // 段落id
|
|
|
34
|
+ FromUserId int64 `json:"fromUserId"` // 填写评论的人
|
|
|
35
|
+ FromUser CommentAuthor `json:"fromUser"` // 填写评论的人
|
|
|
36
|
+ ToUserId int64 `json:"toUserId"` // 回复哪个人
|
|
|
37
|
+ ToUser CommentAuthor `json:"toUser"` // 回复哪个人
|
|
|
38
|
+ SectionContent string `json:"sectionContent"` // 引用的文章内容文本
|
|
|
39
|
+ CountReply int `json:"countReply"` // 回复数量
|
|
|
40
|
+ CountUserLove int `json:"countUserLove"` // 用户点赞数量
|
|
|
41
|
+ CountAdminLove int `json:"countAdminLove"` // 运营点赞数量
|
|
|
42
|
+ AtWho []CommentAuthor `json:"atWho"` // 填写评论时@的人
|
27
|
}
|
43
|
}
|
28
|
|
44
|
|
29
|
-type MiniArticleCreateResponse struct {
|
|
|
30
|
- Id int64 `json:"id"`
|
45
|
+type MessageSystemRequest struct {
|
|
|
46
|
+ Page int `json:"page"`
|
|
|
47
|
+ Size int `json:"size"`
|
31
|
}
|
48
|
}
|
32
|
|
49
|
|
33
|
-type MiniArticleGetRequest struct {
|
|
|
34
|
- Id int64 `path:"id"` //id
|
|
|
35
|
- CompanyId int64 `path:",optional"`
|
50
|
+type MessageSystemResponse struct {
|
|
|
51
|
+ List []MessageSystemItem `json:"list"`
|
|
|
52
|
+ Total int64 `json:"total"`
|
36
|
}
|
53
|
}
|
37
|
|
54
|
|
38
|
-type MiniArticleGetResponse struct {
|
|
|
39
|
- Id int64 `json:"id"` //id
|
|
|
40
|
- Title string `json:"title"` //标题
|
|
|
41
|
- AuthorId int64 `json:"authorId"` //发布人id
|
|
|
42
|
- Author Author `json:"author"` //发布人
|
|
|
43
|
- CreatedAt int64 `json:"createdAt"` //文章的发布时间
|
|
|
44
|
- Section []ArticleSection `json:"section"` //文章的文本内容
|
|
|
45
|
- Images []string `json:"images"` //图片
|
|
|
46
|
- WhoRead []int64 `json:"whoRead"` //谁可查看
|
|
|
47
|
- WhoReview []int64 `json:"whoReview"` //谁可评论
|
|
|
48
|
- Location Location `json:"location"` //定位坐标
|
|
|
49
|
- CountLove int `json:"countLove"` // 点赞数量
|
|
|
50
|
- CountComment int `json:"countComment"` // 评论数量
|
|
|
51
|
- CountRead int `json:"countRead"` // 浏览数量
|
|
|
52
|
- Show int `json:"show"` // 评论的展示状态(0显示、1不显示)
|
|
|
53
|
- Edit int `json:"edit"` // 文章是否存在变更记录 (0 不存在 1存在)
|
55
|
+type MessageSystemItem struct {
|
|
|
56
|
+ Id int64 `json:"id"` // ID
|
|
|
57
|
+ Type int `json:"type"` // 系统分类
|
|
|
58
|
+ Title string `json:"title"` // 标题
|
|
|
59
|
+ Content string `json:"content"` // 内容
|
|
|
60
|
+ CreatedAt int64 `json:"createdAt"` // 创建时间
|
54
|
}
|
61
|
}
|
55
|
|
62
|
|
56
|
-type ArticleSection struct {
|
|
|
57
|
- Id int64 `json:"id"` //段落id
|
|
|
58
|
- Content string `json:"content"` // 文本内容
|
|
|
59
|
- SortBy int `json:"sortBy"` // 排序
|
|
|
60
|
- TotalComment int `json:"totalComment"` // 评论的数量
|
63
|
+type MessageBusinessRequest struct {
|
|
|
64
|
+ Type int `json:"type"`
|
|
|
65
|
+ Page int `json:"page"`
|
|
|
66
|
+ Size int `json:"size"`
|
61
|
}
|
67
|
}
|
62
|
|
68
|
|
63
|
-type MiniArticleSearchMeRequest struct {
|
|
|
64
|
- AuthorId int64 `json:",optional"`
|
|
|
65
|
- CompanyId int64 `json:",optional"`
|
|
|
66
|
- Page int `json:"page"`
|
|
|
67
|
- Size int `json:"size"`
|
69
|
+type MessageBusinessResponse struct {
|
|
|
70
|
+ List []MessageBusinessItem `json:"list"`
|
|
|
71
|
+ Total int64 `json:"total"`
|
68
|
}
|
72
|
}
|
69
|
|
73
|
|
70
|
-type MiniArticleSearchMeResponse struct {
|
|
|
71
|
- Total int `json:"total"`
|
|
|
72
|
- List []ArticleSearchMe `json:"list"`
|
74
|
+type MessageBusinessItem struct {
|
|
|
75
|
+ Id int64 `json:"id"`
|
|
|
76
|
+ Type int `json:"type"` // 分类 (1回复 2点赞 3被采纳)
|
|
|
77
|
+ OptType int `json:"optType"` // 操作类型(1针对文章、1针对评论、2针对圆桌)
|
|
|
78
|
+ CompanyId int64 `json:"companyId"` // 操作人公司ID
|
|
|
79
|
+ UserId int64 `json:"userId"` // 操作人用户ID
|
|
|
80
|
+ RecipientId int64 `json:"recipientId"` // 接收者ID
|
|
|
81
|
+ ArticleId int64 `json:"articleId"` // 文章ID
|
|
|
82
|
+ CommentId int64 `json:"commentId"` // 评论ID
|
|
|
83
|
+ DiscussionId int64 `json:"discussionId"` // 圆桌ID
|
|
|
84
|
+ DiscussionOpinionId int64 `json:"discussionOpinionId"` // 观点ID
|
|
|
85
|
+ Content string `json:"content"` // 消息内容
|
|
|
86
|
+ CreatedAt int64 `json:"createdAt"` // 创建时间
|
|
|
87
|
+ User *SimpleUser `json:"user"` // 操作人
|
|
|
88
|
+ Article *SimpleArticle `json:"article"` // 文章
|
|
|
89
|
+ Comment *SimpleComment `json:"comment"` // 评论(不一定是自己,可能是被人@到)
|
73
|
}
|
90
|
}
|
74
|
|
91
|
|
75
|
-type ArticleSearchMe struct {
|
|
|
76
|
- Id int64 `json:"id"` //id
|
|
|
77
|
- Title string `json:"title"` //标题
|
|
|
78
|
- Images []string `json:"images"` //图片
|
|
|
79
|
- CreatedAt int64 `json:"createdAt"` //文章的创建日期
|
|
|
80
|
- CountLove int `json:"countLove"` //点赞数量
|
|
|
81
|
- CountComment int `json:"CountComment"` //评论数量
|
|
|
82
|
- Show int `json:"show"` //是否隐藏 [0显示、1不显示]
|
92
|
+type SimpleUser struct {
|
|
|
93
|
+ Id int64 `json:"id"`
|
|
|
94
|
+ CompanyId int64 `json:"companyId,omitempty"` // 公司ID
|
|
|
95
|
+ CompanyName string `json:"companyName,omitempty"` // 公司名称
|
|
|
96
|
+ Name string `json:"name,omitempty"` // 名称
|
|
|
97
|
+ Avatar string `json:"avatar,omitempty"` // 头像
|
|
|
98
|
+ Position string `json:"position,omitempty"` // 职位
|
83
|
}
|
99
|
}
|
84
|
|
100
|
|
85
|
-type MiniUserLikeArticleRequest struct {
|
|
|
86
|
- ArticleId int64 `json:"articleId"` // 文章id
|
|
|
87
|
- CompanyId int64 `json:",optional"` //公司id
|
|
|
88
|
- Page int `json:"page"` //分页,第几页
|
|
|
89
|
- Size int `json:"size"` //分页,每页几条
|
101
|
+type SimpleArticle struct {
|
|
|
102
|
+ Id int64 `json:"id"`
|
|
|
103
|
+ Title string `json:"title"` // 文章标题
|
|
|
104
|
+ Summary string `json:"summary"` // 文章概要
|
|
|
105
|
+ CountLove int `json:"countLove"` // 点赞数量
|
|
|
106
|
+ CountComment int `json:"countComment"` // 评论数量
|
|
|
107
|
+ Show int `json:"show"` // 文章的展示状态(0显示、1不显示)
|
90
|
}
|
108
|
}
|
91
|
|
109
|
|
92
|
-type MiniUserLikeArticleResponse struct {
|
|
|
93
|
- Total int64 `json:"total"` //总数
|
|
|
94
|
- List []WhichUserLikeArticle `json:"list"` //列表
|
110
|
+type TagCreateRequest struct {
|
|
|
111
|
+ CompanyId int64 `json:"companyId"`
|
|
|
112
|
+ Image string `json:"image"`
|
|
|
113
|
+ Name string `json:"name"` // 标签名称
|
|
|
114
|
+ Group string `json:"group"` // 标签分类
|
|
|
115
|
+ Remark string `json:"remark,optional"` // 备注
|
95
|
}
|
116
|
}
|
96
|
|
117
|
|
97
|
-type WhichUserLikeArticle struct {
|
|
|
98
|
- ArticleId int64 `json:"articleId"` // 文章id
|
|
|
99
|
- UserId int64 `json:"userId"` // 人员id
|
|
|
100
|
- Name string `json:"name"` // 人员名称
|
|
|
101
|
- Avatar string `json:"avatar"` // 人员头像
|
|
|
102
|
- CreatedAt int64 `json:"createdAt"` // 点赞记录的时间
|
118
|
+type TagCreateResponse struct {
|
|
|
119
|
+ Id int64 `json:"id"`
|
103
|
}
|
120
|
}
|
104
|
|
121
|
|
105
|
-type MiniSetUserLikeRequset struct {
|
|
|
106
|
- ArticleId int64 `json:"articleId"` //文章id
|
|
|
107
|
- CommentId int64 `json:"commentId"` //评论id
|
|
|
108
|
- UserId int64 `json:",optional"` //操作人
|
|
|
109
|
- Flag int `json:"flag"` //点赞标志 1、点赞 2 、取消点赞
|
122
|
+type TagEditRequest struct {
|
|
|
123
|
+ Id int64 `json:"id"`
|
|
|
124
|
+ CompanyId int64 `json:"-"`
|
|
|
125
|
+ Image string `json:"image"`
|
|
|
126
|
+ Name string `json:"name"` // 标签名称
|
|
|
127
|
+ Group string `json:"group"` // 标签分类
|
|
|
128
|
+ Remark string `json:"remark,optional"` // 备注
|
110
|
}
|
129
|
}
|
111
|
|
130
|
|
112
|
-type MiniSetUserLikeResponse struct {
|
|
|
113
|
- ArticleId int64 `json:"articleId"` //文章id
|
|
|
114
|
- CommentId int64 `json:"commentId"` //评论id
|
|
|
115
|
- Count int `json:"count"` //现有的点赞数量
|
131
|
+type TagEditResponse struct {
|
|
|
132
|
+ Id int64 `json:"id"`
|
116
|
}
|
133
|
}
|
117
|
|
134
|
|
118
|
-type MiniArticleBackupSearchRequest struct {
|
|
|
119
|
- Page int `json:"page"`
|
|
|
120
|
- Size int `json:"size"`
|
|
|
121
|
- ArticleId int `json:"articleId"`
|
|
|
122
|
- CompanyId int64 `json:",optional"` // 服务端自动获取
|
135
|
+type TagGetRequest struct {
|
|
|
136
|
+ Id int64 `path:"id"`
|
|
|
137
|
+ CompanyId int64 `path:"-"`
|
123
|
}
|
138
|
}
|
124
|
|
139
|
|
125
|
-type MiniArticleBackupSearchResponse struct {
|
|
|
126
|
- Total int64 `json:"total"`
|
|
|
127
|
- List []MiniArticleBackupItem `json:"list"`
|
140
|
+type TagGetResponse struct {
|
|
|
141
|
+ Id int64 `json:"id"`
|
|
|
142
|
+ Image string `json:"image"`
|
|
|
143
|
+ Name string `json:"name"` // 标签名称
|
|
|
144
|
+ Group string `json:"group"` // 标签分类
|
|
|
145
|
+ Remark string `json:"remark"` // 备注
|
128
|
}
|
146
|
}
|
129
|
|
147
|
|
130
|
-type MiniArticleBackupItem struct {
|
|
|
131
|
- Id int64 `json:"id"`
|
|
|
132
|
- Title string `json:"title"`
|
|
|
133
|
- Content string `json:"content"`
|
|
|
134
|
- Images []string `json:"images"`
|
|
|
135
|
- CreatedAt int64 `json:"createdAt"`
|
|
|
136
|
- Location Location `json:"location"`
|
148
|
+type TagListRequest struct {
|
|
|
149
|
+ Page int `json:"page"`
|
|
|
150
|
+ Size int `json:"size"`
|
|
|
151
|
+ CompanyId int64 `json:"-"`
|
|
|
152
|
+ TagName string `json:"tagName,optional"`
|
|
|
153
|
+ Group string `json:"group,optional"`
|
|
|
154
|
+ Remark string `json:"remark,optional"`
|
137
|
}
|
155
|
}
|
138
|
|
156
|
|
139
|
-type MiniArticleMarkUserReadRequest struct {
|
|
|
140
|
- UserId int64 `json:",optional"` // 当前操作人
|
|
|
141
|
- CompanyId int64 `json:",optional"` // 当前公司
|
|
|
142
|
- ArticleId int64 `json:"articleId"` // 文章id
|
157
|
+type TagListResponse struct {
|
|
|
158
|
+ Total int64 `json:"total"`
|
|
|
159
|
+ List []TagItem `json:"list"`
|
143
|
}
|
160
|
}
|
144
|
|
161
|
|
145
|
-type MiniArticleMarkUserReadResponse struct {
|
|
|
146
|
- Id int64 `json:"id"`
|
162
|
+type TagItem struct {
|
|
|
163
|
+ Id int64 `json:"id"`
|
|
|
164
|
+ Image string `json:"image"`
|
|
|
165
|
+ Name string `json:"name"` // 标签名称
|
|
|
166
|
+ Group string `json:"group"` // 标签分类
|
|
|
167
|
+ Remark string `json:"remark"` // 备注
|
|
|
168
|
+ CreatedAt int64 `json:"createdAt"`
|
147
|
}
|
169
|
}
|
148
|
|
170
|
|
149
|
-type MiniArticleDraftCreateRequest struct {
|
|
|
150
|
- CompanyId int64 `json:",optional"`
|
|
|
151
|
- AuthorId int64 `json:",optional"` // 发布人
|
|
|
152
|
- Template int `json:"template"` // 使用哪个模板进行编辑 0、无 1、演绎式 2、归纳式
|
|
|
153
|
- Section []string `json:"section"` // 填写的内容
|
|
|
154
|
- Title string `json:"title"` // 标题
|
|
|
155
|
- Images []string `json:"images"` // 图片
|
|
|
156
|
- WhoRead []int64 `json:"whoRead"` // 谁可以看
|
|
|
157
|
- WhoReview []int64 `json:"whoReview"` // 评论人
|
|
|
158
|
- Location Location `json:"location"` // 坐标
|
171
|
+type TagDeleteRequest struct {
|
|
|
172
|
+ Id int64 `path:"id"`
|
|
|
173
|
+ CompanyId int64 `path:"-"`
|
159
|
}
|
174
|
}
|
160
|
|
175
|
|
161
|
-type MiniArticleDraftCreateResponse struct {
|
176
|
+type TagDeleteResponse struct {
|
162
|
Id int64 `json:"id"`
|
177
|
Id int64 `json:"id"`
|
163
|
}
|
178
|
}
|
164
|
|
179
|
|
165
|
-type MiniArticleDraftUpdateRequest struct {
|
|
|
166
|
- Id int64 `json:"id"`
|
|
|
167
|
- CompanyId int64 `json:",optional"`
|
|
|
168
|
- AuthorId int64 `json:",optional"` // 发布人
|
|
|
169
|
- Template int `json:"template"` // 使用哪个模板进行编辑 0、无 1、演绎式 2、归纳式
|
|
|
170
|
- Section []string `json:"section"` // 填写的内容
|
|
|
171
|
- Title string `json:"title"` // 标题
|
|
|
172
|
- Images []string `json:"images"` // 图片
|
|
|
173
|
- WhoRead []int64 `json:"whoRead"` // 谁可以看
|
|
|
174
|
- WhoReview []int64 `json:"whoReview"` // 评论人
|
|
|
175
|
- Location Location `json:"location"` // 坐标
|
|
|
176
|
-}
|
|
|
177
|
-
|
|
|
178
|
-type MiniArticleDraftUpdateResponse struct {
|
|
|
179
|
- Id int64 `json:"id"`
|
180
|
+type MiniUserLoginRequest struct {
|
|
|
181
|
+ LoginType string `json:"loginType"` // 登录类型 wechat-login whchat-phone-login phone-password-login phone-smscode-login
|
|
|
182
|
+ WechatAuthCode string `json:"wechatAuthcode,optional"` // 微信登录 授权码
|
|
|
183
|
+ WechatEncryptedData string `json:"wechatEncryptedData,optional"` // 微信登录 加密数据
|
|
|
184
|
+ WechatIV string `json:"wechatIV,optional"` // 微信登录 加密算法初始向量
|
|
|
185
|
+ Phone string `json:"phone,optional"` // 手机号
|
|
|
186
|
+ Password string `json:"password,optional"` // 密码
|
|
|
187
|
+ SmsCode string `json:"smsCode,optional"` // 短信验证码
|
180
|
}
|
188
|
}
|
181
|
|
189
|
|
182
|
-type MiniArticleDraftSearchMeRequest struct {
|
|
|
183
|
- CompanyId int64 `json:",optional"` // 公司id
|
|
|
184
|
- AuthorId int64 `json:",optional"` // 发布人
|
|
|
185
|
- Page int `json:"page"`
|
|
|
186
|
- Size int `json:"size"`
|
190
|
+type MiniUserLoginResponse struct {
|
|
|
191
|
+ Token string `json:"token"` // x-token
|
|
|
192
|
+ Phone string `json:"phone"` // 手机号
|
|
|
193
|
+ Message string `json:"message"` // 失败消息(审核中,注册成功等待审核)
|
|
|
194
|
+ Success bool `json:"success"` // 成功标识
|
187
|
}
|
195
|
}
|
188
|
|
196
|
|
189
|
-type MiniArticleDraftSearchMeResponse struct {
|
|
|
190
|
- Total int64 `json:"total"`
|
|
|
191
|
- List []MiniArticleDraftItem `json:"list"`
|
197
|
+type MiniUserSwitchAccountRequest struct {
|
|
|
198
|
+ CompanyId int64 `json:"companyId"`
|
192
|
}
|
199
|
}
|
193
|
|
200
|
|
194
|
-type MiniArticleDraftItem struct {
|
|
|
195
|
- Id int64 `json:"id"`
|
|
|
196
|
- Template int `json:"template"` // 使用哪个模板进行编辑 0、无 1、演绎式 2、归纳式
|
|
|
197
|
- Section []string `json:"section"` // 填写的内容
|
|
|
198
|
- Title string `json:"title"` // 标题
|
|
|
199
|
- Images []string `json:"images"` // 图片
|
|
|
200
|
- CreatedAt int64 `json:"createdAt"`
|
201
|
+type MiniUserInfoRequest struct {
|
201
|
}
|
202
|
}
|
202
|
|
203
|
|
203
|
-type MiniArticleDraftGetMeRequest struct {
|
|
|
204
|
- CompanyId int64 `path:",optional"` // 公司id
|
|
|
205
|
- AuthorId int64 `path:",optional"` // 发布人
|
|
|
206
|
- Id int64 `path:"id"`
|
|
|
207
|
-}
|
|
|
208
|
-
|
|
|
209
|
-type MiniArticleDraftGetMeResponse struct {
|
|
|
210
|
- Id int64 `json:"id"` //
|
|
|
211
|
- Template int `json:"template"` // 使用哪个模板进行编辑 0、无 1、演绎式 2、归纳式
|
|
|
212
|
- Section []string `json:"Section"` // 填写的内容
|
|
|
213
|
- Title string `json:"title"` // 标题
|
|
|
214
|
- Images []string `json:"images"` // 图片
|
|
|
215
|
- WhoRead []int64 `json:"whoRead"` // 谁可以看
|
|
|
216
|
- WhoReview []int64 `json:"whoReview"` // 评论人
|
|
|
217
|
- Location Location `json:"location"` // 坐标
|
204
|
+type MiniUserInfoResponse struct {
|
|
|
205
|
+ User *UserItem `json:"user,omitempty"` // 用户信息
|
|
|
206
|
+ TotalArticle int64 `json:"totalArticle"` // 累计信息发布
|
|
|
207
|
+ TotalLoved int64 `json:"totalLoved"` // 累计收到的赞
|
|
|
208
|
+ TotalAccepted int64 `json:"totalAccepted"` // 累计被采纳
|
|
|
209
|
+ Accounts []Account `json:"accounts"` // 公司账号
|
|
|
210
|
+ Auths []Auth `json:"auths"` // 权限列表
|
218
|
}
|
211
|
}
|
219
|
|
212
|
|
220
|
-type MiniArticleDraftDeleteMeRequest struct {
|
|
|
221
|
- CompanyId int64 `path:",optional"` // 公司id
|
|
|
222
|
- AuthorId int64 `path:",optional"` // 发布人
|
|
|
223
|
- Id int64 `path:"id"`
|
213
|
+type MiniUserApplyJoinCompanyRequest struct {
|
|
|
214
|
+ Phone string `json:"phone"`
|
|
|
215
|
+ Code string `json:"code"`
|
224
|
}
|
216
|
}
|
225
|
|
217
|
|
226
|
-type MiniArticleDraftDeleteMeResponse struct {
|
|
|
227
|
- Id int64 `json:"id"` //
|
218
|
+type MiniUserApplyJoinCompanyResponse struct {
|
228
|
}
|
219
|
}
|
229
|
|
220
|
|
230
|
-type MiniArticleMarkListRequest struct {
|
|
|
231
|
- Page int `json:"page"`
|
|
|
232
|
- Size int `json:"size"`
|
221
|
+type MiniUserAuditRequest struct {
|
|
|
222
|
+ UserId int64 `json:"userId"` // 用户ID
|
|
|
223
|
+ Status int `json:"status"` // 审核状态 1:审核通过 2:拒绝
|
233
|
}
|
224
|
}
|
234
|
|
225
|
|
235
|
-type MiniArticleMarkListResponse struct {
|
|
|
236
|
- Total int64 `json:"total"`
|
|
|
237
|
- List []MiniArticleMarkItem `json:"list"`
|
226
|
+type MiniUserDepartmentUsersRequest struct {
|
238
|
}
|
227
|
}
|
239
|
|
228
|
|
240
|
-type MiniArticleMarkItem struct {
|
|
|
241
|
- Id int64 `json:"id"`
|
|
|
242
|
- CompanyId int64 `json:"companyId"`
|
|
|
243
|
- UserId int64 `json:"userId"`
|
|
|
244
|
- ArticleId int64 `json:"articleId"`
|
|
|
245
|
- Title string `json:"title"`
|
|
|
246
|
- Author SimpleUser `json:"author"` // 发布人
|
|
|
247
|
- UpdatedAt int64 `json:"updatedAt"`
|
229
|
+type MiniUserDepartmentUsersResponse struct {
|
|
|
230
|
+ Departments []*Department `json:"departments"`
|
|
|
231
|
+ Users []*UserItem `json:"users"`
|
248
|
}
|
232
|
}
|
249
|
|
233
|
|
250
|
-type SystemArticleGetRequest struct {
|
|
|
251
|
- Id int64 `path:"id"` //id
|
|
|
252
|
- CompanyId int64 `path:",optional"`
|
234
|
+type MiniUserFollowedSearchRequest struct {
|
|
|
235
|
+ Page int `json:"page,optional"`
|
|
|
236
|
+ Size int `json:"size,optional"`
|
253
|
}
|
237
|
}
|
254
|
|
238
|
|
255
|
-type UserShowName struct {
|
|
|
256
|
- Id int `json:"id"`
|
|
|
257
|
- Name int `json:"name"`
|
239
|
+type MiniUserFollowedSearchResponse struct {
|
|
|
240
|
+ List []*UserFollowItem `json:"users"`
|
|
|
241
|
+ Total int64 `json:"total"`
|
258
|
}
|
242
|
}
|
259
|
|
243
|
|
260
|
-type SystemArticleGetResponse struct {
|
|
|
261
|
- Id int64 `json:"id"` // id
|
|
|
262
|
- Title string `json:"title"` // 标题
|
|
|
263
|
- AuthorId int64 `json:"authorId"` // 发布人id
|
|
|
264
|
- Author Author `json:"author"` // 发布人
|
|
|
265
|
- CreatedAt int64 `json:"createdAt"` // 文章的发布时间
|
|
|
266
|
- Section []ArticleSection `json:"section"` // 文章的文本内容
|
|
|
267
|
- Images []string `json:"images"` // 图片
|
|
|
268
|
- WhoRead []int64 `json:"whoRead"` // 谁可查看
|
|
|
269
|
- WhoReadInfo []UserShowName `json:"whoReadInfo"` // 谁可查看
|
|
|
270
|
- WhoReview []int64 `json:"whoReview"` // 谁可评论
|
|
|
271
|
- WhoReviewInfo []UserShowName `json:"whoReviewInfo"` // 谁可评论
|
|
|
272
|
- Location Location `json:"location"` // 定位坐标
|
|
|
273
|
- CountLove int `json:"countLove"` // 点赞数量
|
|
|
274
|
- CountComment int `json:"countComment"` // 评论数量
|
|
|
275
|
- CountRead int `json:"countRead"` // 浏览数量
|
|
|
276
|
- Show int `json:"show"` // 评论的展示状态(0显示、1不显示)
|
244
|
+type UserItem struct {
|
|
|
245
|
+ Id int64 `json:"id,omitempty"` // 用户ID
|
|
|
246
|
+ CompanyId int64 `json:"companyId,omitempty"` // 公司ID
|
|
|
247
|
+ CompanyName string `json:"companyName,omitempty"` // 公司名称
|
|
|
248
|
+ Flag int `json:"flag,omitempty"` // 标识 1:管理员 2:普通用户 (有绑定角色是管理员)
|
|
|
249
|
+ Name string `json:"name,omitempty"` // 名称
|
|
|
250
|
+ Avatar string `json:"avatar,omitempty"` // 头像
|
|
|
251
|
+ Phone string `json:"phone,omitempty"` // 手机号 唯一
|
|
|
252
|
+ Position string `json:"position,omitempty"` // 职位
|
|
|
253
|
+ Enable int `json:"enable,omitempty"` // 启用状态 1:启用 2:禁用
|
|
|
254
|
+ AuditStatus *int `json:"auditStatus,omitempty"` // 审核状态 0:待审核 1:审核通过 2:拒绝
|
|
|
255
|
+ Follower []int64 `json:"followers,omitempty"` // 关注我的人 (冗余)
|
|
|
256
|
+ Following []int64 `json:"following,omitempty"` // 我关注的人 (冗余)
|
|
|
257
|
+ Departments []int64 `json:"departments,omitempty"` // 所属部门
|
|
|
258
|
+ AccountFrom string `json:"accountFrom,omitempty"` // 账号来源 后台新增、扫码注册
|
277
|
}
|
259
|
}
|
278
|
|
260
|
|
279
|
-type SystemArticleSearchRequest struct {
|
|
|
280
|
- CompanyId int64 `json:",optional"`
|
|
|
281
|
- Page int `json:"page"`
|
|
|
282
|
- Size int `json:"size"`
|
261
|
+type Account struct {
|
|
|
262
|
+ CompanyId int64 `json:"companyId"` // 公司ID
|
|
|
263
|
+ CompanyName string `json:"companyName"` // 公司名称
|
|
|
264
|
+ Logo string `json:"logo"` // 公司图标
|
|
|
265
|
+ UserId int64 `json:"userId"` // 用户ID
|
|
|
266
|
+ Name string `json:"name"` // 名称
|
|
|
267
|
+ Position string `json:"position"` // 职位
|
283
|
}
|
268
|
}
|
284
|
|
269
|
|
285
|
-type SystemArticleSearchResponse struct {
|
|
|
286
|
- Total int `json:"total"`
|
|
|
287
|
- List []SystemArticleSearch `json:"list"`
|
270
|
+type Department struct {
|
|
|
271
|
+ Id int64 `json:"id,omitempty"` // 部门ID
|
|
|
272
|
+ CompanyId int64 `json:"companyId,omitempty"` // 公司ID
|
|
|
273
|
+ ParentId int64 `json:"parentId,omitempty"` // 父级ID
|
|
|
274
|
+ Name string `json:"name,omitempty"` // 部门名称
|
288
|
}
|
275
|
}
|
289
|
|
276
|
|
290
|
-type SystemArticleSearch struct {
|
|
|
291
|
- Id int64 `json:"id"` //id
|
|
|
292
|
- Title string `json:"title"` //标题
|
|
|
293
|
- Author string `json:"author"` //发布人
|
|
|
294
|
- Images []string `json:"images"` //图片
|
|
|
295
|
- CreatedAt int64 `json:"createdAt"` //文章的创建日期
|
|
|
296
|
- CountLove int `json:"countLove"` //点赞数量
|
|
|
297
|
- CountComment int `json:"CountComment"` //评论数量
|
|
|
298
|
- Show int `json:"show"` //是否隐藏 [0显示、1不显示]
|
|
|
299
|
- Tags []string `json:"tags"` //标签
|
|
|
300
|
- TargetUser int `json:"targetUser"` //分发方式 [0分发给所有人、1分发给指定的人]
|
277
|
+type UserSearchRequest struct {
|
|
|
278
|
+ Page int `json:"page,optional"`
|
|
|
279
|
+ Size int `json:"size,optional"`
|
|
|
280
|
+ AuditFlag *int `json:"auditFlag,optional"` // 按审核状态 0:待审核 1:审核通过 2:拒绝
|
301
|
}
|
281
|
}
|
302
|
|
282
|
|
303
|
-type CommentRequest struct {
|
283
|
+type UserSearchResponse struct {
|
|
|
284
|
+ List []*UserItem `json:"list"`
|
|
|
285
|
+ Total int64 `json:"total"`
|
304
|
}
|
286
|
}
|
305
|
|
287
|
|
306
|
-type CommentResposne struct {
|
|
|
307
|
- List []Comment `json:"list"`
|
288
|
+type FollowRequest struct {
|
|
|
289
|
+ UserId int64 `json:"userId"`
|
308
|
}
|
290
|
}
|
309
|
|
291
|
|
310
|
-type Comment struct {
|
292
|
+type UserFollowItem struct {
|
|
|
293
|
+ Id int64 `json:"id"` // 用户ID
|
|
|
294
|
+ Name string `json:"name"` // 名称
|
|
|
295
|
+ CompanyName string `json:"companyName"` // 公司名称
|
|
|
296
|
+ Avatar string `json:"avatar"` // 头像
|
|
|
297
|
+ Position string `json:"position"` // 职位
|
|
|
298
|
+ Followed bool `json:"followed"` // 关注
|
|
|
299
|
+ MutualFollowed bool `json:"mutualFollowed"` // 互相关注标识
|
311
|
}
|
300
|
}
|
312
|
|
301
|
|
313
|
-type MessageSystemRequest struct {
|
302
|
+type MiniMyLikeRequest struct {
|
314
|
Page int `json:"page"`
|
303
|
Page int `json:"page"`
|
315
|
Size int `json:"size"`
|
304
|
Size int `json:"size"`
|
316
|
}
|
305
|
}
|
317
|
|
306
|
|
318
|
-type MessageSystemResponse struct {
|
|
|
319
|
- List []MessageSystemItem `json:"list"`
|
|
|
320
|
- Total int64 `json:"total"`
|
307
|
+type MiniMyLikeResponse struct {
|
|
|
308
|
+ List []MyLikeItem `json:"list"`
|
|
|
309
|
+ Total int64 `json:"total"`
|
321
|
}
|
310
|
}
|
322
|
|
311
|
|
323
|
-type MessageSystemItem struct {
|
|
|
324
|
- Id int64 `json:"id"` // ID
|
|
|
325
|
- Type int `json:"type"` // 系统分类
|
|
|
326
|
- Title string `json:"title"` // 标题
|
|
|
327
|
- Content string `json:"content"` // 内容
|
|
|
328
|
- CreatedAt int64 `json:"createdAt"` // 创建时间
|
312
|
+type MyLikeItem struct {
|
|
|
313
|
+ UserId int64 `json:"userId"` // 发布人id
|
|
|
314
|
+ ArticleId int64 `json:"articleId"` // 文章id
|
|
|
315
|
+ CommentId int64 `json:"commentId"` // 评论id
|
|
|
316
|
+ CreatedAt int64 `json:"createdAt"` // 创建时间
|
|
|
317
|
+ User *SimpleUser `json:"user"` // 发布人
|
|
|
318
|
+ Article *SimpleArticle `json:"article"` // 文章
|
|
|
319
|
+ Comment *SimpleComment `json:"comment"` // 评论
|
329
|
}
|
320
|
}
|
330
|
|
321
|
|
331
|
-type MessageBusinessRequest struct {
|
|
|
332
|
- Type int `json:"type"`
|
|
|
333
|
- Page int `json:"page"`
|
|
|
334
|
- Size int `json:"size"`
|
322
|
+type SimpleComment struct {
|
|
|
323
|
+ Id int64 `json:"id"`
|
|
|
324
|
+ Content string `json:"content"` // 评论内容
|
|
|
325
|
+ CountLove int `json:"countLove"` // 点赞数量
|
|
|
326
|
+ CountComment int `json:"countComment"` // 评论数量
|
|
|
327
|
+ Show int `json:"show"` // 评论的展示状态(0显示、1不显示)
|
335
|
}
|
328
|
}
|
336
|
|
329
|
|
337
|
-type MessageBusinessResponse struct {
|
|
|
338
|
- List []MessageBusinessItem `json:"list"`
|
|
|
339
|
- Total int64 `json:"total"`
|
330
|
+type SystemUserInfoRequest struct {
|
340
|
}
|
331
|
}
|
341
|
|
332
|
|
342
|
-type MessageBusinessItem struct {
|
|
|
343
|
- Id int64 `json:"id"`
|
|
|
344
|
- Type int `json:"type"` // 分类 (1回复 2点赞 3被采纳)
|
|
|
345
|
- OptType int `json:"optType"` // 操作类型(1针对文章、1针对评论、2针对圆桌)
|
|
|
346
|
- CompanyId int64 `json:"companyId"` // 操作人公司ID
|
|
|
347
|
- UserId int64 `json:"userId"` // 操作人用户ID
|
|
|
348
|
- RecipientId int64 `json:"recipientId"` // 接收者ID
|
|
|
349
|
- ArticleId int64 `json:"articleId"` // 文章ID
|
|
|
350
|
- CommentId int64 `json:"commentId"` // 评论ID
|
|
|
351
|
- DiscussionId int64 `json:"discussionId"` // 圆桌ID
|
|
|
352
|
- DiscussionOpinionId int64 `json:"discussionOpinionId"` // 观点ID
|
|
|
353
|
- Content string `json:"content"` // 消息内容
|
|
|
354
|
- CreatedAt int64 `json:"createdAt"` // 创建时间
|
|
|
355
|
- User *SimpleUser `json:"user"` // 操作人
|
|
|
356
|
- Article *SimpleArticle `json:"article"` // 文章
|
|
|
357
|
- Comment *SimpleComment `json:"comment"` // 评论(不一定是自己,可能是被人@到)
|
333
|
+type SystemUserInfoResponse struct {
|
|
|
334
|
+ UserId int64 `json:"userId"`
|
|
|
335
|
+ UserName string `json:"userName"`
|
|
|
336
|
+ Avatar string `json:"avatar"`
|
|
|
337
|
+ CompanyId int64 `json:"companyId"`
|
|
|
338
|
+ CompanyName string `json:"companyName"`
|
358
|
}
|
339
|
}
|
359
|
|
340
|
|
360
|
-type SimpleUser struct {
|
|
|
361
|
- Id int64 `json:"id"`
|
|
|
362
|
- CompanyId int64 `json:"companyId,omitempty"` // 公司ID
|
|
|
363
|
- CompanyName string `json:"companyName,omitempty"` // 公司名称
|
|
|
364
|
- Name string `json:"name,omitempty"` // 名称
|
|
|
365
|
- Avatar string `json:"avatar,omitempty"` // 头像
|
|
|
366
|
- Position string `json:"position,omitempty"` // 职位
|
341
|
+type CompanySearchRequest struct {
|
|
|
342
|
+ Page int `json:"page,optional"`
|
|
|
343
|
+ Size int `json:"size,optional"`
|
|
|
344
|
+ Flag int `json:"flag,optional"` // 1:用户已加入的 2:用户未加入的公司
|
|
|
345
|
+ UserId int64 `json:"userId,optional"` // 按用户搜索(用户所加入的企业)
|
|
|
346
|
+ Code string `json:"code,optional"` // 按编码搜索
|
367
|
}
|
347
|
}
|
368
|
|
348
|
|
369
|
-type SimpleArticle struct {
|
|
|
370
|
- Id int64 `json:"id"`
|
|
|
371
|
- Title string `json:"title"` // 文章标题
|
|
|
372
|
- Summary string `json:"summary"` // 文章概要
|
|
|
373
|
- CountLove int `json:"countLove"` // 点赞数量
|
|
|
374
|
- CountComment int `json:"countComment"` // 评论数量
|
|
|
375
|
- Show int `json:"show"` // 文章的展示状态(0显示、1不显示)
|
349
|
+type CompanySearchResponse struct {
|
|
|
350
|
+ List []Company `json:"list"`
|
|
|
351
|
+ Total int64 `json:"total"`
|
376
|
}
|
352
|
}
|
377
|
|
353
|
|
378
|
-type TagCreateRequest struct {
|
|
|
379
|
- CompanyId int64 `json:"companyId"`
|
|
|
380
|
- Image string `json:"image"`
|
|
|
381
|
- Name string `json:"name"` // 标签名称
|
|
|
382
|
- Group string `json:"group"` // 标签分类
|
|
|
383
|
- Remark string `json:"remark,optional"` // 备注
|
354
|
+type Company struct {
|
|
|
355
|
+ Id int64 `json:"id,omitempty"` // 唯一标识
|
|
|
356
|
+ Name string `json:"name,omitempty"` // 名称
|
|
|
357
|
+ Code string `json:"code,omitempty"` // 编码(搜索使用,4位字母数字)
|
|
|
358
|
+ Logo string `json:"logo,omitempty"` // 公司LOGO
|
384
|
}
|
359
|
}
|
385
|
|
360
|
|
386
|
-type TagCreateResponse struct {
|
|
|
387
|
- Id int64 `json:"id"`
|
361
|
+type Location struct {
|
|
|
362
|
+ Longitude float64 `json:"longitude,optional"` //经度
|
|
|
363
|
+ Latitude float64 `json:"latitude,optional"` //纬度
|
|
|
364
|
+ Descript string `json:"descript,optional"` //地点描述
|
388
|
}
|
365
|
}
|
389
|
|
366
|
|
390
|
-type TagEditRequest struct {
|
|
|
391
|
- Id int64 `json:"id"`
|
|
|
392
|
- CompanyId int64 `json:"-"`
|
|
|
393
|
- Image string `json:"image"`
|
|
|
394
|
- Name string `json:"name"` // 标签名称
|
|
|
395
|
- Group string `json:"group"` // 标签分类
|
|
|
396
|
- Remark string `json:"remark,optional"` // 备注
|
367
|
+type ArticleAuthor struct {
|
|
|
368
|
+ Id int64 `json:"id"` // 人员id
|
|
|
369
|
+ Name string `json:"name"` // 人员的名字
|
|
|
370
|
+ Avatar string `json:"avatar"` // 人员头像URL
|
|
|
371
|
+ Position string `json:"position"` // 职位
|
|
|
372
|
+ Company string `json:"company"` // 公司
|
397
|
}
|
373
|
}
|
398
|
|
374
|
|
399
|
-type TagEditResponse struct {
|
375
|
+type MiniArticleCreateRequest struct {
|
|
|
376
|
+ Title string `json:"title"` //标题
|
|
|
377
|
+ Section []string `json:"section"` //文章的文本内容
|
|
|
378
|
+ AuthorId int64 `json:"authorId,optional"` //发布人id
|
|
|
379
|
+ Images []string `json:"images,optional"` //图片
|
|
|
380
|
+ WhoRead []int64 `json:"whoRead,optional"` //谁可查看
|
|
|
381
|
+ WhoReview []int64 `json:"whoReview,optional"` //谁可评论
|
|
|
382
|
+ Location Location `json:"location,optional"` //定位坐标
|
|
|
383
|
+}
|
|
|
384
|
+
|
|
|
385
|
+type MiniArticleCreateResponse struct {
|
400
|
Id int64 `json:"id"`
|
386
|
Id int64 `json:"id"`
|
401
|
}
|
387
|
}
|
402
|
|
388
|
|
403
|
-type TagGetRequest struct {
|
|
|
404
|
- Id int64 `path:"id"`
|
|
|
405
|
- CompanyId int64 `path:"-"`
|
389
|
+type MiniArticleGetRequest struct {
|
|
|
390
|
+ Id int64 `path:"id"` //id
|
|
|
391
|
+ CompanyId int64 `path:",optional"` //当前公司
|
|
|
392
|
+ UserId int `path:",optional"` //当前用户
|
406
|
}
|
393
|
}
|
407
|
|
394
|
|
408
|
-type TagGetResponse struct {
|
|
|
409
|
- Id int64 `json:"id"`
|
|
|
410
|
- Image string `json:"image"`
|
|
|
411
|
- Name string `json:"name"` // 标签名称
|
|
|
412
|
- Group string `json:"group"` // 标签分类
|
|
|
413
|
- Remark string `json:"remark"` // 备注
|
395
|
+type MiniArticleGetResponse struct {
|
|
|
396
|
+ Id int64 `json:"id"` //id
|
|
|
397
|
+ Title string `json:"title"` //标题
|
|
|
398
|
+ AuthorId int64 `json:"authorId"` //发布人id
|
|
|
399
|
+ Author ArticleAuthor `json:"author"` //发布人
|
|
|
400
|
+ CreatedAt int64 `json:"createdAt"` //文章的发布时间
|
|
|
401
|
+ Section []ArticleSection `json:"section"` //文章的文本内容
|
|
|
402
|
+ Images []string `json:"images"` //图片
|
|
|
403
|
+ WhoRead []int64 `json:"whoRead"` //谁可查看
|
|
|
404
|
+ WhoReview []int64 `json:"whoReview"` //谁可评论
|
|
|
405
|
+ Location Location `json:"location"` //定位坐标
|
|
|
406
|
+ CountLove int `json:"countLove"` // 点赞数量
|
|
|
407
|
+ CountComment int `json:"countComment"` // 评论数量
|
|
|
408
|
+ CountRead int `json:"countRead"` // 浏览数量
|
|
|
409
|
+ Show int `json:"show"` // 评论的展示状态(0显示、1不显示)
|
|
|
410
|
+ Edit int `json:"edit"` // 文章是否存在变更记录 (0 不存在 1存在)
|
|
|
411
|
+ MeLoveFlag int `json:"meLoveFlag"` //当前人员对文章的点赞标识
|
414
|
}
|
412
|
}
|
415
|
|
413
|
|
416
|
-type TagListRequest struct {
|
|
|
417
|
- Page int `json:"page"`
|
|
|
418
|
- Size int `json:"size"`
|
|
|
419
|
- CompanyId int64 `json:"-"`
|
|
|
420
|
- TagName string `json:"tagName,optional"`
|
|
|
421
|
- Group string `json:"group,optional"`
|
|
|
422
|
- Remark string `json:"remark,optional"`
|
414
|
+type ArticleSection struct {
|
|
|
415
|
+ Id int64 `json:"id"` //段落id
|
|
|
416
|
+ Content string `json:"content"` // 文本内容
|
|
|
417
|
+ SortBy int `json:"sortBy"` // 排序
|
|
|
418
|
+ TotalComment int `json:"totalComment"` // 评论的数量
|
423
|
}
|
419
|
}
|
424
|
|
420
|
|
425
|
-type TagListResponse struct {
|
|
|
426
|
- Total int64 `json:"total"`
|
|
|
427
|
- List []TagItem `json:"list"`
|
421
|
+type MiniArticleSearchMeRequest struct {
|
|
|
422
|
+ AuthorId int64 `json:",optional"`
|
|
|
423
|
+ CompanyId int64 `json:",optional"`
|
|
|
424
|
+ Page int `json:"page"`
|
|
|
425
|
+ Size int `json:"size"`
|
428
|
}
|
426
|
}
|
429
|
|
427
|
|
430
|
-type TagItem struct {
|
|
|
431
|
- Id int64 `json:"id"`
|
|
|
432
|
- Image string `json:"image"`
|
|
|
433
|
- Name string `json:"name"` // 标签名称
|
|
|
434
|
- Group string `json:"group"` // 标签分类
|
|
|
435
|
- Remark string `json:"remark"` // 备注
|
|
|
436
|
- CreatedAt int64 `json:"createdAt"`
|
428
|
+type MiniArticleSearchMeResponse struct {
|
|
|
429
|
+ Total int `json:"total"`
|
|
|
430
|
+ List []ArticleSearchMe `json:"list"`
|
437
|
}
|
431
|
}
|
438
|
|
432
|
|
439
|
-type TagDeleteRequest struct {
|
|
|
440
|
- Id int64 `path:"id"`
|
|
|
441
|
- CompanyId int64 `path:"-"`
|
433
|
+type ArticleSearchMe struct {
|
|
|
434
|
+ Id int64 `json:"id"` //id
|
|
|
435
|
+ Title string `json:"title"` //标题
|
|
|
436
|
+ Images []string `json:"images"` //图片
|
|
|
437
|
+ CreatedAt int64 `json:"createdAt"` //文章的创建日期
|
|
|
438
|
+ CountLove int `json:"countLove"` //点赞数量
|
|
|
439
|
+ CountComment int `json:"CountComment"` //评论数量
|
|
|
440
|
+ Show int `json:"show"` //是否隐藏 [0显示、1不显示]
|
442
|
}
|
441
|
}
|
443
|
|
442
|
|
444
|
-type TagDeleteResponse struct {
|
|
|
445
|
- Id int64 `json:"id"`
|
443
|
+type MiniUserLikeArticleRequest struct {
|
|
|
444
|
+ ArticleId int64 `json:"articleId"` // 文章id
|
|
|
445
|
+ CompanyId int64 `json:",optional"` //公司id
|
|
|
446
|
+ Page int `json:"page"` //分页,第几页
|
|
|
447
|
+ Size int `json:"size"` //分页,每页几条
|
446
|
}
|
448
|
}
|
447
|
|
449
|
|
448
|
-type MiniUserLoginRequest struct {
|
|
|
449
|
- LoginType string `json:"loginType"` // 登录类型 wechat-login whchat-phone-login phone-password-login phone-smscode-login
|
|
|
450
|
- WechatAuthCode string `json:"wechatAuthcode,optional"` // 微信登录 授权码
|
|
|
451
|
- WechatEncryptedData string `json:"wechatEncryptedData,optional"` // 微信登录 加密数据
|
|
|
452
|
- WechatIV string `json:"wechatIV,optional"` // 微信登录 加密算法初始向量
|
|
|
453
|
- Phone string `json:"phone,optional"` // 手机号
|
|
|
454
|
- Password string `json:"password,optional"` // 密码
|
|
|
455
|
- SmsCode string `json:"smsCode,optional"` // 短信验证码
|
450
|
+type MiniUserLikeArticleResponse struct {
|
|
|
451
|
+ Total int64 `json:"total"` //总数
|
|
|
452
|
+ List []WhichUserLikeArticle `json:"list"` //列表
|
|
|
453
|
+}
|
|
|
454
|
+
|
|
|
455
|
+type WhichUserLikeArticle struct {
|
|
|
456
|
+ ArticleId int64 `json:"articleId"` // 文章id
|
|
|
457
|
+ UserId int64 `json:"userId"` // 人员id
|
|
|
458
|
+ Name string `json:"name"` // 人员名称
|
|
|
459
|
+ Avatar string `json:"avatar"` // 人员头像
|
|
|
460
|
+ CreatedAt int64 `json:"createdAt"` // 点赞记录的时间
|
456
|
}
|
461
|
}
|
457
|
|
462
|
|
458
|
-type MiniUserLoginResponse struct {
|
|
|
459
|
- Token string `json:"token"` // x-token
|
|
|
460
|
- Phone string `json:"phone"` // 手机号
|
|
|
461
|
- Message string `json:"message"` // 失败消息(审核中,注册成功等待审核)
|
|
|
462
|
- Success bool `json:"success"` // 成功标识
|
463
|
+type MiniSetUserLikeRequset struct {
|
|
|
464
|
+ ArticleId int64 `json:"articleId"` //文章id
|
|
|
465
|
+ CommentId int64 `json:"commentId"` //评论id
|
|
|
466
|
+ UserId int64 `json:",optional"` //操作人
|
|
|
467
|
+ Flag int `json:"flag"` //点赞标志 1、点赞 2 、取消点赞
|
463
|
}
|
468
|
}
|
464
|
|
469
|
|
465
|
-type MiniUserSwitchAccountRequest struct {
|
|
|
466
|
- CompanyId int64 `json:"companyId"`
|
470
|
+type MiniSetUserLikeResponse struct {
|
|
|
471
|
+ ArticleId int64 `json:"articleId"` //文章id
|
|
|
472
|
+ CommentId int64 `json:"commentId"` //评论id
|
|
|
473
|
+ Count int `json:"count"` //现有的点赞数量
|
467
|
}
|
474
|
}
|
468
|
|
475
|
|
469
|
-type MiniUserInfoRequest struct {
|
476
|
+type MiniArticleBackupSearchRequest struct {
|
|
|
477
|
+ Page int `json:"page"`
|
|
|
478
|
+ Size int `json:"size"`
|
|
|
479
|
+ ArticleId int `json:"articleId"`
|
|
|
480
|
+ CompanyId int64 `json:",optional"` // 服务端自动获取
|
470
|
}
|
481
|
}
|
471
|
|
482
|
|
472
|
-type MiniUserInfoResponse struct {
|
|
|
473
|
- User *UserItem `json:"user,omitempty"` // 用户信息
|
|
|
474
|
- TotalArticle int64 `json:"totalArticle"` // 累计信息发布
|
|
|
475
|
- TotalLoved int64 `json:"totalLoved"` // 累计收到的赞
|
|
|
476
|
- TotalAccepted int64 `json:"totalAccepted"` // 累计被采纳
|
|
|
477
|
- Accounts []Account `json:"accounts"` // 公司账号
|
|
|
478
|
- Auths []Auth `json:"auths"` // 权限列表
|
483
|
+type MiniArticleBackupSearchResponse struct {
|
|
|
484
|
+ Total int64 `json:"total"`
|
|
|
485
|
+ List []MiniArticleBackupItem `json:"list"`
|
479
|
}
|
486
|
}
|
480
|
|
487
|
|
481
|
-type MiniUserApplyJoinCompanyRequest struct {
|
|
|
482
|
- Phone string `json:"phone"`
|
|
|
483
|
- Code string `json:"code"`
|
488
|
+type MiniArticleBackupItem struct {
|
|
|
489
|
+ Id int64 `json:"id"`
|
|
|
490
|
+ Title string `json:"title"`
|
|
|
491
|
+ Content string `json:"content"`
|
|
|
492
|
+ Images []string `json:"images"`
|
|
|
493
|
+ CreatedAt int64 `json:"createdAt"`
|
|
|
494
|
+ Location Location `json:"location"`
|
484
|
}
|
495
|
}
|
485
|
|
496
|
|
486
|
-type MiniUserApplyJoinCompanyResponse struct {
|
497
|
+type MiniArticleMarkUserReadRequest struct {
|
|
|
498
|
+ UserId int64 `json:",optional"` // 当前操作人
|
|
|
499
|
+ CompanyId int64 `json:",optional"` // 当前公司
|
|
|
500
|
+ ArticleId int64 `json:"articleId"` // 文章id
|
487
|
}
|
501
|
}
|
488
|
|
502
|
|
489
|
-type MiniUserAuditRequest struct {
|
|
|
490
|
- UserId int64 `json:"userId"` // 用户ID
|
|
|
491
|
- Status int `json:"status"` // 审核状态 1:审核通过 2:拒绝
|
503
|
+type MiniArticleMarkUserReadResponse struct {
|
|
|
504
|
+ Id int64 `json:"id"`
|
492
|
}
|
505
|
}
|
493
|
|
506
|
|
494
|
-type MiniUserDepartmentUsersRequest struct {
|
507
|
+type MiniArticleDraftCreateRequest struct {
|
|
|
508
|
+ CompanyId int64 `json:",optional"`
|
|
|
509
|
+ AuthorId int64 `json:",optional"` // 发布人
|
|
|
510
|
+ Template int `json:"template"` // 使用哪个模板进行编辑 0、无 1、演绎式 2、归纳式
|
|
|
511
|
+ Section []string `json:"section"` // 填写的内容
|
|
|
512
|
+ Title string `json:"title"` // 标题
|
|
|
513
|
+ Images []string `json:"images"` // 图片
|
|
|
514
|
+ WhoRead []int64 `json:"whoRead"` // 谁可以看
|
|
|
515
|
+ WhoReview []int64 `json:"whoReview"` // 评论人
|
|
|
516
|
+ Location Location `json:"location"` // 坐标
|
495
|
}
|
517
|
}
|
496
|
|
518
|
|
497
|
-type MiniUserDepartmentUsersResponse struct {
|
|
|
498
|
- Departments []*Department `json:"departments"`
|
|
|
499
|
- Users []*UserItem `json:"users"`
|
519
|
+type MiniArticleDraftCreateResponse struct {
|
|
|
520
|
+ Id int64 `json:"id"`
|
500
|
}
|
521
|
}
|
501
|
|
522
|
|
502
|
-type MiniUserFollowedSearchRequest struct {
|
|
|
503
|
- Page int `json:"page,optional"`
|
|
|
504
|
- Size int `json:"size,optional"`
|
523
|
+type MiniArticleDraftUpdateRequest struct {
|
|
|
524
|
+ Id int64 `json:"id"`
|
|
|
525
|
+ CompanyId int64 `json:",optional"`
|
|
|
526
|
+ AuthorId int64 `json:",optional"` // 发布人
|
|
|
527
|
+ Template int `json:"template"` // 使用哪个模板进行编辑 0、无 1、演绎式 2、归纳式
|
|
|
528
|
+ Section []string `json:"section"` // 填写的内容
|
|
|
529
|
+ Title string `json:"title"` // 标题
|
|
|
530
|
+ Images []string `json:"images"` // 图片
|
|
|
531
|
+ WhoRead []int64 `json:"whoRead"` // 谁可以看
|
|
|
532
|
+ WhoReview []int64 `json:"whoReview"` // 评论人
|
|
|
533
|
+ Location Location `json:"location"` // 坐标
|
505
|
}
|
534
|
}
|
506
|
|
535
|
|
507
|
-type MiniUserFollowedSearchResponse struct {
|
|
|
508
|
- List []*UserFollowItem `json:"users"`
|
|
|
509
|
- Total int64 `json:"total"`
|
536
|
+type MiniArticleDraftUpdateResponse struct {
|
|
|
537
|
+ Id int64 `json:"id"`
|
510
|
}
|
538
|
}
|
511
|
|
539
|
|
512
|
-type UserItem struct {
|
|
|
513
|
- Id int64 `json:"id,omitempty"` // 用户ID
|
|
|
514
|
- CompanyId int64 `json:"companyId,omitempty"` // 公司ID
|
|
|
515
|
- CompanyName string `json:"companyName,omitempty"` // 公司名称
|
|
|
516
|
- Flag int `json:"flag,omitempty"` // 标识 1:管理员 2:普通用户 (有绑定角色是管理员)
|
|
|
517
|
- Name string `json:"name,omitempty"` // 名称
|
|
|
518
|
- Avatar string `json:"avatar,omitempty"` // 头像
|
|
|
519
|
- Phone string `json:"phone,omitempty"` // 手机号 唯一
|
|
|
520
|
- Position string `json:"position,omitempty"` // 职位
|
|
|
521
|
- Enable int `json:"enable,omitempty"` // 启用状态 1:启用 2:禁用
|
|
|
522
|
- AuditStatus *int `json:"auditStatus,omitempty"` // 审核状态 0:待审核 1:审核通过 2:拒绝
|
|
|
523
|
- Follower []int64 `json:"followers,omitempty"` // 关注我的人 (冗余)
|
|
|
524
|
- Following []int64 `json:"following,omitempty"` // 我关注的人 (冗余)
|
|
|
525
|
- Departments []int64 `json:"departments,omitempty"` // 所属部门
|
|
|
526
|
- AccountFrom string `json:"accountFrom,omitempty"` // 账号来源 后台新增、扫码注册
|
540
|
+type MiniArticleDraftSearchMeRequest struct {
|
|
|
541
|
+ CompanyId int64 `json:",optional"` // 公司id
|
|
|
542
|
+ AuthorId int64 `json:",optional"` // 发布人
|
|
|
543
|
+ Page int `json:"page"`
|
|
|
544
|
+ Size int `json:"size"`
|
527
|
}
|
545
|
}
|
528
|
|
546
|
|
529
|
-type Account struct {
|
|
|
530
|
- CompanyId int64 `json:"companyId"` // 公司ID
|
|
|
531
|
- CompanyName string `json:"companyName"` // 公司名称
|
|
|
532
|
- Logo string `json:"logo"` // 公司图标
|
|
|
533
|
- UserId int64 `json:"userId"` // 用户ID
|
|
|
534
|
- Name string `json:"name"` // 名称
|
|
|
535
|
- Position string `json:"position"` // 职位
|
547
|
+type MiniArticleDraftSearchMeResponse struct {
|
|
|
548
|
+ Total int64 `json:"total"`
|
|
|
549
|
+ List []MiniArticleDraftItem `json:"list"`
|
536
|
}
|
550
|
}
|
537
|
|
551
|
|
538
|
-type Department struct {
|
|
|
539
|
- Id int64 `json:"id,omitempty"` // 部门ID
|
|
|
540
|
- CompanyId int64 `json:"companyId,omitempty"` // 公司ID
|
|
|
541
|
- ParentId int64 `json:"parentId,omitempty"` // 父级ID
|
|
|
542
|
- Name string `json:"name,omitempty"` // 部门名称
|
552
|
+type MiniArticleDraftItem struct {
|
|
|
553
|
+ Id int64 `json:"id"`
|
|
|
554
|
+ Template int `json:"template"` // 使用哪个模板进行编辑 0、无 1、演绎式 2、归纳式
|
|
|
555
|
+ Section []string `json:"section"` // 填写的内容
|
|
|
556
|
+ Title string `json:"title"` // 标题
|
|
|
557
|
+ Images []string `json:"images"` // 图片
|
|
|
558
|
+ CreatedAt int64 `json:"createdAt"`
|
543
|
}
|
559
|
}
|
544
|
|
560
|
|
545
|
-type UserSearchRequest struct {
|
|
|
546
|
- Page int `json:"page,optional"`
|
|
|
547
|
- Size int `json:"size,optional"`
|
|
|
548
|
- AuditFlag *int `json:"auditFlag,optional"` // 按审核状态 0:待审核 1:审核通过 2:拒绝
|
561
|
+type MiniArticleDraftGetMeRequest struct {
|
|
|
562
|
+ CompanyId int64 `path:",optional"` // 公司id
|
|
|
563
|
+ AuthorId int64 `path:",optional"` // 发布人
|
|
|
564
|
+ Id int64 `path:"id"`
|
549
|
}
|
565
|
}
|
550
|
|
566
|
|
551
|
-type UserSearchResponse struct {
|
|
|
552
|
- List []*UserItem `json:"list"`
|
|
|
553
|
- Total int64 `json:"total"`
|
567
|
+type MiniArticleDraftGetMeResponse struct {
|
|
|
568
|
+ Id int64 `json:"id"` //
|
|
|
569
|
+ Template int `json:"template"` // 使用哪个模板进行编辑 0、无 1、演绎式 2、归纳式
|
|
|
570
|
+ Section []string `json:"Section"` // 填写的内容
|
|
|
571
|
+ Title string `json:"title"` // 标题
|
|
|
572
|
+ Images []string `json:"images"` // 图片
|
|
|
573
|
+ WhoRead []int64 `json:"whoRead"` // 谁可以看
|
|
|
574
|
+ WhoReview []int64 `json:"whoReview"` // 评论人
|
|
|
575
|
+ Location Location `json:"location"` // 坐标
|
554
|
}
|
576
|
}
|
555
|
|
577
|
|
556
|
-type FollowRequest struct {
|
|
|
557
|
- UserId int64 `json:"userId"`
|
578
|
+type MiniArticleDraftDeleteMeRequest struct {
|
|
|
579
|
+ CompanyId int64 `path:",optional"` // 公司id
|
|
|
580
|
+ AuthorId int64 `path:",optional"` // 发布人
|
|
|
581
|
+ Id int64 `path:"id"`
|
558
|
}
|
582
|
}
|
559
|
|
583
|
|
560
|
-type UserFollowItem struct {
|
|
|
561
|
- Id int64 `json:"id"` // 用户ID
|
|
|
562
|
- Name string `json:"name"` // 名称
|
|
|
563
|
- CompanyName string `json:"companyName"` // 公司名称
|
|
|
564
|
- Avatar string `json:"avatar"` // 头像
|
|
|
565
|
- Position string `json:"position"` // 职位
|
|
|
566
|
- Followed bool `json:"followed"` // 关注
|
|
|
567
|
- MutualFollowed bool `json:"mutualFollowed"` // 互相关注标识
|
584
|
+type MiniArticleDraftDeleteMeResponse struct {
|
|
|
585
|
+ Id int64 `json:"id"` //
|
568
|
}
|
586
|
}
|
569
|
|
587
|
|
570
|
-type MiniMyLikeRequest struct {
|
588
|
+type MiniArticleMarkListRequest struct {
|
571
|
Page int `json:"page"`
|
589
|
Page int `json:"page"`
|
572
|
Size int `json:"size"`
|
590
|
Size int `json:"size"`
|
573
|
}
|
591
|
}
|
574
|
|
592
|
|
575
|
-type MiniMyLikeResponse struct {
|
|
|
576
|
- List []MyLikeItem `json:"list"`
|
|
|
577
|
- Total int64 `json:"total"`
|
593
|
+type MiniArticleMarkListResponse struct {
|
|
|
594
|
+ Total int64 `json:"total"`
|
|
|
595
|
+ List []MiniArticleMarkItem `json:"list"`
|
578
|
}
|
596
|
}
|
579
|
|
597
|
|
580
|
-type MyLikeItem struct {
|
|
|
581
|
- UserId int64 `json:"userId"` // 发布人id
|
|
|
582
|
- ArticleId int64 `json:"articleId"` // 文章id
|
|
|
583
|
- CommentId int64 `json:"commentId"` // 评论id
|
|
|
584
|
- CreatedAt int64 `json:"createdAt"` // 创建时间
|
|
|
585
|
- User *SimpleUser `json:"user"` // 发布人
|
|
|
586
|
- Article *SimpleArticle `json:"article"` // 文章
|
|
|
587
|
- Comment *SimpleComment `json:"comment"` // 评论
|
598
|
+type MiniArticleMarkItem struct {
|
|
|
599
|
+ Id int64 `json:"id"`
|
|
|
600
|
+ CompanyId int64 `json:"companyId"`
|
|
|
601
|
+ UserId int64 `json:"userId"`
|
|
|
602
|
+ ArticleId int64 `json:"articleId"`
|
|
|
603
|
+ Title string `json:"title"`
|
|
|
604
|
+ Author SimpleUser `json:"author"` // 发布人
|
|
|
605
|
+ UpdatedAt int64 `json:"updatedAt"`
|
588
|
}
|
606
|
}
|
589
|
|
607
|
|
590
|
-type SimpleComment struct {
|
|
|
591
|
- Id int64 `json:"id"`
|
|
|
592
|
- Content string `json:"content"` // 评论内容
|
|
|
593
|
- CountLove int `json:"countLove"` // 点赞数量
|
|
|
594
|
- CountComment int `json:"countComment"` // 评论数量
|
|
|
595
|
- Show int `json:"show"` // 评论的展示状态(0显示、1不显示)
|
608
|
+type SystemArticleGetRequest struct {
|
|
|
609
|
+ Id int64 `path:"id"` //id
|
|
|
610
|
+ CompanyId int64 `path:",optional"`
|
596
|
}
|
611
|
}
|
597
|
|
612
|
|
598
|
-type SystemUserInfoRequest struct {
|
613
|
+type UserShowName struct {
|
|
|
614
|
+ Id int `json:"id"`
|
|
|
615
|
+ Name int `json:"name"`
|
599
|
}
|
616
|
}
|
600
|
|
617
|
|
601
|
-type SystemUserInfoResponse struct {
|
|
|
602
|
- UserId int64 `json:"userId"`
|
|
|
603
|
- UserName string `json:"userName"`
|
|
|
604
|
- Avatar string `json:"avatar"`
|
|
|
605
|
- CompanyId int64 `json:"companyId"`
|
|
|
606
|
- CompanyName string `json:"companyName"`
|
618
|
+type SystemArticleGetResponse struct {
|
|
|
619
|
+ Id int64 `json:"id"` // id
|
|
|
620
|
+ Title string `json:"title"` // 标题
|
|
|
621
|
+ AuthorId int64 `json:"authorId"` // 发布人id
|
|
|
622
|
+ Author ArticleAuthor `json:"author"` // 发布人
|
|
|
623
|
+ CreatedAt int64 `json:"createdAt"` // 文章的发布时间
|
|
|
624
|
+ Section []ArticleSection `json:"section"` // 文章的文本内容
|
|
|
625
|
+ Images []string `json:"images"` // 图片
|
|
|
626
|
+ WhoRead []int64 `json:"whoRead"` // 谁可查看
|
|
|
627
|
+ WhoReadInfo []UserShowName `json:"whoReadInfo"` // 谁可查看
|
|
|
628
|
+ WhoReview []int64 `json:"whoReview"` // 谁可评论
|
|
|
629
|
+ WhoReviewInfo []UserShowName `json:"whoReviewInfo"` // 谁可评论
|
|
|
630
|
+ Location Location `json:"location"` // 定位坐标
|
|
|
631
|
+ CountLove int `json:"countLove"` // 点赞数量
|
|
|
632
|
+ CountComment int `json:"countComment"` // 评论数量
|
|
|
633
|
+ CountRead int `json:"countRead"` // 浏览数量
|
|
|
634
|
+ Show int `json:"show"` // 评论的展示状态(0显示、1不显示)
|
607
|
}
|
635
|
}
|
608
|
|
636
|
|
609
|
-type CompanySearchRequest struct {
|
|
|
610
|
- Page int `json:"page,optional"`
|
|
|
611
|
- Size int `json:"size,optional"`
|
|
|
612
|
- Flag int `json:"flag,optional"` // 1:用户已加入的 2:用户未加入的公司
|
|
|
613
|
- UserId int64 `json:"userId,optional"` // 按用户搜索(用户所加入的企业)
|
|
|
614
|
- Code string `json:"code,optional"` // 按编码搜索
|
637
|
+type SystemArticleSearchRequest struct {
|
|
|
638
|
+ CompanyId int64 `json:",optional"`
|
|
|
639
|
+ Page int `json:"page"`
|
|
|
640
|
+ Size int `json:"size"`
|
615
|
}
|
641
|
}
|
616
|
|
642
|
|
617
|
-type CompanySearchResponse struct {
|
|
|
618
|
- List []Company `json:"list"`
|
|
|
619
|
- Total int64 `json:"total"`
|
643
|
+type SystemArticleSearchResponse struct {
|
|
|
644
|
+ Total int `json:"total"`
|
|
|
645
|
+ List []SystemArticleSearch `json:"list"`
|
620
|
}
|
646
|
}
|
621
|
|
647
|
|
622
|
-type Company struct {
|
|
|
623
|
- Id int64 `json:"id,omitempty"` // 唯一标识
|
|
|
624
|
- Name string `json:"name,omitempty"` // 名称
|
|
|
625
|
- Code string `json:"code,omitempty"` // 编码(搜索使用,4位字母数字)
|
|
|
626
|
- Logo string `json:"logo,omitempty"` // 公司LOGO
|
648
|
+type SystemArticleSearch struct {
|
|
|
649
|
+ Id int64 `json:"id"` //id
|
|
|
650
|
+ Title string `json:"title"` //标题
|
|
|
651
|
+ Author string `json:"author"` //发布人
|
|
|
652
|
+ Images []string `json:"images"` //图片
|
|
|
653
|
+ CreatedAt int64 `json:"createdAt"` //文章的创建日期
|
|
|
654
|
+ CountLove int `json:"countLove"` //点赞数量
|
|
|
655
|
+ CountComment int `json:"CountComment"` //评论数量
|
|
|
656
|
+ Show int `json:"show"` //是否隐藏 [0显示、1不显示]
|
|
|
657
|
+ Tags []string `json:"tags"` //标签
|
|
|
658
|
+ TargetUser int `json:"targetUser"` //分发方式 [0分发给所有人、1分发给指定的人]
|
627
|
}
|
659
|
}
|
628
|
|
660
|
|
629
|
type RoleGetRequest struct {
|
661
|
type RoleGetRequest struct {
|