智莺生活mysql模型库
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.
 
 
 
 

11 lines
637 B

  1. package models
  2. type InstallmentPaymentSchemeWithGoods struct {
  3. Id int `json:"id" xorm:"not null pk autoincr INT(11)"`
  4. GoodsId int `json:"goods_id" xorm:"not null default 0 comment('商品id') INT(11)"`
  5. SchemeId int `json:"scheme_id" xorm:"not null default 0 comment('方案id') INT(11)"`
  6. Pvd int `json:"pvd" xorm:"not null default 1 comment('平台(1:自营商城)') TINYINT(3)"`
  7. CreateAt string `json:"create_at" xorm:"not null default 'CURRENT_TIMESTAMP' comment('创建时间') DATETIME"`
  8. UpdateAt string `json:"update_at" xorm:"not null default 'CURRENT_TIMESTAMP' comment('更新时间') DATETIME"`
  9. }