附近小店
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

community_team_order_info.go 647 B

2 ay önce
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. }