You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

87 lines
2.1 KiB
C#

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