12 lines
276 B
Go
12 lines
276 B
Go
package land
|
|
|
|
import "wagfarm-api/asset/base"
|
|
|
|
type Land struct {
|
|
base.Asset
|
|
FID string `gorm:"not null"`
|
|
IsWaterProtectionArea bool `gorm:"not null"`
|
|
IsRedArea bool `gorm:"not null"`
|
|
Area float64 `gorm:"not null"`
|
|
}
|