|
@@ -1105,6 +1105,10 @@ namespace MySystem
|
|
|
function.WriteLog("end", "训练营60拦截日志");
|
|
|
return 100;
|
|
|
}
|
|
|
+ if(CheckSpecialUserNav(order.UserId))
|
|
|
+ {
|
|
|
+ return 100;
|
|
|
+ }
|
|
|
return 160;
|
|
|
}
|
|
|
if(user.OperateLevel == 3) return 180;
|
|
@@ -1176,6 +1180,15 @@ namespace MySystem
|
|
|
return op;
|
|
|
}
|
|
|
|
|
|
+ public bool CheckSpecialUserNav(int UserId)
|
|
|
+ {
|
|
|
+ List<int> ids = new List<int>();
|
|
|
+ WebCMSEntities maindb = new WebCMSEntities();
|
|
|
+ bool op = maindb.Users.Any(m => m.ParentNav.Contains(",246751,") || m.Id == 246751);
|
|
|
+ maindb.Dispose();
|
|
|
+ return op;
|
|
|
+ }
|
|
|
+
|
|
|
/// <summary>
|
|
|
/// 获取可提现金额
|
|
|
/// </summary>
|