...
|
...
|
@@ -296,9 +296,9 @@ type SimpleUser struct { |
|
|
Id int64 `json:"id"`
|
|
|
CompanyId int64 `json:"companyId,omitempty"` // 公司ID
|
|
|
CompanyName string `json:"companyName,omitempty"` // 公司名称
|
|
|
Name string `json:"name"` // 名称
|
|
|
Avatar string `json:"avatar,omitempty"` // 头像
|
|
|
Position string `json:"position,omitempty"` // 职位
|
|
|
Name string `json:"name"` // 名称
|
|
|
Avatar string `json:"avatar"` // 头像
|
|
|
Position string `json:"position"` // 职位
|
|
|
}
|
|
|
|
|
|
type SimpleArticle struct {
|
...
|
...
|
@@ -949,7 +949,7 @@ type MiniArticleDraftGetMeRequest struct { |
|
|
type MiniArticleDraftGetMeResponse struct {
|
|
|
Id int64 `json:"id"` //
|
|
|
Template int `json:"template"` // 使用哪个模板进行编辑 0、无 1、演绎式 2、归纳式
|
|
|
Section []string `json:"Section"` // 填写的内容
|
|
|
Section []string `json:"section"` // 填写的内容
|
|
|
Title string `json:"title"` // 标题
|
|
|
Images []string `json:"images"` // 图片
|
|
|
WhoRead []int64 `json:"whoRead"` // 谁可以看
|
...
|
...
|
|