17 lines
385 B
Go
Raw Normal View History

2025-06-04 18:17:39 +08:00
package data
type Radar struct {
Id int `json:"id"` //ID(索引)
FreeRadarTime int `json:"free_radar_time"` //免费雷达时间
DailyTimes int `json:"daily_times"` //免费雷达次数
AdRadarTime int `json:"ad_radar_time"` //广告雷达时间
}
func (data *Radar) id() int {
return data.Id
}
type RadarTable struct {
table[int, *Radar]
}