ruoyi对接

登录接口、用户信息接口、用户管理接口等
This commit is contained in:
陈淳
2022-09-07 18:22:15 +08:00
parent bf17312a5f
commit 781fa7ea1b
8 changed files with 52 additions and 7 deletions

View File

@@ -10,5 +10,9 @@ namespace Yi.Framework.DTOModel
{
public string UserName { get; set; }
public string Password { get; set; }
public string Uuid { get; set; }
public string Code { get; set; }
}
}

View File

@@ -13,5 +13,7 @@ namespace Yi.Framework.DTOModel
public HashSet<RoleEntity> Roles { get; set; } = new();
public HashSet<MenuEntity> Menus { get; set; }=new();
public List<string> RoleCodes { get; set; } =new();
public List<string> PermissionCodes { get; set; } = new();
}
}