22 lines
546 B
C#
22 lines
546 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace Common.Request.samecity
|
|
{
|
|
public class SameCityQueryParam
|
|
{
|
|
/// <summary>
|
|
/// 任务ID
|
|
/// </summary>
|
|
public string taskId { get; set; }
|
|
/// <summary>
|
|
/// 订单ID
|
|
/// </summary>
|
|
public string orderId { get; set; }
|
|
|
|
public override string ToString()
|
|
{
|
|
return JsonConvert.SerializeObject(this, Formatting.Indented, new JsonSerializerSettings() { NullValueHandling = NullValueHandling.Ignore });
|
|
}
|
|
}
|
|
|
|
} |