namespace Service.Execute.Model;
///
/// 消防移仓
///
public class FireProtectionRelocation
{
///
/// 任务类型
/// 0.无任务
/// 1.换电任务
/// 2.移舱任务
/// 3.移出任务
/// 4.移入任务
/// 5.消防任务
///
public ushort TaskType { get; set; }
///
/// 入仓位选择
///
public ushort EntrySelection { get; set; }
///
/// 出仓位选择
///
public ushort ExitSelection { get; set; }
///
/// 电池包类型
///
public ushort BatteryPackType { get; set; }
}