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.
63 lines
1.6 KiB
C#
63 lines
1.6 KiB
C#
using Estsh.Core.Base;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Estsh.Core.Model.ExcelModel
|
|
{
|
|
/// <summary>
|
|
///成品异常领用
|
|
/// </summary>
|
|
[Serializable]
|
|
public class ProdunctFinished
|
|
{
|
|
[Column("type_name")]
|
|
[DisplayName("车型")]
|
|
public string TypeName { get; set; }
|
|
|
|
[Column("serial_number")]
|
|
[DisplayName("条码")]
|
|
public string SerialNumber { get; set; }
|
|
|
|
[Column("part_no")]
|
|
[DisplayName("零件号")]
|
|
public string PartNo { get; set; }
|
|
|
|
[Column("cust_part_no")]
|
|
[DisplayName("客户零件号")]
|
|
public string CustPartNo { get; set; }
|
|
|
|
[Column("part_spec")]
|
|
[DisplayName("零件描述")]
|
|
public string PartSpec { get; set; }
|
|
|
|
[Column("emp_name")]
|
|
[DisplayName("操作人")]
|
|
public string EmpName { get; set; }
|
|
|
|
[Column("uname")]
|
|
[DisplayName("领用人")]
|
|
public string Uname { get; set; }
|
|
|
|
[Column("reason")]
|
|
[DisplayName("领用原因")]
|
|
public string Reason { get; set; }
|
|
|
|
[Column("out_going_no")]
|
|
[DisplayName("出门证号码")]
|
|
public string OutGoingNo { get; set; }
|
|
|
|
[Column("ctime")]
|
|
[DisplayName("领用时间")]
|
|
public string Ctime { get; set; }
|
|
|
|
[Column("remark")]
|
|
[DisplayName("备注")]
|
|
public string Remark { get; set; }
|
|
|
|
[Column("qty")]
|
|
[DisplayName("数量")]
|
|
public string Qty { get; set; }
|
|
|
|
}
|
|
}
|