* Added ItemCustPriceAll entity

This commit is contained in:
2025-08-22 07:13:47 +02:00
parent 8c646d4bc7
commit 764ba68f56
8 changed files with 293 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
namespace SytelineSaAppEfDataModel.Dtos;
public class ItemCustPriceAllDto
{
public string SiteRef { get; set; }
public string Item { get; set; }
public string CustNum { get; set; }
public int CustItemSeq { get; set; }
public DateTime EffectDate { get; set; }
public decimal? ContPrice { get; set; }
public decimal? BrkQty1 { get; set; }
public decimal? BrkQty2 { get; set; }
public decimal? BrkQty3 { get; set; }
public decimal? BrkQty4 { get; set; }
public decimal? BrkQty5 { get; set; }
public decimal? BrkPrice1 { get; set; }
public decimal? BrkPrice2 { get; set; }
public decimal? BrkPrice3 { get; set; }
public decimal? BrkPrice4 { get; set; }
public decimal? BrkPrice5 { get; set; }
public string BaseCode1 { get; set; }
public string BaseCode2 { get; set; }
public string BaseCode3 { get; set; }
public string BaseCode4 { get; set; }
public string BaseCode5 { get; set; }
public string DolPercent1 { get; set; }
public string DolPercent2 { get; set; }
public string DolPercent3 { get; set; }
public string DolPercent4 { get; set; }
public string DolPercent5 { get; set; }
public bool NoteExistsFlag { get; set; }
public DateTime RecordDate { get; set; }
public Guid RowPointer { get; set; }
public string CreatedBy { get; set; }
public string UpdatedBy { get; set; }
public DateTime CreateDate { get; set; }
public bool InWorkflow { get; set; }
public bool IncludeTaxInPrice { get; set; }
}