SCCLottery.cs 928 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. using System.ComponentModel;
  2. namespace Common
  3. {
  4. /// <summary>
  5. /// 彩种枚举
  6. /// </summary>
  7. public enum SCCLottery
  8. {
  9. #region 全国彩
  10. /// <summary>
  11. /// 福彩3D
  12. /// </summary>
  13. [CustomAttribute.TableNameAttribute("QG_FC3D")]
  14. [Description("福彩3D")]
  15. QGC_FC3D,
  16. /// <summary>
  17. /// 双色球
  18. /// </summary>
  19. [CustomAttribute.TableNameAttribute("QG_FCSSQ")]
  20. [Description("双色球")]
  21. QGC_SSQ,
  22. /// <summary>
  23. /// 排列三、排列五
  24. /// </summary>
  25. [CustomAttribute.TableNameAttribute("QG_TCP3")]
  26. [Description("排列三")]
  27. QGC_PL3,
  28. /// <summary>
  29. /// 大乐透
  30. /// </summary>
  31. [CustomAttribute.TableNameAttribute("QG_TCDLT")]
  32. [Description("大乐透")]
  33. QGC_DLT,
  34. #endregion
  35. }
  36. }