archive.go 378 B

123456789101112131415
  1. package model
  2. // Archive .
  3. type Archive struct {
  4. ID int64 `json:"id" gorm:"column:id"`
  5. MID int64 `json:"mid" gorm:"column:mid"`
  6. TypeID int32 `json:"typeid" gorm:"column:typeid"`
  7. Title string `json:"title" gorm:"column:title"`
  8. Content string `json:"content" gorm:"column:content"`
  9. }
  10. // TableName .
  11. func (a *Archive) TableName() string {
  12. return "archive"
  13. }