my_chart.go 329 B

12345678910111213141516
  1. package response
  2. import (
  3. "eta/eta_mini_api/models"
  4. "github.com/rdlucklib/rdluck_tools/paging"
  5. )
  6. type MyChartIsCollectResp struct {
  7. IsCollect bool `description:"是否收藏"`
  8. }
  9. type MyChartListResp struct {
  10. List []*models.MyChart `description:"图表列表"`
  11. Paging *paging.PagingItem `description:"分页信息"`
  12. }