place_thing.go 171 B

123456789
  1. package models
  2. import "time"
  3. type PlaceThing struct {
  4. PlaceID uint64 `db:"place_id"`
  5. ThingID uint64 `db:"thing_id"`
  6. CreatedAt time.Time `db:"created_at"`
  7. }