智慧食堂
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

1年前
1年前
1年前
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. }