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