提交当前本机整理版本

This commit is contained in:
cyf
2026-07-02 10:11:39 +00:00
parent c10a5d64c7
commit aacefa24f8
822 changed files with 196665 additions and 14263 deletions
@@ -568,4 +568,29 @@ namespace Lskj.Business
/// <para>说明:保存终审条件信息</para>
/// <para>创建人:曹屹峰</para>
/// <para>创建日期:2022-06-7 </para>
/// <para>修改人:</para
/// <para>修改人:</para>
/// <para>修改日期:</para>
/// <para>修改备注:</para>
/// <para>版本:1.0</para>
/// </summary>
/// <returns>System.String.</returns>
public static bool deleteFinalConditions(string id, string key)
{
string sqlValue = string.Empty;
sqlValue = string.Format("delete from p_systemControlLocation where formkey='{0}' and fieldid='{1}'", key, id);
sqlValue += string.Format("delete from p_systembillsourcecond where id='{0}'", id);
return ExecSqlValue(sqlValue) > 0;
}
/// <summary>
/// 删除方案步骤
/// </summary>
/// <param name="model"></param>
/// <returns></returns>
public static bool DeleteSchemeSteps(BillflowTypeStepModel model)
{
string sqlValue = string.Format(@"delete p_systembillflowtypestep where id='{0}'", model.id);
return ExecSqlValue(sqlValue) > 0;
}
}
}