project_photo.go 534 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 int `gorm:"column:project_photo_id;primary_key"` // 项目图片id
  8. PhotoUrl string `gorm:"column:photo_url"` // 图片url
  9. ProjectID int `gorm:"column:project_id"` // 所属项目id
  10. CreatedAt time.Time `gorm:"column:created_at"` // 创建时间
  11. }
  12. func (m *ProjectPhoto) TableName() string {
  13. return "project_photo"
  14. }