using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ExternalDataSync.MOM { ///生产报工上传 public class ReportUploadQualityData { /// // 螺钉孔号 /// public string screwPositionNumber { get; set; } = ""; /// // 扭矩 /// public string torque { get; set; } = ""; /// // 螺桩高度测量值 /// public string dowelHeightValue { get; set; } = ""; /// // 合格标志 /// public string qualityResult { get; set; } = null; } }