You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
745 B
C#

using SlnMesnac.Model.domain;
using SlnMesnac.Repository.service.@base;
using System;
using System.Collections.Generic;
using System.Text;
namespace SlnMesnac.Repository.service
{
public interface IRecordStaffAttendanceService : IBaseService<RecordStaffAttendance>
{
/// <summary>
/// 获取记录员工打卡信息
/// </summary>
/// <returns></returns>
List<RecordStaffAttendance> GetRecordStaffAttendances();
/// <summary>
/// 验证添加员工打卡记录
/// </summary>
/// <param name="recordStaffAttendances"></param>
/// <returns></returns>
bool InsertRecordStaffAttendance(List<RecordStaffAttendance> recordStaffAttendances);
}
}