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.
66 lines
1.6 KiB
C#
66 lines
1.6 KiB
C#
using SQLite;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Sln.Iot.Repository.dao
|
|
{
|
|
public class VacuumInjectionPlcData
|
|
{
|
|
[PrimaryKey]
|
|
public string GUID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 当前胶量设定值
|
|
/// </summary>
|
|
public float GlueAmountSetValue { get; set; }
|
|
|
|
/// <summary>
|
|
/// 当前推胶速度设定值
|
|
/// </summary>
|
|
public float GluePushSpeedSetValue { get; set; }
|
|
|
|
/// <summary>
|
|
/// 当前A1桶温度实际值
|
|
/// </summary>
|
|
public int BarrelA1TempActValue { get; set; }
|
|
|
|
/// <summary>
|
|
/// 当前A2桶温度实际值
|
|
/// </summary>
|
|
public int BarrelA2TempActValue { get; set; }
|
|
|
|
/// <summary>
|
|
/// 当前B1桶温度实际值
|
|
/// </summary>
|
|
public int BarrelB1TempActValue { get; set; }
|
|
|
|
/// <summary>
|
|
/// 当前B2桶温度实际值
|
|
/// </summary>
|
|
public int BarrelB2TempActValue { 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; }
|
|
|
|
/// <summary>
|
|
/// 保压时长设定值
|
|
/// </summary>
|
|
public int PressureHoldTimeSetValue { get; set; }
|
|
}
|
|
}
|