安全管理报表

This commit is contained in:
2026-09-16 15:32:11 +08:00
parent be4568b20c
commit d77ccaabd8
10 changed files with 473 additions and 135 deletions
+2 -2
View File
@@ -539,11 +539,11 @@ namespace BLL
public static int GetNewIntOrZero(string value)
{
int revalue = 0;
if (!String.IsNullOrEmpty(value))
if (!string.IsNullOrEmpty(value))
{
try
{
revalue = Int32.Parse(value);
revalue = int.Parse(value);
}
catch (Exception ex)
{