using Longbow.Data; using Longbow.Web.Mvc; using PetaPoco; using System; namespace Bootstrap.DataAccess { /// /// /// public static class LogHelper { /// /// 查询所有日志信息 /// /// /// public static Page Retrieves(PaginationOption op, DateTime? startTime, DateTime? endTime, string opType) => DbContextManager.Create().Retrieves(op, startTime, endTime, opType); /// /// 保存新增的日志信息 /// /// /// public static bool Save(Log p) => DbContextManager.Create().Save(p); } }