| using SqlSugar; | 
| using System; | 
| using System.Collections.Generic; | 
| using System.Linq; | 
| using System.Text; | 
| using System.Threading.Tasks; | 
| using WIDESEAWCS_Core.DB.Models; | 
|   | 
| namespace WIDESEAWCS_Model.Models | 
| { | 
|     [SugarTable(nameof(Sys_RoleDataPermission))] | 
|     public class Sys_RoleDataPermission : BaseEntity | 
|     { | 
|         [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")] | 
|         public int Id { get; set; } | 
|   | 
|         [SugarColumn(IsNullable = false, ColumnDescription = "角色主键")] | 
|         public int RoleId { get; set; } | 
|   | 
|         [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "角色名称")] | 
|         public string RoleName { get; set; } | 
|   | 
|         [SugarColumn(IsNullable = false, ColumnDescription = "仓库主键")] | 
|         public int WarehouseId { get; set; } | 
|   | 
|         [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "仓库名称")] | 
|         public string WarehouseName { get; set; } | 
|     } | 
| } |