using System; using System.Xml.Serialization; using System.Collections.Generic; using Aop.Api.Domain; namespace Aop.Api.Response { /// /// AlipayInsAutoAutoinsprodQuoteQueryResponse. /// public class AlipayInsAutoAutoinsprodQuoteQueryResponse : AopResponse { /// /// 商业费率浮动系数,0~1分值的数字,精确到小数点后4位,如:0.6589 /// [XmlElement("biz_discount")] public string BizDiscount { get; set; } /// /// 商业险续保标识, 1:新保;2:续保;3:转保 /// [XmlElement("biz_renewal_flag")] public string BizRenewalFlag { get; set; } /// /// 商业险续保公司名称 /// [XmlElement("biz_renewal_org")] public string BizRenewalOrg { get; set; } /// /// 商业险保费 /// [XmlElement("business_premium")] public string BusinessPremium { get; set; } /// /// 商业险产品信息 /// [XmlElement("business_product")] public InsProduct BusinessProduct { get; set; } /// /// 车辆信息 /// [XmlElement("car")] public Car Car { get; set; } /// /// 车主评分,分值为1-100数字,精确到个位,如:92 /// [XmlElement("car_owner_grade")] public string CarOwnerGrade { get; set; } /// /// 如果是图片验证码问题,返回验证码的base64流 /// [XmlElement("check_code")] public string CheckCode { get; set; } /// /// 图片验证码标识 /// [XmlElement("check_code_id")] public string CheckCodeId { get; set; } /// /// 0-不需要、1-江苏验证码、2-中保信验证码 /// [XmlElement("check_code_type")] public string CheckCodeType { get; set; } /// /// 保险公司ID /// [XmlElement("com_id")] public string ComId { get; set; } /// /// 保险公司简称 /// [XmlElement("com_name")] public string ComName { get; set; } /// /// 正确车险信息 /// [XmlArray("correct_car_models")] [XmlArrayItem("car_model")] public List CorrectCarModels { get; set; } /// /// 车险询价申请号 /// [XmlElement("enquiry_biz_id")] public string EnquiryBizId { get; set; } /// /// 交强费率浮动系数,0~1分值的数字,精确到小数点后4位,如:0.6589 /// [XmlElement("force_discount")] public string ForceDiscount { get; set; } /// /// 交强险保费 /// [XmlElement("force_premium")] public string ForcePremium { get; set; } /// /// 交强险产品信息 /// [XmlElement("force_product")] public InsProduct ForceProduct { get; set; } /// /// 交强险续保标识; 1:新保;2:续保;3:转保 /// [XmlElement("force_renewal_flag")] public string ForceRenewalFlag { get; set; } /// /// 交强险续保公司名称 /// [XmlElement("force_renewal_org")] public string ForceRenewalOrg { get; set; } /// /// 支持的物流配送方式 /// [XmlArray("logistics_models")] [XmlArrayItem("string")] public List LogisticsModels { get; set; } /// /// 允许调整的最大渠道系数,精确到小数点后十位 /// [XmlElement("max_self_channel_ratio")] public string MaxSelfChannelRatio { get; set; } /// /// 允许调整的最大核保系数,精确到小数点后十位 /// [XmlElement("max_self_underwrite_ratio")] public string MaxSelfUnderwriteRatio { get; set; } /// /// 允许调整的最小渠道系数,精确到小数点后十位 /// [XmlElement("min_self_channel_ratio")] public string MinSelfChannelRatio { get; set; } /// /// 允许调整的最小核保系数,精确到小数点后十位 /// [XmlElement("min_self_underwrite_ratio")] public string MinSelfUnderwriteRatio { get; set; } /// /// 平台NCD系数,精确到小数点后两位 /// [XmlElement("no_claim_adjust_ratio")] public string NoClaimAdjustRatio { get; set; } /// /// 报价ID /// [XmlElement("quote_biz_id")] public string QuoteBizId { get; set; } /// /// 报价失败错误码,这个很重要 /// [XmlElement("quote_error_code")] public string QuoteErrorCode { get; set; } /// /// 报价失败提示信息 /// [XmlElement("quote_error_msg")] public string QuoteErrorMsg { get; set; } /// /// 实付保费[优惠后用户应付金额] /// [XmlElement("real_premium")] public string RealPremium { get; set; } /// /// 优惠保费 /// [XmlElement("reduce_premium")] public string ReducePremium { get; set; } /// /// 保司自主渠道系数,精确到小数点后十位 /// [XmlElement("self_channel_ratio")] public string SelfChannelRatio { get; set; } /// /// 保司自主核保系数,精确到小数点后十位 /// [XmlElement("self_underwrite_ratio")] public string SelfUnderwriteRatio { get; set; } /// /// 总保费 /// [XmlElement("total_premium")] public string TotalPremium { get; set; } /// /// 交通违法系数,精确到小数点后两位 /// [XmlElement("traffic_violation_ratio")] public string TrafficViolationRatio { get; set; } /// /// 客户评级信息,辅助作业人员展业(具体内容以保司信息为准) /// [XmlElement("user_level")] public string UserLevel { get; set; } /// /// 用户提醒code /// [XmlElement("warn_code")] public string WarnCode { get; set; } /// /// 用户提示内容 /// [XmlElement("warn_message")] public string WarnMessage { get; set; } } }