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.

23 lines
422 B

namespace Service.Execute.Model;
/// <summary>
/// step 小步
/// </summary>
public class StepModel
{
/// <summary>
/// 换电步序号
/// </summary>
public int StepNo{ get; set; }
/// <summary>
/// 换电步序名称
/// </summary>
public string? StepName{ get; set; }
/// <summary>
/// 换电步序时刻
/// </summary>
public DateTime StartTime{ get; set; }
}