2024-07-01 21:28:20 +02:00

47 lines
1.1 KiB
C#

namespace DuSoft.PcmDb.Entities;
public partial class SklepFlagi
{
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 short? StatusZam { get; set; }
public DateTime? DoKiedyPrzyjecie { get; set; }
public virtual Sklep Sklep { get; set; } = null!;
public virtual Towar Tow { get; set; } = null!;
public virtual ICollection<Kontrahent> Kontr { get; set; } = new List<Kontrahent>();
}