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.
24 lines
450 B
24 lines
450 B
namespace Entity.Dto.Resp
|
|
{
|
|
/// <summary>
|
|
/// 角色列表输出参数
|
|
/// </summary>
|
|
public class RoleResp
|
|
{
|
|
/// <summary>
|
|
/// Id
|
|
/// </summary>
|
|
public long Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 名称
|
|
/// </summary>
|
|
public string Name { get; set; }
|
|
|
|
/// <summary>
|
|
/// 编码
|
|
/// </summary>
|
|
public string Code { get; set; }
|
|
}
|
|
}
|