33 lines
720 B
33 lines
720 B
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; }
|
|
}
|
|
}
|
|
|