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