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
30
| using System;
| using System.Collections.Generic;
| using System.Linq;
| using System.Text;
| using System.Data;
| using System.Data.SqlClient;
| using CY.IBaseDAL;
| using CY.Model;
|
|
| namespace CY.IDAL
| {
| public interface IAdm_tongxunluDAL : ICommonDAL, IPaging<Adm_tongxunlu>, IGetAllModel<Adm_tongxunlu>
| {
|
| /// <summary>
| /// 根据编号获得信息
| /// </summary>
| /// <param name="Keyid">编号</param>
| /// <returns></returns>
| Adm_tongxunlu GetModelByKeyid(int keyid);
|
| /// <summary>
| /// 根据formid获得信息
| /// </summary>
| /// <param name="Keyid">编号</param>
| /// <returns></returns>
| IEnumerable<Adm_tongxunlu> GetModelByformid(Guid formid);
| }
| }
|
|