18 lines
420 B
C#
18 lines
420 B
C#
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; }
|
|
}
|
|
}
|