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.
50 lines
1.2 KiB
C#
50 lines
1.2 KiB
C#
using Estsh.Core.Base;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Estsh.Core.Model.ExcelModel
|
|
{
|
|
/// <summary>
|
|
///发运信息_
|
|
/// </summary>
|
|
[Serializable]
|
|
public class ShippingInformationDefine
|
|
{
|
|
[Column("order_no")]
|
|
[DisplayName("发运单号")]
|
|
public string OrderNo { get; set; }
|
|
|
|
[Column("Werks")]
|
|
[DisplayName("目的地")]
|
|
public string Werks { get; set; }
|
|
|
|
[Column("part_no")]
|
|
[DisplayName("零件号")]
|
|
public string PartNo { get; set; }
|
|
|
|
[Column("part_spec")]
|
|
[DisplayName("零件描述")]
|
|
public string PartSpec { get; set; }
|
|
|
|
[Column("qty")]
|
|
[DisplayName("应发数量")]
|
|
public string Qty { get; set; }
|
|
|
|
[Column("piqty")]
|
|
[DisplayName("实发数量")]
|
|
public string Piqty { get; set; }
|
|
|
|
[Column("flag")]
|
|
[DisplayName("完成情况")]
|
|
public string Flag { get; set; }
|
|
|
|
[Column("update_time")]
|
|
[DisplayName("发运日期")]
|
|
public string UpdateTime { get; set; }
|
|
|
|
[Column("create_time")]
|
|
[DisplayName("建单日期")]
|
|
public string CreateTime { get; set; }
|
|
}
|
|
}
|