using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEA_DTO.ERP { public class DeliveryBackDetailItem { /// /// /// public string SaleOrderNo { get; set; } /// /// /// public string DeliveryCode { get; set; } /// /// /// public string MaterialCode { get; set; } /// /// /// public string Customer { get; set; } /// /// /// public string BarCode { get; set; } /// /// /// public string MaterialLot { get; set; } /// /// /// public int MaterialQty { get; set; } } public class ERPProDeliverBackDTO { /// /// /// public int OperateType { get; set; } /// /// /// public string DeliveryBackCode { get; set; } /// /// /// public string WarehouseCode { get; set; } /// /// /// public int DeliveryType { get; set; } /// /// /// public string Remark { get; set; } /// /// /// public string Creater { get; set; } /// /// /// public List DeliveryBackDetail { get; set; } } }