image_source.go 230 B

1234567891011
  1. package response
  2. import (
  3. "eta/eta_mini_crm_ht/models"
  4. "github.com/rdlucklib/rdluck_tools/paging"
  5. )
  6. type ImageSourceListResp struct {
  7. List []*models.ImageSourceView
  8. Paging *paging.PagingItem `description:"分页数据"`
  9. }