提交代码

This commit is contained in:
2024-12-24 19:04:32 +08:00
parent 2e3c34c38c
commit 189a020cc7
78 changed files with 9689 additions and 2214 deletions
+21
View File
@@ -1302,6 +1302,27 @@ namespace BLL
}
private static string _SGGLApiUrl;
public static string SGGLApiUrl
{
get
{
var sysSet = (from x in DB.Sys_Set where x.SetName == "程序接口访问地址" select x).ToList().FirstOrDefault();
if (sysSet != null)
{
_SGGLApiUrl = sysSet.SetValue;
}
else
{
_SGGLApiUrl = "";
}
return _SGGLApiUrl;
}
set { _SGGLApiUrl = value; }
}
}
}