diff --git a/Bootstrap.DataAccess/Log.cs b/Bootstrap.DataAccess/Log.cs index 34c53752..bf498b96 100644 --- a/Bootstrap.DataAccess/Log.cs +++ b/Bootstrap.DataAccess/Log.cs @@ -27,7 +27,7 @@ namespace Bootstrap.DataAccess /// /// /// - public virtual Page Retrieves(PaginationOption po, DateTime? startTime, DateTime? endTime, string opType) + public virtual new Page Retrieves(PaginationOption po, DateTime? startTime, DateTime? endTime, string opType) { var sql = new Sql("select CRUD, UserName, LogTime, Ip, Browser, OS, City, RequestUrl, RequestData from Logs"); if (startTime.HasValue) sql.Append("where LogTime >= @0", startTime.Value);