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 CustomerCondition : OperationInfo { /// /// id /// public int? Id { get; set; } /// /// ids /// public string Ids { get; set; } /// /// /// public bool IsUsed { 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 string Area { get; set; } /// /// 街道 /// public string Street { get; set; } /// /// 路线 /// public string Route { get; set; } /// /// 邮政编码 /// public string PostalCode { get; set; } /// /// 地址 /// public string Address { get; set; } /// /// 联系人 /// public string Contract { get; set; } /// /// 联系电话 /// public string ContractPhone { get; set; } /// /// 缺省上架规则 /// public string DefaultPutShelfRule { get; set; } /// /// 缺省分配规则 /// public string DefaultDistributionRule { get; set; } /// /// 描述 /// public string Describe { get; set; } } }