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 CustomerSearchCondition : PageQueryConditionInfo { /// /// Id /// public int? Id { get; set; } /// /// 客户编号 /// public string CustomerCode { get; set; } /// /// 客户名称 /// public string CustomerName { get; set; } /// /// 客户类型 /// public string CustomerType { get; set; } /// /// 省份 /// public string Province { get; set; } /// /// 市 /// public string City { get; set; } /// /// 使用标识 /// public bool? IsUsed { get; set; } } }