2024-11-15 11:37:55 +08:00
|
|
|
|
using WcsMain.Utils.Tcp.Entity.Message;
|
2024-10-07 09:51:55 +08:00
|
|
|
|
|
2024-11-15 11:37:55 +08:00
|
|
|
|
namespace WcsMain.Utils.Tcp.Entity;
|
2024-10-07 09:51:55 +08:00
|
|
|
|
|
|
|
|
|
|
public class PlcTcpClientSendResult : TcpClientSendResult
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 返回的信息
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public MsgInfo? ResponseData { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 耗时
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public long? UseTime { get; set; }
|
|
|
|
|
|
}
|