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.
21 lines
431 B
21 lines
431 B
6 months ago
|
namespace Entity.Api.Resp;
|
||
|
|
||
|
/// <summary>
|
||
|
/// 实时换电状态
|
||
|
/// </summary>
|
||
|
public class SwappingStateInfoResp
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 换电步序号
|
||
|
/// </summary>
|
||
|
public int StepNo{ get; set; }
|
||
|
/// <summary>
|
||
|
/// 换电步序名称
|
||
|
/// </summary>
|
||
|
public string? StepName{ get; set; }
|
||
|
/// <summary>
|
||
|
/// 换电步序时刻
|
||
|
/// </summary>
|
||
|
public DateTime StartTime{ get; set; }
|
||
|
|
||
|
}
|