监控数据添加

This commit is contained in:
hsc
2026-06-26 16:07:22 +08:00
parent 4567f058b5
commit 8f124fb08d
10 changed files with 440 additions and 141 deletions

View File

@@ -0,0 +1,17 @@
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Model.Entity
{
public class MonitorValueEntity:BaseEntity
{
[SugarColumn(ColumnName = "MonitorName")]
public string MonitorName { get; set; }
[SugarColumn(ColumnName = "MonitorValue")]
public double MonitorValue { get; set; }
}
}