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