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 { /// /// 收货组盘条件 /// public class InReceiptCondition : PageQueryConditionInfo { /// /// 单号 /// public string No { get; set; } /// /// 日期 /// public DateTime? Date { get; set; } /// /// 供应商名称 /// public string SupplierName { get; set; } } }