using System; using System.Collections.Generic; using System.Linq; using System.Text; using CY.IBaseDAL; using CY.Model; namespace CY.IDAL { /// ///行政物品申请记录-数据库操作接口 /// public interface IOA_PropertyRecordDAL : ICommonDAL, IPaging, IGetAllModel { /// /// 根据编号获得信息 /// /// 编号 /// OA_PropertyRecord GetModelByKeyid(int? Keyid); /// /// 分页查询 /// /// /// IEnumerable SelectModelPage(Infrastructure.Query.Pagination pagination, Guid _MemberId, Guid _AddId, int? _CateId, int? _PropertyId, int? _Status, string _AddName, DateTime? _BeginAddTime, DateTime? _EndAddTime); } }