using System; using System.Collections.Generic; using System.Linq; using System.Text; using Newtonsoft.Json; namespace POSV.Card { /// /// 会员重置密码 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class CardPwdResetRequest { /// /// 查找属性名称(可选值:mebId-会员ID;cardNo-卡号;mobile-手机号码;scanCode-扫码;) /// [JsonProperty(PropertyName = "cardNo")] public string CardNo { get; set; } /// /// 旧密码 /// [JsonProperty(PropertyName = "passwd")] public string Passwd { 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; } = "x86"; } }