diff --git a/ProductionMgr/Tnb.ProductionMgr.Entities/Dto/PrdManage/MaterialReceiptInput.cs b/ProductionMgr/Tnb.ProductionMgr.Entities/Dto/PrdManage/MaterialReceiptInput.cs
index 5d0e22ad..91ead988 100644
--- a/ProductionMgr/Tnb.ProductionMgr.Entities/Dto/PrdManage/MaterialReceiptInput.cs
+++ b/ProductionMgr/Tnb.ProductionMgr.Entities/Dto/PrdManage/MaterialReceiptInput.cs
@@ -4,6 +4,11 @@ namespace Tnb.ProductionMgr.Entities.Dto
{
public string id { get; set; }
+ ///
+ /// 签收单号
+ ///
+ public string code { get; set; } = string.Empty;
+
///
/// 工位id
///
diff --git a/ProductionMgr/Tnb.ProductionMgr.Entities/Entity/PrdMaterialReceiptH.cs b/ProductionMgr/Tnb.ProductionMgr.Entities/Entity/PrdMaterialReceiptH.cs
index 57ae28fe..94958bc2 100644
--- a/ProductionMgr/Tnb.ProductionMgr.Entities/Entity/PrdMaterialReceiptH.cs
+++ b/ProductionMgr/Tnb.ProductionMgr.Entities/Entity/PrdMaterialReceiptH.cs
@@ -14,6 +14,12 @@ public partial class PrdMaterialReceiptH : BaseEntity
{
id = SnowflakeIdHelper.NextId();
}
+
+ ///
+ /// 签收单号
+ ///
+ public string code { get; set; } = string.Empty;
+
///
/// 工位id
///
diff --git a/ProductionMgr/Tnb.ProductionMgr/PrdMaterialReceiptService.cs b/ProductionMgr/Tnb.ProductionMgr/PrdMaterialReceiptService.cs
index f437c660..8a77672c 100644
--- a/ProductionMgr/Tnb.ProductionMgr/PrdMaterialReceiptService.cs
+++ b/ProductionMgr/Tnb.ProductionMgr/PrdMaterialReceiptService.cs
@@ -78,6 +78,7 @@ namespace Tnb.ProductionMgr
PrdMaterialReceiptH prdMaterialReceiptH = new PrdMaterialReceiptH()
{
+ code = input.code,
station_id = input.station_id,
mo_task_id = input.mo_task_id,
process_id = input.process_id,