2023-08-10

This commit is contained in:
2023-08-10 16:56:20 +08:00
parent 02fcf5be10
commit 3809b80091
3 changed files with 10 additions and 6 deletions
@@ -15,10 +15,10 @@ namespace FineUIPro.Web.AttachFile
{
get
{
var sysSet = (from x in Funs.DB.Sys_Set where x.SetName == "OnlineEditAppid" select x).ToList().FirstOrDefault();
var sysSet = (from x in Funs.DB.Sys_Const where x.ConstText == "OnlineEditAppid" select x).ToList().FirstOrDefault();
if (sysSet != null)
{
return sysSet.SetValue;
return sysSet.ConstValue;
}
else
{
@@ -30,10 +30,10 @@ namespace FineUIPro.Web.AttachFile
{
get
{
var sysSet = (from x in Funs.DB.Sys_Set where x.SetName == "OnlineEditAppkey" select x).ToList().FirstOrDefault();
var sysSet = (from x in Funs.DB.Sys_Const where x.ConstText == "OnlineEditAppkey" select x).ToList().FirstOrDefault();
if (sysSet != null)
{
return sysSet.SetValue;
return sysSet.ConstValue;
}
else
{
@@ -45,10 +45,10 @@ namespace FineUIPro.Web.AttachFile
{
get
{
var sysSet = (from x in Funs.DB.Sys_Set where x.SetName == "OnlineEditCallBackurl" select x).ToList().FirstOrDefault();
var sysSet = (from x in Funs.DB.Sys_Const where x.ConstText == "OnlineEditCallBackurl" select x).ToList().FirstOrDefault();
if (sysSet != null)
{
return sysSet.SetValue;
return sysSet.ConstValue;
}
else
{