1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
| using System;
| using System.Collections.Generic;
| using System.Linq;
| using System.Text;
| using CY.IBaseDAL;
| using CY.Model;
|
| namespace CY.IDAL
| {
| /// <summary>
| /// 诚信系统评价记录-数据库操作接口
| /// </summary>
| public interface IIntegrity_EvaluationRecordsDAL : ICommonDAL, IPaging<Integrity_EvaluationRecords>, IGetAllModel<Integrity_EvaluationRecords>
| {
| /// <summary>
| /// 根据编号获得信息
| /// </summary>
| /// <param name="Keyid">编号</param>
| /// <returns></returns>
| Integrity_EvaluationRecords GetModelByKeyid(int? Keyid);
|
| /// <summary>
| /// 根据订单编号获得信息
| /// </summary>
| /// <param name="OrderId">订单编号</param>
| /// <returns></returns>
| Integrity_EvaluationRecords GetModelByOrderId(int? OrderId);
| }
| }
|
|