my_chart.go 536 B

1234567891011121314151617181920212223242526
  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. }
  13. // MyChartLocateItem 用户图表定位
  14. type MyChartLocateItem struct {
  15. MyChartId int
  16. ChartInfoId int
  17. ChartName string
  18. UniqueCode string
  19. PrevChartInfoId int
  20. NextChartInfoId int
  21. }