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