Add DRS
This commit is contained in:
@@ -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>();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user