using System; using System.Collections.Generic; using System.Linq; using System.Text; using Newtonsoft.Json; namespace POSV.Card { /// /// 门店盘点模板 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class StockCheckTemplateListResponse { /// /// 盘点单ID /// [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; } } }