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.
34 lines
720 B
34 lines
720 B
4 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Text;
|
||
|
|
||
|
namespace QM.Exchange.Interface
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 工作客户端基类
|
||
|
/// </summary>
|
||
|
public class WorkerBase
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// SessionID
|
||
|
/// </summary>
|
||
|
public string SessionID { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 客户端编号
|
||
|
/// </summary>
|
||
|
public string WorkID { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 地址
|
||
|
/// </summary>
|
||
|
public string HostName { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// online:在线;offline:离线;overtime:超时;
|
||
|
/// </summary>
|
||
|
public string Status { get; set; }
|
||
|
}
|
||
|
}
|