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.
29 lines
756 B
29 lines
756 B
namespace Service.Execute.Model;
|
|
/// <summary>
|
|
/// 消防移仓
|
|
/// </summary>
|
|
public class FireProtectionRelocation
|
|
{
|
|
/// <summary>
|
|
/// 任务类型
|
|
/// <para>0.无任务</para>
|
|
/// <para>1.换电任务</para>
|
|
/// <para>2.移舱任务</para>
|
|
/// <para>3.移出任务</para>
|
|
/// <para>4.移入任务</para>
|
|
/// <para>5.消防任务</para>
|
|
/// </summary>
|
|
public ushort TaskType { get; set; }
|
|
/// <summary>
|
|
/// 入仓位选择
|
|
/// </summary>
|
|
public ushort EntrySelection { get; set; }
|
|
/// <summary>
|
|
/// 出仓位选择
|
|
/// </summary>
|
|
public ushort ExitSelection { get; set; }
|
|
/// <summary>
|
|
/// 电池包类型
|
|
/// </summary>
|
|
public ushort BatteryPackType { get; set; }
|
|
} |