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.

57 lines
1.3 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Sln.Iot.CFX.Entity
{
public class UnitsProcess3Entity
{
/// <summary>
/// 预热炉温度
/// </summary>
public int PreheatOvenTempActValue { get; set; }
/// <summary>
/// 预固炉温度1
/// </summary>
public int PreCureOven1TempActValue { get; set; }
/// <summary>
/// 预固炉温度2
/// </summary>
public int PreCureOven2TempActValue { get; set; }
/// <summary>
/// 预固炉温度3
/// </summary>
public int PreCureOven3TempActValue { get; set; }
/// <summary>
/// 预固炉温度4
/// </summary>
public int PreCureOven4TempActValue { get; set; }
/// <summary>
/// 固化炉温度1
/// </summary>
public int CureOven1ActValue { get; set; }
/// <summary>
/// 固化炉温度2
/// </summary>
public int CureOven2ActValue { get; set; }
/// <summary>
/// 固化炉温度3
/// </summary>
public int CureOven3ActValue { get; set; }
/// <summary>
/// 固化炉温度4
/// </summary>
public int CureOven4ActValue { get; set; }
}
}