17 lines
		
	
	
		
			403 B
		
	
	
	
		
			C#
		
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			403 B
		
	
	
	
		
			C#
		
	
	
	
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<PageData<HkcChangeShifts>> GetChangeShiftRecordAsync(DateTime start, DateTime end, int? take, int? skip);
 | 
						|
 | 
						|
    }
 | 
						|
}
 |