Dekrety #1
This commit is contained in:
27
Blink.Backoffice.Services.PcmDb/Entities/Odbiorca.cs
Normal file
27
Blink.Backoffice.Services.PcmDb/Entities/Odbiorca.cs
Normal file
@@ -0,0 +1,27 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Blink.Backoffice.Services.PcmDb.Entities;
|
||||
|
||||
public partial class Odbiorca
|
||||
{
|
||||
public decimal KontrId { get; set; }
|
||||
|
||||
public decimal TowId { get; set; }
|
||||
|
||||
public decimal Zamowil { get; set; }
|
||||
|
||||
public decimal? RabatTow { get; set; }
|
||||
|
||||
public decimal? StalaCena { get; set; }
|
||||
|
||||
public string? Nazwa { get; set; }
|
||||
|
||||
public string? Indeks { get; set; }
|
||||
|
||||
public short? NaWylacznosc { get; set; }
|
||||
|
||||
public virtual Kontrahent Kontr { get; set; } = null!;
|
||||
|
||||
public virtual Towar Tow { get; set; } = null!;
|
||||
}
|
||||
Reference in New Issue
Block a user