Files
wagfarm/wagfarm-api/asset/land/model.go
2025-04-15 22:36:22 +02:00

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