routine update

This commit is contained in:
yubaolee
2016-10-17 11:43:56 +08:00
parent df75ea7fb0
commit e514779974
28 changed files with 1099 additions and 522 deletions

View File

@@ -45,9 +45,9 @@ namespace OpenAuth.Mvc.Controllers
/// <summary>
/// 加载组织下面的所有用户
/// </summary>
public string Load(Guid orgId, int pageCurrent = 1, int pageSize = 30)
public string Load(Guid orgId, int page = 1, int rows = 30)
{
return JsonHelper.Instance.Serialize(_app.Load(orgId, pageCurrent, pageSize));
return JsonHelper.Instance.Serialize(_app.Load(orgId, page, rows));
}
[HttpPost]