using System; using System.Collections.Generic; using System.Linq; using System.Text; using Newtonsoft.Json; namespace POSV.Card { /// /// 商品配送价格 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class ProductDispatchpriceRequest { /// /// 门店ID /// [JsonProperty(PropertyName = "storeId")] public string StoreId { get; set; } /// /// 商品规格ID /// [JsonProperty(PropertyName = "specIds")] public string SpecIds { get; set; } } }