test.go 342 B

123456789101112
  1. package models
  2. type Test struct {
  3. BaseModel
  4. Title1 string `gorm:"type:varchar(255);not null;comment:标题1" json:"title1"`
  5. Title2 string `gorm:"type:varchar(255);not null;comment:标题2" json:"title2"`
  6. Title3 string `gorm:"type:varchar(255);not null;comment:标题3" json:"title3"`
  7. }
  8. func (Test) TableName() string {
  9. return "test"
  10. }