广告平台(站长下代理使用)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

md_index.go 703 B

2 weken geleden
123456789101112131415161718192021222324
  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. }
  7. type IndexAppListRes struct {
  8. List []IndexAppListData `json:"list" `
  9. Sort []SelectData `json:"sort"`
  10. }
  11. type IndexAppListData struct {
  12. Name string `json:"name"`
  13. Logo string `json:"logo"`
  14. List []IndexAppListDataList `json:"list"`
  15. TableList []string `json:"table_list"`
  16. }
  17. type IndexAppListDataList struct {
  18. Name string `json:"name"`
  19. Value string `json:"value"`
  20. Type string `json:"type"`
  21. Bili string `json:"bili"`
  22. }