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.

28 lines
645 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BatCharging.Model
{
/// <summary>
/// 4.3.5 监控平台下发电池仓的状态
/// </summary>
public class BatStatus
{
/// <summary>
/// 是否有电池
/// </summary>
public byte WhetherBat { get; set; }
/// <summary>
/// 电接头连接状态
/// </summary>
public byte EleConStatus { get; set; }
/// <summary>
/// 水接头状态
/// </summary>
public byte WaterCondition { get; set; }
}
}