using System; using System.Collections.Generic; namespace MySystem.JavaProductModels { public partial class KxsMachineCashOrder { public int Id { get; set; } public string UserCode { get; set; } public string Username { get; set; } public int MachineId { get; set; } public int MachineApplyId { get; set; } public int ShopOrderId { 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; } public int UserId { get; set; } } }