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