using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Admin.NET.Core { /// /// 菜单关联量表 /// [SugarTable("bus_menumapscale_info", "菜单关联量表")] public class BusMenuMapScale : EntityBase { public long MenuId { get; set; } public long ScaleId { get; set; } } }