123456789101112131415161718192021222324 |
- 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; }
- /// <summary>
- /// 结果
- /// </summary>
- public string InspectionResult { get; set; }
- public decimal Qty { get; set; }
- }
- }
|