Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/AlipayInsDataAutoScoreQueryModel.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

78 lines
2.4 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AlipayInsDataAutoScoreQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayInsDataAutoScoreQueryModel : AopObject
{
/// <summary>
/// 投保地区码参考《城市列表含区县v0307.xlsx》
/// </summary>
[JsonProperty("area_id")]
public string AreaId { get; set; }
/// <summary>
/// 业务单号唯一标识一次业务操作与业务操作绑定。例如A用户投保时进行车险分查询然后发现输错了证件号码用户修改证件号码进行二次查询此时业务单号不用发生变化但是UUID需要重新生成标识【同一次业务操作但不同的一次请求】
/// </summary>
[JsonProperty("biz_no")]
public string BizNo { get; set; }
/// <summary>
/// 业务类型参考如下 UNDERWRITING核保 PRICING定价 PROMOTION优惠 CLAIM理赔 CUSTOMER_SERVICE客服
/// </summary>
[JsonProperty("biz_type")]
public string BizType { get; set; }
/// <summary>
/// 车架号
/// </summary>
[JsonProperty("car_frame_no")]
public string CarFrameNo { get; set; }
/// <summary>
/// 车牌号,新车车牌号为空,旧车车牌号需符合行业标准
/// </summary>
[JsonProperty("car_no")]
public string CarNo { get; set; }
/// <summary>
/// 姓名,须与证件上名称一致
/// </summary>
[JsonProperty("cert_name")]
public string CertName { get; set; }
/// <summary>
/// 证件号码
/// </summary>
[JsonProperty("cert_no")]
public string CertNo { get; set; }
/// <summary>
/// 投保支持证件类型参考: IDENTITY_CARD身份证 备注:目前仅支持身份证类型
/// </summary>
[JsonProperty("cert_type")]
public string CertType { get; set; }
/// <summary>
/// 扩展信息标准JSON格式
/// </summary>
[JsonProperty("ext_info")]
public string ExtInfo { get; set; }
/// <summary>
/// 人员角色 优先级为 车主>被保人>投保人 CAR_OWNER车主 INSURED被保险人 APPLICANT投保人
/// </summary>
[JsonProperty("role_type")]
public string RoleType { get; set; }
/// <summary>
/// 请求发起时通过程序生成标准UUID每一次请求都需要变化。JAVAUUID.randomUUID().toString()
/// </summary>
[JsonProperty("uuid")]
public string Uuid { get; set; }
}
}