Add DRS
This commit is contained in:
@@ -1,46 +1,49 @@
|
||||
namespace Blink.Backoffice.Services.PcmDb.Entities;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
public partial class ZdarzLoj
|
||||
{
|
||||
public decimal ZdarzLojId { get; set; }
|
||||
namespace Blink.Backoffice.Services.PcmDb.Entities;
|
||||
|
||||
public partial class ZdarzLoj
|
||||
{
|
||||
public decimal ZdarzLojId { get; set; }
|
||||
|
||||
public decimal? KontoId { get; set; }
|
||||
public decimal? KontoId { get; set; }
|
||||
|
||||
public decimal? KartaId { get; set; }
|
||||
public decimal? KartaId { get; set; }
|
||||
|
||||
public string? KodKarty { get; set; }
|
||||
public string? KodKarty { get; set; }
|
||||
|
||||
public DateTime DataCzas { get; set; }
|
||||
public DateTime DataCzas { get; set; }
|
||||
|
||||
public DateTime DataCzasZapisu { get; set; }
|
||||
public DateTime DataCzasZapisu { get; set; }
|
||||
|
||||
public short TypZdarz { get; set; }
|
||||
public short TypZdarz { get; set; }
|
||||
|
||||
public decimal? RegulaId { get; set; }
|
||||
public decimal? RegulaId { get; set; }
|
||||
|
||||
public decimal? StanPrzed { get; set; }
|
||||
public decimal? StanPrzed { get; set; }
|
||||
|
||||
public decimal? StanPo { get; set; }
|
||||
public decimal? StanPo { get; set; }
|
||||
|
||||
public decimal? Kwota { get; set; }
|
||||
public decimal? Kwota { get; set; }
|
||||
|
||||
public string? Opis { get; set; }
|
||||
public string? Opis { get; set; }
|
||||
|
||||
public string? TransUUID { get; set; }
|
||||
public string? TransUUID { get; set; }
|
||||
|
||||
public string? ShopNo { get; set; }
|
||||
public string? ShopNo { get; set; }
|
||||
|
||||
public string? PosNo { get; set; }
|
||||
public string? PosNo { get; set; }
|
||||
|
||||
public decimal? SklepId { get; set; }
|
||||
public decimal? SklepId { get; set; }
|
||||
|
||||
public decimal? DokId { get; set; }
|
||||
public decimal? DokId { get; set; }
|
||||
|
||||
public string? Cecha { get; set; }
|
||||
public string? Cecha { get; set; }
|
||||
|
||||
public virtual KartaLoj? Karta { get; set; }
|
||||
public virtual KartaLoj? Karta { get; set; }
|
||||
|
||||
public virtual KontoLoj? Konto { get; set; }
|
||||
public virtual KontoLoj? Konto { get; set; }
|
||||
|
||||
public virtual ICollection<OpisZdarzLoj> OpisZdarzLoj { get; set; } = new List<OpisZdarzLoj>();
|
||||
}
|
||||
public virtual ICollection<OpisZdarzLoj> OpisZdarzLoj { get; set; } = new List<OpisZdarzLoj>();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user