IDIS.Model.YL106/IDIS.YL106.Model/Src/Procedure_Transport.cs

33 lines
763 B
C#
Raw Normal View History

2024-05-04 16:11:53 +08:00
using System.ComponentModel;
using IDIS.Model;
using Newtonsoft.Json;
2024-05-11 20:32:19 +08:00
namespace IDIS.YL106.Model
2024-05-04 16:11:53 +08:00
{
/// <summary>
2024-05-11 20:32:19 +08:00
/// 出库工序
2024-05-04 16:11:53 +08:00
/// </summary>
2024-05-11 20:32:19 +08:00
public record Procedure_Transport:Procedure_Base
{
/// <summary>
/// 指定容器
/// </summary>
[DisplayName("指定容器")]
[JsonProperty("container_handle")]
public string ContainerHandle { get; set; } = string.Empty;
2024-05-04 16:11:53 +08:00
2024-05-11 20:32:19 +08:00
/// <summary>
/// 原位置
/// </summary>
[DisplayName("原位置")]
[JsonProperty("original_destination")]
public string OriginalDestination { get; set; } = string.Empty;
2024-05-04 16:11:53 +08:00
2024-05-11 20:32:19 +08:00
/// <summary>
/// 目标位置
/// </summary>
[DisplayName("目标位置")]
[JsonProperty("target_destination")]
public string TargetDestination { get; set; } = string.Empty;
}
2024-05-04 16:11:53 +08:00
}