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.0 KiB
C#
43 lines
1.0 KiB
C#
using Estsh.Core.Base;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Estsh.Core.Model.ExcelModel
|
|
{
|
|
/// <summary>
|
|
///生产指令调整
|
|
/// </summary>
|
|
[Serializable]
|
|
public class AdjustOrder
|
|
{
|
|
[Column("seq")]
|
|
[DisplayName("顺序号")]
|
|
public string Seq { get; set; }
|
|
|
|
[Column("serial_number")]
|
|
[DisplayName("座椅总成条码")]
|
|
public string SerialNumber { get; set; }
|
|
|
|
[Column("model_no")]
|
|
[DisplayName("配置")]
|
|
public string ModelNo { get; set; }
|
|
|
|
[Column("part_no")]
|
|
[DisplayName("零件号")]
|
|
public string PartNo { get; set; }
|
|
|
|
[Column("part_spec")]
|
|
[DisplayName("零件描述")]
|
|
public string PartSpec { get; set; }
|
|
|
|
[Column("cust_part_no")]
|
|
[DisplayName("客户零件号")]
|
|
public string CustPartNo { get; set; }
|
|
|
|
[Column("create_time")]
|
|
[DisplayName("释放日期")]
|
|
public string CreateTime { get; set; }
|
|
|
|
}
|
|
}
|