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.
|
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
using Service.Execute.Model;
|
|
|
|
|
|
|
|
namespace Entity.Api.Resp;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 首页大屏
|
|
|
|
/// </summary>
|
|
|
|
public class SwapMonitorScreenResp
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// plc模式
|
|
|
|
/// </summary>
|
|
|
|
public PlcSwapModelResp? PlcSwapModel { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 雷达数据
|
|
|
|
/// </summary>
|
|
|
|
public RadarResp? RadarResp { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 换电状态
|
|
|
|
/// </summary>
|
|
|
|
public List<SwappingStateInfoResp>? StateInfo { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 换电车辆
|
|
|
|
/// </summary>
|
|
|
|
public SwapVehicleResp? VehicleInfo { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 电池数据
|
|
|
|
/// </summary>
|
|
|
|
public BinBatteryResp? BatteryInfo { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 换电设备业务日志
|
|
|
|
/// </summary>
|
|
|
|
public Dictionary<int, List<SwapDeviceLog>> DeviceLogs { get; set; }
|
|
|
|
}
|