KxsShdScore.cs 1.0 KB

1234567891011121314151617181920212223242526272829
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem.KxsUserModels
  4. {
  5. public partial class KxsShdScore
  6. {
  7. public int Id { get; set; }
  8. public int UserId { get; set; }
  9. public int Month { get; set; }
  10. public int HighScore { get; set; }
  11. public int CenterScore { get; set; }
  12. public int FirstScore { get; set; }
  13. public string UserCode { get; set; }
  14. public string Username { get; set; }
  15. public long Version { get; set; }
  16. public string DelFlag { get; set; }
  17. public DateTime? UpdateTime { get; set; }
  18. public DateTime? CreateTime { get; set; }
  19. public int EyasScore { get; set; }
  20. public int PrivateScore { get; set; }
  21. public decimal ShdBonusAmt { get; set; }
  22. public decimal EyasBonusAmt { get; set; }
  23. public decimal PrivateBonusAmt { get; set; }
  24. public decimal FirstBonusAmt { get; set; }
  25. public decimal CenterBonusAmt { get; set; }
  26. public decimal HighBonusAmt { get; set; }
  27. }
  28. }