PLCStationPutInteraction.cs 399 Bytes
using static System.Collections.Specialized.BitVector32;

namespace Rcs.Application.MessageBus.Commands;

/// <summary>
/// 向PLC发送取货信号
/// @author zzy
/// </summary>
public class PLCStationInteraction : MessageBase
{
    public string? EquipmentCode { get; set; }
    public int? Pickup { get; set; }

    public  string? Barcode { get; set; }
    //public string? Put { get; set; }
}