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 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; }
}
}