Dekrety #1
This commit is contained in:
19
Blink.Backoffice.Services.PcmDb/Entities/TowStraty.cs
Normal file
19
Blink.Backoffice.Services.PcmDb/Entities/TowStraty.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Blink.Backoffice.Services.PcmDb.Entities;
|
||||
|
||||
public partial class TowStraty
|
||||
{
|
||||
public decimal TowId { get; set; }
|
||||
|
||||
public short IdxRodzStrat { get; set; }
|
||||
|
||||
public short Odliczanie { get; set; }
|
||||
|
||||
public decimal? NormaStrat { get; set; }
|
||||
|
||||
public virtual Towar Tow { get; set; } = null!;
|
||||
|
||||
public virtual ICollection<TowStratyDlaSklepu> TowStratyDlaSklepu { get; set; } = new List<TowStratyDlaSklepu>();
|
||||
}
|
||||
Reference in New Issue
Block a user