using System; using System.Collections.Generic; using System.Linq; using System.Text; using Newtonsoft.Json; namespace POSV.Card { /// /// 门店要货单信息 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class AskgoodsTemplateResponse { /// /// 企业编号 /// [JsonProperty(PropertyName = "tenantId")] public string TenantId { get; set; } /// /// 单ID /// [JsonProperty(PropertyName = "id")] public string Id { get; set; } /// /// 单号 /// [JsonProperty(PropertyName = "no")] public string No { get; set; } /// /// 模板名称 /// [JsonProperty(PropertyName = "name")] public string Name { get; set; } /// /// 备注说明 /// [JsonProperty(PropertyName = "description")] public string Description { get; set; } } }