user.go 995 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. package model
  2. import "iot_manager_service/app/system/dao"
  3. type UserDetail struct {
  4. dao.User
  5. TenantName string `json:"tenantName"` //租户名
  6. RoleName string `json:"roleName"` //角色名
  7. DeptName string `json:"deptName"` //部门名
  8. PostName string `json:"postName"` //岗位名
  9. SexName string `json:"sexName"` //性别
  10. }
  11. type RsqUserList struct {
  12. Records []UserDetail `json:"records"` //记录列表
  13. Current int `json:"current"` //当前分页
  14. Size int `json:"size"` //每页数量
  15. Pages int `json:"pages"` //总页数
  16. Total int `json:"total"` //总数
  17. }
  18. type ReqUserRemove struct {
  19. IDs int64 `json:"ids"`
  20. Name string `json:"name"`
  21. }
  22. type ReqUserResetPwd struct {
  23. IDs int64 `json:"ids"`
  24. }
  25. type ReqUserGrant struct {
  26. UserIds string `json:"userIds"`
  27. RoleIds string `json:"roleIds"`
  28. }
  29. const DefaultPwd = "10470c3b4b1fed12c3baac014be15fac67c6e815" //123456
  30. const GrantInvalid = "ID或角色ID无效!"