This commit is contained in:
2026-05-19 16:45:53 +02:00
parent e80c8894ea
commit ae32eef32a
735 changed files with 15154 additions and 147132 deletions

View File

@@ -1,42 +1,45 @@
namespace Blink.Backoffice.Services.PcmDb.Entities;
using System;
using System.Collections.Generic;
public partial class PcpShop
{
public int PcpShopId { get; set; }
namespace Blink.Backoffice.Services.PcmDb.Entities;
public partial class PcpShop
{
public int PcpShopId { get; set; }
public short? ShopNo { get; set; }
public short? ShopNo { get; set; }
public string ShopName { get; set; } = null!;
public string ShopName { get; set; } = null!;
public string ShopNameOnReceipt0 { get; set; } = null!;
public string ShopNameOnReceipt0 { get; set; } = null!;
public string? ShopNameOnReceipt1 { get; set; }
public string? ShopNameOnReceipt1 { get; set; }
public string? ShopNameOnReceipt2 { get; set; }
public string? ShopNameOnReceipt2 { get; set; }
public string? ShopNameOnReceipt3 { get; set; }
public string? ShopNameOnReceipt3 { get; set; }
public string ShopAddrOnReceipt0 { get; set; } = null!;
public string ShopAddrOnReceipt0 { get; set; } = null!;
public string? ShopAddrOnReceipt1 { get; set; }
public string? ShopAddrOnReceipt1 { get; set; }
public string? ShopAddrOnReceipt2 { get; set; }
public string? ShopAddrOnReceipt2 { get; set; }
public string? ShopAddrOnReceipt3 { get; set; }
public string? ShopAddrOnReceipt3 { get; set; }
public string ShopNip { get; set; } = null!;
public string ShopNip { get; set; } = null!;
public string? ShopLicenseKey { get; set; }
public string? ShopLicenseKey { get; set; }
public DateTime? ShopLicenseValidFrom { get; set; }
public DateTime? ShopLicenseValidFrom { get; set; }
public DateTime? ShopLicenseValidTo { get; set; }
public DateTime? ShopLicenseValidTo { get; set; }
public short Active { get; set; }
public short Active { get; set; }
public DateTime Created { get; set; }
public DateTime Created { get; set; }
public DateTime Updated { get; set; }
public DateTime Updated { get; set; }
public virtual ICollection<PcpPos> PcpPos { get; set; } = new List<PcpPos>();
}
public virtual ICollection<PcpPos> PcpPos { get; set; } = new List<PcpPos>();
}