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