using NXWMS.Client.Model.CoreModels; using System; using System.Collections.Generic; using System.Linq; using System.Runtime.Serialization; using System.Text; using System.Threading.Tasks; namespace NXWMS.Client.Model.AppModels.Condition.Rule { /// /// 上架规则查询 /// public class OrderDistributionRuleSearchCondition : PageQueryConditionInfo { /// /// 规则编码 /// public string RuleCode { get; set; } /// /// 描述 /// public string Describe { get; set; } /// /// 是否正在使用 /// public bool? IsUsed { get; set; } } }