5fenzhogn

dep_yangw
我叫锄头 11 months ago
parent 31029e7022
commit 62ee336bb8

@ -768,7 +768,7 @@ namespace ProductionSystem.Forms
string name = GetCode() + ":Step2";
if (!_cache.ContainsKey(name))
{
_cache.Set(name, DateTime.Now, TimeSpan.FromMinutes(1));
_cache.Set(name, DateTime.Now, TimeSpan.FromMinutes(5));
Step2();
}
@ -790,7 +790,7 @@ namespace ProductionSystem.Forms
string name =GetCode() + ":Step3";
if (!_cache.ContainsKey(name))
{
_cache.Set(name, DateTime.Now, TimeSpan.FromMinutes(1));
_cache.Set(name, DateTime.Now, TimeSpan.FromMinutes(5));
Step3();
}
@ -808,7 +808,7 @@ namespace ProductionSystem.Forms
string name = GetCode() + ":Step4";
if (!_cache.ContainsKey(name))
{
_cache.Set(name, DateTime.Now, TimeSpan.FromMinutes(1));
_cache.Set(name, DateTime.Now, TimeSpan.FromMinutes(5));
Step4();
}
@ -823,7 +823,7 @@ namespace ProductionSystem.Forms
string name = GetCode() + ":Step5";
if (!_cache.ContainsKey(name))
{
_cache.Set(name, DateTime.Now, TimeSpan.FromMinutes(1));
_cache.Set(name, DateTime.Now, TimeSpan.FromMinutes(5));
Step5();
}
@ -839,7 +839,7 @@ namespace ProductionSystem.Forms
string name = GetCode() + ":Step6";
if (!_cache.ContainsKey(name))
{
_cache.Set(name, DateTime.Now, TimeSpan.FromMinutes(1));
_cache.Set(name, DateTime.Now, TimeSpan.FromMinutes(5));
Step6();
}
@ -854,7 +854,7 @@ namespace ProductionSystem.Forms
string name = GetCode() + ":Step7";
if (!_cache.ContainsKey(name))
{
_cache.Set(name, DateTime.Now, TimeSpan.FromMinutes(1));
_cache.Set(name, DateTime.Now, TimeSpan.FromMinutes(5));
Step7();
}
@ -871,7 +871,7 @@ namespace ProductionSystem.Forms
string name = GetCode() + ":Step8";
if (!_cache.ContainsKey(name))
{
_cache.Set(name, DateTime.Now, TimeSpan.FromMinutes(1));
_cache.Set(name, DateTime.Now, TimeSpan.FromMinutes(5));
Step8();
}

Loading…
Cancel
Save