You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
659 B

2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Text;
  5. namespace Shentun.Peis.Enums
  6. {
  7. /// <summary>
  8. /// 性别枚举 M-男,F-女,U-未知
  9. /// </summary>
  10. public static class SexFlag
  11. {
  12. /// <summary>
  13. /// 男
  14. /// </summary>
  15. [Description("男")]
  16. public const string Male = "M";
  17. /// <summary>
  18. /// 女
  19. /// </summary>
  20. [Description("女")]
  21. public const string Female = "F";
  22. /// <summary>
  23. /// 未知
  24. /// </summary>
  25. [Description("未知")]
  26. public const string UnKnown = "U";
  27. }
  28. }