22 lines
457 B
C#
22 lines
457 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Blink.Backoffice.Services.PcmDb.Entities;
|
|
|
|
public partial class RapWartPoczDane
|
|
{
|
|
public decimal RWPId { get; set; }
|
|
|
|
public decimal MagId { get; set; }
|
|
|
|
public decimal Typ { get; set; }
|
|
|
|
public short Numer { get; set; }
|
|
|
|
public decimal Wartosc { get; set; }
|
|
|
|
public virtual Magazyn Mag { get; set; } = null!;
|
|
|
|
public virtual RapWartPocz RWP { get; set; } = null!;
|
|
}
|