emoticon_api/Infrastructure/Kuaidi100/Common/Request/reachable/ExpressReachableParam.cs
2023-10-20 21:58:42 +08:00

42 lines
1.5 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using Newtonsoft.Json;
namespace Common.Request.reachable
{
public class ExpressReachableParam {
/// <summary>
/// 快递公司的编码,一律用小写字母,见《快递公司编码》
/// </summary>
public string kuaidicom {get; set;}
/// <summary>
/// 收件人姓名
/// </summary>
public string recManName {get; set;}
/// <summary>
/// 收件人的手机号,手机号和电话号二者其一必填
/// </summary>
public string recManMobile {get; set;}
/// <summary>
/// 收件人所在完整地址如广东深圳市深圳市南山区科技南十二路2号金蝶软件园
/// </summary>
public string recManPrintAddr {get; set;}
/// <summary>
/// 寄件人姓名
/// </summary>
public string sendManName {get; set;}
/// <summary>
/// 寄件人的手机号,手机号和电话号二者其一必填
/// </summary>
public string sendManMobile {get; set;}
/// <summary>
/// 寄件人所在的完整地址如广东深圳市深圳市南山区科技南十二路2号金蝶软件园B10
/// </summary>
public string sendManPrintAddr {get; set;}
public override string ToString()
{
return JsonConvert.SerializeObject(this,Formatting.Indented,new JsonSerializerSettings(){NullValueHandling = NullValueHandling.Ignore});
}
}
}