using NXWMS.Client.Model.CoreModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.Text;
namespace NXWMS.Client.Model.AppModels.Condition.Rule
{
///
/// 上架明细规则查询
///
public class PutAwayRuleDetailSearchCondition : OperationInfo
{
///
/// 规则明细Id
///
public string RuleDtlId { get; set; }
///
/// 规则明细编码
///
public string RuleItemCode { get; set; }
///
/// 规则Id
///
public int? RuleId { get; set; }
///
/// 是否正在使用
///
public bool IsUsed { get; set; }
}
}