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.

50 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 EleMeShopInfoResponse
{
/// <summary>
/// 店铺ID
/// </summary>
[JsonProperty(PropertyName = "id")]
public string Id { get; set; }
/// <summary>
/// 门店名称
/// </summary>
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
/// <summary>
/// 营业时间bitmap
/// </summary>
[JsonProperty(PropertyName = "openTimeBitmap")]
public string OpenTimeBitmap { get; set; }
/// <summary>
/// 是否正在营业(1-是;0-否;)
/// </summary>
[JsonProperty(PropertyName = "isOpen")]
public int IsOpen { get; set; }
/// <summary>
/// 营业时间bitmap
/// </summary>
[JsonProperty(PropertyName = "servingTime")]
public Object ServingTime { get; set; }
}
}