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 SupplierSearchCondition : PageQueryConditionInfo { /// /// 库区Id /// public int? Id { get; set; } /// /// 供应商编码 /// public string SupplierCode { get; set; } /// /// 供应商名称 /// public string SupplierName { get; set; } /// /// 供应商类型 /// public string SupplierType { get; set; } /// /// 省 /// public string Province { get; set; } /// /// 市 /// public string City { get; set; } /// /// 使用标识 /// public bool? IsUsed { get; set; } } }