using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using CY.IBaseDAL;
using CY.Model;
namespace CY.IDAL
{
///
///工序设置-数据库操作接口
///
public interface IOA_WageProcessDAL : ICommonDAL, IPaging, IGetAllModel
{
///
/// 根据编号获得信息
///
/// 编号
///
OA_WageProcess GetModelByKeyid(int? Keyid);
///
/// 分页查询
///
///
///
IEnumerable SelectModelPage(Infrastructure.Query.Pagination pagination,Guid _MemberId,string _ParType,string _ParName,DateTime? _BeginLastUpdateTime,DateTime? _EndLastUpdateTime,string _Operator);
///
/// 检测会员工资工序是否重复
///
///
///
///
///
int IsExitsName(string Name, Guid MemberId, int? Keyid);
///
/// 计件等级选择工序
///
///
IEnumerable SelectModelList(Guid _MemberId, string _ParType);
}
}