Dekrety #1
This commit is contained in:
45
Blink.Backoffice.Services.PcmDb/Entities/PcpShop.cs
Normal file
45
Blink.Backoffice.Services.PcmDb/Entities/PcpShop.cs
Normal 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>();
|
||||
}
|
||||
Reference in New Issue
Block a user