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.

48 lines
1.2 KiB
C#

using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace POSV.StoreBusiness
{
/// <summary>
/// 门店pos设置方案
/// </summary>
/// <typeparam name="T"></typeparam>
[Serializable]
[JsonObject(MemberSerialization.OptIn)]
public class StoreYunSetResponse
{
/// <summary>
/// 分类ID
/// </summary>
[JsonProperty(PropertyName = "enable")]
public int Enable { get; set; }
/// <summary>
/// 门店POS设置方案名称
/// </summary>
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
/// <summary>
/// 设置参数
/// </summary>
[JsonProperty(PropertyName = "pbody")]
public string Pbody { get; set; }
/// <summary>
/// 备注
/// </summary>
[JsonProperty(PropertyName = "description")]
public string Description { get; set; }
/// <summary>
/// 终端类型
/// </summary>
[JsonProperty(PropertyName = "terminalType")]
public string TerminalType { get; set; }
}
}