12345678910111213141516171819202122232425262728293031323334 |
- 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
- {
- /// <summary>
- /// 上架规则查询
- /// </summary>
-
- public class PutAwayRuleSearchCondition : PageQueryConditionInfo
- {
- /// <summary>
- /// 规则编码
- /// </summary>
-
- public string RuleCode { get; set; }
- /// <summary>
- /// 描述
- /// </summary>
-
- public string Describe { get; set; }
- /// <summary>
- /// 是否正在使用
- /// </summary>
-
- public bool? IsUsed { get; set; }
- }
- }
|