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.

85 lines
2.2 KiB
C#

9 months ago
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace POSV.GuangChang
{
/// <summary>
/// 订单退款对象
/// </summary>
[Serializable]
[JsonObject(MemberSerialization.OptIn)]
public class VposStoreBusinessTicketRefundPart
{
/// <summary>
/// 门店ID
/// </summary>
[JsonProperty(PropertyName = "storeId")]
public string StoreId { get; set; }
/// <summary>
/// 门店编号
/// </summary>
[JsonProperty(PropertyName = "storeNo")]
public string StoreNo { get; set; }
/// <summary>
/// 门店名称
/// </summary>
[JsonProperty(PropertyName = "storeName")]
public string StoreName { get; set; }
/// <summary>
/// 操作员工号
/// </summary>
[JsonProperty(PropertyName = "workNo")]
public string WorkNo { get; set; }
/// <summary>
/// 销售时间
/// </summary>
[JsonProperty(PropertyName = "saleDate")]
public string SaleDate { get; set; }
/// <summary>
/// 设备名称
/// </summary>
[JsonProperty(PropertyName = "deviceName")]
public string DeviceName { get; set; }
/// <summary>
/// 设备MAC
/// </summary>
[JsonProperty(PropertyName = "deviceMac")]
public string DeviceMac { get; set; }
/// <summary>
/// 设备IP
/// </summary>
[JsonProperty(PropertyName = "deviceIp")]
public string DeviceIp { get; set; }
/// <summary>
/// 设备编号
/// </summary>
[JsonProperty(PropertyName = "posNo")]
public string PosNo { get; set; }
/// <summary>
/// 订单详情
/// </summary>
[JsonProperty(PropertyName = "order_product")]
public List<VposStoreOrderProductRefundPart> OrderProduct { get; set; }
/// <summary>
/// 支付详情
/// </summary>
[JsonProperty(PropertyName = "order_pay")]
public List<VposStorePayRefundPart> OrderPay { get; set; }
}
}