面包店
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 
 
 

13 Zeilen
795 B

  1. package model
  2. type Sku struct {
  3. SkuId int64 `json:"sku_id" xorm:"not null pk unique BIGINT(30)"`
  4. SkuCode string `json:"sku_code" xorm:"not null comment('sku编码') VARCHAR(255)"`
  5. GoodsId int64 `json:"goods_id" xorm:"not null comment('商品id') index BIGINT(20)"`
  6. Price string `json:"price" xorm:"not null default 0.00 comment('价格') DECIMAL(12,2)"`
  7. Indexes string `json:"indexes" xorm:"not null default '' comment('规格值组合的下标') VARCHAR(100)"`
  8. Sku string `json:"sku" xorm:"not null comment('规格组合json') VARCHAR(2048)"`
  9. CreateAt string `json:"create_at" xorm:"not null default 'CURRENT_TIMESTAMP' comment('创建时间') DATETIME"`
  10. UpdateAt string `json:"update_at" xorm:"not null default 'CURRENT_TIMESTAMP' comment('更新时间') DATETIME"`
  11. }