using System; using System.Collections.Generic; namespace MySystem.JavaProductModels { public partial class KxsMachineCirculationLog { public int Id { get; set; } public string SourceSn { get; set; } public int OrderId { get; set; } public int UserId { get; set; } public string PidPath { get; set; } public int Pid { get; set; } public int MachineId { get; set; } public int Version { get; set; } public int DelFlag { get; set; } public DateTime? UpdateTime { get; set; } public DateTime? CreateTime { get; set; } } }