using System; using System.Collections.Generic; namespace MySystem.JavaProductModels { public partial class KxsTicketUpgrade { public int Id { get; set; } public int SourceCount { get; set; } public string SourceTickets { get; set; } public string UpTickets { get; set; } public int UpCount { get; set; } public string Remark { get; set; } public int UserId { get; set; } public int Version { get; set; } public string DelFlag { get; set; } public DateTime? UpdateTime { get; set; } public DateTime? CreateTime { get; set; } public string Username { get; set; } public string UserCode { get; set; } } }