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
732 B

using Microsoft.AspNetCore.Mvc;
namespace Entity.Api.Resp;
/// <summary>
/// 模式类
/// </summary>
public class SwapModelResp
{
/// <summary>
/// 换电模式1本地换电 2远程换电
/// </summary>
public int? StationModel { get; set; }
/// <summary>
/// 换电方式1:自动换电 2手动换电
/// </summary>
public int? StationWay { get; set; }
/// <summary>
/// 换电站状态: 1营运中 2歇业中 3设备维护状态 4暂停营业
/// </summary>
public int? StationStatus { get; set; }
/// <summary>
/// 启动方式: 1:自动启动2拍按钮启动
/// </summary>
public byte? SwapInitiateMode { get; set; }
}