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.

54 lines
1.3 KiB

using System;
using HybirdFrameworkCore.Autofac.Attribute;
namespace Service.Charger.Msg.Charger.Req;
/// <summary>
/// 遥信
/// </summary>
public class RemoteSignalReq : ASDU
{
/// <summary>
/// PLF 步序
/// </summary>
[Property(0, 16 )]
public short PLFSteps {get;set;}
/// <summary>
/// LSTK 步序
/// </summary>
[Property(16, 16 )]
public short LSTKSteps {get;set;}
/// <summary>
/// RSTK 步序
/// </summary>
[Property(32, 16 )]
public short RSTKSteps {get;set;}
/// <summary>
/// 车辆到位信号
/// </summary>
[Property(48, 8 )]
public byte VehicleArrivalSignal {get;set;}
/// <summary>
/// LSTK 状态
/// </summary>
[Property(56, 8 )]
public byte LSTKState {get;set;}
/// <summary>
/// RSTK 状态
/// </summary>
[Property(64, 8 )]
public byte RSTKState {get;set;}
/// <summary>
/// PLF 状态
/// </summary>
[Property(72, 8 )]
public byte PLFState {get;set;}
/// <summary>
/// 搬电状态
/// </summary>
[Property(80, 8 )]
public byte MoveElectricityState {get;set;}
}