37 lines
1.1 KiB
C#
37 lines
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
#nullable disable
|
|
|
|
namespace Pcm.Db.Entities;
|
|
|
|
public class ZdarzLoj
|
|
{
|
|
public ZdarzLoj()
|
|
{
|
|
OpisZdarzLojs = new HashSet<OpisZdarzLoj>();
|
|
}
|
|
|
|
public decimal ZdarzLojId { get; set; }
|
|
public decimal? KontoId { get; set; }
|
|
public decimal? KartaId { get; set; }
|
|
public string KodKarty { get; set; }
|
|
public DateTime DataCzas { get; set; }
|
|
public DateTime DataCzasZapisu { get; set; }
|
|
public short TypZdarz { get; set; }
|
|
public decimal? RegulaId { get; set; }
|
|
public decimal? StanPrzed { get; set; }
|
|
public decimal? StanPo { get; set; }
|
|
public decimal? Kwota { get; set; }
|
|
public string Opis { get; set; }
|
|
public string TransUuid { get; set; }
|
|
public string ShopNo { get; set; }
|
|
public string PosNo { get; set; }
|
|
public decimal? SklepId { get; set; }
|
|
public decimal? DokId { get; set; }
|
|
public string Cecha { get; set; }
|
|
|
|
public virtual KartaLoj Karta { get; set; }
|
|
public virtual KontoLoj Konto { get; set; }
|
|
public virtual ICollection<OpisZdarzLoj> OpisZdarzLojs { get; set; }
|
|
} |