user.go 965 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. SexName string `json:"sexName"` //性别
  8. }
  9. type RsqUserList struct {
  10. Records []UserDetail `json:"records"` //记录列表
  11. Current int `json:"current"` //当前分页
  12. Size int `json:"size"` //每页数量
  13. Pages int `json:"pages"` //总页数
  14. Total int `json:"total"` //总数
  15. }
  16. type ReqUserRemove struct {
  17. IDs int `json:"ids"`
  18. Name string `json:"name"`
  19. }
  20. type ReqUserResetPwd struct {
  21. IDs int `json:"ids"`
  22. }
  23. type ReqUserGrant struct {
  24. UserIds string `json:"userIds"`
  25. RoleIds string `json:"roleIds"`
  26. }
  27. type Link struct {
  28. Id int `json:"id"`
  29. Link string `json:"link"`
  30. }
  31. const DefaultPwd = "10470c3b4b1fed12c3baac014be15fac67c6e815" //123456
  32. const GrantInvalid = "ID或角色ID无效!"