This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
using Microsoft.AspNetCore.Mvc;
namespace Entity.Api.Resp;
/// <summary>
/// 模式类
/// </summary>
public class SwapModelResp
{
/// 换电模式:1:本地换电 2:远程换电
public int? StationModel { get; set; }
/// 换电方式:1:自动换电 2:手动换电
public int? StationWay { get; set; }
/// 换电站状态: 1:营运中 2:歇业中 3:设备维护状态 4:暂停营业
public int? StationStatus { get; set; }
}