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.

56 lines
1.9 KiB

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BatCharging.Model
{
/// <summary>
/// 4.3.10 充放电机上报模块状态
/// </summary>
public class UpModelStation
{
/// <summary>
/// 模块状态1 0空闲 1站内使用 2站外使用 3 故障
/// </summary>
public byte ModelStation1 { get; set; }
/// <summary>
/// 模块状态2 0空闲 1站内使用 2站外使用 3 故障
/// </summary>
public byte ModelStation2 { get; set; }
/// <summary>
/// 模块状态3 0空闲 1站内使用 2站外使用 3 故障
/// </summary>
public byte ModelStation3 { get; set; }
/// <summary>
/// 模块状态4 0空闲 1站内使用 2站外使用 3 故障
/// </summary>
public byte ModelStation4 { get; set; }
/// <summary>
/// 模块状态5 0空闲 1站内使用 2站外使用 3 故障
/// </summary>
public byte ModelStation5 { get; set; }
/// <summary>
/// 模块状态6 0空闲 1站内使用 2站外使用 3 故障
/// </summary>
public byte ModelStation6 { get; set; }
/// <summary>
/// 模块状态7 0空闲 1站内使用 2站外使用 3 故障
/// </summary>
public byte ModelStation7 { get; set; }
/// <summary>
/// 模块状态8 0空闲 1站内使用 2站外使用 3 故障
/// </summary>
public byte ModelStation8 { get; set; }
/// <summary>
/// 模块状态9 0空闲 1站内使用 2站外使用 3 故障
/// </summary>
public byte ModelStation9 { get; set; }
/// <summary>
/// 模块状态10 0空闲 1站内使用 2站外使用 3 故障
/// </summary>
public byte ModelStation10 { get; set; }
}
}