qudoco-be/app/database/entity/our_service_content_images....

13 lines
485 B
Go
Raw Normal View History

2026-04-09 18:08:56 +00:00
package entity
type OurServiceContentImage struct {
ID uint `json:"id" gorm:"primaryKey;autoIncrement"`
OurServiceContentID uint `json:"our_service_content_id"`
ImagePath string `json:"image_path" gorm:"type:varchar(255)"`
ImageURL string `json:"image_url" gorm:"type:text"`
IsThumbnail *bool `json:"is_thumbnail" gorm:"default:false"`
}
func (OurServiceContentImage) TableName() string {
return "our_service_content_images"
}