StartUpResult.cs 838 B

1234567891011121314151617181920
  1. 
  2. namespace TapTap.AntiAddiction.Model
  3. {
  4. public static class StartUpResult
  5. {
  6. public const int INTERNAL_ERROR = -1; // 内部错误
  7. public const int LOGIN_SUCCESS = 500; // 登陆成功
  8. public const int EXITED = 1000; //用户登出
  9. public const int SWITCH_ACCOUNT = 1001; //切换账号
  10. public const int PERIOD_RESTRICT = 1030; //用户当前无法进行游戏
  11. public const int DURATION_LIMIT = 1050; //时长限制
  12. public const int REAL_NAME_STOP = 9002; //实名过程中点击了关闭实名窗
  13. // 新增
  14. // public const int OPEN_WITH_TIP = 1095; //未成年允许游戏弹窗
  15. // public const int VERIFIY_BLOCKED = 5001; // 身份认证中被卡主(中国使用,比如中宣部认证无响应)
  16. }
  17. }