From 5122193a28f08b2ca011a7d419f3ec4ba655b08a Mon Sep 17 00:00:00 2001 From: yanghongwei Date: Wed, 27 Aug 2025 21:46:05 +0800 Subject: [PATCH] =?UTF-8?q?=E7=99=BD=E5=90=8D=E5=8D=95=20=E8=B0=83?= =?UTF-8?q?=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Model/Whitelist.cs | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/Model/Whitelist.cs b/Model/Whitelist.cs index ea14901..aa26d87 100644 --- a/Model/Whitelist.cs +++ b/Model/Whitelist.cs @@ -25,14 +25,16 @@ namespace LY.App.Model public List positionId { get; set; } [SugarColumn(IsIgnore = true)] public List positionIds { get; set; } - /// - /// 所属单位 - /// + [SugarColumn(IsNullable = true)] public string company { get; set; } /// /// 备注 /// public string mark { get; set; } + /// + /// 创建人 + /// + public string createBy { get; set; } } public class AddWhitelist @@ -69,6 +71,10 @@ namespace LY.App.Model /// 备注 /// public string mark { get; set; } + /// + /// 创建人 + /// + public string createBy { get; set; } } public class UpdateWhitelist : AddWhitelist