1234567891011121314151617181920212223242526272829303132333435363738 |
- package model
- import "iot_manager_service/app/system/dao"
- type UserDetail struct {
- dao.User
- TenantName string `json:"tenantName"` //租户名
- RoleName string `json:"roleName"` //角色名
- DeptName string `json:"deptName"` //部门名
- PostName string `json:"postName"` //岗位名
- SexName string `json:"sexName"` //性别
- }
- type RsqUserList struct {
- Records []UserDetail `json:"records"` //记录列表
- Current int `json:"current"` //当前分页
- Size int `json:"size"` //每页数量
- Pages int `json:"pages"` //总页数
- Total int `json:"total"` //总数
- }
- type ReqUserRemove struct {
- IDs int64 `json:"ids"`
- Name string `json:"name"`
- }
- type ReqUserResetPwd struct {
- IDs int64 `json:"ids"`
- }
- type ReqUserGrant struct {
- UserIds string `json:"userIds"`
- RoleIds string `json:"roleIds"`
- }
- const DefaultPwd = "10470c3b4b1fed12c3baac014be15fac67c6e815" //123456
- const GrantInvalid = "ID或角色ID无效!"
|