26 lines
547 B
C#
26 lines
547 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Blink.Backoffice.Services.PcmDb.Entities;
|
|
|
|
public partial class TowAkcyza
|
|
{
|
|
public decimal TowId { get; set; }
|
|
|
|
public short Kolejnosc { get; set; }
|
|
|
|
public decimal GrAkcId { get; set; }
|
|
|
|
public string? KodCN { get; set; }
|
|
|
|
public decimal? IleAkcJM { get; set; }
|
|
|
|
public decimal? Sklad { get; set; }
|
|
|
|
public decimal? CenaMax { get; set; }
|
|
|
|
public virtual GrupaAkcyzowa GrAkc { get; set; } = null!;
|
|
|
|
public virtual Towar Tow { get; set; } = null!;
|
|
}
|