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