Browse Source

Update

master
fanwensheng 3 years ago
parent
commit
18b7b57b5a
  1. 4
      04.系统编码/DAL/ComputeDAL.cs

4
04.系统编码/DAL/ComputeDAL.cs

@ -10,8 +10,10 @@ namespace Pingchuan.BeijingSafeguard.DAL
{
if (typeCode == "user")
return UserStatistics(fromTime, toTime, pageIndex, pageSize);
else
else if (typeCode == "org")
return OrgStatistics(fromTime, toTime, pageIndex, pageSize);
else
return null;
}
public static Pagination<Statistic> UserStatistics(DateTime fromTime, DateTime toTime, int pageIndex, int pageSize)

Loading…
Cancel
Save