面包店
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.
 
 
 
 
 

32 Zeilen
2.4 KiB

  1. package model
  2. import (
  3. "time"
  4. )
  5. type NewcomersFreeProduct struct {
  6. Id int `json:"id" xorm:"not null pk autoincr INT(10)"`
  7. GoodId string `json:"good_id" xorm:"not null default '' comment('平台商品ID') VARCHAR(255)"`
  8. Source string `json:"source" xorm:"not null default 'taobao' comment('来源平台') VARCHAR(255)"`
  9. SourceUrl string `json:"source_url" xorm:"not null default '' comment('用户输入地址') VARCHAR(255)"`
  10. PriceType int `json:"price_type" xorm:"not null default 0 comment('所属价格类型') TINYINT(1)"`
  11. OriginalPrice string `json:"original_price" xorm:"not null default 0.00 comment('原价') DECIMAL(10,2)"`
  12. CouponPrice string `json:"coupon_price" xorm:"not null default 0.00 comment('券后价格') DECIMAL(10,2)"`
  13. ReturnMoney string `json:"return_money" xorm:"not null default 0.00 comment('返还的钱') DECIMAL(10,2)"`
  14. Money string `json:"money" xorm:"not null default 0 comment('实付金额') DECIMAL(10)"`
  15. Stock int `json:"stock" xorm:"not null default 0 comment('库存数量') INT(11)"`
  16. Sale int `json:"sale" xorm:"not null default 0 comment('卖掉的数量') INT(11)"`
  17. EndTime time.Time `json:"end_time" xorm:"not null comment('结束时间') DATETIME"`
  18. IsShow int `json:"is_show" xorm:"not null default 1 comment('是否上架') TINYINT(1)"`
  19. IsDel int `json:"is_del" xorm:"not null default 0 comment('是否删除') TINYINT(1)"`
  20. CreatedAt int `json:"created_at" xorm:"not null default 0 INT(11)"`
  21. UpdatedAt int `json:"updated_at" xorm:"not null default 0 INT(11)"`
  22. Title string `json:"title" xorm:"not null default '' comment('标题') VARCHAR(255)"`
  23. StartTime time.Time `json:"start_time" xorm:"not null comment('开始时间') DATETIME"`
  24. Pictures string `json:"pictures" xorm:"not null default '' comment('图片地址') VARCHAR(255)"`
  25. CouponUrl string `json:"coupon_url" xorm:"not null default '' comment('优惠券链接') VARCHAR(255)"`
  26. Amount int `json:"amount" xorm:"default 0 comment('总数') INT(11)"`
  27. ReturnType int `json:"return_type" xorm:"default 0 comment('0平台补贴 1 淘礼金补贴') INT(1)"`
  28. OwnbuyReturnType int `json:"ownbuy_return_type" xorm:"default 0 comment('自购补贴:1开启、0关闭') INT(1)"`
  29. }