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
977 B
C#
39 lines
977 B
C#
using Estsh.Core.Base;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Estsh.Core.Model.ExcelModel
|
|
{
|
|
/// <summary>
|
|
/// 成品发运结果查询
|
|
/// </summary>
|
|
[Serializable]
|
|
public class ProductDeliveryResult
|
|
{
|
|
[Column("pdline_code")]
|
|
[DisplayName("产线代码")]
|
|
public string PdlineCode { get; set; }
|
|
|
|
[Column("part_no")]
|
|
[DisplayName("零件号")]
|
|
public string PartNo { get; set; }
|
|
|
|
[Column("serial_number")]
|
|
[DisplayName("包装条码")]
|
|
public string SerialNumber { get; set; }
|
|
|
|
[Column("qty")]
|
|
[DisplayName("数量")]
|
|
public decimal? Qty { get; set; }
|
|
|
|
[Column("erp_warehouse")]
|
|
[DisplayName("ERP库存地")]
|
|
public string ErpWarehouse { get; set; }
|
|
|
|
[Column("customer_code")]
|
|
[DisplayName("客户代码")]
|
|
public string CustomerCode { get; set; }
|
|
|
|
}
|
|
}
|