Dekrety #1
This commit is contained in:
25
Blink.Backoffice.Services.PcmDb/Entities/TowAkcyza.cs
Normal file
25
Blink.Backoffice.Services.PcmDb/Entities/TowAkcyza.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
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!;
|
||||
}
|
||||
Reference in New Issue
Block a user