user.go 367 B

123456789101112131415
  1. package dataobj
  2. import "time"
  3. type User struct {
  4. Id int64 `json:"id"`
  5. Name string `json:"name"`
  6. Cnname string `json:"cnname"`
  7. Password string `json:"-"`
  8. Email string `json:"email"`
  9. Phone string `json:"phone"`
  10. Wechat string `json:"wechat"`
  11. Role int `json:"role"`
  12. Created time.Time `json:"-" xorm:"<-"`
  13. }