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.

29 lines
604 B

using Microsoft.AspNetCore.Mvc;
namespace Entity.Api.Resp;
/// <summary>
/// 首页大屏
/// </summary>
public class SwapMonitorScreenResp
{
/// <summary>
/// plc模式
/// </summary>
public PlcSwapModelResp? PlcSwapModel { get; set; }
/// <summary>
/// 换电状态
/// </summary>
public List<SwappingStateInfoResp>? StateInfo { get; set; }
/// <summary>
/// 换电车辆
/// </summary>
public SwapVehicleResp? VehicleInfo { get; set; }
/// <summary>
/// 电池数据
/// </summary>
public BinBatteryResp? BatteryInfo { get; set; }
}