广告平台(站长使用)
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

2 周前
6 天前
2 周前
6 天前
2 周前
12345678910111213141516171819202122232425262728293031
  1. package md
  2. type IndexAppListReq struct {
  3. StartDate string `json:"start_date" example:"2024-08-30"`
  4. EndDate string `json:"end_date" example:"2024-08-30"`
  5. Sort string `json:"sort" example:"排序"`
  6. Name string `json:"name" `
  7. }
  8. type IndexAppListTableReq struct {
  9. StartDate string `json:"start_date" example:"2024-08-30"`
  10. EndDate string `json:"end_date" example:"2024-08-30"`
  11. AppId []string `json:"app_id"`
  12. }
  13. type IndexAppListRes struct {
  14. List []IndexAppListData `json:"list" `
  15. Sort []SelectData `json:"sort"`
  16. AppId []string `json:"app_id"`
  17. }
  18. type IndexAppListData struct {
  19. Name string `json:"name"`
  20. Logo string `json:"logo"`
  21. List []IndexAppListDataList `json:"list"`
  22. TableList []string `json:"table_list"`
  23. }
  24. type IndexAppListDataList struct {
  25. Name string `json:"name"`
  26. Value string `json:"value"`
  27. Type string `json:"type"`
  28. Bili string `json:"bili"`
  29. }