30 lines
943 B
C#
30 lines
943 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
#nullable disable
|
|
|
|
namespace Pcm.Db.Entities;
|
|
|
|
public class LogOperation
|
|
{
|
|
public LogOperation()
|
|
{
|
|
LogValChangeNums = new HashSet<LogValChangeNum>();
|
|
LogValChangeTxts = new HashSet<LogValChangeTxt>();
|
|
}
|
|
|
|
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> LogValChangeNums { get; set; }
|
|
public virtual ICollection<LogValChangeTxt> LogValChangeTxts { get; set; }
|
|
} |