wx_user_log.go 252 B

1234567891011121314151617
  1. package models
  2. import (
  3. "time"
  4. )
  5. type WxUserLog struct {
  6. Id int `orm:"column(id);pk"`
  7. UserId int
  8. OpenId string
  9. UnionId string
  10. Mobile string
  11. Email string
  12. Handle string
  13. Remark string
  14. CreateTime time.Time
  15. }