using Furion.DatabaseAccessor; using Microsoft.EntityFrameworkCore; using System.ComponentModel.DataAnnotations.Schema; namespace Admin.NET.Core.Entity.WmsBase { /// /// 角色菜单表 /// [Table("wms_role_pdamenu")] [Comment("角色菜单表")] public class WmsRolePdaMenu : IEntity { /// /// 角色Id /// [Comment("角色Id")] public long SysRoleId { get; set; } /// /// 一对一引用(系统用户) /// public SysRole SysRole { get; set; } /// /// 菜单Id /// [Comment("菜单Id")] public long PdaMenuId { get; set; } /// /// 一对一引用(系统菜单) /// public WmsPdaPower WmsPdaPower { get; set; } } }