附近小店
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

community_team_order_info.go 647 B

2 mesi fa
12345678910111213
  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. }