using System; using System.Collections.Generic; using System.Linq; using System.Text; using Newtonsoft.Json; namespace POSV.Card { /// /// 商品配送价格 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class ProductDispatchpriceResponse { /// /// 企业编号 /// [JsonProperty(PropertyName = "tenantId")] public string TenantId { get; set; } /// /// 商品ID /// [JsonProperty(PropertyName = "productId")] public string ProductId { get; set; } /// /// 规格ID /// [JsonProperty(PropertyName = "specId")] public string SpecId { get; set; } /// /// 配送价 /// [JsonProperty(PropertyName = "dispatchPrice")] public decimal DispatchPrice { get; set; } } }