1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| #region
|
| using System.Data;
|
| #endregion
|
| namespace CSFrameworkV5.Interfaces
| {
| /// <summary>
| /// 业务单据附件数据的桥接接口
| /// </summary>
| public interface IBridge_AttachFile
| {
| /// <summary>
| /// 获取指定单据号码的附件数据
| /// </summary>
| /// <param name="docID">单据号码</param>
| /// <returns></returns>
| DataTable GetData(string docID);
| }
| }
|
|