using System; using System.Collections.Generic; using System.Linq; using System.Text; using Newtonsoft.Json; namespace POSV.Card { /// /// 充值状态查询 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class CardRechargeQueryRequest { /// /// 充值单号(卡业务) /// [JsonProperty(PropertyName = "rechargeNo")] public string RechargeNo { get; set; } /// /// 商户凭证号(充值单号、商户凭证号不能同时为空) /// [JsonProperty(PropertyName = "payVoucherNo")] public string PayVoucherNo { 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; } } }