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