complete user list

This commit is contained in:
yubaolee
2017-08-31 19:54:12 +08:00
parent d88668def1
commit 2f2aedc432
13 changed files with 53 additions and 405 deletions

View File

@@ -116,7 +116,7 @@ namespace OpenAuth.App
int cnt = _unitWork.Find<WFSchemeInfo>(null).Count();
result.total = cnt%pageSize ==0?cnt/pageSize:cnt/pageSize+1;
result.rows = _unitWork.Find<WFSchemeInfo>(pageCurrent, pageSize, "ModifyDate descending", null).ToList();
result.data = _unitWork.Find<WFSchemeInfo>(pageCurrent, pageSize, "ModifyDate descending", null).ToList();
return result;
}