using System; using System.Collections.Generic; using System.Linq; using System.Text; using Newtonsoft.Json; namespace POSV.Card { /// /// 积分兑换 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class PointExchangeDoRequest { /// /// 兑换方案ID /// [JsonProperty(PropertyName = "schemeId")] public string SchemeId { get; set; } /// /// 会员ID /// [JsonProperty(PropertyName = "memberId")] public string MemberId { get; set; } /// ///会员卡号(兑换方案类型type为1时,这是必填项) /// [JsonProperty(PropertyName = "cardNo")] public string CardNo { get; set; } /// /// 门店编号 /// [JsonProperty(PropertyName = "shopNo")] public string ShopNo { get; set; } /// /// 密码 /// [JsonProperty(PropertyName = "password")] public string Password { get; set; } /// /// 终端编号 /// [JsonProperty(PropertyName = "posNo")] public string PosNo { get; set; } /// /// 门店编号 /// [JsonProperty(PropertyName = "workerNo")] public string WorkerNo { get; set; } /// /// 门店编号 /// [JsonProperty(PropertyName = "sourceSign")] public string SourceSign { get; set; } } }