using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using CY.IBaseDAL;
using CY.Model;
namespace CY.IDAL
{
///
///计件登记记录-数据库操作接口
///
public interface IOA_WagePieceRecordDAL : ICommonDAL, IPaging, IGetAllModel
{
///
/// 根据编号获得信息
///
/// 编号
///
OA_WagePieceRecord GetModelByKeyid(int? Keyid);
///
/// 分页查询
///
///
///
IEnumerable SelectModelPage(Infrastructure.Query.Pagination pagination,Guid _FirmId,Guid _MemberId,DateTime? _BeginStartWorkTime,DateTime? _EndStartWorkTime,DateTime? _BeginEndWorkTime,DateTime? _EndEndWorkTime,string _Process,string _Unit,string _JobPerformance,decimal? _PieceworkWages,DateTime? _BeginLastUpdateTime,DateTime? _EndLastUpdateTime,string _Operator);
///
/// 分页查询
///
///
///
IEnumerable SelectModelPage(Infrastructure.Query.Pagination pagination, Guid _FirmId, int? _DepartmentId, string _StaffName, DateTime? _BeginStartWorkTime, DateTime? _EndStartWorkTime, string _Process);
///
/// 分页查询
///
///
///
IEnumerable SelectModelPage(Infrastructure.Query.Pagination pagination, Guid _FirmId, int? _DepartmentId, string _StaffName);
}
}