using System; using System.Collections.Generic; using System.Linq; using System.Text; using CY.IBaseDAL; using CY.Model; namespace CY.IDAL { /// /// 诚信系统评价记录-数据库操作接口 /// public interface IIntegrity_EvaluationRecordsDAL : ICommonDAL, IPaging, IGetAllModel { /// /// 根据编号获得信息 /// /// 编号 /// Integrity_EvaluationRecords GetModelByKeyid(int? Keyid); /// /// 根据订单编号获得信息 /// /// 订单编号 /// Integrity_EvaluationRecords GetModelByOrderId(int? OrderId); } }