1234567891011121314151617181920212223 |
- 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.Balance
- {
- /// <summary>
- /// 差异盘点
- /// </summary>
- public class DifferenceInventoryPalletCondition : OperationInfo
- {
- /// <summary>
- /// 托盘号
- /// </summary>
-
- public string PallectCode { get; set; }
- }
- }
|