附近小店
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

30 lines
1.8 KiB

  1. package model
  2. import (
  3. "time"
  4. )
  5. type CommunityTeamGoods struct {
  6. Id int `json:"id" xorm:"not null pk autoincr INT(11)"`
  7. Uid int `json:"uid" xorm:"default 0 comment('0是官方') INT(11)"`
  8. StoreType int `json:"store_type" xorm:"default 0 comment('0官方自营店 1加盟店 2连锁店') INT(11)"`
  9. Title string `json:"title" xorm:"VARCHAR(255)"`
  10. Img string `json:"img" xorm:"VARCHAR(255)"`
  11. Info string `json:"info" xorm:"comment('描述') VARCHAR(255)"`
  12. Cid int `json:"cid" xorm:"default 0 INT(11)"`
  13. State int `json:"state" xorm:"default 0 comment('0上架 1下架') INT(11)"`
  14. CreateAt time.Time `json:"create_at" xorm:"DATETIME"`
  15. UpdateAt time.Time `json:"update_at" xorm:"DATETIME"`
  16. Price string `json:"price" xorm:"DECIMAL(10,2)"`
  17. Stock int `json:"stock" xorm:"default 0 INT(11)"`
  18. Spe string `json:"spe" xorm:"not null default '' comment('所有规格属性json') VARCHAR(5012)"`
  19. LinePrice string `json:"line_price" xorm:"not null default 0.00 comment('划线价') DECIMAL(12,2)"`
  20. SpeImages string `json:"spe_images" xorm:"not null comment('第一组规格值对应的图片json') TEXT"`
  21. IsSingleSku int `json:"is_single_sku" xorm:"not null default 1 comment('是否单规格,0:否,1是') TINYINT(1)"`
  22. Sort int `json:"sort" xorm:"default 0 INT(11)"`
  23. IsSpeImageOn int `json:"is_spe_image_on" xorm:"not null default 0 comment('是否开启规格图片:0否 1是') TINYINT(1)"`
  24. Commission string `json:"commission" xorm:"default 0.00 DECIMAL(20,2)"`
  25. ImageList string `json:"image_list" xorm:"comment('商品图json') TEXT"`
  26. SaleCount int `json:"sale_count" xorm:"default 0 INT(11)"`
  27. }