NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayInsDataAutoScoreQuery...

85 lines
3.0 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipayInsDataAutoScoreQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayInsDataAutoScoreQueryModel : AopObject
{
/// <summary>
/// 投保地区码参考《城市列表含区县v0307.xlsx》
/// </summary>
[XmlElement("area_id")]
public string AreaId { get; set; }
/// <summary>
/// 业务单号唯一标识一次业务操作与业务操作绑定。例如A用户投保时进行车险分查询然后发现输错了证件号码用户修改证件号码进行二次查询此时业务单号不用发生变化但是UUID需要重新生成标识【同一次业务操作但不同的一次请求】
/// </summary>
[XmlElement("biz_no")]
public string BizNo { get; set; }
/// <summary>
/// 业务类型参考如下 UNDERWRITING核保 PRICING定价 PROMOTION优惠 CLAIM理赔 CUSTOMER_SERVICE客服
/// </summary>
[XmlElement("biz_type")]
public string BizType { get; set; }
/// <summary>
/// 车架号
/// </summary>
[XmlElement("car_frame_no")]
public string CarFrameNo { get; set; }
/// <summary>
/// 车牌号,新车车牌号为空,旧车车牌号需符合行业标准
/// </summary>
[XmlElement("car_no")]
public string CarNo { get; set; }
/// <summary>
/// 姓名,须与证件上名称一致
/// </summary>
[XmlElement("cert_name")]
public string CertName { get; set; }
/// <summary>
/// 证件号码
/// </summary>
[XmlElement("cert_no")]
public string CertNo { get; set; }
/// <summary>
/// 投保支持证件类型参考: IDENTITY_CARD身份证 备注:目前仅支持身份证类型
/// </summary>
[XmlElement("cert_type")]
public string CertType { get; set; }
/// <summary>
/// 扩展信息标准JSON格式
/// </summary>
[XmlElement("ext_info")]
public string ExtInfo { get; set; }
/// <summary>
/// 人员角色 优先级为 车主>被保人>投保人 CAR_OWNER车主 INSURED被保险人 APPLICANT投保人
/// </summary>
[XmlElement("role_type")]
public string RoleType { get; set; }
/// <summary>
/// 枚举定义如下,默认不传该参数为标准分查询 STANDARD标准分 EXCLUSIVE专属分
/// </summary>
[XmlElement("score_type")]
public string ScoreType { get; set; }
/// <summary>
/// 请求发起时通过程序生成标准UUID每一次请求都需要变化。JAVAUUID.randomUUID().toString()
/// </summary>
[XmlElement("uuid")]
public string Uuid { get; set; }
}
}