using System; using System.Collections.Generic; using System.Linq; using System.Text; using Newtonsoft.Json; namespace POSV.Card { /// /// 统一下单(卡支付明细) /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class CardTradeCreateCardRequest { /// /// 交易参考号 /// [JsonProperty(PropertyName = "tradeVoucherNo")] public string TradeVoucherNo { get; set; } /// /// 商户订单号 /// [JsonProperty(PropertyName = "tradeNo")] public string TradeNo { get; set; } /// /// 卡号 /// [JsonProperty(PropertyName = "cardNo")] public string CardNo { get; set; } /// /// 卡类型编号 /// [JsonProperty(PropertyName = "cardTypeNo")] public string CardTypeNo { get; set; } /// /// 卡等级编号 /// [JsonProperty(PropertyName = "cardLevelNo")] public string CardLevelNo { get; set; } /// /// 刷卡金额(精确到分) /// [JsonProperty(PropertyName = "amount")] public int Amount { get; set; } /// /// 门店编号 /// [JsonProperty(PropertyName = "shopNo")] public string ShopNo { get; set; } /// /// 终端编号 /// [JsonProperty(PropertyName = "posNo")] public string PosNo { get; set; } /// /// 员工编号 /// [JsonProperty(PropertyName = "workerNo")] public string WorkerNo { get; set; } /// /// 终端标识(web、pos、wechat) /// [JsonProperty(PropertyName = "sourceSign")] public string SourceSign { get; set; } = "x86"; } }