using System; using System.Collections.Generic; using System.Linq; using System.Text; using CY.Model; namespace CY.IDAL.Inquiry { /// /// 询价综合类型操作接口 /// public interface IMultipleTypeInfoDAL { /// /// 根据父ID获取实体 /// /// /// IList GetModelList(int parentId); /// /// 根据ID获取实体 /// /// /// SysInquiry_MultipleTypeInfo GetModel(int keyId); } }