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"` }