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.

36 lines
838 B
C#

9 months ago
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Newtonsoft.Json;
namespace POSV.QiMai
{
/// <summary>
/// 门店信息查询
/// </summary>
[Serializable]
[JsonObject(MemberSerialization.OptIn)]
public class QiMaiShopQueryResponse
{
/// <summary>
/// 门店名称
/// </summary>
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
/// <summary>
/// 门店状态 1营业2休息
/// </summary>
[JsonProperty(PropertyName = "status")]
public int Status { get; set; }
/// <summary>
/// 营业状态
/// </summary>
[JsonProperty(PropertyName = "saletimes")]
public List<QiMaiSaletime> Saletimes { get; set; }
}
}