using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// InsClaim Data Structure. /// [Serializable] public class InsClaim : AopObject { /// /// 理赔因子;标准json 格式 /// [XmlElement("biz_data")] public string BizData { get; set; } /// /// 实际赔付金额 ;单位分 /// [XmlElement("claim_fee")] public long ClaimFee { get; set; } /// /// 赔案号 /// [XmlElement("claim_no")] public string ClaimNo { get; set; } /// /// 赔付时间 /// [XmlElement("claim_pay_time")] public string ClaimPayTime { get; set; } /// /// 赔案进度;根据更新时间倒序 /// [XmlArray("claim_progress")] [XmlArrayItem("claim_progress")] public List ClaimProgress { get; set; } /// /// 赔案状态.ACCEPTED:已受理;REJECTED:已拒赔;PAID:已赔付 /// [XmlElement("claim_status")] public string ClaimStatus { get; set; } /// /// 商户生成的外部理赔请求单号 /// [XmlElement("out_request_no")] public string OutRequestNo { get; set; } /// /// 当状态是拒赔时给出拒赔原因 /// [XmlElement("reject_reason")] public string RejectReason { get; set; } /// /// 流水号 /// [XmlElement("trade_no")] public string TradeNo { get; set; } } }