using System; using PetaPoco; using Pingchuan.BeijingSafeguard.Model; namespace Pingchuan.BeijingSafeguard.DAL { public class ComputeDAL : BaseDAL { public static Pagination Statistics(DateTime fromTime, DateTime toTime, int pageIndex, int pageSize) { string sql = $@"select user_id, count(*) total_count, max(create_time) last_time from computes where create_time >= @0 and create_time <= @1 group by user_id"; Page page = db.Page(pageIndex, pageSize, sql, pageIndex, pageSize); return Pagination.FromPage(page); } } }