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.Base { /// /// 单位查询 /// public class UnitSearchCondition : PageQueryConditionInfo { /// /// 库区Id /// public int? Id { get; set; } /// /// 单位编码 /// public string UnitCode { get; set; } /// /// 单位名称 /// public string UnitName { get; set; } /// /// 单位类型 /// public string UnitType { get; set; } /// /// 是否启用标志 /// public bool? IsUsed { get; set; } } }