mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-09-20 10:37:55 +08:00
角色板块
This commit is contained in:
70
OpenAuth.App/Response/RoleView.cs
Normal file
70
OpenAuth.App/Response/RoleView.cs
Normal file
@@ -0,0 +1,70 @@
|
||||
// ***********************************************************************
|
||||
// Assembly : OpenAuth.App
|
||||
// Author : yubaolee
|
||||
// Created : 11-29-2015
|
||||
//
|
||||
// Last Modified By : yubaolee
|
||||
// Last Modified On : 11-29-2015
|
||||
// ***********************************************************************
|
||||
// <copyright file="RoleVM.cs" company="www.cnblogs.com/yubaolee">
|
||||
// Copyright (c) www.cnblogs.com/yubaolee. All rights reserved.
|
||||
// </copyright>
|
||||
// <summary>角色模型视图</summary>
|
||||
// ***********************************************************************
|
||||
|
||||
using Infrastructure;
|
||||
using OpenAuth.Repository.Domain;
|
||||
|
||||
namespace OpenAuth.App.Response
|
||||
{
|
||||
public partial class RoleView
|
||||
{
|
||||
/// <summary>
|
||||
/// 用户ID
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
public string Id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 名称
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
public string Name { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 当前状态
|
||||
/// </summary>
|
||||
public int Status { get; set; }
|
||||
/// <summary>
|
||||
/// 角色类型
|
||||
/// </summary>
|
||||
public int Type { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 所属组织名称,多个可用,分隔
|
||||
/// </summary>
|
||||
public string Organizations { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 所属组织ID,多个可用,分隔
|
||||
/// </summary>
|
||||
public string OrganizationIds { get; set; }
|
||||
|
||||
/// <summary>
|
||||
///是否属于某用户
|
||||
/// </summary>
|
||||
public bool Checked { get; set; }
|
||||
|
||||
public static implicit operator RoleView(Role role)
|
||||
{
|
||||
return role.MapTo<RoleView>();
|
||||
}
|
||||
|
||||
public static implicit operator Role(RoleView rolevm)
|
||||
{
|
||||
return rolevm.MapTo<Role>();
|
||||
}
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user