1234567891011121314151617181920212223242526 |
- package response
- import (
- "eta/eta_api/models/rag"
- "github.com/rdlucklib/rdluck_tools/paging"
- )
- type AbstractListListResp struct {
- List []rag.WechatArticleAbstractView
- Paging *paging.PagingItem `description:"分页数据"`
- }
- type RagEtaReportAbstractListListResp struct {
- List []rag.RagEtaReportAbstractView
- Paging *paging.PagingItem `description:"分页数据"`
- }
- type RagEtaReportItemAbstractListListResp struct {
- List []*rag.RagEtaReportAbstractItem
- Paging *paging.PagingItem `description:"分页数据"`
- }
- type WechatArticleItemAbstractListListResp struct {
- List []*rag.WechatArticleAbstractItem
- Paging *paging.PagingItem `description:"分页数据"`
- }
|