From e71bc24daa8f00768787e18f5daba09128abfc62 Mon Sep 17 00:00:00 2001
From: schangxiang@126.com <schangxiang@126.com>
Date: 周二, 29 4月 2025 10:59:40 +0800
Subject: [PATCH] Merge branch 'master' of http://222.71.245.114:9086/r/HIA24016N_PipeLineDemo

---
 HIAWms/server/src/CMS.Plugin.HIAWms.Application.Contracts/Dtos/WmsContainers/WmsContainersExportModel.cs |  113 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 113 insertions(+), 0 deletions(-)

diff --git a/HIAWms/server/src/CMS.Plugin.HIAWms.Application.Contracts/Dtos/WmsContainers/WmsContainersExportModel.cs b/HIAWms/server/src/CMS.Plugin.HIAWms.Application.Contracts/Dtos/WmsContainers/WmsContainersExportModel.cs
new file mode 100644
index 0000000..f88d958
--- /dev/null
+++ b/HIAWms/server/src/CMS.Plugin.HIAWms.Application.Contracts/Dtos/WmsContainers/WmsContainersExportModel.cs
@@ -0,0 +1,113 @@
+using CMS.Plugin.HIAWms.Domain.Shared.Enums;
+using MiniExcelLibs.Attributes;
+
+namespace CMS.Plugin.HIAWms.Application.Contracts.Dtos.WmsContainers
+{
+    /// <summary>
+    /// WmsContainers瀵煎嚭妯″瀷
+    /// </summary>
+    public class WmsContainersExportModel
+    {
+        /// <summary>
+        /// WmsContainer瀵煎嚭妯″瀷
+        /// </summary>
+        public class WorkSectionExportModel
+        {
+            /// <summary>
+            /// 鎵樼洏缂栧彿
+            /// </summary>
+            [ExcelColumn(Name = "鎵樼洏缂栧彿", Width = 25)]
+            public string ContainerNo { get; set; }
+
+            /// <summary>
+            /// 鎵樼洏绫诲瀷
+            /// </summary>
+            [ExcelColumn(Name = "鎵樼洏绫诲瀷", Width = 25)]
+            public ContainerTypeEnum ContainerType { get; set; }
+
+            /// <summary>
+            /// 鎵樼洏鐘舵��
+            /// </summary>
+            [ExcelColumn(Name = "鎵樼洏鐘舵��", Width = 25)]
+            public ContainerStatusEnum ContainerStatus { get; set; }
+
+            /// <summary>
+            /// 闀垮害
+            /// </summary>
+            [ExcelColumn(Name = "闀垮害", Width = 25)]
+            public decimal? SpecLength { get; set; }
+
+            /// <summary>
+            /// 瀹藉害
+            /// </summary>
+            [ExcelColumn(Name = "瀹藉害", Width = 25)]
+            public decimal? SpecWidth { get; set; }
+
+            /// <summary>
+            /// 楂樺害
+            /// </summary>
+            [ExcelColumn(Name = "楂樺害", Width = 25)]
+            public decimal? SpecHeight { get; set; }
+
+            /// <summary>
+            /// 闄愰暱
+            /// </summary>
+            [ExcelColumn(Name = "闄愰暱", Width = 25)]
+            public decimal? LimitLength { get; set; }
+
+            /// <summary>
+            /// 闄愬
+            /// </summary>
+            [ExcelColumn(Name = "闄愬", Width = 25)]
+            public decimal? LimitWidth { get; set; }
+
+            /// <summary>
+            /// 闄愰珮
+            /// </summary>
+            [ExcelColumn(Name = "闄愰珮", Width = 25)]
+            public decimal? LimitHeight { get; set; }
+
+            /// <summary>
+            /// 杞介噸涓婇檺
+            /// </summary>
+            [ExcelColumn(Name = "杞介噸涓婇檺", Width = 25)]
+            public decimal? MaxWeight { get; set; }
+
+            /// <summary>
+            /// 寮傚父鏁伴噺
+            /// </summary>
+            [ExcelColumn(Name = "寮傚父鏁伴噺", Width = 25)]
+            public int? ExceptionNumber { get; set; }
+
+            /// <summary>
+            /// 鐗╂枡鏁伴噺
+            /// </summary>
+            [ExcelColumn(Name = "鐗╂枡鏁伴噺", Width = 25)]
+            public int? MaterialNumber { get; set; }
+
+            /// <summary>
+            /// 鍐椾綑瀛楁1 - 棰勭暀鎵╁睍鐢ㄩ��
+            /// </summary>
+            [ExcelColumn(Name = "鍐椾綑瀛楁1", Width = 25)]
+            public string RedundantField1 { get; set; }
+
+            /// <summary>
+            /// 鍐椾綑瀛楁2 - 棰勭暀鎵╁睍鐢ㄩ��
+            /// </summary>
+            [ExcelColumn(Name = "鍐椾綑瀛楁2", Width = 25)]
+            public string RedundantField2 { get; set; }
+
+            /// <summary>
+            /// 鍐椾綑瀛楁3 - 棰勭暀鎵╁睍鐢ㄩ��
+            /// </summary>
+            [ExcelColumn(Name = "鍐椾綑瀛楁3", Width = 25)]
+            public string RedundantField3 { get; set; }
+
+            /// <summary>
+            /// 澶囨敞
+            /// </summary>
+            [ExcelColumn(Name = "澶囨敞", Width = 25)]
+            public virtual string Remark { get; set; }
+        }
+    }
+}

--
Gitblit v1.9.3