using System; using System.Collections.Generic; using System.Linq; using System.Text; using Newtonsoft.Json; namespace POSV.Card { /// /// 会员卡信息修改 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class CardUpdateInfoRequest { /// /// 卡号 /// [JsonProperty(PropertyName = "cardNo")] public string CardNo { get; set; } /// /// 手机号 /// [JsonProperty(PropertyName = "mobile")] public string Mobile { get; set; } /// /// 姓名 /// [JsonProperty(PropertyName = "name")] public string Name { get; set; } /// /// 生日 /// [JsonProperty(PropertyName = "sex")] public string Sex { get; set; } /// /// 生日 /// [JsonProperty(PropertyName = "birthday")] public string Birthday { 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"; } }