using System; using System.Collections.Generic; using System.Linq; using System.Text; using CY.IBaseDAL; using CY.Model; namespace CY.IDAL.Inquiry { /// /// 陌生客户资料操作接口 /// public interface IStrangeCustomerInfoDAL : ICommonDAL { /// /// 根据主键获取实体 /// /// /// Inquiry_StrangeCustomerInfo GetModel(Guid key); } }