using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ICSSoft.Entity
{
public class ICSDeliveryNotice
{
///
/// 到货单号
///
public string DNCode { get; set; }
///
/// 到货单号
///
public string ODNCode { get; set; }
///
/// 操作人
///
public string User { get; set; }
///
/// 操作时间
///
public string MTime { get; set; }
///
/// 供应商编码
///
public string VenCode { get; set; }
///
/// 部门编码
///
public string DepCode { get; set; }
///
/// 送货单号
///
public string ASNCode { get; set; }
///
/// 委外送货单号
///
public string OASNCode { get; set; }
///
/// 到货单表头ID
///
public string ID { get; set; }
///
/// 站点
///
public string WorkPoint { get; set; }
public List 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; }
///
/// 到货单表体ID
///
public string DNDetailID { get; set; }
///
/// 委外到货单表体ID
///
public string ODNDetailID { get; set; }
///
/// 条码
///
public string LotNo { get; set; }
}
}