using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace POSV.Card { /// /// Gift(充值方案赠送礼品信息)说明 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class CardRechargeQuerGift { /// /// 企业编号 /// [JsonProperty(PropertyName = "tenantId")] public string TenantId { get; set; } /// /// 会员卡号 /// [JsonProperty(PropertyName = "cardNo")] public string CardNo { get; set; } /// /// 礼品编号 /// [JsonProperty(PropertyName = "no")] public string No { get; set; } /// /// 礼品名称 /// [JsonProperty(PropertyName = "name")] public string Name { get; set; } /// /// 礼品规格 /// [JsonProperty(PropertyName = "spec")] public string Spec { get; set; } /// /// 礼品单位 /// [JsonProperty(PropertyName = "unit")] public string Unit { get; set; } /// /// 礼品条码 /// [JsonProperty(PropertyName = "barcode")] public string Barcode { get; set; } /// /// 单次赠送数量 /// [JsonProperty(PropertyName = "num")] public decimal Num { get; set; } /// /// 礼品价值(单个) /// [JsonProperty(PropertyName = "memo")] public string Memo { get; set; } } }