监控数据添加

This commit is contained in:
hsc
2026-06-26 16:07:22 +08:00
parent 4567f058b5
commit 571bdbf258
7 changed files with 222 additions and 76 deletions

View File

@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Model.Entity
{
public class MonitorValueEntity:BaseEntity
{
public string MonitorName;
public double MonitorValue;
}
}