// Code generated by sql2gorm. DO NOT EDIT. package entity type ReviewLocalLife struct { ID int64 `gorm:"column:id;primary_key;AUTO_INCREMENT"` // 自增id LocalID string `gorm:"column:local_id;NOT NULL"` // 本地生活id TaskName string `gorm:"column:task_name;NOT NULL"` // 任务标题 TaskDetail string `gorm:"column:task_detail;NOT NULL"` // 任务详情 StoreMainPhoto string `gorm:"column:store_main_photo;NOT NULL"` // 门店主图 StoreName string `gorm:"column:store_name;NOT NULL"` // 门店标题 StoreDetail string `gorm:"column:store_detail;NOT NULL"` // 门店详情 TeamBuyingMainPhoto string `gorm:"column:team_buying_main_photo;NOT NULL"` // 团购主图 TeamBuyingName string `gorm:"column:team_buying_name;NOT NULL"` // 团购标题 TeamBuyingDetail string `gorm:"column:team_buying_detail;NOT NULL"` // 团购详情 Images string `gorm:"column:images"` // 图片集(,分隔) Videos string `gorm:"column:videos"` // 视频集(,分隔) VideoJobIds string `gorm:"column:video_job_ids"` Documents string `gorm:"column:documents"` // 文档集(,分隔) DocumentJobIds string `gorm:"column:document_job_ids"` Status int64 `gorm:"column:status;default:0;NOT NULL"` // 状态(0未提交 1待审核 2审核通过 3审核未通过 4失效) } func (m *ReviewLocalLife) TableName() string { return "review_local_life" }