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.Balance { /// /// 差异盘点 托盘号结果 /// public class DifferenceInventoryPalletResult { /// /// 是否有效 /// public bool IsEffective { get; set; } /// /// 二级容器 /// public IEnumerable Details { get; set; } } }