84 lines
1.8 KiB
C#
84 lines
1.8 KiB
C#
|
|
using Newtonsoft.Json;
|
|||
|
|
|
|||
|
|
namespace WcsMain.ApiClient.DataEntity.AGVEntity;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// AGV 点对点货架搬运
|
|||
|
|
/// </summary>
|
|||
|
|
public class AGVBucketMove
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 起始点
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("startPoint")]
|
|||
|
|
public string? StartPoint { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 起始点简码
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("startPointName")]
|
|||
|
|
public string? StartPointName { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 作业面
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("workFaces")]
|
|||
|
|
public string? WorkFaces { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 目标区域
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("endArea")]
|
|||
|
|
public string? EndArea { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 目标点
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("endPoint")]
|
|||
|
|
public string? EndPoint { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 目标点简码
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("endPointName")]
|
|||
|
|
public string? EndPointName { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 货架类型编码
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("buckTypeCode")]
|
|||
|
|
public string? BucketTypeCode { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("letDownFlag")]
|
|||
|
|
public int? LetDownFlag { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 是否需要检验货架
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("checkCode")]
|
|||
|
|
public int? CheckCode { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 实操反馈后是否需要返库
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("needReset")]
|
|||
|
|
public bool? NeedReset { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 是否需要货架出厂
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("needOut")]
|
|||
|
|
public int? NeedOut { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 是否AGV接力模式
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("isAgvRelay")]
|
|||
|
|
public bool? IsAgvRelay { get; set; }
|
|||
|
|
|
|||
|
|
|
|||
|
|
}
|