namespace RIZO.Model.Mes.GatherData { /// /// 生产工艺参数 /// [SugarTable("process_parameter")] public class ProcessParameter { /// /// Id /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public long Id { get; set; } /// /// 工艺路线编码 /// [SugarColumn(ColumnName = "process_code")] public string ProcessCode { get; set; } /// /// 工艺路线名称 /// [SugarColumn(ColumnName = "process_name")] public string ProcessName { get; set; } /// /// 工序编码 /// [SugarColumn(ColumnName = "operation_code")] public string OperationCode { get; set; } /// /// 工序名称 /// [SugarColumn(ColumnName = "operation_name")] public string OperationName { get; set; } /// /// 首检标志(0:不是首检,1是首检) /// [SugarColumn(ColumnName = "first_inspection")] public int? FirstInspection { get; set; } /// /// 产品标识(PLC交互编码) /// [SugarColumn(ColumnName = "plc_code")] public string PlcCode { get; set; } /// /// 工位号 /// [SugarColumn(ColumnName = "work_station")] public string WorkStation { get; set; } /// /// 温度 /// public string Temperature { get; set; } /// /// 压力 /// public string Pressure { get; set; } /// /// 数据采集时间 /// [SugarColumn(ColumnName = "collection_time")] public DateTime? CollectionTime { get; set; } /// /// 创建人 /// [SugarColumn(ColumnName = "create_by")] public string CreateBy { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnName = "create_time")] public DateTime? CreateTime { get; set; } /// /// 更新人 /// [SugarColumn(ColumnName = "update_by")] public string UpdateBy { get; set; } /// /// 更新时间 /// [SugarColumn(ColumnName = "update_time")] public DateTime? UpdateTime { get; set; } /// /// 删除标志(0:未删除,1:已删除) /// public int? Delflag { get; set; } } }