This commit is contained in:
liqionghai
2025-11-18 17:43:12 +08:00
parent 3f9e939d54
commit d758497f93
189 changed files with 16669 additions and 0 deletions

View File

@@ -0,0 +1,41 @@
namespace Gatedge.K3Cloud.Utils.Option
{
/// <summary>
/// 金蝶配置帮助类
/// </summary>
public class K3CloudOption
{
/// <summary>
/// DBID
/// </summary>
public string AcctID { get; set; }
/// <summary>
/// 应用ID
/// </summary>
public string AppID { get; set; }
/// <summary>
/// 应用密钥
/// </summary>
public string AppSec { get; set; }
/// <summary>
/// 服务器地址
/// </summary>
public string ServerUrl { get; set; }
/// <summary>
/// 时间
/// </summary>
public int Timestamp { get; set; }
/// <summary>
/// 默认语言ID
/// </summary>
public int LCID { get; set; }
/// <summary>
/// 默认用户名称
/// </summary>
public string UserName { get; set; }
/// <summary>
/// 默认组织ID
/// </summary>
public string OrgNumber { get; set; }
}
}