From f47d63cd8b53f87ae2c268d994e8a158783761dd Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E5=AD=A6=20=E8=B5=B5?= <89237069@qq.com>
Date: Thu, 12 Dec 2024 10:30:27 +0800
Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E4=BA=A4=E4=BB=A3=E7=A0=81?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../Jobs/IssueJobs/AgvJobs/DTOS/AgvDto.cs | 29 ++++++++++++++++---
1 file changed, 25 insertions(+), 4 deletions(-)
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; }
+
///
/// 物料数量
///