You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

53 lines
1.3 KiB
C#

using System;
using System.Collections.Generic;
using System.Text;
#region << 版 本 注 释 >>
/*--------------------------------------------------------------------
* (c) 2024 WenJY
* CLR4.0.30319.42000
* T14-GEN3-7895
* SlnMesnac.Model.dto
* 72de6948-1a7f-4f38-be57-6a095166f5db
*
* WenJY
*
* 2024-10-31 9:39:05
* V1.0.0
*
*
*--------------------------------------------------------------------
*
*
*
*
* V1.0.0
*--------------------------------------------------------------------*/
#endregion << 版 本 注 释 >>
namespace SlnMesnac.Model.dto
{
public class RealTemperatureInfo
{
/// <summary>
/// 最高温
/// </summary>
public float fMaxTemperature { get; set; }
/// <summary>
/// 最低温
/// </summary>
public float fMinTemperature { get; set; }//
/// <summary>
/// 平均温
/// </summary>
public float fAverageTemperature { get; set; }//
/// <summary>
/// 温差
/// </summary>
public float fTemperatureDiff { get; set; }//
}
}