24 lines
473 B
C#
24 lines
473 B
C#
|
|
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
|
|
{
|
|
|
|
/// <summary>
|
|
/// 菜单关联量表
|
|
/// </summary>
|
|
[SugarTable("bus_menumapscale_info", "菜单关联量表")]
|
|
public class BusMenuMapScale : EntityBase
|
|
{
|
|
public long MenuId { get; set; }
|
|
|
|
public long ScaleId { get; set; }
|
|
|
|
}
|
|
}
|