using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace POSV.StoreBusiness { /// /// 库存开放平台返回单一对象的应答 /// /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class PosSetPlanResponse { /// /// 企业编号 /// [JsonProperty(PropertyName = "tenantId")] public string TenantId { get; set; } /// /// 方案ID /// [JsonProperty(PropertyName = "id")] public string Id { get; set; } /// /// 方案名称 /// [JsonProperty(PropertyName = "name")] public string Name { get; set; } /// /// 备注 /// [JsonProperty(PropertyName = "description")] public string Description { get; set; } } }