This commit is contained in:
2024-05-16 10:37:44 +02:00
commit 64b26d6823
678 changed files with 154503 additions and 0 deletions

View File

@@ -0,0 +1,45 @@
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>();
}