emoticon_api/Infrastructure/Kuaidi100/Common/Request/thirdPlatform/CommitTaskParam.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.thirdPlatform
{
public class CommitTaskParam
{
/// <summary>
/// 店铺类型TAOBAO淘宝JINGDONG京东TOUTIAO抖店PINDUODUO拼多多
/// </summary>
public string shopType { get; set; }
/// <summary>
/// 店铺ID
/// </summary>
public string shopId { get; set; }
/// <summary>
/// 订单状态UNPAY未付款UNSHIP待发货默认值SHIPED等待卖家确认收货FINISH交易成功/完成CLOSE交易关闭/取消
/// </summary>
public string orderStatus { get; set; }
/// <summary>
/// 订单更新的最小时间格式yyyy-MM-dd HH:mm:ss
/// </summary>
public string updateAtMin { get; set; }
/// <summary>
/// 订单更新的最大时间格式yyyy-MM-dd HH:mm:ss
/// </summary>
public string updateAtMax { get; set; }
/// <summary>
/// 调参数sign的加密参数非空时回调才会有sign参数
/// </summary>
public string salt { get; set; }
/// <summary>
/// 授权后信息的信息回调地址
/// </summary>
public string callbackUrl { get; set; }
public override string ToString()
{
return JsonConvert.SerializeObject(this, Formatting.Indented, new JsonSerializerSettings() { NullValueHandling = NullValueHandling.Ignore });
}
}
}