Dekrety #1
This commit is contained in:
39
Blink.Backoffice.Services.PcmDb/Entities/PcpReceiptItem.cs
Normal file
39
Blink.Backoffice.Services.PcmDb/Entities/PcpReceiptItem.cs
Normal file
@@ -0,0 +1,39 @@
|
||||
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!;
|
||||
}
|
||||
Reference in New Issue
Block a user