using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WIDESEA_DTO.ERP
{
public class DeliveryDetailItem
{
///
///
///
public int DetailId { get; set; }
///
///
///
public string SaleOrderNo { get; set; }
///
///
///
public string Customer { get; set; }
///
///
///
public string MaterialCode { get; set; }
///
///
///
public string MaterialLot { get; set; }
///
///
///
public decimal MaterialQty { get; set; }
}
public class ERPProDeliveryDTO
{
///
///
///
public string DeliveryCode { get; set; }
///
///
///
public string WarehouseCode { get; set; }
///
///
///
public string Creater { get; set; }
///
///
///
public int DeliveryType { get; set; }
///
///
///
public string PlanDate { get; set; }
///
///
///
public string Remark { get; set; }
///
///
///
public int OperateType { get; set; }
///
///
///
public List DeliveryDetail { get; set; }
}
}