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 { /// /// 商户ID /// [JsonProperty(PropertyName = "id")] public string Shop_id { get; set; } /// /// 百度商户ID /// [JsonProperty(PropertyName = "baidu_shop_id")] public string Baidu_shop_id { get; set; } /// /// 百度商户名称 /// [JsonProperty(PropertyName = "name")] public string Name { get; set; } } }