提交代码
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user