using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIP_Models { /// /// 质检结果提交详细实体 /// public class QualityStatusChangeDetailParam { /// /// 样品序号 /// public string no { get; set; } /// /// 检测项目编号 /// public string item { get; set; } /// /// 检测值 /// public decimal value { get; set; } /// /// 检测结果 /// public string testResults { get; set; } } }