|
@@ -959,7 +959,7 @@ type Operator struct { |
|
@@ -959,7 +959,7 @@ type Operator struct { |
959
|
|
959
|
|
960
|
type MiniArticleCreateRequest struct {
|
960
|
type MiniArticleCreateRequest struct {
|
961
|
Title string `json:"title"` //标题
|
961
|
Title string `json:"title"` //标题
|
962
|
- Section []string `json:"section"` //文章的文本内容
|
962
|
+ Section []string `json:"section,optional"` //文章的文本内容
|
963
|
AuthorId int64 `json:"authorId,optional"` //发布人id
|
963
|
AuthorId int64 `json:"authorId,optional"` //发布人id
|
964
|
Images []string `json:"images,optional"` //图片
|
964
|
Images []string `json:"images,optional"` //图片
|
965
|
WhoRead []int64 `json:"whoRead,optional"` //谁可查看
|
965
|
WhoRead []int64 `json:"whoRead,optional"` //谁可查看
|
|
@@ -1163,7 +1163,7 @@ type MiniArticleDraftCreateRequest struct { |
|
@@ -1163,7 +1163,7 @@ type MiniArticleDraftCreateRequest struct { |
1163
|
CompanyId int64 `json:",optional"`
|
1163
|
CompanyId int64 `json:",optional"`
|
1164
|
AuthorId int64 `json:",optional"` // 发布人
|
1164
|
AuthorId int64 `json:",optional"` // 发布人
|
1165
|
Template int `json:"template"` // 使用哪个模板进行编辑 0、无 5、演绎式 3、归纳式 10、其他业务类型模板
|
1165
|
Template int `json:"template"` // 使用哪个模板进行编辑 0、无 5、演绎式 3、归纳式 10、其他业务类型模板
|
1166
|
- Section []string `json:"section"` // 填写的内容
|
1166
|
+ Section []string `json:"section,optional"` // 填写的内容
|
1167
|
Title string `json:"title"` // 标题
|
1167
|
Title string `json:"title"` // 标题
|
1168
|
Images []string `json:"images"` // 图片
|
1168
|
Images []string `json:"images"` // 图片
|
1169
|
WhoRead []int64 `json:"whoRead"` // 谁可以看
|
1169
|
WhoRead []int64 `json:"whoRead"` // 谁可以看
|
|
@@ -1182,7 +1182,7 @@ type MiniArticleDraftUpdateRequest struct { |
|
@@ -1182,7 +1182,7 @@ type MiniArticleDraftUpdateRequest struct { |
1182
|
CompanyId int64 `json:",optional"`
|
1182
|
CompanyId int64 `json:",optional"`
|
1183
|
AuthorId int64 `json:",optional"` // 发布人
|
1183
|
AuthorId int64 `json:",optional"` // 发布人
|
1184
|
Template int `json:"template"` // 使用哪个模板进行编辑 0、无 1、演绎式 2、归纳式
|
1184
|
Template int `json:"template"` // 使用哪个模板进行编辑 0、无 1、演绎式 2、归纳式
|
1185
|
- Section []string `json:"section"` // 填写的内容
|
1185
|
+ Section []string `json:"section,optional"` // 填写的内容
|
1186
|
Title string `json:"title"` // 标题
|
1186
|
Title string `json:"title"` // 标题
|
1187
|
Images []string `json:"images"` // 图片
|
1187
|
Images []string `json:"images"` // 图片
|
1188
|
WhoRead []int64 `json:"whoRead"` // 谁可以看
|
1188
|
WhoRead []int64 `json:"whoRead"` // 谁可以看
|
|
@@ -1211,7 +1211,7 @@ type MiniArticleDraftSearchMeResponse struct { |
|
@@ -1211,7 +1211,7 @@ type MiniArticleDraftSearchMeResponse struct { |
1211
|
type MiniArticleDraftItem struct {
|
1211
|
type MiniArticleDraftItem struct {
|
1212
|
Id int64 `json:"id"`
|
1212
|
Id int64 `json:"id"`
|
1213
|
Template int `json:"template"` // 使用哪个模板进行编辑 0、无 1、演绎式 2、归纳式
|
1213
|
Template int `json:"template"` // 使用哪个模板进行编辑 0、无 1、演绎式 2、归纳式
|
1214
|
- Section []string `json:"section"` // 填写的内容
|
1214
|
+ Section []string `json:"section,optional"` // 填写的内容
|
1215
|
Title string `json:"title"` // 标题
|
1215
|
Title string `json:"title"` // 标题
|
1216
|
Images []string `json:"images"` // 图片
|
1216
|
Images []string `json:"images"` // 图片
|
1217
|
CreatedAt int64 `json:"createdAt"` //
|
1217
|
CreatedAt int64 `json:"createdAt"` //
|
|
@@ -1371,7 +1371,7 @@ type SystemArticleUpdateRequest struct { |
|
@@ -1371,7 +1371,7 @@ type SystemArticleUpdateRequest struct { |
1371
|
Id int64 `json:"id"`
|
1371
|
Id int64 `json:"id"`
|
1372
|
CompanyId int64 `json:"companyId,optional"`
|
1372
|
CompanyId int64 `json:"companyId,optional"`
|
1373
|
Template int `json:"template,optional"` // 使用哪个模板进行编辑 0、无 1、演绎式 2、归纳式
|
1373
|
Template int `json:"template,optional"` // 使用哪个模板进行编辑 0、无 1、演绎式 2、归纳式
|
1374
|
- Section []ArticleSection `json:"section"` // 填写的内容
|
1374
|
+ Section []ArticleSection `json:"section,optional"` // 填写的内容
|
1375
|
Title string `json:"title"` // 标题
|
1375
|
Title string `json:"title"` // 标题
|
1376
|
Images []string `json:"images"` // 图片
|
1376
|
Images []string `json:"images"` // 图片
|
1377
|
Videos []Video `json:"video"` // 视频
|
1377
|
Videos []Video `json:"video"` // 视频
|