using System; using System.Collections.Generic; using System.Linq; using System.Text; using CY.IBaseDAL; using CY.Model; using CY.Infrastructure.Query; using System.Data; namespace CY.IDAL { /// /// 推广系统图片推广-数据库操作接口 /// public interface IPromotion_PictureDAL : ICommonDAL, IPaging, IGetAllModel { /// /// 获取全部图片推广 /// /// /// IEnumerable SelectModelPage(Pagination pa); //datatable类型全部图片 DataTable SelectModelList(); /// /// 获取单个图片推广 /// /// /// Model.Promotion_Picture SelectSingleModel(string Keyid); } }