using System; using HybirdFrameworkCore.Autofac.Attribute; namespace Service.Charger.Msg.Host.Resp; /// /// 出库完成回复 /// public class OutboundCompleteResq : ASDU { public OutboundCompleteResq() { FrameTypeNo = 104; MsgBodyCount = 0; TransReason = 4; PublicAddr = 0; MsgBodyAddr = new byte[] { 0, 0, 0 }; } }