You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
648 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Newtonsoft.Json;
namespace POSV.QiMai
{
/// <summary>
/// 门店拒单
/// </summary>
[Serializable]
[JsonObject(MemberSerialization.OptIn)]
public class QiMaiOrderRefuseReceiveRequest
{
/// <summary>
/// 门店ID
/// </summary>
[JsonProperty(PropertyName = "storeId")]
public string StoreId { get; set; }
/// <summary>
/// 订单ID
/// </summary>
[JsonProperty(PropertyName = "orderId")]
public string OrderId { get; set; }
}
}