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;
|
|
|
|
|
|
|
|
|
|
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; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|