From abf3ceabdd98abd0d955b03732e581a43c4e9fb0 Mon Sep 17 00:00:00 2001
From: lixiaojun <1287241240@qq.com>
Date: 星期一, 13 一月 2025 15:01:31 +0800
Subject: [PATCH] 解决冲突

---
 Yw.Vmo.Unit.Core/01-lang/SysUnitLangVmo.cs |   50 ++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 50 insertions(+), 0 deletions(-)

diff --git a/Yw.Vmo.Unit.Core/01-lang/SysUnitLangVmo.cs b/Yw.Vmo.Unit.Core/01-lang/SysUnitLangVmo.cs
new file mode 100644
index 0000000..4f2cc25
--- /dev/null
+++ b/Yw.Vmo.Unit.Core/01-lang/SysUnitLangVmo.cs
@@ -0,0 +1,50 @@
+锘縩amespace Yw.Vmo
+{
+    /// <summary>
+    /// 
+    /// </summary>
+    public class SysUnitLangVmo
+    {
+        /// <summary>
+        /// 
+        /// </summary>
+        public SysUnitLangVmo() { }
+
+        /// <summary>
+        /// 
+        /// </summary>
+        public SysUnitLangVmo(Yw.Dto.SysUnitLangDto rhs)
+        {
+            this.ID = rhs.ID;
+            this.Name = rhs.Name;
+            this.Code = rhs.Code;
+            this.SortCode = rhs.SortCode;
+            this.Description = rhs.Description;
+        }
+
+        /// <summary>
+        /// id
+        /// </summary>	
+        public long ID { get; set; }
+
+        /// <summary>
+        /// 鍚嶇О
+        /// </summary>
+        public string Name { get; set; }
+
+        /// <summary>
+        /// 缂栫爜
+        /// </summary>
+        public string Code { get; set; }
+
+        /// <summary>
+        /// 鎺掑簭
+        /// </summary>
+        public int SortCode { get; set; }
+
+        /// <summary>
+        /// 澶囨敞
+        /// </summary>
+        public string Description { get; set; }
+    }
+}

--
Gitblit v1.9.3