project_photo.go 579 B

123456789101112131415161718
  1. // Code generated by sql2gorm. DO NOT EDIT.
  2. package gorm_model
  3. import (
  4. "time"
  5. )
  6. type ProjectPhoto struct {
  7. ProjectPhotoID int64 `gorm:"column:project_photo_id;primary_key;AUTO_INCREMENT"` // 项目图片id
  8. PhotoUrl string `gorm:"column:photo_url"` // 图片url
  9. PhotoUid string `gorm:"column:photo_uid"`
  10. ProjectID string `gorm:"column:project_id"` // 所属项目id
  11. CreatedAt time.Time `gorm:"column:created_at"` // 创建时间
  12. }
  13. func (m *ProjectPhoto) TableName() string {
  14. return "project_photo"
  15. }