mirror of
https://github.com/ForFarmTeam/ForFarm.git
synced 2025-12-19 05:54:08 +01:00
36 lines
816 B
Go
36 lines
816 B
Go
package domain
|
|
|
|
import (
|
|
"context"
|
|
validation "github.com/go-ozzo/ozzo-validation/v4"
|
|
"github.com/google/uuid"
|
|
"time"
|
|
)
|
|
|
|
type Farm struct {
|
|
UUID string
|
|
Name string
|
|
Lat []float64
|
|
Lon []float64
|
|
CreatedAt time.Time
|
|
UpdatedAt time.Time
|
|
OwnerID string
|
|
PlantTypes []uuid.UUID
|
|
}
|
|
|
|
func (f *Farm) Validate() error {
|
|
return validation.ValidateStruct(f,
|
|
validation.Field(&f.Name, validation.Required),
|
|
validation.Field(&f.Lat, validation.Required),
|
|
validation.Field(&f.Lon, validation.Required),
|
|
validation.Field(&f.OwnerID, validation.Required),
|
|
)
|
|
}
|
|
|
|
type FarmRepository interface {
|
|
GetByID(context.Context, string) (Farm, error)
|
|
GetByOwnerID(context.Context, string) ([]Farm, error)
|
|
CreateOrUpdate(context.Context, *Farm) error
|
|
Delete(context.Context, string) error
|
|
}
|