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.
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
|
|
|
|
|
|
|
namespace CompressorXN_Model.ViewModel.Response
|
|
|
|
|
|
{
|
|
|
|
|
|
public class UserVM
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 行号
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public int SerialNumber { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 主键
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string Id { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 用户名
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[Description("用户名")]
|
|
|
|
|
|
public string UserName { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 密码
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[Description("密码")]
|
|
|
|
|
|
public string UserPwd { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 界面显示的密码
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string ShowUserPwd { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 姓名
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[Description("姓名")]
|
|
|
|
|
|
public string RealName { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
[Description("角色编码")]
|
|
|
|
|
|
public string RoleCode { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
[Description("角色名称")]
|
|
|
|
|
|
public string RoleName { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
[Description("是否所有权限")]
|
|
|
|
|
|
public bool IsAllAuthor { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 数据状态
|
|
|
|
|
|
/// 1—可用,0—不可用
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public bool IsActive { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 数据状态
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[Description("是否激活")]
|
|
|
|
|
|
public string StrIsActive { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 备注
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[Description("备注")]
|
|
|
|
|
|
public string Remark { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|