using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIP_Models { /// /// 质量检测结果详细实体 /// public class InspectionDetailView { /// /// 检测项目编号 /// public string item { get; set; } /// /// 预测结果 /// public string forecastResult { get; set; } /// /// 检测值 /// public string value { get; set; } } }