This commit is contained in:
2024-05-16 10:37:44 +02:00
commit 64b26d6823
678 changed files with 154503 additions and 0 deletions

View File

@@ -0,0 +1,45 @@
using System;
using System.Collections.Generic;
namespace Blink.Backoffice.Services.PcmDb.Entities;
public partial class Asort
{
public decimal AsId { get; set; }
public string Nazwa { get; set; } = null!;
public decimal Marza { get; set; }
public short OpcjaMarzy { get; set; }
public decimal HurtRabat { get; set; }
public short OpcjaRabatu { get; set; }
public decimal NocNarzut { get; set; }
public short OpcjaNarzutu { get; set; }
public decimal? CentrAsId { get; set; }
public short? UkrytyNaPanelach { get; set; }
public short? UkrytyNaBonowniku { get; set; }
public short? BezAutoEtykiet { get; set; }
public decimal? Param1 { get; set; }
public short? Autoryzacja { get; set; }
public virtual ICollection<Marzownik> Marzownik { get; set; } = new List<Marzownik>();
public virtual ICollection<RegulaAsort> RegulaAsort { get; set; } = new List<RegulaAsort>();
public virtual ICollection<Towar> Towar { get; set; } = new List<Towar>();
public virtual ICollection<Kasa> Kasa { get; set; } = new List<Kasa>();
public virtual ICollection<Sklep> Sklep { get; set; } = new List<Sklep>();
}