12 lines
152 B
Go
12 lines
152 B
Go
package model
|
|
|
|
import "gorm.io/gorm"
|
|
|
|
// Weather 每日天气表
|
|
type Weather struct {
|
|
Date string
|
|
Location string
|
|
Weather string
|
|
gorm.Model
|
|
}
|