Files
web_ylsa/api_iris/model/weather.go
2025-07-11 16:54:11 +08:00

12 lines
152 B
Go

package model
import "gorm.io/gorm"
// Weather 每日天气表
type Weather struct {
Date string
Location string
Weather string
gorm.Model
}