Commit 41f36fec authored by 潘栩锋's avatar 潘栩锋 🚴

修复 测辊时,最小值 2m/min 是写死的值。 正确应该从系统参数获取

parent 610be971
......@@ -223,7 +223,7 @@ namespace FLY.Thick.Base.Server
if (dtRound != DateTime.MinValue)
{
double v = MmOfR / 1000.0 / (dt - dtRound).TotalMinutes;
if (v < 2)//太慢了
if (v < FilmVThreshold)//太慢了
{
dt = DateTime.MinValue;
v = 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment