namespace DOAN.Model.Business { /// /// 首件检验 /// [SugarTable("qc_firstarticle_inspection")] public class QcFirstarticleInspection { /// /// 主键 /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public int Id { get; set; } /// /// 工单号 /// [SugarColumn(ColumnName = "fk_workorder")] public string FkWorkorder { get; set; } /// /// 工厂编码 /// public string FactoryCode { get; set; } /// /// 产线编码(U01) /// public string LineCode { get; set; } /// /// 设备编码 /// public string MachineCode { get; set; } /// /// 产品编码 /// public string ProductCode { get; set; } /// /// 产品名称 /// public string Productname { get; set; } /// /// SN码 /// public string SNnumber { get; set; } /// /// 参数名 /// [SugarColumn(ColumnName = "paramter_name")] public string ParamterName { get; set; } /// /// 标准值 /// [SugarColumn(ColumnName = "standard_paramter_value")] public decimal StandardParamterValue { get; set; } /// /// 参数值 /// [SugarColumn(ColumnName = "real_paramter_value")] public decimal RealParamterValue { get; set; } /// /// 上限 /// [SugarColumn(ColumnName = "up_range_limit")] public decimal UpRangeLimit { get; set; } /// /// 下限 /// [SugarColumn(ColumnName = "low_range_limit")] public decimal LowRangeLimit { get; set; } /// /// 单位 /// public string Unit { get; set; } /// /// 检测结果 /// public string CheckResult { get; set; } /// /// 参数时间 /// public DateTime? ParamTime { get; set; } /// /// 创建人 /// public string Createdby { get; set; } /// /// 更新人 /// public string Updatedby { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnName = "created_time")] public DateTime? CreatedTime { get; set; } /// /// 更新时间 /// [SugarColumn(ColumnName = "updated_time")] public DateTime? UpdatedTime { get; set; } } }