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.
32 lines
618 B
32 lines
618 B
2 years ago
|
using Elight.Utility.Code;
|
||
|
using SqlSugar;
|
||
|
using System;
|
||
|
using System.Runtime.Serialization;
|
||
|
|
||
|
namespace Elight.Logic.SystemModel
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 角色菜单表
|
||
|
/// </summary>
|
||
|
[Serializable]
|
||
|
[DataContract]
|
||
|
public class App_Sys_RoleMenuInput : Paging
|
||
|
{
|
||
|
[DataMember]
|
||
|
public string Id { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 角色Id
|
||
|
/// </summary>
|
||
|
[DataMember]
|
||
|
public string roleId { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 菜单Id
|
||
|
/// </summary>
|
||
|
[DataMember]
|
||
|
public string menuId { get; set; }
|
||
|
}
|
||
|
}
|
||
|
|