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.

43 lines
1.1 KiB
C#

using Estsh.Core.Base;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations.Schema;
namespace Estsh.Core.Model.ExcelModel
{
/// <summary>
///抽样检测明细
/// </summary>
[Serializable]
public class SampleTestQuery
{
[Column("type_name")]
[DisplayName("车型名称")]
public string TypeName { get; set; }
[Column("model_name")]
[DisplayName("配置名称")]
public string ModelName { get; set; }
[Column("serial_number")]
[DisplayName("合格证条码")]
public string SerialNumber { get; set; }
[Column("enum_desc")]
[DisplayName("位置")]
public string EnumDesc { get; set; }
[Column("shift_code")]
[DisplayName("班别")]
public string ShiftCode { get; set; }
[Column("print_time")]
[DisplayName("打印时间")]
public string PrintTime { get; set; }
[Column("out_pdline_time")]
[DisplayName("生产时间")]
public string OutPdlineTime { get; set; }
}
}