智盟项目
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.

hc_card_list.go 939 B

vor 4 Monaten
12345678910111213141516
  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. }