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