You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
509 B
27 lines
509 B
6 months ago
|
using log4net;
|
||
|
|
||
|
namespace Service.BusinessTask.MyTask;
|
||
|
|
||
|
/// <summary>
|
||
|
/// 充电结束上报云平台task
|
||
|
/// </summary>
|
||
|
public class SwapOrderReportCloudTask : AbstractTaskHandler
|
||
|
{
|
||
|
|
||
|
private static readonly ILog _log = LogManager.GetLogger(typeof(SwapOrderReportCloudTask));
|
||
|
protected override int Interval()
|
||
|
{
|
||
|
return 20 * 1000;
|
||
|
}
|
||
|
|
||
|
protected override void Handle()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
protected override string Name()
|
||
|
{
|
||
|
return "SwapOrderReportCloudTask";
|
||
|
}
|
||
|
|
||
|
}
|