From 844c7c3ce2c39139490a6ecb0f35170f6cade290 Mon Sep 17 00:00:00 2001
From: wankeda <Administrator@DESKTOP-HAU3ST3>
Date: 星期二, 28 四月 2026 16:31:54 +0800
Subject: [PATCH] 1

---
 WMS/WIDESEA_WMSServer/WIDESEA_Model/Models/Stock/Dt_StockInfoDetailCP.cs |   51 +++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 51 insertions(+), 0 deletions(-)

diff --git a/WMS/WIDESEA_WMSServer/WIDESEA_Model/Models/Stock/Dt_StockInfoDetailCP.cs b/WMS/WIDESEA_WMSServer/WIDESEA_Model/Models/Stock/Dt_StockInfoDetailCP.cs
new file mode 100644
index 0000000..3a09602
--- /dev/null
+++ b/WMS/WIDESEA_WMSServer/WIDESEA_Model/Models/Stock/Dt_StockInfoDetailCP.cs
@@ -0,0 +1,51 @@
+锘縰sing System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using SqlSugar;
+using WIDESEA_Core.DB.Models;
+
+namespace WIDESEA_Model.Models
+{
+    [SugarTable(nameof(Dt_StockInfoDetailCP), "鎴愬搧搴撳瓨淇℃伅鏄庣粏")]
+    public class Dt_StockInfoDetailCP : BaseEntity
+    {
+        [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "涓婚敭")]
+        public int Id { get; set; }
+
+        [SugarColumn(IsNullable = false, ColumnDescription = "搴撳瓨鏄庣粏ID")]
+        public int StockDetailId { get; set; }
+
+        [SugarColumn(IsNullable = false, ColumnDescription = "绠盜D")]
+        public float BoxId { get; set; }
+
+        [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "绠卞彿")]
+        public string BoxCode { get; set; }
+
+        [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "鍛ㄦ湡鐮�")]
+        public string DateCode { get; set; }
+
+        [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "鐢熶骇鍨嬪彿")]
+        public string PartNum { get; set; }
+
+        [SugarColumn(IsNullable = false, ColumnDescription = "鐗╂枡ID")]
+        public float JobId { get; set; }
+
+        [SugarColumn(IsNullable = false, ColumnDescription = "PCS鏁伴噺")]
+        public float QtyOfpcs { get; set; }
+
+        [SugarColumn(IsNullable = false, ColumnDescription = "鍙夋澘鏁�")]
+        public float QtyOfxout { get; set; }
+
+        [SugarColumn(IsNullable = false, ColumnDescription = "鐘舵��")]
+        public int CPStockDetailStatus { get; set; }
+
+        [SugarColumn(IsNullable = true, ColumnDescription = "LPNNO")]
+        public string LPNNO { get; set; }
+
+        [SugarColumn(IsNullable = true, ColumnDescription = "WMS婧愬簱浣�")]
+        public string OrinalLocation { get; set; }
+
+    }
+}

--
Gitblit v1.9.3