using System; using System.Collections.Generic; using System.Linq; using System.Text; using CY.IBaseDAL; using CY.Model; namespace CY.IDAL { /// ///软件版本-数据库操作接口 /// public interface ISoft_VersionDAL : ICommonDAL, IPaging, IGetAllModel { /// /// 根据编号获得信息 /// /// 编号 /// Soft_Version GetModelByKeyid(int? Keyid); /// /// 分页查询 /// /// /// IEnumerable SelectModelPage(Infrastructure.Query.Pagination pagination,int? _SoftTypeId,string _SoftName,string _SoftVersion,string _SoftStoreAddress,string _SoftUrl,string _SoftContent,DateTime? _BeginSoftCreatTime,DateTime? _EndSoftCreatTime,DateTime? _BeginSoftUpCount,DateTime? _EndSoftUpCount,DateTime? _BeginLastUpdateTime,DateTime? _EndLastUpdateTime,string _Operator); } }