SVN r1044

SVN-Revision: r1044
This commit is contained in:
cyf
2025-11-20 08:54:42 +00:00
parent 055845b380
commit a25c68d10e
10 changed files with 265 additions and 93 deletions
@@ -293,8 +293,8 @@ namespace Lskj.Business.Impl
/// <returns><c>true</c> if XXXX, <c>false</c> otherwise.</returns>
public static bool UpdateBaseFlowType(BaseflowTypeModel model)
{
string sqlValue = string.Format(@"update p_systemdlltabflowtype set billtypename='{0}',operuser='{1}' where id='{2}'",
model.billTypeName.Replace("'", "''"), model.operUser.Replace("'", "''"), model.id);
string sqlValue = string.Format(@"update p_systemdlltabflowtype set billtypename='{0}',operuser='{1}',billflowban='{3}' where id='{2}'",
model.billTypeName.Replace("'", "''"), model.operUser.Replace("'", "''"), model.id, model.billflowban);
return ExecSqlValue(sqlValue) > 0;
}