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

30 lines
984 B
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.thirdPlatform
{
public class BranchInfoParam
{
/// <summary>
/// 调用菜鸟或淘宝第三方授权接口后获取到的partnerId值
/// </summary>
public string partnerId { get; set; }
/// <summary>
/// 调用菜鸟或淘宝第三方授权接口后获取到的partnerKey值
/// </summary>
public string partnerKey { get; set; }
/// <summary>
/// 菜鸟:cainiao淘宝:taobao京东无界:jdalpha拼多多:pinduoduoWx抖店:douyin
/// </summary>
public string net { get; set; }
/// <summary>
/// 快递公司编号
/// </summary>
public string com { get; set; }
public override string ToString()
{
return JsonConvert.SerializeObject(this, Formatting.Indented, new JsonSerializerSettings() { NullValueHandling = NullValueHandling.Ignore });
}
}
}