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_CompanyAdDAL : ICommonDAL, IPaging, IGetAllModel { /// /// 获取单个公司广告信息 /// /// /// Model.Info_CompanyAd SelectSingleModel(string KeyId); /// /// 获取公司广告信息列表 /// /// /// /// /// /// IEnumerable SelectModelList(Infrastructure.Query.Pagination pa, Guid FirmId, string PicType, string Tittle); /// /// 根据类型返回图片列表 /// /// /// /// /// IEnumerable SelectModelListByType(Infrastructure.Query.Pagination pa, string type, Guid FirmId); } }