Commit 3f8226ea 张东亮

添加任务编号信息

1 个父辈 7477cfe3
......@@ -16,6 +16,7 @@ namespace DeviceLibrary.Models.Service.Request
/// 电梯标识
/// </summary>
public string liftId { get; set; }
public string missionId { get; set; }
/// <summary>
/// 任务来源AGV系统标识
/// </summary>
......
......@@ -38,6 +38,7 @@ namespace DeviceLibrary.Models.Service.Response
/// 目的地楼层
/// </summary>
public int destinationFloor { get; set; } = -1;
public string missionId { get; set; } = "";
/// <summary>
/// 目的地点位
/// </summary>
......@@ -61,6 +62,7 @@ namespace DeviceLibrary.Models.Service.Response
destinationClient = sendInInfo.destinationClient;
destinationFloor = sendInInfo.destinationFloor;
destinationPoint = sendInInfo.destinationPoint;
missionId = sendInInfo.missionId;
LogUtil.info($"请求电梯成功:From: {sourceClient}[{sourceFloor}][{sourcePoint}] To: {destinationClient}[{destinationFloor}][{destinationPoint}]");
}
/// <summary>
......@@ -73,7 +75,8 @@ namespace DeviceLibrary.Models.Service.Response
sourcePoint = "";
destinationClient = "";
destinationFloor = -1;
destinationPoint = "";
destinationPoint = "";
missionId = "";
}
}
}
支持 Markdown 格式
你添加了 0 到此讨论。请谨慎行事。
Finish editing this message first!