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