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.

32 lines
733 B
C#

using Estsh.Core.Base;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations.Schema;
namespace Estsh.Core.Model.ExcelModel
{
/// <summary>
///客户订单号明细
/// </summary>
[Serializable]
public class CustomerOrder
{
[Column("part_no")]
[DisplayName("总成零件号")]
public string PartNo { get; set; }
[Column("part_spec")]
[DisplayName("零件描述")]
public string PartSpec { get; set; }
[Column("cust_order")]
[DisplayName("客户单号")]
public string CustOrder { get; set; }
[Column("ship_unit")]
[DisplayName("出货单位")]
public string ShipUnit { get; set; }
}
}