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.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
using Custom.Utils.Framework ;
using System.ComponentModel ;
namespace ProductionSystem_Model.ViewModel.Response.System
{
public class UserVM
{
/// <summary>
/// 行号
/// </summary>
public int SerialNumber { get ; set ; }
/// <summary>
/// 主键
/// </summary>
public string Id { get ; set ; }
/// <summary>
/// 用户名
/// </summary>
[MyExportAttribute(true, 1)]
[Description("用户名")]
public string UserName { get ; set ; }
/// <summary>
/// 姓名
/// </summary>
[MyExportAttribute(true, 2)]
[Description("姓名")]
public string RealName { get ; set ; }
[Description("角色编码")]
public string RoleCode { get ; set ; }
/// <summary>
/// 数据状态
/// 1—可用, 0—不可用
/// </summary>
public bool IsActive { get ; set ; }
/// <summary>
/// 数据状态
/// </summary>
[MyExportAttribute(true, 3)]
[Description("是否激活")]
public string StrIsActive { get ; set ; }
/// <summary>
/// 备注
/// </summary>
[MyExportAttribute(true, 4)]
[Description("备注")]
public string Remark { get ; set ; }
}
}