using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace POSV.OtherWaiMai { [Serializable] [JsonObject(MemberSerialization.OptIn)] public class WeiXinOrderPays { /// /// 唯一ID /// [JsonProperty(PropertyName = "id")] public string Id { get; set; } /// /// 门店ID /// [JsonProperty(PropertyName = "storeId")] public string StoreId { get; set; } /// /// 销售单ID /// [JsonProperty(PropertyName = "ticketId")] public string TicketId { get; set; } /// /// 销售单编号 /// [JsonProperty(PropertyName = "ticketNo")] public string TicketNo { get; set; } /// /// 会员ID /// [JsonProperty(PropertyName = "memberId")] public string MemberId { get; set; } /// /// 付款单号 /// [JsonProperty(PropertyName = "payNo")] public string PayNo { get; set; } /// /// 付款类型 /// [JsonProperty(PropertyName = "payType ")] public string PayType { get; set; } /// /// 付款方式 /// [JsonProperty(PropertyName = "payMode")] public string PayMode { get; set; } /// /// 付款状态(0-未付款;1-已付款;2-已退款;3-已取消;) /// [JsonProperty(PropertyName = "status")] public int Status { get; set; } /// /// 付款方式 /// [JsonProperty(PropertyName = "paid")] public decimal Paid { get; set; } /// /// 找零金额 /// [JsonProperty(PropertyName = "rchange")] public decimal Rchange { get; set; } /// /// 已收金额 /// [JsonProperty(PropertyName = "money")] public decimal Money { get; set; } /// /// 凭证号 /// [JsonProperty(PropertyName = "voucherNo")] public string VoucherNo { get; set; } /// /// 付款时间(格式:yyyy-MM-dd HH:mm:ss) /// [JsonProperty(PropertyName = "payDate")] public string PayDate { get; set; } /// /// 付款账号 /// [JsonProperty(PropertyName = "payAccount")] public string PayAccount { get; set; } /// /// 备注 /// [JsonProperty(PropertyName = "memo")] public string Memo { get; set; } } }