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,30 +1,33 @@
namespace Blink.Backoffice.Services.PcmDb.Entities;
using System;
using System.Collections.Generic;
public partial class LogOperation
{
public decimal OperationId { get; set; }
namespace Blink.Backoffice.Services.PcmDb.Entities;
public partial class LogOperation
{
public decimal OperationId { get; set; }
public decimal PosId { get; set; }
public decimal PosId { get; set; }
public decimal? OperatorId { get; set; }
public decimal? OperatorId { get; set; }
public decimal AppTypeId { get; set; }
public decimal AppTypeId { get; set; }
public decimal ModuleTypeId { get; set; }
public decimal ModuleTypeId { get; set; }
public decimal OperationTypeId { get; set; }
public decimal OperationTypeId { get; set; }
public DateTime OperationTime { get; set; }
public DateTime OperationTime { get; set; }
public string? AdditionalDesc { get; set; }
public string? AdditionalDesc { get; set; }
public string? ModItemId { get; set; }
public string? ModItemId { get; set; }
public decimal? ModTableTypeId { get; set; }
public decimal? ModTableTypeId { get; set; }
public DateTime? LastUpdate { get; set; }
public DateTime? LastUpdate { get; set; }
public virtual ICollection<LogValChangeNum> LogValChangeNum { get; set; } = new List<LogValChangeNum>();
public virtual ICollection<LogValChangeNum> LogValChangeNum { get; set; } = new List<LogValChangeNum>();
public virtual ICollection<LogValChangeTxt> LogValChangeTxt { get; set; } = new List<LogValChangeTxt>();
}
public virtual ICollection<LogValChangeTxt> LogValChangeTxt { get; set; } = new List<LogValChangeTxt>();
}