You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.2 KiB
53 lines
1.2 KiB
using System;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace RoadFlow.Data.Model
|
|
{
|
|
[Serializable]
|
|
public class Users
|
|
{
|
|
/// <summary>
|
|
/// ID
|
|
/// </summary>
|
|
[DisplayName("ID")]
|
|
public string ID { get; set; }
|
|
|
|
/// <summary>
|
|
/// Name
|
|
/// </summary>
|
|
[DisplayName("Name")]
|
|
public string Name { get; set; }
|
|
|
|
/// <summary>
|
|
/// Account2
|
|
/// </summary>
|
|
[DisplayName("Account2")]
|
|
public string Account2 { get; set; }
|
|
|
|
/// <summary>
|
|
/// Password
|
|
/// </summary>
|
|
[DisplayName("Password")]
|
|
public string Password { get; set; }
|
|
|
|
/// <summary>
|
|
/// 状态 0 正常 1 冻结
|
|
/// </summary>
|
|
[DisplayName("状态 0 正常 1 冻结")]
|
|
public int Status { get; set; }
|
|
|
|
/// <summary>
|
|
/// 排序
|
|
/// </summary>
|
|
[DisplayName("排序")]
|
|
public int Sort { get; set; }
|
|
|
|
/// <summary>
|
|
/// 系统备注
|
|
/// </summary>
|
|
[DisplayName("系统备注")]
|
|
public string Note { get; set; }
|
|
|
|
}
|
|
}
|
|
|