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.
36 lines
790 B
36 lines
790 B
6 months ago
|
using Microsoft.AspNetCore.Mvc;
|
||
|
|
||
|
namespace Entity.Api.Resp;
|
||
|
/// <summary>
|
||
|
/// 首页大屏
|
||
|
/// </summary>
|
||
|
|
||
|
|
||
|
public class SwapMonitorScreenResp
|
||
|
{
|
||
|
|
||
|
/// <summary>
|
||
|
/// plc模式
|
||
|
/// </summary>
|
||
|
public PlcSwapModelResp? PlcSwapModel { get; set; }
|
||
|
/// <summary>
|
||
|
/// 换电状态
|
||
|
/// </summary>
|
||
|
public SwappingStateInfoResp? StateInfo{ get; set; }
|
||
|
/// <summary>
|
||
|
/// 换电车辆
|
||
|
/// </summary>
|
||
|
public SwapVehicleResp? VehicleInfo{ get; set; }
|
||
|
/// <summary>
|
||
|
/// 蓝牙
|
||
|
/// </summary>
|
||
|
public TboxResp? TboxInfo{ get; set; }
|
||
|
/// <summary>
|
||
|
/// 是否自动
|
||
|
/// </summary>
|
||
|
public bool IsAuto{ get; set; }
|
||
|
/// <summary>
|
||
|
/// 云平台是否连接
|
||
|
/// </summary>
|
||
|
public bool CloudIsConnected{ get; set; }
|
||
|
}
|