From 212af0b4bbc0f11e0b552d1bc3a4a73e52127e02 Mon Sep 17 00:00:00 2001 From: dengjunjie <dengjunjie@hnkhzn.com> Date: 星期四, 17 十月 2024 09:52:33 +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