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 { /// /// 库存查询条件 /// public class BalanceCondition : PageQueryConditionInfo { /// /// 单据号 /// public string No { get; set; } /// /// 物品名称 /// public string MaterielName { get; set; } /// /// 物品编码 /// public string MaterielCode { get; set; } /// /// 条码 /// public string BarCode { get; set; } } }