2024-05-16 10:37:44 +02:00

50 lines
1.1 KiB
C#

using System;
using System.Collections.Generic;
namespace Blink.Backoffice.Services.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>();
}