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.

32 lines
747 B
C#

9 months ago
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace POSV.OtherWaiMai
{
[Serializable]
[JsonObject(MemberSerialization.OptIn)]
public class BaiduOrderShop
{
/// <summary>
/// 商户ID
/// </summary>
[JsonProperty(PropertyName = "id")]
public string Shop_id { get; set; }
/// <summary>
/// 百度商户ID
/// </summary>
[JsonProperty(PropertyName = "baidu_shop_id")]
public string Baidu_shop_id { get; set; }
/// <summary>
/// 百度商户名称
/// </summary>
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
}
}