using HybirdFrameworkCore.Autofac.Attribute; using Mapster; namespace Service.Execute.Model; public class DistributeTask { /// /// 任务类型 /// 0.无任务 /// 1.换电任务 /// 2.移舱任务 /// 3.移出任务 /// 4.移入任务 /// 5.消防任务 /// [Property(0, 16)] public ushort TaskNo { get; set; } /// /// 入仓位选择 /// [Property(16, 16)] public ushort InBinNo { get; set; } /// /// 出仓仓位选择 /// [Property(32, 16)] public ushort OutBinNo { get; set; } /// /// 电池包类型 0 /// [Property(48, 16)] public ushort BatteryPackType { get; set; } }