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.

49 lines
1.1 KiB
C#

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 StockCheckTemplateListResponse
{
/// <summary>
/// 盘点单ID
/// </summary>
[JsonProperty(PropertyName = "tenantId")]
public string TenantId { get; set; }
/// <summary>
/// 盘点模板ID
/// </summary>
[JsonProperty(PropertyName = "id")]
public string Id { get; set; }
/// <summary>
/// 盘点模板编号
/// </summary>
[JsonProperty(PropertyName = "no")]
public string No { get; set; }
/// <summary>
/// 盘点模板名称
/// </summary>
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
/// <summary>
/// 备注说明
/// </summary>
[JsonProperty(PropertyName = "description")]
public string Description { get; set; }
}
}