using System; using System.Collections.Generic; using System.Linq; using System.Text; using CY.IBaseDAL; using CY.Model; namespace CY.IDAL { /// ///行政物品管理-数据库操作接口 /// public interface IOA_GongzuoneirongDAL : ICommonDAL, IPaging, IGetAllModel { /// /// 根据编号获得信息 /// /// 编号 /// OA_Gongzuoneirong GetModelByKeyid(int? Keyid); /// /// 分页查询 /// /// /// IEnumerable SelectModelPage(Infrastructure.Query.Pagination pagination, Guid _MemberId, string Gongzuozhize, int? Zerenren); /// /// 检测责任人是否重复 /// /// /// /// /// int IsExitsName( int? Zerenren, int? Keyid, string neirong); /// /// 获取物品分类 /// /// /// IEnumerable GetDataByType(Guid _MemberId); } }