using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// IntelligentGuideTradeDetail Data Structure. /// [Serializable] public class IntelligentGuideTradeDetail : AopObject { /// /// 非必填,商户会员的会员卡类型 /// [XmlElement("card_type")] public string CardType { get; set; } /// /// 线下到点客户来源类型,非必填项,商户可自填 /// [XmlElement("customer_source")] public string CustomerSource { get; set; } /// /// 客户类型,支持枚举值:轮牌 - LP、指牌 - ZP。非必填 /// [XmlElement("customer_type")] public string CustomerType { get; set; } /// /// 交易发生时间,精确到天。 /// [XmlElement("date")] public string Date { get; set; } /// /// 第五推荐语,同上 /// [XmlElement("fifth_recommendation")] public string FifthRecommendation { get; set; } /// /// 商户服务项目产品的一级类目,是一个枚举enum类型。项目/商品/卡项。单选、必填。 /// [XmlElement("first_category")] public string FirstCategory { get; set; } /// /// 第一推荐语,选填项。用于商家描述产品优势,推荐理由。 /// [XmlElement("first_recommendation")] public string FirstRecommendation { get; set; } /// /// 第四推荐语,同上 /// [XmlElement("fourth_recommendation")] public string FourthRecommendation { get; set; } /// /// 通过智能导购查询智能推荐的推荐记录ID,用于反馈给算法进行模型校准。非必填 /// [XmlElement("guide_record_id")] public string GuideRecordId { get; set; } /// /// 商户提供服务的商品名称(三级类目),是二级类目下的细化具体项目品种名称。 /// [XmlElement("item_name")] public string ItemName { get; set; } /// /// 交易用户的手机号,校验纯数字,11位。 /// [XmlElement("mobile")] public string Mobile { get; set; } /// /// 原价金额。单位:元。精确到小数点后两位。例:11.11。校验数字,大于0。 /// [XmlElement("original_price")] public string OriginalPrice { get; set; } /// /// 支付方式,多种类型可用逗号分隔 /// [XmlElement("payment_type")] public string PaymentType { get; set; } /// /// 实际消费金额。单位:元。精确到小数点后两位。例:11.11。校验数字,大于0。实际消费金额需要小于等于原价 /// [XmlElement("price")] public string Price { get; set; } /// /// 商户提供服务的二级类目,是一级类目下的细化项目名称 /// [XmlElement("second_category")] public string SecondCategory { get; set; } /// /// 第二推荐语,选填项。用于商家描述产品优势,推荐理由。 /// [XmlElement("second_recommendation")] public string SecondRecommendation { get; set; } /// /// 服务员工名,或员工ID,非必填 /// [XmlElement("service_staff")] public string ServiceStaff { get; set; } /// /// 第三推荐语,选填项。用于商家描述产品优势,推荐理由。 /// [XmlElement("third_recommendation")] public string ThirdRecommendation { get; set; } } }