Product_Wms/WcsMain/Utils/Tcp/Entity/PlcTcpClientSendResult.cs
icewint 03c600bc70 1、修改文件结构
2、删除不使用的 using
2024-11-15 11:38:01 +08:00

17 lines
343 B
C#

using WcsMain.Utils.Tcp.Entity.Message;
namespace WcsMain.Utils.Tcp.Entity;
public class PlcTcpClientSendResult : TcpClientSendResult
{
/// <summary>
/// 返回的信息
/// </summary>
public MsgInfo? ResponseData { get; set; }
/// <summary>
/// 耗时
/// </summary>
public long? UseTime { get; set; }
}