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.InStock
- {
- /// <summary>
- ///
- /// </summary>
- public class InInspectionPalletMainResult
- {
- /// <summary>
- /// 是否有效
- /// </summary>
-
- public bool IsEffective { get; set; }
- /// <summary>
- /// 二级容器
- /// </summary>
-
- public IEnumerable<InInspectionPalletResult> Details { get; set; }
- }
- }
|