Product_Wms/WcsMain/Utils/Tcp/Entity/PlcTcpClientSendResult.cs

17 lines
343 B
C#
Raw Normal View History

using WcsMain.Utils.Tcp.Entity.Message;
2024-10-07 09:51: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; }
}