Dekrety #1
This commit is contained in:
21
Blink.Backoffice.Services.PcmDb/Entities/Rozlicza.cs
Normal file
21
Blink.Backoffice.Services.PcmDb/Entities/Rozlicza.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Blink.Backoffice.Services.PcmDb.Entities;
|
||||
|
||||
public partial class Rozlicza
|
||||
{
|
||||
public decimal DokId { get; set; }
|
||||
|
||||
public int Kolejnosc { get; set; }
|
||||
|
||||
public decimal RozliczanyDokId { get; set; }
|
||||
|
||||
public decimal Rozliczenie { get; set; }
|
||||
|
||||
public decimal? RozliczeniePodatku { get; set; }
|
||||
|
||||
public virtual Dok Dok { get; set; } = null!;
|
||||
|
||||
public virtual Dok RozliczanyDok { get; set; } = null!;
|
||||
}
|
||||
Reference in New Issue
Block a user