tag.go 214 B

1234567891011121314
  1. package models
  2. import (
  3. "time"
  4. "gorm.io/gorm"
  5. )
  6. type Tag struct {
  7. CreatedAt time.Time
  8. UpdatedAt time.Time
  9. DeletedAt gorm.DeletedAt `gorm:"index"`
  10. Name string `json:"name" gorm:"primaryKey"`
  11. }