24小时一体机服务
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
536 B

using Elight.Entity;
using Elight.Utility.Code;
using SqlSugar;
using System;
using System.Runtime.Serialization;
namespace Elight.Logic.SystemModel
{
/// <summary>
/// 角色菜单表
/// </summary>
[Serializable]
[DataContract]
public class App_Sys_RoleMenuAdd
{
[DataMember]
public string? Id { get; set; }
/// <summary>
/// 角色菜单集合
/// </summary>
[DataMember]
public List<App_Sys_RoleMenuModel>? RoleMenulist { get; set; }
}
}