¶Ô±ÈÐÂÎļþ |
| | |
| | | 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; } |
| | | } |
| | | } |