using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// KoubeiSalesKbsalesShopSyncModel Data Structure. /// [Serializable] public class KoubeiSalesKbsalesShopSyncModel : AopObject { /// /// 操作类型 /// [XmlElement("action")] public string Action { get; set; } /// /// 申请绑定关系类型 /// [XmlElement("action_mode")] public string ActionMode { get; set; } /// /// 固定填elm /// [XmlElement("data_source")] public string DataSource { get; set; } /// /// 时间戳 /// [XmlElement("data_version")] public string DataVersion { get; set; } /// /// { opId: 123456, applyInfo: '审核不通过', auditor:'123456'} /// [XmlElement("ext_info")] public string ExtInfo { get; set; } /// /// 饿了么门店id /// [XmlElement("external_shop_id")] public string ExternalShopId { get; set; } /// /// 口碑流水id, 饿了么leads开始的场景有该值 在线开店及绑定无该值 /// [XmlElement("order_id")] public string OrderId { get; set; } /// /// 绑定关系类型 /// [XmlElement("relation_type")] public string RelationType { get; set; } /// /// 业务场景码 /// [XmlElement("scene")] public string Scene { get; set; } /// /// 口碑门店id /// [XmlElement("shop_id")] public string ShopId { get; set; } /// /// 审核状态 /// [XmlElement("status")] public string Status { get; set; } /// /// 饿了么审核任务id /// [XmlElement("task_id")] public string TaskId { get; set; } } }