using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayEbppDetectReportQueryModel Data Structure. /// [Serializable] public class AlipayEbppDetectReportQueryModel : AopObject { /// /// 业务类型 /// [XmlElement("biz_type")] public string BizType { get; set; } /// /// 业务唯一id. 如迭代id /// [XmlElement("biz_unique_id")] public string BizUniqueId { get; set; } /// /// 外部业务标识.如pipeline id、蚂蚁流id等 /// [XmlElement("out_biz_no")] public string OutBizNo { get; set; } } }