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.Base { /// /// 仓库编码 /// public class WarehouseSearchCondition : PageQueryConditionInfo { /// /// 区域Id /// public int? Id { get; set; } /// /// 仓库编码 /// public string WarehouseCode { get; set; } /// /// 是否正在使用 /// public bool? IsUsed { get; set; } } }