merchant_package.go 630 B

123456789101112
  1. package models
  2. import "time"
  3. type MerchantPackage struct {
  4. ID int `gorm:"column:id;primary_key;autoIncrement;comment:主键"`
  5. ReportSourceIds string `gorm:"column:report_source_ids;type:varchar(255);comment:报告来源"`
  6. VideoSourceIds string `gorm:"column:video_source_ids;type:varchar(255);comment:视频来源"`
  7. AudioSourceIds string `gorm:"column:audio_source_ids;type:varchar(255);comment:音频来源"`
  8. CreatedTime time.Time `gorm:"column:created_time;type:datetime;comment:创建时间"`
  9. UpdatedTime time.Time `gorm:"column:updated_time;type:datetime;comment:更新时间"`
  10. }