using System; using System.Collections.Generic; using System.Linq; using System.Text; using Newtonsoft.Json; namespace POSV.Card { /// /// 门店信息 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class MeiTuanPoiInfoResponse { /// /// ERP方门店ID(门店映射时提交给美团的ERP门店ID) /// [JsonProperty(PropertyName = "epoiId")] public string EpoiId { get; set; } /// /// 门店名称 /// [JsonProperty(PropertyName = "name")] public string Name { get; set; } /// /// 门店公告信息 /// [JsonProperty(PropertyName = "noticeInfo")] public string NoticeInfo { get; set; } /// /// 门店地址 /// [JsonProperty(PropertyName = "address")] public string Address { get; set; } /// /// 美团品类名称 /// [JsonProperty(PropertyName = "tagName")] public string TagName { get; set; } /// /// 门店经度 /// [JsonProperty(PropertyName = "latitude")] public double Latitude { get; set; } /// /// 门店纬度 /// [JsonProperty(PropertyName = "longitude")] public double Longitude { get; set; } /// /// 门店电话 /// [JsonProperty(PropertyName = "phone")] public string Phone { get; set; } /// /// 门店图片url /// [JsonProperty(PropertyName = "pictureUrl")] public string PictureUrl { get; set; } /// /// 是否营业(0-未上线;1-可配送;3-休息中;) /// [JsonProperty(PropertyName = "isOpen")] public int IsOpen { get; set; } /// /// 是否在线(0-下线;1-上线;) /// [JsonProperty(PropertyName = "isOnline")] public int IsOnline { get; set; } /// /// 营业时间(06:00-09:00,15:30-22:00)/配送时间 /// [JsonProperty(PropertyName = "openTime")] public string OpenTime { get; set; } /// /// 配送费 /// [JsonProperty(PropertyName = "shippingFee")] public decimal ShippingFee { get; set; } /// /// 门店是否支持发票(0-不支持;1-可开发票;) /// [JsonProperty(PropertyName = "invoiceSupport")] public int InvoiceSupport { get; set; } /// /// 门店支持开发票的最小订单价 /// [JsonProperty(PropertyName = "invoiceMinPrice")] public int InvoiceMinPrice { get; set; } /// /// 发票相关说明 /// [JsonProperty(PropertyName = "invoiceDescription")] public string InvoiceDescription { get; set; } /// /// 是否支持营业时间范围外预下单(0-不支持,1 表示支持) /// [JsonProperty(PropertyName = "preBook")] public int PreBook { get; set; } /// /// 预下单最小日期 (0-从当天算起) /// [JsonProperty(PropertyName = "preBookMinDays")] public int PreBookMinDays { get; set; } /// /// 预下单最大日期(2-后天)预下单支持从最小日期到最大日期的连续日期。例如:preBookMinDays=0,preBookMaxDays=2,表示支持当天,明天,后天的预下单 /// [JsonProperty(PropertyName = "preBookMaxDays")] public int PreBookMaxDays { get; set; } /// /// 是否支持营业时间内预下单(0-不支持,1 表示支持) /// [JsonProperty(PropertyName = "timeSelect")] public int TimeSelect { get; set; } } }