From 7eca0ab1b6d5142d623efd471985b2a20b559616 Mon Sep 17 00:00:00 2001
From: 小飞侠 <8277136+liaoxujun@user.noreply.gitee.com>
Date: 星期一, 01 十二月 2025 10:55:02 +0800
Subject: [PATCH] 修正审批备注长度
---
cylsg/cylsg.Model/UserModel/UserCompany.cs | 12 ++++++++++--
1 files changed, 10 insertions(+), 2 deletions(-)
diff --git a/cylsg/cylsg.Model/UserModel/UserCompany.cs b/cylsg/cylsg.Model/UserModel/UserCompany.cs
index bc4b662..c79b0ec 100644
--- a/cylsg/cylsg.Model/UserModel/UserCompany.cs
+++ b/cylsg/cylsg.Model/UserModel/UserCompany.cs
@@ -8,6 +8,7 @@
using System.Linq;
using System.Text;
using System.Threading.Tasks;
+using static Microsoft.AspNetCore.Razor.Language.TagHelperMetadata;
namespace cylsg.Model.UserModel
{
@@ -47,8 +48,8 @@
/// <summary>
/// 娉ㄥ唽鏃堕棿
/// </summary>
- [SugarColumn(ColumnDescription = "娉ㄥ唽鏃堕棿", IsNullable = true)]
- public DateTime? Regtime { get; set; }
+ [SugarColumn(ColumnDescription = "娉ㄥ唽鏃堕棿", ColumnDataType = "nvarchar(50)", IsNullable = true)]
+ public string Regtime { get; set; }
/// <summary>
/// 鑱旂郴鍦板潃
@@ -96,5 +97,12 @@
/// </summary>
[SugarColumn(ColumnDescription = "鏄惁鍙互鍏呭�硷紝宸ヤ汉鎻愮幇", IsNullable = true)]
public bool? IsTiXian { get; set; }
+
+
+ /// <summary>
+ /// 鏄惁绠$悊鍛�
+ /// </summary>
+ [SugarColumn(ColumnDescription = "鏄惁绠$悊鍛�", IsNullable = true)]
+ public bool? IsAdmin { get; set; }
}
}
--
Gitblit v1.9.1