完成列表

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

@@ -17,12 +17,12 @@ namespace OpenAuth.App
/// <summary>
/// 根据部门ID得到进出库信息
/// </summary>
public dynamic Load(string username, Guid orgId, int pageindex, int pagesize)
public dynamic Load(string username, Guid orgId, int page, int rows)
{
return _service.Load(username, orgId, pageindex, pagesize);
return _service.Load(username, orgId, page, rows);
}
public void Delete(Guid id)
public void Delete(Guid[] id)
{
_service.Delete(id);
}