28 lines
634 B
C#
28 lines
634 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Blink.Backoffice.Services.PcmDb.Entities;
|
|
|
|
public partial class SklepTowAkcyza
|
|
{
|
|
public decimal SklepId { get; set; }
|
|
|
|
public decimal SklepTowId { get; set; }
|
|
|
|
public short Kolejnosc { get; set; }
|
|
|
|
public decimal SklepGrAkcId { get; set; }
|
|
|
|
public string? KodCN { get; set; }
|
|
|
|
public decimal? IleAkcJM { get; set; }
|
|
|
|
public decimal? Sklad { get; set; }
|
|
|
|
public decimal? CenaMax { get; set; }
|
|
|
|
public virtual SklepGrupaAkcyzowa SklepGrupaAkcyzowa { get; set; } = null!;
|
|
|
|
public virtual SklepTowar SklepTowar { get; set; } = null!;
|
|
}
|