report_pdf.go 354 B

12345678910111213141516
  1. package response
  2. import (
  3. "eta/eta_mini_crm_ht/models"
  4. "github.com/rdlucklib/rdluck_tools/paging"
  5. )
  6. type ReportPdfListResp struct {
  7. List []*models.ReportPdf
  8. Paging *paging.PagingItem `description:"分页数据"`
  9. }
  10. type ReportPdfUploadResp struct {
  11. Url string `description:"pdf文件URL"`
  12. FileName string `description:"pdf文件名称"`
  13. }