附近小店
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

user_third_party.go 555 B

5 ay önce
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. }