routine update

This commit is contained in:
yubaolee
2016-10-31 11:03:28 +08:00
parent 48478c0da9
commit 9db1645bfb
5 changed files with 6 additions and 7 deletions

View File

@@ -73,11 +73,11 @@ namespace OpenAuth.Mvc.Controllers
/// <summary>
/// 删除申请
/// </summary>
public string Delete(Guid id)
public string Delete(Guid[] ids)
{
try
{
_app.Del(id);
_app.Del(ids);
}
catch (Exception ex)
{