2024-07-01 21:28:20 +02:00

43 lines
1.0 KiB
C#

namespace DuSoft.PcmDb.Entities;
public partial class PcpShop
{
public int PcpShopId { get; set; }
public short? ShopNo { get; set; }
public string ShopName { get; set; } = null!;
public string ShopNameOnReceipt0 { get; set; } = null!;
public string? ShopNameOnReceipt1 { get; set; }
public string? ShopNameOnReceipt2 { get; set; }
public string? ShopNameOnReceipt3 { get; set; }
public string ShopAddrOnReceipt0 { get; set; } = null!;
public string? ShopAddrOnReceipt1 { get; set; }
public string? ShopAddrOnReceipt2 { get; set; }
public string? ShopAddrOnReceipt3 { get; set; }
public string ShopNip { get; set; } = null!;
public string? ShopLicenseKey { get; set; }
public DateTime? ShopLicenseValidFrom { get; set; }
public DateTime? ShopLicenseValidTo { get; set; }
public short Active { get; set; }
public DateTime Created { get; set; }
public DateTime Updated { get; set; }
public virtual ICollection<PcpPos> PcpPos { get; set; } = new List<PcpPos>();
}