36 lines
725 B
C#
36 lines
725 B
C#
using System;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace Alipay.AopSdk.Core.Domain
|
|
{
|
|
/// <summary>
|
|
/// AlipayChinareModelResult Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class AlipayChinareModelResult : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 体检记录id
|
|
/// </summary>
|
|
[JsonProperty("id")]
|
|
public string Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 规则id
|
|
/// </summary>
|
|
[JsonProperty("rule_id")]
|
|
public string RuleId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 核保结果
|
|
/// </summary>
|
|
[JsonProperty("rule_result")]
|
|
public string RuleResult { get; set; }
|
|
|
|
/// <summary>
|
|
/// 交易流水记录id
|
|
/// </summary>
|
|
[JsonProperty("trans_id")]
|
|
public string TransId { get; set; }
|
|
}
|
|
} |