附近小店
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

user_third_party.go 555 B

il y a 5 mois
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. }