using DapperORMCore.Model.CoreModel; using System; using System.Collections.Generic; using System.Linq; using System.Runtime.Serialization; using System.Text; using System.Threading.Tasks; namespace NXWMS.Model.AppModels.Condition.NXPDA.InStock { /// /// 保存质检 /// public class SaveInspectionDetailCondition { /// /// 收货单号 /// public string InspectionCode { get; set; } /// /// 物料条码s /// public IEnumerable Detail { get; set; } } }