附近小店
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.
 
 
 

14 lines
647 B

  1. package model
  2. type CommunityTeamOrderInfo struct {
  3. Id int `json:"id" xorm:"not null pk autoincr INT(11)"`
  4. Oid int64 `json:"oid" xorm:"BIGINT(20)"`
  5. Title string `json:"title" xorm:"comment('标题') VARCHAR(255)"`
  6. Img string `json:"img" xorm:"comment('图片') VARCHAR(255)"`
  7. Price string `json:"price" xorm:"default 0.00 comment('单价') DECIMAL(10,2)"`
  8. Num int `json:"num" xorm:"default 0 comment('数量') INT(11)"`
  9. SkuInfo string `json:"sku_info" xorm:"comment('sku信息') VARCHAR(255)"`
  10. GoodsId int `json:"goods_id" xorm:"default 0 INT(11)"`
  11. SkuId int `json:"sku_id" xorm:"default 0 INT(11)"`
  12. }