提交代码

This commit is contained in:
2024-12-25 15:43:38 +08:00
parent 0a2f9ea3a7
commit c0b489aaf4
79 changed files with 8536 additions and 1546 deletions
+19
View File
@@ -1530,7 +1530,26 @@ namespace BLL
return weekOfYear;
}
private static string _SGGLApiUrl;
public static string SGGLApiUrl
{
get
{
var sysSet = (from x in DB.Sys_Const where x.ConstText == "程序接口访问地址" select x).ToList().FirstOrDefault();
if (sysSet != null)
{
_SGGLApiUrl = sysSet.ConstValue;
}
else
{
_SGGLApiUrl = "";
}
return _SGGLApiUrl;
}
set { _SGGLApiUrl = value; }
}
}
}