place_thing.go 115 B

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