优化机构管理删除

This commit is contained in:
yubaolee
2016-10-14 17:50:44 +08:00
parent e68555e976
commit 62f3885380
3 changed files with 13 additions and 10 deletions

View File

@@ -75,11 +75,12 @@ namespace OpenAuth.Mvc.Controllers
/// <para>Id为逗号分开的字符串</para>
/// </summary>
/// <returns>System.String.</returns>
public string DelOrg(Guid Id)
[HttpPost]
public string DelOrg(Guid[] ids)
{
try
{
_orgApp.DelOrg(Id);
_orgApp.DelOrg(ids);
}
catch (Exception e)
{