| | |
| | | [Column(TypeName = "datetime2")] |
| | | public DateTime EndTime { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 质量状态,使用枚举 QualityState |
| | | /// </summary> |
| | | public int QualityState { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 质量不合格原因类型,枚举QualityNoOkEnum 【Editby shaocx,2024-06-26】 |
| | | /// </summary> |
| | | public int? QualityNoOk { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 质量不合格原因 【Editby shaocx,2024-06-26】 |
| | | /// </summary> |
| | | public string QualityNoOkReason { get; set; } |
| | | |
| | | public long QualityDataInfoID { get; set; } |
| | | |
| | |
| | | [StringLength(50)] |
| | | public string UpdatedUserName { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 操作类型,使用枚举 OperationType |
| | | /// </summary> |
| | | [StringLength(50)] |
| | | public string OperationType { get; set; } |
| | | [StringLength(255)] |
| | | public string Remarks { get; set; } |
| | | |
| | | |
| | | [StringLength(255)] |
| | | public string MyRemarks { get; set; } |
| | | |
| | | public bool IsDeleted { get; set; } |
| | | |
| | |
| | | /// 获取QC数据标记描述 【Editby shaocx,2024-06-15】 |
| | | /// </summary> |
| | | public string GetQcDataFlag_Remark { get; set; } |
| | | |
| | | |
| | | [StringLength(50)] |
| | | public string DataCapturePointCname { get; set; } |
| | | |
| | | [StringLength(50)] |
| | | public string UpdateDataCapturePointCname { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 需要更新70质量数据的标记 ( 1:需要更新 2:不需要更新) |
| | | /// </summary> |
| | | public int? Update70Flag { get; set; } |
| | | } |
| | | } |