OpenAuth.Net/OpenAuth.App/Request/UpdateUserReq.cs
2020-12-27 00:00:28 +08:00

75 lines
1.8 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System.ComponentModel.DataAnnotations;
using Infrastructure;
using OpenAuth.Repository.Domain;
namespace OpenAuth.App.Request
{
/// <summary>
/// 添加或修改用户信息的请求
/// </summary>
public class UpdateUserReq
{
/// <summary>
/// 用户ID
/// </summary>
/// <returns></returns>
public string Id { get; set; }
/// <summary>
/// </summary>
/// <returns></returns>
[Required(ErrorMessage = "账号肯定不能为空啊~~")]
public string Account { get; set; }
/// <summary>
/// </summary>
/// <returns></returns>
public string Password { get; set; }
/// <summary>
/// 用户姓名
/// </summary>
/// <returns></returns>
[Required(ErrorMessage="姓名不能为空")]
public string Name { get; set; }
/// <summary>
/// </summary>
/// <returns></returns>
public int Sex { get; set; }
/// <summary>
/// 当前状态
/// </summary>
/// <returns></returns>
public int Status { get; set; }
/// <summary>
/// 所属组织Id多个可用分隔
/// </summary>
/// <value>The organizations.</value>
[Required(ErrorMessage = "请为用户分配机构")]
public string OrganizationIds { get; set; }
public static implicit operator UpdateUserReq(User user)
{
return user.MapTo<UpdateUserReq>();
}
public static implicit operator User(UpdateUserReq view)
{
return view.MapTo<User>();
}
public UpdateUserReq()
{
OrganizationIds = string.Empty;
}
}
}