PLCStationReleaseInteraction.cs 407 Bytes
using static System.Collections.Specialized.BitVector32;

namespace Rcs.Application.MessageBus.Commands;

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

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