You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
386 B
C#
23 lines
386 B
C#
namespace Myshipping.Core.Service;
|
|
|
|
/// <summary>
|
|
/// 登录用户角色参数
|
|
/// </summary>
|
|
public class RoleOutput
|
|
{
|
|
/// <summary>
|
|
/// Id
|
|
/// </summary>
|
|
public long Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 编码
|
|
/// </summary>
|
|
public string Code { get; set; }
|
|
|
|
/// <summary>
|
|
/// 名称
|
|
/// </summary>
|
|
public string Name { get; set; }
|
|
}
|