Dekrety #1
This commit is contained in:
45
Blink.Backoffice.Services.PcmDb/Entities/Asort.cs
Normal file
45
Blink.Backoffice.Services.PcmDb/Entities/Asort.cs
Normal 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>();
|
||||
}
|
||||
Reference in New Issue
Block a user