dengjunjie
2025-02-11 8467804705615f7614c29e7ef7ac3e99f5c13a54
ÏîÄ¿´úÂë/WMS/WIDESEA_WMSServer/WIDESEA_Model/Models/System/Sys_RoleAuth.cs
¶Ô±ÈÐÂÎļþ
@@ -0,0 +1,48 @@
using 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; }
    }
}