using HybirdFrameworkCore.Autofac.Attribute;
namespace Service.Charger.Msg.Host.Req
{
///
/// 3.4.13 监控平台下发同步时间
///
public class TimeSynchronization : ASDU
{
///
/// 年
///
[Property(0, 16)]
public ushort timeYear { get; set; }
///
/// 月
///
[Property(16, 8)]
public byte timeMonth { get; set; }
///
/// 日
///
[Property(24, 8)]
public byte timeDay { get; set; }
///
/// 时
///
[Property(32, 8)]
public byte timeHour { get; set; }
///
/// 分
///
[Property(40, 8)]
public byte timeMinute { get; set; }
///
/// 秒
///
[Property(48, 8)]
public byte timeSecond { get; set; }
///
/// 保留:1位, 默认0xFF
///
[Property(56, 8)]
public byte time { get; set; }
}
}