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.

51 lines
1.3 KiB
C#

1 year ago
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Aucma.Core.BoxFoam.Models
{
/// <summary>
/// plc夹具状态
/// </summary>
public class FixtureStatus
{
public int ObjId { get; set; }
/// <summary>
/// 夹具箱型
/// </summary>
public string FixtureBoxType { get; set; }
/// <summary>
/// 夹具状态
/// </summary>
public int Status { get; set; }
/// <summary>
/// 夹具产量
/// </summary>
public int Yield { get; set; }
/// <summary>
/// 固化时间设定值
/// </summary>
public int PlanCuringTime { get; set; }
/// <summary>
/// 固化时间显示值
/// </summary>
public int RealCuringTime { get; set; }
/// <summary>
/// 内模温度
/// </summary>
public string InternalTemperature { get; set; }
/// <summary>
/// 外膜温度
/// </summary>
public string OutsideTemperature { get; set; }
///// <summary>
///// 生产节拍
///// </summary>
1 year ago
public float ProductionCycle { get; set; }
1 year ago
}
}