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

34 lines
1.2 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.thirdPlatform
{
public class UploadNumParam
{
/// <summary>
/// 店铺类型TAOBAO淘宝JINGDONG京东TOUTIAO抖店PINDUODUO拼多多
/// </summary>
public string shopType { get; set; }
/// <summary>
/// 店铺ID
/// </summary>
public string shopId { get; set; }
/// <summary>
/// 订单号,需要填写正确,否则会被电商平台的风控系统拦截
/// </summary>
public string orderNum { get; set; }
/// <summary>
/// 快递公司编码,需要填写正确,否则会被电商平台的风控系统拦截,编码请查看参数字典
/// </summary>
public string kuaidiCom { get; set; }
/// <summary>
/// 快递单号,需要填写正确,否则会被电商平台的风控系统拦截
/// </summary>
public string kuaidiNum { get; set; }
public override string ToString()
{
return JsonConvert.SerializeObject(this, Formatting.Indented, new JsonSerializerSettings() { NullValueHandling = NullValueHandling.Ignore });
}
}
}