¶Ô±ÈÐÂÎļþ |
| | |
| | | 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 |
| | | { |
| | | [SugarTable("Sys_Menu", "èåé
ç½®"), MultiTenant] |
| | | public class Sys_Menu : BaseEntity |
| | | { |
| | | /// <summary> |
| | | /// èåID |
| | | /// </summary> |
| | | [SugarColumn(IsIdentity = true, IsPrimaryKey = true, ColumnDescription = "èåID")] |
| | | public int MenuId { get; set; } |
| | | |
| | | /// <summary> |
| | | /// èååç§° |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "èååç§°")] |
| | | public string MenuName { get; set; } |
| | | |
| | | /// <summary> |
| | | /// æé |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, Length = 2000, ColumnDescription = "æé")] |
| | | public string Auth { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 徿 |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, Length = 200, ColumnDescription = "徿 ")] |
| | | public string Icon { get; set; } |
| | | |
| | | /// <summary> |
| | | /// æè¿° |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, Length = 2000, ColumnDescription = "æè¿°")] |
| | | public string Description { get; set; } |
| | | |
| | | /// <summary> |
| | | /// æ¯å¦å¯ç¨ |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, ColumnDescription = "æ¯å¦å¯ç¨")] |
| | | public byte? Enable { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 表å |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "表å")] |
| | | public string TableName { get; set; } |
| | | |
| | | /// <summary> |
| | | /// ç¶çº§ID |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = false, ColumnDescription = "ç¶çº§ID")] |
| | | public int ParentId { get; set; } |
| | | |
| | | /// <summary> |
| | | /// è·¯å¾ |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "è·¯å¾")] |
| | | public string Url { get; set; } |
| | | |
| | | /// <summary> |
| | | /// æåºå· |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true,ColumnDescription ="æåºå·")] |
| | | public int? OrderNo { get; set; } |
| | | |
| | | /// <summary> |
| | | /// èåç±»å |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = false, ColumnDescription = "èåç±»å")] |
| | | public int MenuType { get; set; } |
| | | |
| | | |
| | | } |
| | | } |