using System; using System.Collections.Generic; using System.Linq; using System.Text; using CY.IBaseDAL; using CY.Model; using System.Data; namespace CY.IDAL { /// /// 资讯分类-数据库操作接口 /// public interface IInfo_AllianceBasicDAL : ICommonDAL, IPaging, IGetAllModel { /// /// 查询信息 /// /// Info_AllianceBasic SelectModel(); /// /// 列表查询 /// /// IEnumerable SelectModelPage(Infrastructure.Query.Pagination pagination); } }