2025-06-25 16:07:36 +08:00

37 lines
786 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Syc.Basic.Web.WMS.WebSocket
{
public class DeviceMessage
{
public DeviceMessage()
{
}
public DeviceMessage(int id,string type,object value)
{
Id = id;
Type = type;
Value = value;
}
/// <summary>
/// 设备id
/// </summary>
public int Id { get; set; }
/// <summary>
/// 设备类型Scanner : 扫码枪 Balance 电子秤
/// </summary>
public string Type { get; set; }
/// <summary>
/// 值
/// </summary>
public object Value { get; set; }
}
}