123456789101112131415161718192021222324 |
- 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.Condition.NXPDA.InStock
- {
- /// <summary>
- /// 对应托盘收货单列表
- /// </summary>
- public class InReceiptPalletCondition : PageQueryConditionInfo
- {
- /// <summary>
- /// 托盘编码
- /// </summary>
-
- public string PalletCode { get; set; }
-
- }
- }
|