This commit is contained in:
geh
2026-09-14 15:58:12 +08:00
parent a815e09879
commit 77f61d7e06
128 changed files with 25181 additions and 960 deletions
+14
View File
@@ -106,5 +106,19 @@ namespace Model
IExecuteResult result = this.ExecuteMethodCall(this, ((MethodInfo)MethodInfo.GetCurrentMethod()), year);
return (ISingleResult<DigDataHSEDataCollectItem>)result.ReturnValue;
}
/// <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;
}
}
}