54 lines
1.5 KiB
C#
54 lines
1.5 KiB
C#
|
|
using System;
|
||
|
|
using Newtonsoft.Json;
|
||
|
|
|
||
|
|
namespace Alipay.AopSdk.Core.Domain
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// InsApplicationQuery Data Structure.
|
||
|
|
/// </summary>
|
||
|
|
[Serializable]
|
||
|
|
public class InsApplicationQuery : AopObject
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 投保订单号
|
||
|
|
/// </summary>
|
||
|
|
[JsonProperty("application_no")]
|
||
|
|
public string ApplicationNo { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 投保单状态;此状态用于判断投保流程的推进过程.INIT: 初始,UNDERWROTE:已核保, DECLINED:已拒保,CLOSED:已关闭, PAID:已付款,REFUND:已退款,ISSUED:已出单
|
||
|
|
/// </summary>
|
||
|
|
[JsonProperty("application_status")]
|
||
|
|
public string ApplicationStatus { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 保险机构
|
||
|
|
/// </summary>
|
||
|
|
[JsonProperty("merchant")]
|
||
|
|
public InsMerchant Merchant { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 交易操作流水号;用于跳支付宝收银台付款
|
||
|
|
/// </summary>
|
||
|
|
[JsonProperty("operation_id")]
|
||
|
|
public string OperationId { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 商户生成的外部投保业务号
|
||
|
|
/// </summary>
|
||
|
|
[JsonProperty("out_biz_no")]
|
||
|
|
public string OutBizNo { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 产品编码;由蚂蚁保险平台分配,商户通过该产品编码投保特定的保险产品
|
||
|
|
/// </summary>
|
||
|
|
[JsonProperty("prod_code")]
|
||
|
|
public string ProdCode { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 支付交易订单号;用于跳支付宝收银台付款
|
||
|
|
/// </summary>
|
||
|
|
[JsonProperty("trade_no")]
|
||
|
|
public string TradeNo { get; set; }
|
||
|
|
}
|
||
|
|
}
|