role.go 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. package dao
  2. // Role 角色
  3. type Role struct {
  4. ID int `gorm:"primary_key" json:"id"` //编号
  5. TenantId string `gorm:"type:varchar(12);default '000000'" json:"tenantId"` //租户id
  6. ParentId int `gorm:"type:int" json:"parentId"` //父主键
  7. RoleName string `gorm:"type:varchar(255)" json:"roleName"` //角色别名
  8. Sort int `gorm:"type:int" json:"sort"` //排序
  9. RoleAlias string `gorm:"type:varchar(255)" json:"roleAlias"` //角色别名
  10. IsDeleted int `gorm:"type:int" json:"isDeleted"` //是否删除
  11. }
  12. func (Role) TableName() string {
  13. return "role"
  14. }
  15. func (c *Role) Get() error {
  16. return Db.Model(&c).Where("id = ?", c.ID).Find(&c).Error
  17. }
  18. func (c *Role) GetRole() error {
  19. return Db.Model(&c).Where("id = ? and is_deleted = 0", c.ID).Find(&c).Error
  20. }
  21. func (c Role) GetRoles(offset, limit int) ([]Role, int, error) {
  22. var Roles []Role
  23. var counts int64
  24. db := Db.Model(&c)
  25. if c.RoleName != "" {
  26. db = db.Where("role_name like ?", "%"+c.RoleName+"%")
  27. }
  28. if c.RoleAlias != "" {
  29. db = db.Where("role_alias like ?", "%"+c.RoleAlias+"%")
  30. }
  31. if c.TenantId != "" {
  32. db = db.Where("tenant_id like ?", "%"+c.TenantId+"%")
  33. }
  34. err := db.Where("is_deleted = 0").Offset(offset).Limit(limit).Find(&Roles).Error
  35. db1 := Db.Model(&c)
  36. db1.Where("is_deleted = 0").Count(&counts)
  37. return Roles, int(counts), err
  38. }
  39. func (c *Role) Save() error {
  40. return Db.Model(&c).Save(&c).Error
  41. }
  42. func (c *Role) Update() error {
  43. return Db.Model(&c).Updates(&c).Error
  44. }
  45. func (c *Role) Remove() error {
  46. return Db.Model(&c).Updates(map[string]interface{}{"is_deleted": c.IsDeleted}).Error
  47. }
  48. func (c *Role) IsExistChild() bool {
  49. var count int64
  50. _ = Db.Model(&c).Where("parent_id = ? and is_deleted = 0", c.ParentId).Count(&count).Error
  51. return count > 0
  52. }
  53. func (c *Role) UpdatePwd(pwd string) error {
  54. return Db.Model(&c).Updates(map[string]interface{}{"password": pwd}).Error
  55. }
  56. func (c *Role) GetAll() ([]Role, error) {
  57. var Roles []Role
  58. err := Db.Model(&c).Where("is_deleted = 0").Find(&Roles).Error
  59. return Roles, err
  60. }
  61. func (c *Role) UpdateRoles(RoleIds []string, roleIds string) error {
  62. err := Db.Model(&c).Where("id in ?", RoleIds).Updates(map[string]interface{}{"role_id": roleIds}).Error
  63. return err
  64. }
  65. func (c *Role) GetByParentId() ([]Role, error) {
  66. var Roles []Role
  67. err := Db.Model(&c).Where("is_deleted = 0 AND parent_id = ?", c.ParentId).Find(&Roles).Error
  68. return Roles, err
  69. }