using System; using System.Collections.Generic; using System.Linq; using System.Text; using Newtonsoft.Json; namespace POSV.Card { /// /// 查询店铺信息 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class EleMeShopInfoRequest { /// /// 门店ID /// [JsonProperty(PropertyName = "storeId")] public string StoreId { get; set; } } }