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.

55 lines
1.3 KiB
C#

using Estsh.Core.Base;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations.Schema;
namespace Estsh.Core.Models
{
/// <summary>
/// ,数据实体对象
/// </summary>
[Table("g_user_unlock")]
[Serializable]
public class GUserUnlock : BaseEntity
{
[Column("ruid")]
[DisplayName(" ")]
public int Ruid { get; set; }
[Column("unlock_pwd")]
[DisplayName(" ")]
public string UnlockPwd { get; set; }
[Column("serial_number")]
[DisplayName(" ")]
public string SerialNumber { get; set; }
[Column("car_no")]
[DisplayName(" ")]
public string CarNo { get; set; }
[Column("wo_detail_id")]
[DisplayName(" ")]
public string WoDetailId { get; set; }
[Column("terminal_id")]
[DisplayName(" ")]
public string TerminalId { get; set; }
[Column("remark")]
[DisplayName(" ")]
public string Remark { get; set; }
#region 扩展字段
[NotMapped]
[Column("emp_name")]
[DisplayName(" ")]
public string EmpName { get; set; }
[NotMapped]
[Column("terminal_name")]
[DisplayName(" ")]
public string TerminalName { get; set; }
#endregion
}
}