selection_example_info.go 763 B

1234567891011121314151617181920
  1. package gorm_model
  2. // Code generated by sql2gorm. DO NOT EDIT.
  3. import (
  4. "time"
  5. )
  6. type YounggeeSecExample struct {
  7. ExampleID int `gorm:"column:example_id;primary_key;AUTO_INCREMENT"` // 选品示例图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 *YounggeeSecExample) TableName() string {
  15. return "younggee_sec_example"
  16. }