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.
34 lines
628 B
34 lines
628 B
2 years ago
|
|
||
|
using SqlSugar;
|
||
|
using System;
|
||
|
using System.Runtime.Serialization;
|
||
|
|
||
|
namespace Elight.Entity
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 角色表(扩展)
|
||
|
/// </summary>
|
||
|
[DataContract]
|
||
|
public class App_Sys_RoleDto
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 角色Id
|
||
|
/// </summary>
|
||
|
[DataMember]
|
||
|
public string? Id { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 角色名称
|
||
|
/// </summary>
|
||
|
[DataMember]
|
||
|
public string? name { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 角色用户
|
||
|
/// </summary>
|
||
|
[DataMember]
|
||
|
public string? userId { get; set; }
|
||
|
}
|
||
|
}
|
||
|
|