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/Inbound/Dt_CPInboundOrderDetail.cs |   50 ++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 50 insertions(+), 0 deletions(-)

diff --git a/WMS/WIDESEA_WMSServer/WIDESEA_Model/Models/Inbound/Dt_CPInboundOrderDetail.cs b/WMS/WIDESEA_WMSServer/WIDESEA_Model/Models/Inbound/Dt_CPInboundOrderDetail.cs
new file mode 100644
index 0000000..ff1c2ac
--- /dev/null
+++ b/WMS/WIDESEA_WMSServer/WIDESEA_Model/Models/Inbound/Dt_CPInboundOrderDetail.cs
@@ -0,0 +1,50 @@
+锘縰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_CPInboundOrderDetail), "鎴愬搧鍏ュ簱鍗曠鏄庣粏")]
+    public class Dt_CPInboundOrderDetail : BaseEntity
+    {
+        [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "涓婚敭")]
+        public int Id { get; set; }
+
+        [SugarColumn(IsNullable = false, ColumnDescription = "鍏ュ簱鏄庣粏ID")]
+        public int OrderDetailId { 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 CPOrderDetailStatus { 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