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