chart_edb_config.go 390 B

12345678910111213
  1. package response
  2. // EdbNoPermissionAdminResp 指标无权限用户列表
  3. type EdbNoPermissionAdminResp struct {
  4. List []Admin `description:"用户列表"`
  5. }
  6. type Admin struct {
  7. AdminId int `description:"用户id"`
  8. RealName string `description:"用户姓名"`
  9. RoleName string `description:"用户角色"`
  10. DepartmentGroup string `description:"部门/分组"`
  11. }