Add project files.

This commit is contained in:
pkus
2025-01-24 13:37:01 +01:00
parent ee70a3c8af
commit ed726eea09
94 changed files with 4591 additions and 0 deletions

View File

@@ -0,0 +1,54 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SytelineSaAppEfDataModel.Entities
{
public class CustomerOrderLine
{
public string CoNum { get; set; }
public short CoLine { get; set; }
public string Item { get; set; }
public string CustItem { get; set; }
public string FeatStr { get; set; }
public decimal BlanketQty { get; set; }
public DateTime? EffDate { get; set; }
public DateTime? ExpDate { get; set; }
public decimal? ContPrice { get; set; }
public string Stat { get; set; }
public DateTime? PromiseDate { get; set; }
public string Pricecode { get; set; }
public string UM { get; set; }
public decimal BlanketQtyConv { get; set; }
public decimal? ContPriceConv { get; set; }
public string ShipSite { get; set; }
public byte NoteExistsFlag { get; set; }
public DateTime RecordDate { get; set; }
public Guid RowPointer { get; set; }
public string Description { get; set; }
public string ConfigId { get; set; }
public string CreatedBy { get; set; }
public string UpdatedBy { get; set; }
public DateTime CreateDate { get; set; }
public byte InWorkflow { get; set; }
public byte PrintKitComponents { get; set; }
public string NonInvAcct { get; set; }
public string NonInvAcctUnit1 { get; set; }
public string NonInvAcctUnit2 { get; set; }
public string NonInvAcctUnit3 { get; set; }
public string NonInvAcctUnit4 { get; set; }
public decimal? CostConv { get; set; }
public short? DaysShippedBeforeDueDateTolerance { get; set; }
public short? DaysShippedAfterDueDateTolerance { get; set; }
public decimal? ShippedOverOrderedQtyTolerance { get; set; }
public decimal? ShippedUnderOrderedQtyTolerance { get; set; }
public string ManufacturerId { get; set; }
public string ManufacturerItem { get; set; }
public string Uf_FKR_EDI_BLN_Address { get; set; }
public string Uf_FKR_EDI_BLN_BoxType { get; set; }
public string Uf_FKR_EDI_BLN_FinalDestination { get; set; }
public int? Uf_FKR_EDI_BLN_QtyPerBox { get; set; }
}
}