using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace NXWMS.Model.AppModels.Condition.NXPDA.InStock { public class SaveInspectionDetail { public int InspectionDtlId { get; set; } public string MaterielCode { get; set; } /// /// 结果 /// public string InspectionResult { get; set; } public decimal Qty { get; set; } } }