using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using CY.IBaseDAL;
using CY.Model;
namespace CY.IDAL
{
///
///工资管理-数据库操作接口
///
public interface IOA_WageManageDAL : ICommonDAL, IPaging, IGetAllModel
{
///
/// 根据编号获得信息
///
/// 编号
///
OA_WageManage GetModelByKeyid(int? Keyid);
///
/// 分页查询
///
///
///
IEnumerable SelectModelPage(Infrastructure.Query.Pagination pagination,Guid _FirmId,Guid _MemberId,string _SW_Type,string _SW_Process,decimal? _SW_BasicSalary,string _SW_BasicSalaryType,string _SW_WorkAge,decimal? _SW_PieceMoney,decimal? _SW_OutputMoneyCommission,decimal? _SW_ProfitCommission,decimal? _SW_WorkAgeMoney,decimal? _SW_Allowance,decimal? _SW_LateDeductions,decimal? _SW_LeaveEarlyDeductions,decimal? _SW_AbsentDeductions,decimal? _SW_LeaveDeductions,decimal? _SW_SocialSecurityComment,decimal? _SW_SocialSecurityYou,bool _SW_IsDel,int? _OrderNum,DateTime? _BeginLastUpdateTime,DateTime? _EndLastUpdateTime,string _Operator);
///
/// 分页查询
///
///
///
IEnumerable SelectModelPage(Infrastructure.Query.Pagination pagination, Guid _FirmId, int? _SW_Process, string _SW_Type, int? DepartMentId, string StaffName, string StaffStatus);
///
/// 根据员工会员编号获得信息
///
/// 编号
///
OA_WageManage GetModelByMemberId(Guid MemberId);
}
}