You can not 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
1.0 KiB

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Module.DB.Model
{
public class Hp2InfoModel
{
/// <summary>
/// HP2配方号
/// </summary>
public string f_hp2_rep_no { get; set; }
/// <summary>
/// HP2设定温度
/// </summary>
public decimal f_hp2_temp { get; set; }
/// <summary>
/// HP2吹氮气时间
/// </summary>
public decimal f_hp2_n2_time { get; set; }
/// <summary>
/// HP2吹氮气N₂
/// </summary>
public int f_hp2_n2 { get; set; }
/// <summary>
/// 步骤号
/// </summary>
public int f_hp2_seq_no { get; set; }
/// <summary>
/// HP2烘烤间隙
/// </summary>
public decimal f_hp2_interval { get; set; }
/// <summary>
/// HP2烘烤时间
/// </summary>
public decimal f_hp2_time_num { get; set; }
}
}