附近小店
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

10 месяцев назад
123456789
  1. package model
  2. type UserThirdParty struct {
  3. Uid int `json:"uid" xorm:"not null pk autoincr comment('主键ID') INT(10)"`
  4. ThirdPartyJdMiniOpenid string `json:"third_party_jd_mini_openid" xorm:"not null default '' VARCHAR(255)"`
  5. IsAgent int `json:"is_agent" xorm:"default 0 comment('小店代理') INT(1)"`
  6. WechatPayInfo string `json:"wechat_pay_info" xorm:"comment('微信支付配置') VARCHAR(1000)"`
  7. AlipayPayInfo string `json:"alipay_pay_info" xorm:"comment('支付宝') VARCHAR(1000)"`
  8. }