This commit is contained in:
2026-08-19 10:05:39 +08:00
parent 10e9cef280
commit 3d7c01003d
+10 -3
View File
@@ -293,7 +293,8 @@ namespace BLL
db.SubmitChanges(); db.SubmitChanges();
} }
} }
catch (Exception e) { catch (Exception e)
{
} }
} }
@@ -1596,7 +1597,12 @@ namespace BLL
} }
} }
/// <summary>
/// 重置登录密码
/// </summary>
/// <param name="unitId"></param>
/// <param name="idCard"></param>
/// <returns></returns>
public static string getInitialPassword(string unitId, string idCard) public static string getInitialPassword(string unitId, string idCard)
{ {
string prefixValue = Const.PasswordPrefixValue; string prefixValue = Const.PasswordPrefixValue;
@@ -1627,7 +1633,8 @@ namespace BLL
suffixValue = idCard; suffixValue = idCard;
} }
} }
return prefixValue + "." + suffixValue; return prefixValue + suffixValue;
//return prefixValue + "." + suffixValue;
} }
/// <summary> /// <summary>