Dekrety #1
This commit is contained in:
35
Blink.Backoffice.Services.PcmDb/Entities/KartaLoj.cs
Normal file
35
Blink.Backoffice.Services.PcmDb/Entities/KartaLoj.cs
Normal file
@@ -0,0 +1,35 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Blink.Backoffice.Services.PcmDb.Entities;
|
||||
|
||||
public partial class KartaLoj
|
||||
{
|
||||
public decimal KartaId { get; set; }
|
||||
|
||||
public decimal KontoId { get; set; }
|
||||
|
||||
public short TypKarty { get; set; }
|
||||
|
||||
public string? KodKarty { get; set; }
|
||||
|
||||
public DateTime? WaznaOd { get; set; }
|
||||
|
||||
public DateTime? WaznaDo { get; set; }
|
||||
|
||||
public DateTime? Uniewazniono { get; set; }
|
||||
|
||||
public string? Posiadacz { get; set; }
|
||||
|
||||
public string? Opis1 { get; set; }
|
||||
|
||||
public string? Opis2 { get; set; }
|
||||
|
||||
public decimal? CentrKartaId { get; set; }
|
||||
|
||||
public virtual KontoLoj Konto { get; set; } = null!;
|
||||
|
||||
public virtual ICollection<ZdarzLoj> ZdarzLoj { get; set; } = new List<ZdarzLoj>();
|
||||
|
||||
public virtual ICollection<NrRej> NrRej { get; set; } = new List<NrRej>();
|
||||
}
|
||||
Reference in New Issue
Block a user