From dfba57ee3b9db5b82baa9aec90ca9fb64e59e8b3 Mon Sep 17 00:00:00 2001 From: 移动系统liao <liaoxujun@qq.com> Date: 星期四, 19 六月 2025 09:02:49 +0800 Subject: [PATCH] no message --- Admin.NET/FZCZTB.NET.MD/CutomerMd/FB_ExRoleMenu.cs | 2 Admin.NET/FZCZTB.NET.MD/ADPenalty.cs | 62 +++++++++++++++++++++++++++++++ Admin.NET/FZCZTB.NET.MD/CutomerMd/FB_Customer.cs | 2 Admin.NET/FZCZTB.NET.MD/CutomerMd/FB_Menu.cs | 2 Admin.NET/FZCZTB.NET.MD/CutomerMd/FB_CustomerRole.cs | 2 Admin.NET/FZCZTB.NET.MD/CutomerMd/FB_Role.cs | 2 6 files changed, 67 insertions(+), 5 deletions(-) diff --git a/Admin.NET/FZCZTB.NET.MD/ADPenalty.cs b/Admin.NET/FZCZTB.NET.MD/ADPenalty.cs new file mode 100644 index 0000000..2bd0a91 --- /dev/null +++ b/Admin.NET/FZCZTB.NET.MD/ADPenalty.cs @@ -0,0 +1,62 @@ +锘�//琛屾斂澶勭綒 +using Admin.NET.Core; +using SqlSugar; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace FZCZTB.NET.MD; + +/// <summary> +/// 琛屾斂澶勭綒 +/// </summary> +[SugarTable("FBD_ADPenalty","琛屾斂澶勭綒")] +[IncreTable] +public class ADPenalty: basemodelNoId +{ + + /// <summary> + /// 鎶曡瘔ID锛屼富閿� + /// </summary> + [SugarColumn(IsPrimaryKey = true)] + public Guid Id { get; set; } + /// <summary> + /// 鍐冲畾鏃ユ湡 + /// </summary> + [SugarColumn(ColumnDescription = "鍐冲畾鏃ユ湡")] + public DateTime DecisionDate { get; set; } + + /// <summary> + /// 褰撲簨浜轰俊鎭紝鍙兘鍖呭惈澶氫釜褰撲簨浜猴紝鐢ㄩ�楀彿鍒嗛殧 + /// </summary> + [SugarColumn(ColumnDescription = "褰撲簨浜轰俊鎭�", IsNullable =true, Length = 255)] + public string? Parties { get; set; } + + /// <summary> + /// 妗堢敱鎻忚堪 + /// </summary> + [SugarColumn(ColumnDescription = "妗堢敱鎻忚堪", IsNullable = true, Length = int.MaxValue)] + public string? CaseReason { get; set; } + + /// <summary> + /// 澶勭悊鍐冲畾鍐呭 + /// </summary> + [SugarColumn(ColumnDescription = "澶勭悊鍐冲畾鍐呭", IsNullable = true, Length = int.MaxValue)] + public string? DisposalDecision { get; set; } + + /// <summary> + /// 閲囪喘鐩戠潱閮ㄩ棬鍚嶇О + /// </summary> + [SugarColumn(ColumnDescription = "閲囪喘鐩戠潱閮ㄩ棬鍚嶇О", IsNullable = true ,Length=255)] + public string? SupervisionDepartment { get; set; } + + + /// <summary> + /// 绾夸笂鍦板潃 + /// </summary> + [SugarColumn(Length = 255, IsNullable = true, ColumnDescription = "绾夸笂鍦板潃")] + public string Url { get; set; } + +} diff --git a/Admin.NET/FZCZTB.NET.MD/CutomerMd/FB_Customer.cs b/Admin.NET/FZCZTB.NET.MD/CutomerMd/FB_Customer.cs index 1df95cf..b09e9db 100644 --- a/Admin.NET/FZCZTB.NET.MD/CutomerMd/FB_Customer.cs +++ b/Admin.NET/FZCZTB.NET.MD/CutomerMd/FB_Customer.cs @@ -21,7 +21,7 @@ [SugarTable("FB_Customer", "瀹㈡埛琛�")] [SugarIndex("index_{table}_A", nameof(Account), OrderByType.Asc)] [SugarIndex("index_{table}_P", nameof(Phone), OrderByType.Asc)] -[IncreTable] + public partial class FB_Customer : EntityBaseTenant { /// <summary> diff --git a/Admin.NET/FZCZTB.NET.MD/CutomerMd/FB_CustomerRole.cs b/Admin.NET/FZCZTB.NET.MD/CutomerMd/FB_CustomerRole.cs index dfee1f9..8b0b35a 100644 --- a/Admin.NET/FZCZTB.NET.MD/CutomerMd/FB_CustomerRole.cs +++ b/Admin.NET/FZCZTB.NET.MD/CutomerMd/FB_CustomerRole.cs @@ -14,7 +14,7 @@ namespace FZCZTB.NET.MD.CutomerMd; [SugarTable("FB_CustomerRole", "瀹㈡埛鑿滃崟琛�")] -[IncreTable] + public class FB_CustomerRole : EntityBaseId { /// <summary> diff --git a/Admin.NET/FZCZTB.NET.MD/CutomerMd/FB_ExRoleMenu.cs b/Admin.NET/FZCZTB.NET.MD/CutomerMd/FB_ExRoleMenu.cs index 45a2856..739a053 100644 --- a/Admin.NET/FZCZTB.NET.MD/CutomerMd/FB_ExRoleMenu.cs +++ b/Admin.NET/FZCZTB.NET.MD/CutomerMd/FB_ExRoleMenu.cs @@ -17,7 +17,7 @@ /// 绯荤粺绉熸埛鑿滃崟琛� /// </summary> [SugarTable("FB_TenantMenu", "绯荤粺绉熸埛鑿滃崟琛�")] -[IncreTable] + class FB_ExRoleMenu: EntityBaseId { /// <summary> diff --git a/Admin.NET/FZCZTB.NET.MD/CutomerMd/FB_Menu.cs b/Admin.NET/FZCZTB.NET.MD/CutomerMd/FB_Menu.cs index 9e2a79f..5a21579 100644 --- a/Admin.NET/FZCZTB.NET.MD/CutomerMd/FB_Menu.cs +++ b/Admin.NET/FZCZTB.NET.MD/CutomerMd/FB_Menu.cs @@ -20,7 +20,7 @@ [SugarTable("FB_Menu", "瀹㈡埛绯荤粺鑿滃崟琛�")] [SugarIndex("index_{table}_T", nameof(Title), OrderByType.Asc)] [SugarIndex("index_{table}_T2", nameof(Type), OrderByType.Asc)] -[IncreTable] + public class FB_Menu: EntityBaseTenantId { /// <summary> diff --git a/Admin.NET/FZCZTB.NET.MD/CutomerMd/FB_Role.cs b/Admin.NET/FZCZTB.NET.MD/CutomerMd/FB_Role.cs index 90485b8..39eee6a 100644 --- a/Admin.NET/FZCZTB.NET.MD/CutomerMd/FB_Role.cs +++ b/Admin.NET/FZCZTB.NET.MD/CutomerMd/FB_Role.cs @@ -19,7 +19,7 @@ [SugarTable("FB_Role", "瀹㈡埛涓�у寲瑙掕壊")] [SugarIndex("index_{table}_N", nameof(Name), OrderByType.Asc)] [SugarIndex("index_{table}_C", nameof(Code), OrderByType.Asc)] -[IncreTable] + public class FB_Role : EntityBaseTenant { /// <summary> -- Gitblit v1.9.1