1234567891011121314151617181920212223242526272829 |
- 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; }
- public int EyasScore { get; set; }
- public int PrivateScore { get; set; }
- public decimal ShdBonusAmt { get; set; }
- public decimal EyasBonusAmt { get; set; }
- public decimal PrivateBonusAmt { get; set; }
- public decimal FirstBonusAmt { get; set; }
- public decimal CenterBonusAmt { get; set; }
- public decimal HighBonusAmt { get; set; }
- }
- }
|