智慧食堂
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.go 984 B

il y a 1 an
il y a 1 an
il y a 1 an
il y a 1 an
il y a 1 an
1234567891011121314
  1. package model
  2. type User struct {
  3. Id int `json:"id" xorm:"not null pk autoincr INT(11)"`
  4. UserId string `json:"user_id" xorm:"not null default '' comment('支付宝用户的唯一userId') VARCHAR(255)"`
  5. OpenId string `json:"open_id" xorm:"not null default '' comment('微信openid') VARCHAR(255)"`
  6. UnionId string `json:"union_id" xorm:"not null default '' comment('微信用户id') VARCHAR(255)"`
  7. Nickname string `json:"nickname" xorm:"not null default '' comment('支付宝昵称') VARCHAR(255)"`
  8. Avatar string `json:"avatar" xorm:"not null default '' comment('支付宝头像') VARCHAR(255)"`
  9. Phone string `json:"phone" xorm:"not null default '' comment('手机号') VARCHAR(255)"`
  10. Memo string `json:"memo" xorm:"not null default '' comment('备注信息') VARCHAR(244)"`
  11. CreateAt string `json:"create_at" xorm:"not null default 'CURRENT_TIMESTAMP' DATETIME"`
  12. UpdateAt string `json:"update_at" xorm:"not null default 'CURRENT_TIMESTAMP' DATETIME"`
  13. }