using System; using System.Collections.Generic; namespace MySystem.JavaProductModels { public partial class KxsMachineExpInfo { public int Id { get; set; } public int UserId { get; set; } public int MachineId { get; set; } public int AdvanceId { get; set; } public string UpdateBy { get; set; } public string CreateBy { get; set; } public int Version { get; set; } public string DelFlag { get; set; } public DateTime? UpdateTime { get; set; } public DateTime? CreateTime { get; set; } } }