2024-05-16 10:37:44 +02:00

46 lines
1.1 KiB
C#

using System;
using System.Collections.Generic;
namespace Blink.Backoffice.Services.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>();
}