LoginCodeConst.cs 218 B

12345678910111213
  1. using System.ComponentModel;
  2. namespace GxPress.EnumConst
  3. {
  4. /// <summary>
  5. /// 登陆CODE
  6. /// </summary>
  7. public enum LoginCodeConst
  8. {
  9. [Description("未登录")]
  10. UnLogin = 201,
  11. }
  12. }