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.

80 lines
2.0 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 WeiXinShopInfoResponse
{
/// <summary>
/// 企业编号
/// </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 = "orderTel")]
public string OrderTel { get; set; }
/// <summary>
/// 门店地址
/// </summary>
[JsonProperty(PropertyName = "address")]
public string Address { get; set; }
/// <summary>
/// 公告信息
/// </summary>
[JsonProperty(PropertyName = "noticeInfo")]
public string NoticeInfo { get; set; }
/// <summary>
/// 是否营业(0-未营业;1-营业中;)
/// </summary>
[JsonProperty(PropertyName = "isOpen")]
public int IsOpen { get; set; }
/// <summary>
/// 营业时间类型(1-24小时;2-指定时间段;)
/// </summary>
[JsonProperty(PropertyName = "openTimeType")]
public int OpenTimeType { get; set; }
/// <summary>
/// 营业时间(例如:00:00-24:00)
/// </summary>
[JsonProperty(PropertyName = "openTime")]
public string OpenTime { get; set; }
}
}