DRAB/Pcm.Db/Entities/SklepFlagi.cs
2025-07-11 10:50:46 +02:00

30 lines
1023 B
C#

namespace Pcm.Db.Entities;
public class SklepFlagi
{
public SklepFlagi()
{
SklepNarzDosts = new HashSet<SklepNarzDost>();
}
public decimal SklepId { get; set; }
public decimal TowId { get; set; }
public short BlokDostawcow { get; set; }
public short BlokCenyZak { get; set; }
public short BlokCenSp { get; set; }
public short BlokZmian { get; set; }
public decimal? NarzCenaZak { get; set; }
public decimal? NarzCenaDet { get; set; }
public decimal? NarzCenaHurt { get; set; }
public decimal? NarzCenaNoc { get; set; }
public decimal? NarzCenaDod { get; set; }
public short? NarzCenaOtwarta { get; set; }
public DateTime Zmiana { get; set; }
public DateTime? ZmianaIstotna { get; set; }
public DateTime? ZmianaTylkoCen { get; set; }
public short? Aktywny { get; set; }
public virtual Sklep Sklep { get; set; }
public virtual Towar Tow { get; set; }
public virtual ICollection<SklepNarzDost> SklepNarzDosts { get; set; }
}