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.Balance
- {
- /// <summary>
- /// 盘点条码
- /// </summary>
- public class InventoryBarCodeCondition : OperationInfo
- {
- /// <summary>
- /// 条码号
- /// </summary>
-
- public string MaterielBarCode { get; set; }
- }
- }
|