作者 郑周

1 文章浏览记录 列表

@@ -156,6 +156,26 @@ type MiniArticleDraftCreateRequest struct { @@ -156,6 +156,26 @@ type MiniArticleDraftCreateRequest struct {
156 type MiniArticleDraftCreateResponse struct { 156 type MiniArticleDraftCreateResponse struct {
157 } 157 }
158 158
  159 +type MiniArticleMarkListRequest struct {
  160 + Page int `json:"page"`
  161 + Size int `json:"size"`
  162 +}
  163 +
  164 +type MiniArticleMarkListResponse struct {
  165 + Total int64 `json:"total"`
  166 + List []MiniArticleMarkItem `json:"list"`
  167 +}
  168 +
  169 +type MiniArticleMarkItem struct {
  170 + Id int64 `json:"id"`
  171 + CompanyId int64 `json:"companyId"`
  172 + UserId int64 `json:"userId"`
  173 + ArticleId int64 `json:"articleId"`
  174 + Title string `json:"title"`
  175 + Author SimpleUser `json:"author"` // 发布人
  176 + UpdatedAt int64 `json:"updatedAt"`
  177 +}
  178 +
159 type SystemArticleGetRequest struct { 179 type SystemArticleGetRequest struct {
160 Id int64 `path:"id"` //id 180 Id int64 `path:"id"` //id
161 CompanyId int64 `path:",optional"` 181 CompanyId int64 `path:",optional"`