using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace POSV.StoreBusiness { /// /// 门店pos设置方案 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class StoreYunSetRequest { /// /// 券码 /// [JsonProperty(PropertyName = "storeId")] public string StoreId { get; set; } } }