using System; using System.Collections.Generic; namespace MySystem.KxsUserModels { public partial class KxsShdScore { public int Id { get; set; } public int UserId { get; set; } public int Month { get; set; } public int HighScore { get; set; } public int CenterScore { get; set; } public int FirstScore { get; set; } public string UserCode { get; set; } public string Username { get; set; } public long Version { get; set; } public string DelFlag { get; set; } public DateTime? UpdateTime { get; set; } public DateTime? CreateTime { get; set; } } }