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.
|
|
|
|
using SqlSugar;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Aucma.Core.BoxFoam.Models
|
|
|
|
|
{
|
|
|
|
|
public class LastShotRecordModel
|
|
|
|
|
{
|
|
|
|
|
public int No { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 所属系统;1系统 2系统
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string System { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 枪头
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string GunHead { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 工位号
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string StationNumber { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// POL注料压力
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string PolInjectionpressure { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// ISO注料压力
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string IsoInjectionpressure { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// POL注料温度
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string PolInjectiontemperature { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// ISO注料温度
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string IsoInjectiontemperature { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 最后一次时间
|
|
|
|
|
/// </summary>
|
|
|
|
|
public DateTime LastTime { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 创建时间
|
|
|
|
|
/// </summary>
|
|
|
|
|
public DateTime Createtime { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|