generated from wenjy/Sln.Iot
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.
112 lines
3.0 KiB
C#
112 lines
3.0 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Sln.Iot.Model.Entity
|
|
{
|
|
public class UnitsProcess1Entity
|
|
{
|
|
/// <summary>
|
|
/// 当前胶量设定值1
|
|
/// </summary>
|
|
public float GlueAmountSetValue1 { get; set; }
|
|
|
|
/// <summary>
|
|
/// 当前推胶速度设定值1
|
|
/// </summary>
|
|
public float GluePushSpeedSetValue1 { get; set; }
|
|
|
|
/// <summary>
|
|
/// 当前A1桶温度实际值1
|
|
/// </summary>
|
|
public int BarrelA1TempActValue1 { get; set; }
|
|
|
|
/// <summary>
|
|
/// 当前A2桶温度实际值1
|
|
/// </summary>
|
|
public int BarrelA2TempActValue1 { get; set; }
|
|
|
|
/// <summary>
|
|
/// 当前B1桶温度实际值1
|
|
/// </summary>
|
|
public int BarrelB1TempActValue1 { get; set; }
|
|
|
|
/// <summary>
|
|
/// 当前B2桶温度实际值1
|
|
/// </summary>
|
|
public int BarrelB2TempActValue1 { get; set; }
|
|
|
|
/// <summary>
|
|
/// 当前A泵压力实际值1
|
|
/// </summary>
|
|
public float PumpAPressureActValue1 { get; set; }
|
|
|
|
/// <summary>
|
|
/// 当前B泵压力实际值1
|
|
/// </summary>
|
|
public float PumpBPressureActValue1 { get; set; }
|
|
|
|
/// <summary>
|
|
/// 当前真空度实际值1
|
|
/// </summary>
|
|
public float VacuumDegreeActValue1 { get; set; }
|
|
|
|
/// <summary>
|
|
/// 保压时长设定值1
|
|
/// </summary>
|
|
public int PressureHoldTimeSetValue1 { get; set; }
|
|
|
|
/// <summary>
|
|
/// 当前胶量设定值2
|
|
/// </summary>
|
|
public float GlueAmountSetValue2 { get; set; }
|
|
|
|
/// <summary>
|
|
/// 当前推胶速度设定值2
|
|
/// </summary>
|
|
public float GluePushSpeedSetValue2 { get; set; }
|
|
|
|
/// <summary>
|
|
/// 当前A1桶温度实际值2
|
|
/// </summary>
|
|
public int BarrelA1TempActValue2 { get; set; }
|
|
|
|
/// <summary>
|
|
/// 当前A2桶温度实际值2
|
|
/// </summary>
|
|
public int BarrelA2TempActValue2 { get; set; }
|
|
|
|
/// <summary>
|
|
/// 当前B1桶温度实际值2
|
|
/// </summary>
|
|
public int BarrelB1TempActValue2 { get; set; }
|
|
|
|
/// <summary>
|
|
/// 当前B2桶温度实际值2
|
|
/// </summary>
|
|
public int BarrelB2TempActValue2 { get; set; }
|
|
|
|
/// <summary>
|
|
/// 当前A泵压力实际值2
|
|
/// </summary>
|
|
public float PumpAPressureActValue2 { get; set; }
|
|
|
|
/// <summary>
|
|
/// 当前B泵压力实际值2
|
|
/// </summary>
|
|
public float PumpBPressureActValue2 { get; set; }
|
|
|
|
/// <summary>
|
|
/// 当前真空度实际值2
|
|
/// </summary>
|
|
public float VacuumDegreeActValue2 { get; set; }
|
|
|
|
/// <summary>
|
|
/// 保压时长设定值2
|
|
/// </summary>
|
|
public int PressureHoldTimeSetValue2 { get; set; }
|
|
}
|
|
}
|