abstract.go 378 B

12345678910111213141516
  1. package response
  2. import (
  3. "eta/eta_api/models/rag"
  4. "github.com/rdlucklib/rdluck_tools/paging"
  5. )
  6. type AbstractListListResp struct {
  7. List []rag.WechatArticleAbstractView
  8. Paging *paging.PagingItem `description:"分页数据"`
  9. }
  10. type RagEtaReportAbstractListListResp struct {
  11. List []rag.RagEtaReportAbstractView
  12. Paging *paging.PagingItem `description:"分页数据"`
  13. }