forked from ltpcode/Codematic2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProcedureHost.cs
57 lines (50 loc) · 1.29 KB
/
ProcedureHost.cs
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
using System;
using System.Collections.Generic;
using System.Text;
using Maticsoft.IDBO;
using Maticsoft.CodeHelper;
namespace Maticsoft.CodeEngine
{
[Serializable]
public class ProcedureHost : TableHost
{
public string ProcedureName
{
get { return TableName; }
}
/// <summary>
/// 选择的字段集合
/// </summary>
public List<ColumnInfo> Parameterlist
{
get { return Fieldlist; }
}
/// <summary>
/// 输出参数
/// </summary>
public ColumnInfo OutParameter
{
get
{
ColumnInfo outparameter = null;
foreach (ColumnInfo parameter in Parameterlist)
{
if (parameter.Description == "isoutparam")
{
outparameter = parameter;
}
}
return outparameter;
}
}
/// <summary>
/// 组合得到BLL类名
/// </summary>
/// <param name="TabName"></param>
/// <returns></returns>
public string GetMethodName(string ProcedureName)
{
return ProcedureName;
}
}
}