d_sms_service/APT.BaseData.Domain/ApiModel/Platform/TableStatisticalModel.cs

50 lines
1.0 KiB
C#
Raw Permalink Normal View History

2024-10-28 13:45:58 +08:00
using System;
using System.Collections.Generic;
using System.Text;
namespace APT.BaseData.Domain.ApiModel.Platform
{
public class TableStatisticalModel
{
/// <summary>
/// guid
/// </summary>
public Guid key { get; set; }
/// <summary>
/// 序号
/// </summary>
public int Index { get; set; }
/// <summary>
/// 名称
/// </summary>
public string Name { get; set; }
/// <summary>
/// 节点名称
/// </summary>
public string NodeName { get; set; }
/// <summary>
/// 最大值
/// </summary>
public decimal Max { get; set; }
/// <summary>
/// 最小值
/// </summary>
public decimal Min { get; set; }
/// <summary>
/// /平均值
/// </summary>
public decimal Avg { get; set; }
/// <summary>
/// 设定值
/// </summary>
public decimal Set { get; set; }
}
}