集团三库
This commit is contained in:
@@ -8,6 +8,20 @@ namespace Model
|
||||
|
||||
public partial class SGGLDB : DataContext
|
||||
{
|
||||
/// <summary>
|
||||
/// 三库表数据操作
|
||||
/// </summary>
|
||||
/// <param name="type">数据表名</param>
|
||||
/// <param name="op">1:数据收集,0:数据清空</param>
|
||||
/// <returns></returns>
|
||||
[Function(Name = "[dbo].[SP_SANKU_DATA_INIT]")]
|
||||
public int SP_SANKU_DATA_INIT([Parameter(DbType = "varchar(100)")] string type, [Parameter(DbType = "INT")] int op)
|
||||
{
|
||||
//IExecuteResult result = this.ExecuteCommand(this, ((MethodInfo)MethodInfo.GetCurrentMethod()), type, op);
|
||||
IExecuteResult result = this.ExecuteMethodCall(this, ((MethodInfo)MethodInfo.GetCurrentMethod()), type, op);
|
||||
return (int)result.ReturnValue;
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 获取当前用户在移动端待办事项
|
||||
|
||||
Reference in New Issue
Block a user