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
939 B
C#
39 lines
939 B
C#
using Estsh.Core.Base;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Estsh.Core.Model.ExcelModel
|
|
{
|
|
/// <summary>
|
|
///成品异常领用
|
|
/// </summary>
|
|
[Serializable]
|
|
public class ProductAbnormalConsume
|
|
{
|
|
[Column("part_no")]
|
|
[DisplayName("车型")]
|
|
public string PartNo { get; set; }
|
|
|
|
[Column("part_spec")]
|
|
[DisplayName("配置")]
|
|
public string PartSpec { get; set; }
|
|
|
|
[Column("serial_number")]
|
|
[DisplayName("条码")]
|
|
public string SerialNumber { get; set; }
|
|
|
|
[Column("remark")]
|
|
[DisplayName("备注")]
|
|
public string Remark { get; set; }
|
|
|
|
[Column("emp_name")]
|
|
[DisplayName("领用人")]
|
|
public string EmpName { get; set; }
|
|
|
|
[Column("update_time")]
|
|
[DisplayName("领用日期")]
|
|
public string UpdateTime { get; set; }
|
|
|
|
}
|
|
}
|