完成列表

This commit is contained in:
yubaolee
2016-10-17 15:04:30 +08:00
parent e514779974
commit 26c11376f1
11 changed files with 645 additions and 311 deletions

View File

@@ -55,11 +55,11 @@ namespace OpenAuth.Mvc.Controllers
return JsonHelper.Instance.Serialize(_app.Load(AuthUtil.GetUserName(), parentId, page, rows));
}
public string Delete(Guid Id)
public string Delete(Guid[] ids)
{
try
{
_app.Delete(Id);
_app.Delete(ids);
}
catch (Exception e)
{