allstr.cs
来自「一个用vs2003编写的客户工资管理系统客户端程序/一个用vs2003编写的客户」· CS 代码 · 共 135 行
CS
135 行
using System;
namespace GzglClient.BLL
{
/// <summary>
/// AllStr 的摘要说明。
/// </summary>
public class AllStr
{
#region 自定义变量
private static string _UserId= "";//主Id
private static string _UserName= "";//主Id
private static string _UserPwd= "";//主Id
private static string _Key= "";//主Id
private static string _AreaId="";
private static string _OrgBaseId="";
private static string _WebServiceUrl="";
private static string _DownLoadUrl="";
private static string _Version = "";
private static string _NetOfficeUrl="";
private static bool _IsDebug = false;
#endregion
#region 自定义属性
/// <summary>
/// NetOfficeUrl属性说明:主Id
/// </summary>
public static string NetOfficeUrl
{
get{return _NetOfficeUrl;}
set{_NetOfficeUrl = value;}
}
/// <summary>
/// UserId属性说明:主Id
/// </summary>
public static string Version
{
get{return _Version;}
set{_Version = value;}
}
/// <summary>
/// UserId属性说明:http://218.92.102.27/gzAppUpdate/320700
/// </summary>
public static string DownLoadUrl
{
get{return _DownLoadUrl;}
set{_DownLoadUrl = value;}
}
/// <summary>
/// UserId属性说明:主Id
/// </summary>
public static string WebServiceUrl
{
get{return _WebServiceUrl;}
set{_WebServiceUrl = value;}
}
/// <summary>
/// UserId属性说明:主Id
/// </summary>
public static string UserId
{
get{return _UserId;}
set{_UserId = value;}
}
/// <summary>
/// UserName属性说明:主Id
/// </summary>
public static string UserName
{
get{return _UserName;}
set{_UserName = value;}
}
/// <summary>
/// UserPwd属性说明:主Id
/// </summary>
public static string UserPwd
{
get{return _UserPwd;}
set{_UserPwd = value;}
}
/// <summary>
/// UserPwd属性说明:主Id
/// </summary>
public static string Key
{
get{return _Key;}
set{_Key = value;}
}
/// <summary>
/// AreaId属性说明:AreaId
/// </summary>
public static string AreaId
{
get{return _AreaId;}
set{_AreaId = value;}
}
/// <summary>
/// OrgBaseId属性说明:OrgBaseId
/// </summary>
public static string OrgBaseId
{
get{return _OrgBaseId;}
set{_OrgBaseId = value;}
}
/// <summary>
/// IsDebug属性说明:IsDebug
/// </summary>
public static bool IsDebug
{
get{return _IsDebug;}
set{_IsDebug = value;}
}
#endregion
/// <summary>
/// 构造函数
/// </summary>
public AllStr()
{
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?