From 41a5531dc31a642623f0a7a766fbe9c256ba9247 Mon Sep 17 00:00:00 2001
From: dengjunjie <dengjunjie@hnkhzn.com>
Date: 星期二, 11 二月 2025 13:53:29 +0800
Subject: [PATCH] 优化WMS前端
---
项目代码/WMS/WIDESEA_WMSServer/WIDESEA_Model/Models/System/Sys_RoleAuth.cs | 48 ++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 48 insertions(+), 0 deletions(-)
diff --git "a/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WIDESEA_WMSServer/WIDESEA_Model/Models/System/Sys_RoleAuth.cs" "b/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WIDESEA_WMSServer/WIDESEA_Model/Models/System/Sys_RoleAuth.cs"
new file mode 100644
index 0000000..1d9c5ff
--- /dev/null
+++ "b/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WIDESEA_WMSServer/WIDESEA_Model/Models/System/Sys_RoleAuth.cs"
@@ -0,0 +1,48 @@
+锘縰sing System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using SqlSugar;
+using WIDESEA_Core.DB.Models;
+using WIDESEA_Core.Tenants;
+
+namespace WIDESEA_Model.Models
+{
+ /// <summary>
+ /// 瑙掕壊韬唤楠岃瘉绠$悊琛�
+ /// </summary>
+ [SugarTable("Sys_RoleAuth", "瑙掕壊韬唤楠岃瘉绠$悊"), MultiTenant]
+ public class Sys_RoleAuth : BaseEntity
+ {
+ /// <summary>
+ /// 瑙掕壊韬唤楠岃瘉ID
+ /// </summary>
+ [SugarColumn(IsIdentity = true, IsPrimaryKey = true, ColumnDescription = "瑙掕壊韬唤楠岃瘉ID")]
+ public int AuthId { get; set; }
+
+ /// <summary>
+ /// 鐢ㄦ埛鏉冮檺
+ /// </summary>
+ [SugarColumn(IsNullable = true, Length = 500, ColumnDescription = "鐢ㄦ埛鏉冮檺")]
+ public string AuthValue { get; set; }
+
+ /// <summary>
+ /// 鑿滃崟ID
+ /// </summary>
+ [SugarColumn(IsNullable = false, ColumnDescription = "鑿滃崟ID")]
+ public int MenuId { get; set; }
+
+ /// <summary>
+ /// 瑙掕壊ID
+ /// </summary>
+ [SugarColumn(IsNullable = true, ColumnDescription = "瑙掕壊ID")]
+ public int? RoleId { get; set; }
+
+ /// <summary>
+ /// 鐢ㄦ埛ID
+ /// </summary>
+ [SugarColumn(IsNullable = true, ColumnDescription = "鐢ㄦ埛ID")]
+ public int? UserId { get; set; }
+ }
+}
--
Gitblit v1.9.3