1234567891011
  1. package model
  2. type TaUserMapping struct {
  3. MappingId string `xorm:"not null pk VARCHAR(64)"`
  4. UserId string `xorm:"VARCHAR(64)"`
  5. AccountType string `xorm:"comment('wechat 微信公众号
  6. mini 小程序') VARCHAR(50)"`
  7. Openid string `xorm:"VARCHAR(200)"`
  8. Uuid string `xorm:"VARCHAR(200)"`
  9. AccountInfo string `xorm:"TEXT"`
  10. }