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.
Shihong-Delta.Injection.Iot/Sln.Iot.Model/Entity/UnitsProcessVacuumEntity.cs

110 lines
2.7 KiB
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 UnitsProcessVacuumEntity
{
/// <summary>
/// 配方数据
/// </summary>
public string FormulaData { get; set; }
/// <summary>
/// 推胶速度设定值
/// </summary>
public float GluePushSpeedSetValue { get; set; }
/// <summary>
/// 胶量设定值1
/// </summary>
public float GlueAmountSetValue1 { get; set; }
/// <summary>
/// 胶量设定值2
/// </summary>
public float GlueAmountSetValue2 { get; set; }
/// <summary>
/// 胶量设定值3
/// </summary>
public float GlueAmountSetValue3 { get; set; }
/// <summary>
/// 胶量设定值4
/// </summary>
public float GlueAmountSetValue4 { get; set; }
/// <summary>
/// 胶量设定值5
/// </summary>
public float GlueAmountSetValue5 { get; set; }
/// <summary>
/// 胶量设定值6
/// </summary>
public float GlueAmountSetValue6 { get; set; }
/// <summary>
/// 胶量设定值7
/// </summary>
public float GlueAmountSetValue7 { get; set; }
/// <summary>
/// 胶量设定值8
/// </summary>
public float GlueAmountSetValue8 { get; set; }
/// <summary>
/// 胶量设定值9
/// </summary>
public float GlueAmountSetValue9 { get; set; }
/// <summary>
/// 胶量设定值10
/// </summary>
public float GlueAmountSetValue10 { get; set; }
/// <summary>
/// 真空度设定值
/// </summary>
public float VacuumDegreeSetValue { get; set; }
/// <summary>
/// 保压时长设定值
/// </summary>
public int PressureHoldTimeSetValue { get; set; }
/// <summary>
/// 真空箱是否启用设定值
/// </summary>
public int VacuumIsUseSetValue { get; set; }
/// <summary>
/// 总胶量设定值
/// </summary>
public float TotalGlueAmountSetValue { get; set; }
/// <summary>
/// A泵压力实际值
/// </summary>
public float PumpAPressureActValue { get; set; }
/// <summary>
/// B泵压力实际值
/// </summary>
public float PumpBPressureActValue { get; set; }
/// <summary>
/// 灌胶真空度实际值
/// </summary>
public float VacuumDegreeActValue { get; set; }
}
}