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