24 lines
546 B
C#
24 lines
546 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Blink.Backoffice.Services.PcmDb.Entities;
|
|
|
|
public partial class SklepRapWartPoczDane
|
|
{
|
|
public decimal SklepId { get; set; }
|
|
|
|
public decimal SklepRWPId { get; set; }
|
|
|
|
public decimal SklepMagId { get; set; }
|
|
|
|
public decimal Typ { get; set; }
|
|
|
|
public short Numer { get; set; }
|
|
|
|
public decimal Wartosc { get; set; }
|
|
|
|
public virtual SklepMagazyn SklepMagazyn { get; set; } = null!;
|
|
|
|
public virtual SklepRapWartPocz SklepRapWartPocz { get; set; } = null!;
|
|
}
|