using System;
using System.Collections.Generic;
using System.Text;
namespace APT.BaseData.Domain.ApiModel.Platform
{
public class TableStatisticalModel
{
///
/// guid
///
public Guid key { get; set; }
///
/// 序号
///
public int Index { get; set; }
///
/// 名称
///
public string Name { get; set; }
///
/// 节点名称
///
public string NodeName { get; set; }
///
/// 最大值
///
public decimal Max { get; set; }
///
/// 最小值
///
public decimal Min { get; set; }
///
/// /平均值
///
public decimal Avg { get; set; }
///
/// 设定值
///
public decimal Set { get; set; }
}
}