23 lines
541 B
C#
23 lines
541 B
C#
namespace DuSoft.PcmDb.Entities;
|
|
|
|
public partial class SklepRozlicza
|
|
{
|
|
public decimal SklepId { get; set; }
|
|
|
|
public decimal SklepDokId { get; set; }
|
|
|
|
public int Kolejnosc { get; set; }
|
|
|
|
public decimal RozliczanySklepId { get; set; }
|
|
|
|
public decimal RozliczanySklepDokId { get; set; }
|
|
|
|
public decimal Rozliczenie { get; set; }
|
|
|
|
public decimal? RozliczeniePodatku { get; set; }
|
|
|
|
public virtual SklepDok SklepDok { get; set; } = null!;
|
|
|
|
public virtual SklepDok SklepDokNavigation { get; set; } = null!;
|
|
}
|