You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.1 KiB
40 lines
1.1 KiB
4 years ago
|
namespace NSC.Service
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 功能:网络服务定义
|
||
|
/// 作者:王昊昇
|
||
|
/// 时间:2012.11.8
|
||
|
/// </summary>
|
||
|
public class ServiceDefination
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 服务代码
|
||
|
/// </summary>
|
||
|
public string SERVICECODE { get; set; }
|
||
|
/// <summary>
|
||
|
/// 服务名称
|
||
|
/// </summary>
|
||
|
public string SERVICENAME { get; set; }
|
||
|
/// <summary>
|
||
|
/// 服务备注
|
||
|
/// </summary>
|
||
|
public string SERVICEREMARK { get; set; }
|
||
|
/// <summary>
|
||
|
/// 动态链接库文件所在路径
|
||
|
/// </summary>
|
||
|
public string DLLPATH { get; set; }
|
||
|
/// <summary>
|
||
|
/// 类的完整路径
|
||
|
/// </summary>
|
||
|
public string CLASSPATH { get; set; }
|
||
|
/// <summary>
|
||
|
/// 此服务实例的状态
|
||
|
/// </summary>
|
||
|
public Common.Data.ServiceEntityState ENTITYSTATE { get; set; }
|
||
|
/// <summary>
|
||
|
/// 服务实例
|
||
|
/// </summary>
|
||
|
public NSC.IService SERVICEENTITY { get; set; }
|
||
|
}
|
||
|
}
|