This commit is contained in:
2026-05-19 16:45:53 +02:00
parent e80c8894ea
commit ae32eef32a
735 changed files with 15154 additions and 147132 deletions

View File

@@ -1,34 +1,37 @@
namespace Blink.Backoffice.Services.PcmDb.Entities;
using System;
using System.Collections.Generic;
public partial class Zlecenie
{
public decimal KasaId { get; set; }
namespace Blink.Backoffice.Services.PcmDb.Entities;
public partial class Zlecenie
{
public decimal KasaId { get; set; }
public decimal ZlecId { get; set; }
public decimal ZlecId { get; set; }
public short Typ { get; set; }
public short Typ { get; set; }
public short Status { get; set; }
public short Status { get; set; }
public int Param { get; set; }
public int Param { get; set; }
public short Alarm { get; set; }
public short Alarm { get; set; }
public short NieUsuwac { get; set; }
public short NieUsuwac { get; set; }
public DateTime Utworzono { get; set; }
public DateTime Utworzono { get; set; }
public DateTime Zmiana { get; set; }
public DateTime Zmiana { get; set; }
public string? NazwaDod { get; set; }
public string? NazwaDod { get; set; }
public decimal? ParId { get; set; }
public decimal? ParId { get; set; }
public string? Wstrzymanie { get; set; }
public string? Wstrzymanie { get; set; }
public virtual Kasa Kasa { get; set; } = null!;
public virtual Kasa Kasa { get; set; } = null!;
public virtual ICollection<ZlecKomunikat> ZlecKomunikat { get; set; } = new List<ZlecKomunikat>();
public virtual ICollection<ZlecKomunikat> ZlecKomunikat { get; set; } = new List<ZlecKomunikat>();
public virtual ICollection<ZlecParam> ZlecParam { get; set; } = new List<ZlecParam>();
}
public virtual ICollection<ZlecParam> ZlecParam { get; set; } = new List<ZlecParam>();
}