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_AdLoctionDAL : ICommonDAL, IPaging, IGetAllModel
{
///
/// 查询全部广告位置
///
///
DataTable SelectList();
///
/// 根据编号查询单个信息
///
/// 编号
///
Info_AdLoction SelectModelByKeyId(int? KeyId);
///
/// 根据版块查询全部位置
///
///
///
IEnumerable SelectListByMeanValue(int? MeanValue);
}
}