|
|
|
|
|
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 OvenPlcData
|
|
|
|
|
|
{
|
|
|
|
|
|
[PrimaryKey]
|
|
|
|
|
|
public string GUID { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <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 CureOven1TempActValue { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 固化炉温度2
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public int CureOven2TempActValue { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 固化炉温度3
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public int CureOven3TempActValue { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 固化炉温度4
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public int CureOven4TempActValue { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|