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.

45 lines
1.2 KiB
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 EleMeOrderCancelRequest
{
/// <summary>
/// 门店ID
/// </summary>
[JsonProperty(PropertyName = "storeId")]
public string StoreId { get; set; }
/// <summary>
/// 订单Id
/// </summary>
[JsonProperty(PropertyName = "orderId")]
public string OrderId { get; set; }
/// <summary>
/// 取消原因
///0-其他原因; 1-用户信息不符; 4-联系不上用户; 5-商品已经售完; 6-商家已经打烊;
///7-超出配送范围; 8-商家现在太忙; 9-用户申请取消; 11-配送出现问题; 17-不满足起送要求;
/// </summary>
[JsonProperty(PropertyName = "type")]
public int Type { get; set; }
/// <summary>
/// 订单Id
/// </summary>
[JsonProperty(PropertyName = "remark")]
public string Remark { get; set; }
}
}