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