面包店
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 
 

16 строки
1.0 KiB

  1. package model
  2. type ChannelActivity struct {
  3. Id int `json:"id" xorm:"not null pk autoincr INT(11)"`
  4. Img string `json:"img" xorm:"default '' comment('图片') VARCHAR(255)"`
  5. Sort int `json:"sort" xorm:"default 0 comment('排序') INT(5)"`
  6. IsUse int `json:"is_use" xorm:"default 0 comment('是否使用') INT(1)"`
  7. Source string `json:"source" xorm:"default '' comment('来源 淘宝=>tb 京东=>jd 拼多多=>pdd 唯品会=>wph 苏宁易购=>snyg 考拉=>kaola') VARCHAR(50)"`
  8. IsRecommend int `json:"is_recommend" xorm:"default 0 comment('是否官方推荐') INT(1)"`
  9. StartTime int `json:"start_time" xorm:"default 0 comment('开始时间') INT(11)"`
  10. EndTime int `json:"end_time" xorm:"default 0 comment('结束时间') INT(11)"`
  11. ActivityId string `json:"activity_id" xorm:"default '' comment('活动id') VARCHAR(100)"`
  12. Url string `json:"url" xorm:"comment('活动链接') TEXT"`
  13. Name string `json:"name" xorm:"default '' comment('名称') VARCHAR(255)"`
  14. }