广告平台(站长使用)
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

26 lines
736 B

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