using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// AlipayInsAutoAutoinsprodQuoteApplyModel Data Structure. /// [Serializable] public class AlipayInsAutoAutoinsprodQuoteApplyModel : AopObject { /// /// 商业险产品信息 /// [XmlElement("business_product")] public InsProduct BusinessProduct { get; set; } /// /// 用户录入验证码,当需要图片验证码时必传 /// [XmlElement("check_code")] public string CheckCode { get; set; } /// /// 验证码对应id 当需要图片验证码时必传 /// [XmlElement("check_code_id")] public string CheckCodeId { get; set; } /// /// 验证类型 0-不需要、1-江苏验证码、2-中保信验证码 /// [XmlElement("check_type")] public string CheckType { get; set; } /// /// 机构编码 当微调报价时必传,当需要图片验证码时必传 /// [XmlElement("company_id")] public string CompanyId { get; set; } /// /// 此次报价,机构id列表 /// [XmlArray("company_ids")] [XmlArrayItem("string")] public List CompanyIds { get; set; } /// /// 车险询价申请号 /// [XmlElement("enquiry_biz_id")] public string EnquiryBizId { get; set; } /// /// 交强险产品信息 /// [XmlElement("force_product")] public InsProduct ForceProduct { get; set; } /// /// 是否通融报价 /// [XmlElement("is_tong_rong")] public string IsTongRong { get; set; } /// /// 报价类型 1-微调,0-套餐 /// [XmlElement("quote_type")] public string QuoteType { get; set; } /// /// 税务机构编码 /// [XmlElement("tax_inst_code")] public string TaxInstCode { get; set; } /// /// 税务机构名称 /// [XmlElement("tax_inst_name")] public string TaxInstName { get; set; } /// /// 完税凭证编码 /// [XmlElement("tax_payment_code")] public string TaxPaymentCode { get; set; } /// /// 完税评审日期,格式:yyyymmdd /// [XmlElement("tax_payment_date")] public string TaxPaymentDate { get; set; } /// /// 是否完税标识 /// [XmlElement("tax_type")] public string TaxType { get; set; } } }