selection_brief_info.go 804 B

1234567891011121314151617181920
  1. package gorm_model
  2. // Code generated by sql2gorm. DO NOT EDIT.
  3. import (
  4. "time"
  5. )
  6. type YounggeeSecBrief struct {
  7. SectionBriefID int `gorm:"column:section_brief_id;primary_key;AUTO_INCREMENT"` // brief的Id
  8. FileUrl string `gorm:"column:file_url"` // 文件url
  9. FileUid string `gorm:"column:file_uid"` // 文件uid
  10. SelectionID string `gorm:"column:selection_id"` // 所属选品id
  11. CreatedAt time.Time `gorm:"column:created_at"` // 创建时间
  12. FileName string `gorm:"column:file_name"` // 文件名称
  13. }
  14. func (m *YounggeeSecBrief) TableName() string {
  15. return "younggee_sec_brief"
  16. }