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.
41 lines
955 B
C#
41 lines
955 B
C#
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Aucma.Core.OldBoxFoam.Models
|
|
{
|
|
/// <summary>
|
|
/// plc夹具状态RECORD_BOXFOAM_FIXTURECOMPLATE
|
|
/// </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; }
|
|
|
|
|
|
}
|
|
}
|