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.

27 lines
593 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; }
}