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
54 lines
1.3 KiB
5 months ago
|
using System;
|
||
|
using HybirdFrameworkCore.Autofac.Attribute;
|
||
|
|
||
|
namespace Service.Charger.Msg.Charger.Req;
|
||
|
|
||
|
/// <summary>
|
||
|
/// 电池架号
|
||
|
/// </summary>
|
||
|
public class BatteryShelfNumberReq : ASDU
|
||
|
{
|
||
|
|
||
|
///// <summary>
|
||
|
///// 信息体地址
|
||
|
///// </summary>
|
||
|
// [Property(0, 24 )]
|
||
|
//public byte[] MessageBodyAddress {get;set;}
|
||
|
/// <summary>
|
||
|
/// 电池架01
|
||
|
/// </summary>
|
||
|
[Property(0, 1 )]
|
||
|
public byte BatteryHolder01 {get;set;}
|
||
|
/// <summary>
|
||
|
/// 电池架02
|
||
|
/// </summary>
|
||
|
[Property(1, 1 )]
|
||
|
public byte BatteryHolder02 {get;set;}
|
||
|
/// <summary>
|
||
|
/// 电池架03
|
||
|
/// </summary>
|
||
|
[Property(2, 1 )]
|
||
|
public byte BatteryHolder03 {get;set;}
|
||
|
/// <summary>
|
||
|
/// 电池架04
|
||
|
/// </summary>
|
||
|
[Property(3, 1 )]
|
||
|
public byte BatteryHolder04 {get;set;}
|
||
|
/// <summary>
|
||
|
/// 电池架05
|
||
|
/// </summary>
|
||
|
[Property(4, 1 )]
|
||
|
public byte BatteryHolder05 {get;set;}
|
||
|
/// <summary>
|
||
|
/// 电池架06
|
||
|
/// </summary>
|
||
|
[Property(5, 1 )]
|
||
|
public byte BatteryHolder06 {get;set;}
|
||
|
/// <summary>
|
||
|
/// 电池架07
|
||
|
/// </summary>
|
||
|
[Property(6, 1 )]
|
||
|
public byte BatteryHolder07 {get;set;}
|
||
|
|
||
|
}
|