|
|
@ -48,6 +48,15 @@ public class AgvRequestDetailDto |
|
|
|
public string BeginPosition { set; get; } |
|
|
|
[Display(Name = "终点")] |
|
|
|
public string EndPosition { set; get; } |
|
|
|
|
|
|
|
[Display(Name = "箱码")] |
|
|
|
public string PakingCode { set; get; } |
|
|
|
|
|
|
|
|
|
|
|
[Display(Name = "库存状态")] |
|
|
|
public string State { set; get; } |
|
|
|
|
|
|
|
|
|
|
|
[Display(Name = "批次属性07")] |
|
|
|
public string BatchAttr07 { set; get; } |
|
|
|
[Display(Name = "批次属性08")] |
|
|
@ -94,6 +103,10 @@ public class AgvRequestUnplannedDetailDto |
|
|
|
[Display(Name = "箱码")] |
|
|
|
public string PakingCode { set; get; } |
|
|
|
|
|
|
|
[Display(Name = "库存状态")] |
|
|
|
public string State { set; get; } |
|
|
|
|
|
|
|
|
|
|
|
[Display(Name = "批次属性07")] |
|
|
|
public string BatchAttr07 { set; get; } |
|
|
|
[Display(Name = "批次属性08")] |
|
|
@ -123,10 +136,6 @@ public class AgvRequestUnplannedDetailDto |
|
|
|
public partial class AgvRequest |
|
|
|
{ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 任务类型
|
|
|
|
/// </summary>
|
|
|
@ -145,6 +154,18 @@ public partial class AgvRequest |
|
|
|
[Newtonsoft.Json.JsonProperty("matCode", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] |
|
|
|
public string MatCode { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 箱码
|
|
|
|
/// </summary>
|
|
|
|
[Newtonsoft.Json.JsonProperty("pakingCode", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] |
|
|
|
public string PakingCode { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 库存状态
|
|
|
|
/// </summary>
|
|
|
|
[Newtonsoft.Json.JsonProperty("status", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] |
|
|
|
public string State { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 物料数量
|
|
|
|
/// </summary>
|
|
|
|