user.go 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. package dao
  2. import (
  3. "time"
  4. )
  5. // User 用户
  6. type User struct {
  7. ID int64 `gorm:"primary_key" json:"id"` //编号
  8. TenantId string `gorm:"type:varchar(12);default '000000'" json:"tenantId"` //租户id
  9. Code string `gorm:"type:varchar(12)" json:"code"` //用户编号
  10. Account string `gorm:"type:varchar(12)" json:"account"` //账号
  11. Password string `gorm:"type:varchar(12)" json:"password"` //密码
  12. Name string `gorm:"type:varchar(12)" json:"name"` //昵称
  13. RealName string `gorm:"type:varchar(12)" json:"real_name"` //真名
  14. Avatar string `gorm:"type:varchar(12)" json:"avatar"` //头像
  15. Email string `gorm:"type:varchar(12)" json:"email"` //邮箱
  16. Phone string `gorm:"type:varchar(12)" json:"phone"` //手机
  17. Birthday string `gorm:"type:datetime" json:"birthday"` //生日
  18. Sex int `gorm:"type:smallint" json:"sex"` //生日
  19. RoleId string `gorm:"type:varchar(1000)" json:"role_id"` //角色id
  20. DeptId string `gorm:"type:varchar(1000)" json:"dept_id"` //部门id
  21. PostId string `gorm:"type:varchar(1000)" json:"post_id"` //岗位id
  22. CreateUser int64 `gorm:"type:bigint" json:"createUser"` //创建人
  23. CreateDept int64 `gorm:"type:bigint" json:"createDept"` //创建部门
  24. CreateTime time.Time `gorm:"type:datetime" json:"createTime"` //新增时间
  25. UpdateUser int64 `gorm:"type:bigint" json:"updateUser"` //修改人
  26. UpdateTime time.Time `gorm:"type:datetime" json:"updateTime"` //修改时间
  27. Status int `gorm:"type:int " json:"status"` //状态
  28. IsDeleted int `gorm:"type:int" json:"isDeleted"` //是否删除 0=未删除,1=删除
  29. GroupId int `gorm:"type:int" json:"groupId"` //用户分组id
  30. BigScreenIndexCameraIds string `gorm:"type:varchar(255)" json:"bigScreenIndexCameraIds"` //数据大屏中摄像头保存位置
  31. SecuritySixScreen string `gorm:"type:varchar(255)" json:"security_six_screen"` //安防页面六分屏
  32. }
  33. func (User) TableName() string {
  34. return "user"
  35. }
  36. func (c *User) GetUser() error {
  37. return Db.Model(&c).Where("id = ?", c.ID).Find(&c).Error
  38. }