thing_tag.go 217 B

12345678910111213141516
  1. package models
  2. type ThingTag struct {
  3. Tag
  4. ThingID uint64 `db:"thing_id"`
  5. }
  6. type AddThingTagRequest struct {
  7. ThingID uint64
  8. TagID uint64
  9. }
  10. type DeleteThingTagRequest struct {
  11. ThingID uint64
  12. TagID uint64
  13. }