From ee5e3a086a5dc145e7f5df3de32e0e072c183949 Mon Sep 17 00:00:00 2001
From: z8018 <1282578289@qq.com>
Date: 星期五, 06 六月 2025 15:19:40 +0800
Subject: [PATCH] 1

---
 project/WCS/WIDESEAWCS_Server/WIDESEAWCS_Model/Models/System/Sys_UserFace.cs |   27 +++++++++++++++++++++++++++
 1 files changed, 27 insertions(+), 0 deletions(-)

diff --git a/project/WCS/WIDESEAWCS_Server/WIDESEAWCS_Model/Models/System/Sys_UserFace.cs b/project/WCS/WIDESEAWCS_Server/WIDESEAWCS_Model/Models/System/Sys_UserFace.cs
new file mode 100644
index 0000000..3465e7b
--- /dev/null
+++ b/project/WCS/WIDESEAWCS_Server/WIDESEAWCS_Model/Models/System/Sys_UserFace.cs
@@ -0,0 +1,27 @@
+锘縰sing System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace WIDESEAWCS_Model.Models
+{
+    [SqlSugar.SugarTable("Sys_UserFace", "鐢ㄦ埛浜鸿劯璇嗗埆琛�")]
+    public class Sys_UserFace
+    {
+        [SqlSugar.SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "涓婚敭ID")]
+        public int Id { get; set; }
+
+        [SqlSugar.SugarColumn(ColumnDescription = "鐢ㄦ埛ID", IsNullable = false)]
+        public int User_Id { get; set; }
+
+        [SqlSugar.SugarColumn(Length = 100, IsNullable = false, ColumnDescription = "鐢ㄦ埛鍚�")]
+        public string UserName { get; set; }
+
+        [SqlSugar.SugarColumn(Length = 500, IsNullable = false, ColumnDescription = "鍥剧墖鍚嶇О")]
+        public string UserFaceImageName { get; set; }
+
+        [SqlSugar.SugarColumn(Length = 2000, IsNullable = false, ColumnDescription = "鍥剧墖璺緞")]
+        public string UserFaceImagePath { get; set; }
+    }
+}

--
Gitblit v1.9.3