附近小店
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.

user_third_party.go 555 B

1 month ago
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. }