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.
39 lines
944 B
C#
39 lines
944 B
C#
using Estsh.Core.Base;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Estsh.Core.Model.ExcelModel
|
|
{
|
|
/// <summary>
|
|
///解锁记录明细
|
|
/// </summary>
|
|
[Serializable]
|
|
public class MESOD
|
|
{
|
|
[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("terminal_name")]
|
|
[DisplayName("站点名称")]
|
|
public string TerminalName { get; set; }
|
|
|
|
[Column("emp_name")]
|
|
[DisplayName("解锁人")]
|
|
public string EmpName { get; set; }
|
|
|
|
[Column("create_time")]
|
|
[DisplayName("解锁日期")]
|
|
public string CreateTime { get; set; }
|
|
|
|
}
|
|
}
|