using Microsoft.AspNetCore.Mvc;
namespace Entity.Api.Resp;
///
/// 模式类
///
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; }
}