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.

36 lines
819 B
C#

9 months ago
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Newtonsoft.Json;
namespace POSV.Card
{
/// <summary>
/// 不同意退单
/// </summary>
[Serializable]
[JsonObject(MemberSerialization.OptIn)]
public class EleMeOrderRefundDisagreeRequest
{
/// <summary>
/// 门店ID
/// </summary>
[JsonProperty(PropertyName = "storeId")]
public string StoreId { get; set; }
/// <summary>
/// 订单Id
/// </summary>
[JsonProperty(PropertyName = "orderId")]
public string OrderId { get; set; }
/// <summary>
/// 商家不同意退单原因
/// </summary>
[JsonProperty(PropertyName = "reason")]
public string Reason { get; set; }
}
}