using System; using System.Collections.Generic; using System.Linq; using System.Text; using CY.IBaseDAL; using CY.Model; using CY.Infrastructure.Query; namespace CY.IDAL { /// /// 电子商务系统奖品领取地址-数据库操作接口 /// public interface IEC_PrizeReciveAddressDAL : ICommonDAL, IPaging, IGetAllModel { EC_PrizeReciveAddress getOnePriceAddress(int? Keyid); IEnumerable getAllPriceAddress(Pagination pa); IEnumerable getAllPriceAddress(); } }