32 lines
923 B
C#
32 lines
923 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
#nullable disable
|
|
|
|
namespace Pcm.Db.Entities;
|
|
|
|
public class Zlecenie
|
|
{
|
|
public Zlecenie()
|
|
{
|
|
ZlecKomunikats = new HashSet<ZlecKomunikat>();
|
|
ZlecParams = new HashSet<ZlecParam>();
|
|
}
|
|
|
|
public decimal KasaId { get; set; }
|
|
public decimal ZlecId { get; set; }
|
|
public short Typ { get; set; }
|
|
public short Status { get; set; }
|
|
public int Param { get; set; }
|
|
public short Alarm { get; set; }
|
|
public short NieUsuwac { get; set; }
|
|
public DateTime Utworzono { get; set; }
|
|
public DateTime Zmiana { get; set; }
|
|
public string NazwaDod { get; set; }
|
|
public decimal? ParId { get; set; }
|
|
public string Wstrzymanie { get; set; }
|
|
|
|
public virtual Kasa Kasa { get; set; }
|
|
public virtual ICollection<ZlecKomunikat> ZlecKomunikats { get; set; }
|
|
public virtual ICollection<ZlecParam> ZlecParams { get; set; }
|
|
} |