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.

35 lines
813 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Sln.Iot.Model.Entity
{
/// <summary>
/// 固化炉(隧道炉)数据实体
/// </summary>
public class UnitsProcessOvenEntity
{
/// <summary>
/// 固化1温度设定值
/// </summary>
public int CureOven1SetValue { get; set; }
/// <summary>
/// 固化2温度设定值
/// </summary>
public int CureOven2SetValue { get; set; }
/// <summary>
/// 固化1温度实际值
/// </summary>
public int CureOven1ActValue { get; set; }
/// <summary>
/// 固化2温度实际值
/// </summary>
public int CureOven2ActValue { get; set; }
}
}