You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
85 lines
2.1 KiB
85 lines
2.1 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace ICSSoft.Entity
|
|
{
|
|
public class ICSDeliveryNotice
|
|
{
|
|
/// <summary>
|
|
/// 到货单号
|
|
/// </summary>
|
|
public string DNCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 到货单号
|
|
/// </summary>
|
|
public string ODNCode { get; set; }
|
|
/// <summary>
|
|
/// 操作人
|
|
/// </summary>
|
|
public string User { get; set; }
|
|
/// <summary>
|
|
/// 操作时间
|
|
/// </summary>
|
|
public string MTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 供应商编码
|
|
/// </summary>
|
|
public string VenCode { get; set; }
|
|
/// <summary>
|
|
/// 部门编码
|
|
/// </summary>
|
|
public string DepCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 送货单号
|
|
/// </summary>
|
|
public string ASNCode { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 委外送货单号
|
|
/// </summary>
|
|
public string OASNCode { get; set; }
|
|
/// <summary>
|
|
/// 到货单表头ID
|
|
/// </summary>
|
|
public string ID { get; set; }
|
|
/// <summary>
|
|
/// 站点
|
|
/// </summary>
|
|
public string WorkPoint { get; set; }
|
|
|
|
public List<ICSDeliveryNotices> detail { get; set; }
|
|
}
|
|
public class ICSDeliveryNotices
|
|
{
|
|
public string Sequence { get; set; }
|
|
public string InvCode { get; set; }
|
|
public string Quantity { get; set; }
|
|
public string Amount { get; set; }
|
|
public string Currency { get; set; }
|
|
public string UnitPrice { get; set; }
|
|
public string RCVQuantity { get; set; }
|
|
public string PODetailID { get; set; }
|
|
public string WorkPoint { get; set; }
|
|
/// <summary>
|
|
/// 到货单表体ID
|
|
/// </summary>
|
|
public string DNDetailID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 委外到货单表体ID
|
|
/// </summary>
|
|
public string ODNDetailID { get; set; }
|
|
/// <summary>
|
|
/// 条码
|
|
/// </summary>
|
|
public string LotNo { get; set; }
|
|
|
|
|
|
}
|
|
}
|