using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace POSV.QiMai { /// /// 支付信息 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class QiMaiOrderPay { /// /// 支付方式id(1 余额支付 2 微信支付 3支付宝支付 4现金支付 9 混合支付) /// [JsonProperty(PropertyName = "id")] public int Id { get; set; } /// /// 支付方式名称 /// [JsonProperty(PropertyName = "name")] public string Name { get; set; } } }