using System; using System.Collections.Generic; using System.Linq; using System.Text; using CY.IBaseDAL; using CY.Model; namespace CY.IDAL { /// /// 厂商信息表-数据库操作接口 /// public interface IEC_FirmInfoDAL : ICommonDAL, IPaging, IGetAllModel { /// /// 根据会员编号获得厂商信息 /// /// 会员编号 /// EC_FirmInfo GetModelByMemberId(Guid MemberId); /// /// 分页查询 /// /// /// /// /// /// /// /// IEnumerable SelectModelPage(Infrastructure.Query.Pagination pagination, string Province, string City, string County, string FirmDescribe, string MachineType); /// /// 检测域名是否重复 /// /// /// /// int IsExitsDomain(string DomainName, Guid MemberId); /// /// 根据会员的域名获取代表值,如果没找到返回-1 /// /// /// int GetBid(string domainName); } }