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.
31 lines
621 B
31 lines
621 B
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; } |
|
} |
|
} |
|
|
|
|