V3 基础设施: GatewayClient+3个Quartz Job+Startup注册

This commit is contained in:
2026-05-17 10:41:59 +08:00
parent 4546d57a7c
commit 12ace53650
6 changed files with 221 additions and 0 deletions
@@ -0,0 +1,20 @@
using Quartz;
using Microsoft.Extensions.DependencyInjection;
using System;
using System.Threading.Tasks;
namespace VolPro.Warehouse.Services;
/// <summary>
/// 实时数据轮询任务(Phase 2 完善)。
/// 定时轮询 MC4.0 IoT 设备实时值 → 更新 iot_devicedata。
/// Cron 建议: 每 10 秒 ("0/10 * * * * ?")
/// </summary>
public class RealtimePollJob : IJob
{
public Task Execute(IJobExecutionContext context)
{
// TODO: Phase 2 — 遍历在线 MC4 网关,轮询实时值写入 iot_devicedata
return Task.CompletedTask;
}
}