using MasaBlazorApp3.Pojo; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MasaBlazorApp3.DataAccess.Dao { public interface IHkcChangeShiftsDao { //查询交接班记录 public Task> GetChangeShiftRecordAsync(DateTime start, DateTime end, int? take, int? skip); } }