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

14 line
740 B

  1. package model
  2. type HcCardCate struct {
  3. Id int `json:"id" xorm:"not null pk autoincr index INT(11)"`
  4. AccountType string `json:"account_type" xorm:"default '' comment('账号类型') VARCHAR(100)"`
  5. GId int `json:"g_id" xorm:"default 0 comment('商品id') index index(g_id_2) INT(11)"`
  6. GoodsLogo string `json:"goods_logo" xorm:"VARCHAR(255)"`
  7. GName string `json:"g_name" xorm:"index(g_id_2) index VARCHAR(255)"`
  8. UpdateTime int `json:"update_time" xorm:"default 0 INT(11)"`
  9. Type string `json:"type" xorm:"default '' comment('直充 卡券') index(g_id_2) index VARCHAR(255)"`
  10. Xuzhi string `json:"xuzhi" xorm:"LONGTEXT"`
  11. IsDelete int `json:"is_delete" xorm:"default 0 INT(11)"`
  12. }