34 lines
874 B
C#
34 lines
874 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Blink.Backoffice.Services.PcmDb.Entities;
|
|
|
|
public partial class LogOperation
|
|
{
|
|
public decimal OperationId { get; set; }
|
|
|
|
public decimal PosId { get; set; }
|
|
|
|
public decimal? OperatorId { get; set; }
|
|
|
|
public decimal AppTypeId { get; set; }
|
|
|
|
public decimal ModuleTypeId { get; set; }
|
|
|
|
public decimal OperationTypeId { get; set; }
|
|
|
|
public DateTime OperationTime { get; set; }
|
|
|
|
public string? AdditionalDesc { get; set; }
|
|
|
|
public string? ModItemId { get; set; }
|
|
|
|
public decimal? ModTableTypeId { get; set; }
|
|
|
|
public DateTime? LastUpdate { get; set; }
|
|
|
|
public virtual ICollection<LogValChangeNum> LogValChangeNum { get; set; } = new List<LogValChangeNum>();
|
|
|
|
public virtual ICollection<LogValChangeTxt> LogValChangeTxt { get; set; } = new List<LogValChangeTxt>();
|
|
}
|