using System; using System.Collections.Generic; using System.Linq; using System.Text; using Newtonsoft.Json; namespace POSV.Card { /// /// 充值方案列表 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class CardRechargeSchemeListRequest { /// /// 卡类型ID /// [JsonProperty(PropertyName = "cardTypeId")] public string CardTypeId { get; set; } /// /// 门店编号 /// [JsonProperty(PropertyName = "shopNo")] public string ShopNo { get; set; } /// /// 终端编号 /// [JsonProperty(PropertyName = "posNo")] public string PosNo { get; set; } } }