1
This commit is contained in:
29
IDIS.YL106.Model/Src/Procedure_Transport.cs
Normal file
29
IDIS.YL106.Model/Src/Procedure_Transport.cs
Normal file
@@ -0,0 +1,29 @@
|
||||
using System.ComponentModel;
|
||||
using IDIS.Model;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace IDIS.YL106.Model;
|
||||
|
||||
public record Procedure_Transport:Procedure_Base
|
||||
{
|
||||
/// <summary>
|
||||
/// 指定容器
|
||||
/// </summary>
|
||||
[DisplayName("指定容器")]
|
||||
[JsonProperty("container_handle")]
|
||||
public string ContainerHandle { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 原位置
|
||||
/// </summary>
|
||||
[DisplayName("原位置")]
|
||||
[JsonProperty("original_destination")]
|
||||
public string OriginalDestination { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 目标位置
|
||||
/// </summary>
|
||||
[DisplayName("目标位置")]
|
||||
[JsonProperty("target_destination")]
|
||||
public string TargetDestination { get; set; } = string.Empty;
|
||||
}
|
Reference in New Issue
Block a user