Files
FA_WEB/SytelineSaAppEfDataModel/Dtos/ItemCustPriceAllDto.cs
trencik91 8b67aa3851 * Added new Enrichers
* Added new Translators
* Changed in DTOs
* Further development
2025-08-25 14:25:16 +02:00

39 lines
1.5 KiB
C#

namespace SytelineSaAppEfDataModel.Dtos;
public class ItemCustPriceAllDto : DtoBase
{
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; }
}