using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using CY.IBaseDAL;
using CY.Model;
namespace CY.IDAL
{
///
///员工奖惩管理记录-数据库操作接口
///
public interface IOA_WageAwardPunishDAL : ICommonDAL, IPaging, IGetAllModel
{
///
/// 根据编号获得信息
///
/// 编号
///
OA_WageAwardPunish GetModelByKeyid(int? Keyid);
///
/// 分页查询
///
///
///
IEnumerable SelectModelPage(Infrastructure.Query.Pagination pagination,Guid _FirmId,Guid _MemberId,string _RecTitle,DateTime? _BeginRecTime,DateTime? _EndRecTime,int? _RecType,string _RecContent,decimal? _RecMoney,int? _PlanId,DateTime? _BeginLastUpdateTime,DateTime? _EndLastUpdateTime,string _Operator);
///
/// 分页查询-奖惩统计
///
///
///
///
///
///
IEnumerable SelectModelPageByWage(Infrastructure.Query.Pagination pagination, Guid MemberId, int? DepartmentId, string PlanPeople, string StatisticsTime);
}
}