Files
upper-limit-crawler/ULDealing.cs

28 lines
404 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace upper_limit_crawler
{
class ULDealing : ULObj
{
public ULDealing(ULDataMgr DataMgr) : base(DataMgr)
{
}
public override void Refresh(int iCurTime)
{
if(m_iLastTime == 0)
{
base.Refresh(iCurTime);
return;
}
base.Refresh(iCurTime);
}
}
}