You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

62 lines
1.5 KiB
C#

9 months ago
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
{
/// <summary>
/// 客户名称
/// </summary>
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
/// <summary>
/// 客户所在省份
/// </summary>
[JsonProperty(PropertyName = "province")]
public string Province { get; set; }
/// <summary>
/// 客户所在城市
/// </summary>
[JsonProperty(PropertyName = "city")]
public string City { get; set; }
/// <summary>
/// 客户所在区
/// </summary>
[JsonProperty(PropertyName = "district")]
public string District { get; set; }
/// <summary>
/// 客户电话
/// </summary>
[JsonProperty(PropertyName = "phone")]
public string Phone { get; set; }
/// <summary>
/// 顾客性别 1,男 2 女
/// </summary>
[JsonProperty(PropertyName = "gender")]
public int Gender { get; set; }
/// <summary>
/// 客户地址
/// </summary>
[JsonProperty(PropertyName = "address")]
public string Address { get; set; }
/// <summary>
/// 客户名称
/// </summary>
[JsonProperty(PropertyName = "coord")]
public BaiduUserCoord Coord { get; set; }
}
}