using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace POSV.OtherWaiMai { [Serializable] [JsonObject(MemberSerialization.OptIn)] public class BaiduOrderUser { /// /// 客户名称 /// [JsonProperty(PropertyName = "name")] public string Name { get; set; } /// /// 客户所在省份 /// [JsonProperty(PropertyName = "province")] public string Province { get; set; } /// /// 客户所在城市 /// [JsonProperty(PropertyName = "city")] public string City { get; set; } /// /// 客户所在区 /// [JsonProperty(PropertyName = "district")] public string District { get; set; } /// /// 客户电话 /// [JsonProperty(PropertyName = "phone")] public string Phone { get; set; } /// /// 顾客性别 1,男 2 女 /// [JsonProperty(PropertyName = "gender")] public int Gender { get; set; } /// /// 客户地址 /// [JsonProperty(PropertyName = "address")] public string Address { get; set; } /// /// 客户名称 /// [JsonProperty(PropertyName = "coord")] public BaiduUserCoord Coord { get; set; } } }