You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
589 B

5 months ago
using System;
using HybirdFrameworkCore.Autofac.Attribute;
namespace Service.Charger.Msg.Host.Req;
/// <summary>
/// 入库命令
/// </summary>
public class InboundCommandsReq : ASDU {
/// <summary>
/// 存仓位号
/// </summary>
[Property(0, 8 )]
public byte PositionNumber {get;set;}
public InboundCommandsReq(byte positionNumber)
{
FrameTypeNo = 71;
MsgBodyCount = 1;
TransReason = 3;
PublicAddr = 0;
MsgBodyAddr = new byte[] { 0, 0, 0 };
PositionNumber =positionNumber;
}
}