using System.Text.Json.Serialization;
namespace WcsMain.ApiServe.Controllers.Dto.AGV;
public class AGVNoVeBuckMoveRequest
{
///
/// 机器人编号
///
[JsonPropertyName("agvCode")]
public string? AGVCode { get; set; }
///
/// 起始点
///
[JsonPropertyName("startPoint")]
public string? StartPoint { get; set; }
///
/// 起始点简码
///
[JsonPropertyName("startPointName")]
public string? StartPointName { get; set; }
///
/// 目标区域
///
[JsonPropertyName("endArea")]
public string? EndArea { get; set; }
///
/// 目标点位
///
[JsonPropertyName("endPoint")]
public string? EndPoint { get; set; }
///
/// 目标点简码
///
[JsonPropertyName("endPointName")]
public string? EndPointName { get; set;}
///
/// 货架作业面
///
[JsonPropertyName("workFaces")]
public string? WorkFaces { get; set; }
///
/// 货架编码
///
[JsonPropertyName("bucketCode")]
public string? BucketCode { get; set; }
///
/// 货架简码
///
[JsonPropertyName("alias")]
public string? Alias { get; set; }
}