Add project files.
This commit is contained in:
44
SytelineSaAppEfDataModel/Dtos/EdiCustomerOrderLineDto.cs
Normal file
44
SytelineSaAppEfDataModel/Dtos/EdiCustomerOrderLineDto.cs
Normal file
@@ -0,0 +1,44 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace SytelineSaAppEfDataModel.Dtos
|
||||
{
|
||||
public class EdiCustomerOrderLineDto
|
||||
{
|
||||
public string CustomerOrderNumber { get; set; }
|
||||
public int CustomerOrderLine { get; set; }
|
||||
public string Item { get; set; }
|
||||
public string CustomerItemNumber { get; set; }
|
||||
public string FeatStr { get; set; }
|
||||
public decimal? BlanketQty { get; set; }
|
||||
public DateTime? EffectiveDate { get; set; }
|
||||
public DateTime? ExpirationDate { get; set; }
|
||||
public decimal? ContPrice { get; set; }
|
||||
public string Status { get; set; }
|
||||
public DateTime? PromiseDate { get; set; }
|
||||
public string PriceCode { get; set; }
|
||||
public string Uom { get; set; }
|
||||
public decimal? BlanketQtyReleased { get; set; }
|
||||
public decimal? ContPriceReleased { get; set; }
|
||||
public decimal? QtySent { get; set; }
|
||||
public string SentCode { get; set; }
|
||||
public string NonAppliedData { get; set; }
|
||||
public byte NoteExistsFlag { get; set; }
|
||||
public DateTime RecordDate { get; set; }
|
||||
public Guid RowPointer { get; set; }
|
||||
public string Description { get; set; }
|
||||
public string CreatedBy { get; set; }
|
||||
public string UpdatedBy { get; set; }
|
||||
public DateTime CreateDate { get; set; }
|
||||
public byte InWorkflow { get; set; }
|
||||
public string BoxType { get; set; }
|
||||
public string Address { get; set; }
|
||||
public string FinalDestination { get; set; }
|
||||
public int? QtyPerBox { get; set; }
|
||||
|
||||
public IEnumerable<EdiCustomerOrderLineItemDto> EdiCustomerOrderLineItems { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user