using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// GFAOpenAPIBaseAcceptance Data Structure. /// [Serializable] public class GFAOpenAPIBaseAcceptance : AopObject { /// /// 业财受理单号 /// [XmlElement("acceptance_id")] public string AcceptanceId { get; set; } /// /// 业务事件码 /// [XmlElement("biz_ev_code")] public string BizEvCode { get; set; } /// /// 业务产品码 /// [XmlElement("biz_pd_code")] public string BizPdCode { get; set; } /// /// 端事件码 /// [XmlElement("cnl_ev_code")] public string CnlEvCode { get; set; } /// /// 端产品码 /// [XmlElement("cnl_pd_code")] public string CnlPdCode { get; set; } /// /// 受理方向 /// [XmlElement("direction")] public string Direction { get; set; } /// /// 业财统一身份Id /// [XmlElement("identity_id")] public string IdentityId { get; set; } /// /// 业务流水号 /// [XmlElement("out_business_no")] public string OutBusinessNo { get; set; } /// /// 主体Id /// [XmlElement("principal_id")] public string PrincipalId { get; set; } /// /// 受理单扩展信息 /// [XmlElement("properties")] public string Properties { get; set; } /// /// 逆向受理关联的业务流水号 /// [XmlElement("rel_out_business_no")] public string RelOutBusinessNo { get; set; } /// /// 逆向受理关联的业务流水子单号 /// [XmlElement("rel_sub_out_business_no")] public string RelSubOutBusinessNo { get; set; } /// /// 业务唯一标识 /// [XmlElement("service_type")] public string ServiceType { get; set; } /// /// 解决方案id /// [XmlElement("solution_id")] public string SolutionId { get; set; } /// /// 业务流水子单号 /// [XmlElement("sub_out_business_no")] public string SubOutBusinessNo { get; set; } /// /// 受理来源系统 /// [XmlElement("system_origin")] public string SystemOrigin { get; set; } } }