2024-05-16 10:37:44 +02:00

40 lines
889 B
C#

using System;
using System.Collections.Generic;
namespace Blink.Backoffice.Services.PcmDb.Entities;
public partial class PcpReceiptItem
{
public decimal PcpReceiptItemId { get; set; }
public decimal PcpReceiptId { get; set; }
public string? Barcode { get; set; }
public string ProductName { get; set; } = null!;
public short ProductType { get; set; }
public short IsReturn { get; set; }
public decimal Price { get; set; }
public decimal Quantity { get; set; }
public decimal TotalBrutto { get; set; }
public decimal? TotalNetto { get; set; }
public decimal? VatRate { get; set; }
public string? VatChar { get; set; }
public short DiscountType { get; set; }
public decimal DiscountValue { get; set; }
public decimal TotalDiscount { get; set; }
public virtual PcpReceipt PcpReceipt { get; set; } = null!;
}