- package response
- import (
- "eta/eta_mini_crm_ht/models"
- "github.com/rdlucklib/rdluck_tools/paging"
- )
- type ReportPdfListResp struct {
- List []*models.ReportPdf
- Paging *paging.PagingItem `description:"分页数据"`
- }
- type ReportPdfUploadResp struct {
- Url string `description:"pdf文件URL"`
- FileName string `description:"pdf文件名称"`
- }
|