diff --git a/be/Modules/Store/src/Win_in.Sfs.Wms.Store.Application.Contracts/Jobs/IssueJobs/AgvJobs/DTOS/AgvDto.cs b/be/Modules/Store/src/Win_in.Sfs.Wms.Store.Application.Contracts/Jobs/IssueJobs/AgvJobs/DTOS/AgvDto.cs
index 392713d2f..bf60593bd 100644
--- a/be/Modules/Store/src/Win_in.Sfs.Wms.Store.Application.Contracts/Jobs/IssueJobs/AgvJobs/DTOS/AgvDto.cs
+++ b/be/Modules/Store/src/Win_in.Sfs.Wms.Store.Application.Contracts/Jobs/IssueJobs/AgvJobs/DTOS/AgvDto.cs
@@ -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
{
-
-
-
-
///
/// 任务类型
///
@@ -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; }
+ ///
+ /// 箱码
+ ///
+ [Newtonsoft.Json.JsonProperty("pakingCode", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
+ public string PakingCode { get; set; }
+
+ ///
+ /// 库存状态
+ ///
+ [Newtonsoft.Json.JsonProperty("status", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
+ public string State { get; set; }
+
///
/// 物料数量
///