using FreeSql.DataAnnotations;
using System;
using System.Collections.Generic;
using System.Diagnostics.Metrics;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CapMachine.Model
{
///
/// 步骤
///
[Table(Name = "ProStep")]
public class ProStep
{
///
/// 主键
///
[Column(IsPrimary = true, IsIdentity = true)]
public long Id { get; set; }
///
/// 程序步骤序号
///
[Column(Name = "StepNo")]
public int StepNo { get; set; }
///
/// 程序步骤反复次数
///
[Column(Name = "StepRepeat")]
public int StepRepeat { get; set; }
/////
///// 程序段反复
/////
//[Column(Name = "ProRepeat")]
//public int ProRepeat { get; set; }
///
/// 备注
///
[Column(Name = "Remark", IsNullable = false, StringLength = 200)]
public string Remark { get; set; }
[Column(ServerTime = DateTimeKind.Local, CanUpdate = false)]
public DateTime CreateTime { get; set; }
///
/// 速度内部步骤的循环次数
///
[Column(Name = "SpeedCycle")]
public int SpeedCycle { get; set; }
///
/// ///////////////////////////////////////////导航属性///////////////////////////////////////////////////////
///
public List? MeterSpeeds { get; set; }=new List();
public List? MeterCond1Temps { get; set; }=new List();
public List? MeterCond2Temps { get; set; }= new List();
public List? MeterCond2Presss { get; set; } = new List();
public List? MeterEVAPExpTemps { get; set; }=new List();
public List? MeterExPresss { get; set; }=new List();
public List? MeterHVVols { get; set; } = new List();
public List? MeterInhPresss { get; set; } = new List();
public List? MeterInhTemps { get; set; } = new List();
public List? MeterLubePresss { get; set; } = new List();
public List? MeterLVVols { get; set; } = new List();
public List? MeterOCRs { get; set; }=new List();
public List? MeterOS1Temps { get; set; }=new List();
public List? MeterOS2Temps { get; set; }=new List();
public List? MeterPTCEntTemps { get; set; }=new List();
public List? MeterPTCFlows { get; set; }=new List();
public List? MeterPTCPws { get; set; } = new List();
public List? MeterEnvRHs { get; set; }=new List();
public List? MeterEnvTemps { get; set; }=new List();
///
/// ///////////////////////////////////////////导航属性///////////////////////////////////////////////////////
///
public long ProgramSegId { get; set; }
public ProgramSeg? ProgramSeg { get; set; }
}
}