user.go 639 B

1234567891011121314151617181920
  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. }