using System; using System.Collections.Generic; using System.Linq; using System.Text; using Newtonsoft.Json; namespace POSV.Card { /// /// 礼品卡销售 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class SaleGiftCardRecordRequest { /// /// 卡号 /// [JsonProperty(PropertyName = "cardNo")] public string CardNo { get; set; } /// /// 销售金额 /// [JsonProperty(PropertyName = "saleAmount")] public decimal SaleAmount { get; set; } /// /// 支付方式编号 /// [JsonProperty(PropertyName = "payTypeNo")] public string PayTypeNo { get; set; } /// /// 支付方式名称 /// [JsonProperty(PropertyName = "payType")] public string PayType { 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; } = "pos"; } }