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.Result.NXPDA.OutStock { /// /// 到货通知单托盘结果 /// public class InArrivalNoticePalletMainResult { /// /// 是否有效 /// public bool IsEffective { get; set; } /// /// 二级容器 /// public IEnumerable Details { get; set; } } }