智慧食堂
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

1 ano atrás
1 ano atrás
1 ano atrás
1 ano atrás
1 ano atrás
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. }