SaveInspectionDetail.cs 491 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace NXWMS.Model.AppModels.Condition.NXPDA.InStock
  7. {
  8. public class SaveInspectionDetail
  9. {
  10. public int InspectionDtlId { get; set; }
  11. public string MaterielCode { get; set; }
  12. /// <summary>
  13. /// 结果
  14. /// </summary>
  15. public string InspectionResult { get; set; }
  16. public decimal Qty { get; set; }
  17. }
  18. }