user.go 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. package dao
  2. import (
  3. "fmt"
  4. "time"
  5. )
  6. // User 用户
  7. type User struct {
  8. ID int64 `gorm:"primary_key;type:bigint" json:"id"` //编号
  9. TenantId string `gorm:"type:varchar(12)" json:"tenantId"` //租户ID
  10. Code string `gorm:"type:varchar(12)" json:"code"` //用户编号
  11. Account string `gorm:"type:varchar(45)" json:"account"` //账号
  12. Password string `gorm:"type:varchar(45)" json:"password"` //密码
  13. Name string `gorm:"type:varchar(20)" json:"name"` //昵称
  14. RealName string `gorm:"type:varchar(12)" json:"realName"` //真名
  15. Avatar string `gorm:"type:varchar(500)" json:"avatar"` //头像
  16. Email string `gorm:"type:varchar(45)" json:"email"` //邮箱
  17. Phone string `gorm:"type:varchar(45)" json:"phone"` //手机
  18. Birthday string `gorm:"type:string" json:"birthday"` //生日
  19. Sex int `gorm:"type:smallint" json:"sex"` //生日
  20. RoleId int64 `gorm:"type:bigint" json:"roleId"` //角色id 数组,分隔
  21. CreateUser int64 `gorm:"type:bigint" json:"createUser"` //创建人
  22. CreateDept int64 `gorm:"type:bigint" json:"createDept"` //创建部门
  23. CreateTime time.Time `gorm:"autoCreateTime;column:create_time;type:datetime;" json:"createTime"` //新增时间
  24. UpdateUser int64 `gorm:"type:bigint" json:"updateUser"` //修改人
  25. UpdateTime time.Time `gorm:"autoUpdateTime;column:update_time;type:datetime;" json:"updateTime"` //修改时间
  26. Status int `gorm:"type:int " json:"status"` //状态
  27. IsDeleted int `gorm:"type:int" json:"isDeleted"` //是否删除 0=未删除,1=删除
  28. GroupId int `gorm:"type:int" json:"groupId"` //用户分组id
  29. BigScreenIndexCameraIds string `gorm:"type:varchar(255)" json:"bigScreenIndexCameraIds"` //数据大屏中摄像头保存位置
  30. SecuritySixScreen string `gorm:"type:varchar(255)" json:"securitySixScreen"` //安防页面六分屏
  31. }
  32. type JsonInt64 int64
  33. func (ji *JsonInt64) UnmarshalJSON() {
  34. }
  35. func (*User) TableName() string {
  36. return "user"
  37. }
  38. func (c *User) GetUser() error {
  39. return Db.Debug().Model(&c).Where(" is_deleted = 0").Find(&c).Error
  40. }
  41. func (c *User) GetUserByTenantId() error {
  42. return Db.Debug().Model(&c).Where("tenant_id = ? and is_deleted = 0", c.TenantId).Find(&c).Error
  43. }
  44. func (c *User) GetUserByPwd() error {
  45. return Db.Debug().Model(&c).Where("tenant_id = ? and account = ? and password = ? and is_deleted = 0", c.TenantId, c.Account, c.Password).First(&c).Error
  46. }
  47. func (c *User) GetUsers(offset, limit int) ([]User, int64, error) {
  48. var users []User
  49. var counts int64
  50. db := Db.Debug().Model(&c)
  51. if c.Account != "" {
  52. db = db.Where("account like ?", "%"+c.Account+"%")
  53. }
  54. if c.RealName != "" {
  55. db = db.Where("real_name like ?", "%"+c.RealName+"%")
  56. }
  57. err := db.Where("is_deleted = 0").Offset(offset).Limit(limit).Find(&users).Error
  58. db1 := Db.Debug().Model(&c)
  59. db1.Debug().Where("is_deleted = 0").Count(&counts)
  60. return users, counts, err
  61. }
  62. func (c *User) Save() error {
  63. return Db.Debug().Model(&c).Save(&c).Error
  64. }
  65. func (c *User) Update() error {
  66. return Db.Debug().Model(&c).Where(" id = ? ", c.ID).Updates(&c).Error
  67. }
  68. func (c *User) Remove() error {
  69. return Db.Debug().Model(&c).Where("id = ?", c.ID).Updates(map[string]interface{}{"update_time": c.UpdateTime, "update_user": c.UpdateUser, "is_deleted": c.IsDeleted}).Error
  70. }
  71. func (c *User) UpdatePwd(pwd string) error {
  72. return Db.Debug().Model(&c).Where(" id = ? ", c.ID).Updates(map[string]interface{}{"password": pwd}).Error
  73. }
  74. func (c *User) GetAll() ([]User, error) {
  75. var users []User
  76. err := Db.Debug().Model(&c).Where("is_deleted = 0").Find(&users).Error
  77. return users, err
  78. }
  79. func (c *User) UpdateRoles(userIds []string, roleIds string) error {
  80. err := Db.Debug().Model(&c).Where("id in ?", userIds).Updates(map[string]interface{}{"role_id": roleIds}).Error
  81. return err
  82. }
  83. // IsExist :account是否已存在 true为存在,false不存在
  84. func (c *User) IsExist() bool {
  85. var s string
  86. r := Db.Debug().Model(&c).Select("account").Where("account = ?", c.Account).First(&s).Error
  87. fmt.Printf("ERROR:%v\n account:%v\n return:%v\n", r, s, s != "")
  88. return s != ""
  89. }
  90. // GetAvatar 查 avatar
  91. func (c *User) GetAvatar() {
  92. tx := Db.Debug().Model(&c)
  93. tx.Select("avatar").Where("tenant_id = ?", c.TenantId).Find(&c)
  94. }