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.
65 lines
1.7 KiB
C#
65 lines
1.7 KiB
C#
using Estsh.Core.Base;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
namespace Estsh.Core.Model.ExcelModel
|
|
{
|
|
/// <summary>
|
|
/// 回冲日志查询
|
|
/// </summary>
|
|
[Serializable]
|
|
public class ProductDeductLog
|
|
{
|
|
[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("part_spec2")]
|
|
[DisplayName("零件名称")]
|
|
public string PartSpec2 { get; set; }
|
|
|
|
[Column("unit")]
|
|
[DisplayName("单位")]
|
|
public string unit { get; set; }
|
|
|
|
[Column("qty")]
|
|
[DisplayName("数量")]
|
|
public string? Qty { get; set; }
|
|
|
|
[Column("item_part_no")]
|
|
[DisplayName("子零件号")]
|
|
public string ItemPartNo { get; set; }
|
|
|
|
[Column("item_part_spec")]
|
|
[DisplayName("子零件简码")]
|
|
public string ItemPartSpec { get; set; }
|
|
|
|
[Column("item_part_spec2")]
|
|
[DisplayName("子零件名称")]
|
|
public string ItemPartSpec2 { get; set; }
|
|
|
|
[Column("item_unit")]
|
|
[DisplayName("子单位")]
|
|
public string ItemUnit { get; set; }
|
|
|
|
[Column("item_qty")]
|
|
[DisplayName("子数量")]
|
|
public string ItemQty { get; set; }
|
|
|
|
[Column("factory_code")]
|
|
[DisplayName("工厂代码")]
|
|
public string FactoryCode { get; set; }
|
|
|
|
[Column("create_time")]
|
|
[DisplayName("创建日期")]
|
|
public string CreateTime { get; set; }
|
|
}
|
|
}
|