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.
36 lines
842 B
C#
36 lines
842 B
C#
using Estsh.Core.Base;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Estsh.Core.Model.ExcelModel
|
|
{
|
|
/// <summary>
|
|
///批次追溯查询
|
|
/// </summary>
|
|
[Serializable]
|
|
public class LotDefine
|
|
{
|
|
|
|
[Column("serial_number")]
|
|
[DisplayName("合格证条码")]
|
|
public string SerialNumber { get; set; }
|
|
|
|
[Column("part_no")]
|
|
[DisplayName("总成零件号")]
|
|
public string PartNo { get; set; }
|
|
|
|
[Column("part_spec")]
|
|
[DisplayName("描述")]
|
|
public string PartSpec { get; set; }
|
|
|
|
[Column("car_no")]
|
|
[DisplayName("车身号")]
|
|
public string CarNo { get; set; }
|
|
|
|
[Column("item_part_no")]
|
|
[DisplayName("关键零件号")]
|
|
public string ItemPartNo { get; set; }
|
|
|
|
}
|
|
}
|