using System; using System.Collections.Generic; using System.Linq; using System.Text; using CY.IBaseDAL; using CY.Model; namespace CY.IDAL { /// ///软件激活码-数据库操作接口 /// public interface ISoft_KeyCodeDAL : ICommonDAL, IPaging, IGetAllModel { /// /// 根据编号获得信息 /// /// 编号 /// Soft_KeyCode GetModelByKeyid(int? Keyid); /// /// 分页查询 /// /// /// IEnumerable SelectModelPage(Infrastructure.Query.Pagination pagination, int? _KeySoftId, string _KeySoftName, string _KeyCode, int? _KeyStatus, int? _KeyProxyId, DateTime? _BeginKeyCreatTime, DateTime? _EndKeyCreatTime, DateTime? _BeginKeyOutTime, DateTime? _EndKeyOutTime, DateTime? _BeginKeyUseTime, DateTime? _EndKeyUseTime, string _KeyUseIP, int? _KeyClientId, string _KeyClientName, DateTime? _BeginLastUpdateTime, DateTime? _EndLastUpdateTime, string _Operator, string _KeyWord, int? _txtKeyVersion); } }