SVN r1106

SVN-Revision: r1106
This commit is contained in:
cyf
2026-01-30 07:52:21 +00:00
parent 0027b1714e
commit 52221cc693
7 changed files with 112 additions and 13 deletions
+29 -1
View File
@@ -416,4 +416,32 @@ namespace Lskj.Model
else
{
systemVersion = "非Windows NT系列操作系统";
}
return systemVersion;
}
}
#endregion
/// <summary>
/// 使用winfrom自带浏览器
/// </summary>
public bool PrimitiveBrowser;
/// <summary>
/// 当前程序使用的语言
/// </summary>
public string LanguageName;
/// <summary>
/// 是否改变存储过程参数类型(越南语要用Nvarchar)
/// </summary>
public bool ChangeParameterType
{
get
{
if (!string.IsNullOrWhiteSpace(this.LanguageName))
{
return true;
}
return false;
}