智盟项目
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

17 řádky
939 B

  1. package model
  2. type HcCardList struct {
  3. Id int `json:"id" xorm:"not null pk autoincr index INT(11)"`
  4. GId int `json:"g_id" xorm:"default 0 index index(g_id_2) INT(11)"`
  5. Title string `json:"title" xorm:"default '' VARCHAR(255)"`
  6. OfficialPrice float64 `json:"official_price" xorm:"default 0.00 comment('官方价') DOUBLE(30,2)"`
  7. PlatPrice float64 `json:"plat_price" xorm:"default 0.00 DOUBLE(30,2)"`
  8. Times string `json:"times" xorm:"default '' VARCHAR(100)"`
  9. SpecId int `json:"spec_id" xorm:"default 0 index(g_id_2) index INT(11)"`
  10. SpecImg string `json:"spec_img" xorm:"default '' VARCHAR(255)"`
  11. UpdateTime int `json:"update_time" xorm:"default 0 INT(11)"`
  12. LId int `json:"l_id" xorm:"default 0 INT(11)"`
  13. Type string `json:"type" xorm:"default '' VARCHAR(255)"`
  14. IsDelete int `json:"is_delete" xorm:"default 0 INT(11)"`
  15. }