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.

54 lines
1.3 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 BaiDuShopInfoResponse
{
/// <summary>
/// 门店ID
/// </summary>
[JsonProperty(PropertyName = "shop_id")]
public string Shop_id { get; set; }
/// <summary>
/// 营业状态(1:正常营业, 3:休息中 9:停止营业)
/// </summary>
[JsonProperty(PropertyName = "status")]
public int Status { get; set; }
/// <summary>
/// 门店名称
/// </summary>
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
/// <summary>
/// 门店LOGO
/// </summary>
[JsonProperty(PropertyName = "shop_logo")]
public string Shop_logo { get; set; }
/// <summary>
/// 开始时间
/// </summary>
[JsonProperty(PropertyName = "start")]
public string Start { get; set; }
/// <summary>
/// 结束时间
/// </summary>
[JsonProperty(PropertyName = "end")]
public string End { get; set; }
}
}