You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

48 lines
5.1 KiB

6 months ago
6 months ago
  1. // =================================================================================
  2. // Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
  3. // =================================================================================
  4. package entity
  5. import (
  6. "github.com/gogf/gf/v2/os/gtime"
  7. )
  8. // MemberInfo is the golang structure for table member_info.
  9. type MemberInfo struct {
  10. Id int `json:"id" orm:"id" description:""` //
  11. Jwcode int `json:"jwcode" orm:"jwcode" description:""` //
  12. Name string `json:"name" orm:"name" description:""` //
  13. Sex int `json:"sex" orm:"sex" description:"0:未知,1:男,2:女"` // 0:未知,1:男,2:女
  14. Avatar string `json:"avatar" orm:"avatar" description:"用户头像"` // 用户头像
  15. Widget string `json:"widget" orm:"widget" description:"头像挂件"` // 头像挂件
  16. DeptId string `json:"deptId" orm:"deptId" description:""` //
  17. DeptName string `json:"deptName" orm:"deptName" description:""` //
  18. ShopId string `json:"shopId" orm:"shopId" description:""` //
  19. ShopName string `json:"shopName" orm:"shopName" description:""` //
  20. MembershipTime *gtime.Time `json:"membershipTime" orm:"membership_time" description:""` //
  21. LiveLock int `json:"liveLock" orm:"live_lock" description:"0:解锁 1:锁住"` // 0:解锁 1:锁住
  22. LocMarket string `json:"locMarket" orm:"loc_market" description:"用户市场归属"` // 用户市场归属
  23. Level int `json:"level" orm:"level" description:"等级"` // 等级
  24. LevelIcon string `json:"levelIcon" orm:"level_icon" description:"等级图标"` // 等级图标
  25. Star int `json:"star" orm:"star" description:"星级"` // 星级
  26. AccountOwner string `json:"accountOwner" orm:"account_owner" description:""` //
  27. AccountOwnerText string `json:"accountOwnerText" orm:"account_owner_text" description:""` //
  28. Employee int `json:"employee" orm:"employee" description:"1:员工"` // 1:员工
  29. Dachang int `json:"dachang" orm:"dachang" description:"0:不是大厂员工 1:是大厂员工"` // 0:不是大厂员工 1:是大厂员工
  30. BoguMember int `json:"boguMember" orm:"bogu_member" description:"1:博股会员"` // 1:博股会员
  31. LearningLevel int `json:"learningLevel" orm:"learning_level" description:"学习等级"` // 学习等级
  32. LearningIcon string `json:"learningIcon" orm:"learning_icon" description:"学习等级icon"` // 学习等级icon
  33. Mobile string `json:"mobile" orm:"mobile" description:"手机号"` // 手机号
  34. UserIdentity int `json:"userIdentity" orm:"user_identity" description:"0:无认证 1:红V 2:蓝V 3:黄V"` // 0:无认证 1:红V 2:蓝V 3:黄V
  35. UserIdentityTitle string `json:"userIdentityTitle" orm:"user_identity_title" description:"用户身份头衔"` // 用户身份头衔
  36. Openid string `json:"openid" orm:"openid" description:"微信openid"` // 微信openid
  37. UserRole int `json:"userRole" orm:"user_role" description:"用户身份(1:网员 2:非网)"` // 用户身份(1:网员 2:非网)
  38. IsBlacklist int `json:"isBlacklist" orm:"is_blacklist" description:"是否是黑名单用户"` // 是否是黑名单用户
  39. IsLecturer int `json:"isLecturer" orm:"is_lecturer" description:"讲师"` // 讲师
  40. Shenqiangshou int `json:"shenqiangshou" orm:"shenqiangshou" description:"神枪手"` // 神枪手
  41. Huanqiu int `json:"huanqiu" orm:"huanqiu" description:"环球"` // 环球
  42. Age uint `json:"age" orm:"age" description:"年纪"` // 年纪
  43. CreatedAt *gtime.Time `json:"createdAt" orm:"created_at" description:""` //
  44. UpdatedAt *gtime.Time `json:"updatedAt" orm:"updated_at" description:""` //
  45. }