using System; using System.Collections.Generic; using System.Linq; using System.Text; using Newtonsoft.Json; namespace POSV.Card { /// /// 门店盘点模板明细 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class StockCheckTemplateDetailResponse { /// /// 盘点模板明细ID /// [JsonProperty(PropertyName = "id")] public string Id { get; set; } /// /// 企业编号 /// [JsonProperty(PropertyName = "tenantId")] public string TenantId { get; set; } /// /// 盘点模板ID /// [JsonProperty(PropertyName = "ticketId")] public string TicketId { get; set; } /// /// 商品ID /// [JsonProperty(PropertyName = "productId")] public string ProductId { get; set; } /// /// 商品编号 /// [JsonProperty(PropertyName = "productNo")] public string ProductNo { get; set; } /// /// 商品名称 /// [JsonProperty(PropertyName = "productName")] public string ProductName { get; set; } /// /// 规格ID /// [JsonProperty(PropertyName = "specId")] public string SpecId { get; set; } /// /// 规格名称 /// [JsonProperty(PropertyName = "specName")] public string SpecName { get; set; } /// /// 商品说明 /// [JsonProperty(PropertyName = "productDescription")] public string ProductDescription { get; set; } /// /// 库存单位ID /// [JsonProperty(PropertyName = "stockUnitId")] public string StockUnitId { get; set; } /// /// 库存单位名称 /// [JsonProperty(PropertyName = "stockUnitName")] public string StockUnitName { get; set; } } }