abstract.go 680 B

1234567891011121314151617181920212223242526
  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. }
  14. type RagEtaReportItemAbstractListListResp struct {
  15. List []*rag.RagEtaReportAbstractItem
  16. Paging *paging.PagingItem `description:"分页数据"`
  17. }
  18. type WechatArticleItemAbstractListListResp struct {
  19. List []*rag.WechatArticleAbstractItem
  20. Paging *paging.PagingItem `description:"分页数据"`
  21. }