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